blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
62b753db9fa2d1402e677fbe84b3dcd83645f2ce
80b1511e7279a93ba4eb1e8b33877da489a4ba6e
/src/net.h
ad467e1201d343591acc6029a5a52010523aa2b0
[ "MIT" ]
permissive
SoyuzCoin/SoyuzCoin
948187eee036ebe869d2cf0c61c9c7d402ec7c12
bd65080a5c095217c88e45468d22fe6385ba0ed2
refs/heads/master
2020-04-20T17:07:01.948321
2019-02-03T18:56:12
2019-02-03T18:56:12
157,443,635
2
0
null
null
null
null
UTF-8
C++
false
false
23,464
h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2017-2018 The PIVX developers // Copyright (c) 2018 The Soyuz3 developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_NET_H #define BITCOIN_NET_H #include "bloom.h" #include "compat.h" #include "hash.h" #include "limitedmap.h" #include "mruset.h" #include "netbase.h" #include "protocol.h" #include "random.h" #include "streams.h" #include "sync.h" #include "uint256.h" #include "utilstrencodings.h" #include <deque> #include <stdint.h> #ifndef WIN32 #include <arpa/inet.h> #endif #include <boost/filesystem/path.hpp> #include <boost/foreach.hpp> #include <boost/signals2/signal.hpp> class CAddrMan; class CBlockIndex; class CScheduler; class CNode; namespace boost { class thread_group; } // namespace boost /** Time between pings automatically sent out for latency probing and keepalive (in seconds). */ static const int PING_INTERVAL = 2 * 60; /** Time after which to disconnect, after waiting for a ping response (or inactivity). */ static const int TIMEOUT_INTERVAL = 20 * 60; /** The maximum number of entries in an 'inv' protocol message */ static const unsigned int MAX_INV_SZ = 50000; /** The maximum number of new addresses to accumulate before announcing. */ static const unsigned int MAX_ADDR_TO_SEND = 1000; /** Maximum length of incoming protocol messages (no message over 2 MiB is currently acceptable). */ static const unsigned int MAX_PROTOCOL_MESSAGE_LENGTH = 2 * 1024 * 1024; /** -listen default */ static const bool DEFAULT_LISTEN = true; /** -upnp default */ #ifdef USE_UPNP static const bool DEFAULT_UPNP = USE_UPNP; #else static const bool DEFAULT_UPNP = false; #endif /** The maximum number of entries in mapAskFor */ static const size_t MAPASKFOR_MAX_SZ = MAX_INV_SZ; unsigned int ReceiveFloodSize(); unsigned int SendBufferSize(); void AddOneShot(std::string strDest); bool RecvLine(SOCKET hSocket, std::string& strLine); void AddressCurrentlyConnected(const CService& addr); CNode* FindNode(const CNetAddr& ip); CNode* FindNode(const CSubNet& subNet); CNode* FindNode(const std::string& addrName); CNode* FindNode(const CService& ip); CNode* ConnectNode(CAddress addrConnect, const char* pszDest = NULL, bool obfuScationMaster = false); bool OpenNetworkConnection(const CAddress& addrConnect, CSemaphoreGrant* grantOutbound = NULL, const char* strDest = NULL, bool fOneShot = false); void MapPort(bool fUseUPnP); unsigned short GetListenPort(); bool BindListenPort(const CService& bindAddr, std::string& strError, bool fWhitelisted = false); void StartNode(boost::thread_group& threadGroup, CScheduler& scheduler); bool StopNode(); void SocketSendData(CNode* pnode); typedef int NodeId; // Signals for message handling struct CNodeSignals { boost::signals2::signal<int()> GetHeight; boost::signals2::signal<bool(CNode*)> ProcessMessages; boost::signals2::signal<bool(CNode*, bool)> SendMessages; boost::signals2::signal<void(NodeId, const CNode*)> InitializeNode; boost::signals2::signal<void(NodeId)> FinalizeNode; }; CNodeSignals& GetNodeSignals(); enum { LOCAL_NONE, // unknown LOCAL_IF, // address a local interface listens on LOCAL_BIND, // address explicit bound to LOCAL_UPNP, // address reported by UPnP LOCAL_MANUAL, // address explicitly specified (-externalip=) LOCAL_MAX }; bool IsPeerAddrLocalGood(CNode* pnode); void AdvertizeLocal(CNode* pnode); void SetLimited(enum Network net, bool fLimited = true); bool IsLimited(enum Network net); bool IsLimited(const CNetAddr& addr); bool AddLocal(const CService& addr, int nScore = LOCAL_NONE); bool AddLocal(const CNetAddr& addr, int nScore = LOCAL_NONE); bool RemoveLocal(const CService& addr); bool SeenLocal(const CService& addr); bool IsLocal(const CService& addr); bool GetLocal(CService& addr, const CNetAddr* paddrPeer = NULL); bool IsReachable(enum Network net); bool IsReachable(const CNetAddr& addr); CAddress GetLocalAddress(const CNetAddr* paddrPeer = NULL); extern bool fDiscover; extern bool fListen; extern uint64_t nLocalServices; extern uint64_t nLocalHostNonce; extern CAddrMan addrman; extern int nMaxConnections; extern std::vector<CNode*> vNodes; extern CCriticalSection cs_vNodes; extern std::map<CInv, CDataStream> mapRelay; extern std::deque<std::pair<int64_t, CInv> > vRelayExpiration; extern CCriticalSection cs_mapRelay; extern limitedmap<CInv, int64_t> mapAlreadyAskedFor; extern std::vector<std::string> vAddedNodes; extern CCriticalSection cs_vAddedNodes; extern NodeId nLastNodeId; extern CCriticalSection cs_nLastNodeId; struct LocalServiceInfo { int nScore; int nPort; }; extern CCriticalSection cs_mapLocalHost; extern std::map<CNetAddr, LocalServiceInfo> mapLocalHost; class CNodeStats { public: NodeId nodeid; uint64_t nServices; int64_t nLastSend; int64_t nLastRecv; int64_t nTimeConnected; int64_t nTimeOffset; std::string addrName; int nVersion; std::string cleanSubVer; bool fInbound; int nStartingHeight; uint64_t nSendBytes; uint64_t nRecvBytes; bool fWhitelisted; double dPingTime; double dPingWait; std::string addrLocal; }; class CNetMessage { public: bool in_data; // parsing header (false) or data (true) CDataStream hdrbuf; // partially received header CMessageHeader hdr; // complete header unsigned int nHdrPos; CDataStream vRecv; // received message data unsigned int nDataPos; int64_t nTime; // time (in microseconds) of message receipt. CNetMessage(int nTypeIn, int nVersionIn) : hdrbuf(nTypeIn, nVersionIn), vRecv(nTypeIn, nVersionIn) { hdrbuf.resize(24); in_data = false; nHdrPos = 0; nDataPos = 0; nTime = 0; } bool complete() const { if (!in_data) return false; return (hdr.nMessageSize == nDataPos); } void SetVersion(int nVersionIn) { hdrbuf.SetVersion(nVersionIn); vRecv.SetVersion(nVersionIn); } int readHeader(const char* pch, unsigned int nBytes); int readData(const char* pch, unsigned int nBytes); }; typedef enum BanReason { BanReasonUnknown = 0, BanReasonNodeMisbehaving = 1, BanReasonManuallyAdded = 2 } BanReason; class CBanEntry { public: static const int CURRENT_VERSION=1; int nVersion; int64_t nCreateTime; int64_t nBanUntil; uint8_t banReason; CBanEntry() { SetNull(); } CBanEntry(int64_t nCreateTimeIn) { SetNull(); nCreateTime = nCreateTimeIn; } ADD_SERIALIZE_METHODS; template <typename Stream, typename Operation> inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) { READWRITE(this->nVersion); nVersion = this->nVersion; READWRITE(nCreateTime); READWRITE(nBanUntil); READWRITE(banReason); } void SetNull() { nVersion = CBanEntry::CURRENT_VERSION; nCreateTime = 0; nBanUntil = 0; banReason = BanReasonUnknown; } std::string banReasonToString() { switch (banReason) { case BanReasonNodeMisbehaving: return "node misbehaving"; case BanReasonManuallyAdded: return "manually added"; default: return "unknown"; } } }; typedef std::map<CSubNet, CBanEntry> banmap_t; /** Information about a peer */ class CNode { public: // socket uint64_t nServices; SOCKET hSocket; CDataStream ssSend; size_t nSendSize; // total size of all vSendMsg entries size_t nSendOffset; // offset inside the first vSendMsg already sent uint64_t nSendBytes; std::deque<CSerializeData> vSendMsg; CCriticalSection cs_vSend; std::deque<CInv> vRecvGetData; std::deque<CNetMessage> vRecvMsg; CCriticalSection cs_vRecvMsg; uint64_t nRecvBytes; int nRecvVersion; int64_t nLastSend; int64_t nLastRecv; int64_t nTimeConnected; int64_t nTimeOffset; CAddress addr; std::string addrName; CService addrLocal; int nVersion; // strSubVer is whatever byte array we read from the wire. However, this field is intended // to be printed out, displayed to humans in various forms and so on. So we sanitize it and // store the sanitized version in cleanSubVer. The original should be used when dealing with // the network or wire types and the cleaned string used when displayed or logged. std::string strSubVer, cleanSubVer; bool fWhitelisted; // This peer can bypass DoS banning. bool fOneShot; bool fClient; bool fInbound; bool fNetworkNode; bool fSuccessfullyConnected; bool fDisconnect; // We use fRelayTxes for two purposes - // a) it allows us to not relay tx invs before receiving the peer's version message // b) the peer may tell us in their version message that we should not relay tx invs // until they have initialized their bloom filter. bool fRelayTxes; // Should be 'true' only if we connected to this node to actually mix funds. // In this case node will be released automatically via CMasternodeMan::ProcessMasternodeConnections(). // Connecting to verify connectability/status or connecting for sending/relaying single message // (even if it's relative to mixing e.g. for blinding) should NOT set this to 'true'. // For such cases node should be released manually (preferably right after corresponding code). bool fObfuScationMaster; CSemaphoreGrant grantOutbound; CCriticalSection cs_filter; CBloomFilter* pfilter; int nRefCount; NodeId id; protected: // Denial-of-service detection/prevention // Key is IP address, value is banned-until-time static banmap_t setBanned; static CCriticalSection cs_setBanned; static bool setBannedIsDirty; std::vector<std::string> vecRequestsFulfilled; //keep track of what client has asked for // Whitelisted ranges. Any node connecting from these is automatically // whitelisted (as well as those connecting to whitelisted binds). static std::vector<CSubNet> vWhitelistedRange; static CCriticalSection cs_vWhitelistedRange; // Basic fuzz-testing void Fuzz(int nChance); // modifies ssSend public: uint256 hashContinue; int nStartingHeight; // flood relay std::vector<CAddress> vAddrToSend; mruset<CAddress> setAddrKnown; bool fGetAddr; std::set<uint256> setKnown; // inventory based relay mruset<CInv> setInventoryKnown; std::vector<CInv> vInventoryToSend; CCriticalSection cs_inventory; std::multimap<int64_t, CInv> mapAskFor; std::vector<uint256> vBlockRequested; // Ping time measurement: // The pong reply we're expecting, or 0 if no pong expected. uint64_t nPingNonceSent; // Time (in usec) the last ping was sent, or 0 if no ping was ever sent. int64_t nPingUsecStart; // Last measured round-trip time. int64_t nPingUsecTime; // Whether a ping is requested. bool fPingQueued; CNode(SOCKET hSocketIn, CAddress addrIn, std::string addrNameIn = "", bool fInboundIn = false); ~CNode(); private: // Network usage totals static CCriticalSection cs_totalBytesRecv; static CCriticalSection cs_totalBytesSent; static uint64_t nTotalBytesRecv; static uint64_t nTotalBytesSent; CNode(const CNode&); void operator=(const CNode&); public: NodeId GetId() const { return id; } int GetRefCount() { assert(nRefCount >= 0); return nRefCount; } // requires LOCK(cs_vRecvMsg) unsigned int GetTotalRecvSize() { unsigned int total = 0; BOOST_FOREACH (const CNetMessage& msg, vRecvMsg) total += msg.vRecv.size() + 24; return total; } // requires LOCK(cs_vRecvMsg) bool ReceiveMsgBytes(const char* pch, unsigned int nBytes); // requires LOCK(cs_vRecvMsg) void SetRecvVersion(int nVersionIn) { nRecvVersion = nVersionIn; BOOST_FOREACH (CNetMessage& msg, vRecvMsg) msg.SetVersion(nVersionIn); } CNode* AddRef() { nRefCount++; return this; } void Release() { nRefCount--; } void AddAddressKnown(const CAddress& addr) { setAddrKnown.insert(addr); } void PushAddress(const CAddress& addr) { // Known checking here is only to save space from duplicates. // SendMessages will filter it again for knowns that were added // after addresses were pushed. if (addr.IsValid() && !setAddrKnown.count(addr)) { if (vAddrToSend.size() >= MAX_ADDR_TO_SEND) { vAddrToSend[insecure_rand() % vAddrToSend.size()] = addr; } else { vAddrToSend.push_back(addr); } } } void AddInventoryKnown(const CInv& inv) { { LOCK(cs_inventory); setInventoryKnown.insert(inv); } } void PushInventory(const CInv& inv) { { LOCK(cs_inventory); if (!setInventoryKnown.count(inv)) vInventoryToSend.push_back(inv); } } void AskFor(const CInv& inv); // TODO: Document the postcondition of this function. Is cs_vSend locked? void BeginMessage(const char* pszCommand) EXCLUSIVE_LOCK_FUNCTION(cs_vSend); // TODO: Document the precondition of this function. Is cs_vSend locked? void AbortMessage() UNLOCK_FUNCTION(cs_vSend); // TODO: Document the precondition of this function. Is cs_vSend locked? void EndMessage() UNLOCK_FUNCTION(cs_vSend); void PushVersion(); void PushMessage(const char* pszCommand) { try { BeginMessage(pszCommand); EndMessage(); } catch (...) { AbortMessage(); throw; } } template <typename T1> void PushMessage(const char* pszCommand, const T1& a1) { try { BeginMessage(pszCommand); ssSend << a1; EndMessage(); } catch (...) { AbortMessage(); throw; } } template <typename T1, typename T2> void PushMessage(const char* pszCommand, const T1& a1, const T2& a2) { try { BeginMessage(pszCommand); ssSend << a1 << a2; EndMessage(); } catch (...) { AbortMessage(); throw; } } template <typename T1, typename T2, typename T3> void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3) { try { BeginMessage(pszCommand); ssSend << a1 << a2 << a3; EndMessage(); } catch (...) { AbortMessage(); throw; } } template <typename T1, typename T2, typename T3, typename T4> void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4) { try { BeginMessage(pszCommand); ssSend << a1 << a2 << a3 << a4; EndMessage(); } catch (...) { AbortMessage(); throw; } } template <typename T1, typename T2, typename T3, typename T4, typename T5> void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5) { try { BeginMessage(pszCommand); ssSend << a1 << a2 << a3 << a4 << a5; EndMessage(); } catch (...) { AbortMessage(); throw; } } template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6> void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6) { try { BeginMessage(pszCommand); ssSend << a1 << a2 << a3 << a4 << a5 << a6; EndMessage(); } catch (...) { AbortMessage(); throw; } } template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7> void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7) { try { BeginMessage(pszCommand); ssSend << a1 << a2 << a3 << a4 << a5 << a6 << a7; EndMessage(); } catch (...) { AbortMessage(); throw; } } template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7, const T8& a8) { try { BeginMessage(pszCommand); ssSend << a1 << a2 << a3 << a4 << a5 << a6 << a7 << a8; EndMessage(); } catch (...) { AbortMessage(); throw; } } template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9> void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7, const T8& a8, const T9& a9) { try { BeginMessage(pszCommand); ssSend << a1 << a2 << a3 << a4 << a5 << a6 << a7 << a8 << a9; EndMessage(); } catch (...) { AbortMessage(); throw; } } template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10> void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7, const T8& a8, const T9& a9, const T10& a10) { try { BeginMessage(pszCommand); ssSend << a1 << a2 << a3 << a4 << a5 << a6 << a7 << a8 << a9 << a10; EndMessage(); } catch (...) { AbortMessage(); throw; } } template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11> void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7, const T8& a8, const T9& a9, const T10& a10, const T11& a11) { try { BeginMessage(pszCommand); ssSend << a1 << a2 << a3 << a4 << a5 << a6 << a7 << a8 << a9 << a10 << a11; EndMessage(); } catch (...) { AbortMessage(); throw; } } template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11, typename T12> void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7, const T8& a8, const T9& a9, const T10& a10, const T11& a11, const T12& a12) { try { BeginMessage(pszCommand); ssSend << a1 << a2 << a3 << a4 << a5 << a6 << a7 << a8 << a9 << a10 << a11 << a12; EndMessage(); } catch (...) { AbortMessage(); throw; } } bool HasFulfilledRequest(std::string strRequest) { BOOST_FOREACH (std::string& type, vecRequestsFulfilled) { if (type == strRequest) return true; } return false; } void ClearFulfilledRequest(std::string strRequest) { std::vector<std::string>::iterator it = vecRequestsFulfilled.begin(); while (it != vecRequestsFulfilled.end()) { if ((*it) == strRequest) { vecRequestsFulfilled.erase(it); return; } ++it; } } void FulfilledRequest(std::string strRequest) { if (HasFulfilledRequest(strRequest)) return; vecRequestsFulfilled.push_back(strRequest); } bool IsSubscribed(unsigned int nChannel); void Subscribe(unsigned int nChannel, unsigned int nHops = 0); void CancelSubscribe(unsigned int nChannel); void CloseSocketDisconnect(); bool DisconnectOldProtocol(int nVersionRequired, std::string strLastCommand = ""); // Denial-of-service detection/prevention // The idea is to detect peers that are behaving // badly and disconnect/ban them, but do it in a // one-coding-mistake-won't-shatter-the-entire-network // way. // IMPORTANT: There should be nothing I can give a // node that it will forward on that will make that // node's peers drop it. If there is, an attacker // can isolate a node and/or try to split the network. // Dropping a node for sending stuff that is invalid // now but might be valid in a later version is also // dangerous, because it can cause a network split // between nodes running old code and nodes running // new code. static void ClearBanned(); // needed for unit testing static bool IsBanned(CNetAddr ip); static bool IsBanned(CSubNet subnet); static void Ban(const CNetAddr &ip, const BanReason &banReason, int64_t bantimeoffset = 0, bool sinceUnixEpoch = false); static void Ban(const CSubNet &subNet, const BanReason &banReason, int64_t bantimeoffset = 0, bool sinceUnixEpoch = false); static bool Unban(const CNetAddr &ip); static bool Unban(const CSubNet &ip); static void GetBanned(banmap_t &banmap); static void SetBanned(const banmap_t &banmap); //!check is the banlist has unwritten changes static bool BannedSetIsDirty(); //!set the "dirty" flag for the banlist static void SetBannedSetDirty(bool dirty=true); //!clean unused entires (if bantime has expired) static void SweepBanned(); void copyStats(CNodeStats& stats); static bool IsWhitelistedRange(const CNetAddr& ip); static void AddWhitelistedRange(const CSubNet& subnet); // Network stats static void RecordBytesRecv(uint64_t bytes); static void RecordBytesSent(uint64_t bytes); static uint64_t GetTotalBytesRecv(); static uint64_t GetTotalBytesSent(); }; class CExplicitNetCleanup { public: static void callCleanup(); }; class CTransaction; void RelayTransaction(const CTransaction& tx); void RelayTransaction(const CTransaction& tx, const CDataStream& ss); void RelayTransactionLockReq(const CTransaction& tx, bool relayToAll = false); void RelayInv(CInv& inv); /** Access to the (IP) address database (peers.dat) */ class CAddrDB { private: boost::filesystem::path pathAddr; public: CAddrDB(); bool Write(const CAddrMan& addr); bool Read(CAddrMan& addr); }; /** Access to the banlist database (banlist.dat) */ class CBanDB { private: boost::filesystem::path pathBanlist; public: CBanDB(); bool Write(const banmap_t& banSet); bool Read(banmap_t& banSet); }; void DumpBanlist(); #endif // BITCOIN_NET_H
[ "coinsoyuz@gmail.com" ]
coinsoyuz@gmail.com
a57a6df436ff11fa1f48aa04fcda0d19efce6fa7
ff786316d768b8533be7a44ac05c81148743a3d4
/ProjetC++/ProjetC++/Model/Forme.cpp
8ecf4bc2905f15f607dc11d293e3998f3de7e569
[]
no_license
Wearenn/ProjetTut
3704d8c576221a4df993bf8809833ad5aa9745aa
4a1af1b2dcb609b17d6e74d4dad4140fd6e853e2
refs/heads/master
2020-04-07T23:29:13.351998
2019-01-19T15:24:44
2019-01-19T15:24:44
158,814,831
0
0
null
null
null
null
UTF-8
C++
false
false
321
cpp
#include "Forme.h" const string Forme::BLACK = "black"; const string Forme::BLUE = "blue"; const string Forme::RED = "red"; const string Forme::GREEN = "green"; const string Forme::YELLOW= "yellow"; const string Forme::CYAN = "cyan"; ostream & operator << (ostream & s, const Forme & opd) { return s << (string)opd; }
[ "sebastien.philipp57@gmail.com" ]
sebastien.philipp57@gmail.com
2aa01b78166ef588a68d0b003a41c54d5c0c276f
d2190cbb5ea5463410eb84ec8b4c6a660e4b3d0e
/hydra2-4.9w/alignment/halignmentgrotations.h
82a33c68f7c4433d978b97d30d3fc779bc5494df
[]
no_license
wesmail/hydra
6c681572ff6db2c60c9e36ec864a3c0e83e6aa6a
ab934d4c7eff335cc2d25f212034121f050aadf1
refs/heads/master
2021-07-05T17:04:53.402387
2020-08-12T08:54:11
2020-08-12T08:54:11
149,625,232
0
0
null
null
null
null
UTF-8
C++
false
false
1,009
h
#ifndef HALIGNMENTGROTATIONS_H #define HALIGNMENTGROTATIONS_H #include "TObject.h" #include "iostream" #include "fstream" class HMdcGetContainers; class HGeomTransform; class HGeomVector; class TString; class HAlignmentGRotations:public TObject { public: HAlignmentGRotations(); ~HAlignmentGRotations() {;} HGeomVector TransMdc(HGeomVector &, TString, Int_t,Int_t); HGeomVector TransMdc(HGeomVector &, TString, Int_t); HGeomTransform* GetTransMdc(Int_t,Int_t); HGeomTransform* GetTransMdc(Int_t); HGeomTransform MakeTransMatrix(Double_t , Double_t, Double_t , Double_t , Double_t , Double_t ); void GetEulerAngles(HGeomTransform &, Double_t &, Double_t &, Double_t &); void GetTransVector(HGeomTransform &, Double_t &, Double_t &, Double_t &); private: HGeomTransform *transMdcLabToMod[6][4]; HGeomTransform *transMdcSecToMod[6][4]; HGeomTransform *transMdcLabToSec[6]; HMdcGetContainers *fGetCont; ClassDef(HAlignmentGRotations,0) }; #endif
[ "w.esmail@fz-juelich.de" ]
w.esmail@fz-juelich.de
16df482ebe0413dbc25e4a322e7623cca6a744c9
9f8616eedd509590221b8021194a3f063d4ecb86
/src/opengl.cpp
a78ab242928a8edc7e09b17c46a87e9540af6160
[]
no_license
w0lramD/win32OpenGLSetup
e5b42a25f402c1f9a100222fbe678a6fe918f58d
24fd6688367fc6ef00bb33635cd4384ecad8fce7
refs/heads/master
2023-06-01T15:16:33.895291
2020-07-22T01:22:37
2020-07-22T01:23:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,531
cpp
#include "utils.h" #define GL_NUM_EXTENSIONS 0x821D #define GL_MAX_COLOR_ATTACHMENTS 0x8CDF #define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 0x8B4D #define GL_TEXTURE_3D 0x806F #define GL_TEXTURE0 0x84C0 #define GL_TEXTURE1 0x84C1 #define GL_TEXTURE2 0x84C2 #define GL_TEXTURE3 0x84C3 #define GL_TEXTURE4 0x84C4 #define GL_TEXTURE5 0x84C5 #define GL_TEXTURE6 0x84C6 #define GL_TEXTURE7 0x84C7 #define GL_DEBUG_SEVERITY_HIGH 0x9146 #define GL_DEBUG_SEVERITY_MEDIUM 0x9147 #define GL_DEBUG_SEVERITY_LOW 0x9148 #define GL_DEBUG_TYPE_MARKER 0x8268 #define GL_DEBUG_TYPE_PUSH_GROUP 0x8269 #define GL_DEBUG_TYPE_POP_GROUP 0x826A #define GL_DEBUG_SEVERITY_NOTIFICATION 0x826B #define GL_DEBUG_OUTPUT_SYNCHRONOUS 0x8242 #define GL_ARRAY_BUFFER 0x8892 #define GL_ELEMENT_ARRAY_BUFFER 0x8893 #define GL_STREAM_DRAW 0x88E0 #define GL_STREAM_READ 0x88E1 #define GL_STREAM_COPY 0x88E2 #define GL_STATIC_DRAW 0x88E4 #define GL_STATIC_READ 0x88E5 #define GL_STATIC_COPY 0x88E6 #define GL_DYNAMIC_DRAW 0x88E8 #define GL_DYNAMIC_READ 0x88E9 #define GL_DYNAMIC_COPY 0x88EA #define GL_CLAMP_TO_EDGE 0x812F #define GL_TEXTURE_MIN_LOD 0x813A #define GL_TEXTURE_MAX_LOD 0x813B #define GL_TEXTURE_BASE_LEVEL 0x813C #define GL_TEXTURE_MAX_LEVEL 0x813D #define GL_TEXTURE_WRAP_R 0x8072 #define GL_FRAMEBUFFER_SRGB 0x8DB9 #define GL_SRGB8_ALPHA8 0x8C43 #define GL_SHADING_LANGUAGE_VERSION 0x8B8C #define GL_FRAGMENT_SHADER 0x8B30 #define GL_VERTEX_SHADER 0x8B31 #define GL_COMPILE_STATUS 0x8B81 #define GL_LINK_STATUS 0x8B82 #define GL_VALIDATE_STATUS 0x8B83 #define GL_TEXTURE_2D_ARRAY 0x8C1A #define GL_FRAMEBUFFER 0x8D40 #define GL_READ_FRAMEBUFFER 0x8CA8 #define GL_DRAW_FRAMEBUFFER 0x8CA9 #define GL_COLOR_ATTACHMENT0 0x8CE0 #define GL_COLOR_ATTACHMENT1 0x8CE1 #define GL_COLOR_ATTACHMENT2 0x8CE2 #define GL_COLOR_ATTACHMENT3 0x8CE3 #define GL_COLOR_ATTACHMENT4 0x8CE4 #define GL_COLOR_ATTACHMENT5 0x8CE5 #define GL_COLOR_ATTACHMENT6 0x8CE6 #define GL_COLOR_ATTACHMENT7 0x8CE7 #define GL_COLOR_ATTACHMENT8 0x8CE8 #define GL_COLOR_ATTACHMENT9 0x8CE9 #define GL_COLOR_ATTACHMENT10 0x8CEA #define GL_COLOR_ATTACHMENT11 0x8CEB #define GL_COLOR_ATTACHMENT12 0x8CEC #define GL_COLOR_ATTACHMENT13 0x8CED #define GL_COLOR_ATTACHMENT14 0x8CEE #define GL_COLOR_ATTACHMENT15 0x8CEF #define GL_COLOR_ATTACHMENT16 0x8CF0 #define GL_COLOR_ATTACHMENT17 0x8CF1 #define GL_COLOR_ATTACHMENT18 0x8CF2 #define GL_COLOR_ATTACHMENT19 0x8CF3 #define GL_COLOR_ATTACHMENT20 0x8CF4 #define GL_COLOR_ATTACHMENT21 0x8CF5 #define GL_COLOR_ATTACHMENT22 0x8CF6 #define GL_COLOR_ATTACHMENT23 0x8CF7 #define GL_COLOR_ATTACHMENT24 0x8CF8 #define GL_COLOR_ATTACHMENT25 0x8CF9 #define GL_COLOR_ATTACHMENT26 0x8CFA #define GL_COLOR_ATTACHMENT27 0x8CFB #define GL_COLOR_ATTACHMENT28 0x8CFC #define GL_COLOR_ATTACHMENT29 0x8CFD #define GL_COLOR_ATTACHMENT30 0x8CFE #define GL_COLOR_ATTACHMENT31 0x8CFF #define GL_DEPTH_ATTACHMENT 0x8D00 #define GL_FRAMEBUFFER_COMPLETE 0x8CD5 #define GL_DEPTH_COMPONENT16 0x81A5 #define GL_DEPTH_COMPONENT24 0x81A6 #define GL_DEPTH_COMPONENT32 0x81A7 #define GL_DEPTH_COMPONENT32F 0x8CAC #define GL_RED_INTEGER 0x8D94 #define GL_GREEN_INTEGER 0x8D95 #define GL_BLUE_INTEGER 0x8D96 #define GL_RGBA32F 0x8814 #define GL_RGB32F 0x8815 #define GL_RGBA16F 0x881A #define GL_RGB16F 0x881B #define GL_R8 0x8229 #define GL_R16 0x822A #define GL_RG8 0x822B #define GL_RG16 0x822C #define GL_R16F 0x822D #define GL_R32F 0x822E #define GL_RG16F 0x822F #define GL_RG32F 0x8230 #define GL_R8I 0x8231 #define GL_R8UI 0x8232 #define GL_R16I 0x8233 #define GL_R16UI 0x8234 #define GL_R32I 0x8235 #define GL_R32UI 0x8236 #define GL_RG8I 0x8237 #define GL_RG8UI 0x8238 #define GL_RG16I 0x8239 #define GL_RG16UI 0x823A #define GL_RG32I 0x823B #define GL_RG32UI 0x823C #define GL_R11F_G11F_B10F 0x8C3A #define GL_MULTISAMPLE 0x809D #define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E #define GL_SAMPLE_ALPHA_TO_ONE 0x809F #define GL_SAMPLE_COVERAGE 0x80A0 #define GL_SAMPLE_BUFFERS 0x80A8 #define GL_SAMPLES 0x80A9 #define GL_SAMPLE_COVERAGE_VALUE 0x80AA #define GL_SAMPLE_COVERAGE_INVERT 0x80AB #define GL_TEXTURE_2D_MULTISAMPLE 0x9100 #define GL_MAX_SAMPLES 0x8D57 #define GL_MAX_COLOR_TEXTURE_SAMPLES 0x910E #define GL_MAX_DEPTH_TEXTURE_SAMPLES 0x910F global_variable GLenum OpenGLAllColorAttachments[] = { GL_COLOR_ATTACHMENT0, GL_COLOR_ATTACHMENT1, GL_COLOR_ATTACHMENT2, GL_COLOR_ATTACHMENT3, GL_COLOR_ATTACHMENT4, GL_COLOR_ATTACHMENT5, GL_COLOR_ATTACHMENT6, GL_COLOR_ATTACHMENT7, GL_COLOR_ATTACHMENT8, GL_COLOR_ATTACHMENT9, GL_COLOR_ATTACHMENT10, GL_COLOR_ATTACHMENT11, GL_COLOR_ATTACHMENT12, GL_COLOR_ATTACHMENT13, GL_COLOR_ATTACHMENT14, GL_COLOR_ATTACHMENT15, GL_COLOR_ATTACHMENT16, GL_COLOR_ATTACHMENT17, GL_COLOR_ATTACHMENT18, GL_COLOR_ATTACHMENT19, GL_COLOR_ATTACHMENT20, GL_COLOR_ATTACHMENT21, GL_COLOR_ATTACHMENT22, GL_COLOR_ATTACHMENT23, GL_COLOR_ATTACHMENT24, GL_COLOR_ATTACHMENT25, GL_COLOR_ATTACHMENT26, GL_COLOR_ATTACHMENT27, GL_COLOR_ATTACHMENT28, GL_COLOR_ATTACHMENT29, GL_COLOR_ATTACHMENT30, GL_COLOR_ATTACHMENT31, }; void Clear() { glClearColor(1.0f, 0.0f, 0.0f, 1.0f); } void RenderTriangle() { GLfloat vertices[] = { -0.5f, -0.5f, 0.0f, 0.5f, -0.5f, 0.0f, 0.0f, 0.5f, 0.0f }; GLuint VBO; glGenBuffers(1, &VBO); glBindBuffer(GL_ARRAY_BUFFER, VBO); glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices, GL_STATIC_DRAW); glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 3 * sizeof(float), (void*)0); glEnableVertexAttribArray(0); glUseProgram(OpenGL.BasicProg); glDrawArrays(GL_TRIANGLES, 0, 3); } void OpenGLRender() { Clear(); RenderTriangle(); } internal GLuint OpenGLCreateProgram(char *HeaderCode, char *VertexCode, char *FragmentCode) { GLuint VertexShaderID = glCreateShader(GL_VERTEX_SHADER); GLchar *VertexShaderCode[] = { HeaderCode, VertexCode, }; glShaderSource(VertexShaderID, ArrayCount(VertexShaderCode), VertexShaderCode, 0); glCompileShader(VertexShaderID); GLuint FragmentShaderID = glCreateShader(GL_FRAGMENT_SHADER); GLchar *FragmentShaderCode[] = { HeaderCode, FragmentCode, }; glShaderSource(FragmentShaderID, ArrayCount(FragmentShaderCode), FragmentShaderCode, 0); glCompileShader(FragmentShaderID); GLuint ProgramID = glCreateProgram(); glAttachShader(ProgramID, VertexShaderID); glAttachShader(ProgramID, FragmentShaderID); glLinkProgram(ProgramID); glValidateProgram(ProgramID); GLint Linked = false; glGetProgramiv(ProgramID, GL_LINK_STATUS, &Linked); if(!Linked) { GLsizei Ignored; char VertexErrors[4096]; char FragmentErrors[4096]; char ProgramErrors[4096]; glGetShaderInfoLog(VertexShaderID, sizeof(VertexErrors), &Ignored, VertexErrors); glGetShaderInfoLog(FragmentShaderID, sizeof(FragmentErrors), &Ignored, FragmentErrors); glGetProgramInfoLog(ProgramID, sizeof(ProgramErrors), &Ignored, ProgramErrors); OutputDebugStringA(VertexErrors); } return(ProgramID); } internal opengl_info OpenGLGetInfo(b32 ModernContext) { opengl_info Result = {}; Result.ModernContext = ModernContext; Result.Vendor = (char *)glGetString(GL_VENDOR); Result.Renderer = (char *)glGetString(GL_RENDERER); Result.Version = (char *)glGetString(GL_VERSION); if(Result.ModernContext) { Result.ShadingLanguageVersion = (char *)glGetString(GL_SHADING_LANGUAGE_VERSION); } else { Result.ShadingLanguageVersion = "(none)"; } Result.Extensions = (char *)glGetString(GL_EXTENSIONS); for(char *At = Result.Extensions; *At; ) { while(IsWhitespace(*At)) {++At;} char *End = At; while(*End && !IsWhitespace(*End)) {++End;} umm Count = End - At; if(0) {} else if(StringsAreEqual(Count, At, "GL_EXT_texture_sRGB")) {Result.GL_EXT_texture_sRGB=true;} else if(StringsAreEqual(Count, At, "GL_EXT_framebuffer_sRGB")) {Result.GL_EXT_framebuffer_sRGB=true;} else if(StringsAreEqual(Count, At, "GL_ARB_framebuffer_sRGB")) {Result.GL_EXT_framebuffer_sRGB=true;} else if(StringsAreEqual(Count, At, "GL_ARB_framebuffer_object")) {Result.GL_ARB_framebuffer_object=true;} At = End; } char *MajorAt = Result.Version; char *MinorAt = 0; for(char *At = Result.Version; *At; ++At) { if(At[0] == '.') { MinorAt = At + 1; break; } } s32 Major = 1; s32 Minor = 0; if(MinorAt) { Major = S32FromZ(MajorAt); Minor = S32FromZ(MinorAt); } if((Major > 2) || ((Major == 2) && (Minor >= 1))) { Result.GL_EXT_texture_sRGB = true; } return(Result); } internal opengl_info OpenGLInit(opengl_info Info, b32 FramebufferSupportsSRGB) { OpenGL.DefaultInternalTextureFormat = GL_RGBA8; if(FramebufferSupportsSRGB && Info.GL_EXT_texture_sRGB && Info.GL_EXT_framebuffer_sRGB) { OpenGL.DefaultInternalTextureFormat = GL_SRGB8_ALPHA8; glEnable(GL_FRAMEBUFFER_SRGB); } glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE); char *HeaderCode = R"FOO( #version 130 // Header code )FOO"; char *VertexCode = R"FOO( void main(void) { gl_Position = gl_ProjectionMatrix * gl_ModelViewMatrix * gl_Vertex; } )FOO"; char *FragmentCode = R"FOO( out vec4 FragColor; void main(void) { FragColor = vec4(0.0f, 1.0f, 0.0f, 1.0f); } )FOO"; OpenGL.BasicProg = OpenGLCreateProgram(HeaderCode, VertexCode, FragmentCode); return(Info); }
[ "diego.marcos@gmail.com" ]
diego.marcos@gmail.com
0d4bbf7851606d6d5f1426c7bbc0723ccec3f82d
ebacc5b1b457b08eac119e43c030281c98343aeb
/Boost_Study/Containers_data_structures/13.cpp
2edb68230ab4ffaf82f26105a083429f220a15e2
[]
no_license
deardeng/learning
e9993eece3ed22891f2e54df7c8cf19bf1ce89f4
338d6431cb2d64b25b3d28bbdd3e47984f422ba2
refs/heads/master
2020-05-17T13:12:43.808391
2016-02-11T16:24:09
2016-02-11T16:24:09
19,692,141
1
1
null
null
null
null
UTF-8
C++
false
false
914
cpp
#include <string> #include <iostream> #include <vector> #include <set> #include <map> #include <algorithm> #include <boost/tuple/tuple.hpp> #include <boost/assign.hpp> #include <boost/typeof/typeof.hpp> #include <boost/ref.hpp> //using namespace std; using namespace boost; typedef tuple<int, std::string> my_tuple1; typedef tuple<int, my_tuple1> my_tuple2; typedef tuple<int, std::string, double> my_tuple; template<typename T> void print(T& cb) { for (BOOST_AUTO(pos, cb.begin()); pos != cb.end(); ++pos) { cout << *pos << ","; } cout << endl; } int main() { using namespace boost::assign; my_tuple t1; my_tuple t2(1, "123"); my_tuple t3(t1); t2 = t3; int x = 10; tuple<int&> t4(x); tuple<int&> t5(x); int i; std::string s; boost::tuple<int, std::string&> t8 = boost::make_tuple(i, boost::ref(s)); boost::tuple<const int&, std::string&> t9 = boost::make_tuple(cref(i), boost::ref(s)); }
[ "565620795@qq.com" ]
565620795@qq.com
9aa4d1aa19182868895e16fc28933b1c4c2bbf61
ce6229f5915f9e6de1238861b4a940d61e56960b
/Sonder/Temp/il2cppOutput/il2cppOutput/mscorlib_System_Collections_ObjectModel_ReadOnlyCo3163743930.h
787512784c6ce6aabcfa7b67b666e75ca81f195b
[ "Apache-2.0" ]
permissive
HackingForGood/GoogleyEyes
d9e36e3dffb4edbd0736ab49a764736a91ecebcf
a92b962ab220686794350560a47e88191e165c05
refs/heads/master
2021-04-15T10:03:59.093464
2017-06-25T17:32:52
2017-06-25T17:32:52
94,575,021
7
0
null
null
null
null
UTF-8
C++
false
false
1,168
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include "mscorlib_System_Object2689449295.h" // System.Collections.Generic.IList`1<UnityEngine.UI.Mask> struct IList_1_t3518898839; #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UI.Mask> struct ReadOnlyCollection_1_t3163743930 : public Il2CppObject { public: // System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list Il2CppObject* ___list_0; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t3163743930, ___list_0)); } inline Il2CppObject* get_list_0() const { return ___list_0; } inline Il2CppObject** get_address_of_list_0() { return &___list_0; } inline void set_list_0(Il2CppObject* value) { ___list_0 = value; Il2CppCodeGenWriteBarrier(&___list_0, value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif
[ "anishdhesikan@gmail.com" ]
anishdhesikan@gmail.com
3256fdbd41788147227bd9266e85ec49ea265dab
fb59bca8f9993b0cebf80f8c309089106213d625
/Homekit/Superlights-Arduino/Superlights-Arduino.ino
45bcde1b8173aba4c28879ca61a3919f967f070f
[]
no_license
SFrost007/ArduinoProjects
8c4441d09fd3496bd60ede49621b90a794bbd54b
036842381e2913792929c74b79e37bbd20ba2beb
refs/heads/master
2020-06-10T06:58:05.982625
2019-06-25T01:47:34
2019-06-25T01:47:34
193,613,041
0
0
null
null
null
null
UTF-8
C++
false
false
1,809
ino
#include <math.h> #include <Arduino.h> #include <SPI.h> #include <BLEPeripheral.h> const int pinRedLED = 3; const int pinGreenLED = 5; const int pinBlueLED = 6; int loopCount; const int blinkPIN = 7; #define BLE_REQ 9 #define BLE_RDY 8 #define BLE_RST 9 BLEPeripheral ble = BLEPeripheral(BLE_REQ, BLE_RDY, BLE_RST); BLEService lightbulbService("00000043-0000-1000-8000-0026BB765291"); BLELongCharacteristic lightCharacteristic("00000008-0000-1000-8000-0026BB765291", BLERead | BLEWrite | BLENotify); void setup() { Serial.begin(115200); pinMode(pinRedLED, OUTPUT); pinMode(pinGreenLED, OUTPUT); pinMode(pinBlueLED, OUTPUT); pinMode(blinkPIN, OUTPUT); ble.setAdvertisedServiceUuid(lightbulbService.uuid()); ble.addAttribute(lightbulbService); ble.addAttribute(lightCharacteristic); lightCharacteristic.setValueLE(0); lightCharacteristic.setEventHandler(BLEWritten, characteristicWrite); ble.begin(); Serial.println("Bluetooth on"); } void loop() { ble.poll(); if (++loopCount % 10000 == 0) { digitalWrite(blinkPIN, HIGH); loopCount = 0; } else if (loopCount % 5000 == 0) { digitalWrite(blinkPIN, LOW); } } void characteristicWrite(BLECentral& central, BLECharacteristic& characteristic) { Serial.print("Characteristic written | "); Serial.println(characteristic.uuid()); unsigned long value = (unsigned long)lightCharacteristic.value(); int r = value & 0xFF0000; int g = value & 0x00FF00; int b = value & 0x0000FF; Serial.println("Colors:"); Serial.print("R: "); Serial.println(r); Serial.print("G: "); Serial.println(g); Serial.print("B: "); Serial.println(b); } void setLED(float red, float green, float blue) { analogWrite(pinRedLED, red); analogWrite(pinGreenLED, green); analogWrite(pinBlueLED, blue); }
[ "sfrost007@gmail.com" ]
sfrost007@gmail.com
d34121bfc3002e669b243049743f96c4196d71cd
05859ad2d0114a35258b441eca0f8b1d8dcf5605
/tmc3/PCCTMC3Encoder.h
016f3430f3660d25330afc0ef89d6bd9237ebdc1
[ "BSD-3-Clause" ]
permissive
BetaGarf/TMC13v5-Cluster-GFT
ecd1f0e73526a0d5348ee2575bcdd60d454977d4
7f95efd617c1434bdc1fa0ae41c7fa11be21c165
refs/heads/master
2020-05-28T10:56:25.367213
2019-05-28T07:36:23
2019-05-28T07:36:23
188,976,017
0
0
null
null
null
null
UTF-8
C++
false
false
4,614
h
/* The copyright in this software is being made available under the BSD * Licence, included below. This software may be subject to other third * party and contributor rights, including patent rights, and no such * rights are granted under this licence. * * Copyright (c) 2017-2018, ISO/IEC * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of the ISO/IEC nor the names of its contributors * may be used to endorse or promote products derived from this * software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #pragma once #include <functional> #include <map> #include <string> #include <vector> #include "PayloadBuffer.h" #include "PCCMath.h" #include "PCCPointSet.h" #include "hls.h" namespace pcc { //============================================================================ enum class PartitionMethod { // Don't partition input kNone = 0, // Partition according to uniform geometry kUniformGeom = 2, // Partition according to the depth of octree kOctreeUniform = 3, }; //============================================================================ struct EncoderParams { SequenceParameterSet sps; GeometryParameterSet gps; // NB: information about attributes is split between the SPS and the APS. // => The SPS enumerates the attributes, the APS controls coding params. std::vector<AttributeParameterSet> aps; // todo(df): this should go away std::map<std::string, int> attributeIdxMap; // Filename for saving recoloured point cloud. std::string postRecolorPath; // Method for partitioning the input cloud PartitionMethod partitionMethod; // Number of slices used by PartitionMethod::kUniformGeom int partitionNumUniformGeom; // Depth of octree used by PartitionMethod::kOctreeUniform int partitionOctreeDepth; }; //============================================================================ class PCCTMC3Encoder3 { public: PCCTMC3Encoder3() = default; PCCTMC3Encoder3(const PCCTMC3Encoder3&) = default; PCCTMC3Encoder3& operator=(const PCCTMC3Encoder3& rhs) = default; ~PCCTMC3Encoder3() = default; int compress( const PCCPointSet3& inputPointCloud, EncoderParams* params, std::function<void(const PayloadBuffer&)> outputFn, PCCPointSet3* reconstructedCloud = nullptr); void compressPartition( const PCCPointSet3& inputPointCloud, EncoderParams* params, std::function<void(const PayloadBuffer&)> outputFn, PCCPointSet3* reconstructedCloud = nullptr); static void fixupParameterSets(EncoderParams* params); private: void appendReconstructedPoints(PCCPointSet3* reconstructedCloud); void encodeGeometryBrick(PayloadBuffer* buf); void quantization(const PCCPointSet3& inputPointCloud); private: PCCPointSet3 pointCloud; // Position of the slice in the translated+scaled co-ordinate system. PCCVector3<int> _sliceOrigin; // Size of the current slice PCCVector3<int> _sliceBoxWhd; // The active parameter sets const SequenceParameterSet* _sps; const GeometryParameterSet* _gps; std::vector<const AttributeParameterSet*> _aps; // Current identifier of payloads with the same geometry int _sliceId; // Identifies the current tile int _tileId; }; //============================================================================ } // namespace pcc
[ "799062557@qq.com" ]
799062557@qq.com
4b29e6b19350458ff26aca54c6ed737881e04a48
0b34dc130e8296d3d61eedf37452be5de41af1c2
/OpenGl/Qt_GLSL/source/debug/qrc_Icon.cpp
c7c367cd430a897deb69f4361984063fa902ac89
[]
no_license
BIbiLion/LS_Wqiakun2017Test
67a77c07a33ea4d5f308492580a403774de99b30
2955f20d8ac63acd8ace2a553f2e062e9ac26e92
refs/heads/master
2021-01-20T14:19:28.468757
2017-09-15T08:04:55
2017-09-15T08:04:55
90,591,454
2
3
null
null
null
null
UTF-8
C++
false
false
12,035
cpp
/**************************************************************************** ** Resource object code ** ** Created by: The Resource Compiler for Qt version 5.2.1 ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include <QtCore/qglobal.h> static const unsigned char qt_resource_data[] = { // E:/LSwuqiankun/LS_Wqiakun2017/OpenGl/Qt_GLSL/source/Icon/compileIcon.png 0x0,0x0,0x2,0x14, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x18,0x0,0x0,0x0,0x18,0x8,0x6,0x0,0x0,0x0,0xe0,0x77,0x3d,0xf8, 0x0,0x0,0x1,0xdb,0x49,0x44,0x41,0x54,0x48,0x89,0xd5,0x94,0x41,0x8b,0xd3,0x40, 0x18,0x86,0x9f,0xce,0x64,0xa5,0x96,0x2a,0xab,0x78,0xb3,0x87,0xa0,0x4b,0xa4,0xec, 0x41,0xf0,0x20,0xa5,0x77,0x2f,0xdb,0xc3,0xfe,0x2,0xff,0x87,0xb7,0xc5,0xdb,0xfe, 0x8d,0xb2,0xff,0xa3,0x77,0x41,0xf1,0xe4,0x6e,0x27,0xa5,0xa,0x81,0x4a,0x42,0x44, 0xb,0x6e,0xd7,0xa5,0x1b,0x3a,0x1e,0x76,0x12,0x67,0xd3,0xb1,0xe,0xd2,0x83,0xe, 0x7c,0x24,0xf9,0x26,0xdf,0xfb,0xbe,0xdf,0xf7,0x4e,0x2,0xff,0xfb,0x6a,0x78,0xbe, 0xa7,0xff,0xb6,0x3e,0xf0,0x55,0xf2,0x25,0x9f,0x83,0x86,0xf7,0x6f,0x63,0x0,0x5e, 0x1c,0x3c,0xf7,0xaa,0xf3,0x21,0xa8,0xd4,0xab,0xb3,0x84,0x77,0x6f,0x54,0x7d,0x6f, 0x63,0x17,0xc2,0x47,0xc5,0x8f,0x8b,0x4b,0xd4,0x69,0xc2,0xce,0xce,0x2f,0x3d,0xc7, 0x47,0x27,0x3e,0xa5,0x5e,0x4,0x87,0xb7,0x5b,0x4d,0x9e,0x3e,0xdb,0xe3,0xea,0xaa, 0xa8,0x92,0xaf,0x5e,0xbf,0x4,0x38,0xf4,0x62,0x71,0xac,0x88,0xeb,0xf6,0x6f,0xc4, 0xfc,0xdb,0x77,0x7d,0x7c,0x74,0xb2,0x96,0x37,0xf1,0xc8,0x5,0xe4,0xf2,0x20,0x2, 0x94,0xd6,0x9a,0xf1,0x78,0x8c,0x94,0x12,0x29,0x25,0xa3,0xd1,0x88,0xdd,0x7b,0x77, 0x0,0x18,0xe,0x87,0xc,0x6,0x83,0x6a,0x2f,0x4d,0x53,0xa2,0x28,0x9a,0x2,0xf, 0x81,0xcf,0x36,0x58,0xdd,0xa0,0x8,0x50,0x49,0x92,0x30,0x9d,0x4e,0x91,0x52,0x22, 0x84,0xa8,0x80,0xea,0xf7,0xe5,0xb3,0x10,0x82,0x3c,0xcf,0xe9,0xf7,0xfb,0x0,0xfb, 0xc0,0xa9,0x8b,0x20,0x4,0x3e,0x69,0xad,0x89,0xe3,0x98,0xe5,0x72,0x59,0x81,0x49, 0x29,0x69,0xb7,0xdb,0x6b,0x24,0xf5,0x98,0xcd,0x66,0x74,0x3a,0x1d,0x80,0xc7,0xc0, 0xc7,0xfa,0x88,0x2,0x80,0x46,0xc3,0xf7,0xdb,0xdb,0xb8,0xaa,0xc3,0xe3,0x42,0x8b, 0x0,0x95,0xe7,0x39,0x93,0xc9,0x64,0x4d,0xb1,0xab,0x83,0x2c,0xcb,0xe8,0xf5,0x7a, 0xe0,0xeb,0x81,0xd6,0x1a,0xa5,0xd4,0x6f,0x47,0xe1,0x22,0x4b,0xd3,0x94,0x30,0xc, 0xc1,0x1a,0x4f,0x9d,0x20,0xc4,0xf2,0xc0,0x7,0xf4,0x9f,0xf3,0x20,0x30,0x23,0xfa, 0xb0,0x58,0x2c,0x9c,0x5d,0x6c,0xf2,0x23,0xcb,0x32,0xba,0xdd,0x2e,0xc0,0x13,0xa3, 0xbe,0x28,0x9,0x84,0x89,0x3d,0xe0,0x6c,0x4b,0x23,0xda,0x7,0x62,0xa0,0x8,0xc, 0x78,0x13,0xb8,0xbf,0xc5,0x11,0xdd,0x5,0x6e,0x95,0x63,0x9,0xc,0x41,0xb,0x60, 0x4b,0x1d,0xb4,0xc,0x66,0x51,0x9a,0x1c,0x94,0x4,0x5b,0xea,0xa0,0x69,0x30,0x45, 0xc3,0x3c,0xb4,0x81,0x7,0xc0,0xae,0x21,0x12,0x18,0x93,0x80,0x15,0xeb,0xbf,0xf5, 0x32,0x67,0xef,0x95,0x35,0x97,0xc0,0x57,0x13,0xe7,0x81,0x95,0x9c,0x9b,0x6b,0xd3, 0x2a,0x76,0x81,0xdb,0xe4,0xd4,0xf6,0xb,0x13,0x17,0x26,0x56,0xf6,0x29,0xa,0xb8, 0x36,0xc6,0x56,0xb4,0xfa,0xe3,0x30,0x6e,0x8a,0x28,0x45,0x95,0x44,0xc5,0x4f,0x5e, 0x20,0xb5,0xcf,0x31,0xab,0x8e,0xf0,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae, 0x42,0x60,0x82, // E:/LSwuqiankun/LS_Wqiakun2017/OpenGl/Qt_GLSL/source/Icon/saveIcon.png 0x0,0x0,0x5,0x68, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x6,0x0,0x0,0x0,0x73,0x7a,0x7a,0xf4, 0x0,0x0,0x5,0x2f,0x49,0x44,0x41,0x54,0x58,0x85,0xc5,0x96,0x4b,0x6c,0x54,0x65, 0x14,0xc7,0x7f,0x73,0xe7,0xd9,0x76,0x4a,0x5f,0x3,0x6d,0xc1,0x3e,0x78,0x2e,0x2c, 0x52,0xa,0x62,0x10,0x84,0xf2,0x72,0x69,0x4c,0x28,0x18,0x8c,0x4a,0x30,0xae,0x80, 0x94,0xe8,0x42,0x11,0x13,0x83,0x31,0x21,0xc6,0x84,0x85,0xc4,0x3d,0x86,0x44,0x5c, 0x2a,0x81,0x10,0x82,0x85,0xa0,0xa1,0x50,0xbb,0x90,0x96,0x87,0x10,0x84,0xda,0xe9, 0x65,0xa6,0x2d,0xed,0xed,0xd0,0x99,0x76,0x3a,0xcf,0xfb,0x7d,0x2e,0xa6,0xf3,0xb8, 0xf3,0x68,0x4b,0x83,0xf1,0x6c,0x66,0xe6,0xe4,0x3f,0xdf,0xf9,0x9f,0xff,0xff,0x9e, 0x73,0x3f,0xf8,0x9f,0xc3,0x4,0xb0,0x6c,0xd9,0x4a,0x47,0x69,0x69,0x69,0xe3,0x7f, 0x5d,0x4c,0xd7,0xf5,0xc9,0x7b,0xf7,0x6e,0x7b,0x32,0x73,0x16,0x80,0xb2,0xb2,0xb2, 0x15,0x75,0x75,0xd,0x77,0x1,0x34,0x6d,0x84,0x68,0x34,0x9a,0x2,0xd8,0x6c,0x36, 0xea,0xeb,0xeb,0xe6,0x55,0x70,0x72,0x72,0x82,0x48,0x24,0x4e,0x51,0x51,0x31,0x0, 0x42,0x88,0xa8,0xcb,0xb5,0xf0,0xcb,0x3b,0x77,0x7a,0x4e,0xfa,0x7c,0x63,0x22,0x45, 0x40,0x4a,0x89,0x10,0x3a,0xba,0x2e,0x8,0x87,0xc3,0x2c,0x5e,0xbc,0x24,0x75,0x48, 0x4d,0x4d,0x35,0x7b,0xf7,0xee,0x2e,0x58,0x44,0x4a,0xc9,0x83,0x7,0xf,0x1,0x99, 0xca,0xd5,0xd6,0xd6,0x52,0x51,0x51,0x8e,0xd7,0xeb,0xe5,0xcc,0x99,0x1f,0xb1,0xd9, 0xec,0x98,0x4c,0x89,0x7e,0x9c,0x4e,0xe7,0xb7,0xcd,0xcd,0xeb,0x9a,0xaf,0x5d,0xeb, 0x78,0x2f,0x93,0x80,0x12,0x8b,0xc5,0x18,0x1a,0xd6,0x30,0x2b,0x12,0x21,0x44,0xea, 0xb0,0x78,0x5c,0x27,0x12,0x89,0x14,0x24,0x10,0x8d,0xc6,0xe8,0xe8,0xb8,0x6a,0xc8, 0x6d,0xda,0xb4,0x91,0x35,0x6b,0x56,0x13,0xe,0x47,0x68,0x68,0xa8,0x63,0xe7,0xce, 0x1d,0x5c,0xba,0x74,0x99,0x40,0x60,0x12,0x0,0xb3,0xd9,0xfc,0x72,0x12,0x9b,0x22, 0x30,0xe6,0xf3,0x33,0x1e,0xf0,0x53,0x64,0xb7,0xa0,0xeb,0x69,0x2,0xba,0xae,0x1b, 0x2c,0xc9,0x47,0x20,0x13,0x9f,0x20,0x1d,0x27,0x12,0x89,0x30,0x34,0x34,0xc8,0xb1, 0x63,0x9f,0xe3,0x70,0x38,0x70,0xb9,0x5c,0x9c,0x3c,0xf9,0x1d,0x36,0x9b,0xdd,0x80, 0x4f,0x59,0xe0,0xb0,0xdb,0x30,0x61,0xc2,0xac,0x28,0x8,0xa1,0x67,0x10,0x88,0xcf, 0xa8,0x40,0x2c,0x16,0x33,0xe0,0x93,0xb9,0xde,0xde,0x5e,0xda,0xda,0xda,0xd0,0x34, 0xd,0x87,0xc3,0x41,0x67,0xe7,0xd,0xcc,0x66,0x33,0x42,0xe8,0x6,0xbc,0x25,0xf1, 0x21,0x15,0x0,0xab,0xd5,0x8a,0xc9,0x84,0xc1,0x82,0xd9,0x14,0x48,0x10,0x30,0x2a, 0xd0,0xd7,0xd7,0xc7,0xe1,0xc3,0x7,0x9,0x87,0xc3,0x68,0x9a,0x46,0x57,0xd7,0x1f, 0x74,0x75,0x75,0x63,0xb3,0xd9,0x91,0x52,0x22,0x65,0x96,0x2,0x42,0x48,0xac,0x56, 0x33,0x75,0x4b,0xaa,0x19,0x1d,0x7d,0x9a,0x43,0x60,0x26,0x5,0xe2,0xf1,0xb8,0x1, 0x2f,0x84,0xce,0xfe,0xfd,0xef,0x63,0xb7,0xdb,0xf1,0x7a,0xbd,0xdc,0xbf,0x7f,0x9f, 0xce,0xce,0x9b,0xd8,0xed,0x8e,0x14,0x2e,0x9f,0x5,0x4a,0x52,0x16,0x21,0x64,0x96, 0x5,0xb3,0x29,0x10,0x4f,0xe1,0x63,0xb1,0x18,0xed,0xed,0x87,0xa8,0xa9,0xa9,0x41, 0x55,0x55,0x54,0x55,0xe5,0xdc,0xb9,0xf3,0x14,0x17,0x97,0x18,0xce,0xcc,0x51,0x40, 0x4a,0xa1,0x24,0xd9,0x49,0x29,0xb2,0x14,0x88,0xcf,0xc9,0x82,0x68,0x34,0xca,0x81, 0x3,0x1f,0xd0,0xd4,0xd4,0x84,0xdb,0xed,0x46,0xd3,0x34,0xba,0xbb,0xbb,0xd1,0x75, 0x91,0x63,0x51,0xe6,0xef,0xd4,0x43,0x98,0x94,0x25,0xf3,0x7b,0xb2,0x40,0x30,0x38, 0x95,0x9c,0xe3,0x9c,0x10,0x42,0x50,0x55,0x55,0xc9,0xba,0x75,0x2d,0x6c,0xd9,0xb2, 0x5,0xb7,0xdb,0x4d,0x20,0x10,0xa0,0xab,0xab,0x8b,0xaa,0x2a,0x17,0x42,0x3c,0xcc, 0x99,0x92,0x19,0x2d,0x28,0x2a,0x2a,0x46,0xd3,0x46,0x52,0x0,0x4d,0x1b,0xa1,0xaf, 0xaf,0xaf,0xa0,0x2,0x42,0x8,0x76,0xed,0xda,0xc1,0x9e,0x3d,0x6d,0xb8,0xdd,0x6e, 0x42,0xa1,0x10,0xa7,0x4f,0xff,0x80,0xc7,0xe3,0x45,0x4a,0x49,0x79,0x79,0x45,0xce, 0x94,0xe4,0x51,0x20,0x2d,0x93,0xd5,0x6a,0xa5,0xbc,0xbc,0xa2,0x60,0xc1,0xcc,0x90, 0x52,0xb2,0x72,0xe5,0x72,0x8e,0x1c,0x39,0x82,0xc7,0xe3,0x21,0x1c,0xe,0x73,0xf6, 0xec,0x4f,0x4c,0x4c,0x4,0xd,0x67,0x64,0x5b,0x20,0x65,0xd6,0x18,0xa,0x21,0x95, 0x6c,0x90,0xa9,0x90,0xe6,0x19,0xc5,0x6b,0x6a,0x16,0x71,0xf4,0xe8,0x67,0xc,0xf, 0xf,0x13,0xc,0x6,0x39,0x7f,0xfe,0x2,0x4f,0x9e,0x78,0x51,0x14,0x5,0x29,0x65, 0xe,0x3e,0x19,0x33,0x5a,0x0,0xf0,0xf5,0x89,0x53,0x34,0xaf,0xdd,0x30,0x23,0x81, 0xcb,0x97,0x7e,0xe6,0x95,0xa6,0xa5,0x4,0x2,0x1,0xfc,0x7e,0x3f,0x8f,0x1e,0xff, 0xc3,0x27,0x9f,0x9e,0xa0,0xb2,0xd2,0x95,0x17,0x7f,0xe5,0xd7,0xb,0x7c,0x7f,0xea, 0x1b,0x12,0xd,0xe7,0x12,0xb0,0x64,0x26,0xed,0x76,0x7,0x56,0xab,0xb5,0x60,0xf1, 0xce,0xeb,0x57,0x58,0xda,0xb0,0x10,0x29,0x25,0x9a,0xa6,0xd1,0xef,0x1e,0xa0,0x75, 0xfb,0xdb,0x54,0x57,0xd7,0x16,0xfc,0x8f,0xc5,0x6a,0x25,0x73,0xd2,0xb2,0x9,0x28, 0xd9,0x4f,0x2a,0x80,0xaa,0xba,0x73,0x72,0xee,0xfe,0x47,0x14,0xd9,0x22,0x94,0x95, 0xd5,0xe2,0xf1,0x78,0x50,0x55,0x95,0x8a,0xaa,0x6,0x4c,0x8a,0x39,0x2f,0xbe,0xbc, 0xbc,0x82,0x5,0xb,0xca,0x90,0x32,0x2d,0x7d,0x3e,0xb,0x2c,0x86,0x45,0x31,0xfd, 0x6a,0xad,0xaf,0x6f,0x34,0x1c,0xd6,0xf7,0xf8,0x21,0x32,0x3e,0x4e,0xdd,0xf2,0x55, 0xc,0xc,0xc,0x30,0x3a,0x3a,0x4a,0x7d,0xe3,0x1a,0x5e,0xdf,0xbc,0xad,0x60,0xe7, 0xe9,0x43,0xd3,0xb,0x2e,0xe7,0x21,0xcc,0x5c,0x44,0xd3,0xc,0x72,0x14,0x18,0x1f, 0xf7,0xe1,0x55,0xff,0xe2,0xd5,0xf5,0x2d,0xf4,0xf7,0xf7,0xe3,0xf7,0xfb,0xd1,0x7c, 0x21,0x9a,0xd7,0x37,0xe6,0xed,0x3c,0x47,0x1,0x64,0xe1,0x55,0x2c,0x84,0xf1,0x19, 0x48,0x46,0x52,0x81,0x40,0xc0,0xcf,0x9f,0xdd,0x57,0xd8,0xba,0x75,0x53,0x6a,0xd6, 0xfd,0x81,0x18,0x1f,0x7e,0xd4,0x3e,0x7b,0xe7,0x69,0x1,0x52,0x4,0xf2,0xed,0x1, 0xc5,0xb8,0xab,0x65,0x4a,0x1,0x21,0x74,0xba,0x6f,0x76,0xf0,0xe6,0xae,0x56,0x54, 0x55,0x25,0x1c,0xe,0x73,0xab,0xe7,0x1e,0xbb,0xf7,0x1c,0x98,0xb1,0xf3,0x6c,0x5, 0x32,0x2d,0x28,0x40,0x20,0xbf,0x2,0x37,0xae,0x77,0xb0,0x7d,0xdb,0x66,0x6,0x7, 0x7,0x9,0x85,0x42,0xfc,0xfd,0xa8,0x9f,0x43,0xed,0x5f,0x60,0xb7,0x3b,0xe6,0xdc, 0x3d,0x60,0xb0,0x20,0xdf,0x22,0xb2,0x18,0xa7,0x20,0xa1,0xc0,0xc0,0x40,0x3f,0x4a, 0xcc,0x43,0x78,0xd2,0xc2,0xc4,0xc4,0x4,0x3d,0x3d,0xb7,0x79,0xa3,0xf5,0x2d,0x9e, 0x3e,0x1d,0x9e,0x73,0xe1,0xf4,0x14,0xc8,0x8c,0x29,0x48,0x2f,0xa5,0x69,0x2,0xd9, 0x16,0x24,0x3e,0x47,0x86,0x6,0x78,0xad,0xa9,0x92,0xf1,0xd1,0xbb,0x68,0x43,0x82, 0x77,0xde,0x3d,0x88,0x6b,0xe1,0xa2,0xe7,0x69,0xdc,0xd0,0xd3,0xc,0x53,0x90,0xbd, 0x8a,0x25,0x52,0x4a,0x7e,0xbf,0xfa,0xb,0x83,0x2f,0xd9,0xc0,0xb9,0x9a,0x96,0x8d, 0xad,0x4c,0x85,0xa6,0xe6,0xe4,0x7b,0x66,0xcc,0x71,0xa,0x72,0x15,0xb8,0x79,0xe3, 0x37,0x1c,0x25,0x2e,0x76,0xb6,0x7d,0x8c,0xd3,0x59,0xfa,0x7c,0xdd,0xe6,0x89,0x84, 0x5,0xfa,0xf4,0x95,0x2c,0xcb,0x82,0xec,0x4b,0x8,0xc0,0xda,0x96,0xd,0xd4,0xd5, 0x2f,0xc5,0xe7,0x1b,0xc3,0xe7,0x1b,0x9b,0x77,0xe1,0xcc,0x29,0x58,0xb1,0x62,0x39, 0xfb,0xf6,0xed,0xe3,0xf8,0xf1,0xaf,0x8c,0x4,0x12,0xa,0x18,0x2d,0x28,0x29,0x71, 0x52,0x52,0xe2,0x9c,0x77,0xe1,0xec,0x90,0xc0,0xb3,0x67,0xcf,0xe8,0xed,0xed,0xcd, 0xbd,0x15,0xb,0x21,0x14,0x5d,0x4f,0x27,0x27,0x27,0x27,0x8,0x85,0xa6,0x5e,0x58, 0x71,0x80,0x50,0x68,0x8a,0xa1,0xa1,0x61,0x2e,0x5e,0xbc,0x68,0x50,0xdb,0x4,0x50, 0x5c,0x5c,0xbc,0x48,0x51,0x94,0x55,0xc9,0xa4,0xa2,0x28,0xca,0x6c,0xf7,0x81,0xe7, 0xd,0x21,0x4,0x72,0xfa,0x35,0x28,0xa5,0x9c,0xa,0x6,0x83,0xb7,0x5e,0x68,0x81, 0xf9,0xc6,0xbf,0xef,0xdc,0x74,0x72,0xe5,0x2b,0x7f,0x9,0x0,0x0,0x0,0x0,0x49, 0x45,0x4e,0x44,0xae,0x42,0x60,0x82, }; static const unsigned char qt_resource_name[] = { // Icon 0x0,0x4, 0x0,0x4,0xfa,0x5e, 0x0,0x49, 0x0,0x63,0x0,0x6f,0x0,0x6e, // compileIcon.png 0x0,0xf, 0x2,0xc0,0xad,0x27, 0x0,0x63, 0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x49,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, // saveIcon.png 0x0,0xc, 0x9,0x90,0xc4,0xa7, 0x0,0x73, 0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x49,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, }; static const unsigned char qt_resource_struct[] = { // : 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, // :/Icon 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2, // :/Icon/compileIcon.png 0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, // :/Icon/saveIcon.png 0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2,0x18, }; QT_BEGIN_NAMESPACE extern Q_CORE_EXPORT bool qRegisterResourceData (int, const unsigned char *, const unsigned char *, const unsigned char *); extern Q_CORE_EXPORT bool qUnregisterResourceData (int, const unsigned char *, const unsigned char *, const unsigned char *); QT_END_NAMESPACE int QT_MANGLE_NAMESPACE(qInitResources_Icon)() { QT_PREPEND_NAMESPACE(qRegisterResourceData) (0x01, qt_resource_struct, qt_resource_name, qt_resource_data); return 1; } Q_CONSTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qInitResources_Icon)) int QT_MANGLE_NAMESPACE(qCleanupResources_Icon)() { QT_PREPEND_NAMESPACE(qUnregisterResourceData) (0x01, qt_resource_struct, qt_resource_name, qt_resource_data); return 1; } Q_DESTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qCleanupResources_Icon))
[ "wqiankun89@163.com" ]
wqiankun89@163.com
96ef71fabf5d324938ce33011b6f443d36c39172
c456f22ae2c53fc08774b6ff2aadf5e84efbde55
/src/engine/animation/transformAnimation.h
965553342837c779c5ffc0dcc4671c9fcf39aadc
[]
no_license
fscur/rho
d4fcda358094a2bb18dff2596c9a3abea16494c5
0f124320c97e31534d708ab5c094cb80beb3b3ac
refs/heads/master
2020-04-06T06:24:57.020650
2017-02-24T07:26:38
2017-02-24T07:26:38
82,894,038
0
0
null
null
null
null
UTF-8
C++
false
false
927
h
#pragma once #include <rho.h> #include "animationApi.h" #include "animation.h" #include "easingFunctions.h" #include <core\transform.h> namespace rho { class transformAnimation : public animation { private: transform* _value; transform _from; transform _to; public: ANIMATION_API transformAnimation( transform* value, std::function<double(double)> easingFunction = easingFunctions::linear); ANIMATION_API transformAnimation(const transformAnimation& original); ANIMATION_API ~transformAnimation(); ANIMATION_API void start(transform& from, transform& to, double duration); ANIMATION_API void start(transform& from, transform& to, double duration, std::function<void(void)> animationEndedCallback); ANIMATION_API void update(double t) override; ANIMATION_API animation* clone() override; }; }
[ "filipe.scur@gmail.com" ]
filipe.scur@gmail.com
d17810a24fc8613ab6097c8ecdcf381fe37e766d
1ad4077361201f1bbe9a487382f8f37b288ea50b
/tests/format.cxx
4989e577ab5465e81871b268111b6a77b58e8600
[ "MIT" ]
permissive
lukaszgemborowski/cpptoolbox
70e02ba37f2612ab5af9219e31bdcf3fe4b0e65d
a56eb3a41b76afcb53055fd2a0ba15ef1e2c3af4
refs/heads/master
2021-01-16T00:28:52.253761
2020-03-02T22:46:08
2020-03-02T22:46:08
99,963,623
0
1
MIT
2020-03-02T22:46:09
2017-08-10T20:49:08
C++
UTF-8
C++
false
false
1,057
cxx
#include <toolbox/testing/test.hpp> #include <toolbox/cpp/format.hpp> // we may compile this without standard C++ library // so let's use C version of strncmp #include <string.h> template<std::size_t N> struct output_stream { char buffer[N] = {0}; std::size_t pos = 0; void put(char c) { buffer[pos] = c; pos++; } }; TEST_CASE(format_print_string) { output_stream<10> os; toolbox::format::print(os, "test"); CHECK(strncmp(os.buffer, "test", 4) == 0); } TEST_CASE(format_print_with_number) { output_stream<10> os; toolbox::format::print(os, "test {}", 42); CHECK(strncmp(os.buffer, "test 42", 7) == 0); } TEST_CASE(format_print_with_hex_number) { output_stream<10> os; toolbox::format::print(os, "test 0x{x}", 0x42); CHECK(strncmp(os.buffer, "test 0x00000042", 15) == 0); } TEST_CASE(format_quote_modifier) { output_stream<10> os; toolbox::format::print(os, "{}", toolbox::format::modifier<toolbox::format::Quote>(42)); CHECK(strncmp(os.buffer, "\"42\"", 5) == 0); }
[ "lukasz.gemborowski@gmail.com" ]
lukasz.gemborowski@gmail.com
7bbb33a85946e618ce4a0974cbae60c04d9cda58
872770c5323aa17120f2f708a1f0be09e663c9a8
/Elastos/Framework/Droid/eco/src/core/view/menu/SubMenuBuilderBase.cpp
94e3365347092ce49765fa25dad1d853b33d2ac2
[]
no_license
xianjimli/Elastos
76a12b58db23dbf32ecbcefdaf6179510362dd21
f9f019d266a7e685544596b365cfbc05bda9cb70
refs/heads/master
2021-01-11T08:26:17.180908
2013-08-21T02:31:17
2013-08-21T02:31:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,642
cpp
#include "ext/frameworkext.h" #include "view/menu/SubMenuBuilderBase.h" /** * The model for a sub menu, which is an extension of the menu. Most methods are proxied to * the parent menu. */ SubMenuBuilderBase::SubMenuBuilderBase( /* [in] */ IContext* context, /* [in] */ IMenuBuilder* parentMenu, /* [in] */ IMenuItemImpl* item) : MenuBuilderBase(context) , mParentMenu(parentMenu) , mItem(item) {} //@override ECode SubMenuBuilderBase::SetQwertyMode( /* [in] */ Boolean isQwerty) { return mParentMenu->SetQwertyMode(isQwerty); } //@override Boolean SubMenuBuilderBase::IsQwertyMode() { return ((MenuBuilderBase*)mParentMenu->Probe(EIID_MenuBuilderBase))->IsQwertyMode(); } //@override ECode SubMenuBuilderBase::SetShortcutsVisible( /* [in] */ Boolean shortcutsVisible) { return mParentMenu->SetShortcutsVisible(shortcutsVisible); } //@override Boolean SubMenuBuilderBase::IsShortcutsVisible() { Boolean isVisible; mParentMenu->IsShortcutsVisible(&isVisible); return isVisible; } AutoPtr<IMenu> SubMenuBuilderBase::GetParentMenu() { return IMenu::Probe(mParentMenu); } AutoPtr<IMenuItem> SubMenuBuilderBase::GetItem() { return IMenuItem::Probe(mItem); } //@override AutoPtr<IMenuBuilderCallback> SubMenuBuilderBase::GetCallback() { AutoPtr<IMenuBuilderCallback> callback; mParentMenu->GetCallback((IMenuBuilderCallback**)&callback); return callback; } //@override ECode SubMenuBuilderBase::SetCallback( /* [in] */ IMenuBuilderCallback* callback) { return mParentMenu->SetCallback(callback); } //@override AutoPtr<IMenuBuilder> SubMenuBuilderBase::GetRootMenu() { return mParentMenu; } ECode SubMenuBuilderBase::SetIcon( /* [in] */ IDrawable* icon) { return mItem->SetIcon(icon); } ECode SubMenuBuilderBase::SetIcon( /* [in] */ Int32 iconRes) { return mItem->SetIconEx(iconRes); } ECode SubMenuBuilderBase::SetHeaderIcon( /* [in] */ IDrawable* icon) { MenuBuilderBase::SetHeaderIconInt(icon); return NOERROR; } ECode SubMenuBuilderBase::SetHeaderIcon( /* [in] */ Int32 iconRes) { MenuBuilderBase::SetHeaderIconInt(iconRes); return NOERROR; } ECode SubMenuBuilderBase::SetHeaderTitle( /* [in] */ ICharSequence* title) { MenuBuilderBase::SetHeaderTitleInt(title); return NOERROR; } ECode SubMenuBuilderBase::SetHeaderTitle( /* [in] */ Int32 titleRes) { MenuBuilderBase::SetHeaderTitleInt(titleRes); return NOERROR; } ECode SubMenuBuilderBase::SetHeaderView( /* [in] */ IView* view) { MenuBuilderBase::SetHeaderViewInt(view); return NOERROR; }
[ "chen.yunzhi@kortide.com.cn" ]
chen.yunzhi@kortide.com.cn
00ddfd4a4259b8aa8e61bdbe40ddcd74d167fc87
a7545b0cba7a613f0128b7ac4c80bdbc8160f6a4
/src/sporkid.h
edb0cc3acdf79bd10dc6daa069264d5caa82ef09
[ "MIT" ]
permissive
nerdynerdnerdz/Guapcoin
b555fc57f791bafcbeb14058e344e3860122097c
84fe2eef168ecc9042d5315a2ff471413a134971
refs/heads/master
2023-01-05T11:27:19.596120
2020-10-29T08:31:40
2020-10-29T08:31:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,338
h
// Copyright (c) 2014-2016 The Dash developers // Copyright (c) 2016-2020 The PIVX developers // Copyright (c) 2019-2020 The Guapcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef SPORKID_H #define SPORKID_H /* Don't ever reuse these IDs for other sporks - This would result in old clients getting confused about which spork is for what */ enum SporkId : int32_t { SPORK_2_SWIFTTX = 10001, SPORK_3_SWIFTTX_BLOCK_FILTERING = 10002, SPORK_5_MAX_VALUE = 10004, SPORK_8_MASTERNODE_PAYMENT_ENFORCEMENT = 10007, SPORK_9_MASTERNODE_BUDGET_ENFORCEMENT = 10008, SPORK_13_ENABLE_SUPERBLOCKS = 10012, SPORK_14_NEW_PROTOCOL_ENFORCEMENT = 10013, SPORK_15_NEW_PROTOCOL_ENFORCEMENT_2 = 10014, SPORK_17_COLDSTAKING_ENFORCEMENT = 10017, SPORK_INVALID = -1 }; // Default values struct CSporkDef { CSporkDef(): sporkId(SPORK_INVALID), defaultValue(0) {} CSporkDef(SporkId id, int64_t val, std::string n): sporkId(id), defaultValue(val), name(n) {} SporkId sporkId; int64_t defaultValue; std::string name; }; #endif
[ "53179738+guapcrypto@users.noreply.github.com" ]
53179738+guapcrypto@users.noreply.github.com
3ea60399880a0993013cb30a349b7ef6ae0fcd80
192d0a610a0ca92f2ef91da7cb9f65c1f218d07f
/node_modules/opencv-build/opencv/build/modules/imgproc/bilateral_filter.simd_declarations.hpp
9d50bb02edf735ec47d0b554a441e19d0a6b7e2f
[]
no_license
sonphamnjfi/chat-real-time
27e988d97e4eecdf0e2271588ae0ffdbd28c9a71
0e211b9ed63ed7687dacc6005b6a0e847fa31f06
refs/heads/main
2023-08-14T17:29:05.880309
2021-10-16T13:37:18
2021-10-16T13:37:18
416,145,502
1
0
null
null
null
null
UTF-8
C++
false
false
437
hpp
#define CV_CPU_SIMD_FILENAME "C:/Users/sonph/Desktop/test/node_modules/opencv-build/opencv/opencv/modules/imgproc/src/bilateral_filter.simd.hpp" #define CV_CPU_DISPATCH_MODE SSE2 #include "opencv2/core/private/cv_cpu_include_simd_declarations.hpp" #define CV_CPU_DISPATCH_MODE AVX2 #include "opencv2/core/private/cv_cpu_include_simd_declarations.hpp" #define CV_CPU_DISPATCH_MODES_ALL AVX2, SSE2, BASELINE #undef CV_CPU_SIMD_FILENAME
[ "sonphamnjfi@gmail.com" ]
sonphamnjfi@gmail.com
b6a8363696f4af91e75b7f2a6384117848e2e36e
a7b00f469b109fa53176a573ebd6d24687db0a42
/src/Search.tcc
da80d522a209362770f1f480e79274ce3ef317db
[ "BSD-2-Clause", "BSD-3-Clause", "MIT", "Apache-2.0", "CC-BY-3.0" ]
permissive
winni2k/bifrost
8b3fe23482833644e458d09bf04bf79e7e5437dd
5be773b3ccc3d432cea4e12ef32a60f17cd3e129
refs/heads/master
2021-01-01T12:28:26.407618
2020-06-05T18:04:45
2020-06-05T18:04:45
239,278,677
0
0
BSD-2-Clause
2020-02-09T09:36:23
2020-02-09T09:36:22
null
UTF-8
C++
false
false
43,107
tcc
#ifndef BIFROST_SEARCH_DBG_TCC #define BIFROST_SEARCH_DBG_TCC template<typename U, typename G> vector<pair<size_t, UnitigMap<U, G>>> CompactedDBG<U, G>::searchSequence( const string& seq, const bool exact, const bool insertion, const bool deletion, const bool substitution, const bool or_exclusive_match) { if (invalid){ cerr << "CompactedDBG::searchSequence(): Graph is invalid and cannot be searched" << endl; return vector<pair<size_t, UnitigMap<U, G>>>(); } if (seq.length() < k_){ cerr << "CompactedDBG::searchSequence(): Query length is shorter than k-mer size" << endl; return vector<pair<size_t, UnitigMap<U, G>>>(); } vector<pair<size_t, UnitigMap<U, G>>> v_um; string seqs; Roaring r; auto worker_func = [&](const bool subst, const bool ins, const bool del, const size_t shift){ const bool subst_or_ind = (subst || ins); const bool inexact = (subst_or_ind || del); const size_t ins_mask = static_cast<size_t>(!ins) - 1; const size_t del_mask = static_cast<size_t>(!del) - 1; const size_t end = 1ULL << ((static_cast<size_t>(!subst_or_ind) - 1) & 0x2ULL); const size_t seq_len = seq.length(); auto processUnitigMap = [&](const UnitigMap<U, G>& um, const size_t pos_seq){ if (um.strand){ for (size_t j = um.dist; j < um.dist + um.len; ++j){ size_t l_pos_seq = pos_seq + j - um.dist; const size_t shift_pos_seq = (l_pos_seq / k_) + (l_pos_seq % k_ > shift); l_pos_seq -= (ins_mask & shift_pos_seq); l_pos_seq += (del_mask & shift_pos_seq); if (l_pos_seq + k_ - 1 < seq_len) v_um.push_back({l_pos_seq, um.getKmerMapping(j)}); } } else { for (size_t j = um.dist; j < um.dist + um.len; ++j){ size_t l_pos_seq = pos_seq + um.dist + um.len - j - 1; const size_t shift_pos_seq = (l_pos_seq / k_) + (l_pos_seq % k_ > shift); l_pos_seq -= (ins_mask & shift_pos_seq); l_pos_seq += (del_mask & shift_pos_seq); if (l_pos_seq + k_ - 1 < seq_len) v_um.push_back({l_pos_seq, um.getKmerMapping(j)}); } } }; for (size_t i = 0; i != end; ++i){ if (subst_or_ind){ for (size_t j = shift; j < seqs.length(); j += k_) seqs[j] = alpha[i]; } minHashIterator<RepHash> mhi = minHashIterator<RepHash>(seqs.c_str(), seqs.length(), k_, g_, RepHash(), true); minHashResultIterator<RepHash> it_min = *mhi, it_min_end; minHashResult mhr = *it_min; Minimizer minz = Minimizer(seqs.c_str() + mhr.pos).rep(); pair<size_t, bool> minz_pres = {mhr.pos, hmap_min_unitigs.find(minz) != hmap_min_unitigs.end()}; for (++it_min; !minz_pres.second && (it_min != it_min_end); ++it_min){ mhr = *it_min; minz = Minimizer(seqs.c_str() + mhr.pos).rep(); minz_pres.second = (hmap_min_unitigs.find(minz) != hmap_min_unitigs.end()); } size_t pos_seq = 0; size_t l_pos_seq = 0; size_t shift_pos_seq = 0; shift_pos_seq = (l_pos_seq / k_) + (l_pos_seq % k_ > shift); l_pos_seq -= (ins_mask & shift_pos_seq); l_pos_seq += (del_mask & shift_pos_seq); if (!inexact || !or_exclusive_match || !r.contains(l_pos_seq)){ if (minz_pres.second){ // If at least one minimizer was present, search the kmer const UnitigMap<U, G> um = findUnitig(seqs.c_str(), pos_seq, seqs.length(), mhi); if (!um.isEmpty){ processUnitigMap(um, pos_seq); pos_seq += um.len - 1; mhi += pos_seq - mhi.getKmerPosition(); } } } ++pos_seq; ++mhi; while (pos_seq < seqs.length() - k_ + 1){ shift_pos_seq = (pos_seq / k_) + (pos_seq % k_ > shift); l_pos_seq = pos_seq - (ins_mask & shift_pos_seq) + (del_mask & shift_pos_seq); if (!inexact || !or_exclusive_match || !r.contains(l_pos_seq)){ it_min = *mhi; mhr = *it_min; // If minimizers of new kmer are different from minimizers of previous kmer // or if minimizers are the same but they were present, search them again if ((mhr.pos != minz_pres.first) || minz_pres.second){ if (mhr.pos != minz_pres.first){ minz = Minimizer(seqs.c_str() + mhr.pos).rep(); minz_pres = {mhr.pos, hmap_min_unitigs.find(minz) != hmap_min_unitigs.end()}; for (++it_min; !minz_pres.second && (it_min != it_min_end); ++it_min){ mhr = *it_min; minz = Minimizer(seqs.c_str() + mhr.pos).rep(); minz_pres.second = (hmap_min_unitigs.find(minz) != hmap_min_unitigs.end()); } } if (minz_pres.second) { // If the k-mer has already been searched in the past, discard const UnitigMap<U, G> um = findUnitig(seqs.c_str(), pos_seq, seqs.length(), mhi); if (!um.isEmpty){ processUnitigMap(um, pos_seq); pos_seq += um.len - 1; mhi += pos_seq - mhi.getKmerPosition(); } } } } ++pos_seq; ++mhi; } } }; if (exact){ for (size_t i = 0; i < seq.length() - k_ + 1; ++i) { const UnitigMap<U, G> um = findUnitig(seq.c_str(), i, seq.length()); if (!um.isEmpty) { // Read maps to a Unitig if (um.strand){ for (size_t j = um.dist; j < um.dist + um.len; ++j) v_um.push_back({i + j - um.dist, um.getKmerMapping(j)}); } else { for (size_t j = um.dist; j < um.dist + um.len; ++j) v_um.push_back({i + um.dist + um.len - j - 1, um.getKmerMapping(j)}); } i += um.len - 1; } } if (or_exclusive_match){ for (const auto& p : v_um) r.add(p.first); } } if (substitution){ for (size_t i = 0; i != k_; ++i){ seqs = seq; worker_func(true, false, false, i); } } if (insertion){ for (size_t i = 0; i != k_; ++i){ std::stringstream ss; for (size_t j = 0; j < i; ++j) ss << seq[j]; for (size_t j = i, cpt = 0; j < seq.length(); ++j, ++cpt) { if (cpt % (k_ - 1) == 0) ss << alpha[0]; ss << seq[j]; } seqs = ss.str(); worker_func(false, true, false, i); } } if (deletion && (seq.length() >= (k_ + 1))){ for (size_t i = 0; i != (k_ + 1); ++i){ std::stringstream ss; for (size_t j = 0; j < i; ++j) ss << seq[j]; for (size_t j = i, cpt = 0; j < seq.length(); ++j, ++cpt) { if (cpt % (k_ + 1) != 0) ss << seq[j]; } seqs = ss.str(); worker_func(false, false, true, i); } } return v_um; } template<typename U, typename G> vector<pair<size_t, UnitigMap<U, G>>> CompactedDBG<U, G>::searchSequence( const string& seq, const bool exact, const bool insertion, const bool deletion, const bool substitution, const double ratio_kmers, const bool or_exclusive_match) { if (invalid){ cerr << "CompactedDBG::searchSequence(): Graph is invalid and cannot be searched" << endl; return vector<pair<size_t, UnitigMap<U, G>>>(); } if (ratio_kmers < 0.0){ cerr << "CompactedDBG::searchSequence(): Ratio of k-mers is less than 0.0" << endl; return vector<pair<size_t, UnitigMap<U, G>>>(); } if (ratio_kmers > 1.0){ cerr << "CompactedDBG::searchSequence(): Ratio of k-mers is greater than 1.0" << endl; return vector<pair<size_t, UnitigMap<U, G>>>(); } if (seq.length() < k_){ cerr << "CompactedDBG::searchSequence(): Query length is shorter than k-mer size" << endl; return vector<pair<size_t, UnitigMap<U, G>>>(); } const size_t nb_km_min = static_cast<double>(seq.length() - k_ + 1) * ratio_kmers; vector<pair<size_t, UnitigMap<U, G>>> v_um; string seqs; Roaring r, r_pos; auto worker_func = [&](const bool subst, const bool ins, const bool del, const size_t shift){ const bool subst_or_ind = (subst || ins); const bool inexact = (subst_or_ind || del); const size_t ins_mask = static_cast<size_t>(!ins) - 1; const size_t del_mask = static_cast<size_t>(!del) - 1; const size_t end = 1ULL << ((static_cast<size_t>(!subst_or_ind) - 1) & 0x2ULL); const size_t seq_len = seq.length(); auto processUnitigMap = [&](const UnitigMap<U, G>& um, const size_t pos_seq){ if (um.strand){ for (size_t j = um.dist; j < um.dist + um.len; ++j){ size_t l_pos_seq = pos_seq + j - um.dist; const size_t shift_pos_seq = (l_pos_seq / k_) + (l_pos_seq % k_ > shift); l_pos_seq -= (ins_mask & shift_pos_seq); l_pos_seq += (del_mask & shift_pos_seq); if (l_pos_seq + k_ - 1 < seq_len){ v_um.push_back({l_pos_seq, um.getKmerMapping(j)}); r_pos.add(l_pos_seq); } } } else { for (size_t j = um.dist; j < um.dist + um.len; ++j){ size_t l_pos_seq = pos_seq + um.dist + um.len - j - 1; const size_t shift_pos_seq = (l_pos_seq / k_) + (l_pos_seq % k_ > shift); l_pos_seq -= (ins_mask & shift_pos_seq); l_pos_seq += (del_mask & shift_pos_seq); if (l_pos_seq + k_ - 1 < seq_len){ v_um.push_back({l_pos_seq, um.getKmerMapping(j)}); r_pos.add(l_pos_seq); } } } }; for (size_t i = 0; i != end; ++i){ if (subst_or_ind){ for (size_t j = shift; j < seqs.length(); j += k_) seqs[j] = alpha[i]; } minHashIterator<RepHash> mhi = minHashIterator<RepHash>(seqs.c_str(), seqs.length(), k_, g_, RepHash(), true); minHashResultIterator<RepHash> it_min = *mhi, it_min_end; minHashResult mhr = *it_min; Minimizer minz = Minimizer(seqs.c_str() + mhr.pos).rep(); pair<size_t, bool> minz_pres = {mhr.pos, hmap_min_unitigs.find(minz) != hmap_min_unitigs.end()}; for (++it_min; !minz_pres.second && (it_min != it_min_end); ++it_min){ mhr = *it_min; minz = Minimizer(seqs.c_str() + mhr.pos).rep(); minz_pres.second = (hmap_min_unitigs.find(minz) != hmap_min_unitigs.end()); } size_t pos_seq = 0; size_t l_pos_seq = 0; size_t shift_pos_seq = 0; shift_pos_seq = (l_pos_seq / k_) + (l_pos_seq % k_ > shift); l_pos_seq -= (ins_mask & shift_pos_seq); l_pos_seq += (del_mask & shift_pos_seq); if (!inexact || !or_exclusive_match || !r.contains(l_pos_seq)){ if (minz_pres.second){ // If at least one minimizer was present, search the kmer const UnitigMap<U, G> um = findUnitig(seqs.c_str(), pos_seq, seqs.length(), mhi); if (!um.isEmpty){ processUnitigMap(um, pos_seq); if (r_pos.cardinality() >= nb_km_min) return; pos_seq += um.len - 1; mhi += pos_seq - mhi.getKmerPosition(); } } } ++pos_seq; ++mhi; while (pos_seq < seqs.length() - k_ + 1){ shift_pos_seq = (pos_seq / k_) + (pos_seq % k_ > shift); l_pos_seq = pos_seq - (ins_mask & shift_pos_seq) + (del_mask & shift_pos_seq); if (!inexact || !or_exclusive_match || !r.contains(l_pos_seq)){ it_min = *mhi; mhr = *it_min; // If minimizers of new kmer are different from minimizers of previous kmer // or if minimizers are the same but they were present, search them again if ((mhr.pos != minz_pres.first) || minz_pres.second){ if (mhr.pos != minz_pres.first){ minz = Minimizer(seqs.c_str() + mhr.pos).rep(); minz_pres = {mhr.pos, hmap_min_unitigs.find(minz) != hmap_min_unitigs.end()}; for (++it_min; !minz_pres.second && (it_min != it_min_end); ++it_min){ mhr = *it_min; minz = Minimizer(seqs.c_str() + mhr.pos).rep(); minz_pres.second = (hmap_min_unitigs.find(minz) != hmap_min_unitigs.end()); } } if (minz_pres.second) { // If the k-mer has already been searched in the past, discard const UnitigMap<U, G> um = findUnitig(seqs.c_str(), pos_seq, seqs.length(), mhi); if (!um.isEmpty){ processUnitigMap(um, pos_seq); if (r_pos.cardinality() >= nb_km_min) return; pos_seq += um.len - 1; mhi += pos_seq - mhi.getKmerPosition(); } } } } ++pos_seq; ++mhi; } } }; if (exact){ for (size_t i = 0; i < seq.length() - k_ + 1; ++i) { const UnitigMap<U, G> um = findUnitig(seq.c_str(), i, seq.length()); if (!um.isEmpty) { // Read maps to a Unitig if (um.strand){ for (size_t j = um.dist; j < um.dist + um.len; ++j){ const size_t l_pos = i + j - um.dist; v_um.push_back({l_pos, um.getKmerMapping(j)}); r_pos.add(l_pos); } } else { for (size_t j = um.dist; j < um.dist + um.len; ++j){ const size_t l_pos = i + um.dist + um.len - j - 1; v_um.push_back({l_pos, um.getKmerMapping(j)}); r_pos.add(l_pos); } } if (r_pos.cardinality() >= nb_km_min) return v_um; i += um.len - 1; } } if (or_exclusive_match) r = r_pos; } if (substitution){ for (size_t i = 0; i != k_; ++i){ seqs = seq; worker_func(true, false, false, i); if (r_pos.cardinality() >= nb_km_min) return v_um; } } if (insertion){ for (size_t i = 0; i != k_; ++i){ std::stringstream ss; for (size_t j = 0; j < i; ++j) ss << seq[j]; for (size_t j = i, cpt = 0; j < seq.length(); ++j, ++cpt) { if (cpt % (k_ - 1) == 0) ss << alpha[0]; ss << seq[j]; } seqs = ss.str(); worker_func(false, true, false, i); if (r_pos.cardinality() >= nb_km_min) return v_um; } } if (deletion && (seq.length() >= (k_ + 1))){ for (size_t i = 0; i != (k_ + 1); ++i){ std::stringstream ss; for (size_t j = 0; j < i; ++j) ss << seq[j]; for (size_t j = i, cpt = 0; j < seq.length(); ++j, ++cpt) { if (cpt % (k_ + 1) != 0) ss << seq[j]; } seqs = ss.str(); worker_func(false, false, true, i); if (r_pos.cardinality() >= nb_km_min) return v_um; } } return v_um; } template<typename U, typename G> vector<pair<size_t, const_UnitigMap<U, G>>> CompactedDBG<U, G>::searchSequence( const string& seq, const bool exact, const bool insertion, const bool deletion, const bool substitution, const bool or_exclusive_match) const { if (invalid){ cerr << "CompactedDBG::searchSequence(): Graph is invalid and cannot be searched" << endl; return vector<pair<size_t, const_UnitigMap<U, G>>>(); } if (seq.length() < k_){ cerr << "CompactedDBG::searchSequence(): Query length is shorter than k-mer size" << endl; return vector<pair<size_t, const_UnitigMap<U, G>>>(); } vector<pair<size_t, const_UnitigMap<U, G>>> v_um; string seqs; Roaring r; auto worker_func = [&](const bool subst, const bool ins, const bool del, const size_t shift){ const bool subst_or_ind = (subst || ins); const bool inexact = (subst_or_ind || del); const size_t ins_mask = static_cast<size_t>(!ins) - 1; const size_t del_mask = static_cast<size_t>(!del) - 1; const size_t end = 1ULL << ((static_cast<size_t>(!subst_or_ind) - 1) & 0x2ULL); const size_t seq_len = seq.length(); auto processUnitigMap = [&](const const_UnitigMap<U, G>& um, const size_t pos_seq){ if (um.strand){ for (size_t j = um.dist; j < um.dist + um.len; ++j){ size_t l_pos_seq = pos_seq + j - um.dist; const size_t shift_pos_seq = (l_pos_seq / k_) + (l_pos_seq % k_ > shift); l_pos_seq -= (ins_mask & shift_pos_seq); l_pos_seq += (del_mask & shift_pos_seq); if (l_pos_seq + k_ - 1 < seq_len) v_um.push_back({l_pos_seq, um.getKmerMapping(j)}); } } else { for (size_t j = um.dist; j < um.dist + um.len; ++j){ size_t l_pos_seq = pos_seq + um.dist + um.len - j - 1; const size_t shift_pos_seq = (l_pos_seq / k_) + (l_pos_seq % k_ > shift); l_pos_seq -= (ins_mask & shift_pos_seq); l_pos_seq += (del_mask & shift_pos_seq); if (l_pos_seq + k_ - 1 < seq_len) v_um.push_back({l_pos_seq, um.getKmerMapping(j)}); } } }; for (size_t i = 0; i != end; ++i){ if (subst_or_ind){ for (size_t j = shift; j < seqs.length(); j += k_) seqs[j] = alpha[i]; } minHashIterator<RepHash> mhi = minHashIterator<RepHash>(seqs.c_str(), seqs.length(), k_, g_, RepHash(), true); minHashResultIterator<RepHash> it_min = *mhi, it_min_end; minHashResult mhr = *it_min; Minimizer minz = Minimizer(seqs.c_str() + mhr.pos).rep(); pair<size_t, bool> minz_pres = {mhr.pos, hmap_min_unitigs.find(minz) != hmap_min_unitigs.end()}; for (++it_min; !minz_pres.second && (it_min != it_min_end); ++it_min){ mhr = *it_min; minz = Minimizer(seqs.c_str() + mhr.pos).rep(); minz_pres.second = (hmap_min_unitigs.find(minz) != hmap_min_unitigs.end()); } size_t pos_seq = 0; size_t l_pos_seq = 0; size_t shift_pos_seq = 0; shift_pos_seq = (l_pos_seq / k_) + (l_pos_seq % k_ > shift); l_pos_seq -= (ins_mask & shift_pos_seq); l_pos_seq += (del_mask & shift_pos_seq); if (!inexact || !or_exclusive_match || !r.contains(l_pos_seq)){ if (minz_pres.second){ // If at least one minimizer was present, search the kmer const const_UnitigMap<U, G> um = findUnitig(seqs.c_str(), pos_seq, seqs.length(), mhi); if (!um.isEmpty){ processUnitigMap(um, pos_seq); pos_seq += um.len - 1; mhi += pos_seq - mhi.getKmerPosition(); } } } ++pos_seq; ++mhi; while (pos_seq < seqs.length() - k_ + 1){ shift_pos_seq = (pos_seq / k_) + (pos_seq % k_ > shift); l_pos_seq = pos_seq - (ins_mask & shift_pos_seq) + (del_mask & shift_pos_seq); if (!inexact || !or_exclusive_match || !r.contains(l_pos_seq)){ it_min = *mhi; mhr = *it_min; // If minimizers of new kmer are different from minimizers of previous kmer // or if minimizers are the same but they were present, search them again if ((mhr.pos != minz_pres.first) || minz_pres.second){ if (mhr.pos != minz_pres.first){ minz = Minimizer(seqs.c_str() + mhr.pos).rep(); minz_pres = {mhr.pos, hmap_min_unitigs.find(minz) != hmap_min_unitigs.end()}; for (++it_min; !minz_pres.second && (it_min != it_min_end); ++it_min){ mhr = *it_min; minz = Minimizer(seqs.c_str() + mhr.pos).rep(); minz_pres.second = (hmap_min_unitigs.find(minz) != hmap_min_unitigs.end()); } } if (minz_pres.second) { // If the k-mer has already been searched in the past, discard const const_UnitigMap<U, G> um = findUnitig(seqs.c_str(), pos_seq, seqs.length(), mhi); if (!um.isEmpty){ processUnitigMap(um, pos_seq); pos_seq += um.len - 1; mhi += pos_seq - mhi.getKmerPosition(); } } } } ++pos_seq; ++mhi; } } }; if (exact){ for (size_t i = 0; i < seq.length() - k_ + 1; ++i) { const const_UnitigMap<U, G> um = findUnitig(seq.c_str(), i, seq.length()); if (!um.isEmpty) { // Read maps to a Unitig if (um.strand){ for (size_t j = um.dist; j < um.dist + um.len; ++j) v_um.push_back({i + j - um.dist, um.getKmerMapping(j)}); } else { for (size_t j = um.dist; j < um.dist + um.len; ++j) v_um.push_back({i + um.dist + um.len - j - 1, um.getKmerMapping(j)}); } i += um.len - 1; } } if (or_exclusive_match){ for (const auto& p : v_um) r.add(p.first); } } if (substitution){ for (size_t i = 0; i != k_; ++i){ seqs = seq; worker_func(true, false, false, i); } } if (insertion){ for (size_t i = 0; i != k_; ++i){ std::stringstream ss; for (size_t j = 0; j < i; ++j) ss << seq[j]; for (size_t j = i, cpt = 0; j < seq.length(); ++j, ++cpt) { if (cpt % (k_ - 1) == 0) ss << alpha[0]; ss << seq[j]; } seqs = ss.str(); worker_func(false, true, false, i); } } if (deletion && (seq.length() >= (k_ + 1))){ for (size_t i = 0; i != (k_ + 1); ++i){ std::stringstream ss; for (size_t j = 0; j < i; ++j) ss << seq[j]; for (size_t j = i, cpt = 0; j < seq.length(); ++j, ++cpt) { if (cpt % (k_ + 1) != 0) ss << seq[j]; } seqs = ss.str(); worker_func(false, false, true, i); } } return v_um; } template<typename U, typename G> vector<pair<size_t, const_UnitigMap<U, G>>> CompactedDBG<U, G>::searchSequence( const string& seq, const bool exact, const bool insertion, const bool deletion, const bool substitution, const double ratio_kmers, const bool or_exclusive_match) const { if (invalid){ cerr << "CompactedDBG::searchSequence(): Graph is invalid and cannot be searched" << endl; return vector<pair<size_t, const_UnitigMap<U, G>>>(); } if (ratio_kmers < 0.0){ cerr << "CompactedDBG::searchSequence(): Ratio of k-mers is less than 0.0" << endl; return vector<pair<size_t, const_UnitigMap<U, G>>>(); } if (ratio_kmers > 1.0){ cerr << "CompactedDBG::searchSequence(): Ratio of k-mers is greater than 1.0" << endl; return vector<pair<size_t, const_UnitigMap<U, G>>>(); } if (seq.length() < k_){ cerr << "CompactedDBG::searchSequence(): Query length is shorter than k-mer size" << endl; return vector<pair<size_t, const_UnitigMap<U, G>>>(); } const size_t nb_km_min = static_cast<double>(seq.length() - k_ + 1) * ratio_kmers; vector<pair<size_t, const_UnitigMap<U, G>>> v_um; string seqs; Roaring r, r_pos; auto worker_func = [&](const bool subst, const bool ins, const bool del, const size_t shift){ const bool subst_or_ind = (subst || ins); const bool inexact = (subst_or_ind || del); const size_t ins_mask = static_cast<size_t>(!ins) - 1; const size_t del_mask = static_cast<size_t>(!del) - 1; const size_t end = 1ULL << ((static_cast<size_t>(!subst_or_ind) - 1) & 0x2ULL); const size_t seq_len = seq.length(); auto processUnitigMap = [&](const const_UnitigMap<U, G>& um, const size_t pos_seq){ if (um.strand){ for (size_t j = um.dist; j < um.dist + um.len; ++j){ size_t l_pos_seq = pos_seq + j - um.dist; const size_t shift_pos_seq = (l_pos_seq / k_) + (l_pos_seq % k_ > shift); l_pos_seq -= (ins_mask & shift_pos_seq); l_pos_seq += (del_mask & shift_pos_seq); if (l_pos_seq + k_ - 1 < seq_len){ v_um.push_back({l_pos_seq, um.getKmerMapping(j)}); r_pos.add(l_pos_seq); } } } else { for (size_t j = um.dist; j < um.dist + um.len; ++j){ size_t l_pos_seq = pos_seq + um.dist + um.len - j - 1; const size_t shift_pos_seq = (l_pos_seq / k_) + (l_pos_seq % k_ > shift); l_pos_seq -= (ins_mask & shift_pos_seq); l_pos_seq += (del_mask & shift_pos_seq); if (l_pos_seq + k_ - 1 < seq_len){ v_um.push_back({l_pos_seq, um.getKmerMapping(j)}); r_pos.add(l_pos_seq); } } } }; for (size_t i = 0; i != end; ++i){ if (subst_or_ind){ for (size_t j = shift; j < seqs.length(); j += k_) seqs[j] = alpha[i]; } minHashIterator<RepHash> mhi = minHashIterator<RepHash>(seqs.c_str(), seqs.length(), k_, g_, RepHash(), true); minHashResultIterator<RepHash> it_min = *mhi, it_min_end; minHashResult mhr = *it_min; Minimizer minz = Minimizer(seqs.c_str() + mhr.pos).rep(); pair<size_t, bool> minz_pres = {mhr.pos, hmap_min_unitigs.find(minz) != hmap_min_unitigs.end()}; for (++it_min; !minz_pres.second && (it_min != it_min_end); ++it_min){ mhr = *it_min; minz = Minimizer(seqs.c_str() + mhr.pos).rep(); minz_pres.second = (hmap_min_unitigs.find(minz) != hmap_min_unitigs.end()); } size_t pos_seq = 0; size_t l_pos_seq = 0; size_t shift_pos_seq = 0; shift_pos_seq = (l_pos_seq / k_) + (l_pos_seq % k_ > shift); l_pos_seq -= (ins_mask & shift_pos_seq); l_pos_seq += (del_mask & shift_pos_seq); if (!inexact || !or_exclusive_match || !r.contains(l_pos_seq)){ if (minz_pres.second){ // If at least one minimizer was present, search the kmer const const_UnitigMap<U, G> um = findUnitig(seqs.c_str(), pos_seq, seqs.length(), mhi); if (!um.isEmpty){ processUnitigMap(um, pos_seq); if (r_pos.cardinality() >= nb_km_min) return; pos_seq += um.len - 1; mhi += pos_seq - mhi.getKmerPosition(); } } } ++pos_seq; ++mhi; while (pos_seq < seqs.length() - k_ + 1){ shift_pos_seq = (pos_seq / k_) + (pos_seq % k_ > shift); l_pos_seq = pos_seq - (ins_mask & shift_pos_seq) + (del_mask & shift_pos_seq); if (!inexact || !or_exclusive_match || !r.contains(l_pos_seq)){ it_min = *mhi; mhr = *it_min; // If minimizers of new kmer are different from minimizers of previous kmer // or if minimizers are the same but they were present, search them again if ((mhr.pos != minz_pres.first) || minz_pres.second){ if (mhr.pos != minz_pres.first){ minz = Minimizer(seqs.c_str() + mhr.pos).rep(); minz_pres = {mhr.pos, hmap_min_unitigs.find(minz) != hmap_min_unitigs.end()}; for (++it_min; !minz_pres.second && (it_min != it_min_end); ++it_min){ mhr = *it_min; minz = Minimizer(seqs.c_str() + mhr.pos).rep(); minz_pres.second = (hmap_min_unitigs.find(minz) != hmap_min_unitigs.end()); } } if (minz_pres.second) { // If the k-mer has already been searched in the past, discard const const_UnitigMap<U, G> um = findUnitig(seqs.c_str(), pos_seq, seqs.length(), mhi); if (!um.isEmpty){ processUnitigMap(um, pos_seq); if (r_pos.cardinality() >= nb_km_min) return; pos_seq += um.len - 1; mhi += pos_seq - mhi.getKmerPosition(); } } } } ++pos_seq; ++mhi; } } }; if (exact){ for (size_t i = 0; i < seq.length() - k_ + 1; ++i) { const const_UnitigMap<U, G> um = findUnitig(seq.c_str(), i, seq.length()); if (!um.isEmpty) { // Read maps to a Unitig if (um.strand){ for (size_t j = um.dist; j < um.dist + um.len; ++j){ const size_t l_pos = i + j - um.dist; v_um.push_back({l_pos, um.getKmerMapping(j)}); r_pos.add(l_pos); } } else { for (size_t j = um.dist; j < um.dist + um.len; ++j){ const size_t l_pos = i + um.dist + um.len - j - 1; v_um.push_back({l_pos, um.getKmerMapping(j)}); r_pos.add(l_pos); } } if (r_pos.cardinality() >= nb_km_min) return v_um; i += um.len - 1; } } if (or_exclusive_match) r = r_pos; } if (substitution){ for (size_t i = 0; i != k_; ++i){ seqs = seq; worker_func(true, false, false, i); if (r_pos.cardinality() >= nb_km_min) return v_um; } } if (insertion){ for (size_t i = 0; i != k_; ++i){ std::stringstream ss; for (size_t j = 0; j < i; ++j) ss << seq[j]; for (size_t j = i, cpt = 0; j < seq.length(); ++j, ++cpt) { if (cpt % (k_ - 1) == 0) ss << alpha[0]; ss << seq[j]; } seqs = ss.str(); worker_func(false, true, false, i); if (r_pos.cardinality() >= nb_km_min) return v_um; } } if (deletion && (seq.length() >= (k_ + 1))){ for (size_t i = 0; i != (k_ + 1); ++i){ std::stringstream ss; for (size_t j = 0; j < i; ++j) ss << seq[j]; for (size_t j = i, cpt = 0; j < seq.length(); ++j, ++cpt) { if (cpt % (k_ + 1) != 0) ss << seq[j]; } seqs = ss.str(); worker_func(false, false, true, i); if (r_pos.cardinality() >= nb_km_min) return v_um; } } return v_um; } template<typename U, typename G> bool CompactedDBG<U, G>::search(const vector<string>& query_filenames, const string& out_filename_prefix, const double ratio_kmers, const bool inexact_search, const size_t nb_threads, const size_t verbose) const { if (invalid){ cerr << "CompactedDBG::search(): Graph is invalid and cannot be searched" << endl; return false; } if (nb_threads > std::thread::hardware_concurrency()){ cerr << "CompactedDBG::search(): Number of threads cannot be greater than or equal to " << std::thread::hardware_concurrency() << "." << endl; return false; } if (nb_threads <= 0){ cerr << "CompactedDBG::search(): Number of threads cannot be less than or equal to 0." << endl; return false; } const string out_tmp = out_filename_prefix + ".tsv"; FILE* fp_tmp = fopen(out_tmp.c_str(), "w"); if (fp_tmp == NULL) { cerr << "CompactedDBG::search(): Could not open file " << out_tmp << " for writing." << endl; return false; } else { fclose(fp_tmp); if (std::remove(out_tmp.c_str()) != 0) cerr << "CompactedDBG::search(): Could not remove temporary file " << out_tmp << endl; } if (verbose) cout << "CompactedDBG::search(): Querying graph." << endl; const CompactedDBG<U, G>& dbg = *this; string s; size_t file_id = 0; const size_t max_len_seq = 1024; const size_t thread_seq_buf_sz = 64 * max_len_seq; FileParser fp(query_filenames); ofstream outfile; ostream out(0); outfile.open(out_tmp.c_str()); out.rdbuf(outfile.rdbuf()); //out.sync_with_stdio(false); const char query_pres[3] = {'\t', '1', '\n'}; const char query_abs[3] = {'\t', '0', '\n'}; const size_t l_query_res = 3; // Write header to TSV file out << "query_name\tpresence_query\n"; if (nb_threads == 1){ char* buffer_res = new char[thread_seq_buf_sz]; size_t pos_buffer_out = 0; size_t nb_queries_found = 0; while (fp.read(s, file_id)){ bool is_found = false; const size_t nb_km_min = static_cast<double>(s.length() - k_ + 1) * ratio_kmers; const char* query_name = fp.getNameString(); const size_t l_query_name = strlen(query_name); for (auto& c : s) c &= 0xDF; const vector<pair<size_t, const_UnitigMap<U, G>>> v = dbg.searchSequence( s, true, inexact_search, inexact_search, inexact_search, ratio_kmers, true); if (inexact_search){ Roaring r; for (const auto& p : v) r.add(p.first); is_found = (r.cardinality() >= nb_km_min); } else is_found = (v.size() >= nb_km_min); if (pos_buffer_out + l_query_name + l_query_res >= thread_seq_buf_sz){ // If next result cannot fit in the buffer out.write(buffer_res, pos_buffer_out); // Write result buffer pos_buffer_out = 0; // Reset position to 0; } // Copy new result to buffer std::memcpy(buffer_res + pos_buffer_out, query_name, l_query_name * sizeof(char)); if (is_found){ std::memcpy(buffer_res + pos_buffer_out + l_query_name, query_pres, l_query_res * sizeof(char)); ++nb_queries_found; } else std::memcpy(buffer_res + pos_buffer_out + l_query_name, query_abs, l_query_res * sizeof(char)); pos_buffer_out += l_query_name + l_query_res; } // Flush unresult written to final output if (pos_buffer_out > 0) out.write(buffer_res, pos_buffer_out); delete[] buffer_res; if (verbose) cout << "CompactedDBG::search(): Found " << nb_queries_found << " queries. " << endl; } else { { bool stop = false; vector<thread> workers; // need to keep track of threads so we can join them mutex mutex_files_in, mutex_file_out; std::atomic<size_t> nb_queries_found; nb_queries_found = 0; for (size_t t = 0; t < nb_threads; ++t){ workers.emplace_back( [&]{ char* buffer_res = new char[nb_threads]; vector<string> buffers_seq; vector<string> buffers_name; while (true) { { if (stop) { delete[] buffer_res; return; } size_t buffer_sz = 0; unique_lock<mutex> lock(mutex_files_in); stop = !fp.read(s, file_id); while (!stop){ buffer_sz += s.length(); buffers_seq.push_back(std::move(s)); buffers_name.push_back(string(fp.getNameString())); if (buffer_sz >= thread_seq_buf_sz) break; else stop = !fp.read(s, file_id); } } size_t pos_buffer_out = 0; const size_t buffers_seq_sz = buffers_seq.size(); for (size_t i = 0; i < buffers_seq_sz; ++i){ bool is_found = false; const size_t nb_km_min = static_cast<double>(buffers_seq[i].length() - k_ + 1) * ratio_kmers; const size_t l_name = buffers_name[i].length(); for (auto& c : buffers_seq[i]) c &= 0xDF; const vector<pair<size_t, const_UnitigMap<U, G>>> v = dbg.searchSequence( buffers_seq[i], true, inexact_search, inexact_search, inexact_search, ratio_kmers, true); if (inexact_search){ Roaring r; for (const auto& p : v) r.add(p.first); is_found = (r.cardinality() >= nb_km_min); } else is_found = (v.size() >= nb_km_min); if (pos_buffer_out + l_name + l_query_res >= thread_seq_buf_sz){ // If next result cannot fit in the buffer unique_lock<mutex> lock(mutex_file_out); // Get the output lock out.write(buffer_res, pos_buffer_out); // Write result buffer pos_buffer_out = 0; // Reset position to 0; } // Copy new result to buffer std::memcpy(buffer_res + pos_buffer_out, buffers_name[i].c_str(), l_name * sizeof(char)); if (is_found){ std::memcpy(buffer_res + pos_buffer_out + l_name, query_pres, l_query_res * sizeof(char)); ++nb_queries_found; } else std::memcpy(buffer_res + pos_buffer_out + l_name, query_abs, l_query_res * sizeof(char)); pos_buffer_out += l_name + l_query_res; } if (pos_buffer_out > 0){ // Flush unresult written to final output unique_lock<mutex> lock(mutex_file_out); out.write(buffer_res, pos_buffer_out); } // Clear buffers for next round buffers_seq.clear(); buffers_name.clear(); } delete[] buffer_res; } ); } for (auto& t : workers) t.join(); if (verbose) cout << "CompactedDBG::search(): Found " << nb_queries_found << " queries. " << endl; } } outfile.close(); fp.close(); return true; } #endif
[ "guillaumeholley@gmail.com" ]
guillaumeholley@gmail.com
c387aa5a2044be2023b6c001f0bb8b34c2336355
c12dc233139fc8aa95877e6081e671c4a972b091
/RAW/IlcTagDB.h
de69b6d94a261bd1d267d7e52f77938dc997ec01
[]
no_license
yanqicw/ORKA-ILCRoot
b4be984cb9f1991b0c174da7428366af4973ef84
6e66c4cbae6835586274a385bee9bed254a63976
refs/heads/master
2020-04-01T02:27:50.942859
2012-12-03T17:51:10
2012-12-03T17:51:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,608
h
#ifndef ILCTAGDB_H #define ILCTAGDB_H // @(#) $Id: IlcTagDB.h 23318 2008-01-14 12:43:28Z hristov $ // Author: Fons Rademakers 26/11/99 /* 2012-2013 Infrastructure for Large Collider Experiment. * * All rights reserved. * * See cxx source for full Copyright notice */ ////////////////////////////////////////////////////////////////////////// // // // IlcTagDB // // // ////////////////////////////////////////////////////////////////////////// #ifndef ROOT_TObject #include <TObject.h> #endif #ifndef ROOT_TFile #include <TFile.h> #endif #ifndef ROOT_TTree #include <TTree.h> #endif #ifndef ROOT_TString #include <TString.h> #endif // Forward class declarations class IlcRawEventTag; class IlcTagDB : public TObject { public: IlcTagDB(IlcRawEventTag *eventTag, const char* fileName = NULL); virtual ~IlcTagDB() { Close(); } Bool_t Create(const char* fileName = NULL); virtual void Close(); void Fill() { fTree->Fill(); } Bool_t FileFull() { return (fMaxSize >= 0) ? ((fTagDB->GetBytesWritten() > fMaxSize) ? kTRUE : kFALSE) : kFALSE; } Bool_t NextFile(const char* fileName = NULL); void SetMaxSize(Double_t maxSize) { fMaxSize = maxSize; } void SetFS(const char* fs); Double_t GetBytesWritten() const { return fTagDB->GetBytesWritten(); } TFile *GetDB() const { return fTagDB; } const char *GetDBName() const { return fTagDB->GetName(); } IlcRawEventTag *GetEventTag() const { return fEventTag; } Int_t GetEvents() const { return (Int_t) fTree->GetEntries(); } Float_t GetCompressionFactor() const; protected: TFile *fTagDB; // DB to store header information only (tag) TTree *fTree; // tree use to store header IlcRawEventTag *fEventTag; // pointer to event tag object via which data is stored Double_t fMaxSize; // maximum size in bytes of tag DB TString fFS; // tag DB file system location Bool_t fDeleteFiles; // flag for deletion of files virtual const char *GetFileName() const; private: IlcTagDB(const IlcTagDB& tagDB); IlcTagDB& operator = (const IlcTagDB& tagDB); ClassDef(IlcTagDB,0) // Tag DB }; #endif
[ "anna@fbb65c11-2394-7148-9363-1d506dd39c89" ]
anna@fbb65c11-2394-7148-9363-1d506dd39c89
ca6bafe4556cd86abaece8c672a46ea0784d2ae7
1794e7b0cbd22f9651dfa4431ce40629bf65653a
/task2.cpp
51d90af08011bc03826878fe6cc30afde586eea4
[]
no_license
donymie/Tasks
4ad164f2fed3dbcced012405b3ce9ef930a29d10
12c64774818fd307b3d38b8f4a70cc5feab595b5
refs/heads/master
2021-07-20T19:34:37.312143
2017-10-29T19:41:24
2017-10-29T19:41:24
108,764,587
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
265
cpp
// task2.cpp: определяет точку входа для консольного приложения. // #include "stdafx.h" #include <iostream> using namespace std; int main() { int i; for (i = 26; i >= 15; i--) { cout << i << " "; } cin.get(); }
[ "sashadonchak@gmail.com" ]
sashadonchak@gmail.com
ba3758b0ffa14e0e53822f6144aca944448fecd3
8b1b44762d2d4461c80f82206b3db8ddba143304
/arduinoPrograms/testDigisparkPro/testDigisparkPro.ino
8f997dbcc80059f4c0bab6d78cf1154465531ec1
[ "MIT" ]
permissive
gavingavinchan/lusca
45defa93c90eb55e7bdb4bab9e64e0e0ffca1742
9706dff5182eea850dfaa8d3a5b4cb5e9f9397c3
refs/heads/master
2022-12-21T15:50:23.824487
2019-07-26T04:24:45
2019-07-26T04:24:45
150,950,375
1
1
MIT
2022-12-09T06:13:16
2018-09-30T09:00:44
JavaScript
UTF-8
C++
false
false
561
ino
#include "TinyWireS.h" // wrapper class for I2C slave routines #include <EEPROM.h> #define ledPin 1 void setup() { pinMode(ledPin,OUTPUT); TinyWireS.begin(0x45); // init I2C Slave mode TinyWireS.onReceive(receiveEvent); } void receiveEvent(uint8_t howMany) { Blink(2); } void loop() { // put your main code here, to run repeatedly: TinyWireS_stop_check(); } void Blink(byte times){ for (byte i=0; i< times; i++){ digitalWrite(ledPin,HIGH); tws_delay(175); digitalWrite(ledPin,LOW); tws_delay(175); } }
[ "gavingavinchan@gmail.com" ]
gavingavinchan@gmail.com
673a3adb2b5615a9fbed75bce3c21310101ae2cf
a71e120698165b95c6c3f4cdb9b8ec1e5e118170
/Validation/VstQuaero/interface/Refine.hh
75a131e5148adf3a117ab012d7aef7ad4b6e4c1e
[]
no_license
peiffer/usercode
173d69b64e2a4f7082c9009f84336aa7c45f32c5
7558c340d4cda8ec5a5b00aabcf94d5b3591e178
refs/heads/master
2021-01-14T14:27:32.667867
2016-09-06T13:59:05
2016-09-06T13:59:05
57,212,842
0
0
null
2016-04-27T12:47:54
2016-04-27T12:47:54
null
UTF-8
C++
false
false
502
hh
#ifndef __Refine #define __Refine #include <vector> #include <string> #include <map> #include "Validation/VstQuaeroUtils/interface/QuaeroEvent.hh" #include "Validation/VstQuaeroUtils/interface/PartitionRule.hh" class Refine { public: Refine(std::string _collider, std::string _experiment, int _level=10); bool satisfiesCriteriaQ(QuaeroEvent& e); private: std::string collider, experiment; PartitionRule partitionRule; std::string finalState; double sumPtCut; double level; }; #endif
[ "mrenna@fnal.gov" ]
mrenna@fnal.gov
875d5efbefcdc1f2d4c1621fad382ec1320c20f5
c821ae31370eece6bc81949367453f16ff0bb02d
/cie_sign_sdk/src/ASN1/ASN1ObjectIdentifier.cpp
55d40401eb36b64eca72057ba926ec72854ac2db
[ "BSD-3-Clause" ]
permissive
italia/cie-middleware
09a4895555757eff43e65c1c7380fb0e7eaf95bc
aef317fa8400d257e35d0fbeaf86cd46f09f3e05
refs/heads/master
2023-06-22T14:05:34.714374
2023-06-14T14:29:03
2023-06-14T14:29:03
87,190,429
68
25
BSD-3-Clause
2023-06-14T14:29:04
2017-04-04T13:31:51
C++
UTF-8
C++
false
false
3,703
cpp
#include "ASN1ObjectIdentifier.h" #include <math.h> //#include "ASN1Exception.h" #include <stdlib.h> #include "UUCBufferedReader.h" const BYTE CASN1ObjectIdentifier::TAG = 0x06; CASN1ObjectIdentifier::~CASN1ObjectIdentifier() { } CASN1ObjectIdentifier::CASN1ObjectIdentifier(UUCBufferedReader& reader) : CASN1Object(reader) { } CASN1ObjectIdentifier::CASN1ObjectIdentifier(const CASN1Object &objId) : CASN1Object(objId) { //m_pObjId = new CBlob(*(objId.m_pObjId)); } CASN1ObjectIdentifier::CASN1ObjectIdentifier(const char* strObjId) :CASN1Object(TAG) { BYTE out[256]; int nIndex = 0; int nVal; int nAux; char* szTok; char* szOID = new char[strlen(strObjId) + 2]; strcpy(szOID, strObjId); szTok = strtok(szOID, "."); UINT nFirst = 40 * atoi(szTok) + atoi(strtok(NULL, ".")); if(nFirst > 0xff) { delete szOID; throw -1;//new CASN1BadObjectIdException(strObjId); } out[nIndex] = nFirst; nIndex++; int i = 0; while ((szTok = strtok(NULL, ".")) != NULL) { nVal = atoi(szTok); if(nVal == 0) { out[nIndex] = 0x00; nIndex++; } else if (nVal == 1) { out[nIndex] = 0x01; nIndex++; } else { i = (int)ceil((log((double)abs(nVal)) / log((double)2)) / 7); // base 128 while (nVal != 0) { nAux = (int)(floor(nVal / pow((float)128, i - 1))); nVal = nVal - (int)(pow((float)128, i - 1) * nAux); // next value (or with 0x80) if(nVal != 0) nAux |= 0x80; out[nIndex] = nAux; nIndex++; i--; } } } setValue(UUCByteArray(out, nIndex)); delete szOID; } bool CASN1ObjectIdentifier::equals(const CASN1ObjectIdentifier& objid) { if(getLength() != objid.getLength()) return false; const BYTE* val1 = getValue()->getContent(); const BYTE* val2 = objid.getValue()->getContent(); int r = memcmp(val1, val2, getLength()); return r == 0; } /* string CASN1ObjectIdentifier::ToOidString() { long value = 0; bool first = true; char szValue[256]; const UUCByteArray* pValue = getValue(); int len = pValue->getLength(); const BYTE* pVal = pValue->getContent(); string objId; for (int i = 0; i != len; i++) { int b = pVal[i]; // if (value < 0x80000000000000L) // { value = value * 128 + (b & 0x7f); if ((b & 0x80) == 0) // end of number reached { if (first) { switch ((int)value / 40) { case 0: objId.append("0"); break; case 1: objId.append("1"); value -= 40; break; default: objId.append("2"); value -= 80; break; } first = false; } objId.append("."); sprintf(szValue, "%d", value); objId.append(szValue); value = 0; } //} } return objId; } */ void CASN1ObjectIdentifier::ToOidString(UUCByteArray& objId) { long value = 0; bool first = true; char szValue[256]; const UUCByteArray* pValue = getValue(); int len = pValue->getLength(); const BYTE* pVal = pValue->getContent(); for (int i = 0; i != len; i++) { int b = pVal[i]; // if (value < 0x80000000000000L) // { value = value * 128 + (b & 0x7f); if ((b & 0x80) == 0) // end of number reached { if (first) { switch ((int)value / 40) { case 0: objId.append('0'); break; case 1: objId.append('1'); value -= 40; break; default: objId.append('2'); value -= 80; break; } first = false; } objId.append('.'); sprintf(szValue, "%d", value); objId.append((BYTE*)szValue, strlen(szValue)); value = 0; } } objId.append((BYTE)'\0'); //return objId.ToString(); }
[ "pdg@bit4id.com" ]
pdg@bit4id.com
bf19e17932dc88d868855b9fb6aaa985fec2a4a1
59944d5f1be79854f38ffb85ab9196f8098155ef
/vm_instruction_set.h
7ada528aa8aa216c09a5970f69e7d23001679d6c
[]
no_license
453483289/VmP_DBG
2759912038f2ff3e2ab8b5db639c176c53b2a045
18f511db8f13681a7f00ee9a24665a5d439ead22
refs/heads/master
2020-12-24T11:17:08.923932
2016-10-18T18:36:33
2016-10-18T18:36:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,690
h
#ifndef VM_INSTRUCTION_SET_H #define VM_INSTRUCTION_SET_H #include <tchar.h> #include <string> #include <vector> #include <string> #include <stdint.h> #include <unordered_map> #include "types.h" type_handler POP32_REG{ "POP_32 R", "3 4", "MOV EDX, [EBP+0x0]", "ADD EBP, 0x4", "MOV [EAX+EDI], EDX" }; type_handler PUSH32_INT{ "PUSH_32 ", "2 1", "SUB EBP, 0x4", "MOV [EBP+0x0], EAX" }; type_handler ADD_N2_N1{ "ADD N2, N1", "", "MOV EAX, [EBP+0x0]", "ADD [EBP+0x4], EAX" }; type_handler PUSH32_REG{ "PUSH_32 R", "1 4", "MOV EDX, [EAX+EDI]", "SUB EBP, 0x4", "MOV [EBP+0x0], EDX" }; type_handler NOR32_N2_N1{ "NOR_32 N2, N1 ;CF", "", "MOV EAX, [EBP+0x0]", "MOV EDX, [EBP+0x4]", "NOT EAX", "NOT EDX", "AND EAX, EDX", "MOV [EBP+0x4], EAX" }; type_handler FETCH_32_N1{ "FETCH32 N1", "", "MOV EAX, [EBP+0x0]", "MOV EAX, [EAX]", "MOV [EBP+0x0], EAX" }; type_handler FETCH_32_N1_V2{ "FETCH32 N1", "", "MOV EAX, [EBP+0x0]", "MOV EAX, [SS:EAX]", "MOV [EBP+0x0], EAX" }; type_handler FETCH_N1_N2{ "MOV [N1], N2 //destroy both", "", "MOV EAX, [EBP+0x0]", "MOV EDX, [EBP+0x4]", "ADD EBP, 0x8", "MOV [SS:EAX], EDX" }; type_handler MOV_N1_WN2{ "MOV [N1], WORD N2", "", "MOV EAX, [EBP+0x0]", "MOV DX, [EBP+0x4]", "ADD EBP, 0x6", "MOV [SS:EAX], DX" }; type_handler NOR_16{ "NOR_16 ;CF", "", "MOV AX, [EBP+0x0]", "MOV DX, [EBP+0x2]", "NOT AL", "NOT DL", "SUB EBP, 0x2", "AND AL, DL", "MOV [EBP+0x4], AX" }; type_handler POP_16{ "POP_16 r", "3 4", "MOV DX, [EBP+0x0]", "ADD EBP, 0x2", "MOV [EAX+EDI], DX" }; type_handler PUSH_8{ "PUSH_8 r", "1 4", "MOV AL, [EAX+EDI]", "SUB EBP, 0x2", "MOV [EBP+0x0], AX" }; type_handler POP_8{ "POP_8 r", "3 4", "MOV DX, [EBP+0x0]", "ADD EBP, 0x2", "MOV [EAX+EDI], DL" }; type_handler PUSH_16{ "PUSH_16 r", "1 4", "MOV AX, [EAX+EDI]", "SUB EBP, 0x2", "MOV [EBP+0x0], AX" }; type_handler SHR_8{ "SHR BYTE N1, BYTE N2 ;CF", "", "MOV AL, [EBP+0x0]", "MOV CL, [EBP+0x2]", "SUB EBP, 0x2", "SHR AL, CL", "MOV [EBP+0x4], AX" }; type_handler SHL_8{ "SHL BYTE N1, BYTE N2 ;CF", "", "MOV AL, [EBP+0x0]", "MOV CL, [EBP+0x2]", "SUB EBP, 0x2", "SHL AL, CL", "MOV [EBP+0x4], AX" }; type_handler PUSH_INT_16{ "PUSH_16 ", "2 1", "SUB EBP, 0x2", "MOV [EBP+0x0], AX" }; type_handler FETCH_16{ "FETCH_16", "", "MOV EAX, [EBP+0x0]", "ADD EBP, 0x2", "MOV AX, [SS:EAX]", "MOV [EBP+0x0], AX" }; type_handler FETCH_16_2{ "FETCH_16", "", "MOV EAX, [EBP+0x0]", "ADD EBP, 0x2", "MOV AX, [EAX]", "MOV [EBP+0x0], AX" }; type_handler ADD_16{ "ADD WORD N2, WORD N1", "", "MOV AX, [EBP+0x0]", "SUB EBP, 0x2", "ADD [EBP+0x4], AX" }; type_handler NAND_N1{ "NAND WORD N1, WORD N2 ;CF", "", "NOT DWORD [EBP+0x0]", "MOV AX, [EBP+0x0]", "SUB EBP, 0x2", "AND [EBP+0x4], AX" }; type_handler SHR_N1_B_N2{ "SHR N1, BYTE N2", "", "MOV EAX, [EBP+0x0]", "MOV CL, [EBP+0x4]", "SUB EBP, 0x2", "SHR EAX, CL", "MOV [EBP+0x4], EAX" }; type_handler SHL_N1_B_N2{ "SHL N1, BYTE N2", "", "MOV EAX, [EBP+0x0]", "MOV CL, [EBP+0x4]", "SUB EBP, 0x2", "SHL EAX, CL", "MOV [EBP+0x4], EAX" }; type_handler JUMP{ "JUMP N1+N2 ", "", "MOV ESI, [EBP+0x0]", "ADD EBP, 0x4", "ADD ESI, [EBP+0x0]" }; type_handler ADD_8{ "ADD BYTE N1, BYTE N2 ;CF", "", "MOV AL, [EBP+0x0]", "SUB EBP, 0x2", "ADD [EBP+0x4], AL" }; type_handler ADD_STACK{ "ADD STACK, 4", "", "ADD EBP, 0x4" }; type_handler MOV_WN2_N1{ "MOV WORD N2, BYTE: [N1] ;stack +2", "", "MOV EDX, [EBP+0x0]", "ADD EBP, 0x2", "MOV AL, [SS:EDX]", "MOV [EBP+0x0], AX" }; type_handler SHR_WN1_BN2{ "SHR WORD N1, BYTE N2", "", "MOV AX, [EBP+0x0]", "MOV CL, [EBP+0x2]", "SUB EBP, 0x2", "SHR AX, CL", }; type_handler SHL_WN1_BN2{ "SHL WORD N1, BYTE N2", "", "MOV AX, [EBP+0x0]", "MOV CL, [EBP+0x2]", "SUB EBP, 0x2", "SHL AX, CL", }; type_handler FETCH_8_N1{ "FETCH_8 N1", "", "MOV EDX, [EBP+0x0]", "ADD EBP, 0x2", "MOV AL, [EDX]", "MOV [EBP+0x0], AX" }; type_handler TIME_STAMP{ "TIME_STAMP", "", "RDTSC ", "SUB EBP, 0x8", "MOV [EBP+0x0], EDX", "MOV [EBP+0x4], EAX" }; type_handler DIVIDE{ "DIVIDE WORD N3 ;CF", "", "MOV DX, [EBP+0x0]", "MOV AX, [EBP+0x2]", "MOV CX, [EBP+0x4]", "SUB EBP, 0x2", "DIV CX", "MOV [EBP+0x4], DX", "MOV [EBP+0x6], AX" }; type_handler SHL_64{ "SHL_64 <N1,N2>, BYTE N3", "", "MOV EAX, [EBP+0x0]", "MOV EDX, [EBP+0x4]", "MOV CL, [EBP+0x8]", "ADD EBP, 0x2", "SHLD EAX, EDX, CL", "MOV [EBP+0x4], EAX" }; type_handler SHR_64{ "SHR_64 <N1,N2>, BYTE N3", "", "MOV EAX, [EBP+0x0]", "MOV EDX, [EBP+0x4]", "MOV CL, [EBP+0x8]", "ADD EBP, 0x2", "SHRD EAX, EDX, CL", "MOV [EBP+0x4], EAX" }; type_handler MUL_16{ "MUL WORD N1, WORD N2 ;CF", "", "MOV DX, [EBP+0x0]", "MOV AX, [EBP+0x2]", "SUB EBP, 0x4", "MUL DX", "MOV [EBP+0x4], DX", "MOV [EBP+0x6], AX" }; type_handler MUL_32{ "MUL N1, N2","","MOV EDX, [EBP+0x0]", "MOV EAX, [EBP+0x4]", "SUB EBP, 0x4", "IMUL EDX", "MOV [EBP+0x4], EDX", "MOV [EBP+0x8], EAX" }; type_handler DIV_32{ "DIV N3", "", "MOV EDX, [EBP+0x0]", "MOV EAX, [EBP+0x4]", "DIV DWORD [EBP+0x8]", "MOV [EBP+0x4], EDX", "MOV [EBP+0x8], EAX" }; type_handler IDIV_32{ "IDIV N3", "", "MOV EDX, [EBP+0x0]", "MOV EAX, [EBP+0x4]", "IDIV DWORD [EBP+0x8]", "MOV [EBP+0x4], EDX", "MOV [EBP+0x8], EAX" }; type_handler MOV_STACK{ "MOV STACK, N1", "", "MOV EBP, [EBP+0x0]" }; type_handler MACHINE_ENTER{ "VM_OUTSIDE", "", "MOV ESP, EBP" }; std::vector<type_handler> good_handlers{ SHR_64, IDIV_32, MOV_STACK, MUL_32, DIV_32, SHL_8, MUL_16, SHL_64, SHL_WN1_BN2, DIVIDE, SHL_N1_B_N2, TIME_STAMP, FETCH_8_N1, SHR_WN1_BN2, MOV_WN2_N1, ADD_8, JUMP, SHR_N1_B_N2, NAND_N1, ADD_16, FETCH_16_2, FETCH_16, PUSH_INT_16, SHR_8, POP_8, PUSH_16, PUSH_8, POP_16, POP32_REG, PUSH32_INT, ADD_N2_N1, PUSH32_REG, NOR32_N2_N1, FETCH_32_N1, FETCH_32_N1_V2, FETCH_N1_N2, MOV_N1_WN2, NOR_16, MACHINE_ENTER, ADD_STACK }; std::unordered_map<uint32_t, hashmap> hashtable; #endif // VM_INSTRUCTION_SET_H
[ "joao.r.marques@ist.utl.pt" ]
joao.r.marques@ist.utl.pt
194c80817d2e10d5cc9065de9f452b730433d2e8
0daefca3bbfbfa0411f58c51da10c90b0b3ba839
/Codes/Robson/c++/repetidos.cpp
c968e23c84aad04d28604a62e1e1f6badd7170ee
[ "MIT" ]
permissive
robsongcruz/ChallengesCollection
e01d65439da0bb52c8062212393f92d4563497ff
dd7be2d3f3575b6ff904529fc4e2500eadaf2e2a
refs/heads/master
2022-05-29T02:51:53.091420
2020-04-30T14:58:38
2020-04-30T14:58:38
259,987,872
1
0
null
null
null
null
UTF-8
C++
false
false
1,454
cpp
#include <iostream> using namespace std; typedef struct node { int value; struct node * next; } node_t; void fnRemoveDupVals(node_t * pHead){ /* INSERT YOUR CODE HERE -> START*/ node_t * ref = pHead; node_t * previous = NULL; node_t * pivot = NULL; while (ref != NULL) { previous = ref; pivot = ref->next; while (pivot != NULL) { if (ref->value == pivot->value) { previous->next = pivot->next; } else { previous = pivot; } pivot = pivot->next; } ref = ref->next; } return; /* INSERT YOUR CODE HERE -> END*/ } int main() { node_t * head = NULL; int max; cin>>max; node_t * previous; for (int i = 0; i < max; i++){ node_t * thisNode = (node_t *) malloc(sizeof(node_t)); cin>>thisNode->value; thisNode->next = NULL; if (i == 0) head = thisNode; else previous->next = thisNode; previous = thisNode; } fnRemoveDupVals(head); //Print linked list values in sequence node_t * current = head; printf("\n\n"); while (current != NULL) { cout<<current->value<<endl; current = current->next; } //For this exercise purpose, don't worry about freeing memory return 0; }
[ "robson.cruz@grupoqs.net" ]
robson.cruz@grupoqs.net
8ff7d14f6b618f25f2617fb9c4a676cb6835cfe5
67a2ea3b647d1b87a9469ded48f7b259f226b0bb
/File/File6.cpp
a8fa0b7d528f894cf90d933288f9ea88b8d90151
[]
no_license
kannan-xiao4/robe_entry_cpp
09ee312b63825a6205dfd1e45fe5293a3eda9dcf
71d5af2b9a315a1ca98799ed7cb88472fbe06c8c
refs/heads/master
2020-12-10T10:06:59.758559
2020-02-28T15:13:12
2020-02-28T15:13:12
233,562,534
0
0
null
null
null
null
UTF-8
C++
false
false
2,088
cpp
#include <iostream> #include <fstream> #include <cstdio> #include <cstdlib> using namespace std; const int PAGE_WIDTH = 16; const int PAGE_HEIGHT = 16; const int PAGE_SIZE = PAGE_WIDTH * PAGE_HEIGHT; class DumpFile { public: bool Run(); private: bool Open(); void Close(); void Dump(); bool Control(); private: fstream m_file; int m_page; }; bool DumpFile::Run() { if(!Open()) { return false; } do { Dump(); } while (Control()); Close(); return true; } bool DumpFile::Open() { string filename; cout << "filename >" << flush; getline(cin, filename); m_file.open(filename.c_str(), ios::in | ios::binary); m_page = 0; return m_file.is_open(); } void DumpFile::Close() { m_file.close(); } void DumpFile::Dump() { cout << endl; m_file.clear(); m_file.seekg(m_page * PAGE_SIZE); for (int h = 0; h < PAGE_HEIGHT; ++h) { unsigned char buf[PAGE_WIDTH]; m_file.read((char*)buf, sizeof buf); for (int w = 0, size = m_file.gcount(); w < size; ++w) { //printf("%02X ", buf[w]); cout << setw(2) << setfill('0') << hex << uppercase << (int)buf[w] << ' '; } cout << endl; } } bool DumpFile::Control() { while (true) { string command; cout << "command? (n:next/ p:previous/ q:quit) > " << flush; getline(cin, command); if (command == "n") { if (!m_file.eof()) { ++m_page; return true; }else{ // retry command } }else if (command == "p") { if (m_page > 0) { --m_page; return true; }else{ // retry command } }else if (command == "q") { return false; } } } int main() { DumpFile dump; if (!dump.Run()) { return EXIT_FAILURE; } }
[ "wingrakhi@live.jp" ]
wingrakhi@live.jp
833cc33155561f4b822382777ce4bdc1d154d5bc
1a8f5d5fb51498859bb06d0287ad6c38e9bb8f70
/service/type-analysis/LocalTypeAnalyzer.h
7c9cdcf7f47a903c8c3b6751d8f03c5e0e52e33c
[ "MIT" ]
permissive
willpyshan13/redex
a5c3109734626bb647e2dfcd49c7d38075ab3553
0bb6a6ca434c4f57e825f0c3e0d47d7f1388529f
refs/heads/master
2022-04-15T07:19:18.825412
2020-04-15T01:25:03
2020-04-15T01:27:58
255,777,262
1
0
MIT
2020-04-15T01:57:46
2020-04-15T01:57:45
null
UTF-8
C++
false
false
3,509
h
/* * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <boost/optional/optional_io.hpp> #include "BaseIRAnalyzer.h" #include "DexTypeEnvironment.h" #include "InstructionAnalyzer.h" namespace type_analyzer { namespace local { using namespace ir_analyzer; class LocalTypeAnalyzer final : public ir_analyzer::BaseIRAnalyzer<DexTypeEnvironment> { public: LocalTypeAnalyzer( const cfg::ControlFlowGraph& cfg, InstructionAnalyzer<DexTypeEnvironment> insn_analyer, std::unique_ptr<std::unordered_set<DexField*>> written_fields) : ir_analyzer::BaseIRAnalyzer<DexTypeEnvironment>(cfg), m_insn_analyzer(std::move(insn_analyer)) { m_written_fields = std::move(written_fields); } void analyze_instruction(const IRInstruction* insn, DexTypeEnvironment* current_state) const override; private: InstructionAnalyzer<DexTypeEnvironment> m_insn_analyzer; /* * Tracking the fields referenced by the method that have been written to. * It shares the same life time with the LocalTypeAnalyzer. */ std::unique_ptr<std::unordered_set<DexField*>> m_written_fields; }; class RegisterTypeAnalyzer final : public InstructionAnalyzerBase<RegisterTypeAnalyzer, DexTypeEnvironment> { public: static bool analyze_const(const IRInstruction* insn, DexTypeEnvironment* env); static bool analyze_const_string(const IRInstruction*, DexTypeEnvironment* env); static bool analyze_const_class(const IRInstruction*, DexTypeEnvironment* env); static bool analyze_aget(const IRInstruction* insn, DexTypeEnvironment* env); static bool analyze_move(const IRInstruction* insn, DexTypeEnvironment* env); static bool analyze_move_result(const IRInstruction* insn, DexTypeEnvironment* env); static bool analyze_move_exception(const IRInstruction* insn, DexTypeEnvironment* env); static bool analyze_new_instance(const IRInstruction* insn, DexTypeEnvironment* env); static bool analyze_new_array(const IRInstruction* insn, DexTypeEnvironment* env); static bool analyze_filled_new_array(const IRInstruction* insn, DexTypeEnvironment* env); }; class FieldTypeAnalyzer final : public InstructionAnalyzerBase< FieldTypeAnalyzer, DexTypeEnvironment, std::unordered_set<DexField*>* /* written fields */> { public: static bool analyze_iget(std::unordered_set<DexField*>* written_fields, const IRInstruction* insn, DexTypeEnvironment* env); static bool analyze_iput(std::unordered_set<DexField*>* written_fields, const IRInstruction* insn, DexTypeEnvironment* env); static bool analyze_sget(std::unordered_set<DexField*>* written_fields, const IRInstruction* insn, DexTypeEnvironment* env); static bool analyze_sput(std::unordered_set<DexField*>* written_fields, const IRInstruction* insn, DexTypeEnvironment* env); }; } // namespace local } // namespace type_analyzer
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
baf59324ef953b43abbdea6601286c30fe052340
13e144fe465165933d2bb83556ed5953b444c78c
/projects/img-reg-ncc/ossimHarrisCorners.h
797686c3f2b4b1d82e5e5cc475479b3e5d365c61
[]
no_license
UAVE6MN/mylib
689ef122234dbcdc31de806c915ffaa3748874cc
b8aff420fb3268a70c99526855570100ca994c9a
refs/heads/master
2021-05-30T15:06:19.538829
2015-03-18T08:57:45
2015-03-18T08:57:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,709
h
// class ossimHarrisCorner : tile source // computes harris corners using an image chain // calcultes x and y derivatives, then forms three 2nd order products, smoothg them and combines to form a cornerness map // then selects local maxima above a certain threshold // // INPUT: one band image // OUTPUT: one band, ossim_float64 // corners are the only non NULL pixels (non OSSIM_DBL_NAN). value=cornerness // PROPERTIES // K = harris cornerness parameter // min_cornerness = minimum cornerness // smoooth_radius = gaussian smoothing standard deviation // #ifndef ossimHarrisCorners_HEADER #define ossimHarrisCorners_HEADER #include <ossim/imaging/ossimImageSourceFilter.h> #include <ossim/imaging/ossimCastTileSourceFilter.h> #include <ossim/imaging/ossimConvolutionFilter1D.h> #include <ossim/imaging/ossimImageGaussianFilter.h> #include <ossim/imaging/ossimEquationCombiner.h> #include "ossimExtremaFilter.h" #include "ossimDensityReducer.h" #include "ossimMultiplier.h" #include "ossimSquareFunction.h" class ossimHarrisCorners : public ossimImageSourceFilter { public: /** *own methods */ ossimHarrisCorners(); virtual ~ossimHarrisCorners(); inline ossim_float64 getK()const { return theK; } void setK(const ossim_float64& v); inline ossim_float64 getGaussStd()const { return theGaussStd; } void setGaussStd(const ossim_float64& v); inline ossim_float64 getMinCornerness()const { return theMinCornerness; } void setMinCornerness(const ossim_float64& v); inline ossim_float64 getDensity()const { return theDensity; } void setDensity(const ossim_float64& d); /** * inherited methods re-implemented due to type change in output */ virtual void getOutputBandList(std::vector<ossim_uint32>& bandList) const; virtual ossimScalarType getOutputScalarType() const; virtual double getNullPixelValue(ossim_uint32 band=0)const; virtual double getMinPixelValue(ossim_uint32 band=0)const; virtual double getMaxPixelValue(ossim_uint32 band=0)const; /** * inherited methods */ virtual void initialize(); virtual ossimRefPtr<ossimImageData> getTile(const ossimIrect &tileRect,ossim_uint32 resLevel=0); //! implemented to pass events to inner processes virtual void connectInputEvent(ossimConnectionEvent &event); virtual void disconnectInputEvent(ossimConnectionEvent &event); virtual void setProperty(ossimRefPtr<ossimProperty> property); virtual ossimRefPtr<ossimProperty> getProperty(const ossimString& name)const; virtual void getPropertyNames(std::vector<ossimString>& propertyNames)const; virtual bool loadState(const ossimKeywordlist& kwl,const char* prefix = 0); virtual bool saveState(ossimKeywordlist& kwl,const char* prefix = 0)const; protected: /** * protected methods */ void initializeProcesses(); ossimString getCornernessEquation()const; /** *parameters */ ossim_float64 theK; ossim_float64 theGaussStd; ossim_float64 theMinCornerness; //not used now ossim_float64 theDensity; //corner density in pixel^-2 /** * subprocesses */ ossimRefPtr<ossimCastTileSourceFilter> theCastP; ossimRefPtr<ossimConvolutionFilter1D> theDxP; ossimRefPtr<ossimConvolutionFilter1D> theDyP; ossimRefPtr<ossimMultiplier> theProductP; std::vector<ossimRefPtr<ossimSquareFunction> > theSquaresP; std::vector<ossimRefPtr<ossimImageGaussianFilter> > theSmoothP; ossimRefPtr<ossimEquationCombiner> theCornernessP; ossimRefPtr<ossimExtremaFilter> theLocalMaxP; ossimRefPtr<ossimDensityReducer> theFilterP; TYPE_DATA }; #endif /* #ifndef ossimHarrisCorners_HEADER */
[ "loongfee@gmail.com" ]
loongfee@gmail.com
b59847fd6a06c4ca7b59a89a0a4bb9086c6bff73
8087b720481b939198f0b6ac84bf7dc9b22fac93
/libPr3/jmriclient/jmriclientlight.h
862d106f8bfeb830256e5bac81324c280ccae65c
[]
no_license
michaeloed/DecoderPro_app
78e049090fc6c4d30dcc23ecb868d57b30361d8b
fb85623c205e88963e46ae49d9b244d20aa3c3c7
refs/heads/master
2022-02-15T07:03:23.797135
2022-01-29T06:47:26
2022-01-29T06:47:26
170,830,385
0
0
null
2019-02-15T08:37:44
2019-02-15T08:37:44
null
UTF-8
C++
false
false
958
h
#ifndef JMRICLIENTLIGHT_H #define JMRICLIENTLIGHT_H #include "abstractlight.h" class AbstractMRListener; class JMRIClientMessage; class JMRIClientReply; class JMRIClientSystemConnectionMemo; class JMRIClientTrafficController; class JMRIClientLight : public AbstractLight { public: JMRIClientLight(int number, JMRIClientSystemConnectionMemo* memo, QObject* parent = nullptr); /*public*/ int getNumber(); /*public*/ void requestUpdateFromLayout() override; /*public*/ /*synchronized*/ void doNewState(int oldState, int s); /*public*/ /*synchronized*/ void reply(JMRIClientReply* m); /*public*/ void message(JMRIClientMessage* m); //QObject* self() override {return this;} private: static Logger* log; // data members /*private*/ int _number; // light number /*private*/ JMRIClientTrafficController* tc = nullptr; /*private*/ QString transmitName;// = null; protected: /*protected*/ void sendMessage(bool on); }; #endif // JMRICLIENTLIGHT_H
[ "allenck@windstream.net" ]
allenck@windstream.net
d3c549a8666ca1ead358402d4ee3da2d36bff9f8
9bb2bd52ad9831ac4c64ae9ef4a86965e74c0160
/contests/abc169/d.cpp
2b132d8ef57134e7db99527a0c62bed24a5666df
[]
no_license
hiranoo/atcoder
f31560a60ee8f94379b4e958e598d0e733b0f2b3
aab6709d5819521b7a213cbf78dc6b33de69269e
refs/heads/master
2023-08-12T05:00:02.984971
2021-09-28T12:08:02
2021-09-28T12:08:02
370,005,724
0
0
null
null
null
null
UTF-8
C++
false
false
1,201
cpp
#include <vector> #include <algorithm> #include <math.h> #include <stdio.h> #include <string> #include <sstream> #include <bitset> #include <stack> #include <queue> #include <bits/stdc++.h> #include <atcoder/segtree> #include <time.h> #define rep(i, s, t) for(int i = (s); i <= (t); i++) #define repd(i, s, t) for(int i = (s); i >= (t); i--) #define all(v) v.begin(), v.end() typedef long long ll; typedef unsigned long long ull; using namespace std; typedef pair<int, int> pii; vector<pair<ll, ll>> factorize(ll n){ vector<pair<ll, ll>> v; for(ll i = 2; i*i <= n; i++){ if(n % i != 0) continue; ll idx = 0; while(n % i == 0){ idx++; n /= i; } v.push_back(make_pair(i, idx)); } if(n != 1) v.push_back(make_pair(n, 1)); return v; } ll count_div(ll q){ //cout << "q:" << q << endl; ll l = -1, r = q+1; while(r - l > 1){ ll k = (l+r)/2; if(q * 2 >= k * (k+1) ) l = k; else r = k; } //cout << l << endl; return l; } int main(){ ll n; cin >> n; vector<pair<ll, ll>> v = factorize(n); int ans = 0; for(auto p : v){ //cout << p.first << " ** " << p.second << endl; ans += count_div(p.second); } cout << ans << endl; }
[ "trivalworks@gmail.com" ]
trivalworks@gmail.com
8cace318b842bd365fb85844d6ed04a3c61e6647
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/windows/advcore/ctf/uim/enumfnpr.h
851a2d2aa63681275a080275a13353f97afc2150
[]
no_license
jjzhang166/WinNT5_src_20201004
712894fcf94fb82c49e5cd09d719da00740e0436
b2db264153b80fbb91ef5fc9f57b387e223dbfc2
refs/heads/Win2K3
2023-08-12T01:31:59.670176
2021-10-14T15:14:37
2021-10-14T15:14:37
586,134,273
1
0
null
2023-01-07T03:47:45
2023-01-07T03:47:44
null
UTF-8
C++
false
false
799
h
// // enumfnpr.h // #ifndef ENUMFNPR_H #define ENUMFNPR_H #include "ptrary.h" #include "sunka.h" class CThreadInputMgr; class CEnumFunctionProviders : public IEnumTfFunctionProviders, public CEnumUnknown, public CComObjectRootImmx { public: CEnumFunctionProviders() { Dbg_MemSetThisNameID(TEXT("CEnumFunctionProviders")); } BEGIN_COM_MAP_IMMX(CEnumFunctionProviders) COM_INTERFACE_ENTRY(IEnumTfFunctionProviders) END_COM_MAP_IMMX() IMMX_OBJECT_IUNKNOWN_FOR_ATL() DECLARE_SUNKA_ENUM(IEnumTfFunctionProviders, CEnumFunctionProviders, ITfFunctionProvider) BOOL _Init(CThreadInputMgr *tim); private: DBG_ID_DECLARE; }; #endif // ENUMFNPR_H
[ "seta7D5@protonmail.com" ]
seta7D5@protonmail.com
cb723a7d9a269106f678017160b44b23b9c5dba8
7f69c7f1dbb022fef6b4f6cd7f688630f342fec2
/project/src-gen/v0/commonapi/examples/E01HelloWorldProxy.hpp
9f7d477c81dd0e653428f7d6d9df60a928abef5c
[ "MIT" ]
permissive
yuanxinfei/my_some_ip_project
1d4e9eddf84ac3a95102ade98e1b311ba07a4426
a1956cf02132f4125b28b4e96495bf629287f981
refs/heads/master
2020-03-16T15:36:32.486644
2019-10-28T12:53:55
2019-10-28T12:53:55
132,751,168
1
0
null
null
null
null
UTF-8
C++
false
false
5,571
hpp
/* * This file was generated by the CommonAPI Generators. * Used org.genivi.commonapi.core 3.1.12.v201801251447. * Used org.franca.core 0.9.1.201412191134. * * This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. * If a copy of the MPL was not distributed with this file, You can obtain one at * http://mozilla.org/MPL/2.0/. */ #ifndef V0_COMMONAPI_EXAMPLES_E01_Hello_World_PROXY_HPP_ #define V0_COMMONAPI_EXAMPLES_E01_Hello_World_PROXY_HPP_ #include <v0/commonapi/examples/E01HelloWorldProxyBase.hpp> #if !defined (COMMONAPI_INTERNAL_COMPILATION) #define COMMONAPI_INTERNAL_COMPILATION #endif #undef COMMONAPI_INTERNAL_COMPILATION namespace v0 { namespace commonapi { namespace examples { template <typename ... _AttributeExtensions> class E01HelloWorldProxy : virtual public E01HelloWorld, virtual public E01HelloWorldProxyBase, virtual public _AttributeExtensions... { public: E01HelloWorldProxy(std::shared_ptr<CommonAPI::Proxy> delegate); ~E01HelloWorldProxy(); typedef E01HelloWorld InterfaceType; /** * Calls sayHello with synchronous semantics. * * All const parameters are input parameters to this method. * All non-const parameters will be filled with the returned values. * The CallStatus will be filled when the method returns and indicate either * "SUCCESS" or which type of error has occurred. In case of an error, ONLY the CallStatus * will be set. */ virtual void sayHello(const std::string &_name, CommonAPI::CallStatus &_internalCallStatus, std::string &_message, const CommonAPI::CallInfo *_info = nullptr); /** * Calls sayHello with asynchronous semantics. * * The provided callback will be called when the reply to this call arrives or * an error occurs during the call. The CallStatus will indicate either "SUCCESS" * or which type of error has occurred. In case of any error, ONLY the CallStatus * will have a defined value. * The std::future returned by this method will be fulfilled at arrival of the reply. * It will provide the same value for CallStatus as will be handed to the callback. */ virtual std::future<CommonAPI::CallStatus> sayHelloAsync(const std::string &_name, SayHelloAsyncCallback _callback = nullptr, const CommonAPI::CallInfo *_info = nullptr); /** * Returns the CommonAPI address of the remote partner this proxy communicates with. */ virtual const CommonAPI::Address &getAddress() const; /** * Returns true if the remote partner for this proxy is currently known to be available. */ virtual bool isAvailable() const; /** * Returns true if the remote partner for this proxy is available. */ virtual bool isAvailableBlocking() const; /** * Returns the wrapper class that is used to (de-)register for notifications about * the availability of the remote partner of this proxy. */ virtual CommonAPI::ProxyStatusEvent& getProxyStatusEvent(); /** * Returns the wrapper class that is used to access version information of the remote * partner of this proxy. */ virtual CommonAPI::InterfaceVersionAttribute& getInterfaceVersionAttribute(); private: std::shared_ptr< E01HelloWorldProxyBase> delegate_; }; typedef E01HelloWorldProxy<> E01HelloWorldProxyDefault; // // E01HelloWorldProxy Implementation // template <typename ... _AttributeExtensions> E01HelloWorldProxy<_AttributeExtensions...>::E01HelloWorldProxy(std::shared_ptr<CommonAPI::Proxy> delegate): _AttributeExtensions(*(std::dynamic_pointer_cast< E01HelloWorldProxyBase>(delegate)))..., delegate_(std::dynamic_pointer_cast< E01HelloWorldProxyBase>(delegate)) { } template <typename ... _AttributeExtensions> E01HelloWorldProxy<_AttributeExtensions...>::~E01HelloWorldProxy() { } template <typename ... _AttributeExtensions> void E01HelloWorldProxy<_AttributeExtensions...>::sayHello(const std::string &_name, CommonAPI::CallStatus &_internalCallStatus, std::string &_message, const CommonAPI::CallInfo *_info) { delegate_->sayHello(_name, _internalCallStatus, _message, _info); } template <typename ... _AttributeExtensions> std::future<CommonAPI::CallStatus> E01HelloWorldProxy<_AttributeExtensions...>::sayHelloAsync(const std::string &_name, SayHelloAsyncCallback _callback, const CommonAPI::CallInfo *_info) { return delegate_->sayHelloAsync(_name, _callback, _info); } template <typename ... _AttributeExtensions> const CommonAPI::Address &E01HelloWorldProxy<_AttributeExtensions...>::getAddress() const { return delegate_->getAddress(); } template <typename ... _AttributeExtensions> bool E01HelloWorldProxy<_AttributeExtensions...>::isAvailable() const { return delegate_->isAvailable(); } template <typename ... _AttributeExtensions> bool E01HelloWorldProxy<_AttributeExtensions...>::isAvailableBlocking() const { return delegate_->isAvailableBlocking(); } template <typename ... _AttributeExtensions> CommonAPI::ProxyStatusEvent& E01HelloWorldProxy<_AttributeExtensions...>::getProxyStatusEvent() { return delegate_->getProxyStatusEvent(); } template <typename ... _AttributeExtensions> CommonAPI::InterfaceVersionAttribute& E01HelloWorldProxy<_AttributeExtensions...>::getInterfaceVersionAttribute() { return delegate_->getInterfaceVersionAttribute(); } } // namespace examples } // namespace commonapi } // namespace v0 // Compatibility namespace v0_1 = v0; #endif // V0_COMMONAPI_EXAMPLES_E01_Hello_World_PROXY_HPP_
[ "yuanxinfei@abupdate.com" ]
yuanxinfei@abupdate.com
c16974b51c703b86d560192bc6bc144c8b5c9a81
dbcae57ecc5f8d1f7ad2552465834da2784edd3f
/HDU/hdu_3861(SCC+MaxMatch).cpp
9399df20df4820c0e692ad3766d203db16226cab
[]
no_license
AmazingCaddy/acm-codelab
13ccb2daa249f8df695fac5b7890e3f17bb40bf5
e22d732d468b748ff12885aed623ea3538058c68
refs/heads/master
2021-01-23T02:53:50.313479
2014-09-29T14:11:12
2014-09-29T14:11:12
14,780,683
1
0
null
null
null
null
UTF-8
C++
false
false
2,826
cpp
/* author: AmazingCaddy time: 2011/7/30 17:59 */ #include <cstdio> #include <complex> #include <cstdlib> #include <iostream> #include <cstring> #include <string> #include <algorithm> #include <cmath> #include <ctime> #include <vector> #include <map> #include <queue> using namespace std; //typedef __int64 ll; typedef long long ll; const int maxn = 50100; const int maxm = maxn << 1; int head[ maxn ], next[ maxm ], ev[ maxm ], wv[ maxm ]; int headt[ maxn ], nextt[ maxm ], evt[ maxm ]; int len, lent; int n, num, color, list[ maxn ], col[ maxn ], mk[ maxn ]; int cx[ maxn ], cy[ maxn ], sy[ maxn ]; void addedge( int u, int v, int head[ ], int next[ ], int ev[ ], int &len ) { next[ ++len ] = head[ u ]; head[ u ] = len; ev[ len ] = v; } void Back( int v ) { mk[ v ] = 1; col[ v ] = color; for( int j = headt[ v ]; j; j = nextt[ j ] ) { int u = evt[ j ]; if( !mk[ u ] ) Back( u ); } } void DFS( int u ) { mk[ u ] = 1; for( int i = head[ u ]; i; i = next[ i ] ) { int v = ev[ i ]; if( !mk[ v ] ) DFS( v ); } list[ num-- ] = u; } void SCC( ) { num = n; memset( mk, 0, sizeof( mk ) ); for( int i = 1; i <= n; i++ ) if( !mk[ i ] ) DFS( i ); memset( mk, 0, sizeof( mk ) ); color = 0; for( int i = 1; i <= n; i++ ) { if( !mk[ list[ i ] ] ) { color++; Back( list[ i ] ); } } } int path( int u ) { for( int i = headt[ u ]; i; i = nextt[ i ] ) { int v = evt[ i ]; if( ! sy[ v ] ) { sy[ v ] = 1; if( !cy[ v ] || path( cy[ v ] ) ) { cx[ u ] = v; cy[ v ] = u; return 1; } } } return 0; } int max_match( ) { int ret = 0; memset( cx, 0, sizeof( cx ) ); memset( cy, 0, sizeof( cy ) ); for( int i = 1; i <= color; i++ ) { if( !cx[ i ] ) { memset( sy, 0, sizeof( sy ) ); ret += path( i ); } } return ret; } int main(int argc, char *argv[]) { // freopen( "kingdom.in", "r", stdin ); // freopen( "out", "w", stdout ); int cas, m, a, b; scanf( "%d", &cas ); //int k = 1; while( cas-- ) { //printf( "case %d:\n", k++ ); scanf( "%d%d", &n, &m ); len = lent = 0; memset( head, 0, sizeof( head ) ); memset( headt, 0, sizeof( headt ) ); for( int i = 0; i < m; i++ ) { scanf( "%d%d", &a, &b ); addedge( a, b, head, next, ev, len ); addedge( b, a, headt, nextt, evt, lent ); } SCC( ); //continue; lent = 0; memset( headt, 0, sizeof( headt ) ); for( int u = 1; u <= n; u++ ) { for( int j = head[ u ]; j; j = next[ j ] ) { int v = ev[ j ]; if( col[ u ] != col[ v ] ) { addedge( col[ u ], col[ v ], headt, nextt, evt, lent ); } } } int ans = color - max_match( ); printf( "%d\n", ans ); } return 0; }
[ "ecnuwbwang@gmail.com" ]
ecnuwbwang@gmail.com
7ac687606866eee9b3c8793c9c9ae92d771bbcd8
2ecc0359a4c87265a55509a249ac9e4c746b02f3
/gzEngine/gzGraphicsDX11/include/gzDXShader.h
97ad7bf45fa76b200c9b9b038f7f1a6e95d263a9
[]
no_license
lGaze/GazelleEngine
f0e68897e6672c741de6bf11d0c060b1deb5687e
513fd3be88c435423c95a40e4724da810721c25d
refs/heads/master
2020-04-17T23:07:51.372337
2019-03-24T21:56:15
2019-03-24T21:56:15
167,016,746
0
0
null
null
null
null
UTF-8
C++
false
false
1,411
h
/**************************************************************************/ /* @filename gzDXShader.h /* @author Victor Flores /* @date 2019/03/04 /* @brief /**************************************************************************/ #pragma once #include "gzDXPrerequisites.h" //TODO: Arreglr las deprecated namespace gzEngineSDK { class Shader { public: /** * @brief default constructor */ Shader(); /** * @brief default destructor */ ~Shader() = default; /************************************************************************/ /* Shader functions */ /************************************************************************/ /** * @brief */ bool CompileShaderFromFile( LPCSTR szFileName, LPCSTR szEntryPoint, LPCSTR szShaderModel, ID3DBlob** ppBlobOut ); /** * @brief */ bool LoadTexture( ID3D11Device* pDevice, LPCWSTR pSrcFile, HRESULT* pHResult ); /************************************************************************/ /* Member declarations */ /************************************************************************/ public: /** * @brief */ ID3D11ShaderResourceView* m_pTextureRV; }; }
[ "35241075+lGaze@users.noreply.github.com" ]
35241075+lGaze@users.noreply.github.com
c7fbd9a24771673e5958b7801bf0b970e726f86e
fb2d1fd712ca0dff7cc5bac3f18a09c4e58a8616
/src/glcommon/glm_halfedge.h
1c542b478634820ea9e4e396658f5b035fbddd02
[ "MIT" ]
permissive
rswinkle/opengl_reference
d2a82660c5948a27c66a27864d475769abd68b50
1fa1114b37763f6d61ccdf8028e7e17d914db85b
refs/heads/master
2023-07-08T08:08:45.847811
2023-06-25T10:17:52
2023-06-25T10:17:52
52,490,664
2
1
null
null
null
null
UTF-8
C++
false
false
802
h
#ifndef GLM_HALFEDGE_H #define GLM_HALFEDGE_H #include <glm/glm.hpp> #include <vector> using std::vector; typedef struct half_edge { int next; int pair; int face; int v; } half_edge; typedef struct Edge_Entry { int v_index[2]; int tri_index[2]; int edge_number[2]; struct Edge_Entry *next; } edge_entry; typedef struct half_edge_data { half_edge* he_array; int* v_array; int* face_array; } half_edge_data; void compute_face_normals(vector<glm::vec3>& verts, vector<glm::ivec3>& triangles, vector<glm::vec3>& normals); void compute_half_edge(vector<glm::vec3>& verts, vector<glm::ivec3>& tri, half_edge_data* he_data); void compute_normals(vector<glm::vec3>&verts, vector<glm::ivec3>& triangles, half_edge_data* he_data, float sharp_angle, vector<glm::vec3>& normals); #endif
[ "rob121618@gmail.com" ]
rob121618@gmail.com
5a30c7314ad2ab2ce266d1372be809fec40a73aa
1b5acbfe246829177b58f35f0315d193c5914bc3
/JeuEchec/JeuEchec/JeuEchec/Player.h
cd1b84b4155458683038709e8466db9b1ed16d5f
[]
no_license
patrenaud/MasterChestRPG
081cea2fedd92bd28c60d3bc4bb4b740d3fa188d
f200f692a469a208cad812c598eb6f7974c4b9d8
refs/heads/master
2020-03-22T10:19:49.228603
2018-09-25T19:38:28
2018-09-25T19:38:28
139,895,998
1
0
null
null
null
null
UTF-8
C++
false
false
359
h
#pragma once #include "Board.h" class Player { public: Player(); ~Player(); // This is to identify a player's mana int GetMana() { return m_Mana; } // This is to change the player's mana void SetMana(int Mana) { m_Mana += Mana; } // This is to increase by 1 when turn has finished void IncreaseMana() { SetMana(1); } private: int m_Mana; };
[ "1810057@bart.ca" ]
1810057@bart.ca
8668b6bf3469c332af6f35337cd3fc058d87a61f
bfa40191bb6837f635d383d9cd7520160d0b03ac
/LightNote/Source/Core/Base/MemoryManager.h
a7eebc1200cf2deae39b0b589f2eab5b5b1f7ea0
[]
no_license
lriki/LightNote
87ec6969c16f2919d04fdaac9d0e7ed389f403ad
a38542691d0c7453dd108bcf1d653a08bb1b6b6b
refs/heads/master
2021-01-10T19:16:33.199071
2015-02-01T08:41:06
2015-02-01T08:41:06
25,684,431
0
0
null
null
null
null
UTF-8
C++
false
false
3,312
h
//============================================================================== // MemoryManager //------------------------------------------------------------------------------ ///** // @file MemoryManager.h // @brief MemoryManager // @author Riki //*/ //============================================================================== #pragma once #if 1 #if defined(LNOTE_DEBUG) && defined(LNOTE_ENABLE_CRT_DEBUG) #include <crtdbg.h> #define LN_NEW new(_NORMAL_BLOCK,__FILE__,__LINE__) #else #define LN_NEW new #endif #else // ランタイムDLLを使用してビルドする場合は、new, delete をオーバーロードしないようにしておく。 // こうしておかないと、delete 時に不正アクセスでランタイムエラーとなってしまう。 #if defined(_DLL) || defined(LNOTE_ENABLE_CRT_DEBUG) #include <crtdbg.h> //#define LN_NEW new #define LN_NEW new(_NORMAL_BLOCK,__FILE__,__LINE__) #else // LNOTE_ENABLE_CRT_DEBUG #ifdef LNOTE_DEBUG #define LN_NEW new( LN_MM_NORMAL_BLOCK, __FILE__, __LINE__ ) #else #define LN_NEW new #endif #endif // LNOTE_ENABLE_CRT_DEBUG #endif namespace LNote { namespace Core { enum LNMemoryDumpDest { LN_MEMDIST_CONSOLE = 0, ///< 標準出力に出力する (printf) LN_MEMDIST_LOGFILE, ///< MemoryManager に設定されているログファイルに出力する LN_MEMDIST_WIN32DEBUG ///< Win32 のデバッグ関数で出力する (OutputDebugString) }; namespace Base { class LogFile; //============================================================================== // ■ MemoryManager //------------------------------------------------------------------------------ ///** // @brief //*/ //============================================================================== class MemoryManager { public: /// メモリ情報の出力先を設定する static void setMemoryDumpDest( LNMemoryDumpDest d_ ); /// メモリ情報の出力先のログファイルを設定する static void setLogFile( Base::LogFile* logfile_ ); static void attachLogger(); }; } // namesapce Base } // namespace Core } // namespace LNote //------------------------------------------------------------------------------ // //------------------------------------------------------------------------------ enum LNMMFlag { LN_MM_NORMAL_BLOCK = 1, }; typedef char LNMMChar; // VC++ では定義しないとダメ。逆に Android では定義するとダメ。 // LN_CLR_DLL は ReleaseDLL 構成でプロジェクトプロパティから定義される #if defined(LNOTE_MSVC) && !defined( LN_CLR_DLL ) void* LNOTE_CDECL operator new( size_t size_ ); void LNOTE_CDECL operator delete ( void* ptr_ ); #endif void* LNOTE_CDECL operator new( size_t size_, LNMMFlag flag_, const LNMMChar* filename_, int line_ ); void* LNOTE_CDECL operator new[]( size_t size_, LNMMFlag flag_, const LNMMChar* filename_, int line_ ); void LNOTE_CDECL operator delete ( void* ptr_, LNMMFlag flag_, const LNMMChar*, int ); void LNOTE_CDECL operator delete[] ( void* ptr_, LNMMFlag flag_, const LNMMChar*, int ); //============================================================================== // //==============================================================================
[ "ilys.vianote@gmail.com" ]
ilys.vianote@gmail.com
8a280352bae598f81cfa151179c6326a297be95a
3b9b4049a8e7d38b49e07bb752780b2f1d792851
/src/content/browser/geolocation/location_provider_base.h
a95efa1546caf3c4f91b8da81ab8df7402e8a3e9
[ "BSD-3-Clause", "Apache-2.0" ]
permissive
webosce/chromium53
f8e745e91363586aee9620c609aacf15b3261540
9171447efcf0bb393d41d1dc877c7c13c46d8e38
refs/heads/webosce
2020-03-26T23:08:14.416858
2018-08-23T08:35:17
2018-09-20T14:25:18
145,513,343
0
2
Apache-2.0
2019-08-21T22:44:55
2018-08-21T05:52:31
null
UTF-8
C++
false
false
1,032
h
// Copyright (c) 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_GEOLOCATION_LOCATION_PROVIDER_BASE_H_ #define CONTENT_BROWSER_GEOLOCATION_LOCATION_PROVIDER_BASE_H_ #include "base/macros.h" #include "content/common/content_export.h" #include "content/public/browser/location_provider.h" namespace content { class CONTENT_EXPORT LocationProviderBase : NON_EXPORTED_BASE(public LocationProvider) { public: LocationProviderBase(); ~LocationProviderBase() override; protected: void NotifyCallback(const Geoposition& position); // Overridden from LocationProvider: void SetUpdateCallback( const LocationProviderUpdateCallback& callback) override; void RequestRefresh() override; private: LocationProviderUpdateCallback callback_; DISALLOW_COPY_AND_ASSIGN(LocationProviderBase); }; } // namespace content #endif // CONTENT_BROWSER_GEOLOCATION_LOCATION_PROVIDER_BASE_H_
[ "changhyeok.bae@lge.com" ]
changhyeok.bae@lge.com
6687432e4f8b4aed8201806a2bc05d139aefa3f2
88f109f0971a5e690c1853290101e75667910347
/pngout.cpp
d1d4e5a9a880d787e9ca0eb31b1f091c4492f7b3
[]
no_license
tylerjw/pngout
9a9341479fbc35c75f15136d8bf7119c7b538de7
f903d84e63a4e98131b800bcf2b24bbd4712e98d
refs/heads/master
2016-09-06T03:59:54.496578
2013-11-06T19:39:01
2013-11-06T19:39:01
14,209,032
0
1
null
null
null
null
UTF-8
C++
false
false
2,248
cpp
/* Simple program for robot image data as png */ #include <pngwriter.h> #include <stdio.h> #include "images.h" #include "point.h" #define POINT_BUFFER_LENGTH 200 #define MAX_COLUMNS 30 #define RADIUS 5 extern struct image no_dots_image; extern struct image dots_image; void png_image(struct image *img, char* filename) { pngwriter image(640, 480, 1.0, filename); for( int i = 0; i < IMAGE_SIZE; i+=3 ) { image.plot(XVAL_I(i), YVAL_I(i), BYTE_TO_INT_COLOR(img->pixel_data[i]), BYTE_TO_INT_COLOR(img->pixel_data[i+1]), BYTE_TO_INT_COLOR(img->pixel_data[i+2])); } image.close(); } void png_image_cir(struct image *img, char* filename, int num_centers, int (*centers)[2]) { pngwriter image(640, 480, 1.0, filename); for( int i = 0; i < IMAGE_SIZE; i+=3 ) { image.plot(XVAL_I(i), YVAL_I(i), BYTE_TO_INT_COLOR(img->pixel_data[i]), BYTE_TO_INT_COLOR(img->pixel_data[i+1]), BYTE_TO_INT_COLOR(img->pixel_data[i+2])); } for(int i = 0; i < num_centers; i++) { int x = centers[i][0] + 1; int y = HEIGHT - (centers[i][1] + 1); image.circle(x, y, RADIUS, 1.0, 0.0, 0.0); } image.close(); } void png_green_arr_cir(unsigned char* arr, char* filename, int num_centers, int (*centers)[2]) { pngwriter image(640, 480, 1.0, filename); for( int i = 0; i < NUM_PIXELS; i++ ) { image.plot(XVAL_A(i), YVAL_A(i), 0, BYTE_TO_INT_COLOR(*(arr++)), 0); } for(int i = 0; i < num_centers; i++) { int x = centers[i][0] + 1; int y = HEIGHT - (centers[i][1] + 1); image.circle(x, y, RADIUS, 1.0, 0.0, 0.0); } image.close(); } int main() { unsigned char working_green[NUM_PIXELS]; int center_points[POINT_BUFFER_LENGTH][2]; int num_points = 0; int num_columns = 0; int col_idx[MAX_COLUMNS]; subtraction_green_filter(working_green, &dots_image, &no_dots_image); num_points = point_finder(working_green, center_points, POINT_BUFFER_LENGTH); num_columns = sort_by_col(center_points, num_points, col_idx, MAX_COLUMNS); png_green_arr_cir(working_green, "working.png", num_points, center_points); png_image(&dots_image, "dots.png"); png_image_cir(&dots_image, "dots_cir.png", num_points, center_points); png_image_cir(&no_dots_image, "no_dots_cir.png", num_points, center_points); return 0; }
[ "tylerjw@gmail.com" ]
tylerjw@gmail.com
bc5aae32a18f37965d0d35eb8eb65bf55825644b
2195aa79fbd3cf2f048ad5a9ee3a1ef948ff6601
/q3/qm/src/util/confighelper.inl
354ed9c9f66e85489c15d91d63bf26a81b58bdd2
[ "MIT" ]
permissive
snakamura/q3
d3601503df4ebb08f051332a9669cd71dc5256b2
6ab405b61deec8bb3fc0f35057dd880efd96b87f
refs/heads/master
2016-09-02T00:33:43.224628
2014-07-22T23:38:22
2014-07-22T23:38:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,484
inl
/* * $Id$ * * Copyright(C) 1998-2008 Satoshi Nakamura * */ #ifndef __CONFIGHELPER_INL__ #define __CONFIGHELPER_INL__ #include <qsfile.h> #include <qsinit.h> #include <qslog.h> #include <qsosutil.h> #include <qsstream.h> /**************************************************************************** * * ConfigSaver * */ template<class T, class Writer> bool qm::ConfigSaver<T, Writer>::save(T t, const WCHAR* pwszPath) { qs::TemporaryFileRenamer renamer(pwszPath); qs::FileOutputStream stream(renamer.getPath()); if (!stream) return false; qs::BufferedOutputStream bufferedStream(&stream, false); qs::OutputStreamWriter writer(&bufferedStream, false, L"utf-8"); if (!writer) return false; Writer w(&writer, L"utf-8"); if (!w.write(t)) return false; if (!writer.close()) return false; if (!renamer.rename()) return false; return true; } /**************************************************************************** * * ConfigHelper * */ template<class Config, class Handler, class Writer, class LoadLock> qm::ConfigHelper<Config, Handler, Writer, LoadLock>::ConfigHelper(const WCHAR* pwszPath) : pLock_(0) { init(pwszPath); } template<class Config, class Handler, class Writer, class LoadLock> qm::ConfigHelper<Config, Handler, Writer, LoadLock>::ConfigHelper(const WCHAR* pwszPath, const LoadLock& lock) : pLock_(&lock) { init(pwszPath); } template<class Config, class Handler, class Writer, class LoadLock> qm::ConfigHelper<Config, Handler, Writer, LoadLock>::~ConfigHelper() { } template<class Config, class Handler, class Writer, class LoadLock> bool qm::ConfigHelper<Config, Handler, Writer, LoadLock>::load(Config* pConfig, Handler* pHandler) { qs::Log log(qs::InitThread::getInitThread().getLogger(), L"qm::ConfigHelper"); struct Lock { Lock(const LoadLock* pLock) : pLock_(pLock) { if (pLock_) pLock_->lock(); } ~Lock() { if (pLock_) pLock_->unlock(); } const LoadLock* pLock_; }; W2T(wstrPath_.get(), ptszPath); WIN32_FIND_DATA fd; qs::AutoFindHandle hFind(::FindFirstFile(ptszPath, &fd)); if (hFind.get()) { hFind.close(); if (::CompareFileTime(&fd.ftLastWriteTime, &ft_) != 0) { log.debugf(L"Loading: %s", wstrPath_.get()); Lock lock(pLock_); pConfig->clear(); XMLReader reader; reader.setContentHandler(pHandler); if (!reader.parse(wstrPath_.get())) { log.errorf(L"Failed to load: %s", wstrPath_.get()); return false; } ft_ = fd.ftLastWriteTime; } } else { log.debugf(L"File not found: %s", wstrPath_.get()); Lock lock(pLock_); pConfig->clear(); SYSTEMTIME st; ::GetSystemTime(&st); ::SystemTimeToFileTime(&st, &ft_); } return true; } template<class Config, class Handler, class Writer, class LoadLock> bool qm::ConfigHelper<Config, Handler, Writer, LoadLock>::save(const Config* pConfig) const { return ConfigSaver<const Config*, Writer>::save(pConfig, wstrPath_.get()); } template<class Config, class Handler, class Writer, class LoadLock> void qm::ConfigHelper<Config, Handler, Writer, LoadLock>::init(const WCHAR* pwszPath) { wstrPath_ = allocWString(pwszPath); SYSTEMTIME st; ::GetSystemTime(&st); ::SystemTimeToFileTime(&st, &ft_); } #endif // __CONFIGHELPER_INL__
[ "snakamura@8af8166b-12a6-a448-a533-9086ace3f9f6" ]
snakamura@8af8166b-12a6-a448-a533-9086ace3f9f6
24aa08e5903139113d9c2bd3abc63e85a128e080
b6b312f891b2205114313551ef80e08fe00abf6a
/Model/Darcy.hh
91992376c074a8b6f1b05ca05351b07c7f85b774
[]
no_license
tjdodwell/zonkey
69ed741622e332717432842f566083577dd7bbdd
68fb9123b569ad7d8e6588ce5d5c0a0db806fcde
refs/heads/master
2020-05-03T12:17:40.148047
2019-10-02T08:29:04
2019-10-02T08:29:04
178,621,856
2
0
null
null
null
null
UTF-8
C++
false
false
9,374
hh
#include <iostream> #include <fstream> #include "dune_includes/problem.hh" #include "dune_includes/problemQoI.hh" #include "dune_includes/randomField/RandomField.hh" #include "dune_includes/QoI.hh" #include <Eigen/Dense> using namespace std; using namespace Eigen; namespace Zonkey { namespace Models { template <typename Link, int STOCHASTIC_DIM, typename GRID> class Darcy{ public: Darcy(GRID& grid_): grid(grid_, int maxLevel = 1){ // == Parameters from the Section 4. Dodwell et al. 2015 sigf = 0.01; //0.031622776601684;//0.01; //0.031622776601684; // == Setup Random Field double L = 1.0; double sigKl = 1.0; double correlation_length = 0.5; int maxR = 20; //169; field.setup(L,sigKl,correlation_length,maxR); int nobs = 4; Nobs = nobs * nobs; obsCoord.resize(Nobs,2); Fobs.resize(Nobs); // Construct Coordinates locations of the data VectorXd coords(nobs); double dx = 1.0 / (nobs + 1); coords(0) = dx; for (int i = 1; i < nobs; i++){ coords(i) = coords(i-1) + dx; } int kk = 0; for (int i = 0; i < nobs; i++){ for (int j = 0; j < nobs; j++){ obsCoord(kk,0) = coords(i); obsCoord(kk,1) = coords(j); kk += 1; } } /* // == Read data in from file ifstream input("data.txt"); thetaObs.resize(maxR); for (int i = 0; i < maxR; i++) { input >> thetaObs(i); }*/ // == Read in obs Fobs.resize(Nobs); F.resize(maxLevel); for (int i = 0; i < maxLevel; i++){ F[i].resize(Nobs); } /* Fobs(0) = 0.103861; Fobs(1) = 0.133822; Fobs(2) = 0.162300; Fobs(3) = 0.163523; Fobs(4) = 0.127226; Fobs(5) = 0.233255; Fobs(6) = 0.315055; Fobs(7) = 0.391402; Fobs(8) = 0.380278; Fobs(9) = 0.320238; Fobs(10) = 0.466618; Fobs(11) = 0.515041; Fobs(12) = 0.544738; Fobs(13) = 0.569354; Fobs(14) = 0.562334; Fobs(15) = 0.602408; Fobs(16) = 0.630779; Fobs(17) = 0.650833; Fobs(18) = 0.678896; Fobs(19) = 0.701951; Fobs(20) = 0.772371; Fobs(21) = 0.783087; Fobs(22) = 0.802645; Fobs(23) = 0.812591; Fobs(24) = 0.823080; */ } void inline plot_field(const Eigen::VectorXd& theta, std::string title = "randomfield", int level = -1){ std::vector<double> xi_vec(theta.size()); for (int i = 0; i < theta.size(); i++){ xi_vec[i] = theta(i); } field.setXi(xi_vec); if(level < 0){ level = grid.maxLevel(); } typedef typename GRID::LevelGridView GV; GV gv = grid.levelGridView(level); typedef typename GV::Grid::ctype Coord; typedef typename GV::Grid::ctype e_ctype; typedef Dune::PDELab::QkDGLocalFiniteElementMap<e_ctype,double,0,2> Q0; std::cout << "My Grid Size " << gv.size(0) << std::endl; //typedef Dune::PDELab::QkLocalFiniteElementMap<GV,Coord,double,0> Q0; Q0 fem; typedef Dune::PDELab::ConformingDirichletConstraints CON; typedef Dune::PDELab::ISTL::VectorBackend<> VBE; typedef Dune::PDELab::GridFunctionSpace<GV, Q0, CON, VBE> GFS; GFS gfs(gv,fem); gfs.name("random_field"); typedef typename Dune::PDELab::Backend::impl::BackendVectorSelector<GFS,double>::Type U; U k(gfs,0.0); using Dune::PDELab::Backend::native; for (const auto& eit : elements(gv)){ int id = gv.indexSet().index(eit); native(k)[id] = field.getPerm(eit.geometry().center()); } typedef Dune::PDELab::DiscreteGridFunction<GFS,U> DGF; DGF xdgf(gfs,k); // Write solution to VTK Dune::VTKWriter<GV> vtkwriter(gv); typedef Dune::PDELab::VTKGridFunctionAdapter<DGF> ADAPT; auto adapt = std::make_shared<ADAPT>(xdgf,title); vtkwriter.addVertexData(adapt); vtkwriter.write(title); } Eigen::VectorXd samplePrior(int level = 0){ std::random_device rd; std::normal_distribution<double> dis(0.0,1.0); std::mt19937 gen(rd()); Eigen::VectorXd z(STOCHASTIC_DIM); for (int i = 0; i < STOCHASTIC_DIM; i++){ z(i) = dis(gen); } return z; // Sample from prior - note Sigma = C' * C } // samplePrior void apply(Link& u, int level = 0, bool plotSolution = false, bool setasData = false){ // Unwrap Xi Eigen::VectorXd xi = u.getTheta(); std::vector<double> xi_vec(xi.size()); for (int i = 0; i < xi.size(); i++){ xi_vec[i] = xi(i); } field.setXi(xi_vec); // Setting up Model typedef typename GRID::LevelGridView GV; GV gv = grid.levelGridView(level); // dimension and important types const int dim = GV::dimension; typedef double RF; // type for computations typedef typename GRID::ctype DF; typedef Dune::PDELab::QkLocalFiniteElementMap<GV,DF,double,1> FEM; FEM fem(gv); typedef GenericEllipticProblem<GV,RF,RandomField<2> > PROBLEM; PROBLEM problem(gv,field); typedef GenericEllipticProblemQoI<GV,RF,RandomField<2>> PROB_QOI; PROB_QOI qp(gv,field); typedef Dune::PDELab::ConvectionDiffusionBoundaryConditionAdapter<PROBLEM> BCType; BCType bctype(gv,problem); typedef Dune::PDELab::ConvectionDiffusionBoundaryConditionAdapter<PROB_QOI> BCType_qoi; BCType_qoi bctype_qoi(gv,qp); // Make grid function space typedef Dune::PDELab::ConformingDirichletConstraints CON; typedef Dune::PDELab::ISTL::VectorBackend<> VBE; typedef Dune::PDELab::GridFunctionSpace<GV,FEM,CON,VBE> GFS; GFS gfs(gv,fem); gfs.name("p"); typedef Dune::PDELab::Backend::Vector<GFS,RF> V; V x(gfs,0.0); // Extract domain boundary constraints from problem definition, apply trace to solution vector typedef Dune::PDELab::ConvectionDiffusionDirichletExtensionAdapter<PROBLEM> G; G g(gv,problem); Dune::PDELab::interpolate(g,gfs,x); // Assemble constraints typedef typename GFS::template ConstraintsContainer<RF>::Type CC; CC cc; Dune::PDELab::constraints(bctype,gfs,cc); // assemble constraints CC cc_qoi; Dune::PDELab::constraints(bctype_qoi,gfs,cc_qoi); // assemble constraints // LocalOperator for given problem typedef Dune::PDELab::ConvectionDiffusionFEM<PROBLEM,FEM> LOP; LOP lop(problem); // Make a global operator typedef Dune::PDELab::ISTL::BCRSMatrixBackend<> MBE; MBE mbe(9); typedef Dune::PDELab::GridOperator<GFS,GFS,LOP,MBE,RF,RF,RF,CC,CC> GO; GO go(gfs,cc,gfs,cc,lop,mbe); // Select a linear solver backend typedef Dune::PDELab::ISTLBackend_SEQ_CG_AMG_SSOR<GO> LS; LS ls(100,0); // Assemble and solve linear problem typedef Dune::PDELab::StationaryLinearProblemSolver<GO,LS,V> SLP; SLP slp(go,ls,x,1e-10,1e-99,0); slp.apply(); // here all the work is done! typedef Dune::PDELab::DiscreteGridFunction<GFS,V> DGF; DGF xdgf(gfs,x); for (int i = 0; i < Nobs; i++){ // For each observation Dune::FieldVector<double,2> point(0.0); point[0] = obsCoord(i,0); point[1] = obsCoord(i,1); Dune::PDELab::GridFunctionProbe<DGF> probe(xdgf,point); Dune::FieldVector<double,1> val(0); probe.eval(val); F[level](i) = val[0]; if (setasData){ Fobs(i) = F[level](i); } } //if(setasData){std::cout << Fobs << std::endl;} typedef Dune::PDELab::QoI<PROBLEM,FEM> QOI; QOI qoi_lop(problem); typedef Dune::PDELab::GridOperator<GFS,GFS,QOI,MBE,RF,RF,RF,CC,CC> QGO; QGO qgo(gfs,cc_qoi,gfs,cc_qoi,qoi_lop,mbe); using Dune::PDELab::Backend::native; typedef Dune::PDELab::Backend::Vector<GFS,RF> V; V q(gfs,0.0); qgo.residual(x,q); Eigen::VectorXd Q(1); Q(0) = 0.0; // std::cout << "This is the values in the right handside" << std::endl; for (int i = 0; i < native(q).size(); i++){ Q(0) += native(q)[i]; } //Eigen::VectorXd Q(1); //Q(0) = xi(0); u.setQoI(Q,false); // Compute logLikelihood Eigen::VectorXd misMatch(Nobs); double logLikelihood = 0.0; for (int k = 0; k < Nobs; k++){ logLikelihood -= (F[level](k) - Fobs(k)) * (F[level](k) - Fobs(k)); } logLikelihood /= (2.0 * sigf * sigf); u.setlogPhi(logLikelihood); if(plotSolution){ std::cout << "logDensity = " << logLikelihood << std::endl; // Write solution to VTK Dune::VTKWriter<GV> vtkwriter(gfs.gridView()); typedef Dune::PDELab::VTKGridFunctionAdapter<DGF> ADAPT; auto adapt = std::make_shared<ADAPT>(xdgf,"solution"); vtkwriter.addVertexData(adapt); vtkwriter.write("solution"); } } Eigen::VectorXd getFobs(){ return Fobs; } Eigen::VectorXd getF(int level){ return F[level]; } private: Eigen::VectorXd thetaObs, Fobs; Eigen::MatrixXd obsCoord; int Nobs; double sigf; GRID& grid; RandomField<2> field; std::vector<Eigen::VectorXd> F; }; } }
[ "t.dodwell@exeter.ac.uk" ]
t.dodwell@exeter.ac.uk
43cd45773dbd3a4d68dd7329beb88cf64fab0dba
b2f80cfef340f2898d69c61fd43345194ac771f0
/hw10/fullhw/p2.cpp
dc23a1eb8a79daa3ca1899fde1222d8a499eb64f
[]
no_license
terz99/course-algorithms-data-structures
396e81df26fec5cf08ee380ad7554a6b731117a9
e561ac8c020ae68d37a9a0ad7c75edd0f17fb068
refs/heads/master
2020-03-19T12:44:34.218778
2018-06-07T22:17:02
2018-06-07T22:17:02
136,537,267
0
2
null
null
null
null
UTF-8
C++
false
false
732
cpp
/** * Problem 2 * @author: Dushan Terzikj 30001357 * @since: 29.04.2018 */ #include <bits/stdc++.h> #include "algorithm.h" using namespace std; /** * Driver test program to test the algorithm which is contained * in 'algorithm.h' */ int main(){ /* Input */ int n; cin >> n; vector< vector<int> > mat(n, vector<int>(n)); for(int i = 0; i < n; i++){ for(int j = 0; j <= i; j++){ cin >> mat[i][j]; } } /* Algorithm */ Solution sol(n, mat); sol.solve(); Result res = sol.getResult(); /* Output */ cout << res.res << endl; for(unsigned int i = 0; i < res.seq.size(); i++){ cout << res.seq[i] << " "; } cout << endl; return 0; }
[ "dusanterzic87@gmail.com" ]
dusanterzic87@gmail.com
1a7d6d89df36b7b09ada9cb5b2bf2cbe900d557a
536656cd89e4fa3a92b5dcab28657d60d1d244bd
/chrome/browser/google/google_brand_chromeos.cc
eecbcf8636a5dc755d63c081527c205ae5d83622
[ "BSD-3-Clause" ]
permissive
ECS-251-W2020/chromium
79caebf50443f297557d9510620bf8d44a68399a
ac814e85cb870a6b569e184c7a60a70ff3cb19f9
refs/heads/master
2022-08-19T17:42:46.887573
2020-03-18T06:08:44
2020-03-18T06:08:44
248,141,336
7
8
BSD-3-Clause
2022-07-06T20:32:48
2020-03-18T04:52:18
null
UTF-8
C++
false
false
3,828
cc
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/bind.h" #include "base/files/file_path.h" #include "base/files/file_util.h" #include "base/logging.h" #include "base/strings/string_util.h" #include "base/task/post_task.h" #include "chrome/browser/browser_process.h" #include "chrome/browser/browser_process_platform_part.h" #include "chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h" #include "chrome/browser/google/google_brand_code_map_chromeos.h" #include "chrome/common/pref_names.h" #include "chromeos/system/statistics_provider.h" #include "components/policy/core/common/cloud/cloud_policy_constants.h" #include "components/prefs/pref_service.h" #include "content/public/browser/browser_thread.h" namespace google_brand { namespace chromeos { namespace { // Path to file that stores the RLZ brand code on ChromeOS. const base::FilePath::CharType kRLZBrandFilePath[] = FILE_PATH_LITERAL("/opt/oem/etc/BRAND_CODE"); bool IsBrandValid(const std::string& brand) { return !brand.empty(); } // Reads the brand code from file |kRLZBrandFilePath|. std::string ReadBrandFromFile() { std::string brand; base::FilePath brand_file_path(kRLZBrandFilePath); if (!base::ReadFileToString(brand_file_path, &brand)) LOG(WARNING) << "Brand code file missing: " << brand_file_path.value(); base::TrimWhitespaceASCII(brand, base::TRIM_ALL, &brand); return brand; } // For a valid |brand|, sets the brand code and runs |callback|. void SetBrand(const base::Closure& callback, const std::string& brand) { if (!IsBrandValid(brand)) return; g_browser_process->local_state()->SetString(prefs::kRLZBrand, brand); callback.Run(); } // True if brand code has been cleared for the current session. bool g_brand_empty = false; } // namespace void ClearBrandForCurrentSession() { DCHECK(!content::BrowserThread::IsThreadInitialized( content::BrowserThread::UI) || content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); g_brand_empty = true; } std::string GetBrand() { DCHECK(!content::BrowserThread::IsThreadInitialized( content::BrowserThread::UI) || content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); if (g_brand_empty) return std::string(); // Unit tests do not have prefs. if (!g_browser_process->local_state()) return std::string(); return g_browser_process->local_state()->GetString(prefs::kRLZBrand); } std::string GetRlzBrand() { policy::BrowserPolicyConnectorChromeOS* connector = g_browser_process->platform_part()->browser_policy_connector_chromeos(); base::Optional<policy::MarketSegment> market_segment; if (connector->IsEnterpriseManaged()) market_segment = connector->GetEnterpriseMarketSegment(); // The rlz brand code may change over time (e.g. when device goes from // unenrolled to enrolled status in OOBE). Prefer not to save it in pref to // avoid using outdated value. return GetRlzBrandCode(GetBrand(), market_segment); } void InitBrand(const base::Closure& callback) { ::chromeos::system::StatisticsProvider* provider = ::chromeos::system::StatisticsProvider::GetInstance(); std::string brand; const bool found = provider->GetMachineStatistic( ::chromeos::system::kRlzBrandCodeKey, &brand); if (found && IsBrandValid(brand)) { SetBrand(callback, brand); return; } base::PostTaskAndReplyWithResult( FROM_HERE, {base::ThreadPool(), base::MayBlock(), base::TaskPriority::BEST_EFFORT, base::TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN}, base::BindOnce(&ReadBrandFromFile), base::BindOnce(&SetBrand, callback)); } } // namespace chromeos } // namespace google_brand
[ "pcding@ucdavis.edu" ]
pcding@ucdavis.edu
8c6660bb69521cd4647da9a5c444465da750ec05
992a387ba9edbdd60d018d300d3cb5c2217a7a8e
/Competitive Programming/2) Bitmasking Advanced/fibonacci_Matrix.cpp
0525d190f1cf6ab4b68d75d276b33ce7871b41b1
[]
no_license
ashishnagpal2498/CPP_Concepts_and_Codes
7e5f8d5a1866c3658c61a8a4b2015526ab8de38f
a1828c639816fd23ec9b04635e544b27a4bc27bc
refs/heads/master
2022-07-21T16:01:29.461619
2022-07-15T06:18:56
2022-07-15T06:18:56
167,674,604
2
0
null
null
null
null
UTF-8
C++
false
false
1,472
cpp
//Nth fibonacci number using matrix exponentiation #include<bits/stdc++.h> #define ll long long int #define mod 1000000007 using namespace std; ll t,n; ll arr[200005]; struct mat { ll arr[2][2]; }; mat multi(mat AB,mat CD) { mat ans; // Initialization for(ll i=0;i<2;i++) for(int j=0;j<2;j++) ans.arr[i][j] = 0; for(int i=0;i<2;i++) { for(int j=0;j<2;j++) { for(int k=0;k<2;k++) { ans.arr[i][j] = (ans.arr[i][j] + AB.arr[i][k]*CD.arr[k][j]) % mod; } } } return ans; } mat fibonacci(mat a,ll n) { mat ans; for(int i=0;i<2;i++) { for(int j=0;j<2;j++) { if(i==j) ans.arr[i][j] = 1; else ans.arr[i][j] = 0; } } cout<<"Func "<<endl; while(n) { if(n&1){ ans= multi(ans,a); } a = multi(a,a); n>>=1; } return ans; } ll fib[100005] = {0}; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); mat a,ans; cin>>n; a.arr[0][1] = a.arr[1][0] = a.arr[1][1] = 1; a.arr[0][0] = 0; ans = fibonacci(a,n-1); cout<<"Ans "<<ans.arr[1][1]<<endl; fib[1] = 1; for(int i=2;i<=n;i++) { fib[i] = fib[i-1] + fib[i-2]; } for(int i=0;i<2;i++){for(int j=0;j<2;j++) {cout<<ans.arr[i][j]<<" ";}cout<<endl;} cout<<"Fibonacci linear "<<fib[n]<<endl; return 0; }
[ "ashishnagpal2498@gmail.com" ]
ashishnagpal2498@gmail.com
c60f9db710d0bd8e698c12d98f9370368ca7d11c
42a85355c10eaefc23685eef10868677a31c5e77
/AEDS-I/MateusFilipe_Roteiro-06/MateusFilipe_ex09.cpp
0d3d438e193c76019ed42dcf153f1e7a07f610d0
[]
no_license
mateusfilipe/BSI
75087c3dcc11d50f0b7654f47486d8ba725cac92
6a2f36a4bb51d9e9f8804ac0d2b1cdc9ad9e15a4
refs/heads/master
2021-06-06T05:06:37.607841
2020-10-22T18:07:16
2020-10-22T18:07:16
131,438,538
2
0
null
2020-10-22T18:07:17
2018-04-28T19:35:17
C++
ISO-8859-1
C++
false
false
923
cpp
//Mateus Filipe De Lima Souza - 1º Período - BSI /* Exemplo de Teste com 3{ Preencha a matriz: 1 0 0 0 1 0 0 0 1 É simétrica! } */ #include <iostream> #include <locale.h> #include <math.h> #include <windows.h> #include <stdio.h> //Vetor: const int TAM = 0; //Matriz: const int L = 8; const int C = 8; using namespace std; int main() { setlocale(LC_ALL , "Portuguese"); float a[L][C]; int teste=0; cout<<"Preencha a matriz:"<<endl; for(int i = 0 ; i < L ; i++){ for(int j = 0; j < C; j++){ cin>>a[i][j]; } } for(int i = 0 ; i < L ; i++){ for(int j = 0; j < C; j++){ if(a[i][j]!=a[j][i]){ teste++; } } } if(teste!=0){ cout<<"Não é simétrica!"<<endl; }else{ cout<<"É simétrica!"<<endl; } system("pause"); return 0; }
[ "mateusfilipe557@gmail.com" ]
mateusfilipe557@gmail.com
e575e612dcb0060a9ff194d705f3aa47517b9bc6
d8edbf9c1654d5cfb3c531afa3b9357970b57a81
/pascal_compiler/pascal_compiler/CharVariant.h
2c9af4e5be8d53d1a615f0f34f6a0d469391af8c
[]
no_license
sergeyerr/llvm_pascal_compiler
2590f9b869774d872cd3f04bee3426750874b255
d39ece1eef2af58ce290b45de7c330c36e1c237d
refs/heads/main
2023-06-24T22:10:31.944545
2021-07-23T15:34:12
2021-07-23T15:34:12
388,846,205
0
0
null
null
null
null
UTF-8
C++
false
false
233
h
#pragma once #include "ETokenType.h" #include "EValueType.h" #include "IVariant.h" class CharVariant : public IVariant { public: const char CharValue; CharVariant(char val) : IVariant(EValueType::CharValue), CharValue(val) {}; };
[ "voloboeff2010@yandex.ru" ]
voloboeff2010@yandex.ru
1fb39021f9ba3afe3a64f78cac5c0584e225f92c
1af49694004c6fbc31deada5618dae37255ce978
/chrome/browser/rlz/chrome_rlz_tracker_delegate.h
3904b54be28ee021176ffcd39e2a308243053d41
[ "BSD-3-Clause" ]
permissive
sadrulhc/chromium
59682b173a00269ed036eee5ebfa317ba3a770cc
a4b950c23db47a0fdd63549cccf9ac8acd8e2c41
refs/heads/master
2023-02-02T07:59:20.295144
2020-12-01T21:32:32
2020-12-01T21:32:32
317,678,056
3
0
BSD-3-Clause
2020-12-01T21:56:26
2020-12-01T21:56:25
null
UTF-8
C++
false
false
2,685
h
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_RLZ_CHROME_RLZ_TRACKER_DELEGATE_H_ #define CHROME_BROWSER_RLZ_CHROME_RLZ_TRACKER_DELEGATE_H_ #include "base/callback.h" #include "base/macros.h" #include "components/omnibox/browser/omnibox_event_global_tracker.h" #include "components/rlz/rlz_tracker_delegate.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" class Profile; namespace user_prefs { class PrefRegistrySyncable; } // ChromeRLZTrackerDelegate implements RLZTrackerDelegate abstract interface // and provides access to Chrome features. class ChromeRLZTrackerDelegate : public rlz::RLZTrackerDelegate, public content::NotificationObserver { public: ChromeRLZTrackerDelegate(); ~ChromeRLZTrackerDelegate() override; static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); static bool IsGoogleDefaultSearch(Profile* profile); static bool IsGoogleHomepage(Profile* profile); static bool IsGoogleInStartpages(Profile* profile); private: // RLZTrackerDelegate implementation. void Cleanup() override; bool IsOnUIThread() override; scoped_refptr<network::SharedURLLoaderFactory> GetURLLoaderFactory() override; bool GetBrand(std::string* brand) override; bool IsBrandOrganic(const std::string& brand) override; bool GetReactivationBrand(std::string* brand) override; bool ShouldEnableZeroDelayForTesting() override; bool GetLanguage(base::string16* language) override; bool GetReferral(base::string16* referral) override; bool ClearReferral() override; void SetOmniboxSearchCallback(base::OnceClosure callback) override; void SetHomepageSearchCallback(base::OnceClosure callback) override; bool ShouldUpdateExistingAccessPointRlz() override; // content::NotificationObserver implementation: void Observe(int type, const content::NotificationSource& source, const content::NotificationDetails& details) override; // Called when a URL is opened from the Omnibox. void OnURLOpenedFromOmnibox(OmniboxLog* log); content::NotificationRegistrar registrar_; base::OnceClosure on_omnibox_search_callback_; base::OnceClosure on_homepage_search_callback_; // Subscription for receiving callbacks that a URL was opened from the // omnibox. base::CallbackListSubscription omnibox_url_opened_subscription_; DISALLOW_COPY_AND_ASSIGN(ChromeRLZTrackerDelegate); }; #endif // CHROME_BROWSER_RLZ_CHROME_RLZ_TRACKER_DELEGATE_H_
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
7e9fdcd02a7cbe9e92bafc2da472beba259d6c24
0350bce9b0672d478fd0e3e459662ae0e2c9d1c0
/Container/less.h
dbf1b56f3c83674e48feb116acb90e379bb0ba53
[]
no_license
fschmidt/C--4J
576401e786473515dd05378ec2558fb07c980e25
0bbcd5b01030316e110f6db8d0b1b73f5232b7a7
refs/heads/master
2021-01-20T04:49:50.747302
2012-07-10T11:42:21
2012-07-10T11:42:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
179
h
#ifndef LESS_H #define LESS_H template <typename T> class Less { public: bool operator ()(const T& lhs, const T& rhs) { return lhs < rhs; } }; #endif // LESS_H
[ "marcus.froede@gmx.de" ]
marcus.froede@gmx.de
f4e9e22fcf383c83c077a579ec090687c771fcea
08289b06a836c320db190865c46fa010de66cecf
/src_cvpr/QNwelsch.cpp
602acb168f841fcbbde2c08633c9724fee78adf0
[]
no_license
Easy-Shu/Fast_RNRR
c20b47b411734ac746683b484fa7070727239a6f
9c6e336e6f1096ae8144d64d9d8009183d622fba
refs/heads/master
2023-04-04T10:18:43.334574
2021-04-13T09:32:54
2021-04-13T09:32:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
15,231
cpp
#pragma once #include "QNwelsch.h" #include <fstream> #include <iostream> #include <OpenMesh/Core/IO/MeshIO.hh> typedef Eigen::Triplet<Scalar> Triplet; QNwelsch::QNwelsch() { }; QNwelsch::~QNwelsch() { } void QNwelsch::Initialize() { ldlt_ = new Eigen::SimplicialCholesky<Eigen::SparseMatrix<double>>; nonrigid_init(); // Initialize BFGS paras iter_ = 0; col_idx_ = 0; weight_d_.setOnes(); weight_s_.setOnes(); // our sample method // construct node graph double time1 = clock(); if (pars_.is_unifom_sample) { src_sample_nodes.sample(*src_mesh_, hgeodesic_->data1, pars_.uni_sample_radio, svr::nodeSampler::X_AXIS); // src_sample_nodes.farthest_point_sample(*src_mesh_, hgeodesic_->data1, pars_.uni_sample_radio, 0, 1); } else src_sample_nodes.mysample(*src_mesh_, hgeodesic_->data1, n_src_vertex_ * pars_.n_uni_sample_radio, pars_.n_uni_sample_neighbors); src_sample_nodes.constructGraph(pars_.is_unifom_sample); if (pars_.print_each_step_info) { std::string out_node = pars_.out_each_step_info + "/init_"; src_sample_nodes.print_nodes(*src_mesh_, out_node);//init sample nodes } num_sample_nodes = src_sample_nodes.nodeSize(); pars_.num_sample_nodes = num_sample_nodes; int num_sample_edges; if (pars_.is_allvertices_smooth) num_sample_edges = src_mesh_->n_halfedges(); else num_sample_edges = num_sample_nodes*(num_sample_nodes - 1); //std::cout << "num_sample_nodes = " << num_sample_nodes << std::endl; all_s_.resize(4 * num_sample_nodes * 3, pars_.lbfgs_m); all_s_.setZero(); all_t_.resize(4 * num_sample_nodes * 3, pars_.lbfgs_m); all_t_.setZero(); Smat_X_.resize(4 * num_sample_nodes, 3); Smat_X_.setZero(); Weight_PV_.resize(n_src_vertex_, 4 * num_sample_nodes); Smat_P_.resize(n_src_vertex_, 3); Smat_B_.resize(num_sample_edges, 4 * num_sample_nodes); Smat_D_.resize(num_sample_edges, 3); Sweight_s_.resize(num_sample_edges); Smat_R_.resize(3 * num_sample_nodes, 3); Smat_R_.setZero(); Smat_L_.resize(4 * num_sample_nodes, 4 * num_sample_nodes); Smat_J_.resize(4 * num_sample_nodes, 3 * num_sample_nodes); std::vector<Triplet> coeffv(4 * num_sample_nodes); std::vector<Triplet> coeffL(3 * num_sample_nodes); std::vector<Triplet> coeffJ(3 * num_sample_nodes); for (int i = 0; i < num_sample_nodes; i++) { size_t vIdx0 = src_sample_nodes.getNodeVertexIdx(i); VertexHandle vh0 = src_mesh_->vertex_handle(vIdx0); Point v0 = src_mesh_->point(vh0); // Smat_X_ Smat_X_.block(4 * i, 0, 3, 3) = MatrixXX::Identity(3, 3); // Smat_R_ Smat_R_.block(3 * i, 0, 3, 3) = MatrixXX::Identity(3, 3); // Smat_L_ coeffL[3 * i] = Triplet(4 * i, 4 * i, 1.0); coeffL[3 * i + 1] = Triplet(4 * i + 1, 4 * i + 1, 1.0); coeffL[3 * i + 2] = Triplet(4 * i + 2, 4 * i + 2, 1.0); // Smat_J_ coeffJ[3 * i] = Triplet(4 * i, 3 * i, 1.0); coeffJ[3 * i + 1] = Triplet(4 * i + 1, 3 * i + 1, 1.0); coeffJ[3 * i + 2] = Triplet(4 * i + 2, 3 * i + 2, 1.0); } //Smat_P_.setFromTriplets(coeffv.begin(), coeffv.end()); Smat_L_.setFromTriplets(coeffL.begin(), coeffL.end()); Smat_J_.setFromTriplets(coeffJ.begin(), coeffJ.end()); direction_.resize(4 * num_sample_nodes, 3); // Weight_PV_ src_sample_nodes.initWeight(Weight_PV_, Smat_P_, Smat_B_, Smat_D_, Sweight_s_, *src_mesh_, pars_.is_allvertices_smooth); //std::cout << "sweight_s_ = " << Sweight_s_.transpose() << std::endl; int real_edge = 0; for (int i = 0; i < Smat_B_.rows(); i++) { if (Smat_B_.row(i).norm()>0) { real_edge++; } } pars_.alpha = pars_.alpha * n_src_vertex_ / real_edge; pars_.beta = pars_.beta * n_src_vertex_ / num_sample_nodes; } double QNwelsch::DoNonRigid() { double data_err, smooth_err, orth_err; MatrixXX curV = MatrixXX::Zero(n_src_vertex_, 3); MatrixXX prevV = MatrixXX::Zero(n_src_vertex_, 3); SparseMatrix Weight_PV0 = Weight_PV_; SparseMatrix Smat_B0 = Smat_B_; MatrixXX Smat_D0 = Smat_D_; // welsch_sweight Eigen::VectorXd welsch_weight_s = Eigen::VectorXd::Ones(Sweight_s_.rows(), 1); bool run_once = true; // Data perm parameters double nu1 = pars_.Data_initk * pars_.Data_nu; double average_len = std::min(CalcEdgelength(src_mesh_, 1), CalcEdgelength(tar_mesh_, 1)); double end_nu1 = pars_.Data_endk * average_len; double nu2 = pars_.Smooth_nu * average_len; // Smooth perm parameters ori_alpha = pars_.alpha; ori_beta = pars_.beta; pars_.alpha = ori_alpha * nu1 * nu1 / (nu2 * nu2); pars_.beta = ori_beta * 2.0 * nu1 * nu1; Timer time; Timer::EventID begin_time, run_time; pars_.each_energys.clear(); pars_.each_gt_mean_errs.clear(); pars_.each_gt_max_errs.clear(); pars_.each_times.clear(); pars_.each_iters.clear(); // print initial run results pars_.each_energys.push_back(0.0); pars_.each_gt_max_errs.push_back(pars_.init_gt_max_errs); pars_.each_gt_mean_errs.push_back(pars_.init_gt_mean_errs); pars_.each_iters.push_back(0); pars_.each_times.push_back(pars_.non_rigid_init_time); bool dynamic_stop = false; begin_time = time.get_time(); while (!dynamic_stop) { for (int out_iter = 0; out_iter < pars_.max_outer_iters; out_iter++) { // according correspondence_pairs to update mat_U0_; mat_U0_.setZero(); corres_pair_ids_.setZero(); #ifdef USE_OPENMP #pragma omp parallel for #endif for (int i = 0; i < correspondence_pairs_.size(); i++) { mat_U0_.col(correspondence_pairs_[i].first) = tar_points_.col(correspondence_pairs_[i].second); corres_pair_ids_[correspondence_pairs_[i].first] = 1; } // int welsch_iter; int total_inner_iters = 0; MatrixXX old_X = Smat_X_; // update V,U and D weight_d_ = weight_d_.cwiseSqrt().cwiseProduct(corres_pair_ids_); Weight_PV_ = weight_d_.asDiagonal() * Weight_PV0; welsch_weight_s = welsch_weight_s.cwiseSqrt().cwiseProduct(Sweight_s_); Smat_B_ = welsch_weight_s.asDiagonal() * Smat_B0; Smat_D_ = welsch_weight_s.asDiagonal() * Smat_D0; Smat_UP_ = weight_d_.asDiagonal() * (mat_U0_.transpose() - Smat_P_); // construct matrix A0 and pre-decompose mat_A0_ = (Weight_PV_).transpose() * Weight_PV_ + pars_.alpha * (Smat_B_).transpose() * Smat_B_ + pars_.beta * Smat_L_; if (run_once) { ldlt_->analyzePattern(mat_A0_); run_once = false; } ldlt_->factorize(mat_A0_); // auxiliary variable 4m * 3 mat_VU_ = (Weight_PV_).transpose() * Smat_UP_ + pars_.alpha * (Smat_B_).transpose() * Smat_D_; total_inner_iters += QNSolver(data_err, smooth_err, orth_err); Eigen::VectorXd gt_errs = Eigen::VectorXd::Zero(n_src_vertex_); MatrixXX target = Weight_PV0 * Smat_X_ + Smat_P_; #ifdef USE_OPENMP #pragma omp parallel for #endif for (int i = 0; i < n_src_vertex_; i++) { MatrixXX tar_p = target.block(i, 0, 1, 3); OpenMesh::Vec3d p(tar_p(0, 0), tar_p(0, 1), tar_p(0, 2)); src_mesh_->set_point(src_mesh_->vertex_handle(i), p); curV.row(i) = tar_p; if (pars_.calc_gt_err) gt_errs[i] = (tar_p.transpose() - tar_points_.col(i)).squaredNorm(); } double energy = 0.0; // update weight if (pars_.use_welsch_function) { weight_d_ = (Weight_PV0 * Smat_X_ + Smat_P_ - mat_U0_.transpose()).rowwise().norm(); welsch_weight(weight_d_, nu1); welsch_weight_s = ((Smat_B0 * Smat_X_ - Smat_D0)).rowwise().norm(); welsch_weight(welsch_weight_s, nu2); } run_time = time.get_time(); double gt_err = std::sqrt(gt_errs.sum() / n_src_vertex_); pars_.each_gt_mean_errs.push_back(gt_err); pars_.each_gt_max_errs.push_back(sqrt(gt_errs.maxCoeff())); pars_.each_energys.push_back(energy); double eps_time = time.elapsed_time(begin_time, run_time); pars_.each_times.push_back(eps_time); pars_.each_iters.push_back(total_inner_iters); if (pars_.print_each_step_info) { std::cout << "iter = " << out_iter << " time = " << eps_time << " energy = " << energy << " gt_err = " << gt_err << " inner iter = " << total_inner_iters << std::endl; } // Find clost points FindClosestPoints(correspondence_pairs_); // SimplePruning(correspondence_pairs_, pars_.use_distance_reject, pars_.use_normal_reject); // stop condition should be revised if ((curV - prevV).rowwise().norm().maxCoeff() < pars_.stop) { break; } prevV = curV; } if (fabs(nu1 - end_nu1)<1e-8 || !pars_.use_Dynamic_nu || !pars_.use_welsch_function) dynamic_stop = true; nu1 = std::max(0.5*nu1, end_nu1); nu2 *= 0.5; pars_.alpha = ori_alpha * nu1 * nu1 / (nu2 * nu2); pars_.beta = ori_beta * 2 * nu1 * nu1; } return 0; } double QNwelsch::sample_energy(double& data_err, double& smooth_err, double& orth_err) { data_err = (Weight_PV_ * Smat_X_ - Smat_UP_).squaredNorm(); smooth_err = ((Smat_B_ * Smat_X_ - Smat_D_)).squaredNorm(); Eigen::VectorXd orth_errs(num_sample_nodes); #ifdef USE_OPENMP #pragma omp parallel for #endif for (int i = 0; i < num_sample_nodes; i++) { Eigen::JacobiSVD<Eigen::MatrixXd> svd(Smat_X_.block(4 * i, 0, 3, 3), Eigen::ComputeThinU | Eigen::ComputeThinV); // Eigen::Matrix3d V1 = svd.matrixV(), U1 = svd.matrixU(); if (svd.matrixU().determinant()*svd.matrixV().determinant() < 0.0) { Eigen::Vector3d S = Eigen::Vector3d::Ones(); S(2) = -1.0; // Smat_R_.block(3 * i, 0, 3, 3) = svd.matrixV()*S.asDiagonal()*svd.matrixU().transpose(); Smat_R_.block(3 * i, 0, 3, 3) = svd.matrixU()*S.asDiagonal()*svd.matrixV().transpose(); } else { // Smat_R_.block(3 * i, 0, 3, 3) = svd.matrixV()*svd.matrixU().transpose(); Smat_R_.block(3 * i, 0, 3, 3) = svd.matrixU()*svd.matrixV().transpose(); } orth_errs[i] = (Smat_X_.block(4 * i, 0, 3, 3) - Smat_R_.block(3 * i, 0, 3, 3)).squaredNorm(); } orth_err = orth_errs.sum(); return data_err + pars_.alpha * smooth_err + pars_.beta * orth_err; } void QNwelsch::update_R() { #ifdef USE_OPENMP #pragma omp parallel for #endif for (int i = 0; i < num_sample_nodes; i++) { Eigen::JacobiSVD<Eigen::MatrixXd> svd(Smat_X_.block(4 * i, 0, 3, 3), Eigen::ComputeThinU | Eigen::ComputeThinV); if (svd.matrixU().determinant()*svd.matrixV().determinant() < 0.0) { Eigen::Vector3d S = Eigen::Vector3d::Ones(); S(2) = -1.0; // Smat_R_.block(3 * i, 0, 3, 3) = svd.matrixV()*S.asDiagonal()*svd.matrixU().transpose(); Smat_R_.block(3 * i, 0, 3, 3) = svd.matrixU()*S.asDiagonal()*svd.matrixV().transpose(); } else { // Smat_R_.block(3 * i, 0, 3, 3) = svd.matrixV()*svd.matrixU().transpose(); Smat_R_.block(3 * i, 0, 3, 3) = svd.matrixU()*svd.matrixV().transpose(); } } } void QNwelsch::sample_gradient() { grad_X_ = 2 * (mat_A0_ * Smat_X_ - mat_VU_ - pars_.beta * Smat_J_ * Smat_R_); } // col vector void QNwelsch::LBFGS(int iter, MatrixXX & dir) const { VectorX rho(pars_.lbfgs_m); VectorX kersi(pars_.lbfgs_m); MatrixXX q(4 * num_sample_nodes, 3); MatrixXX temp(4 * num_sample_nodes, 3); int k = iter; q.setZero(); dir = q; q = -grad_X_; int m_k = std::min(k, pars_.lbfgs_m); for (int i = k - 1; i > k - m_k - 1; i--) { int col = (pars_.lbfgs_m + col_idx_ - (k - 1 - i)) % pars_.lbfgs_m; rho(k - 1 - i) = all_t_.col(col).transpose().dot(all_s_.col(col)); Scalar lbfgs_err_scalar = Eigen::Map<VectorX>(q.data(), q.size()).dot(all_s_.col(col)); kersi(k - 1 - i) = lbfgs_err_scalar / rho(k - 1 - i); Eigen::Map<VectorX>(q.data(), q.size()) -= kersi(k - 1 - i) * all_t_.col(col); } #ifdef USE_OPENMP #pragma omp parallel for #endif for (int cid = 0; cid < 3; cid++) { dir.col(cid) = ldlt_->solve(q.col(cid)); } // dir = ldlt_->solve(q); for (int i = k - m_k; i < k; i++) { int col = (pars_.lbfgs_m + col_idx_ - (k - 1 - i)) % pars_.lbfgs_m; Scalar lbfgs_err_scalar = all_t_.col(col).dot(Eigen::Map<VectorX>(dir.data(), dir.size())); Scalar eta = kersi(k - 1 - i) - lbfgs_err_scalar / rho(k - 1 - i); Eigen::Map<VectorX>(dir.data(), dir.size()) += all_s_.col(col) * eta; } rho.resize(0); kersi.resize(0); q.resize(0, 0); temp.resize(0, 0); return; } int QNwelsch::QNSolver(double& data_err, double& smooth_err, double& orth_err) { MatrixXX prev_X; int count_linesearch = 0; //double new_err = EvalError(data_err, smooth_err, orth_err); double new_err = sample_energy(data_err, smooth_err, orth_err); int iter; for (iter = 0; iter <= pars_.max_inner_iters; iter++) { //EvalGradient(); sample_gradient(); // update decent direction if (iter == 0) { MatrixXX temp = -grad_X_; #ifdef USE_OPENMP #pragma omp parallel for #endif for (int cid = 0; cid < 3; cid++) { direction_.col(cid) = ldlt_->solve(temp.col(cid)); } col_idx_ = 0; all_s_.col(col_idx_) = -Eigen::Map<Eigen::VectorXd>(Smat_X_.data(), 4 * num_sample_nodes * 3); all_t_.col(col_idx_) = -Eigen::Map<Eigen::VectorXd>(grad_X_.data(), 4 * num_sample_nodes * 3); } else { all_s_.col(col_idx_) += Eigen::Map<Eigen::VectorXd>(Smat_X_.data(), 4 * num_sample_nodes * 3); all_t_.col(col_idx_) += Eigen::Map<Eigen::VectorXd>(grad_X_.data(), 4 * num_sample_nodes * 3); // Get descent direction LBFGS(iter, direction_); col_idx_ = (col_idx_ + 1) % pars_.lbfgs_m; all_s_.col(col_idx_) = -Eigen::Map<Eigen::VectorXd>(Smat_X_.data(), 4 * num_sample_nodes * 3); all_t_.col(col_idx_) = -Eigen::Map<Eigen::VectorXd>(grad_X_.data(), 4 * num_sample_nodes * 3); } double alpha = 2.0; prev_X = Smat_X_; double prev_err = new_err; double gamma = 0.3; double x = (grad_X_.transpose() * direction_).trace(); do { alpha /= 2; Smat_X_ = prev_X + alpha * direction_; //new_err = EvalError(data_err, smooth_err, orth_err); new_err = sample_energy(data_err, smooth_err, orth_err); count_linesearch++; } while (new_err > prev_err + gamma * alpha * x); // std::cout << "iter = " << iter << " err = " << new_err << std::endl; if (fabs(new_err - prev_err)< pars_.stop) { break; } iter_++; } return iter; } double QNwelsch::welsch_error(double nu1, double nu2) { Eigen::VectorXd w_data = (Weight_PV_ * Smat_X_ - Smat_UP_).rowwise().norm(); double data_err = welsch_energy(w_data, nu1); Eigen::VectorXd s_data = ((Smat_B_ * Smat_X_ - Smat_D_)).rowwise().norm(); double smooth_err = welsch_energy(s_data, nu2); Eigen::VectorXd orth_errs(n_src_vertex_); #ifdef USE_OPENMP #pragma omp parallel for #endif for (int i = 0; i < num_sample_nodes; i++) { Eigen::JacobiSVD<Eigen::MatrixXd> svd(Smat_X_.block(4 * i, 0, 3, 3), Eigen::ComputeThinU | Eigen::ComputeThinV); Eigen::Matrix3d V1 = svd.matrixV(), U1 = svd.matrixU(); double deg_R = Smat_R_.block(3 * i, 0, 3, 3).determinant(); if (abs(deg_R + 1) < 1e-3) { Eigen::Vector3d s(1, 1, -1); Smat_R_.block(3 * i, 0, 3, 3) = U1 * s.asDiagonal() * (V1.transpose()); } orth_errs[i] = (Smat_X_.block(4 * i, 0, 3, 3) - Smat_R_.block(3 * i, 0, 3, 3)).squaredNorm(); } return data_err + pars_.alpha * smooth_err + pars_.beta * orth_errs.sum(); } double QNwelsch::welsch_energy(Eigen::VectorXd& r, double p) { VectorX energy(r.rows()); #ifdef USE_OPENMP #pragma omp parallel for #endif for (int i = 0; i<r.rows(); ++i) { energy[i] = 1.0 - std::exp(-r(i)*r(i) / (2 * p*p)); } return energy.sum(); } void QNwelsch::welsch_weight(Eigen::VectorXd& r, double p) { #ifdef USE_OPENMP #pragma omp parallel for #endif for (int i = 0; i<r.rows(); ++i) { r(i) = std::exp(-r(i)*r(i) / (2 * p*p)); } }
[ "yaoyuxin1@126.com" ]
yaoyuxin1@126.com
38bd4a51d18f8ee6bca074a5e8c864463132d8fd
9a70e2b0dd2f96f585c78521aa536ed3ea9f2dd1
/11 - Friends, Overloaded Operators and Arrays in Classes/11.3-ArraysAndClasses/11.3-ArraysAndClasses/stdafx.cpp
a6e7e1232adf09ba5822e9970f6a3e049aa4a2ff
[]
no_license
TheArtOfPour/CS132
4e2cd47e1cf929fe63496fd3e5b20033cb767a99
e4e70111753139bbff63df2e0801d215dc1bfb2e
refs/heads/master
2021-07-07T14:00:06.160108
2017-10-03T03:13:02
2017-10-03T03:13:02
105,609,282
1
0
null
null
null
null
UTF-8
C++
false
false
300
cpp
// stdafx.cpp : source file that includes just the standard includes // 11.3-ArraysAndClasses.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h" // TODO: reference any additional headers you need in STDAFX.H // and not in this file
[ "justin.revelstoke@gmail.com" ]
justin.revelstoke@gmail.com
640981739155d25b4e9aeb5d165c07ee7ac6a016
67e17d140cd439e75a07cfb9f09c7bc73dcafc94
/Tests/Build 0/wifippm2/wifippm2.ino
e9fa59e3f3843607b167f85e702e2974626c2356
[]
no_license
ClockWorkKid/WiFi-Nano-Quadcopter
4f9419c0cd98348654cdbb7ff8f8d8c752f69ee7
d588c165e88de9661d2df484df7f02110dc36614
refs/heads/master
2022-12-27T13:01:43.943644
2020-10-12T07:09:38
2020-10-12T07:09:38
266,081,215
2
0
null
null
null
null
UTF-8
C++
false
false
6,618
ino
#include <ESP8266WiFi.h> #include <ESP8266WebServer.h> //#include <ArduinoOTA.h> //#include <WiFiUdp.h> #include <WebSocketsServer.h> #include <DNSServer.h> #include <Hash.h> #include "MSP.h" /* Set these to your desired credentials. */ #define CPU_MHZ 80 #define CHANNEL_NUMBER 8 //set the number of chanels #define CHANNEL_DEFAULT_VALUE 1100 //set the default servo value #define FRAME_LENGTH 22500 //set the PPM frame length in microseconds (1ms = 1000µs) #define PULSE_LENGTH 300 //set the pulse length #define onState 0 //set polarity of the pulses: 1 is positive, 0 is negative #define sigPin 5 //set PPM signal output pin on the arduino #define DEBUGPIN 4 const char *ssid = "Firefly_PPM"; const char *password = "987456321"; volatile unsigned long next; volatile unsigned int ppm_running=1; int ppm[CHANNEL_NUMBER]; const byte captive_portal=0; const byte DNS_PORT = 53; const char* serverIndex = "<form method='POST' action='/upload' enctype='multipart/form-data'><input type='file' name='update'><input type='submit' value='Update'></form>"; extern const char index_html[]; unsigned int alivecount=0; MSP msp; IPAddress apIP(192, 168, 1, 1); DNSServer dnsServer; //ESP8266WebServer server = ESP8266WebServer(80); ESP8266WebServer server (80); WebSocketsServer webSocket = WebSocketsServer(81); void inline ppmISR(void){ static boolean state = true; if (state) { //start pulse digitalWrite(sigPin, onState); next = next + (PULSE_LENGTH * CPU_MHZ); state = false; alivecount++; } else{ //end pulse and calculate when to start the next pulse static byte cur_chan_numb; static unsigned int calc_rest; digitalWrite(sigPin, !onState); state = true; if(cur_chan_numb >= CHANNEL_NUMBER){ cur_chan_numb = 0; calc_rest = calc_rest + PULSE_LENGTH;// next = next + ((FRAME_LENGTH - calc_rest) * CPU_MHZ); calc_rest = 0; digitalWrite(DEBUGPIN, !digitalRead(DEBUGPIN)); } else{ next = next + ((ppm[cur_chan_numb] - PULSE_LENGTH) * CPU_MHZ); calc_rest = calc_rest + ppm[cur_chan_numb]; cur_chan_numb++; } } timer0_write(next); } void handleRoot() { if(ppm_running==0) { noInterrupts(); timer0_isr_init(); timer0_attachInterrupt(ppmISR); next=ESP.getCycleCount()+1000; timer0_write(next); for(int i=0; i<CHANNEL_NUMBER; i++){ ppm[i]= CHANNEL_DEFAULT_VALUE; } ppm_running=1; interrupts(); } server.send_P(200,"text/html", index_html); } void webSocketEvent(uint8_t num, WStype_t type, uint8_t * payload, size_t length) { switch(type) { case WStype_DISCONNECTED: ppm[0]=1100; ppm[1]=1500; ppm[2]=1500; ppm[3]=1500; ppm[4]=1100; ppm[5]=1100; ppm[6]=1100; ppm[7]=1100; break; case WStype_CONNECTED: { // send message to client webSocket.sendTXT(num, "Connected"); ppm[0]=1100; ppm[1]=1500; ppm[2]=1500; ppm[3]=1500; ppm[4]=1100; ppm[5]=1100; ppm[6]=1100; ppm[7]=1100; } break; case WStype_TEXT: { if(payload[0]=='g' && payload[1]=='e' && payload[2]=='t'){ /* msp_analog_t analogdata; String senddata="{\"vbat\": "; if (msp.request(MSP_ANALOG, &analogdata, sizeof(analogdata))) { senddata+=String(analogdata.vbat); } else senddata+="0"; senddata += "}"; webSocket.sendTXT(num, senddata); */ } } break; case WStype_BIN: { ppm[payload[0]]=(payload[1]<<8)+payload[2]; alivecount=0; } break; } } void setup() { pinMode(sigPin,OUTPUT); digitalWrite(sigPin, !onState); //set the PPM signal pin to the default state (off) pinMode(DEBUGPIN,OUTPUT); digitalWrite(DEBUGPIN, !onState); //set the PPM signal pin to the default state (off) /* You can remove the password parameter if you want the AP to be open. */ // WiFi.softAPConfig(apIP, apIP, IPAddress(255, 255, 255, 0)); WiFi.softAP(ssid,password,2); IPAddress myIP = WiFi.softAPIP(); if(captive_portal) dnsServer.start(DNS_PORT, "*", apIP); server.onNotFound(handleRoot); server.on("/", handleRoot); server.on("/update", HTTP_GET, [](){ noInterrupts(); timer0_detachInterrupt(); ppm_running=0; interrupts(); delay(500); server.sendHeader("Connection", "close"); server.sendHeader("Access-Control-Allow-Origin", "*"); server.send(200, "text/html", serverIndex); }); server.on("/upload", HTTP_POST, [](){ server.sendHeader("Connection", "close"); server.sendHeader("Access-Control-Allow-Origin", "*"); server.send(200, "text/plain", (Update.hasError())?"FAIL":"OK"); ESP.restart(); },[](){ HTTPUpload& upload = server.upload(); if(upload.status == UPLOAD_FILE_START){ WiFiUDP::stopAll(); uint32_t maxSketchSpace = (ESP.getFreeSketchSpace() - 0x1000) & 0xFFFFF000; if(!Update.begin(maxSketchSpace)){//start with max available size // Update.printError(Serial); } } else if(upload.status == UPLOAD_FILE_WRITE){ if(Update.write(upload.buf, upload.currentSize) != upload.currentSize){ // Update.printError(Serial); } } else if(upload.status == UPLOAD_FILE_END){ if(Update.end(true)){ //true to set the size to the current progress // Serial.printf("Update Success: %u\nRebooting...\n", upload.totalSize); } else { // Update.printError(Serial); } // Serial.setDebugOutput(false); } yield(); }); server.begin(); webSocket.onEvent(webSocketEvent); webSocket.begin(); noInterrupts(); timer0_isr_init(); timer0_attachInterrupt(ppmISR); next=ESP.getCycleCount()+1000; timer0_write(next); for(int i=0; i<CHANNEL_NUMBER; i++){ ppm[i]= CHANNEL_DEFAULT_VALUE; } interrupts(); Serial.begin(115200); msp.begin(Serial); } unsigned long time_now = 0; void loop() { webSocket.loop(); // ArduinoOTA.handle(); if(captive_portal) dnsServer.processNextRequest(); server.handleClient(); if(alivecount>1000){ for(int i=0; i<4;i++){ ppm[i]=900; } for(int i=4; i<8;i++){ ppm[i]=1100; } } yield(); }
[ "msmohammad90@gmail.com" ]
msmohammad90@gmail.com
100c303c303144620d96ace73e67d4f5858d1003
6b15cb0337f11a1e96ac595c600af151eef23055
/SRS/apv2root/RawdataParser.h
8d915ff66db918580ca48276ef245ec7a01f63e7
[]
no_license
dorotheapfeiffer/events_SRS
df3e94f56f106d6a7d65749c3aaa199198a5fc9f
62605a0be2885bb2c64794d3a57641b0bd9766b7
refs/heads/master
2020-05-30T08:37:06.178737
2017-08-31T06:46:23
2017-08-31T06:46:23
81,095,351
0
0
null
null
null
null
UTF-8
C++
false
false
1,664
h
#include <vector> #include <list> #include <map> #include "RootFile.h" class RawdataParser { public: RawdataParser(std::string fileName, std::string pedestalName, bool isRawPedestal, bool isPedestal, bool isZS, float ZSCut, bool isUPTC, int uTPCThreshold, std::vector<int> xChipIDs, std::vector<int> yChipIDs, bool viewEvent, int viewStart, int viewEnd); ~RawdataParser(); void SetRunFlags(bool isRawPedestal, bool isPedestal); int AnalyzeWord(int rawdata, int rawdata_before, int rawdata_before_two); void AnalyzeEventZS(); void AnalyzeEvent(); void ComputeRawPedestalData(int theApvID); void ComputePedestalData(int theApvID); void ComputeCorrectedData(int theApvID); void CreateHistograms(); private: RootFile *fRoot = 0; int format=0; bool isRawPedestalRun = false; bool isPedestalRun = false; bool isZSRun = false; float fZsCut = 0; bool fViewEvent = false; int fViewStart = 0; int fViewEnd = 0; signed int unixtimestamp = 0; int timestamp_us = 0; int eventNr = 1; unsigned int runNr = 0; int headerLDC = 0; int headerEquipment = 0; int header = 0; bool inEquipmentHeader = 0; int fecID = 0; int apvID = 0; int minFECID = 9999; int maxFECID = 0; int minAPVID = 9999; int maxAPVID = 0; int idata = 0; bool inEvent = false; bool startDataFlag = false; int wordCountEquipmentHeader = 0; int wordCountEvent = 0; int packetSize = 0; int numTimeBins = 0; int chNo = 0; float maxADC = 0; int timeBinMaxADC = 0; int apvheaderlevel = 1300; int theTimeBin = 0; unsigned int fRawData16bits[2]; std::vector<float> timeBinADCs; std::vector<float> commonModeOffset; std::vector<float> timeBinOffset; };
[ "dorothea.pfeiffer@esss.se" ]
dorothea.pfeiffer@esss.se
17b8c90269dcad5e406dfe54b9359abb145fbd58
90debb04819d76338c4ce84a96320170c3ef66c2
/src/main.cpp
f3b880deabd6d6a859b8194960b616bc66aa3b83
[]
no_license
dmitrygerasimuk/sfml-tutorial
ea065b5dac53f2528464d851e70d8d2da0d16233
ebd8b0334a799f132e09945000152bc0e49fac25
refs/heads/master
2020-03-14T17:26:31.061404
2018-05-01T17:58:25
2018-05-01T17:58:25
131,719,673
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
8,556
cpp
#include <SFML/Graphics.hpp> #include <SFML/Audio.hpp> using namespace sf; float offsetX=0, offsetY=0; const int H = 17; const int W = 164; String TileMap[H] = { "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "0 0", "0 w 0", "0 w w w 0", "0 w kk 0", "0 k k k k k k 0", "0 c k kkk kkk kkkkkkw w w w wwwww 0", "0 r k k k k k 0", "0 rr k k 0", "0 rrr kk 0", "0 k kckck rrrr 0", "0 t0 rrrrr 0", "0G 00 t0 rrrrrr G 0", "0 d g d 00 00 rrrrrrr 0", "PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP", "PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP", "PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP", }; class PLAYER { public: float dx,dy; FloatRect rect; bool onGround; Sprite sprite; float currentFrame; PLAYER(Texture &image) { sprite.setTexture(image); rect = FloatRect(100,180,16,16); dx=dy=0.1; currentFrame = 0; } void update(float time) { rect.left += dx * time; Collision(0); if (!onGround) dy=dy+0.0005*time; rect.top += dy*time; onGround=false; Collision(1); currentFrame += time * 0.005; if (currentFrame > 3) currentFrame -= 3; if (dx>0) sprite.setTextureRect(IntRect(112+31*int(currentFrame),144,16,16)); if (dx<0) sprite.setTextureRect(IntRect(112+31*int(currentFrame)+16,144,-16,16)); sprite.setPosition(rect.left - offsetX, rect.top - offsetY); dx=0; } void Collision(int num) { for (int i = rect.top/16 ; i<(rect.top+rect.height)/16; i++) for (int j = rect.left/16; j<(rect.left+rect.width)/16; j++) { if ((TileMap[i][j]=='P') || (TileMap[i][j]=='k') || (TileMap[i][j]=='0') || (TileMap[i][j]=='r') || (TileMap[i][j]=='t')) { if (dy>0 && num==1) { rect.top = i*16 - rect.height; dy=0; onGround=true; } if (dy<0 && num==1) { rect.top = i*16 + 16; dy=0;} if (dx>0 && num==0) { rect.left = j*16 - rect.width; } if (dx<0 && num==0) { rect.left = j*16 +16;} } if (TileMap[i][j]=='c') { // TileMap[i][j]=' '; } } } }; class ENEMY { public: float dx,dy; FloatRect rect; Sprite sprite; float currentFrame; bool life; void set(Texture &image, int x, int y) { sprite.setTexture(image); rect = FloatRect(x,y,16,16); dx=0.05; currentFrame = 0; life=true; } void update(float time) { rect.left += dx * time; Collision(); currentFrame += time * 0.005; if (currentFrame > 2) currentFrame -= 2; sprite.setTextureRect(IntRect(18*int(currentFrame), 0, 16,16)); if (!life) sprite.setTextureRect(IntRect(58, 0, 16,16)); sprite.setPosition(rect.left - offsetX, rect.top - offsetY); } void Collision() { for (int i = rect.top/16 ; i<(rect.top+rect.height)/16; i++) for (int j = rect.left/16; j<(rect.left+rect.width)/16; j++) if ((TileMap[i][j]=='P') || (TileMap[i][j]=='0')) { if (dx>0) { rect.left = j*16 - rect.width; dx*=-1; } else if (dx<0) { rect.left = j*16 + 16; dx*=-1; } } } }; int main() { RenderWindow window(VideoMode(400, 250), "SFML works!"); Texture tileSet; tileSet.loadFromFile("Mario_Tileset.png"); PLAYER Mario(tileSet); ENEMY enemy; enemy.set(tileSet,48*16,13*16); Sprite tile(tileSet); SoundBuffer buffer; buffer.loadFromFile("Jump.ogg"); Sound sound(buffer); Music music; music.openFromFile("Mario_Theme.ogg"); music.play(); Clock clock; while (window.isOpen()) { float time = clock.getElapsedTime().asMicroseconds(); clock.restart(); time = time/500; // здесь регулируем скорость игры if (time > 20) time = 20; Event event; while (window.pollEvent(event)) { if (event.type == Event::Closed) window.close(); } if (Keyboard::isKeyPressed(Keyboard::Left)) Mario.dx=-0.1; if (Keyboard::isKeyPressed(Keyboard::Right)) Mario.dx=0.1; if (Keyboard::isKeyPressed(Keyboard::Up)) if (Mario.onGround) { Mario.dy=-0.27; Mario.onGround=false; sound.play();} Mario.update(time); enemy.update(time); if (Mario.rect.intersects( enemy.rect ) ) { if (enemy.life) { if (Mario.dy>0) { enemy.dx=0; Mario.dy=-0.2; enemy.life=false;} else Mario.sprite.setColor(Color::Red); } } if (Mario.rect.left>200) offsetX = Mario.rect.left-200; //смещение window.clear(Color(107,140,255)); for (int i=0; i<H; i++) for (int j=0; j<W; j++) { if (TileMap[i][j]=='P') tile.setTextureRect( IntRect(143-16*3,112,16,16) ); if (TileMap[i][j]=='k') tile.setTextureRect( IntRect(143,112,16,16) ); if (TileMap[i][j]=='c') tile.setTextureRect( IntRect(143-16,112,16,16) ); if (TileMap[i][j]=='t') tile.setTextureRect( IntRect(0,47,32,95-47) ); if (TileMap[i][j]=='g') tile.setTextureRect( IntRect(0,16*9-5,3*16,16*2+5) ); if (TileMap[i][j]=='G') tile.setTextureRect( IntRect(145,222,222-145,255-222) ); if (TileMap[i][j]=='d') tile.setTextureRect( IntRect(0,106,74,127-106) ); if (TileMap[i][j]=='w') tile.setTextureRect( IntRect(99,224,140-99,255-224) ); if (TileMap[i][j]=='r') tile.setTextureRect( IntRect(143-32,112,16,16) ); if ((TileMap[i][j]==' ') || (TileMap[i][j]=='0')) continue; tile.setPosition(j*16-offsetX,i*16 - offsetY) ; window.draw(tile); } window.draw(Mario.sprite); window.draw(enemy.sprite); window.display(); } return 0; }
[ "hello@dmitrygerasimuk.com" ]
hello@dmitrygerasimuk.com
447a3bb5584beb751db7557d56f83b2fc12ff173
653d3a845c139b85c86fb91764a4a357ea460aba
/3rdparty/maratis/Maratis/Common/MLoaders/MFreetypeLoader.cpp
0e2b14228544ee19389aa219c0756e0bfff3e4af
[]
no_license
mconbere/Newt
80891625bf183925c072e18068769ab59eeec485
2f7d1608c65c50f72ccb814f6958a6f028290981
refs/heads/master
2020-12-25T19:04:07.090011
2012-02-05T07:19:32
2012-02-05T07:19:32
2,451,939
2
0
null
null
null
null
UTF-8
C++
false
false
5,397
cpp
///////////////////////////////////////////////////////////////////////////////////////////////////////// // MCore // MFreetypeLoader.cpp // // Freetype font loader ///////////////////////////////////////////////////////////////////////////////////////////////////////// //======================================================================== // Copyright (c) 2003-2011 Anael Seghezzi <www.maratis3d.com> // // This software is provided 'as-is', without any express or implied // warranty. In no event will the authors be held liable for any damages // arising from the use of this software. // // Permission is granted to anyone to use this software for any purpose, // including commercial applications, and to alter it and redistribute it // freely, subject to the following restrictions: // // 1. The origin of this software must not be misrepresented; you must not // claim that you wrote the original software. If you use this software // in a product, an acknowledgment in the product documentation would // be appreciated but is not required. // // 2. Altered source versions must be plainly marked as such, and must not // be misrepresented as being the original software. // // 3. This notice may not be removed or altered from any source // distribution. // //======================================================================== #include <ft2build.h> #include FT_FREETYPE_H #include <MEngine.h> #include "MFreetypeLoader.h" void drawBitmap(MImage * image, FT_Bitmap * bitmap, int left, int top) { int x, y; int width = bitmap->width; int height = bitmap->rows; int imgWidth = (int)image->getWidth(); int imgHeight = (int)image->getHeight(); unsigned char * pixel = bitmap->buffer; for(y=top; y<top+height; y++) { for(x=left; x<left+width; x++) { if(y >= 0 && y < imgHeight && x >= 0 && x < imgWidth) { unsigned char color[4] = {255, 255, 255, (*pixel)}; image->writePixel((unsigned int)x, (unsigned int)y, color); } pixel++; } } } bool M_loadFont(const char * filename, void * data) { int pen_x, pen_y; unsigned int n; unsigned int space = 2; unsigned int size = 32; unsigned int width = 512; unsigned int height = 0; MImage image; FT_GlyphSlot slot; FT_Library library; FT_Face face; // init FT_Error error = FT_Init_FreeType(&library); if(error){ printf("ERROR Load Font : unable to init FreeType\n"); return false; } // read font error = FT_New_Face(library, filename, 0, &face); if(error){ //printf("ERROR Load Font : unable to read font %s\n", filename); return false; } // set font size error = FT_Set_Pixel_Sizes(face, 0, size); if(error){ printf("ERROR Load Font : unable to size font\n"); return false; } // parse characters slot = face->glyph; pen_x = space; pen_y = space; for(n = 0; n<256; n++) { // load glyph image into the slot (erase previous one) error = FT_Load_Char(face, n, FT_LOAD_RENDER); if(error) continue; if(FT_Get_Char_Index(face, n) == 0) continue; if((pen_x + slot->bitmap.width) > 512){ pen_x = 0; pen_y += size + space; height += size + space; } // increment pen position pen_x += slot->bitmap.width + space; } if(height == 0){ printf("ERROR Load Font : unable to create font texture\n"); return false; } // create image height = getNextPowerOfTwo(height); image.create(M_UBYTE, width, height, 4); unsigned char color[4] = {255, 255, 255, 0}; image.clear(color); // init font MFont * font = (MFont *)data; font->setFontSize(size); font->setTextureWidth(width); font->setTextureHeight(height); // create font texture slot = face->glyph; pen_x = space; pen_y = space; for(n = 0; n<256; n++) { // load glyph image into the slot (erase previous one) error = FT_Load_Char(face, n, FT_LOAD_RENDER); if(error) continue; if(FT_Get_Char_Index(face, n) == 0) continue; if((pen_x + slot->bitmap.width) > (int)image.getWidth()){ pen_x = 0; pen_y += size + space; } // get character properties float xAdvance = (slot->advance.x >> 6) / ((float)size); MVector2 offset = MVector2((float)slot->bitmap_left, - (float)slot->bitmap_top) / ((float)size); MVector2 pos = MVector2((float)(pen_x-1) / (float)width, (float)(pen_y-1) / (float)height); MVector2 scale = MVector2((float)(slot->bitmap.width+2) / (float)width, (float)(slot->bitmap.rows+2) / (float)height); // set character font->setCharacter(n, MCharacter(xAdvance, offset, pos, scale)); // draw to image drawBitmap(&image, &slot->bitmap, pen_x, pen_y); // increment pen position pen_x += slot->bitmap.width + space; } // send texture MEngine * engine = MEngine().getInstance(); MRenderingContext * render = engine->getRenderingContext(); // gen texture id unsigned int textureId = font->getTextureId(); if(textureId == 0) { render->createTexture(&textureId); font->setTextureId(textureId); } // send texture image render->bindTexture(textureId); render->setTextureUWrapMode(M_WRAP_REPEAT); render->setTextureVWrapMode(M_WRAP_REPEAT); render->sendTextureImage(&image, 0, 1, 0); // finish FT_Done_FreeType(library); return true; }
[ "mconbere@gmail.com" ]
mconbere@gmail.com
adadf0ece2a617ffeca1b93a3470761717327572
4efe82a9f41fd351f50d3726d806db61943fd414
/components/exo/client_controlled_shell_surface.cc
ac7ad63200569b988a07cc645a1633f5769839af
[ "BSD-3-Clause" ]
permissive
MrKou47/chromium
b436b49b499c255820512c28ea3c31dbe39cda94
377fc2f272f4670567be8dd7ba9ec6fd80926834
refs/heads/master
2023-03-13T00:10:34.763666
2018-04-13T10:09:56
2018-04-13T10:09:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
37,112
cc
// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/exo/client_controlled_shell_surface.h" #include "ash/frame/caption_buttons/caption_button_model.h" #include "ash/frame/custom_frame_view_ash.h" #include "ash/frame/wide_frame_view.h" #include "ash/public/cpp/immersive/immersive_fullscreen_controller.h" #include "ash/public/cpp/shell_window_ids.h" #include "ash/public/cpp/window_properties.h" #include "ash/public/cpp/window_state_type.h" #include "ash/public/interfaces/window_pin_type.mojom.h" #include "ash/shell.h" #include "ash/wm/client_controlled_state.h" #include "ash/wm/drag_details.h" #include "ash/wm/drag_window_resizer.h" #include "ash/wm/toplevel_window_event_handler.h" #include "ash/wm/window_positioning_utils.h" #include "ash/wm/window_properties.h" #include "ash/wm/window_resizer.h" #include "ash/wm/window_state.h" #include "ash/wm/window_state_delegate.h" #include "ash/wm/window_util.h" #include "base/logging.h" #include "base/strings/utf_string_conversions.h" #include "base/trace_event/trace_event.h" #include "base/trace_event/trace_event_argument.h" #include "components/exo/surface.h" #include "components/exo/wm_helper.h" #include "ui/aura/client/aura_constants.h" #include "ui/aura/window.h" #include "ui/aura/window_event_dispatcher.h" #include "ui/aura/window_tree_host.h" #include "ui/base/class_property.h" #include "ui/compositor/compositor_lock.h" #include "ui/display/display.h" #include "ui/display/screen.h" #include "ui/views/widget/widget.h" #include "ui/wm/core/coordinate_conversion.h" #include "ui/wm/core/window_util.h" namespace exo { namespace { ClientControlledShellSurface::DelegateFactoryCallback g_factory_callback; // Maximum amount of time to wait for contents that match the display's // orientation in tablet mode. // TODO(oshima): Looks like android is generating unnecessary frames. // Fix it on Android side and reduce the timeout. constexpr int kOrientationLockTimeoutMs = 2500; // Minimal WindowResizer that unlike DefaultWindowResizer does not handle // dragging and resizing windows. class CustomWindowResizer : public ash::WindowResizer { public: explicit CustomWindowResizer(ash::wm::WindowState* window_state) : WindowResizer(window_state) {} // Overridden from ash::WindowResizer: void Drag(const gfx::Point& location, int event_flags) override {} void CompleteDrag() override {} void RevertDrag() override {} private: DISALLOW_COPY_AND_ASSIGN(CustomWindowResizer); }; Orientation SizeToOrientation(const gfx::Size& size) { DCHECK_NE(size.width(), size.height()); return size.width() > size.height() ? Orientation::LANDSCAPE : Orientation::PORTRAIT; } // A ClientControlledStateDelegate that sends the state/bounds // change request to exo client. class ClientControlledStateDelegate : public ash::wm::ClientControlledState::Delegate { public: explicit ClientControlledStateDelegate( ClientControlledShellSurface* shell_surface) : shell_surface_(shell_surface) {} ~ClientControlledStateDelegate() override {} // Overridden from ash::wm::ClientControlledState::Delegate: void HandleWindowStateRequest( ash::wm::WindowState* window_state, ash::mojom::WindowStateType next_state) override { shell_surface_->OnWindowStateChangeEvent(window_state->GetStateType(), next_state); } void HandleBoundsRequest(ash::wm::WindowState* window_state, ash::mojom::WindowStateType requested_state, const gfx::Rect& bounds) override { gfx::Rect bounds_in_screen(bounds); ::wm::ConvertRectToScreen(window_state->window()->GetRootWindow(), &bounds_in_screen); int64_t display_id = display::Screen::GetScreen() ->GetDisplayNearestWindow(window_state->window()) .id(); shell_surface_->OnBoundsChangeEvent( window_state->GetStateType(), requested_state, display_id, bounds_in_screen, window_state->drag_details() ? window_state->drag_details()->bounds_change : 0); } private: ClientControlledShellSurface* shell_surface_; DISALLOW_COPY_AND_ASSIGN(ClientControlledStateDelegate); }; // A WindowStateDelegate that implements ToggleFullscreen behavior for // client controlled window. class ClientControlledWindowStateDelegate : public ash::wm::WindowStateDelegate { public: explicit ClientControlledWindowStateDelegate( ClientControlledShellSurface* shell_surface, ash::wm::ClientControlledState::Delegate* delegate) : shell_surface_(shell_surface), delegate_(delegate) {} ~ClientControlledWindowStateDelegate() override {} // Overridden from ash::wm::WindowStateDelegate: bool ToggleFullscreen(ash::wm::WindowState* window_state) override { ash::mojom::WindowStateType next_state; aura::Window* window = window_state->window(); switch (window_state->GetStateType()) { case ash::mojom::WindowStateType::DEFAULT: case ash::mojom::WindowStateType::NORMAL: window->SetProperty(aura::client::kPreFullscreenShowStateKey, ui::SHOW_STATE_NORMAL); next_state = ash::mojom::WindowStateType::FULLSCREEN; break; case ash::mojom::WindowStateType::MAXIMIZED: window->SetProperty(aura::client::kPreFullscreenShowStateKey, ui::SHOW_STATE_MAXIMIZED); next_state = ash::mojom::WindowStateType::FULLSCREEN; break; case ash::mojom::WindowStateType::FULLSCREEN: switch (window->GetProperty(aura::client::kPreFullscreenShowStateKey)) { case ui::SHOW_STATE_DEFAULT: case ui::SHOW_STATE_NORMAL: next_state = ash::mojom::WindowStateType::NORMAL; break; case ui::SHOW_STATE_MAXIMIZED: next_state = ash::mojom::WindowStateType::MAXIMIZED; break; case ui::SHOW_STATE_MINIMIZED: next_state = ash::mojom::WindowStateType::MINIMIZED; break; case ui::SHOW_STATE_FULLSCREEN: case ui::SHOW_STATE_INACTIVE: case ui::SHOW_STATE_END: NOTREACHED() << " unknown state :" << window->GetProperty( aura::client::kPreFullscreenShowStateKey); return false; } break; case ash::mojom::WindowStateType::MINIMIZED: { ui::WindowShowState pre_full_state = window->GetProperty(aura::client::kPreMinimizedShowStateKey); if (pre_full_state != ui::SHOW_STATE_FULLSCREEN) { window->SetProperty(aura::client::kPreFullscreenShowStateKey, pre_full_state); } next_state = ash::mojom::WindowStateType::FULLSCREEN; break; } default: // TODO(oshima|xdai): Handle SNAP state. return false; } delegate_->HandleWindowStateRequest(window_state, next_state); return true; } void OnDragStarted(int component) override { shell_surface_->OnDragStarted(component); } void OnDragFinished(bool canceled, const gfx::Point& location) override { shell_surface_->OnDragFinished(canceled, location); } private: ClientControlledShellSurface* shell_surface_; ash::wm::ClientControlledState::Delegate* delegate_; DISALLOW_COPY_AND_ASSIGN(ClientControlledWindowStateDelegate); }; bool IsPinned(const ash::wm::WindowState* window_state) { return window_state->IsPinned() || window_state->IsTrustedPinned(); } class CaptionButtonModel : public ash::CaptionButtonModel { public: CaptionButtonModel(uint32_t visible_button_mask, uint32_t enabled_button_mask) : visible_button_mask_(visible_button_mask), enabled_button_mask_(enabled_button_mask) {} // Overridden from ash::CaptionButtonModel: bool IsVisible(ash::CaptionButtonIcon icon) const override { return visible_button_mask_ & (1 << icon); } bool IsEnabled(ash::CaptionButtonIcon icon) const override { return enabled_button_mask_ & (1 << icon); } bool InZoomMode() const override { return visible_button_mask_ & (1 << ash::CAPTION_BUTTON_ICON_ZOOM); } private: uint32_t visible_button_mask_; uint32_t enabled_button_mask_; DISALLOW_COPY_AND_ASSIGN(CaptionButtonModel); }; } // namespace class ClientControlledShellSurface::ScopedSetBoundsLocally { public: ScopedSetBoundsLocally(ClientControlledShellSurface* shell_surface) : state_(shell_surface->client_controlled_state_) { state_->set_bounds_locally(true); } ~ScopedSetBoundsLocally() { state_->set_bounds_locally(false); } private: ash::wm::ClientControlledState* const state_; DISALLOW_COPY_AND_ASSIGN(ScopedSetBoundsLocally); }; class ClientControlledShellSurface::ScopedLockedToRoot { public: ScopedLockedToRoot(views::Widget* widget) : window_(widget->GetNativeWindow()) { window_->SetProperty(ash::kLockedToRootKey, true); } ~ScopedLockedToRoot() { window_->ClearProperty(ash::kLockedToRootKey); } private: aura::Window* const window_; DISALLOW_COPY_AND_ASSIGN(ScopedLockedToRoot); }; //////////////////////////////////////////////////////////////////////////////// // ClientControlledShellSurface, public: ClientControlledShellSurface::ClientControlledShellSurface(Surface* surface, bool can_minimize, int container) : ShellSurfaceBase(surface, gfx::Point(), true, can_minimize, container), primary_display_id_( display::Screen::GetScreen()->GetPrimaryDisplay().id()) { WMHelper::GetInstance()->AddDisplayConfigurationObserver(this); display::Screen::GetScreen()->AddObserver(this); } ClientControlledShellSurface::~ClientControlledShellSurface() { if (wide_frame_) wide_frame_->Close(); WMHelper::GetInstance()->RemoveDisplayConfigurationObserver(this); display::Screen::GetScreen()->RemoveObserver(this); } void ClientControlledShellSurface::SetMaximized() { TRACE_EVENT0("exo", "ClientControlledShellSurface::SetMaximized"); pending_window_state_ = ash::mojom::WindowStateType::MAXIMIZED; } void ClientControlledShellSurface::SetMinimized() { TRACE_EVENT0("exo", "ClientControlledShellSurface::SetMinimized"); pending_window_state_ = ash::mojom::WindowStateType::MINIMIZED; } void ClientControlledShellSurface::SetRestored() { TRACE_EVENT0("exo", "ClientControlledShellSurface::SetRestored"); pending_window_state_ = ash::mojom::WindowStateType::NORMAL; } void ClientControlledShellSurface::SetFullscreen(bool fullscreen) { TRACE_EVENT1("exo", "ClientControlledShellSurface::SetFullscreen", "fullscreen", fullscreen); pending_window_state_ = fullscreen ? ash::mojom::WindowStateType::FULLSCREEN : ash::mojom::WindowStateType::NORMAL; } void ClientControlledShellSurface::SetSnappedToLeft() { TRACE_EVENT0("exo", "ClientControlledShellSurface::SetSnappedToLeft"); pending_window_state_ = ash::mojom::WindowStateType::LEFT_SNAPPED; } void ClientControlledShellSurface::SetSnappedToRight() { TRACE_EVENT0("exo", "ClientControlledShellSurface::SetSnappedToRight"); pending_window_state_ = ash::mojom::WindowStateType::RIGHT_SNAPPED; } void ClientControlledShellSurface::SetPinned(ash::mojom::WindowPinType type) { TRACE_EVENT1("exo", "ClientControlledShellSurface::SetPinned", "type", static_cast<int>(type)); if (!widget_) CreateShellSurfaceWidget(ui::SHOW_STATE_NORMAL); // Note: This will ask client to configure its surface even if pinned // state doesn't change. ScopedConfigure scoped_configure(this, true); widget_->GetNativeWindow()->SetProperty(ash::kWindowPinTypeKey, type); } void ClientControlledShellSurface::SetSystemUiVisibility(bool autohide) { TRACE_EVENT1("exo", "ClientControlledShellSurface::SetSystemUiVisibility", "autohide", autohide); if (!widget_) CreateShellSurfaceWidget(ui::SHOW_STATE_NORMAL); ash::wm::SetAutoHideShelf(widget_->GetNativeWindow(), autohide); } void ClientControlledShellSurface::SetAlwaysOnTop(bool always_on_top) { TRACE_EVENT1("exo", "ClientControlledShellSurface::SetAlwaysOnTop", "always_on_top", always_on_top); if (!widget_) CreateShellSurfaceWidget(ui::SHOW_STATE_NORMAL); widget_->GetNativeWindow()->SetProperty(aura::client::kAlwaysOnTopKey, always_on_top); } void ClientControlledShellSurface::SetOrientation(Orientation orientation) { TRACE_EVENT1("exo", "ClientControlledShellSurface::SetOrientation", "orientation", orientation == Orientation::PORTRAIT ? "portrait" : "landscape"); pending_orientation_ = orientation; } void ClientControlledShellSurface::SetShadowBounds(const gfx::Rect& bounds) { TRACE_EVENT1("exo", "ClientControlledShellSurface::SetShadowBounds", "bounds", bounds.ToString()); auto shadow_bounds = bounds.IsEmpty() ? base::nullopt : base::make_optional(bounds); if (shadow_bounds_ != shadow_bounds) { shadow_bounds_ = shadow_bounds; shadow_bounds_changed_ = true; } } void ClientControlledShellSurface::SetScale(double scale) { TRACE_EVENT1("exo", "ClientControlledShellSurface::SetScale", "scale", scale); if (scale <= 0.0) { DLOG(WARNING) << "Surface scale must be greater than 0"; return; } pending_scale_ = scale; } void ClientControlledShellSurface::SetTopInset(int height) { TRACE_EVENT1("exo", "ClientControlledShellSurface::SetTopInset", "height", height); pending_top_inset_height_ = height; } void ClientControlledShellSurface::SetResizeOutset(int outset) { TRACE_EVENT1("exo", "ClientControlledShellSurface::SetResizeOutset", "outset", outset); if (client_controlled_move_resize_) { if (root_surface()) root_surface()->SetInputOutset(outset); } } void ClientControlledShellSurface::OnWindowStateChangeEvent( ash::mojom::WindowStateType current_state, ash::mojom::WindowStateType next_state) { if (!state_changed_callback_.is_null()) state_changed_callback_.Run(current_state, next_state); } void ClientControlledShellSurface::StartDrag(int component, const gfx::Point& location) { TRACE_EVENT2("exo", "ClientControlledShellSurface::StartResize", "component", component, "location", location.ToString()); if (!widget_ || (client_controlled_move_resize_ && component != HTCAPTION)) return; AttemptToStartDrag(component, location); } void ClientControlledShellSurface::AttemptToStartDrag( int component, const gfx::Point& location) { aura::Window* target = widget_->GetNativeWindow(); ash::ToplevelWindowEventHandler* toplevel_handler = ash::Shell::Get()->toplevel_window_event_handler(); aura::Window* mouse_pressed_handler = target->GetHost()->dispatcher()->mouse_pressed_handler(); // Start dragging only if ... // 1) touch guesture is in progres. // 2) mouse was pressed on the target or its subsurfaces. if (toplevel_handler->gesture_target() || (mouse_pressed_handler && target->Contains(mouse_pressed_handler))) { gfx::Point point_in_root(location); wm::ConvertPointFromScreen(target->GetRootWindow(), &point_in_root); toplevel_handler->AttemptToStartDrag( target, point_in_root, component, ash::wm::WmToplevelWindowEventHandler::EndClosure()); } } void ClientControlledShellSurface::SetCanMaximize(bool can_maximize) { TRACE_EVENT1("exo", "ClientControlledShellSurface::SetCanMaximize", "can_maximzie", can_maximize); can_maximize_ = can_maximize; if (widget_) widget_->OnSizeConstraintsChanged(); } void ClientControlledShellSurface::UpdateAutoHideFrame() { if (immersive_fullscreen_controller_) { bool enabled = (frame_type_ == SurfaceFrameType::AUTOHIDE && GetWindowState()->IsMaximizedOrFullscreenOrPinned()); immersive_fullscreen_controller_->SetEnabled( ash::ImmersiveFullscreenController::WINDOW_TYPE_OTHER, enabled); } } void ClientControlledShellSurface::SetFrameButtons( uint32_t visible_button_mask, uint32_t enabled_button_mask) { if (frame_visible_button_mask_ == visible_button_mask && frame_enabled_button_mask_ == enabled_button_mask) { return; } frame_visible_button_mask_ = visible_button_mask; frame_enabled_button_mask_ = enabled_button_mask; if (widget_) UpdateCaptionButtonModel(); } void ClientControlledShellSurface::SetExtraTitle( const base::string16& extra_title) { TRACE_EVENT1("exo", "ClientControlledShellSurface::SetExtraTitle", "extra_title", base::UTF16ToUTF8(extra_title)); extra_title_ = extra_title; if (widget_) widget_->UpdateWindowTitle(); } void ClientControlledShellSurface::OnBoundsChangeEvent( ash::mojom::WindowStateType current_state, ash::mojom::WindowStateType requested_state, int64_t display_id, const gfx::Rect& window_bounds, int bounds_change) { // Do no update the bounds unless we have geometry from client. if (!geometry().IsEmpty() && !window_bounds.IsEmpty() && !bounds_changed_callback_.is_null()) { // Sends the client bounds, which matches the geometry // when frame is enabled. ash::CustomFrameViewAsh* frame_view = GetFrameView(); // The client's geometry uses fullscreen in client controlled, // (but the surface is placed under the frame), so just use // the window bounds instead for maximixed stte. gfx::Rect client_bounds = widget_->IsMaximized() ? window_bounds : frame_view->GetClientBoundsForWindowBounds(window_bounds); gfx::Size current_size = frame_view->GetBoundsForClientView().size(); bool is_resize = client_bounds.size() != current_size; bounds_changed_callback_.Run(current_state, requested_state, display_id, client_bounds, is_resize, bounds_change); } } void ClientControlledShellSurface::OnDragStarted(int component) { if (!drag_started_callback_.is_null()) drag_started_callback_.Run(component); } void ClientControlledShellSurface::OnDragFinished(bool canceled, const gfx::Point& location) { if (!drag_finished_callback_.is_null()) drag_finished_callback_.Run(location.x(), location.y(), canceled); } //////////////////////////////////////////////////////////////////////////////// // SurfaceDelegate overrides: void ClientControlledShellSurface::OnSurfaceCommit() { if (!widget_) CreateShellSurfaceWidget(ash::ToWindowShowState(pending_window_state_)); ash::wm::WindowState* window_state = GetWindowState(); if (window_state->GetStateType() != pending_window_state_) { if (!IsPinned(window_state)) { ash::wm::ClientControlledState::BoundsChangeAnimationType animation_type = ash::wm::ClientControlledState::kAnimationNone; switch (pending_window_state_) { case ash::mojom::WindowStateType::NORMAL: if (widget_->IsMaximized() || widget_->IsFullscreen()) { animation_type = ash::wm::ClientControlledState::kAnimationCrossFade; } break; case ash::mojom::WindowStateType::MAXIMIZED: case ash::mojom::WindowStateType::FULLSCREEN: animation_type = ash::wm::ClientControlledState::kAnimationCrossFade; break; default: break; } client_controlled_state_->EnterNextState( window_state, pending_window_state_, animation_type); } else { VLOG(1) << "State change was requested while it is pinned"; } } ShellSurfaceBase::OnSurfaceCommit(); UpdateFrame(); UpdateBackdrop(); if (!geometry_changed_callback_.is_null()) geometry_changed_callback_.Run(GetVisibleBounds()); // Apply new top inset height. if (pending_top_inset_height_ != top_inset_height_) { widget_->GetNativeWindow()->SetProperty(aura::client::kTopViewInset, pending_top_inset_height_); top_inset_height_ = pending_top_inset_height_; } // Update surface scale. if (pending_scale_ != scale_) { gfx::Transform transform; DCHECK_NE(pending_scale_, 0.0); transform.Scale(1.0 / pending_scale_, 1.0 / pending_scale_); host_window()->SetTransform(transform); scale_ = pending_scale_; } orientation_ = pending_orientation_; if (expected_orientation_ == orientation_) orientation_compositor_lock_.reset(); } bool ClientControlledShellSurface::IsInputEnabled(Surface* surface) const { // Client-driven dragging/resizing relies on implicit grab, which ensures that // mouse/touch events are delivered to the focused surface until release, even // if they fall outside surface bounds. However, if the client destroys the // surface with implicit grab, the drag/resize is prematurely ended. Prevent // this by delivering all input events to the root surface, which shares the // lifetime of the shell surface. // TODO(domlaskowski): Remove once the client is provided with an API to hook // into server-driven dragging/resizing. return surface == root_surface(); } void ClientControlledShellSurface::OnSetFrame(SurfaceFrameType type) { ShellSurfaceBase::OnSetFrame(type); frame_type_ = type; UpdateAutoHideFrame(); } void ClientControlledShellSurface::OnSetFrameColors(SkColor active_color, SkColor inactive_color) { ShellSurfaceBase::OnSetFrameColors(active_color, inactive_color); if (wide_frame_) { aura::Window* window = wide_frame_->GetWidget()->GetNativeWindow(); window->SetProperty(ash::kFrameActiveColorKey, active_color); window->SetProperty(ash::kFrameInactiveColorKey, inactive_color); } } //////////////////////////////////////////////////////////////////////////////// // aura::WindowObserver overrides: void ClientControlledShellSurface::OnWindowBoundsChanged( aura::Window* window, const gfx::Rect& old_bounds, const gfx::Rect& new_bounds, ui::PropertyChangeReason reason) {} void ClientControlledShellSurface::OnWindowAddedToRootWindow( aura::Window* window) { ScopedLockedToRoot scoped_locked_to_root(widget_); UpdateWidgetBounds(); } //////////////////////////////////////////////////////////////////////////////// // views::WidgetDelegate overrides: bool ClientControlledShellSurface::CanMaximize() const { return can_maximize_; } base::string16 ClientControlledShellSurface::GetWindowTitle() const { base::string16 title = ShellSurfaceBase::GetWindowTitle(); if (!extra_title_.empty()) { if (!title.empty()) title += base::UTF8ToUTF16(" "); title += extra_title_; } return title; } views::NonClientFrameView* ClientControlledShellSurface::CreateNonClientFrameView(views::Widget* widget) { ash::wm::WindowState* window_state = GetWindowState(); std::unique_ptr<ash::wm::ClientControlledState::Delegate> delegate = g_factory_callback.is_null() ? std::make_unique<ClientControlledStateDelegate>(this) : g_factory_callback.Run(); auto window_delegate = std::make_unique<ClientControlledWindowStateDelegate>( this, delegate.get()); auto state = std::make_unique<ash::wm::ClientControlledState>(std::move(delegate)); client_controlled_state_ = state.get(); window_state->SetStateObject(std::move(state)); window_state->SetDelegate(std::move(window_delegate)); ash::CustomFrameViewAsh* frame_view = static_cast<ash::CustomFrameViewAsh*>( ShellSurfaceBase::CreateNonClientFrameView(widget)); immersive_fullscreen_controller_ = std::make_unique<ash::ImmersiveFullscreenController>(); frame_view->InitImmersiveFullscreenControllerForView( immersive_fullscreen_controller_.get()); return frame_view; } void ClientControlledShellSurface::SaveWindowPlacement( const gfx::Rect& bounds, ui::WindowShowState show_state) {} bool ClientControlledShellSurface::GetSavedWindowPlacement( const views::Widget* widget, gfx::Rect* bounds, ui::WindowShowState* show_state) const { return false; } //////////////////////////////////////////////////////////////////////////////// // views::View overrides: gfx::Size ClientControlledShellSurface::GetMaximumSize() const { // On ChromeOS, a window with non empty maximum size is non-maximizable, // even if CanMaximize() returns true. ClientControlledShellSurface // sololy depends on |can_maximize_| to determine if it is maximizable, // so just return empty size because the maximum size in // ClientControlledShellSurface is used only to tell the resizability, // but not real maximum size. return gfx::Size(); } //////////////////////////////////////////////////////////////////////////////// // display::DisplayObserver overrides: void ClientControlledShellSurface::OnDisplayMetricsChanged( const display::Display& new_display, uint32_t changed_metrics) { if (!widget_ || !widget_->IsActive() || !WMHelper::GetInstance()->IsTabletModeWindowManagerEnabled()) { return; } const display::Screen* screen = display::Screen::GetScreen(); display::Display current_display = screen->GetDisplayNearestWindow(widget_->GetNativeWindow()); if (current_display.id() != new_display.id() || !(changed_metrics & display::DisplayObserver::DISPLAY_METRIC_ROTATION)) { return; } Orientation target_orientation = SizeToOrientation(new_display.size()); if (orientation_ == target_orientation) return; expected_orientation_ = target_orientation; EnsureCompositorIsLockedForOrientationChange(); } //////////////////////////////////////////////////////////////////////////////// // ash::WindowTreeHostManager::Observer overrides: void ClientControlledShellSurface::OnDisplayConfigurationChanged() { const display::Screen* screen = display::Screen::GetScreen(); int64_t primary_display_id = screen->GetPrimaryDisplay().id(); if (primary_display_id == primary_display_id_) return; display::Display old_primary_display; if (screen->GetDisplayWithDisplayId(primary_display_id_, &old_primary_display)) { // Give the client a chance to adjust window positions before switching to // the new coordinate system. Retain the old origin by reverting the origin // delta until the next configure is acknowledged. gfx::Vector2d delta = gfx::Point() - old_primary_display.bounds().origin(); origin_offset_ -= delta; pending_origin_offset_accumulator_ += delta; if (widget_) { UpdateWidgetBounds(); UpdateShadow(); } Configure(); } primary_display_id_ = primary_display_id; } //////////////////////////////////////////////////////////////////////////////// // ui::CompositorLockClient overrides: void ClientControlledShellSurface::CompositorLockTimedOut() { orientation_compositor_lock_.reset(); } //////////////////////////////////////////////////////////////////////////////// // ShellSurface overrides: void ClientControlledShellSurface::SetWidgetBounds(const gfx::Rect& bounds) { if ((!client_controlled_move_resize_ && !GetWindowState()->is_dragged()) || (client_controlled_move_resize_ && (!resizer_ || resizer_->details().window_component != HTCAPTION))) { { // Calculate a minimum window visibility required bounds. aura::Window* window = widget_->GetNativeWindow(); gfx::Rect rect(bounds); wm::ConvertRectFromScreen(window->GetRootWindow(), &rect); ash::wm::ClientControlledState::AdjustBoundsForMinimumWindowVisibility( window, &rect); wm::ConvertRectToScreen(window->GetRootWindow(), &rect); if (bounds != rect) { // Request the client a new bounds to ensure that it has enough visible // area. window->SetBounds(rect); } else { ScopedSetBoundsLocally scoped_set_bounds(this); widget_->SetBounds(bounds); } } UpdateSurfaceBounds(); return; } // TODO(domlaskowski): Synchronize window state transitions with the client, // and abort client-side dragging on transition to fullscreen. // See crbug.com/699746. DLOG_IF(ERROR, widget_->GetWindowBoundsInScreen().size() != bounds.size()) << "Window size changed during client-driven drag"; // Convert from screen to display coordinates. gfx::Point origin = bounds.origin(); wm::ConvertPointFromScreen(widget_->GetNativeWindow()->parent(), &origin); // Move the window relative to the current display. { ScopedSetBoundsLocally scoped_set_bounds(this); widget_->GetNativeWindow()->SetBounds(gfx::Rect(origin, bounds.size())); } UpdateSurfaceBounds(); // Render phantom windows when beyond the current display. if (resizer_) resizer_->Drag(GetMouseLocation(), 0); } gfx::Rect ClientControlledShellSurface::GetShadowBounds() const { gfx::Rect shadow_bounds = ShellSurfaceBase::GetShadowBounds(); const ash::CustomFrameViewAsh* frame_view = GetFrameView(); if (frame_view->visible()) { // The client controlled geometry is only for the client // area. When the chrome side frame is enabled, the shadow height // has to include the height of the frame, and the total height is // equals to the window height computed by // |GetWindowBoundsForClientBounds|. shadow_bounds.set_size( frame_view->GetWindowBoundsForClientBounds(shadow_bounds).size()); } if (geometry_changed_callback_.is_null()) { aura::Window* window = widget_->GetNativeWindow(); // Convert from screen to display coordinates. shadow_bounds -= origin_offset_; wm::ConvertRectFromScreen(window->parent(), &shadow_bounds); // Convert from display to window coordinates. shadow_bounds -= window->bounds().OffsetFromOrigin(); } return shadow_bounds; } void ClientControlledShellSurface::InitializeWindowState( ash::wm::WindowState* window_state) { // Allow the client to request bounds that do not fill the entire work area // when maximized, or the entire display when fullscreen. window_state->set_allow_set_bounds_direct(true); window_state->set_ignore_keyboard_bounds_change(true); if (container_ == ash::kShellWindowId_SystemModalContainer) DisableMovement(); ash::CustomFrameViewAsh* frame_view = GetFrameView(); frame_view->SetCaptionButtonModel(std::make_unique<CaptionButtonModel>( frame_visible_button_mask_, frame_enabled_button_mask_)); UpdateAutoHideFrame(); } float ClientControlledShellSurface::GetScale() const { return scale_; } aura::Window* ClientControlledShellSurface::GetDragWindow() { // Set capture on the root surface rather than the focus surface, because // the client may destroy the latter during dragging/resizing. return root_surface() ? root_surface()->window() : nullptr; } std::unique_ptr<ash::WindowResizer> ClientControlledShellSurface::CreateWindowResizer(aura::Window* window, int component) { ash::wm::WindowState* window_state = GetWindowState(); DCHECK(!window_state->drag_details()); window_state->CreateDragDetails(GetMouseLocation(), component, wm::WINDOW_MOVE_SOURCE_MOUSE); std::unique_ptr<ash::WindowResizer> resizer = std::make_unique<CustomWindowResizer>(window_state); if (component == HTCAPTION) { // Chained with a CustomWindowResizer, DragWindowResizer does not handle // dragging. It only renders phantom windows and moves the window to the // target root window when dragging ends. resizer.reset( ash::DragWindowResizer::Create(resizer.release(), window_state)); } return resizer; } bool ClientControlledShellSurface::OnMouseDragged(const ui::MouseEvent&) { // TODO(domlaskowski): When VKEY_ESCAPE is pressed during dragging, the client // destroys the window, but should instead revert the drag to be consistent // with ShellSurface::OnKeyEvent. See crbug.com/699746. return false; } gfx::Rect ClientControlledShellSurface::GetWidgetBounds() const { const ash::CustomFrameViewAsh* frame_view = GetFrameView(); if (frame_view->visible()) { // The client's geometry uses entire display area in client // controlled in maximized, and the surface is placed under the // frame. Just use the visible bounds (geometry) for the widget // bounds. if (widget_->IsMaximized()) return GetVisibleBounds(); else return frame_view->GetWindowBoundsForClientBounds(GetVisibleBounds()); } else { gfx::Rect bounds(GetVisibleBounds()); bounds.Offset(-origin_offset_.x(), -origin_offset_.y()); return bounds; } } gfx::Point ClientControlledShellSurface::GetSurfaceOrigin() const { DCHECK(resize_component_ == HTCAPTION); if (!geometry_changed_callback_.is_null()) return gfx::Point(); // TODO(oshima): geometry_changed_callback_ must be always set by now, so // this is not necessary any more. Remove this. return gfx::Point() - (GetVisibleBounds().origin() - origin_offset_).OffsetFromOrigin(); } //////////////////////////////////////////////////////////////////////////////// // ClientControlledShellSurface, private: void ClientControlledShellSurface::UpdateFrame() { if (!widget_ || !GetFrameView()->visible()) return; gfx::Rect work_area = display::Screen::GetScreen() ->GetDisplayNearestWindow(widget_->GetNativeWindow()) .work_area(); ash::wm::WindowState* window_state = GetWindowState(); if (window_state->IsMaximizedOrFullscreenOrPinned() && work_area.width() != geometry().width()) { if (!wide_frame_) { wide_frame_ = ash::WideFrameView::Create(widget_); immersive_fullscreen_controller_->SetEnabled( ash::ImmersiveFullscreenController::WINDOW_TYPE_OTHER, false); wide_frame_->Init(immersive_fullscreen_controller_.get()); wide_frame_->Show(); UpdateCaptionButtonModel(); } } else { if (wide_frame_) { wide_frame_->Close(); wide_frame_ = nullptr; immersive_fullscreen_controller_->SetEnabled( ash::ImmersiveFullscreenController::WINDOW_TYPE_OTHER, false); GetFrameView()->InitImmersiveFullscreenControllerForView( immersive_fullscreen_controller_.get()); UpdateCaptionButtonModel(); } } // The autohide should be applied when the window state is in // maximzied, fullscreen or pinned. Update the auto hide state // inside commit. UpdateAutoHideFrame(); } void ClientControlledShellSurface::UpdateCaptionButtonModel() { auto model = std::make_unique<CaptionButtonModel>(frame_visible_button_mask_, frame_enabled_button_mask_); if (wide_frame_) wide_frame_->SetCaptionButtonModel(std::move(model)); else GetFrameView()->SetCaptionButtonModel(std::move(model)); } void ClientControlledShellSurface::UpdateBackdrop() { aura::Window* window = widget_->GetNativeWindow(); const display::Display display = display::Screen::GetScreen()->GetDisplayNearestWindow(window); bool enable_backdrop = (widget_->IsFullscreen() || widget_->IsMaximized()) && !widget_->GetWindowBoundsInScreen().Contains(display.work_area()); ash::BackdropWindowMode target_backdrop_mode = enable_backdrop ? ash::BackdropWindowMode::kEnabled : ash::BackdropWindowMode::kAuto; if (window->GetProperty(ash::kBackdropWindowMode) != target_backdrop_mode) window->SetProperty(ash::kBackdropWindowMode, target_backdrop_mode); } void ClientControlledShellSurface:: EnsureCompositorIsLockedForOrientationChange() { if (!orientation_compositor_lock_) { ui::Compositor* compositor = widget_->GetNativeWindow()->layer()->GetCompositor(); orientation_compositor_lock_ = compositor->GetCompositorLock( this, base::TimeDelta::FromMilliseconds(kOrientationLockTimeoutMs)); } } ash::wm::WindowState* ClientControlledShellSurface::GetWindowState() { return ash::wm::GetWindowState(widget_->GetNativeWindow()); } ash::CustomFrameViewAsh* ClientControlledShellSurface::GetFrameView() { return static_cast<ash::CustomFrameViewAsh*>( widget_->non_client_view()->frame_view()); } const ash::CustomFrameViewAsh* ClientControlledShellSurface::GetFrameView() const { return static_cast<const ash::CustomFrameViewAsh*>( widget_->non_client_view()->frame_view()); } // static void ClientControlledShellSurface:: SetClientControlledStateDelegateFactoryForTest( const DelegateFactoryCallback& callback) { g_factory_callback = callback; } } // namespace exo
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
d849fdc4787c137afb10cc66b1455b87164e98aa
cae60b0fbbd10ccfb50814c88da94bae80253942
/l4d2Simple/structs/globals.h
4252ee85356097ceff3f1e231bc8a023f53105b3
[]
no_license
zonde306/9306
fd8dd35683140393ef844de1f012ff7a52ec5fa9
97947a9bdfdc3b3856ab4e14b517a57807cfb24e
refs/heads/master
2021-01-01T15:22:31.504974
2017-09-04T09:26:54
2017-09-04T09:26:54
97,606,870
1
0
null
null
null
null
UTF-8
C++
false
false
3,037
h
#pragma once class CGlobalVarsBase { public: CGlobalVarsBase(bool bIsClient); // This can be used to filter debug output or to catch the client or server in the act. bool IsClient() const; // bool IsRemoteClient() const; // for encoding m_flSimulationTime, m_flAnimTime int GetNetworkBase(int nTick, int nEntity); public: // Absolute time (per frame still - Use Plat_FloatTime() for a high precision real time // perf clock, but not that it doesn't obey host_timescale/host_framerate) float realtime; // Absolute frame counter - continues to increase even if game is paused int framecount; // Non-paused frametime float absoluteframetime; // float absoluteframestarttimestddev; // Current time // // On the client, this (along with tickcount) takes a different meaning based on what // piece of code you're in: // // - While receiving network packets (like in PreDataUpdate/PostDataUpdate and proxies), // this is set to the SERVER TICKCOUNT for that packet. There is no interval between // the server ticks. // [server_current_Tick * tick_interval] // // - While rendering, this is the exact client clock // [client_current_tick * tick_interval + interpolation_amount] // // - During prediction, this is based on the client's current tick: // [client_current_tick * tick_interval] float curtime; // Time spent on last server or client frame (has nothing to do with think intervals) float frametime; // current maxplayers setting int maxClients; // Simulation ticks - does not increase when game is paused int tickcount; // Simulation tick interval float interval_per_tick; // interpolation amount ( client-only ) based on fraction of next tick which has elapsed float interpolation_amount; int simTicksThisFrame; int network_protocol; // current saverestore data void *pSaveData; private: // Set to true in client code. bool m_bClient; public: // bool m_bRemoteClient; private: // 100 (i.e., tickcount is rounded down to this base and then the "delta" from this base is networked int nTimestampNetworkingBase; // 32 (entindex() % nTimestampRandomizeWindow ) is subtracted from gpGlobals->tickcount to set the networking basis, prevents // all of the entities from forcing a new PackedEntity on the same tick (i.e., prevents them from getting lockstepped on this) int nTimestampRandomizeWindow; }; class CPlayerInfoManager { public: virtual void* GetPlayerInfo(void* pEdict) = 0; virtual CGlobalVarsBase* GetGlobalVars() = 0; }; inline int CGlobalVarsBase::GetNetworkBase(int nTick, int nEntity) { int nEntityMod = nEntity % nTimestampRandomizeWindow; int nBaseTick = nTimestampNetworkingBase * (int)((nTick - nEntityMod) / nTimestampNetworkingBase); return nBaseTick; } inline CGlobalVarsBase::CGlobalVarsBase(bool bIsClient) : m_bClient(bIsClient), nTimestampNetworkingBase(100), nTimestampRandomizeWindow(32) { } inline bool CGlobalVarsBase::IsClient() const { return m_bClient; }
[ "zonrex@live.cn" ]
zonrex@live.cn
cdadf96ea489539591101dc143bea8bbc7ad85e4
a43ed321ca6cf1516bb386e3d8b6c74140ddba14
/swagger/sdrangel/code/qt5/client/SWGLoggingInfo.h
46e9b0b00f7040572c1089da35e5873b2fb58256
[]
no_license
thasti/sdrangel
66bdecbc20ea9a916dc768ae3ee5d8aae1fe296f
c7a5c06624f4bacc3d552b5ebba457e120e46e16
refs/heads/master
2020-04-24T23:13:11.014386
2019-02-25T19:07:20
2019-02-25T19:07:20
172,336,474
1
0
null
2019-02-24T12:46:02
2019-02-24T12:46:02
null
UTF-8
C++
false
false
2,808
h
/** * SDRangel * This is the web REST/JSON API of SDRangel SDR software. SDRangel is an Open Source Qt5/OpenGL 3.0+ (4.3+ in Windows) GUI and server Software Defined Radio and signal analyzer in software. It supports Airspy, BladeRF, HackRF, LimeSDR, PlutoSDR, RTL-SDR, SDRplay RSP1 and FunCube --- Limitations and specifcities: * In SDRangel GUI the first Rx device set cannot be deleted. Conversely the server starts with no device sets and its number of device sets can be reduced to zero by as many calls as necessary to /sdrangel/deviceset with DELETE method. * Preset import and export from/to file is a server only feature. * Device set focus is a GUI only feature. * The following channels are not implemented (status 501 is returned): ATV and DATV demodulators, Channel Analyzer NG, LoRa demodulator * The device settings and report structures contains only the sub-structure corresponding to the device type. The DeviceSettings and DeviceReport structures documented here shows all of them but only one will be or should be present at a time * The channel settings and report structures contains only the sub-structure corresponding to the channel type. The ChannelSettings and ChannelReport structures documented here shows all of them but only one will be or should be present at a time --- * * OpenAPI spec version: 4.4.4 * Contact: f4exb06@gmail.com * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ /* * SWGLoggingInfo.h * * Logging parameters setting */ #ifndef SWGLoggingInfo_H_ #define SWGLoggingInfo_H_ #include <QJsonObject> #include <QString> #include "SWGObject.h" #include "export.h" namespace SWGSDRangel { class SWG_API SWGLoggingInfo: public SWGObject { public: SWGLoggingInfo(); SWGLoggingInfo(QString* json); virtual ~SWGLoggingInfo(); void init(); void cleanup(); virtual QString asJson () override; virtual QJsonObject* asJsonObject() override; virtual void fromJsonObject(QJsonObject &json) override; virtual SWGLoggingInfo* fromJson(QString &jsonString) override; QString* getConsoleLevel(); void setConsoleLevel(QString* console_level); QString* getFileLevel(); void setFileLevel(QString* file_level); qint32 getDumpToFile(); void setDumpToFile(qint32 dump_to_file); QString* getFileName(); void setFileName(QString* file_name); virtual bool isSet() override; private: QString* console_level; bool m_console_level_isSet; QString* file_level; bool m_file_level_isSet; qint32 dump_to_file; bool m_dump_to_file_isSet; QString* file_name; bool m_file_name_isSet; }; } #endif /* SWGLoggingInfo_H_ */
[ "f4exb06@gmail.com" ]
f4exb06@gmail.com
f320ca56221e6b3c76451f25c7e8552630c8ecc0
8fdf939c85b2a31f51e7c985ab2c8d259ffd47ce
/Position_test_code_V1/Position_test_code_V1.ino
a8279b16124c300353ac0ebacc56a364cd7d61ef
[]
no_license
Sousx/uArm-Arduino
40904cf3cd20a7a6e5c8bf8f9158c2665ffeb0d4
c747dbd565a8e88b6eb32bf3d45c1639137f6004
refs/heads/master
2021-05-05T12:48:45.050761
2019-07-17T07:50:20
2019-07-17T07:50:20
118,280,788
0
1
null
2018-01-20T22:15:16
2018-01-20T21:07:26
Arduino
UTF-8
C++
false
false
6,238
ino
/* This code modifies the MegaMoto example code to control an actuator with no potentiometer. The actuator will extend for 10 seconds, and immediately retract for 10 seconds. This process repeats over 300 seconds. Modified by Progressive Automations, using the original example code for the MegaMoto board from: <a href="http://www.robotpower.com/downloads/" rel="nofollow"> http://www.robotpower.com/downloads/</a> Hardware: - 1 RobotPower MegaMoto control board - Arduino Uno Wiring: -Connect the +/- of the actuator to the A/B motor channels -Connect the +/- of the power supply to the +/- BAT connections This example code is in the public domain. */ #define SUCCESS 1 #define FAILURE 0 #define WORD 1 //Use the jumpers on the board to select which pins will be used int EnablePin1 = 13; int PWMPinA1 = 11; int PWMPinB1 = 3; void goToHere(int destination); void slowDown(boolean pushing, int rate); int velocity(); void(* resetFunc) (void) = 0; //declare reset function @ address 0 int startPos = 65; int endPos = 878; const int actuatorInput = A0; //const int precision = 2; //set as //const int default_sequence = 12121; int pos = 0; int currentPos = 0; int actuatorSpeed = 0; int previousPos = 0; // previous iteration of "pos" during push or pull int previousTime = 0; // previous iteration of "time" during push or pull int slowedIntervals = 0; // shows how many iterations the actuator has been slow void setup() { Serial.begin(115200); Serial1.begin(115200); Serial.println("Started"); configureActuator(); // set up actuator resetPosition(); } void loop() { test1(); test2(); for(;;); }//end main loop void test1() { // two cycles forwardAndBack(); forwardAndBack(); } void test2() { // test slow down slowDown(true, 5, 0); // slow down an actuator moving forward to stop } void inputTimeOut(unsigned int seconds) { unsigned long timeNow, timeStart = 0; bool timeOut = false; timeStart = millis(); timeNow = millis(); while(!Serial.available() && timeOut == false){ if(timeNow - timeStart < seconds * 1000) { timeNow = millis(); } else { timeOut = true; Serial.println("Timed out"); } } } void resetPosition() { goToHere(startPos); Serial.println("Actuator Ready To Go!"); } void inputBufferFlush() { while(Serial1.available()) { Serial.print("Characters eliminated"); Serial.print(Serial1.read()); } } void configureActuator() { pinMode(EnablePin1, OUTPUT);//Enable the board pinMode(PWMPinA1, OUTPUT); pinMode(PWMPinB1, OUTPUT);//Set motor outputs pinMode(actuatorInput, INPUT); digitalWrite(EnablePin1, HIGH); // enable the motor } void forwardAndBack() { pos = analogRead(actuatorInput); //initial position recorded by pot Serial.println("Intital Position is: "); Serial.println(pos); goToHere(endPos); delay(50); goToHere(startPos); delay(50); } void stopActuator() { analogWrite(PWMPinA1, 0); analogWrite(PWMPinB1, 0); // speed 0-255 } void pauseActuator() { stopActuator(); while(Serial.peek() == 'x' || Serial.read() != 's') { if(Serial.read() == 'x') { Serial.println("Resetting..."); resetSystem(); } Serial.println("Paused"); } } void resetSystem() { Serial.write('x'); //write to uno to make it reset resetFunc(); } void pushActuator() { if(Serial.read() == 'p') { pauseActuator(); } //checkSlowed(); analogWrite(PWMPinA1, actuatorSpeed); //changed to 50 for test speed analogWrite(PWMPinB1, 0); // speed 0-255 } void pullActuator() { if(Serial.read() == 'p') { pauseActuator(); } //checkSlowed(); Serial.println("Here"); Serial.println(actuatorSpeed); analogWrite(PWMPinA1, 0); analogWrite(PWMPinB1, actuatorSpeed);//speed 0-255 //changed to 50 for test speed } void goToHere(int destination) { bool pushing = false; int difference = 0; int currentPos = analogRead(actuatorInput); Serial.print("Destination is: "); Serial.println(destination); Serial.print("Actuator is at: "); Serial.println(currentPos); if(destination > currentPos) { Serial.println("We need to push"); pushing = true; difference = destination - currentPos; } else { Serial.println("We need to pull"); difference = currentPos - destination; } Serial.println("This much: "); Serial.println(difference); while(difference > 0) { if(Serial.read() == "stop") { stopActuator(); Serial.print("Actuator has been stoppped"); break; } currentPos = analogRead(actuatorInput); Serial.println("We are now here"); Serial.println(currentPos); Serial.println(difference); actuatorSpeed = 255; if(pushing) { difference = destination - currentPos; pushActuator(); } else { difference = currentPos - destination; pullActuator(); } } delay(50); stopActuator(); Serial.println("We have reached our destination"); } void slowDown(boolean pushing, int rate, int finalSpeed) { if(actuatorSpeed == 0) { Serial.println("The actuator is not moving"); } if(actuatorSpeed == finalSpeed) { Serial.println("The actuator is already going at the intended speed"); } while(actuatorSpeed != finalSpeed) { if(pushing) { pushActuator(); } else { pullActuator(); } actuatorSpeed -= rate; // change based on intended rate of change in velocity delay(50); } } int velocity() { Serial.print("Velocity is: "); Serial.println((pos - previousPos) / (millis() - previousTime)); return (pos - previousPos) / (millis() - previousTime); } boolean checkSlowed() { int slowSpeed; // TODO: test speed of actuator to determine threshold of speed indicating that the actuator has slowed down // (i.e. this is the actual derivative) if(slowedIntervals > 5) { // If the actuator has been slow for this long Serial.println("Actuator is having trouble cutting this"); resetPosition(); return true; } if(velocity() <= slowSpeed) { //If the actuator is slower than this speed slowedIntervals++; // Increment time recorded that the actuator is slowed down } else { slowedIntervals = 0; } return false; }
[ "haythamshaban0@gmail.com" ]
haythamshaban0@gmail.com
d909a6492f1596f8a480f1c9c201bf9e089e5184
ca2a0075c1857910c2c4e60912825c873c6592be
/src/qt/optionsmodel.cpp
a78f52bc94ba44dd60eaab670ad6c9cbb14c56ef
[ "MIT" ]
permissive
WolfTronCoin/WTC-P
983e9a6ee5be4b73c98fba757e97eb5010ca7fd6
d8a28e6f72a2027b79cde98b58e8afa7217a98c3
refs/heads/master
2020-03-22T11:42:23.818603
2018-07-06T13:39:11
2018-07-06T13:39:11
139,990,066
0
0
null
null
null
null
UTF-8
C++
false
false
9,075
cpp
#include "optionsmodel.h" #include "bitcoinunits.h" #include "init.h" #include "walletdb.h" #include "guiutil.h" #include <QSettings> OptionsModel::OptionsModel(QObject *parent) : QAbstractListModel(parent) { Init(); } bool static ApplyProxySettings() { QSettings settings; CService addrProxy(settings.value("addrProxy", "127.0.0.1:9050").toString().toStdString()); int nSocksVersion(settings.value("nSocksVersion", 5).toInt()); if (!settings.value("fUseProxy", false).toBool()) { addrProxy = CService(); nSocksVersion = 0; return false; } if (nSocksVersion && !addrProxy.IsValid()) return false; if (!IsLimited(NET_IPV4)) SetProxy(NET_IPV4, addrProxy, nSocksVersion); if (nSocksVersion > 4) { #ifdef USE_IPV6 if (!IsLimited(NET_IPV6)) SetProxy(NET_IPV6, addrProxy, nSocksVersion); #endif SetNameProxy(addrProxy, nSocksVersion); } return true; } void OptionsModel::Init() { QSettings settings; // These are Qt-only settings: nDisplayUnit = settings.value("nDisplayUnit", BitcoinUnits::BTC).toInt(); bDisplayAddresses = settings.value("bDisplayAddresses", false).toBool(); fMinimizeToTray = settings.value("fMinimizeToTray", false).toBool(); fMinimizeOnClose = settings.value("fMinimizeOnClose", false).toBool(); nTransactionFee = settings.value("nTransactionFee").toLongLong(); language = settings.value("language", "").toString(); // These are shared with core WolfTronCoin; we want // command-line options to override the GUI settings: if (settings.contains("fUseUPnP")) SoftSetBoolArg("-upnp", settings.value("fUseUPnP").toBool()); if (settings.contains("addrProxy") && settings.value("fUseProxy").toBool()) SoftSetArg("-proxy", settings.value("addrProxy").toString().toStdString()); if (settings.contains("nSocksVersion") && settings.value("fUseProxy").toBool()) SoftSetArg("-socks", settings.value("nSocksVersion").toString().toStdString()); if (!language.isEmpty()) SoftSetArg("-lang", language.toStdString()); } void OptionsModel::Reset() { QSettings settings; // Remove all entries in this QSettings object settings.clear(); // default setting for OptionsModel::StartAtStartup - disabled if (GUIUtil::GetStartOnSystemStartup()) GUIUtil::SetStartOnSystemStartup(false); // Re-Init to get default values Init(); // Ensure Upgrade() is not running again by setting the bImportFinished flag settings.setValue("bImportFinished", true); } bool OptionsModel::Upgrade() { QSettings settings; if (settings.contains("bImportFinished")) return false; // Already upgraded settings.setValue("bImportFinished", true); // Move settings from old wallet.dat (if any): CWalletDB walletdb(strWalletFile); QList<QString> intOptions; intOptions << "nDisplayUnit" << "nTransactionFee"; foreach(QString key, intOptions) { int value = 0; if (walletdb.ReadSetting(key.toStdString(), value)) { settings.setValue(key, value); walletdb.EraseSetting(key.toStdString()); } } QList<QString> boolOptions; boolOptions << "bDisplayAddresses" << "fMinimizeToTray" << "fMinimizeOnClose" << "fUseProxy" << "fUseUPnP"; foreach(QString key, boolOptions) { bool value = false; if (walletdb.ReadSetting(key.toStdString(), value)) { settings.setValue(key, value); walletdb.EraseSetting(key.toStdString()); } } try { CAddress addrProxyAddress; if (walletdb.ReadSetting("addrProxy", addrProxyAddress)) { settings.setValue("addrProxy", addrProxyAddress.ToStringIPPort().c_str()); walletdb.EraseSetting("addrProxy"); } } catch (std::ios_base::failure &e) { // 0.6.0rc1 saved this as a CService, which causes failure when parsing as a CAddress CService addrProxy; if (walletdb.ReadSetting("addrProxy", addrProxy)) { settings.setValue("addrProxy", addrProxy.ToStringIPPort().c_str()); walletdb.EraseSetting("addrProxy"); } } ApplyProxySettings(); Init(); return true; } int OptionsModel::rowCount(const QModelIndex & parent) const { return OptionIDRowCount; } QVariant OptionsModel::data(const QModelIndex & index, int role) const { if(role == Qt::EditRole) { QSettings settings; switch(index.row()) { case StartAtStartup: return QVariant(GUIUtil::GetStartOnSystemStartup()); case MinimizeToTray: return QVariant(fMinimizeToTray); case MapPortUPnP: #ifdef USE_UPNP return settings.value("fUseUPnP", GetBoolArg("-upnp", true)); #else return QVariant(false); #endif case MinimizeOnClose: return QVariant(fMinimizeOnClose); case ProxyUse: { proxyType proxy; return QVariant(GetProxy(NET_IPV4, proxy)); } case ProxyIP: { proxyType proxy; if (GetProxy(NET_IPV4, proxy)) return QVariant(QString::fromStdString(proxy.first.ToStringIP())); else return QVariant(QString::fromStdString("127.0.0.1")); } case ProxyPort: { proxyType proxy; if (GetProxy(NET_IPV4, proxy)) return QVariant(proxy.first.GetPort()); else return QVariant(9050); } case ProxySocksVersion: { proxyType proxy; if (GetProxy(NET_IPV4, proxy)) return QVariant(proxy.second); else return QVariant(5); } case Fee: return QVariant(nTransactionFee); case DisplayUnit: return QVariant(nDisplayUnit); case DisplayAddresses: return QVariant(bDisplayAddresses); case Language: return settings.value("language", ""); default: return QVariant(); } } return QVariant(); } bool OptionsModel::setData(const QModelIndex & index, const QVariant & value, int role) { bool successful = true; /* set to false on parse error */ if(role == Qt::EditRole) { QSettings settings; switch(index.row()) { case StartAtStartup: successful = GUIUtil::SetStartOnSystemStartup(value.toBool()); break; case MinimizeToTray: fMinimizeToTray = value.toBool(); settings.setValue("fMinimizeToTray", fMinimizeToTray); break; case MapPortUPnP: settings.setValue("fUseUPnP", value.toBool()); MapPort(value.toBool()); break; case MinimizeOnClose: fMinimizeOnClose = value.toBool(); settings.setValue("fMinimizeOnClose", fMinimizeOnClose); break; case ProxyUse: settings.setValue("fUseProxy", value.toBool()); successful = ApplyProxySettings(); break; case ProxyIP: { proxyType proxy; proxy.first = CService("127.0.0.1", 9050); GetProxy(NET_IPV4, proxy); CNetAddr addr(value.toString().toStdString()); proxy.first.SetIP(addr); settings.setValue("addrProxy", proxy.first.ToStringIPPort().c_str()); successful = ApplyProxySettings(); } break; case ProxyPort: { proxyType proxy; proxy.first = CService("127.0.0.1", 9050); GetProxy(NET_IPV4, proxy); proxy.first.SetPort(value.toInt()); settings.setValue("addrProxy", proxy.first.ToStringIPPort().c_str()); successful = ApplyProxySettings(); } break; case ProxySocksVersion: { proxyType proxy; proxy.second = 5; GetProxy(NET_IPV4, proxy); proxy.second = value.toInt(); settings.setValue("nSocksVersion", proxy.second); successful = ApplyProxySettings(); } break; case Fee: nTransactionFee = value.toLongLong(); settings.setValue("nTransactionFee", nTransactionFee); break; case DisplayUnit: nDisplayUnit = value.toInt(); settings.setValue("nDisplayUnit", nDisplayUnit); emit displayUnitChanged(nDisplayUnit); break; case DisplayAddresses: bDisplayAddresses = value.toBool(); settings.setValue("bDisplayAddresses", bDisplayAddresses); break; case Language: settings.setValue("language", value); break; default: break; } } emit dataChanged(index, index); return successful; } qint64 OptionsModel::getTransactionFee() { return nTransactionFee; }
[ "40802371+WolfTronCoin@users.noreply.github.com" ]
40802371+WolfTronCoin@users.noreply.github.com
04c2c57f89c12860bdd183f549ed81ce7d327908
f2c0259c672277d6f17a715e10f5e5ecdd00d605
/smtk/extension/vtk/markup/RegisterVTKBackend.h
95600b096dabf24da8cc87ebda857588b57ccc4b
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
Kitware/SMTK
83ff15620f801f12488ad238a4cf36f2998cfd14
a16cf5393f91d97dca2db0c2bd46d21864152c66
refs/heads/master
2023-08-31T18:54:44.534709
2023-08-28T14:35:32
2023-08-28T14:35:50
28,104,084
50
30
NOASSERTION
2023-07-20T11:08:10
2014-12-16T20:02:07
C++
UTF-8
C++
false
false
1,799
h
//========================================================================= // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. // // This software is distributed WITHOUT ANY WARRANTY; without even // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // PURPOSE. See the above copyright notice for more information. //========================================================================= #ifndef smtk_extension_vtk_markup_RegisterVTKBackend_h #define smtk_extension_vtk_markup_RegisterVTKBackend_h #ifndef __VTK_WRAP__ #include "smtk/extension/vtk/markup/vtkSMTKMarkupExtModule.h" #include "smtk/extension/vtk/geometry/Backend.h" #include "smtk/extension/vtk/geometry/Registrar.h" #include "smtk/extension/vtk/markup/Geometry.h" #include "smtk/geometry/Generator.h" #include "smtk/geometry/Manager.h" #include "smtk/markup/Resource.h" namespace smtk { namespace extension { namespace vtk { namespace markup { class VTKSMTKMARKUPEXT_EXPORT RegisterVTKBackend : public smtk::geometry::Supplier<RegisterVTKBackend> { public: bool valid(const smtk::geometry::Specification& in) const override { smtk::extension::vtk::geometry::Backend backend; return std::get<1>(in).index() == backend.index(); } GeometryPtr operator()(const smtk::geometry::Specification& in) override { auto rsrc = std::dynamic_pointer_cast<smtk::markup::Resource>(std::get<0>(in)); if (rsrc) { auto* provider = new Geometry(rsrc); return GeometryPtr(provider); } throw std::invalid_argument("Not a markup resource."); return nullptr; } }; } // namespace markup } // namespace vtk } // namespace extension } // namespace smtk #endif // __VTK_WRAP__ #endif // smtk_extension_vtk_markup_RegisterVTKBackend_h
[ "david.thompson@kitware.com" ]
david.thompson@kitware.com
883d1fc934df4b7c99b0c9a3fe3c852cd0c8d686
95f0993c1f84b66a308a723f1b5bd7e6b1f14fea
/Mostafa saad sheet B/022_Summer_sell_off.cpp
90e75c26df984ed645affc9cc20f9a548b8e2c15
[]
no_license
Abd-ELrahmanHamza/Problem-solving
ab02fd0d0dfe01c236687b468ba61cb7843552cc
06a3ac51063ece3cdd5d271e9a1fa0102fc1b57f
refs/heads/master
2023-08-25T19:18:49.195959
2021-10-11T20:17:51
2021-10-11T20:17:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,238
cpp
#include <iostream> #include <string> #include <algorithm> #include <vector> #include <cmath> #include <set> #include <utility> #include <iomanip> #include <map> #include <limits> using namespace std; bool sortPairs(pair<long long, int> &p1, pair<long long, int> &p2) { long long sold1After = (p1.first * 2 <= p1.second) ? p1.first * 2 : p1.second; long long sold1Before = (p1.first <= p1.second) ? p1.first : p1.second; long long sold2After = (p2.first * 2 <= p2.second) ? p2.first * 2 : p2.second; long long sold2Before = (p2.first <= p2.second) ? p2.first : p2.second; return (sold1After - sold1Before) > (sold2After - sold2Before); } int main() { long long n, f; cin >> n >> f; vector<pair<long long, int>> v(n); for (int i = 0; i < n; i++) cin >> v[i].first >> v[i].second; sort(v.begin(), v.end(), sortPairs); long long count = 0; long long sold = 0; for (int i = 0; i < n; i++) { long long product = v[i].first; long long client = v[i].second; if (v[i].first != 0 && count < f) { product *= 2; count++; } sold += (product <= client ? product : client); } cout << sold; return 0; }
[ "68310502+Abd-ELrahmanHamza@users.noreply.github.com" ]
68310502+Abd-ELrahmanHamza@users.noreply.github.com
000337a40464946f7fc40f87e3e335f1f1294ac6
2e6c664ee6f31edef03dd084353504a5a668b334
/CS 327/Assignment1.08/TA_1.08/move.cpp
926a31d9b23358b581fdf1d2cde9aea0a08a6da5
[]
no_license
Jaypatel18/SchoolWork
4eae4a5c027dc9d58e740263e4545e210e35f06d
222522b3223ead02a3a5cf514de0e2e8799640dc
refs/heads/master
2021-01-09T05:41:26.413146
2019-04-05T01:03:41
2019-04-05T01:03:41
85,968,416
0
1
null
null
null
null
UTF-8
C++
false
false
8,299
cpp
#include <ncurses.h> #include <stdio.h> #include <stdlib.h> #include <vector> #include "character.h" #include "debug.h" #include "dijkstra.h" #include "dungeon.h" #include "move.h" #include "npc.h" #include "pc.h" #include "point.h" #include "ui.h" /* scan count:= number of monsters found in the scanned area */ int scc = 0; /* scan array:= monsters found in the scanned area */ Character *scv[BUFFER_SIZE]; static int dist(int x1, int y1, int x2, int y2) { int dx = ABS((x1-x2)); int dy = ABS((y1-y2)); return MAX(dx, dy); } /* scan the area centered at (x, y) then store the result in scv */ static int scanArea(int x, int y, int radius) { scc = 0; for (int r=y-radius; r<=y+radius; r++) { for (int c=x-radius; c<=x+radius; c++) { int pcx, pcy; pc->getLocation(&pcx, &pcy); if (c==pcx && r==pcy) continue; if (r<=0 || r>=DUNG_H - 1) continue; if (c<=0 || c>=DUNG_W - 1) continue; if (dungeon->cmap[r][c]) scv[scc++] = dungeon->cmap[r][c]; } } return scc; } // get random neighbor floor cell that has no occupied character static void getRandEmptyNeighbor(int *nx, int *ny, int x, int y) { vector<Point> ns; for (int r=y-1; r<=y+1; r++) { for (int c=x-1; c<=x+1; c++) { if (r>=0 && r<DUNG_H && c>=0 && c<DUNG_W && dungeon->hmap[r][c] == 0 && dungeon->cmap[r][c] == NULL) { Point p(c, r); ns.push_back(p); } } } if (ns.empty()) { *nx = 0; *ny = 0; } else { Point p = ns[rand() % (int)ns.size()]; *nx = p.x; *ny = p.y; } } static void swapCharacter(Character *a, Character *b) { int ax, ay; a->getLocation(&ax, &ay); int bx, by; b->getLocation(&bx, &by); a->setLocation(bx, by); b->setLocation(ax, ay); dungeon->cmap[by][bx] = a; dungeon->cmap[ay][ax] = b; } // move c to the new location (x, y) static void update(Character *c, int x, int y) { // no move if (c->getX()==x && c->getY()==y) return; if (dungeon->hmap[y][x]) { if (dungeon->hmap[y][x] > 85) { // failed to tunnel dungeon->hmap[y][x] -= 85; return; } else { // tunnel successfully dungeon->hmap[y][x] = 0; dungeon->tmap[y][x] = '#'; } } // update what PC is currently attacking (can be NULL) if (c->isPC()) pc->attacking = (NPC *)dungeon->cmap[y][x]; if (dungeon->cmap[y][x]) { // attack if (c->isPC() || dungeon->cmap[y][x]->isPC()) { // net damage = total damage - total defense int dam = c->getTotalDam() - dungeon->cmap[y][x]->getTotalDef(); if (dam < 0) dam = 0; if (dungeon->cmap[y][x]->hp > dam) { // failed to kill dungeon->cmap[y][x]->hp -= dam; return; } else { // kill successfully dungeon->cmap[y][x]->hp = 0; } UI::printHP(); } else { // displace targeted monster int nx, ny; getRandEmptyNeighbor(&nx, &ny, x, y); if (nx==0 && ny==0) { // no empty neighbor then swap swapCharacter(c, dungeon->cmap[y][x]); return; } else { // move target to (nx, ny) update(dungeon->cmap[y][x], nx, ny); } } } int cx, cy; c->getLocation(&cx, &cy); // clear old location dungeon->cmap[cy][cx] = NULL; // go to new location c->setLocation(x, y); // original character that occupies (x, y) Character *co = dungeon->cmap[y][x]; if (co) { if (co->isPC() && cheat) { c->setDead(); // kill whoever attempted to kill PC return; } else { co->setDead(); } } dungeon->cmap[y][x] = c; // if there is an item to pick at its new location if (c->isPC() && dungeon->imap[y][x]) { // TODO PC should pick up this item if inventory is not full } } // escape algorithm for PC static void escape() { // look for optimal escape int x, y, escx = 0, escy = 0, min = 1<<8; int pcx, pcy; pc->getLocation(&pcx, &pcy); for (x = pcx-1; x <= pcx+1; x++) { for (y = pcy-1; y <= pcy+1; y++) { if (x == pcx && y == pcy) continue; // skip myself if (dungeon->hmap[y][x]) continue; // PC cannot tunnel if (scanArea(x, y, 1)) continue; // absolutely not safe scanArea(x, y, 2); if (scc < min) { min = scc; escx = x; escy = y; } } } if (escx && escy) update(pc, escx, escy); else Move::random(pc, 0); } int Move::npc(NPC *c) { int abil = c->getAbil(); int cx, cy, mempcx, mempcy; c->getLocation(&cx, &cy); c->getMemPCLocation(&mempcx, &mempcy); // intelligence int smart = (1 & abil); // telepathy int tele = (2 & abil); // tunneling int tunnel = (4 & abil); // erratic int erratic = (8 & abil); // erractic desicion or no moving instruction if ((erratic && rand() % 2) || (!smart && !tele)) { Move::random(c, tunnel); // 4 & c->c gives tunneling } else if (smart && tele) { Move::dijkstra(c, tunnel); } else if (smart) { if (dungeon->isVisible(cx, cy, pcx, pcy)) { Move::dijkstra(c, tunnel); c->setMemPCLocation(pcx, pcy); } else if (mempcx && mempcy) { Move::toward(c, mempcx, mempcy, tunnel); } else { Move::random(c, tunnel); } } else if (tele) { Move::toward(c, pcx, pcy, tunnel); } else { Move::random(c, tunnel); } return 0; } int Move::pcAI() { if (dungeon->nummon() <= 0) { return 0; // game over } int npcx, npcy; dungeon->npcv[0]->getLocation(&npcx, &npcy); if (cheat) { Dijkstra::run(npcx, npcy, 0); Move::dijkstra(pc, 0); } else { // PC move algorithm scanArea(pcx, pcy, 3); if (scc == 0) { // look for monsters if no monsters are around Dijkstra::run(npcx, npcy, 0); Move::dijkstra(pc, 0); } else if (scc == 1) { // fight the monster if there is only one Character *m = scv[0]; int mx, my; m->getLocation(&mx, &my); int speed = m->getSpeed(); int tpm = 100/speed; // turns per move int mvs = 0; // number of moves my enemy will take to reach me int mturn = m->getTurn(); int pcturn = pc->getTurn(); for (;pcturn - 100/pc->getSpeed() <= mturn && mturn < pcturn; mturn+=tpm, mvs++); int x, y, optx = 0, opty = 0, d = 1<<10; for (x = pcx - 1; x <= pcx + 1; x++) { for (y = pcy - 1; y <= pcy + 1; y++) { if (x == pcx && y == pcy) continue; if (dungeon->hmap[y][x]) continue; d = dist(x, y, mx, my); // if I can safely attack or my enemy cannot reach me if (d == 0 || d - mvs == 1) { optx = x; opty = y; if (d == 0) // attack near enemy break; } } if (d == 0) // attack near enemy break; } if (optx && opty) { update(pc, optx, opty); } else { escape(); } } else { // escape if there are too many monsters around escape(); } } // calculate distance map for intelligent monsters to use Dijkstra::run(pcx, pcy, 0); Dijkstra::run(pcx, pcy, 1); return 0; } int Move::move(Character *c, int x, int y) { // bad move if (x <= 0 || x >= DUNG_W - 1) return 1; if (y <= 0 || y >= DUNG_H - 1) return 1; if (dungeon->hmap[y][x]) return 1; Debug::log("move %c to (%d, %d)\n", c->getSymb(), x, y); update(c, x, y); if (c->isPC()) { int pcx, pcy; pc->getLocation(&pcx, &pcy); // calculate distance map for intelligent monsters to use Dijkstra::run(pcx, pcy, 0); Dijkstra::run(pcx, pcy, 1); } return 0; } int Move::dijkstra(Character *c, int t) { Point next = Dijkstra::next(c->getX(), c->getY(), t); update(c, next.x, next.y); return 0; } int Move::random(Character *c, int t) { int x, y; while (1) { int r = rand() % 8; c->getLocation(&x, &y); switch (r) { case 0: x++; break; case 1: x--; break; case 2: y++; break; case 3: y--; break; case 4: x++; y++; break; case 5: x--; y++; break; case 6: x++; y--; break; case 7: x--; y--; break; } // either tunneling or find a open space if ((t && dungeon->hmap[y][x]!=IMMUTABLE) || (!dungeon->hmap[y][x])) { break; } else { r = rand() % 8; } } update(c, x, y); return 0; } int Move::toward(Character *c, int x, int y, int t) { int cx, cy; c->getLocation(&cx, &cy); int dx = x - cx; int dy = y - cy; int incx = 0; int incy = 0; if (dx > 0) incx = 1; if (dx < 0) incx = -1; if (dy > 0) incy = 1; if (dy < 0) incy = -1; int nextx = cx + incx; int nexty = cy + incy; if (t || !dungeon->hmap[nexty][nextx]) update(c, nextx, nexty); else Move::random(c, t); // get stuck return 0; }
[ "jaypatel@mac-air-28.cs.iastate.edu" ]
jaypatel@mac-air-28.cs.iastate.edu
083d34036c78ceaebbed8945aa3a0d93b5d417ad
ee37b926d929f042031088f35a725416b1000de9
/tests/is_reference/overview.cpp
bbb044cfacdb5998a7f7bd80be319e17f4ca78e4
[ "MIT" ]
permissive
connojd/bsl
6bee5c28b1a9106af312f5d5002b13bd8baa7089
9adebf89bf34ac14d92b26007cb19d5508de54ac
refs/heads/master
2022-12-18T14:20:22.117151
2020-06-22T20:53:55
2020-06-22T20:53:55
287,825,769
0
0
NOASSERTION
2020-08-15T21:19:40
2020-08-15T21:13:29
null
UTF-8
C++
false
false
7,541
cpp
/// @copyright /// Copyright (C) 2020 Assured Information Security, Inc. /// /// @copyright /// 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: /// /// @copyright /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// @copyright /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE /// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, /// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE /// SOFTWARE. #include <bsl/is_reference.hpp> #include <bsl/ut.hpp> namespace { class myclass final {}; struct mystruct final {}; union myunion final {}; enum class myenum : bsl::int32 { }; class myclass_abstract // NOLINT { public: virtual ~myclass_abstract() noexcept = default; virtual void foo() noexcept = 0; }; class myclass_base {}; class myclass_subclass : public myclass_base {}; } /// <!-- description --> /// @brief Main function for this unit test. If a call to ut_check() fails /// the application will fast fail. If all calls to ut_check() pass, this /// function will successfully return with bsl::exit_success. /// /// <!-- inputs/outputs --> /// @return Always returns bsl::exit_success. /// bsl::exit_code main() noexcept { using namespace bsl; static_assert(is_reference<bool &>::value); static_assert(is_reference<bool &&>::value); static_assert(is_reference<bool const &>::value); static_assert(is_reference<bool const &&>::value); static_assert(!is_reference<bool>::value); static_assert(!is_reference<bool const>::value); static_assert(!is_reference<bsl::int8>::value); static_assert(!is_reference<bsl::int8 const>::value); static_assert(!is_reference<bsl::int16>::value); static_assert(!is_reference<bsl::int16 const>::value); static_assert(!is_reference<bsl::int32>::value); static_assert(!is_reference<bsl::int32 const>::value); static_assert(!is_reference<bsl::int64>::value); static_assert(!is_reference<bsl::int64 const>::value); static_assert(!is_reference<bsl::int_least8>::value); static_assert(!is_reference<bsl::int_least8 const>::value); static_assert(!is_reference<bsl::int_least16>::value); static_assert(!is_reference<bsl::int_least16 const>::value); static_assert(!is_reference<bsl::int_least32>::value); static_assert(!is_reference<bsl::int_least32 const>::value); static_assert(!is_reference<bsl::int_least64>::value); static_assert(!is_reference<bsl::int_least64 const>::value); static_assert(!is_reference<bsl::int_fast8>::value); static_assert(!is_reference<bsl::int_fast8 const>::value); static_assert(!is_reference<bsl::int_fast16>::value); static_assert(!is_reference<bsl::int_fast16 const>::value); static_assert(!is_reference<bsl::int_fast32>::value); static_assert(!is_reference<bsl::int_fast32 const>::value); static_assert(!is_reference<bsl::int_fast64>::value); static_assert(!is_reference<bsl::int_fast64 const>::value); static_assert(!is_reference<bsl::intptr>::value); static_assert(!is_reference<bsl::intptr const>::value); static_assert(!is_reference<bsl::intmax>::value); static_assert(!is_reference<bsl::intmax const>::value); static_assert(!is_reference<bsl::uint8>::value); static_assert(!is_reference<bsl::uint8 const>::value); static_assert(!is_reference<bsl::uint16>::value); static_assert(!is_reference<bsl::uint16 const>::value); static_assert(!is_reference<bsl::uint32>::value); static_assert(!is_reference<bsl::uint32 const>::value); static_assert(!is_reference<bsl::uint64>::value); static_assert(!is_reference<bsl::uint64 const>::value); static_assert(!is_reference<bsl::uint_least8>::value); static_assert(!is_reference<bsl::uint_least8 const>::value); static_assert(!is_reference<bsl::uint_least16>::value); static_assert(!is_reference<bsl::uint_least16 const>::value); static_assert(!is_reference<bsl::uint_least32>::value); static_assert(!is_reference<bsl::uint_least32 const>::value); static_assert(!is_reference<bsl::uint_least64>::value); static_assert(!is_reference<bsl::uint_least64 const>::value); static_assert(!is_reference<bsl::uint_fast8>::value); static_assert(!is_reference<bsl::uint_fast8 const>::value); static_assert(!is_reference<bsl::uint_fast16>::value); static_assert(!is_reference<bsl::uint_fast16 const>::value); static_assert(!is_reference<bsl::uint_fast32>::value); static_assert(!is_reference<bsl::uint_fast32 const>::value); static_assert(!is_reference<bsl::uint_fast64>::value); static_assert(!is_reference<bsl::uint_fast64 const>::value); static_assert(!is_reference<bsl::uintptr>::value); static_assert(!is_reference<bsl::uintptr const>::value); static_assert(!is_reference<bsl::uintmax>::value); static_assert(!is_reference<bsl::uintmax const>::value); static_assert(!is_reference<myclass_abstract>::value); static_assert(!is_reference<myclass_abstract const>::value); static_assert(!is_reference<myclass>::value); static_assert(!is_reference<myclass const>::value); static_assert(!is_reference<mystruct>::value); static_assert(!is_reference<mystruct const>::value); static_assert(!is_reference<myunion>::value); static_assert(!is_reference<myunion const>::value); static_assert(!is_reference<myenum>::value); static_assert(!is_reference<myenum const>::value); static_assert(!is_reference<myclass_base>::value); static_assert(!is_reference<myclass_base const>::value); static_assert(!is_reference<myclass_subclass>::value); static_assert(!is_reference<myclass_subclass const>::value); static_assert(!is_reference<bool[]>::value); // NOLINT static_assert(!is_reference<bool[1]>::value); // NOLINT static_assert(!is_reference<bool[][1]>::value); // NOLINT static_assert(!is_reference<bool[1][1]>::value); // NOLINT static_assert(!is_reference<bool const[]>::value); // NOLINT static_assert(!is_reference<bool const[1]>::value); // NOLINT static_assert(!is_reference<bool const[][1]>::value); // NOLINT static_assert(!is_reference<bool const[1][1]>::value); // NOLINT static_assert(!is_reference<void>::value); static_assert(!is_reference<void const>::value); static_assert(!is_reference<void *>::value); static_assert(!is_reference<void const *>::value); static_assert(!is_reference<void *const>::value); static_assert(!is_reference<void const *const>::value); static_assert(!is_reference<bool(bool)>::value); static_assert(!is_reference<bool (*)(bool)>::value); return bsl::ut_success(); }
[ "rianquinn@gmail.com" ]
rianquinn@gmail.com
a5e41e1ea171b2d3def6c6f47d8132157cddcafa
82815230eeaf24d53f38f2a3f144dd8e8d4bc6b5
/Airfoil/wingMotion/wingMotion2D_pimpleFoam/2.74/U
e6d0fa122e813d9e41f0679a1488e406cabd5862
[ "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
474,285
/*--------------------------------*- 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 volVectorField; location "2.74"; object U; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 -1 0 0 0 0]; internalField nonuniform List<vector> 12556 ( (99.99816073 0.00438127873 -4.360340954e-21) (99.99768081 0.01445841278 4.63824643e-25) (99.99630253 0.02958474061 -4.348386407e-21) (99.99401914 0.0530208902 -4.314766508e-21) (99.99982292 0.04093875409 4.15415789e-21) (99.99710746 0.06579424263 0) (99.9956431 0.1037750176 0) (99.99526365 0.155141496 -7.162609403e-21) (99.99408484 0.2215554012 8.277266274e-22) (99.993434 0.2998837762 -5.268319998e-21) (99.99402994 0.3795944109 7.471356905e-22) (99.99498775 0.443131335 0) (99.99951108 0.4716716537 0) (100.0044431 0.4549359163 1.509965964e-21) (100.0059348 0.4009031062 -2.010288035e-21) (100.0064086 0.3272208879 1.056149487e-21) (100.0059646 0.2514009496 0) (100.0052054 0.1842678758 1.622674397e-21) (100.0047265 0.1284110419 6.642423854e-21) (100.0025237 0.08859129861 -1.834392939e-21) (100.0096237 0.09898174808 -1.584389328e-20) (100.0064145 0.06007015084 0) (100.0045942 0.03156616012 -1.977176168e-21) (100.0043336 0.009855080744 -1.390862263e-20) (99.98369175 0.01170290644 1.748121336e-20) (99.97802748 0.03910616921 4.362333804e-21) (99.96522946 0.08072682565 3.044150249e-20) (99.94331703 0.1456160665 -1.303694295e-20) (99.94800854 0.193240897 4.187090977e-21) (99.91486965 0.3138589593 -5.71817333e-23) (99.87267596 0.4955178824 0) (99.85108077 0.6556196843 -7.265325805e-21) (99.80752317 0.9473356194 -6.659152623e-21) (99.77816472 1.302548308 -1.136931745e-20) (99.78294599 1.676364767 -4.571360772e-21) (99.83526345 1.984271136 -5.453069388e-21) (99.93330656 2.138628504 -9.244141217e-22) (100.0416156 2.082839334 6.403302846e-22) (100.12458 1.847427802 -6.541158826e-22) (100.1625656 1.514663382 5.438786704e-21) (100.1608193 1.162465809 -1.026038446e-20) (100.1348599 0.8538660763 0) (100.1367819 0.627827674 -2.798325647e-20) (100.0952805 0.4201741942 5.368018302e-20) (100.0906935 0.2815385127 1.533891864e-20) (100.0615347 0.1702563117 3.144671537e-20) (100.044899 0.08982469484 -3.153988778e-20) (100.0384789 0.02809571433 1.588607778e-20) (99.95637063 0.01522944005 -1.744226507e-20) (99.9403558 0.05196166005 -3.504439466e-20) (99.90553986 0.1098097212 -7.844527966e-20) (99.84731303 0.2028686519 1.0433466e-19) (99.82065662 0.3042748515 -8.618561491e-21) (99.72153733 0.5086017765 -8.342350064e-21) (99.59111277 0.8200137586 -1.445958295e-20) (99.52230146 1.153974806 0) (99.38198495 1.711975109 2.765676579e-20) (99.28722323 2.409182437 1.51056426e-20) (99.31496763 3.164639789 3.841475025e-20) (99.51282824 3.838891889 2.312999504e-20) (99.88748046 4.203112448 -4.450552219e-21) (100.2986496 4.095999709 0) (100.5771711 3.578970039 -2.40896042e-20) (100.6737387 2.874809067 2.234031263e-21) (100.6428209 2.173205632 -1.098545859e-20) (100.5349437 1.557158841 -2.52502865e-20) (100.4513465 1.065723044 -1.680941824e-19) (100.3228482 0.7031377699 -3.700337679e-20) (100.2492273 0.4229666024 -1.566837073e-20) (100.172541 0.2531845737 3.558006867e-20) (100.1264811 0.1336345415 -3.989955309e-21) (100.1062754 0.04156605523 0) (99.92436023 0.01272075641 -8.802554946e-21) (99.89366329 0.04603358162 6.159485178e-20) (99.82804569 0.1055875639 -1.762568733e-20) (99.72079359 0.2054199859 0) (99.63723429 0.3476721269 0) (99.44400356 0.6097711088 -6.770585853e-20) (99.17756712 1.024237295 -1.353012209e-19) (98.97304967 1.520390555 3.170904741e-20) (98.64767348 2.331344372 -1.307679619e-19) (98.40624872 3.388053172 -7.975556676e-21) (98.38446915 4.667058809 -1.107793056e-21) (98.79600943 5.932650055 -5.928600557e-20) (99.71888034 6.684777244 3.703941792e-20) (100.7733921 6.4892105 0) (101.4341302 5.49554458 -3.570061731e-20) (101.5831687 4.225269683 0) (101.4346854 3.063048966 -9.202046912e-20) (101.1821576 2.140918152 0) (100.930848 1.391571645 6.066338899e-20) (100.6637237 0.8959548642 -4.658403014e-20) (100.469383 0.4962374088 -4.003704367e-20) (100.3269009 0.293722059 2.022429841e-20) (100.2383144 0.1525276988 -4.053313003e-21) (100.1978445 0.04693454764 0) (99.90219114 0.002772128121 0) (99.85443155 0.01658544574 0) (99.75325412 0.05996786556 8.923982697e-21) (99.58707557 0.143052269 1.345298972e-20) (99.43394454 0.305945769 2.224265741e-20) (99.1162288 0.5857813749 0) (98.67330164 1.03448585 0) (98.25592986 1.653298366 -2.677865338e-19) (97.66016655 2.651822196 5.536457361e-19) (97.08227928 4.099525285 0) (96.78763122 6.086357182 -4.841515486e-19) (97.35384173 8.422295276 -4.051347868e-20) (99.3097248 10.04835359 9.095427149e-20) (101.7160986 9.640479852 1.048066187e-20) (103.0112432 7.688331383 0) (103.1013538 5.490200134 -2.381348216e-20) (102.6224684 3.74507528 0) (102.0530709 2.496134095 -4.206681806e-22) (101.5439362 1.542875501 -9.925552046e-20) (101.0857217 0.9633522366 8.23104408e-21) (100.7223647 0.4808438738 0) (100.4978307 0.2781852596 4.120101577e-21) (100.3577684 0.1391343011 -3.094740878e-21) (100.2927863 0.04197074688 -1.025607903e-21) (99.90595943 -0.01507970411 0) (99.84080258 -0.03795078041 0) (99.70440338 -0.03231458036 -1.786062435e-20) (99.47638959 0.01181412998 3.645996688e-20) (99.2444637 0.1652018307 0) (98.79032998 0.4090843302 0) (98.14193111 0.822102896 2.852880613e-20) (97.48790835 1.459950148 0) (96.49117608 2.507384106 9.736034055e-19) (95.30514232 4.193311639 6.455863663e-19) (94.16827856 6.989978579 7.87703438e-19) (94.23730602 11.36761616 1.042722127e-18) (98.25255817 15.43924005 3.107586999e-19) (103.8910266 14.17520779 2.501613313e-19) (105.9330987 9.972628687 -3.135645739e-19) (105.4494617 6.424117904 2.596502915e-19) (104.2297442 4.039896277 2.827748286e-19) (103.1057284 2.532269503 0) (102.2282861 1.452796457 2.548136704e-20) (101.5384179 0.8645164538 -1.696579893e-20) (100.9724921 0.3636256565 0) (100.6547098 0.1974560562 0) (100.4595907 0.08911089365 -1.037013755e-21) (100.3683869 0.02548966936 -3.105325983e-21) (99.95110441 -0.04034986655 4.375264636e-21) (99.87041326 -0.115559381 -4.409043309e-21) (99.70388652 -0.1677576196 9.001392433e-21) (99.42200472 -0.1880923171 -3.289813382e-20) (99.10341161 -0.07580231226 6.706743353e-23) (98.52762254 0.07770348277 2.823945023e-20) (97.6983154 0.3723656703 -1.383204394e-19) (96.79589331 0.9052449063 4.982285701e-19) (95.35271845 1.796584647 1.472055204e-18) (93.34836343 3.32894758 -1.938882191e-19) (90.46462523 6.206921072 0) (86.87353849 13.20190032 -1.664883833e-18) (94.27455951 25.89136785 0) (110.3809845 20.46772727 1.213467679e-18) (111.0525176 11.44635417 -8.523709322e-19) (108.6358047 6.389238974 -1.823991718e-19) (106.1369438 3.642792465 3.232505555e-19) (104.2339883 2.111700479 -5.754446009e-20) (102.8729767 1.068149375 0) (101.9567396 0.5720498021 9.168504689e-21) (101.1733187 0.1442583686 2.71418768e-21) (100.7640885 0.04768509477 -3.211789982e-21) (100.5180879 0.00255692639 -3.649980166e-21) (100.4016523 -0.002382281574 8.80570551e-21) (100.0508437 -0.07149858149 -4.375726313e-21) (99.958549 -0.2112323822 4.410625704e-21) (99.77062315 -0.3366248282 -5.602862061e-21) (99.45050269 -0.4409168218 -3.774867867e-21) (99.05931467 -0.4001272083 1.611689642e-20) (98.39226343 -0.3806066234 9.623028697e-21) (97.4492877 -0.2840065474 -5.02244382e-21) (96.33874422 0.03151874577 8.739975259e-19) (94.56388629 0.5272067739 -3.907427575e-19) (91.93227039 1.345391819 1.093583532e-19) (87.51823789 2.606932684 1.980416451e-18) (78.80663216 5.036488737 2.620975298e-18) (126.3189302 22.92754296 3.415971619e-18) (118.048407 9.308179877 1.181074255e-18) (112.078472 4.558938936 -4.401847072e-19) (107.9419556 2.320361927 -7.200617508e-19) (105.2264659 1.173878145 0) (103.360889 0.3886223427 -4.852957076e-21) (102.2543025 0.1005930917 2.065860512e-20) (101.2751981 -0.1695195043 -3.29729422e-21) (100.793728 -0.1608467213 2.698834729e-21) (100.5083437 -0.1151121528 -5.014880526e-22) (100.3709874 -0.04037845966 -8.251786748e-21) (100.2147228 -0.1061870657 -2.112771178e-21) (100.1161836 -0.3177006796 -1.588102486e-21) (99.91805853 -0.5250982921 -5.44513155e-22) (99.57990112 -0.7245943847 1.651938258e-21) (99.13701553 -0.7765056326 -3.14695375e-23) (98.42847935 -0.9164296992 0) (97.45186516 -1.054791073 2.705615741e-21) (96.23494464 -1.022428868 0) (94.3597524 -1.017057228 8.224191242e-19) (91.68798943 -1.064776946 8.757903328e-19) (87.65970914 -1.633033159 1.012646556e-18) (82.27745464 -3.880937503 3.491802997e-18) (138.9956312 6.053588868 -4.786231258e-18) (122.710576 2.296931844 0) (114.3223882 0.820959153 -1.062521582e-18) (109.0767382 0.1331925208 0) (105.8072452 -0.1958039824 -8.346975754e-20) (103.5776353 -0.5049597684 -4.930359537e-21) (102.3498898 -0.5080115712 1.156399377e-20) (101.2413426 -0.5477230704 1.12807531e-21) (100.7181414 -0.4090745378 0) (100.4098313 -0.2539739343 4.155591686e-21) (100.2592882 -0.08538411243 4.108582241e-21) (100.4472339 -0.1416344805 4.163574178e-21) (100.3483636 -0.4263894622 6.298949613e-23) (100.1521618 -0.7170326048 0) (99.8177261 -1.013908221 2.158705467e-22) (99.34960652 -1.168145848 -2.216282093e-21) (98.65227559 -1.470700169 2.368145947e-21) (97.71856036 -1.835956151 0) (96.51367481 -2.078395655 -6.26455131e-19) (94.7542764 -2.491351873 4.094887296e-19) (92.38857223 -3.129074341 -5.605140986e-20) (89.2407967 -4.400487514 -2.899495803e-21) (85.93616913 -6.519175078 -7.409977729e-19) (135.569241 -10.58087655 2.162871456e-18) (122.2057882 -5.756447203 0) (114.3060018 -3.581485448 4.922609808e-19) (109.0924004 -2.409722061 4.023039167e-19) (105.7799134 -1.760226879 -1.357683736e-18) (103.4456622 -1.490037849 4.157455021e-20) (102.2037884 -1.176447639 0) (101.0510657 -0.948812601 -1.099525422e-21) (100.5226578 -0.6718111225 -4.570701464e-21) (100.2107941 -0.4008880609 5.108956634e-22) (100.0564768 -0.1331067913 0) (100.7473629 -0.1751650854 -2.050622158e-21) (100.6536616 -0.5288941103 2.069244988e-21) (100.4703007 -0.8968039867 2.0192405e-21) (100.1612726 -1.284884476 -1.891748073e-21) (99.69123376 -1.539534217 -2.186937779e-21) (99.05084042 -1.985923348 0) (98.21612202 -2.543902299 -8.339916874e-20) (97.10327828 -3.014086703 1.11511194e-18) (95.5551009 -3.721254393 0) (93.55398114 -4.688190402 9.907627717e-21) (91.00602589 -6.180916455 8.336309537e-19) (88.40897171 -7.998024324 8.520861891e-19) (126.2206121 -19.49771943 1.673279918e-18) (118.0949447 -11.54780874 1.269856109e-18) (112.3001781 -7.199333835 2.607248123e-20) (108.0274891 -4.666152511 1.372533184e-18) (105.1337316 -3.223412809 0) (102.9613981 -2.419455684 0) (101.8173866 -1.818928394 -2.719363004e-20) (100.7025205 -1.33036206 -1.375330805e-20) (100.2067736 -0.9223102243 1.046422158e-21) (99.91016207 -0.541833153 -3.299119093e-21) (99.76128386 -0.1790607582 4.835618571e-22) (101.108917 -0.2044698667 7.517595844e-21) (101.0250963 -0.6178719643 0) (100.8626784 -1.049216293 -2.015278589e-21) (100.5934211 -1.52419409 0) (100.1372889 -1.862620866 0) (99.5924941 -2.41912349 -6.503485808e-21) (98.89352241 -3.123472546 -1.149270636e-20) (97.9212681 -3.761505528 -1.607338416e-19) (96.61870316 -4.65860522 3.620406057e-19) (94.95561137 -5.822681561 1.385244107e-20) (92.80253593 -7.477522055 0) (90.41960908 -9.314029058 1.891659894e-19) (116.505404 -22.54890572 1.075663757e-18) (112.7025378 -14.34961829 8.787827684e-19) (109.2505499 -9.366854489 -7.235371385e-19) (106.2569015 -6.239180825 5.044191588e-21) (104.0241091 -4.35934435 0) (102.1915105 -3.176436709 2.166510333e-21) (101.2274079 -2.361701955 -3.310463185e-20) (100.2204955 -1.664348044 8.152595046e-21) (99.78410973 -1.135868756 0) (99.51694234 -0.6647731081 3.799231296e-21) (99.38111525 -0.2193393268 0) (101.5219767 -0.2287184872 7.507960987e-21) (101.4508034 -0.6920192294 1.184999985e-19) (101.3130477 -1.174164678 -2.387729793e-19) (101.0872547 -1.713274816 -5.485014774e-22) (100.6894783 -2.112529032 -1.893427734e-21) (100.2411987 -2.745104243 0) (99.69783327 -3.546265366 2.601432819e-19) (98.88521683 -4.286375622 2.988513278e-19) (97.84433357 -5.288730685 6.731166799e-19) (96.51979999 -6.573312154 -6.64924367e-19) (94.78177309 -8.431871228 4.684025181e-19) (92.72182095 -10.58145219 -5.328260513e-19) (103.4908269 -31.55864066 -3.88818131e-19) (107.7541631 -20.75852758 2.9549387e-19) (107.6023772 -14.59653348 4.239226321e-19) (106.0533301 -10.09953225 -5.477477017e-19) (104.2276626 -7.036911298 -5.359904328e-19) (102.6701245 -5.069224891 2.959167241e-19) (101.24537 -3.692996899 -6.599326175e-20) (100.4899064 -2.756119885 0) (99.64327937 -1.914198441 0) (99.27701434 -1.300356815 1.186615595e-20) (99.04786306 -0.7619345356 2.18901148e-21) (98.93027011 -0.251191218 -7.102953906e-21) (101.9736241 -0.2456204854 0) (101.9166681 -0.7443684369 0) (101.8071552 -1.261002574 0) (101.6270202 -1.834814777 0) (101.2863861 -2.292164925 0) (100.9366862 -2.977587884 0) (100.5376861 -3.828227335 7.711860184e-21) (99.90500575 -4.609046723 1.670845504e-20) (99.11789934 -5.64129277 5.887411935e-19) (98.14169006 -6.954741281 -2.769591933e-19) (96.92984929 -8.874298969 0) (95.75867326 -11.53156406 0) (96.5878354 -20.78203123 2.044635068e-19) (102.5115983 -17.07976506 0) (103.7278623 -13.20875997 -9.256664744e-20) (103.2902884 -9.77535867 0) (102.2848471 -7.180470187 -4.419227821e-19) (101.2635629 -5.376118459 -5.725560012e-20) (100.2307401 -3.971525249 -9.205056447e-20) (99.68018535 -3.000678894 -3.468925277e-20) (99.00611322 -2.070118346 -1.931554008e-20) (98.71141876 -1.411798298 1.901747347e-20) (98.52422712 -0.8290222661 0) (98.42719097 -0.2731439579 1.903911904e-20) (102.4508054 -0.2552174313 0) (102.4087752 -0.7743199439 0) (102.3295474 -1.309990974 0) (102.1962997 -1.894194171 0) (101.9115191 -2.381588211 0) (101.665914 -3.081888758 0) (101.4037999 -3.91462891 -1.358910269e-19) (100.942193 -4.720103248 -6.932684842e-19) (100.3803272 -5.721333271 -4.731034431e-19) (99.72115979 -6.930584896 2.327854566e-19) (99.05486703 -8.566601929 2.140001595e-19) (98.86700456 -11.00972615 2.333338078e-19) (98.02924593 -13.6541501 0) (100.3874769 -13.19051963 0) (101.2760125 -11.20282808 -1.041787994e-19) (101.1774209 -8.885573377 0) (100.6117246 -6.887919498 3.439925359e-19) (99.9572119 -5.376024475 -2.468777362e-20) (99.22733316 -4.045294638 0) (98.86032346 -3.104626464 0) (98.34195292 -2.139796489 -3.592423115e-20) (98.11446576 -1.469997507 1.772718716e-20) (97.9684872 -0.8651710418 7.432486686e-22) (97.89166327 -0.2850423684 -1.311117263e-20) (102.94 -0.2579589824 0) (102.9118592 -0.7827023976 0) (102.8607578 -1.322591789 0) (102.7708674 -1.8999805 0) (102.5377261 -2.397391839 0) (102.3806761 -3.081310854 0) (102.2254468 -3.865045631 0) (101.9122742 -4.658350442 0) (101.5218376 -5.592335423 3.797522944e-19) (101.0765212 -6.633305517 -7.345664386e-19) (100.6958766 -7.860753002 -4.48612431e-19) (98.06510413 -9.019538653 4.355013179e-19) (98.98529604 -10.45385171 -1.075510646e-19) (99.67713868 -10.3847405 1.748908899e-19) (99.85110802 -9.315654669 2.909841549e-19) (99.65340263 -7.816965848 -4.599681208e-19) (99.2555288 -6.361913638 -2.905566756e-19) (98.81321796 -5.148892659 0) (98.30024163 -3.959194626 -3.039515229e-20) (98.07466947 -3.09357718 4.614953055e-20) (97.68065312 -2.137783316 1.117548538e-20) (97.51155761 -1.481151108 1.90827577e-20) (97.40150425 -0.8735556948 -2.167696542e-20) (97.34247562 -0.2878408195 0) (103.428726 -0.2548320752 0) (103.4124635 -0.7726064912 0) (103.3847681 -1.303946689 0) (103.3312107 -1.860760853 0) (103.1441784 -2.352146791 0) (103.0570704 -2.99838751 0) (102.9803254 -3.712847534 0) (102.7684157 -4.453557124 -6.938917231e-21) (102.4923673 -5.295408243 5.998319073e-19) (102.1412111 -6.158372067 -1.060958603e-18) (101.8669154 -7.047322354 0) (94.61007589 -7.049695389 0) (99.5273977 -8.441129458 2.014053485e-19) (99.2930818 -8.411540603 -9.393994004e-21) (98.94478699 -7.761360748 3.147561999e-20) (98.56546707 -6.783351156 0) (98.19114988 -5.758041869 0) (97.85160714 -4.795112492 0) (97.48125308 -3.772032858 0) (97.34333957 -2.993001198 0) (97.04508165 -2.079582652 3.872717917e-20) (96.92251766 -1.453598019 -3.622950594e-20) (96.84080736 -0.8585923433 -2.447926027e-21) (96.7959987 -0.2833229198 2.456210133e-21) (103.9063565 -0.2469947082 0) (103.8996946 -0.7477737233 0) (103.8901752 -1.260422895 0) (103.8648561 -1.7863006 0) (103.7158546 -2.258714215 0) (103.6789616 -2.854473315 0) (103.6527303 -3.4907938 0) (103.4974934 -4.144953364 0) (103.2696295 -4.868640008 4.557084602e-20) (102.9084315 -5.572331907 3.744216301e-19) (102.6386499 -6.25305482 -6.931483137e-19) (94.30444194 -6.249164937 -4.091380604e-19) (99.6528223 -7.063228786 1.063576897e-19) (98.95062725 -6.982943241 -4.757654496e-21) (98.29349636 -6.538531222 0) (97.77941667 -5.886549072 3.942644825e-20) (97.37236817 -5.145152395 0) (97.0632046 -4.384530023 0) (96.76673315 -3.516358088 0) (96.67801228 -2.827979876 0) (96.44843276 -1.978468788 0) (96.35998709 -1.394332571 0) (96.29974191 -0.8261276625 0) (96.26555665 -0.2737043911 0) (104.3647397 -0.2355806411 0) (104.3653987 -0.711857258 0) (104.3690004 -1.198366277 0) (104.3639272 -1.686937226 0) (104.2437999 -2.131418308 0) (104.2386523 -2.670987218 0) (104.2384446 -3.230065032 0) (104.1077719 -3.79502726 0) (103.8841358 -4.384507352 0) (103.4846367 -4.948576697 4.968998396e-21) (102.6716001 -5.420813457 0) (96.46331236 -5.679213922 1.72550517e-19) (99.6254481 -5.980305349 5.8078513e-20) (98.66747863 -5.886005543 5.743624821e-22) (97.84182785 -5.583200834 0) (97.21030655 -5.122044745 0) (96.74188218 -4.561657033 0) (96.42216094 -3.957156743 0) (96.15354442 -3.225997629 0) (96.08568756 -2.626689333 0) (95.89899596 -1.850887444 0) (95.83274624 -1.314156191 0) (95.78662194 -0.780561948 0) (95.76066659 -0.2592245775 0) (104.7980654 -0.2216796439 0) (104.8038559 -0.66833643 0) (104.8158806 -1.123757927 0) (104.8237375 -1.572139377 0) (104.7240787 -1.98347996 0) (104.7352919 -2.465990632 0) (104.7423204 -2.955613165 0) (104.6151014 -3.436164806 0) (104.3719298 -3.915793439 0) (103.934638 -4.357913761 0) (102.7658707 -4.676858758 0) (97.42374112 -4.939500296 0) (99.63777313 -5.102538406 0) (98.49702717 -5.02974252 0) (97.52615866 -4.806017662 0) (96.78486291 -4.460817295 0) (96.2497275 -4.027859819 0) (95.89854913 -3.541715744 0) (95.63118774 -2.926413993 0) (95.56410902 -2.409052846 0) (95.40016098 -1.709562335 0) (95.34613169 -1.221760774 0) (95.30788839 -0.7272701603 0) (95.28699443 -0.2419978104 0) (105.2026036 -0.2062849001 0) (105.2115649 -0.6203624196 0) (105.2279158 -1.041908398 0) (105.2424169 -1.449683464 0) (105.1563997 -1.825644254 0) (105.1720856 -2.253699302 0) (105.1723532 -2.68164208 0) (105.036712 -3.087608433 0) (104.7623465 -3.479890851 0) (104.2802232 -3.830340353 0) (102.8369668 -4.06356922 0) (97.963121 -4.303366542 0) (99.6451863 -4.390048914 -3.200205848e-35) (98.37057571 -4.329774227 0) (97.28850871 -4.157697956 0) (96.45790532 -3.891392389 0) (95.85950633 -3.550059077 0) (95.46817867 -3.154701109 0) (95.18640002 -2.634935148 0) (95.10731586 -2.189323906 0) (94.95148859 -1.563823578 0) (94.90182538 -1.123925605 0) (94.86649123 -0.6703183228 0) (94.84825529 -0.2234901209 0) (105.5763887 -0.1902276201 0) (105.5868948 -0.5705664609 0) (105.6042846 -0.9572487515 0) (105.6203578 -1.32549632 0) (105.5427969 -1.666018146 0) (105.5543614 -2.04404503 0) (105.5385722 -2.416673446 0) (105.38805 -2.76004746 0) (105.0782698 -3.08322691 0) (104.5506663 -3.365376643 0) (102.8881458 -3.5419126 0) (98.34384914 -3.761018714 0) (99.63924125 -3.802389612 0) (98.26978503 -3.749283718 0) (97.10347215 -3.612294998 0) (96.20063073 -3.401489337 0) (95.54538618 -3.12747133 0) (95.11254489 -2.802955359 0) (94.80631965 -2.361624682 0) (94.70807597 -1.976846053 0) (94.55030974 -1.42026578 0) (94.49923181 -1.025717946 0) (94.46313767 -0.6127649318 0) (94.44567815 -0.2047170744 0) (105.9189216 -0.1741549892 0) (105.9296942 -0.5209707026 0) (105.9456765 -0.873189014 0) (105.9595196 -1.203981311 0) (105.886359 -1.510379026 0) (105.888157 -1.843390644 0) (105.851226 -2.166155991 0) (105.6818441 -2.458717036 0) (105.3368603 -2.727000859 0) (104.7662804 -2.957469544 0) (102.932143 -3.094904108 0) (98.61519886 -3.29725223 0) (99.62448123 -3.310159877 -4.223653714e-35) (98.18670079 -3.262201118 0) (96.95541965 -3.150266696 0) (95.99403012 -2.979766009 0) (95.28893192 -2.756218015 0) (94.81607003 -2.486879433 0) (94.48058475 -2.110452892 0) (94.35911799 -1.77716898 0) (94.19281229 -1.283321739 0) (94.13634646 -0.9306670105 0) (94.09696248 -0.5567670331 0) (94.07888717 -0.1863872971 0) (106.2308301 -0.1585483521 0) (106.2408984 -0.4730424324 0) (106.2537472 -0.7921743722 0) (106.2626906 -1.088219085 0) (106.19092 -1.362596419 0) (106.1794078 -1.655454938 0) (106.1192801 -1.934806827 0) (105.9288015 -2.185226149 0) (105.5509145 -2.409820803 0) (104.9407744 -2.600531721 0) (102.9759931 -2.710606162 0) (98.8082799 -2.899486191 0) (99.60403831 -2.893797673 0) (98.11665595 -2.849959544 0) (96.83437041 -2.756715508 0) (95.82520542 -2.616378503 0) (95.07682823 -2.431449379 0) (94.56659189 -2.205598331 0) (94.20042404 -1.882965381 0) (94.05375179 -1.593324184 0) (93.87477994 -1.155738686 0) (93.8103707 -0.8410675214 0) (93.76604958 -0.5037613081 0) (93.7463702 -0.1689780493 0) (106.5135144 -0.1437523246 0) (106.5221645 -0.427804157 0) (106.5307194 -0.715874412 0) (106.5329974 -0.9802405468 0) (106.4604348 -1.225122717 0) (106.4335854 -1.482512917 0) (106.3495698 -1.724630132 0) (106.1376398 -1.939742639 0) (105.7300458 -2.129313746 0) (105.0839041 -2.28894587 0) (103.022671 -2.379567792 0) (98.94486217 -2.557687106 0) (99.57986028 -2.539504982 1.411457159e-35) (98.05667356 -2.499093686 0) (96.73372925 -2.420276084 0) (95.68523638 -2.303121733 0) (94.89942368 -2.148313928 0) (94.35490181 -1.957188112 0) (93.9583166 -1.679296288 0) (93.78598574 -1.426654286 0) (93.59197567 -1.039022338 0) (93.51811083 -0.7583044458 0) (93.46786024 -0.45464583 0) (93.44590657 -0.1527937225 0) (106.7688801 -0.1300010875 0) (106.7756097 -0.3859320978 0) (106.7791437 -0.6453645401 0) (106.7736754 -0.8812623246 0) (106.6988159 -1.099342694 0) (106.6556815 -1.32565953 0) (106.548049 -1.536005412 0) (106.3153297 -1.721396806 0) (105.8814941 -1.882676923 0) (105.202781 -2.017608933 0) (103.0731979 -2.094178721 0) (99.04039913 -2.263648379 0) (99.55316035 -2.237008086 0) (98.00468605 -2.199498644 0) (96.64893629 -2.132105595 0) (95.56777148 -2.03316922 0) (94.74956639 -1.902254479 0) (94.17391079 -1.739189373 0) (93.74805926 -1.498676334 0) (93.55053705 -1.277411059 0) (93.34031906 -0.9338167741 0) (93.25622572 -0.6831076075 0) (93.1995296 -0.4099206974 0) (93.17487635 -0.1380095217 0) (106.9991634 -0.1174402836 0) (107.0036378 -0.3478322754 0) (107.0017494 -0.5812715377 0) (106.9879551 -0.7919140152 0) (106.9097476 -0.9859256848 0) (106.8501023 -1.185199749 0) (106.7197141 -1.368518722 0) (106.4674345 -1.528823852 0) (106.0106799 -1.667081606 0) (105.3026238 -1.782131159 0) (103.1274173 -1.848354805 0) (99.10621753 -2.010895189 0) (99.52476361 -1.978497933 0) (97.95918792 -1.94347131 0) (96.57672924 -1.885297103 0) (95.46818302 -1.800923808 0) (94.62187524 -1.689214848 0) (94.0180926 -1.549034513 0) (93.56455358 -1.339880255 0) (93.34282844 -1.145213742 0) (93.11596933 -0.8402033849 0) (93.02137606 -0.615748404 0) (92.95804879 -0.3697983344 0) (92.93045073 -0.1247059724 0) (107.206806 -0.1061484444 0) (107.2088154 -0.3137088527 0) (107.2013346 -0.5238928409 0) (107.1789847 -0.7124108438 0) (107.0967114 -0.8850138625 0) (107.0207887 -1.060902677 0) (106.8688298 -1.221290331 0) (106.598475 -1.360403338 0) (106.1217731 -1.479816588 0) (105.3874022 -1.578735509 0) (103.1845577 -1.637205054 0) (99.15087119 -1.794267972 0) (99.49521233 -1.75790213 0) (97.91901985 -1.72498594 0) (96.51466802 -1.674338399 0) (95.38297296 -1.601743723 0) (94.51217754 -1.505615981 0) (93.88302325 -1.384214844 0) (93.40352064 -1.201437578 0) (93.15883382 -1.029290345 0) (92.91535847 -0.7579055104 0) (92.81031512 -0.5561909099 0) (92.74038426 -0.3342949596 0) (92.70972071 -0.1128982867 0) (107.3943099 -0.09615825971 0) (107.3937349 -0.2836292586 0) (107.3806472 -0.4733063602 0) (107.3497448 -0.6427134676 0) (107.262911 -0.7964455826 0) (107.1712127 -0.9522556198 0) (106.9990017 -1.093245111 0) (106.7121424 -1.214487686 0) (106.2180406 -1.318427845 0) (105.4601527 -1.404181484 0) (103.2437068 -1.456753451 0) (99.18092608 -1.609476531 0) (99.46485009 -1.570459604 0) (97.88325203 -1.539308505 0) (96.4608674 -1.49483039 0) (95.30943213 -1.431818993 0) (94.41718027 -1.348390979 0) (93.7651171 -1.242428942 0) (93.26137302 -1.081848126 0) (92.99504434 -0.9287058021 0) (92.73523086 -0.6864615182 0) (92.61997771 -0.5042182215 0) (92.5435975 -0.3033083626 0) (92.50983078 -0.1025618137 0) (107.5642417 -0.08747024771 0) (107.5610188 -0.2575682665 0) (107.5424027 -0.4294451659 0) (107.5030994 -0.5826128144 0) (107.4113002 -0.7198828124 0) (107.3044679 -0.8586202623 0) (107.1132121 -0.9831122606 0) (106.8115273 -1.089526288 0) (106.3021194 -1.180744273 0) (105.5232557 -1.255731709 0) (103.3040257 -1.303787533 0) (99.20141319 -1.453032196 0) (99.43388468 -1.4123759 0) (97.85109259 -1.382638055 0) (96.41380586 -1.343195715 0) (95.24538822 -1.287986494 0) (94.3342053 -1.2149191 0) (93.66134061 -1.121611989 0) (93.13506242 -0.979693745 0) (92.84836395 -0.8424846111 0) (92.57255993 -0.6253088253 0) (92.44744116 -0.4595115433 0) (92.36482754 -0.2766661495 0) (92.32796587 -0.09364705318 0) (107.7189389 -0.08007131514 0) (107.7130549 -0.2354562797 0) (107.6890463 -0.392157134 0) (107.641584 -0.531872667 0) (107.5445889 -0.6548921778 0) (107.4233524 -0.7793046749 0) (107.2141661 -0.8894605097 0) (106.8991275 -0.9841735628 0) (106.3761696 -1.06489956 0) (105.578616 -1.131100049 0) (103.3647991 -1.17562606 0) (99.21616993 -1.322074076 0) (99.4024246 -1.280581617 -1.963616345e-36) (97.82183744 -1.2519079 0) (96.37222162 -1.216526989 0) (95.18906407 -1.167636329 0) (94.26106581 -1.103000823 0) (93.56925605 -1.020322777 0) (93.02183852 -0.8938705979 0) (92.71602763 -0.769661934 0) (92.42472443 -0.5739165715 0) (92.2901272 -0.421711291 0) (92.20152393 -0.2541750239 0) (92.16161579 -0.08609871052 0) (107.8613862 -0.07392307626 0) (107.8528007 -0.2171726584 0) (107.8235116 -0.3612388342 0) (107.7681443 -0.4900632669 0) (107.6653214 -0.6010196609 0) (107.5303996 -0.7135248105 0) (107.3046842 -0.8116980871 0) (106.9770115 -0.8970670998 0) (106.4420152 -0.9692779224 0) (105.6277699 -1.028380845 0) (103.4253497 -1.070077697 0) (99.22824229 -1.214208508 0) (99.37055257 -1.172558008 0) (97.79486228 -1.144645045 0) (96.33504301 -1.112476348 0) (95.13896507 -1.068626203 0) (94.19593382 -1.010747781 0) (93.48697576 -0.9368317117 0) (92.91920449 -0.8231887487 0) (92.59554752 -0.70935848 0) (92.28875849 -0.5316247005 0) (92.14506154 -0.3904490726 0) (92.05066409 -0.2356124345 0) (92.00771604 -0.0798431562 0) (107.9918521 -0.06904106411 0) (107.9806783 -0.2026970188 0) (107.9463058 -0.3365332591 0) (107.8833542 -0.457341766 0) (107.7758348 -0.5577151344 0) (107.6278798 -0.6605448383 0) (107.3871409 -0.7500416585 0) (107.047162 -0.826868482 0) (106.5012898 -0.892481866 0) (105.6720027 -0.9459713087 0) (103.4851057 -0.9854156484 0) (99.24019663 -1.127467274 0) (99.33835333 -1.086286028 0) (97.76961381 -1.058866552 0) (96.30132598 -1.029151452 0) (95.0937728 -0.9892064471 0) (94.13712965 -0.9365690801 0) (93.41231955 -0.8690658522 0) (92.82530322 -0.7661240895 0) (92.48460017 -0.6605734042 0) (92.16411007 -0.4984121851 0) (92.0117071 -0.3654229218 0) (91.91177121 -0.2208784765 0) (91.86594903 -0.07487131233 0) (108.1204621 -0.06525260211 0) (108.1063226 -0.191681579 0) (108.0666787 -0.3177124521 0) (107.9955004 -0.4313974341 0) (107.8789245 -0.5247371573 0) (107.7177895 -0.6201781215 0) (107.4627267 -0.703568245 0) (107.1114949 -0.7728578889 0) (106.5554511 -0.8334133991 0) (105.7124211 -0.8825976108 0) (103.5437177 -0.9203509954 0) (99.25426136 -1.060394585 0) (99.30589564 -1.020236187 0) (97.74558771 -0.993042742 0) (96.2702227 -0.9650783747 0) (95.05231449 -0.9280125236 0) (94.08315731 -0.879285632 0) (93.34341516 -0.8166437965 0) (92.73832923 -0.7220466297 0) (92.3812908 -0.623445747 0) (92.04247106 -0.4717368726 0) (91.88079142 -0.3462075273 0) (91.7751591 -0.209547852 0) (91.72606319 -0.07097549116 0) (108.2190859 -0.06305478469 0) (108.2030208 -0.1850155651 0) (108.1593024 -0.3058594315 0) (108.0827626 -0.4176814593 0) (107.9742443 -0.5013405862 0) (107.8018597 -0.5917124977 0) (107.5331744 -0.6712523077 0) (107.1714449 -0.7343177568 0) (106.605777 -0.7912038822 0) (105.7500389 -0.8372795155 0) (103.6010415 -0.8739297652 0) (99.27227937 -1.011930503 0) (99.27320048 -0.9732594195 0) (97.72229707 -0.9460114149 0) (96.24094506 -0.9191294723 0) (95.01352576 -0.8839918859 0) (94.03270959 -0.8379587892 0) (93.27887691 -0.7787229325 0) (92.65656456 -0.6903897161 0) (92.284103 -0.5969792273 0) (91.94669983 -0.4571494898 0) (91.778661 -0.3338783942 0) (91.66863253 -0.2025684478 0) (91.6174828 -0.06870313401 0) (108.403989 -0.06068097407 0) (108.3838426 -0.1790313404 0) (108.3323436 -0.2957312687 0) (108.2418837 -0.4011833118 0) (108.0621093 -0.4882567417 0) (107.877943 -0.5753537057 0) (107.5972096 -0.6532666002 0) (107.2283267 -0.7106446742 0) (106.6533939 -0.765150505 0) (105.7858047 -0.8092701057 0) (103.6569844 -0.8454579757 0) (99.29554742 -0.981472672 0) (99.24032465 -0.9444973536 0) (97.69930606 -0.9169496502 0) (96.21277071 -0.8904967457 0) (94.97644012 -0.8563782656 0) (93.98458639 -0.8118773988 0) (93.21739277 -0.7547595634 0) (92.58196916 -0.6709309139 0) (92.19616867 -0.5809253717 0) (91.77336431 -0.4384480691 0) (91.58993394 -0.3225403056 0) (91.47160839 -0.1956119694 0) (91.4160518 -0.0659843303 0) (81.66101709 -3.310902128 -1.210992768e-18) (141.5309127 9.226513514 3.206140346e-18) (127.6799418 25.8792044 -3.751412015e-18) (85.57171348 -6.281270325 1.99752557e-18) (138.6105446 -9.83099152 2.457739915e-18) (141.9808508 6.434375113 0) (88.13936268 -7.840382247 -4.186005755e-19) (128.5304859 -20.14888065 -2.203419823e-18) (137.5352815 -11.61959854 -6.090101931e-19) (90.16527473 -9.140119467 -9.60349661e-19) (118.0905415 -23.71450505 1.12287893e-18) (127.1874311 -20.89505657 1.662209084e-18) (92.55906008 -10.48930834 0) (103.2112428 -32.36768453 3.335665125e-19) (104.2084908 -31.99193802 -4.354943822e-19) (108.8679151 -22.79809282 -1.219669722e-18) (116.8479736 -23.82868704 -2.199487711e-18) (95.48893138 -11.39097312 4.236218643e-19) (95.24842943 -21.94006722 -1.54024118e-19) (102.8686356 -32.21186479 0) (96.78220091 -22.17268041 4.412993626e-20) (102.7809576 -19.32187631 -6.375632049e-19) (107.8739473 -22.51607539 5.211020022e-19) (79.29428666 6.699229329 -1.222538548e-18) (92.16025607 24.60559908 7.944006788e-19) (124.447691 26.74903916 0) (108.3324559 22.43929207 1.365231752e-18) (151.7688538 28.83233525 4.827166024e-18) (131.7140161 45.73833491 1.06826256e-18) (138.4969908 8.519562594 2.236722982e-18) (124.7660169 5.267663737 1.623640551e-18) (119.8991951 11.2190804 0) (88.80740379 -3.828881833 0) (85.95766121 -5.896577354 0) (82.99111056 -3.314995371 -1.154077465e-18) (152.5207254 -5.557305739 2.19420194e-18) (155.6030699 7.951395256 -6.143262604e-19) (136.4890089 -8.914639862 0) (125.4674593 -4.451770454 -1.719511627e-18) (125.5701873 2.821467165 -1.8150399e-18) (90.56478304 -5.794436221 0) (88.43395995 -7.550323124 -8.535222347e-19) (86.3065199 -6.148918292 -9.646000867e-19) (86.95096578 -7.147911746 9.312974155e-19) (86.06229342 -8.340001274 0) (84.71369848 -7.72971489 -1.779718963e-18) (138.1390998 -22.68908979 -1.748476367e-18) (145.4970585 -16.55528375 -6.540237145e-21) (127.4644906 -18.76019288 -1.684140738e-18) (121.2306138 -11.79091847 -1.030855334e-19) (124.7402174 -6.610613532 -1.168041776e-19) (92.34310596 -7.185902311 0) (90.43282974 -8.881466872 -7.610597777e-19) (88.69857592 -7.71888655 0) (89.17527931 -8.469960851 1.017099464e-18) (88.18434312 -9.332908526 -1.184004821e-18) (87.42205131 -8.854371434 6.036037524e-19) (124.7675085 -28.40987709 0) (130.4488557 -26.68924601 1.723074044e-18) (94.26629055 -8.235794268 6.54191014e-19) (92.65295409 -10.20817968 6.500949518e-19) (90.68438475 -9.050454356 0) (91.34811147 -9.815919845 -1.15824855e-18) (89.85654879 -10.85167341 -2.695097908e-19) (89.06457006 -10.11129669 1.140382907e-18) (107.4692552 -33.81154478 -1.019943326e-18) (112.8068239 -28.81051961 -7.68294807e-19) (117.8978159 -29.22846756 -1.034486916e-18) (96.38158932 -8.836978799 -5.476386503e-19) (95.48694596 -11.10249753 -1.964328992e-20) (92.97477845 -10.35754782 -6.175565017e-19) (93.97294718 -11.04386002 -4.76875515e-19) (91.58715073 -12.51751041 -4.847236234e-21) (90.82093537 -11.73452228 5.126537926e-19) (98.70772926 -11.04810635 0) (96.79025245 -14.12614833 0) (95.22169643 -21.17329348 0) (73.98326382 -5.124862243 1.02557978e-18) (79.70910254 -6.942668991 -1.113459777e-18) (67.27092061 7.443683858 0) (72.86749729 -4.426268623 1.470523647e-18) (155.7075877 9.012187224 6.988445939e-21) (152.4577253 27.51886044 0) (138.0167311 17.63348744 7.852980899e-19) (150.6077604 25.8588189 0) (154.6434129 9.08364327 2.396269943e-18) (84.52218158 -7.626393102 8.919508455e-19) (83.08659779 -7.029461539 -9.391350152e-19) (84.34928868 -5.451281579 -1.057974072e-18) (82.9021069 -7.286332648 -9.793624694e-19) (84.39646864 -7.795191124 -6.856373756e-19) (80.2441416 -7.007768596 1.553411762e-21) (82.66093107 -7.236201672 -9.810214445e-21) (145.9545901 -16.01151161 2.100661766e-18) (152.2088286 -6.321161204 0) (140.6419568 -3.026900907 2.29953044e-18) (151.2115431 -5.927102295 0) (145.38558 -15.54070737 2.040664528e-18) (154.5720256 8.035030578 -4.796555301e-18) (151.5150987 -5.175430294 -2.133252613e-18) (140.8780309 -1.866038858 0) (87.29071213 -8.795168321 -1.607544178e-18) (86.23853274 -8.402814441 -8.28952326e-19) (87.26612467 -7.333514708 0) (86.05150674 -8.525834117 -6.484201819e-19) (87.16370626 -8.902392042 0) (84.49107955 -7.855770668 -6.81733625e-19) (85.96326166 -8.489495173 9.751008528e-19) (131.2885473 -26.34794074 -1.330162452e-18) (137.6487404 -23.02924439 0) (132.535847 -17.27445628 3.462799199e-18) (137.0971616 -22.37418172 2.074734148e-18) (131.0515238 -25.49734084 1.771034347e-18) (144.9454594 -16.08170972 -4.062863765e-18) (138.030949 -21.77791813 0) (133.8468749 -16.07677142 1.085060699e-18) (89.005905 -10.06281537 -5.672439973e-19) (88.23191415 -9.373183231 5.922655621e-19) (89.42199618 -8.632640132 -5.932492425e-19) (88.08211408 -9.416000289 6.150554371e-19) (88.78853225 -10.11838355 0) (87.22716864 -8.937608112 -1.577026515e-21) (88.03880263 -9.377099931 1.682984318e-21) (118.6419955 -29.21017647 0) (123.9807638 -28.57017061 0) (90.75937899 -11.67791394 2.844864357e-21) (89.91080919 -10.90964642 0) (91.48772782 -9.91127199 5.795313187e-19) (104.3146462 -33.41105553 6.698892869e-19) (89.55468119 -10.95478837 -5.525176866e-19) (90.08562046 -11.70193692 2.736118385e-21) (88.84587622 -10.16589486 5.835467713e-19) (89.51139194 -10.89874857 -1.375488374e-19) (103.6455835 -33.20945601 2.588561476e-19) (107.6698846 -27.57835553 1.331291651e-19) (112.0908145 -28.74384842 -1.314972001e-20) (107.603179 -33.83497531 0) (83.91008256 -11.21552367 0) (91.67959786 -12.57716549 9.782094944e-19) (94.16432012 -11.10830272 4.759099918e-19) (97.5253413 -27.39705792 0) (90.38090035 -12.54738657 0) (41.19445105 -7.637491116 5.343076169e-21) (90.13331487 -11.7560409 0) (90.29482877 -12.48617596 5.732448109e-19) (98.03657901 -28.11869182 1.341007519e-19) (87.39953871 -0.7046807107 -2.067268539e-18) (82.48430751 -2.72392181 0) (80.56792014 4.742295231 -1.222643768e-18) (79.22669001 0.4008058019 -1.290541735e-18) (73.82611824 -3.367321271 0) (69.61429157 7.146911733 -1.50221577e-18) (159.0038049 54.86959986 0) (131.5363978 70.30480529 -2.030147946e-18) (83.88931039 -5.130354958 0) (82.83999557 -6.965937074 -9.536834914e-19) (80.36499722 -6.463490129 0) (121.4432164 -29.76645939 5.434768281e-18) (117.6728285 -22.40812907 1.171315248e-18) (115.1416313 -15.53252928 -1.027972411e-18) (119.7839802 -13.05559617 4.706275744e-21) (101.5065565 -31.88109538 -1.676731032e-18) (115.0588996 -32.35635338 -1.712577132e-18) (117.7021783 -32.28926821 -9.16796756e-19) (99.03200538 -27.61682597 -3.525382563e-19) (103.1971517 -24.65716123 -4.868687373e-19) (106.4303113 -26.95207878 -1.127289349e-19) (79.85132143 -6.344313788 1.125787471e-18) (74.75127816 -4.093566672 0) (79.75978691 -0.7940855412 2.568972133e-18) (76.99176425 -9.800852996 0) (51.99652412 10.79442499 0) (59.74250903 -6.966602046 -1.675945552e-18) (130.9660541 41.8320676 0) (149.2666068 28.39108826 -7.536695053e-19) (136.0040108 20.21191183 0) (118.1071128 -32.23645909 0) (120.8081989 -32.06834932 1.047381805e-18) (121.9225446 -22.96069838 7.810433326e-20) (123.8800703 -27.76738492 1.370129905e-18) (118.6318028 -28.41688418 -1.605386505e-20) (130.2318157 -25.83628604 0) (124.6527555 -27.59629548 -2.785515629e-18) (123.2237352 -22.56466458 -2.930353015e-18) (105.09704 -33.52643348 0) (82.55026942 -28.8375071 1.609423934e-20) (100.4077225 -30.68162195 1.26046859e-19) (84.06284704 36.43382433 -1.434606114e-18) (77.61290612 20.11893069 -6.454189046e-19) (67.79212132 9.86671863 -1.703778743e-18) (127.5911303 46.11101318 -1.728777081e-18) (107.8553802 38.48978127 -4.3413118e-19) (87.16050539 39.06708335 -7.583043865e-19) (160.542612 51.35005274 4.588292831e-17) (145.909984 38.416107 2.724005819e-18) (158.5297367 50.57102772 -1.929117812e-17) (131.2897482 65.40628121 1.821046513e-18) (156.2731841 53.47459463 0) (142.9284432 40.86829031 -2.745856143e-18) (154.0205528 0.2840279483 -5.322457292e-20) (154.2519472 1.172222491 2.631440769e-18) (141.5952919 -20.26149564 -1.935190097e-18) (142.0960177 -19.83799338 -3.903397576e-18) (123.3938159 -31.53520931 -2.526205573e-18) (122.4965721 -30.00915163 0) (127.1610972 -27.81024229 0) (126.1309722 -30.34453195 2.692618282e-18) (124.4400358 -31.22639482 0) (125.6865472 -28.64483611 0) (126.0280748 -30.21968739 -2.617892706e-18) (127.9720741 -27.56748764 -3.632276482e-18) (89.50987608 -10.47087447 -5.906414077e-19) (90.3632402 -10.10644889 -6.596797921e-19) (90.76897051 -10.39872326 4.682197754e-21) (111.9536007 -31.90009424 0) (114.2837586 -32.28304369 1.192535686e-18) (102.9221683 -32.21269457 0) (91.3885922 -12.13614275 -5.525276104e-19) (92.86448756 -11.63376647 0) (93.46973362 -11.87933362 -1.269942203e-19) (92.15409764 -11.26826834 -1.18588527e-18) (92.67883122 -11.54418486 -5.665117121e-19) (91.3236475 -12.06873981 1.645731958e-18) (72.14518674 -11.12491372 5.008136425e-19) (76.49472897 -9.989467161 0) (76.8982712 -6.391284051 -2.858622025e-19) (76.68580518 -9.584917289 -1.05991772e-18) (72.24791771 -10.04058173 1.14072495e-18) (79.26181305 -8.756507224 0) (77.14814197 -9.446455988 0) (77.70832132 -6.600129624 1.545009233e-18) (68.42633406 0.7699928932 -1.634001138e-18) (61.13243224 -5.310525351 1.626058977e-18) (54.93481179 10.25922988 -8.611948785e-19) (71.32920946 -9.885337175 1.268053901e-18) (62.56684912 -6.497957731 -7.803968218e-19) (69.43149061 -0.9808249995 0) (61.47824481 -8.169099467 0) (71.24308674 -10.84812495 -6.543197018e-19) (155.3673084 16.99523961 -4.887285519e-22) (155.1958694 18.26417207 3.857472831e-20) (83.64299719 -7.430081116 0) (81.7382171 -7.923376314 3.117944791e-18) (83.74016953 -7.474116172 -6.901017392e-19) (81.49377099 -7.09884731 -1.016127038e-18) (80.75282571 -8.118314438 4.168192757e-18) (79.4520543 -8.662684086 2.071279267e-18) (81.65910165 -7.911816207 1.039079319e-18) (80.88529516 -8.049618783 0) (81.82330383 -7.123991738 7.541123961e-19) (148.9225987 -11.77608067 -2.407743235e-18) (149.3207005 -11.12540144 -2.421404856e-18) (148.6343289 -10.75649869 2.30825845e-18) (144.6190425 -8.221607237 5.064109547e-18) (146.1080339 -4.462045264 5.159186338e-18) (142.1316833 -12.59972338 0) (144.0465972 -9.388857393 -2.436369522e-18) (148.2546659 -11.40528184 2.306715644e-18) (153.4315831 1.403876983 2.483335877e-18) (147.6382622 2.735061217 0) (147.7821283 7.600362466 2.698902923e-18) (146.5153234 -3.111016952 -2.60926529e-18) (147.4428805 1.207722682 -2.667564502e-18) (153.209273 0.518774357 -2.490124136e-18) (86.61850909 -8.695178814 -1.287931308e-18) (86.69212488 -8.72664285 1.287609059e-18) (85.18951179 -8.198514201 -2.02486981e-18) (85.28932778 -8.249839568 2.021011992e-18) (133.9940076 -24.92700148 0) (126.0108983 -28.39386164 -1.870357663e-18) (134.4364556 -24.6649564 0) (88.42390194 -9.732840661 0) (88.47252338 -9.776200356 0) (87.64465373 -9.129929302 -5.993598527e-19) (87.69756573 -9.16053789 1.900031826e-21) (124.0538662 -31.30010379 1.172519048e-18) (121.3588557 -31.62536333 0) (121.6597058 -28.94796393 0) (121.1576644 -32.02752896 -1.562515674e-18) (123.14044 -31.64868526 0) (90.45679745 -11.3531141 5.668592953e-19) (91.51109972 -10.89242073 0) (91.98904754 -11.17429495 5.917973362e-19) (90.91066862 -10.49937095 1.274849045e-18) (91.35578307 -10.79642611 -6.246917315e-19) (90.38009685 -11.30622608 2.264043119e-18) (105.2202089 -33.62671763 0) (90.00019005 -11.36185189 -5.916454937e-19) (90.07781047 -11.40524721 -1.199786791e-18) (89.224177 -10.46091607 6.113531635e-19) (89.26860402 -10.50799886 -2.138087115e-21) (98.53124064 -31.40803839 0) (106.4769285 -33.44673425 -1.02660692e-20) (108.8965206 -31.07066699 2.331748989e-21) (111.1811864 -31.72868206 0) (93.68760986 -11.94630033 -5.151375531e-19) (94.35334641 -12.05693523 -3.95901268e-19) (93.41998829 -13.3594149 1.960473529e-19) (93.44841622 -13.72398805 0) (87.43771723 -25.06111481 0) (84.82372462 -27.24029874 2.667171495e-19) (90.62689259 -12.0669314 5.79816876e-19) (74.06223336 -26.84654878 -5.483729911e-19) (84.07700919 -27.38619316 -2.077172915e-19) (75.66823866 -27.01819807 1.127459479e-18) (90.68585405 -12.14280118 -1.173839487e-18) (99.77326567 -30.09923029 0) (83.60595133 -28.85872013 -8.208398876e-20) (88.81563089 -28.24172322 1.462026316e-20) (127.9293214 94.40524164 0) (113.94175 -33.51723872 1.736710277e-18) (113.9866435 -33.17134397 0) (98.55983574 -8.700170992 -6.063174292e-19) (98.28088191 -10.50020256 0) (95.87439367 -11.12374026 -2.007407903e-20) (97.01633895 -11.42633938 -8.340784281e-19) (82.79386669 -9.943033284 4.655657403e-19) (81.47470681 -10.85667589 -4.954246707e-19) (97.74593247 -14.76490477 -1.268238936e-19) (100.1911488 -14.4761151 0) (101.7895824 -18.03179226 0) (30.37698502 15.34161523 0) (113.618881 -32.97239258 4.904776957e-19) (112.3915029 -32.2791176 1.68655869e-18) (106.0298442 -29.84421047 4.691883322e-19) (108.1552423 -30.80326784 5.773814483e-19) (106.200491 -33.31648485 -4.777670571e-19) (100.3281188 -20.91044336 0) (102.3201409 -23.75570802 -2.258753503e-19) (98.51749987 -26.9451755 1.496542404e-19) (69.29027874 49.9420023 2.322623506e-19) (65.09422817 28.45985483 0) (52.60183387 13.97200203 -1.061202528e-19) (126.1674203 69.7393234 0) (103.6486267 57.32582499 0) (77.58462174 56.91966964 4.372961736e-19) (153.2536373 -3.136035337 9.06938332e-18) (159.5270176 7.688326381 0) (158.6245027 4.431146873 3.204371185e-18) (155.1238596 4.912848662 2.558741307e-18) (139.5982696 -21.76284341 -1.763554012e-18) (140.2000405 -23.44277206 5.524783752e-18) (138.9011393 -24.32700404 -1.171219658e-19) (145.6193 -18.14262121 2.567090542e-18) (143.8783814 -19.7425539 -4.567723372e-18) (144.0779243 -18.06177356 9.771997804e-19) (87.82248278 -9.10777236 1.546114095e-21) (88.39587269 -8.725945921 -4.112259852e-21) (88.75872315 -8.952134101 -1.417859251e-18) (87.87846524 -8.442775429 -5.322816134e-21) (88.27074979 -8.653664557 9.220154055e-22) (87.76610692 -9.078825586 -1.171313073e-18) (89.84958176 -9.733410836 -6.771099121e-19) (90.23326993 -10.01116919 -6.591378628e-19) (89.4593647 -10.4214907 5.841500481e-19) (91.42578458 -12.38610182 2.348742694e-19) (92.70011486 -12.13160369 -2.213697562e-19) (93.00627246 -12.28081789 -4.327674461e-19) (44.59267569 -7.939073094 0) (68.6802255 -11.96209599 -7.752582857e-19) (95.61358891 -17.12912332 0) (155.7295402 12.29526714 2.442829286e-18) (159.777767 12.12769649 -3.631806944e-17) (159.8293257 8.802301148 0) (153.9995812 17.94795826 -2.448717903e-18) (146.0822075 16.51694143 -5.281522876e-18) (143.4623735 22.08390884 5.425654144e-20) (147.6581553 9.317450603 -5.765880046e-20) (146.6574576 14.66608889 0) (154.1689261 16.76171771 4.897712864e-18) (147.2790863 -14.28312152 4.554693085e-18) (147.8807815 -15.73459335 0) (146.1983418 -17.58446448 -7.954373849e-20) (151.0703325 -8.509565213 6.585628754e-18) (86.87482736 -8.626735994 6.077013933e-19) (87.3112548 -8.163999217 -1.511638845e-18) (87.7417009 -8.372866165 7.377880659e-19) (86.62348979 -9.06743845 -7.320400936e-19) (86.46028943 -8.989019681 7.173148213e-19) (86.97005492 -8.825601035 1.28778533e-18) (138.3905998 -24.63559947 1.896620032e-18) (136.8171115 -25.39441816 0) (136.2343361 -23.75786911 1.63158224e-18) (134.4214076 -23.89301575 -5.805509501e-18) (132.9163632 -21.27307725 3.605228854e-18) (135.2768572 -19.67988325 0) (141.7143843 -19.33805058 0) (139.2142511 -16.20671638 2.205318076e-18) (141.4333082 -13.57604414 0) (136.0713062 -19.07366253 0) (138.4405542 -16.99169629 2.16599885e-18) (141.2392372 -19.758589 2.437608702e-20) (88.64417611 -9.728351365 0) (89.35515357 -9.372719722 6.930102897e-19) (89.72394406 -9.641793029 -6.814002139e-19) (88.87716983 -9.032436416 -6.990060546e-19) (89.23431881 -9.285085687 -6.917487521e-19) (88.59156669 -9.683053444 -5.950564364e-19) (88.21710843 -9.549020715 1.248075007e-18) (87.20332523 -9.624394772 0) (87.13058756 -9.463645014 -6.917253339e-19) (86.90785107 -10.14589399 1.487203699e-18) (86.80462383 -10.00324434 1.390888394e-18) (88.63111748 -9.964700264 -4.303673954e-19) (87.41536155 -9.016965837 -6.403820833e-19) (86.84534939 -9.181040343 1.157877334e-20) (86.68212224 -9.096934527 -7.384813328e-19) (87.1106744 -9.42859574 6.851384865e-19) (87.02822751 -9.358345172 2.685293142e-18) (87.90266592 -9.27652232 1.208647582e-18) (120.9007557 -29.04005711 1.215312373e-18) (120.9738616 -31.66906682 0) (118.4150969 -31.63368395 0) (90.42321806 -30.84051514 0) (105.1980678 -33.70273499 0) (89.71326177 -11.12034936 -5.713188396e-19) (90.16364405 -11.55068117 -5.400362945e-19) (89.02141553 -10.29697968 0) (87.18268627 -10.32432487 -7.500650112e-19) (86.95966847 -10.20607206 1.498362832e-18) (87.4102262 -10.73727264 -3.951887153e-18) (89.43572775 -10.73926436 6.322060869e-19) (100.2573877 -32.17010047 -4.781296382e-18) (93.09439216 -12.75006629 -8.297389409e-21) (94.47027552 -12.12547238 1.747957301e-18) (94.93742634 -12.2252504 -5.731168435e-21) (93.11868588 -12.3256529 -1.589245249e-21) (93.49998623 -12.43106562 4.303365808e-19) (92.08139238 -12.79347724 0) (89.17147699 -27.986922 -8.344875601e-20) (90.77216168 -25.59044747 -6.891408776e-20) (96.2725349 -25.11573683 -5.154434148e-20) (90.79392792 -12.79752711 -2.887915493e-19) (56.79785318 -20.15312319 2.335902848e-18) (84.98799008 -20.64204941 3.579456223e-19) (87.50957716 -24.60614295 9.819429563e-19) (88.92586318 -13.36528532 0) (90.38704627 -11.92246649 -1.104949372e-18) (90.22359587 -12.43820704 -3.985597324e-18) (150.0590707 64.70732736 0) (129.2741458 90.37522021 8.852638711e-18) (145.9474766 67.63668716 0) (122.7636991 -29.29774408 4.748911642e-19) (123.0277275 -29.17603184 -5.478179117e-19) (113.5308594 -33.61883571 -7.75326871e-19) (113.9425255 -33.53049766 8.307375962e-19) (101.1417323 -31.46772585 0) (78.06864337 -9.310159139 -1.867616108e-18) (78.39411239 -9.202674312 5.711405813e-18) (53.32554865 1.241379641 0) (42.16872766 -4.609355774 1.728630493e-17) (38.05633489 14.11850025 -3.910116942e-18) (45.54501548 -7.18465776 0) (54.64151668 -1.353966155 0) (114.8086878 -32.02608004 -2.332067151e-18) (115.9365323 -32.67952521 2.559845844e-19) (119.6685206 -32.16600357 -1.008792187e-18) (111.1936588 -31.85708865 -4.348675426e-19) (110.3184219 -31.2952799 1.597788763e-18) (93.68947328 -31.78439469 0) (96.49974245 -32.463399 0) (104.4206478 -33.12576891 -1.24917181e-20) (90.67829848 -31.1336595 -2.268853733e-19) (87.99876191 -30.53888645 2.66762959e-18) (93.92573548 -31.88373214 -4.96613812e-19) (91.3387194 -31.34246224 -1.907998944e-18) (78.40744388 -28.23327195 -1.189839175e-18) (96.09745258 -31.94028508 -4.799869787e-19) (94.68579396 -32.03010779 -3.080188865e-19) (96.42765302 -31.23408889 -1.373667469e-19) (96.31204683 -31.8232829 -2.131071221e-19) (79.79458702 -28.36639985 6.571076644e-19) (162.4991758 42.22981687 1.154704258e-17) (155.4498606 39.34580731 0) (150.7941609 44.85126732 0) (159.0674432 31.90194755 0) (156.5957205 37.45649467 0) (148.9248607 46.64081186 0) (142.312906 51.36578971 0) (147.8430488 60.99664105 -4.775069269e-18) (156.8077274 -0.3915954511 2.403237473e-20) (155.1184405 -3.191102164 -8.469171453e-18) (153.4212654 -2.297593377 -6.953384448e-18) (154.9246762 3.941043817 0) (158.270225 3.394544551 0) (157.1795638 0.5314318426 -3.376559731e-18) (142.3459215 -21.84244755 0) (140.7181968 -23.08312849 -3.914759371e-18) (140.0987388 -21.41899999 -3.623310078e-18) (138.6596567 -23.54101884 -9.095227865e-18) (140.7297083 -22.2741186 0) (137.8390311 -24.70287628 -1.020235115e-18) (138.1044265 -23.89882504 2.587588662e-20) (141.345603 -21.73446064 -5.243625896e-18) (143.5886266 -18.51830336 2.421049011e-19) (143.2705596 -20.1632242 0) (142.8687993 -21.37037429 3.458625367e-18) (123.2862125 -31.09780545 1.24446852e-18) (123.2744762 -30.86445926 2.67322207e-18) (125.6435197 -30.89918125 1.279059048e-18) (126.3375564 -29.56750548 1.254841032e-18) (127.5810669 -29.30374488 1.304570665e-18) (126.5758851 -29.43537792 0) (129.732176 -28.63466838 2.804688879e-18) (131.0395435 -28.20333525 2.888893992e-18) (127.9960986 -29.14134872 -2.629489401e-18) (129.2967188 -28.77853249 -2.792280261e-18) (126.52858 -29.65590428 0) (105.3449079 -33.23209072 7.19744141e-19) (112.3987539 -33.50403516 -7.082523712e-19) (113.2847769 -33.59102274 -7.582345914e-19) (92.32787727 -11.9388192 0) (92.59963425 -12.08204509 2.268157061e-19) (91.45292621 -12.32426339 0) (91.13730986 -11.92799182 -8.873052869e-22) (91.99157485 -11.7371291 -4.783035382e-19) (92.24286622 -11.87606866 -4.777941547e-19) (74.28049489 -10.68320743 2.475266522e-18) (74.89455824 -10.47879262 0) (75.11417898 -9.936468845 -2.129364811e-18) (75.24809733 -7.948268956 -1.054752954e-18) (76.84452225 -8.092050044 -1.002283704e-18) (72.65531859 -7.329427072 2.350517297e-20) (74.65146358 -7.852930226 -2.160849198e-18) (74.49895303 -10.03715 -2.109663303e-18) (78.58921195 -8.993090732 -4.816400937e-18) (78.82487529 -8.043135668 -1.326675502e-18) (79.66066221 -7.948371817 0) (77.3136218 -8.104382222 2.962790126e-18) (78.50012526 -8.067435854 1.364069279e-18) (78.25724043 -9.064288858 -5.549117096e-19) (68.00377689 -9.252165754 1.382169546e-18) (69.40118391 -5.955711389 -2.706018122e-18) (71.87564688 -7.068747333 -6.091001415e-19) (66.18592448 -10.33400017 0) (67.66459471 -10.59223999 0) (159.747544 17.28867502 -1.390609841e-18) (159.5767488 13.41725769 0) (155.6823983 13.42276607 0) (160.9554849 13.72601815 0) (161.5567836 17.62251543 3.291257596e-18) (160.7043509 12.22170719 1.163770896e-16) (160.4987977 24.85652321 3.069703628e-18) (159.7488468 30.12846995 -2.619005726e-18) (161.7360785 18.92923774 -1.540554876e-18) (160.6530137 23.34422061 0) (154.3970352 22.07904972 -2.491083235e-18) (158.9973625 23.06687005 0) (159.7958888 18.69158334 0) (82.1554639 -7.959091156 2.715664668e-18) (82.88203665 -7.736530444 -1.14197117e-18) (83.1097409 -7.807660067 1.683142838e-18) (82.45832202 -7.670268758 1.693051625e-18) (82.78268355 -7.718783927 -4.220597931e-19) (82.05297374 -7.972356417 0) (83.47680566 -8.003507729 2.294684304e-22) (83.70814062 -8.173148628 1.529786585e-18) (83.17493088 -7.844886562 -7.385376883e-19) (83.40176178 -7.959187374 7.460503347e-19) (80.26677335 -8.307963169 -1.047027089e-18) (80.75419864 -7.778521959 -8.153559005e-19) (81.27628286 -7.699857062 -8.18139665e-19) (79.90165787 -7.913987958 1.623469682e-18) (80.55916566 -7.811063557 0) (80.09197809 -8.389182377 2.09986846e-18) (81.33326813 -7.984176801 -2.072469089e-18) (81.98099797 -7.6518965 1.923705365e-21) (82.34665754 -7.659236604 8.441397771e-19) (81.43135864 -7.679609728 2.683442925e-21) (81.84940612 -7.652608407 -2.073303741e-21) (81.20067789 -7.991585068 -1.437459254e-23) (149.9134382 -13.0527024 0) (148.4263871 -15.0756676 -8.822645114e-20) (147.7037394 -13.67641583 0) (150.6216454 -9.177480424 0) (151.1518775 -10.49684085 5.356271552e-18) (150.3367272 -12.35300196 2.915719294e-18) (85.58003323 -8.90798192 -1.432523577e-18) (85.7822901 -8.969044568 -2.182905087e-18) (85.29238828 -8.898534125 3.278562747e-21) (85.51965266 -8.898958782 0) (86.09350795 -9.016907468 -1.493493154e-18) (86.2383874 -9.098341824 0) (85.85718745 -8.983537083 -7.299741088e-19) (86.04647575 -9.003646115 0) (84.21969021 -8.478079687 -7.777335548e-19) (84.54741569 -8.610814852 -2.387365096e-18) (83.79564027 -8.241274577 -7.692369753e-19) (84.10990013 -8.427260924 -1.558626475e-18) (85.06527686 -8.786143758 7.402713279e-19) (85.23428071 -8.874567667 -1.386713602e-18) (84.65545999 -8.649217658 4.158273812e-21) (84.97062269 -8.753300261 -1.625811414e-18) (133.1577389 -27.37226951 0) (134.4417656 -26.8511442 -1.692302134e-18) (131.4890349 -28.04955565 1.489467563e-18) (132.7773273 -27.51147755 0) (126.1720115 -27.72590228 0) (136.0500324 -25.75902817 0) (137.4864929 -25.02139644 1.0348858e-18) (134.8320585 -26.61482998 1.449144267e-18) (135.6429554 -26.0044188 -3.306017121e-18) (87.41562161 -9.821722878 1.470459827e-18) (87.25018402 -9.689367225 1.425092533e-18) (88.26671605 -9.596634759 6.257612838e-19) (86.36371696 -9.670155752 3.660482018e-21) (86.5625386 -9.788097323 -2.860747198e-18) (86.2766875 -9.407399719 7.98938858e-19) (86.31059284 -9.591342232 8.131602895e-19) (86.5723032 -9.816845756 2.12709604e-19) (88.59277795 -9.911790389 4.358974144e-19) (86.89141985 -9.957736372 3.819839831e-18) (87.42677714 -9.861601685 0) (86.84051033 -9.283504279 6.3717779e-19) (86.88915185 -9.219436853 7.117663713e-19) (87.47453167 -9.051461924 0) (86.48397771 -9.246834347 -1.566148017e-18) (86.03973641 -9.283343436 2.213181213e-21) (86.29606911 -9.129909574 -2.857308787e-21) (86.44099815 -9.214184671 -7.95715508e-19) (86.20286829 -9.325270857 -7.888690283e-19) (86.26859268 -9.376663818 2.38685694e-18) (86.05855617 -9.28753978 2.298488057e-18) (86.17022554 -9.313063686 1.576697718e-18) (87.85389284 -9.246661035 -1.202875176e-18) (86.99331348 -9.340892338 -1.333821167e-18) (86.87244063 -9.302429641 -1.457495727e-21) (109.5126509 -31.0430591 0) (122.2002895 -31.9022738 1.115920777e-18) (113.1118312 -31.01298391 -1.469489407e-18) (113.6687236 -31.62857827 -9.11582513e-19) (113.2872452 -30.91370208 -7.091803366e-18) (122.4928669 -31.81454541 0) (87.0709519 -30.34127555 0) (105.3538932 -33.73166675 0) (91.04934939 -31.02746737 0) (91.92373328 -31.32602091 0) (89.77165636 -11.18542905 0) (90.23828144 -11.54159871 -1.152500483e-18) (87.3600792 -10.41439042 -7.502906335e-19) (87.24246124 -10.34622019 7.473665653e-19) (89.07677519 -10.33672283 -5.974112361e-19) (89.39632109 -10.67530636 3.841717153e-19) (87.37887947 -10.66163679 -2.02530083e-19) (87.37790717 -10.44519824 3.023214128e-18) (98.77565831 -31.82867972 1.522881948e-18) (92.22320855 -12.86760299 1.47571725e-18) (93.63963046 -12.44687798 -3.200238686e-21) (93.98720707 -12.38965848 2.472014506e-18) (60.47258733 -20.07028784 4.883242203e-19) (58.62068638 -20.24116618 -8.106693453e-19) (90.91027664 -12.91642489 -1.146078204e-18) (61.97069423 -22.15816988 6.756791839e-19) (66.94003814 -22.556471 -9.588147063e-20) (86.45413852 -26.4932906 2.810804901e-19) (90.47606239 -11.93922814 1.452784309e-21) (74.55191857 -27.28794929 2.34884093e-18) (81.28548299 -27.5961807 0) (62.47739314 -22.50411367 6.108696774e-19) (80.04483319 -27.53216459 2.777961641e-20) (90.32009836 -12.38667159 1.055733149e-17) (123.6144927 23.7600272 0) (117.7219292 12.40336567 1.247105667e-18) (111.4056855 13.26265781 0) (104.9292811 -31.74886107 -5.051704604e-18) (105.1958296 -31.6833117 -5.686646547e-18) (109.0363339 -21.81419526 6.402116029e-19) (109.1688217 -16.20752089 -2.209263927e-21) (113.5811726 -15.95653408 -9.075134352e-19) (104.4219452 -31.42722651 2.103505346e-17) (104.1323599 -33.00962868 -3.98668364e-19) (97.0310123 -32.61493828 4.194369778e-19) (98.27134582 -32.60240636 0) (117.9001501 -28.45295603 -1.449772302e-20) (113.2828507 -27.799652 1.433741519e-19) (113.2397167 -23.78817221 8.381726586e-19) (54.65487974 64.14781983 0) (49.88321648 38.4630384 2.631215683e-18) (34.29384288 25.19469845 3.637977328e-18) (112.6148252 99.86209256 0) (93.96963289 78.61204861 0) (63.07181145 73.17848911 3.982978021e-19) (115.7772715 26.18873266 0) (111.2972199 35.27930505 0) (127.4509644 42.22742481 0) (149.297231 33.13395225 0) (154.3710895 36.32105221 0) (156.9873793 31.16514124 2.518963516e-18) (85.49737419 -8.115657214 -8.608015793e-19) (85.98571391 -7.53345561 5.19994562e-21) (86.51260204 -7.791358793 1.558314891e-18) (85.24504027 -7.137568309 -1.671867263e-18) (85.80302817 -7.439046211 7.039584567e-21) (85.30164999 -8.027284994 0) (110.9828356 -33.22876728 6.632119526e-19) (112.0488499 -33.50238451 7.083822827e-19) (106.0586164 -33.38539824 -7.137612229e-19) (117.6327493 -31.65345321 5.561777106e-19) (115.2984382 -31.52860777 0) (115.6914292 -29.17430894 -2.339599971e-20) (91.66377073 -11.53690221 -9.681733934e-19) (91.90856126 -11.67893288 0) (91.05659457 -11.89329173 -4.179306711e-21) (157.6445318 29.48332921 0) (158.7624088 24.57845739 0) (154.0111126 23.3718602 2.501128899e-18) (86.68141273 -7.870254677 -4.856040253e-21) (87.16041923 -8.092348526 7.552194521e-19) (86.72526136 -8.572235846 0) (86.30740609 -8.595846706 0) (85.85111459 -8.843288422 -6.725885147e-19) (85.60522212 -8.803980417 1.661743721e-19) (85.52721714 -8.777594783 -6.754563603e-19) (85.27877359 -8.691058747 1.177043148e-20) (85.68373556 -8.402699409 -6.666022797e-19) (90.67493802 -11.51974395 5.226106714e-19) (91.36690281 -11.3357441 0) (91.58731929 -11.47683552 4.849727338e-19) (99.27366224 -32.33575175 0) (99.88924477 -32.60699836 1.366028734e-18) (104.7110236 -33.59175279 -6.481803809e-19) (88.85684562 -11.6222053 1.257321093e-18) (88.85978447 -11.58262137 -5.973430234e-19) (90.06484431 -11.64867376 -6.471286877e-19) (102.8497268 -33.04657548 -3.597559053e-19) (96.46444271 -31.63714619 3.658065239e-19) (97.85373456 -31.90883588 7.22350671e-20) (107.4092837 -33.78145964 -5.825616515e-19) (109.4786829 -32.83564838 1.166675555e-18) (110.5988398 -33.19424541 0) (90.49340252 -12.62245268 0) (90.19750092 -11.82090085 0) (88.95086544 -11.78145238 -6.431782342e-19) (88.88856655 -11.68548485 -1.932657774e-18) (90.23888454 -12.42207196 5.665136231e-19) (157.0685386 57.89466895 0) (121.8753011 -29.59712003 4.707588375e-18) (107.8685952 -33.20900131 0) (107.4162215 -32.94223798 0) (101.9170362 -31.78196837 1.999580116e-18) (116.2471826 -33.25583666 -9.618670323e-19) (115.5064702 -33.35959433 0) (116.5273631 -32.20183502 0) (77.41708888 -9.590864175 -2.39524363e-18) (142.2438635 23.90493229 4.8870923e-18) (137.5368009 28.8492502 0) (143.3479259 35.65126191 -2.676011044e-18) (119.2865765 -32.24388101 -9.943093773e-19) (116.2973355 -32.87767623 1.029576016e-18) (116.3409078 -33.19468726 1.445124309e-18) (81.74290163 -29.14739869 0) (80.82689258 -29.01611295 1.117377534e-17) (77.87663364 -28.1964702 -9.84574506e-18) (82.98696702 -29.27275832 -2.008875609e-18) (81.48450769 -29.07551365 2.690643546e-18) (116.8358474 43.5138581 2.228635397e-18) (108.6758384 53.78376643 0) (126.9541942 65.17277361 -9.873533487e-19) (160.2314216 47.80245076 0) (157.4383678 46.61602695 0) (155.6978039 49.09788242 0) (163.1076759 32.98915055 0) (162.6246294 35.3939209 0) (123.5318447 -31.36102866 0) (120.3675687 -31.09049308 0) (120.5050229 -31.31905661 -2.714523603e-18) (118.7839993 -29.61557973 2.958944982e-17) (119.6136408 -29.93272223 -4.061096857e-18) (123.3289446 -30.36493825 0) (124.6765405 -29.91303938 -1.87349694e-20) (125.9086059 -29.71213798 0) (125.3465099 -30.99123358 1.237295189e-18) (125.156313 -28.90911317 -1.160440312e-17) (129.1807231 -29.12741202 0) (129.2909963 -28.85257974 0) (104.3170781 -32.66833101 0) (109.0715982 -33.56259322 0) (108.5102311 -33.35254182 0) (72.93670663 -11.07744457 2.193483258e-18) (71.71880324 -11.44362487 -2.463228999e-18) (75.97718742 -10.14350624 -1.223851008e-18) (76.1936272 -9.704595237 -2.63091026e-21) (76.30501624 -9.173997754 0) (76.78938395 -9.094126544 1.024771741e-18) (79.08031665 -8.866348959 -1.832702434e-18) (79.23001872 -8.562791734 0) (79.46361296 -8.497720461 -5.412501276e-20) (77.24118117 -8.999152017 1.025971869e-18) (77.65423056 -8.896424268 0) (77.56358144 -9.295543255 0) (65.81811887 -3.074602279 -1.515629681e-18) (68.52271237 -5.296721315 1.405706028e-18) (66.70418373 -8.84146906 3.921010266e-20) (63.12764456 -9.164591137 0) (62.50356577 -11.565776 0) (60.44185316 -9.880677531 0) (70.9304515 -11.51688547 1.730050826e-18) (69.94397793 -11.67992969 0) (70.2100101 -10.77757956 0) (82.11984164 -7.929241487 1.868568812e-18) (82.47525539 -7.925945114 3.625632436e-19) (82.45282042 -7.952240818 -2.454608044e-18) (82.08779941 -7.866371705 -9.265668515e-19) (82.18909413 -7.880478656 -9.326987348e-19) (81.83033713 -7.942106354 -2.03880938e-21) (82.7783251 -8.197433518 -3.798990159e-18) (82.82788561 -8.277014608 3.190986921e-21) (82.45822733 -7.977563554 3.321791766e-18) (82.50828855 -7.999538033 1.84713148e-18) (80.59087504 -8.192064082 1.043066129e-18) (80.85261991 -8.074249417 -8.978510305e-19) (81.01170601 -8.022369681 -2.695088426e-18) (79.68893424 -8.437515498 -8.703592649e-19) (79.91227158 -8.37792636 1.765298378e-18) (79.66647822 -8.576745644 3.149158322e-18) (81.57701548 -7.921900934 2.072403005e-18) (81.89151414 -7.867578994 -3.67643213e-18) (81.99170251 -7.859812572 -1.847320131e-18) (81.15408362 -7.972038121 0) (81.27870609 -7.936310198 -1.809826446e-18) (80.98831887 -8.00866366 2.083027222e-18) (86.13697788 -8.915131206 0) (85.92274343 -8.857502588 1.360878898e-18) (86.38742231 -8.627732466 1.703683572e-21) (86.90376641 -8.793441647 -6.443581593e-19) (86.40510036 -8.971340989 7.10008251e-19) (86.20976237 -8.931553915 0) (84.76369239 -8.511103464 -7.59253553e-19) (84.44338693 -8.374729305 7.507636713e-19) (84.8859605 -8.065255613 -2.371593517e-21) (83.59298995 -8.734819783 -1.888286055e-18) (83.70207928 -8.771064145 0) (82.89740997 -8.380687239 -2.868390153e-18) (83.00288243 -8.476626622 -9.489085047e-19) (84.11342822 -8.953507579 6.733526376e-18) (83.80941864 -8.80398251 9.385168859e-19) (83.91445894 -8.833657202 -2.82261905e-18) (85.58762599 -8.359332851 -3.141914336e-21) (85.18132173 -8.658829441 -7.653587344e-19) (84.86983107 -8.551202152 0) (129.4702827 -27.18546727 0) (130.0410995 -27.00012504 0) (129.5464226 -28.63401882 1.626820472e-18) (129.8546798 -28.42241556 -2.571583079e-18) (126.5054122 -28.20871606 1.010926093e-17) (130.3447189 -26.78165212 -2.510984231e-18) (129.7707411 -26.47481903 3.649112385e-18) (135.769392 -24.04976855 -1.624663874e-18) (136.3377799 -25.6161783 0) (134.9767908 -26.13058264 1.396409686e-18) (91.06493382 -11.14551033 -1.009111125e-18) (91.29374603 -11.28038517 -2.473349632e-19) (90.64290166 -11.48644977 -3.394140725e-20) (90.15631279 -11.13749143 -5.533933268e-19) (90.76212219 -10.93896015 3.943426983e-22) (90.98833949 -11.08812974 5.0448728e-19) (89.37638969 -11.38949424 0) (89.28222467 -11.34102685 -1.231323281e-18) (89.91830455 -11.31168211 0) (90.14751036 -11.44737868 -1.201725959e-18) (89.53002364 -11.46287627 6.349530841e-19) (89.45943481 -11.42737149 -6.256508587e-19) (99.27682203 -31.66502341 5.777150509e-19) (92.27351486 -12.98590761 -2.097160551e-19) (93.2840988 -12.70217139 0) (93.38161621 -12.79850301 0) (31.4995855 -12.77586685 0) (90.70625771 -13.29995222 1.553535152e-19) (86.80602555 -26.2436982 -2.696715863e-19) (68.3173578 -22.43755726 0) (70.9793976 -22.19288068 -2.985416499e-19) (89.42894618 -12.00048332 -1.625094943e-18) (89.39873701 -11.92965537 3.237708749e-19) (90.58156608 -12.00389328 -5.690625209e-19) (74.6679267 -27.04834884 -7.242929143e-19) (69.94258483 -25.8072798 -1.246242196e-18) (70.7105686 -25.80725163 0) (77.61778965 -27.32369674 3.879319783e-20) (90.72379808 -12.22268073 0) (89.54372168 -12.15578005 1.697054927e-19) (89.49038979 -12.08199555 1.641809508e-18) (86.51172006 -28.94699751 4.105105387e-20) (95.99893209 -30.06104248 -2.752397775e-20) (96.34437142 -31.02996509 1.375949164e-19) (104.1409082 -31.94578253 2.43327069e-20) (104.5815686 -31.82739253 -4.190833324e-18) (109.8342253 -32.47503292 -2.163835884e-18) (110.1106128 -32.72343544 0) (114.0628664 -33.35298699 0) (30.41762586 7.616900013 1.555469065e-17) (20.54227223 19.82213148 0) (32.53532639 0.03136300858 1.160314536e-16) (113.1579905 -32.83253598 0) (107.4108912 -31.7599308 4.027599862e-18) (108.6861987 -32.07192194 -6.634473641e-18) (107.8261056 -31.49710119 -2.265340192e-18) (107.8577299 -31.61373807 6.142865942e-19) (112.8211691 -32.55761458 0) (113.6580813 65.50867053 1.584741512e-19) (100.9108914 75.10676977 0) (119.4851177 90.20900707 -8.843010091e-18) (154.7122512 -4.66964313 -1.333045904e-18) (155.0271986 -3.857008904 8.335391307e-18) (153.8986463 -6.250416302 2.762570615e-18) (154.3075989 -5.460569138 2.735044454e-18) (159.2274344 6.593674464 0) (157.9703565 6.583006522 0) (158.1974098 7.66937351 2.696592108e-18) (157.4853658 4.476361534 -1.759500478e-20) (157.7361153 5.51983853 2.76213262e-18) (158.9312147 5.514467767 -3.184695366e-18) (145.0272448 -18.71888003 2.48023808e-18) (146.1474936 -18.1391756 -7.191619293e-20) (146.6503627 -17.58403459 -6.647039243e-18) (145.1142975 -19.16567664 -9.645858267e-19) (145.6340296 -18.67672037 -2.137876945e-18) (144.4058768 -19.28145519 9.75115553e-18) (159.9933052 11.06210053 0) (158.457788 11.16340774 -2.43135642e-18) (158.2970274 12.32061681 0) (158.3976559 8.795553093 -2.613495702e-18) (158.5039446 9.97218834 -2.541694727e-18) (160.0222648 9.957253117 0) (147.3434736 -16.33665896 2.686987219e-18) (148.0849115 -15.80534487 0) (148.5449009 -15.19140485 0) (147.1448891 -17.01520763 -3.752064561e-20) (147.622083 -16.41446856 -2.324881943e-18) (146.7830684 -16.96542618 -2.671372725e-18) (153.139683 -7.93376478 -2.721461315e-18) (153.5330414 -7.068028708 2.724971139e-18) (152.1897186 -9.427673389 9.334464141e-18) (152.7225964 -8.716591752 -2.520515414e-18) (87.17212716 -9.561023479 0) (87.66196624 -9.56351489 0) (87.69958841 -9.617673433 0) (86.86227476 -10.09631665 -7.457198674e-19) (87.86910123 -10.13870942 -1.242218505e-18) (87.91762865 -10.18302664 6.220286394e-19) (87.80197233 -10.0395336 1.605655455e-21) (87.82383953 -10.09397597 6.11940683e-19) (86.81502984 -10.05055044 7.24501465e-19) (94.07138266 -31.28547062 0) (94.08196628 -31.23486861 -1.971682161e-18) (95.09120233 -31.69010993 -2.480822649e-19) (93.66315664 -31.36536513 -2.507558518e-18) (87.89610055 -10.99897966 6.951610712e-19) (87.9195683 -11.06265646 -7.015962826e-19) (87.83187613 -10.92609574 0) (87.8674997 -10.95617974 -6.947199232e-19) (88.14726675 -11.45874914 5.020475147e-18) (90.09705413 -11.59106032 -1.559381744e-18) (88.96154299 -11.55915558 2.190700293e-18) (89.13069956 -11.53516865 0) (87.10905774 -10.29796866 2.242590458e-18) (88.09390278 -10.31977242 -1.927228871e-18) (88.15653798 -10.35162421 0) (87.96903652 -10.23188714 -6.344748752e-19) (88.028551 -10.28001297 -6.410901233e-19) (87.02884572 -10.26053555 7.478620494e-19) (87.89714742 -10.88078444 1.185913523e-18) (87.82092036 -10.90178707 -1.80805835e-21) (88.44144629 -10.80557 1.390612512e-18) (88.02981842 -10.84568438 -1.050069824e-17) (87.08801248 -10.77961767 1.634219233e-17) (95.61969561 -31.31289571 1.19247723e-17) (96.63229451 -31.57163215 -4.89106166e-19) (101.8831684 -32.65386663 3.766543621e-19) (93.35729187 -31.01795294 2.866504672e-18) (93.9842161 -12.37926091 -4.776469455e-18) (93.86301681 -12.41875969 4.247624261e-19) (83.38009902 -11.37782337 9.978810731e-19) (91.92324908 -12.71844303 -1.980238083e-18) (92.66752717 -12.6448246 1.408586536e-18) (92.81774126 -12.69815204 4.665009551e-19) (90.62922742 -12.71687499 1.434886015e-18) (57.56691341 -20.56775801 -1.039060689e-18) (56.87201563 -20.65152886 2.226769548e-18) (46.14627643 -3.855442161 -2.822551546e-19) (55.55541965 -16.44111397 -1.28971374e-21) (60.48352839 -19.6213891 0) (89.21453928 -11.8889576 3.211935098e-18) (89.06827279 -11.86471154 6.958233979e-21) (90.28503738 -11.88425824 1.096600681e-18) (90.20421998 -12.41695427 0) (153.0403295 66.95522369 6.526232712e-18) (156.469562 62.38477712 -1.028758925e-17) (154.1751509 61.32889833 0) (140.6521563 83.30830625 -1.840050859e-18) (138.7807811 80.83235008 0) (130.2279427 83.99961319 0) (150.846877 71.55393307 0) (145.5481624 76.2151544 2.794150128e-17) (122.2198023 -29.43208328 8.653745114e-18) (122.4044509 -28.92320682 0) (101.9268872 -31.70392303 0) (106.8939157 -32.67343303 4.650272916e-19) (105.5407843 -32.2564669 -3.625134082e-19) (77.75757621 -9.424058677 -3.026664787e-18) (78.61526093 -9.047869941 0) (39.52470414 -0.4843856673 -7.718724848e-18) (44.5916136 2.7939898 0) (46.47546428 -1.233074034 2.607030268e-19) (54.57881975 -10.45607288 0) (57.02794724 -11.2898264 0) (49.12317209 -4.725100953 1.815716166e-18) (51.88278421 -8.749466262 0) (49.10754602 -9.615266355 0) (109.9070334 -31.55006142 0) (107.0166671 -31.2317884 -3.57337408e-17) (110.3421378 -31.40794689 0) (89.16489145 -30.75113891 -3.126765794e-18) (84.38055033 -29.75622419 1.487292151e-17) (84.99045239 -29.8840255 0) (87.76127676 -30.53413715 3.763218787e-18) (92.92322301 -31.6870578 2.455179185e-19) (85.92194644 -30.05716915 2.441401717e-18) (87.77420716 -30.4909599 1.726179878e-19) (84.87856407 -29.81537075 1.931756298e-18) (84.36584243 -29.78716761 -2.840382886e-18) (91.97103477 -31.56838805 -3.848726424e-19) (85.95439055 -30.00195868 4.831702065e-19) (84.80308463 -29.67659894 8.161970345e-19) (78.71462327 -28.32272128 1.377161618e-18) (81.29179541 -28.63693827 6.587932966e-19) (87.85206161 -30.18991569 -9.86747929e-20) (86.96343265 -30.07972418 9.79948912e-20) (160.4648136 41.56382411 0) (158.888764 44.17743419 0) (161.4197986 45.30068422 8.259887001e-18) (158.2852241 33.63133863 0) (160.3853138 34.44549499 0) (161.3532186 32.43807173 0) (162.2925514 37.22930658 0) (161.5846945 39.2893001 0) (156.386741 -1.262490289 3.339991466e-18) (155.7932116 -1.093869852 0) (156.063073 -0.2279121557 0) (155.2411091 -2.993347539 0) (155.7083756 -1.907218743 0) (156.0248855 -2.072640247 7.611247499e-18) (157.8959154 2.426971391 -8.209786822e-19) (156.9143926 2.506633865 -3.661105e-18) (157.2081379 3.468406591 -1.888977176e-20) (156.335503 0.6610815148 1.82038805e-19) (156.6237004 1.573782908 0) (157.5399306 1.468583773 -8.031149196e-19) (141.8094064 -22.29235791 0) (141.9785539 -21.82289825 6.065166514e-18) (142.5290134 -21.3918601 0) (139.3392465 -23.17111708 -9.397764817e-18) (140.0313588 -22.77684754 2.412620234e-18) (137.779462 -24.37114145 -2.506106522e-17) (135.1915268 -24.54052257 6.889837817e-17) (135.5517853 -24.91334425 -3.472978774e-18) (137.4379771 -24.21386244 -1.817460992e-18) (141.6906519 -21.2760971 -3.096457728e-18) (141.4141711 -20.81991907 4.034752555e-17) (143.4509288 -20.42917978 -2.879870688e-17) (144.1379529 -20.03870645 1.980648994e-18) (144.6238921 -19.63048452 1.96370501e-18) (143.0872785 -20.94825492 0) (143.6351703 -20.48886592 0) (143.2967463 -20.89779163 2.284798029e-18) (118.4263697 -30.53989604 0) (119.4797503 -30.76688886 0) (123.4446575 -31.19593308 -1.413662709e-18) (115.5617284 -30.32162752 -2.2125607e-17) (116.1118871 -30.68757179 4.785593421e-18) (116.3394937 -30.57727704 0) (123.4220202 -30.6494016 2.852752674e-18) (119.3883291 -30.14434248 0) (118.9885908 -30.35796271 -2.981841463e-18) (129.0158273 -29.46999844 0) (129.1331407 -29.27726655 0) (125.9958007 -29.12329587 1.004375358e-17) (73.62142196 -10.89698744 0) (75.45352301 -10.29611795 -1.231012395e-18) (78.68959112 -8.684159568 2.907604968e-18) (78.97569519 -8.628411491 9.111078365e-19) (78.8455138 -8.961920741 0) (77.92572248 -9.162407263 3.231837557e-18) (78.02578531 -8.805212821 -2.041869458e-18) (78.3663331 -8.733644782 1.020577412e-18) (65.8718653 -12.20407847 -5.985930291e-18) (64.30403953 -12.11438409 0) (64.66869294 -9.873928783 0) (59.42521323 -11.80374454 0) (61.48376387 -12.36094657 0) (69.0222226 -10.71901048 0) (68.77538333 -11.8850767 0) (67.39479512 -12.0894819 0) (159.6531483 15.94860991 0) (158.1480763 15.94125525 0) (158.1494405 17.22449691 1.359177532e-18) (158.1731402 13.45346611 0) (158.1466439 14.68586158 0) (159.5910142 14.63525902 0) (161.1608907 14.94490311 0) (161.3242284 16.3166673 -1.034839261e-17) (160.3863738 26.51684136 -4.703164689e-20) (162.577612 27.29284059 0) (162.4695319 25.62700419 1.503389366e-17) (162.1529305 30.67774391 0) (162.5654916 28.99154506 0) (160.1939313 28.29134097 2.74398451e-18) (161.6478756 20.2288201 6.664419995e-18) (162.4345611 24.11139969 0) (162.6618451 22.0037516 0) (161.2248289 21.63761866 0) (82.50122523 -7.913009875 -2.395646169e-19) (82.58594802 -7.915564768 -4.244702076e-18) (82.22967692 -7.932606331 1.262205862e-18) (81.9360723 -7.963605712 0) (82.29617883 -7.896495242 9.395388073e-19) (82.40567864 -7.908388156 0) (82.68171731 -8.090685071 3.519755331e-21) (82.73105468 -8.136578247 9.476223911e-19) (82.57068009 -8.023957488 -1.879832734e-18) (82.6285103 -8.05412723 -2.949882532e-21) (80.51681321 -8.177971524 -1.78544694e-18) (80.68722154 -8.122974965 2.686172161e-18) (80.42646291 -8.24762714 -2.096051316e-18) (79.88854744 -8.483920806 -1.057214509e-18) (80.13003643 -8.312424522 8.850622257e-19) (80.33294046 -8.243008711 8.868320834e-19) (81.64863548 -7.90075565 9.115564181e-19) (81.77638625 -7.885580899 4.539780792e-22) (81.46773725 -7.954366077 1.041726365e-18) (81.08723287 -7.992588502 3.126943322e-18) (81.39738697 -7.917252523 -2.723623977e-18) (81.52003313 -7.908534853 -5.783789177e-22) (149.4444432 -13.75609859 2.828878799e-18) (149.8552904 -13.24431829 0) (150.2573463 -12.56885829 2.641381385e-18) (148.9922827 -14.54952233 -5.013313291e-18) (149.4282804 -13.90021664 0) (148.9502143 -14.40621718 -2.817869415e-18) (151.1113665 -11.05163249 -5.408381017e-18) (151.5481256 -10.57670025 -1.336332589e-18) (152.0069113 -9.891018441 0) (150.6516501 -11.90370551 -5.415645895e-18) (151.0778773 -11.24740857 4.098238656e-18) (150.7529189 -11.69022108 1.551707435e-18) (85.64171784 -8.925971286 1.440866791e-18) (84.97671725 -8.942693484 1.70087195e-18) (84.92688132 -8.92410893 8.513550123e-19) (85.11695303 -8.990160987 1.700606274e-18) (85.04021504 -8.968804854 -2.554469464e-18) (85.7092073 -8.948302604 2.898873616e-18) (85.37186052 -8.9049807 -6.939249653e-19) (84.75387394 -8.956035256 2.481297964e-18) (84.68210533 -8.974594888 0) (84.88275421 -8.918515366 -1.692748724e-18) (84.8284266 -8.931420383 0) (85.45169784 -8.900551274 0) (86.13859757 -9.038379856 -1.50568519e-18) (85.4516529 -9.023551993 3.416600383e-18) (85.41985022 -9.002575883 -1.705197687e-18) (85.53549126 -9.091286414 -8.555240534e-19) (85.48842295 -9.05406493 0) (86.18604573 -9.066265309 0) (85.92844349 -8.992211571 0) (85.27504843 -9.001629454 -8.511703634e-19) (85.1985867 -9.000098864 2.547312501e-18) (85.38571081 -8.993099181 0) (85.33855542 -8.995696727 0) (85.99211436 -8.997299111 0) (83.36959323 -8.650807324 2.15555642e-21) (83.48182432 -8.695448923 9.439562906e-19) (84.32912444 -8.525605557 3.151209049e-18) (84.00967324 -8.621023268 -2.474036845e-18) (83.89769501 -8.575583032 2.464541556e-18) (84.23239366 -8.701076965 0) (84.12154175 -8.662561729 0) (84.43853419 -8.569779521 -1.100673273e-21) (83.1312979 -8.54496374 -1.895192455e-18) (83.25503939 -8.600010539 7.924278254e-22) (84.1969474 -8.915459917 4.947711039e-19) (84.2747327 -8.929415882 2.279969252e-18) (85.15796659 -8.827485065 -7.732860967e-19) (84.84199757 -8.907641925 -2.128863975e-18) (84.74429206 -8.869612072 4.850787484e-19) (84.66073139 -8.97751285 1.465288219e-18) (84.6724455 -8.954059638 0) (85.19301256 -8.847101515 7.282447843e-19) (84.76229055 -8.685173729 8.076360384e-19) (84.44977425 -8.770563271 1.684285128e-18) (84.34193871 -8.737089749 -8.327244196e-19) (84.65806866 -8.835200844 1.709704092e-18) (84.55494249 -8.803160117 8.491741669e-19) (84.86756096 -8.719530874 -2.867307525e-21) (84.01578212 -8.863268302 -9.399876225e-19) (84.11590678 -8.889755495 4.789182746e-19) (128.6602952 -27.58317677 7.053987725e-18) (129.094992 -27.37024038 7.188890601e-18) (126.7738104 -28.03627232 0) (129.9664058 -28.15840496 8.660299376e-19) (129.4782954 -27.81152884 0) (136.4984889 -25.50970985 0) (133.810999 -25.69012379 -2.137731844e-18) (133.2101269 -25.93603349 2.064221666e-18) (135.1110443 -25.21467379 1.136019543e-17) (134.4332688 -25.46411203 1.679572144e-17) (136.9824122 -25.27794771 -7.881521329e-18) (135.0998689 -26.40179939 -8.021255289e-19) (132.7991197 -26.52927876 0) (133.16926 -26.82070443 4.549150763e-19) (132.7519509 -26.17332503 0) (132.1776438 -26.38142289 0) (135.3380519 -26.25669315 3.22511376e-18) (87.36766688 -9.784810856 -2.178593797e-18) (87.85155715 -9.768150636 -3.784913589e-22) (87.89952905 -9.810333625 -2.095606541e-18) (87.74546477 -9.67315048 -1.372433625e-18) (87.7982437 -9.723748813 0) (87.30985036 -9.743000597 7.169116074e-19) (86.43964311 -9.724048394 4.244711934e-21) (86.50981839 -9.760075428 4.047651136e-19) (86.28196782 -9.450931071 0) (86.2881207 -9.509861628 0) (86.57164902 -9.83289031 -1.23646895e-18) (86.22786004 -9.861414892 -1.46879288e-18) (87.0455779 -9.916618928 -4.768899474e-18) (87.88705616 -9.926262864 6.302126498e-19) (87.82872682 -9.975274648 -6.027090175e-19) (87.9300662 -9.851788003 6.748096964e-19) (87.95552408 -9.905813672 -6.673824957e-19) (87.44499594 -9.905319504 1.83854099e-18) (86.18304886 -9.258199011 -9.543675703e-18) (85.4916336 -9.221640899 2.636518352e-17) (85.75868252 -9.208494105 -7.838250548e-19) (86.08834736 -9.276479359 -2.699406762e-18) (86.35470326 -9.158177375 0) (85.65362593 -9.149753968 0) (85.59355643 -9.124262755 2.573504894e-18) (85.73409071 -9.19570797 2.27370217e-19) (85.70825608 -9.171090204 1.30346343e-18) (86.41030761 -9.184526354 -7.862779639e-19) (86.23181718 -9.33867653 9.717341784e-22) (86.25405956 -9.3547064 7.931355213e-19) (86.09881128 -9.293431418 -2.33912134e-18) (86.13613307 -9.302196559 2.356943916e-18) (112.8454354 -31.15188544 1.312485432e-18) (117.7147097 -31.9625134 0) (117.7287714 -31.78803631 0) (118.2672225 -32.33011883 1.061196044e-18) (117.8999515 -32.20162727 -1.612899225e-18) (112.3997763 -31.32964384 5.485018454e-19) (115.2879363 -30.96248316 0) (115.7655369 -30.81754643 1.409991154e-18) (117.507281 -31.55127422 0) (116.4760206 -31.20814284 0) (112.4482936 -30.66231462 0) (90.91990825 -31.01310266 -1.311558174e-18) (97.08070236 -32.3853232 1.173037683e-18) (96.51864933 -32.1346018 3.188013635e-19) (98.46019349 -32.78108435 0) (97.61766717 -32.64265075 6.554036208e-22) (90.408537 -31.02375215 5.604994916e-19) (88.15855149 -11.32423697 2.814251458e-18) (88.27924556 -11.36700254 0) (87.96085367 -11.1551741 1.419756977e-18) (88.04232144 -11.25286116 -7.080976224e-19) (89.59532019 -11.54155077 1.262300625e-18) (89.55894311 -11.50088509 0) (90.19632725 -11.48787238 0) (88.49695323 -11.44949305 -1.840031106e-19) (88.52394796 -11.45493251 1.918901661e-18) (88.37803872 -11.39817742 1.40492046e-18) (88.45895613 -11.42455243 0) (87.32991404 -10.39018325 -3.002796221e-18) (88.29983929 -10.43879435 1.982821862e-18) (88.335039 -10.47302982 1.332888028e-18) (88.2113889 -10.37993872 -1.299002228e-18) (88.25870212 -10.40832279 0) (87.29047929 -10.36771386 2.247677455e-18) (87.38517784 -10.56235819 -8.123933371e-22) (88.40644075 -10.63260429 3.489644439e-19) (88.40657689 -10.71642161 -3.531382426e-19) (88.36377475 -10.51370755 -2.695539923e-18) (88.38558901 -10.5662607 -2.727350918e-18) (87.38330684 -10.49401257 3.805352878e-19) (99.23202932 -31.74925949 1.416667736e-18) (92.97511291 -12.73619468 -1.19361638e-21) (93.18058214 -12.78680442 0) (92.49956779 -12.98201854 0) (61.45074475 -20.43425916 -5.692698332e-19) (49.86288698 -17.68170473 2.586567858e-18) (46.44705359 -16.48879713 0) (50.96803154 -18.52412653 -1.083980276e-18) (51.23616855 -18.28213262 -2.31127614e-18) (60.29327532 -20.33849042 -9.715125638e-19) (91.20082359 -13.06666256 -1.325901467e-18) (63.63827052 -22.21369431 -1.481806122e-18) (72.54074436 -24.29095129 -1.041828056e-19) (71.27292004 -24.37800624 -1.362985741e-19) (90.53720652 -11.96164827 5.594839586e-19) (89.37581458 -11.89010711 -3.207533105e-19) (89.32486781 -11.88099803 -2.559716121e-18) (74.9538563 -27.28770672 5.174477095e-19) (66.28987765 -23.95417147 -6.925974024e-20) (66.77381793 -24.25556948 9.059825431e-20) (69.95155646 -24.22129653 9.77073389e-20) (67.8993045 -24.00415653 0) (61.65861682 -22.56384205 0) (65.99336102 -24.27729324 5.145293233e-19) (78.84525065 -27.54052104 -7.199879665e-20) (70.30159542 -25.54168327 4.374375109e-20) (71.87900374 -25.61282421 -7.404513853e-20) (89.22142377 -12.31464656 -2.283757036e-17) (89.58640972 -12.19851423 1.375517732e-18) (90.778772 -12.29572492 1.157706166e-18) (99.62818875 1.03800444 -1.465652087e-20) (99.55059442 1.394308523 6.876678254e-21) (99.84883894 0.8576964926 6.869632471e-21) (99.52038026 1.529242751 -2.058030686e-20) (99.46606056 1.978775088 -6.283552797e-21) (99.82561999 1.197729032 -3.715324895e-22) (99.44837355 2.139754104 -1.197403701e-20) (99.46452114 2.629258978 3.191896452e-20) (99.83189299 1.572937828 4.569617471e-21) (99.4736365 2.790030535 -1.863561328e-20) (99.58596027 3.233898127 3.314963124e-20) (99.88561111 1.906237757 -1.633081055e-21) (99.62707374 3.358371632 1.494173166e-21) (99.84478223 3.618599366 4.069878614e-21) (99.98289451 2.113599086 -1.472323793e-21) (99.91141181 3.659725639 -5.688375346e-23) (100.1611373 3.628364095 1.163215523e-22) (100.0917979 2.121358165 -2.147279255e-22) (100.2216272 3.568011044 2.430647636e-22) (100.4058853 3.265424568 3.779832113e-21) (100.1759927 1.929594977 0) (100.4354468 3.134257584 3.274247026e-21) (100.51386 2.691682951 -4.024886911e-21) (100.2120615 1.615057808 0) (100.5158338 2.537614939 2.203849303e-21) (100.5138094 2.076490615 5.496648237e-21) (100.2076563 1.259536856 -4.595294469e-21) (100.4936635 1.927246996 -2.593184585e-21) (100.4385609 1.513193746 0) (100.1763443 0.933756596 -1.141153093e-20) (99.12854517 1.445931932 -1.571948441e-20) (98.92221013 1.990314265 -1.521899441e-20) (99.4181493 1.558180433 0) (98.85612896 2.199421191 -3.719402954e-21) (98.70119759 2.900963631 1.370138489e-20) (99.30536177 2.226408459 -1.58619163e-20) (98.66546204 3.160813083 -2.076135833e-19) (98.64158907 4.001900743 -1.917143711e-21) (99.29906287 2.976199674 -6.281430048e-20) (98.66804783 4.292518552 -2.344602641e-20) (98.89585056 5.131878733 0) (99.45162647 3.690450223 -1.780742119e-21) (99.02322461 5.378357947 6.1653482e-21) (99.5627211 5.916311613 -2.487910309e-20) (99.79073469 4.153060878 8.677812579e-21) (99.77516657 6.005714503 -3.700623139e-20) (100.429172 5.956529032 -1.306519446e-20) (100.210242 4.167568944 -2.10179066e-21) (100.6235607 5.838132346 1.045782014e-20) (101.0738604 5.245079827 -8.834609423e-21) (100.5321402 3.734873749 4.887845805e-21) (101.1675835 4.992499876 5.762967625e-20) (101.3037774 4.166042472 1.775675328e-20) (100.6678671 3.055198399 2.133086595e-21) (101.3074465 3.887954323 0) (101.2440718 3.10013202 -1.137148187e-20) (100.6643199 2.343793848 -2.082240649e-20) (101.2051131 2.859675142 9.710202643e-20) (101.0544088 2.203304749 -3.0454169e-19) (100.5666778 1.698844129 -1.228256429e-20) (98.44649348 1.648437078 5.199089438e-19) (98.05837042 2.336807234 3.970907038e-19) (98.72512411 2.107126943 -8.274851033e-21) (97.92901862 2.608927952 -4.008285407e-19) (97.56231816 3.580192207 -2.689068505e-19) (98.45381378 3.099433922 0) (97.45789637 3.959739174 -2.535721048e-19) (97.26745113 5.267690794 -2.848674169e-19) (98.35849071 4.334907493 9.940576805e-20) (97.26771058 5.7529007 4.422601403e-19) (97.5817031 7.270355205 3.224799728e-19) (98.64323974 5.641606166 7.220315362e-20) (97.818222 7.754731165 -7.430047378e-19) (98.95867409 8.883104285 -1.169135254e-19) (99.45425051 6.576182598 5.836163197e-20) (99.44988046 9.082812276 -5.990294372e-20) (100.9690303 8.996251431 5.537297648e-20) (100.5315787 6.629675742 4.265117732e-20) (101.4125733 8.751824598 7.200216523e-20) (102.3525313 7.585178604 0) (101.3220515 5.790456456 -5.176484544e-20) (102.5239357 7.114639738 -8.830939486e-21) (102.6851175 5.664635394 1.880530526e-19) (101.584334 4.542434267 0) (102.6494388 5.195449818 2.060442423e-19) (102.3983987 3.956380087 -1.121033268e-19) (101.4870722 3.334257671 1.446087767e-19) (102.286163 3.600674199 0) (101.9305338 2.690340715 0) (101.2516466 2.35018252 0) (97.67777193 1.542732 7.345874497e-20) (97.02865573 2.280895589 -6.097907061e-19) (97.81390282 2.362439207 9.232908519e-21) (96.79331533 2.589635294 -6.324726893e-19) (96.04328476 3.760308201 1.195139078e-18) (97.21484852 3.689637083 5.476447391e-19) (95.78586297 4.253986314 2.947239143e-19) (95.10028616 6.105379161 -1.252977928e-18) (96.80927872 5.539794976 2.345289777e-19) (94.93779737 6.863765274 2.613037132e-18) (94.96898423 9.594403801 0) (97.09009495 7.844357666 0) (95.27073136 10.60603596 4.176190846e-19) (97.48744479 13.27023334 2.585009625e-19) (98.70808049 9.800360769 -3.537941394e-19) (98.62158478 13.77605983 -9.949005548e-21) (102.1859602 13.48416144 2.051037937e-19) (101.177686 9.940792217 0) (103.1378088 12.86365838 -2.038401348e-19) (104.8101583 10.33256989 -1.877077611e-19) (102.8214176 8.239834414 0) (105.0226483 9.421079381 7.546809648e-19) (104.9609775 6.957266215 -1.096464446e-18) (103.1544359 6.013806356 -1.82591932e-19) (104.780302 6.25099276 2.265979787e-19) (104.0552504 4.492992684 -4.006347835e-19) (102.7658414 4.132023479 -1.070972774e-20) (103.7912581 4.019697521 -1.29676901e-19) (103.0495179 2.867107942 0) (102.1887547 2.768106547 -6.037394632e-20) (96.95284267 1.077164795 0) (95.98990401 1.744722841 3.442883091e-19) (96.76068652 2.196809857 1.94495075e-21) (95.61905878 2.031602332 0) (94.32176588 3.160815978 -1.11311019e-18) (95.61535401 3.688807565 -3.19985961e-19) (93.81949119 3.655665003 -3.873274268e-19) (92.08122867 5.689182564 0) (94.41235379 6.153860024 -1.162593243e-18) (91.44258692 6.639533151 1.366001347e-18) (89.64826953 11.01728707 -3.030650025e-18) (93.96587023 10.12984386 5.977869271e-19) (89.34661279 13.27258804 2.167743882e-18) (93.35347085 22.7119893 -3.576509109e-19) (96.82295747 14.7816767 -1.867231416e-19) (95.02625332 23.80254127 0) (106.205488 20.93393729 3.748078534e-19) (102.7532237 14.98812141 -4.844188428e-19) (107.9506465 18.87570437 -1.387509017e-18) (109.6777945 12.89751809 6.922876576e-19) (105.7380628 11.03562976 -5.899163537e-19) (109.5411932 11.27787927 -7.11062276e-19) (108.3097094 7.498575753 0) (105.6921331 7.199620064 -1.389158428e-19) (107.773091 6.541293997 0) (106.1509606 4.365020322 -9.143865468e-19) (104.5449044 4.539702653 7.981169053e-19) (105.6476799 3.822573604 0) (104.3278584 2.578607903 4.345505985e-19) (103.3603292 2.844624755 0) (96.42328068 0.2740241212 -8.524827182e-20) (95.1988306 0.6985740417 3.744582576e-19) (95.75732035 1.527504168 -1.083859734e-18) (94.71259736 0.8842765122 7.730320555e-19) (92.92770085 1.608499741 -4.253769953e-19) (93.91687968 2.860107394 -3.940196298e-19) (92.18877715 1.920354351 -1.090814993e-19) (89.29126163 3.170430619 -9.173588773e-19) (91.28218403 5.279466171 -4.252970366e-19) (87.98921291 3.73009786 -9.914552278e-19) (80.98986048 6.109064699 1.218487745e-18) (87.7279729 10.73480833 2.092739306e-18) (83.72840748 11.44877565 -4.643280917e-19) (81.4383801 17.58523593 5.201791687e-19) (87.73753849 17.22586542 1.394342839e-18) (90.43551981 35.62843578 1.549952625e-19) (105.2671401 34.93289459 8.776460057e-19) (101.6794936 26.37973364 -6.596865795e-20) (114.083748 23.21963747 9.406942253e-19) (113.9319809 18.50600052 1.183547785e-18) (111.2405029 17.7750391 6.210510617e-19) (116.3001567 10.35156852 -1.078499881e-19) (112.4109788 6.157607921 -8.895445285e-19) (109.3023727 7.381983968 0) (111.2692486 5.214507174 1.323885263e-18) (108.3444261 3.211713354 -3.905339818e-19) (106.7155505 4.183012973 -3.21500017e-19) (107.5324387 2.742453074 -6.891821187e-19) (105.5393528 1.709669234 0) (104.6485073 2.416691785 2.295767661e-19) (96.2253512 -0.7487085771 -9.010444897e-20) (94.8826009 -0.6658189845 -3.920218877e-19) (95.06913148 0.3761834716 -3.826149842e-19) (94.35210958 -0.6263673083 -4.040130023e-19) (92.42509534 -0.5061015397 4.454351691e-19) (92.70443802 1.104971129 8.588336807e-19) (91.63901272 -0.4781131092 -8.750314305e-19) (88.65601778 -0.5546455405 5.042826903e-20) (88.89050919 2.240275032 -4.971816209e-20) (87.28339474 1.447660465 0) (85.6549702 1.604029652 8.084981627e-19) (85.8855521 2.997534735 0) (78.66935838 3.376312933 -2.62252488e-18) (76.68186959 3.350232778 -3.588826349e-19) (76.76075163 5.33335078 2.245556309e-20) (133.3665739 18.01882275 0) (127.3845435 12.96009562 1.761355867e-20) (122.8314142 16.45885921 0) (122.0185507 4.333369956 0) (115.6292276 2.330660555 -6.748514691e-20) (113.3814086 5.423865739 -9.960335134e-19) (113.956407 1.880109782 -2.483917131e-19) (109.9473062 0.9482059272 -4.046141849e-19) (108.8272754 2.74164007 1.135349571e-18) (108.8897573 0.7376975872 -3.921084437e-19) (106.3721237 0.2880971682 6.921895362e-19) (105.7966166 1.398357933 0) (96.41257648 -1.821379086 6.23510419e-19) (95.11542116 -2.053865402 -9.915211833e-19) (94.88867842 -1.021993072 7.972542217e-19) (94.61285218 -2.141792394 0) (92.84579281 -2.494615766 -2.196538974e-19) (92.45576921 -1.031363557 -8.929202976e-19) (92.15576773 -2.661910303 5.591705554e-20) (89.73136573 -3.435186154 0) (88.83011031 -1.382050988 9.938291125e-19) (87.9997182 -2.457007321 -2.03904163e-18) (86.8534426 -2.873508589 -8.779828894e-21) (86.38574645 -1.975775784 2.005826621e-21) (82.85534251 -4.359774316 -2.284126027e-18) (82.31263058 -5.000961697 1.434266357e-18) (81.64325833 -4.567049452 -8.81116476e-19) (139.0229979 -0.9274250398 0) (132.1250362 -0.3526549392 -5.804390696e-20) (131.6870271 4.862560613 -8.082099046e-20) (122.7685508 -3.879885904 -1.541485538e-18) (116.2687415 -2.767616686 -1.411752556e-19) (116.0609321 1.095624922 1.215121209e-18) (114.525806 -2.50777269 0) (110.3107428 -1.924117076 -8.352845239e-19) (110.1687305 0.2580646217 1.651190503e-18) (109.1938178 -1.778118169 -9.835126848e-19) (106.5372536 -1.447445417 6.126315592e-19) (106.4832615 -0.1303267421 0) (96.93105535 -2.795607401 -8.651939764e-19) (95.76774334 -3.264812473 7.668236742e-19) (95.24354489 -2.377771055 1.990792362e-18) (95.32552277 -3.440412413 0) (93.8106417 -4.07714165 -4.166518615e-21) (93.04838042 -2.930589372 1.084384549e-18) (93.23557333 -4.341635463 -1.308801016e-20) (91.28123033 -5.362917837 0) (90.09921625 -3.989478729 -1.854132099e-18) (89.68084476 -4.912069924 1.832130003e-18) (88.87609937 -5.396624335 -9.55697137e-19) (88.37472759 -4.884783274 2.184459589e-19) (86.28609013 -6.742082122 -2.404586522e-19) (85.95885682 -7.247521046 -8.0643662e-19) (85.4089323 -6.941771053 0) (132.3200938 -14.79899001 -7.221207021e-20) (127.9108416 -11.56616755 -1.796285826e-18) (130.1490843 -8.036346235 3.777526448e-18) (119.3221375 -10.38339336 7.06844495e-20) (114.3576814 -7.215917934 2.826981157e-20) (115.9944753 -4.001102682 0) (112.9375646 -6.41903227 0) (109.3585038 -4.605745025 5.871705222e-19) (110.1895871 -2.642397279 -4.019616105e-19) (108.3771912 -4.154259592 -1.466160818e-18) (105.9857972 -3.132415095 6.776237884e-19) (106.4684601 -1.887022706 6.940249996e-19) (97.6995875 -3.594359862 0) (96.70787608 -4.221310327 3.602774419e-19) (95.98049471 -3.529289289 -1.526822427e-18) (96.33432112 -4.452215907 0) (95.06661059 -5.256800265 -9.73007627e-19) (94.10333776 -4.407879704 -8.185604435e-19) (94.58798698 -5.574989687 7.765556791e-19) (92.95230539 -6.729324245 -4.48833728e-21) (91.68954582 -5.745500131 -1.673581843e-18) (91.4478147 -6.539095393 8.097674152e-19) (90.78506093 -7.010736349 2.122218235e-19) (90.31960178 -6.653526682 0) (88.67048593 -8.153963413 8.263361414e-19) (88.40542989 -8.520810497 -7.01166494e-19) (88.01138953 -8.302382402 7.185377999e-19) (122.4982178 -21.20124213 1.458701047e-18) (120.3431782 -17.5936322 2.643800782e-18) (123.2969529 -16.01060798 1.622545784e-21) (114.0731998 -13.91513203 1.004814746e-18) (111.0131526 -9.997012353 1.141784287e-19) (113.6069824 -8.080483349 -4.647325648e-19) (110.0565928 -8.966308275 5.644533853e-19) (107.4848619 -6.543733166 0) (108.9559802 -5.175017653 -7.42473317e-19) (106.7407783 -5.921741553 -5.01059805e-21) (104.8565292 -4.477763639 -9.72265629e-21) (105.7480188 -3.509605915 4.19496009e-20) (98.63443097 -4.178343806 -6.163683503e-19) (97.82967972 -4.897912277 -3.415794156e-19) (96.97465431 -4.417653424 -1.066551903e-18) (97.52822963 -5.160406613 2.514268784e-20) (96.50530348 -6.066714087 5.87832482e-21) (95.41164366 -5.494037522 7.583951252e-19) (96.11779858 -6.421583623 -1.525807741e-21) (94.77462626 -7.702528437 -6.617598947e-19) (93.39028378 -7.009645896 -1.477326103e-18) (93.27657525 -7.748654622 5.223037289e-19) (92.64676844 -8.469723327 -6.745538664e-19) (92.19449178 -7.97388352 -1.900318505e-19) (90.67974858 -9.489653614 1.861298143e-19) (90.39669544 -9.876225231 6.430140389e-19) (90.00865307 -9.603917917 1.308674759e-18) (113.0912623 -22.55581646 0) (113.1622218 -19.91283785 2.294444094e-19) (115.078167 -19.77381887 0) (108.7911375 -14.73733091 -9.858326871e-19) (107.361333 -11.04684754 -1.605555916e-19) (110.0932732 -10.41487372 3.975090165e-19) (106.8269295 -10.03264185 7.393904574e-19) (105.2348039 -7.561077745 -5.424028486e-19) (106.9377831 -6.882007129 -1.588567315e-19) (104.7368922 -6.904325517 1.101881642e-18) (103.4068487 -5.338452729 -7.582921478e-19) (104.5136 -4.739789031 0) (99.65085952 -4.547777419 5.611424764e-19) (99.03431975 -5.304101123 0) (98.12836553 -5.020446153 0) (98.80402285 -5.579695943 -1.820333167e-18) (98.03107353 -6.527384074 2.964417985e-19) (96.88315115 -6.213085844 9.909866675e-19) (97.74133984 -6.899002571 -2.181868497e-19) (96.75418737 -8.264512552 -5.572302066e-19) (95.25966586 -7.879064145 -1.246897094e-18) (95.31527313 -8.586181772 1.179196941e-18) (94.87794262 -9.340043486 5.542148005e-19) (93.99441582 -9.072465079 -1.204127371e-18) (93.23660906 -10.79274477 5.146252232e-19) (92.85926522 -11.35630527 -2.126106852e-21) (92.33221504 -11.09502855 -5.669180918e-19) (101.4120945 -30.09159308 0) (103.447359 -28.14505424 6.092250021e-19) (105.353462 -29.46132423 -4.00974726e-19) (103.490003 -18.11866076 8.730207241e-19) (104.5197967 -14.71679416 0) (107.8473936 -15.98763198 0) (104.5536396 -13.64690027 0) (104.1627758 -10.76188856 2.065180398e-19) (106.4993754 -11.07863598 -2.142632588e-19) (103.9221535 -9.925481964 -4.523962883e-19) (103.0522266 -7.788648201 5.6925792e-19) (104.6704974 -7.684820345 9.202838209e-19) (102.7492533 -7.194265768 3.256998657e-19) (101.8802237 -5.730826963 4.563970508e-19) (103.0248848 -5.4777652 -4.057881985e-21) (100.6872197 -4.710205762 2.308625513e-19) (100.2392697 -5.455586354 0) (99.33127124 -5.366090295 7.148823815e-20) (100.0740531 -5.72261018 2.537058642e-19) (99.53581311 -6.622359511 0) (98.40625331 -6.585204472 0) (99.34364408 -6.96751513 -3.656235489e-21) (98.74758026 -8.200273455 -1.059550269e-19) (97.25263199 -8.31260014 -4.953022918e-19) (97.489794 -8.860589265 4.722330559e-19) (97.23597242 -9.443971807 -3.500984242e-19) (96.38841857 -9.638438101 1.418501752e-18) (96.16660865 -11.53390382 0) (96.08603875 -12.19837982 0) (95.37067621 -12.08017748 0) (96.78821341 -17.33926409 -1.73379414e-19) (99.08455862 -17.35408847 -4.156085408e-20) (99.90252335 -19.94840358 8.123275911e-20) (100.7189158 -14.06588509 -1.274353935e-19) (101.6546359 -12.3604274 -1.05521704e-19) (103.6434528 -14.16413779 0) (101.7726087 -11.70797424 -1.959529016e-19) (101.7502452 -9.75497922 -1.469158283e-19) (103.4853224 -10.56038289 -3.872637074e-19) (101.6452116 -9.136176227 0) (101.180941 -7.474737049 3.462905162e-19) (102.549758 -7.747886753 0) (101.0013527 -6.991512467 9.258756201e-20) (100.4493622 -5.754975902 -2.463550381e-20) (101.5081489 -5.766615985 -9.869203338e-21) (101.6785375 -4.689446391 -3.947545667e-19) (101.3663403 -5.395657317 -2.065690273e-18) (100.5314525 -5.458062472 -9.529981379e-19) (101.2508926 -5.642006299 1.647656049e-18) (100.8864613 -6.436610231 -7.994615832e-19) (99.89261955 -6.598131429 1.218443152e-19) (100.7631331 -6.726453236 0) (100.4263948 -7.698474803 -1.779467394e-19) (99.20616838 -8.101018083 2.252490659e-19) (100.3410797 -8.057824403 -1.693852794e-19) (100.3603132 -9.228835147 2.201147922e-19) (98.9454628 -10.18977874 -3.32250694e-19) (98.61103792 -9.589556188 3.247337253e-19) (98.04474297 -10.7421364 3.418233585e-20) (96.82297279 -12.96198091 -5.721968828e-20) (98.76053101 -11.11270859 -3.382630353e-20) (99.59993636 -11.1404972 3.359551913e-21) (99.94906167 -13.50299709 -6.345664962e-21) (99.79709622 -10.99105019 -1.895686595e-19) (100.1160932 -10.13477976 -3.48241452e-19) (101.1714935 -11.7714435 1.170917964e-19) (100.1413483 -9.76091364 -5.375447009e-20) (100.0602895 -8.512409406 -3.240878432e-20) (101.2661423 -9.451194263 0) (99.98774853 -8.085851721 9.565168754e-19) (99.6825702 -6.874708734 2.969841313e-19) (100.7715216 -7.342534371 -1.761300603e-19) (99.56532442 -6.5057139 3.034495024e-19) (99.19834501 -5.517601539 0) (100.117678 -5.71419192 2.760204066e-20) (102.5662879 -4.516887265 0) (102.3523125 -5.163706344 -1.585340671e-19) (101.6276841 -5.352294078 0) (102.2683088 -5.383328356 6.396718069e-19) (101.9982518 -6.059799456 6.212329948e-19) (101.188306 -6.357816704 7.406635086e-19) (101.9057874 -6.291978352 -1.17166791e-18) (101.6410131 -7.00274889 3.377595364e-20) (100.776245 -7.539474504 -6.54963718e-19) (101.5988144 -7.247402783 9.552788304e-19) (100.0647709 -7.899192531 7.443512554e-19) (100.6311456 -8.931503997 -4.999439768e-19) (95.42436866 -7.446995318 -7.389321139e-19) (99.46015635 -8.832246304 4.591663528e-19) (98.44862429 -10.2157418 1.230003881e-19) (99.44189313 -8.866970318 -3.456282352e-19) (99.41028662 -8.924677905 -7.501289293e-22) (99.54238562 -10.49840485 2.558328047e-20) (99.37898523 -8.84279063 2.054876325e-19) (99.21596585 -8.347521099 -4.746556019e-19) (99.85260969 -9.644562255 -1.729952921e-20) (99.14206013 -8.116624755 4.581331268e-19) (98.89472423 -7.316736683 0) (99.72674445 -8.204266432 -1.032098088e-19) (98.80510814 -7.031872009 0) (98.52558022 -6.182880483 6.175252275e-20) (99.36415561 -6.704357353 0) (98.43186709 -5.911531616 -6.301695685e-20) (98.15800527 -5.135303012 0) (98.91883461 -5.431240711 0) (103.3268485 -4.227876404 0) (103.1644038 -4.795072674 -2.358609994e-19) (102.5716811 -5.083386797 -1.516481917e-19) (103.0922617 -4.984682258 1.902743929e-19) (102.8357076 -5.542916491 -5.666985282e-20) (102.2324742 -5.940424363 1.268031857e-18) (102.7394056 -5.724621656 5.452047867e-20) (102.5319305 -6.264820089 1.166525566e-20) (101.8858039 -6.818388417 0) (102.5169332 -6.454769834 7.022616452e-19) (96.65846122 -6.386619532 0) (99.34868908 -7.497262645 7.450872953e-19) (93.93322935 -6.371591938 0) (99.95042493 -7.300706111 0) (99.67720944 -8.409998334 -3.671451901e-19) (99.64496882 -7.372142522 1.260883121e-19) (99.19441414 -7.367394496 3.350470914e-22) (99.36496755 -8.490399179 6.560918468e-21) (99.03640934 -7.30315372 4.716112327e-21) (98.57631476 -6.965332662 0) (99.03818054 -7.967690269 1.255835053e-20) (98.43720657 -6.816266544 -2.308901287e-19) (98.06341199 -6.288250054 1.201122454e-19) (98.66079298 -7.041356074 0) (97.95208846 -6.096205223 -1.617458564e-19) (97.64907704 -5.499885226 0) (98.2833266 -6.009088987 0) (97.55705876 -5.296823938 0) (97.31349797 -4.687961808 0) (97.92976586 -5.027259963 0) (103.9655399 -3.884497793 0) (103.815991 -4.350657581 0) (103.3411492 -4.686796541 -7.494235663e-20) (103.7437093 -4.505338051 0) (103.4611466 -4.958628926 4.705040023e-20) (103.0076242 -5.400736811 -4.232674413e-19) (103.3524823 -5.104658409 3.960045473e-20) (103.099569 -5.51706342 3.020830004e-19) (102.7119796 -6.079471783 1.409218883e-18) (102.6924824 -5.628421086 8.664924333e-21) (95.32332603 -5.523189532 4.922132719e-21) (95.99272416 -6.109418238 0) (95.98753818 -5.850612814 0) (99.9255746 -6.181504337 6.077331087e-20) (99.95976026 -6.989080646 2.710555094e-19) (99.63396325 -6.230154187 -9.633816633e-20) (98.94639398 -6.187188259 -8.799863795e-20) (99.13010374 -7.043220632 -4.878816052e-21) (98.7281071 -6.133440821 5.836706043e-20) (98.11532807 -5.903297354 -5.112873152e-20) (98.44453851 -6.673365253 0) (97.93762011 -5.802004866 -2.456794472e-20) (97.47198045 -5.439858626 0) (97.89569256 -6.061238327 -3.838160655e-20) (97.33684795 -5.303093269 0) (96.98507127 -4.859247129 0) (97.46576656 -5.334998558 0) (96.88485164 -4.703371451 0) (96.63566708 -4.223743674 0) (97.12982945 -4.571743478 0) (104.4969463 -3.525721053 0) (104.3386659 -3.906685473 0) (103.9575883 -4.238354669 0) (104.2601349 -4.030310811 0) (103.9508849 -4.386494288 0) (103.5953361 -4.811142911 0) (103.8330703 -4.499921031 0) (103.414031 -4.79911765 0) (103.1873302 -5.329739767 7.109072493e-20) (102.7416391 -4.849387588 0) (95.78759009 -4.879876734 0) (95.39808676 -5.364402896 -1.716810461e-19) (97.25627447 -5.114356955 0) (99.93492583 -5.289551593 0) (99.91695168 -5.942410641 -5.539248958e-20) (99.63360137 -5.305140124 0) (98.79910135 -5.263362122 0) (98.89942922 -5.933762021 8.608094524e-23) (98.53418168 -5.227469166 0) (97.80994185 -5.060663621 0) (98.02917134 -5.676080593 0) (97.59644413 -4.987053207 0) (97.03984412 -4.719652187 0) (97.35172806 -5.248985499 0) (96.88057737 -4.617038587 0) (96.4745923 -4.277682232 0) (96.84497087 -4.707899451 0) (96.36199375 -4.156145323 0) (96.08953708 -3.774314656 0) (96.48805808 -4.108802028 0) (104.9384601 -3.173405576 0) (104.759972 -3.485736771 0) (104.4525356 -3.79877449 0) (104.6725175 -3.585322253 0) (104.3326097 -3.867970164 0) (104.0553367 -4.251558798 0) (104.2018638 -3.956186076 0) (103.6212243 -4.17617174 0) (103.4742843 -4.633702158 0) (102.8215186 -4.207386149 0) (96.25834728 -4.280702874 0) (95.91166151 -4.725466096 0) (97.84596749 -4.453037316 0) (99.96379506 -4.549657893 0) (99.94377323 -5.090077212 0) (99.64478337 -4.554984896 0) (98.69802223 -4.52010418 0) (98.77128539 -5.063250748 0) (98.39936559 -4.492329668 0) (97.58341361 -4.365162004 0) (97.74729252 -4.874511051 0) (97.34220534 -4.309239282 0) (96.71228106 -4.104953151 0) (96.94965801 -4.556745059 0) (96.53218987 -4.025819205 0) (96.07504407 -3.760597199 0) (96.36565434 -4.142370368 0) (95.94906687 -3.664224136 0) (95.64574318 -3.356488676 0) (95.96999845 -3.666086504 0) (105.3060641 -2.839943123 0) (105.1023137 -3.097533951 0) (104.8521944 -3.385397237 0) (105.0052491 -3.178585803 0) (104.6339541 -3.406105084 0) (104.4145231 -3.747256779 0) (104.4888491 -3.476025031 0) (103.7656079 -3.642802435 0) (103.6620715 -4.035117993 0) (102.8764128 -3.664794862 0) (96.66542832 -3.755627959 0) (96.36598712 -4.141918443 0) (98.26040301 -3.888690135 0) (99.97127172 -3.939812105 2.736335905e-35) (99.96740131 -4.386477371 3.206043949e-35) (99.64170406 -3.939417871 -2.731338668e-35) (98.61672494 -3.907394322 0) (98.67618721 -4.356060987 0) (98.29308522 -3.884779827 0) (97.4083012 -3.784057205 0) (97.53557106 -4.210188936 0) (97.14577227 -3.740153344 0) (96.4571887 -3.579644257 0) (96.64267366 -3.965835339 0) (96.25958065 -3.517151303 0) (95.75677082 -3.305758563 0) (95.9887891 -3.641230339 0) (95.61788878 -3.228125482 0) (95.28199333 -2.977184313 0) (95.54804626 -3.257531546 0) (105.6131778 -2.53179522 0) (105.3831255 -2.745653902 0) (105.1777045 -3.006114691 0) (105.2768266 -2.812317823 0) (104.8760036 -2.998023972 0) (104.6993606 -3.29920985 0) (104.7166863 -3.054435471 0) (103.8710163 -3.183802341 0) (103.794935 -3.521573061 0) (102.9213435 -3.200353815 0) (97.01384771 -3.303946283 0) (96.75778157 -3.636274759 0) (98.5557247 -3.406561905 0) (99.96396465 -3.429119495 0) (99.97059585 -3.80377744 0) (99.62880241 -3.425460638 0) (98.5485444 -3.395308611 0) (98.59862108 -3.77087912 0) (98.20610435 -3.376332557 0) (97.26872789 -3.294232116 0) (97.37054102 -3.65380347 0) (96.98958241 -3.258840095 0) (96.25391871 -3.129737626 0) (96.40214313 -3.46059586 0) (96.04171589 -3.079371579 0) (95.49915629 -2.907936868 0) (95.68733758 -3.201191572 0) (95.34844006 -2.844479332 0) (94.98111491 -2.637361736 0) (95.20147927 -2.888173134 0) (105.8709462 -2.251243311 0) (105.6156905 -2.430171034 0) (105.4453451 -2.663412426 0) (105.5010063 -2.485573038 0) (105.073405 -2.639145613 0) (104.9290761 -2.903882232 0) (104.9004214 -2.685301272 0) (103.951954 -2.787878818 0) (103.8931148 -3.079296133 0) (102.9648372 -2.80135268 0) (97.31083743 -2.914551329 0) (97.09260258 -3.201162531 0) (98.7660305 -2.993322533 0) (99.94689851 -2.997177059 -3.63542682e-35) (99.96046591 -3.314393127 4.231396776e-35) (99.60955912 -2.991600359 3.628776543e-35) (98.48998711 -2.963033985 0) (98.53310196 -3.280422241 0) (98.13312659 -2.946805281 0) (97.15479291 -2.878472153 0) (97.23813702 -3.183916638 0) (96.86250359 -2.849352145 0) (96.08875828 -2.743521853 0) (96.20948049 -3.027621292 0) (95.86440928 -2.702228372 0) (95.28759533 -2.561098768 0) (95.44241602 -2.816683117 0) (95.12627278 -2.508550763 0) (94.72970665 -2.335710608 0) (94.91407699 -2.558120446 0) (106.0885979 -1.998782005 0) (105.8101548 -2.149637754 0) (105.6675382 -2.356838318 0) (105.6881059 -2.19615259 0) (105.2364688 -2.324665243 0) (105.1170569 -2.556550544 0) (105.0506355 -2.362880047 0) (104.0174237 -2.445972946 0) (103.9695079 -2.697655819 0) (103.0106568 -2.457776634 0) (97.56457524 -2.578093105 0) (97.37800216 -2.82579425 0) (98.91508347 -2.638366476 0) (99.92318385 -2.629644336 0) (99.94150196 -2.899725274 0) (99.58618027 -2.622868468 0) (98.43891951 -2.595723983 0) (98.4765843 -2.865601261 0) (98.07085035 -2.581655404 0) (97.06008931 -2.523893233 0) (97.12951199 -2.784522376 0) (96.75725211 -2.499552073 0) (95.95239927 -2.411470652 0) (96.05226199 -2.655763159 0) (95.7179054 -2.377131621 0) (95.11166622 -2.259458618 0) (95.24061022 -2.481668446 0) (94.94094773 -2.215451617 0) (94.5176818 -2.069795154 0) (94.67335028 -2.265696268 0) (106.2735056 -1.773737072 0) (105.9743064 -1.901885369 0) (105.8537739 -2.084719877 0) (105.8459066 -1.941315396 0) (105.3726845 -2.049943719 0) (105.2727954 -2.252430795 0) (105.1750255 -2.081920478 0) (104.0730519 -2.150591008 0) (104.0320847 -2.368028419 0) (103.0601982 -2.161601281 0) (97.7831684 -2.287002825 0) (97.6222101 -2.501335069 0) (99.01968951 -2.33306246 0) (99.89479153 -2.315803305 -1.216579051e-35) (99.9164629 -2.546509496 -1.414037913e-35) (99.56002137 -2.308236098 1.214362366e-35) (98.39385947 -2.28237045 0) (98.42713944 -2.512692619 0) (98.01702267 -2.270043317 0) (96.98025545 -2.220627541 0) (97.03887509 -2.443598322 0) (96.66884355 -2.2000262 0) (95.83832192 -2.125813009 0) (95.92200001 -2.335976404 0) (95.59530321 -2.096920152 0) (94.96376595 -1.997738396 0) (95.07231233 -2.190478703 0) (94.78476564 -1.960522408 0) (94.33736117 -1.83670311 0) (94.46989136 -2.00830241 0) (106.4315453 -1.574842352 0) (106.1140866 -1.684506756 0) (106.0113366 -1.844790015 0) (105.980225 -1.718222155 0) (105.4875766 -1.810834939 0) (105.4032228 -1.986978579 0) (105.2792127 -1.837854393 0) (104.1223938 -1.895672249 0) (104.0858726 -2.083276601 0) (103.1135532 -1.906385239 0) (97.97422921 -2.035156521 0) (97.83322996 -2.220568079 0) (99.09204106 -2.070510409 0) (99.86310044 -2.04746106 0) (99.88713395 -2.244728836 0) (99.53198789 -2.039358883 0) (98.35371714 -2.014646649 0) (98.38339927 -2.211442589 0) (97.97002214 -2.003747827 0) (96.91220563 -1.96105811 0) (96.96223871 -2.151898249 0) (96.59374565 -1.943443903 0) (95.74184238 -1.880273393 0) (95.81270567 -2.060885941 0) (95.49161111 -1.855719075 0) (94.83825738 -1.7713321 0) (94.93047728 -1.937993123 0) (94.65196528 -1.739583701 0) (94.1828464 -1.633489537 0) (94.29651762 -1.782984407 0) (106.5674744 -1.400519422 0) (106.2340914 -1.495059512 0) (106.1457866 -1.634619427 0) (106.0955024 -1.524119753 0) (105.5853732 -1.60371467 0) (105.5134858 -1.756186739 0) (105.3674387 -1.626767116 0) (104.1676284 -1.676316676 0) (104.1340243 -1.837671456 0) (103.1700471 -1.686978145 0) (98.14462156 -1.817772061 0) (98.01851571 -1.977746988 0) (99.14130342 -1.8452915 0) (99.82905752 -1.818258177 0) (99.85478175 -1.986705827 0) (99.50268785 -1.809780272 0) (98.31764565 -1.786086718 0) (98.34434678 -1.954053498 0) (97.92861684 -1.776369389 0) (96.8536547 -1.739172183 0) (96.89675327 -1.902258786 0) (96.52934394 -1.723978046 0) (95.65946675 -1.669719051 0) (95.72004243 -1.824533018 0) (95.40308817 -1.648663665 0) (94.73083237 -1.576241772 0) (94.80985075 -1.719766172 0) (94.53810961 -1.548935408 0) (94.04948515 -1.457335441 0) (94.1476852 -1.586819303 0) (106.6851773 -1.249104799 0) (106.3379289 -1.331231014 0) (106.2614458 -1.451782277 0) (106.1952102 -1.356473599 0) (105.6693679 -1.425419909 0) (105.6075565 -1.556547559 0) (105.4429533 -1.445274271 0) (104.2100919 -1.488440379 0) (104.1784657 -1.626533683 0) (103.2287786 -1.499174806 0) (98.30034556 -1.630833994 0) (98.1847136 -1.76831864 0) (99.17448139 -1.652893124 0) (99.79329115 -1.623189178 0) (99.82025628 -1.766457108 0) (99.47250327 -1.614434228 0) (98.2849482 -1.591615886 0) (98.30917884 -1.734441346 0) (97.89182662 -1.582874163 0) (96.80284304 -1.550186337 0) (96.84028488 -1.689000799 0) (96.47363151 -1.536967236 0) (95.5885087 -1.489954226 0) (95.64074612 -1.622032739 0) (95.32684993 -1.471740879 0) (94.63812133 -1.409055621 0) (94.70638798 -1.531945988 0) (94.43970703 -1.385375997 0) (93.93354224 -1.305669504 0) (94.0189957 -1.417039099 0) (106.7878742 -1.119013267 0) (106.4284834 -1.190947317 0) (106.3617124 -1.294028622 0) (106.2821175 -1.213049312 0) (105.7421517 -1.2732606 0) (105.6885253 -1.385025928 0) (105.5082732 -1.290528382 0) (104.2506403 -1.328744833 0) (104.2203819 -1.445989999 0) (103.2888761 -1.339606137 0) (98.44649112 -1.471150005 0) (98.3376009 -1.588466899 0) (99.19696162 -1.489650694 0) (99.75626306 -1.458288714 0) (99.78413752 -1.579272576 0) (99.44167557 -1.449322017 0) (98.25502244 -1.427211646 0) (98.27722928 -1.547835393 0) (97.85883391 -1.419264529 0) (96.7583625 -1.390266766 0) (96.79117871 -1.507615029 0) (96.42501207 -1.378660163 0) (95.52684276 -1.337549286 0) (95.57229476 -1.449408615 0) (95.26061158 -1.321649432 0) (94.55742842 -1.266902099 0) (94.61691527 -1.371272668 0) (94.35394909 -1.246186618 0) (93.83194507 -1.176228378 0) (93.90690975 -1.271156179 0) (106.8782188 -1.008848388 0) (106.5081125 -1.072387779 0) (106.4493329 -1.159336846 0) (106.3584938 -1.091904629 0) (105.8058271 -1.144956934 0) (105.7588513 -1.23902912 0) (105.565413 -1.160134007 0) (104.2898315 -1.194487874 0) (104.26055 -1.292892975 0) (103.3495994 -1.205468485 0) (98.58713553 -1.336110967 0) (98.48202493 -1.435174566 0) (99.21283995 -1.352561121 0) (99.7183151 -1.32034314 0) (99.74685065 -1.421388037 0) (99.41033145 -1.31121109 0) (98.22731138 -1.289617521 0) (98.24790791 -1.390412658 0) (97.82891431 -1.282301983 0) (96.71903769 -1.256287817 0) (96.74808968 -1.354448641 0) (96.38216516 -1.245989654 0) (95.47273096 -1.209667587 0) (95.51266752 -1.303379035 0) (95.20250644 -1.195645855 0) (94.48654625 -1.14735951 0) (94.53886499 -1.23498236 0) (94.27853182 -1.129066713 0) (93.74213763 -1.067129553 0) (93.80847468 -1.146980933 0) (106.9583488 -0.9172605705 0) (106.5787712 -0.9739590147 0) (106.5265472 -1.045952372 0) (106.4262311 -0.9913682959 0) (105.862118 -1.038603686 0) (105.8205311 -1.116379105 0) (105.6159894 -1.05209934 0) (104.3279457 -1.083411132 0) (104.2994551 -1.164624469 0) (103.4102653 -1.094446751 0) (98.72555204 -1.223449135 0) (98.62182615 -1.305930501 0) (99.22532871 -1.239126283 0) (99.67974263 -1.206706455 0) (99.7087195 -1.289748074 1.967129666e-36) (99.37855455 -1.197454713 0) (98.20130957 -1.176206269 0) (98.22066908 -1.259089084 0) (97.80142367 -1.169377297 0) (96.68387081 -1.145730771 0) (96.70989215 -1.226540313 0) (96.34397811 -1.13647953 0) (95.42472461 -1.103995252 0) (95.46020898 -1.181248497 0) (95.15098084 -1.091480544 0) (94.42364857 -1.048394239 0) (94.47013925 -1.120762172 0) (94.21155939 -1.032060829 0) (93.66213632 -0.9766608412 0) (93.72129528 -1.042746901 0) (107.0302315 -0.842925594 0) (106.6422041 -0.8942451331 0) (106.5952415 -0.9523267582 0) (106.4870042 -0.9099806129 0) (105.9124908 -0.9525822662 0) (105.8752134 -1.015249295 0) (105.6613434 -0.9647442374 0) (104.3651158 -0.9936779039 0) (104.3373228 -1.059039876 0) (103.4702607 -1.004698895 0) (98.86439288 -1.131253525 0) (98.76012592 -1.198546474 0) (99.2370903 -1.147258698 0) (99.64082506 -1.115229239 0) (99.67003506 -1.181832163 0) (99.34642926 -1.105905127 0) (98.17657224 -1.084857422 0) (98.19502276 -1.151372856 0) (97.77579196 -1.078386905 0) (96.65198663 -1.056561663 0) (96.67562399 -1.121502977 0) (96.30947814 -1.048126042 0) (95.38156032 -1.018640508 0) (95.41352572 -1.080816871 0) (95.10467696 -1.007304743 0) (94.36710985 -0.9682889495 0) (94.40897842 -1.026659033 0) (94.15132389 -0.9534884103 0) (93.59000901 -0.903161963 0) (93.64345429 -0.9567164422 0) (107.0958783 -0.7849228793 0) (106.7000013 -0.8321231059 0) (106.6571244 -0.8771021775 0) (106.542318 -0.8465690947 0) (105.9582123 -0.8855815304 0) (105.924311 -0.9340938249 0) (105.7026175 -0.8967145462 0) (104.4014892 -0.9238703316 0) (104.3742775 -0.9744056078 0) (103.5291761 -0.9348359554 0) (99.00549584 -1.05812928 0) (98.89938667 -1.111229676 0) (99.25043842 -1.075382592 0) (99.60182062 -1.044278643 6.950546249e-36) (99.6310733 -1.095621611 0) (99.31403232 -1.034921495 -6.938299652e-36) (98.15270271 -1.013929113 0) (98.17053857 -1.065266356 0) (97.75150654 -1.007697454 0) (96.62260182 -0.9871898004 0) (96.64443533 -1.037416773 0) (96.27779743 -0.9793591157 0) (95.34211665 -0.952115485 0) (95.37139192 -1.000294634 0) (95.06238871 -0.9416649091 0) (94.31546677 -0.9057174249 0) (94.35379272 -0.9510467999 0) (94.0962706 -0.8920774826 0) (93.52382228 -0.845633954 0) (93.57296199 -0.887270916 0) (107.15679 -0.7425771353 0) (106.7535318 -0.786724592 0) (106.7137342 -0.8192365276 0) (106.5934904 -0.8002161001 0) (106.0004187 -0.8365757381 0) (105.9690511 -0.8716775472 0) (105.7408435 -0.84695967 0) (104.4373 -0.8729210333 0) (104.4104868 -0.9094010392 0) (103.5868205 -0.8838254687 0) (99.14997397 -1.003138511 0) (99.04124598 -1.042711709 0) (99.26732021 -1.022345824 0) (99.56292886 -0.9926317512 -2.221082663e-36) (99.59208089 -1.029597142 0) (99.28139658 -0.9832658253 2.217189294e-36) (98.12931498 -0.9621672623 0) (98.14682558 -0.9992330832 0) (97.72807651 -0.9560576938 0) (96.59498771 -0.9363892219 0) (96.6155598 -0.9727890412 0) (96.24813434 -0.9289664516 0) (95.30537556 -0.9032666117 0) (95.33271594 -0.9382844623 0) (95.02302739 -0.8934331894 0) (94.26743436 -0.8596490817 0) (94.30316776 -0.8926882227 0) (94.04505864 -0.8468369155 0) (93.46214563 -0.8031980746 0) (93.50803562 -0.8336016345 0) (107.2143344 -0.7152453136 0) (106.8040251 -0.7573401743 0) (106.7663931 -0.7779018951 0) (106.6417134 -0.770184601 0) (106.0401841 -0.8047746555 0) (106.0105461 -0.8270400324 0) (105.7770152 -0.8146873223 0) (104.4728741 -0.8400587517 0) (104.4462053 -0.8630351022 0) (103.6432257 -0.8509419644 0) (99.29836135 -0.9656953652 0) (99.18664679 -0.9921528622 0) (99.28930156 -0.9873214796 0) (99.52427098 -0.9593860349 0) (99.55324185 -0.9826258049 0) (99.24850111 -0.9500237985 0) (98.1060243 -0.9286645783 0) (98.12349894 -0.9521081843 0) (97.70502259 -0.9225657521 0) (96.56844868 -0.9032717998 0) (96.58827973 -0.9264800379 0) (96.21972918 -0.8960669133 0) (95.27038978 -0.8712458867 0) (95.29650124 -0.8937110027 0) (94.98558389 -0.8617765348 0) (94.22182451 -0.829300612 0) (94.2558507 -0.8506138009 0) (93.99644438 -0.8169994945 0) (93.40360314 -0.7751331229 0) (93.44726455 -0.7948186436 0) (107.2764752 -0.701744371 0) (106.8582147 -0.7427333011 0) (106.816265 -0.7524251392 0) (106.6934145 -0.7551356051 0) (106.0831345 -0.7885830698 0) (106.0498196 -0.79942787 0) (105.8164675 -0.7983321691 0) (104.5132916 -0.8246358401 0) (104.4816794 -0.8345970223 0) (103.7052525 -0.8359764416 0) (99.46773011 -0.9432261089 0) (99.33541112 -0.9591839629 0) (99.32148427 -0.9670375391 0) (99.48161902 -0.9429073133 -2.654273314e-37) (99.51475951 -0.9538595 0) (99.21153523 -0.9337905206 2.650956793e-37) (98.07959256 -0.9121417203 0) (98.10022286 -0.9230616677 0) (97.67904748 -0.9059129039 0) (96.53914397 -0.8864590054 0) (96.56193613 -0.8976766497 0) (96.18849312 -0.8792780259 0) (95.23220127 -0.8547057123 0) (95.26184205 -0.8657945861 0) (94.94477197 -0.8453679662 0) (94.1722416 -0.8133974727 0) (94.21069691 -0.8240998687 0) (93.94361782 -0.8012895167 0) (93.33995699 -0.759931305 0) (93.38931883 -0.7702557799 0) (80.9043386 -4.03618784 1.520013889e-18) (80.10338222 -3.372488409 3.214844121e-19) (81.01787965 -2.623590512 3.153589657e-20) (140.7496816 12.0573342 2.46837347e-18) (144.7348875 14.12356052 7.081724979e-20) (145.786005 9.128618915 -5.172759088e-18) (129.1155496 29.39966627 2.093784301e-18) (132.893491 27.73488716 -4.101794857e-18) (130.7572219 24.38618029 3.959533294e-18) (85.22096476 -6.831154249 0) (84.62990142 -6.505839176 8.779582503e-19) (85.18801047 -6.025608308 -2.021645503e-18) (139.6013539 -7.889809283 -3.087504444e-18) (142.7153394 -8.815773567 3.194962207e-20) (140.9565034 -11.89803769 -2.306969882e-18) (145.9402603 7.491286319 0) (145.9191699 2.893747546 0) (142.1018292 3.74227518 -1.856347419e-18) (87.8746832 -8.226815917 -7.177261225e-19) (87.44472153 -8.009768614 -7.319489008e-19) (87.85996345 -7.678136686 1.352525711e-20) (129.8711778 -19.291613 1.910710759e-18) (131.5811712 -20.94247783 0) (129.3456499 -22.18755814 1.601573259e-18) (140.3121527 -12.85646579 0) (138.2501012 -15.41799234 -4.242633723e-18) (136.3663953 -13.25359524 5.823702691e-19) (89.88199227 -9.511482108 -6.562863592e-19) (89.50849271 -9.247935487 -1.335195681e-18) (89.91505383 -8.968102282 5.723664902e-19) (119.3506047 -23.53089333 -2.523515323e-18) (119.7837686 -24.9324588 1.249587031e-18) (118.4652842 -25.08684319 0) (128.0784998 -22.30381098 -1.816600146e-21) (126.6466378 -22.95535285 4.317829723e-19) (125.8551784 -21.53832782 -3.261963728e-18) (92.16564672 -11.00518767 -1.154876712e-18) (91.68431523 -10.73178302 5.926750542e-19) (92.08297802 -10.25503711 5.504364508e-19) (103.5194945 -32.62833677 0) (102.5730711 -32.88311552 3.411788335e-19) (102.3375722 -32.6846858 -6.82727155e-19) (104.954579 -31.29423106 -4.245551445e-19) (105.692326 -31.6773497 -4.883949752e-19) (104.9308907 -32.38850028 -3.838062008e-19) (112.0957239 -23.63687002 -8.052111056e-19) (111.9447153 -27.55013505 -3.625573572e-19) (108.1339276 -26.34163164 0) (117.158136 -25.17184612 -4.88266065e-20) (115.8643183 -25.19410351 -1.068627872e-18) (115.6207158 -23.88140848 0) (95.16490423 -12.03989548 3.474228152e-21) (94.64309113 -11.9387024 -4.245563901e-18) (94.93289363 -11.3295582 -7.539042665e-18) (95.96384897 -24.30321561 3.28713719e-19) (90.99975036 -24.58987867 -6.655869669e-20) (90.04060851 -21.44903764 -3.434982023e-19) (98.53815152 -32.55789285 -4.014794199e-21) (98.70659841 -32.14309383 -1.371957705e-20) (101.7263332 -31.75215979 -1.571354109e-19) (98.22429411 -21.8505128 -6.434426943e-20) (98.71939219 -23.10552844 6.305476735e-20) (96.94538098 -24.09624115 -1.227513014e-19) (104.5694532 -20.51195283 -3.506180455e-19) (103.0764749 -22.89220909 -5.291844116e-19) (101.0864332 -20.38830718 -9.898196112e-20) (106.9664443 -25.7858845 0) (103.9231262 -23.69345815 0) (105.3288208 -20.96174451 0) (70.06811148 9.152094535 3.051141077e-18) (78.76894204 16.76237341 -6.398907394e-19) (82.44056425 10.60871341 5.645774827e-19) (33.67751165 74.60193367 3.598410413e-18) (26.12345178 55.53210386 -3.211138041e-18) (19.63568077 44.58886935 0) (88.06205199 19.06636835 -1.370831315e-18) (81.00374413 20.77500017 5.242257863e-19) (85.56879166 32.54083479 1.324857926e-19) (72.93708578 102.7468118 -1.942214254e-17) (50.80626245 92.45843876 7.488505669e-20) (121.2871587 27.05107724 3.389127323e-18) (121.3435177 30.48038116 -7.042178616e-19) (125.1752492 30.2924344 1.791161951e-18) (103.823832 25.58706487 1.844001741e-19) (108.4335322 32.58684743 -4.416745672e-20) (113.4928281 25.30102276 2.092286078e-18) (150.9489159 30.26875154 -2.436551278e-18) (152.6252012 31.13372001 2.386880155e-18) (153.3809169 29.65812603 -2.406306607e-18) (132.4148777 50.25058663 -5.124234859e-18) (137.2803844 49.06162832 0) (135.7561812 44.65838908 -1.107979747e-18) (131.2039298 6.570710046 -1.965595484e-18) (128.6079386 11.62256777 -1.826523522e-18) (135.1462744 15.80916198 -2.075978082e-18) (123.5190435 7.559567553 -1.61658377e-18) (126.5045449 9.248060416 1.810819756e-18) (128.011708 6.452095979 -1.814837016e-18) (121.9652789 13.62723878 3.976271008e-19) (124.4532991 11.69496473 4.427536464e-19) (121.8688992 9.5804665 -1.411172351e-18) (87.86541066 -4.305630984 9.816702584e-19) (87.35392145 -3.64203016 1.035070563e-18) (88.38915807 -3.185187026 -9.675753026e-19) (84.81454455 -5.011397645 2.081713457e-18) (86.43042063 -3.922107844 -1.980813685e-18) (87.31291404 -4.877671962 -9.471227564e-19) (85.23748506 -2.143243586 2.127142711e-20) (86.12979281 -3.506568507 0) (84.39422608 -4.659943163 1.062492321e-18) (152.805068 -4.777896334 2.25011256e-18) (154.0533355 -5.064227857 -6.853795492e-18) (153.7260611 -5.87461639 -2.329445983e-18) (156.7935727 7.826869251 3.187500068e-18) (156.6208898 6.7793015 -2.591753497e-18) (155.4643005 6.919343178 2.499249333e-18) (130.7654247 -6.588693135 -1.88238414e-18) (131.9637191 -2.036835613 -1.985424321e-18) (138.6088584 -3.082538488 1.768567354e-18) (125.8829967 -2.122045779 1.715776002e-18) (129.118518 -2.412507699 5.106753171e-19) (128.5197741 -5.137923156 4.981952236e-19) (128.9303249 3.482291411 2.326564716e-18) (129.2805351 0.4883753045 1.318436824e-18) (125.9329117 0.3271697723 -1.836185684e-18) (89.84808949 -6.270721852 -2.233664199e-19) (89.36737288 -5.854884497 -2.3010721e-19) (90.12292689 -5.373875151 -8.807061039e-19) (87.58485124 -7.011439143 1.419243401e-20) (88.6790402 -6.157066639 0) (89.44155938 -6.73666803 8.331341935e-19) (87.59527848 -5.189236049 1.877201936e-18) (88.41736401 -5.908479961 9.740970619e-21) (87.2813636 -6.81471154 -9.121067237e-19) (86.65704683 -7.615884884 7.656460645e-19) (86.1372734 -7.348308436 1.596761179e-18) (86.62419212 -6.951340692 2.390831576e-19) (85.87934638 -8.27174942 8.538049922e-19) (86.04485482 -8.077822376 -1.660362009e-18) (86.22395213 -8.151055525 1.646647769e-18) (84.91049375 -7.52865666 1.739307956e-18) (85.10177518 -7.630950577 -1.717860837e-18) (84.9081279 -7.832727346 1.107761247e-18) (138.6125135 -22.45549515 1.738320702e-18) (138.912427 -22.92668741 0) (138.4011166 -23.21273898 1.748512184e-18) (146.1611037 -17.1409222 6.402765177e-18) (145.6753046 -17.67926649 -6.238403884e-18) (145.0313341 -17.07960598 2.026663059e-18) (124.2779571 -15.19156383 -1.503354118e-18) (127.042377 -12.69730018 0) (131.1384686 -15.95359199 -3.965029419e-18) (122.5683224 -10.29462417 0) (124.8586365 -11.75909328 0) (123.2502049 -13.40184112 1.501441073e-18) (127.5622091 -7.61873538 7.816971848e-19) (126.3177564 -9.830438716 0) (123.7556199 -8.565040798 -1.629343592e-18) (91.71592992 -7.668018078 3.962789811e-19) (91.24903053 -7.34775523 0) (91.89237179 -6.873294089 7.858429442e-19) (89.69713999 -8.3789762 9.756766637e-21) (90.64009183 -7.643759736 -7.790740998e-19) (91.35464552 -8.106244659 7.624477117e-21) (89.68508026 -6.948153597 0) (90.40532193 -7.451191055 1.568362998e-18) (89.45319312 -8.213832604 -1.609341631e-18) (88.90120347 -8.827084159 -6.908752296e-22) (88.53183532 -8.597612162 1.400157772e-18) (88.92542467 -8.310684507 -1.639576417e-18) (88.03711206 -9.228568091 0) (88.32475135 -9.11236181 0) (88.43449135 -9.186902701 0) (87.59256672 -8.718274426 1.561644928e-18) (87.72366584 -8.781364357 -7.789195338e-19) (87.55035868 -8.913908496 0) (125.5607995 -28.22967679 0) (125.6438941 -29.08153792 -3.76947656e-19) (124.8340034 -29.26291513 0) (130.9373506 -27.74194696 -1.44315731e-18) (129.6370666 -28.18285767 0) (129.6158284 -27.00490068 -3.407919216e-18) (93.71165982 -8.958730373 0) (92.90361974 -8.603215372 6.647679185e-19) (93.76326195 -8.005743822 1.048666705e-18) (91.75512342 -9.724934131 -3.773570038e-21) (92.62177714 -8.861280014 0) (93.44235041 -9.258238818 1.025014947e-20) (91.5949677 -8.289302039 7.161873546e-19) (92.36401182 -8.714537313 3.620529641e-21) (91.47699522 -9.556186056 -5.179055003e-19) (90.94154562 -10.25404183 1.243956175e-18) (90.52844303 -9.971937858 -6.340023733e-19) (90.94630845 -9.668032443 -1.813410582e-19) (89.71102723 -10.68801848 -3.20771823e-19) (90.19183346 -10.56918923 8.362331465e-20) (90.41786823 -10.67042266 0) (89.4609638 -9.98607141 7.10387178e-19) (89.58355182 -10.07880464 -8.84753987e-19) (89.24230221 -10.24575858 -3.151951221e-22) (109.5129647 -33.83753989 -1.323151341e-18) (109.6475982 -33.86285673 3.269057054e-19) (107.2174781 -33.77039868 1.024423703e-18) (114.9620149 -29.20169581 -9.051896878e-19) (114.5230418 -31.44946226 0) (112.2191023 -31.09979974 8.119853307e-19) (117.8404568 -30.00657714 0) (117.084135 -30.0066786 0) (117.1562626 -29.23019588 0) (96.07498864 -9.619343173 1.549555642e-20) (95.18463655 -9.41011905 -5.377506579e-19) (95.85979309 -8.714479371 -3.115219512e-20) (94.38361076 -10.83206388 -4.118729861e-19) (94.97028772 -9.737140506 7.19102037e-21) (95.907119 -9.960183732 0) (93.73338776 -9.375334599 1.210807706e-18) (94.64894276 -9.66705647 0) (94.0125866 -10.74109736 -1.555099269e-19) (93.63968523 -11.6607727 5.18184234e-19) (93.04495055 -11.43931618 0) (93.41342486 -10.87624709 0) (91.51111645 -12.46871066 1.436510488e-18) (92.22293785 -12.42371726 4.536133313e-19) (92.316832 -12.47514543 -1.840491511e-18) (91.21577116 -11.68040276 9.91351883e-19) (91.29047958 -11.73488817 5.007857282e-19) (90.89151213 -11.79263512 -5.159647282e-19) (81.37169511 -8.396066157 5.840881949e-19) (82.5551221 -9.827335228 3.711304948e-19) (97.45077309 -11.35277017 4.069633068e-19) (95.92526069 -16.22608713 0) (71.48510225 -11.63361343 7.249313962e-19) (77.68054977 -11.86513742 0) (90.61537333 -20.60297353 3.341095252e-19) (91.8597607 -18.31307324 0) (94.95636978 -19.37744414 6.893479595e-20) (75.03564037 -5.682546648 -1.706169284e-18) (74.74463966 -7.210716159 0) (72.85291403 -6.612832975 0) (79.73328421 -7.673098031 -1.622449191e-18) (78.86996824 -7.708661625 4.447850943e-19) (79.10848588 -6.858286455 -1.161423846e-18) (67.23134347 5.049455858 -1.66552378e-18) (64.52626464 4.820981333 1.663871539e-18) (64.46835403 7.821125527 0) (72.03054996 -5.756037433 0) (70.59716428 -4.876360945 3.849549661e-19) (71.71666307 -3.549407575 -2.993333073e-18) (155.7606605 10.09350284 2.442112836e-18) (156.9968868 10.02943289 2.974128414e-20) (156.9299353 8.907581997 -4.999399992e-18) (154.0529394 28.15668849 2.519393478e-18) (154.6229898 26.70632059 0) (153.0588327 26.08521582 0) (141.6466006 20.95637805 0) (144.1633644 15.85703699 2.577361163e-18) (139.5890856 14.88476754 -2.469821065e-18) (151.6739762 23.33705077 0) (149.0626444 22.29569982 0) (147.9823146 24.55869294 0) (151.835913 9.587711361 0) (151.7079094 11.56864773 -2.876117787e-18) (154.6235445 12.27062031 -2.422188219e-18) (83.94818506 -7.338323124 1.137188539e-18) (84.47555428 -6.710722558 8.754992572e-19) (85.05643548 -7.032767181 1.689627913e-18) (83.58253723 -6.285150064 0) (84.2737067 -6.600864452 -2.651977402e-18) (83.74925338 -7.251718549 -9.231286339e-19) (84.78232983 -5.748054207 -1.293215049e-18) (84.42035626 -6.393129718 -8.792742254e-19) (83.95743026 -5.96073856 2.652146782e-19) (83.12969504 -7.34119588 2.423496279e-19) (82.91367819 -7.615573688 -3.95184844e-19) (82.58371922 -7.560259394 -1.601515323e-18) (83.94056465 -8.086310166 1.473346712e-22) (83.68866032 -7.922855569 -2.241256284e-21) (84.11693472 -7.649350049 0) (80.71693344 -7.049440446 -2.645595232e-19) (80.63955184 -7.590261121 -7.936952313e-19) (79.97874302 -7.652069748 -1.599270651e-18) (82.46817446 -7.543720136 7.981594372e-19) (82.09332984 -7.520464674 -7.956470924e-19) (82.40262834 -7.191262654 9.821146368e-19) (146.4038259 -15.4509348 0) (147.104896 -16.00181838 2.232246165e-18) (146.6382746 -16.5820487 -2.198644916e-18) (153.3859525 -6.673488861 -2.327262884e-18) (153.0203164 -7.473761346 0) (151.8697331 -7.076246978 0) (144.5950639 -4.029150882 -2.551627159e-18) (143.2357214 -7.668624693 -2.419917945e-18) (139.8227038 -6.151008519 0) (150.1740076 -8.101268208 -2.155563454e-18) (148.2997878 -7.016930216 0) (149.0226859 -5.010113627 2.156691235e-18) (144.4540487 -14.16419507 -4.974969429e-18) (145.2408591 -13.07671423 3.171996845e-18) (146.6664104 -13.85605715 -4.365757382e-18) (154.1982404 5.074602128 -4.896053207e-18) (151.7746206 5.808095529 -2.871810206e-18) (151.8561326 7.665788133 0) (149.2711559 -4.270805782 -2.175216667e-18) (149.8888668 -2.087427697 2.207844607e-18) (152.2970235 -2.814371877 -2.218018402e-18) (141.2794438 1.716636379 0) (145.7544727 1.448838461 -4.087603006e-20) (144.9549038 -2.734503265 -2.538689652e-18) (87.15672663 -8.737200561 -2.027845087e-19) (87.32121012 -8.593144263 -7.919459166e-19) (87.45850282 -8.655351679 4.274526326e-21) (86.39758879 -8.219946736 -1.633176135e-18) (86.56542162 -8.28528437 -8.028898582e-19) (86.4078838 -8.461231406 8.307758329e-19) (87.56925643 -7.509457725 -8.832646698e-19) (87.29487033 -7.932252069 7.35999584e-19) (86.82302704 -7.702012164 -1.512678495e-18) (86.13924313 -8.545226415 6.433544829e-19) (86.0258216 -8.635998149 6.446373271e-19) (85.93861471 -8.612574156 0) (87.0327944 -8.964455173 -6.649131949e-19) (86.9707539 -8.937201997 -6.654677754e-19) (87.09946415 -8.880140375 0) (84.78627726 -8.006910642 1.373281535e-21) (84.33681751 -8.32341594 -1.496482207e-18) (84.03155734 -8.147788787 0) (85.8505108 -8.584357802 -3.264735993e-19) (85.76029925 -8.557647265 -1.657010703e-19) (85.87184626 -8.467562893 -6.572517005e-19) (132.1383207 -25.9825752 -4.669021319e-19) (132.6947147 -27.04258125 -1.516326655e-18) (131.3764478 -27.57504175 -1.458060789e-18) (137.9000037 -23.50768986 -2.358312794e-20) (137.3968199 -23.77835545 -1.741469148e-18) (137.1740762 -23.24735255 0) (134.560533 -18.87082 -1.890733878e-18) (132.3182599 -20.4645223 -1.805006176e-18) (131.2075643 -18.34285288 -1.994254883e-18) (136.1861749 -22.92298926 -2.073692211e-18) (135.7683487 -22.01630663 0) (136.6423075 -21.46665208 2.069204948e-18) (129.8366847 -22.95939977 3.294974678e-18) (132.1401554 -21.73690174 -3.55650078e-18) (133.5619442 -24.330564 3.791056401e-18) (143.5867696 -17.56851296 0) (142.8073983 -16.16772872 3.025179407e-18) (143.6412738 -15.19531426 -2.415635639e-18) (137.5278542 -20.87131741 -2.06898152e-18) (138.4225417 -20.22141305 5.439706709e-19) (139.3298951 -21.2417675 0) (135.1289075 -14.73797286 0) (137.5296078 -16.20054208 2.062482538e-18) (135.3066869 -18.25544196 0) (88.83966328 -9.914897184 8.490819409e-19) (89.22103573 -9.798258914 -7.168027437e-19) (89.3395442 -9.89248182 7.185646257e-19) (88.54296074 -9.266193261 7.430883252e-19) (88.65205752 -9.349799639 -5.596407202e-19) (88.37828554 -9.502035093 -5.963645248e-19) (89.66788992 -8.798809494 0) (89.38599994 -9.159141652 -4.291181991e-21) (89.02215233 -8.909806645 6.823878133e-19) (88.12561772 -9.457767983 0) (87.92318431 -9.493263038 -6.396369045e-19) (87.88552207 -9.450988223 -6.347909466e-19) (88.46739726 -10.16215213 -2.381328273e-18) (88.41323564 -10.11391421 1.175601272e-18) (88.73184599 -10.06980214 -1.15010418e-18) (87.29116384 -8.960059111 6.441985372e-19) (87.15747576 -9.021523883 6.686897956e-19) (87.09506562 -8.99416722 6.69051778e-19) (87.84805185 -9.412950106 6.317747276e-19) (87.80948905 -9.378867176 1.83451152e-22) (87.99483531 -9.341272821 -6.08248634e-19) (119.3918729 -29.17221026 0) (119.3669723 -29.95474829 2.325100392e-18) (118.6016184 -29.98933037 0) (124.0332139 -29.42581042 0) (123.2409263 -29.55365195 0) (123.1981013 -28.712464 1.316284563e-18) (90.71411406 -11.61995268 -3.772749557e-19) (91.08555823 -11.56830419 -2.48948879e-19) (91.14638824 -11.62480834 0) (90.48238102 -10.72728106 -1.02641965e-18) (90.69082226 -10.87835645 -1.019890926e-18) (90.09174222 -11.07761018 -5.518164108e-19) (91.93144476 -10.15841067 5.574156341e-19) (91.52916963 -10.63839753 5.498657986e-21) (91.08390609 -10.35160868 -1.233907919e-18) (89.60715587 -11.00695155 0) (88.99055532 -11.01539314 -1.756388001e-18) (88.94862532 -10.97585085 5.746258934e-19) (88.90422867 -10.21203781 -1.759427849e-18) (88.57987712 -10.25732507 -1.909400481e-21) (88.52233684 -10.21047812 6.014370957e-19) (88.92295061 -10.931066 7.086029304e-19) (88.94077843 -10.87450989 -1.705515811e-18) (89.48473653 -10.8396041 0) (108.9634086 -28.12893396 3.24428773e-19) (108.535058 -30.07297511 5.755321184e-19) (106.4765044 -29.15775261 4.337399446e-19) (111.4655115 -30.93931056 -7.241690733e-19) (109.248581 -30.30975849 -1.845614557e-18) (110.0664559 -28.09365834 6.28987517e-19) (107.6203193 -33.85942983 -6.346187466e-19) (109.0863004 -33.73605549 1.884989208e-18) (109.3202155 -33.78645047 1.1282592e-20) (83.08069924 -11.46282307 -4.668522434e-19) (93.96540477 -12.52891622 0) (94.3200079 -13.09964927 0) (92.42026246 -12.53106561 -1.848513677e-18) (92.53661503 -12.58798663 1.871874418e-18) (91.79259975 -12.64309282 -9.840567093e-19) (94.75511805 -11.22899452 4.063616767e-19) (94.49335211 -11.84957517 4.297462794e-19) (93.84951743 -11.71929486 -1.010197335e-18) (96.26479356 -27.81212473 0) (95.82035411 -27.02653593 0) (97.05710742 -26.66346763 -1.478872954e-20) (58.19939492 -15.53414918 0) (58.00102288 -16.3201758 -8.173761163e-19) (44.28678727 -4.432418717 5.865951389e-19) (98.5859744 -28.81375515 5.740701633e-20) (97.23630943 -29.29261926 0) (96.74050427 -28.56453291 0) (85.98736968 -0.9306781407 -3.334511058e-20) (85.71684599 0.2692368776 -5.290235502e-21) (87.25896841 0.3272530401 -1.01041247e-18) (81.03156833 -0.2887849381 -1.33800772e-20) (84.32982157 0.4242099326 -2.2146919e-18) (84.96260414 -1.558063886 -1.065234572e-18) (84.47423469 3.759165421 0) (84.24222196 1.201304296 1.093836476e-18) (80.67338683 0.788187001 0) (77.63192052 -0.1202112527 0) (77.00277642 1.499201217 0) (78.83647441 1.802441094 1.31633864e-18) (71.12552153 -0.05348914646 0) (75.29670894 1.423767533 1.371096056e-18) (76.59939653 -1.176430023 -1.29232646e-18) (74.15190285 5.812190305 -3.643094946e-19) (75.05580352 2.505233278 1.334766089e-18) (70.38549922 1.515806384 1.531582695e-18) (131.3824963 76.65488392 1.974943988e-18) (137.4359133 76.5472839 0) (136.8361037 70.31172136 0) (83.46045513 -5.678662294 2.770106498e-19) (82.91569812 -5.36485469 -5.737599874e-19) (83.3919565 -4.770435227 0) (81.98549927 -6.78909817 -9.998337638e-19) (82.46741126 -5.77296301 -9.994853037e-19) (83.32884471 -6.143317321 0) (81.04578076 -5.076556938 3.266601299e-18) (82.14621078 -5.593675111 3.592948193e-21) (81.63979974 -6.725630738 1.020582016e-18) (117.0790136 -19.38200171 -8.223516776e-19) (119.3507752 -18.14537931 -1.209806283e-18) (121.2717792 -21.61600516 0) (116.7106192 -14.91756881 -2.386970533e-18) (117.9749236 -16.74573869 2.309126967e-20) (116.1806612 -17.36184449 2.320704647e-18) (121.5414865 -14.76971519 -2.798934259e-18) (119.7724246 -15.87308497 4.48180557e-19) (118.2662707 -14.09476198 2.498248985e-18) (115.8364673 -32.39897557 9.995535674e-19) (115.2363474 -33.35395345 1.667735455e-18) (114.2799149 -33.30332648 7.457220377e-22) (117.5532733 -32.63784213 9.169356824e-19) (117.1637686 -32.62973933 -9.015381595e-19) (117.3134845 -32.23881401 -9.113775446e-19) (101.1918577 -26.10685788 6.392175012e-19) (102.8479189 -27.7316671 0) (100.7703735 -29.51912075 0) (104.1768184 -25.50311249 -3.476679402e-19) (103.3418585 -26.57924904 0) (102.2948992 -25.63574029 6.987015674e-19) (105.8392432 -28.81240664 -4.335650086e-19) (104.5019363 -27.45552587 -6.75901653e-20) (105.257529 -26.26990725 0) (77.99656401 -5.786173825 0) (79.23988441 -3.946074755 -1.169232486e-18) (80.63560876 -4.808931635 -1.09538245e-18) (77.12493368 -1.931674035 2.5576066e-18) (78.7280101 -3.49687866 1.199606184e-18) (77.26416627 -5.496859769 1.251099112e-18) (80.37228398 -1.793079472 -3.795363766e-18) (79.26293403 -2.530378772 9.519858689e-19) (78.41983037 -1.45761128 -3.483368089e-21) (51.96297493 7.502081649 0) (48.23124037 7.486163109 0) (48.33632054 11.58568651 0) (58.28347201 -8.658768492 0) (56.12436487 -7.204920994 0) (57.95905521 -5.449257985 0) (140.6771009 37.73303751 0) (135.6576987 30.17555509 2.049128459e-18) (129.0591874 33.17576577 0) (146.665652 26.8130577 -2.652417135e-18) (145.0883152 29.01589261 0) (147.6306269 30.87544269 0) (133.5599893 22.49688819 -5.570927452e-19) (136.1959742 26.8421873 9.572542433e-20) (140.4981705 22.62411962 4.555168075e-18) (118.5007231 -32.27946442 7.185387185e-21) (118.316096 -32.63034327 9.525078171e-19) (117.9299935 -32.62544487 0) (120.2517162 -32.41793044 -5.254607046e-19) (119.9956329 -32.48923992 0) (120.4407185 -32.11327889 0) (122.475363 -24.40874533 0) (121.1194686 -24.71135082 0) (120.6295697 -23.28201075 3.918196421e-18) (121.6081356 -28.16000754 0) (121.5368639 -26.15576776 3.548734188e-19) (123.2267347 -25.46703813 0) (118.726499 -26.57541814 1.470421635e-18) (120.1144564 -26.4036152 -3.246996893e-19) (120.8655403 -28.26433485 1.164376082e-18) (127.805356 -26.71685965 1.583641161e-18) (126.8645772 -24.23912467 -1.513135779e-18) (129.0871382 -23.40402337 -4.850947541e-18) (123.9481857 -25.19385893 9.271052274e-21) (126.1203032 -24.58871856 1.464973399e-18) (127.00918 -26.96462002 0) (124.5353474 -22.09181281 3.075592585e-18) (125.2396008 -23.52084225 -1.568638333e-18) (123.8490812 -24.00214523 3.869323844e-19) (103.042045 -33.49631406 2.38202941e-19) (103.164879 -33.47377128 -4.601332983e-19) (104.918862 -33.41720749 0) (89.00866337 -30.23704003 2.474108161e-19) (88.4660906 -30.26591523 0) (81.90198841 -28.72189287 -3.951316828e-19) (101.0663353 -31.23940684 -1.940203842e-19) (98.63225319 -31.9607471 0) (98.11031956 -31.2406232 -8.476427328e-20) (78.85846173 28.86731177 -1.666325004e-18) (69.47140711 29.51303406 -2.662354671e-19) (75.03372756 45.73712983 4.525708146e-19) (73.39025569 17.09413703 -3.059780884e-19) (70.0458075 25.28852887 1.095331066e-18) (78.63106478 25.97121466 9.821991207e-19) (57.38792833 13.83740631 2.323302498e-19) (66.61793316 23.88295191 0) (71.71766545 15.79163406 -1.367214234e-18) (123.6337342 45.73503272 1.729353231e-18) (122.7007628 49.98910313 0) (127.417711 50.62265244 4.089067274e-18) (100.9287534 40.44387959 0) (105.4955702 49.94357026 0) (114.0014566 42.07218248 -2.196613515e-18) (80.94278815 50.65392807 -9.551633459e-19) (100.8949588 52.28798845 0) (97.97293494 41.0516815 0) (148.9528163 43.08261612 0) (153.2526087 38.03195872 0) (148.5005201 35.67853812 0) (144.1508337 62.72709245 4.802383254e-18) (139.8500222 52.28580998 0) (132.9629779 55.67016133 9.115738131e-19) (153.6678 51.27502843 -2.605053305e-18) (151.3619048 53.51162586 2.597566114e-18) (153.9722911 56.27332561 0) (139.5330851 42.93616438 0) (141.7352311 47.03589906 0) (147.3147112 44.67432156 0) (154.9916728 0.07323687204 2.749349634e-18) (154.7584442 -0.8168205104 -2.731753738e-18) (153.7942163 -0.59035088 -2.558100685e-18) (154.4837078 2.074112887 -1.309123783e-18) (155.4888471 1.879671625 1.365235249e-18) (155.2345035 0.9686667778 0) (142.0440509 -20.79245639 1.983621815e-18) (141.5182483 -21.20474179 -5.883787551e-18) (141.0958237 -20.6673274 -1.905562367e-18) (142.5954921 -19.4018962 1.439495521e-18) (143.1078669 -19.93267948 2.481115537e-18) (142.5762089 -20.36644247 -2.708664896e-20) (127.2888809 -28.64347365 -8.079171183e-19) (126.4626751 -28.87474021 -3.922355347e-19) (126.3588304 -28.03029461 0) (126.1515372 -30.54042764 0) (127.0758523 -30.23197498 0) (127.3940626 -30.11746515 -1.34943172e-18) (124.6595499 -30.79278686 -1.185636377e-18) (125.0666466 -30.70785096 1.215912438e-18) (124.7862499 -31.12470933 -2.461606241e-18) (127.6854565 -30.04169861 1.300789489e-18) (127.9952865 -29.94061584 0) (126.0406714 -29.99367262 0) (128.7902743 -27.29616941 1.632305319e-18) (129.2141619 -28.32745074 0) (127.9189902 -28.70913823 1.294216709e-18) (89.94595882 -10.36342959 0) (90.06667022 -10.46512222 -8.678051303e-19) (89.66106388 -10.62988915 -8.764124459e-19) (90.49509891 -10.20251199 5.274473376e-21) (90.30224853 -10.33751598 6.772237144e-19) (90.17402994 -10.23856578 6.7709442e-19) (90.5694481 -10.53832097 -8.228910356e-19) (90.43339997 -10.43817364 -6.722959413e-19) (90.63016008 -10.29981569 6.508548101e-19) (112.7283088 -32.05343005 0) (112.3520281 -32.84233852 3.588274879e-21) (111.5824169 -32.70302679 0) (113.9272209 -33.27333207 2.31007559e-18) (112.8045782 -33.15003587 -7.103668311e-19) (113.505702 -32.18568931 -2.255015954e-19) (91.82159965 -12.08452882 5.164910978e-19) (91.8952478 -12.1443157 -3.871870398e-19) (91.4470357 -12.20433754 1.366063397e-19) (93.05753182 -11.72055165 0) (92.81572248 -11.92092042 -1.411179256e-19) (92.62542741 -11.82529739 4.383157121e-19) (93.19513533 -12.17109716 8.422463347e-19) (92.88562723 -12.0419661 0) (93.26036774 -11.80200856 -1.206623986e-18) (92.32403465 -11.3613856 0) (92.09690301 -11.53465118 1.50525057e-19) (91.92993529 -11.43708768 7.56188669e-19) (92.44464561 -11.72763196 -4.35404849e-19) (92.26891211 -11.63113971 -5.894602747e-19) (92.49911347 -11.45330869 1.150217514e-18) (91.26464153 -12.01024322 -1.081508115e-18) (91.67723941 -11.96992845 1.035464299e-18) (91.74780697 -12.02474262 -5.20807472e-19) (76.86513021 -7.574397344 -2.015927637e-18) (75.32130366 -7.340554396 2.143839403e-18) (76.01017928 -6.09654245 -2.586860076e-18) (72.30828851 -9.07257353 0) (73.12879514 -9.227328114 0) (73.07364297 -10.11046123 -1.090261953e-18) (78.4434738 -6.749262017 1.474997256e-18) (78.52599686 -7.698862191 -1.367444252e-18) (77.3229723 -7.624702853 6.983641076e-21) (66.28671702 -0.2194780161 5.001400042e-18) (65.18788522 2.040833438 -3.368367509e-18) (67.6489794 2.793219336 1.66551633e-18) (56.98069151 -0.1667123008 0) (62.30995705 1.160979313 0) (65.03733386 -1.973621786 -1.541119696e-18) (61.01599145 8.272123998 8.723551237e-19) (61.19373347 4.506370979 -1.813728189e-18) (55.94549694 2.151112067 0) (70.31870206 -9.701547786 -1.308476482e-18) (70.49174913 -8.63260698 2.571422994e-18) (71.42955813 -8.871440749 -1.246988982e-18) (63.78375429 -5.081224535 2.276813283e-18) (64.95135731 -6.077505503 -1.505100552e-18) (63.96374799 -7.456756295 -1.470628898e-18) (70.55206404 -2.414583374 2.166639314e-21) (69.10306058 -3.69621616 -4.055154774e-19) (67.62412773 -2.154899446 -1.663982704e-18) (156.7367557 17.13295155 0) (156.8040232 15.87379609 0) (155.5110106 15.76438266 2.520741604e-18) (155.0064363 19.50848275 2.483712353e-18) (156.4290084 19.77253713 0) (156.6178098 18.4407681 -2.498915381e-18) (83.28132083 -7.719993268 7.344451114e-19) (83.015757 -7.639354039 9.818815659e-19) (83.34448587 -7.402082556 -2.353213284e-19) (84.0245691 -7.594929148 0) (83.60671202 -7.876983889 0) (83.36023906 -7.756453536 3.608985664e-19) (81.36747683 -7.529891471 7.924318204e-19) (80.83594797 -7.573634895 -1.585259401e-18) (81.12998542 -7.075980339 2.590286752e-19) (82.12478744 -7.15352746 -2.491307856e-19) (81.95919649 -7.514272773 0) (81.52653457 -7.521920857 7.931606138e-19) (149.7332742 -12.23088122 2.525212062e-18) (149.3193972 -12.8905567 0) (148.5259003 -12.42118493 2.369647708e-18) (149.7342319 -10.47763124 0) (150.5911973 -10.93609797 2.553844525e-18) (150.1480607 -11.57807505 -5.179998709e-18) (147.4130144 -9.481257846 1.954484274e-18) (148.0840441 -8.179343872 1.962371631e-18) (149.7940483 -8.800529953 4.409230925e-18) (145.1557915 -7.01629308 2.506117357e-18) (146.6251072 -7.615150841 -6.656717645e-20) (146.0404541 -8.861254989 -1.040843588e-17) (147.6989127 -4.929711937 -3.348829244e-18) (147.1843031 -6.311166209 6.400476305e-20) (145.6529148 -5.766318164 2.621929011e-18) (142.8026846 -11.57688069 -2.363411295e-18) (144.0745673 -12.31778623 0) (143.3502545 -13.36810163 2.467547356e-18) (145.4225682 -10.06305964 6.120821888e-20) (144.7666865 -11.21648535 2.47715752e-18) (143.4421326 -10.50561242 -2.423866276e-18) (147.0772755 -13.25413131 2.191599303e-18) (145.9983945 -11.93295517 1.957131798e-18) (146.7227992 -10.73327381 -3.300803414e-18) (151.3599313 2.2910062 2.906423884e-18) (151.6059076 4.016305796 -1.37080136e-18) (154.0299992 4.112776345 3.322599297e-20) (147.7641068 4.306760215 -6.052386737e-20) (149.6514717 4.185895181 5.69719216e-18) (149.4732418 2.533984311 0) (149.771895 7.658038266 2.816642469e-18) (149.7539503 5.893708824 -2.750624287e-18) (147.8149899 5.932270799 2.63622863e-18) (146.8739398 -1.713139502 -2.654366407e-18) (148.5576946 -2.077438855 -6.97044035e-19) (148.1605601 -3.527591196 0) (149.2276647 0.937602141 0) (148.9143593 -0.6152764718 0) (147.1844071 -0.279321076 7.927364323e-18) (152.5324152 -1.998374123 2.329632955e-18) (150.6509822 -0.9740765926 2.849543608e-18) (151.0604584 0.6241855378 -6.524883098e-18) (86.50148943 -8.770975357 0) (86.42652633 -8.749187073 0) (86.54259233 -8.677329942 6.426665066e-19) (86.76493547 -8.744131248 -6.42567593e-19) (86.6466341 -8.815282225 -6.542077678e-19) (86.57496176 -8.794606346 -6.527396398e-19) (85.0688418 -8.303824894 6.899793542e-19) (84.96600243 -8.260843403 0) (85.08783608 -8.161344373 6.742351239e-19) (85.3901337 -8.282955404 -6.718977693e-19) (85.27309057 -8.386202249 -6.871784677e-19) (85.17115361 -8.347630363 -6.870190953e-19) (134.5128095 -26.33616898 -1.620863421e-18) (133.1277575 -26.86477691 1.507052287e-18) (132.751441 -25.4536613 -1.49464841e-18) (134.8714308 -24.49992743 0) (135.0391225 -24.95560218 1.567206217e-18) (134.5875923 -25.15775337 -1.575025288e-18) (88.20641913 -9.776625476 1.318663933e-18) (88.1566249 -9.733116465 -3.106484115e-22) (88.37186953 -9.688821116 -6.259704076e-19) (88.51668315 -9.820615494 -3.029714379e-19) (88.28220858 -9.865077306 -6.309198234e-19) (88.24847595 -9.818595783 -6.323547091e-19) (87.47954335 -9.187342673 0) (87.43210267 -9.157296276 -7.705597268e-19) (87.59005791 -9.100173593 3.025313795e-19) (87.75058695 -9.189662237 3.957866721e-22) (87.58215404 -9.242964316 1.21621332e-18) (87.52993659 -9.216670594 6.071439542e-19) (122.9293571 -31.43858238 0) (123.2444136 -30.36938645 3.546919334e-19) (124.2612642 -30.04087764 -1.161780229e-18) (121.6560086 -30.60039055 0) (122.4451602 -30.49538918 0) (122.5526869 -31.50854109 -1.106932802e-18) (122.424879 -28.83798375 -1.31542891e-18) (122.4579582 -29.66300825 0) (121.6804396 -29.75872573 0) (121.5033398 -31.9976577 0) (120.5713277 -32.31757124 2.121241655e-18) (120.4323468 -32.35360567 -5.343690309e-19) (120.4169866 -31.48138717 0) (120.5263837 -31.69077969 0) (122.9125859 -31.71155924 0) (90.71531824 -11.28799153 -5.42686143e-19) (90.78968364 -11.33434726 -5.407949384e-19) (90.52882335 -11.39787772 5.682467968e-19) (91.66850558 -10.9867876 -1.215697753e-18) (91.4579744 -11.1460402 9.374853687e-19) (91.30246017 -11.05008865 -6.364856744e-19) (91.76917014 -11.33887184 -5.958572589e-22) (91.61304525 -11.24152763 -6.156001695e-19) (91.82765831 -11.08040856 6.101939893e-19) (91.0554641 -10.59947853 -6.351533396e-19) (90.84999102 -10.74686409 1.57128957e-19) (90.70733275 -10.64242026 -1.138786484e-18) (91.14778774 -10.95177735 6.352328005e-19) (90.99665668 -10.85039029 0) (91.2037555 -10.69861419 6.24208955e-19) (90.30194407 -11.25461929 6.820423212e-22) (90.5616992 -11.18749943 -1.081756678e-18) (90.63865711 -11.23936552 -2.022643279e-21) (105.3210257 -33.71316699 -5.301925228e-19) (102.5041806 -33.52157675 5.188288697e-19) (102.7906027 -33.5043144 0) (88.88492955 -10.48358452 0) (88.84455736 -10.44367045 -6.351555914e-19) (89.17775816 -10.41750056 6.088890974e-19) (89.3120002 -10.5595586 0) (88.95567953 -10.58072496 1.965624891e-18) (88.92168703 -10.52839694 1.296867458e-18) (107.955938 -32.62869749 2.550644634e-20) (108.7191021 -32.8814959 1.656529825e-19) (107.2402466 -33.73129772 0) (109.6522871 -31.31439526 0) (109.2633989 -32.11077489 6.931538284e-19) (108.495389 -31.85670964 2.424653639e-21) (110.8116755 -32.53586837 0) (110.0371797 -32.33664221 -1.538584053e-19) (110.4136866 -31.53383774 -1.442971916e-18) (93.91081752 -11.99660832 5.164553105e-19) (93.67791331 -12.29832335 0) (93.30794472 -12.21151777 -8.386493105e-19) (94.1481752 -12.29485356 1.396751906e-18) (93.80847618 -12.31378993 -2.008806772e-19) (94.13548056 -12.02604151 1.757764707e-19) (87.27714432 -25.49825399 0) (83.37138064 -24.82143855 1.104941059e-19) (83.4864504 -24.49017427 0) (78.79590359 -26.04235624 9.677844488e-20) (79.78289338 -25.9162408 0) (85.45433065 -27.04158767 -2.049853983e-19) (83.23595145 -27.5154621 1.201837232e-19) (76.39389407 -25.99320382 -7.130633187e-21) (77.68735096 -26.0291945 -1.88603975e-19) (98.28128681 -30.63816106 -1.241720968e-19) (97.75590204 -29.99392719 6.763342229e-20) (99.1650143 -29.47894333 -5.72684471e-20) (84.76111174 -28.97173382 9.843938111e-20) (90.2607939 -30.04265709 1.51710255e-20) (89.63800873 -30.13100031 0) (94.66689362 -28.90870107 -1.909189624e-20) (95.79012103 -29.77396111 -1.194704527e-20) (87.25339667 -28.82311288 0) (113.9865359 -33.46337387 -2.71075315e-18) (110.1554005 -32.89070863 1.856923935e-18) (110.4519873 -33.1292139 -4.352400464e-18) (98.41252292 -9.247970043 4.09860594e-19) (97.83805107 -9.373410895 4.329628777e-19) (98.03653295 -8.801739522 4.470904909e-19) (97.41315093 -10.97481954 0) (97.67768809 -10.00536301 -5.363401659e-19) (98.30748155 -9.835849992 0) (96.24254638 -9.976332456 0) (97.23686756 -9.906945803 -4.239536362e-19) (97.04180301 -11.04590355 0) (97.13440804 -11.91706964 -2.081479112e-20) (96.60068146 -12.01324197 8.670176803e-19) (96.58623516 -11.48770959 -7.738766326e-21) (83.43850394 -10.13181857 -4.652147622e-19) (96.30398619 -12.98902896 0) (96.2548705 -12.97452026 -4.13079618e-19) (95.15530058 -12.27200748 0) (96.10936082 -12.58442636 0) (74.99638133 -8.405660542 5.54369878e-20) (98.78605588 -14.89955335 0) (98.75030338 -16.22731445 -6.522650613e-21) (96.94100855 -16.4618711 1.733932715e-19) (100.5427132 -15.56259154 0) (99.7810677 -15.99313403 0) (99.57218402 -14.76889973 9.297148376e-21) (100.6483473 -19.5419708 -3.113951676e-20) (100.1421016 -17.40185089 0) (101.0540868 -16.75954194 0) (106.7235691 -30.19236239 -4.689791885e-19) (106.2500555 -30.92266265 1.804233209e-20) (105.53088 -30.55208038 9.017855927e-19) (107.7332154 -31.5736 -5.542247026e-19) (106.9841929 -31.26369137 2.591123241e-20) (107.4295457 -30.51518483 0) (105.6454529 -32.74923587 5.023963235e-19) (106.4404183 -32.02396169 5.338944627e-19) (107.1951279 -32.33865909 8.890364789e-19) (100.8790038 -21.85834058 0) (99.90611006 -22.49393888 0) (99.37934229 -21.40026704 -2.728318726e-21) (101.3745885 -24.62955793 7.417275137e-20) (100.5768481 -23.57868844 0) (101.5450519 -22.81911597 0) (97.25679987 -24.83086728 0) (99.39704056 -24.32564341 -7.322701805e-21) (100.212437 -25.52527134 -3.413528997e-19) (65.4237981 41.88120444 0) (54.78913904 39.86482916 0) (61.29803881 60.30300029 -4.127339127e-19) (60.30720437 26.05445503 0) (55.62051808 34.422771 -4.743420287e-18) (64.42607668 34.37272156 0) (39.99373323 20.52748243 7.321715002e-18) (51.41407481 32.68516532 0) (57.44001119 22.3776516 0) (121.3186805 68.49021597 0) (119.2468429 73.57889722 0) (125.1692455 75.49811412 0) (96.76811134 60.01389297 0) (98.05031965 70.23688834 0) (107.8852765 62.49057126 0) (67.59701992 66.98859251 -2.61924532e-20) (92.17701178 72.35577092 0) (87.79456423 60.42774457 2.554716559e-19) (154.473674 -3.37526021 -1.828169022e-17) (154.3255381 -4.226702282 0) (153.0522315 -3.969611484 0) (155.3035815 5.904418209 -2.518140621e-18) (156.4295044 5.752409071 2.644885545e-18) (156.2198081 4.743675445 -2.667615857e-18) (139.9504818 -22.30199255 -1.781482234e-18) (139.427774 -22.61752701 1.777855079e-18) (139.0982063 -22.08560378 1.764223739e-18) (139.7509825 -23.78961625 -1.799776038e-18) (139.7968434 -23.24343646 1.785093509e-18) (140.3334002 -22.94812415 -1.796940347e-18) (138.7382091 -23.76834224 -1.703480262e-18) (139.2650536 -23.4972815 1.765055781e-18) (139.3333812 -24.0318411 0) (144.5588212 -17.58321507 1.98969565e-18) (145.1799829 -18.19352669 -6.031221435e-18) (144.6726088 -18.6705783 1.599454022e-20) (88.09542658 -8.974097103 -7.602821692e-19) (88.21201728 -9.041836221 -7.525260943e-19) (87.98552635 -9.195818414 1.17691731e-18) (88.5186487 -8.799215246 -7.192367796e-19) (88.37264481 -8.923161263 7.390471083e-19) (88.25240077 -8.852261385 7.393258156e-19) (88.6057662 -9.072559467 -1.460804532e-18) (88.49022047 -8.996365168 1.463497063e-18) (88.63942117 -8.874761616 -8.368040089e-21) (88.01219456 -8.512414874 -5.22916254e-21) (87.87349324 -8.648152215 7.507087069e-19) (87.74074469 -8.581658272 7.603998957e-19) (88.12925537 -8.782761966 1.490623884e-18) (88.00292748 -8.715123772 -1.498130244e-18) (88.1429127 -8.582925383 -1.45549355e-18) (87.67495977 -8.973439435 -1.943793386e-19) (87.85103585 -8.844697874 0) (87.97579926 -8.907916599 7.592722787e-19) (89.97652426 -9.825039516 -6.721101606e-19) (89.79623228 -9.954302322 6.940314095e-19) (89.67111824 -9.861725427 -1.39604996e-18) (90.04761089 -10.14182312 0) (89.92178768 -10.04739057 1.379191171e-18) (90.10442406 -9.917749958 0) (89.29944506 -10.28978403 -5.793842775e-19) (89.70554254 -10.17131598 -7.034865167e-19) (89.82603866 -10.26566401 0) (92.07258815 -12.31548421 2.161367058e-19) (92.13876454 -12.37393891 2.276686941e-19) (91.4483442 -12.43525874 -1.174680049e-18) (92.7996628 -12.18293815 0) (92.53550122 -12.28698762 -4.432454924e-19) (92.4466323 -12.23112612 2.392753501e-19) (92.73567394 -12.38874772 0) (92.63208285 -12.33923868 4.467672703e-19) (92.90047199 -12.23354385 0) (53.17377775 -9.98916606 4.01538447e-19) (88.90187495 -18.0715903 0) (86.14756272 -19.85466996 -3.552473528e-19) (88.41255731 -15.82706913 -3.413915138e-19) (86.94817307 -16.55688882 0) (65.44904852 -12.53310473 3.998643037e-19) (95.28259891 -18.16637486 0) (93.19552636 -17.68260841 0) (93.8425587 -16.64649701 0) (156.9337092 12.32455141 2.494555406e-18) (156.9842166 11.17760384 4.958786225e-18) (155.7609269 11.19311392 -4.815195639e-18) (150.6042079 17.86180078 -2.920838794e-18) (149.9270874 20.04090195 0) (152.5025734 20.86810262 -7.681410871e-19) (145.3674597 18.37122932 0) (147.5488425 19.22231083 0) (148.2636212 17.20984753 2.700199686e-18) (145.5898892 23.30612253 0) (146.6642639 21.26731522 0) (144.4995926 20.23984518 -2.528504688e-18) (147.4347835 11.06301781 6.476672924e-20) (149.5144845 11.33625225 5.717918116e-18) (149.6943558 9.474563485 -2.820582055e-18) (148.8182982 15.20753137 0) (149.2273262 13.24442756 -2.886240692e-18) (147.1052589 12.84938859 0) (154.5596412 13.37573484 3.086671016e-20) (151.4756607 13.60466468 2.874449954e-18) (151.1224576 15.70785974 2.91887343e-18) (148.0149304 -14.8008982 -2.306879488e-18) (147.5635947 -15.40837037 0) (146.8456394 -14.87399747 2.223294366e-18) (151.4914978 -7.809976934 -2.147334207e-18) (152.6003148 -8.237958686 2.206609025e-18) (152.1276167 -8.953452994 -1.329520534e-17) (87.03414482 -8.471004967 7.955451695e-19) (87.18002669 -8.531798394 7.898055605e-19) (87.01858111 -8.681318117 -6.115678835e-19) (87.45828635 -8.233870856 -5.61973209e-21) (87.32315646 -8.38408702 -7.728608268e-19) (87.17628168 -8.318544111 7.683856522e-19) (87.60495412 -8.515376637 -1.524414794e-18) (87.46589125 -8.449638673 7.632774089e-19) (87.60169674 -8.303729736 -4.435333592e-21) (86.56736728 -9.038259124 -1.79270105e-21) (86.8040897 -8.992570692 -6.960897406e-19) (86.86348377 -9.020765795 0) (86.68683277 -8.942003833 1.375364117e-18) (86.74558163 -8.965969155 0) (86.51350839 -9.011644498 7.206178442e-19) (87.03546812 -8.845981609 -6.467363051e-19) (86.90888762 -8.908965178 6.609528811e-19) (86.84628027 -8.884449408 0) (137.844153 -24.90614684 0) (137.6771436 -24.32170228 -1.768219161e-18) (138.2086443 -24.05233244 -1.821381214e-18) (136.6646539 -24.80553497 3.34013231e-18) (137.1613721 -24.56978985 2.361493611e-20) (137.3167026 -25.15327152 0) (136.6942044 -23.56259251 0) (136.9078257 -24.04245523 0) (136.425281 -24.28165884 -1.641384856e-18) (134.0528794 -23.00296774 -3.690232695e-21) (134.9050508 -22.52670281 5.805273394e-18) (135.2951602 -23.42642218 4.971422645e-19) (133.6982557 -20.7765045 0) (134.3494558 -21.63145934 -1.879454675e-18) (133.5280504 -22.12117126 1.881999936e-18) (136.0163336 -20.54596282 4.000698603e-18) (135.1793109 -21.10755883 -3.907055598e-18) (134.4852628 -20.24714924 -1.890887816e-18) (141.0884262 -17.94295705 -5.801546649e-19) (141.9561719 -17.08192221 5.972216794e-19) (143.1256333 -18.03733666 -1.894692627e-18) (139.9724838 -15.37718286 2.309678956e-18) (141.0277614 -16.2073216 -2.260767473e-18) (140.2148261 -17.05224472 0) (142.5978542 -14.36714909 0) (141.8224492 -15.31380409 0) (140.7126849 -14.50135832 -2.255133576e-18) (136.8654653 -18.42386182 -2.020854749e-18) (137.7034539 -19.29551935 0) (136.8590754 -19.94386971 -2.023239479e-18) (139.3859063 -17.84996177 -4.380623237e-18) (138.5468741 -18.59835732 2.115296466e-18) (137.6562694 -17.73103336 -4.181832997e-18) (139.8025517 -20.89394239 8.029132555e-22) (139.3155955 -19.51068857 -5.575706037e-19) (140.2064489 -18.75446205 2.210696458e-18) (88.99151477 -9.613828372 0) (89.10579175 -9.704826227 -3.635178583e-19) (88.79125429 -9.864091384 0) (89.47691848 -9.461092811 0) (89.3051549 -9.585367702 -5.194554733e-21) (89.18616011 -9.495671057 7.093306711e-19) (89.54725126 -9.769108798 1.394149069e-18) (89.42526365 -9.676753724 -4.779801248e-21) (89.59973489 -9.551165724 -1.365200485e-18) (88.99549702 -9.114607248 7.052199435e-19) (88.83494797 -9.235009292 0) (88.72030752 -9.152245043 7.297868703e-19) (89.06789221 -9.40730989 -7.181742666e-19) (88.95067236 -9.320345607 0) (89.11438558 -9.199253589 0) (88.42995381 -9.548873458 5.985593066e-19) (88.76332906 -9.436448221 0) (88.87699937 -9.524574218 7.329158838e-19) (88.00533525 -9.588940978 -6.49492994e-19) (87.96257905 -9.539577534 6.466717752e-19) (88.17030973 -9.502452551 -6.19485475e-19) (87.60017899 -9.471712547 -6.590682719e-19) (87.62981766 -9.514574487 1.331965089e-18) (87.14994826 -9.507643674 0) (88.6778639 -10.01857853 -1.261646533e-22) (88.36241454 -10.06320156 5.827496404e-19) (88.32525276 -10.00691347 1.452311535e-19) (87.27769468 -9.076866874 4.92344874e-19) (87.21885364 -9.050595964 0) (87.353595 -8.99503291 -2.293444561e-21) (86.79903316 -9.153243077 7.47670869e-19) (87.04437511 -9.105642561 7.046524446e-19) (87.09877569 -9.132317714 1.625937742e-19) (86.92395632 -9.049553749 7.013372114e-19) (86.98485803 -9.077749082 -1.409634813e-18) (86.74157432 -9.1252181 -7.4235882e-19) (87.08762959 -9.400718271 0) (87.53934058 -9.403549697 1.296944088e-18) (87.57062614 -9.434967768 -6.531678659e-19) (87.46786823 -9.351602366 -2.551046611e-18) (87.50516573 -9.376208489 1.65512691e-21) (87.06009258 -9.37796159 6.760110724e-19) (87.94957913 -9.307817515 -1.544827546e-21) (87.76897412 -9.348005226 -6.218042507e-19) (87.72615828 -9.319609723 6.192312219e-19) (120.9059761 -29.83935421 -1.227536898e-18) (120.1353962 -29.90425085 -1.170120382e-18) (120.1440223 -29.11551597 0) (119.7642912 -31.76432949 1.000866848e-18) (120.0903868 -30.75403824 -3.043074645e-19) (120.8704919 -30.68491262 0) (118.539635 -30.8013917 0) (119.3141155 -30.78717235 -1.167181044e-18) (119.2038988 -31.58909393 2.993417572e-19) (104.9690851 -33.68555469 -6.137675548e-19) (100.4495899 -32.88900599 0) (101.1966116 -33.05242122 5.860497458e-19) (89.07143177 -11.12212712 5.988084464e-19) (89.03105066 -11.06214732 -1.783181129e-18) (89.66012574 -11.06089524 -1.211062667e-22) (88.69780805 -10.33685555 0) (88.63955957 -10.29949762 6.118863512e-19) (88.96331253 -10.25586073 2.161295801e-21) (89.4651788 -10.78748408 -5.736474245e-19) (88.98860658 -10.82479514 1.775960034e-18) (89.04844441 -10.79196957 1.26262745e-18) (93.82985437 -12.4245219 0) (92.79835184 -10.9444537 1.220155633e-19) (84.75673489 -10.7193372 0) (94.60112181 -12.15668134 4.704676038e-19) (94.26435716 -12.26683602 4.812072584e-19) (94.14787883 -12.29051874 5.303604896e-18) (94.70858619 -12.47700362 -9.594136631e-21) (94.39933924 -12.38217003 4.697338924e-19) (94.75236281 -12.19435727 -4.773252668e-19) (93.23818251 -12.36687213 -4.292728224e-19) (92.96577832 -12.48536876 -8.966521824e-19) (92.84623206 -12.43787584 1.339951384e-18) (93.23844461 -12.56604296 -4.4610083e-19) (93.09615061 -12.52927282 0) (93.36545083 -12.4031538 4.352284135e-19) (89.75035756 -27.05553217 -2.805405605e-19) (94.0368186 -27.29833921 -5.863667326e-20) (94.3568773 -28.13773324 0) (93.43832718 -25.55552085 5.562444063e-20) (93.7485585 -26.43074632 9.763519717e-20) (90.89745221 -26.49958849 2.688844877e-21) (96.63839186 -25.89532064 -8.015406916e-20) (95.41960665 -26.20960794 0) (95.06655781 -25.37374609 0) (83.78341532 -21.51324374 -3.742840076e-19) (72.38273322 -19.58844708 0) (75.16721285 -18.77026484 0) (70.20274196 -21.53582581 3.096609996e-19) (65.81157983 -19.19080092 -7.320201546e-19) (83.50637508 -22.83476234 5.118965659e-20) (15.58391285 -9.608293007 0) (24.13724148 -11.54350332 0) (141.7276797 69.09483621 -2.289507833e-18) (143.071213 73.51969316 0) (148.6318264 70.57964398 0) (113.7527407 -33.61676698 0) (111.6632677 -33.63684881 8.194275705e-19) (111.7335387 -33.71770463 -1.597231714e-18) (111.0015175 -33.264486 1.716524013e-18) (111.4708333 -33.46273038 0) (113.8982546 -33.57210303 -8.377317482e-19) (50.31017132 -0.1172541972 0) (48.92206693 3.49250695 0) (52.3962968 4.224010562 0) (43.85950015 12.54980852 0) (43.68731641 7.302533765 0) (38.20481574 7.232571128 5.654274023e-18) (56.22326683 -3.580166236 0) (54.05349126 -5.408334617 0) (52.08812276 -3.114561525 -1.995691686e-18) (115.194991 -32.29037721 2.234490322e-18) (118.5779868 -32.69337154 1.049916998e-18) (118.5418612 -32.52024201 5.371068227e-19) (118.4138224 -32.81117161 2.504134282e-19) (118.5034481 -32.78205015 -5.258291626e-19) (115.499133 -32.55032857 -1.059416548e-18) (120.0566113 -32.14592025 9.987321814e-19) (119.6844913 -32.52743727 -5.093169809e-19) (119.3573944 -32.54433082 -5.014838068e-19) (94.76741903 -32.15296953 0) (99.94750956 -33.14870625 1.3228888e-20) (99.33357864 -32.98899286 -2.423558227e-19) (100.6590414 -33.16173415 -4.239861412e-19) (100.3651083 -33.16790871 4.558235713e-19) (95.6912684 -32.28903924 0) (104.6769638 -33.3458092 4.304021713e-19) (103.1680616 -33.41721613 4.285967464e-19) (103.0888795 -33.30651324 -4.334798964e-19) (95.74774443 -31.99202229 1.477671037e-20) (91.05657217 -31.14336965 3.819373349e-21) (91.87619451 -31.27262998 2.309694092e-19) (88.93634508 -30.84236001 -3.113258569e-19) (90.00656165 -30.96791485 6.741931044e-20) (95.26941498 -32.02867399 -2.688923462e-19) (96.45532156 -31.47292822 1.761182829e-19) (93.3268028 -31.12209587 0) (93.58105545 -30.96952593 1.275889455e-19) (92.50289912 -31.2568003 -2.091915405e-19) (92.98211417 -31.19972498 2.011890222e-19) (96.41500441 -31.66182713 3.975508054e-19) (154.0845582 41.17748561 0) (156.4821734 42.75670638 2.618123751e-18) (157.8638925 40.72376041 0) (153.1712796 46.85828074 0) (154.9438384 44.84524525 -9.182418263e-20) (152.5291061 43.04009625 -2.570410202e-18) (158.9649346 38.59017259 0) (159.7960014 36.45342856 0) (157.5263977 35.52617095 0) (146.9125447 48.3110336 0) (148.9335883 50.73821333 0) (151.1791687 48.79584174 0) (143.7680435 53.99254494 0) (146.4513176 52.47891425 0) (144.7380971 49.82221589 0) (151.1607773 59.05301884 0) (148.6764146 55.48264079 0) (145.6435415 57.11251696 0) (153.5924303 -1.450316724 9.988595672e-18) (154.6294255 -1.680905288 -7.673206165e-18) (154.5099792 -2.541926141 0) (155.9891364 3.760220444 2.717390399e-18) (155.7420399 2.807413123 8.644556368e-20) (154.7094344 2.997840842 -2.595051197e-18) (140.8777878 -22.60811915 0) (141.4286033 -22.23105622 1.973124298e-18) (141.2634295 -22.69988755 4.16512049e-18) (140.5978989 -21.05347458 1.866508003e-18) (140.9957915 -21.59630339 2.519026731e-20) (140.4730115 -21.96267243 1.827944981e-18) (144.1560374 -19.10612831 -2.393869251e-19) (143.6337609 -19.5118124 -2.028429057e-18) (143.0928861 -18.96196144 6.06915249e-20) (126.2885881 -30.47902572 -1.572380458e-20) (126.7034532 -30.36730948 0) (125.9552825 -30.74888787 -2.69028214e-18) (126.7536001 -29.51477667 6.389216108e-22) (126.7951829 -29.92382976 -1.261457756e-18) (126.3629163 -30.02480328 1.259175318e-18) (127.612702 -29.69519846 -1.289572747e-18) (127.2058484 -29.79938691 0) (127.1779032 -29.35684958 0) (130.1668869 -28.49056207 -1.398987138e-18) (130.0923502 -28.95788443 0) (129.7115688 -29.09367072 1.422053733e-18) (130.8120856 -28.69433562 0) (130.4508741 -28.84422054 -1.424353935e-18) (130.6009622 -28.34977719 -3.798907382e-21) (128.4220652 -29.03111892 1.320521967e-18) (128.4274447 -29.48771026 0) (128.0130686 -29.5861025 1.30419888e-18) (129.2959355 -29.24481071 -1.692531318e-20) (128.8584074 -29.37747417 0) (128.8573668 -28.91293393 0) (126.2550508 -29.8250629 0) (128.3552718 -29.81640175 0) (128.7306687 -29.66497227 0) (109.4617693 -33.82599433 7.197291784e-19) (109.3361062 -33.74550813 7.69621496e-19) (104.8636416 -32.95452952 -1.598623651e-18) (112.7264765 -33.5459382 0) (111.6970759 -33.80210962 1.329222852e-20) (111.5078484 -33.78817259 9.593686357e-21) (111.793653 -33.72749197 7.696032756e-19) (111.800683 -33.76327292 0) (113.0202641 -33.56757581 -7.513037771e-19) (92.41699886 -11.98050807 7.064845348e-19) (92.1969199 -12.06810093 -9.732177021e-19) (92.11387343 -12.01424982 9.826943042e-19) (92.36272935 -12.17717388 -2.312073306e-19) (92.27961648 -12.1253914 2.375227017e-19) (92.50645763 -12.04353035 2.3003155e-19) (91.50535069 -12.2832211 -1.321121321e-18) (91.96444428 -12.2075817 2.490910727e-19) (92.02122688 -12.25714238 0) (91.5318276 -11.87833215 5.081326702e-19) (91.60677161 -11.92153227 -1.026840459e-18) (91.20553238 -11.96383454 5.31591877e-19) (92.07570196 -11.77582611 9.57357608e-19) (91.87599384 -11.85560637 -4.93662353e-19) (91.79596976 -11.81002898 -3.570479367e-21) (92.03284401 -11.95766428 -4.91971315e-19) (91.95408863 -11.90642581 0) (92.15825507 -11.83517467 -4.810983352e-19) (75.211321 -9.297010763 2.061949242e-18) (75.78388627 -9.241953809 2.05315921e-18) (75.67455918 -9.819977124 1.057684768e-18) (75.81222972 -8.016708521 1.040913799e-18) (75.80562517 -8.630821052 -2.057825154e-18) (75.22182432 -8.609194305 8.60268084e-21) (76.84487309 -8.608448735 9.900075018e-19) (76.34489696 -8.630353127 1.012629561e-18) (76.34397562 -8.063165402 -8.252611933e-21) (73.36814121 -7.549018756 5.743908866e-19) (73.18844711 -8.34835352 -1.686693235e-18) (72.41127146 -8.156794766 2.348358054e-18) (74.59102177 -8.56398581 1.063165132e-18) (73.91369586 -8.482213377 1.097905456e-18) (74.02634071 -7.722328189 -1.11966888e-18) (73.82214412 -10.10352515 0) (73.88683899 -9.311817081 0) (74.57990651 -9.327268682 0) (79.12578109 -8.015764908 2.131533695e-19) (79.05586802 -8.318224997 -1.749064968e-18) (78.75950971 -8.360355997 0) (79.57844319 -8.230158708 1.721119118e-18) (79.32758859 -8.275298935 -7.37176597e-19) (79.40395593 -7.982274708 -1.037140297e-19) (77.74692163 -8.103557753 -9.735594452e-19) (77.72019301 -8.514048234 9.82138649e-19) (77.30519855 -8.567558465 -1.974059088e-18) (78.43889749 -8.403223333 0) (78.09453373 -8.456988801 -1.769736574e-21) (78.14282208 -8.088217153 9.425097827e-19) (68.41796937 -7.996128362 0) (69.48792317 -8.353661376 1.328486922e-18) (69.21122252 -9.515574578 0) (70.26731784 -6.339733979 -1.314886292e-18) (69.78730472 -7.303114844 1.300947475e-18) (68.80422647 -6.888791849 -2.257471255e-20) (71.58630109 -7.923306558 -1.834076178e-18) (70.71469107 -7.653688654 -2.582452284e-18) (71.07963165 -6.820356324 0) (155.6137928 14.57486644 0) (156.8478473 14.65749565 0) (156.8871189 13.4667628 -2.567261927e-18) (155.8606226 22.42472772 0) (156.176351 21.0947084 0) (154.7591211 20.74807236 -2.502000668e-18) (159.3560376 21.62702539 0) (157.7000117 21.38814673 2.575116456e-18) (157.3964048 22.78541897 -2.626229209e-18) (158.099548 18.5651581 0) (157.9498237 19.96965298 0) (159.6743342 20.16219136 -5.337860671e-18) (82.9712997 -7.757564716 1.613281135e-18) (82.80645021 -7.846810321 -1.018930164e-21) (82.72114058 -7.827821378 1.674275007e-18) (82.8688664 -7.886199905 -1.542395318e-18) (82.83953143 -7.857105406 0) (83.04569105 -7.778117759 3.864576877e-19) (82.56809228 -7.684778781 0) (82.4103621 -7.784760942 -8.990432322e-19) (82.30418881 -7.771208384 1.784335954e-18) (82.62414125 -7.814964646 4.078649739e-21) (82.51784987 -7.800113246 -2.701722807e-18) (82.67670306 -7.701536141 8.497380765e-19) (83.55160179 -8.053600209 -1.507327858e-18) (83.23806017 -8.116578597 1.595272318e-18) (83.17422405 -8.067543438 1.591479997e-18) (83.37221192 -8.245034157 6.289580556e-21) (83.30287515 -8.175472877 1.608483685e-18) (83.62792652 -8.110171495 0) (83.2478738 -7.882564909 7.362209467e-19) (82.97212863 -7.959732138 -7.727723665e-19) (82.90995936 -7.925327282 9.5795312e-19) (83.10941672 -8.026270862 -2.371235643e-18) (83.04189673 -7.991289933 7.850519149e-19) (83.32512693 -7.91964966 0) (80.93761015 -7.749372879 -5.165664444e-22) (80.83537145 -7.936702609 -8.487939264e-19) (80.65652998 -7.979720211 8.456635007e-19) (81.16675963 -7.862081567 -2.779894996e-21) (81.00532975 -7.898547324 0) (81.11140688 -7.723263595 8.187693733e-19) (80.13159119 -7.87976178 -8.153718193e-19) (80.04146195 -8.133243883 1.671100686e-18) (79.81462735 -8.182785744 -2.500167207e-18) (80.46520162 -8.028763396 8.446501369e-19) (80.25945295 -8.081201995 -3.351453543e-18) (80.35131205 -7.84501646 8.122693801e-19) (82.10882344 -7.651788718 1.672993904e-18) (81.96984933 -7.769464311 -2.630249189e-18) (81.8432259 -7.776022416 0) (82.19842752 -7.762961586 2.364237112e-21) (82.08851284 -7.763240455 1.763047999e-18) (82.23083364 -7.653721001 0) (81.57684358 -7.664691207 -7.36137423e-23) (81.45408304 -7.803908944 8.611506424e-19) (81.31644987 -7.828710091 -2.271705608e-21) (81.71361076 -7.781392672 2.299796703e-21) (81.58453945 -7.789240782 -8.645332305e-19) (81.7151548 -7.656183736 8.27193536e-19) (148.1199965 -13.05650849 0) (148.8932162 -13.54013092 0) (148.4575574 -14.17678489 -2.395809119e-18) (151.6084805 -9.631441326 2.314462263e-18) (151.0835615 -10.29123458 0) (150.1702981 -9.828433214 5.794514031e-19) (83.89337432 -8.309689284 7.697275914e-19) (83.55337756 -8.405126595 0) (83.45332081 -8.325182134 1.619388759e-18) (83.78458721 -8.526249933 -8.253961787e-19) (83.66808108 -8.471620518 8.136782454e-19) (83.99993637 -8.372018397 -7.734418456e-19) (133.5510798 -27.21919525 -3.132201722e-18) (132.3349183 -27.47510476 3.175058533e-18) (132.188932 -27.7119091 -2.333581985e-18) (133.0035207 -27.08021455 0) (132.6412152 -27.28631573 0) (133.9865116 -27.04978918 -3.882316413e-21) (131.9444555 -27.87562514 0) (131.6128487 -28.33971246 1.611716453e-18) (131.2062667 -28.52790786 0) (132.1032161 -27.87932874 -1.555050385e-18) (131.9397212 -28.10900348 -1.589556183e-18) (132.3779106 -27.68607921 -7.637205542e-19) (88.31880367 -9.64342426 -6.271503015e-19) (88.10414236 -9.687815206 6.54486855e-19) (88.05274504 -9.639344831 -1.490258795e-22) (88.30862603 -9.94915409 1.468589641e-19) (88.30082736 -9.902334261 6.078373067e-19) (88.55669051 -9.864691114 -4.434793419e-19) (86.83932706 -9.253116331 2.451433501e-21) (87.21140962 -9.207528155 1.406173722e-18) (87.24379746 -9.238090991 0) (87.14742389 -9.162280092 -1.646766491e-21) (87.1839795 -9.182594845 -1.290340093e-18) (86.85937154 -9.228304288 0) (87.53185244 -9.072388025 -1.561322022e-19) (87.38435883 -9.130765912 1.550790113e-19) (87.332922 -9.105771754 -2.238817863e-21) (87.68092179 -9.29300773 -6.157962e-19) (87.63297173 -9.267773397 1.222024638e-18) (87.80308196 -9.218049825 0) (86.95618724 -9.32587588 -6.629195365e-19) (87.38436056 -9.3074092 -4.07561302e-22) (87.42766798 -9.328790671 -6.336790507e-19) (87.28781594 -9.265089933 -1.233768361e-18) (87.33713855 -9.286979578 1.62297315e-21) (86.91557608 -9.313895605 -6.559089013e-19) (120.9270338 -32.1332916 0) (120.7379922 -32.24888632 0) (121.8549802 -31.96387424 -1.10354407e-18) (122.7170461 -31.74545223 0) (120.8018046 -31.78507362 0) (120.9881382 -31.95613108 0) (101.8652407 -33.27241697 -5.951998319e-19) (102.2423427 -33.4531404 -1.123528129e-18) (105.383081 -33.75573077 5.353464602e-19) (89.84002164 -11.25162609 -1.166365498e-18) (89.19268841 -11.27443731 6.057394568e-19) (89.12206137 -11.19605673 -3.220547637e-21) (89.12881975 -10.37641072 2.328317133e-21) (88.80028046 -10.40691596 6.265553851e-19) (88.75154438 -10.37184457 1.244674392e-18) (89.01485247 -10.71011119 -7.378894351e-19) (88.98925707 -10.64233126 3.717259614e-22) (89.35524696 -10.61637029 0) (93.77675796 -12.45015222 -4.671635977e-19) (93.54122576 -12.59808829 -4.240471523e-19) (93.38876246 -12.58708016 -4.411036834e-19) (93.68088763 -12.48408703 -2.884667751e-18) (93.68294916 -12.54659242 4.077845592e-19) (93.90664496 -12.43761864 0) (74.95254585 -24.27765813 0) (73.84990338 -24.29429727 -7.979360479e-20) (65.69875086 -22.42287305 9.921645754e-20) (86.00708502 -26.7927847 1.397155274e-19) (80.69537816 -25.76126067 1.611277954e-20) (81.51010831 -25.58261494 -8.889700649e-20) (73.87286372 -25.86107492 -2.671719547e-20) (75.15238599 -26.04612773 -2.79407087e-20) (82.32481884 -27.62715479 0) (121.1856047 17.01719754 0) (117.1652827 18.65797004 -1.028607789e-18) (116.1472121 23.81295761 0) (115.4928766 13.1099887 0) (116.4114715 15.63675335 0) (119.2074516 14.94019105 -1.251558022e-18) (111.5112064 15.36994166 7.984056663e-19) (113.8052012 15.72170484 0) (113.356414 13.37101381 9.239321958e-19) (109.580535 -19.5481058 5.879514535e-19) (111.3241177 -19.82140916 -7.577436706e-19) (112.0193165 -22.45551664 0) (110.5753813 -16.28561858 7.580132571e-19) (111.0466889 -17.94993081 -8.473172775e-19) (109.4683138 -17.79082737 6.950036849e-19) (114.4215884 -17.74849508 0) (112.706265 -17.93881028 -8.507177769e-19) (112.0528194 -16.20459345 1.748671976e-18) (102.9659186 -33.19955661 -3.96364997e-19) (102.7815453 -33.04692223 -3.721829263e-19) (103.8398881 -32.76969542 0) (97.4442791 -32.66569428 1.060603441e-20) (100.8916822 -33.06662513 7.43006915e-19) (100.827823 -33.1406717 4.007300285e-19) (100.8788509 -32.80166855 3.298860631e-19) (100.9060251 -32.9403251 0) (97.87684489 -32.63112148 0) (115.7111686 -28.42795517 -8.959975336e-19) (116.0095564 -26.66403154 1.08525285e-18) (117.3585241 -26.65677841 -1.143796107e-18) (113.3732406 -26.40806077 1.728227474e-18) (114.6810554 -26.57040203 -1.929937202e-18) (114.6519587 -27.96243356 2.411474379e-18) (50.52540326 54.50282597 4.094965843e-18) (42.3896399 54.52820071 0) (46.85392611 68.04080492 -3.244456831e-19) (44.56658103 35.89796321 3.013295502e-19) (42.23316979 44.04433353 0) (49.3656301 45.92969397 -4.894836299e-18) (25.78844934 33.27109182 0) (35.59830484 39.736146 6.382060085e-18) (38.92990048 31.5967018 -1.343275004e-17) (104.3767512 93.51230399 0) (89.78965172 103.9549279 -2.159900087e-18) (105.091232 105.6482584 -1.007105905e-16) (84.80938432 80.32673003 0) (87.84480299 89.21825355 4.552023078e-18) (98.48834851 85.28049843 0) (57.83437095 81.15043836 -7.370061271e-20) (72.07061391 89.03260735 1.380525392e-18) (73.91990679 78.97400257 -1.44650591e-18) (115.2054145 37.74719657 3.274164384e-19) (116.9202903 33.59073567 0) (113.5278868 31.99141654 0) (126.8197466 33.39663064 0) (121.1144223 34.49724855 -1.914001487e-19) (118.1375758 40.57398247 0) (150.9779917 34.04183098 -2.435977593e-18) (151.8621663 32.64918917 2.415327648e-18) (150.0951048 31.55630896 0) (155.3575334 34.57561169 0) (153.3575024 33.61876922 0) (152.445117 35.19188166 0) (155.001647 30.37702819 0) (154.2133595 31.97882169 0) (156.218837 32.83358381 -2.553599965e-18) (85.67390096 -7.915413226 0) (85.86110727 -7.999440996 8.329793071e-19) (85.69047948 -8.197121586 -2.073586916e-19) (86.16460155 -7.623202428 7.885889304e-19) (86.0161237 -7.807974251 8.085953807e-19) (85.8328622 -7.721081097 0) (86.37111354 -7.969766692 0) (86.19572008 -7.890954278 -8.096539881e-19) (86.34031443 -7.709258301 -2.354182372e-18) (85.43207229 -7.240442814 -1.580098195e-22) (85.27110361 -7.433706085 8.421880378e-19) (85.08256169 -7.331518314 1.399040427e-21) (85.64693669 -7.629519381 8.271567567e-19) (85.45947886 -7.533432424 8.39290932e-19) (85.61832953 -7.341338527 -8.158993607e-19) (85.10471868 -7.932578843 -2.200594606e-19) (85.29335522 -7.730405267 8.576685106e-19) (85.48435762 -7.825551866 -1.699919263e-18) (111.3417189 -33.35838484 -1.331966248e-18) (110.796602 -33.65843514 9.311584055e-21) (110.4869556 -33.58952111 6.651430681e-19) (111.2941925 -33.75169627 6.971710199e-19) (111.0573925 -33.69497996 6.827778357e-19) (111.7072013 -33.37720157 -6.87761912e-19) (106.7673747 -33.60255909 0) (109.6722063 -33.84696546 6.95900658e-19) (109.5864225 -33.82721883 -6.875837771e-19) (116.8525814 -31.64655371 0) (116.9916196 -30.79038594 0) (117.7652943 -30.80367239 0) (115.4497822 -30.71461497 -9.728828567e-19) (116.2192502 -30.76121246 9.631695393e-19) (116.0748279 -31.59624472 1.009050148e-18) (91.74387222 -11.57922737 0) (91.55168687 -11.66120587 4.867870543e-19) (91.47411106 -11.60991256 -4.885866854e-19) (91.71410805 -11.76159305 -2.732054216e-21) (91.63182357 -11.71375025 -2.732129449e-21) (91.82454036 -11.63881731 -9.627297652e-19) (90.97104073 -11.84848745 -1.047433306e-18) (91.3695371 -11.78738999 0) (91.45152629 -11.83516991 1.00676817e-18) (158.1484945 27.78412276 0) (156.2658574 27.25845926 0) (155.6929178 28.80639827 -2.459647605e-18) (157.0818889 24.23695076 0) (156.720846 25.73011486 0) (158.5066797 26.14113599 -2.773370851e-18) (153.5602245 24.76478278 0) (155.0984506 25.23554036 2.543853957e-18) (155.5056658 23.82886169 -2.548894067e-18) (86.84580706 -7.945669913 0) (86.70795924 -8.116151935 4.770435505e-21) (86.54191543 -8.044778493 0) (87.02500684 -8.252276604 -7.827757065e-19) (86.86898953 -8.185108983 1.569296229e-18) (87.00534867 -8.02013333 0) (86.56990779 -8.517178918 0) (86.72724162 -8.348309677 8.102060469e-19) (86.88331768 -8.410001549 0) (86.19380893 -8.680268963 -9.510188881e-22) (86.11115549 -8.660010122 1.286582191e-18) (86.2239521 -8.578508258 -6.449100051e-19) (85.77368246 -8.833082012 6.704728463e-19) (85.96938252 -8.748540856 -1.307446461e-18) (86.05069017 -8.765361393 -6.55489252e-19) (85.79782164 -8.708163541 -1.639258779e-19) (85.88415926 -8.730242774 -9.791583609e-22) (85.68966841 -8.822147787 1.797681838e-21) (85.45246474 -8.750566229 0) (85.62568 -8.654770549 8.477039333e-19) (85.71238255 -8.682114426 -6.657149672e-19) (85.44021413 -8.593672005 -3.558824556e-19) (85.53489831 -8.62550234 0) (85.37071825 -8.724930987 -7.290511977e-19) (85.77949572 -8.42799371 6.590330007e-19) (85.66746395 -8.526043299 0) (85.57176648 -8.495437407 3.403486704e-19) (90.98151886 -11.46777593 -1.272602421e-19) (91.03323291 -11.51453602 4.354804225e-19) (90.6907832 -11.5633011 1.076285769e-18) (91.43999302 -11.37572413 2.447568986e-19) (91.26453809 -11.45032292 -7.385208064e-19) (91.19859931 -11.40370004 1.120773779e-18) (91.4001123 -11.55529513 0) (91.3303989 -11.50299396 -2.443769429e-19) (91.5121399 -11.43387245 -1.849392141e-23) (108.5198437 -33.57226363 -1.159268337e-18) (108.8170869 -33.66497106 -1.097421756e-20) (107.5416472 -33.84014972 1.214526079e-18) (109.8371917 -33.0065856 -1.188576712e-18) (109.4800005 -33.3455577 0) (109.0934202 -33.26485376 5.790198387e-19) (110.162797 -33.51941234 6.381760308e-19) (109.8183389 -33.4305816 -6.184897821e-19) (110.2315669 -33.05072306 6.056248533e-19) (116.054951 -33.32973923 9.270787352e-19) (116.8518535 -33.02742791 -6.328315499e-21) (117.1890272 -33.00324981 0) (116.1168903 -33.02158566 -8.700131123e-19) (116.4892453 -33.03582779 -8.947503841e-19) (115.7887393 -33.3656961 2.683846903e-18) (116.9025899 -32.28585099 -8.804107216e-19) (116.7780819 -32.63508155 1.227024361e-20) (116.354836 -32.63237136 8.692164497e-19) (140.8392798 25.66539727 -2.416754235e-18) (142.8224566 27.28751799 2.552079326e-18) (144.3130719 25.32141383 1.186607477e-19) (145.6771456 33.32236519 2.678198142e-18) (143.2349478 31.13679332 -2.509997691e-18) (141.1112698 33.13809474 2.515485093e-18) (119.033264 -32.58006463 0) (118.6829823 -32.60087446 0) (118.9066301 -32.21241682 -1.928142336e-18) (116.4058205 -33.0630379 -2.044926887e-18) (118.0798257 -32.93921962 9.951675593e-19) (118.2884859 -32.86917528 0) (117.5009596 -32.98585591 0) (117.8040635 -32.97399984 0) (116.3855868 -33.1606499 -9.716630107e-19) (114.9128203 46.66917812 0) (118.5067288 48.56452714 0) (120.0387478 44.81615174 0) (113.0235345 57.58517386 0) (116.3400761 52.83595574 0) (112.3811822 50.11936784 0) (126.8453301 55.8596565 0) (121.2197425 54.83937735 0) (118.7418926 60.61115834 -9.774175179e-19) (125.0788431 -29.88130789 2.386171595e-18) (125.1021161 -30.28018155 1.189004814e-18) (124.6857071 -30.35070896 -1.190223702e-18) (125.9367876 -30.12213262 0) (125.5114062 -30.19523123 0) (125.4977897 -29.74940058 7.741356758e-21) (125.0763703 -31.04257368 1.373965631e-18) (125.4653578 -30.63030073 0) (125.8713686 -30.55896921 -2.486437099e-18) (66.69507658 -3.856061229 -1.457466063e-18) (65.65262192 -4.915522679 0) (64.5968494 -4.011792373 -2.967825666e-20) (67.77501972 -6.350805838 -2.354924284e-20) (66.7164464 -5.70784039 0) (67.60530275 -4.727955399 1.446288423e-18) (65.34598392 -8.242744612 3.985050436e-20) (66.124755 -6.887256078 1.40872031e-18) (67.2893446 -7.521407396 -2.574702463e-20) (86.06410835 -8.895858613 -2.065803669e-18) (86.27728007 -8.824919742 0) (86.35135383 -8.845765244 -6.675947273e-19) (86.1279171 -8.783650789 0) (86.20293096 -8.803693479 -6.622306289e-19) (85.99280045 -8.875760656 -1.007613148e-21) (86.46626513 -8.645356955 7.981440646e-22) (86.35065414 -8.724841825 1.296198257e-18) (86.27326128 -8.703428798 -6.457887982e-19) (86.78221798 -8.859529025 7.37496249e-22) (86.71571295 -8.838234538 -6.542087343e-19) (86.83504831 -8.775226467 6.449960942e-19) (86.34529611 -8.957645258 1.411187781e-18) (86.56261777 -8.902022799 -1.356652177e-18) (86.62631652 -8.920835536 1.505396686e-21) (86.42439583 -8.86554575 1.345052352e-18) (86.49517245 -8.883938378 1.350346882e-18) (86.27991532 -8.945202792 -1.399221391e-18) (84.65704847 -8.468493449 1.511092332e-18) (84.82580665 -8.364498761 0) (84.9304262 -8.408201309 7.243088553e-19) (84.61655993 -8.269493476 7.216531544e-19) (84.72108793 -8.318116189 7.201729874e-19) (84.5501649 -8.42305204 -7.537925085e-19) (84.98757327 -8.106260643 0) (84.86328523 -8.212693826 -6.921406299e-19) (84.76056895 -8.165406752 6.904446825e-19) (85.47389007 -8.460012281 0) (85.37397964 -8.425690619 6.885961366e-19) (85.48863175 -8.330279735 6.67053794e-19) (85.07920189 -8.624625324 -7.693774829e-19) (85.24084085 -8.525781361 1.44915667e-18) (85.34192009 -8.560613466 0) (85.03467041 -8.449740098 -7.237366132e-19) (85.13824267 -8.488746102 7.243741759e-19) (84.97509993 -8.588927295 7.629275912e-19) (135.9576052 -24.52053108 2.107258116e-21) (135.491696 -24.73747758 0) (135.3230926 -24.22728717 -1.58619135e-18) (135.876565 -25.80057365 -1.580041299e-18) (135.7043141 -25.23052237 0) (136.1814581 -25.02544082 -1.958999228e-20) (134.7716183 -25.62940008 0) (135.2339779 -25.4270062 3.97715087e-19) (135.4263557 -25.94945398 2.00327427e-18) (91.14259153 -11.18586766 5.040279187e-19) (90.98492114 -11.26338769 0) (90.90874271 -11.21701906 5.180439049e-19) (91.13021497 -11.35614933 -2.491496423e-19) (91.05889946 -11.31113212 -2.536946911e-19) (91.2182206 -11.24134318 -4.985018509e-19) (90.5912525 -11.44004469 0) (90.85950165 -11.37902226 -7.980503741e-19) (90.92336308 -11.424145 5.570990792e-19) (90.41511795 -11.07512654 0) (90.48667584 -11.13224854 -4.786597273e-22) (90.22632114 -11.19764328 5.602480684e-19) (90.83624714 -10.98493816 0) (90.67970358 -11.06106821 5.227145704e-19) (90.60671488 -11.00738009 3.591055271e-22) (90.8317726 -11.16638088 -5.187763213e-19) (90.75491254 -11.11602888 2.530423606e-21) (90.91104116 -11.04475671 5.082987297e-19) (82.21527284 -25.36181719 1.693516611e-19) (82.86495187 -25.13685873 -9.133770259e-21) (87.13870321 -25.85293641 9.053548326e-20) (69.20873233 -22.34878095 2.598974659e-19) (76.79210043 -23.95711773 -2.13659791e-19) (76.00615073 -24.10792295 2.152219227e-19) (77.93989797 -23.42489595 0) (77.64033509 -23.76532697 -2.476174259e-19) (70.27830074 -22.32496524 3.947013898e-21) (91.16719267 -29.75141981 0) (90.7747208 -29.93015005 7.392844733e-20) (85.69913663 -29.03370816 2.336105202e-20) (96.13708473 -30.43252604 -4.751155198e-20) (94.12091118 -30.35313265 6.354168581e-20) (94.16998134 -30.08322331 -6.391507579e-20) (93.80570731 -30.78776761 -2.244191318e-20) (93.98787492 -30.57261356 -1.930015451e-19) (96.25802136 -30.68095345 1.610030517e-19) (110.6610246 68.03181164 0) (114.4683863 70.98492801 0) (117.2381796 66.8654445 0) (105.1737523 80.24889699 0) (110.6491013 75.41120623 0) (106.41918 71.50511796 0) (123.4385742 82.23899026 0) (116.4608352 79.2143173 0) (112.0320618 85.27045874 0) (94.01110024 -12.27905773 -4.218746228e-19) (93.96129921 -11.99661623 8.690915405e-19) (93.83456902 -12.41647907 -6.857834523e-19) (93.60321626 -12.62988552 0) (93.6861191 -12.3062302 0) (93.90710985 -12.29961132 -4.228151467e-19) (83.55596744 -11.47997678 -8.588784373e-19) (91.79172892 -11.71234592 9.508546237e-19) (92.04938803 -12.37757114 -7.244983912e-19) (21.28630421 -9.245521539 2.599943973e-19) (13.77396333 -8.086096013 -3.309612889e-18) (44.81079117 -4.812118328 5.120018155e-18) (54.04193355 -17.17103483 2.595521633e-18) (38.86211645 -15.11067735 1.129309492e-18) (42.47101348 -14.97550304 8.993267961e-19) (46.0380039 -16.67271917 2.411365869e-18) (39.75944586 -15.47133646 -4.746560796e-18) (56.40343604 -18.70231988 0) (99.97065724 0.1936924057 4.119368539e-21) (99.96375581 0.2451091557 -1.002763204e-20) (99.99641127 0.08286155169 2.003994398e-21) (99.955645 0.3085961771 3.980430995e-21) (99.94325302 0.3808667938 0) (99.99576184 0.1278207779 0) (99.93329865 0.4615438708 0) (99.92437238 0.555476465 -5.093295155e-21) (99.99465384 0.1864780695 5.409921204e-21) (99.91624353 0.660938862 6.02311338e-21) (99.90998429 0.7760477212 -3.173977342e-21) (99.99365429 0.2597297822 0) (99.90689756 0.8975657966 6.028155679e-21) (99.90825386 1.020853376 2.551676495e-21) (99.99352659 0.3404726336 4.740452697e-23) (99.91488224 1.139678271 -4.123622285e-21) (99.92702971 1.244547939 1.217940477e-21) (99.99425303 0.4145734428 3.85411485e-21) (99.94457564 1.331027438 -1.652648103e-21) (99.96809431 1.390791023 0) (99.99698046 0.4629541437 0) (99.99369657 1.417739329 2.406597974e-22) (100.0186883 1.409471711 0) (100.0021753 0.4688558455 0) (100.0428992 1.367690193 -1.535534739e-21) (100.0625772 1.296529582 -8.624179968e-22) (100.0055851 0.4311427105 8.511090366e-22) (100.0761011 1.205219571 5.396301989e-22) (100.0846497 1.098243513 8.876237666e-22) (100.0061813 0.3650728268 -8.860663945e-22) (100.0882589 0.982803727 3.234300863e-21) (100.0874171 0.8661931668 -2.042574435e-21) (100.0063111 0.2887756925 0) (100.0833453 0.7531956826 0) (100.0771794 0.6475434801 2.984557938e-21) (100.0055021 0.2163197168 0) (100.0686245 0.5521371409 1.551211438e-21) (100.0552438 0.4633553466 0) (100.0054796 0.1548828441 -9.815031217e-21) (100.0471855 0.382571781 0) (100.0396251 0.3140465076 0) (100.0039307 0.1059367178 0) (99.89213725 0.2502412301 -8.488520934e-21) (99.86333578 0.3272800277 -8.358194482e-21) (99.93195981 0.2460553729 4.16049413e-21) (99.83053939 0.4204158486 -8.351236532e-21) (99.79277765 0.5343243208 8.252818927e-21) (99.89540513 0.3974155712 -4.655197082e-23) (99.7502108 0.6692998652 0) (99.65828489 0.9345287875 0) (99.88487061 0.5881337258 7.263706634e-21) (99.79433282 0.7868034243 -1.451651542e-20) (99.79531825 0.8655306377 3.785602018e-21) (99.86563742 0.7127116192 -2.216881582e-22) (99.73448079 1.144470843 -1.980757713e-20) (99.74547444 1.244797987 1.261231061e-20) (99.83482594 1.020408029 2.000260658e-22) (99.69594022 1.582388677 1.132967397e-20) (99.72315452 1.695980042 0) (99.82376262 1.384507512 -2.688590617e-21) (99.70747361 2.045049812 -8.99737893e-21) (99.75966343 2.148844707 0) (99.85266444 1.750302144 -2.029541714e-21) (99.78772402 2.433014121 -6.161888904e-21) (99.86535854 2.500963834 9.949698219e-21) (99.92972557 2.031544444 -1.197910346e-21) (99.93377808 2.631493552 0) (100.022575 2.639857052 -1.05015508e-21) (100.0386973 2.144173882 0) (100.0932012 2.565469706 -5.642619943e-22) (100.1742684 2.513327036 4.730674753e-21) (100.1394887 2.046707387 -2.689419442e-21) (100.2088692 2.271947774 6.528938104e-22) (100.2652784 2.179258555 9.3625377e-21) (100.1997861 1.782137978 5.762296592e-21) (100.2585658 1.859225503 3.977524123e-21) (100.2918154 1.751487147 -1.308702138e-20) (100.2144851 1.436934166 -4.175098961e-21) (100.250202 1.422298832 5.294886867e-21) (100.2664192 1.322111582 -5.293913077e-21) (100.1944441 1.089870961 5.248915872e-21) (100.4112435 1.386758413 0) (100.3165021 1.034856197 0) (100.1595281 0.7534414176 0) (100.2726931 0.8575139071 5.641961741e-20) (100.23103 0.7011141612 -2.891894237e-20) (100.1154036 0.5147961041 -2.949367236e-20) (100.1935759 0.5687695565 -8.83776361e-20) (100.1588577 0.4566026357 6.662776485e-20) (100.0747564 0.3446154164 -3.683235394e-21) (99.73371354 0.3280214638 -1.193216228e-19) (99.66865701 0.4388200839 1.353163229e-19) (99.77441936 0.3935337648 0) (99.59158091 0.5731651258 6.711633867e-20) (99.50169167 0.7384414595 -6.820934948e-20) (99.6604153 0.6500989156 2.494693375e-20) (99.39823327 0.9409961482 -6.801017943e-20) (99.19469094 1.291965488 0) (99.55845928 1.038725676 0) (99.4036381 1.261370348 1.52303066e-20) (99.35978039 1.400989813 0) (99.48877559 1.279224232 -1.457667956e-20) (99.22501008 1.886116212 -1.39537213e-20) (99.18665945 2.070384132 -1.390186623e-20) (99.35402557 1.875572766 6.668080845e-21) (99.10453931 2.669461088 0) (99.09703311 2.882750921 9.799335541e-20) (99.28509265 2.595805873 -1.167551702e-20) (99.12980553 3.540194972 -4.126410555e-20) (99.17116079 3.756195472 0) (99.35195955 3.349609691 0) (99.37659567 4.334099679 0) (99.48344884 4.488522401 0) (99.60047305 3.968242025 -2.31037872e-20) (99.85752007 4.771613733 2.591559651e-20) (100.0006724 4.795582784 8.269626667e-21) (100.0020134 4.222299288 -6.257642052e-21) (100.389428 4.647159603 0) (100.5057495 4.530406213 -3.836186001e-21) (100.3930083 3.997480921 -1.445648716e-20) (100.7436288 4.03575244 2.402642023e-20) (100.7948584 3.83768364 -1.344044974e-21) (100.6215453 3.410384335 -2.031232815e-20) (100.8557774 3.212025161 -4.420426806e-21) (100.8583783 3.003928018 -2.106459702e-21) (100.6806198 2.694705504 9.622037031e-21) (100.8105222 2.412276346 0) (100.783141 2.226120021 -1.155543269e-20) (100.6227052 2.007533721 2.297367411e-20) (100.99674 2.007694175 1.015271028e-19) (100.7802127 1.521937483 0) (100.5229745 1.293420864 1.11662485e-19) (100.6719039 1.246747493 0) (100.5711781 1.011068985 3.018284153e-20) (100.3840572 0.8688652893 8.784120054e-20) (100.4804259 0.811147557 -2.266451325e-20) (100.3998304 0.6427312073 7.624801436e-21) (100.2659772 0.5703267808 -1.51454808e-20) (99.53459443 0.3304628585 3.067285487e-20) (99.42103869 0.4608083582 -3.503031088e-20) (99.54912715 0.462738533 0) (99.28331308 0.6156439438 0) (99.12193014 0.8094284695 -6.895555952e-20) (99.32096768 0.7923897267 2.044122179e-19) (98.93443389 1.055373998 0) (98.57180435 1.45427825 -2.613350239e-19) (99.05254533 1.35607605 0) (98.80631894 1.580834944 4.866392033e-20) (98.70926477 1.773109823 1.584474041e-20) (98.89114124 1.700395328 -1.586016633e-20) (98.42386141 2.444417059 3.942826513e-19) (98.33679719 2.703352532 -5.74226731e-22) (98.57652104 2.570710601 -1.485663027e-20) (98.11923784 3.599431806 2.316705001e-19) (98.07188839 3.936919433 0) (98.37276413 3.691907783 0) (98.06010956 5.037736142 2.137850431e-19) (98.11644499 5.420717921 -1.647006945e-19) (98.43935573 5.00046246 1.046173657e-19) (98.52601737 6.511853882 2.586062506e-19) (98.75223745 6.821084159 -1.190115751e-19) (98.9860055 6.192085855 0) (99.6487248 7.416363353 9.15954145e-20) (99.98943633 7.472978815 1.52016033e-20) (99.99500164 6.730534287 0) (100.9506263 7.186273027 5.654235919e-20) (101.2145403 6.957340921 3.888912108e-20) (100.9903093 6.296553838 0) (101.7442949 6.016637395 -2.505413736e-19) (101.8344258 5.6554709 1.325981822e-19) (101.5139323 5.183806731 6.203034604e-20) (101.8965837 4.559948316 2.224651065e-20) (101.8663185 4.210858266 1.650383226e-19) (101.5645498 3.916186021 0) (101.6908915 3.254597604 1.040619233e-19) (101.6190543 2.978736305 -2.053685111e-19) (101.37735 2.80973192 4.532960126e-19) (101.8152459 2.431947679 -7.473522281e-21) (101.4342261 1.859607514 8.394560065e-21) (101.087127 1.714467911 -2.247765079e-20) (101.2233315 1.492368749 -9.496044769e-20) (101.0343324 1.195462027 1.529380389e-20) (100.7893196 1.122029561 1.594936729e-20) (100.8672982 0.9478741553 1.566482432e-20) (100.7254291 0.7359558554 1.60739948e-20) (100.5547886 0.7164595378 3.139385045e-20) (99.33663114 0.2413060395 -1.799714918e-20) (99.16045985 0.3667312202 2.693426103e-20) (99.28984446 0.4296155621 -4.446343767e-20) (98.94945195 0.5176543791 -3.654638171e-20) (98.69880004 0.7142763445 1.819741869e-20) (98.91163093 0.7846939476 9.069095029e-21) (98.40566951 0.9571796758 -9.378686058e-21) (97.87331432 1.349815831 -5.467406739e-20) (98.39876344 1.457222388 0) (98.06290199 1.638869205 0) (97.90109712 1.852436623 -6.209051941e-21) (98.11261792 1.866072038 -2.78859668e-21) (97.38122881 2.659142228 0) (97.19962464 2.991832562 -5.52679542e-19) (97.50725627 2.967855267 5.637758365e-19) (96.67656275 4.204642354 -5.729205571e-19) (96.52463322 4.686049066 2.731450401e-19) (96.96571802 4.544594854 -2.723906907e-19) (96.24296727 6.393084244 -1.311498984e-19) (96.24815164 7.045970426 2.139337261e-19) (96.81888845 6.659826389 5.361457911e-19) (96.79193126 9.121688188 -3.699071827e-19) (97.20330263 9.777029602 3.300920756e-19) (97.71395868 8.960240613 -5.259643471e-20) (99.13230466 11.13038488 -1.368985358e-19) (99.91677311 11.2646611 2.572230545e-20) (99.94459879 10.15626702 2.914762497e-20) (102.0873444 10.61458124 -8.247283699e-20) (102.6327695 10.12086888 0) (102.1749389 9.23997364 0) (103.5785189 8.267697315 9.274518367e-20) (103.6888502 7.613260846 -4.477035336e-20) (103.1229025 7.126637825 4.562522558e-20) (103.6098004 5.773455903 0) (103.4857596 5.23903157 0) (103.0138877 5.007192079 0) (102.9858386 3.865886395 3.001273154e-20) (102.8070446 3.485216596 -3.019749984e-20) (102.4756134 3.389635394 0) (102.8294924 2.560298749 0) (102.2152077 1.929647943 5.165621021e-20) (101.8131627 1.934124521 -2.387228618e-20) (101.8838806 1.532272667 3.181212445e-20) (101.5794006 1.204444742 3.304968404e-20) (101.3004249 1.224947224 6.399237206e-20) (101.3119569 0.9368221476 -1.644496426e-20) (101.08762 0.7073349564 -1.125601966e-22) (100.9032281 0.7530378565 -1.610909088e-20) (99.16343171 0.05301306396 -1.827409115e-20) (98.9292128 0.1445623102 -1.859552669e-20) (99.03783553 0.269240055 0) (98.64691292 0.2621774309 -2.546497175e-22) (98.30578294 0.4240740786 2.86391205e-20) (98.49302459 0.594505066 -1.834717235e-22) (97.90049751 0.6277084591 9.761817993e-21) (97.22824689 0.9096479675 3.122924758e-19) (97.70360314 1.271522537 -1.122191455e-19) (97.30213476 1.355156742 -1.55155312e-19) (97.05110829 1.566774624 9.555647249e-19) (97.25980796 1.676081327 0) (96.19252879 2.387374595 -6.613578421e-19) (95.87124546 2.734993492 0) (96.20911195 2.855508298 0) (94.81091179 4.083793668 0) (94.43399797 4.661911268 -1.576188675e-19) (94.99960996 4.765390425 -9.394028405e-19) (93.32205743 7.014314929 1.479146265e-18) (93.01898139 8.053453608 1.288679245e-18) (93.98668481 7.927897264 0) (92.95566185 12.10478698 -5.203530368e-19) (93.49905834 13.70293654 0) (94.78250228 12.62492447 0) (97.79514626 17.43831718 -6.317325793e-20) (99.80894235 17.75913119 0) (99.81923673 15.69796447 0) (104.8741852 15.61737356 0) (105.8434662 14.34947969 0) (104.7528029 13.19655368 0) (106.9894196 10.4942981 -7.759578869e-19) (106.9438583 9.357926719 5.577885601e-19) (105.9710997 8.976911501 7.293941007e-19) (106.1748516 6.5446218 0) (105.8168469 5.794248065 -2.866374057e-19) (105.165207 5.729100113 0) (104.6877609 4.018161424 -5.49427748e-19) (104.3303773 3.557970353 0) (103.9236541 3.595369529 -6.74054288e-20) (103.9540197 2.268000303 2.288002015e-21) (103.0507446 1.663298551 0) (102.6315464 1.839674966 -2.597597747e-20) (102.5623976 1.300066456 8.923631859e-21) (102.13316 0.9899356709 0) (101.8611481 1.127613047 0) (101.7563779 0.7446166946 0) (101.4346622 0.5355985129 -1.708316332e-20) (101.2661006 0.6538228175 4.242539485e-20) (99.0669469 -0.2284444067 -6.872201584e-21) (98.78338394 -0.1931436735 0) (98.84232464 -0.01354479926 0) (98.44058327 -0.1380622386 -1.431469898e-20) (98.02886471 -0.05200599504 0) (98.14785164 0.2064943241 1.989869613e-20) (97.54525436 0.06483677751 7.983605044e-20) (96.76575224 0.1723801989 7.516358054e-19) (97.09032402 0.7488200471 0) (96.65358573 0.7141542868 -1.338926864e-18) (96.31453745 0.8765997025 -6.851512516e-19) (96.47685821 1.085252869 8.530538637e-19) (95.11029597 1.525141653 -7.414774479e-19) (94.63470058 1.80677238 7.582376252e-19) (94.91446493 2.105182754 -1.87391289e-18) (92.90787267 2.927411807 -6.19084336e-19) (92.20327523 3.424920177 8.757968237e-19) (92.72283457 3.87171428 -1.229811679e-20) (89.52435595 5.576194484 7.503570116e-21) (88.3824467 6.661573957 9.027539723e-19) (89.57767162 7.374658832 4.045938488e-19) (93.28131265 28.44152287 0) (96.42596839 29.35371703 0) (96.76868745 26.63615716 0) (112.7115192 11.38778442 -1.013424566e-18) (111.9613508 9.716807701 0) (110.5467706 9.88105269 0) (109.5228105 6.123783004 -2.073768074e-19) (108.7343672 5.272318478 3.541100422e-19) (107.9737303 5.539371974 -3.514808688e-19) (106.6201432 3.403985455 0) (106.015585 2.950157225 6.59962778e-19) (105.5984169 3.175725656 -4.602059493e-19) (105.0060584 1.45897875 0) (103.8100969 1.048890245 2.246997845e-21) (103.4524925 1.401354043 4.876196827e-21) (103.1441155 0.7609954831 -5.096253881e-21) (102.5957239 0.5319395111 -1.144923127e-22) (102.382713 0.7888028264 -9.223907955e-21) (102.1269666 0.3600373144 -2.481141884e-20) (101.7212179 0.2164937457 5.145794793e-23) (101.5892657 0.4028261171 8.845308871e-21) (99.0813887 -0.5770493602 3.441178206e-21) (98.76644153 -0.6151625643 -2.352453201e-21) (98.7569579 -0.3988580369 -2.305662061e-21) (98.38715184 -0.6419632288 -4.819628563e-21) (97.93957782 -0.6582584513 0) (97.9576484 -0.343395854 5.024701904e-21) (97.41702562 -0.6614968858 -4.105196555e-20) (96.60178198 -0.7602873134 -6.86737101e-19) (96.69345782 -0.05139827145 4.38076416e-21) (96.27825366 -0.2211335347 -1.40796867e-18) (95.88118112 -0.148869102 7.270041629e-19) (95.95200478 0.1293614692 -9.008566554e-19) (94.45510925 0.1519513211 -8.066447416e-19) (93.88361961 0.2798963933 8.228257026e-19) (94.0075159 0.6981022327 -1.046821291e-20) (91.75560699 0.7425725101 -1.027781803e-18) (90.86119239 0.9183142069 9.055445658e-19) (91.05701129 1.612292405 0) (128.8986324 21.63729746 -1.765307701e-18) (127.2696906 19.25814091 1.271818072e-19) (125.0758461 20.37860301 1.785197685e-20) (119.63794 7.918064017 2.667320014e-18) (117.6543813 6.553069365 -9.789980001e-20) (116.3571483 7.745255409 0) (112.8143119 3.771930208 0) (111.5057891 3.148849137 8.473454774e-19) (110.8891595 3.840457314 -4.14808455e-19) (108.3140617 1.84037184 0) (107.4622753 1.534993375 0) (107.1460307 1.962580727 1.727269735e-19) (105.714503 0.1820440657 -8.355204014e-20) (104.312728 0.09751764839 -8.414398717e-21) (104.1032041 0.6098335867 9.300286485e-20) (103.5094581 -0.03766636297 2.057473009e-20) (102.8653208 -0.1277336986 -3.601586906e-21) (102.7599374 0.2235438989 7.292476491e-21) (102.3306949 -0.1868583073 -1.044474733e-20) (101.8706386 -0.2287499786 0) (101.8162808 0.009425095861 -1.108419247e-22) (99.22638141 -0.9592559688 0) (98.90287667 -1.077577394 0) (98.81489965 -0.8472256202 0) (98.51716256 -1.19484689 -2.367925182e-21) (98.07231234 -1.319214974 0) (97.97771734 -0.9869599457 -2.517897946e-21) (97.55349291 -1.450127902 4.100285688e-20) (96.78189922 -1.744188471 -6.01107299e-19) (96.6143395 -1.012947302 4.259773048e-20) (96.27305106 -1.292335197 -4.629527291e-20) (95.86366034 -1.321384737 -9.6399362e-20) (95.82243229 -1.026431942 1.881900862e-19) (94.41511762 -1.401842684 -1.23360151e-18) (93.84591479 -1.435872176 1.27764078e-18) (93.78257351 -1.014035277 0) (91.79765454 -1.627235651 0) (90.97700769 -1.747203168 -9.524500793e-19) (90.83510244 -1.126552694 -6.872055788e-19) (139.2202657 3.615760071 2.553246762e-18) (136.5664192 3.496514234 -2.282124754e-18) (136.2875711 5.665438259 4.612424172e-18) (123.0542249 0.2026527483 1.477840042e-18) (120.5330529 0.05305384631 -3.463669736e-18) (120.2191148 1.825675712 6.865417205e-19) (114.5415553 -0.2832845121 0) (112.9637373 -0.3576823246 4.779622741e-19) (112.7745033 0.5948268893 0) (109.1943378 -0.4959317921 4.059229905e-19) (108.205259 -0.5235652458 2.824863282e-18) (108.106486 0.02952379127 -3.800342615e-19) (105.8432178 -1.363722161 -2.199887607e-21) (104.4215157 -1.062239866 -1.846162479e-19) (104.4231062 -0.4674839355 -8.387067164e-20) (103.5573288 -0.9957480282 0) (102.8682162 -0.916663883 0) (102.903153 -0.5132443762 2.566514222e-21) (102.3080266 -0.836801072 0) (101.8299031 -0.7558153347 0) (101.8752714 -0.4920733167 -9.002708822e-21) (99.50552555 -1.33841371 1.096979831e-21) (99.19529199 -1.532896979 0) (99.03040646 -1.311773301 0) (98.83140658 -1.736162395 0) (98.41979048 -1.957657929 0) (98.2209609 -1.645380363 0) (97.9414462 -2.203171016 0) (97.26724475 -2.648005095 -7.116691722e-19) (96.87669679 -1.98488498 -8.627291901e-20) (96.63485699 -2.326623815 -8.751830439e-20) (96.25154114 -2.442194908 -1.860384759e-19) (96.12121022 -2.174146542 0) (94.92262206 -2.824825186 -8.171966378e-19) (94.41352791 -2.975599533 0) (94.22761784 -2.617973035 0) (92.64944202 -3.563607235 -8.656678127e-19) (91.9733392 -3.825172289 2.240246113e-19) (91.67766822 -3.365465295 -2.238542624e-19) (134.5533992 -12.11618334 -2.242152974e-20) (132.7688424 -11.02141167 -2.105696987e-18) (133.6621015 -9.565367 -2.165666152e-18) (121.4157938 -7.479026782 -1.38836978e-18) (119.2889629 -6.588019851 7.004739607e-19) (119.9270176 -5.073920707 1.27778616e-18) (113.9550837 -4.595975545 0) (112.4942927 -4.111732013 1.770921145e-20) (112.784292 -3.220371355 -4.814950701e-19) (108.9200739 -3.021029534 -1.88868565e-19) (107.9648954 -2.751185569 2.801368204e-19) (108.1134808 -2.208870727 -1.826178857e-19) (105.346284 -2.877577178 0) (104.0755907 -2.240609786 -3.490669566e-20) (104.3045372 -1.661461154 1.686874816e-19) (103.2449083 -1.969920905 7.631764546e-20) (102.5787103 -1.722273122 -3.951012677e-20) (102.7594842 -1.324783371 -4.02269707e-20) (102.0389412 -1.502089513 0) (101.5798975 -1.299648745 4.325116081e-21) (101.7306803 -1.045895314 0) (99.90419791 -1.682770566 1.551210924e-23) (99.62658753 -1.94029955 -1.067313102e-21) (99.39528432 -1.747518653 2.185414049e-21) (99.3060895 -2.214843519 4.341400422e-21) (98.94896242 -2.516079915 -4.450427789e-21) (98.6643061 -2.249684359 2.363414299e-21) (98.53576262 -2.851956918 7.386052656e-20) (97.98831855 -3.397502126 6.37298033e-19) (97.42824899 -2.855468095 8.316653924e-20) (97.2893327 -3.22026634 -1.185268983e-18) (96.95254731 -3.39832489 -1.762879078e-18) (96.75367646 -3.178477478 8.854302457e-19) (95.80060206 -3.983830746 3.821458548e-19) (95.36614722 -4.20622724 1.574480373e-18) (95.10178584 -3.928914707 -7.927109285e-19) (93.88626507 -5.008606509 3.209002517e-21) (93.32722072 -5.334991539 -8.230676692e-19) (92.96873438 -5.001732326 -1.054812577e-18) (124.9756761 -20.14575676 3.06688565e-18) (124.0571867 -18.87206255 7.102586218e-21) (125.2116271 -18.21964685 6.514971089e-20) (116.792 -12.52135829 0) (115.3903251 -11.14105128 -1.577775995e-18) (116.5075876 -10.2430694 -3.125092495e-20) (111.5936068 -7.882287024 2.095614898e-19) (110.4810808 -7.050680859 -2.077195494e-19) (111.0894186 -6.432623655 4.324757819e-19) (107.6343724 -5.133840625 6.956440053e-19) (106.8434127 -4.649488267 1.37917302e-18) (107.1871752 -4.224834345 1.221876936e-19) (104.3325189 -4.109217827 0) (103.3273174 -3.259895411 4.03541884e-20) (103.7450107 -2.77902764 1.03833892e-20) (102.6058972 -2.825234693 -3.784234542e-20) (102.020891 -2.440032498 -3.485651512e-20) (102.3298391 -2.097851235 3.821130808e-20) (101.544093 -2.103546514 2.613569825e-20) (101.1369912 -1.797283064 4.084477214e-21) (101.3802024 -1.582585593 -1.049045385e-21) (100.402846 -1.967782507 0) (100.1711753 -2.264445252 4.118784462e-21) (99.88585977 -2.117660064 4.123624014e-21) (99.90493336 -2.59637182 0) (99.61496489 -2.955441894 1.065342398e-21) (99.26810401 -2.75223797 8.832030204e-21) (99.28178218 -3.355759673 3.312814152e-21) (98.86859916 -3.951712159 0) (98.19633439 -3.558668453 2.338647103e-19) (98.15020604 -3.917349952 0) (97.86908872 -4.134279389 -3.202928672e-19) (97.62552739 -3.971743104 0) (96.91284661 -4.845720089 7.050546121e-19) (96.55400265 -5.111846353 7.143070743e-19) (96.24080456 -4.915849455 0) (95.33330176 -6.046703293 -7.803960662e-19) (94.86946417 -6.416798425 5.343750112e-19) (94.46828698 -6.182671544 -3.672520929e-19) (115.3405237 -22.59371884 -9.915725458e-19) (115.0549126 -21.44242509 1.94719895e-18) (116.1403119 -21.47977453 -1.083826551e-18) (111.3550026 -14.62590709 -1.625498692e-18) (110.6410509 -13.1895562 1.136725877e-20) (111.8305904 -12.89487333 -4.560324621e-19) (108.4352727 -9.672518219 6.275943372e-20) (107.719282 -8.736652716 -6.758959098e-19) (108.4395356 -8.438421045 0) (105.7560942 -6.506098572 1.529271212e-19) (105.1802139 -5.927613775 -4.578207137e-19) (105.6264034 -5.673036381 7.616662841e-19) (103.0185033 -4.928507556 6.882855079e-20) (102.3016345 -4.009609405 -1.76937839e-20) (102.840263 -3.671733659 0) (101.7329882 -3.466717426 3.547068454e-20) (101.2616257 -2.99288612 -3.326858904e-20) (101.6611109 -2.739844218 3.366443222e-20) (100.8722572 -2.57234168 5.066607108e-22) (100.5407257 -2.201857458 -3.089228566e-20) (100.8593685 -2.04623688 -4.084090776e-21) (100.9828536 -2.183617012 4.785300461e-19) (100.7935651 -2.514342468 0) (100.4793432 -2.398129019 0) (100.5842228 -2.879934865 0) (100.3633259 -3.27072146 5.006977835e-19) (99.98687626 -3.121416763 0) (100.1140848 -3.717927843 -7.749369892e-19) (99.83059036 -4.305488093 -5.315600339e-19) (99.10447419 -4.058592975 -2.905618627e-19) (99.14178559 -4.378819621 -1.371145805e-19) (98.92038568 -4.617916176 9.092638783e-19) (98.64851233 -4.522203766 -6.143068327e-19) (98.16792941 -5.393850133 7.230592583e-21) (97.8865257 -5.682647076 -1.295427238e-18) (97.54327934 -5.574266742 0) (96.93203373 -6.694115671 -6.777520383e-19) (96.56910924 -7.095822153 3.137633549e-19) (96.13061325 -6.968570991 9.759264488e-19) (92.89064839 -10.6454422 5.254475373e-19) (92.77784226 -10.82214872 -1.054314768e-18) (92.60808779 -10.74490098 1.068984538e-18) (102.7806959 -31.10981159 0) (103.5271354 -30.42636655 0) (104.2318324 -30.87689009 8.001264129e-19) (106.1291412 -19.96817131 0) (106.4689937 -18.52449682 -5.425531966e-20) (107.952047 -19.11058596 -6.073608327e-19) (106.4964803 -14.36314163 -2.747998939e-19) (106.2856763 -13.1671263 0) (107.2890481 -13.32258004 -1.447534819e-19) (105.3050313 -10.09030109 5.172289077e-19) (104.9164198 -9.237415451 2.696785104e-19) (105.592745 -9.212424013 -5.210852754e-19) (103.7243675 -7.12805277 1.478393095e-21) (103.3458816 -6.558114457 -3.622567322e-19) (103.8042213 -6.457078504 0) (101.6096991 -5.326948917 1.497671326e-20) (101.1566318 -4.460531897 -1.581226453e-20) (101.7337637 -4.275437812 8.198978347e-20) (100.7415095 -3.85977089 9.729581361e-22) (100.3857032 -3.355424505 2.925617949e-20) (100.8325877 -3.197830636 0) (100.0896417 -2.893084913 -2.217880488e-20) (99.83275063 -2.482147901 0) (100.1947905 -2.394570183 0) (101.5977018 -2.313004921 0) (101.4523517 -2.667609093 0) (101.117858 -2.605818002 0) (101.3004185 -3.044756777 0) (101.1449013 -3.442340934 0) (100.7484467 -3.374630399 0) (100.9721156 -3.890522348 1.105917063e-19) (100.816919 -4.470650912 -2.237812277e-19) (100.0729447 -4.369789702 5.098352739e-19) (100.1672666 -4.655641303 0) (100.0008012 -4.898715613 0) (99.72486882 -4.853008793 5.612156977e-19) (99.44031055 -5.683733358 -6.917609566e-20) (99.23374917 -5.973488457 5.653548471e-19) (98.89311732 -5.933350209 -2.721114098e-19) (98.54999973 -6.98180586 2.640614795e-19) (98.29870968 -7.381242017 -5.208242896e-19) (97.86140331 -7.361148296 8.085135525e-19) (96.56248276 -19.48752796 -3.244608405e-19) (97.76899328 -19.44998232 0) (97.92178491 -20.61354258 1.131404285e-19) (101.742893 -16.02726264 -2.089241485e-19) (102.2959376 -15.25797269 3.305946962e-19) (103.0818275 -16.141573 -2.554008059e-19) (102.9890356 -12.71927757 1.26365255e-19) (103.0154856 -11.88934613 -2.918397419e-19) (103.7179876 -12.28085502 1.658982035e-19) (102.7011568 -9.59087014 3.547599521e-19) (102.5094261 -8.905570828 0) (103.0608817 -9.043125602 6.249550927e-19) (101.8376662 -7.140757762 0) (101.603349 -6.645200697 -8.307096231e-19) (102.0203022 -6.663932333 4.233660177e-19) (100.2689259 -5.398742438 2.468487402e-20) (100.0148369 -4.608706625 -2.607891993e-20) (100.5807267 -4.567661893 4.246248308e-20) (99.72272106 -4.03160901 6.844287106e-21) (99.47417786 -3.531590431 6.351805226e-21) (99.92983519 -3.465345874 5.573254117e-20) (99.26810274 -3.066630897 -2.582780709e-20) (99.08441525 -2.639156434 -3.280143008e-21) (99.45950245 -2.613618336 3.302512441e-21) (102.226844 -2.363480144 0) (102.1270186 -2.723205492 0) (101.7905011 -2.707745151 0) (102.0269846 -3.093609753 0) (101.9288836 -3.483400965 0) (101.5408071 -3.477310805 0) (101.8224338 -3.904834319 0) (101.765753 -4.46025625 -3.6859118e-21) (101.060165 -4.484610463 1.547761027e-20) (101.1929647 -4.720413602 4.284592743e-19) (101.0754608 -4.957975738 0) (100.8133719 -4.960340959 4.763996445e-19) (100.6789649 -5.707214529 -4.490980586e-19) (100.5357484 -5.976416362 4.586518674e-19) (100.2228388 -5.99734123 0) (100.084537 -6.876803946 0) (99.93118246 -7.218271939 5.704733866e-20) (99.54727788 -7.289326159 -1.077022309e-19) (99.51805403 -8.411377962 -9.420831845e-20) (99.4363946 -8.87819334 -3.40443423e-19) (98.94690464 -9.077786742 1.914678559e-19) (98.94289325 -10.62562756 0) (89.17496629 -8.996837199 0) (88.68600994 -9.337027995 -1.024465765e-19) (98.27296063 -12.70543954 -7.783078567e-20) (98.93702132 -12.76749032 1.82642525e-19) (98.8525781 -13.76034347 -7.713808221e-20) (100.1364413 -12.38857243 5.312057974e-20) (100.4260137 -12.05909916 -1.676441161e-19) (100.7472657 -12.78681083 1.606939819e-19) (100.842611 -10.70787555 -4.00442112e-19) (100.8804831 -10.19156479 1.575096533e-19) (101.3235206 -10.61924567 -3.203934716e-20) (100.746449 -8.623991571 2.816176899e-19) (100.6423646 -8.12575623 -3.027406386e-19) (101.0602029 -8.343680065 2.987268184e-19) (100.2430237 -6.771219791 -1.796033509e-20) (100.0965153 -6.374889067 0) (100.4484812 -6.46728432 1.942676553e-21) (99.08123034 -5.218975027 0) (98.94921741 -4.533936115 0) (99.46825316 -4.59370955 1.281209313e-20) (98.75138572 -4.019140393 0) (98.5917369 -3.547955907 -2.339435319e-20) (99.02599974 -3.55650071 5.560388596e-21) (98.46133767 -3.109994969 8.744563525e-21) (98.33909936 -2.689170146 2.187918664e-20) (98.70898193 -2.715058547 0) (102.8455244 -2.347970456 0) (102.7837025 -2.698204658 0) (102.4588502 -2.720604404 0) (102.7248158 -3.049283861 0) (102.6709951 -3.418891197 0) (102.3062513 -3.462852892 0) (102.6122144 -3.799746328 0) (102.6188641 -4.305526279 0) (101.9898585 -4.434707884 -2.800431619e-19) (102.1386089 -4.619044051 0) (102.0597251 -4.842580029 -3.687640686e-19) (101.8243191 -4.886408102 7.635231514e-19) (101.7818979 -5.532164395 3.613748438e-19) (101.6810571 -5.770929935 1.954299996e-19) (101.4125108 -5.838923601 -5.287906401e-21) (101.3731213 -6.530347531 0) (101.2748203 -6.801860694 -6.087663083e-19) (100.9684214 -6.921755798 0) (101.0177946 -7.655994821 4.071639003e-19) (101.0002861 -7.958980298 -1.198955898e-18) (100.6524967 -8.192792803 5.905517232e-19) (97.28632768 -8.458173569 -6.603485091e-19) (90.53286304 -7.783468878 0) (90.25934374 -8.032316128 1.853222894e-19) (99.17461748 -9.866268496 -4.627424723e-19) (99.32849986 -9.936275739 1.463367306e-19) (99.23915616 -10.50754445 -6.930614415e-21) (99.57218675 -9.826783136 -1.155459259e-19) (99.6171812 -9.662667792 1.13916021e-19) (99.77363571 -10.19057347 -1.645441451e-19) (99.59119917 -8.893045339 0) (99.54955246 -8.577747524 3.993582147e-20) (99.82902362 -8.96146728 0) (99.34558939 -7.5514221 5.397814861e-19) (99.2586234 -7.203011923 -3.527633163e-19) (99.56623848 -7.43486722 0) (98.96400546 -6.213777263 2.135231131e-19) (98.85975656 -5.910382125 -7.217563624e-20) (99.14385418 -6.036712371 7.816152662e-20) (98.07490284 -4.889343036 0) (98.00408354 -4.315183424 0) (98.45942504 -4.437176647 0) (97.87736919 -3.876396577 4.131296454e-20) (97.78070104 -3.453017395 0) (98.1760862 -3.511602918 -5.387941215e-20) (97.7011176 -3.052121457 -4.089392112e-20) (97.62365895 -2.650811757 4.076146369e-20) (97.97661662 -2.717253304 -2.019062402e-20) (103.4358558 -2.278257827 0) (103.4036214 -2.609437539 0) (103.0991506 -2.661568386 0) (103.3755267 -2.93305143 0) (103.3533269 -3.27301665 0) (103.0207096 -3.354403959 0) (103.3275103 -3.608536359 0) (103.361318 -4.044804496 0) (102.8148293 -4.248988126 -2.378035264e-21) (102.9624642 -4.383350782 9.272541871e-21) (102.9108076 -4.586220431 6.944761107e-20) (102.7113403 -4.662518666 -7.22957335e-20) (102.704488 -5.199015092 0) (102.6235474 -5.403706644 -7.249784236e-21) (102.4086765 -5.508811647 -4.592340844e-19) (102.3578107 -6.018563388 -3.945429134e-21) (102.264291 -6.222926944 -9.676897968e-19) (102.0487024 -6.377070106 -6.468869269e-20) (102.1169372 -6.84961581 -7.899515685e-19) (102.0947317 -7.086125565 1.414828059e-20) (101.9017663 -7.301542256 0) (94.05225213 -6.745077797 0) (93.51901047 -7.308786565 -6.444426136e-20) (92.47800678 -7.384419429 6.458890977e-20) (99.58653428 -8.054957027 0) (99.51273999 -8.126374031 6.39776583e-20) (99.49140444 -8.523147872 -1.009023975e-19) (99.20869611 -8.01399679 1.246181558e-19) (99.09595701 -7.908255955 0) (99.21572004 -8.297752795 2.886288204e-19) (98.76233982 -7.426871921 -2.845096364e-20) (98.6543529 -7.223401758 -3.449362287e-20) (98.85083819 -7.534941768 2.949758656e-19) (98.34417933 -6.544372198 4.41558562e-20) (98.24574623 -6.307888248 0) (98.47052592 -6.523207535 3.151195144e-19) (97.96564833 -5.603908566 0) (97.87732116 -5.372175444 0) (98.10065532 -5.510531866 0) (97.2449036 -4.488990513 0) (97.19704892 -4.021118641 0) (97.58429742 -4.175774573 0) (97.11093276 -3.65056529 0) (97.04974327 -3.274514764 0) (97.4050858 -3.371692481 0) (97.00115281 -2.915225652 0) (96.95520748 -2.54545948 0) (97.28295457 -2.640876458 0) (103.9862211 -2.167968794 0) (103.9745646 -2.474641146 0) (103.6956268 -2.54752352 0) (103.9667538 -2.766838 0) (103.9636469 -3.072582237 0) (103.6677457 -3.177930457 0) (103.9561488 -3.363420134 0) (103.9935483 -3.731236237 0) (103.5294867 -3.970635259 0) (103.6606832 -4.059910504 0) (103.6202392 -4.230632986 0) (103.4553787 -4.323956385 0) (103.4370839 -4.74857396 -4.072501293e-20) (103.355984 -4.920386718 -5.139324689e-20) (103.1896315 -5.048750085 2.272703497e-19) (103.0656549 -5.417746225 7.827493768e-19) (102.9695292 -5.577564989 2.236410566e-21) (102.8125318 -5.741631546 8.310179378e-19) (102.7000968 -6.047195972 7.18183932e-21) (101.7158226 -6.145314984 0) (101.9756642 -6.390230577 0) (94.83769645 -6.131955111 0) (97.57064334 -6.689452614 1.016010441e-20) (96.73782452 -6.903388143 9.039362308e-20) (99.65125701 -6.77095541 -2.443949259e-19) (99.46600429 -6.782577977 8.874376066e-20) (99.4920161 -7.086384687 -1.358001492e-19) (98.86858688 -6.682272097 9.180836342e-20) (98.68058018 -6.600901163 3.246402214e-20) (98.77465059 -6.896312945 8.730726008e-22) (98.16199765 -6.277703716 1.069845394e-19) (98.01188333 -6.142990156 -1.224539119e-19) (98.15204552 -6.389589101 1.708162119e-19) (97.62028436 -5.684989434 0) (97.50501932 -5.518924174 0) (97.66927806 -5.706655275 -6.520968948e-22) (97.19932803 -4.99541234 0) (97.11090093 -4.816073198 0) (97.28493288 -4.954098044 0) (96.57018635 -4.06333034 0) (96.5155466 -3.685915575 0) (96.84138657 -3.856191383 0) (96.44801403 -3.373786852 0) (96.40391403 -3.045464942 0) (96.71607811 -3.163899984 0) (96.3723191 -2.729259002 0) (96.34497114 -2.394764913 0) (96.64233071 -2.507451692 0) (104.4903653 -2.030998442 0) (104.4913272 -2.31050107 0) (104.2397933 -2.396061866 0) (104.4947323 -2.570532391 0) (104.5004277 -2.841052081 0) (104.2411085 -2.959426969 0) (104.5002278 -3.093498808 0) (104.525689 -3.397758134 0) (104.1354195 -3.649255405 0) (104.2435475 -3.705401273 0) (104.2047545 -3.846605841 0) (104.069213 -3.943260222 0) (104.0166896 -4.264890032 0) (103.9294217 -4.401118831 0) (103.7988295 -4.52900682 0) (103.6084326 -4.795396012 0) (103.5031339 -4.921923478 0) (103.3825769 -5.083481884 -9.98044484e-21) (102.6824497 -5.220708406 1.559436909e-20) (100.7963699 -5.240717295 0) (100.9038172 -5.448053045 2.159669249e-19) (96.82660312 -5.492497045 0) (99.26483602 -5.716437071 0) (99.04474201 -5.956131687 4.284135949e-21) (99.62239395 -5.74307387 3.20976127e-22) (99.36516635 -5.739937534 -4.798780725e-22) (99.38226777 -5.978177663 -4.829917294e-23) (98.61813268 -5.654555368 6.38502315e-22) (98.38301419 -5.601368944 -6.384906928e-22) (98.44205205 -5.828543337 1.245595929e-20) (97.75359312 -5.375103293 0) (97.57007652 -5.280182302 0) (97.66688297 -5.480547644 0) (97.0926191 -4.947469019 0) (96.95593858 -4.823416841 0) (97.07895609 -4.988945967 0) (96.60750846 -4.42313029 0) (96.51122682 -4.282827679 0) (96.64799727 -4.412662946 0) (96.0197191 -3.643660044 0) (95.94518815 -3.343037345 0) (96.21747434 -3.514060512 0) (95.88182535 -3.076143184 0) (95.84160325 -2.793374742 0) (96.11275215 -2.920501049 0) (95.81603249 -2.517886668 0) (95.79707945 -2.219160133 0) (96.0630411 -2.339310345 0) (104.946339 -1.879239689 0) (104.9534022 -2.130963761 0) (104.7290641 -2.222581404 0) (104.9608626 -2.360377559 0) (104.967381 -2.596689115 0) (104.7422221 -2.719440152 0) (104.9659215 -2.817927082 0) (104.9722324 -3.066312626 0) (104.6448334 -3.313993265 0) (104.7278978 -3.347810283 0) (104.6851374 -3.464495956 0) (104.5736929 -3.558757087 0) (104.4776678 -3.803367765 0) (104.3812594 -3.911665045 0) (104.2779559 -4.030377035 0) (104.0295757 -4.219925519 0) (103.9055655 -4.315491843 0) (103.8160476 -4.460314438 0) (102.7861775 -4.513195052 0) (100.7717616 -4.520735576 0) (100.7724618 -4.686558063 0) (97.57748531 -4.771307471 0) (99.60662645 -4.893038278 0) (99.54444241 -5.080575873 0) (99.6409858 -4.910430118 0) (99.33577841 -4.907050494 0) (99.34271208 -5.098902144 0) (98.46238545 -4.841733436 0) (98.19069621 -4.801605116 0) (98.23365618 -4.986797122 0) (97.46064857 -4.632997873 0) (97.24754648 -4.561967413 0) (97.31978633 -4.729891261 0) (96.69522876 -4.31033695 0) (96.53843769 -4.215218769 0) (96.6328871 -4.359401932 0) (96.1437801 -3.903106962 0) (96.03642112 -3.791772717 0) (96.14528389 -3.910059601 0) (95.56797062 -3.248983132 0) (95.46932745 -3.009774469 0) (95.69651158 -3.174557181 0) (95.39994112 -2.778908058 0) (95.35508424 -2.537271385 0) (95.58946991 -2.664526569 0) (95.32776776 -2.297939701 0) (95.30951686 -2.033383694 0) (95.54570784 -2.154173154 0) (105.3553084 -1.721949241 0) (105.3633517 -1.946787751 0) (105.164633 -2.039448986 0) (105.3696779 -2.148375011 0) (105.3717168 -2.353196645 0) (105.1768922 -2.474126288 0) (105.3628318 -2.547684907 0) (105.347091 -2.749986693 0) (105.072166 -2.984888839 0) (105.1305926 -3.003792484 0) (105.0808741 -3.100458055 0) (104.9889083 -3.189173223 0) (104.8475583 -3.376925714 0) (104.7411218 -3.464026319 0) (104.6584192 -3.571755686 0) (104.3539455 -3.708406584 0) (104.2068246 -3.782243895 0) (104.1389634 -3.908921548 0) (102.851053 -3.925360843 0) (100.7900029 -3.929648932 0) (100.7832874 -4.067990631 0) (98.07071417 -4.159622102 0) (99.77848443 -4.231628217 0) (99.7448235 -4.38535952 0) (99.64473707 -4.232790498 -3.034697287e-35) (99.30860158 -4.228701019 0) (99.31553289 -4.386204086 0) (98.34335978 -4.174614582 0) (98.04407863 -4.143144861 0) (98.0774486 -4.296458016 0) (97.23804956 -4.0125431 0) (97.00181529 -3.957622646 0) (97.05754066 -4.099294195 0) (96.38792228 -3.761916637 0) (96.2134593 -3.687274447 0) (96.28761863 -3.812245384 0) (95.77465842 -3.43934811 0) (95.65538155 -3.349728206 0) (95.74320529 -3.455562428 0) (95.19523249 -2.888320746 0) (95.07085926 -2.694179716 0) (95.2615153 -2.849350734 0) (94.98897827 -2.495716418 0) (94.93478997 -2.289157517 0) (95.13728244 -2.411332479 0) (94.90072252 -2.081090175 0) (94.8779441 -1.847791247 0) (95.08674758 -1.96464984 0) (105.7197551 -1.565923497 0) (105.7252168 -1.765755352 0) (105.5499684 -1.855974237 0) (105.7269406 -1.942606131 0) (105.7212847 -2.11976177 0) (105.5528383 -2.234757546 0) (105.7009502 -2.289245645 0) (105.6621922 -2.456190232 0) (105.4310492 -2.67347061 0) (105.4664533 -2.682498078 0) (105.4084718 -2.762923687 0) (105.3321847 -2.844522108 0) (105.1477291 -2.990406783 0) (105.0315885 -3.06135035 0) (104.9644875 -3.15781949 0) (104.609089 -3.258293509 0) (104.4386956 -3.316538889 0) (104.3860279 -3.427086277 0) (102.8994547 -3.423672553 0) (100.8310557 -3.429598468 0) (100.8186117 -3.547188703 0) (98.42052534 -3.638249293 0) (99.87158064 -3.680712747 0) (99.85357212 -3.809610588 0) (99.63623073 -3.67127732 0) (99.28007265 -3.666143277 0) (99.28732205 -3.797502336 0) (98.24757619 -3.619588606 0) (97.92759846 -3.594026469 0) (97.95446055 -3.722430123 0) (97.06345655 -3.48962405 0) (96.80903604 -3.445963143 0) (96.85320551 -3.566162987 0) (96.14481838 -3.290079918 0) (95.95521798 -3.230309457 0) (96.01458691 -3.338414734 0) (95.47646201 -3.030029284 0) (95.34564629 -2.956905976 0) (95.41738592 -3.050626571 0) (94.88527383 -2.563318311 0) (94.73395178 -2.402843322 0) (94.89548633 -2.545170698 0) (94.63722947 -2.233177046 0) (94.57134387 -2.055676216 0) (94.74652625 -2.169979327 0) (94.52755048 -1.874626417 0) (94.49708409 -1.669225679 0) (94.68123316 -1.779323091 0) (106.0432734 -1.415870992 0) (106.0438369 -1.592938919 0) (105.8895987 -1.678477916 0) (106.0387527 -1.747924107 0) (106.0237084 -1.901465203 0) (105.8779749 -2.008504272 0) (105.9903812 -2.047906916 0) (105.9279535 -2.187477113 0) (105.7328545 -2.385873862 0) (105.7475993 -2.388009029 0) (105.6811987 -2.455315936 0) (105.6175329 -2.52931033 0) (105.3941252 -2.644129476 0) (105.2691555 -2.702608436 0) (105.2140005 -2.788306253 0) (104.8133225 -2.863687442 0) (104.6206899 -2.910329256 0) (104.5790655 -3.006710257 0) (102.9429523 -2.993361194 0) (100.8949069 -3.00259391 0) (100.8768876 -3.103252716 0) (98.66982343 -3.192056062 0) (99.91819292 -3.215942378 0) (99.90981194 -3.325027485 0) (99.61981042 -3.199575134 0) (99.25058625 -3.193613252 0) (99.25800995 -3.304380606 0) (98.16810462 -3.152724175 0) (97.83227465 -3.131439852 0) (97.85446393 -3.239961163 0) (96.92292893 -3.045957213 0) (96.65406408 -3.010462638 0) (96.68986951 -3.112954179 0) (95.94868678 -2.883799335 0) (95.7462516 -2.835096207 0) (95.79460512 -2.928580848 0) (95.23217856 -2.670863251 0) (95.09068069 -2.610438748 0) (95.15001225 -2.692910734 0) (94.62502979 -2.273437258 0) (94.4474358 -2.139117057 0) (94.5849939 -2.267465519 0) (94.33531199 -1.993749205 0) (94.25635579 -1.840468866 0) (94.40828544 -1.945338849 0) (94.20121838 -1.682707178 0) (94.16128961 -1.501870082 0) (94.32361088 -1.603632077 0) (106.329779 -1.274879314 0) (106.3240268 -1.431522483 0) (106.188419 -1.511001968 0) (106.31081 -1.567257764 0) (106.2853586 -1.70062559 0) (106.1592513 -1.798731865 0) (106.2387508 -1.827021693 0) (106.153306 -1.944697838 0) (105.987762 -2.123662051 0) (105.9842871 -2.121524186 0) (105.9098043 -2.178237777 0) (105.8562925 -2.244627407 0) (105.5986523 -2.336362019 0) (105.4659225 -2.385131406 0) (105.4200235 -2.460800518 0) (104.9791805 -2.518593284 0) (104.7660599 -2.556476918 0) (104.7325858 -2.640383788 0) (102.9873328 -2.623178273 0) (100.97952 -2.635898242 0) (100.9565895 -2.722480045 0) (98.84702974 -2.809138187 0) (99.93529079 -2.82112901 0) (99.93315882 -2.913984937 0) (99.59828756 -2.799856428 0) (99.22077219 -2.793308487 0) (99.22822966 -2.88737669 0) (98.10080976 -2.756932521 0) (97.75260613 -2.738898458 0) (97.77127474 -2.831188163 0) (96.80750269 -2.667635086 0) (96.52702306 -2.638267482 0) (96.55656915 -2.725967239 0) (95.78779219 -2.533654071 0) (95.57449829 -2.493379216 0) (95.61445897 -2.574196931 0) (95.02953965 -2.35694825 0) (94.87837071 -2.306453977 0) (94.92798043 -2.378686842 0) (94.40464544 -2.01696709 0) (94.20236985 -1.903327511 0) (94.32021119 -2.017774945 0) (94.07502842 -1.778217857 0) (93.98253052 -1.645251416 0) (94.11472012 -1.740046166 0) (93.91538589 -1.507439169 0) (93.86513735 -1.3480694 0) (94.00830828 -1.440764086 0) (106.5832238 -1.144822183 0) (106.5703625 -1.283322706 0) (106.4511282 -1.355992532 0) (106.5483594 -1.402260468 0) (106.5120979 -1.51836412 0) (106.4027495 -1.607110048 0) (106.452454 -1.627635199 0) (106.3454124 -1.727598198 0) (106.2041921 -1.887421297 0) (106.1847447 -1.882904657 0) (106.1027724 -1.931005748 0) (106.0574778 -1.990053343 0) (105.7702642 -2.064592538 0) (105.6308043 -2.105709586 0) (105.59218 -2.172182942 0) (105.1156659 -2.217524107 0) (104.8841683 -2.248727151 0) (104.8567953 -2.321658757 0) (103.0349305 -2.304205079 0) (101.0815867 -2.320002363 0) (101.0546382 -2.394650535 0) (98.97209467 -2.479984978 0) (99.93284529 -2.48423627 0) (99.93489787 -2.563577993 0) (99.57338443 -2.459367443 0) (99.19104258 -2.452415434 0) (99.19845276 -2.53263975 0) (98.04299386 -2.419725439 0) (97.68499664 -2.404244991 0) (97.70091978 -2.483027889 0) (96.71119085 -2.344008122 0) (96.42125802 -2.319369824 0) (96.44598622 -2.39456151 0) (95.65396579 -2.23181292 0) (95.43146599 -2.198093439 0) (95.46489947 -2.267907733 0) (94.85961304 -2.083492037 0) (94.6997859 -2.040879385 0) (94.74166913 -2.103890912 0) (94.21656071 -1.791539556 0) (93.99151416 -1.694439516 0) (94.09306099 -1.795618177 0) (93.84954757 -1.586202859 0) (93.74363941 -1.470340169 0) (93.85907857 -1.555033836 0) (93.66441838 -1.349560536 0) (93.60360228 -1.208866296 0) (93.73008271 -1.292347992 0) (106.807412 -1.026687803 0) (106.7870854 -1.14920038 0) (106.6821581 -1.214730249 0) (106.7560958 -1.253585982 0) (106.7090769 -1.35492526 0) (106.6140169 -1.434270453 0) (106.6369496 -1.449668197 0) (106.5100366 -1.535250185 0) (106.3889357 -1.67668076 0) (106.3555631 -1.671116035 0) (106.2668133 -1.712178952 0) (106.2282058 -1.764284525 0) (105.9156965 -1.825977566 0) (105.7703747 -1.860969369 0) (105.7375661 -1.919079652 0) (105.2293528 -1.955534966 0) (104.9816662 -1.981565955 0) (104.9589382 -2.044815244 0) (103.0864302 -2.029222376 0) (101.1972378 -2.04743033 0) (101.1672766 -2.111854012 0) (99.05926414 -2.196807722 0) (99.91722872 -2.195990557 0) (99.92210468 -2.263906946 0) (99.54619457 -2.168520286 0) (99.16162182 -2.161302093 0) (99.16893949 -2.229845476 0) (97.99275326 -2.131668366 0) (97.62693516 -2.118241752 0) (97.64066378 -2.185597742 0) (96.62981152 -2.066762864 0) (96.33209915 -2.045858927 0) (96.35303323 -2.110345386 0) (95.54135133 -1.971769823 0) (95.31101205 -1.943242232 0) (95.33927772 -2.003450693 0) (94.71574633 -1.846047897 0) (94.54820572 -1.809772005 0) (94.5838704 -1.864516624 0) (94.05491187 -1.594598699 0) (93.80904213 -1.510816125 0) (93.89704661 -1.599582456 0) (93.65324851 -1.416666253 0) (93.53440668 -1.31523688 0) (93.63561685 -1.390144929 0) (93.44339697 -1.208967606 0) (93.37214764 -1.084456914 0) (93.48413579 -1.158927905 0) (107.0059304 -0.9208594103 0) (106.9780756 -1.029380515 0) (106.8855519 -1.087733082 0) (106.9381879 -1.121240342 0) (106.8807437 -1.209978959 0) (106.7978201 -1.280150816 0) (106.7968513 -1.292435797 0) (106.6518971 -1.366333353 0) (106.5474643 -1.490388531 0) (106.5020135 -1.484712937 0) (106.4072324 -1.52000201 0) (106.3740932 -1.56562463 0) (106.0400081 -1.617711144 0) (105.8895277 -1.647734912 0) (105.8614306 -1.69825426 0) (105.3250975 -1.728411397 0) (105.0633443 -1.750395113 0) (105.0441952 -1.805037194 0) (103.1414632 -1.792488203 0) (101.3224615 -1.812362675 0) (101.290463 -1.86788088 0) (99.11907949 -1.953534849 0) (99.89268002 -1.94936696 0) (99.8994861 -2.007439307 0) (99.51746822 -1.920001165 0) (99.13263319 -1.912614546 0) (99.13983687 -1.971146615 0) (97.94868583 -1.885535625 0) (97.57659436 -1.873787031 0) (97.58853814 -1.931333566 0) (96.56034444 -1.829386165 0) (96.25616569 -1.811481145 0) (96.27406009 -1.866700832 0) (95.44564998 -1.748191658 0) (95.20859762 -1.723833324 0) (95.2327148 -1.775604918 0) (94.59290579 -1.640684436 0) (94.41850215 -1.60955346 0) (94.44911315 -1.656893128 0) (93.91502947 -1.423608044 0) (93.65020731 -1.350597151 0) (93.72693247 -1.42790145 0) (93.48146637 -1.268232519 0) (93.35034207 -1.178992 0) (93.43948824 -1.244631303 0) (93.24802954 -1.085057063 0) (93.16670375 -0.9745214226 0) (93.26618651 -1.040408096 0) (107.1821194 -0.8273147712 0) (107.1468587 -0.9236791591 0) (107.0650235 -0.9749871653 0) (107.0983346 -1.004828072 0) (107.0309477 -1.082848363 0) (106.9583098 -1.144212402 0) (106.9360814 -1.154941389 0) (106.774891 -1.21938044 0) (106.6842741 -1.3271642 0) (106.6283918 -1.322048689 0) (106.5282982 -1.352590079 0) (106.4996466 -1.392198589 0) (106.1471173 -1.437134139 0) (105.9920599 -1.463093932 0) (105.9678108 -1.506718556 0) (105.406615 -1.532508996 0) (105.1327696 -1.551296838 0) (105.1164046 -1.598254559 0) (103.1991905 -1.589351556 0) (101.4536719 -1.610207479 0) (101.4204889 -1.657873421 0) (99.15953207 -1.745235016 0) (99.86197486 -1.738883156 0) (99.87010771 -1.788373667 0) (99.48768757 -1.708096788 0) (99.10410857 -1.700603495 0) (99.1111965 -1.750431112 0) (97.9096982 -1.675653957 0) (97.53257121 -1.665287183 0) (97.54304938 -1.714298333 0) (96.50050817 -1.626665767 0) (96.1909031 -1.611195218 0) (96.20633424 -1.6583052 0) (95.36358661 -1.556654144 0) (95.12074824 -1.535674828 0) (95.14150355 -1.57998404 0) (94.48716402 -1.463947732 0) (94.30664585 -1.437020484 0) (94.33312324 -1.477714357 0) (93.79313616 -1.276200756 0) (93.51109102 -1.211897405 0) (93.57840162 -1.27867298 0) (93.33028778 -1.139399528 0) (93.18759769 -1.060442727 0) (93.26652716 -1.117403295 0) (93.07456157 -0.9769584289 0) (92.98362869 -0.8784388182 0) (93.07236971 -0.9362674626 0) (107.3390552 -0.7458008994 0) (107.2966159 -0.8316870852 0) (107.2239183 -0.876178147 0) (107.2398062 -0.903756799 0) (107.1630086 -0.9727054236 0) (107.0990567 -1.025684551 0) (107.0579395 -1.036037286 0) (106.8823083 -1.092947018 0) (106.80308 -1.185540423 0) (106.73822 -1.181486116 0) (106.633462 -1.208126806 0) (106.6084964 -1.242165957 0) (106.2401117 -1.281862195 0) (106.080966 -1.304481517 0) (106.0598757 -1.341822389 0) (105.4767513 -1.364718056 0) (105.1926029 -1.380964322 0) (105.1784226 -1.421009985 0) (103.2587058 -1.416047442 0) (101.5877339 -1.437330715 0) (101.5541042 -1.477973747 0) (99.18677759 -1.56782844 0) (99.82717823 -1.560108075 0) (99.83616462 -1.602036711 0) (99.45715979 -1.528316315 0) (99.07602491 -1.520751566 0) (99.08300799 -1.562911 0) (97.87490256 -1.497552167 0) (97.4937452 -1.488322215 0) (97.50301863 -1.529815297 0) (96.44852317 -1.45443236 0) (96.13432308 -1.440946707 0) (96.14774761 -1.480885844 0) (95.2926059 -1.393525171 0) (95.04474477 -1.375296246 0) (95.06276292 -1.412954439 0) (94.39540247 -1.312888622 0) (94.20941785 -1.289403049 0) (94.23250696 -1.324107736 0) (93.68609391 -1.150250166 0) (93.38844745 -1.092912505 0) (93.44788841 -1.150051882 0) (93.19641226 -1.028692772 0) (93.04286109 -0.9583873216 0) (93.11317146 -1.007264456 0) (92.91970256 -0.8837058363 0) (92.81967099 -0.7954606777 0) (92.8992504 -0.8457898318 0) (107.4795582 -0.6759255368 0) (107.4302401 -0.7528721689 0) (107.3652664 -0.7908286972 0) (107.3655438 -0.8173626094 0) (107.2798788 -0.8787862026 0) (107.2231646 -0.92373442 0) (107.165164 -0.9342806392 0) (106.9768649 -0.9858534426 0) (106.9070543 -1.064120356 0) (106.8344533 -1.061522013 0) (106.7255735 -1.084954649 0) (106.7036336 -1.113818381 0) (106.3214983 -1.149799833 0) (106.1586779 -1.169669732 0) (106.1401824 -1.201252145 0) (105.5377576 -1.222418194 0) (105.2449039 -1.236641064 0) (105.2324393 -1.27041838 0) (103.3192029 -1.269513221 0) (101.722072 -1.290821126 0) (101.6885762 -1.325119596 0) (99.20550935 -1.418000748 0) (99.78994969 -1.409493045 0) (99.79940759 -1.444675959 0) (99.42606218 -1.377066659 0) (99.04829609 -1.369438301 0) (99.05520268 -1.404763861 0) (97.84353158 -1.347626358 0) (97.45917014 -1.339320271 0) (97.46746268 -1.374119687 0) (96.40293987 -1.309285386 0) (96.08481401 -1.29741549 0) (96.09660614 -1.330953026 0) (95.23064434 -1.255785583 0) (94.97838848 -1.239795687 0) (94.99417852 -1.271479622 0) (94.31507212 -1.184994375 0) (94.12417 -1.164326607 0) (94.14448595 -1.193597672 0) (93.59125414 -1.044067689 0) (93.27968158 -0.991718158 0) (93.33248075 -1.040232623 0) (93.07698296 -0.9348228557 0) (92.91322033 -0.8716874686 0) (92.97632518 -0.9130342664 0) (92.7805306 -0.8043262451 0) (92.67191762 -0.7247922849 0) (92.74374734 -0.7681829012 0) (107.6062748 -0.6172689837 0) (107.5503865 -0.6866457663 0) (107.4918352 -0.7183594177 0) (107.47821 -0.7449063079 0) (107.3843011 -0.8003755698 0) (107.3334889 -0.8376819493 0) (107.2605578 -0.8485977073 0) (107.0607092 -0.8968723631 0) (106.9987294 -0.9618502883 0) (106.9194359 -0.9608140245 0) (106.8069212 -0.9816123744 0) (106.7874818 -1.005655805 0) (106.3933337 -1.039157235 0) (106.2271951 -1.05677335 0) (106.2108301 -1.083036427 0) (105.5914325 -1.103434018 0) (105.2912699 -1.116044287 0) (105.2801616 -1.144079645 0) (103.3799809 -1.147194379 0) (101.8547404 -1.16824039 0) (101.821823 -1.19676138 0) (99.21933277 -1.293028139 0) (99.75163984 -1.284158402 0) (99.76125537 -1.313261823 0) (99.39449194 -1.251435154 -1.844651345e-36) (99.02078883 -1.243738557 0) (99.02765234 -1.27290243 0) (97.81490262 -1.222977934 0) (97.42802831 -1.215406762 0) (97.43553287 -1.244169429 0) (96.36255269 -1.188475527 0) (96.04104361 -1.177909796 0) (96.05151344 -1.205661991 0) (95.17600977 -1.14095844 0) (94.91987855 -1.126780478 0) (94.93385816 -1.153042065 0) (94.24409929 -1.078162239 0) (94.04876112 -1.059801002 0) (94.06679425 -1.084107329 0) (93.50669644 -0.9561055422 0) (93.18210591 -0.9067373374 0) (93.22967252 -0.9472448304 0) (92.96933226 -0.8567402313 0) (92.79607472 -0.7992491404 0) (92.85324021 -0.8336179175 0) (92.65441858 -0.7378898753 0) (92.53770464 -0.6656943659 0) (92.60309855 -0.7026496876 0) (107.7215021 -0.5692875975 0) (107.6594658 -0.6323904704 0) (107.6061605 -0.6581954665 0) (107.5802012 -0.6855927942 0) (107.4786113 -0.7364480861 0) (107.4325949 -0.7666649481 0) (107.3468419 -0.7788602504 0) (107.1358599 -0.8245836036 0) (107.0802103 -0.8773766866 0) (106.9951892 -0.878016968 0) (106.8794735 -0.896704258 0) (106.8620591 -0.9162698106 0) (106.4573892 -0.94836276 0) (106.288233 -0.9641605459 0) (106.2735888 -0.9854918566 0) (105.6392436 -1.005930318 0) (105.3329523 -1.017262416 0) (105.3229121 -1.040004305 0) (103.4403772 -1.047011592 0) (101.9841669 -1.067580283 0) (101.9521965 -1.090780163 0) (99.23114832 -1.190608234 0) (99.71337415 -1.181704006 0) (99.72288014 -1.205283969 0) (99.36253039 -1.149018637 0) (98.99337855 -1.14125194 0) (99.00022756 -1.16480896 0) (97.78840863 -1.121253619 0) (97.39960128 -1.114250917 0) (97.40648946 -1.13751474 0) (96.32632384 -1.089766762 0) (96.00186917 -1.080234313 0) (96.01128883 -1.102709304 0) (95.12725534 -1.046994591 0) (94.86767399 -1.034255989 0) (94.88021133 -1.055560531 0) (94.18070331 -0.9905615818 0) (93.98135391 -0.9740444402 0) (93.99755163 -0.9938127393 0) (93.43039631 -0.8844996303 0) (93.09300976 -0.8378054562 0) (93.13661647 -0.8702162724 0) (92.87125928 -0.7930348811 0) (92.68912633 -0.7399647488 0) (92.74145878 -0.7678967196 0) (92.53902458 -0.683499022 0) (92.4147847 -0.6173678455 0) (92.47476754 -0.6484491216 0) (107.8282262 -0.5317659578 0) (107.7598923 -0.5896514986 0) (107.7106401 -0.6096014847 0) (107.6736845 -0.6389328064 0) (107.5646662 -0.68591658 0) (107.5225548 -0.7095136399 0) (107.4256919 -0.7249929094 0) (107.2046431 -0.767967748 0) (107.1535992 -0.8090288545 0) (107.0637344 -0.8119164957 0) (106.945113 -0.8289994564 0) (106.9292509 -0.8443535447 0) (106.515257 -0.8760898533 0) (106.343312 -0.8904607273 0) (106.3300247 -0.90717566 0) (105.6824241 -0.9283863388 0) (105.3709726 -0.9387246328 0) (105.361761 -0.9565332644 0) (103.4998694 -0.967354172 0) (102.1090707 -0.987340778 0) (102.0783342 -1.005552923 0) (99.24343544 -1.108902547 0) (99.67617195 -1.100261836 0) (99.68532112 -1.118733996 0) (99.3302615 -1.067928677 0) (98.96596524 -1.060088254 0) (98.9728241 -1.078464847 0) (97.76351192 -1.040591338 0) (97.37325011 -1.034007314 0) (97.37967593 -1.052191445 0) (96.29333675 -1.0113782 0) (95.96628326 -1.002636545 0) (95.97489409 -1.020233641 0) (95.08310128 -0.972245587 0) (94.82040486 -0.9606134019 0) (94.83182814 -0.9773267991 0) (94.12323644 -0.9207045887 0) (93.920195 -0.905601069 0) (93.93498593 -0.92114755 0) (93.3601719 -0.82830974 0) (93.0111815 -0.7842785913 0) (93.05126355 -0.8092341631 0) (92.78106989 -0.7425018169 0) (92.5903221 -0.6931893746 0) (92.63882766 -0.7148839254 0) (92.4319984 -0.6404986943 0) (92.30017815 -0.5794197186 0) (92.35648807 -0.6048045855 0) (107.9279242 -0.5034917677 0) (107.8531804 -0.5583858083 0) (107.8072435 -0.5728323989 0) (107.7605572 -0.6045814864 0) (107.6444664 -0.6484635706 0) (107.6051905 -0.6655713054 0) (107.4985879 -0.6856485556 0) (107.2684634 -0.7266229984 0) (107.2210092 -0.7563070881 0) (107.1268379 -0.7618398534 0) (107.0054989 -0.7776818558 0) (106.990819 -0.7890098416 0) (106.5683449 -0.8213106326 0) (106.3937738 -0.8345965964 0) (106.3815238 -0.8469405565 0) (105.7220494 -0.8696079326 0) (105.4062266 -0.8792097194 0) (105.3976259 -0.8923603078 0) (103.5581611 -0.9070271439 0) (102.2285383 -0.9264031118 0) (102.1992303 -0.9398806791 0) (99.25833323 -1.046567174 0) (99.64095339 -1.038461313 0) (99.64952771 -1.052130532 0) (99.29774443 -1.006741567 -5.653197433e-36) (98.93844137 -0.9988145749 0) (98.94533979 -1.012332683 0) (97.73971482 -0.9795610114 0) (97.34838496 -0.9732534765 0) (97.35449325 -0.986679117 0) (96.2627619 -0.9519289278 0) (95.93337826 -0.9437558033 0) (95.9414002 -0.9567831572 0) (95.04240681 -0.9154321824 0) (94.77685407 -0.9046085366 0) (94.7874551 -0.9170132917 0) (94.07026399 -0.867489862 0) (93.86378314 -0.8534387844 0) (93.87751514 -0.865003804 0) (93.2946886 -0.7868335521 0) (92.93496006 -0.7446705085 0) (92.97251384 -0.7627989929 0) (92.69678454 -0.7047078154 0) (92.4978829 -0.6583858527 0) (92.54345432 -0.6742661744 0) (92.33192939 -0.608726649 0) (92.19233973 -0.5504158525 0) (92.24537017 -0.571300694 0) (108.0209615 -0.4877943391 0) (107.942519 -0.5378112511 0) (107.8976321 -0.5469812757 0) (107.8435629 -0.5819998079 0) (107.7206196 -0.6236673168 0) (107.6823554 -0.634512496 0) (107.568049 -0.6599512677 0) (107.3287535 -0.6999383787 0) (107.2838337 -0.7186649487 0) (107.1859092 -0.7270789458 0) (107.062002 -0.742035558 0) (107.0481687 -0.7495036043 0) (106.6178977 -0.7832011001 0) (106.4408215 -0.7957139039 0) (106.4293175 -0.8038819472 0) (105.7591204 -0.8286806038 0) (105.4395662 -0.8377939883 0) (105.4313656 -0.8464916314 0) (103.6151595 -0.8651508686 0) (102.3420272 -0.8839348902 0) (102.3142476 -0.8928596152 0) (99.27758492 -1.002625206 0) (99.60850334 -0.9953017463 0) (99.61632014 -1.0043869 0) (99.2649871 -0.9643916048 3.274824318e-36) (98.91066794 -0.9563561934 0) (98.91764328 -0.9652531479 0) (97.71653363 -0.937087242 0) (97.32443949 -0.9309186511 0) (97.33036985 -0.939820796 0) (96.23382261 -0.9103737262 0) (95.90231004 -0.9025597053 0) (95.90994915 -0.9112449628 0) (95.00412847 -0.8755748552 0) (94.73591421 -0.8652838419 0) (94.74596183 -0.8735928655 0) (94.02050375 -0.8300325162 0) (93.8107857 -0.8166967724 0) (93.8237848 -0.8244748159 0) (93.23250983 -0.7593725129 0) (92.86202556 -0.7180019931 0) (92.8986228 -0.7298831054 0) (92.61601818 -0.6790297821 0) (92.40924342 -0.6348398402 0) (92.4537219 -0.6451151069 0) (92.23593612 -0.5872784535 0) (92.09195233 -0.5339078444 0) (92.14238069 -0.547068154 0) (108.1379746 -0.4697384835 0) (108.0481995 -0.5243382471 0) (107.9790685 -0.5319942137 0) (107.9415782 -0.56880238 0) (107.8105064 -0.6094484209 0) (107.7522842 -0.6162533637 0) (107.6489167 -0.6455235235 0) (107.3941857 -0.6863224866 0) (107.3433908 -0.6955903587 0) (107.2424176 -0.7070547565 0) (107.1160366 -0.7214880258 0) (107.1025629 -0.7252160938 0) (106.6651957 -0.7610940796 0) (106.4857175 -0.7731139685 0) (106.4745019 -0.7772710963 0) (105.7948207 -0.8048946127 0) (105.4720637 -0.8138040267 0) (105.4637907 -0.8181964309 0) (103.6713987 -0.8412142036 0) (102.4502602 -0.8594720133 0) (102.4228611 -0.86380736 0) (99.30281577 -0.9761961409 0) (99.57918721 -0.9699382474 0) (99.58637686 -0.9748054737 0) (99.23175628 -0.9400667555 0) (98.88232716 -0.9319308629 0) (98.88964859 -0.9363762356 0) (97.69337728 -0.9124298034 0) (97.30074596 -0.9062653916 0) (97.30678496 -0.9107973355 0) (96.20566571 -0.8859798414 0) (95.87216831 -0.8783208222 0) (95.87975696 -0.8828181954 0) (94.96718246 -0.8519761179 0) (94.6964417 -0.8419543532 0) (94.70632145 -0.8463136323 0) (93.97263282 -0.8076777394 0) (93.75982717 -0.7947266892 0) (93.77254398 -0.798860912 0) (93.16463334 -0.7439377711 0) (92.77636617 -0.7012338557 0) (92.83107198 -0.710405005 0) (92.52006703 -0.6627571041 0) (92.30406156 -0.6193596393 0) (92.37205668 -0.6274976576 0) (92.12174233 -0.5714331396 0) (91.96425153 -0.5130296036 0) (92.04622341 -0.5327090443 0) (92.44260102 -10.65978447 -5.382817695e-19) (92.27958392 -10.57924437 1.100454958e-18) (92.39670077 -10.42117073 0) (109.9052821 -23.1462026 0) (109.8023688 -24.3017319 -2.94902963e-20) (108.7007947 -23.92061587 -2.836525932e-20) (95.41455515 -11.62382577 -8.560832676e-19) (95.2120611 -11.59862055 0) (95.28386832 -11.40274742 0) (95.42948615 -22.75655351 0) (94.11813639 -22.78910901 2.208458424e-19) (94.04150672 -21.87240934 0) (102.1061673 -32.49544812 -3.222638781e-19) (101.8114019 -32.30229175 2.965289592e-19) (102.575079 -31.93626459 -2.960793255e-19) (107.662815 -23.51730243 5.266900007e-19) (106.6890171 -23.02534871 0) (106.9802636 -21.96094363 -1.033010458e-18) (77.31791989 7.462412427 -1.352539527e-18) (78.34925896 9.411793632 2.4685945e-18) (80.11294387 8.233874783 -1.244274757e-18) (90.30375079 22.98426593 0) (88.44742713 24.67883493 -4.875384636e-19) (90.5880692 26.81516294 0) (135.7772506 7.861848691 -2.424995422e-18) (135.014435 10.04532442 -2.160301848e-18) (137.7025962 11.00060872 -2.473130386e-18) (85.5941866 -5.625253171 1.015764635e-18) (86.0434546 -5.250426667 0) (86.3839903 -5.536093506 0) (83.72138276 -2.847744277 -2.22719145e-18) (84.1381334 -3.364921056 2.187697259e-18) (83.48151384 -3.823968166 1.128586383e-18) (134.4675134 -7.99708084 0) (135.1684352 -6.331490805 0) (137.3064635 -7.122385229 0) (88.16068733 -7.377357627 8.677834718e-19) (88.48776757 -7.09447681 -1.042351357e-20) (88.7535347 -7.275705628 -8.488245747e-19) (86.71340291 -5.801999828 1.909232422e-18) (87.03203012 -6.050023329 -9.513164022e-19) (86.6426356 -6.385018544 9.619695464e-19) (126.3603853 -17.48369737 0) (127.4977169 -16.65831458 -1.689110083e-18) (128.7019698 -17.92727095 3.59239012e-18) (90.18526974 -8.713040537 7.607685066e-19) (90.48187284 -8.456328813 7.533474986e-19) (90.72630476 -8.621369414 -7.534495733e-19) (89.01248263 -7.451454093 -8.322232716e-19) (89.26491239 -7.623119492 7.547056185e-21) (88.95562054 -7.884815751 -8.2558455e-19) (88.13624134 -9.296881172 5.899690898e-19) (88.25384905 -9.24943603 0) (88.3050433 -9.282319029 5.834984115e-19) (92.34269242 -10.05196764 -1.612704134e-19) (92.60266141 -9.731570261 -6.553190913e-19) (92.90415841 -9.873985814 5.066796224e-21) (90.97462988 -8.785628263 7.280055588e-19) (91.22717319 -8.948762783 -1.004559553e-20) (90.94147557 -9.219497908 -7.231372909e-19) (89.80788558 -10.79388096 2.724496338e-19) (90.03589969 -10.73479659 -8.050209956e-19) (90.09587638 -10.79081755 7.963746385e-19) (89.22982065 -10.05551147 -5.67022312e-19) (89.2903465 -10.09602976 0) (89.12392952 -10.15676166 -5.731306463e-19) (113.5071138 -29.01222671 9.830825895e-21) (113.3871416 -29.70264084 2.17129038e-20) (112.6578295 -29.57198219 1.537422544e-18) (95.11806341 -11.05248224 3.76573281e-19) (95.26369919 -10.64686158 5.11829325e-19) (95.61421885 -10.70063215 0) (93.21576347 -10.00892396 1.625238645e-20) (93.53757679 -10.13452939 1.220283825e-18) (93.30885111 -10.49816078 1.103135206e-20) (93.87945721 -11.24036269 0) (93.68545889 -11.18502751 4.923050002e-19) (93.78204075 -11.00294944 -3.662415866e-21) (153.5402324 9.107922546 2.394637249e-18) (153.532472 10.12620295 -2.387704532e-18) (154.6738992 10.12642981 0) (84.33226525 -7.525624536 -9.037513938e-19) (84.52757643 -7.323773566 -1.761956469e-18) (84.71947928 -7.425519038 -8.713925919e-19) (83.26316452 -6.786483682 6.10838036e-21) (83.49614281 -6.867599499 6.168700032e-21) (83.31888751 -7.097548474 8.750783149e-21) (84.26701788 -7.895553865 6.940018243e-19) (84.17452007 -7.843067255 0) (84.30227631 -7.749843736 6.828211212e-19) (150.8877743 -6.666955966 0) (150.1707727 -6.31565735 -2.149873798e-18) (150.476937 -5.585801768 2.135713582e-18) (144.9298601 -15.05992578 0) (145.3468569 -14.56910437 2.053406113e-18) (145.8200755 -14.99962237 -2.083218927e-18) (154.471048 7.036476697 2.396544263e-18) (153.4556246 7.123915758 -4.824339331e-18) (153.511452 8.098009779 2.423713692e-18) (150.7638324 -4.837818281 2.173679253e-18) (151.0311709 -4.077885046 0) (151.7958571 -4.408262072 0) (84.58831744 -7.901965096 6.83065881e-19) (84.45828251 -8.005889245 6.907553764e-19) (84.36133625 -7.951988404 6.941114262e-19) (130.7455124 -24.63279062 1.695758736e-18) (131.5606389 -24.26245339 0) (131.8783558 -25.13595455 0) (144.4970616 -16.59067178 0) (144.0701694 -16.0923426 0) (144.4989827 -15.63247153 0) (88.94785835 -10.01553271 5.675047613e-19) (89.11128666 -9.960272373 0) (89.17067835 -10.00218731 5.647847739e-19) (88.3555564 -9.326609342 -1.602173077e-21) (88.40661611 -9.362925778 -5.841388827e-19) (88.27976161 -9.413624242 0) (90.15529757 -10.84871975 -5.310260827e-19) (90.21692551 -10.90518141 5.31458661e-19) (89.96979291 -10.96507154 -1.930856568e-22) (91.63386324 -9.986445701 -5.737572662e-19) (91.5093281 -10.14173192 5.736800185e-19) (91.36398909 -10.05622934 0) (111.9470472 -29.43587597 0) (111.2327107 -29.26528944 6.708473474e-19) (111.4151463 -28.50392167 4.961867895e-21) (94.35876104 -11.1368754 -9.34835998e-19) (94.27478838 -11.33831123 -4.965452654e-21) (94.07623364 -11.29548456 4.743990474e-19) (81.97307916 -2.032479884 1.206948473e-18) (82.89622639 -1.587596116 0) (83.30347194 -2.258294659 1.123459925e-18) (82.02500289 4.363602488 -1.164776281e-18) (81.87422759 3.225448874 -7.619485994e-21) (80.40156359 3.34765187 1.239284272e-18) (72.88771814 -2.473494491 -1.468934527e-18) (73.99408835 -1.629090417 -1.391419855e-18) (74.75067091 -2.507003985 1.388506485e-18) (71.63583709 6.838048802 -1.434656768e-18) (71.51822454 5.168107108 -3.346454636e-20) (69.52586651 5.166019662 1.515431359e-18) (82.57710096 -6.905556542 0) (82.74075087 -6.62119762 9.663299751e-19) (83.01224477 -6.704731809 0) (80.54328138 -5.96500396 0) (80.9888144 -6.103324335 0) (80.83311034 -6.564255129 0) (117.2728754 -21.21002518 1.048516274e-18) (118.3643051 -21.12824274 1.149156776e-18) (118.8610012 -22.24248216 -1.170578015e-18) (99.88541383 -27.12420837 3.556457701e-20) (100.4042985 -27.74071683 3.102988629e-19) (99.57964404 -28.28002197 0) (79.28802276 -6.198197619 0) (79.53548565 -5.613939704 0) (80.05969058 -5.804814062 0) (75.51952667 -3.242494825 0) (76.27464457 -3.851755713 0) (75.63851749 -4.674697862 0) (134.4131007 40.91817314 1.11631175e-18) (133.2410708 37.6514378 4.235023245e-18) (130.2713842 38.47035936 1.806866648e-18) (123.1120929 -27.92037839 0) (122.9634615 -27.12407336 2.548006652e-18) (123.7129022 -26.96311758 1.318560033e-18) (118.5607175 -27.67333992 -1.035957759e-18) (119.2752859 -27.70658103 1.487921279e-20) (119.3766177 -28.39447033 1.099344731e-18) (129.4170564 -26.15292935 1.672754759e-18) (129.1403566 -25.30740671 1.598667847e-18) (129.9386806 -24.98071257 0) (124.4734955 -26.79039236 1.359280004e-18) (125.2383591 -26.59478774 -2.826161871e-18) (125.4327331 -27.40434066 1.411959283e-18) (81.45160788 34.16233029 5.422930834e-19) (78.90539173 35.94393383 -5.858210793e-19) (81.97453179 39.19957074 6.01759336e-19) (65.09237149 10.86953578 0) (66.38031034 13.74139353 -2.943459896e-18) (68.77238026 12.15992734 -2.66424751e-18) (85.51610796 42.12757405 1.187023324e-18) (89.93741578 43.94900942 0) (90.7991988 40.38129406 0) (135.7817071 65.05934372 0) (134.9299025 60.66667853 -9.672481305e-19) (131.1870726 61.41443621 0) (89.6934529 -10.42523887 5.703528179e-19) (89.74891722 -10.46923984 0) (89.56016115 -10.52068331 -1.178268987e-18) (59.67062658 -3.874476081 1.678457022e-18) (61.38607511 -2.520946254 1.629923088e-18) (62.5982556 -3.893817644 -3.652256693e-20) (57.68846344 9.684209066 0) (57.77178713 7.23422203 3.365558543e-18) (54.86022876 7.47381677 0) (83.5345365 -7.534604106 0) (83.4407612 -7.500578421 0) (83.54322493 -7.40891878 7.165699375e-19) (83.83675632 -7.506861997 6.898358274e-19) (83.72031601 -7.606908264 -6.471301716e-22) (83.62825282 -7.570277653 0) (148.0913081 -10.37276335 0) (148.4572484 -9.776034475 3.302064601e-18) (149.018185 -10.12007627 -1.115057139e-18) (147.8720553 -12.02646432 -4.532806974e-18) (147.3476449 -11.61807095 2.194455713e-18) (147.7195394 -11.04351366 2.168858667e-18) (152.6361133 1.610461648 -2.396695661e-18) (152.8196969 2.463104138 2.394364685e-18) (153.6435331 2.280187569 -2.471249139e-18) (152.9844978 -0.3268185346 -2.422996436e-18) (152.231554 -0.0875479732 2.330766312e-18) (152.4376561 0.7302433309 0) (134.1472704 -25.36918649 1.540784985e-18) (133.7030283 -25.56463672 -3.085038347e-18) (133.5677696 -25.08396724 0) (123.6672495 -31.34427846 -1.164038917e-18) (123.8274295 -30.92121216 -1.145636949e-18) (124.242866 -30.86476085 1.181252582e-18) (121.4272691 -31.21645529 0) (121.8198577 -31.22750925 0) (121.7561716 -31.60118445 -1.07281707e-18) (107.1654393 -33.09909404 -1.008390437e-18) (107.512705 -33.29089918 5.097480654e-19) (106.765027 -33.57520072 -2.129111731e-20) (91.93301999 -28.64504433 4.711771088e-20) (91.84453939 -29.02499935 1.259727553e-20) (88.39605519 -28.48102102 0) (95.98500795 -10.72270838 0) (96.35991357 -10.72327179 0) (96.26458333 -11.12313889 -2.019719854e-20) (94.3600932 -13.35088791 -4.629980065e-19) (94.22461159 -13.30138701 9.26406239e-19) (79.32625527 -10.37237919 2.290717527e-20) (105.8644683 -33.19787297 4.613038377e-19) (106.4614763 -32.79513412 -1.399939659e-18) (106.7917191 -33.00794093 4.704788111e-19) (98.04635359 -26.25847891 1.454372327e-20) (98.90318007 -25.83929754 0) (99.35644015 -26.55740086 -2.075080917e-19) (49.23180828 15.55605084 0) (50.98179078 19.26061638 0) (53.94513238 17.06909493 1.069784509e-19) (87.92690224 -9.051820443 5.833183912e-19) (87.98486539 -9.076911694 -5.847529227e-19) (87.87777991 -9.135569041 5.851505384e-19) (87.71134936 -9.048503277 -3.001172363e-19) (87.81021785 -8.9965255 1.201478703e-18) (87.86962935 -9.017707057 5.851137258e-19) (89.40772231 -10.37685212 0) (89.58279716 -10.32937911 0) (89.63866422 -10.37008138 -5.676544304e-19) (47.78860495 -8.459929357 -4.669071451e-19) (65.02315631 -15.08916124 4.521730022e-19) (61.76119284 -15.24888243 0) (152.5293623 17.62281763 0) (152.2913427 18.86555009 -2.451111818e-18) (153.735037 19.12307128 4.866600179e-18) (154.3377154 15.62290595 -4.882284306e-18) (153.0286547 15.40943662 2.44858834e-18) (152.8014161 16.51928479 0) (141.3873441 -18.82570914 1.831673294e-18) (141.8395326 -18.45328408 1.870644046e-18) (142.1893646 -18.91943268 0) (140.7591766 -20.14961717 1.846114383e-18) (140.4642205 -19.63325775 -1.786511147e-18) (140.9219673 -19.28829746 0) (88.78415096 -9.677794775 -1.157819385e-18) (88.83874316 -9.717208143 5.767540171e-19) (88.69493179 -9.771966826 2.933954966e-19) (88.53752248 -9.63967813 1.194844684e-18) (88.67355265 -9.588642431 -5.82902054e-19) (88.72940945 -9.627773131 1.161494197e-18) (120.5782104 -31.69503746 -1.013005012e-18) (120.6368765 -31.28852572 1.016635062e-18) (121.0242542 -31.30163091 0) (89.44508579 -27.69170924 1.033484836e-19) (92.00035838 -27.92898958 3.51686044e-20) (91.97683547 -28.34593024 -3.516771499e-20) (84.51038282 -24.24706989 1.225440988e-19) (82.5683135 -23.61132949 2.127291696e-18) (86.89614633 -24.32707248 1.648059151e-19) (122.7875594 21.15744076 0) (120.4879068 21.56072213 1.246459083e-18) (120.9238515 24.15364359 -9.954591621e-20) (117.1640432 -28.444726 0) (117.1234043 -27.70860729 1.799243545e-20) (117.8250311 -27.77808365 1.047783574e-18) (114.4170918 -23.86527169 9.484439686e-19) (114.5885593 -25.15023616 1.105282594e-20) (113.338583 -25.04152202 -8.808859951e-19) (114.8993166 28.92240964 2.215301473e-18) (117.8822489 29.9559951 -2.230458965e-18) (118.3713546 26.82182235 -2.53089542e-18) (127.2481836 38.88707525 -1.802060001e-18) (124.2664828 38.90258503 0) (124.0241685 42.12699043 0) (116.4175735 -29.20847805 1.919058066e-18) (116.3314142 -29.98570549 -1.950748376e-18) (115.5842641 -29.94239312 9.289808451e-19) (139.1717832 30.93692206 -2.378645238e-18) (141.1046367 29.17746619 2.366761515e-18) (139.2634605 27.34940925 0) (127.7193487 60.98603715 -4.174247906e-18) (124.2275784 61.17066717 6.328040772e-18) (123.0811293 64.12198373 0) (99.60441809 1.148726402 7.297137795e-21) (99.70697497 1.010624152 -1.065647559e-20) (99.72015475 0.9152873333 2.917263449e-20) (99.6675906 1.22274047 3.412839889e-21) (99.67803119 1.113568262 -2.101012493e-20) (99.5726281 1.267253833 2.846117067e-20) (99.82839545 0.7920222043 0) (99.76289435 0.9542219204 1.397097591e-20) (99.76840325 1.044116724 -3.624280908e-21) (99.50254784 1.672248175 -1.674270991e-22) (99.63316965 1.461780692 6.594215379e-21) (99.63928891 1.339486296 6.70284343e-21) (99.60765082 1.72415099 4.42293962e-21) (99.60722804 1.590961098 2.024219879e-22) (99.47650475 1.822272405 2.677909506e-23) (99.78992888 1.118893654 1.213629208e-20) (99.71102059 1.355434984 1.001474523e-22) (99.72920304 1.464159679 7.948392665e-21) (99.45079996 2.30252342 2.287901679e-20) (99.5967802 2.002259549 0) (99.58665711 1.862700589 -5.925206123e-21) (99.60850883 2.280281011 -3.884722412e-21) (99.5845789 2.143061059 5.057643465e-21) (99.44621044 2.465616193 -1.039323798e-20) (99.77505079 1.491650352 -9.94628441e-21) (99.69350816 1.81726185 0) (99.73275263 1.929154056 0) (99.50805469 2.946864083 3.298075263e-20) (99.6431203 2.547026758 8.767494249e-21) (99.60606893 2.416562788 -8.980339274e-22) (99.70208256 2.786125673 -1.714706628e-21) (99.65064483 2.672376232 7.51859331e-21) (99.53254441 3.095492768 -6.265654752e-20) (99.80290272 1.843486671 7.101766066e-21) (99.73917436 2.255090959 -7.48264232e-21) (99.80389938 2.344640592 7.786923785e-21) (99.7001966 3.465737488 0) (99.7868502 2.97775877 2.167390371e-20) (99.72010686 2.890461449 -2.315616421e-20) (99.8930685 3.103200952 0) (99.81564279 3.051062711 -4.049565977e-21) (99.75725914 3.553668395 1.015621371e-20) (99.88037956 2.08615593 0) (99.85475905 2.562888728 -1.564344341e-20) (99.94105376 2.60288595 -5.418342173e-21) (100.0041119 3.674959181 2.099397602e-21) (100.0090057 3.148883576 3.267150431e-21) (99.92831694 3.137154918 2.050924538e-21) (100.1239044 3.110066046 5.613198982e-21) (100.0452889 3.139512742 -2.214281477e-21) (100.0717739 3.664435752 -1.504746294e-22) (99.98803476 2.136459487 0) (100.0157488 2.631310337 0) (100.1030049 2.608947546 -4.247234026e-22) (100.2996501 3.485707704 0) (100.2254269 2.991943986 -6.918271511e-22) (100.1548656 3.059091779 -5.853231871e-21) (100.3036158 2.809595455 4.168742735e-21) (100.2469108 2.906552875 -3.50120219e-22) (100.3461018 3.383940663 -1.649518652e-20) (100.0882783 1.982489205 0) (100.159354 2.440920439 1.228311758e-21) (100.2289448 2.365112186 -2.015402295e-21) (100.4754402 2.992426899 -6.047576258e-21) (100.3554253 2.582595981 -6.155703346e-21) (100.3141188 2.699608006 2.776860976e-21) (100.3855689 2.33068843 7.793246833e-21) (100.3559092 2.458083381 4.313997767e-22) (100.4893279 2.844644722 -3.789029985e-21) (100.1489088 1.688922919 0) (100.2407899 2.073777009 -3.646041191e-21) (100.2861195 1.971663682 0) (100.5266515 2.383357626 -9.171926422e-21) (100.3952244 2.068595844 -8.215382889e-23) (100.3780154 2.199864936 2.209380005e-21) (100.3851456 1.804890729 1.015489252e-20) (100.3789664 1.935149228 4.617280306e-21) (100.5163542 2.229474312 4.731552311e-21) (100.1655256 1.336152186 0) (100.2600764 1.637641321 4.802617487e-21) (100.2838582 1.531632251 -4.801838025e-21) (100.4818379 1.782984453 0) (100.361554 1.5540227 5.592402981e-21) (100.362737 1.676800802 -2.661267206e-21) (100.328597 1.323012103 0) (100.3353609 1.43533648 -8.42048214e-21) (100.455828 1.645026562 -5.851504559e-21) (100.1505064 0.9998196308 0) (100.2320713 1.220659432 2.82849416e-21) (100.2415041 1.128641054 0) (99.06067063 1.613053035 0) (99.21704533 1.512753704 3.811296978e-21) (99.27228152 1.35923213 -2.289655345e-20) (99.10425226 1.857865168 -1.809981162e-20) (99.15963703 1.67866298 1.109624342e-20) (98.99080598 1.794210948 3.77522011e-21) (99.45058867 1.413638087 -7.046388001e-21) (99.31296516 1.551263431 -1.479806282e-20) (99.26960039 1.713199809 1.453624663e-20) (98.79751242 2.420325806 -2.867194483e-20) (99.00075041 2.253229672 4.608570184e-20) (99.0492515 2.049828738 1.543440077e-22) (98.92460126 2.688252471 4.801864976e-20) (98.95759443 2.465581568 5.184820893e-21) (98.74491868 2.653658388 0) (99.32359666 2.047429261 -1.292417719e-20) (99.15034579 2.263190715 0) (99.12526028 2.463253499 -3.979097128e-20) (98.6427326 3.432689523 7.60696568e-20) (98.88359632 3.162240998 -2.007060163e-19) (98.89787372 2.920546478 3.315910669e-21) (98.89066434 3.66330429 3.807863387e-21) (98.87849539 3.410308034 0) (98.63263571 3.713649936 0) (99.2831347 2.785037156 5.509007953e-20) (99.0946413 3.100294338 -4.531179418e-20) (99.10884362 3.321024811 -4.416422351e-20) (98.71924205 4.582059492 -4.259419674e-20) (98.96163438 4.167052055 -1.860272838e-20) (98.91526094 3.916411485 7.919793534e-20) (99.11113864 4.637714474 0) (99.02356179 4.408767464 1.859348464e-20) (98.79270874 4.863576831 0) (99.38958691 3.52542732 0) (99.22110081 3.962925005 -7.998044265e-21) (99.29480071 4.157785529 7.992956197e-21) (99.18127255 5.596543781 9.624053958e-20) (99.34521528 5.030041642 0) (99.21488402 4.846389931 0) (99.65250141 5.296688734 1.123538489e-20) (99.48826941 5.181684759 3.756222394e-20) (99.36005271 5.777940405 -4.740957228e-20) (99.68376457 4.073927882 -6.505990261e-21) (99.59497534 4.615249781 0) (99.72749714 4.710807233 -1.295330818e-20) (99.99799637 6.042689329 0) (99.99956384 5.400245448 -8.050003505e-21) (99.82062306 5.370423897 -2.862081297e-20) (100.3427968 5.326231123 3.126403043e-21) (100.1713971 5.385341748 -1.179654636e-21) (100.215917 6.026012022 -7.485389405e-21) (100.1002839 4.210405562 4.341608947e-23) (100.1331396 4.782240261 1.128536582e-22) (100.2703845 4.731868289 -3.352679877e-22) (100.8007008 5.675331045 -3.530002817e-20) (100.6405356 5.08823751 0) (100.4967426 5.226119438 -1.046829806e-20) (100.8624637 4.722346205 -2.662011746e-22) (100.7595243 4.918841368 -3.664976187e-21) (100.9493841 5.475604006 2.969733192e-20) (100.4618725 3.876384009 1.843273873e-20) (100.5983968 4.386931423 2.711913291e-21) (100.683223 4.219769101 0) (101.2370477 4.723733466 -5.923371618e-20) (100.9987686 4.275203031 6.217010046e-20) (100.9390053 4.506380148 2.574537859e-21) (101.0596759 3.792255978 -2.119362963e-21) (101.0357093 4.036011189 6.872213245e-20) (101.2799345 4.446709899 -8.411827672e-20) (100.6442779 3.235447339 -7.086555919e-21) (100.8250811 3.632318173 0) (100.8487368 3.421872962 4.412483906e-21) (101.2976873 3.615380977 2.695185483e-21) (101.0631075 3.310911304 -2.489008831e-21) (101.0659664 3.549821503 0) (101.0273081 2.855712817 1.542298591e-20) (101.0479178 3.079370938 5.426334411e-21) (101.2745778 3.352448589 -1.358212267e-20) (100.6721652 2.518192348 5.139532589e-21) (100.8481699 2.801162073 2.682214953e-22) (100.8350337 2.603610277 5.394909371e-21) (101.1606462 2.630483902 -1.46519383e-19) (100.9628026 2.435306727 0) (100.9974304 2.641487567 1.423305406e-21) (100.874156 2.045189508 1.007727204e-19) (100.9197464 2.236380068 1.877655785e-20) (101.1092313 2.411611407 -2.444559444e-20) (100.5927749 1.84948051 4.083418096e-23) (100.7472047 2.047432814 3.054642211e-20) (100.7120107 1.876929826 -1.214540387e-20) (98.31707315 1.858691373 1.948147855e-19) (98.51634907 1.828019539 6.560039153e-20) (98.62988218 1.624577035 -2.605603669e-19) (98.29310555 2.282059935 -4.253898825e-19) (98.40349987 2.046903404 3.238589287e-20) (98.18791608 2.087949979 -2.658102601e-19) (98.80723644 1.896118848 0) (98.61054858 1.981504235 0) (98.51530032 2.204904131 1.747508068e-19) (97.80141844 2.905767369 0) (98.07826172 2.815982284 6.417136519e-20) (98.18418593 2.537758891 7.242327582e-21) (97.88468938 3.442541928 2.478987125e-19) (97.97730128 3.117257917 -6.463388541e-20) (97.67805202 3.228989567 0) (98.51090614 2.826554709 1.497047274e-20) (98.25503419 2.982031568 -3.108657174e-20) (98.18179206 3.28102969 -2.46128642e-19) (97.36995274 4.368354818 -2.466965047e-19) (97.73820619 4.16394457 3.672273214e-19) (97.80340269 3.791410805 1.305176584e-19) (97.67552796 4.972149267 5.670373257e-20) (97.69337088 4.558085801 -1.129950083e-19) (97.30393722 4.804703535 0) (98.35490227 4.008180896 1.068668318e-19) (98.04274748 4.290948073 4.894910773e-21) (98.0378003 4.659568296 -5.107166692e-20) (97.31429662 6.255209912 -6.19602766e-19) (97.74395299 5.840266365 2.398908406e-19) (97.68978637 5.401234991 -2.014979278e-19) (97.99598396 6.710902799 1.495552474e-19) (97.84349427 6.280089745 -9.944890641e-20) (97.41567385 6.764837126 5.95213427e-19) (98.52350716 5.327524396 -1.631326293e-19) (98.20967804 5.80013935 1.531882443e-19) (98.34622406 6.167822097 -3.696654851e-19) (98.12976287 8.199491107 3.815141267e-19) (98.47076941 7.488421551 3.315397735e-19) (98.20399661 7.11847318 -4.4491734e-21) (99.15966391 8.049156513 -1.746570903e-19) (98.7913197 7.803677422 -3.056889435e-19) (98.51263121 8.58247771 -1.295716214e-19) (99.20562874 6.409377758 8.387462746e-20) (99.01877347 7.082199994 -8.4001943e-20) (99.32206573 7.284018376 1.394898804e-20) (99.96547582 9.169707704 -2.991852286e-20) (99.98003001 8.281315456 -1.521284335e-20) (99.56073851 8.211223136 1.536226934e-19) (100.7967815 8.138756042 -4.683626673e-20) (100.3972999 8.256238949 4.705769539e-20) (100.4794372 9.139474591 -2.313135871e-20) (100.2675777 6.711744097 1.295390466e-20) (100.3275092 7.451507853 -7.426154948e-21) (100.652817 7.35382316 -2.958615862e-20) (101.7962922 8.422340971 -2.035433222e-19) (101.4802164 7.663712096 -3.886171551e-20) (101.1610916 7.937359867 -5.65276173e-20) (101.9533008 6.95859516 -1.104251075e-19) (101.7448174 7.332730732 1.108096144e-19) (102.110326 8.027297079 1.433804038e-19) (101.1727348 6.060891755 -1.202125173e-20) (101.4354312 6.67859558 2.225572825e-20) (101.6128181 6.360899967 1.180084922e-19) (102.6312397 6.630211259 3.88368923e-20) (102.2044683 6.138139126 1.171268126e-19) (102.1048207 6.556393529 8.846385518e-21) (102.2707408 5.296516512 0) (102.2570531 5.715594443 -1.558640773e-19) (102.6818602 6.14477928 8.994634638e-20) (101.5617616 4.864172506 0) (101.8857168 5.287634811 0) (101.9051757 4.920105017 0) (102.583969 4.754723453 -3.957853204e-19) (102.2049611 4.493000384 -1.850156497e-19) (102.2512302 4.887624405 -1.873732552e-19) (102.0614074 3.761360019 1.960401981e-19) (102.1388823 4.115202821 -1.837126263e-19) (102.4977474 4.34006955 2.809579964e-19) (101.5307492 3.61910556 0) (101.8182181 3.875578184 -1.921855988e-19) (101.7581502 3.553977809 2.366426053e-19) (102.1674482 3.271417013 0) (101.8825172 3.133744745 5.393974356e-20) (101.9756909 3.435801518 -5.29410852e-20) (101.6887098 2.593916504 5.618913729e-20) (101.7858284 2.853097064 -2.877132335e-20) (102.0481601 2.968495832 0) (101.3157511 2.572433653 -2.981681071e-19) (101.5421191 2.720746906 -1.864968037e-19) (101.4630244 2.480673208 5.426194835e-20) (97.47245534 1.759893266 0) (97.68678148 1.818272153 2.880060259e-19) (97.87008231 1.602118955 3.581099107e-20) (97.29705473 2.332991956 5.984653929e-19) (97.49632781 2.062269123 0) (97.25634944 2.005948705 6.1762596e-19) (97.96488804 2.101277942 5.431460156e-19) (97.73333604 2.092545914 -8.331895418e-19) (97.56083907 2.360392469 -2.699450046e-19) (96.54838647 2.933403625 -6.114677653e-19) (96.88109221 2.979424926 1.17156007e-18) (97.09122293 2.637945553 -5.8823511e-19) (96.45101382 3.786731345 -5.937663213e-19) (96.66559232 3.361175167 5.951572152e-19) (96.29690081 3.323087217 -1.221443843e-18) (97.35791093 3.313160559 2.90118769e-19) (97.01885071 3.360781656 -5.615806335e-19) (96.84292493 3.763700106 5.673231767e-19) (95.53695254 4.804570513 0) (96.04620723 4.781457282 0) (96.24233626 4.261605956 -3.017914291e-19) (95.72659219 5.977114622 1.604614478e-20) (95.87123964 5.351874501 -6.45277547e-19) (95.30613829 5.422851999 7.334668177e-20) (96.87179796 5.024717507 2.533688371e-19) (96.3947929 5.210678009 5.381745836e-19) (96.2968928 5.780242437 -5.389079034e-19) (94.84057512 7.702125041 -1.131340247e-18) (95.59172944 7.401011227 7.491993952e-19) (95.62726169 6.660029536 6.826910707e-19) (95.80611879 9.017185323 0) (95.64288619 8.19167666 -4.995587695e-19) (94.83926901 8.617343353 0) (96.91522584 7.250131945 -6.252017339e-19) (96.32927519 7.729285415 -4.610041844e-19) (96.50489453 8.429022716 3.825727927e-19) (95.78122797 11.60443948 -3.575942236e-19) (96.57120434 10.65647996 -3.114124995e-19) (96.10816605 9.851464565 -5.139353619e-20) (97.99489951 11.96524277 0) (97.20399524 11.38001729 3.268004918e-19) (96.52296044 12.52004054 2.592117183e-19) (98.16870678 9.429057606 -1.663254125e-20) (97.74097438 10.35624531 -4.855232941e-19) (98.3935426 10.81954861 3.032782626e-19) (99.84557099 13.98438624 -2.9056942e-20) (99.88271453 12.52627212 -2.577249907e-20) (98.90673588 12.35903773 -1.141142362e-19) (101.7607112 12.16282161 -4.648047949e-20) (100.8551726 12.45593621 -1.204123599e-19) (101.0655865 13.87868003 9.683980744e-20) (100.577893 10.11829804 8.769145934e-21) (100.6992615 11.21452004 1.160535103e-20) (101.4350237 10.98979898 -1.253458452e-19) (103.8891818 12.09315871 0) (103.1935584 11.06726209 -2.921064794e-19) (102.5499425 11.68298658 1.70134698e-19) (104.0311855 9.617615257 2.08105132e-19) (103.6853455 10.36615836 4.585221813e-19) (104.4401184 11.23475868 -1.695604468e-19) (102.5439863 8.765036041 5.911961689e-20) (103.0617747 9.543662712 -1.49683412e-19) (103.3742487 8.916477207 3.185225408e-19) (105.104588 8.543092753 -3.419601743e-19) (104.3460846 8.08596278 9.732368109e-20) (104.2444916 8.850835193 -5.789278967e-19) (104.2937804 6.668641388 1.161122648e-19) (104.3565507 7.354153952 -2.115973318e-19) (105.0776375 7.722935595 5.901846815e-19) (103.1663008 6.56647566 -8.862530812e-20) (103.7194023 6.96683284 1.012424395e-19) (103.6889331 6.348089401 0) (104.5568266 5.607000851 7.444020767e-19) (103.9989821 5.441048833 -7.297138727e-19) (104.1689494 6.030746223 -6.167480932e-21) (103.5927904 4.405487136 -3.577598634e-19) (103.8037759 4.898242984 -1.219978212e-19) (104.3138118 5.021503784 5.27455042e-19) (102.8981628 4.551648748 2.223071905e-19) (103.3326944 4.739454056 -2.240723601e-19) (103.1634847 4.283152453 7.113041133e-19) (103.5335357 3.593140785 0) (103.1607886 3.554245393 -3.125950328e-20) (103.3755745 3.958835969 6.239138689e-20) (102.7494329 2.859365422 3.210497537e-20) (102.9503344 3.188737584 -5.404220012e-19) (103.2847374 3.209157516 2.577724499e-19) (102.3301666 3.064868902 2.994588892e-20) (102.6312693 3.139505614 2.352443245e-19) (102.462221 2.826085392 1.553153934e-20) (96.65548391 1.270517238 0) (96.84814204 1.4314462 -6.392093981e-19) (97.12258607 1.226386874 7.851184805e-20) (96.23851273 1.928670657 0) (96.55394543 1.663790729 0) (96.33480118 1.491534571 -3.426512885e-19) (97.01756735 1.921106969 3.301735738e-19) (96.78257228 1.807272922 -8.005027079e-19) (96.49626308 2.07941516 0) (95.21941592 2.359470309 7.316912188e-19) (95.53978442 2.569604478 -1.058005915e-18) (95.9007143 2.228926499 3.480411164e-19) (94.74456386 3.398183455 -3.586690288e-19) (95.15456254 2.957811559 -7.180694344e-19) (94.78783475 2.733575064 7.389216099e-19) (95.91753836 3.24946867 0) (95.53299109 3.12934597 6.996869177e-19) (95.17817385 3.572585175 -3.38886752e-19) (93.27713283 4.225278543 -9.415439877e-22) (93.85202059 4.486465328 5.473807411e-19) (94.31073139 3.906810357 -1.942081823e-19) (92.89414133 5.95979553 0) (93.37593132 5.167465764 2.331903585e-20) (92.69691913 4.897793537 7.436116388e-19) (94.69808911 5.419313566 1.103080603e-18) (94.04997582 5.332721002 1.512850744e-18) (93.67641348 6.109672682 -2.653851958e-18) (90.79122378 7.81250236 -3.909504327e-19) (91.95025977 8.021718626 0) (92.40846905 6.897308486 1.835311212e-19) (91.33123113 10.92790129 -1.009516676e-18) (91.56639287 9.349662991 0) (90.16398563 9.241077931 -4.579844486e-21) (93.90304815 8.975145717 -1.11995112e-18) (92.81370669 9.241182679 -1.284940129e-18) (92.76361462 10.59281909 0) (89.62093607 15.77688421 -7.625657624e-19) (91.83734294 14.84707052 6.193796262e-19) (91.35363627 12.76035523 -3.217209181e-20) (94.6780096 18.72393768 2.196623176e-19) (92.92044348 16.91291071 0) (89.62912753 18.38828874 1.111092978e-18) (95.64433366 13.80349502 0) (94.49990399 15.25642937 0) (95.97815454 16.55815533 -9.143012612e-20) (101.166442 24.34679312 -1.736540923e-19) (99.94451307 20.29403729 -4.778769766e-21) (97.15118288 19.89757603 -1.460011816e-19) (104.5967614 18.69097451 1.961028282e-19) (102.4870541 19.82723848 0) (103.5815904 22.61658353 0) (101.3676837 15.53177979 0) (101.8077913 17.47938008 0) (103.5305095 16.70828079 2.346368104e-19) (109.0101811 16.71036539 -2.202336004e-18) (107.2419167 15.53113454 1.363021328e-18) (106.1839065 17.17908292 -4.344446809e-19) (108.1630555 12.36058836 4.915304484e-20) (107.8713031 13.89901828 0) (109.5412904 14.71306895 -1.015951781e-18) (105.3556736 12.13125074 0) (106.4823282 13.02065915 0) (106.8490245 11.71802924 1.020449923e-18) (109.2323705 9.844019338 1.407272655e-18) (108.0299046 9.655152903 0) (108.1891235 10.94371717 -9.095893001e-19) (107.3750206 7.492283602 6.253643878e-19) (107.7397216 8.508860605 -2.071713061e-20) (108.8072416 8.590955837 -6.754876491e-19) (105.8782083 8.051473227 0) (106.761947 8.318089118 0) (106.4989112 7.383847015 1.389607193e-19) (107.2249697 5.710396197 3.189603336e-19) (106.5030173 5.791895416 -3.030354535e-19) (106.949959 6.586864595 -6.221468125e-19) (105.5958082 4.482694672 6.05862869e-19) (106.0467078 5.095928057 -3.155237737e-19) (106.6800204 4.990430545 1.25706508e-18) (104.8597895 5.104567341 -5.260065186e-19) (105.4376372 5.130240459 5.708699177e-19) (105.0580382 4.538702713 -2.84343653e-19) (105.1739619 3.350521618 2.343002981e-20) (104.7486177 3.476871219 5.90006614e-19) (105.1615612 3.946260996 0) (104.0035464 2.701857178 -6.567425006e-19) (104.3620672 3.06429143 7.153380689e-20) (104.7334668 2.938647573 1.4816973e-19) (103.6331033 3.197890855 6.770776838e-20) (103.9933099 3.150011982 0) (103.6796779 2.790589368 -8.649446844e-21) (96.05005119 0.3949327795 1.796741914e-19) (96.17132411 0.6451316278 0) (96.52867856 0.5016039537 6.722087456e-19) (95.35836545 1.001436268 0) (95.78234695 0.8107770682 7.244041951e-19) (95.64309739 0.5359344455 -1.282625541e-18) (96.1314065 1.291187608 0) (95.94622848 1.063970355 0) (95.54581035 1.279433729 7.236684851e-19) (94.17774286 1.095813412 -8.067593199e-19) (94.38750206 1.46809446 -7.723234824e-19) (94.89541612 1.219118403 2.622437314e-21) (93.2079572 2.076864192 4.042141413e-19) (93.82801278 1.75236576 -7.910363052e-19) (93.58635367 1.336194093 0) (94.43684263 2.457203903 7.516997715e-19) (94.11355021 2.128713131 7.941691508e-19) (93.54039941 2.497674021 -1.160096427e-20) (91.35303458 2.276991667 0) (91.73952619 2.888563859 1.670467345e-18) (92.51648251 2.452955036 -1.059395838e-18) (89.84922232 4.013151589 -8.949056478e-19) (90.85970837 3.404307815 3.349130558e-20) (90.39823269 2.691868942 9.282178687e-19) (92.03622241 4.514531589 -2.092821407e-19) (91.41552151 4.015555347 2.090446899e-19) (90.52717277 4.720268699 4.265680114e-19) (86.43969474 4.385377852 -1.002651335e-18) (87.29981118 5.663162554 1.012516138e-18) (88.67743283 4.745282802 -9.194439805e-19) (83.56542968 9.333839512 0) (85.64146364 6.855843223 -2.746874972e-19) (84.48217038 5.266797624 2.861855783e-19) (88.63496443 8.841961863 0) (87.07879054 8.064778221 9.681403573e-19) (85.6103251 9.828377135 -9.569445558e-19) (83.8344878 17.87397231 -4.730531796e-19) (83.9917769 15.49129641 4.177851949e-19) (82.04369266 15.04716427 0) (96.11339483 37.08519086 0) (96.09936588 32.73800572 0) (92.05834619 31.62903027 1.787376426e-19) (103.6080484 31.5868606 -1.529709161e-18) (100.0733114 32.64514491 -5.077278656e-19) (101.1492089 36.64433512 5.081394216e-19) (99.24130836 26.73527526 9.378965785e-20) (99.55830903 29.41057715 -9.340283352e-20) (102.4849102 28.77196613 8.856449013e-19) (114.9329049 8.669026188 0) (113.4441308 9.321458491 0) (114.4862979 11.03512097 -1.077025011e-19) (111.3849912 6.722843136 8.70859492e-19) (112.403428 7.906779141 -8.75331423e-19) (113.6341775 7.296071263 2.521270856e-19) (109.9516035 8.537414023 0) (111.1597475 8.31421952 0) (110.3368099 7.127083301 0) (110.2109092 4.426538625 4.157704908e-19) (109.4854589 4.902740713 0) (110.4085314 5.734430174 3.926896297e-19) (107.8227381 3.608151155 0) (108.6224242 4.202262002 7.230251993e-19) (109.2365285 3.767141669 7.891000664e-19) (107.3304122 4.810859789 -6.481396314e-19) (107.9829315 4.549582555 -7.226013332e-19) (107.276468 3.931925086 0) (106.7973685 2.34313684 1.814377549e-19) (106.4174677 2.672285456 -6.587827079e-19) (107.0879921 3.103532216 7.015557252e-19) (105.2598053 1.982013749 -4.704639141e-19) (105.8089586 2.302423122 5.018013018e-19) (106.1346175 2.002608593 -4.899668636e-19) (105.1021413 2.770573713 -3.088319377e-19) (105.4628947 2.558853101 0) (104.9612577 2.219225201 6.344958451e-19) (95.81502031 -0.728585393 9.147213586e-20) (95.83730024 -0.4358561738 0) (96.24154472 -0.4830763143 7.498056933e-19) (94.91455566 -0.3108500535 0) (95.39616554 -0.378364583 0) (95.36867564 -0.7004645117 7.674749004e-19) (95.53013139 0.2438307595 0) (95.44776977 -0.06254846171 -3.821941942e-19) (94.97418777 0.03776141525 1.161655093e-18) (93.77102006 -0.5844319658 0) (93.80768353 -0.1496681636 4.114742113e-19) (94.38731353 -0.2341827523 3.964891889e-19) (92.45557213 0.03526728033 0) (93.16740112 -0.05895303366 0) (93.13187486 -0.5430335008 0) (93.39155564 0.890366259 0) (93.25121817 0.4214758885 0) (92.54645399 0.5757434305 -4.339112279e-19) (90.75917276 -0.4687468194 6.873692747e-19) (90.76432165 0.2193168717 -9.544398557e-19) (91.65967343 0.1301308783 1.129963082e-19) (88.59012128 0.3369502591 2.680611611e-20) (89.74835256 0.2930668589 1.423192524e-18) (89.76884625 -0.488540247 9.8852751e-19) (90.05418725 1.911508416 -9.584622074e-19) (89.84006725 1.101284471 4.97430332e-19) (88.66082286 1.280306042 -9.630458039e-19) (131.1147941 16.13700323 -1.910019665e-18) (129.2984996 17.82287351 1.913815212e-18) (131.2692761 19.98567404 0) (125.9870857 14.39797439 -1.685053016e-18) (127.5343345 15.95873091 -1.267565966e-20) (129.1267439 14.50684259 -1.78678609e-18) (119.6240306 3.537646611 0) (118.7611423 5.131545373 -1.120622453e-19) (120.9838035 6.233537357 1.353950369e-18) (115.0254988 3.48273191 -9.555744378e-19) (116.7864594 4.227305941 -2.363649946e-18) (117.5076532 2.877096286 5.915398274e-19) (114.805066 6.47313059 1.026540615e-18) (115.8713546 5.440138615 -8.466950052e-19) (114.2644056 4.52469902 -3.842950749e-21) (112.46464 1.508263478 0) (112.0396009 2.36428847 9.385724882e-19) (113.4503516 2.870288925 3.147154197e-19) (109.6457442 1.598400618 0) (110.7763234 1.94592967 1.699087517e-18) (111.1340453 1.201778597 -1.286602997e-18) (109.8076214 3.242452739 -3.950609816e-19) (110.3267805 2.632176838 -1.674195151e-18) (109.2661147 2.201343663 -7.635364604e-19) (107.9488793 0.5614444591 -1.882875143e-18) (107.7339898 1.064669171 -3.591855381e-19) (108.635189 1.308549541 7.71500047e-19) (106.2191253 0.6835089344 -6.92776155e-19) (106.9318624 0.8586883275 -1.06536811e-18) (107.1131414 0.4132697671 1.426582107e-18) (106.4334797 1.65842451 5.150404518e-19) (106.7032932 1.275505952 -5.159480275e-19) (106.0258067 1.055828693 -1.721716377e-19) (96.01281991 -1.89662947 0) (95.92747165 -1.611804598 9.207595201e-20) (96.33261893 -1.559533403 -9.055315461e-20) (95.01422567 -1.71834637 2.075179886e-19) (95.48880486 -1.664030658 9.701127943e-19) (95.58112044 -1.973228664 1.951911189e-19) (95.37482289 -1.025776484 -9.611698187e-19) (95.41957582 -1.347703515 -7.757630698e-19) (94.93802765 -1.373658735 6.025218833e-19) (94.06984473 -2.241115289 0) (93.94283478 -1.846206183 -4.321975662e-19) (94.50032699 -1.777750894 -8.251796163e-19) (92.67654006 -2.030938744 -4.384768539e-19) (93.33678172 -1.928553408 8.746266112e-19) (93.4823404 -2.356735005 -4.370527294e-21) (93.1506116 -1.016860202 -4.349052171e-19) (93.22458258 -1.480299961 7.091708662e-21) (92.54422904 -1.541447675 4.477138482e-19) (91.40816209 -2.867159461 -2.307094564e-19) (91.17169475 -2.327884119 1.173751519e-18) (91.95663949 -2.160934478 0) (89.38824724 -2.820112339 9.82015919e-19) (90.31679694 -2.543927376 -1.405007121e-18) (90.60021031 -3.12173735 -4.616683415e-19) (89.88603131 -1.226834452 0) (90.07440674 -1.912745852 1.414108167e-18) (89.08206606 -2.137375022 0) (136.5040502 -0.6848594441 -4.472090149e-18) (136.6332498 1.379841436 2.285873993e-18) (139.2226223 1.319836977 0) (132.1363703 1.345535847 2.003589288e-18) (134.2697776 1.374790104 -1.744498272e-21) (134.2086983 -0.4812415059 7.025424028e-20) (133.8612995 5.252235758 -7.913877167e-20) (134.1632796 3.3193543 4.255211135e-18) (131.9996749 3.079581787 -1.934853673e-18) (120.3654747 -3.441744814 -6.369171115e-19) (120.5743718 -1.719607307 0) (123.063577 -1.878244684 1.539757187e-18) (116.3800942 -1.489144383 1.412136776e-19) (118.3607251 -1.591997625 0) (118.2097837 -3.073160918 1.909884933e-18) (118.0152997 1.42763269 0) (118.2994478 -0.07968268065 1.08198188e-19) (116.312386 -0.1906859068 1.038426e-18) (112.9631182 -2.284530304 3.216307439e-21) (113.0267708 -1.324387893 -9.554880441e-19) (114.6089499 -1.401798941 0) (110.3536569 -1.191459726 8.350585042e-19) (111.6142802 -1.254168887 0) (111.5638877 -2.091777044 -8.84558233e-19) (111.3961332 0.4098462316 0) (111.5583651 -0.4156788278 0) (110.3072995 -0.4607860066 -1.235210717e-18) (108.2002473 -1.651650832 1.933005414e-19) (108.2345112 -1.087314895 -1.323476179e-18) (109.2317492 -1.136287707 7.906401205e-19) (106.5670212 -1.005554292 -5.222203759e-19) (107.3502406 -1.043543398 -1.813493224e-18) (107.3187104 -1.54191015 8.87025236e-20) (107.2457152 -0.05695750994 3.681751903e-19) (107.3278302 -0.5453052584 1.812217587e-18) (106.5508354 -0.5624061236 -1.789632183e-19) (96.56942468 -2.94536882 1.788482276e-19) (96.40163511 -2.699658416 -1.805482815e-19) (96.77462743 -2.566578799 2.640302362e-19) (95.57270068 -2.98420414 0) (96.00133971 -2.838038322 0) (96.18192009 -3.100861085 0) (95.69838755 -2.273131071 0) (95.83939213 -2.561794048 1.887609322e-19) (95.39707585 -2.688233241 -7.935011536e-19) (94.853389 -3.63142236 0) (94.62325525 -3.313552066 4.167181457e-19) (95.11405774 -3.141411617 0) (93.53528517 -3.721135114 -6.306725182e-19) (94.09786226 -3.505104615 8.583527328e-19) (94.34919818 -3.842099324 0) (93.66021709 -2.762469169 -1.730044022e-18) (93.8669529 -3.145229935 -8.552149282e-19) (93.27986636 -3.339158674 1.730615361e-18) (92.62228804 -4.640644603 4.263681354e-19) (92.28961568 -4.249303445 -2.153975964e-19) (92.9331579 -3.967273845 0) (90.87872562 -4.946472714 1.105451321e-21) (91.60404141 -4.573943858 0) (91.97013422 -4.979644517 4.234831703e-19) (90.9141268 -3.649622174 9.383214124e-19) (91.25068496 -4.132061035 -4.569108329e-19) (90.48356999 -4.490769627 8.693163706e-19) (85.77755222 -7.150226093 -8.190928553e-19) (85.9426988 -6.969137402 8.231013923e-19) (86.12099538 -7.058000271 -2.476849419e-21) (85.58014862 -6.754862113 -1.676274695e-18) (85.76396442 -6.848736341 8.350581351e-19) (85.59467692 -7.044011703 1.646021915e-18) (130.7809575 -13.5993296 -1.955915733e-18) (131.8029788 -12.36715851 5.921151016e-18) (133.4632135 -13.52116196 2.136337685e-18) (128.7122083 -10.54050996 1.842790905e-18) (130.2074383 -11.38827256 -5.689017899e-18) (129.2978835 -12.55237756 1.793466816e-18) (131.8383789 -8.736117489 -1.939108407e-18) (131.0582296 -10.09724685 1.918573624e-18) (129.4720222 -9.246520626 1.811647772e-18) (117.5485412 -9.184011884 2.352712343e-18) (118.4848735 -7.962935232 -6.139108667e-19) (120.4405598 -9.025692414 -1.350502654e-18) (115.0169109 -6.238048378 -1.035764555e-18) (116.6811017 -7.034963064 0) (115.8955905 -8.12835955 -1.136346386e-18) (117.8646482 -4.491228697 -1.885700986e-18) (117.3464999 -5.817637572 -1.142760595e-18) (115.5698562 -5.161721179 1.116556241e-18) (111.6331307 -5.726980928 4.428923382e-19) (112.1066678 -4.95256916 -4.444858957e-19) (113.4934935 -5.547578219 1.000065395e-18) (109.7065636 -3.990603154 -1.593047054e-18) (110.846615 -4.436978564 -8.332170605e-19) (110.4417697 -5.126599302 1.84025999e-18) (111.4164413 -2.910105626 8.821188567e-19) (111.1750583 -3.695252759 2.363289472e-19) (109.9868934 -3.333747398 1.018470279e-18) (107.4924692 -3.763376722 -1.411568656e-18) (107.7549802 -3.27107867 0) (108.6784999 -3.604568804 0) (106.1894106 -2.734577169 -1.150676691e-20) (106.9280886 -2.982829947 0) (106.6978579 -3.425025712 -1.367290522e-18) (107.2423257 -2.035457998 1.840584605e-19) (107.1121318 -2.518116663 -9.118189533e-20) (106.3525109 -2.317468205 -1.381410582e-18) (97.38997522 -3.795087091 0) (97.1655265 -3.603440852 8.761598041e-19) (97.48900612 -3.413567622 5.073660904e-19) (96.45231604 -4.007385973 -3.678969828e-19) (96.82008016 -3.800581052 -3.641827257e-19) (97.05950104 -4.00323532 -3.565031453e-19) (96.37962106 -3.34939518 -7.338348998e-19) (96.59255347 -3.5831374 1.641129475e-18) (96.2089057 -3.77729771 3.795660935e-19) (95.93750561 -4.699285478 7.658959112e-19) (95.64566949 -4.462350556 -1.54818148e-18) (96.06131921 -4.226842013 0) (94.73289481 -4.996752317 1.94982067e-19) (95.20356028 -4.717668074 0) (95.51564563 -4.966195221 0) (94.61858104 -4.156329469 4.205196682e-19) (94.90367416 -4.44837751 -4.038609504e-19) (94.41109186 -4.714413695 5.943080342e-19) (94.07726189 -5.9244124 5.887238099e-19) (93.69692452 -5.642007034 1.671247584e-20) (94.23142437 -5.303615023 7.889216413e-19) (92.52383859 -6.426013178 -1.682265374e-20) (93.12762302 -6.015216732 -1.583682001e-18) (93.53217198 -6.3082103 1.545088963e-20) (92.34669609 -5.352997299 4.030561467e-19) (92.73263271 -5.697354362 -1.822888936e-20) (92.10353234 -6.098723089 8.07046064e-19) (88.27659047 -8.449052713 -7.101892528e-19) (88.40682908 -8.318374583 5.065943958e-21) (88.53660942 -8.3844199 6.985392936e-19) (88.1416276 -8.167773565 7.064722454e-19) (88.27577025 -8.233164394 -2.115844929e-18) (88.145404 -8.373363997 1.419418472e-18) (121.7504472 -19.93609978 0) (122.9028093 -19.44038141 0) (123.7342519 -20.71117051 -2.992595849e-18) (113.0313892 -12.46195471 4.754670966e-19) (114.2252336 -11.88158428 5.39835994e-19) (115.4438239 -13.3083407 -1.039673007e-18) (111.916722 -9.476482923 5.477630095e-19) (113.0476248 -10.60405908 -4.497461345e-19) (112.0084962 -11.1560419 -4.21656037e-19) (115.011745 -9.086738507 0) (114.0535255 -9.910619358 1.012607333e-18) (112.7849631 -8.832288112 0) (109.1456671 -8.059349036 -1.869079876e-19) (109.8289563 -7.595311363 1.773202457e-20) (110.8418237 -8.475311934 -3.963179766e-19) (108.0084276 -6.143211038 -2.15881007e-20) (108.883738 -6.821082205 1.088967486e-18) (108.287267 -7.253466318 -7.154436955e-19) (109.9752993 -5.760339639 -8.055110354e-19) (109.4501326 -6.320893512 0) (108.5025709 -5.685635506 7.462576715e-19) (106.0558133 -5.375169494 -1.297186813e-18) (106.4630015 -5.031392214 1.2987156e-18) (107.2016597 -5.550823506 -6.685803899e-19) (105.1797197 -4.183162034 0) (105.7903659 -4.578403887 1.304848681e-18) (105.4287589 -4.896814804 1.94634475e-20) (106.4295748 -3.841677114 -1.197564786e-20) (106.1267955 -4.22807086 2.233560866e-20) (105.4791954 -3.861244133 0) (98.38289281 -4.409269234 0) (98.12331303 -4.278029336 -6.633786663e-19) (98.38934552 -4.053847996 6.220426289e-19) (97.5378311 -4.754296706 1.374785346e-18) (97.83959868 -4.510726522 -6.792286107e-19) (98.11449253 -4.649654013 0) (97.30999341 -4.189677794 6.871989682e-19) (97.56959177 -4.359810204 -1.358862546e-18) (97.25095982 -4.5961345 1.053311713e-18) (97.2079901 -5.440365295 3.559417919e-19) (96.87767899 -5.285322797 7.34458622e-19) (97.21749195 -5.011438751 1.986494275e-20) (96.13210671 -5.898458359 -1.747515139e-19) (96.51665346 -5.579672635 -3.557893557e-19) (96.86773347 -5.741113727 -1.127426667e-20) (95.8391855 -5.193049591 0) (96.17269565 -5.398133741 7.361171335e-19) (95.76669728 -5.708444257 -7.25137192e-19) (95.70209662 -6.810217569 -3.308118308e-19) (95.28115514 -6.625711593 0) (95.72133128 -6.245761182 -1.489550729e-21) (94.30121755 -7.497860752 0) (94.80836213 -7.04202522 0) (95.25520095 -7.236357612 0) (93.94696801 -6.577202581 3.657931055e-19) (94.37219111 -6.822222103 -3.655491057e-19) (93.83993243 -7.265662769 7.251412334e-19) (90.26606211 -9.786115214 -6.429833517e-19) (90.41258619 -9.654688471 4.987453989e-21) (90.54477218 -9.73469912 -6.273489936e-19) (90.15403661 -9.474884284 -1.286544152e-18) (90.28337086 -9.553910109 0) (90.13685939 -9.692387647 0) (108.357367 -13.3939912 3.212735205e-19) (109.4783051 -13.34940666 -3.687494144e-19) (110.0455154 -14.74945572 -7.396609687e-19) (108.254223 -10.92825224 1.171230959e-19) (108.8767972 -12.07859778 -8.825293809e-20) (107.8764808 -12.16546126 0) (110.9568187 -11.58603938 -2.953777083e-19) (109.9083276 -11.89192673 -1.846234706e-19) (109.1692196 -10.72404536 1.823787965e-19) (106.2884719 -9.120586396 -1.425960197e-19) (107.0004058 -8.966271271 -6.707365394e-19) (107.6246603 -9.891756635 -5.157476949e-19) (105.8050239 -7.390394838 2.307249765e-21) (106.3913102 -8.132831169 -6.202037496e-19) (105.7546101 -8.297333876 7.230400262e-19) (107.6671153 -7.612426664 -6.510410186e-19) (107.0303467 -7.901845543 1.264155904e-18) (106.373821 -7.160912829 -1.515983207e-19) (104.2650969 -6.319380771 0) (104.7257201 -6.145933697 7.087107398e-20) (105.2485891 -6.730998495 -5.968251229e-19) (103.7848335 -5.170477551 5.702901486e-19) (104.2380202 -5.628477481 -5.291090918e-20) (103.8218457 -5.800129203 1.346842208e-19) (105.0459529 -5.175999254 0) (104.646841 -5.418304803 -2.926601079e-19) (104.1550424 -4.970450314 1.476224645e-19) (99.4577262 -4.791470009 -1.725862175e-18) (99.19467985 -4.706379171 2.701630569e-19) (99.40137914 -4.465076393 2.870860217e-19) (98.7407893 -5.215210142 0) (98.97450063 -4.955462722 6.036441506e-19) (99.2521882 -5.042363547 0) (98.39607207 -4.76669341 6.324375157e-19) (98.68431071 -4.864883614 -1.557372229e-18) (98.43358746 -5.122025386 9.551041743e-19) (98.56077277 -5.872491965 9.152770683e-19) (98.23155268 -5.780105639 0) (98.49332591 -5.489123177 6.015243227e-19) (97.65982031 -6.431050252 1.51244886e-19) (97.95429452 -6.092587674 -3.88560368e-19) (98.30362115 -6.186858455 -9.029637602e-19) (97.22357981 -5.880950388 -1.338732295e-18) (97.58804819 -5.992789391 1.289541196e-18) (97.27059017 -6.328673291 -1.633487895e-19) (97.43254809 -7.308027165 -2.803526404e-19) (97.01054865 -7.206223613 2.250048147e-19) (97.3460153 -6.799990229 -1.468982758e-19) (96.26778921 -8.147901031 6.527048462e-21) (96.65185573 -7.654595156 3.521328256e-20) (97.10360719 -7.75979306 2.774135323e-19) (95.71163265 -7.403626883 3.126042479e-19) (96.17972538 -7.538667784 -3.111046927e-19) (95.76011887 -8.022807293 5.943945651e-19) (93.12864091 -10.97618896 0) (92.95100317 -10.90370611 1.046627981e-18) (93.0603794 -10.73424662 -1.032375251e-18) (92.67891106 -11.27096807 5.47816113e-19) (92.82623228 -11.08722028 -5.478812396e-19) (93.0055279 -11.16726993 -5.357967443e-19) (92.48057461 -10.92005134 -5.538048612e-21) (92.65121443 -11.00418151 5.448972121e-19) (92.503143 -11.1836891 5.883061301e-21) (102.1902016 -29.44108632 -5.39360577e-19) (102.8458741 -29.94691089 -5.895248414e-19) (102.0847484 -30.62341577 5.961288754e-19) (104.0401365 -28.68927746 6.411919155e-19) (103.4831107 -29.28742065 -9.809784667e-19) (102.8492662 -28.80465231 2.762000407e-19) (104.827266 -30.15041627 4.047855596e-19) (104.1421394 -29.71834129 -2.744118678e-20) (104.6965688 -29.0513296 3.599848165e-19) (104.0355489 -17.01193546 -6.851080707e-19) (105.1601424 -17.80885362 -4.599003392e-19) (104.694267 -19.08158971 9.274878294e-20) (105.514688 -15.22002061 0) (105.4404659 -16.46345793 0) (104.3728811 -15.82347454 7.80162228e-21) (107.997237 -17.47623113 3.3299902e-20) (106.650759 -17.02606859 1.057993762e-18) (106.6269285 -15.6545292 0) (104.4974791 -12.6300287 5.262220047e-20) (105.3532251 -12.92925718 1.702709709e-19) (105.4767377 -14.03670012 -2.342615967e-19) (104.8953689 -10.92708044 -2.43234146e-19) (105.1539703 -11.88967482 -3.332379737e-21) (104.360382 -11.66319293 4.901467062e-20) (106.9169884 -12.15229026 7.065885952e-20) (106.0063908 -12.05526298 5.3419001e-20) (105.6734088 -11.02957873 2.533609487e-19) (103.6481078 -9.151377945 2.958302641e-20) (104.2663116 -9.216235652 -6.891393819e-19) (104.5951431 -10.03558824 4.500192658e-19) (103.5736241 -7.790180658 -4.607949771e-19) (103.9228096 -8.469199111 -2.496371154e-19) (103.354658 -8.439446693 -1.100579459e-19) (105.128089 -8.407448814 -3.835554144e-19) (104.516132 -8.463420214 1.001739132e-18) (104.1159744 -7.7612169 -6.381873337e-19) (102.4502451 -6.655749278 1.145189135e-19) (102.8935327 -6.621098305 4.92097737e-19) (103.2291361 -7.175199966 0) (102.2589121 -5.672333566 -2.390131545e-19) (102.5696606 -6.123336353 0) (102.1602924 -6.17045583 -4.524568565e-19) (103.4032603 -5.939934147 0) (102.9846525 -6.047147097 6.222675133e-20) (102.6414232 -5.588513831 -6.365511452e-20) (100.546562 -4.95142958 -9.789018215e-19) (100.2758977 -4.930999374 5.017523499e-19) (100.4291692 -4.688227715 -1.240946199e-19) (99.94106989 -5.43962944 2.644545656e-19) (100.112952 -5.180641177 0) (100.396735 -5.199251864 0) (99.53358554 -5.104256138 -7.089064387e-20) (99.82388469 -5.149357914 -6.8113812e-20) (99.63699578 -5.410182726 1.377889248e-19) (99.90158422 -6.004116715 -2.528528379e-19) (99.57172432 -5.996782738 -1.325343896e-19) (99.76045496 -5.710543435 -2.650749474e-19) (99.16795283 -6.629229778 6.752308386e-20) (99.37399279 -6.301296121 1.965931711e-19) (99.72216494 -6.302818773 0) (98.65626002 -6.246445795 0) (99.01679878 -6.283273905 0) (98.78946613 -6.617689107 -1.319407679e-19) (99.14640299 -7.342182887 1.450041513e-20) (98.72961506 -7.373864385 -6.132649834e-20) (98.95286263 -6.985379617 6.286473522e-20) (98.26558745 -8.27245801 -2.250969108e-19) (98.49966595 -7.800445962 -2.361073273e-19) (98.94651216 -7.751388705 -1.261316255e-19) (97.56476221 -7.810009553 0) (98.03598308 -7.821450434 0) (97.76359704 -8.311936516 4.97451552e-19) (95.51193531 -11.87709791 0) (95.72683577 -11.87232894 4.203254474e-19) (95.59059252 -12.11912481 -4.27019865e-19) (97.72893793 -17.41468228 -2.388799498e-19) (97.71763775 -18.386689 1.157807234e-19) (96.64926482 -18.34491891 1.678261707e-19) (99.00549457 -20.30613811 -4.577458667e-20) (98.76423542 -19.26143873 0) (99.60475488 -19.00753098 -2.27871763e-20) (101.1475222 -13.56621974 0) (101.6559981 -14.39309291 0) (101.1572415 -15.01434466 1.289119168e-19) (102.2194897 -12.96337595 8.406332794e-21) (102.0027282 -13.68564034 0) (101.4526068 -12.98039068 -9.061799133e-20) (103.4498394 -15.12929372 6.284366666e-19) (102.6621577 -14.40681792 -1.654836503e-19) (102.8778243 -13.56899541 -3.837946483e-20) (101.8232227 -11.04945835 1.605682608e-19) (102.3847162 -11.47454451 3.594077117e-20) (102.3416412 -12.21682895 9.517954537e-20) (102.2786815 -10.04556495 -4.947138334e-19) (102.3598497 -10.74804576 3.237546247e-19) (101.8125594 -10.39492659 1.475676025e-19) (103.6318869 -11.39361648 -9.457404685e-20) (102.9668063 -11.0879955 -4.670391953e-20) (102.8590811 -10.32295837 4.509555167e-19) (101.5096904 -8.549179437 0) (101.9937418 -8.741393241 1.7995445e-19) (102.1534057 -9.373614813 -3.56970246e-19) (101.6158871 -7.593657544 3.878230513e-19) (101.8121381 -8.147038795 -1.584381885e-19) (101.3524112 -7.993914319 6.885094901e-19) (102.8099749 -8.367991619 -2.067034633e-19) (102.2963995 -8.270373514 -3.768310342e-19) (102.071235 -7.682755052 -3.861396199e-19) (100.8172965 -6.546582934 2.954720786e-19) (101.201534 -6.605112983 2.017052502e-20) (101.409482 -7.077808609 0) (100.7915552 -5.776052483 3.275785674e-21) (100.9958247 -6.172684394 -2.02506766e-19) (100.6334251 -6.134239844 3.920076099e-19) (101.7603249 -6.193684831 2.371422177e-19) (101.3715161 -6.193140005 1.650857362e-19) (101.144828 -5.781289104 -1.684771296e-19) (101.5814923 -4.920609587 4.104785811e-19) (101.33163 -4.944463111 -4.245657529e-19) (101.4386313 -4.709431614 -2.163311919e-19) (101.0959597 -5.428154632 4.252846124e-19) (101.2171054 -5.183526141 0) (101.4769704 -5.155729058 4.049065268e-19) (100.6759394 -5.205496702 4.760981647e-19) (100.9499596 -5.200280989 -4.529626796e-19) (100.8173262 -5.449068057 1.383550633e-18) (101.1316952 -5.896352563 -4.23124541e-19) (100.8391585 -5.942430669 0) (100.9696316 -5.680544039 0) (100.5692727 -6.50374948 -8.358777631e-19) (100.705394 -6.215984819 -2.090375511e-19) (101.0098269 -6.160553373 1.012417888e-18) (100.0603373 -6.288366351 -4.752853892e-19) (100.3884756 -6.258962999 -4.509258767e-19) (100.2375795 -6.558053727 5.599940311e-19) (100.6421918 -7.032066051 0) (100.2965209 -7.131720463 5.112201596e-20) (100.432289 -6.808178842 8.253456686e-19) (100.0461893 -7.845328021 -1.208669301e-20) (100.1656907 -7.476716616 9.864401676e-20) (100.5279253 -7.355611673 0) (99.37407144 -7.678358358 -2.650395334e-20) (99.78095408 -7.585479315 1.021344778e-19) (99.63937281 -7.980723471 -1.13348576e-19) (100.2817739 -8.429634108 0) (99.87961576 -8.660731254 3.02942926e-19) (99.94768295 -8.241853385 1.684899536e-19) (99.95744216 -9.52743399 -1.283294854e-20) (99.86810444 -9.089507939 7.810441542e-20) (100.3061548 -8.823022871 0) (98.88538461 -9.606164262 0) (99.39966826 -9.351088428 3.27095614e-19) (99.48686247 -9.847283345 -3.016070799e-19) (90.02715492 -8.33156703 -4.502656684e-19) (89.69014283 -8.660526019 2.374136673e-19) (98.89490404 -10.14255233 -2.585240074e-19) (97.65062833 -11.34636367 -1.790759079e-19) (89.47165251 -10.84506692 0) (90.69131754 -10.30175088 0) (86.86354275 -12.42178732 -3.682943863e-19) (88.26305116 -11.55036106 0) (97.28364207 -12.0779182 1.863032594e-20) (99.13873471 -11.1533932 0) (99.03527872 -11.90278106 3.112720992e-20) (98.51613936 -11.85994423 1.054111992e-19) (99.67312598 -11.84673377 -1.734018496e-20) (99.37512581 -11.94406725 -6.170150333e-21) (99.37424199 -11.21252231 0) (99.45562686 -13.70279881 -2.789333991e-21) (99.39568153 -12.76839117 -3.447634846e-22) (99.78363111 -12.63057336 -6.030016629e-21) (99.95300964 -10.76333472 1.966932908e-20) (100.1661379 -11.385005 -4.610392426e-20) (99.94548379 -11.65708306 0) (100.4168985 -10.65468836 3.437426059e-19) (100.3200065 -11.04375048 -6.181619893e-20) (100.0563014 -10.47204831 2.629756857e-19) (101.0014423 -12.30134652 -2.601742746e-20) (100.6310494 -11.65446553 2.412272018e-19) (100.7633627 -11.20161301 1.231359946e-19) (100.1379769 -9.360590212 3.560409942e-19) (100.4861415 -9.77142423 -3.765133467e-19) (100.4676767 -10.22628536 -3.391982326e-19) (100.425135 -8.825205008 0) (100.4725204 -9.29973724 5.363622923e-19) (100.11049 -8.940754201 -5.432421443e-19) (101.3178672 -10.03157025 0) (100.8729218 -9.664648345 -2.511173331e-19) (100.8255741 -9.139610026 2.507628056e-19) (99.89758704 -7.66782541 -2.523329128e-19) (100.2555397 -7.899221637 -5.497650843e-19) (100.3509035 -8.356036578 2.646483554e-19) (100.0225151 -7.03973022 -3.078505868e-19) (100.1443778 -7.459038282 -5.901327892e-19) (99.79445961 -7.262778128 0) (100.9226521 -7.827811423 -3.322983639e-19) (100.5199369 -7.648483145 2.95523223e-19) (100.385154 -7.196634815 3.095498296e-19) (99.44430939 -6.157414687 8.550745625e-20) (99.76172825 -6.270887114 -1.614875157e-19) (99.8942241 -6.642988676 -4.801735648e-19) (99.49135951 -5.593715443 0) (99.62639689 -5.921573316 -2.104807841e-20) (99.32082265 -5.8283882 2.115151963e-20) (100.2833515 -6.07633864 -3.791050517e-19) (99.94733545 -6.005019269 0) (99.79785986 -5.660762765 -2.946682174e-21) (102.503029 -4.730667909 -1.582350649e-19) (102.2860988 -4.790329399 0) (102.3564829 -4.571820604 0) (102.1214649 -5.235217203 1.037930126e-18) (102.206952 -5.011382756 -1.683489766e-19) (102.4311185 -4.946217263 1.658104957e-19) (101.7289228 -5.117460737 0) (101.9725111 -5.069088766 -7.258172013e-19) (101.8794346 -5.298586137 -3.504463198e-19) (102.1804726 -5.605586645 1.512746904e-19) (101.937689 -5.693109999 8.6484677e-21) (102.0312963 -5.462188632 -6.926938199e-19) (101.7456715 -6.170098819 -6.638367874e-19) (101.841969 -5.928813881 8.369797243e-19) (102.0900691 -5.830960432 -1.102668907e-18) (101.3008995 -6.093556961 -7.675807795e-19) (101.5782033 -6.016049324 -8.847295819e-19) (101.4748877 -6.268746679 7.082983326e-19) (101.8131398 -6.526561778 1.129228219e-18) (101.5564698 -6.669349435 -2.427733073e-21) (101.6503248 -6.417278176 0) (101.3777968 -7.186351519 8.846725332e-20) (101.4640452 -6.925937472 -1.149453126e-18) (101.7222303 -6.763352999 -1.214877747e-20) (100.8677905 -7.224524335 6.642145566e-19) (101.1806299 -7.081658034 6.318827437e-19) (101.0918279 -7.366718083 -7.263541163e-20) (101.6368191 -7.515595732 -9.504169781e-19) (101.3299707 -7.733473499 1.293376816e-19) (101.3166857 -7.450817998 1.086087064e-18) (100.5243656 -8.277610066 0) (101.3726579 -8.061664304 0) (101.5515354 -7.812535561 -1.019007814e-19) (100.7132962 -8.560018045 2.605073771e-19) (101.0780622 -8.307595672 3.507470942e-20) (100.7046477 -8.620012566 1.16301491e-18) (91.60908603 -7.470538143 1.56882704e-19) (90.96256137 -7.597199077 -1.571745453e-19) (96.36501234 -7.925021846 0) (99.17431074 -9.274000863 1.44607725e-19) (94.51225766 -9.14218973 2.575776908e-19) (95.74291206 -8.823480959 0) (91.94601825 -9.857331991 -1.859564476e-19) (93.22958965 -9.478280734 -2.852889807e-19) (98.83197247 -9.732291615 -6.03484292e-20) (99.45399923 -8.952560416 -1.177250135e-19) (99.40019982 -9.421891898 6.901502527e-20) (99.32599626 -9.339052307 0) (99.44833471 -9.397225765 -1.168462455e-19) (99.43101136 -9.449887181 -6.000495596e-20) (99.4368669 -8.969547606 1.161261119e-19) (99.38975207 -10.55787568 6.362159817e-20) (99.41423649 -9.974318249 2.387570428e-20) (99.48976691 -9.919475153 -1.181350615e-20) (99.34240063 -8.718986923 -5.057944826e-19) (99.47558823 -9.173869528 2.136986259e-19) (99.47236447 -9.312432068 -1.147150658e-19) (99.40843913 -8.752450768 -4.114510961e-19) (99.44970257 -8.982044861 4.388188852e-19) (99.28404096 -8.5520227 2.997931968e-19) (99.8293482 -9.939301537 -2.399301549e-19) (99.62965673 -9.443562394 1.982194048e-19) (99.61895281 -9.184208922 -2.196464658e-19) (99.06384168 -7.864244184 3.576563595e-20) (99.295693 -8.21179824 -4.018764527e-20) (99.35640973 -8.493586032 -1.646902596e-20) (99.14870828 -7.603768507 9.84878534e-20) (99.22625571 -7.913096851 0) (98.98120562 -7.595724303 -8.011998547e-20) (99.78590705 -8.588332199 0) (99.49362623 -8.24465894 0) (99.42428479 -7.900599914 -4.108332926e-19) (98.71309839 -6.745526161 -4.321014611e-19) (98.97457901 -6.973175873 2.230228029e-19) (99.06411705 -7.288694315 1.067576235e-19) (98.78636702 -6.357015533 0) (98.88167532 -6.661376598 0) (98.61943547 -6.461384434 1.671167462e-19) (99.46860014 -7.062731741 0) (99.16492038 -6.86160421 2.433373625e-19) (99.06604902 -6.531114259 0) (98.33831083 -5.646873394 0) (98.59143213 -5.780162051 -1.718768445e-20) (98.68962001 -6.06330651 1.693929655e-20) (98.39890372 -5.238805311 0) (98.49364797 -5.505547389 0) (98.24625445 -5.38769098 0) (99.03042956 -5.727080771 0) (98.75490352 -5.619207633 0) (98.65245179 -5.338620408 0) (103.2824055 -4.415131674 0) (103.1010105 -4.5030799 -3.403423861e-20) (103.1485619 -4.307449826 0) (102.9776414 -4.898157353 1.383957762e-19) (103.0437755 -4.700540414 3.442900645e-20) (103.2281519 -4.604680075 0) (102.6452181 -4.872479817 6.118549115e-19) (102.8495149 -4.790316519 1.401615833e-19) (102.7802462 -4.994577772 -4.304228453e-19) (103.013049 -5.172691121 0) (102.8247577 -5.29133289 -1.34794433e-19) (102.9042618 -5.095106665 6.524825719e-20) (102.6503296 -5.680904575 0) (102.7399538 -5.486689744 1.319769899e-19) (102.9273671 -5.358876494 0) (102.3217684 -5.723804038 -1.510718212e-19) (102.5384255 -5.608662307 4.072738745e-19) (102.449717 -5.8137277 -6.806613264e-19) (102.643853 -5.904399732 -1.075618898e-19) (102.4618308 -6.065077284 -8.283952708e-19) (102.5565688 -5.873670108 8.813279721e-19) (102.3315465 -6.449468854 8.576901369e-19) (102.3775954 -6.256120312 -8.586451917e-19) (102.5652092 -6.083497499 -2.641533549e-20) (101.9587345 -6.596669331 1.650614704e-20) (102.1762169 -6.427381782 7.389673553e-20) (102.1155231 -6.63390132 9.197068948e-19) (102.1412366 -6.631393679 -6.928432396e-19) (102.1816672 -6.863796107 4.700928271e-20) (102.338669 -6.653026909 -3.712379065e-20) (97.51390505 -6.717596132 7.818187367e-20) (100.9382883 -6.959304369 0) (100.3514286 -6.646933293 0) (101.5591219 -7.547519914 -7.413215702e-19) (101.35616 -7.262617242 8.426240986e-19) (98.45497544 -7.094518183 -7.828862343e-20) (95.74361039 -7.080533384 -3.992435633e-19) (94.64176689 -7.213988003 -4.862659863e-19) (93.82696222 -6.526771724 4.921470403e-19) (99.91068792 -7.64077677 -6.021427587e-19) (98.58814963 -7.813030126 -3.309479162e-19) (99.16159229 -7.460075002 4.092914591e-19) (96.86228351 -8.500582789 0) (97.82047377 -8.163176637 3.718298121e-19) (99.82450343 -8.011185722 3.612936798e-19) (99.5106739 -7.410604863 -1.247796225e-19) (99.51850785 -7.756561522 -1.324731951e-19) (99.624187 -7.70094115 3.837397499e-19) (99.25602796 -7.714776722 4.484211587e-21) (99.38783148 -7.74616034 0) (99.35156297 -7.397553875 0) (99.43168433 -8.528702458 -9.657639124e-20) (99.41541582 -8.122024773 -7.743890896e-20) (99.31346715 -8.08810737 -1.068431363e-19) (98.8753209 -7.211008766 -2.581231345e-19) (98.98243709 -7.5472018 2.649512922e-19) (99.12263319 -7.64576921 -9.443003482e-21) (98.71896723 -7.278008089 -2.068196743e-19) (98.84900896 -7.42397936 -2.674811708e-19) (98.72299211 -7.096650763 2.600953482e-19) (99.12993644 -8.150146773 -2.864619585e-19) (98.9851812 -7.774637703 1.516569533e-22) (98.87289136 -7.611835257 -1.266091438e-20) (98.30565573 -6.651361103 2.019668292e-19) (98.47291643 -6.92907671 2.412279205e-19) (98.59336614 -7.112114152 -4.504469991e-21) (98.24644105 -6.527165639 3.885692271e-20) (98.3573597 -6.732874192 7.430057433e-20) (98.18119708 -6.474293419 0) (98.75609013 -7.293301622 -2.172286318e-19) (98.5486626 -7.005765032 2.422334327e-19) (98.44521559 -6.778160445 -3.183370928e-19) (97.84651994 -5.900234056 -1.163411688e-20) (98.03815667 -6.100339183 1.03020121e-19) (98.14003904 -6.315296696 -1.349846365e-19) (97.84566284 -5.667304483 0) (97.94022104 -5.884129759 0) (97.74560469 -5.701260202 0) (98.37631668 -6.26422631 -1.573661228e-19) (98.15011546 -6.071678006 0) (98.05677237 -5.837034217 0) (97.47005541 -5.093178067 0) (97.66721713 -5.232766909 0) (97.75445428 -5.449929499 0) (97.50780713 -4.802832476 0) (97.584773 -5.016694362 0) (97.38870005 -4.889839635 0) (98.01302544 -5.266466961 0) (97.79285922 -5.14257672 0) (97.71320424 -4.916490698 0) (103.9268244 -4.039810395 0) (103.777285 -4.135711559 0) (103.8166154 -3.97275042 0) (103.6663949 -4.463244861 0) (103.7272153 -4.299302262 0) (103.8770212 -4.19530259 0) (103.4031883 -4.504797038 0) (103.5694071 -4.4026677 0) (103.5082839 -4.575607586 0) (103.660149 -4.658695382 0) (103.5127613 -4.789574281 0) (103.594897 -4.62695784 0) (103.3183776 -5.107596197 -7.349601129e-20) (103.4201085 -4.950075714 9.740981008e-20) (103.5654729 -4.81001163 -2.886915806e-21) (103.1021159 -5.22620438 -2.29233761e-19) (103.2657315 -5.089626044 -9.916555736e-20) (103.1678459 -5.255350346 -1.626433843e-19) (103.2530908 -5.247983442 -7.956365554e-20) (103.1159711 -5.412852705 6.767290629e-19) (103.2128978 -5.261692874 -3.574468216e-19) (102.9953177 -5.705244336 0) (103.047942 -5.560996629 -3.428779483e-19) (103.1808544 -5.386834335 -3.19853665e-19) (102.7397815 -5.909822807 -1.519508354e-18) (102.9009431 -5.735536044 -3.433606937e-19) (102.8670678 -5.892966065 1.077710418e-20) (101.1266925 -5.66918167 0) (101.4129067 -5.903046326 4.983237184e-19) (102.7105876 -5.838220129 -1.336282682e-20) (95.35656133 -5.691385486 -4.073694061e-19) (98.4288546 -5.798673868 -5.022394267e-19) (97.98496264 -5.570334615 -3.55941519e-21) (99.67704136 -6.341607157 0) (99.00943445 -6.056210408 7.708940693e-21) (95.56278378 -5.881773242 0) (98.70706504 -6.203694735 -4.277867927e-21) (98.22398051 -6.451679551 3.300236856e-19) (95.42709861 -6.00166349 5.521487586e-20) (99.93882983 -6.433727758 -2.069473447e-19) (99.97169665 -6.487946615 -2.318175909e-19) (100.0579696 -6.208827886 1.051445905e-20) (99.5600738 -7.116201791 5.555752621e-19) (99.81733365 -6.790625114 1.595662377e-20) (99.95248862 -6.701650754 1.470188235e-19) (99.40737046 -6.229892858 3.259892511e-20) (99.43654617 -6.497542607 6.502295039e-20) (99.64376121 -6.493565382 -7.908442759e-20) (99.00281524 -6.456470509 1.351111546e-21) (99.21655811 -6.485069146 9.712671193e-21) (99.17298861 -6.218634276 2.857917886e-20) (99.3089548 -7.07283759 2.978694631e-20) (99.26290954 -6.769556057 3.752920687e-22) (99.06567103 -6.740671345 -1.338163048e-21) (98.51181595 -6.068681152 1.56996338e-21) (98.59281911 -6.324941527 -3.046895149e-20) (98.79516909 -6.39951876 -9.041724506e-20) (98.21300483 -6.143859333 0) (98.39612921 -6.241333757 1.209773921e-19) (98.3061486 -5.992689861 7.225764842e-20) (98.60589272 -6.791295586 0) (98.49654113 -6.506668568 -1.240898192e-19) (98.32329009 -6.400102134 0) (97.77171559 -5.690319723 3.087144788e-21) (97.88574514 -5.910652792 0) (98.043095 -6.03267794 0) (97.60188747 -5.638362529 0) (97.73920418 -5.778737505 3.947465048e-21) (97.61675271 -5.569282952 0) (98.01957568 -6.229589867 -1.268670287e-19) (97.87257457 -5.998277755 -3.905714455e-21) (97.74259669 -5.845172633 0) (97.21088443 -5.1600546 0) (97.35257178 -5.336719999 0) (97.47315819 -5.4906841 0) (97.13467357 -5.01434993 0) (97.23981725 -5.177581521 0) (97.09371233 -5.011780688 0) (97.56476446 -5.52253107 0) (97.39650982 -5.347899539 0) (97.29461438 -5.173028665 0) (96.79311884 -4.545010934 0) (96.94719106 -4.679581404 0) (97.03708029 -4.848038717 0) (96.79147762 -4.339123874 0) (96.86524673 -4.509652993 0) (96.71001669 -4.384829285 0) (97.20394493 -4.762627591 0) (97.02968775 -4.635774673 0) (96.95599841 -4.455578549 0) (104.4566804 -3.654073276 0) (104.3338041 -3.750060398 0) (104.3731877 -3.615252578 0) (104.2184881 -4.016081021 0) (104.2823824 -3.883713343 0) (104.4040877 -3.78113449 0) (104.0192374 -4.091110608 0) (104.1542229 -3.98713824 0) (104.0916032 -4.126728479 0) (104.1685132 -4.151627913 0) (104.0524888 -4.275265892 0) (104.1418681 -4.146745381 0) (103.8396607 -4.524792672 0) (103.9509638 -4.401309164 0) (104.0645778 -4.270372163 0) (103.7019764 -4.67132505 0) (103.8302564 -4.534997595 0) (103.721298 -4.666366053 0) (103.7194767 -4.609866856 0) (103.6152811 -4.763878763 0) (103.7244295 -4.64578981 0) (103.3456474 -4.970656285 0) (103.515131 -4.876239433 0) (103.6083417 -4.713465219 0) (103.3020448 -5.213351653 -7.051686509e-20) (103.413175 -5.043040978 0) (103.2694469 -5.147268903 -1.549147615e-20) (100.7737613 -4.861735826 0) (100.7760014 -5.046516208 0) (102.7122256 -5.030848891 0) (95.65771573 -5.039477381 0) (97.54984327 -5.005818683 -1.831690528e-22) (97.56928351 -4.836659874 0) (97.69357128 -5.367781614 -2.163609033e-19) (97.56114911 -5.182194216 4.600727971e-20) (95.52432228 -5.204775563 -4.585930554e-20) (99.47463876 -5.279372387 0) (99.39070918 -5.490840873 3.998605849e-21) (97.06757054 -5.298966783 -4.013422403e-21) (99.92525267 -5.497942001 -3.857603742e-21) (100.1388464 -5.492808061 -2.278512547e-21) (100.1444661 -5.282930262 0) (100.1035507 -5.951557568 -3.297975594e-21) (100.1267563 -5.713586348 -8.892160338e-23) (99.91600286 -5.714857598 4.775625299e-22) (99.34975812 -5.300957673 0) (99.35661691 -5.51421779 1.846026984e-22) (99.62797611 -5.518482332 1.369683425e-21) (98.8293935 -5.47419508 0) (99.09011104 -5.501620964 0) (99.07132281 -5.288749172 0) (99.13601767 -5.96605503 0) (99.11005742 -5.727440617 5.292165847e-22) (98.86226652 -5.697083897 0) (98.27975541 -5.181384539 0) (98.32938428 -5.38600624 0) (98.57434483 -5.435501595 0) (97.87739473 -5.255860855 0) (98.09665615 -5.325815921 0) (98.03786217 -5.125569908 0) (98.22906505 -5.758395463 -1.40545788e-20) (98.16014107 -5.536375797 0) (97.95026483 -5.460707386 0) (97.39723948 -4.905288349 0) (97.48045258 -5.088576338 0) (97.67203753 -5.176583717 0) (97.13647173 -4.889148432 0) (97.30212075 -4.992518202 0) (97.21188271 -4.81594669 0) (97.50372663 -5.3688114 0) (97.39914682 -5.176689897 0) (97.24018588 -5.06550406 0) (96.73356599 -4.508747452 0) (96.84104068 -4.663382003 0) (96.98294911 -4.779193366 0) (96.59039925 -4.417056718 0) (96.71030747 -4.542435026 0) (96.59835982 -4.395418825 0) (96.95727518 -4.8506065 0) (96.82972356 -4.694158579 0) (96.71364889 -4.560478923 0) (96.26039066 -4.031393848 0) (96.38220455 -4.155684627 0) (96.48107454 -4.287924404 0) (96.21545598 -3.883791812 0) (96.29371125 -4.02082464 0) (96.16964585 -3.903920662 0) (96.56337693 -4.261493354 0) (96.42479092 -4.140144822 0) (96.34813574 -3.99582325 0) (104.8924728 -3.279556033 0) (104.7913052 -3.371316245 0) (104.8356053 -3.259781252 0) (104.6628388 -3.588153188 0) (104.73393 -3.480776967 0) (104.8331982 -3.383723749 0) (104.5196914 -3.679647466 0) (104.629531 -3.579470779 0) (104.5604738 -3.692543027 0) (104.571109 -3.682288836 0) (104.4788448 -3.79560898 0) (104.5777399 -3.693174435 0) (104.2457229 -3.992249445 0) (104.3672879 -3.895322796 0) (104.4569494 -3.776533504 0) (104.1715369 -4.142312971 0) (104.2722912 -4.017264885 0) (104.1534534 -4.120116466 0) (104.0664305 -4.039932605 0) (103.9887997 -4.175409629 0) (104.1184664 -4.086026275 0) (103.5766242 -4.322707201 0) (103.842424 -4.25715125 0) (103.9085467 -4.115892446 0) (103.6932796 -4.555743635 0) (103.7709339 -4.403664665 0) (103.5279255 -4.475030308 0) (100.777755 -4.212304248 0) (100.7736221 -4.363013145 0) (102.8045593 -4.357086435 0) (96.14662192 -4.424779521 0) (97.65156087 -4.362591083 0) (97.68641892 -4.2157099 0) (97.59341376 -4.673470645 0) (97.620303 -4.51535268 0) (96.0310159 -4.573555524 0) (99.70584436 -4.546383827 0) (99.66030766 -4.715343143 0) (97.71794887 -4.609020033 0) (99.95867565 -4.72078131 0) (100.1627329 -4.71484295 0) (100.1667977 -4.54469738 0) (100.1502202 -5.08297896 0) (100.1569566 -4.893842023 0) (99.95188377 -4.900594428 0) (99.32235732 -4.551355723 0) (99.32906452 -4.724752009 0) (99.64338168 -4.728197407 0) (98.72105199 -4.692247737 0) (99.021425 -4.713468336 0) (99.00640048 -4.540236312 0) (99.05366767 -5.08710972 0) (99.03711353 -4.895560878 0) (98.74540716 -4.873089175 0) (98.11285728 -4.456976369 0) (98.15052513 -4.625188208 0) (98.42990658 -4.662799572 0) (97.63442309 -4.527245719 0) (97.88493452 -4.579893198 0) (97.84045871 -4.414495529 0) (97.9832732 -4.934893893 0) (97.9324286 -4.7531865 0) (97.68892697 -4.696871982 0) (97.11683242 -4.24701825 0) (97.18003923 -4.401130102 0) (97.39946514 -4.467544064 0) (96.78636477 -4.249648386 0) (96.97582397 -4.328364553 0) (96.90700056 -4.178808173 0) (97.12778734 -4.646621221 0) (97.04926906 -4.484200591 0) (96.86533672 -4.400162333 0) (96.36624058 -3.941786273 0) (96.4497087 -4.076061618 0) (96.61115903 -4.16540287 0) (96.1663362 -3.883869048 0) (96.30156411 -3.982068445 0) (96.21398885 -3.853246871 0) (96.49327681 -4.253065699 0) (96.39451005 -4.115309721 0) (96.26306128 -4.01111037 0) (95.83575627 -3.564505669 0) (95.93337583 -3.676574419 0) (96.04369846 -3.781897298 0) (95.74845174 -3.457028091 0) (95.83508933 -3.568237581 0) (95.73479432 -3.46179924 0) (96.05213419 -3.789377028 0) (95.94074706 -3.677527771 0) (95.85641238 -3.560837196 0) (105.2522901 -2.928068904 0) (105.1685894 -3.013336824 0) (105.2203052 -2.920748704 0) (105.023099 -3.191239018 0) (105.1030833 -3.103478826 0) (105.1846013 -3.013980988 0) (104.9276292 -3.288425606 0) (105.0175109 -3.194980391 0) (104.9398164 -3.287204083 0) (104.8938753 -3.257073657 0) (104.8195085 -3.359137409 0) (104.9284304 -3.276487433 0) (104.5648747 -3.516367429 0) (104.6976084 -3.43914386 0) (104.7694563 -3.332963377 0) (104.5416599 -3.660913079 0) (104.6217785 -3.548446574 0) (104.491838 -3.630061571 0) (104.3300175 -3.54146698 0) (104.2703878 -3.659807988 0) (104.4233743 -3.59033592 0) (103.7338931 -3.768652476 0) (104.0793326 -3.721433871 0) (104.1284069 -3.599117641 0) (103.9697964 -3.979643803 0) (104.026592 -3.848208254 0) (103.6995013 -3.899340166 0) (100.8076084 -3.669557762 0) (100.7980722 -3.796950988 0) (102.8641086 -3.792530692 0) (96.56940392 -3.879574135 0) (97.80309775 -3.809659756 0) (97.8452321 -3.684938569 0) (97.72357897 -4.074777262 0) (97.76250757 -3.939516659 0) (96.4696285 -4.008276551 0) (99.83235923 -3.944165199 0) (99.80749436 -4.084712171 0) (98.16957589 -4.021484709 0) (99.97102462 -4.081991598 0) (100.17199 -4.080001205 0) (100.1718273 -3.938746476 0) (100.1695135 -4.382526406 0) (100.1712223 -4.227771331 0) (99.96976227 -4.230725903 3.040239641e-35) (99.29449758 -3.93479136 0) (99.30159005 -4.078385828 0) (99.64355492 -4.082742023 0) (98.63563423 -4.050154356 0) (98.96448629 -4.067700811 0) (98.95142216 -3.924238949 0) (98.99193458 -4.375237182 0) (98.97797545 -4.217879004 0) (98.65542472 -4.199559179 0) (97.98274073 -3.856522081 0) (98.0125653 -3.996638135 0) (98.31757327 -4.026428457 0) (97.44825379 -3.919985719 0) (97.72241755 -3.961100574 0) (97.68744976 -3.822898392 0) (97.79871329 -4.256519605 0) (97.75943809 -4.105511068 0) (97.49059991 -4.061909203 0) (96.89990904 -3.691338217 0) (96.94936423 -3.821736541 0) (97.19055662 -3.873471596 0) (96.51543948 -3.703392442 0) (96.72444592 -3.764971728 0) (96.67049554 -3.637774244 0) (96.84239734 -4.035241597 0) (96.78164812 -3.897372895 0) (96.5771656 -3.832046126 0) (96.07724255 -3.450514448 0) (96.14343963 -3.566752003 0) (96.32191879 -3.637235006 0) (95.82996541 -3.41389043 0) (95.97958396 -3.49221164 0) (95.90976659 -3.379968914 0) (96.13137689 -3.728740641 0) (96.05334836 -3.608424973 0) (95.90720042 -3.525680523 0) (95.49275418 -3.147307927 0) (95.57199697 -3.246990519 0) (95.69422154 -3.332061365 0) (95.36643404 -3.067896282 0) (95.46289615 -3.158906853 0) (95.3809558 -3.063553085 0) (95.63953689 -3.358021564 0) (95.54899373 -3.257121761 0) (95.45501101 -3.161879008 0) (105.5509678 -2.60530255 0) (105.4813392 -2.683120517 0) (105.541435 -2.60596806 0) (105.3179051 -2.830176881 0) (105.4070387 -2.7578371 0) (105.4744851 -2.676633689 0) (105.2622927 -2.926521492 0) (105.3363714 -2.841137429 0) (105.2494975 -2.916995116 0) (105.1561434 -2.87663326 0) (105.0954042 -2.967633997 0) (105.2138465 -2.900110604 0) (104.8201609 -3.095242262 0) (104.9637331 -3.03273106 0) (105.0221737 -2.938588697 0) (104.837596 -3.229865726 0) (104.9022779 -3.129805345 0) (104.7613513 -3.195612957 0) (104.5349915 -3.106465416 0) (104.4882727 -3.209703879 0) (104.6643562 -3.154678284 0) (103.8474165 -3.292242161 0) (104.2567423 -3.257238743 0) (104.2941082 -3.151147141 0) (104.1741451 -3.481082529 0) (104.2168357 -3.367171387 0) (103.8221272 -3.404777683 0) (100.8602153 -3.207842556 0) (100.8449276 -3.316555526 0) (102.9104813 -3.309882063 0) (96.93187384 -3.410613903 0) (97.979006 -3.33921068 0) (98.02556526 -3.232691359 0) (97.8887113 -3.56511352 0) (97.9333496 -3.449947243 0) (96.84655826 -3.521331944 0) (99.89941171 -3.438688943 0) (99.88675727 -3.557164678 0) (98.490985 -3.520164029 0) (99.96686253 -3.548740445 0) (100.1664445 -3.550202416 0) (100.163238 -3.431339901 0) (100.170797 -3.803595686 0) (100.1689809 -3.674189307 0) (99.96909694 -3.67352825 0) (99.26540544 -3.419880032 0) (99.27276303 -3.540372438 0) (99.63273387 -3.545737796 0) (98.5645824 -3.515155595 0) (98.91444072 -3.530217932 0) (98.90277259 -3.409859708 0) (98.93874472 -3.787081821 0) (98.92642495 -3.655855365 0) (98.58125871 -3.640244303 0) (97.87769368 -3.353066828 0) (97.90204236 -3.471000442 0) (98.22637412 -3.495370297 0) (97.3009049 -3.409156557 0) (97.59322108 -3.442228178 0) (97.56491247 -3.32566944 0) (97.65436078 -3.690559772 0) (97.62299673 -3.563767864 0) (97.33479541 -3.528928542 0) (96.72753537 -3.219570832 0) (96.76720451 -3.330505234 0) (97.0255467 -3.371884899 0) (96.30071809 -3.23582465 0) (96.52569471 -3.285115032 0) (96.48241 -3.17650595 0) (96.61953814 -3.515544874 0) (96.57134108 -3.398061997 0) (96.35005986 -3.346051624 0) (95.84542997 -3.025526061 0) (95.89890287 -3.126058422 0) (96.09191577 -3.182759391 0) (95.55875518 -3.002375948 0) (95.72130478 -3.065875965 0) (95.66469669 -2.968333823 0) (95.84361506 -3.271577263 0) (95.78087271 -3.16691885 0) (95.62141067 -3.100096033 0) (95.21216148 -2.778107397 0) (95.27730798 -2.866082626 0) (95.41088445 -2.935723453 0) (95.05124556 -2.718305103 0) (95.15759344 -2.793594483 0) (95.08988614 -2.708983524 0) (95.3029155 -2.970837962 0) (95.22853443 -2.880926866 0) (95.12462212 -2.802381095 0) (105.8004421 -2.312976134 0) (105.7421252 -2.383148227 0) (105.8105892 -2.318445694 0) (105.5614733 -2.505690522 0) (105.6592576 -2.44553372 0) (105.7155177 -2.372645548 0) (105.5388912 -2.597518907 0) (105.6004271 -2.520494503 0) (105.5047378 -2.58343516 0) (105.3720208 -2.538900441 0) (105.3217814 -2.619483087 0) (105.4487932 -2.563659555 0) (105.0276208 -2.724514 0) (105.1812985 -2.673158223 0) (105.2294926 -2.59015125 0) (105.0777958 -2.847320471 0) (105.1307801 -2.758867284 0) (104.9795581 -2.812741014 0) (104.6972948 -2.727261253 0) (104.6600479 -2.817206499 0) (104.8579874 -2.772987364 0) (103.933449 -2.881470592 0) (104.3930602 -2.854593636 0) (104.4222591 -2.762580775 0) (104.3291533 -3.04876202 0) (104.3620769 -2.949955235 0) (103.9138774 -2.97857096 0) (100.9348087 -2.812359014 0) (100.9142309 -2.905676604 0) (102.9538371 -2.895553388 0) (97.24097068 -3.006606712 0) (98.16969998 -2.936485022 0) (98.21896155 -2.844963483 0) (98.07292533 -3.130187955 0) (98.12099466 -3.031513869 0) (97.16826415 -3.102103552 0) (99.92969617 -3.010614843 0) (99.92476099 -3.111199232 0) (98.71998722 -3.090791742 0) (99.95188505 -3.098636769 3.822664794e-35) (100.1500317 -3.102876435 0) (100.1445645 -3.00200704 0) (100.1594062 -3.317329042 0) (100.1549913 -3.207921509 0) (99.95642278 -3.204312771 0) (99.23568836 -2.985318529 0) (99.24314246 -3.087325067 0) (99.61482551 -3.093454232 -3.81567135e-35) (98.50385493 -3.064508024 0) (98.86949765 -3.0777085 0) (98.85893653 -2.975835049 0) (98.8914031 -3.294494903 0) (98.88031646 -3.183862344 0) (98.51821745 -3.170238825 0) (97.79073948 -2.927249621 0) (97.8110527 -3.027264683 0) (98.15026111 -3.047656167 0) (97.18126593 -2.976230491 0) (97.48775665 -3.003434392 0) (97.46433747 -2.904452696 0) (97.53796253 -3.213839003 0) (97.51227393 -3.106503713 0) (97.20901849 -3.077988854 0) (96.58752416 -2.817128825 0) (96.61998544 -2.911903492 0) (96.8919899 -2.945705367 0) (96.12704101 -2.834656524 0) (96.36509023 -2.874869983 0) (96.3296947 -2.781838301 0) (96.44131595 -3.072046762 0) (96.40225756 -2.971560926 0) (96.16723943 -2.929315346 0) (95.65631838 -2.658014187 0) (95.70020192 -2.744939586 0) (95.90552435 -2.791323376 0) (95.33679343 -2.643350344 0) (95.51073862 -2.695585561 0) (95.46415849 -2.610946104 0) (95.61085171 -2.874179026 0) (95.55958936 -2.783302073 0) (95.38835292 -2.728521772 0) (94.97981038 -2.453386597 0) (95.03399381 -2.530609965 0) (95.17800638 -2.588326396 0) (94.78852504 -2.407349939 0) (94.90432707 -2.47028276 0) (94.84778252 -2.395710071 0) (95.02522358 -2.626869916 0) (94.96342713 -2.547379052 0) (94.8499269 -2.481904738 0) (106.0102866 -2.050969609 0) (105.9610977 -2.113644533 0) (106.037513 -2.059021497 0) (105.7646496 -2.216605953 0) (105.8702702 -2.16613078 0) (105.9175891 -2.1012639 0) (105.7693537 -2.301795461 0) (105.8208971 -2.23296765 0) (105.7171496 -2.285661178 0) (105.5518912 -2.240875637 0) (105.5098404 -2.311840836 0) (105.6443439 -2.26515376 0) (105.1984734 -2.399382946 0) (105.3615233 -2.356655665 0) (105.4017516 -2.28378919 0) (105.2755094 -2.509773879 0) (105.3194797 -2.431962975 0) (105.1587064 -2.476653952 0) (104.8280531 -2.397203709 0) (104.7978434 -2.475447313 0) (105.0157627 -2.439403099 0) (104.0021571 -2.526819229 0) (104.5005696 -2.505446185 0) (104.5239815 -2.42568159 0) (104.4498235 -2.673791546 0) (104.475887 -2.588115355 0) (103.9862121 -2.610675549 0) (101.0286036 -2.472105632 0) (101.0035437 -2.552482003 0) (102.9988822 -2.538942104 0) (97.50474425 -2.657681466 0) (98.36955287 -2.589939225 0) (98.42052718 -2.511003546 0) (98.26872538 -2.756790367 0) (98.31893825 -2.671826053 0) (97.44259563 -2.740210199 0) (99.93605275 -2.646078924 0) (99.93621777 -2.73187984 0) (98.8825483 -2.722142137 0) (99.92961496 -2.716124038 0) (100.1254342 -2.722500349 0) (100.1182467 -2.636466535 0) (100.138622 -2.905106917 0) (100.1322354 -2.811994157 0) (99.93573043 -2.806097595 0) (99.2058799 -2.616099148 0) (99.21332084 -2.702937742 0) (99.59232849 -2.709601484 0) (98.45107329 -2.682115832 0) (98.82867884 -2.693841469 0) (98.81903332 -2.607127273 0) (98.8486204 -2.878024394 0) (98.8385379 -2.784085373 0) (98.46362097 -2.772020218 0) (97.71747059 -2.564970815 0) (97.73468595 -2.650212077 0) (98.08555232 -2.667551676 0) (97.08222704 -2.607385301 0) (97.39997042 -2.63014378 0) (97.38028048 -2.545705903 0) (97.44194244 -2.809358794 0) (97.42050634 -2.717976933 0) (97.10534668 -2.694212394 0) (96.47180967 -2.472694488 0) (96.498797 -2.55388795 0) (96.78182102 -2.581961017 0) (95.98418267 -2.489858036 0) (96.23299928 -2.52318097 0) (96.20360611 -2.443330102 0) (96.29595052 -2.692305599 0) (96.26375098 -2.606130778 0) (96.01743829 -2.571249648 0) (95.49982088 -2.340331949 0) (95.53632103 -2.41545748 0) (95.75205952 -2.453941332 0) (95.15276285 -2.330930645 0) (95.33666112 -2.374440412 0) (95.29784487 -2.301097189 0) (95.41970343 -2.529272887 0) (95.37724387 -2.450468877 0) (95.19570662 -2.40497367 0) (94.78532633 -2.169118582 0) (94.83085777 -2.236616508 0) (94.98428438 -2.28497264 0) (94.56745589 -2.132802551 0) (94.69207069 -2.185902064 0) (94.64439372 -2.120520781 0) (94.79364575 -2.32343985 0) (94.74178244 -2.253571789 0) (94.61929969 -2.198463314 0) (106.1880515 -1.818143456 0) (106.1462655 -1.873671277 0) (106.2299999 -1.827257495 0) (105.9357553 -1.960885271 0) (106.0482714 -1.918162933 0) (106.0883985 -1.860855037 0) (105.9629618 -2.038332087 0) (106.0064908 -1.977310839 0) (105.895609 -2.021815127 0) (105.7034184 -1.979205438 0) (105.6678545 -2.041403349 0) (105.808854 -2.001943595 0) (105.3408161 -2.115138873 0) (105.5125331 -2.079221469 0) (105.5464582 -2.015503716 0) (105.4402669 -2.213301781 0) (105.4771648 -2.145132389 0) (105.3075483 -2.182610687 0) (104.9351614 -2.110376756 0) (104.9102616 -2.178328197 0) (105.1460108 -2.148541561 0) (104.0598438 -2.220435672 0) (104.5875453 -2.202857922 0) (104.6067882 -2.133767545 0) (104.5462222 -2.348724227 0) (104.5673827 -2.274479563 0) (104.0462054 -2.29288156 0) (101.1379722 -2.178696953 0) (101.1093848 -2.248054087 0) (103.0474403 -2.231584778 0) (97.73138339 -2.355890166 0) (98.57523669 -2.290732182 0) (98.62729746 -2.222454484 0) (98.47182297 -2.434898945 0) (98.52340376 -2.361510963 0) (97.67777313 -2.427300535 0) (99.92637503 -2.334513926 0) (99.92997893 -2.407924726 0) (98.99697618 -2.405147862 0) (99.90224582 -2.389720303 -1.279192503e-35) (100.094632 -2.397688818 0) (100.0861599 -2.324094786 0) (100.1106998 -2.553744842 0) (100.1028197 -2.474195519 0) (99.90947619 -2.466578469 0) (99.17628329 -2.30113595 0) (99.18365219 -2.375292333 0) (99.56676731 -2.38232241 1.276860444e-35) (98.40462697 -2.356149067 0) (98.7912889 -2.366676527 0) (98.78240966 -2.292633031 0) (98.80959232 -2.523789448 0) (98.80034685 -2.443683879 0) (98.41571449 -2.432878616 0) (97.65489819 -2.255643231 0) (97.66966712 -2.328493339 0) (98.02978547 -2.343419261 0) (96.99900684 -2.292087737 0) (97.32581231 -2.311377249 0) (97.309048 -2.23916746 0) (97.36138736 -2.464520375 0) (97.34324519 -2.386452698 0) (97.01853082 -2.366370333 0) (96.37483654 -2.177360746 0) (96.39756175 -2.247007592 0) (96.68958057 -2.270631036 0) (95.86503518 -2.193249126 0) (96.1227927 -2.221214328 0) (96.09807509 -2.152625003 0) (96.17549002 -2.366459405 0) (96.14857528 -2.292456235 0) (95.89290373 -2.263269223 0) (95.36872875 -2.065942739 0) (95.39943624 -2.130802102 0) (95.62401394 -2.16311139 0) (94.99845142 -2.059694217 0) (95.1910146 -2.096326469 0) (95.15831408 -2.032880879 0) (95.26069366 -2.230352272 0) (95.22511268 -2.162122147 0) (95.03460422 -2.123915117 0) (94.62096908 -1.921246437 0) (94.65958319 -1.98001741 0) (94.82142388 -2.02091836 0) (94.3798245 -1.891822262 0) (94.51253495 -1.937001466 0) (94.47198576 -1.879941045 0) (94.59864537 -2.057233299 0) (94.55472342 -1.996121853 0) (94.42396411 -1.949334981 0) (106.3396871 -1.612876702 0) (106.3039498 -1.661681922 0) (106.3942758 -1.621987196 0) (106.0811556 -1.736138984 0) (106.1996381 -1.699677498 0) (106.2339262 -1.649418771 0) (106.1269471 -1.805361932 0) (106.164002 -1.75164902 0) (106.0469284 -1.789554176 0) (105.8322445 -1.750603118 0) (105.8019128 -1.804826155 0) (105.9485847 -1.771173347 0) (105.4606034 -1.867480343 0) (105.6402792 -1.83702105 0) (105.6691303 -1.781566901 0) (105.5790084 -1.953937424 0) (105.6102596 -1.894460918 0) (105.4325065 -1.926176547 0) (105.0242353 -1.861739494 0) (105.0034114 -1.92056197 0) (105.254809 -1.89563644 0) (104.1105106 -1.95589233 0) (104.659637 -1.940977744 0) (104.6758226 -1.881293237 0) (104.6251754 -2.067144715 0) (104.6427723 -2.002905474 0) (104.0983471 -2.018402821 0) (101.2588893 -1.925518334 0) (101.2277952 -1.985343713 0) (103.099887 -1.966649864 0) (97.92865289 -2.094717469 0) (98.78453302 -2.031822552 0) (98.83723217 -1.97274604 0) (98.67954632 -2.156602295 0) (98.73196558 -2.093084034 0) (97.88168942 -2.156497896 0) (99.90587321 -2.067845274 0) (99.91180231 -2.130666787 0) (99.07643286 -2.132455099 0) (99.87127376 -2.110655971 0) (100.0592624 -2.119768792 0) (100.049864 -2.056806554 0) (100.077428 -2.253316915 0) (100.0684559 -2.185241424 0) (99.87928953 -2.176380352 0) (99.14706978 -2.032047039 0) (99.15433156 -2.095401613 0) (99.53913414 -2.102669236 0) (98.36334119 -2.077680745 0) (98.75678258 -2.087218508 0) (98.74855365 -2.023964375 0) (98.77370406 -2.221452247 0) (98.76516389 -2.153015432 0) (98.37323107 -2.143247202 0) (97.60089537 -1.991201473 0) (97.61368684 -2.053474452 0) (97.9812048 -2.066449949 0) (96.9282491 -2.022206646 0) (97.26243867 -2.038727576 0) (97.24802454 -1.976974093 0) (97.2929205 -2.169728682 0) (97.27739435 -2.102948314 0) (96.94491554 -2.085789966 0) (96.29265471 -1.924119071 0) (96.31198738 -1.983811678 0) (96.61142764 -2.003904761 0) (95.76451988 -1.938195766 0) (96.02976421 -1.961913434 0) (96.00876646 -1.903067793 0) (96.07436889 -2.086608493 0) (96.05161571 -2.023066648 0) (95.78812372 -1.99837412 0) (95.25778781 -1.829387423 0) (95.28386833 -1.885244334 0) (95.51598316 -1.912644259 0) (94.86778965 -1.824852196 0) (95.0678985 -1.855983536 0) (95.04009692 -1.801262914 0) (95.12694303 -1.971725693 0) (95.09682655 -1.912782762 0) (94.89850822 -1.880385693 0) (94.48089318 -1.706011623 0) (94.51390259 -1.756952452 0) (94.68323481 -1.791842828 0) (94.21933194 -1.681436273 0) (94.35941539 -1.720170679 0) (94.32466694 -1.670624654 0) (94.43300351 -1.824778455 0) (94.39550421 -1.771576806 0) (94.25719425 -1.73154313 0) (106.4699509 -1.433318877 0) (106.4391657 -1.475876679 0) (106.5353388 -1.441700438 0) (106.205733 -1.539932043 0) (106.3293514 -1.508566019 0) (106.3588791 -1.464816054 0) (106.2669329 -1.60083448 0) (106.2987215 -1.553896088 0) (106.1763161 -1.586440154 0) (105.9426671 -1.552011253 0) (105.9165897 -1.599001314 0) (106.0682649 -1.570070088 0) (105.562333 -1.652676071 0) (105.7492524 -1.626627779 0) (105.7739926 -1.578633 0) (105.6968726 -1.728048514 0) (105.7235624 -1.676417893 0) (105.538387 -1.703483944 0) (105.0994039 -1.647060304 0) (105.0817319 -1.69775432 0) (105.3466862 -1.676640607 0) (104.1566214 -1.728057711 0) (104.7207739 -1.715045268 0) (104.7346929 -1.663692022 0) (104.6913778 -1.823785273 0) (104.706348 -1.768390016 0) (104.1454263 -1.781821893 0) (101.3875229 -1.707421803 0) (101.3548318 -1.75889704 0) (103.1556787 -1.738717177 0) (98.10361792 -1.869118504 0) (98.99595975 -1.807942781 0) (99.0490284 -1.756935919 0) (98.89004643 -1.915784274 0) (98.94296065 -1.860871699 0) (98.06161486 -1.922422599 0) (99.87795756 -1.839910269 0) (99.88549269 -1.893548896 0) (99.13074003 -1.898356542 0) (99.83775081 -1.872182104 0) (100.0205802 -1.882125649 0) (100.0104973 -1.828371324 0) (100.0402756 -1.996266469 0) (100.0305102 -1.938065929 0) (99.84632861 -1.928306238 0) (99.11831366 -1.802334186 0) (99.1254588 -1.856369238 0) (99.51010784 -1.863787262 0) (98.32632192 -1.839852167 0) (98.72471977 -1.848566451 0) (98.71703956 -1.794617554 0) (98.740471 -1.963160852 0) (98.73252831 -1.904722102 0) (98.33521882 -1.895815723 0) (97.55386891 -1.765345003 0) (97.56504413 -1.818482404 0) (97.93850045 -1.829860118 0) (96.86750509 -1.791389968 0) (97.20776919 -1.805666078 0) (97.19526637 -1.752954535 0) (97.23412504 -1.917600091 0) (97.22071453 -1.860523484 0) (96.88186254 -1.84572819 0) (96.22233637 -1.707352629 0) (96.23893557 -1.758387825 0) (96.54455941 -1.775636493 0) (95.67889625 -1.719320979 0) (95.9504619 -1.739623186 0) (95.93245831 -1.689274012 0) (95.98857778 -1.846452277 0) (95.96915603 -1.791993998 0) (95.69907478 -1.770904492 0) (95.16303793 -1.626082218 0) (95.18538724 -1.674011764 0) (95.42396616 -1.697458483 0) (94.7561905 -1.622274104 0) (94.96288725 -1.648957572 0) (94.93904397 -1.601949667 0) (95.0133638 -1.748557859 0) (94.98764435 -1.697808689 0) (94.78251313 -1.670098366 0) (94.3605615 -1.520011379 0) (94.38900293 -1.563939791 0) (94.56500149 -1.593940628 0) (94.08106228 -1.498795487 0) (94.22783221 -1.532247501 0) (94.19782846 -1.489463356 0) (94.29119456 -1.622783066 0) (94.25893549 -1.576706048 0) (94.11377289 -1.542196916 0) (106.5826766 -1.277599203 0) (106.555959 -1.314370254 0) (106.6572745 -1.284734613 0) (106.313318 -1.369903221 0) (106.4413709 -1.342709066 0) (106.4669962 -1.304958171 0) (106.3873608 -1.422605276 0) (106.4148411 -1.381916008 0) (106.2878381 -1.410076255 0) (106.0380527 -1.380681842 0) (106.0154604 -1.421094003 0) (106.1715823 -1.396031241 0) (105.6495123 -1.467445033 0) (105.8429733 -1.444984195 0) (105.8643586 -1.403747809 0) (105.7978325 -1.532384246 0) (105.8208112 -1.487849993 0) (105.6289215 -1.511140449 0) (105.1637448 -1.462719049 0) (105.148538 -1.506133621 0) (105.4251194 -1.488036423 0) (104.1996838 -1.532649293 0) (104.7737449 -1.52102459 0) (104.7859583 -1.477101202 0) (104.7481415 -1.614267898 0) (104.7611485 -1.566730771 0) (104.1891458 -1.578663827 0) (101.5205232 -1.520304642 0) (101.4870328 -1.564367473 0) (103.2139364 -1.543358254 0) (98.26249248 -1.674901708 0) (99.20849175 -1.614881985 0) (99.26167128 -1.571022989 0) (99.10215662 -1.70778809 0) (99.15531549 -1.660454745 0) (98.22397754 -1.720713854 0) (99.84497597 -1.645772693 0) (99.85358877 -1.691369537 0) (99.16737571 -1.698128542 0) (99.80236647 -1.668987347 0) (99.97944336 -1.679531862 0) (99.96886103 -1.63385481 0) (100.0002718 -1.776726337 0) (99.98991715 -1.727135967 0) (99.81135716 -1.716723236 0) (99.09001537 -1.606902602 0) (99.09704845 -1.652781076 0) (99.48011674 -1.660294382 0) (98.29284005 -1.637271586 0) (98.69471306 -1.645301236 0) (98.68749123 -1.599494426 0) (98.7094814 -1.74279698 0) (98.70204129 -1.693048328 0) (98.30091388 -1.684859683 0) (97.5125711 -1.573104034 0) (97.52241691 -1.618242518 0) (97.90063804 -1.628303609 0) (96.81490181 -1.594570529 0) (97.16020347 -1.607010903 0) (97.14926721 -1.562222229 0) (97.18318347 -1.702313278 0) (97.17150269 -1.653688138 0) (96.82737533 -1.640822549 0) (96.16163605 -1.522539702 0) (96.17601262 -1.565958667 0) (96.48683748 -1.580894392 0) (95.60530132 -1.532206609 0) (95.88224979 -1.549738078 0) (95.86667799 -1.506877716 0) (95.91510856 -1.640878017 0) (95.8983834 -1.594386817 0) (95.6227031 -1.576215312 0) (95.08141383 -1.452207216 0) (95.10073055 -1.493098733 0) (95.34489054 -1.513336644 0) (94.66007594 -1.448400413 0) (94.87254961 -1.471463106 0) (94.85192794 -1.431322452 0) (94.91606632 -1.556726804 0) (94.89391603 -1.513249165 0) (94.68281789 -1.489349264 0) (94.25638087 -1.360255698 0) (94.28107978 -1.397879389 0) (94.46302149 -1.423881447 0) (93.96107366 -1.341255878 0) (94.11390136 -1.370361264 0) (94.08779609 -1.333677921 0) (94.16886926 -1.448212106 0) (94.14091028 -1.408555572 0) (93.98953925 -1.378588015 0) (106.680993 -1.143974052 0) (106.6576144 -1.175378415 0) (106.7634485 -1.149472785 0) (106.406953 -1.223914903 0) (106.5388687 -1.20014667 0) (106.5612897 -1.167936554 0) (106.4917602 -1.268631333 0) (106.5157047 -1.233704012 0) (106.3847079 -1.258266101 0) (106.1210867 -1.234226963 0) (106.1013586 -1.268626833 0) (106.2614591 -1.246745784 0) (105.7248845 -1.308981639 0) (105.9242228 -1.289449896 0) (105.9428612 -1.254373088 0) (105.8850049 -1.364103597 0) (105.9049483 -1.326015748 0) (105.7070196 -1.346225134 0) (105.2195846 -1.305705841 0) (105.2063144 -1.342542411 0) (105.4927813 -1.326845663 0) (104.2406475 -1.366184696 0) (104.8205524 -1.355582039 0) (104.8314767 -1.31835294 0) (104.7978149 -1.434915151 0) (104.8093387 -1.394422643 0) (104.2305639 -1.405252383 0) (101.6550012 -1.360943223 0) (101.6213779 -1.398334402 0) (103.2737672 -1.377012695 0) (98.41061002 -1.508665074 0) (99.42105264 -1.449308759 0) (99.47407414 -1.411895308 0) (99.31483519 -1.528833423 0) (99.36796779 -1.488275073 0) (98.37433724 -1.547757178 0) (99.80877749 -1.481474535 0) (99.81804232 -1.519936768 0) (99.1921031 -1.527901845 0) (99.76561827 -1.496871927 -2.787675914e-36) (99.93656568 -1.507844969 0) (99.92565035 -1.46934767 0) (99.95818069 -1.590049467 0) (99.94741222 -1.548062837 0) (99.77491146 -1.537183638 0) (99.06212443 -1.44172589 0) (99.06906437 -1.480373003 0) (99.4494344 -1.487953417 2.782663161e-36) (98.26227517 -1.465683691 0) (98.66640949 -1.473154747 0) (98.65955807 -1.434562384 0) (98.68037052 -1.55557036 0) (98.67334507 -1.513474296 0) (98.26967461 -1.50587515 0) (97.47598047 -1.410521667 0) (97.4847369 -1.44857394 0) (97.86676697 -1.457553832 0) (96.76895675 -1.427703661 0) (97.11846403 -1.438641521 0) (97.10881038 -1.400874586 0) (97.13867653 -1.519266142 0) (97.12841415 -1.478089354 0) (96.77988956 -1.466803945 0) (96.10877404 -1.366024503 0) (96.12133922 -1.402674793 0) (96.43657815 -1.415724416 0) (95.5414888 -1.373250094 0) (95.82306042 -1.388526267 0) (95.80946882 -1.352330708 0) (95.85164021 -1.465754441 0) (95.83710942 -1.426319418 0) (95.55663073 -1.410522176 0) (95.01048195 -1.304597937 0) (95.02732774 -1.339190828 0) (95.27634187 -1.356815825 0) (94.57660317 -1.300233387 0) (94.79417196 -1.320341393 0) (94.77617802 -1.286360574 0) (94.83201436 -1.392783 0) (94.81277343 -1.355802737 0) (94.596421 -1.335011396 0) (94.1654428 -1.224179863 0) (94.18707527 -1.256103595 0) (94.37433715 -1.278831947 0) (93.85615198 -1.206475681 0) (94.01447952 -1.232009025 0) (93.99157348 -1.200856646 0) (94.06255187 -1.298386705 0) (94.03812602 -1.264533697 0) (93.88112401 -1.238299966 0) (106.7674647 -1.030894949 0) (106.7468389 -1.05730282 0) (106.8566685 -1.034486291 0) (106.4891183 -1.100080391 0) (106.6244378 -1.079132049 0) (106.6442202 -1.052062323 0) (106.5830024 -1.137046649 0) (106.6040431 -1.10745132 0) (106.4695357 -1.129053841 0) (106.193973 -1.110590066 0) (106.1765981 -1.139459211 0) (106.3402794 -1.120196335 0) (105.7906631 -1.174905107 0) (105.9952641 -1.157764673 0) (106.0116543 -1.128341332 0) (105.9608942 -1.220753857 0) (105.9783537 -1.188558322 0) (105.7750138 -1.206251503 0) (105.2687438 -1.173504684 0) (105.2569978 -1.204348375 0) (105.5518013 -1.190563632 0) (104.2801422 -1.225797699 0) (104.8626977 -1.215956523 0) (104.8726399 -1.184807615 0) (104.8421308 -1.282697075 0) (104.8525332 -1.248573974 0) (104.2703829 -1.258586657 0) (101.788718 -1.226677526 0) (101.7554626 -1.25802014 0) (103.3343991 -1.236753301 0) (98.55229732 -1.367688785 0) (99.63260533 -1.308626397 0) (99.6852158 -1.277078184 0) (99.52701543 -1.376002418 0) (99.57986995 -1.341588165 0) (98.51728453 -1.400696484 0) (99.77085597 -1.343827385 0) (99.78042763 -1.375891562 0) (99.20930276 -1.384524506 0) (99.72787164 -1.352454658 0) (99.89258184 -1.363726839 0) (99.88148093 -1.331672548 0) (99.9146757 -1.432525226 0) (99.903649 -1.397329691 0) (99.73738462 -1.386121467 0) (99.03452346 -1.303549119 0) (99.04140396 -1.335714879 0) (99.41821102 -1.343359838 0) (98.23406004 -1.321654562 0) (98.63945273 -1.328689288 0) (98.63288298 -1.296561191 0) (98.65278538 -1.397650632 0) (98.64608484 -1.362371047 0) (98.2409227 -1.355238285 0) (97.44321732 -1.27438546 0) (97.45109253 -1.306089979 0) (97.83614248 -1.314195514 0) (96.72844234 -1.287496474 0) (97.08147983 -1.297212505 0) (97.07286692 -1.265737513 0) (97.09943835 -1.364743141 0) (97.09033208 -1.330200147 0) (96.7381209 -1.320202676 0) (96.06228678 -1.234807925 0) (96.07338085 -1.26538075 0) (96.39239912 -1.276897167 0) (95.48563344 -1.239472396 0) (95.77121118 -1.252915996 0) (95.75922762 -1.222710932 0) (95.79631172 -1.317690716 0) (95.78356522 -1.284562633 0) (95.49893777 -1.270696532 0) (94.94825396 -1.180611339 0) (94.96308921 -1.209518624 0) (95.21635894 -1.225018002 0) (94.50345115 -1.175241089 0) (94.72554466 -1.192938552 0) (94.70969212 -1.164528293 0) (94.7587616 -1.253823496 0) (94.74189163 -1.222691684 0) (94.52088085 -1.204437124 0) (94.08535443 -1.109611939 0) (94.10447002 -1.136342013 0) (94.29652464 -1.156388183 0) (93.76359817 -1.092482696 0) (93.92695648 -1.115059629 0) (93.90668446 -1.088963157 0) (93.96937317 -1.170976001 0) (93.94784157 -1.14240541 0) (93.78569483 -1.119238478 0) (106.8441813 -0.9369377955 0) (106.8258114 -0.958700715 0) (106.9391635 -0.9384214096 0) (106.5618496 -0.9967601329 0) (106.7001884 -0.9781212002 0) (106.7178128 -0.9558239535 0) (106.66342 -1.02621863 0) (106.6820668 -1.001578697 0) (106.5444504 -1.02075042 0) (106.2585501 -1.008023576 0) (106.2430936 -1.031776743 0) (106.4100123 -1.014654216 0) (105.8486537 -1.063227561 0) (106.0579627 -1.048028939 0) (106.0725262 -1.023827901 0) (106.0275508 -1.100261206 0) (106.0429788 -1.073498817 0) (105.8347988 -1.08914464 0) (105.3126287 -1.064032409 0) (105.3020867 -1.089370677 0) (105.6038835 -1.077108878 0) (104.3185107 -1.10911457 0) (104.9012631 -1.099862545 0) (104.9104417 -1.074285799 0) (104.8823734 -1.155095354 0) (104.8919105 -1.126789953 0) (104.3090136 -1.136176403 0) (101.919948 -1.115274536 0) (101.8874616 -1.141087182 0) (103.3951425 -1.120143942 0) (98.69099129 -1.249629924 0) (99.8421104 -1.190619647 0) (99.89403697 -1.164432992 0) (99.73768052 -1.246915049 0) (99.78998747 -1.21810418 0) (98.65643883 -1.277113176 0) (99.73243582 -1.230200725 0) (99.74202901 -1.256482114 0) (99.22237301 -1.265389668 0) (99.68942886 -1.232963238 1.734040761e-36) (99.8480599 -1.244425268 0) (99.83690699 -1.218200223 0) (99.87035502 -1.30112805 0) (99.85921175 -1.272057208 0) (99.69908929 -1.260633025 1.847947393e-36) (99.007078 -1.189723191 0) (99.01393118 -1.21602291 0) (99.38653478 -1.223736906 -1.730951264e-36) (98.20767517 -1.202416397 0) (98.61349942 -1.209125851 0) (98.60713161 -1.18284995 0) (98.62637075 -1.265948266 0) (98.61991103 -1.23681463 0) (98.21412613 -1.230033401 0) (97.41351681 -1.162109873 0) (97.42069299 -1.188064022 0) (97.80810098 -1.19547824 0) (96.69232237 -1.171293327 0) (97.04833626 -1.180029353 0) (97.04055444 -1.154256022 0) (97.06448048 -1.235738111 0) (97.05630763 -1.20717976 0) (96.70099174 -1.19821965 0) (96.02094745 -1.126462336 0) (96.03086032 -1.151519824 0) (96.3531432 -1.161803038 0) (95.4362255 -1.128441686 0) (95.72530686 -1.140409956 0) (95.7146151 -1.115645001 0) (95.74759504 -1.193912893 0) (95.7362942 -1.166489576 0) (95.44804723 -1.154183252 0) (94.89307708 -1.078066313 0) (94.90629217 -1.101797698 0) (95.16332234 -1.115582438 0) (94.43871567 -1.07130637 0) (94.66484934 -1.087051393 0) (94.65072592 -1.063716674 0) (94.6943086 -1.137429716 0) (94.67936902 -1.111613529 0) (94.4542043 -1.095420272 0) (94.01416704 -1.014678641 0) (94.03122774 -1.036667002 0) (94.22760593 -1.054524313 0) (93.68132184 -0.9975611578 0) (93.84925709 -1.017688743 0) (93.83114938 -0.9962094043 0) (93.88699696 -1.064036977 0) (93.86786333 -1.040300917 0) (93.70102814 -1.019670864 0) (106.9130411 -0.8607583306 0) (106.8964591 -0.8781949343 0) (107.0129196 -0.8599177006 0) (106.6269333 -0.9124862514 0) (106.7679778 -0.8956927579 0) (106.7838879 -0.8778434818 0) (106.7349669 -0.9346674141 0) (106.7516786 -0.9146301055 0) (106.6112862 -0.9318425026 0) (106.3164299 -0.9250191534 0) (106.3025071 -0.9440076143 0) (106.4723788 -0.9286013369 0) (105.9003806 -0.9722579035 0) (106.1139209 -0.9586131859 0) (106.1270247 -0.9392713305 0) (106.0866921 -1.000872786 0) (106.1004826 -0.9791421549 0) (105.8879603 -0.9931418327 0) (105.352363 -0.9755460546 0) (105.3427653 -0.9957818015 0) (105.6504298 -0.9847233292 0) (104.3559065 -1.014194087 0) (104.9370387 -1.005404181 0) (104.9456225 -0.9849848746 0) (104.9194573 -1.050033542 0) (104.9283191 -1.027081444 0) (104.3466409 -1.035975753 0) (102.0472517 -1.024983935 0) (102.0158682 -1.045653742 0) (103.4553552 -1.025224368 0) (98.82951819 -1.152469571 0) (100.0483803 -1.093453747 0) (100.0992702 -1.072256461 0) (99.94573649 -1.139524716 0) (99.99719431 -1.115870646 0) (98.79478294 -1.17489399 0) (99.69457905 -1.138450554 0) (99.70393606 -1.159432515 0) (99.2340866 -1.16829818 0) (99.65057168 -1.136117731 0) (99.80352419 -1.147671545 0) (99.79244827 -1.126792213 0) (99.82576187 -1.193351614 0) (99.81463181 -1.169851621 0) (99.66031039 -1.158312195 0) (98.97967805 -1.098102529 0) (98.98652862 -1.119023092 0) (99.35448826 -1.126807543 0) (98.18265998 -1.105722788 0) (98.58824905 -1.112202874 0) (98.58201546 -1.091293999 0) (98.60080352 -1.15795641 0) (98.5945109 -1.134417098 0) (98.18880864 -1.127887999 0) (97.38620351 -1.07161172 0) (97.39284185 -1.092289784 0) (97.78205405 -1.099174086 0) (96.65969375 -1.076941995 0) (97.018232 -1.084910944 0) (97.01109598 -1.064369655 0) (97.03295082 -1.129830249 0) (97.0255139 -1.106724715 0) (96.66756949 -1.098582717 0) (95.98368581 -1.03901791 0) (95.99267228 -1.059010064 0) (96.31780609 -1.068322905 0) (95.39196058 -1.038161493 0) (95.68414181 -1.048967236 0) (95.67446395 -1.029200559 0) (95.7042018 -1.092166931 0) (95.69404983 -1.06994999 0) (95.4026108 -1.058881021 0) (94.84350135 -0.9951585716 0) (94.85544297 -1.014127603 0) (95.11583136 -1.026559813 0) (94.38073164 -0.9866256545 0) (94.61050382 -1.000828703 0) (94.59774003 -0.9821659383 0) (94.63697585 -1.041583853 0) (94.62357629 -1.020629377 0) (94.39468132 -1.006077352 0) (93.95009467 -0.937725882 0) (93.96554248 -0.9553524617 0) (94.16584043 -0.9714796376 0) (93.60742736 -0.9199625653 0) (93.77952445 -0.9381941845 0) (93.76310965 -0.9209588907 0) (93.81351287 -0.9758078305 0) (93.79631719 -0.9564845109 0) (93.62523461 -0.9378777481 0) (106.9758757 -0.801339568 0) (106.9606477 -0.8146569129 0) (107.0799657 -0.7978835175 0) (106.6860022 -0.8460545 0) (106.8295424 -0.8306821526 0) (106.8441414 -0.8170491717 0) (106.7994366 -0.8610666644 0) (106.8146478 -0.8453501778 0) (106.6717166 -0.8610428742 0) (106.3690424 -0.8603571013 0) (106.3563115 -0.8748593858 0) (106.5289264 -0.8607901984 0) (105.9471542 -0.9006092261 0) (106.1645372 -0.8881785705 0) (106.176505 -0.8734058797 0) (106.1398157 -0.9210958798 0) (106.1523136 -0.9040702081 0) (105.9358595 -0.9167748237 0) (105.3888916 -0.9066534053 0) (105.3800119 -0.9221034583 0) (105.6926238 -0.9119726538 0) (104.3924613 -0.9395182825 0) (104.970665 -0.9310679366 0) (104.9788063 -0.915484809 0) (104.9540823 -0.9658012719 0) (104.962426 -0.9478344555 0) (104.3833893 -0.9563574609 0) (102.1695266 -0.9545181628 0) (102.1394849 -0.9703365051 0) (103.5145679 -0.9505005498 0) (98.96991866 -1.07468293 0) (100.2498869 -1.015839794 0) (100.2993372 -0.9993754341 0) (100.1498308 -1.052266721 0) (100.2000506 -1.033462967 0) (98.93457572 -1.092376048 0) (99.65826216 -1.066976776 0) (99.66714946 -1.083015477 0) (99.24683962 -1.091547571 0) (99.61156795 -1.060165212 0) (99.75947747 -1.071726741 0) (99.74859434 -1.055830955 0) (99.78141094 -1.107188691 0) (99.77041812 -1.088839935 0) (99.62131979 -1.077273391 0) (98.95222515 -1.027040111 0) (98.95909949 -1.042952987 0) (99.32215434 -1.050813362 0) (98.15860989 -1.029821608 0) (98.5634397 -1.036160316 0) (98.55727577 -1.020246142 0) (98.57580548 -1.071664821 0) (98.56961491 -1.053293583 0) (98.16455324 -1.046927705 0) (97.3606677 -1.001269061 0) (97.36691694 -1.017039471 0) (97.75747873 -1.023541243 0) (96.62975433 -1.002749829 0) (96.99045375 -1.010144956 0) (96.983794 -0.9944701005 0) (97.00409461 -1.045075527 0) (96.99721723 -1.027007229 0) (96.63702846 -1.019485987 0) (95.94954967 -0.9709285592 0) (95.95783953 -0.9862075561 0) (96.28549809 -0.9947868028 0) (95.35168597 -0.9670499667 0) (95.64665113 -0.9769733281 0) (95.63773743 -0.9618589075 0) (95.66499974 -1.010625897 0) (95.65573369 -0.9932231087 0) (95.36143922 -0.983103883 0) (94.79823588 -0.9304725817 0) (94.80921328 -0.945000891 0) (95.07264555 -0.9564040252 0) (94.32799107 -0.9197770385 0) (94.56109109 -0.9328044249 0) (94.54935824 -0.91850266 0) (94.58526312 -0.964619484 0) (94.57305312 -0.9481713547 0) (94.34075988 -0.9348816084 0) (93.89148073 -0.8775434256 0) (93.90570032 -0.8910714692 0) (94.10962365 -0.9058791885 0) (93.5398914 -0.8585241464 0) (93.71590971 -0.875306673 0) (93.70078504 -0.8620750203 0) (93.74704999 -0.9047335724 0) (93.73132391 -0.8895300277 0) (93.55626306 -0.8724568882 0) (107.0341536 -0.7579373601 0) (107.0199364 -0.7673201347 0) (107.1419281 -0.7516988055 0) (106.7404794 -0.7965488813 0) (106.8863707 -0.7822426612 0) (106.8999935 -0.7726328932 0) (106.8584654 -0.8044394754 0) (106.8725352 -0.7928407935 0) (106.7272203 -0.8073820194 0) (106.4176536 -0.8130778028 0) (106.4058107 -0.8233131873 0) (106.581018 -0.810248903 0) (105.9901371 -0.8471873422 0) (106.2110522 -0.8356659965 0) (106.2221755 -0.8252363011 0) (106.1882349 -0.8597381726 0) (106.1997449 -0.8471623459 0) (105.9796871 -0.8588835654 0) (105.4230836 -0.856286023 0) (105.4147086 -0.8671895916 0) (105.7315184 -0.857733016 0) (104.4283882 -0.8839394658 0) (105.0027522 -0.8756962022 0) (105.010604 -0.8647087654 0) (104.9868628 -0.9010711151 0) (104.9948398 -0.8878119744 0) (104.4194469 -0.8960937416 0) (102.2860512 -0.9029014756 0) (102.2574993 -0.9140849722 0) (103.5725415 -0.8948586335 0) (99.11347017 -1.015228031 0) (100.4450389 -0.9568741158 0) (100.4926801 -0.9449664249 0) (100.3483531 -0.984069754 0) (100.3969398 -0.9699005105 0) (99.07726518 -1.028411535 0) (99.62433843 -1.014600377 0) (99.63255524 -1.025956197 0) (99.2626775 -1.033890162 0) (99.57263349 -1.003788065 2.52211546e-36) (99.71635387 -1.015289881 0) (99.7057597 -1.004109823 0) (99.73777591 -1.041136241 0) (99.72702698 -1.027627198 0) (99.58235102 -1.016105032 5.663150732e-36) (98.92459498 -0.9752874947 0) (98.93152747 -0.9864711142 0) (99.28957856 -0.9944229672 -2.517688811e-36) (98.13513814 -0.9733668636 0) (98.5388092 -0.9796517252 0) (98.532647 -0.9684524356 0) (98.55111894 -1.005533843 0) (98.54496484 -0.9920073003 0) (98.14097285 -0.9857172199 0) (97.33633146 -0.9498365881 0) (97.34233408 -0.9609775326 0) (97.73388049 -0.9672375144 0) (96.60176401 -0.9474031656 0) (96.96433861 -0.9544050781 0) (96.95799459 -0.9433201825 0) (96.97722823 -0.9799655187 0) (96.97074631 -0.9666153659 0) (96.60861756 -0.9595316042 0) (95.91766489 -0.920998589 0) (95.92547097 -0.9318323995 0) (96.25540337 -0.9398963754 0) (95.31436071 -0.913873795 0) (95.61186858 -0.9231699629 0) (95.60348916 -0.9124438949 0) (95.62897852 -0.9478634393 0) (95.62036013 -0.9349717991 0) (95.32346898 -0.9255417665 0) (94.75612323 -0.8829094762 0) (94.76641595 -0.8932451201 0) (95.03265007 -0.9039102548 0) (94.27917078 -0.869666828 0) (94.51535417 -0.8818429178 0) (94.50435725 -0.8716603876 0) (94.5378365 -0.9052509479 0) (94.52650765 -0.8930353954 0) (94.29107537 -0.8806755386 0) (93.83693738 -0.8331845489 0) (93.85026441 -0.8428368581 0) (94.05757141 -0.856677958 0) (93.47722022 -0.8123996683 0) (93.65693541 -0.8280980192 0) (93.64275482 -0.8186525338 0) (93.6859287 -0.8497964636 0) (93.67131902 -0.83848273 0) (93.49250808 -0.8225818841 0) (107.0891972 -0.7298966327 0) (107.0756668 -0.7354979533 0) (107.2001888 -0.7206860199 0) (106.791618 -0.7632188146 0) (106.9397597 -0.7496543499 0) (106.9527182 -0.7439122629 0) (106.9134197 -0.7640047489 0) (106.9266701 -0.7563482016 0) (106.7790834 -0.770069661 0) (106.463422 -0.7824199313 0) (106.4521801 -0.7885629337 0) (106.6298671 -0.776197526 0) (106.0304061 -0.8111495099 0) (106.2545989 -0.8002477508 0) (106.2651591 -0.7939825365 0) (106.2331292 -0.8158643897 0) (106.2439323 -0.8075386214 0) (106.0205371 -0.8185682324 0) (105.455795 -0.8236561069 0) (105.4476998 -0.8301848394 0) (105.7681021 -0.821152719 0) (104.4639746 -0.8466082641 0) (105.0339141 -0.8384343843 0) (105.0416486 -0.8318774583 0) (105.0184111 -0.8548435952 0) (105.0261755 -0.8460872694 0) (104.4550885 -0.8542647926 0) (102.396523 -0.8694503967 0) (102.3694323 -0.8761320211 0) (103.6292196 -0.857489833 0) (99.26074524 -0.973448929 0) (100.632392 -0.9159930666 0) (100.6780755 -0.9085665321 0) (100.5397798 -0.9341933603 0) (100.5864019 -0.9245294694 0) (99.22364388 -0.9822468855 0) (99.59350097 -0.9804810567 0) (99.60090291 -0.9873458952 0) (99.28322786 -0.9944451714 0) (99.53392549 -0.9660149398 0) (99.67451387 -0.977407707 0) (99.66425822 -0.9707407078 0) (99.69525268 -0.9940775228 0) (99.68483335 -0.9851798028 0) (99.5435706 -0.9737577034 -3.280560533e-36) (98.89663365 -0.9419297873 0) (98.90367315 -0.9485835377 0) (99.25676403 -0.9566488 0) (98.11186507 -0.9353650207 0) (98.51408928 -0.9416817754 0) (98.50785249 -0.9350011581 0) (98.52647582 -0.9583988857 0) (98.52028955 -0.9494795098 0) (98.11768298 -0.9431780636 0) (97.31263503 -0.9164163404 0) (97.31853464 -0.9231188745 0) (97.71078235 -0.9292735418 0) (96.57502489 -0.9099298026 0) (96.93925703 -0.916712501 0) (96.93306812 -0.9100270866 0) (96.95170643 -0.9333507214 0) (96.94546288 -0.9244852284 0) (96.5816283 -0.9176638522 0) (95.88720894 -0.8883557459 0) (95.89473706 -0.8949323397 0) (96.22675777 -0.9026883745 0) (95.2790258 -0.8777093468 0) (95.57889969 -0.8866181046 0) (95.57083415 -0.8800943382 0) (95.5952106 -0.9027840827 0) (95.58701789 -0.8941789299 0) (95.28772224 -0.8851952069 0) (94.71609319 -0.851652406 0) (94.72596581 -0.8579729435 0) (94.99482219 -0.8681722296 0) (94.23306677 -0.8354481226 0) (94.47214727 -0.8470768278 0) (94.46160699 -0.8408390639 0) (94.49350246 -0.8624789425 0) (94.48277092 -0.8542875605 0) (94.24440037 -0.8425498217 0) (93.78516904 -0.8038971751 0) (93.79792325 -0.8098416139 0) (94.00842431 -0.8230491316 0) (93.41802221 -0.7808218274 0) (93.60124482 -0.7957843026 0) (93.58767808 -0.7899554263 0) (93.62875921 -0.8101168817 0) (93.61492733 -0.802505512 0) (93.43255855 -0.7874170987 0) (107.1484927 -0.7160736724 0) (107.1280874 -0.7186772223 0) (107.2550005 -0.7043676863 0) (106.8396045 -0.7454772353 0) (106.9899294 -0.7323676032 0) (107.0093983 -0.7297216501 0) (106.9655094 -0.7391177253 0) (106.9784117 -0.7352711474 0) (106.8286184 -0.7484727764 0) (106.5125008 -0.7669335374 0) (106.4955768 -0.7699449864 0) (106.6756374 -0.7580075987 0) (106.0681278 -0.7918285008 0) (106.2953397 -0.7812439777 0) (106.3113485 -0.7780999243 0) (106.2755643 -0.7887274513 0) (106.2861273 -0.7844787044 0) (106.0596425 -0.7951034528 0) (105.4920532 -0.8073493278 0) (105.4790184 -0.8105424491 0) (105.8025168 -0.8016113447 0) (104.4983942 -0.8270413816 0) (105.0639013 -0.8188052478 0) (105.0767433 -0.8158799451 0) (105.0493046 -0.8264058102 0) (105.0573079 -0.822038793 0) (104.4909432 -0.8302976893 0) (102.5129091 -0.854048763 0) (102.4715933 -0.8556772255 0) (103.6827585 -0.8377606593 0) (99.40609605 -0.9501787137 0) (100.8048988 -0.8930731043 0) (100.8743241 -0.8892242524 0) (100.7224204 -0.9022479993 0) (100.7688691 -0.8970501451 0) (99.37521746 -0.9533375158 0) (99.5632953 -0.9619177464 0) (99.5733483 -0.9670872642 0) (99.30811276 -0.973805813 0) (99.49680174 -0.9461593431 3.180454077e-37) (99.63544604 -0.9575053438 0) (99.62001377 -0.9535947852 0) (99.65422052 -0.9651968229 0) (99.64380798 -0.960626322 0) (99.50481808 -0.9493922029 0) (98.86485785 -0.9256767701 0) (98.87631455 -0.9286430158 0) (99.22478834 -0.9368028347 -3.174926955e-37) (98.08910918 -0.915222496 0) (98.48979938 -0.9216377698 0) (98.47960648 -0.9186266344 0) (98.50165707 -0.9294208552 0) (98.49517694 -0.9249493135 0) (98.09417823 -0.9185625469 0) (97.28614391 -0.8996692526 0) (97.2955828 -0.9028689582 0) (97.68835553 -0.9090604598 0) (96.54946978 -0.8897119529 0) (96.91519746 -0.8964615303 0) (96.90539388 -0.8932270961 0) (96.92693614 -0.9044152716 0) (96.92063268 -0.8998803364 0) (96.55526595 -0.8931469978 0) (95.85382267 -0.8716225683 0) (95.86548409 -0.8748744964 0) (96.19944797 -0.8825355802 0) (95.24545429 -0.8579251441 0) (95.5475534 -0.8666835582 0) (95.53512329 -0.8634450808 0) (95.56285099 -0.8745964686 0) (95.55473964 -0.8701249795 0) (95.25317394 -0.8613548823 0) (94.67251119 -0.835395638 0) (94.68756582 -0.8385664774 0) (94.95889966 -0.8485643607 0) (94.18931702 -0.8165166236 0) (94.43113966 -0.8278960543 0) (94.41510348 -0.8247517932 0) (94.45117451 -0.8355660622 0) (94.44063884 -0.8312549278 0) (94.19947045 -0.8198418673 0) (93.72892806 -0.7883776474 0) (93.74827676 -0.791479023 0) (93.96179462 -0.8043899243 0) (93.36197754 -0.7632040259 0) (93.54845563 -0.7777595697 0) (93.52784111 -0.7746098522 0) (93.57424645 -0.7850073509 0) (93.56073296 -0.7809601581 0) (93.37497613 -0.7663218562 0) (145.1925013 12.44666042 -4.69030701e-20) (143.4520873 11.98782361 -7.124596898e-20) (142.9830247 13.61841092 4.689878924e-20) (144.0790687 8.883778976 1.10992078e-19) (143.8088325 10.4572047 0) (145.5370756 10.75492735 2.640527034e-18) (142.1655578 -9.876304147 4.800589566e-18) (141.0260973 -9.293036921 4.635107947e-18) (141.5164977 -8.306152602 -2.315639711e-18) (139.8963982 -11.25570471 4.412096349e-18) (140.4712784 -10.3626009 5.831991433e-20) (141.576209 -10.91978568 2.329292454e-18) (146.012612 5.927926471 -2.646521149e-18) (144.3629192 5.863936614 0) (144.2568998 7.372226199 0) (144.3633634 2.970924903 -7.417113087e-18) (144.3883359 4.397575127 -5.362535522e-20) (146.0015638 4.370945103 -1.097037355e-19) (87.73475683 -8.156133201 -7.21617704e-19) (87.86697607 -8.017310649 7.142410152e-19) (88.00599519 -8.082387226 7.134605097e-19) (87.5807865 -7.865493914 7.280800027e-19) (87.72634708 -7.931425153 7.194056089e-19) (87.59169394 -8.080456715 -7.214703034e-19) (130.840772 -21.37478136 -1.679876846e-18) (130.3342325 -20.57896388 1.692725884e-18) (131.0325026 -20.21296681 -1.694569006e-18) (139.6445811 -13.74700132 -2.192778681e-18) (138.6690981 -13.04218237 0) (139.2879576 -12.24213703 -5.63939198e-20) (137.3597057 -14.66665622 2.10704627e-18) (138.0168208 -13.94915997 0) (138.9578829 -14.61379718 4.34400664e-18) (89.75635852 -9.424199441 1.988748238e-18) (89.9006461 -9.297418801 1.304123924e-18) (90.0274485 -9.3756651 0) (89.65127353 -9.122879759 1.319403423e-18) (89.77621274 -9.19975474 -6.536425105e-19) (89.63204754 -9.333302456 5.054618464e-21) (92.0024885 -10.91479443 5.83105012e-19) (92.15059585 -10.74718501 3.9653511e-21) (92.31397699 -10.83387732 1.115073301e-18) (91.8326432 -10.57001807 -5.779989349e-19) (91.99023266 -10.65885957 5.680619847e-19) (91.84214164 -10.8237704 0) (92.23965832 -10.32648497 0) (92.12006384 -10.49148312 -1.104905146e-18) (91.96275406 -10.40833976 -5.572132825e-19) (112.1226016 -24.86189724 8.04194984e-19) (110.9432408 -24.61589445 0) (110.9842855 -23.42868535 7.381511258e-19) (110.6345189 -27.2238821 5.517768256e-19) (110.844815 -25.89072571 -7.280346253e-19) (112.0921028 -26.18375038 1.653696013e-18) (108.4756889 -25.09718059 0) (109.6376309 -25.52792312 9.095314348e-21) (109.3606898 -26.8207076 6.535472638e-19) (94.97001945 -12.0030729 -4.554579169e-19) (95.11281888 -11.80327825 3.679762474e-21) (95.3098041 -11.83366283 4.338857644e-19) (94.76067029 -11.73326431 -7.734516063e-21) (94.92212969 -11.77367116 6.244047809e-22) (94.79174326 -11.97203703 -3.755786198e-21) (95.09643023 -11.36095717 4.355077e-19) (95.01991751 -11.57027759 -8.831873289e-19) (94.85350843 -11.52641637 4.017918462e-18) (94.79210046 -24.48027733 -2.757683775e-19) (94.44635366 -23.67301602 1.809342406e-18) (95.73362142 -23.48683224 -5.518988233e-19) (90.10217763 -23.49676444 -2.240988608e-18) (92.74158332 -23.81367369 -4.106473697e-18) (93.30644374 -24.59207313 3.559988513e-19) (92.44486698 -21.81451034 0) (92.35969974 -22.84412861 -5.137637004e-19) (89.70630979 -22.41229099 -2.864733201e-19) (98.67010621 -32.44190586 -2.870361858e-19) (100.6496126 -32.4579262 2.630422425e-19) (100.8017785 -32.6498948 6.034435037e-19) (100.248202 -32.00927408 2.545709183e-19) (100.4498569 -32.30335583 -1.08433042e-20) (98.72081992 -32.31445279 2.523298287e-19) (96.70990501 -23.37450077 4.121703343e-19) (97.43310487 -23.15076271 -3.048345388e-19) (97.76081682 -23.86499886 5.531334759e-20) (102.3206388 -22.05711231 2.23846542e-19) (102.9640772 -21.3226764 0) (103.675905 -22.06279259 5.321547049e-19) (101.7216459 -19.81600408 1.017989543e-19) (102.2868153 -20.64609911 -3.197266123e-20) (101.6534214 -21.21455442 0) (105.8715522 -25.15435211 4.400617762e-19) (106.3374469 -24.05015945 -8.634710211e-19) (107.3725643 -24.60269121 -5.258988573e-19) (104.4862871 -22.77250534 3.515513111e-19) (105.375562 -23.43306051 8.291720633e-19) (104.8563671 -24.45082066 3.452779335e-19) (73.21054514 14.21433798 0) (76.10754496 10.89054582 0) (74.77667449 8.464532466 0) (79.9679693 14.2261707 0) (77.92228116 12.86099698 0) (75.92669139 15.15829187 1.247963672e-18) (81.19302864 9.564743329 -1.157061346e-18) (79.754316 11.06827909 -6.089564237e-20) (81.36145756 12.33849395 -5.54737798e-19) (86.14241271 19.82608739 8.080933418e-19) (87.01393939 22.23855462 0) (89.0346565 21.07212421 0) (81.33775301 24.3929221 1.172547196e-19) (84.52020564 23.38780224 0) (83.84046348 20.45065586 -8.113917777e-19) (88.59185605 29.42120831 -1.817378377e-19) (86.02083757 26.51411409 0) (82.67988182 28.48711947 1.516697576e-18) (104.8547979 27.72132428 0) (107.0024425 26.38951532 0) (105.7088004 24.69102311 -1.868937392e-19) (110.7729427 30.09543123 -1.539878573e-19) (108.6254666 28.20272468 0) (106.3785994 30.03201573 0) (111.475335 24.27345792 -1.640085885e-18) (110.1963237 26.16392269 -1.268596819e-18) (112.3388617 27.60839974 -2.296741768e-19) (130.5254229 8.357347728 1.881256463e-18) (132.6365277 9.149856758 0) (133.3597214 7.231761997 -2.167474956e-18) (130.5172682 12.82656474 0) (131.6921659 11.0594055 2.066043988e-18) (129.66533 9.944513154 -5.562506217e-20) (136.5902229 13.45015797 2.270690397e-18) (133.9862007 12.19149137 1.048026648e-19) (132.6843671 14.23026025 2.141439089e-18) (85.32347865 -4.604034801 -1.632622379e-20) (85.69009056 -4.940723277 1.007335195e-18) (85.21378879 -5.33123059 -2.562245176e-21) (86.84376023 -5.196452031 -1.931524862e-18) (86.52814753 -4.905132383 1.964023634e-18) (87.02212991 -4.603373718 0) (83.94994975 -4.267659606 0) (84.54645855 -3.824294567 -2.148065222e-18) (84.94197506 -4.233440158 1.062657127e-18) (131.270412 -5.19024837 0) (133.1420373 -5.701008288 0) (132.5405132 -7.246959125 0) (133.9890095 -2.310146766 0) (133.6319054 -4.026512537 0) (131.6774285 -3.602700637 6.050277469e-20) (138.0243774 -5.189271437 -9.404527655e-20) (135.7498879 -4.557500653 -2.305624674e-18) (136.2007573 -2.673126239 2.268806767e-18) (87.93190695 -6.709178963 -8.895715403e-19) (88.21384589 -6.906098076 -8.749495587e-19) (87.8778093 -7.198361918 8.942049817e-19) (88.93895324 -6.341609403 8.616514257e-19) (88.57147822 -6.621693105 2.616514817e-18) (88.3010281 -6.421050395 1.123037206e-20) (89.09249234 -7.006034721 8.569023136e-19) (88.8345703 -6.821959882 -1.712186563e-18) (89.19084529 -6.568866057 8.442334848e-19) (87.87549584 -5.42537285 -1.848694225e-18) (87.4493583 -5.73065391 1.411181541e-20) (87.15022261 -5.477881972 -9.405885746e-19) (88.02452407 -6.200746366 0) (87.74021606 -5.977525794 1.274980544e-20) (88.14739036 -5.701583451 9.113705392e-19) (86.96745715 -6.606414593 -9.409225108e-19) (87.34127087 -6.282878639 0) (87.64088182 -6.501873947 0) (86.48677462 -7.532560471 1.552503348e-18) (86.63599361 -7.362075826 -7.851449611e-19) (86.80316063 -7.440082109 -4.787517243e-21) (86.29453214 -7.171773766 -8.041366209e-19) (86.4677744 -7.25529999 -7.927386e-19) (86.31371087 -7.439520916 7.890917986e-19) (125.2173832 -14.5136824 1.623388496e-18) (126.3318681 -15.5182651 -3.240354974e-18) (125.2886406 -16.31411682 1.621901981e-18) (128.3431069 -13.64241086 -1.81790821e-18) (127.3493049 -14.61522398 1.685613535e-18) (126.1556203 -13.54310787 0) (129.9289847 -16.99469437 -3.823967004e-18) (128.6182075 -15.74092795 -7.039613841e-21) (129.7158548 -14.72173997 1.894061402e-18) (89.99836372 -8.125323568 0) (90.23939336 -8.291019052 0) (89.94045969 -8.545460376 7.850980463e-19) (90.8781906 -7.784230417 7.641443751e-19) (90.55487 -8.040455391 -7.730238413e-19) (90.31536918 -7.878898868 7.712458781e-19) (91.03677452 -8.366092145 -7.457550205e-19) (90.79426345 -8.207909886 7.359399426e-19) (91.11358403 -7.971327203 -2.23496545e-18) (89.92856049 -7.103828311 8.148069961e-19) (89.59191324 -7.364941642 8.168608411e-19) (89.34405864 -7.192107116 8.32570718e-19) (90.07655002 -7.707696294 -7.880093015e-19) (89.83509971 -7.541834787 -1.615923717e-18) (90.16620877 -7.304186942 1.008092293e-20) (89.20668542 -8.049387136 8.099611936e-19) (89.51269378 -7.792041238 2.254469468e-21) (89.75646337 -7.95919018 8.102702442e-19) (88.77932499 -8.750478333 6.740433032e-22) (88.91372416 -8.625868547 -1.36728474e-18) (89.03766219 -8.695926221 4.290916889e-21) (88.66357781 -8.470398777 -1.382753218e-18) (88.78983989 -8.538033636 1.375594254e-18) (88.65648022 -8.671235392 4.111797559e-21) (88.14971734 -9.178752742 5.83612099e-19) (88.20244863 -9.208481307 0) (88.08734583 -9.260901812 -5.903315781e-19) (130.4972387 -27.89099606 0) (130.3950526 -27.41393758 0) (130.8170204 -27.30785973 0) (129.5480911 -27.71264373 0) (129.963573 -27.61530743 0) (130.0689119 -28.0446695 0) (92.02866241 -9.429418251 1.363235773e-18) (92.31110205 -9.583129269 6.707493243e-19) (92.04363356 -9.890491577 -1.349662416e-18) (92.88543975 -9.000797455 -6.449938314e-19) (92.59610627 -9.289527403 -6.66638651e-19) (92.32104154 -9.144314318 -1.045787055e-20) (93.17169655 -9.561434356 -1.259187253e-18) (92.8795718 -9.428606846 0) (93.15949447 -9.133313813 9.89320996e-21) (91.84373052 -8.415623367 7.053888588e-19) (91.53068854 -8.682971173 -1.428190428e-18) (91.28135536 -8.530245573 0) (92.05192827 -8.992668627 -6.80820083e-19) (91.7874819 -8.837020258 0) (92.10475819 -8.564454614 -6.90320131e-19) (91.20453478 -9.388704973 7.240715107e-19) (91.48626413 -9.110483771 0) (91.75390754 -9.270903131 0) (90.80063194 -10.15696112 6.303614203e-19) (90.95400363 -10.01050366 -6.059361112e-19) (91.09459722 -10.10614684 -6.044850055e-19) (90.67706346 -9.83724238 6.286559158e-19) (90.81264241 -9.915201777 1.24485131e-18) (90.66243165 -10.06307343 -6.251436665e-19) (89.91706716 -10.63586802 -1.248411682e-21) (89.97438409 -10.68192599 6.876853999e-19) (89.76047544 -10.74083539 4.195879541e-19) (90.27136719 -10.73696283 -5.161267721e-19) (90.21186592 -10.68217879 0) (90.35189416 -10.62832614 -2.952938725e-21) (89.18337642 -10.20305318 5.747636964e-19) (89.35004671 -10.14830444 -1.781985535e-22) (89.41027828 -10.18724182 1.135838794e-18) (114.850558 -29.89294017 0) (114.1117951 -29.79517332 1.883363366e-20) (114.2497296 -29.03644573 -8.492247585e-19) (113.7503561 -31.35352576 8.566920087e-19) (113.9393357 -30.56618391 0) (114.6906263 -30.65007657 0) (112.4552044 -30.33158065 2.278599817e-20) (113.1957319 -30.45761155 -7.98195462e-19) (112.9818025 -31.23633104 -1.667203207e-18) (94.56548589 -10.43385488 5.49841212e-19) (94.92457753 -10.52741003 -9.921952592e-21) (94.76251679 -10.92757688 5.139125963e-19) (95.29464904 -9.815204683 5.125172683e-19) (95.102884 -10.16055568 0) (94.76212672 -10.0772226 -5.524480797e-19) (95.7522088 -10.31684958 -4.998132024e-19) (95.42139624 -10.26761972 5.081100187e-19) (95.5950297 -9.913722091 0) (94.03146894 -9.483171518 -9.823322242e-21) (93.78191591 -9.802588982 0) (93.47253276 -9.686556691 6.117082155e-19) (94.42581275 -10.00094629 5.557101812e-19) (94.10006091 -9.907765946 0) (94.3372345 -9.580599348 0) (93.65536013 -10.62713163 1.172296559e-18) (93.8696812 -10.24879674 -5.899059988e-19) (94.21108869 -10.35022598 -5.713464831e-19) (93.43515664 -11.59287238 3.265989417e-21) (93.57241046 -11.38763479 5.098690779e-19) (93.77118339 -11.45006569 4.962445257e-19) (93.1893689 -11.24508873 -5.229004867e-19) (93.37825618 -11.31840178 5.154790846e-19) (93.23661562 -11.51869234 0) (93.59738539 -10.92711448 0) (93.4956385 -11.11742264 -5.032286393e-19) (93.30966217 -11.0521224 5.106627158e-19) (96.03084049 -12.70220069 -3.663972279e-19) (95.79923598 -12.25021331 7.388681729e-19) (82.24559091 -9.607525886 -5.147114131e-20) (97.86854746 -11.25511342 7.35340767e-21) (98.02474993 -11.59460111 -7.437100607e-19) (97.60094883 -11.76628833 0) (94.40071734 -15.71900654 -2.667524473e-19) (94.90228462 -14.90997231 5.495505886e-19) (96.24987151 -15.45070265 2.094609224e-19) (73.95994107 -11.52483155 -3.331379125e-19) (90.85138413 -14.59367555 -6.358123043e-19) (89.65941921 -15.14337478 6.214381032e-19) (91.07484038 -19.77609591 2.894982099e-19) (93.00002177 -20.1248582 2.453078304e-19) (92.7437783 -20.93749641 0) (74.13656125 -7.073074821 1.17239137e-20) (74.36331907 -6.473824407 1.145341214e-18) (74.93930898 -6.605231648 8.470315261e-21) (73.18684658 -6.040850556 1.208116155e-18) (73.78976652 -6.203552456 0) (73.49954229 -6.881320602 1.200214901e-20) (79.47200485 -7.693400042 8.181078567e-19) (79.51665674 -7.403180526 1.705623115e-18) (79.79385102 -7.388053438 -4.25108043e-21) (78.89262376 -7.36488866 9.05375372e-19) (79.21797024 -7.364278461 -8.747111211e-19) (79.18591291 -7.704282304 -2.119085338e-19) (142.6327182 19.2874658 2.368661027e-18) (140.9076298 18.27691546 -2.299024169e-18) (139.9472715 19.90011356 2.244957569e-18) (142.4132695 15.1479359 0) (141.7163169 16.79687354 -2.343287481e-18) (143.4643231 17.5517388 0) (154.6656186 11.20913649 2.399998073e-18) (153.4942053 11.16233995 -2.397165099e-18) (153.4214868 12.20880624 2.409856646e-18) (84.13472041 -7.130637443 0) (84.3330899 -7.225319079 1.771392635e-18) (84.14172668 -7.429476622 -9.108353203e-19) (84.67202337 -6.819100814 8.636902377e-19) (84.51001928 -7.023479981 -8.639920078e-19) (84.31191456 -6.923149349 0) (84.89356117 -7.228242372 -8.48172239e-19) (84.70335598 -7.125281635 8.598783075e-19) (84.86578391 -6.926773032 -8.486588954e-19) (83.82392074 -6.375641656 9.241774173e-19) (83.66152062 -6.627560237 9.203618679e-19) (83.42317584 -6.532016063 9.5761692e-21) (84.10645531 -6.823901427 -6.019341727e-21) (83.8897833 -6.724989342 8.948948208e-19) (84.05896143 -6.489366409 8.921926662e-19) (83.53864681 -7.171640816 1.86466892e-18) (83.71768287 -6.951441686 0) (83.93041416 -7.039241232 0) (82.80651602 -7.596886991 0) (82.92015943 -7.497326966 -3.972282242e-22) (83.02928368 -7.511108004 -7.682675353e-19) (82.69352168 -7.455006802 -7.71812275e-19) (82.80875291 -7.465371204 7.744457508e-19) (82.6964101 -7.575687787 0) (83.85420672 -8.02767373 -7.306694817e-19) (84.02918252 -7.936780034 0) (84.11922079 -7.992470242 -7.136739977e-19) (83.85426372 -7.8336827 -3.85095429e-22) (83.94117167 -7.883547175 -3.289670723e-22) (83.77072502 -7.97302531 -7.27771742e-19) (84.2097614 -7.691589165 0) (84.0835017 -7.789654615 0) (83.99301001 -7.74131953 6.919019027e-19) (80.43124685 -7.609942411 2.831307067e-22) (80.5043881 -7.392312641 -9.850256267e-22) (80.71535945 -7.36842506 2.865083782e-21) (80.04779762 -7.405654538 -8.078068779e-19) (80.28326046 -7.381584256 2.409936304e-18) (80.21110036 -7.628704356 3.266332119e-21) (82.34829899 -7.534760652 -7.973556311e-19) (82.45231386 -7.420904719 -1.546952815e-18) (82.57542708 -7.426324385 7.758346808e-19) (82.19278193 -7.3950365 7.741986245e-19) (82.3256267 -7.395795397 -1.727905513e-21) (82.22347262 -7.524601732 -1.803547245e-21) (144.1843728 -5.280114539 0) (142.846666 -4.841645722 0) (143.214217 -3.634835618 0) (141.9679559 -7.145294016 -2.366866049e-18) (142.4282568 -6.008863648 4.699494094e-18) (143.7293823 -6.492260169 -2.506708846e-18) (149.4996013 -7.729782416 -2.142010114e-18) (149.8446208 -7.031473204 -1.082561359e-18) (150.5428507 -7.392672107 1.061989964e-18) (148.5150213 -6.408578456 2.155580066e-18) (149.246737 -6.691445498 -2.144133416e-18) (148.8713177 -7.348798154 0) (149.8510424 -5.28714826 0) (149.5589349 -5.98756034 2.133655896e-18) (148.7657395 -5.679323522 1.318427016e-20) (146.2468686 -14.4266162 -2.113177037e-18) (145.7650974 -13.96779802 -4.111412813e-18) (146.1689366 -13.44705762 2.09058708e-18) (153.2662487 5.212827384 0) (153.3715482 6.146221925 2.403445187e-18) (154.3446212 6.032705801 2.430907022e-18) (149.4957217 -3.583241144 2.20043975e-18) (150.3961817 -3.84130223 0) (150.1299848 -4.556631949 0) (150.8076065 -2.306829088 0) (150.6460268 -3.089755778 -2.172209187e-18) (149.6846718 -2.821297177 2.82140373e-20) (152.0534955 -3.620788582 2.192843223e-18) (151.2854693 -3.306104577 0) (151.5389861 -2.529644005 -2.217182092e-18) (145.5307464 0.01404947642 -4.329823647e-20) (143.9913627 0.263627593 -2.451596534e-18) (144.2073453 1.605916524 -4.216141057e-20) (143.5198501 -2.380055841 0) (143.7680926 -1.080275625 4.953459591e-18) (145.2646464 -1.387419261 3.824755487e-20) (87.14107327 -7.859248491 7.473575365e-19) (87.28005031 -7.708039826 7.504884669e-19) (87.43284043 -7.77647928 0) (86.96498074 -7.540716709 -7.674642229e-19) (87.12503784 -7.614269988 4.612375945e-21) (86.98435906 -7.77877487 -7.420667776e-19) (84.65859015 -8.113141879 6.951384761e-19) (84.55745489 -8.061768305 -6.908215688e-19) (84.68601425 -7.962586645 0) (84.23117456 -8.268581717 1.487177645e-18) (84.40964775 -8.164397596 2.671839492e-21) (84.51253179 -8.218175764 -1.434757452e-18) (84.21228338 -8.050106625 -7.151266472e-19) (84.30916679 -8.107870064 -7.150113558e-19) (84.12860974 -8.209568738 -7.425537291e-19) (132.2587027 -27.21644645 2.245811625e-18) (132.1177665 -26.75090895 1.477999677e-18) (132.5356522 -26.63045431 0) (131.2548602 -27.09456766 -1.45268808e-18) (131.6805796 -26.97608107 -1.995745359e-20) (131.8237396 -27.40540295 -2.984395074e-18) (133.8094246 -19.43045698 3.783377315e-18) (133.1709416 -18.62491878 -3.407992691e-20) (133.8732408 -18.1380503 1.854338295e-18) (131.7494026 -19.66113577 0) (132.4514097 -19.23874122 0) (133.0654092 -19.97263399 0) (130.5992175 -22.5775726 0) (131.1126762 -23.4121413 3.446847926e-18) (130.3196665 -23.79282233 -6.719407115e-18) (132.7151355 -22.57926289 0) (131.910229 -23.00914013 4.40621692e-21) (131.3685104 -22.17291644 3.773441403e-21) (132.7153758 -24.74864856 1.828093859e-18) (132.3817408 -23.86897818 -1.821463016e-18) (133.2120607 -23.44957909 -1.866674694e-18) (143.1917134 -17.06038931 1.901945628e-18) (143.6286323 -16.63427531 -1.91700287e-18) (144.0455778 -17.09641652 0) (138.815302 -21.57810986 0) (138.6660727 -21.03602844 0) (139.0778976 -20.78470979 -3.441255788e-18) (136.7944876 -16.92086359 -2.007109213e-18) (135.9919246 -16.1382212 2.021983419e-18) (136.6739503 -15.50034257 -2.055019355e-18) (134.5898552 -17.45547886 -1.898186907e-18) (135.2861551 -16.89545559 -1.923539145e-18) (136.0551434 -17.61796313 2.022482978e-18) (88.99839961 -9.862716812 1.087450207e-22) (89.05420089 -9.905869626 -5.666629708e-19) (88.89192427 -9.964641778 -1.927241049e-21) (88.32829909 -9.458137614 5.953417381e-19) (88.45778846 -9.410464762 -5.847584855e-19) (88.51033958 -9.449328556 -4.897038168e-22) (89.26405123 -9.076013213 6.755400175e-19) (89.40473106 -8.952198325 6.660860394e-19) (89.52833542 -9.027266904 -1.332799895e-18) (89.15986593 -8.786353769 4.828988235e-21) (89.2828058 -8.859097166 -6.716208152e-19) (89.14305658 -8.989920441 -4.1847137e-21) (90.55082636 -10.77230426 0) (90.4003244 -10.84197762 -5.152077117e-19) (90.3354174 -10.79036685 1.033150824e-18) (90.53615945 -10.9508354 5.194417653e-19) (90.46724657 -10.89730649 -1.034152085e-18) (90.61978881 -10.83198957 0) (90.03031352 -11.02023122 1.638195384e-18) (90.28102474 -10.96114993 5.307208141e-19) (90.34692745 -11.01763017 -5.360236422e-19) (91.80884053 -10.31833053 -1.171913834e-21) (91.6572403 -10.23301148 1.136312488e-18) (91.78035159 -10.0841974 -5.686884269e-19) (91.37724638 -10.54380811 -1.208922671e-18) (91.52652767 -10.38817977 5.900899375e-19) (91.67801694 -10.4793581 4.11211386e-21) (91.23507386 -10.20187556 5.202630555e-21) (91.3787543 -10.29537249 -5.959627915e-19) (91.22885614 -10.44812711 -6.154815258e-19) (107.8297123 -29.78976238 -1.064615764e-18) (108.1954366 -29.03787145 -1.062909833e-18) (108.8650234 -29.40112313 0) (106.8727869 -28.41333385 7.920550492e-21) (107.5168845 -28.81067476 5.328779636e-19) (107.1535526 -29.49810118 1.656812688e-20) (110.7183111 -30.75578338 -7.240000066e-19) (110.9982861 -30.005348 -6.947909876e-19) (111.725228 -30.17618916 0) (109.5754157 -29.57468259 6.145575655e-19) (110.2800463 -29.79806805 0) (109.9785214 -30.54568464 6.367796863e-19) (110.7291103 -28.4030516 1.327723655e-18) (110.5499038 -29.07873008 -1.954995929e-18) (109.8537194 -28.89464358 -5.7804068e-19) (91.93879899 -12.40001289 4.558075156e-22) (92.63416953 -12.21952262 -6.74829078e-19) (79.69665124 -10.78534078 9.127924305e-19) (94.1594909 -12.64926887 0) (93.90457427 -12.92496611 0) (93.66842439 -12.6123995 0) (94.68052847 -11.42815707 0) (94.4746627 -11.37993314 2.282813341e-19) (94.55119444 -11.19356916 0) (94.27798453 -11.80173335 0) (94.38681019 -11.58924882 -2.245153301e-19) (94.59703319 -11.63924855 8.482451356e-19) (93.97394525 -11.50540135 -3.417559436e-21) (94.17924437 -11.55141594 -9.633609846e-19) (94.0626748 -11.76602196 1.000360691e-18) (46.81477991 -14.64260334 -9.964771054e-19) (49.32539095 -14.58651687 -2.237317288e-19) (60.77207485 -16.67761547 0) (43.29333435 -5.152491616 -7.538829301e-19) (33.63784949 -9.747792076 4.736420225e-19) (28.58944506 -9.399534262 -3.397760397e-21) (82.19366637 0.03985060153 -1.865007971e-20) (82.51703028 -0.8219972214 -1.1899274e-18) (81.47834844 -1.224712637 2.415987662e-18) (80.44963299 2.009050655 0) (81.85630129 2.079745629 1.186499433e-18) (81.96344517 1.010096618 -1.182209087e-18) (72.67501048 0.6396850967 0) (73.29072588 -0.5848105073 0) (71.97314604 -1.379051496 2.96906001e-18) (75.64881467 0.5006680698 0) (74.42801583 0.01867326296 0) (73.93917817 1.095139202 -1.37390446e-18) (75.62899362 -1.78531755 -1.323972828e-18) (74.99786737 -0.9544956883 0) (76.09646525 -0.4302602226 0) (73.51566582 2.330426575 0) (73.28224448 3.701562195 0) (74.86472116 3.703537968 1.352552971e-18) (69.81819781 3.281769551 -3.046622282e-18) (71.72909324 3.569634918 3.023366788e-20) (72.14870394 2.047302365 0) (82.12759741 -6.437044586 0) (82.44671095 -6.532891995 -1.954225473e-18) (82.29536839 -6.84771072 0) (82.77279539 -5.886225492 -1.969410031e-18) (82.60138352 -6.202219407 7.210614442e-21) (82.28694321 -6.087765348 0) (83.16848805 -6.422955722 1.02050996e-20) (82.89460436 -6.319437367 1.088135968e-20) (83.057612 -6.041926293 1.010387047e-20) (81.43723401 -5.24446639 -2.137741642e-18) (81.19739417 -5.662607692 1.057357883e-18) (80.77823678 -5.494000892 -1.085089662e-18) (81.94963609 -5.955378535 -2.044676744e-18) (81.58680176 -5.82155359 1.02965427e-18) (81.80023973 -5.459549827 0) (81.25715763 -6.652207442 0) (81.40003516 -6.225217517 -5.075994444e-21) (81.77891552 -6.335360312 -1.029104257e-18) (120.0537158 -21.95892245 -1.294940203e-18) (119.4677444 -20.70314169 -1.27729183e-18) (120.5998262 -20.35317329 -1.541778762e-20) (114.9456995 -33.33139042 -8.331635098e-19) (115.3861609 -32.9841102 0) (115.7495454 -33.06059799 -8.474439447e-19) (114.6146837 -32.92701082 -7.932176362e-19) (114.993875 -33.01079254 -8.04317007e-19) (114.630957 -33.33478178 7.975665687e-19) (101.733909 -26.71351571 -3.487983467e-19) (101.1322828 -27.2189617 -3.055155553e-19) (100.6208259 -26.68689186 3.58434876e-19) (102.2511838 -28.30720737 2.559291331e-19) (101.6677168 -27.77065338 -3.769010712e-19) (102.297007 -27.16246199 -2.024085937e-19) (100.1600504 -28.91462603 0) (100.9669363 -28.33547849 5.833979125e-19) (101.5642641 -28.89911934 -2.004988128e-19) (105.2078859 -28.45763546 -3.64388908e-19) (105.6114362 -27.69413131 8.100551717e-19) (106.2229771 -28.15189533 -4.0516688e-19) (78.35573176 -5.107465364 1.226424686e-18) (78.96786121 -5.385581389 1.190832822e-18) (78.67106785 -6.016100957 0) (79.73120762 -4.245666956 0) (79.3244781 -4.788967622 0) (78.77040037 -4.477173016 -2.40385102e-18) (80.32795322 -5.290077636 1.342555117e-20) (79.84344095 -5.064386316 -1.129108308e-18) (80.1935926 -4.588524299 0) (77.66301422 -2.496293476 -1.248221837e-18) (76.93327986 -3.127048946 1.293218929e-18) (76.28081066 -2.518273073 2.461950056e-20) (78.18269855 -4.09308069 -2.469557981e-18) (77.56887605 -3.658524272 3.743585536e-18) (78.19495437 -3.08263224 -1.965486638e-20) (76.47766183 -5.133166595 1.301785712e-18) (77.00415276 -4.355824225 -1.265826254e-18) (77.69908689 -4.768560323 -1.24302907e-18) (138.7221167 34.92667693 2.272344722e-18) (136.0843439 36.43589277 -3.104302241e-18) (137.6770449 39.49868831 -1.127212479e-18) (133.5312445 31.51242172 -2.057440938e-18) (134.7178732 33.79187014 -2.022991729e-18) (137.0524879 32.48570951 -2.285062044e-18) (129.6419288 35.67140922 0) (132.220132 34.90489134 1.060157557e-18) (131.3412969 32.21585615 9.543558129e-19) (137.789039 25.64342161 7.360519226e-20) (136.2378486 23.95260492 0) (134.7986342 25.48208693 4.025264102e-18) (138.8579146 21.25634384 -4.523249534e-18) (137.5981825 22.76801006 0) (139.1940242 24.17048991 -4.518172039e-18) (121.4980561 -27.38086253 3.972008173e-20) (122.2263375 -27.35081692 -2.510718757e-18) (122.3622811 -28.06623221 0) (123.4859697 -26.16987031 -2.96496913e-20) (122.7233623 -26.34927166 -2.584041245e-18) (122.5438731 -25.50751813 -1.249330742e-18) (120.1137612 -28.32395343 -1.165183122e-18) (120.0150001 -27.56174077 1.176219533e-18) (120.742923 -27.5608876 3.967766851e-20) (127.5626098 -25.88837311 1.515388089e-18) (128.3492287 -25.60776906 -1.601404243e-18) (128.6079893 -26.4457146 0) (127.5974181 -24.0342186 3.039394156e-22) (128.0013316 -24.79276554 0) (127.2316421 -25.06877816 0) (129.5412916 -24.15964658 3.276384328e-18) (128.7652926 -24.47915428 0) (128.355781 -23.64480136 0) (124.6630524 -25.06563993 -2.706309452e-18) (124.9719333 -25.79827846 3.089838287e-20) (124.2208424 -25.98605043 1.349537561e-18) (126.477025 -25.33873853 -1.458020149e-18) (125.7173567 -25.56957982 0) (125.3988676 -24.75589052 0) (126.2187396 -27.19389036 0) (126.0078269 -26.38069354 -4.197227521e-20) (126.7829384 -26.14366368 -4.23570055e-20) (98.49083389 -31.72438069 -5.945649946e-19) (99.75269866 -31.50285842 2.995580154e-19) (100.0029394 -31.81898719 2.273750927e-19) (99.20079381 -30.95588244 7.651966649e-20) (99.44856122 -31.28585631 -9.778257149e-20) (98.34174432 -31.48306517 -8.955299853e-20) (76.26565202 29.36603656 9.13932717e-19) (77.38298329 32.48496575 9.06035477e-19) (80.10105389 31.07874889 -8.084031505e-19) (69.74664818 34.55446466 1.970857585e-18) (74.0102161 33.72194965 0) (73.19814325 29.71162197 2.425254992e-18) (78.95085949 42.28909782 0) (75.71779284 38.01507818 0) (71.39957271 40.07134109 -1.91523364e-18) (73.20273804 25.97804727 -3.148142471e-18) (73.53478271 22.81757848 2.650504803e-19) (71.0188452 21.95939636 3.03797586e-18) (59.91351415 18.27769455 0) (63.48071242 15.75788538 3.200879892e-18) (61.78014674 12.14630078 0) (68.38824927 20.55069116 -8.236005362e-19) (65.79662766 18.50141439 1.679100531e-18) (63.13945801 21.6403636 0) (70.12495491 14.19275461 2.817436805e-18) (68.15974855 16.14474162 -4.57648086e-18) (70.21623141 18.02874713 1.353654451e-18) (101.7780795 43.24654184 0) (104.8174719 41.97631762 0) (103.5249905 39.95303026 0) (109.1793071 47.25668532 0) (106.6504325 44.4786758 0) (103.2479357 46.4290762 0) (111.5638276 40.8785346 1.59537455e-18) (109.4169867 42.36173289 0) (111.841067 44.58885216 0) (88.28565097 53.50536952 0) (89.00966995 48.21153114 -8.287843675e-20) (83.49092555 45.91873156 -5.036621432e-19) (99.2318256 47.99601585 0) (94.33440089 48.68491094 0) (95.13680849 53.7493812 0) (94.4635269 41.05849243 0) (94.10371767 44.49176326 0) (98.41415644 44.24884977 0) (150.5301873 41.45492772 0) (148.8355298 39.7954294 0) (147.3026099 41.41691238 0) (151.416566 36.71715014 0) (150.1670629 38.39309164 0) (151.9695628 39.72418972 0) (142.2614102 58.62771348 0) (138.6302603 59.81506859 1.035254312e-18) (140.1565912 64.02476321 2.311458269e-18) (137.1305837 53.74018766 -2.972483693e-18) (137.9237955 56.14186176 -5.081342825e-20) (140.9314305 55.33737102 0) (145.6865351 42.68215543 0) (143.9740895 44.37914458 0) (145.5137618 45.99777136 0) (128.7833446 -28.45478319 0) (128.710379 -27.99139622 -1.319710584e-18) (129.1223977 -27.90362355 0) (127.9070622 -28.22216787 1.289340424e-18) (128.2886144 -28.17298351 2.613958296e-18) (128.3651427 -28.5810867 0) (89.61065124 -10.57572438 1.177353113e-18) (89.80408663 -10.52808685 0) (89.86055673 -10.5747889 5.646140794e-19) (113.5630291 -33.22176772 -7.587245784e-19) (113.8400107 -32.8358295 7.627302e-19) (114.2176087 -32.93465963 -7.628983207e-19) (113.0747337 -32.71555464 7.290872834e-19) (113.4407371 -32.83897632 -7.301213145e-19) (113.207568 -33.18521788 7.327690123e-19) (93.08715093 -12.13284822 4.252821455e-19) (93.232966 -12.03305642 4.185445082e-19) (93.34298433 -12.05980938 -2.81406896e-21) (93.02601954 -11.95785035 4.318968958e-19) (93.12981765 -11.98419607 0) (92.98269001 -12.08953856 -4.227444443e-19) (76.38028569 -7.517302956 -1.034275426e-18) (76.48582521 -7.04829863 3.042059226e-21) (76.94844206 -7.094981938 1.028738253e-18) (75.48085089 -6.813718661 1.100260685e-18) (75.99952983 -6.898088197 0) (75.86622416 -7.431751102 -7.572595205e-21) (78.15413472 -7.682797447 9.496922047e-19) (78.18154585 -7.299278137 -9.427503662e-19) (78.54864945 -7.307169646 9.3960388e-19) (77.3821264 -7.201803552 -9.932779143e-19) (77.79580197 -7.222797117 -9.718331508e-19) (77.75303302 -7.655531103 -9.617225586e-19) (59.22684414 0.7293332773 0) (60.22062449 -0.9483470673 0) (58.25793739 -2.171540549 0) (63.5444935 -2.89496017 1.584316401e-18) (62.63353057 -1.526469642 -4.817091038e-18) (64.23156616 -0.8903377789 3.149506064e-18) (55.24160499 4.684767967 0) (57.96449233 4.889761113 0) (58.43424429 2.803559926 0) (83.19978363 -7.688143317 -9.360946359e-19) (83.33312124 -7.591575213 5.436848412e-19) (83.42249634 -7.624869156 -1.823390016e-19) (83.1340258 -7.54552573 0) (83.23438539 -7.561312834 0) (83.11112596 -7.661556182 0) (83.90266369 -7.692873124 -6.918340922e-19) (83.81170673 -7.649903443 -2.164372756e-21) (83.93105234 -7.556996252 -6.881813587e-19) (83.52401708 -7.834828358 0) (83.68057651 -7.743318121 2.627548071e-21) (83.7675783 -7.786913133 1.416409223e-18) (83.50783181 -7.662277034 -1.066429454e-18) (83.59363871 -7.701767454 -7.063534925e-19) (83.44117008 -7.795008936 -7.231669465e-19) (81.19909786 -7.543303402 2.753359594e-21) (81.28140086 -7.367077844 -7.813475725e-19) (81.45283839 -7.351714102 4.942467583e-21) (80.91363881 -7.376854068 7.930284469e-19) (81.10335028 -7.355430954 7.872203679e-19) (81.0222728 -7.556325189 5.293782144e-21) (81.82070659 -7.514325903 7.976914166e-19) (81.91447977 -7.376292865 7.817153706e-19) (82.05665111 -7.37280476 7.785404983e-19) (81.61365917 -7.36677175 2.312529361e-21) (81.76830248 -7.357553418 7.830364006e-19) (81.67731588 -7.514477556 -7.920813283e-19) (149.4067692 -9.456922516 -5.076832874e-18) (148.8243702 -9.084333808 1.093593438e-18) (149.1688066 -8.45984078 3.27349541e-18) (146.5721928 -12.81966484 0) (146.9614114 -12.26995413 -3.974939168e-20) (147.4799741 -12.65566498 2.214768706e-18) (153.8451469 3.199202573 0) (152.988713 3.375239059 -4.788425362e-18) (153.1369135 4.267083549 2.455617269e-18) (151.7953022 -1.720502594 2.261237937e-18) (152.0145329 -0.9370977053 -4.675731035e-18) (152.7567148 -1.180016033 1.41899782e-17) (134.0382013 -26.52836317 1.591184967e-18) (133.8590217 -26.03616005 3.115784748e-18) (134.3151652 -25.83633643 -1.564285158e-18) (132.9661456 -26.39819343 0) (133.4083808 -26.22103109 0) (133.5745119 -26.70040706 1.552542299e-18) (133.1376102 -25.336983 0) (133.2728717 -25.75837725 0) (132.8121582 -25.95211363 2.985907465e-18) (123.0356977 -31.02929138 0) (123.4249157 -31.02943194 0) (123.3003457 -31.39513544 0) (124.2782658 -30.42768464 -1.14988381e-18) (123.8398223 -30.50123117 1.172261736e-18) (123.8813379 -30.03810364 0) (122.1519985 -31.55362315 1.077200196e-18) (122.2300115 -31.13476412 -1.096032863e-18) (122.6273035 -31.13348582 2.210897729e-18) (107.019226 -33.66222808 5.30411662e-19) (107.8673032 -33.36079657 -5.446784153e-19) (108.190826 -33.52906898 5.725153276e-19) (93.54975042 -12.27718593 -4.147583054e-19) (93.68817807 -12.16683649 -4.093897135e-19) (93.81138859 -12.17612129 0) (93.45382725 -12.10678368 -2.513099335e-21) (93.57054435 -12.12783951 4.064872623e-19) (93.42629628 -12.24496724 0) (94.04869254 -12.31685182 7.663254133e-19) (94.16014251 -12.21461988 -1.877945442e-18) (94.26298979 -12.20374941 3.520371808e-19) (93.93384512 -12.20136555 3.987486709e-19) (94.05395781 -12.19686867 -2.437735901e-20) (93.93559988 -12.31692354 5.005498423e-19) (94.19484732 -29.78486555 2.490790635e-20) (94.09622364 -29.50394208 -5.008719059e-20) (95.6328256 -29.39608363 3.773115306e-20) (87.88425651 -28.67111615 0) (91.71399097 -29.25111079 -3.592314634e-22) (91.4839067 -29.51980044 1.863716502e-20) (96.5751292 -9.980246344 0) (96.46236087 -10.33702349 -9.098747775e-19) (96.10510428 -10.33653889 4.642407888e-19) (96.65490486 -11.09643095 -4.443010576e-19) (96.73397752 -10.69875856 4.250361502e-19) (97.09764231 -10.65309859 -8.422670906e-19) (95.41887654 -12.34802718 4.441839197e-19) (95.40105124 -12.63808598 -1.369550714e-18) (95.03411984 -12.55606695 -8.484189716e-21) (96.11554407 -13.05706761 0) (95.61857185 -12.65768673 4.533795799e-19) (95.70844945 -12.42341854 0) (78.22850205 -10.00782538 0) (93.27878153 -13.05025639 0) (93.68619004 -12.54938646 -4.355211724e-19) (98.11532611 -24.49791556 3.083883982e-20) (98.48185857 -25.22637344 -5.318995327e-20) (97.6332119 -25.55174828 8.946725161e-20) (55.37784996 46.03884575 5.673258261e-19) (60.43461726 45.13666213 0) (59.04762834 40.73677803 0) (65.94644988 56.31792377 0) (61.77137693 51.26795007 0) (56.9310137 53.01376585 0) (59.62110001 35.42933145 2.256429692e-18) (59.34326159 32.10176852 3.336161573e-19) (56.27769704 30.14967316 -3.087347158e-18) (43.32278779 25.85400571 -3.508866624e-18) (47.38488394 22.01001602 1.705674259e-18) (45.11771207 17.60728474 -1.775660918e-18) (53.30461218 28.16971893 1.549994839e-18) (50.27304392 25.55919979 -1.492849339e-18) (47.27116259 29.93156974 -3.140515761e-18) (55.68054061 19.63997052 0) (53.17820212 22.41476111 0) (55.76566611 24.84157698 0) (103.1260139 67.87626404 0) (100.6912767 65.03594377 0) (96.21339232 65.92105764 0) (75.99412048 71.37214704 0) (77.93069151 65.06527389 6.377626977e-20) (71.10112041 61.99619911 -5.446300623e-19) (90.97624229 67.12553987 0) (84.63184938 66.8405814 -1.999305753e-18) (84.3331545 72.78819402 1.156729454e-18) (87.93224595 -9.16611472 -1.173585019e-18) (88.041093 -9.113273804 0) (88.09632813 -9.140452681 -5.819779694e-19) (89.46871325 -10.23848538 5.661301658e-19) (89.52673733 -10.27715591 -5.690390996e-19) (89.35463752 -10.33169917 0) (70.88817112 -15.43168191 4.0365431e-19) (67.31660642 -14.91217205 0) (51.25872812 -8.90999807 0) (87.80127373 -18.4545166 7.000615189e-19) (81.00031829 -16.75253505 -3.719453772e-19) (82.16151089 -16.15129884 -3.946755757e-19) (77.38865658 -17.91942549 3.878507068e-19) (79.21818225 -17.21861086 0) (87.12504264 -19.11922033 0) (153.3248424 13.2586985 2.45182387e-18) (153.1945635 14.3357663 0) (154.4672452 14.47309011 -2.461007459e-18) (142.6571479 -18.47734928 1.90858864e-18) (142.2968518 -17.96788239 -1.86687265e-18) (142.7418066 -17.57127862 -3.776767859e-18) (139.5392579 -20.37861285 1.739337419e-18) (139.9960745 -20.06536115 3.544525893e-18) (140.283215 -20.53727431 1.795074049e-18) (88.74371628 -9.818339457 -1.448418358e-19) (88.89187759 -9.768208807 5.712977457e-19) (88.94519193 -9.80917125 4.935077131e-22) (88.56355121 -9.498970011 -5.844441328e-19) (88.61850052 -9.538607101 -5.836359975e-19) (88.48336757 -9.593505933 5.96897948e-19) (119.860046 -31.32704907 -2.099590466e-20) (120.2326432 -31.37164157 9.85729817e-19) (120.1882424 -31.73218232 0) (94.28906398 -12.22909276 5.29233798e-18) (94.29913134 -12.20370279 0) (94.13188932 -12.24001804 0) (91.92710874 -27.17874552 0) (91.93268096 -27.58362009 0) (89.68964465 -27.36335145 0) (68.06257352 -20.81112521 -2.53797528e-18) (76.82770615 -22.2947924 1.191027189e-18) (78.5423029 -23.24696203 9.97181894e-19) (74.41733606 -20.963679 1.785254676e-19) (74.20015323 -21.43057901 -2.939169544e-18) (65.86001324 -19.63699016 -9.016506665e-19) (118.4194416 24.15867535 -7.042635086e-20) (118.3235433 21.67900067 -1.25866498e-18) (116.3493147 21.76106607 1.087050123e-18) (115.7290127 -27.63342659 3.751126579e-20) (116.4101607 -27.78068104 -9.255772265e-19) (116.4485786 -28.43980576 -9.52790367e-19) (120.8804355 41.60900303 0) (121.5385268 38.64747573 6.795088859e-19) (119.0736957 38.52437969 -1.19684363e-18) (99.98464601 0.1180848257 0) (99.97731935 0.1520428684 -2.034550189e-21) (99.99809314 0.05276295815 -2.085854304e-21) (100.0313579 0.2563675943 1.820779451e-21) (100.0207901 0.2079152722 3.696500803e-21) (99.99946892 0.0714556307 5.488589107e-21) (100.2073147 1.034959081 -3.027967302e-21) (100.2167127 0.9495761997 -2.16017228e-20) (100.1562366 0.7944388855 1.230474298e-20) (100.6732256 1.714950879 0) (100.6394115 1.55928077 -1.277348485e-20) (100.5108083 1.42603639 3.814489799e-20) (101.381106 2.254220478 0) (101.295358 2.040119423 0) (101.1097772 1.95103203 0) (102.3017571 2.539774661 3.910456241e-20) (102.1499076 2.276343895 -1.587001704e-20) (101.9213915 2.265591019 4.57270272e-20) (103.3880749 2.474628219 8.758216e-21) (103.1215531 2.168450095 3.471100099e-20) (102.8712069 2.254275761 -6.783002073e-20) (104.5062905 1.927767496 1.913223574e-20) (104.0911382 1.653319707 -1.936697488e-20) (103.8546826 1.845563922 -3.762934541e-20) (105.4219302 0.8685915063 0) (104.8799582 0.6983428219 6.552947629e-19) (104.7132511 0.9914611301 0) (105.8618061 -0.5766809304 0) (105.2468117 -0.5919517723 6.67924381e-19) (105.2026342 -0.2443864293 8.10420984e-20) (105.6746726 -2.142646233 6.977566273e-19) (105.0644265 -1.988797325 -2.107252335e-20) (105.1615812 -1.651856095 0) (104.8921179 -3.540416465 0) (104.3580794 -3.252888888 -6.280174372e-19) (104.5758023 -2.981742203 2.773302314e-19) (103.6992857 -4.575257566 0) (103.2782885 -4.212686193 4.081333934e-21) (103.5720737 -4.034856416 -1.455906839e-19) (102.3156481 -5.173804009 -3.853044261e-19) (102.0148945 -4.807732241 2.027703968e-20) (102.3421318 -4.72528659 -1.151596885e-19) (100.9233608 -5.39932282 -5.507937505e-20) (100.7130145 -5.047889976 4.802942799e-20) (101.0297104 -5.047817458 1.210006747e-19) (99.65335318 -5.334399825 0) (99.5172605 -5.011520945 0) (99.80385458 -5.068418727 3.106754317e-21) (98.55548315 -5.066922431 0) (98.46494731 -4.785171117 0) (98.71329302 -4.876722032 0) (97.63882826 -4.694872601 0) (97.57224315 -4.458430336 0) (97.78029379 -4.564728785 0) (96.89014268 -4.277075788 0) (96.83295831 -4.08162993 0) (97.0040387 -4.194141107 0) (96.28112465 -3.851242354 0) (96.22410462 -3.692291211 0) (96.36507714 -3.8025 0) (95.78292391 -3.442450534 0) (95.72038341 -3.314144305 0) (95.83708616 -3.4178166 0) (95.37276219 -3.06419667 0) (95.30203008 -2.959167243 0) (95.39921158 -3.054445062 0) (95.03331072 -2.721360185 0) (94.95429944 -2.633628133 0) (95.03534873 -2.719746717 0) (94.74962007 -2.414078355 0) (94.66213824 -2.340110485 0) (94.7304605 -2.417059668 0) (94.51037359 -2.141165054 0) (94.41457396 -2.078299307 0) (94.47263005 -2.146523736 0) (94.30696759 -1.900534527 0) (94.20326791 -1.84671696 0) (94.25294887 -1.906829896 0) (94.13274832 -1.689670306 0) (94.02168436 -1.643286925 0) (94.06447891 -1.695966345 0) (93.9825033 -1.506012255 0) (93.86464117 -1.465772971 0) (93.90174173 -1.511690969 0) (93.85204001 -1.347093141 0) (93.72793046 -1.311948367 0) (93.760307 -1.351735375 0) (93.73793896 -1.210666707 0) (93.60809935 -1.179741037 0) (93.63656005 -1.213974809 0) (93.63725933 -1.094765467 0) (93.50205003 -1.067194559 0) (93.5274024 -1.096410377 0) (93.54780918 -0.9979131925 0) (93.40768499 -0.97260431 0) (93.43028738 -0.9972443655 0) (93.46772258 -0.9183826172 0) (93.3233234 -0.8949089293 0) (93.34345818 -0.9152652579 0) (93.39460051 -0.8545120556 0) (93.24591781 -0.8331933751 0) (93.26460674 -0.8495355711 0) (93.32692574 -0.8057865138 0) (93.17414458 -0.786201885 0) (93.19155121 -0.7988443066 0) (93.26324595 -0.7713959463 0) (93.10657666 -0.7531714343 0) (93.12311662 -0.7622852632 0) (93.20217073 -0.7506642402 0) (93.04241754 -0.734001375 0) (93.05839869 -0.7392052654 0) (107.1274669 23.29934356 -9.375641017e-19) (108.4514727 24.72060011 1.274576529e-18) (109.7463109 23.24594373 -1.195328442e-18) (91.22047112 -9.966061878 0) (91.08034867 -9.873996066 1.195165842e-18) (91.2097665 -9.747706581 -5.9773872e-19) (98.63456331 -11.39771028 3.298541407e-19) (98.29587971 -11.37513807 0) (98.26115231 -11.16887534 3.675493254e-19) (96.51799929 -14.72208809 -2.568263484e-20) (95.33199387 -14.24773709 -2.392243419e-19) (95.77460338 -13.39920613 4.58147343e-19) (94.17051676 -21.07064771 0) (94.3233475 -20.36891932 -2.437045905e-19) (95.22359134 -20.48317051 -1.74863178e-19) (142.0472569 -3.302933209 -2.290206649e-18) (141.7105587 -4.439737839 0) (140.3631736 -4.094139981 2.213041298e-18) (141.0450632 -0.7484318523 0) (142.5533471 -0.9128686307 -1.525652928e-20) (142.3263919 -2.104954447 -2.354630991e-18) (109.0792757 -20.73096814 6.646826843e-19) (109.9873746 -21.11279479 7.103546089e-19) (109.9783686 -22.0557256 -1.355439401e-18) (94.17716779 21.03578787 4.792389034e-20) (92.78714097 20.15297854 -8.059316215e-19) (91.68288687 21.47345125 3.305749453e-19) (97.12705133 24.39704517 -7.16783162e-21) (97.42820503 22.46200765 0) (95.67719874 22.03909584 2.634949941e-19) (81.67673879 7.376781635 2.275961148e-18) (82.95757664 6.583249353 -2.232227242e-18) (82.37009551 5.471702892 0) (83.00297538 13.18828055 -5.202380007e-19) (84.62256151 13.59193561 0) (85.00071228 12.2805567 0) (87.34064139 15.90870772 0) (85.74631986 15.70790008 -4.337556428e-19) (85.93802772 17.72359346 0) (114.5659426 21.24265779 -9.516765634e-19) (112.887243 21.08034015 -4.34766047e-19) (112.2810412 22.38144493 0) (123.8885789 18.2334519 0) (125.774342 17.23934139 0) (124.4670188 15.36573162 -1.497650831e-18) (121.3253095 -17.21107264 -2.650331137e-18) (122.1014079 -18.26035133 0) (121.0264051 -18.74706674 -1.315407098e-18) (124.2357241 -17.0485263 3.268391216e-21) (123.1670803 -17.68285302 1.494754193e-18) (122.3272893 -16.53476736 0) (92.40331097 -8.324102832 7.637453189e-21) (92.69391846 -8.114058104 6.879198801e-19) (92.94345705 -8.207024087 6.674278079e-19) (112.9212543 -21.42784348 -1.753329473e-18) (113.9488163 -21.57934294 -6.470511643e-20) (114.2059188 -22.6154536 0) (94.5781758 -9.263141844 -5.7912768e-19) (94.82171602 -8.986630879 -5.773285822e-19) (95.11094612 -9.033054151 -1.101860206e-18) (94.25759431 -8.808212843 -5.978898896e-19) (94.53881916 -8.874882593 2.341443868e-18) (94.28381855 -9.167756691 -5.95103522e-19) (96.53951684 -9.334691477 -9.566590093e-19) (96.85646748 -9.290230615 0) (96.6964717 -9.649059399 -9.184951677e-19) (95.83029948 -12.14500083 0) (95.94861957 -11.90165684 0) (96.19000319 -11.86193647 0) (99.33906658 -18.17522478 0) (98.62500459 -18.29981491 -6.205123424e-20) (98.57001956 -17.45161353 1.285017848e-19) (85.02863898 -6.725342456 -8.499389414e-19) (85.20307674 -6.52966712 8.633005493e-19) (85.39497535 -6.628097428 0) (84.80168746 -6.294852398 -2.651048667e-18) (85.00685703 -6.396383707 1.955634191e-21) (84.83216324 -6.611965218 1.726404563e-18) (128.9834982 -21.34454287 1.59598359e-18) (129.6333935 -21.08267139 0) (130.1096378 -21.78764978 1.679254066e-18) (104.1761 -21.28985587 0) (103.5067982 -20.68672099 5.466605136e-19) (103.8419555 -19.84820331 -1.0671058e-20) (106.1124969 -21.57117601 0) (105.7891854 -22.50266362 -4.059912244e-19) (104.941849 -21.90857716 -3.512401805e-19) (70.85727958 11.05405365 1.515024692e-18) (72.63431954 10.07713029 2.817705978e-18) (72.00935499 8.458831071 3.037779859e-20) (86.7292266 -4.24640726 9.766919305e-19) (86.20429761 -4.578310468 2.618076556e-23) (85.87113676 -4.236143261 -2.033185678e-18) (85.52965641 -2.623341 -2.711057067e-21) (84.82720425 -2.964166961 -1.060751861e-18) (84.47347914 -2.454076395 0) (85.52946407 -3.847620675 1.04162497e-18) (85.17991293 -3.435990676 1.59888548e-20) (85.82604815 -3.114807671 1.037639684e-18) (93.43419145 -8.848851522 -4.066663034e-21) (93.71241741 -8.594346884 0) (93.98476517 -8.678011778 6.068247556e-19) (93.18962765 -8.355622108 -6.500241095e-19) (93.45089653 -8.450091432 -6.415574456e-19) (93.16571905 -8.722611048 6.379998354e-19) (95.7801947 -9.575869961 -5.045789889e-19) (95.97561922 -9.26979761 5.208100365e-19) (96.25207893 -9.287629824 4.823493978e-19) (95.401303 -9.124756453 5.429353319e-19) (95.70108403 -9.162842426 -4.938775303e-19) (95.49510196 -9.479047321 0) (82.63416835 -9.446251279 -6.346329441e-19) (95.07788112 -11.75423174 3.485753911e-19) (95.51568225 -11.06849476 0) (92.98299047 -14.02354028 -9.908442828e-21) (91.36183366 -14.06295171 2.952384635e-19) (76.56156661 -11.39124584 3.13080842e-19) (93.36392586 -18.74743514 0) (93.14212782 -19.38206084 -2.524730313e-19) (91.4630534 -19.03805858 -3.295565359e-19) (84.20746319 -6.272401816 -9.092418351e-19) (84.38087426 -6.067149805 0) (84.59497105 -6.158676154 1.784267188e-18) (140.0795433 -5.221304457 2.266394103e-18) (141.3110743 -5.559123161 -4.59413264e-18) (140.8034822 -6.578393733 0) (142.8546713 1.647296937 0) (142.7656005 0.3455093464 2.364543368e-18) (141.1489812 0.4552079708 0) (84.49351525 -0.281354223 7.460753404e-21) (83.50741178 -0.5025320476 -1.133881718e-18) (83.26947423 0.2848466434 2.254212002e-18) (84.128727 -1.868453329 0) (83.8013944 -1.229671483 0) (84.71012162 -0.9692260179 1.087335135e-18) (84.35767276 2.824277324 1.980873163e-20) (83.10628439 3.085142138 -2.241280879e-18) (83.2930777 4.067106594 2.359985757e-20) (83.12098083 1.161579574 -1.136071765e-18) (83.0770803 2.089876993 1.136983963e-18) (84.25970029 2.000325731 1.068397191e-18) (119.9598849 -19.16875663 2.532637212e-18) (118.8614522 -19.56938531 -1.221478032e-18) (118.4011862 -18.3234213 -1.145004621e-18) (72.3609303 19.4340672 -2.47452942e-18) (74.51052223 20.30445112 0) (75.05968206 18.44056372 -1.459400709e-18) (78.08946511 24.07288955 -1.375496315e-18) (75.88561661 23.37892374 -2.596081423e-19) (76.06996078 26.16122616 0) (97.44262898 -10.61247099 0) (97.79137454 -10.46027316 9.080862811e-21) (97.76413402 -10.88402978 3.82063563e-19) (97.13837295 -10.29337186 8.413994997e-19) (96.81012213 -10.32155912 4.450871715e-19) (96.89834202 -9.993075175 0) (97.18008454 -15.73576916 1.606737566e-19) (97.7366182 -15.85102026 1.380207197e-19) (97.71525142 -16.58263093 1.23287413e-19) (100.3292038 -18.74122138 7.002504754e-20) (100.7783269 -18.31809169 0) (101.2375841 -19.11650403 -2.733800344e-19) (119.5580536 17.82162238 -1.196053347e-18) (120.025556 19.26607305 0) (121.9567131 18.97272449 0) (110.9701585 -22.28262853 -2.913354524e-20) (110.9282368 -21.19275641 -7.108140393e-19) (111.8902413 -21.44514283 0) (124.5698243 34.02131713 0) (124.5378649 36.00078091 0) (127.0539356 36.09799243 0) (99.74761433 0.8264300934 3.686388321e-21) (99.75765298 0.7455694825 -1.511869941e-20) (99.67784735 0.8365137503 -1.461836724e-22) (99.87365682 0.5381343396 0) (99.8231425 0.6379307972 -3.707437147e-21) (99.82478166 0.7088677432 9.81793481e-24) (100.3970206 1.265417082 0) (100.2973318 1.116942634 1.237606087e-20) (100.3015537 1.215938395 0) (99.32679217 1.218697038 -3.971102679e-23) (99.37769452 1.094309423 7.659640304e-21) (99.25731398 1.150050594 1.579379504e-20) (99.58780216 0.9346711732 1.140063714e-20) (99.4871165 1.010512476 -1.949541818e-20) (99.44800015 1.131992103 0) (100.9396769 1.820868567 1.063934764e-19) (100.7807632 1.706232312 0) (100.8261379 1.867704488 0) (98.73918546 1.437165155 -2.922356838e-21) (98.8430916 1.278708346 -6.528549169e-20) (98.68991601 1.277114185 3.229782887e-20) (99.12979736 1.214359384 1.621738e-20) (98.99008515 1.243775523 -1.611034986e-20) (98.89983086 1.403227024 -6.430915259e-20) (101.7001765 2.1977762 -3.70573643e-20) (101.4885221 2.145084445 3.656586466e-20) (101.5911385 2.354852787 0) (98.04701057 1.40720317 -8.005898323e-20) (98.21944778 1.229555025 2.670996814e-20) (98.06215695 1.16245944 0) (98.53575045 1.28499957 3.390025668e-20) (98.37650139 1.253576974 8.787084546e-21) (98.22258721 1.441703545 -8.771338595e-21) (102.6265293 2.269984189 -6.563684563e-20) (102.3829926 2.305770975 3.224045213e-20) (102.560367 2.562370983 -6.447192705e-20) (97.37894357 1.047792528 -1.967744986e-19) (97.62085573 0.8977339656 3.802233362e-20) (97.48556652 0.7580245594 3.906848217e-20) (97.90981506 1.1017435 -9.156130526e-20) (97.76315237 0.9967984212 -1.843074555e-20) (97.53825554 1.171539836 -2.438923943e-21) (103.6113987 1.965354424 -2.316709239e-21) (103.3683726 2.103571926 0) (103.6714739 2.38797545 0) (96.85712733 0.3779657566 0) (97.16006172 0.2800054868 3.162610373e-19) (97.08104512 0.08194546497 0) (97.3638972 0.6220573408 -7.738235565e-20) (97.25423458 0.4500401783 -3.163706308e-19) (96.9656927 0.5748138082 0) (104.5243145 1.229257986 -9.780945282e-21) (104.3152893 1.47446912 0) (104.764968 1.705536122 0) (96.61152715 -0.520645901 6.407536502e-19) (96.95167351 -0.5449482832 0) (96.94659819 -0.7682289445 0) (97.01937261 -0.1143195339 0) (96.97572725 -0.3291019288 0) (96.64195384 -0.2788204622 -6.772387441e-19) (105.1265493 0.08378132791 7.925669805e-20) (105.0187589 0.4100167319 -1.360630914e-18) (105.5854742 0.5311959164 0) (96.70610156 -1.506102079 6.858528482e-19) (97.04993921 -1.450582906 0) (97.12234247 -1.666655599 0) (96.96139157 -0.9960564284 -3.167442766e-20) (96.99624817 -1.22003748 -1.029726977e-20) (96.64988614 -1.257243829 -4.352943045e-20) (105.2243148 -1.291933653 6.910540711e-19) (105.2528062 -0.9453240746 -5.857818191e-19) (105.8716111 -0.9755276125 6.410270975e-19) (97.12061848 -2.437882591 1.260002154e-18) (97.4405679 -2.314770418 -3.247142948e-19) (97.57859767 -2.500528573 4.038082343e-20) (97.21160887 -1.893658739 0) (97.31866467 -2.096788227 2.830491065e-19) (96.99019899 -2.211595329 -5.470573829e-19) (104.7681845 -2.650924088 -2.002921389e-20) (104.9319564 -2.342092184 0) (105.5285739 -2.522003588 2.123969358e-20) (97.79003394 -3.230370062 -7.169776259e-19) (98.06868309 -3.057157752 7.778386142e-20) (98.25589453 -3.199468607 9.432720337e-21) (97.72906323 -2.704947773 -3.139711297e-19) (97.89381095 -2.870087892 3.340799263e-19) (97.6030422 -3.045390334 0) (103.8525699 -3.776872884 0) (104.1153631 -3.550673394 3.024689191e-19) (104.6241114 -3.840422967 0) (98.63699936 -3.836166485 -4.6051881e-19) (98.86502496 -3.632107456 -1.456386363e-19) (99.08377952 -3.725350536 -1.758942315e-20) (98.45069434 -3.367271351 -3.828504213e-20) (98.65537397 -3.486331878 4.601411974e-21) (98.41261227 -3.702529259 -4.715479633e-21) (102.6590341 -4.555728319 -1.375456651e-21) (102.9729714 -4.426640448 -7.343931157e-20) (103.3640641 -4.769348697 0) (99.59325 -4.231017536 0) (99.7668595 -4.021302528 5.133251921e-19) (99.99456825 -4.078332263 -5.283179259e-19) (99.30385007 -3.849052111 0) (99.53667067 -3.914651335 0) (99.34782806 -4.143018879 -1.414540995e-19) (101.3559614 -4.968984032 0) (101.6835722 -4.930398385 5.715766862e-20) (101.9619638 -5.266123169 1.257952407e-19) (100.5708304 -4.449978735 1.208324601e-19) (100.7005948 -4.230825616 9.348971649e-19) (100.9351563 -4.229697649 -4.572467924e-19) (100.228368 -4.157584441 -5.24688263e-19) (100.4657435 -4.177624707 1.457496729e-20) (100.3222087 -4.413770684 0) (100.0985124 -5.05816682 4.779385804e-20) (100.4012923 -5.089082754 0) (100.5925001 -5.409805562 0) (101.5356612 -4.479376455 -3.177860568e-22) (101.6199324 -4.257597675 -3.482044716e-21) (101.8406275 -4.221420041 9.608734877e-20) (101.1668221 -4.262882688 4.289279552e-19) (101.3969337 -4.244106235 3.044259724e-19) (101.3004092 -4.485608564 2.201868161e-19) (98.97153517 -4.916048902 0) (99.23970606 -4.993305089 0) (99.36221849 -5.284066665 0) (102.4160794 -4.357007319 0) (102.4634896 -4.145501223 0) (102.6608451 -4.081553178 0) (102.0533224 -4.216800943 2.269327089e-19) (102.2622314 -4.166310891 -4.410631338e-20) (102.206477 -4.398516874 0) (97.99773682 -4.629675055 0) (98.22645472 -4.73025702 0) (98.31001408 -4.982802606 0) (103.1861205 -4.117572645 0) (103.2139199 -3.928918544 0) (103.3865394 -3.847706534 0) (102.8508313 -4.047445028 0) (103.0360614 -3.973436959 0) (103.0040099 -4.184641988 0) (97.18440527 -4.273737872 0) (97.3734747 -4.384656291 0) (97.43710698 -4.594179043 0) (103.8454611 -3.813302131 0) (103.864681 -3.651049057 0) (104.011904 -3.562195114 0) (103.5518821 -3.795258294 0) (103.7117706 -3.709219085 0) (103.6908671 -3.892191869 0) (96.51412207 -3.886687785 0) (96.66915569 -3.998806895 0) (96.72626925 -4.1709321 0) (104.4012581 -3.481845582 0) (104.4190118 -3.345834314 0) (104.5439138 -3.255994024 0) (104.1531327 -3.500186257 0) (104.2886876 -3.410198416 0) (104.2711914 -3.565401957 0) (95.96038415 -3.500880192 0) (96.0885625 -3.608159448 0) (96.14730105 -3.746651632 0) (104.8678789 -3.147809634 0) (104.8892628 -3.035746847 0) (104.9948952 -2.948801578 0) (104.6639522 -3.190399943 0) (104.7788283 -3.101648558 0) (104.7587766 -3.23079311 0) (95.50141352 -3.133288178 0) (95.60806121 -3.232895064 0) (95.67299704 -3.343940624 0) (105.2593916 -2.826423589 0) (105.2870577 -2.734309479 0) (105.3765834 -2.652463031 0) (105.0964578 -2.883346766 0) (105.1936239 -2.798742914 0) (105.167797 -2.905684242 0) (95.12039868 -2.792463262 0) (95.20896828 -2.883210457 0) (95.28205007 -2.974375791 0) (105.5884361 -2.526584591 0) (105.623692 -2.449618304 0) (105.6993249 -2.374003395 0) (105.462456 -2.589512929 0) (105.5448327 -2.51068351 0) (105.5114705 -2.600025351 0) (94.80203026 -2.482845334 0) (94.87636429 -2.564339759 0) (94.95775171 -2.640478557 0) (105.8656036 -2.251523814 0) (105.9084504 -2.186428578 0) (105.9726633 -2.117621027 0) (105.7718965 -2.315140227 0) (105.8415442 -2.242892455 0) (105.8006272 -2.318620917 0) (94.53334932 -2.205310265 0) (94.5962714 -2.277829039 0) (94.68608706 -2.341988412 0) (106.1003278 -2.002306617 0) (106.1507164 -1.946995966 0) (106.2054942 -1.885059218 0) (106.0344014 -2.063691757 0) (106.0936743 -1.998333613 0) (106.0451972 -2.062841055 0) (94.30483312 -1.958850845 0) (94.35849361 -2.022937204 0) (94.4565088 -2.07743154 0) (106.3001539 -1.778921656 0) (106.3577947 -1.731707356 0) (106.4047428 -1.67644212 0) (106.2582566 -1.83634827 0) (106.308937 -1.777785484 0) (106.2531236 -1.832986853 0) (94.10910822 -1.741617737 0) (94.15518612 -1.797936215 0) (94.26094704 -1.844550575 0) (106.4711752 -1.580560593 0) (106.5355994 -1.540060799 0) (106.5760144 -1.491154895 0) (106.4500342 -1.632978694 0) (106.4935642 -1.58094377 0) (106.4308426 -1.628407701 0) (93.94037816 -1.551431569 0) (93.98019242 -1.60064888 0) (94.09315418 -1.640791873 0) (106.6183343 -1.40598606 0) (106.6889861 -1.371065356 0) (106.7239587 -1.328119322 0) (106.6150743 -1.452807411 0) (106.6526441 -1.406933015 0) (106.5835523 -1.44795288 0) (93.79397654 -1.386034342 0) (93.82860563 -1.428811995 0) (93.94820665 -1.463608963 0) (106.7457184 -1.25374552 0) (106.8220173 -1.223456428 0) (106.8524577 -1.18605889 0) (106.7578222 -1.294667697 0) (106.7904237 -1.254548171 0) (106.7155376 -1.29020175 0) (93.66609931 -1.243266794 0) (93.69642478 -1.280208446 0) (93.82212462 -1.31057898 0) (106.8567423 -1.122372356 0) (106.938126 -1.095889764 0) (106.964861 -1.063626098 0) (106.8819868 -1.157256074 0) (106.9104645 -1.122477399 0) (106.8303559 -1.153682918 0) (93.55356055 -1.12112869 0) (93.58034449 -1.152790019 0) (93.71163804 -1.179512908 0) (106.9542985 -1.010677533 0) (107.0403298 -0.986973127 0) (107.063978 -0.9594505971 0) (106.9908147 -1.039182204 0) (107.0159771 -1.009331149 0) (106.9310644 -1.037047921 0) (93.45352533 -1.017736456 0) (93.47742427 -1.044618375 0) (93.61394838 -1.06863427 0) (107.0406233 -0.9174705642 0) (107.1307885 -0.8955892301 0) (107.1518389 -0.8725204271 0) (107.0868855 -0.9391426704 0) (107.1091772 -0.9138750039 0) (107.0199966 -0.9391787743 0) (93.36429178 -0.9316919142 0) (93.38569076 -0.9541549961 0) (93.52700069 -0.9764606959 0) (107.1177556 -0.841274091 0) (107.2115305 -0.8210249218 0) (107.2303756 -0.8022012166 0) (107.1722609 -0.8562429268 0) (107.192083 -0.8353212314 0) (107.0992149 -0.8587490641 0) (93.28385506 -0.8621371285 0) (93.30329742 -0.8804405664 0) (93.44886541 -0.900989751 0) (107.1879735 -0.7807361416 0) (107.2851609 -0.7625051033 0) (107.3026085 -0.7476764747 0) (107.249057 -0.7898246292 0) (107.2672257 -0.773039201 0) (107.1709632 -0.7943175352 0) (93.20940874 -0.807913482 0) (93.22741083 -0.8223795336 0) (93.37723075 -0.8409895067 0) (107.2528957 -0.7356549005 0) (107.3533583 -0.7190515728 0) (107.369632 -0.7079679336 0) (107.3198638 -0.7389400702 0) (107.3366888 -0.7260127014 0) (107.237083 -0.7454340689 0) (93.13996595 -0.7679609488 0) (93.15684866 -0.778845756 0) (93.310697 -0.7959308884 0) (107.3139468 -0.7053924476 0) (107.4175712 -0.6900812395 0) (107.4330706 -0.6824782698 0) (107.3858325 -0.7027641404 0) (107.4017317 -0.6935513662 0) (107.2989968 -0.7114901881 0) (93.07383284 -0.7415239389 0) (93.09003944 -0.7491355823 0) (93.24782185 -0.7650635937 0) (107.3714533 -0.6892931771 0) (107.4789987 -0.674795366 0) (107.5034165 -0.6677458047 0) (107.4478838 -0.6808206072 0) (107.4632456 -0.67571634 0) (107.3581782 -0.6918175895 0) (93.00011665 -0.7246597989 0) (93.02560707 -0.7322113215 0) (93.18827696 -0.7476729706 0) (90.64467844 19.96348986 -6.407562343e-19) (91.90287557 18.8359906 0) (90.94128156 17.91328149 5.792424604e-19) (100.8996926 22.66433439 0) (99.17678906 22.67506978 1.772235368e-20) (99.0905197 24.52794533 7.142846382e-21) (84.47231848 8.475512558 9.993714212e-19) (83.67610029 7.477732854 2.149729541e-18) (82.52754465 8.488893286 -1.130338103e-18) (74.46179084 13.06227386 0) (73.47583264 11.49901139 0) (71.88917469 12.80673158 0) (88.18212389 -12.28093005 7.870564181e-19) (84.04334402 -11.89062685 0) (70.37499385 -10.20479677 -2.171681069e-18) (88.27511379 -12.34395564 7.800544351e-19) (84.1912776 -11.91460728 -4.115267395e-18) (70.28118375 -10.18618361 4.893003656e-18) (76.68304766 -10.2616292 0) (76.03814173 -10.2161154 2.175891874e-18) (72.02404966 -10.48434131 -5.862181512e-18) (159.536688 59.51931439 0) (171.3959032 58.64782643 0) (98.09120999 36.9607152 0) (109.2735644 -27.15755559 -1.586803472e-17) (96.75996927 -24.7006745 1.436228875e-17) (72.60824216 -18.85855584 -1.015224819e-17) (76.14958841 -10.52958827 0) (75.49694991 -10.50648132 -2.266927785e-18) (71.3954103 -10.71379202 0) (88.56095987 -28.71191425 0) (78.06845354 -25.75141851 2.190092235e-17) (58.83085159 -19.79427017 -3.004548686e-17) (61.97560618 -23.08869712 -1.757599581e-18) (50.64304667 -19.77042827 2.29553613e-18) (30.60353936 -12.86525342 -1.640875135e-18) (92.42627961 -14.387868 8.457646604e-19) (85.24171255 -14.09619543 -2.429629575e-18) (53.90692664 -10.05248153 0) (161.1314383 54.5949463 0) (170.8264715 54.3176339 0) (97.13557945 32.58030324 0) (119.2956175 115.6217369 0) (151.1555938 104.9124833 0) (100.8466125 124.5089894 0) (85.13813421 -9.992323705 0) (81.48002136 -9.677351626 0) (69.21613449 -8.380305859 0) (85.00836883 -9.838882696 -1.110457271e-18) (81.42043717 -9.537491693 -2.963705517e-18) (69.20311585 -8.273667162 5.037652718e-18) (85.17712428 -10.07514519 -1.049585766e-18) (81.49426507 -9.784779201 6.953876192e-19) (69.21373707 -8.462370181 0) (85.40429008 -10.18107482 4.113755276e-18) (81.70580226 -9.885516221 -2.045056311e-18) (69.54473219 -8.593621854 0) (85.61649079 -10.60635186 3.201321605e-18) (81.78337126 -10.33278411 0) (68.98027524 -8.872596684 1.943711702e-18) (80.85493563 -28.14552416 -5.965446726e-18) (70.67507208 -25.08132453 -1.411457535e-19) (51.75560373 -18.85483966 2.053921947e-17) (87.97372428 -12.27649336 -1.828209819e-18) (83.9361138 -12.01886716 -1.195117099e-18) (70.87239504 -10.35643396 0) (76.58830602 -12.5194315 -2.081357857e-19) (40.78344534 -6.523705339 6.32313857e-19) (88.67273656 -12.64107268 -7.503694309e-19) (84.60760632 -12.2595391 9.988138113e-19) (70.26925109 -10.41745439 -3.386828327e-18) (41.48965683 -15.45535362 0) (26.94678442 -11.3209887 1.075258003e-18) (9.628192007 -5.299342388 7.50692241e-19) (160.0383804 8.297782246 2.290183656e-18) (147.708599 7.573942942 0) (95.94361911 3.782608249 -1.16233214e-17) (159.5084453 7.190438739 0) (146.8207362 6.493308472 0) (96.36955226 3.222700735 0) (157.9506282 3.898432386 -2.225008415e-18) (144.3190497 3.211330192 4.490953966e-18) (97.68203044 1.363213672 -4.450943729e-18) (138.9924252 -16.98120107 -7.197154713e-20) (124.0378977 -16.14900116 4.917322813e-18) (93.88163235 -12.11606961 -3.522938195e-18) (141.3098474 -15.26260806 -3.781861102e-18) (126.0730189 -14.60508588 -6.646272302e-20) (95.55806462 -10.94390875 1.451373193e-17) (138.2459376 -17.43478756 7.29806663e-18) (123.3499081 -16.44896236 -4.907812496e-18) (93.74756431 -12.38314742 -1.046445742e-17) (135.7341345 -18.90778291 1.461121665e-17) (121.0439221 -17.78908646 4.998227206e-18) (91.05311545 -13.34798807 1.415646821e-17) (78.04446366 -9.561505585 -6.725686934e-18) (77.24795545 -9.446491764 8.99990721e-18) (72.16470831 -9.44863097 -6.061450049e-18) (77.69506708 -9.680764001 3.162634101e-21) (76.88593419 -9.513490787 4.319898665e-18) (71.82408085 -9.557268694 -1.457193273e-18) (76.75359885 -27.38523212 -3.660899371e-18) (66.47129508 -24.32415674 -2.407049228e-18) (47.06786891 -17.8243582 -5.196995163e-18) (66.64273059 -24.7084186 -3.441193257e-18) (55.83302833 -21.47867576 0) (36.19286171 -14.74858623 -3.240933186e-18) (111.7548612 -26.91876856 -5.260723741e-18) (98.90906872 -24.44560481 -1.784879508e-17) (73.92981435 -18.56878219 2.020737585e-17) (111.1692561 -26.89032863 1.997303664e-17) (98.42457846 -24.42798619 -2.020758374e-17) (73.79312754 -18.63634307 1.900582643e-17) (98.6307182 -28.46802886 -3.999789681e-18) (87.19011905 -25.67236096 0) (66.17949126 -19.8473142 1.905822893e-17) (73.972099 -11.29502795 3.647940312e-18) (73.48369316 -11.24672061 9.62476526e-18) (70.05489074 -11.74809014 -4.884271483e-20) (74.5681448 -11.058113 0) (74.0365975 -10.94404995 0) (70.4551854 -11.38804051 0) (84.51950667 -9.154031076 2.355130062e-18) (81.31002764 -8.905109308 0) (70.46143698 -7.89896344 4.235796665e-18) (84.6753506 -9.233619544 -2.208640816e-18) (81.35236451 -8.933936477 0) (69.99039931 -7.884561024 -4.969120415e-18) (84.65917024 -9.202730937 0) (81.36573069 -8.92295136 0) (70.28680163 -7.900551881 0) (84.56115083 -9.157996685 -3.388102208e-18) (81.32767914 -8.904604068 0) (70.45307885 -7.899998315 -4.060397861e-18) (84.64082123 -9.193154822 -4.454776495e-18) (81.36094927 -8.918799813 2.954619169e-18) (70.33825071 -7.900897475 -5.009927724e-19) (84.99309861 -9.792887555 0) (81.43008955 -9.468255616 -8.144874566e-19) (69.23553884 -8.221101244 -1.112452192e-18) (84.95358164 -9.667727439 1.080926708e-18) (81.47684518 -9.385642837 2.8735097e-18) (69.54092018 -8.189894051 4.870995606e-19) (84.66259732 -9.257437584 -2.2067028e-18) (81.33053543 -8.951504844 0) (69.82679975 -7.881259837 4.971124241e-19) (84.62418225 -9.475054562 -3.310502788e-18) (81.23765792 -9.197257064 -2.218968965e-18) (69.13609907 -7.979686465 7.523994233e-18) (84.91758547 -9.655069295 2.155331655e-18) (81.47348876 -9.393530921 0) (69.54868946 -8.18929009 -4.863082123e-19) (84.68886361 -9.576841236 1.101118265e-18) (81.30344203 -9.337157062 0) (69.24609081 -8.089880121 5.349641734e-21) (85.53444984 -10.23500775 2.027297221e-18) (81.74542833 -9.875408531 -2.689917149e-18) (69.57125476 -8.609875232 -9.125006981e-19) (85.45414791 -10.19168011 6.765421432e-22) (81.73041151 -9.875733574 -2.717042343e-18) (69.58119728 -8.59806169 0) (86.62254334 -28.39046153 -1.146862963e-17) (76.24665753 -25.6058179 -3.164122282e-20) (56.89273031 -19.5724689 2.769579678e-18) (85.53147307 -10.25134602 -4.046567711e-18) (81.73254636 -9.875405737 4.701171905e-18) (69.44599566 -8.599390183 -2.735759926e-18) (85.50400509 -10.50842364 -2.036523639e-18) (81.66130662 -10.18044405 0) (68.7709787 -8.739331786 3.723694589e-18) (80.06141375 -27.95635215 -4.287259671e-18) (69.77642641 -24.92159772 0) (50.75958674 -18.65922336 0) (77.58058748 -27.60274459 1.257595574e-17) (67.37980206 -24.51309352 -1.334761945e-17) (48.13424253 -18.05909175 -1.960158158e-17) (88.75923679 -12.83602744 0) (84.7200225 -12.56923181 0) (69.45078186 -10.5471057 0) (161.0740934 11.78554248 -1.073436661e-17) (149.6081458 11.16002229 -1.94762817e-17) (92.84775666 5.51544475 5.483818324e-17) (162.88284 17.03931618 0) (153.5622907 16.46520061 1.297089957e-17) (91.08099925 8.003653898 -1.973260978e-17) (161.7069127 12.94366077 -9.855830782e-18) (150.7117949 12.22674415 1.318613684e-17) (92.26236744 5.939065528 2.517669601e-18) (163.2682694 18.33550511 0) (154.5205229 17.79247513 2.011760814e-17) (90.67402158 8.580568273 -2.056494713e-17) (155.4987964 0.1124686102 -2.700148522e-19) (140.7599712 -0.4044454861 -4.548542993e-20) (98.49886432 -0.827819034 0) (157.3109924 2.869897493 0) (143.2649893 2.197352449 0) (97.58186436 0.7490026242 0) (154.8424917 -0.812524055 1.326114696e-19) (139.8462808 -1.319047217 4.090204668e-19) (98.4139225 -1.426792241 -6.587693027e-19) (144.3106983 -12.69624863 0) (128.8507564 -12.24635492 -1.31411968e-17) (97.68079569 -9.173251821 1.867634153e-17) (142.1247492 -14.64138447 -3.847652139e-18) (126.8935741 -14.03162047 1.021631422e-17) (96.42330374 -10.52048564 0) (144.9682392 -11.97524781 -3.91024817e-18) (129.3709984 -11.54588463 2.632981262e-18) (97.84171188 -8.651430655 -1.88096903e-18) (135.0343747 -19.20629623 -7.913918111e-18) (120.4549567 -18.03163988 0) (90.69984556 -13.57323351 -1.536796253e-17) (132.911223 -20.59012772 0) (118.5719336 -19.15047852 -4.634631474e-18) (90.25103763 -14.55156248 0) (128.4918429 -22.6352912 -6.650540523e-18) (114.4943656 -21.06209579 0) (85.04613557 -15.74169704 -2.599202301e-17) (132.0498536 -21.20195777 0) (117.910538 -19.88493309 4.614445812e-18) (89.20652752 -15.03243132 0) (129.3165826 -22.28505451 1.308761095e-17) (115.2443635 -20.73693982 0) (85.99899833 -15.53949482 -3.189022172e-18) (99.20856819 -28.55258084 0) (87.78485654 -25.75618382 -3.046941668e-17) (66.56254304 -19.8453441 4.187967463e-17) (84.45118741 -28.22133677 -5.350618598e-18) (74.11240524 -25.40561088 1.452568748e-17) (54.56699512 -19.21745745 -1.015765087e-17) (86.79329795 -11.38034905 0) (82.6821496 -10.94742158 -5.996565908e-19) (69.84460999 -9.472014651 0) (86.76976892 -11.34207726 0) (82.67419264 -10.91391849 6.216483822e-19) (69.94995191 -9.460707933 -3.390959089e-18) (86.79997326 -11.46225404 1.787737075e-18) (82.67583486 -11.01307769 3.584558651e-18) (69.48399736 -9.462180173 -3.248706239e-18) (86.85198151 -11.63284829 1.788508382e-18) (82.70955087 -11.27400654 -4.736728624e-18) (69.42409114 -9.641891915 4.075347794e-18) (88.13672375 -12.14694946 -7.834543154e-19) (84.05351286 -11.71685899 -2.102225925e-18) (70.31343389 -10.07970138 0) (88.37345056 -12.45359695 7.716956955e-19) (84.25070915 -12.04382934 -1.018209496e-18) (70.22050533 -10.26327518 0) (77.10874356 -9.942565131 4.890973803e-18) (76.51295832 -9.740185509 -2.182371907e-18) (71.99232937 -10.00451375 -7.214507032e-18) (68.54517575 -25.52465935 -5.061980115e-18) (57.92567977 -22.13925074 -7.990180921e-18) (38.36933244 -15.40722315 1.027039499e-17) (158.7164294 63.17505757 0) (172.1446026 61.43406999 0) (99.36204369 40.56491746 0) (109.8789742 -27.14280391 -1.496369466e-17) (97.31241018 -24.6773779 1.009402764e-17) (73.00523355 -18.8254293 7.251423122e-20) (70.54222311 -12.52564737 4.117863419e-18) (70.19392129 -12.51900621 -1.117758488e-17) (67.38738265 -13.37033629 1.511836888e-17) (69.56153247 -12.78989724 0) (69.29636987 -12.8054509 0) (66.70197518 -13.79790577 0) (71.68908558 -12.02651389 -2.895375725e-18) (71.25595776 -12.16347766 0) (68.28951269 -12.92552 0) (72.68134086 -11.73595207 -4.862034597e-20) (72.21104487 -11.80812019 0) (69.08788874 -12.45714655 5.724335877e-18) (75.60966713 -10.70702137 1.70237117e-18) (74.9285529 -10.62523109 -2.315990591e-18) (70.8987301 -10.86713418 0) (87.94752248 -28.65938183 1.163917948e-17) (77.45188351 -25.76158626 3.005611166e-20) (58.20943532 -19.78525626 -1.111514857e-17) (87.33451115 -11.79828908 1.71036232e-18) (83.18370574 -11.33255898 1.149506977e-18) (69.80471743 -9.73952881 -3.874287913e-18) (87.32873751 -11.69646202 0) (83.23238974 -11.22037435 1.133569557e-18) (69.95767213 -9.689773726 -7.68216033e-19) (62.96522978 -23.5546301 8.762431273e-19) (51.65041285 -20.14207997 7.158500543e-19) (31.40858711 -13.1792421 5.085062109e-19) (87.40682296 -11.91332474 8.389699697e-19) (83.2575866 -11.49856592 2.257088843e-18) (69.9260192 -9.865707315 -2.298081388e-18) (87.51414331 -11.97762921 -8.47913303e-21) (83.38697363 -11.57029413 1.111465709e-18) (70.13571759 -9.939296819 0) (58.98878911 -22.38120359 0) (47.09196452 -18.74658548 -2.011269714e-19) (26.75138705 -11.62945528 0) (89.01945014 -13.77128675 7.366317935e-19) (86.33421637 -14.46497322 -2.060535715e-18) (63.552044 -11.12146943 -5.255271346e-20) (120.5914642 -24.85632693 0) (106.8717691 -22.64019087 0) (78.80725386 -16.96695498 0) (108.6583403 -27.40257754 3.684326258e-18) (96.20591106 -24.75794724 -2.3683449e-17) (72.49339417 -18.94828609 2.292082671e-17) (108.2309469 -27.48351933 9.897270729e-18) (95.9046876 -24.81217105 7.118484331e-20) (72.87127209 -19.13904972 -1.413422119e-17) (23.17685904 4.349218051 3.070201202e-19) (17.09600842 0.3312333033 -5.098436401e-17) (12.36338594 -4.046581121 7.321582856e-17) (85.1094054 -9.9390673 3.169287697e-18) (81.48050257 -9.638576061 7.030821098e-19) (69.30419282 -8.360884629 0) (85.05934017 -9.890687837 5.334751409e-21) (81.45159618 -9.597853573 -7.068575593e-19) (69.26365527 -8.325052432 0) (85.24982387 -10.13790712 1.040774528e-18) (81.56972836 -9.861423551 -2.773363114e-18) (69.33624183 -8.53544697 0) (85.33452928 -10.16655842 0) (81.65219213 -9.884573672 1.372309218e-18) (69.46584367 -8.574553272 -3.727371029e-18) (85.77484553 -28.58469864 3.756454713e-18) (75.44565938 -25.6353743 -1.738659988e-17) (56.12363506 -19.49274 5.443912341e-17) (85.07602706 -28.47014134 0) (74.69867044 -25.54693578 -7.278012167e-18) (55.25869184 -19.36629413 0) (85.75560108 -10.66402508 3.803473278e-18) (81.93479502 -10.38202885 -4.051299195e-18) (69.23246923 -8.936409391 6.150055901e-18) (86.75332268 -11.33681229 -2.062747119e-18) (82.67929699 -10.91343722 2.738357968e-18) (69.97526703 -9.459122612 -4.676059859e-18) (86.73757374 -11.31597362 -5.561497066e-18) (82.67215492 -10.91178024 3.234433504e-18) (69.96677211 -9.456327823 -4.365336477e-18) (87.21611187 -11.7388938 -1.722130148e-18) (83.23284356 -11.43531217 0) (70.30265948 -9.875987095 0) (87.01787948 -11.75719982 0) (82.96507222 -11.48380366 -1.160192062e-18) (69.84949599 -9.847160791 2.373700725e-18) (88.11083585 -12.14232066 8.264107254e-19) (84.16477775 -11.76930667 1.086644843e-18) (70.70813724 -10.16144652 -2.897889593e-18) (88.51126866 -12.58791899 7.507757925e-19) (84.3689144 -12.23872193 1.809552723e-20) (70.5705349 -10.45183952 6.848222559e-19) (45.76653048 -17.45695384 -3.126280055e-18) (31.81877288 -13.17347757 4.233268738e-18) (13.45471138 -6.754542461 -6.119952257e-18) (43.4044327 -16.4184264 0) (29.02645585 -12.11550296 2.926211639e-18) (11.24831224 -5.919766607 -5.704576901e-18) (160.4666538 9.480049149 -7.078270596e-18) (148.5850485 8.807377455 0) (95.56014525 4.445970554 -7.647660894e-21) (160.7004087 10.58432498 -5.116778616e-18) (149.1215999 10.01318095 6.827367489e-18) (94.56422656 5.074878056 2.629765962e-18) (158.9909855 6.085372557 0) (145.9380012 5.396124004 0) (96.79784858 2.619786327 0) (158.4996705 5.017496493 0) (145.2352894 4.376222414 -7.571247965e-18) (97.55129049 2.078039937 8.915428336e-18) (139.8374779 -16.40168844 7.431253594e-18) (124.8825587 -15.61446996 -1.509969422e-17) (94.8697363 -11.73197695 1.431267278e-17) (140.6080661 -15.76499191 0) (125.4515489 -14.94785657 0) (95.56505889 -11.23759904 0) (137.4480252 -18.01001015 -7.253289098e-18) (122.741145 -17.0412327 -4.997481376e-18) (93.031568 -12.81755829 1.744979976e-17) (136.5602898 -18.53330669 -7.153302133e-18) (121.8809658 -17.53245966 -4.828753369e-18) (91.82943537 -13.1446543 -1.739545372e-17) (77.40337406 -9.768907008 -1.628747003e-18) (76.66511498 -9.531638213 0) (71.7768325 -9.692330739 -2.914006431e-18) (76.01125481 -27.06348901 -3.543491887e-18) (65.72166537 -24.12022107 9.561066869e-18) (46.12772681 -17.57370177 0) (67.49882785 -25.15155321 3.58075223e-18) (56.72728879 -21.78882852 0) (37.10964022 -15.05239279 -9.162625775e-19) (135.6145089 102.1153623 1.747754004e-17) (164.1990101 91.60297863 0) (106.1718237 95.85179691 0) (147.2065666 84.37633466 0) (170.8011852 77.81319653 0) (106.2547895 66.34751599 0) (151.4803859 77.24288018 0) (172.7572104 72.75196299 0) (107.0485585 57.23586378 0) (110.5207121 -27.00050818 -1.965093375e-17) (97.90474871 -24.55787317 -4.119858579e-20) (73.49816035 -18.75227571 -4.677808941e-18) (98.13329909 -28.42229391 3.923836814e-18) (86.8000261 -25.65948677 5.221816207e-18) (66.10177389 -19.9138551 -1.852871958e-17) (96.76236278 -28.67144707 4.247439022e-17) (85.59478412 -25.83669299 -3.504966329e-18) (65.02670673 -19.95767562 -3.918836549e-17) (97.50524962 -28.40975479 0) (86.32111525 -25.75757205 -8.551654059e-20) (65.63302171 -19.95728919 0) (66.98961706 -13.49427902 0) (66.8144044 -13.91425838 0) (64.62383173 -15.02368782 -3.965788203e-18) (68.39715931 -13.13035885 0) (68.23994165 -13.27389682 0) (65.92803398 -14.38171458 0) (61.57534329 -13.66202369 0) (61.16691176 -14.51783368 4.847156482e-18) (59.23733792 -16.1168132 -2.840751271e-17) (65.45470132 -13.6687525 9.237086725e-18) (65.16646885 -14.24269736 0) (62.9001266 -15.37799958 -4.094636109e-18) (63.91174212 -13.68470372 0) (63.55979436 -14.2757961 0) (61.43182627 -15.57523751 -1.39577477e-17) (73.33938381 -11.52890725 -1.142931165e-17) (72.86611268 -11.53983582 5.106149083e-18) (69.58924267 -12.10519644 8.557300671e-18) (75.10307594 -10.84646833 -1.752368966e-18) (74.48468598 -10.67433214 4.66033075e-18) (70.65617595 -11.03030055 0) (84.48821659 -9.158875314 -1.30293426e-18) (81.29904209 -8.909403708 0) (70.46497265 -7.897107665 2.347750349e-18) (84.67922295 -9.218943328 -2.211423859e-18) (81.36600324 -8.925912134 2.934523649e-18) (70.1216591 -7.890361702 -3.9769672e-18) (84.67343541 -9.21072551 0) (81.36861354 -8.925152734 0) (70.22303201 -7.897934331 -3.485754968e-18) (84.59610874 -9.169599093 4.479091229e-18) (81.34379682 -8.908379486 0) (70.4280277 -7.900385013 0) (84.62065916 -9.182198742 1.115585036e-18) (81.3535002 -8.913868374 -2.962516378e-18) (70.38954998 -7.901131019 4.513679005e-18) (84.99645953 -9.672598101 -3.425757236e-18) (81.4706694 -9.385868304 3.037093169e-18) (69.508928 -8.193840226 -5.165494909e-18) (84.64415915 -9.29610903 0) (81.30709731 -8.988252529 -2.934305644e-18) (69.62782289 -7.888816149 3.979403023e-18) (84.62034609 -9.355737641 0) (81.27726674 -9.034710203 -3.677817768e-18) (69.26884042 -7.879096451 3.989849603e-18) (84.86145266 -9.642189658 2.16535604e-18) (81.4536718 -9.396948399 0) (69.5005778 -8.176206576 -2.6674794e-21) (84.78367726 -9.622875148 0) (81.39840127 -9.388465048 0) (69.4118246 -8.149925124 -2.943994029e-18) (85.51785353 -10.22202812 0) (81.74161594 -9.87555189 -6.758102694e-19) (69.59982755 -8.609054608 0) (85.49022788 -10.20570545 -2.039755806e-18) (81.73933544 -9.871896701 6.758538026e-19) (69.59087896 -8.601345977 0) (87.32107716 -28.54597428 -5.673562304e-18) (76.86326432 -25.69453591 2.427967569e-20) (57.50437422 -19.68093944 -1.324796452e-17) (85.51096017 -10.29258528 -2.027049473e-18) (81.70534794 -9.909343552 4.033788343e-18) (69.24405172 -8.604272679 0) (85.4856975 -10.36446729 1.01501635e-18) (81.66716853 -9.968611137 2.03218884e-18) (68.8563685 -8.596671085 9.275236773e-19) (78.54406272 -27.50426865 -3.947733895e-18) (68.35040158 -24.63595532 -5.488021182e-18) (49.0431244 -18.26350731 7.723311166e-18) (79.35182829 -27.73171322 3.989492967e-18) (69.09840311 -24.75937418 -5.377061045e-18) (49.96107707 -18.46909329 0) (87.32626594 -11.6756944 1.704939454e-18) (83.31513399 -11.29379924 5.634561205e-19) (70.40750289 -9.7997806 -3.047470754e-18) (87.3434026 -11.65984452 -1.701736589e-18) (83.27549182 -11.22353452 1.694440661e-18) (70.27081473 -9.739735739 7.687264894e-19) (63.96087295 -24.06951802 1.173501056e-18) (52.77794803 -20.60351587 -3.056244961e-18) (32.59323327 -13.62942409 1.116806992e-18) (87.60482893 -12.00182934 -4.412506261e-18) (83.42705236 -11.57160932 -1.039159462e-20) (69.97046889 -9.916881751 4.006309607e-18) (57.83945981 -21.71831096 -2.071771335e-19) (45.76224809 -18.17913959 4.86272706e-19) (25.36156299 -11.07236939 -4.119519865e-19) (89.10650153 -13.11641832 1.442786857e-18) (85.22812717 -13.24809015 0) (67.85718462 -10.93347918 0) (162.534302 15.74773905 9.309264621e-18) (153.0785092 15.27316416 0) (92.83228241 7.638788669 0) (162.2242009 14.24887689 0) (152.0379742 13.60262962 0) (92.79500857 6.699645386 0) (163.6077696 19.60606857 -5.289471021e-18) (155.5267018 19.16822705 -7.145642852e-18) (90.51621537 9.218342009 2.264256903e-17) (156.0886691 1.01939362 2.540271638e-19) (141.5321028 0.444574666 1.460189844e-18) (98.11172192 -0.3098633417 0) (156.6888413 1.961118951 -2.848612016e-20) (142.3979727 1.364112293 5.907504077e-18) (97.84755207 0.2648096164 -4.326770971e-18) (154.1906759 -1.63282231 -1.342677343e-19) (139.0055059 -2.069714526 0) (98.47882261 -1.904434358 1.188781231e-18) (153.5720758 -2.445885652 0) (138.183067 -2.802497724 0) (98.48476567 -2.393127647 -2.214160609e-18) (143.557403 -13.39599666 -3.831934083e-18) (128.0920381 -12.91769445 0) (97.01969525 -9.667948053 -1.679516885e-17) (142.8763545 -13.96656522 -3.828054696e-18) (127.4705488 -13.34266533 2.066798152e-17) (97.03229305 -10.00627904 -1.468383407e-17) (145.5947542 -11.36679333 3.931506886e-18) (129.8863022 -11.07397626 0) (97.65885475 -8.297303838 0) (146.2970499 -10.78208938 0) (130.5619066 -10.53303278 5.674574074e-18) (97.99220924 -7.882124712 -1.624193857e-17) (133.5166308 -20.20648934 -7.326766021e-18) (119.0275505 -18.82542822 0) (89.83645928 -14.21777686 0) (127.6689314 -22.85379913 7.19392044e-18) (113.6811726 -21.25926592 0) (84.08496033 -15.86511819 1.392803975e-17) (131.0531422 -21.6847767 0) (116.876006 -20.32374347 0) (87.60232557 -15.24585432 -2.588615373e-17) (130.1389251 -21.9721271 -1.326000086e-17) (115.9504858 -20.48147837 1.783631698e-17) (86.64528173 -15.34447551 2.856670491e-17) (106.1243409 -27.86368459 4.942170184e-18) (94.09447998 -25.42068036 1.350264925e-17) (70.82652174 -19.42031245 2.951573708e-20) (106.914353 -27.82779389 9.482943678e-18) (94.86660277 -25.34365127 -2.562969082e-17) (71.86858661 -19.46793554 2.271336987e-17) (107.6907473 -27.62411341 9.415231504e-18) (95.54968211 -25.06309452 -6.307519526e-18) (72.79788454 -19.3704036 -8.986054316e-18) (26.09406688 -3.408028532 1.179183361e-19) (94.30019728 -28.83396032 -1.9873684e-17) (83.391489 -25.97492141 3.151371489e-18) (63.39568165 -20.0731477 7.3042195e-17) (93.70062553 -28.76524203 7.03862719e-18) (82.74955355 -25.89065527 -4.774994716e-18) (62.88803089 -20.04339367 0) (9.325882388 48.71837759 4.786766313e-17) (-4.476576029 51.90920824 -7.705505107e-17) (-22.60062404 52.44630917 0) (19.33468382 82.70059291 -5.417749375e-18) (7.481280434 91.32335124 2.512982122e-18) (-21.52613635 100.4555124 2.343838421e-18) (40.36874723 105.9776862 1.122639038e-20) (38.86244732 116.7299178 -1.34526781e-19) (1.479820785 135.4231889 -7.139390372e-19) (78.85417442 -8.901905797 3.219729601e-18) (77.89684557 -8.696620701 -9.651482924e-21) (72.24869494 -8.641620595 -5.053412919e-18) (79.01475252 -8.853731888 -6.174400511e-18) (77.9990571 -8.676664251 8.224559994e-18) (72.17137457 -8.528898614 -7.863366036e-21) (80.24381661 -8.234220572 -1.466955402e-18) (79.04982525 -8.093785508 1.940564909e-18) (72.3322966 -7.781251025 -6.49475706e-19) (89.27059504 -28.48143746 0) (78.74638376 -25.72516203 0) (59.12259624 -19.76426165 -9.043344623e-18) (70.51840279 -25.95065543 2.388047853e-18) (59.92508018 -22.68847789 1.557993142e-18) (40.32123965 -15.99787338 -9.503463456e-21) (69.72624217 -25.53277803 2.261695217e-18) (59.11275589 -22.40157689 6.023522343e-18) (39.45306595 -15.71904304 -4.338038288e-18) (114.7028427 -26.16455234 0) (101.5963521 -23.75243896 -3.587481314e-18) (76.46014481 -18.15567946 2.018427409e-17) (114.1463258 -26.45743857 1.081608511e-17) (101.2074707 -24.05294316 -1.459368173e-17) (76.56579411 -18.43338743 -2.083933781e-17) (81.00001612 -7.944885901 -2.895224722e-22) (79.46108366 -7.781263077 -3.767025444e-18) (71.40667119 -7.24572614 1.270939973e-18) (80.34975009 -8.131410077 -5.275544312e-21) (79.10737127 -7.957630236 -9.675068193e-19) (72.1547213 -7.634367546 5.844734614e-18) (81.83009202 -8.233809187 0) (79.64179152 -8.055258257 3.602308873e-18) (69.91545076 -7.17147369 -4.869072181e-18) (81.62645244 -7.962187192 -7.169751107e-18) (79.7046328 -7.808790723 3.809495908e-18) (70.78767076 -7.108062286 5.159643598e-18) (81.05210804 -7.966896754 -7.073535515e-18) (79.45221029 -7.810249437 9.355009614e-19) (71.2662857 -7.22899147 -6.361943175e-19) (81.59179098 -7.937316402 -2.071184682e-21) (79.70354801 -7.775493311 1.054216895e-18) (70.82644155 -7.099670467 0) (81.87426976 -8.383753091 4.047912935e-18) (79.63003657 -8.274286202 3.614504688e-18) (69.83210188 -7.321412097 -9.786544109e-18) (82.63304609 -8.749941696 1.296134803e-18) (80.13381383 -8.619079571 0) (70.57860596 -7.705989124 -4.643638839e-18) (82.72714601 -8.780016844 0) (80.19481442 -8.639998171 0) (70.64946142 -7.734016067 4.614751443e-18) (24.80798642 -11.14440583 0) (13.95310931 -7.824045814 -1.291720084e-18) (4.376121647 -3.639954822 -4.78494164e-19) (164.84919 33.09609684 -3.130611445e-17) (162.630768 33.28019424 4.671929232e-17) (88.31808546 16.05056443 -6.362570741e-17) (119.2058495 -25.11134558 0) (105.6012567 -22.96194625 -3.879490923e-18) (78.01228966 -17.28116825 5.437164909e-18) (119.9091026 -24.99594511 0) (106.252375 -22.80595644 4.058051658e-18) (78.60475845 -17.17130838 -2.331796245e-17) (38.53029626 -8.566875993 0) (36.86644513 -11.93090663 1.013811453e-17) (34.65106933 -15.28368812 0) (31.01553557 -2.989035494 -8.997492953e-17) (27.79928997 -7.103748758 0) (24.37307657 -10.90775808 0) (91.79820558 -28.63155138 -8.756213417e-20) (81.11639515 -25.94860793 -4.621363365e-18) (61.19793465 -19.97007792 6.594497365e-18) (83.60059328 -28.34313878 0) (73.295541 -25.30841083 2.299704943e-18) (53.85460548 -19.08029551 -1.512209069e-18) (85.86937686 -10.68115938 -1.020360378e-18) (82.01275489 -10.35944448 6.792706478e-19) (69.37402532 -8.9574476 9.244290334e-19) (82.97207797 -28.169327 -4.755260268e-18) (72.60709531 -25.13204581 0) (53.32239731 -18.98484496 -4.552027599e-18) (85.91927565 -10.7064682 1.963343705e-18) (82.02903285 -10.36839674 -5.210862323e-18) (69.41460188 -8.972198865 3.54216765e-18) (85.95024195 -10.84913311 9.694252332e-19) (82.00892932 -10.44236197 0) (69.01909071 -8.976884608 0) (49.47945878 -18.70874338 -2.481223248e-18) (35.89469308 -14.58628897 1.191510473e-18) (16.45185887 -7.849272458 2.132939641e-18) (11.8419553 -7.031117586 -6.796465914e-18) (3.47035789 -2.929445016 1.884485614e-17) (48.03215455 -17.90562927 1.008770845e-18) (34.2856002 -13.93495231 -1.413288322e-18) (15.20950808 -7.356129711 3.543144603e-18) (150.5001185 -6.336892778 0) (134.8324498 -6.353813939 0) (99.1442426 -4.824417587 -1.003297314e-18) (152.9596812 -3.278322212 -1.684874324e-18) (137.5788758 -3.495505735 -2.296145126e-18) (99.25410951 -2.818720869 3.243561488e-18) (152.2999932 -4.270266437 2.338068766e-18) (136.8829169 -4.501146762 -3.235838949e-18) (99.18114486 -3.524685495 -2.012371872e-20) (149.9867148 -7.112163802 8.217796507e-18) (134.4243878 -7.054080047 -6.9556813e-18) (99.86076966 -5.315598276 0) (147.0877562 -10.14977788 -6.44224538e-18) (131.3817848 -9.961872644 1.732443481e-17) (98.21320751 -7.427143567 -1.063251298e-17) (147.887864 -9.397182767 2.290624832e-18) (132.272319 -9.321269916 -3.064629183e-18) (98.70457767 -6.962026234 6.782628474e-18) (101.6192503 -28.18437881 8.635980087e-18) (89.85959735 -25.41751824 5.783315138e-18) (67.82491086 -19.56513015 1.635703503e-17) (43.31069385 -11.0107455 0) (42.32587714 -13.76653524 -9.8322598e-18) (40.70259238 -16.91217614 2.635523336e-17) (56.45988088 -13.67204073 0) (56.03310173 -14.59271243 -7.496585789e-18) (54.40523877 -16.76002677 -5.060943007e-18) (79.63182619 -8.556656848 -3.020565789e-21) (78.53696268 -8.402686025 5.964689547e-18) (72.4683267 -8.19057775 -5.351698724e-18) (79.77816125 -8.455666919 -1.493661416e-18) (78.64348024 -8.276978903 2.962215841e-18) (72.30385153 -8.031417021 -5.327254248e-18) (91.06274952 -28.80445119 -1.787042462e-17) (80.39163268 -25.90509491 2.684513163e-17) (60.63255598 -19.90115511 2.867674368e-17) (116.6062256 -25.89183075 0) (103.2919953 -23.51215846 0) (77.04445544 -17.79563392 0) (58.81223093 -13.95832542 0) (58.44667929 -14.63804023 -1.462683157e-17) (56.5888649 -16.45122844 0) (80.72689547 -8.101082598 -1.42706612e-18) (79.30312116 -8.005597242 0) (71.70416335 -7.479509344 -6.457458743e-19) (80.58654529 -8.10140734 1.447168432e-18) (79.18815485 -7.958108597 -9.633179662e-19) (71.56585688 -7.453547829 -4.547516275e-18) (81.79038081 -8.061229209 -4.071065008e-18) (79.70037717 -7.900627094 -2.144225572e-21) (70.56975072 -7.132789356 4.874761999e-18) (81.76181221 -8.03318054 1.361290301e-18) (79.70846746 -7.877609127 3.615814388e-18) (70.65573394 -7.126203766 1.005143035e-21) (81.35422953 -8.042185101 -2.7810115e-18) (79.64272186 -7.965532026 9.203261902e-19) (71.28001498 -7.299755057 4.367789884e-18) (81.47537464 -7.990785073 2.773308762e-18) (79.73923729 -7.900901107 -5.536721232e-18) (71.43923842 -7.274195465 6.200429609e-19) (82.23627552 -8.593938153 1.323637337e-18) (79.90568957 -8.506563642 2.632972855e-18) (70.28430687 -7.560254801 2.73386547e-21) (82.33849965 -8.640157224 1.318596177e-18) (79.96168784 -8.543820157 -4.363450146e-18) (70.36584795 -7.606786815 -2.272485024e-21) (83.09049695 -8.880249036 0) (80.43689405 -8.717720058 -8.376933863e-19) (70.87771172 -7.828396769 0) (82.99816581 -8.861665965 0) (80.36902141 -8.703966525 8.411009416e-19) (70.81223814 -7.808586354 3.968538152e-18) (85.00950682 -9.74209277 0) (81.4592527 -9.426585265 5.495216965e-19) (69.39434279 -8.205821546 3.708030962e-19) (86.4324838 -11.23503959 -9.335806733e-19) (82.47216926 -10.90383414 -6.188892294e-19) (69.68099706 -9.410467169 0) (86.68036393 -11.26589069 -1.937994773e-18) (82.6417514 -10.89228486 6.429105817e-19) (69.91959458 -9.444791597 0) (86.33115635 -11.2193703 9.337383685e-19) (82.39325705 -10.91065981 6.18995863e-19) (69.56164511 -9.390565759 0) (85.96275635 -10.98351706 -2.901165378e-18) (81.97357775 -10.60918572 -6.430834723e-19) (68.8910214 -9.079017444 0) (65.23201444 -24.62919115 0) (54.33370762 -21.14345424 -5.538202553e-18) (34.46823405 -14.25212074 1.416999698e-17) (54.57725826 -20.69217961 0) (41.9127767 -16.81897178 1.135980701e-19) (21.76670375 -9.816956925 8.088528067e-20) (56.15282856 -21.42059532 -2.68982747e-19) (43.8686496 -17.56111411 4.223744529e-20) (23.63218508 -10.48021328 4.47762098e-20) (164.0299879 43.6243839 0) (167.5363638 43.90667286 0) (92.19883279 23.10608577 0) (164.6515202 40.19269343 0) (165.974339 40.3741802 0) (89.9919835 20.24668184 0) (134.27033 -19.80142391 5.188918276e-18) (119.7306255 -18.48222599 2.92461266e-17) (90.17891686 -13.90588723 0) (117.3098706 -25.44705386 -1.825569297e-17) (103.8980137 -23.16049804 0) (77.34779098 -17.5446231 0) (104.2013306 -27.95202631 4.336933e-18) (92.31071482 -25.33101879 0) (69.72464519 -19.48946454 -4.142473581e-18) (101.171641 -28.14012607 8.175356372e-18) (89.5246749 -25.40339256 -1.6533054e-17) (67.95099421 -19.66714464 0) (103.5270208 -28.05486928 4.388622537e-18) (91.74436921 -25.47157149 -1.186918969e-17) (69.17356381 -19.55552999 8.403546136e-18) (12.34551521 18.20890572 -7.815881112e-19) (3.576908152 16.00206997 0) (-4.464133957 11.87030257 0) (95.09611722 -28.56497559 -7.576414252e-18) (84.16839414 -25.88437882 5.188411113e-18) (64.18995169 -20.10963396 0) (93.16555334 -28.66554442 6.614857062e-18) (82.31587222 -25.8522867 0) (62.64107523 -20.06215205 3.110069421e-18) (78.7125919 -8.997223552 3.574031353e-18) (77.79932378 -8.82640575 0) (72.46040595 -8.853531146 0) (78.44291597 -9.218223638 0) (77.59477214 -9.11727561 0) (72.47368523 -9.169734073 0) (79.22261853 -8.790352536 -1.532581677e-18) (78.18489662 -8.650887267 -4.051261998e-18) (72.28006666 -8.449431145 4.772967383e-18) (80.07820717 -8.357604339 -2.936299466e-18) (78.8448127 -8.24932103 3.920831094e-18) (72.33991617 -7.926980395 0) (89.9216886 -28.59831314 0) (79.31570722 -25.77140988 -4.181485471e-18) (59.64773027 -19.82087532 6.16073781e-20) (71.46917367 -26.290309 -6.554970644e-18) (61.03715684 -23.01866261 -1.025920119e-17) (41.51339383 -16.33801064 -7.865886587e-19) (155.6476277 69.39729982 0) (173.2662691 66.89102786 0) (104.3786464 48.81275448 0) (115.2571912 -26.0255987 -1.069676762e-17) (101.9630938 -23.64622201 3.599069593e-18) (76.26877529 -17.99552234 2.043205201e-17) (113.4459286 -26.66764367 0) (100.6209452 -24.38427487 -1.558232925e-17) (75.82237718 -18.61009786 2.214447514e-17) (112.5308621 -26.96209261 0) (99.69268102 -24.49981494 0) (74.7027341 -18.5895707 0) (80.95380611 -7.960958868 -1.416171248e-18) (79.48698923 -7.813761967 -2.815703246e-18) (71.63689501 -7.311914505 3.804666659e-18) (80.41619719 -8.083647142 -7.265190334e-18) (79.12482419 -7.899056882 3.129614528e-21) (71.89824879 -7.527487632 5.205213877e-18) (81.82145188 -8.150632202 -4.066658909e-18) (79.66555912 -7.982496772 -5.162070342e-21) (70.26364901 -7.161143594 4.868462099e-18) (81.67992673 -7.981718086 1.137760183e-21) (79.72024504 -7.828661503 9.1221968e-19) (70.75195041 -7.109773912 0) (81.12739166 -7.993533096 1.403595698e-18) (79.48539835 -7.844008285 6.557876153e-18) (71.13781613 -7.216827886 -5.693397163e-18) (81.58278791 -7.90661022 -4.272435033e-18) (79.76201449 -7.743365988 6.408237449e-18) (71.01357309 -7.110257926 0) (81.98679571 -8.496065665 3.815089569e-21) (79.734718 -8.424149207 -2.675698624e-18) (70.01785284 -7.449662742 4.234503984e-18) (82.53771147 -8.714561279 3.90240737e-18) (80.07609407 -8.590588431 -4.315353924e-18) (70.51062799 -7.671782657 0) (83.3000482 -8.918123457 -3.83564983e-18) (80.58001546 -8.758506231 5.111093475e-18) (70.99208297 -7.870325923 -6.860013129e-18) (83.39524557 -8.928348571 1.418157227e-18) (80.66914674 -8.772127676 -1.880309301e-18) (71.0773743 -7.890940305 6.400217115e-19) (82.81728442 -8.805895745 2.556800229e-18) (80.24834091 -8.653443703 -4.238102025e-18) (70.6979747 -7.753034569 0) (84.12760335 -9.020406585 1.167294254e-18) (81.13375917 -8.773965218 0) (70.36532428 -7.784416118 0) (84.09082153 -8.968164924 -1.167815186e-18) (81.12713175 -8.702337 0) (70.39141608 -7.741221404 0) (83.89899194 -8.955370414 2.375855514e-18) (81.04930513 -8.746463003 2.364579677e-18) (70.89218491 -7.830671726 -4.261305579e-18) (83.97167738 -8.947635662 -1.183917081e-18) (81.10370518 -8.741335135 -3.126656484e-18) (70.97172799 -7.840125274 4.236230493e-18) (83.48092627 -8.913279255 2.556020274e-18) (80.75405345 -8.760596791 -8.467317882e-19) (71.16194597 -7.896576531 -4.589442909e-18) (83.57324952 -8.884610165 -6.121761101e-18) (80.83565772 -8.720767543 4.872303036e-18) (71.28173477 -7.886426169 0) (83.81939294 -8.950119562 -1.19161897e-18) (80.98351365 -8.738247471 0) (70.82935086 -7.818526182 0) (83.74625494 -8.920638046 -2.405936337e-18) (80.9221282 -8.693625541 2.390588438e-18) (70.76270123 -7.784620687 0) (84.18412631 -9.055961975 -3.4767627e-18) (81.17204293 -8.819402705 3.077409102e-18) (70.40843737 -7.818662854 -5.19943919e-19) (84.24234586 -9.073626085 2.009964056e-22) (81.20448206 -8.834838286 -6.960753429e-22) (70.4457047 -7.834837435 4.666739705e-18) (60.43802584 -22.99143544 0) (48.92652564 -19.39042628 0) (28.82056442 -12.34443579 -3.147178089e-18) (31.9119791 -12.36807728 -2.3616922e-18) (18.62174918 -8.640262253 1.635134025e-18) (5.83021446 -4.029467042 0) (162.8195683 50.16190364 0) (169.6955095 49.99000083 0) (94.51755695 28.10229872 0) (164.8863622 35.69454681 1.082593537e-17) (163.5103392 35.76299438 -7.296293123e-18) (87.52440868 17.22061719 0) (164.9039163 30.5038341 0) (161.7822246 30.66001402 0) (89.06235255 14.78509739 0) (164.9174391 28.63996379 0) (160.8970675 28.61375952 0) (89.09125101 13.74256331 4.470317885e-17) (126.0052936 -23.50295966 -6.522761962e-18) (112.1193768 -21.71877618 4.429241061e-18) (83.11269587 -16.28167621 0) (126.8605336 -23.22275121 0) (112.8831418 -21.3820645 0) (83.90288136 -16.01791204 0) (118.4466923 -25.22602986 -1.685133909e-17) (104.8622446 -23.04279363 1.516336227e-17) (77.40249875 -17.33043716 -8.37626908e-20) (125.1451746 -23.70434666 -6.139740441e-18) (111.274019 -21.94373483 -2.115099792e-17) (81.99275615 -16.38657476 2.698921352e-17) (124.2390938 -23.8747411 -1.216654495e-17) (110.3505996 -22.04711495 0) (80.95364539 -16.41519403 -2.964565553e-18) (94.05944341 124.2155888 8.720838093e-17) (120.4988212 120.8828986 0) (74.34966546 148.3379173 0) (96.20663625 -28.60683552 0) (85.00628574 -25.7674398 -1.527108276e-17) (64.67976955 -19.97422427 -1.158960726e-20) (95.73272926 -28.56524867 0) (84.63424002 -25.75132511 6.552912626e-20) (64.69899617 -20.05898866 0) (92.48479984 -28.69077662 6.532847144e-18) (81.75325212 -25.93821857 0) (61.9799168 -20.05103 -1.890654277e-17) (85.82736745 -10.67920544 -8.441323009e-22) (82.00067979 -10.37312768 -3.734160259e-18) (69.35750328 -8.955320184 7.143753057e-18) (82.43475772 -28.02127749 -4.656111146e-18) (72.11781956 -25.0111945 0) (53.08596655 -18.96063416 5.135150409e-20) (81.79876274 -27.89314774 5.922405476e-20) (71.59220886 -24.9886861 -6.416294802e-18) (52.76454508 -18.95481745 1.353899474e-17) (85.95461341 -10.73912755 1.941627847e-18) (82.04389339 -10.3771401 2.580954816e-18) (69.41022318 -8.978047821 3.507168706e-18) (85.96238998 -10.7808822 0) (82.03776994 -10.39795012 0) (69.31178879 -8.983576992 -3.504159656e-18) (87.75317445 -12.22181314 5.641481722e-18) (83.60130477 -11.91193053 -4.191670919e-18) (70.15244379 -10.17588433 -5.713177968e-19) (51.26491579 -19.56400747 2.170576337e-18) (38.07876841 -15.44513563 -2.254906101e-18) (18.23707753 -8.511476516 0) (151.0843134 -5.648875361 0) (135.3675258 -5.769860952 0) (98.85637286 -4.41708683 -3.052326163e-18) (151.724884 -4.984920387 2.146306563e-18) (136.1390294 -5.185691726 0) (98.9440392 -4.002900474 0) (149.3137907 -8.011048986 0) (133.7586404 -8.009430838 6.974158928e-18) (99.47527866 -6.004339468 -1.60057807e-17) (148.6082088 -8.754053127 -2.079859258e-18) (132.9720452 -8.67664774 -2.836316089e-18) (99.27818108 -6.479210457 -8.206677583e-18) (53.7271073 -13.20865836 -1.273260364e-17) (53.11859699 -14.67884774 -8.517086077e-18) (51.65897964 -17.18900551 5.54038202e-18) (49.07614414 -12.02368677 8.070371975e-18) (48.27741639 -14.33534881 5.403573783e-18) (46.7594681 -17.26241571 0) (79.44372678 -8.683264287 -6.019857388e-18) (78.38172566 -8.55030945 7.011273297e-18) (72.4405374 -8.340196723 -5.388320115e-18) (79.91361261 -8.407337715 2.966621241e-18) (78.70872081 -8.246684047 -9.830912304e-19) (72.19377926 -7.945835654 -5.313293593e-18) (90.48551801 -28.69973764 0) (79.81220548 -25.82426051 4.264210603e-18) (60.13500312 -19.86693736 4.986798544e-20) (73.4336027 -26.47921113 0) (63.01261456 -23.34857353 -5.67755002e-18) (43.55303483 -16.84338592 1.203508878e-17) (72.61055725 -26.22086939 2.819215026e-18) (62.23260632 -23.19781039 -1.952473399e-18) (42.77053124 -16.65466503 2.730829842e-18) (74.11299356 -26.75784228 0) (63.68728149 -23.57029257 2.091600396e-18) (44.06958164 -16.99349629 7.9088358e-21) (74.94879256 -27.09439537 -8.39088104e-18) (64.6442202 -23.88865932 -1.295399825e-17) (45.0106098 -17.2619418 1.573569572e-17) (142.3342929 93.63819103 -7.573902993e-17) (168.6339903 84.10916565 0) (106.7352333 78.08642752 0) (115.8824556 -26.01289083 0) (102.5370484 -23.64202851 0) (76.52101496 -17.93123032 0) (80.8663399 -8.032186914 7.109090488e-18) (79.43828677 -7.923187249 -8.48288273e-18) (71.79307436 -7.417902673 1.079385562e-17) (80.48672231 -8.076227745 -1.447472206e-18) (79.15220652 -7.892751791 4.822558837e-18) (71.63788687 -7.45213575 -5.202904136e-18) (81.80963412 -8.097022801 1.354458904e-18) (79.68222565 -7.930876746 0) (70.44349563 -7.141447093 0) (81.72585144 -8.006403315 1.361268117e-18) (79.71584305 -7.853080106 -9.07454929e-19) (70.71216206 -7.117563999 -4.900064698e-18) (81.22557807 -8.033936532 -2.817057452e-18) (79.5306247 -7.925149027 7.470329655e-18) (71.13274372 -7.260640064 -3.786303795e-18) (81.55693042 -7.916286788 -2.933880731e-18) (79.79658244 -7.783469295 2.930179735e-18) (71.33256696 -7.181680783 -6.59588142e-19) (82.12173216 -8.548850795 6.658035954e-18) (79.84276223 -8.469270765 -4.725356425e-21) (70.19192076 -7.509827419 -8.959963173e-18) (82.43970322 -8.678797216 2.665153703e-21) (80.02057464 -8.567233902 -1.73440359e-18) (70.44751043 -7.640817165 -4.696506358e-18) (83.19045836 -8.88888643 0) (80.49835746 -8.726142339 8.878971109e-19) (70.92492243 -7.843093752 -5.983242215e-19) (82.90507115 -8.836400172 0) (80.30304604 -8.681182598 -3.372540188e-18) (70.74550283 -7.781876298 5.67303313e-19) (84.06146432 -8.907028764 1.169809185e-18) (81.14094853 -8.645617154 -9.973027083e-22) (70.68185305 -7.744343503 7.895719389e-18) (84.07245455 -8.929599472 -1.169284309e-18) (81.13586916 -8.662604705 -3.106932666e-18) (70.52545886 -7.734369105 0) (84.0512549 -8.900712434 -1.17552137e-18) (81.15680564 -8.650151355 0) (70.82779603 -7.765161087 -1.246052181e-22) (84.02539247 -8.918949087 1.174688033e-18) (81.15350772 -8.690759282 3.893642382e-18) (70.95001987 -7.805256625 5.232197489e-19) (83.66011527 -8.826821122 -2.42046012e-18) (80.89926571 -8.592798375 4.010578831e-18) (71.08732775 -7.773500169 1.083538672e-18) (83.63640084 -8.842719024 4.022205557e-21) (80.90132338 -8.63840118 -7.974645262e-19) (71.2336261 -7.823562866 -5.370801251e-19) (83.67293169 -8.841504146 -4.832363796e-18) (80.89123358 -8.595609148 -1.605355897e-18) (70.92873268 -7.751462807 -5.427121406e-19) (83.69754465 -8.873555231 -1.20635736e-18) (80.89788131 -8.625257268 8.00236642e-18) (70.78809811 -7.746780367 -4.330418393e-18) (84.33761012 -9.105190883 0) (81.23144816 -8.860055206 0) (70.43763997 -7.856776425 -4.153350134e-18) (84.29356591 -9.086887208 -1.151845995e-18) (81.22079856 -8.843004213 0) (70.44592824 -7.843413031 0) (84.40039603 -9.113697359 -4.902624782e-22) (81.2544672 -8.878366383 -1.920295529e-21) (70.44707877 -7.874179597 8.779443463e-18) (84.45774512 -9.14747088 8.768646675e-19) (81.28201772 -8.903129331 0) (70.4638074 -7.889737908 0) (86.51888329 -11.25301389 0) (82.53531564 -10.90384801 -2.450589681e-18) (69.77164232 -9.428297495 6.661707596e-18) (86.59387004 -11.26662981 0) (82.5918831 -10.89789118 0) (69.85586599 -9.437476908 0) (86.19507037 -11.19594834 -1.893573817e-18) (82.25370239 -10.90203773 6.341986061e-19) (69.34493614 -9.347826817 0) (86.05172789 -11.12190568 -9.64549528e-21) (82.07521571 -10.80642298 2.562655942e-18) (69.04818799 -9.238801636 3.500059151e-18) (53.23907802 -19.96038715 -4.212474252e-19) (40.34312831 -16.19438381 5.756931919e-19) (20.20932821 -9.216468573 -1.574521139e-19) (38.61555474 -14.9389023 0) (24.10573871 -10.53253428 0) (8.068425197 -4.827407853 0) (35.65955961 -13.75673668 1.919307693e-18) (21.31369797 -9.563706997 0) (6.796510798 -4.432463222 0) (163.3712497 47.24195627 -2.250336717e-17) (168.8399044 47.43931563 0) (93.55887234 25.95059402 0) (164.8466449 37.85421025 1.11550821e-17) (164.6602543 37.97390053 6.050375556e-19) (88.3298702 18.53942515 -4.661411801e-17) (164.5721852 25.06158665 -1.963720089e-17) (158.4140082 24.79594164 0) (88.22753058 11.77041112 -5.244502658e-18) (164.8239537 26.77829757 -2.022431438e-17) (159.6058427 26.55344336 2.682248317e-17) (88.39510606 12.63452043 0) (164.3025519 23.50170752 0) (157.7147548 23.31781029 0) (89.17691489 11.1960335 5.475454297e-18) (163.9692427 21.54724261 3.700909887e-18) (156.7859206 21.28782387 0) (90.31529159 10.27850405 0) (117.8064774 -25.36250742 -1.141564298e-17) (104.2493588 -23.09906451 1.543791663e-17) (77.13127098 -17.41090587 -2.748608123e-17) (122.7789331 -24.2818078 5.960130109e-18) (108.9984212 -22.32547517 1.629238661e-17) (80.15998276 -16.67212589 -2.314344972e-17) (123.4952243 -24.04818802 0) (109.6371843 -22.12005109 0) (80.62051646 -16.50941342 -2.316974991e-17) (122.0387122 -24.4960744 -7.736465556e-20) (108.2717268 -22.49949544 -2.067505765e-17) (79.4728396 -16.78425622 2.358442e-17) (121.3086349 -24.58031091 -6.543345521e-18) (107.5534201 -22.56765069 4.433184392e-18) (78.86632647 -16.84392136 0) (104.7278755 -27.9773996 9.239739261e-18) (92.72695913 -25.31555932 -1.245410322e-17) (69.77281415 -19.39224324 -1.757819354e-17) (105.3222954 -28.03633247 9.776209349e-18) (93.30645236 -25.38826832 0) (70.07546346 -19.35617611 -2.433895496e-17) (99.96377568 -28.31770663 8.677623353e-18) (88.54318505 -25.7074253 -2.934765554e-17) (67.26214984 -19.87307471 1.65772386e-17) (100.6073118 -28.25769453 0) (89.09390162 -25.54897303 5.528437796e-18) (67.85165632 -19.81228803 0) (102.8427659 -28.06238028 0) (91.1010935 -25.52208433 0) (68.48323438 -19.54146013 -4.488739417e-18) (102.1357176 -28.24859591 0) (90.39166815 -25.50242553 0) (67.99214783 -19.52088538 0) (64.91388591 121.2741789 3.348831795e-17) (77.1292428 129.045319 0) (36.10533293 155.644627 0) (2.578151587 -3.926125011 -1.750289876e-18) ) ; boundaryField { topAndBottom { type slip; } inlet { type fixedValue; value uniform (100 0 0); } outlet { type inletOutlet; inletValue uniform (0 0 0); value nonuniform List<vector> 62 ( (108.403989 -0.06068097407 0) (108.3838426 -0.1790313404 0) (108.3323436 -0.2957312687 0) (108.2418837 -0.4011833118 0) (91.77336431 -0.4384480691 0) (91.58993394 -0.3225403056 0) (91.47160839 -0.1956119694 0) (91.4160518 -0.0659843303 0) (107.2764752 -0.701744371 0) (106.8582147 -0.7427333011 0) (106.6934145 -0.7551356051 0) (106.0831345 -0.7885830698 0) (105.8164675 -0.7983321691 0) (104.5132916 -0.8246358401 0) (103.7052525 -0.8359764416 0) (99.46773011 -0.9432261089 0) (99.32148427 -0.9670375391 0) (99.48161902 -0.9429073133 -2.654273314e-37) (99.21153523 -0.9337905206 2.650956793e-37) (98.07959256 -0.9121417203 0) (97.67904748 -0.9059129039 0) (96.53914397 -0.8864590054 0) (96.18849312 -0.8792780259 0) (95.23220127 -0.8547057123 0) (94.94477197 -0.8453679662 0) (94.1722416 -0.8133974727 0) (93.94361782 -0.8012895167 0) (93.33995699 -0.759931305 0) (108.1379746 -0.4697384835 0) (108.0481995 -0.5243382471 0) (107.9415782 -0.56880238 0) (107.8105064 -0.6094484209 0) (107.6489167 -0.6455235235 0) (107.3941857 -0.6863224866 0) (93.16463334 -0.7439377711 0) (92.77636617 -0.7012338557 0) (92.52006703 -0.6627571041 0) (92.30406156 -0.6193596393 0) (92.12174233 -0.5714331396 0) (91.96425153 -0.5130296036 0) (107.1484927 -0.7160736724 0) (107.0093983 -0.7297216501 0) (106.5125008 -0.7669335374 0) (106.3113485 -0.7780999243 0) (105.4920532 -0.8073493278 0) (105.0767433 -0.8158799451 0) (102.5129091 -0.854048763 0) (100.8743241 -0.8892242524 0) (99.5632953 -0.9619177464 0) (99.62001377 -0.9535947852 0) (98.86485785 -0.9256767701 0) (98.47960648 -0.9186266344 0) (97.28614391 -0.8996692526 0) (96.90539388 -0.8932270961 0) (95.85382267 -0.8716225683 0) (95.53512329 -0.8634450808 0) (94.67251119 -0.835395638 0) (94.41510348 -0.8247517932 0) (93.72892806 -0.7883776474 0) (93.52784111 -0.7746098522 0) (107.5034165 -0.6677458047 0) (93.00011665 -0.7246597989 0) ) ; } wing { type movingWallVelocity; value nonuniform List<vector> 378 ( (-0.04777971942 -1.67942445 -7.918456977e-13) (-0.0454682202 -1.659653379 -1.583691395e-12) (-0.04570957044 -1.661648361 1.943036621e-25) (-0.01618685147 -1.355918156 -7.918456977e-13) (0.01553283781 -1.323034884 0) (0.006527781719 -1.515975404 -2.375537093e-12) (-0.01593738844 -1.353921641 0) (-0.01186351402 -1.58204159 0) (-0.03322247396 -1.643452421 0) (-0.04742464305 -1.675508048 7.918456977e-13) (0.01627650014 -1.325253007 0) (0.008254916102 -1.308921168 0) (-0.03479586473 -1.563172458 0) (-0.03420968822 -1.55722378 -3.167382791e-12) (-0.03499697247 -1.565177823 -1.583691395e-12) (-0.03560921064 -1.571188425 -2.375537093e-12) (-0.03743706383 -1.589118399 -1.583691395e-12) (-0.01902064311 -1.604006986 1.583691395e-12) (-0.0447844034 -1.653933596 -7.918456977e-13) (-0.04771257085 -1.67782641 7.918456977e-13) (-0.04645151109 -1.667638077 -1.583691395e-12) (-0.0426978746 -1.667316549 0) (0.02388972819 -1.37183311 3.628083118e-26) (0.02399926734 -1.373829357 0) (0.02424398358 -1.379852277 -7.918456977e-13) (0.02155813269 -1.436268155 7.918456977e-13) (0.02222957282 -1.430267692 -3.167382791e-12) (0.02131990194 -1.438265549 -2.482118382e-25) (0.0205429079 -1.444172986 2.917081878e-25) (-0.01707127626 -1.363822601 -3.167382791e-12) (-0.016860326 -1.361909603 7.918456977e-13) (-0.02250912046 -1.614110279 -1.543736324e-24) (-0.03027737812 -1.635660395 -7.918456977e-13) (0.008287717602 -1.508567499 0) (0.00785414529 -1.510422085 -1.583691395e-12) (-0.002476460801 -1.550431239 1.180964649e-24) (-0.01487790144 -1.345966483 4.585736541e-25) (-0.0151528749 -1.347944841 -1.583691395e-12) (-0.03028269464 -1.514976134 -1.583691395e-12) (-0.03172859769 -1.530964501 -1.583691395e-12) (-0.03118517889 -1.524943472 0) (-0.03045915684 -1.516922497 -1.387936749e-25) (-0.03100352827 -1.522936358 7.918456977e-13) (-0.03403534756 -1.555434712 -2.375537093e-12) (-0.03342050154 -1.549009431 7.918456977e-13) (-0.03190945386 -1.532971461 7.918456977e-13) (-0.03245735573 -1.538991952 1.475039049e-25) (-0.03322920056 -1.54701361 -1.583691395e-12) (-0.03264972698 -1.540997489 1.583691395e-12) (-0.03642102299 -1.579203688 -1.583691395e-12) (-0.0358126297 -1.573192173 0) (-0.0136831936 -1.587769059 1.583691395e-12) (-0.03662244626 -1.581207707 -1.583691395e-12) (-0.03723140046 -1.587205355 1.73422705e-25) (-0.01978876252 -1.606259894 1.583691395e-12) (-0.02173472957 -1.611894757 1.583691395e-12) (-0.04669601142 -1.669635424 -7.918456977e-13) (0.02346454851 -1.365832355 -1.652743722e-25) (0.02269434628 -1.357627818 0) (0.02326813837 -1.363496816 0) (0.02247153441 -1.355699921 0) (0.02438220535 -1.387913433 -1.583691395e-12) (0.02429383686 -1.381865489 0) (0.02438586278 -1.389932589 -1.583691395e-12) (0.02299349857 -1.422234924 -1.583691395e-12) (0.02243877355 -1.42826212 0) (0.02315625332 -1.420220576 -1.583691395e-12) (0.02029896127 -1.445958164 -2.375537093e-12) (0.01937257443 -1.452402892 -1.583691395e-12) (0.0177502068 -1.462212208 -7.414816028e-25) (0.01906369732 -1.454378038 0) (0.01808245961 -1.460295889 7.918456977e-13) (-0.001840957597 -1.548145683 1.583691395e-12) (-0.01566629558 -1.593865163 2.375537093e-12) (-0.04166838376 -1.627525296 0) (-0.04145170216 -1.625583833 -1.907935109e-25) (-0.04189031904 -1.62951888 -1.583691395e-12) (-0.04212192289 -1.63152129 -1.583691395e-12) (-0.04522479704 -1.657661444 0) (-0.0459535662 -1.66364705 0) (-0.01641820766 -1.357918227 -1.583691395e-12) (-0.02886293608 -1.631833378 0) (0.0149469858 -1.321424701 0) (0.006951659923 -1.514214769 -1.583691395e-12) (-0.01358814976 -1.337711797 0) (-0.01325600167 -1.335821846 -1.583691395e-12) (-0.01397264546 -1.340022835 0) (-0.0143291436 -1.342259912 2.913672471e-25) (-0.0156781099 -1.351928161 -1.583691395e-12) (-0.0125767539 -1.584307742 0) (-0.04352041202 -1.64351239 -1.583691395e-12) (-0.04329016807 -1.641514074 -3.167382791e-12) (-0.03259470697 -1.641778677 7.918456977e-13) (-0.04375731927 -1.64550948 7.918456977e-13) (-0.04399423773 -1.647498103 7.918456977e-13) (-0.03491865532 -1.647827682 -7.918456977e-13) (-0.04719729248 -1.673635143 -1.583691395e-12) (0.01398702999 -1.482226821 0) (0.005986952924 -1.518221834 -7.918456977e-13) (0.005432435481 -1.520525088 -1.583691395e-12) (-0.005251481878 -1.310110557 -7.918456977e-13) (-0.03459807704 -1.561166591 0) (-0.03440126826 -1.559168751 1.583691395e-12) (-0.0352010956 -1.567181355 -1.583691395e-12) (-0.03540521873 -1.569184888 0) (-0.01440015292 -1.58998983 -7.918456977e-13) (-0.01512599276 -1.592217157 -7.918456977e-13) (-0.03768435611 -1.591418758 -1.583691395e-12) (-0.04125149468 -1.623795688 7.918456977e-13) (-0.04100250052 -1.621574945 -2.628266244e-25) (-0.0426019038 -1.635518165 0) (-0.04236351949 -1.633521926 0) (-0.04499609996 -1.655717264 -1.957817994e-25) (-0.04620581124 -1.665643104 0) (-0.0411392496 -1.663551005 4.150911347e-24) (-0.04203512128 -1.665722931 1.583691395e-12) (0.02377201356 -1.369893734 -1.583691395e-12) (0.02364689805 -1.368096216 -7.918456977e-13) (0.0240952287 -1.375834793 7.918456977e-13) (0.02417817999 -1.377841725 0) (0.02179603477 -1.434270558 0) (0.02201975128 -1.432270232 0) (0.02106914093 -1.440256843 0) (0.02080402669 -1.442238285 -2.789671557e-25) (-0.01663888735 -1.359918437 -1.583691395e-12) (-0.02308678711 -1.615743566 -7.918456977e-13) (-0.02967497629 -1.634037914 -7.918456977e-13) (0.00999749586 -1.311246121 0) (0.01223977705 -1.31514329 0) (0.01323750677 -1.317179836 -7.918456977e-13) (0.007402024774 -1.512335937 -1.583691395e-12) (-0.002972557863 -1.552209263 -1.16012526e-24) (-0.004102041564 -1.556179523 0) (-0.003462208345 -1.553940864 0) (-0.01251463468 -1.33191995 0) (-0.01289710535 -1.333864806 0) (-0.01118009132 -1.326015952 3.167382791e-12) (-0.01210798157 -1.330028892 -1.583691395e-12) (-0.01171219859 -1.328261506 7.918456977e-13) (-0.01459812203 -1.344041043 -1.583691395e-12) (-0.01541709892 -1.349935102 -1.583691395e-12) (-0.03012046572 -1.513188626 1.583691395e-12) (-0.03154773359 -1.528957354 0) (-0.03136665289 -1.526950405 -1.583691395e-12) (-0.03064024294 -1.518922506 -7.918456977e-13) (-0.03082188562 -1.520929432 1.583691395e-12) (-0.0336036526 -1.550925119 -1.605914626e-25) (-0.03209031001 -1.53497842 -4.751074186e-12) (-0.03227117412 -1.536985567 -1.583691395e-12) (-0.03303621232 -1.545008105 -1.583691395e-12) (-0.03284296966 -1.543002797 -1.492804159e-25) (-0.0362185698 -1.577199712 0) (-0.03601559976 -1.575195942 0) (-0.01313604748 -1.586057372 -1.583691395e-12) (-0.03682338311 -1.583211751 0) (-0.03702435295 -1.585213917 -1.583691395e-12) (-0.02096754045 -1.609683643 -7.918456977e-13) (-0.02038188984 -1.607989717 0) (-0.04283392575 -1.637515623 -1.583691395e-12) (-0.04306290424 -1.639514718 -1.583691395e-12) (-0.03195239712 -1.640077993 0) (-0.044219234 -1.649409195 7.918456977e-13) (-0.03554440121 -1.649439966 2.375537093e-12) (-0.04694870883 -1.671638589 -1.583691395e-12) (0.02291194899 -1.359602759 0) (0.0231041724 -1.361584202 0) (0.02225404384 -1.353903393 -7.918456977e-13) (0.02436515623 -1.385895985 0) (0.02433581477 -1.383879496 -1.583691395e-12) (0.02437801918 -1.39194203 2.554074622e-27) (0.024362442 -1.393868994 -7.070684685e-27) (0.02281542313 -1.42424746 -1.583691395e-12) (0.02263385537 -1.42625439 0) (0.02330643601 -1.418219818 0) (0.02344589264 -1.416297184 -7.918456977e-13) (0.01965052094 -1.450498341 -1.583691395e-12) (0.01743657886 -1.46399366 -2.375537093e-12) (0.01873800566 -1.456354269 -1.583691395e-12) (0.01841230314 -1.458330313 -1.583691395e-12) (0.004054433907 -1.525977015 1.583691395e-12) (0.004506412035 -1.524223952 0) (0.004979795091 -1.522363901 0) (-0.04792262209 -1.679493494 1.583691395e-12) (-0.006427609269 -1.564198252 1.583691395e-12) (-0.007102861042 -1.566480619 -1.583691395e-12) (-0.001610157415 -1.306308924 -7.918456977e-13) (0.0005750425528 -1.305296489 0) (0.002411736411 -1.305220787 7.918456977e-13) (-0.01770692397 -1.370123493 0) (-0.01789370537 -1.372069424 1.485179303e-25) (-0.01916964838 -1.386104343 0) (-0.01116964433 -1.57981141 -1.376778535e-24) (-0.02746749093 -1.628011377 -1.587370914e-24) (-0.02805979273 -1.629638043 -2.375537093e-12) (0.01017403854 -1.500365555 -1.583691395e-12) (0.009756239979 -1.502253866 -9.375210327e-25) (-0.02049571189 -1.402176204 -1.183570511e-25) (-0.01933734753 -1.388112047 -1.583691395e-12) (-0.02309130307 -1.43441185 -1.583691395e-12) (-0.02196496812 -1.420411035 -1.583691395e-12) (-0.0206571272 -1.40418568 -3.167382791e-12) (-0.02182213628 -1.418624392 -7.918456977e-13) (-0.0232610822 -1.436422501 -3.167382791e-12) (-0.02450608076 -1.450475122 -1.360554416e-25) (-0.02468608347 -1.452482305 1.360556566e-25) (-0.04604652404 -1.67537096 1.583691395e-12) (0.01991052682 -1.339520535 8.969606263e-25) (0.01313916764 -1.486409984 0) (0.01352461033 -1.484537207 -8.74714574e-25) (-0.007389956812 -1.314203854 -1.583691395e-12) (-0.006359102664 -1.312109445 1.583691395e-12) (-0.008715967761 -1.571832475 0) (-0.01639352897 -1.596082102 -7.918456977e-13) (-0.03811318978 -1.595425132 -1.583691395e-12) (-0.01713548606 -1.598342688 -1.389956676e-24) (-0.03832068771 -1.597368114 7.918456977e-13) (-0.03895725443 -1.603367174 7.918456977e-13) (-0.03962493663 -1.659774925 -1.730621422e-24) (-0.04690647807 -1.677440246 -7.918456977e-13) (-0.04026271793 -1.661380144 -7.918456977e-13) (0.02411703201 -1.404093224 0) (0.02433367226 -1.396159509 0) (0.02429232189 -1.398354434 -2.471431273e-26) (0.02404132147 -1.406098489 -3.167382791e-12) (0.02359942184 -1.414011018 -7.918456977e-13) (0.02374065703 -1.411824333 -7.918456977e-13) (0.0002461635689 -1.540490519 1.127221519e-24) (-0.008067761164 -1.315793102 1.460798068e-24) (-0.01011599796 -1.321944108 -9.516430476e-25) (-0.01845914666 -1.378076359 0) (-0.0186378964 -1.380081898 7.918456977e-13) (-0.009397122692 -1.574065252 -7.918456977e-13) (0.0114979296 -1.494265116 0) (-0.01059996253 -1.32372803 0) (-0.02000562259 -1.396147489 0) (-0.01983524256 -1.394138957 -1.264883632e-25) (-0.02260480872 -1.42838127 -1.583691395e-12) (-0.02244310489 -1.42637162 -1.583691395e-12) (-0.02115128646 -1.410211631 1.245172068e-25) (-0.02131602017 -1.412212698 0) (-0.0237908393 -1.442445617 7.918456977e-13) (-0.02396917268 -1.444453248 -1.346293877e-25) (-0.02540852245 -1.460500622 -1.583691395e-12) (-0.02522800502 -1.458503403 -3.167382791e-12) (-0.03382319458 -1.553221404 1.583691395e-12) (-0.04007914716 -1.613370816 0) (-0.04074407241 -1.619272996 0) (-0.03985310268 -1.611371029 0) (-0.03917428496 -1.605370184 -1.583691395e-12) (-0.0311050801 -1.637853028 7.918456977e-13) (-0.03725474002 -1.653806542 -7.918456977e-13) (-0.03639433594 -1.65162057 3.167382791e-12) (0.01805251427 -1.331401104 0) (0.01861726831 -1.333664562 -7.918456977e-13) (0.01998255029 -1.4481892 -7.918456977e-13) (0.01197661996 -1.492019195 -7.918456977e-13) (0.002409395047 -1.532349721 -1.583691395e-12) (-0.0002404888991 -1.542316586 -1.583691395e-12) (0.001921523365 -1.534203717 -1.583691395e-12) (-0.003863245593 -1.30827907 -7.918456977e-13) (-0.005766176203 -1.561962386 -1.583691395e-12) (-0.007638380119 -1.56828136 -1.583691395e-12) (-0.01753486763 -1.368337349 1.583691395e-12) (-0.01731266923 -1.366122429 0) (-0.01808564742 -1.374067091 -1.583691395e-12) (-0.01899559121 -1.384097496 -7.918456977e-13) (-0.01063696853 -1.578094043 -1.583691395e-12) (-0.02666604825 -1.625803028 3.733709993e-24) (0.01411315307 -1.319266849 -7.918456977e-13) (0.01059278954 -1.4984368 -1.583691395e-12) (0.009351916372 -1.504015742 0) (0.008826627583 -1.506262457 -7.918456977e-13) (-0.02033508321 -1.400166695 0) (-0.01950331497 -1.390120947 -1.583691395e-12) (-0.02292865797 -1.432400363 0) (-0.0221207857 -1.422359402 0) (-0.02081902906 -1.406195133 0) (-0.02164831332 -1.416422209 7.918456977e-13) (-0.02343735556 -1.438430218 1.325618307e-25) (-0.02432648973 -1.448467919 -1.583691395e-12) (-0.02579000517 -1.464711435 -7.918456977e-13) (-0.02599095564 -1.466920713 0) (-0.02486606744 -1.45448949 -1.583691395e-12) (-0.02881492787 -1.498750438 0) (-0.02863573701 -1.496743399 -1.583691395e-12) (-0.02757298519 -1.484698632 7.918456977e-13) (-0.02775336243 -1.4867058 -1.583691395e-12) (-0.02615356705 -1.468708392 0) (-0.02632939518 -1.47065309 0) (-0.02739260797 -1.482691465 0) (-0.02721224944 -1.480684296 0) (-0.02899586688 -1.500757581 7.918456977e-13) (-0.0291768059 -1.502764725 0) (-0.0340646444 -1.645640334 1.583691395e-12) (-0.04517038686 -1.673264658 -7.918456977e-13) (0.01696819876 -1.327485308 -7.918456977e-13) (0.01941994822 -1.33720068 0) (0.0203665222 -1.341798856 0) (0.02068888062 -1.343568822 -5.899733027e-25) (0.01662421 -1.468548662 0) (0.01704176839 -1.46623635 0) (0.01273802709 -1.48834549 0) (0.0162695419 -1.470433244 -1.583691395e-12) (0.0159007424 -1.472386446 0) (0.006141305713 -1.306902884 0) (-0.004754388641 -1.558461925 7.918456977e-13) (-0.005262634839 -1.560234929 0) (-0.008188879254 -1.57010474 -1.583691395e-12) (-0.03792220348 -1.593636783 2.031738229e-25) (-0.01770774487 -1.600085389 -7.918456977e-13) (-0.01827079421 -1.601788539 0) (-0.03853313046 -1.599363036 0) (-0.03874534352 -1.60136491 -1.583691395e-12) (-0.04450415992 -1.651714201 0) (-0.03875656991 -1.657589309 0) (0.02418401997 -1.402088357 -2.264800628e-26) (0.02424262175 -1.400139593 0) (0.02394732244 -1.408095687 7.918456977e-13) (0.02384362805 -1.41004608 -6.756971461e-26) (-0.009612891663 -1.320218454 0) (-0.008876942197 -1.317997237 0) (-0.01827507663 -1.376071426 0) (-0.01881593892 -1.382089733 -1.347691797e-25) (-0.01009323511 -1.576336805 0) (-0.02526890589 -1.621915415 0) (-0.02586989092 -1.623600828 7.918456977e-13) (-0.02466031359 -1.620193581 -1.583691395e-12) (-0.02386669203 -1.617948886 -7.918456977e-13) (0.01118189455 -1.313153899 1.583691395e-12) (0.01099775244 -1.496571619 -1.583691395e-12) (-0.02017297933 -1.398156883 1.20896447e-25) (-0.01966798031 -1.392130094 0) (-0.02276666246 -1.430390913 -1.583691395e-12) (-0.02228144644 -1.424362157 7.918456977e-13) (-0.02098370203 -1.408203544 0) (-0.02146911777 -1.414132839 -1.583691395e-12) (-0.02361362892 -1.440437936 -1.583691395e-12) (-0.02414766651 -1.446460683 -1.346354354e-25) (-0.02558180196 -1.462417105 0) (-0.02504668066 -1.456496463 -3.167382791e-12) (-0.0282833956 -1.492727951 1.319244865e-25) (-0.02845913386 -1.494735879 -1.583691395e-12) (-0.02810766531 -1.490720211 0) (-0.02793167023 -1.488712858 1.32541341e-25) (-0.02668212795 -1.474659687 0) (-0.02650657695 -1.472651752 -1.317742259e-25) (-0.02685767893 -1.476667623 7.918456977e-13) (-0.02703375977 -1.478676101 0) (-0.02953812637 -1.506768533 -1.390170156e-25) (-0.02935775572 -1.504771681 0) (-0.02971178059 -1.508685001 1.501935673e-25) (-0.02991999134 -1.510979516 1.583691395e-12) (-0.04030499365 -1.615370799 -1.583691395e-12) (-0.04052919809 -1.617361282 0) (-0.0396263471 -1.609371275 0) (-0.03939901831 -1.60737173 1.845467182e-25) (-0.03789183808 -1.655411979 -2.375537093e-12) (-0.04359440396 -1.669482038 0) (-0.04449982194 -1.671656518 7.918456977e-13) (0.01744678692 -1.329142134 -1.583691395e-12) (0.01902060483 -1.335409491 0) (0.02132441138 -1.347400164 0) (0.02101112252 -1.345463366 0) (0.02161800954 -1.34927985 0) (0.02195320937 -1.351621528 7.918456977e-13) (0.01234408558 -1.490246221 -8.621646515e-25) (0.01515537126 -1.476300239 0) (0.01553029565 -1.474348395 -7.543615072e-25) (0.01478125295 -1.478205011 -1.583691395e-12) (0.01443054548 -1.479980948 0) (0.002883271549 -1.530519351 -1.583691395e-12) (0.003475783217 -1.528221275 3.167382791e-12) (-0.001218005139 -1.545905181 -7.918456977e-13) (-0.0007384938013 -1.544163584 2.375537093e-12) (0.001455464359 -1.535952617 0) (0.0008577555481 -1.538195505 7.918456977e-13) (0.004168143304 -1.305659209 1.583691395e-12) (-0.04741619923 -1.678665952 -1.583691395e-12) ) ; } front { type empty; } back { type empty; } } // ************************************************************************* //
[ "ishantamrakat24@gmail.com" ]
ishantamrakat24@gmail.com
ff1485aea9023f41470aca2477804b3d2560ed6a
1dbf007249acad6038d2aaa1751cbde7e7842c53
/vpc/src/v2/model/NeutronShowFirewallPolicyRequest.cpp
a92e22f78f4c7127cb327d087619073ca58d0d75
[]
permissive
huaweicloud/huaweicloud-sdk-cpp-v3
24fc8d93c922598376bdb7d009e12378dff5dd20
71674f4afbb0cd5950f880ec516cfabcde71afe4
refs/heads/master
2023-08-04T19:37:47.187698
2023-08-03T08:25:43
2023-08-03T08:25:43
324,328,641
11
10
Apache-2.0
2021-06-24T07:25:26
2020-12-25T09:11:43
C++
UTF-8
C++
false
false
1,729
cpp
#include "huaweicloud/vpc/v2/model/NeutronShowFirewallPolicyRequest.h" namespace HuaweiCloud { namespace Sdk { namespace Vpc { namespace V2 { namespace Model { NeutronShowFirewallPolicyRequest::NeutronShowFirewallPolicyRequest() { firewallPolicyId_ = ""; firewallPolicyIdIsSet_ = false; } NeutronShowFirewallPolicyRequest::~NeutronShowFirewallPolicyRequest() = default; void NeutronShowFirewallPolicyRequest::validate() { } web::json::value NeutronShowFirewallPolicyRequest::toJson() const { web::json::value val = web::json::value::object(); if(firewallPolicyIdIsSet_) { val[utility::conversions::to_string_t("firewall_policy_id")] = ModelBase::toJson(firewallPolicyId_); } return val; } bool NeutronShowFirewallPolicyRequest::fromJson(const web::json::value& val) { bool ok = true; if(val.has_field(utility::conversions::to_string_t("firewall_policy_id"))) { const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("firewall_policy_id")); if(!fieldValue.is_null()) { std::string refVal; ok &= ModelBase::fromJson(fieldValue, refVal); setFirewallPolicyId(refVal); } } return ok; } std::string NeutronShowFirewallPolicyRequest::getFirewallPolicyId() const { return firewallPolicyId_; } void NeutronShowFirewallPolicyRequest::setFirewallPolicyId(const std::string& value) { firewallPolicyId_ = value; firewallPolicyIdIsSet_ = true; } bool NeutronShowFirewallPolicyRequest::firewallPolicyIdIsSet() const { return firewallPolicyIdIsSet_; } void NeutronShowFirewallPolicyRequest::unsetfirewallPolicyId() { firewallPolicyIdIsSet_ = false; } } } } } }
[ "hwcloudsdk@huawei.com" ]
hwcloudsdk@huawei.com
de8b3aec32af4017d0ab0021f1c4da68cc981dc8
9b963f56e0964a88f2a45b6fe9aa371e1c1c704e
/Floyd_Warshall/11780-플로이드2(Floyd-Warshall).cpp
4f3a78a64679d4cfac567fc4b6d11dde2490f556
[]
no_license
kewook55/PS-BOJ
0d1880ac849dca3cad516204796d07d15836073a
aced5d3e2b073d4a3ef92607c159efe9936ff940
refs/heads/master
2022-12-15T10:59:41.845978
2020-09-12T05:09:45
2020-09-12T05:09:45
267,512,154
1
0
null
null
null
null
UTF-8
C++
false
false
1,616
cpp
/* 플로이드-와샬 기본문제 + 경로추적 */ #include<iostream> using namespace std; const int INF = 10000001; int N, M, cache[101][101], root[101][101]; //i와 j 사이에 있는 우회정점을 찾는것 중위순회와 비슷하다. void findRoot(int i, int j) { if (root[i][j] != 0) { findRoot(i, root[i][j]); cout << root[i][j] << " "; findRoot(root[i][j], j); } } //i와 j 사이에 있는 우회정점의 수를 찾는것 int findCnt(int i, int j) { if (root[i][j] != 0) return 1 + findCnt(i, root[i][j]) + findCnt(root[i][j], j); else return 0; } int main(void) { ios::sync_with_stdio(0); cin.tie(NULL); cout.tie(NULL); cin >> N >> M; for (int i = 1; i <= N; i++) { for (int j = 1; j <= N; j++) cache[i][j] = i == j ? 0 : INF; } int a, b, c; for (int i = 0; i < M; i++) { cin >> a >> b >> c; //여러개의 간선의 입력이 있을수 있다. cache[a][b] = cache[a][b] > c ? c : cache[a][b]; } for (int k = 1; k <= N; k++) { for (int i = 1; i <= N; i++) { for (int j = 1; j <= N; j++) { if (cache[i][j] > cache[i][k] + cache[k][j]) { cache[i][j] = cache[i][k] + cache[k][j]; root[i][j] = k; } } } } for (int i = 1; i <= N; i++) { for (int j = 1; j <= N; j++) cout << cache[i][j] << " "; cout << "\n"; } for (int i = 1; i <= N; i++) { for (int j = 1; j <= N; j++) { if (i == j)cout << 0 << "\n"; else { //기본으로 i, j 두개 있음 cout << 2 + findCnt(i, j) << " "; //경로출력 cout << i << " "; findRoot(i, j); cout << j << "\n"; } } } return 0; }
[ "bono4023@gmail.com" ]
bono4023@gmail.com
cb82ea8a7fe01edeb024a3878238442bb76cb91a
ded6efa4251e3debd132cb351d004f02641467d7
/main.cpp
067b9e45c65ac0421caed7ab5a67793f9b1a599f
[]
no_license
jbaldwin33/Dance_Maniax
3bd3d4878eb1a9cb5207a48e554115c6735c49a2
1236ae24acaccd0c03f976ec3ab7bdea7c10adbd
refs/heads/master
2020-12-30T11:40:28.362976
2017-05-17T03:00:19
2017-05-17T03:00:19
91,520,481
0
0
null
null
null
null
UTF-8
C++
false
false
8,613
cpp
#include "mbed.h" #include "rtos.h" #include "uLCD_4DGL.h" #include "SDFileSystem.h" #include "wave_player.h" #include "DebounceIn.h" #include <string> SDFileSystem sd(p5, p6, p7, p8, "sd"); uLCD_4DGL uLCD(p9,p10,p20); // serial tx, serial rx, reset pin; SPI spi(p11, p12, p13); DigitalOut latch(p15); DigitalOut enable(p16); AnalogIn ain(p17); //ir sensor pins AnalogOut DACout(p18); DebounceIn pb1(p21); DebounceIn pb2(p22); Mutex stdio_mutex; wave_player waver(&DACout); bool fileClosed; void makeSound(void const *args) { fileClosed = false; FILE *wave_file; wave_file=fopen("/sd/mySongs/I_Miss_You2.wav","r"); waver.play(wave_file); fclose(wave_file); fileClosed = true; } int highScore = 0; int highCombo; int main() { pb1.mode(PullUp); pb2.mode(PullUp); //increase baud rate for faster printing uLCD.baudrate(3000000); Start: //main menu uLCD.cls(); while(1) { uLCD.color(0xFF00FF); uLCD.text_width(2); uLCD.text_height(3); uLCD.locate(1, 1); uLCD.printf("uDance"); uLCD.locate(1, 2); uLCD.printf("Maniax"); uLCD.text_width(1); uLCD.text_height(1); uLCD.locate(7, 11); uLCD.printf("START"); wait(0.1); uLCD.color(0xFFFFFF); uLCD.locate(7, 11); uLCD.printf("START"); wait(0.1); if (!pb1) { goto Game; } } Game: highCombo = 0; uLCD.cls(); Thread thread2(makeSound); int orbX1 = SIZE_X / 2; int orbY1 = SIZE_Y; int score = 0; int combo = 0; //use bools to save previous state for "if" statements bool preventExcessPrinting = true; bool preventMultipleScoreIncrement = true; //use to see if hand has passed over sensor at all bool sensed = false; //setup display stdio_mutex.lock(); uLCD.color(WHITE); uLCD.locate(SIZE_X - 5, 0); uLCD.printf("Score:"); uLCD.color(WHITE); uLCD.locate(SIZE_X - 3, 1); uLCD.printf("%d", score); uLCD.circle(SIZE_X / 2, SIZE_Y / 2, 8, WHITE); uLCD.color(WHITE); uLCD.text_width(1); uLCD.text_height(1); uLCD.locate(0, 0); uLCD.printf("Top"); uLCD.locate(0, 1); uLCD.printf("Score:"); uLCD.locate(0, 2); uLCD.printf("%d", highScore); stdio_mutex.unlock(); //wait for song to start Thread::wait((10000)*1.48); while(1) { if(fileClosed) { if (score > highScore) { highScore = score; } goto End; } //draw orb and keep white circle in center stdio_mutex.lock(); uLCD.circle(SIZE_X / 2, SIZE_Y / 2, 8, WHITE); uLCD.filled_circle(orbX1, orbY1, 8, RED); uLCD.filled_circle(orbX1, orbY1, 8, BLACK); stdio_mutex.unlock(); //update orb's position orbY1 = orbY1 - 5; //check sensor while orb is within bounds if ((ain > 0.6f) && (orbY1 < (SIZE_Y/2) + 5 && orbY1 > (SIZE_Y/2) - 10)) { sensed = true; stdio_mutex.lock(); uLCD.filled_circle(SIZE_X / 2, SIZE_Y / 2, 8, BLUE); //compensate for lag from printing orbY1 = orbY1 - 2; //compensate for lag from printing if (combo >= 5) { orbY1 = orbY1 - 5; } stdio_mutex.unlock(); if (preventMultipleScoreIncrement) { preventMultipleScoreIncrement = false; score++; combo++; //double score if combo is 5 if (combo >= 5) { score++; } preventExcessPrinting = true; //print the current combo and multiplier if (preventExcessPrinting && combo >=5 ) { preventExcessPrinting = false; if (combo == 5) { stdio_mutex.lock(); uLCD.color(0xFFFF00); uLCD.text_width(2); uLCD.text_height(2); uLCD.locate(1, 6); uLCD.printf("x2!"); stdio_mutex.unlock(); } stdio_mutex.lock(); uLCD.color(WHITE); uLCD.text_width(1); uLCD.text_height(1); uLCD.locate(0, 14); uLCD.printf("COMBO"); uLCD.color(WHITE); uLCD.text_width(1); uLCD.text_height(1); uLCD.locate(0, 15); uLCD.printf("%d", combo); stdio_mutex.unlock(); } //update printed score stdio_mutex.lock(); uLCD.color(WHITE); uLCD.text_width(1); uLCD.text_height(1); uLCD.locate(SIZE_X - 3, 1); uLCD.printf("%d", score); stdio_mutex.unlock(); } } else { //after hand is sensed and blue circle is printed, draw over it with black preventMultipleScoreIncrement = true; stdio_mutex.lock(); uLCD.filled_circle(SIZE_X / 2, SIZE_Y / 2, 8, BLACK); stdio_mutex.unlock(); } //C-C-C-COMBOBREAKER if player keeps hand in front of sensor when orb isn't within bounds //or if player doesn't have their hand in front of the sensor when the orb is within bounds if ((combo != 0 && (ain > 0.6f) && (orbY1 > (SIZE_Y/2) + 10 || orbY1 < (SIZE_Y/2) - 15)) || (combo != 0 && (orbY1 < (SIZE_Y/2) - 8) && (!sensed))) { if (combo > highCombo) { highCombo = combo; } combo = 0; stdio_mutex.lock(); uLCD.color(BLACK); uLCD.text_width(1); uLCD.text_height(1); uLCD.locate(0, 14); uLCD.printf("COMBO"); uLCD.color(BLACK); uLCD.text_width(1); uLCD.text_height(1); uLCD.locate(0, 15); uLCD.printf("%s", "000"); uLCD.color(BLACK); uLCD.text_width(2); uLCD.text_height(2); uLCD.locate(1, 6); uLCD.printf("x2!"); stdio_mutex.unlock(); } //when orb reaches top of screen start back at the bottom and check for sensor again if (orbY1 <= -5) { orbY1 = SIZE_Y; sensed = false; } } End: //select if player wants to play again or not uLCD.cls(); uLCD.color(0xFF00FF); uLCD.text_width(2); uLCD.text_height(3); uLCD.locate(0, 1); uLCD.printf("Score:%d", score); wait(3.0); uLCD.cls(); uLCD.text_width(1); uLCD.text_height(2); uLCD.locate(1, 2); uLCD.printf("Highest combo:%d", highCombo); wait(3.0); uLCD.cls(); uLCD.color(0xFF00FF); uLCD.text_width(1); uLCD.text_height(3); uLCD.locate(3, 1); uLCD.printf("Play Again?"); uLCD.text_width(1); uLCD.text_height(1); uLCD.locate(7, 9); uLCD.printf("Yes"); uLCD.locate(7, 11); uLCD.printf("No"); int x = 7; //use to highlight "Yes" or "No" int y = 9; string s = "Yes"; int counter = 0; int old_pb2 = 1; //use this so the option only changes once when a button is pressed and held int new_pb2; while(1) { uLCD.color(WHITE); uLCD.text_width(1); uLCD.text_height(1); uLCD.locate(x, y); uLCD.printf("%s", s.c_str()); wait(0.1); uLCD.color(0xFF00FF); uLCD.text_width(1); uLCD.text_height(1); uLCD.locate(x, y); uLCD.printf("%s", s.c_str()); wait(0.1); new_pb2 = pb2; if (new_pb2 == 0 && old_pb2 == 1) { counter++; if (counter % 2 == 1) { x = 7; y = 11; s = "No"; } else if (counter % 2 == 0) { x = 7; y = 9; s = "Yes"; } } old_pb2 = new_pb2; if (!pb1 && y == 9) { goto Game; } else if (!pb1 && y == 11) { goto Start; } } }
[ "jbald9312@localhost" ]
jbald9312@localhost
ae7b77252dddde1736bb316cad22eb6615cce55f
562643394fa1fbcf7cafcb27abe2dcf53f389639
/Cmds/fwActivate.cpp
f2d89cacd7e39de8bd1fa1547b2697b19173dc9d
[ "Apache-2.0" ]
permissive
jli860/tnvme
198e03508ba73e6714aa73d37ac073c22fee87f2
208943be96c0fe073ed97a7098c0b00a2776ebf9
refs/heads/master
2020-03-20T22:14:44.825157
2018-06-18T21:47:53
2018-06-18T21:47:53
137,787,763
0
0
null
null
null
null
UTF-8
C++
false
false
1,644
cpp
/* * Copyright (c) 2011, 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 "fwActivate.h" SharedFWActivatePtr FWActivate::NullFWActivatePtr; const uint8_t FWActivate::Opcode = 0x10; FWActivate::FWActivate() : Cmd(Trackable::OBJ_FWACTIVATE) { Init(Opcode, DATADIR_NONE, 64); } FWActivate::~FWActivate() { } void FWActivate::SetAA(uint8_t aa) { LOG_NRM("Setting AA = 0x%01X", aa); if (aa > 0x03) throw FrmwkEx(HERE, "Value to large; must fit within 2 bits"); uint8_t work = GetByte(10, 0); work &= ~0x18; work |= (aa << 3); SetByte(work, 10, 0); } uint8_t FWActivate::GetAA() const { LOG_NRM("Getting AA"); return (uint8_t)((GetByte(10, 0) >> 3) & 0x03); } void FWActivate::SetFS(uint8_t fs) { LOG_NRM("Setting FS = 0x%01X", fs); if (fs > 0x07) throw FrmwkEx(HERE, "Value to large; must fit within 3 bits"); uint8_t work = GetByte(10, 0); work &= ~0x07; work |= fs; SetByte(work, 10, 0); } uint8_t FWActivate::GetFS() const { LOG_NRM("Getting FS"); return (uint8_t)(GetByte(10, 0) & 0x07); }
[ "todd.rentmeester@intel.com" ]
todd.rentmeester@intel.com
82292a012fd8745bcfcdcb0f78dfc1ed3600a1ce
fbe8bef6162bf597e9f2dff5f2e8cceff9ac95ac
/thirdparty/opengllib/include/index_buffer.h
db38de41177e4ff03c867ec8ecb6d62b361bddcc
[]
no_license
concubicycle/RunShoot
67ad3c3c392e838a0e47320c1a678c73fbc641d8
ac81dc20c64deec2f50c052a4ee18809f59787ff
refs/heads/master
2020-07-23T03:35:42.883502
2019-12-18T01:06:40
2019-12-18T01:06:40
207,432,811
0
0
null
null
null
null
UTF-8
C++
false
false
1,178
h
#ifndef INDEX_BUFFER_H #define INDEX_BUFFER_H #include <vector> #include <opengl_afx.h> #include "buffer_object.h" namespace ogllib { // Or "element" onBuffer class index_buffer : public ogllib::buffer_object { public: index_buffer(std::vector<GLuint> const &data) : _data(data) { gl::glGenBuffers(1, &_id); } ~index_buffer() { gl::glDeleteBuffers(1, &_id); } GLuint id() const { return _id; } void generate() { gl::glGenBuffers(1, &_id); } const std::vector<GLuint> &data() { return _data; } bool empty() const { return _data.empty(); } private: const std::vector<GLuint> &_data; protected: void onBind() override { gl::glBindBuffer(gl::GLenum::GL_ELEMENT_ARRAY_BUFFER, _id); } void onBuffer() override { auto byteCount = sizeof(_data.front()) * _data.size(); gl::glBufferData(gl::GLenum::GL_ELEMENT_ARRAY_BUFFER, byteCount, &_data.front(), gl::GLenum::GL_STATIC_DRAW); } void onUnbind() override { gl::glBindBuffer(gl::GLenum::GL_ELEMENT_ARRAY_BUFFER, 0); } }; } // namespace ogllib #endif
[ "saveliyb@gmail.com" ]
saveliyb@gmail.com
d9baf433044e90ccd9742eed57e7340073d2221b
65025edce8120ec0c601bd5e6485553697c5c132
/Engine/foundation/threading/android/linuxevent.cc
a77556e77d10d26351b4225c5588e73f9f673d81
[ "MIT" ]
permissive
stonejiang/genesis-3d
babfc99cfc9085527dff35c7c8662d931fbb1780
df5741e7003ba8e21d21557d42f637cfe0f6133c
refs/heads/master
2020-12-25T18:22:32.752912
2013-12-13T07:45:17
2013-12-13T07:45:17
15,157,071
4
4
null
null
null
null
UTF-8
C++
false
false
3,351
cc
/**************************************************************************** Copyright (c) 2011-2013,WebJet Business Division,CYOU http://www.genesis-3d.com.cn 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. ****************************************************************************/ #if (__ANDROID__ || __APPLE__) #include "stdneb.h" #include "linuxevent.h" #ifdef __ANDROID__ #include <asm-generic/errno.h> #endif #if __APPLE__ #include <sys/time.h> #include <sys/errno.h> #endif HANDLE Linux_CreateEvent(void *pSec,bool bManualReset,bool bInitialState,char *pStr) { HANDLE handle = n_new(LinuxHandle); pthread_cond_init(&handle->cond, 0); pthread_mutex_init(&handle->mtx,NULL); handle->manual_reset = bManualReset; handle->signaled = bInitialState; return handle; } void Linux_CloseHandle(HANDLE handle) { if(NULL == handle) { return; } pthread_mutex_destroy(&handle->mtx); pthread_cond_destroy(&handle->cond); n_delete(handle); } void Linux_SetEvent(HANDLE handle) { if(NULL == handle) { return; } CLocker lock(&handle->mtx); if(handle->manual_reset) { pthread_cond_broadcast(&handle->cond); } else { pthread_cond_signal(&handle->cond); } handle->signaled = true; } void Linux_ResetEvent(HANDLE handle) { if(NULL == handle) { return; } CLocker lock(&handle->mtx); handle->signaled = false; } int Linux_WaitForSingleObject(HANDLE handle,unsigned int timeout) { if(NULL == handle) { return 0; } CLocker lock(&handle->mtx); int ret = 0; if(!handle->signaled) { if(!timeout) ///no time for waiting { return WAIT_TIMEOUT; } else { timespec tm; if (INFINITE != timeout) { /// set timeout timeval now; gettimeofday(&now, 0); tm.tv_sec = now.tv_sec + timeout / 1000 + (((timeout % 1000) * 1000 + now.tv_usec) / 1000000); tm.tv_nsec = (((timeout % 1000) * 1000 + now.tv_usec) % 1000000) * 1000; } /// wait until condition thread returns control do { ret = (INFINITE == timeout ? pthread_cond_wait(&handle->cond,&handle->mtx) : pthread_cond_timedwait(&handle->cond, &handle->mtx, &tm)); } while (!ret && !handle->signaled); } } /// adjust signaled member switch(ret) { case 0: // success if (!handle->manual_reset) { handle->signaled = false; } return WAIT_OBJECT_0; case ETIMEDOUT: default: return WAIT_TIMEOUT; } } #endif
[ "jiangtao@tao-studio.net" ]
jiangtao@tao-studio.net
e7f51d33d0e9d9694b6760bc59783822adb1ea13
5fee446e64cf465011fe9a350b19667845f8c0fa
/week-01/day-3/coding_hours/main.cpp
1ff749928f6fd0a2195622ef852fd1b8005a10e5
[]
no_license
green-fox-academy/Gabikka
4ca5373845ae0ad3c0f44419c1b7d5b36c2ac5ef
5caea171d969eceb569566c7143f77578cae7410
refs/heads/master
2020-04-16T11:56:47.388641
2019-02-05T16:22:58
2019-02-05T16:22:58
165,558,287
0
0
null
null
null
null
UTF-8
C++
false
false
223
cpp
#include <iostream> int main(int argc, char* args[]) { std::cout << "Hours spent with coding: " << (17*5*6) << std::endl; std::cout << "Average coding hours in %: " << (5.*6./52.)*100. << std::endl; return 0; }
[ "levelgabonak@gmail.com" ]
levelgabonak@gmail.com
cf5defcc563a3dcbe8ab92b7adf0b59fedbabd88
e1145d9f3dd770df16d32af5b4becbefa0365a70
/chapter1/section.1.4.3.cc
6e34091709896bcaeee1017dd82228e3e2154609
[]
no_license
cyumeng/CppPrimer
46f674a5f58d9760b7c0243ac6d835fbc0ea747b
856889ea1a15c92078cc81a9248fc791078fdeda
refs/heads/master
2021-01-23T11:19:58.338361
2015-06-17T15:05:22
2015-06-17T15:05:22
37,186,387
0
0
null
null
null
null
UTF-8
C++
false
false
162
cc
#include <iostream> int main() { int sum = 0, value = 0; while (std::cin >> value) sum += value; std::cout << "Sum is: " << sum << std::endl; return 0; }
[ "cyumeng@gmail.com" ]
cyumeng@gmail.com
4ba939686e79b4d4736a15d4184a960998cfb1c4
8f588b857c2283dbeeca087a7c47f92c27374c0f
/carbon_sim_git/common/tile/memory_subsystem/cache/cache.cc
9d7c322d2e1fa93c67538ffd4e35901887d34a1c
[ "MIT" ]
permissive
seojinpark/graphite-atac
37b8c54b2002eb8851a304a59e3287d25115f0eb
746371b00da1951cafb90ddc040d86e438e3778e
refs/heads/master
2016-09-05T12:38:05.272206
2012-09-25T18:07:42
2012-09-25T18:07:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,741
cc
#include "simulator.h" #include "cache.h" #include "cache_set.h" #include "cache_line_info.h" #include "cache_replacement_policy.h" #include "cache_hash_fn.h" #include "utils.h" #include "log.h" // Cache class // constructors/destructors Cache::Cache(string name, CachingProtocolType caching_protocol_type, CacheCategory cache_category, SInt32 cache_level, WritePolicy write_policy, UInt32 cache_size, UInt32 associativity, UInt32 line_size, CacheReplacementPolicy* replacement_policy, CacheHashFn* hash_fn, UInt32 access_delay, float frequency, bool track_miss_types) : _enabled(false) , _name(name) , _cache_category(cache_category) , _write_policy(write_policy) , _cache_size(k_KILO * cache_size) , _associativity(associativity) , _line_size(line_size) , _replacement_policy(replacement_policy) , _hash_fn(hash_fn) , _power_model(NULL) , _area_model(NULL) , _track_miss_types(track_miss_types) { _num_sets = _cache_size / (_associativity * _line_size); _log_line_size = floorLog2(_line_size); _sets = new CacheSet*[_num_sets]; for (UInt32 i = 0; i < _num_sets; i++) { _sets[i] = new CacheSet(i, caching_protocol_type, cache_level, _replacement_policy, _associativity, _line_size); } if (Config::getSingleton()->getEnablePowerModeling()) { _power_model = new CachePowerModel("data", _cache_size, _line_size, associativity, access_delay, frequency); } if (Config::getSingleton()->getEnableAreaModeling()) { _area_model = new CacheAreaModel("data", _cache_size, _line_size, associativity, access_delay, frequency); } // Initialize Cache Counters // Hit/miss counters initializeMissCounters(); // Initialize eviction counters initializeEvictionCounters(); // Tracking tag/data read/writes initializeTagAndDataArrayCounters(); // Cache line state counters initializeCacheLineStateCounters(); } Cache::~Cache() { for (SInt32 i = 0; i < (SInt32) _num_sets; i++) delete _sets[i]; delete [] _sets; } void Cache::accessCacheLine(IntPtr address, AccessType access_type, Byte* buf, UInt32 num_bytes) { assert((buf == NULL) == (num_bytes == 0)); CacheSet* set = getSet(address); IntPtr tag = getTag(address); UInt32 line_offset = getLineOffset(address); UInt32 line_index = -1; // FIXME: This is an expensive operation. Remove if possible __attribute(__unused__) CacheLineInfo* cache_line_info = set->find(tag, &line_index); LOG_ASSERT_ERROR(cache_line_info, "Address(%#lx)", address); if (access_type == LOAD) set->read_line(line_index, line_offset, buf, num_bytes); else set->write_line(line_index, line_offset, buf, num_bytes); if (_enabled) { // Update data array reads/writes if (access_type == LOAD) _data_array_reads ++; else _data_array_writes ++; // Update dynamic energy counters if (_power_model) _power_model->updateDynamicEnergy(); } } void Cache::insertCacheLine(IntPtr inserted_address, CacheLineInfo* inserted_cache_line_info, Byte* fill_buf, bool* eviction, IntPtr* evicted_address, CacheLineInfo* evicted_cache_line_info, Byte* writeback_buf) { LOG_PRINT("insertCacheLine[Address(%#lx)] start", inserted_address); CacheSet* set = getSet(inserted_address); // Write into the data array set->insert(inserted_cache_line_info, fill_buf, eviction, evicted_cache_line_info, writeback_buf); // Evicted address *evicted_address = getAddressFromTag(evicted_cache_line_info->getTag()); // Update Cache Line State Counters and address set for the evicted line if (*eviction) { // Add to evicted set for tracking miss type assert(*evicted_address != INVALID_ADDRESS); if (_track_miss_types) _evicted_address_set.insert(*evicted_address); // Update exclusive/sharing counters updateCacheLineStateCounters(evicted_cache_line_info->getCState(), CacheState::INVALID); } // Clear the miss type tracking sets for this address if (_track_miss_types) clearMissTypeTrackingSets(inserted_address); // Add to fetched set for tracking miss type if (_track_miss_types) _fetched_address_set.insert(inserted_address); // Update exclusive/sharing counters updateCacheLineStateCounters(CacheState::INVALID, inserted_cache_line_info->getCState()); if (_enabled) { if (*eviction) { assert(evicted_cache_line_info->getCState() != CacheState::INVALID); // Update tag/data array reads // Read data array only if there is an eviction _tag_array_reads ++; _data_array_reads ++; // Increment number of evictions and dirty evictions _total_evictions ++; // Update number of dirty evictions if ( (_write_policy == WRITE_BACK) && (CacheState(evicted_cache_line_info->getCState()).writable()) ) _total_dirty_evictions ++; } else // (! (*eviction)) { assert(evicted_cache_line_info->getCState() == CacheState::INVALID); // Update tag array reads _tag_array_reads ++; } // Update tag/data array writes _tag_array_writes ++; _data_array_writes ++; // Update dynamic energy counters if (_power_model) _power_model->updateDynamicEnergy(); } LOG_PRINT("insertCacheLine[Address(%#lx)] end", inserted_address); } // Single line cache access at address void Cache::getCacheLineInfo(IntPtr address, CacheLineInfo* cache_line_info) { LOG_PRINT("getCacheLineInfo[Address(%#lx), Cache Line Info Ptr(%p)] start", address, cache_line_info); CacheLineInfo* line_info = getCacheLineInfo(address); // Assign it to the second argument in the function (copies it over) if (line_info) cache_line_info->assign(line_info); if (_enabled) { // Update tag/data array reads/writes _tag_array_reads ++; // Update dynamic energy counters if (_power_model) _power_model->updateDynamicEnergy(); } LOG_PRINT("getCacheLineInfo[Address(%#lx), Cache Line Info Ptr(%p)] end", address, cache_line_info); } CacheLineInfo* Cache::getCacheLineInfo(IntPtr address) { CacheSet* set = getSet(address); IntPtr tag = getTag(address); CacheLineInfo* line_info = set->find(tag); return line_info; } void Cache::setCacheLineInfo(IntPtr address, CacheLineInfo* updated_cache_line_info) { CacheLineInfo* cache_line_info = getCacheLineInfo(address); LOG_ASSERT_ERROR(cache_line_info, "Address(%#lx)", address); // Update exclusive/shared counters updateCacheLineStateCounters(cache_line_info->getCState(), updated_cache_line_info->getCState()); // Update _invalidated_address_set if ( (updated_cache_line_info->getCState() == CacheState::INVALID) && (_track_miss_types) ) _invalidated_address_set.insert(address); // Update the cache line info cache_line_info->assign(updated_cache_line_info); if (_enabled) { // Update tag/data array reads/writes _tag_array_writes ++; // Update dynamic energy counters if (_power_model) _power_model->updateDynamicEnergy(); } } void Cache::initializeMissCounters() { _total_cache_accesses = 0; _total_cache_misses = 0; _total_read_accesses = 0; _total_read_misses = 0; _total_write_accesses = 0; _total_write_misses = 0; if (_track_miss_types) initializeMissTypeCounters(); } void Cache::initializeMissTypeCounters() { _total_cold_misses = 0; _total_capacity_misses = 0; _total_sharing_misses = 0; } void Cache::initializeEvictionCounters() { _total_evictions = 0; _total_dirty_evictions = 0; } void Cache::initializeTagAndDataArrayCounters() { _tag_array_reads = 0; _tag_array_writes = 0; _data_array_reads = 0; _data_array_writes = 0; } void Cache::initializeCacheLineStateCounters() { _cache_line_state_counters.resize(CacheState::NUM_STATES, 0); } Cache::MissType Cache::updateMissCounters(IntPtr address, Core::mem_op_t mem_op_type, bool cache_miss) { MissType miss_type = INVALID_MISS_TYPE; if (_enabled) { _total_cache_accesses ++; // Read/Write access if ((mem_op_type == Core::READ) || (mem_op_type == Core::READ_EX)) { _total_read_accesses ++; } else // (mem_op_type == Core::WRITE) { assert(_cache_category != INSTRUCTION_CACHE); _total_write_accesses ++; } if (cache_miss) { _total_cache_misses ++; // Read/Write miss if ((mem_op_type == Core::READ) || (mem_op_type == Core::READ_EX)) _total_read_misses ++; else // (mem_op_type == Core::WRITE) _total_write_misses ++; // Compute the miss type counters for the inserted line if (_track_miss_types) { miss_type = getMissType(address); updateMissTypeCounters(address, miss_type); } } } return miss_type; } Cache::MissType Cache::getMissType(IntPtr address) const { // We maintain three address sets to keep track of miss types if (_evicted_address_set.find(address) != _evicted_address_set.end()) return CAPACITY_MISS; else if (_invalidated_address_set.find(address) != _invalidated_address_set.end()) return SHARING_MISS; else if (_fetched_address_set.find(address) != _fetched_address_set.end()) return SHARING_MISS; else return COLD_MISS; } void Cache::updateMissTypeCounters(IntPtr address, MissType miss_type) { assert(_enabled); switch (miss_type) { case COLD_MISS: _total_cold_misses ++; break; case CAPACITY_MISS: _total_capacity_misses ++; break; case SHARING_MISS: _total_sharing_misses ++; break; default: LOG_PRINT_ERROR("Unrecognized Cache Miss Type(%i)", miss_type); break; } } void Cache::clearMissTypeTrackingSets(IntPtr address) { if (_evicted_address_set.erase(address)); else if (_invalidated_address_set.erase(address)); else if (_fetched_address_set.erase(address)); } void Cache::updateCacheLineStateCounters(CacheState::Type old_cstate, CacheState::Type new_cstate) { _cache_line_state_counters[old_cstate] --; _cache_line_state_counters[new_cstate] ++; } void Cache::getCacheLineStateCounters(vector<UInt64>& cache_line_state_counters) const { cache_line_state_counters = _cache_line_state_counters; } void Cache::outputSummary(ostream& out) { // Cache Miss Summary out << " Cache " << _name << ":\n"; out << " Cache Accesses: " << _total_cache_accesses << endl; out << " Cache Misses: " << _total_cache_misses << endl; if (_total_cache_accesses > 0) out << " Miss Rate (%): " << 100.0 * _total_cache_misses / _total_cache_accesses << endl; else out << " Miss Rate (%): " << endl; if (_cache_category != INSTRUCTION_CACHE) { out << " Read Accesses: " << _total_read_accesses << endl; out << " Read Misses: " << _total_read_misses << endl; if (_total_read_accesses > 0) out << " Read Miss Rate (%): " << 100.0 * _total_read_misses / _total_read_accesses << endl; else out << " Read Miss Rate (%): " << endl; out << " Write Accesses: " << _total_write_accesses << endl; out << " Write Misses: " << _total_write_misses << endl; if (_total_write_accesses > 0) out << " Write Miss Rate (%): " << 100.0 * _total_write_misses / _total_write_accesses << endl; else out << " Write Miss Rate (%): " << endl; } // Evictions out << " Evictions: " << _total_evictions << endl; if (_write_policy == WRITE_BACK) { out << " Dirty Evictions: " << _total_dirty_evictions << endl; } // Output Power and Area Summaries if (_power_model) _power_model->outputSummary(out); if (_area_model) _area_model->outputSummary(out); // Track miss types if (_track_miss_types) { out << " Miss Types:" << endl; out << " Cold Misses: " << _total_cold_misses << endl; out << " Capacity Misses: " << _total_capacity_misses << endl; out << " Sharing Misses: " << _total_sharing_misses << endl; } // Event Counters Summary out << " Event Counters:" << endl; out << " Tag Array Reads: " << _tag_array_reads << endl; out << " Tag Array Writes: " << _tag_array_writes << endl; out << " Data Array Reads: " << _data_array_reads << endl; out << " Data Array Writes: " << _data_array_writes << endl; } // Utilities IntPtr Cache::getTag(IntPtr address) const { return (address >> _log_line_size); } CacheSet* Cache::getSet(IntPtr address) const { UInt32 set_num = _hash_fn->compute(address); return _sets[set_num]; } UInt32 Cache::getLineOffset(IntPtr address) const { return (address & (_line_size-1)); } IntPtr Cache::getAddressFromTag(IntPtr tag) const { return tag << _log_line_size; } Cache::MissType Cache::parseMissType(string miss_type) { if (miss_type == "cold") return COLD_MISS; else if (miss_type == "capacity") return CAPACITY_MISS; else if (miss_type == "sharing") return SHARING_MISS; else { LOG_PRINT_ERROR("Unrecognized Miss Type(%s)", miss_type.c_str()); return INVALID_MISS_TYPE; } }
[ "seojin@mit.edu" ]
seojin@mit.edu
06439cb1b9094e0d1d830fbf5f44d68201c1efec
fd88c06c89b390089c7f31542f845a1063d404d6
/UtilityLib/UnitTests_NTreeNode.h
c7baefaa180b7353339b9c3520b14331e169f25d
[]
no_license
KarteekKumarM/UtilityLib
52bb044038d3d9e0ec11755d873de9e1b82cf7fa
c25c8aa07390aa2e55e8aa13c708495e0c605a11
refs/heads/master
2020-03-07T16:14:34.351324
2018-04-02T02:18:24
2018-04-02T02:18:24
127,576,940
0
0
null
null
null
null
UTF-8
C++
false
false
201
h
#pragma once #include "UnitTests_Base.h" class UnitTests_NTreeNode : public UnitTests_Base { private: void RunBasicTests(); public: void run(); UnitTests_NTreeNode(); ~UnitTests_NTreeNode(); };
[ "Karteek.Kumar.M@gmail.com" ]
Karteek.Kumar.M@gmail.com
602b6d2276f96e5ba412b7507eccaf194bfd30e4
d81a9ef64fcccd532dcc0dae3235b709a2ff4ebe
/UVa/599/main.cpp
bb88a1a93d7066cc849d19fc552fde543b2d7236
[]
no_license
Rodrigo61/GUAXINIM
6d52b0b29dd736ce40295f7e7b3f7dd4c1d2396d
696d1077bf69bcff10cb5c07bb68dd3452952228
refs/heads/master
2021-04-09T14:29:54.226309
2020-11-17T01:18:21
2020-11-17T01:18:21
125,520,161
1
0
null
null
null
null
UTF-8
C++
false
false
4,926
cpp
using namespace std; bool debug = false; //<editor-fold desc="GUAXINIM TEMPLATE"> /******** All Required Header Files ********/ #include <iostream> #include <string> #include <vector> #include <algorithm> #include <sstream> #include <queue> #include <deque> #include <bitset> #include <iterator> #include <list> #include <stack> #include <map> #include <set> #include <functional> #include <numeric> #include <utility> #include <limits> #include <time.h> #include <math.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <assert.h> using namespace std; #define all(container) container.begin(), container.end() #define mp(i,j) make_pair(i,j) #define space " " typedef pair<int,int> pii; typedef vector<int> vi; /// Debug Start template<class T1> void deb(T1 e1) { if(debug) { cout << "[DEBUG]"; cout << e1 << endl; } } template<class T1,class T2> void deb(T1 e1, T2 e2) { if(debug) { cout << "[DEBUG]"; cout << e1 << space << e2 << endl; } } template<class T1,class T2,class T3> void deb(T1 e1, T2 e2, T3 e3) { if(debug) { cout << "[DEBUG]"; cout << e1 << space << e2 << space << e3 << endl; } } template<class T1,class T2,class T3,class T4> void deb(T1 e1, T2 e2, T3 e3, T4 e4) { if(debug) { cout << "[DEBUG]"; cout << e1 << space << e2 << space << e3 << space << e4 << endl; } } template<class T1,class T2,class T3,class T4,class T5> void deb(T1 e1, T2 e2, T3 e3, T4 e4, T5 e5) { if(debug) { cout << "[DEBUG]"; cout << e1 << space << e2 << space << e3 << space << e4 << space << e5 << endl; } } template<class T1,class T2,class T3,class T4,class T5,class T6> void deb(T1 e1, T2 e2, T3 e3, T4 e4 ,T5 e5, T6 e6) { if(debug) { cout << "[DEBUG]"; cout << e1 << space << e2 << space << e3 << space << e4 << space << e5 << space << e6 << endl; } } template<typename T> void print_vector_debug(const T& t) { if(debug) { cout << "[DEBUG] VECTOR:"; for (auto i = t.cbegin(); i != t.cend(); ++i) { if ((i + 1) != t.cend()) { cout << *i << " "; } else { cout << *i << endl; } } } } template<typename T> void print_array_debug(const T arr, int size){ if(debug) { cout << "[DEBUG] VECTOR:"; for (int i = 0; i < size; ++i) { cout << arr[i] << space; } cout << endl; } } template<typename T> void print_2Darray_debug(const T arr, int rows, int cols){ if(debug) { cout << "[DEBUG] Matrix:" << endl; for (int i = 0; i < rows; ++i) { for (int j = 0; j < cols; ++j) { cout << arr[i][j] << space; } cout << endl; } cout << endl; } } template<typename T> void print_matrix_debug(const T& t) { if(debug) { cout << "[DEBUG] MATRIX:" << endl; for (auto i = t.cbegin(); i != t.cend(); ++i) { for(auto j = i->cbegin(); j != i->cend(); ++j){ cout << *j << " "; } cout << endl; } } } //</editor-fold desc="GUAXINIM TEMPLATE"> #define INF 1000000 int mat_adj[26][26]; int dist[26]; int bfs(int s){ deb("s = ", s); if(dist[s] != INF) return 0; int reached_count = 0; queue<int> q; dist[s] = 1; q.push(s); while(!q.empty()){ int u = q.front(); q.pop(); ++reached_count; for (int i = 0; i < 26; ++i) { if(mat_adj[u][i] == 1 && dist[i] == INF){ dist[i] = dist[u] + 1; q.push(i); } } } return reached_count; } int main(){ ios_base::sync_with_stdio(false); cin.tie(0); string line; int v, u; int n_cases; cin >> n_cases; cin.ignore(); for (int w = 0; w < n_cases; ++w) { memset(mat_adj, 0, sizeof(int)*26*26); for (int i = 0; i < 26; ++i) { dist[i] = INF; } print_array_debug(dist, 26); while(getline(cin, line), line[0] != '*'){ v = line[1] - 'A'; u = line[3] - 'A'; mat_adj[u][v] = 1; mat_adj[v][u] = 1; } getline(cin, line); int tree_count = 0; int acorn_count = 0; for (int i = 0; i < line.size(); ++i) { if(line[i] == ',') continue; deb("line[i] = ", line[i]); int reached = bfs(line[i] - 'A'); if( reached > 1){ deb("tree"); ++tree_count; }else if(reached == 1){ deb("acorn"); ++acorn_count; }else{ deb("alterad reach"); } } cout << "There are " << tree_count <<" tree(s) and " << acorn_count << " acorn(s)." << endl; } return 0; }
[ "rodrigoaf61@yahoo.com.br" ]
rodrigoaf61@yahoo.com.br
40f4513116e3d5fdc885db32447b520437c5ea8d
67320b34325e3896b3a0a75b1367299ea0ebdb53
/chromecast/browser/accessibility/touch_exploration_manager.h
31f5c5bb981770018d154953160c1046c406a2d1
[ "BSD-3-Clause" ]
permissive
chryoung/chromium
6cf21c53a3ba420498221d402309369abeb10e64
fe13f9d6cdfdde9ae6c31fb86be3eef7f4cb179b
refs/heads/master
2023-03-03T17:02:33.024650
2018-08-14T13:35:54
2018-08-14T13:35:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,068
h
// Copyright 2018 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. // Copied with modifications from ash/accessibility, refactored for use in // chromecast. #ifndef CHROMECAST_BROWSER_ACCESSIBILITY_TOUCH_EXPLORATION_MANAGER_H_ #define CHROMECAST_BROWSER_ACCESSIBILITY_TOUCH_EXPLORATION_MANAGER_H_ #include "chromecast/browser/accessibility/accessibility_sound_player.h" #include "chromecast/browser/accessibility/touch_exploration_controller.h" #include "chromecast/graphics/accessibility/accessibility_focus_ring_controller.h" #include "ui/events/event_rewriter.h" #include "ui/wm/public/activation_change_observer.h" #include "ui/wm/public/activation_client.h" namespace chromecast { namespace shell { // Responsible for initializing TouchExplorationController when spoken feedback // is on. Implements TouchExplorationControllerDelegate which allows touch // gestures to manipulate the system. class TouchExplorationManager : public ui::EventRewriter, public TouchExplorationControllerDelegate, public ::wm::ActivationChangeObserver { public: TouchExplorationManager( aura::Window* root_window, wm::ActivationClient* activation_client, AccessibilityFocusRingController* accessibility_focus_ring_controller, AccessibilitySoundPlayer* accessibility_sound_player); ~TouchExplorationManager() override; // Enable or disable touch exploration. // (In the Chrome version this is handled as an AccessibilityObserver.) void Enable(bool enabled); // ui::EventRewriter overrides: ui::EventRewriteStatus RewriteEvent( const ui::Event& event, std::unique_ptr<ui::Event>* rewritten_event) override; ui::EventRewriteStatus NextDispatchEvent( const ui::Event& last_event, std::unique_ptr<ui::Event>* new_event) override; // TouchExplorationControllerDelegate overrides: void HandleAccessibilityGesture(ax::mojom::Gesture gesture) override; // wm::ActivationChangeObserver overrides: void OnWindowActivated( ::wm::ActivationChangeObserver::ActivationReason reason, aura::Window* gained_active, aura::Window* lost_active) override; // Update the touch exploration controller so that synthesized touch // events are anchored at this point. void SetTouchAccessibilityAnchorPoint(const gfx::Point& anchor_point); private: void UpdateTouchExplorationState(); std::unique_ptr<TouchExplorationController> touch_exploration_controller_; bool touch_exploration_enabled_; // Not owned; must outlive TouchExplorationManager. aura::Window* root_window_; wm::ActivationClient* activation_client_; AccessibilityFocusRingController* accessibility_focus_ring_controller_; AccessibilitySoundPlayer* accessibility_sound_player_; DISALLOW_COPY_AND_ASSIGN(TouchExplorationManager); }; } // namespace shell } // namespace chromecast #endif // CHROMECAST_BROWSER_ACCESSIBILITY_TOUCH_EXPLORATION_MANAGER_H_
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
6d726ac22d3b379cc54c3d83af746176bc6cf664
3be3b38cdc9a85e9cc69caf3316852a6b524673b
/Source/WTF/wtf/android/WorkQueueAndroid.cpp
c5128d636f05260a7915e9347487b2f9d10f2484
[]
no_license
hupenguestc/webkit
f1a085a9fe719bfc0886d09fede7ae48c1356764
56e68df7729d02d232386513f1869d1332684709
refs/heads/master
2023-02-22T18:35:54.522936
2017-09-29T04:41:24
2017-09-29T04:41:24
218,680,243
1
0
null
2019-10-31T03:51:30
2019-10-31T03:51:30
null
UTF-8
C++
false
false
2,337
cpp
/* Copyright (C) 2012 Samsung Electronics Copyright (C) 2015 NAVER Corp. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "config.h" #include "WorkQueue.h" #include "DispatchQueue.h" #include "DispatchQueueWorkItem.h" namespace WTF { void WorkQueue::platformInitialize(const char* name, Type, QOS) { m_dispatchQueue = DispatchQueue::create(name); } void WorkQueue::platformInvalidate() { RefPtr<DispatchQueue> dispatchQueue = m_dispatchQueue.copyRef(); dispatchQueue->stopThread(); } void WorkQueue::registerSocketEventHandler(int fileDescriptor, std::function<void ()> function) { if (!m_dispatchQueue) return; m_dispatchQueue->setSocketEventHandler(fileDescriptor, function); } void WorkQueue::unregisterSocketEventHandler(int fileDescriptor) { UNUSED_PARAM(fileDescriptor); if (!m_dispatchQueue) return; m_dispatchQueue->clearSocketEventHandler(); } class WorkQueueItemContext : public WorkItemContext { public: WorkQueueItemContext(RefPtr<WorkQueue>&& workQueue) : m_workQueue(WTFMove(workQueue)) { } private: RefPtr<WorkQueue> m_workQueue; }; void WorkQueue::dispatch(Function<void ()>&& function) { if (!m_dispatchQueue) return; m_dispatchQueue->dispatch(WorkItem::create(WorkQueueItemContext(this), WTFMove(function))); } void WorkQueue::dispatchAfter(Seconds duration, Function<void ()>&& function) { if (!m_dispatchQueue) return; m_dispatchQueue->dispatch(TimerWorkItem::create(WorkQueueItemContext(this), WTFMove(function), duration)); } } // namespace WTF
[ "daewoong.jang@naverlabs.com" ]
daewoong.jang@naverlabs.com
bbc9ff07347ecead15bb34f4689ddd2a609604da
aa69e484597ef2bcca2510773e9abae7d425e51f
/mlRVML/src/RvmlDemo/moc_dialogcoordtrans.cpp
977b0bd8aebbab204d5175e613f2b23585aa752e
[]
no_license
wayelee/TESTPROJECT
20025534dd749b93c494294104c50354063d4279
c564412525d9811f4f57967fbe72894f76884b62
refs/heads/master
2020-04-04T05:10:52.603066
2019-10-31T03:55:21
2019-10-31T03:55:21
155,737,527
0
2
null
null
null
null
UTF-8
C++
false
false
2,696
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'dialogcoordtrans.h' ** ** Created: Wed Feb 8 10:41:58 2012 ** by: The Qt Meta Object Compiler version 62 (Qt 4.7.2) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include "../../../src/RvmlDemo/dialogcoordtrans.h" #if !defined(Q_MOC_OUTPUT_REVISION) #error "The header file 'dialogcoordtrans.h' doesn't include <QObject>." #elif Q_MOC_OUTPUT_REVISION != 62 #error "This file was generated using the moc from 4.7.2. It" #error "cannot be used with the include files from this version of Qt." #error "(The moc has changed too much.)" #endif QT_BEGIN_MOC_NAMESPACE static const uint qt_meta_data_Dialogcoordtrans[] = { // content: 5, // revision 0, // classname 0, 0, // classinfo 3, 14, // methods 0, 0, // properties 0, 0, // enums/sets 0, 0, // constructors 0, // flags 0, // signalCount // slots: signature, parameters, type, tag, flags 18, 17, 17, 17, 0x08, 48, 17, 17, 17, 0x08, 76, 17, 17, 17, 0x08, 0 // eod }; static const char qt_meta_stringdata_Dialogcoordtrans[] = { "Dialogcoordtrans\0\0on_pushButtonSource_clicked()\0" "on_pushButtonDest_clicked()\0" "on_buttonBox_accepted()\0" }; const QMetaObject Dialogcoordtrans::staticMetaObject = { { &QDialog::staticMetaObject, qt_meta_stringdata_Dialogcoordtrans, qt_meta_data_Dialogcoordtrans, 0 } }; #ifdef Q_NO_DATA_RELOCATION const QMetaObject &Dialogcoordtrans::getStaticMetaObject() { return staticMetaObject; } #endif //Q_NO_DATA_RELOCATION const QMetaObject *Dialogcoordtrans::metaObject() const { return QObject::d_ptr->metaObject ? QObject::d_ptr->metaObject : &staticMetaObject; } void *Dialogcoordtrans::qt_metacast(const char *_clname) { if (!_clname) return 0; if (!strcmp(_clname, qt_meta_stringdata_Dialogcoordtrans)) return static_cast<void*>(const_cast< Dialogcoordtrans*>(this)); return QDialog::qt_metacast(_clname); } int Dialogcoordtrans::qt_metacall(QMetaObject::Call _c, int _id, void **_a) { _id = QDialog::qt_metacall(_c, _id, _a); if (_id < 0) return _id; if (_c == QMetaObject::InvokeMetaMethod) { switch (_id) { case 0: on_pushButtonSource_clicked(); break; case 1: on_pushButtonDest_clicked(); break; case 2: on_buttonBox_accepted(); break; default: ; } _id -= 3; } return _id; } QT_END_MOC_NAMESPACE
[ "wayelee2000@gmail.com" ]
wayelee2000@gmail.com
755aa97c61c7715f9ff2bfed3acc81957b23c098
9fd0ce1c780133f346d5e610fc29442e90cd42d8
/Windows/Rainmeter/Skins/VisBubble/@Resources/includes/Shapes.inc
b4f6610af46dab569884cd5efe381c8a784837c5
[]
no_license
eccentricayman/configs
3c7144de44b9fb5f483baaffc1c618bd4b403ed8
045fb7cd36c5461a0c1ca083bc74a4f918f15f39
refs/heads/master
2021-10-08T09:10:28.425943
2018-12-10T06:51:48
2018-12-10T06:51:48
48,955,916
0
0
null
null
null
null
UTF-8
C++
false
false
17,132
inc
[Shape0] Meter=Image MeterStyle=styleShape X=((256+[mBand0]*[mBand0]**0*((-0*2+1)*96))*-1.836970198721e-016+350) Y=((256+[mBand0]*[mBand0]**0*((-0*2+1)*96))*-1+350) [Shape1] Meter=Image MeterStyle=styleShape X=((256+[mBand1]*[mBand1]**0*((-0*2+1)*96))*-0.065403129230144+350) Y=((256+[mBand1]*[mBand1]**0*((-0*2+1)*96))*-0.9978589232386+350) [Shape2] Meter=Image MeterStyle=styleShape X=((256+[mBand2]*[mBand2]**0*((-0*2+1)*96))*-0.13052619222005+350) Y=((256+[mBand2]*[mBand2]**0*((-0*2+1)*96))*-0.99144486137381+350) [Shape3] Meter=Image MeterStyle=styleShape X=((256+[mBand3]*[mBand3]**0*((-0*2+1)*96))*-0.19509032201613+350) Y=((256+[mBand3]*[mBand3]**0*((-0*2+1)*96))*-0.98078528040323+350) [Shape4] Meter=Image MeterStyle=styleShape X=((256+[mBand4]*[mBand4]**0*((-0*2+1)*96))*-0.25881904510252+350) Y=((256+[mBand4]*[mBand4]**0*((-0*2+1)*96))*-0.96592582628907+350) [Shape5] Meter=Image MeterStyle=styleShape X=((256+[mBand5]*[mBand5]**0*((-0*2+1)*96))*-0.32143946530316+350) Y=((256+[mBand5]*[mBand5]**0*((-0*2+1)*96))*-0.94693012949511+350) [Shape6] Meter=Image MeterStyle=styleShape X=((256+[mBand6]*[mBand6]**0*((-0*2+1)*96))*-0.38268343236509+350) Y=((256+[mBand6]*[mBand6]**0*((-0*2+1)*96))*-0.92387953251129+350) [Shape7] Meter=Image MeterStyle=styleShape X=((256+[mBand7]*[mBand7]**0*((-0*2+1)*96))*-0.442288690219+350) Y=((256+[mBand7]*[mBand7]**0*((-0*2+1)*96))*-0.89687274153269+350) [Shape8] Meter=Image MeterStyle=styleShape X=((256+[mBand8]*[mBand8]**0*((-0*2+1)*96))*-0.5+350) Y=((256+[mBand8]*[mBand8]**0*((-0*2+1)*96))*-0.86602540378444+350) [Shape9] Meter=Image MeterStyle=styleShape X=((256+[mBand9]*[mBand9]**0*((-0*2+1)*96))*-0.5555702330196+350) Y=((256+[mBand9]*[mBand9]**0*((-0*2+1)*96))*-0.83146961230255+350) [Shape10] Meter=Image MeterStyle=styleShape X=((256+[mBand10]*[mBand10]**0*((-0*2+1)*96))*-0.60876142900872+350) Y=((256+[mBand10]*[mBand10]**0*((-0*2+1)*96))*-0.79335334029123+350) [Shape11] Meter=Image MeterStyle=styleShape X=((256+[mBand11]*[mBand11]**0*((-0*2+1)*96))*-0.65934581510007+350) Y=((256+[mBand11]*[mBand11]**0*((-0*2+1)*96))*-0.75183980747898+350) [Shape12] Meter=Image MeterStyle=styleShape X=((256+[mBand12]*[mBand12]**0*((-0*2+1)*96))*-0.70710678118655+350) Y=((256+[mBand12]*[mBand12]**0*((-0*2+1)*96))*-0.70710678118655+350) [Shape13] Meter=Image MeterStyle=styleShape X=((256+[mBand13]*[mBand13]**0*((-0*2+1)*96))*-0.75183980747898+350) Y=((256+[mBand13]*[mBand13]**0*((-0*2+1)*96))*-0.65934581510007+350) [Shape14] Meter=Image MeterStyle=styleShape X=((256+[mBand14]*[mBand14]**0*((-0*2+1)*96))*-0.79335334029124+350) Y=((256+[mBand14]*[mBand14]**0*((-0*2+1)*96))*-0.60876142900872+350) [Shape15] Meter=Image MeterStyle=styleShape X=((256+[mBand15]*[mBand15]**0*((-0*2+1)*96))*-0.83146961230255+350) Y=((256+[mBand15]*[mBand15]**0*((-0*2+1)*96))*-0.5555702330196+350) [Shape16] Meter=Image MeterStyle=styleShape X=((256+[mBand16]*[mBand16]**0*((-0*2+1)*96))*-0.86602540378444+350) Y=((256+[mBand16]*[mBand16]**0*((-0*2+1)*96))*-0.5+350) [Shape17] Meter=Image MeterStyle=styleShape X=((256+[mBand17]*[mBand17]**0*((-0*2+1)*96))*-0.89687274153269+350) Y=((256+[mBand17]*[mBand17]**0*((-0*2+1)*96))*-0.442288690219+350) [Shape18] Meter=Image MeterStyle=styleShape X=((256+[mBand18]*[mBand18]**0*((-0*2+1)*96))*-0.92387953251129+350) Y=((256+[mBand18]*[mBand18]**0*((-0*2+1)*96))*-0.38268343236509+350) [Shape19] Meter=Image MeterStyle=styleShape X=((256+[mBand19]*[mBand19]**0*((-0*2+1)*96))*-0.94693012949511+350) Y=((256+[mBand19]*[mBand19]**0*((-0*2+1)*96))*-0.32143946530316+350) [Shape20] Meter=Image MeterStyle=styleShape X=((256+[mBand20]*[mBand20]**0*((-0*2+1)*96))*-0.96592582628907+350) Y=((256+[mBand20]*[mBand20]**0*((-0*2+1)*96))*-0.25881904510252+350) [Shape21] Meter=Image MeterStyle=styleShape X=((256+[mBand21]*[mBand21]**0*((-0*2+1)*96))*-0.98078528040323+350) Y=((256+[mBand21]*[mBand21]**0*((-0*2+1)*96))*-0.19509032201613+350) [Shape22] Meter=Image MeterStyle=styleShape X=((256+[mBand22]*[mBand22]**0*((-0*2+1)*96))*-0.99144486137381+350) Y=((256+[mBand22]*[mBand22]**0*((-0*2+1)*96))*-0.13052619222005+350) [Shape23] Meter=Image MeterStyle=styleShape X=((256+[mBand23]*[mBand23]**0*((-0*2+1)*96))*-0.9978589232386+350) Y=((256+[mBand23]*[mBand23]**0*((-0*2+1)*96))*-0.065403129230143+350) [Shape24] Meter=Image MeterStyle=styleShape X=((256+[mBand24]*[mBand24]**0*((-0*2+1)*96))*-1+350) Y=((256+[mBand24]*[mBand24]**0*((-0*2+1)*96))*1.2246467991474e-016+350) [Shape25] Meter=Image MeterStyle=styleShape X=((256+[mBand25]*[mBand25]**0*((-0*2+1)*96))*-0.9978589232386+350) Y=((256+[mBand25]*[mBand25]**0*((-0*2+1)*96))*0.065403129230144+350) [Shape26] Meter=Image MeterStyle=styleShape X=((256+[mBand26]*[mBand26]**0*((-0*2+1)*96))*-0.99144486137381+350) Y=((256+[mBand26]*[mBand26]**0*((-0*2+1)*96))*0.13052619222005+350) [Shape27] Meter=Image MeterStyle=styleShape X=((256+[mBand27]*[mBand27]**0*((-0*2+1)*96))*-0.98078528040323+350) Y=((256+[mBand27]*[mBand27]**0*((-0*2+1)*96))*0.19509032201613+350) [Shape28] Meter=Image MeterStyle=styleShape X=((256+[mBand28]*[mBand28]**0*((-0*2+1)*96))*-0.96592582628907+350) Y=((256+[mBand28]*[mBand28]**0*((-0*2+1)*96))*0.25881904510252+350) [Shape29] Meter=Image MeterStyle=styleShape X=((256+[mBand29]*[mBand29]**0*((-0*2+1)*96))*-0.94693012949511+350) Y=((256+[mBand29]*[mBand29]**0*((-0*2+1)*96))*0.32143946530316+350) [Shape30] Meter=Image MeterStyle=styleShape X=((256+[mBand30]*[mBand30]**0*((-0*2+1)*96))*-0.92387953251129+350) Y=((256+[mBand30]*[mBand30]**0*((-0*2+1)*96))*0.38268343236509+350) [Shape31] Meter=Image MeterStyle=styleShape X=((256+[mBand31]*[mBand31]**0*((-0*2+1)*96))*-0.89687274153269+350) Y=((256+[mBand31]*[mBand31]**0*((-0*2+1)*96))*0.442288690219+350) [Shape32] Meter=Image MeterStyle=styleShape X=((256+[mBand32]*[mBand32]**0*((-0*2+1)*96))*-0.86602540378444+350) Y=((256+[mBand32]*[mBand32]**0*((-0*2+1)*96))*0.5+350) [Shape33] Meter=Image MeterStyle=styleShape X=((256+[mBand33]*[mBand33]**0*((-0*2+1)*96))*-0.83146961230255+350) Y=((256+[mBand33]*[mBand33]**0*((-0*2+1)*96))*0.5555702330196+350) [Shape34] Meter=Image MeterStyle=styleShape X=((256+[mBand34]*[mBand34]**0*((-0*2+1)*96))*-0.79335334029124+350) Y=((256+[mBand34]*[mBand34]**0*((-0*2+1)*96))*0.60876142900872+350) [Shape35] Meter=Image MeterStyle=styleShape X=((256+[mBand35]*[mBand35]**0*((-0*2+1)*96))*-0.75183980747898+350) Y=((256+[mBand35]*[mBand35]**0*((-0*2+1)*96))*0.65934581510007+350) [Shape36] Meter=Image MeterStyle=styleShape X=((256+[mBand36]*[mBand36]**0*((-0*2+1)*96))*-0.70710678118655+350) Y=((256+[mBand36]*[mBand36]**0*((-0*2+1)*96))*0.70710678118655+350) [Shape37] Meter=Image MeterStyle=styleShape X=((256+[mBand37]*[mBand37]**0*((-0*2+1)*96))*-0.65934581510007+350) Y=((256+[mBand37]*[mBand37]**0*((-0*2+1)*96))*0.75183980747898+350) [Shape38] Meter=Image MeterStyle=styleShape X=((256+[mBand38]*[mBand38]**0*((-0*2+1)*96))*-0.60876142900872+350) Y=((256+[mBand38]*[mBand38]**0*((-0*2+1)*96))*0.79335334029124+350) [Shape39] Meter=Image MeterStyle=styleShape X=((256+[mBand39]*[mBand39]**0*((-0*2+1)*96))*-0.5555702330196+350) Y=((256+[mBand39]*[mBand39]**0*((-0*2+1)*96))*0.83146961230255+350) [Shape40] Meter=Image MeterStyle=styleShape X=((256+[mBand40]*[mBand40]**0*((-0*2+1)*96))*-0.5+350) Y=((256+[mBand40]*[mBand40]**0*((-0*2+1)*96))*0.86602540378444+350) [Shape41] Meter=Image MeterStyle=styleShape X=((256+[mBand41]*[mBand41]**0*((-0*2+1)*96))*-0.442288690219+350) Y=((256+[mBand41]*[mBand41]**0*((-0*2+1)*96))*0.89687274153269+350) [Shape42] Meter=Image MeterStyle=styleShape X=((256+[mBand42]*[mBand42]**0*((-0*2+1)*96))*-0.38268343236509+350) Y=((256+[mBand42]*[mBand42]**0*((-0*2+1)*96))*0.92387953251129+350) [Shape43] Meter=Image MeterStyle=styleShape X=((256+[mBand43]*[mBand43]**0*((-0*2+1)*96))*-0.32143946530316+350) Y=((256+[mBand43]*[mBand43]**0*((-0*2+1)*96))*0.94693012949511+350) [Shape44] Meter=Image MeterStyle=styleShape X=((256+[mBand44]*[mBand44]**0*((-0*2+1)*96))*-0.25881904510252+350) Y=((256+[mBand44]*[mBand44]**0*((-0*2+1)*96))*0.96592582628907+350) [Shape45] Meter=Image MeterStyle=styleShape X=((256+[mBand45]*[mBand45]**0*((-0*2+1)*96))*-0.19509032201613+350) Y=((256+[mBand45]*[mBand45]**0*((-0*2+1)*96))*0.98078528040323+350) [Shape46] Meter=Image MeterStyle=styleShape X=((256+[mBand46]*[mBand46]**0*((-0*2+1)*96))*-0.13052619222005+350) Y=((256+[mBand46]*[mBand46]**0*((-0*2+1)*96))*0.99144486137381+350) [Shape47] Meter=Image MeterStyle=styleShape X=((256+[mBand47]*[mBand47]**0*((-0*2+1)*96))*-0.065403129230143+350) Y=((256+[mBand47]*[mBand47]**0*((-0*2+1)*96))*0.9978589232386+350) [Shape48] Meter=Image MeterStyle=styleShape X=((256+[mBand48]*[mBand48]**0*((-0*2+1)*96))*6.1232339957368e-017+350) Y=((256+[mBand48]*[mBand48]**0*((-0*2+1)*96))*1+350) [Shape49] Meter=Image MeterStyle=styleShape X=((256+[mBand49]*[mBand49]**0*((-0*2+1)*96))*0.065403129230143+350) Y=((256+[mBand49]*[mBand49]**0*((-0*2+1)*96))*0.9978589232386+350) [Shape50] Meter=Image MeterStyle=styleShape X=((256+[mBand50]*[mBand50]**0*((-0*2+1)*96))*0.13052619222005+350) Y=((256+[mBand50]*[mBand50]**0*((-0*2+1)*96))*0.99144486137381+350) [Shape51] Meter=Image MeterStyle=styleShape X=((256+[mBand51]*[mBand51]**0*((-0*2+1)*96))*0.19509032201613+350) Y=((256+[mBand51]*[mBand51]**0*((-0*2+1)*96))*0.98078528040323+350) [Shape52] Meter=Image MeterStyle=styleShape X=((256+[mBand52]*[mBand52]**0*((-0*2+1)*96))*0.25881904510252+350) Y=((256+[mBand52]*[mBand52]**0*((-0*2+1)*96))*0.96592582628907+350) [Shape53] Meter=Image MeterStyle=styleShape X=((256+[mBand53]*[mBand53]**0*((-0*2+1)*96))*0.32143946530316+350) Y=((256+[mBand53]*[mBand53]**0*((-0*2+1)*96))*0.94693012949511+350) [Shape54] Meter=Image MeterStyle=styleShape X=((256+[mBand54]*[mBand54]**0*((-0*2+1)*96))*0.38268343236509+350) Y=((256+[mBand54]*[mBand54]**0*((-0*2+1)*96))*0.92387953251129+350) [Shape55] Meter=Image MeterStyle=styleShape X=((256+[mBand55]*[mBand55]**0*((-0*2+1)*96))*0.442288690219+350) Y=((256+[mBand55]*[mBand55]**0*((-0*2+1)*96))*0.89687274153269+350) [Shape56] Meter=Image MeterStyle=styleShape X=((256+[mBand56]*[mBand56]**0*((-0*2+1)*96))*0.5+350) Y=((256+[mBand56]*[mBand56]**0*((-0*2+1)*96))*0.86602540378444+350) [Shape57] Meter=Image MeterStyle=styleShape X=((256+[mBand57]*[mBand57]**0*((-0*2+1)*96))*0.5555702330196+350) Y=((256+[mBand57]*[mBand57]**0*((-0*2+1)*96))*0.83146961230255+350) [Shape58] Meter=Image MeterStyle=styleShape X=((256+[mBand58]*[mBand58]**0*((-0*2+1)*96))*0.60876142900872+350) Y=((256+[mBand58]*[mBand58]**0*((-0*2+1)*96))*0.79335334029124+350) [Shape59] Meter=Image MeterStyle=styleShape X=((256+[mBand59]*[mBand59]**0*((-0*2+1)*96))*0.65934581510007+350) Y=((256+[mBand59]*[mBand59]**0*((-0*2+1)*96))*0.75183980747898+350) [Shape60] Meter=Image MeterStyle=styleShape X=((256+[mBand60]*[mBand60]**0*((-0*2+1)*96))*0.70710678118655+350) Y=((256+[mBand60]*[mBand60]**0*((-0*2+1)*96))*0.70710678118655+350) [Shape61] Meter=Image MeterStyle=styleShape X=((256+[mBand61]*[mBand61]**0*((-0*2+1)*96))*0.75183980747898+350) Y=((256+[mBand61]*[mBand61]**0*((-0*2+1)*96))*0.65934581510007+350) [Shape62] Meter=Image MeterStyle=styleShape X=((256+[mBand62]*[mBand62]**0*((-0*2+1)*96))*0.79335334029124+350) Y=((256+[mBand62]*[mBand62]**0*((-0*2+1)*96))*0.60876142900872+350) [Shape63] Meter=Image MeterStyle=styleShape X=((256+[mBand63]*[mBand63]**0*((-0*2+1)*96))*0.83146961230254+350) Y=((256+[mBand63]*[mBand63]**0*((-0*2+1)*96))*0.5555702330196+350) [Shape64] Meter=Image MeterStyle=styleShape X=((256+[mBand64]*[mBand64]**0*((-0*2+1)*96))*0.86602540378444+350) Y=((256+[mBand64]*[mBand64]**0*((-0*2+1)*96))*0.5+350) [Shape65] Meter=Image MeterStyle=styleShape X=((256+[mBand65]*[mBand65]**0*((-0*2+1)*96))*0.89687274153269+350) Y=((256+[mBand65]*[mBand65]**0*((-0*2+1)*96))*0.442288690219+350) [Shape66] Meter=Image MeterStyle=styleShape X=((256+[mBand66]*[mBand66]**0*((-0*2+1)*96))*0.92387953251129+350) Y=((256+[mBand66]*[mBand66]**0*((-0*2+1)*96))*0.38268343236509+350) [Shape67] Meter=Image MeterStyle=styleShape X=((256+[mBand67]*[mBand67]**0*((-0*2+1)*96))*0.94693012949511+350) Y=((256+[mBand67]*[mBand67]**0*((-0*2+1)*96))*0.32143946530316+350) [Shape68] Meter=Image MeterStyle=styleShape X=((256+[mBand68]*[mBand68]**0*((-0*2+1)*96))*0.96592582628907+350) Y=((256+[mBand68]*[mBand68]**0*((-0*2+1)*96))*0.25881904510252+350) [Shape69] Meter=Image MeterStyle=styleShape X=((256+[mBand69]*[mBand69]**0*((-0*2+1)*96))*0.98078528040323+350) Y=((256+[mBand69]*[mBand69]**0*((-0*2+1)*96))*0.19509032201613+350) [Shape70] Meter=Image MeterStyle=styleShape X=((256+[mBand70]*[mBand70]**0*((-0*2+1)*96))*0.99144486137381+350) Y=((256+[mBand70]*[mBand70]**0*((-0*2+1)*96))*0.13052619222005+350) [Shape71] Meter=Image MeterStyle=styleShape X=((256+[mBand71]*[mBand71]**0*((-0*2+1)*96))*0.9978589232386+350) Y=((256+[mBand71]*[mBand71]**0*((-0*2+1)*96))*0.065403129230143+350) [Shape72] Meter=Image MeterStyle=styleShape X=((256+[mBand72]*[mBand72]**0*((-0*2+1)*96))*1+350) Y=((256+[mBand72]*[mBand72]**0*((-0*2+1)*96))*0+350) [Shape73] Meter=Image MeterStyle=styleShape X=((256+[mBand73]*[mBand73]**0*((-0*2+1)*96))*0.9978589232386+350) Y=((256+[mBand73]*[mBand73]**0*((-0*2+1)*96))*-0.065403129230143+350) [Shape74] Meter=Image MeterStyle=styleShape X=((256+[mBand74]*[mBand74]**0*((-0*2+1)*96))*0.99144486137381+350) Y=((256+[mBand74]*[mBand74]**0*((-0*2+1)*96))*-0.13052619222005+350) [Shape75] Meter=Image MeterStyle=styleShape X=((256+[mBand75]*[mBand75]**0*((-0*2+1)*96))*0.98078528040323+350) Y=((256+[mBand75]*[mBand75]**0*((-0*2+1)*96))*-0.19509032201613+350) [Shape76] Meter=Image MeterStyle=styleShape X=((256+[mBand76]*[mBand76]**0*((-0*2+1)*96))*0.96592582628907+350) Y=((256+[mBand76]*[mBand76]**0*((-0*2+1)*96))*-0.25881904510252+350) [Shape77] Meter=Image MeterStyle=styleShape X=((256+[mBand77]*[mBand77]**0*((-0*2+1)*96))*0.94693012949511+350) Y=((256+[mBand77]*[mBand77]**0*((-0*2+1)*96))*-0.32143946530316+350) [Shape78] Meter=Image MeterStyle=styleShape X=((256+[mBand78]*[mBand78]**0*((-0*2+1)*96))*0.92387953251129+350) Y=((256+[mBand78]*[mBand78]**0*((-0*2+1)*96))*-0.38268343236509+350) [Shape79] Meter=Image MeterStyle=styleShape X=((256+[mBand79]*[mBand79]**0*((-0*2+1)*96))*0.89687274153269+350) Y=((256+[mBand79]*[mBand79]**0*((-0*2+1)*96))*-0.442288690219+350) [Shape80] Meter=Image MeterStyle=styleShape X=((256+[mBand80]*[mBand80]**0*((-0*2+1)*96))*0.86602540378444+350) Y=((256+[mBand80]*[mBand80]**0*((-0*2+1)*96))*-0.5+350) [Shape81] Meter=Image MeterStyle=styleShape X=((256+[mBand81]*[mBand81]**0*((-0*2+1)*96))*0.83146961230255+350) Y=((256+[mBand81]*[mBand81]**0*((-0*2+1)*96))*-0.5555702330196+350) [Shape82] Meter=Image MeterStyle=styleShape X=((256+[mBand82]*[mBand82]**0*((-0*2+1)*96))*0.79335334029124+350) Y=((256+[mBand82]*[mBand82]**0*((-0*2+1)*96))*-0.60876142900872+350) [Shape83] Meter=Image MeterStyle=styleShape X=((256+[mBand83]*[mBand83]**0*((-0*2+1)*96))*0.75183980747898+350) Y=((256+[mBand83]*[mBand83]**0*((-0*2+1)*96))*-0.65934581510007+350) [Shape84] Meter=Image MeterStyle=styleShape X=((256+[mBand84]*[mBand84]**0*((-0*2+1)*96))*0.70710678118655+350) Y=((256+[mBand84]*[mBand84]**0*((-0*2+1)*96))*-0.70710678118655+350) [Shape85] Meter=Image MeterStyle=styleShape X=((256+[mBand85]*[mBand85]**0*((-0*2+1)*96))*0.65934581510007+350) Y=((256+[mBand85]*[mBand85]**0*((-0*2+1)*96))*-0.75183980747898+350) [Shape86] Meter=Image MeterStyle=styleShape X=((256+[mBand86]*[mBand86]**0*((-0*2+1)*96))*0.60876142900872+350) Y=((256+[mBand86]*[mBand86]**0*((-0*2+1)*96))*-0.79335334029124+350) [Shape87] Meter=Image MeterStyle=styleShape X=((256+[mBand87]*[mBand87]**0*((-0*2+1)*96))*0.5555702330196+350) Y=((256+[mBand87]*[mBand87]**0*((-0*2+1)*96))*-0.83146961230255+350) [Shape88] Meter=Image MeterStyle=styleShape X=((256+[mBand88]*[mBand88]**0*((-0*2+1)*96))*0.5+350) Y=((256+[mBand88]*[mBand88]**0*((-0*2+1)*96))*-0.86602540378444+350) [Shape89] Meter=Image MeterStyle=styleShape X=((256+[mBand89]*[mBand89]**0*((-0*2+1)*96))*0.442288690219+350) Y=((256+[mBand89]*[mBand89]**0*((-0*2+1)*96))*-0.89687274153269+350) [Shape90] Meter=Image MeterStyle=styleShape X=((256+[mBand90]*[mBand90]**0*((-0*2+1)*96))*0.38268343236509+350) Y=((256+[mBand90]*[mBand90]**0*((-0*2+1)*96))*-0.92387953251129+350) [Shape91] Meter=Image MeterStyle=styleShape X=((256+[mBand91]*[mBand91]**0*((-0*2+1)*96))*0.32143946530316+350) Y=((256+[mBand91]*[mBand91]**0*((-0*2+1)*96))*-0.94693012949511+350) [Shape92] Meter=Image MeterStyle=styleShape X=((256+[mBand92]*[mBand92]**0*((-0*2+1)*96))*0.25881904510252+350) Y=((256+[mBand92]*[mBand92]**0*((-0*2+1)*96))*-0.96592582628907+350) [Shape93] Meter=Image MeterStyle=styleShape X=((256+[mBand93]*[mBand93]**0*((-0*2+1)*96))*0.19509032201613+350) Y=((256+[mBand93]*[mBand93]**0*((-0*2+1)*96))*-0.98078528040323+350) [Shape94] Meter=Image MeterStyle=styleShape X=((256+[mBand94]*[mBand94]**0*((-0*2+1)*96))*0.13052619222005+350) Y=((256+[mBand94]*[mBand94]**0*((-0*2+1)*96))*-0.99144486137381+350) [Shape95] Meter=Image MeterStyle=styleShape X=((256+[mBand95]*[mBand95]**0*((-0*2+1)*96))*0.065403129230143+350) Y=((256+[mBand95]*[mBand95]**0*((-0*2+1)*96))*-0.9978589232386+350)
[ "aahmed3@stuy.edu" ]
aahmed3@stuy.edu
10c6d2d3445e001ffad4cb7b52f2a50f7954b412
2db4f36dec08a6dfc427e2f264536d3425ef2bad
/urdf_editor/src/codecs/step_to_stl.h
4dfd249d17b0be77566e3e419f45d42ef3b42cba
[ "Apache-2.0" ]
permissive
ros-industrial-consortium/CAD-to-ROS
991a13932dabcc54b8e6da57c984db923a98b15c
1c5128e48f83f640d99d5e9cde7ccefc56bcf413
refs/heads/m1_merge_candidate_v2
2021-06-04T03:51:46.137937
2020-07-07T09:40:57
2020-07-07T09:40:57
49,906,461
12
10
Apache-2.0
2020-07-07T09:40:59
2016-01-18T21:27:48
C++
UTF-8
C++
false
false
236
h
#ifndef CAD_TO_ROS_STEP_TO_STL_H #define CAD_TO_ROS_STEP_TO_STL_H #include <string> namespace urdf_editor { namespace codecs { bool convertStepToStl(const std::string& step_file_path, const std::string& stl_file_path); } } #endif
[ "jmeyer@swri.org" ]
jmeyer@swri.org
4b2216f0fbd5667bd8bb6a5a56cc7c0089acf2b8
725104e743ab6c99e6dcfd4e749c069af4c9cdc9
/LeetCodeTestSolutions/Ex040-FirstMissingPositive.cpp
64ddaa51c731890d9463d13bfedaa495d844815a
[]
no_license
Msudyc/LeetCodePartCpp
7306af23a1921e0c52fc29d12b32fad337a62174
0204709753fdaeee6fa222f70fa11ff9bd1f6e6d
refs/heads/master
2021-01-15T10:25:49.839340
2014-11-09T04:05:49
2014-11-09T04:05:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
866
cpp
/* Given an unsorted integer array, find the first missing positive integer. For example, Given [1,2,0] return 3, and [3,4,-1,1] return 2. Your algorithm should run in O(n) time and uses constant space. class Solution { public: int firstMissingPositive(int A[], int n) { } }; */ #include "Ex040-FirstMissingPositive.h" namespace LeetCodeTestSolutions { int Ex40::firstMissingPositive(int A[], int n) { for (int i=0; i<n; ++i) if (A[i] > 0 && A[i] < n) { if (A[i]-1 != i && A[A[i]-1] != A[i]) { int temp = A[A[i]-1]; A[A[i]-1] = A[i]; A[i] = temp; i--; } } for (int j=0; j<n; ++j) if (A[j]-1 != j) return j+1; return n+1; } }
[ "msudyc@gmail.com" ]
msudyc@gmail.com
ef5464b2973bd35deba4ebaaba2709dd83060de1
16f21f7507a8ee65bcdf4b84ffd0b709a0a362d5
/distribution/Monero/include/contrib/epee/include/net/levin_client.inl
50a01aaa5f4382e45b6469e691a02f7d0bb5de5a
[ "MIT" ]
permissive
gkruja/MoneroAndroidwallet
ea9656723b11bca75b813d66ee49f005acedb0ed
2e7fa734ef9a49d566e1abbfc6c1c4b4b790d629
refs/heads/master
2021-06-23T18:36:42.557351
2017-09-01T20:26:30
2017-09-01T20:26:30
91,591,825
14
15
null
2017-09-01T20:26:31
2017-05-17T15:26:53
C++
UTF-8
C++
false
false
5,998
inl
// Copyright (c) 2006-2013, Andrey N. Sabelnikov, www.sabelnikov.net // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // * Neither the name of the Andrey N. Sabelnikov nor the // names of its contributors may be used to endorse or promote products // derived from this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER BE LIABLE FOR ANY // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND // ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ #include "string_tools.h" #undef MONERO_DEFAULT_LOG_CATEGORY #define MONERO_DEFAULT_LOG_CATEGORY "net" namespace epee { namespace levin { inline bool levin_client_impl::connect(u_long ip, int port, unsigned int timeout, const std::string& bind_ip) { return m_transport.connect(string_tools::get_ip_string_from_int32(ip), port, timeout, timeout, bind_ip); } //------------------------------------------------------------------------------ inline bool levin_client_impl::connect(const std::string& addr, int port, unsigned int timeout, const std::string& bind_ip) { return m_transport.connect(addr, port, timeout, timeout, bind_ip); } //------------------------------------------------------------------------------ inline bool levin_client_impl::is_connected() { return m_transport.is_connected(); } //------------------------------------------------------------------------------ inline bool levin_client_impl::disconnect() { return m_transport.disconnect(); } //------------------------------------------------------------------------------ inline levin_client_impl::levin_client_impl() { } //------------------------------------------------------------------------------ inline levin_client_impl::~levin_client_impl() { disconnect(); } //------------------------------------------------------------------------------ inline int levin_client_impl::invoke(int command, const std::string& in_buff, std::string& buff_out) { if(!is_connected()) return -1; bucket_head head = {0}; head.m_signature = LEVIN_SIGNATURE; head.m_cb = in_buff.size(); head.m_have_to_return_data = true; head.m_command = command; if(!m_transport.send(&head, sizeof(head))) return -1; if(!m_transport.send(in_buff)) return -1; std::string local_buff; if(!m_transport.recv_n(local_buff, sizeof(bucket_head))) return -1; head = *(bucket_head*)local_buff.data(); if(head.m_signature!=LEVIN_SIGNATURE) { LOG_PRINT_L1("Signature missmatch in response"); return -1; } if(!m_transport.recv_n(buff_out, head.m_cb)) return -1; return head.m_return_code; } //------------------------------------------------------------------------------ inline int levin_client_impl::notify(int command, const std::string& in_buff) { if(!is_connected()) return -1; bucket_head head = {0}; head.m_signature = LEVIN_SIGNATURE; head.m_cb = in_buff.size(); head.m_have_to_return_data = false; head.m_command = command; if(!m_transport.send((const char*)&head, sizeof(head))) return -1; if(!m_transport.send(in_buff)) return -1; return 1; } //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ inline int levin_client_impl2::invoke(int command, const std::string& in_buff, std::string& buff_out) { if(!is_connected()) return -1; bucket_head2 head = {0}; head.m_signature = LEVIN_SIGNATURE; head.m_cb = in_buff.size(); head.m_have_to_return_data = true; head.m_command = command; head.m_protocol_version = LEVIN_PROTOCOL_VER_1; head.m_flags = LEVIN_PACKET_REQUEST; if(!m_transport.send(&head, sizeof(head))) return -1; if(!m_transport.send(in_buff)) return -1; std::string local_buff; if(!m_transport.recv_n(local_buff, sizeof(bucket_head2))) return -1; head = *(bucket_head2*)local_buff.data(); if(head.m_signature!=LEVIN_SIGNATURE) { LOG_PRINT_L1("Signature missmatch in response"); return -1; } if(!m_transport.recv_n(buff_out, head.m_cb)) return -1; return head.m_return_code; } //------------------------------------------------------------------------------ inline int levin_client_impl2::notify(int command, const std::string& in_buff) { if(!is_connected()) return -1; bucket_head2 head = {0}; head.m_signature = LEVIN_SIGNATURE; head.m_cb = in_buff.size(); head.m_have_to_return_data = false; head.m_command = command; head.m_protocol_version = LEVIN_PROTOCOL_VER_1; head.m_flags = LEVIN_PACKET_REQUEST; if(!m_transport.send((const char*)&head, sizeof(head))) return -1; if(!m_transport.send(in_buff)) return -1; return 1; } } } //------------------------------------------------------------------------------
[ "gkruja2@gmail.com" ]
gkruja2@gmail.com
05f0496aa7cf0c2bc656fdd3d7f874eed8a75495
095b44546e6eec821b59cc5ba2b193488c13271e
/Fundamentals/C++/Exercise/Tetris/Board.cpp
cb5718c0eb3f3816623cb6d7fdd852645ea97660
[]
no_license
michal0janczyk/interview_preparation
13221e866be48bb47568cd3ece5ae5cb1a62c972
7dd96d2883a221f9561d9be57fe51ce5fb21b6a9
refs/heads/master
2023-03-21T17:19:54.821481
2021-03-17T21:43:35
2021-03-17T21:43:35
89,164,362
0
0
null
null
null
null
UTF-8
C++
false
false
1,023
cpp
#include "Board.hpp" #include "Pieces.hpp" #include <Windows.h> Board::Board() { tab = new int *[height]; for (int i = 0; i < height; ++i) { tab[i] = new int[width]; } for (int i = 0; i < height; ++i) { for (int j = 0; j < width; ++j) { tab[i][j] = 0; } } } Board::~Board() { for (int i = 0; i < height; ++i) { for (int j = 0; j < width; ++j) { delete [] tab; } } } void Board::insertPiece(const int* const *piece) { for (int x = 0; x < Pieces::tabSize; ++x) { for (int y = 0; y < Pieces::tabSize; ++y) { tab[startX + x][startY + y] = piece[x][y]; } } OutputDebugString("Inserted a piece"); } void Board::DumpPiece(int X, int Y, int Piece, int Rotation) { //Store each block } void Board::ClearLine(int Y) { //Delete one line and move lines one row down for (int i = Y; i > 0; --i) { for (int j = 0; j < width; ++j) { tab[i][j] = tab[i][j - 1]; } } }
[ "michu@pornhub.gov" ]
michu@pornhub.gov
cbb74a7b3e780299a12dee958ca24fa0b6660cf8
cd11d2e3aa7e050554cd745dcf713abb7a11e929
/XGames/Prince/Classes/NewStarsCampModule/StarsCampLayerOne.cpp
12729e382c97ba91c8f5b73a275d3f357122af26
[]
no_license
daxingyou/XGame
3cdc2c9ab06be55ed80aed6c99cb6aa77073b139
5fd0140bc398edc374306067bb258b323604b9cb
refs/heads/main
2023-04-16T21:23:20.368638
2021-04-20T16:35:17
2021-04-20T16:35:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
14,490
cpp
#include "StarsCampLayerOne.h" #include "StarsCampScene.h" StarsCampLayerOne::StarsCampLayerOne() { StarsCampModel::getInstance()->addObserver(this); } StarsCampLayerOne::~StarsCampLayerOne() { StarsCampModel::getInstance()->removeObserver(this); } bool StarsCampLayerOne::init() { if (!Layer::init()) { return false; } initUi(); return true; } void StarsCampLayerOne::initUi() { Size size = Director::getInstance()->getVisibleSize(); Point pos = Director::getInstance()->getVisibleOrigin(); // 使用json文件给Layer层添加CocoStudio生成的控件 m_ui.ui_Root = dynamic_cast<Layout*>(cocostudio::GUIReader::getInstance()->widgetFromJsonFile("Image/UIAstrolabe2/UIAstrolabe2_6.ExportJson")); m_ui.ui_Root->setSize(size); m_ui.ui_Root->setPosition(pos); this->addChild(m_ui.ui_Root); m_ui.ui_Root->setBackGroundImage("Image/Bg/img_bg.png",ui::Widget::TextureResType::LOCAL); //提示 m_ui.teTip = dynamic_cast<Text*>(Helper::seekWidgetByName(m_ui.ui_Root,"Label_Tips")); m_ui.teTip->setFontName(FONT_FZZHENGHEI); //中间容器 m_ui.Panel_Astrolabe_3 = dynamic_cast<Layout*>(Helper::seekWidgetByName(m_ui.ui_Root,"Panel_Astrolabe_3")); //拿数据 auto _cleck = StarsCampModel::getInstance()->getCleckWZ(); auto oneinfo = StarsCampModel::getInstance()->getOndeStarCampInfoByWz(_cleck); auto fiveHero = oneinfo.heroId; //哪种类型的盘 int index = (_cleck)%5+1; auto _rroot= dynamic_cast<Layout*>(cocostudio::GUIReader::getInstance()->widgetFromJsonFile("Image/UIAstrolabe2/UIAstrolabe2_2.ExportJson")); auto rootSon1 = dynamic_cast<Layout*>(Helper::seekWidgetByName(_rroot,"BPanel_Hero_"+TO_STR(index))); m_ui.midLa = dynamic_cast<Layout*>(rootSon1->clone()); m_ui.midLa->setVisible(true); //底部图片设置不可点击高亮 auto sonbutton = dynamic_cast<Button*>(m_ui.midLa->getChildByName("Button_Astrolabe")); string name1 = ResourceUtils::getStarCampDiPathByStr(TO_STR(oneinfo.type)); string name2 = ResourceUtils::getStarCampDiPathByStr(TO_STR(oneinfo.type)+"a"); sonbutton->loadTextures(name1,name2,name2,ui::Widget::TextureResType::LOCAL); sonbutton->setHighlighted(true); sonbutton->setTouchEnabled(false); auto Image_Open = dynamic_cast<ImageView*>(Helper::seekWidgetByName(m_ui.midLa,"Image_Open")); auto Label_Number = dynamic_cast<Text*>(Helper::seekWidgetByName(m_ui.midLa,"Label_Number")); auto Image_New = dynamic_cast<ImageView*>(Helper::seekWidgetByName(m_ui.midLa,"Image_New")); Image_New->setVisible(false); Image_Open->setVisible(false); Label_Number->setVisible(false); m_ui.midLa->setScale(1.6f); m_ui.midLa->setAnchorPoint(Vec2(0.5,0.5)); auto paSize = m_ui.Panel_Astrolabe_3->getContentSize(); m_ui.midLa->setPosition(Vec2(paSize.width/2,paSize.height/2)); m_ui.Panel_Astrolabe_3->addChild(m_ui.midLa); //左边UI m_ui.Image_Bg_left = dynamic_cast<ImageView*>(Helper::seekWidgetByName(m_ui.ui_Root,"Image_Bg_left")); for (int i = 0; i < FIVEHERO; i++) { UI_Left_attribute leftAttribute; leftAttribute.Label_Hero = dynamic_cast<Text*>(Helper::seekWidgetByName(m_ui.ui_Root,"Label_Hero_"+_TO_STR(i+1))); leftAttribute.Label_Jewel = dynamic_cast<Text*>(Helper::seekWidgetByName(m_ui.ui_Root,"Label_Jewel_"+_TO_STR(i+1))); m_ui.leftAttribute.push_back(leftAttribute); } //右边UI m_ui.Image_Bg_right = dynamic_cast<ImageView*>(Helper::seekWidgetByName(m_ui.ui_Root,"Image_Bg_right")); for (int i=1; i<5; ++i) { UI_Right_attribute rightAttribute; rightAttribute.Image_Power_1 = dynamic_cast<ImageView*>(Helper::seekWidgetByName( m_ui.Image_Bg_right,"Image_Power_"+_TO_STR(i))); rightAttribute.Label_power = dynamic_cast<Text*>(Helper::seekWidgetByName( m_ui.Image_Bg_right,"Label_Name_"+_TO_STR(i))); rightAttribute.Label_Power_number_1 = dynamic_cast<Text*>(Helper::seekWidgetByName( m_ui.Image_Bg_right,"Label_Power_"+_TO_STR(i))); m_ui.rightAttribute.push_back(rightAttribute); } auto back = [this](Ref* sender, Widget::TouchEventType type)->void { if (type == Widget::TouchEventType::BEGAN) { SoundUtils::playSoundEffect("dianji"); } else if (type == Widget::TouchEventType::ENDED) { Director::getInstance()->replaceScene(StarsCampScene::create()); } }; LayerCommHeadInfo *_layerCommHeadInfo = LayerCommHeadInfo::create(back,HEAD_INFO_TYPE_STARSTONEGAT); this->addChild(_layerCommHeadInfo); initLeft(); initMid(); initRight(); setAllFlag(); GuideManager::getInstance()->startGuideNextFrame(GUIDE_INTERFACE_STAR_PLATE_INFO); } void StarsCampLayerOne::onEnter() { Layer::onEnter(); } void StarsCampLayerOne::onExit() { Layer::onExit(); } void StarsCampLayerOne::onBtnClick( Ref* reff, Widget::TouchEventType type,ONECAMP_CALLBACK TYEP,int uId,Button* son) { if(type == Widget::TouchEventType::BEGAN) { SoundUtils::playSoundEffect("dianji"); } else if(type == Widget::TouchEventType::ENDED) { switch (TYEP) { case ONECAMP_CLECKHERO: StarsCampModel::getInstance()->setCleckHero(uId); if (son) { setJoinInFlag(son,false); } jumpToOnHeroInfo(); break; default: break; } } } void StarsCampLayerOne::jumpToOnHeroInfo() { Layout *imgLine = dynamic_cast<Layout*>(Helper::seekWidgetByName(m_ui.midLa, "Panel_Hero_" +TO_STR(StarsCampModel::getInstance()->getCleckHero()+1))); Button *imaButton = dynamic_cast<Button*>(Helper::seekWidgetByName(imgLine, "Button_Hero")); setJoinInFlag(imaButton,false); m_layer = StarsCampLayerHero::create(); this->addChild(m_layer); ImageView* uiBg = m_layer->getSonChirld(); ActionCreator::runCommDlgAction(uiBg); } void StarsCampLayerOne::setJoinInFlag(Button *icon, bool isShow) { Node* FriendFlag = icon->getChildByName("mail_flg"); if (!FriendFlag) { FriendFlag = cocos2d::ui::ImageView::create("Image/Icon/global/img_dian.png"); FriendFlag->setPosition(cocos2d::Vec2(icon->getContentSize().width - FriendFlag->getContentSize().width/2, icon->getContentSize().height - FriendFlag->getContentSize().height/2)); FriendFlag->setName("mail_flg"); icon->addChild(FriendFlag, 9); } if (StarsCampModel::getInstance()->getIsNewCamp()&& isShow) { FriendFlag->setVisible(true); } else { FriendFlag->setVisible(false); } } void StarsCampLayerOne::updateSelf(void* data) { ObserverParam* observerParam = (ObserverParam*)data; switch (observerParam->id) { case SC_EVENT_TYPE_GET_INFO: { //星石名字 updateLeft(); //换星石图片 updateMid(); //星石加成属性 updateRight(); } break; default: break; } } void StarsCampLayerOne::setAllFlag() { for (int k=0; k<FIVEHERO; ++k) { Layout *imgLine = dynamic_cast<Layout*>(Helper::seekWidgetByName(m_ui.midLa, "Panel_Hero_" + TO_STR(k+1))); Button *imaButton = dynamic_cast<Button*>(Helper::seekWidgetByName(imgLine, "Button_Hero")); setJoinInFlag(imaButton,true); } } void StarsCampLayerOne::initLeft() { for (int i = 0; i < FIVEHERO; i++) { auto leftAttribute = m_ui.leftAttribute.at(i); auto _cleck = StarsCampModel::getInstance()->getCleckWZ(); auto oncampinfo = StarsCampModel::getInstance()->getOndeStarCampInfoByWz(_cleck); //英雄名字 auto hero = DataManager::getInstance()->searchCharacterById(oncampinfo.heroId.at(i).uId); leftAttribute.Label_Hero->setString(hero->getStringData("name")); leftAttribute.Label_Hero->setFontName(FONT_FZZHENGHEI); setTextAddStroke(leftAttribute.Label_Hero, Color3B(0x54, 0x0a, 0x0a),2); //有晶石 if (oncampinfo.heroId.at(i).stoneId != 0) { leftAttribute.Label_Jewel->setString(oncampinfo.heroId.at(i).stoneName); leftAttribute.Label_Jewel->setColor( Color3B(0xff, 0xf1, 0x19)); leftAttribute.Label_Jewel->setFontName(FONT_FZZHENGHEI); setTextAddStroke(leftAttribute.Label_Jewel, Color3B(0x79, 0x03, 0x03),2); } else if (oncampinfo.heroId.at(i).stoneId == 0) { leftAttribute.Label_Jewel->setString(DataManager::getInstance()->searchCommonTexdtById(20148)); leftAttribute.Label_Jewel->setColor( Color3B(0xab, 0xab, 0xab)); leftAttribute.Label_Jewel->setFontName(FONT_FZZHENGHEI); } } } void StarsCampLayerOne::initRight() { auto _cleck = StarsCampModel::getInstance()->getCleckWZ(); auto oneCampAttribute = StarsCampModel::getInstance()->getOndeStarCampInfoByWz(_cleck); long int gongji = oneCampAttribute.gongji; long int xueliang= oneCampAttribute.xueliang; long int wufang = oneCampAttribute.wufang; long int mofang = oneCampAttribute.mofang; auto temp = m_ui.rightAttribute.at(0); temp.Label_power->setFontName(FONT_FZZHENGHEI); temp.Label_Power_number_1->setString("+"+TO_STR(gongji)); temp.Label_Power_number_1->setFontName(FONT_FZZHENGHEI); temp = m_ui.rightAttribute.at(1);; temp.Label_power->setFontName(FONT_FZZHENGHEI); temp.Label_Power_number_1->setString("+"+TO_STR(xueliang)); temp.Label_Power_number_1->setFontName(FONT_FZZHENGHEI); temp = m_ui.rightAttribute.at(2); temp.Label_power->setFontName(FONT_FZZHENGHEI); temp.Label_Power_number_1->setString("+"+TO_STR(mofang)); temp.Label_Power_number_1->setFontName(FONT_FZZHENGHEI); temp = m_ui.rightAttribute.at(3); temp.Label_power->setFontName(FONT_FZZHENGHEI); temp.Label_Power_number_1->setString("+"+TO_STR(wufang)); temp.Label_Power_number_1->setFontName(FONT_FZZHENGHEI); } void StarsCampLayerOne::initMid() { //拿数据 auto _cleck = StarsCampModel::getInstance()->getCleckWZ(); auto oneinfo = StarsCampModel::getInstance()->getOndeStarCampInfoByWz(_cleck); auto fiveHero = oneinfo.heroId; /************************************************************************/ /* 更新阵形UI */ /************************************************************************/ for (int k=0; k<FIVEHERO; ++k) { Layout *imgLine = dynamic_cast<Layout*>(Helper::seekWidgetByName(m_ui.midLa, "Panel_Hero_" + TO_STR(k+1))); Button *imaButton = dynamic_cast<Button*>(Helper::seekWidgetByName(imgLine, "Button_Hero")); imgLine->setTouchEnabled(false); imaButton->setTouchEnabled(true); imaButton->addTouchEventListener(CC_CALLBACK_2(StarsCampLayerOne::onBtnClick,this,ONECAMP_CALLBACK::ONECAMP_CLECKHERO,k,imaButton)); //星盘英雄头像 auto hero = HeroModel::getInstance()->searchHeroByTemplateId(fiveHero.at(k).uId); ImageView* icon = ImageView::create(ResourceUtils::getStarCampPathById(fiveHero.at(k).uId)); //没有英雄设置成灰色 if (hero == nullptr) { setImageGray(icon,true); } icon->setScale(0.65f); icon->setPosition(Vec2(imgLine->getContentSize().width/2,imgLine->getContentSize().height/2)); icon->setZOrder(-1); //setJoinInFlag(imaButton,true); imgLine->addChild(icon); if (fiveHero.at(k).stoneId != 0) { ImageView* image = dynamic_cast<ImageView*>(imgLine->getChildByName("stoname")); if (image) { image->removeFromParent(); } string stoname = ResourceUtils::getStarCampPathByStr(fiveHero.at(k).stoneiconID); image = ImageView::create(stoname); image->setName("stoname"); image->setScale(0.25f); image->setPosition(Vec2(imgLine->getContentSize().width/2+2,5)); imgLine->addChild(image); } } } void StarsCampLayerOne::updateMid() { //拿数据 auto _cleck = StarsCampModel::getInstance()->getCleckWZ(); auto oneinfo = StarsCampModel::getInstance()->getOndeStarCampInfoByWz(_cleck); auto fiveHero = oneinfo.heroId; for (int k=0; k<FIVEHERO; ++k) { Layout *imgLine = dynamic_cast<Layout*>(Helper::seekWidgetByName(m_ui.midLa, "Panel_Hero_" + TO_STR(k+1))); Button *imaButton = dynamic_cast<Button*>(Helper::seekWidgetByName(imgLine, "Button_Hero")); if (fiveHero.at(k).stoneId != 0) { ImageView* image = dynamic_cast<ImageView*>(imgLine->getChildByName("stoname")); if (image) { image->removeFromParent(); } string stoname = ResourceUtils::getStarCampPathByStr(fiveHero.at(k).stoneiconID); image = ImageView::create(stoname); image->setName("stoname"); image->setScale(0.25f); image->setPosition(Vec2(imgLine->getContentSize().width/2+2,5)); imgLine->addChild(image); } } } void StarsCampLayerOne::updateLeft() { for (int i = 0; i < FIVEHERO; i++) { auto leftAttribute = m_ui.leftAttribute.at(i); auto _cleck = StarsCampModel::getInstance()->getCleckWZ(); auto oncampinfo = StarsCampModel::getInstance()->getOndeStarCampInfoByWz(_cleck); //英雄名字 auto hero = DataManager::getInstance()->searchCharacterById(oncampinfo.heroId.at(i).uId); leftAttribute.Label_Hero->setString(hero->getStringData("name")); leftAttribute.Label_Hero->setFontName(FONT_FZZHENGHEI); setTextAddStroke(leftAttribute.Label_Hero, Color3B(0x54, 0x0a, 0x0a),2); //有晶石 if (oncampinfo.heroId.at(i).stoneId != 0) { leftAttribute.Label_Jewel->setString(oncampinfo.heroId.at(i).stoneName); leftAttribute.Label_Jewel->setColor( Color3B(0xff, 0xf1, 0x19)); leftAttribute.Label_Jewel->setFontName(FONT_FZZHENGHEI); setTextAddStroke(leftAttribute.Label_Jewel, Color3B(0x79, 0x03, 0x03),2); } else if (oncampinfo.heroId.at(i).stoneId == 0) { leftAttribute.Label_Jewel->setString(DataManager::getInstance()->searchCommonTexdtById(20148)); leftAttribute.Label_Jewel->setColor( Color3B(0xab, 0xab, 0xab)); leftAttribute.Label_Jewel->setFontName(FONT_FZZHENGHEI); } } } void StarsCampLayerOne::updateRight() { auto _cleck = StarsCampModel::getInstance()->getCleckWZ(); auto oneCampAttribute = StarsCampModel::getInstance()->getOndeStarCampInfoByWz(_cleck); long int gongji = oneCampAttribute.gongji; long int xueliang= oneCampAttribute.xueliang; long int wufang = oneCampAttribute.wufang; long int mofang = oneCampAttribute.mofang; auto temp = m_ui.rightAttribute.at(0); temp.Label_power->setFontName(FONT_FZZHENGHEI); temp.Label_Power_number_1->setString("+"+TO_STR(gongji)); temp.Label_Power_number_1->setFontName(FONT_FZZHENGHEI); temp = m_ui.rightAttribute.at(1);; temp.Label_power->setFontName(FONT_FZZHENGHEI); temp.Label_Power_number_1->setString("+"+TO_STR(xueliang)); temp.Label_Power_number_1->setFontName(FONT_FZZHENGHEI); temp = m_ui.rightAttribute.at(2); temp.Label_power->setFontName(FONT_FZZHENGHEI); temp.Label_Power_number_1->setString("+"+TO_STR(mofang)); temp.Label_Power_number_1->setFontName(FONT_FZZHENGHEI); temp = m_ui.rightAttribute.at(3); temp.Label_power->setFontName(FONT_FZZHENGHEI); temp.Label_Power_number_1->setString("+"+TO_STR(wufang)); temp.Label_Power_number_1->setFontName(FONT_FZZHENGHEI); }
[ "635459675@qq.com" ]
635459675@qq.com
6d17a013981b6db65eb85451e10e0c8565701ec5
96dc61c3101e91bad495e1a1ef244a883f50d5d5
/Model_Interpretator/src/Lex.cpp
a31e226e19fa0852ee4d69af802231a32ab42959
[]
no_license
Artelhin/MSU
0c06cd4fb0955741d49281be18f3bdabc52277a4
e03c349f3d03f88dbb454c5c47594b6e75bc6186
refs/heads/master
2020-03-07T21:59:56.092187
2018-05-23T03:45:36
2018-05-23T03:45:36
127,742,177
0
0
null
null
null
null
UTF-8
C++
false
false
2,015
cpp
#ifndef LEXEM #define LEXEM #include <iostream> using namespace std; enum type_of_lex { LEX_NULL, //0 LEX_AND, //1 LEX_BEGIN, //2 LEX_BOOL, //3 LEX_DO, //4 LEX_ELSE, //5 LEX_END, //6 LEX_IF, //7 LEX_FALSE, //8 LEX_INT, //9 LEX_NOT, //10 LEX_OR, //11 LEX_PROGRAM, //12 LEX_READ, //13 LEX_TRUE, //14 LEX_WHILE, //15 LEX_WRITE, //16 LEX_FIN, //17 LEX_SEMICOLON, //18 LEX_COMMA, //19 LEX_COLON, //20 LEX_ASSIGN, //21 LEX_LPAREN, //22 LEX_RPAREN, //23 LEX_EQ, //24 LEX_LSS, //25 LEX_GTR, //26 LEX_PLUS, //27 LEX_MINUS, //28 LEX_TIMES, //29 LEX_SLASH, //30 LEX_LEQ, //31 LEX_NEQ, //32 LEX_GEQ, //33 LEX_NUM, //34 LEX_ID, //35 POLIZ_LABEL, //36 POLIZ_ADDRESS, //37 POLIZ_GO, //38 POLIZ_FGO, //39 LEX_QUOTE, //40 LEX_STRING, //41 LEX_CSTRING, //42 LEX_FOR, //43 LEX_BREAK, //44 LEX_GOTO, //45 LEX_STRUCT, //46 LEX_TSTRUCT, //47 for struct needs LEX_LABEL, //48 for goto needs LEX_POINT }; class Lex { type_of_lex t_lex; int v_lex; int line; public: Lex(type_of_lex t, int v = 0, int l = 0) { t_lex = t; v_lex = v; line = l; } Lex(int l = 0, type_of_lex t = LEX_NULL, int v = 0) { t_lex = t; v_lex = v; line = l; } type_of_lex get_type() { return t_lex; } int get_value() { return v_lex; } int get_line() { return line; } friend ostream& operator << (ostream &s, Lex l); }; ostream& operator << (ostream &s, Lex l) { s << '(' << l.t_lex << ',' << l.v_lex << ");"; return s; } #endif // LEXEM
[ "artelhin@gmail.com" ]
artelhin@gmail.com
4ff7b372b3a4c7b75d7ae0e35e9a7040117394fc
c0e4ee0f4bdfaa138fa75845e739d2ec92c8f083
/qt_source/dialog_read.cpp
4561dee801d774be8d7eb96574031eabb50b6ed3
[]
no_license
EndlessLethe/QTAddressBook
14ff301fbb9807a1c92e600e4aa1899ec1be686e
6c3084ebeaa61361df5b3e7edeed57993fd37f75
refs/heads/master
2021-12-25T04:06:49.288397
2017-12-26T08:27:56
2017-12-26T08:27:56
115,401,437
0
0
null
null
null
null
UTF-8
C++
false
false
646
cpp
#include "dialog_read.h" #include "ui_dialog_read.h" #include "mainwindow.h" Dialog_read::Dialog_read(QWidget *parent) : QDialog(parent), ui(new Ui::Dialog_read) { ui->setupUi(this); MainWindow *ptr = (MainWindow*)parentWidget(); connect(ui->read_a, SIGNAL(clicked()), ptr, SLOT(connect_read())); connect(ui->read_b, SIGNAL(clicked()), ptr, SLOT(connect_read())); connect(ui->read_c, SIGNAL(clicked()), ptr, SLOT(connect_read())); connect(ui->read_d, SIGNAL(clicked()), ptr, SLOT(connect_read())); connect(ui->read_e, SIGNAL(clicked()), this, SLOT(close())); } Dialog_read::~Dialog_read() { delete ui; }
[ "endlesslethe@gmail.com" ]
endlesslethe@gmail.com
3c3ddba56aebc1cbf3b7dd7658b44a04a6184fc9
2fbce29341cfec30350c19b7a712fc83a214a3f2
/openEMSwizard/WizardInit.h
e2b205a4770d5d9b15b0817f57d3c32bba782185
[]
no_license
michal777/openems_wizard_draft
60317f7057e4e4bfcf87e26632c3a7f59ba12f2d
0ff1a744e3d377ee3aaa6d7a1e7a456b5bd12b79
refs/heads/master
2020-05-23T17:13:04.244568
2019-06-27T22:24:30
2019-06-27T22:24:30
186,863,826
2
0
null
null
null
null
UTF-8
C++
false
false
764
h
#ifndef WIZARDINIT_H #define WIZARDINIT_H #include <QWizard> #include <QWizardPage> #include <QMainWindow> #include <QFile> #include <QLineEdit> #include <QDialog> #include <QSettings> #include <QTableWidget> #include "VariablesEditor.h" class WizardInit : public QWizard { Q_OBJECT public: WizardInit(QMainWindow *parent); QWizardPage *ReturnWorkflowStep(QString workflowname, VariablesEditor *var_edit_main); void StartWizardWindow(); QFile *workflowfile; QLineEdit *text_wffile_path; QDialog *dialog_load_workflow; void SaveSettings(); void LoadSettings(); QString file_main_settings; QSettings *main_settings; public slots: void OnSetWorkflowFilePath(); void OnRunWizard(); }; #endif // WIZARDINIT_H
[ "nnn4000@o2.pl" ]
nnn4000@o2.pl
6f2f872c6fb110f2d1af49aa7eb81250490aa231
b7f3edb5b7c62174bed808079c3b21fb9ea51d52
/ios/chrome/browser/omaha/omaha_service.h
138542956a5027b5f084012abec63ab100c0535f
[ "BSD-3-Clause" ]
permissive
otcshare/chromium-src
26a7372773b53b236784c51677c566dc0ad839e4
64bee65c921db7e78e25d08f1e98da2668b57be5
refs/heads/webml
2023-03-21T03:20:15.377034
2020-11-16T01:40:14
2020-11-16T01:40:14
209,262,645
18
21
BSD-3-Clause
2023-03-23T06:20:07
2019-09-18T08:52:07
null
UTF-8
C++
false
false
8,069
h
// 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. #ifndef IOS_CHROME_BROWSER_OMAHA_OMAHA_SERVICE_H_ #define IOS_CHROME_BROWSER_OMAHA_OMAHA_SERVICE_H_ #include <memory> #include "base/callback.h" #include "base/gtest_prod_util.h" #include "base/macros.h" #include "base/no_destructor.h" #include "base/scoped_observer.h" #include "base/timer/timer.h" #include "base/version.h" namespace base { class DictionaryValue; } namespace network { class SharedURLLoaderFactory; class PendingSharedURLLoaderFactory; class SimpleURLLoader; } // namespace network struct UpgradeRecommendedDetails; // This service handles the communication with the Omaha server. It also // handles all the scheduling necessary to contact the server regularly. // All methods, but the constructor, |GetInstance| and |Start| methods, must be // called from the IO thread. class OmahaService { public: // Called when an upgrade is recommended. using UpgradeRecommendedCallback = base::Callback<void(const UpgradeRecommendedDetails&)>; // Starts the service. Also set the |URLLoaderFactory| necessary to access the // Omaha server. This method should only be called once. Does nothing if // Omaha should not be enabled for this build variant. static void Start(std::unique_ptr<network::PendingSharedURLLoaderFactory> pending_url_loader_factory, const UpgradeRecommendedCallback& callback); // Stops the service in preparation for browser shutdown. static void Stop(); // Returns debug information about the omaha service. static void GetDebugInformation( const base::Callback<void(base::DictionaryValue*)> callback); private: // For tests: friend class OmahaServiceTest; friend class OmahaServiceInternalTest; FRIEND_TEST_ALL_PREFIXES(OmahaServiceTest, PingMessageTest); FRIEND_TEST_ALL_PREFIXES(OmahaServiceTest, PingMessageTestWithUnknownInstallDate); FRIEND_TEST_ALL_PREFIXES(OmahaServiceTest, InstallEventMessageTest); FRIEND_TEST_ALL_PREFIXES(OmahaServiceTest, SendPingFailure); FRIEND_TEST_ALL_PREFIXES(OmahaServiceTest, SendPingSuccess); FRIEND_TEST_ALL_PREFIXES(OmahaServiceTest, ParseAndEchoLastServerDate); FRIEND_TEST_ALL_PREFIXES(OmahaServiceTest, SendInstallEventSuccess); FRIEND_TEST_ALL_PREFIXES(OmahaServiceTest, SendPingReceiveUpdate); FRIEND_TEST_ALL_PREFIXES(OmahaServiceTest, PersistStatesTest); FRIEND_TEST_ALL_PREFIXES(OmahaServiceTest, BackoffTest); FRIEND_TEST_ALL_PREFIXES(OmahaServiceTest, NonSpammingTest); FRIEND_TEST_ALL_PREFIXES(OmahaServiceTest, ActivePingAfterInstallEventTest); FRIEND_TEST_ALL_PREFIXES(OmahaServiceTest, InstallRetryTest); FRIEND_TEST_ALL_PREFIXES(OmahaServiceInternalTest, PingMessageTestWithProfileData); // For the singleton: friend class base::NoDestructor<OmahaService>; // Enum for the |GetPingContent| and |GetNextPingRequestId| method. enum PingContent { INSTALL_EVENT, USAGE_PING, }; // Starts the service. Called on startup. void StartInternal(); // Stops the service in preparation for browser shutdown. void StopInternal(); // URL loader completion callback. void OnURLLoadComplete(std::unique_ptr<std::string> response_body); // Returns whether Omaha is enabled for this build variant. static bool IsEnabled(); // Raw GetInstance method. Necessary for using singletons. This method must // only be called if |IsEnabled()| returns true. static OmahaService* GetInstance(); // Private constructor, only used by the singleton. OmahaService(); // Private constructor, only used for tests. explicit OmahaService(bool schedule); ~OmahaService(); // Returns the time to wait before next attempt. static base::TimeDelta GetBackOff(uint8_t number_of_tries); void set_upgrade_recommended_callback( const UpgradeRecommendedCallback& callback) { upgrade_recommended_callback_ = callback; } // Sends a ping to the Omaha server. void SendPing(); // Method that will either start sending a ping to the server, or schedule // itself to be called again when the next ping must be send. void SendOrScheduleNextPing(); // Persists the state of the service. void PersistStates(); // Returns the XML representation of the ping message to send to the Omaha // server. If |sendInstallEvent| is true, the message will contain an // installation complete event. std::string GetPingContent(const std::string& requestId, const std::string& sessionId, const std::string& versionName, const std::string& channelName, const base::Time& installationTime, PingContent pingContent); // Returns the xml representation of the ping message to send to the Omaha // server. Use the current state of the service to compute the right message. std::string GetCurrentPingContent(); // Computes debugging information and fill |result|. void GetDebugInformationOnIOThread( const base::Callback<void(base::DictionaryValue*)> callback); // Returns whether the next ping to send must a an install/update ping. If // |true|, the next ping must use |GetInstallRetryRequestId| as identifier // for the request and must include a X-RequestAge header. bool IsNextPingInstallRetry(); // Returns the request identifier to use for the next ping. If it is an // install/update retry, it will return the identifier used on the initial // request. If this is not the case, returns a random id. // |send_install_event| must be true if the next ping is a install/update // event, in that case, the identifier will be stored so that it can be // reused until the ping is successful. std::string GetNextPingRequestId(PingContent ping_content); // Stores the given request id to be reused on install/update retry. void SetInstallRetryRequestId(const std::string& request_id); // Clears the stored request id for a installation/update ping retry. Must be // called after a successful installation/update ping. void ClearInstallRetryRequestId(); // Initialize the URLLoaderFactory instance (mostly needed for tests). void InitializeURLLoaderFactory( scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory); // Clears the all persistent state. Should only be used for testing. static void ClearPersistentStateForTests(); // To communicate with the Omaha server. std::unique_ptr<network::SimpleURLLoader> url_loader_; std::unique_ptr<network::PendingSharedURLLoaderFactory> pending_url_loader_factory_; scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory_; // The timer that call this object back when needed. base::OneShotTimer timer_; // Whether to schedule pings. This is only false for tests. const bool schedule_; // The install date of the application. This is fetched in |StartInternal| on // the main thread and cached for use on the IO thread. int64_t application_install_date_; // The time at which the last ping was sent. base::Time last_sent_time_; // The time at which to send the next ping. base::Time next_tries_time_; // The timestamp of the ping to send. base::Time current_ping_time_; // Last version for which an installation ping has been sent. base::Version last_sent_version_; // Last received server date. int last_server_date_; // The language in use at start up. std::string locale_lang_; // Number of tries of the last ping. uint8_t number_of_tries_; // Whether the ping currently being sent is an install (new or update) ping. bool sending_install_event_; // Called to notify that upgrade is recommended. UpgradeRecommendedCallback upgrade_recommended_callback_; DISALLOW_COPY_AND_ASSIGN(OmahaService); }; #endif // IOS_CHROME_BROWSER_OMAHA_OMAHA_SERVICE_H_
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
3d45a557be3d052050a288c939220a3de52b4005
dd80a584130ef1a0333429ba76c1cee0eb40df73
/external/chromium_org/chrome/browser/ui/views/confirm_bubble_views.cc
2ba5d52a5ec42d74349706c747323d01e4d988c1
[ "MIT", "BSD-3-Clause" ]
permissive
karunmatharu/Android-4.4-Pay-by-Data
466f4e169ede13c5835424c78e8c30ce58f885c1
fcb778e92d4aad525ef7a995660580f948d40bc9
refs/heads/master
2021-03-24T13:33:01.721868
2017-02-18T17:48:49
2017-02-18T17:48:49
81,847,777
0
2
MIT
2020-03-09T00:02:12
2017-02-13T16:47:00
null
UTF-8
C++
false
false
3,225
cc
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/ui/views/confirm_bubble_views.h" #include "chrome/browser/ui/confirm_bubble.h" #include "chrome/browser/ui/confirm_bubble_model.h" #include "chrome/browser/ui/views/constrained_window_views.h" #include "ui/views/controls/label.h" #include "ui/views/controls/link.h" #include "ui/views/layout/grid_layout.h" #include "ui/views/layout/layout_constants.h" #include "ui/views/widget/widget.h" ConfirmBubbleViews::ConfirmBubbleViews(ConfirmBubbleModel* model) : model_(model), link_(NULL) { views::GridLayout* layout = views::GridLayout::CreatePanel(this); SetLayoutManager(layout); // Use a fixed maximum message width, so longer messages will wrap. const int kMaxMessageWidth = 400; views::ColumnSet* cs = layout->AddColumnSet(0); cs->AddColumn(views::GridLayout::LEADING, views::GridLayout::CENTER, 0, views::GridLayout::FIXED, kMaxMessageWidth, false); // Add the message label. views::Label* label = new views::Label(model_->GetMessageText()); DCHECK(!label->text().empty()); label->SetHorizontalAlignment(gfx::ALIGN_LEFT); label->SetMultiLine(true); label->SizeToFit(kMaxMessageWidth); layout->StartRow(0, 0); layout->AddView(label); // Initialize the link. link_ = new views::Link(model_->GetLinkText()); link_->set_listener(this); link_->SetHorizontalAlignment(gfx::ALIGN_LEFT); } ConfirmBubbleViews::~ConfirmBubbleViews() { } base::string16 ConfirmBubbleViews::GetDialogButtonLabel( ui::DialogButton button) const { switch (button) { case ui::DIALOG_BUTTON_OK: return model_->GetButtonLabel(ConfirmBubbleModel::BUTTON_OK); case ui::DIALOG_BUTTON_CANCEL: return model_->GetButtonLabel(ConfirmBubbleModel::BUTTON_CANCEL); default: NOTREACHED(); return DialogDelegateView::GetDialogButtonLabel(button); } } bool ConfirmBubbleViews::IsDialogButtonEnabled(ui::DialogButton button) const { switch (button) { case ui::DIALOG_BUTTON_OK: return !!(model_->GetButtons() & ConfirmBubbleModel::BUTTON_OK); case ui::DIALOG_BUTTON_CANCEL: return !!(model_->GetButtons() & ConfirmBubbleModel::BUTTON_CANCEL); default: NOTREACHED(); return false; } } views::View* ConfirmBubbleViews::CreateExtraView() { return link_; } bool ConfirmBubbleViews::Cancel() { model_->Cancel(); return true; } bool ConfirmBubbleViews::Accept() { model_->Accept(); return true; } ui::ModalType ConfirmBubbleViews::GetModalType() const { return ui::MODAL_TYPE_WINDOW; } base::string16 ConfirmBubbleViews::GetWindowTitle() const { return model_->GetTitle(); } void ConfirmBubbleViews::LinkClicked(views::Link* source, int event_flags) { if (source == link_) { model_->LinkClicked(); GetWidget()->Close(); } } namespace chrome { void ShowConfirmBubble(gfx::NativeView view, const gfx::Point& origin, ConfirmBubbleModel* model) { CreateBrowserModalDialogViews(new ConfirmBubbleViews(model), view)->Show(); } } // namespace chrome
[ "karun.matharu@gmail.com" ]
karun.matharu@gmail.com
6bb75e554f3ff324f78a9196ad28a1f794579804
8dc84558f0058d90dfc4955e905dab1b22d12c08
/extensions/renderer/script_context_set.h
a622e7a40b37102a20f51a61c538cdf80dfd3b6f
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
meniossin/src
42a95cc6c4a9c71d43d62bc4311224ca1fd61e03
44f73f7e76119e5ab415d4593ac66485e65d700a
refs/heads/master
2022-12-16T20:17:03.747113
2020-09-03T10:43:12
2020-09-03T10:43:12
263,710,168
1
0
BSD-3-Clause
2020-05-13T18:20:09
2020-05-13T18:20:08
null
UTF-8
C++
false
false
5,874
h
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef EXTENSIONS_RENDERER_SCRIPT_CONTEXT_SET_H_ #define EXTENSIONS_RENDERER_SCRIPT_CONTEXT_SET_H_ #include <stddef.h> #include <memory> #include <set> #include <string> #include "base/macros.h" #include "base/memory/weak_ptr.h" #include "extensions/common/extension.h" #include "extensions/common/features/feature.h" #include "extensions/renderer/renderer_extension_registry.h" #include "url/gurl.h" #include "v8/include/v8.h" class GURL; namespace blink { class WebLocalFrame; class WebSecurityOrigin; } namespace content { class RenderFrame; } namespace extensions { class ScriptContext; // A container of ScriptContexts, responsible for both creating and managing // them. // // Since calling JavaScript within a context can cause any number of contexts // to be created or destroyed, this has additional smarts to help with the set // changing underneath callers. class ScriptContextSet { public: explicit ScriptContextSet( // Set of the IDs of extensions that are active in this process. // Must outlive this. TODO(kalman): Combine this and |extensions|. ExtensionIdSet* active_extension_ids); ~ScriptContextSet(); // Returns the number of contexts being tracked by this set. // This may also include invalid contexts. TODO(kalman): Useful? size_t size() const { return contexts_.size(); } // Creates and starts managing a new ScriptContext. Ownership is held. // Returns a weak reference to the new ScriptContext. ScriptContext* Register(blink::WebLocalFrame* frame, const v8::Local<v8::Context>& v8_context, int world_id); // If the specified context is contained in this set, remove it, then delete // it asynchronously. After this call returns the context object will still // be valid, but its frame() pointer will be cleared. void Remove(ScriptContext* context); // Gets the ScriptContext corresponding to v8::Context::GetCurrent(), or // NULL if no such context exists. ScriptContext* GetCurrent() const; // Gets the ScriptContext corresponding to the specified // v8::Context or NULL if no such context exists. ScriptContext* GetByV8Context(const v8::Local<v8::Context>& context) const; // Static equivalent of the above. static ScriptContext* GetContextByV8Context( const v8::Local<v8::Context>& context); // Returns the ScriptContext corresponding to the V8 context that created the // given |object|. // Note: The provided |object| may belong to a v8::Context in another frame, // as can happen when a parent frame uses an object of an embedded iframe. // In this case, there may be no associated ScriptContext, since the child // frame can be hosted in another process. Thus, callers of this need to // null-check the result (and should also always check whether or not the // context has access to the other context). static ScriptContext* GetContextByObject(const v8::Local<v8::Object>& object); // Returns the ScriptContext corresponding to the main world of the // |render_frame|. static ScriptContext* GetMainWorldContextForFrame( content::RenderFrame* render_frame); // Synchronously runs |callback| with each ScriptContext that belongs to // |extension_id| in |render_frame|. // // An empty |extension_id| will match all extensions, and a null // |render_frame| will match all render views, but try to use the inline // variants of these methods instead. void ForEach(const std::string& extension_id, content::RenderFrame* render_frame, const base::Callback<void(ScriptContext*)>& callback) const; // ForEach which matches all extensions. void ForEach(content::RenderFrame* render_frame, const base::Callback<void(ScriptContext*)>& callback) const { ForEach(std::string(), render_frame, callback); } // ForEach which matches all render views. void ForEach(const std::string& extension_id, const base::Callback<void(ScriptContext*)>& callback) const { ForEach(extension_id, nullptr, callback); } // Cleans up contexts belonging to an unloaded extension. void OnExtensionUnloaded(const std::string& extension_id); void set_is_lock_screen_context(bool is_lock_screen_context) { is_lock_screen_context_ = is_lock_screen_context; } // Adds the given |context| for testing purposes. void AddForTesting(std::unique_ptr<ScriptContext> context); private: // Finds the extension for the JavaScript context associated with the // specified |frame| and isolated world. If |world_id| is zero, finds the // extension ID associated with the main world's JavaScript context. If the // JavaScript context isn't from an extension, returns empty string. const Extension* GetExtensionFromFrameAndWorld(blink::WebLocalFrame* frame, int world_id, bool use_effective_url); // Returns the Feature::Context type of context for a JavaScript context. Feature::Context ClassifyJavaScriptContext( const Extension* extension, int world_id, const GURL& url, const blink::WebSecurityOrigin& origin); // Weak reference to all installed Extensions that are also active in this // process. ExtensionIdSet* active_extension_ids_; // The set of all ScriptContexts we own. std::set<ScriptContext*> contexts_; // Whether the script context set is associated with the renderer active on // the Chrome OS lock screen. bool is_lock_screen_context_ = false; DISALLOW_COPY_AND_ASSIGN(ScriptContextSet); }; } // namespace extensions #endif // EXTENSIONS_RENDERER_SCRIPT_CONTEXT_SET_H_
[ "arnaud@geometry.ee" ]
arnaud@geometry.ee
67466557810a9fba1beeef7de1dc8ebd4cfcc8c9
1a57c7fc77516bdcc9ff4dad99e35562899f7e06
/src/localization/arena-detection/algorithm/RANSAC.cpp
6c517512653a2d73b76a84f328ba61c7d16c8b49
[ "MIT" ]
permissive
elikos/elikos_localization
82f3602007b28a600dfd468acba1f56efcf8dabf
0eca76e5c836b1b0f407afffe0d1b85605d3cfa1
refs/heads/master
2021-03-27T10:04:10.255094
2018-05-30T00:53:14
2018-05-30T00:53:14
116,184,820
0
0
null
null
null
null
UTF-8
C++
false
false
2,853
cpp
#include "RANSAC.h" #include "Line.h" #include <Eigen/Core> #include <opencv2/highgui/highgui.hpp> #include <ctime> namespace RANSAC { using Vector = Eigen::Vector2f; using Line = localization::Line; Vector findBestConvergencePoint(const std::vector<Line>& lines, int k) { std::srand(std::time(NULL)); float bestDistance = std::numeric_limits<float>::max(); Vector bestConvergencePoint(0.0, 0.0); for (int i = 0; i < k; ++i) { const Line& firstLine = lines[std::rand() % lines.size()]; const Line& otherLine = lines[std::rand() % lines.size()]; Vector intersection; bool isIntersecting = firstLine.findIntersection(otherLine, intersection); if (isIntersecting) { double distance = summConvergeDistance(lines, firstLine, intersection); distance += summConvergeDistance(lines, otherLine, intersection); if (distance < bestDistance) { bestConvergencePoint = intersection; bestDistance = distance; } } // else handle parallel lines here. } return bestConvergencePoint; } float summConvergeDistance(const std::vector<Line>& lines, const Line& pivot, const Vector& convergence) { float distance = 0.0; for (int i = 0; i < lines.size(); ++i) { Vector intersection; bool isIntersecting = lines[i].findIntersection(pivot, intersection); if (isIntersecting) { distance += (intersection - convergence).squaredNorm(); } } return distance; } bool findBestOrientationSplit(const std::vector<localization::Line>& lines, int k, Vector bestOrientations[2]) { std::srand(std::time(NULL)); float bestFitWeight = 0.0; for (int i = 0; i < k; ++i) { const Line& line = lines[std::rand() % lines.size()]; Vector orientation = line.getOrientation(); Vector orientations[2] = { orientation, { orientation.y(), -orientation.x() }}; float fitWeight = evaluateOrientationModel(lines, orientations); if (fitWeight > bestFitWeight) { bestFitWeight = fitWeight; bestOrientations[0] = orientations[0]; bestOrientations[1] = orientations[1]; } } return true; } float evaluateOrientationModel(const std::vector<localization::Line>& lines, Eigen::Vector2f orientations[2]) { double dotSumm = 0.0; for (int i = 0; i < lines.size(); ++i) { Vector u = lines[i].getOrientation(); double udotv = std::abs(u.dot(orientations[0])); double udotw = std::abs(u.dot(orientations[1])); bool isCloserToV = udotv > udotw; dotSumm += (isCloserToV) ? udotv : udotw; int iOrientation = (isCloserToV) ? 0 : 1; } return dotSumm; } }
[ "olivierstamour0952@gmail.com" ]
olivierstamour0952@gmail.com
5c0d8929014a21a414d8713de7967cdefcda0572
4958b7567fd503213f5eacd3736ae68ede02e17d
/sources/Factory.class.cpp
014e403fe8e4afd00b00e160d95679a9468bb872
[]
no_license
corentindrouet/AbstractVm
01ac96c2b3f9ea9949f34e9bf0a7ce60335c3c12
afbe56fc795bfe3ee52632fb00739df02bdeb38f
refs/heads/master
2021-01-11T17:29:29.542474
2017-02-07T12:04:16
2017-02-07T12:04:16
79,785,518
0
0
null
null
null
null
UTF-8
C++
false
false
2,060
cpp
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Factory.class.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cdrouet <cdrouet@student.42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2017/01/26 11:10:41 by cdrouet #+# #+# */ /* Updated: 2017/02/06 09:09:26 by cdrouet ### ########.fr */ /* */ /* ************************************************************************** */ #include "Factory.class.hpp" # include "TOperand.class.hpp" Factory::FP Factory::create = { &Factory::createInt8, &Factory::createInt16, &Factory::createInt32, &Factory::createFloat, &Factory::createDouble }; Factory::Factory( void ) { return; } Factory::Factory( Factory const & copy ) { *this = copy; return; } Factory::~Factory( void ) { return; } Factory &Factory::operator=( Factory const & ) { return *this; } IOperand const *Factory::createOperand( eOperandType type, std::string const & value ) { return (this->*create[type])(value); } IOperand const * Factory::createInt8( std::string const & value ) const { return new Operand<int8_t>(Int8, value); } IOperand const * Factory::createInt16( std::string const & value ) const { return new Operand<int16_t>(Int16, value); } IOperand const * Factory::createInt32( std::string const & value ) const { return new Operand<int32_t>(Int32, value); } IOperand const * Factory::createFloat( std::string const & value ) const { return new Operand<float>(Float, value); } IOperand const * Factory::createDouble( std::string const & value ) const { return new Operand<double>(Double, value); }
[ "cdrouet@e1r4p21.42.fr" ]
cdrouet@e1r4p21.42.fr
9e075711f3bfc34efeebfaad06809599701e12ea
f4e07bdfdc0b258951612235735c91b1b5c80ca8
/Example/xiaoxiaole/Classes/AppDelegate.cpp
48a7b13547a37b261a3b66ff54edb4b46c9e04b8
[ "Apache-2.0" ]
permissive
qql7267/Cocos2dx
dfa05d694666380b613c5378f4d625d8848fb5cd
914a2ed091a226becb05ddbda554120fc1dc1640
refs/heads/master
2020-04-17T18:02:28.055944
2016-10-26T17:40:28
2016-10-26T17:40:28
67,127,188
3
0
null
null
null
null
UTF-8
C++
false
false
1,929
cpp
#include "AppDelegate.h" #include "HelloWorldScene.h" USING_NS_CC; AppDelegate::AppDelegate() { } AppDelegate::~AppDelegate() { } //if you want a different context,just modify the value of glContextAttrs //it will takes effect on all platforms void AppDelegate::initGLContextAttrs() { //set OpenGL context attributions,now can only set six attributions: //red,green,blue,alpha,depth,stencil GLContextAttrs glContextAttrs = {8, 8, 8, 8, 24, 8}; GLView::setGLContextAttrs(glContextAttrs); } bool AppDelegate::applicationDidFinishLaunching() { // initialize director auto director = Director::getInstance(); auto glview = director->getOpenGLView(); if(!glview) { glview = GLViewImpl::createWithRect("xiaoxiaole", Rect(0, 0, 360, 640)); director->setOpenGLView(glview); } director->getOpenGLView()->setDesignResolutionSize(360, 640, ResolutionPolicy::SHOW_ALL); // turn on display FPS director->setDisplayStats(false); // set FPS. the default value is 1.0/60 if you don't call this director->setAnimationInterval(1.0 / 60); FileUtils::getInstance()->addSearchPath("res"); // create a scene. it's an autorelease object auto scene = HelloWorld::createScene(); // run director->runWithScene(scene); return true; } // This function will be called when the app is inactive. When comes a phone call,it's be invoked too void AppDelegate::applicationDidEnterBackground() { Director::getInstance()->stopAnimation(); // if you use SimpleAudioEngine, it must be pause // SimpleAudioEngine::getInstance()->pauseBackgroundMusic(); } // this function will be called when the app is active again void AppDelegate::applicationWillEnterForeground() { Director::getInstance()->startAnimation(); // if you use SimpleAudioEngine, it must resume here // SimpleAudioEngine::getInstance()->resumeBackgroundMusic(); }
[ "qql7267@126.com" ]
qql7267@126.com
b21d805e513ba77515cc4730b0c016d7ad942c33
5d6c0b3cd831ba6720c0293f146686890c61095d
/sve/exp_v.cpp
b697d970c8f9eb452d025f6aa4ee44d893a1b592
[]
no_license
herumi/misc
b2ebbe942f031c264edfc2f14a226fd753e5640b
050f63c34119812762fcb031e75130c2f20214fa
refs/heads/main
2023-08-31T03:33:45.567601
2023-08-30T05:28:05
2023-08-30T05:28:05
6,901,996
52
5
null
2023-01-10T05:21:15
2012-11-28T13:00:10
C++
UTF-8
C++
false
false
5,813
cpp
#include "fmath-sve.hpp" #include <cybozu/test.hpp> #include <cybozu/benchmark.hpp> #include <cybozu/inttype.hpp> #include <vector> #include "fexpa.hpp" #include <float.h> float g_maxe; float diff(float x, float y) { return std::abs(x - y) / x; } float fmath_expf(float x) { float y[16] = { x }; fmath::expf_v(y, y, 1); return y[0]; } float fmath_tanhf(float x) { float y[16] = { x }; fmath::tanhf_v(y, y, 1); return y[0]; } float u2f(uint32_t x) { fmath::local::fi fi; fi.i = x; return fi.f; } uint32_t f2u(float x) { fmath::local::fi fi; fi.f = x; return fi.i; } inline float split(int *pn, float x) { int n; if (x >= 0) { n = int(x + 0.5f); } else { n = int(x - 0.5f); } *pn = n; return x - n; } inline float expfC(float x) { using namespace fmath; const local_exp::ConstVar& C = *local_exp::Inst<>::code.constVar; float y = x * C.log2_e; int n = (int)floor(y); float a = y - n; // 0 <= a < 1 float b = 1 + a; // 1 <= b < 2, y = (n-1) + b uint32_t bu = f2u(b); float bL = u2f(bu >> 17); float z = b - u2f(bu & C.not_mask17); /* split b into bL and z where bL is for fexpa and z is remain */ float c = fexpaEmu(bL); float d = 1 + (C.coeff1 + z * C.coeff2) * z; return powf(2.0f, n) * c * d; } inline float tanhfC(float x) { float y = expfC(x * 2); return 1 - 2 / (1 + y); } void std_exp_v(float *dst, const float *src, size_t n) { for (size_t i = 0; i < n; i++) { dst[i] = std::exp(src[i]); } } void std_tanh_v(float *dst, const float *src, size_t n) { for (size_t i = 0; i < n; i++) { dst[i] = std::tanh(src[i]); } } #if 1 CYBOZU_TEST_AUTO(preciseTanh) { float tbl[] = { -INFINITY, -100, -1, -0.6, -0.5, -0.4, -0.1, -0.000151307, 0.000151307, 0.1, 0.4, 0.5, 0.6, 1, 100, INFINITY }; const size_t n = CYBOZU_NUM_OF_ARRAY(tbl); for (size_t i = 0; i < n; i++) { float x = tbl[i]; float a = tanh(x); float b = fmath_tanhf(x); float e = x ? fabs(a - b) / x : fabs(a - b); // printf("%zd x=%e a=%e b=%e e=%e\n", i, x, a, b, e); CYBOZU_TEST_ASSERT(e < 1e-5); } for (float x = 1e-7; x < 0.1; x += 1e-4) { float a = tanh(x); float b = fmath_tanhf(x); float e = x ? fabs(a - b) / x : fabs(a - b); CYBOZU_TEST_ASSERT(e < 1e-5); } } #endif #if 1 template<class F> float putDiff(float begin, float end, float step, const F& f, bool doPut = false, float stdf(float) = std::exp) { float maxe = 0; float maxx = 0; float maxe2 = 0; float maxx2 = 0; double ave = 0; int aveN = 0; for (float x = begin; x < end; x += step) { float y0 = stdf(x); // float y0 = expfC(x); float y1 = f(x); float e; e = diff(y0, y1); if (doPut) { printf("x=%.2e y0=%.2e(%08x) y1=%.2e(%08x)\n", x, y0, f2u(y0), y1, f2u(y1)); } if (e > maxe) { maxe = e; maxx = x; } float e2 = fabs(y0 - y1); if (e2 > maxe2) { maxe2 = e2; maxx2 = x; } ave += e; aveN++; } printf("range [%.2e, %.2e] step=%.2e\n", begin, end, step); printf("maxe =%e (x=%e)\n", maxe, maxx); printf("maxe2=%e (x=%e)\n", maxe2, maxx2); printf("ave=%e\n", ave / aveN); return maxe; } CYBOZU_TEST_AUTO(tanh) { puts("tanh"); puts("fmath::tanhf_v"); putDiff(-4, 4, 1e-5, fmath_tanhf, false, std::tanh); } CYBOZU_TEST_AUTO(setMaxE) { puts("expfC"); putDiff(-10, 10, 0.5, expfC); putDiff(-30, 30, 1e-5, expfC); puts("fmath::expf_v"); putDiff(-10, 10, 0.5, fmath_expf); g_maxe = putDiff(-30, 30, 1e-5, fmath_expf); } void checkDiff(const float *x, const float *y, size_t n, bool put = false) { for (size_t i = 0; i < n; i++) { float d = diff(x[i], y[i]); if (put) { if (d > g_maxe) { printf("err n=%zd, i=%zd x=%e y=%e\n", n, i, x[i], y[i]); exit(1); } } else { CYBOZU_TEST_ASSERT(d <= g_maxe); } } } CYBOZU_TEST_AUTO(expf_v) { const size_t n = 300; float x[n]; float y1[n]; float y2[n]; for (size_t i = 0; i < n; i++) { x[i] = float((i - n/2.0) / n * 20); } std_exp_v(y1, x, n); fmath::expf_v(y2, x, n); checkDiff(y1, y2, n); } typedef std::vector<float> Fvec; void putClk(const char *msg, size_t n) { printf("%s %.2fnsec\n", msg, cybozu::bench::g_clk.getClock() / double(n)); } CYBOZU_TEST_AUTO(bench) { Fvec x, y0, y1; size_t n = 1024 * 16; x.resize(n); y0.resize(n); y1.resize(n); const int C = 30000; for (size_t i = 0; i < n; i++) { x[i] = sin(i / double(n) * 7) * 20; } printf("for float x[%zd];\n", n); CYBOZU_BENCH_C("", C, std_exp_v, &y0[0], &x[0], n); putClk("std::exp", C * (n / 16)); for (int i = 0; i < 100; i++) { memset(&y1[0], 0, i * sizeof(float)); fmath::expf_v(&y1[0], &x[0], i); checkDiff(&y0[0], &y1[0], i); } CYBOZU_BENCH_C("", C, fmath::expf_v, &y1[0], &x[0], n); putClk("fmath::expf_v", C * (n / 16)); checkDiff(&y0[0], &y1[0], n); n = 1024 * 4; memset(y1.data(), 0, n * sizeof(float)); CYBOZU_BENCH_C("", C, fmath::expf_v, &y1[0], &x[0], n); putClk("fmath::expf_v", C * (n / 16)); checkDiff(&y0[0], &y1[0], n); CYBOZU_BENCH_C("", C, fmath::tanhf_v, &y1[0], &x[0], n); putClk("fmath::tanhf_v", C * (n / 16)); } void limitTest(float f1(float), float f2(float)) { float tbl[] = { 0, FLT_MIN, 0.5, 1, 80, 100, 1000, FLT_MAX, INFINITY }; for (size_t i = 0; i < CYBOZU_NUM_OF_ARRAY(tbl); i++) { float x = tbl[i]; float a = f1(x); float b = f2(x); float e = fabs(a - b); printf("x=%e std=%e fmath2=%e diff=%e\n", x, a, b, e); a = f1(-x); b = f2(-x); e = fabs(a - b); printf("x=%e std=%e fmath2=%e diff=%e\n", -x, a, b, e); } } CYBOZU_TEST_AUTO(expLimit) { puts("expLimit"); limitTest(std::exp, fmath_expf); float x = 0.000151307; printf("std: exp=%.8e\n", expf(x)); printf("fmath:exp=%.8e\n", fmath_expf(x)); } CYBOZU_TEST_AUTO(tanhLimit) { puts("tanhLimit"); limitTest(std::tanh, fmath_tanhf); float x = 0.000151307; printf("std: tanh=%.8e\n", tanhf(x)); printf("fmath:tanh=%.8e\n", fmath_tanhf(x)); } #endif
[ "herumi@nifty.com" ]
herumi@nifty.com
6b4ac0c57f0d5431587f8c3d003cf20301f41d0a
f53e9e2be2fec9ac80e1f9af3ffd64b20f57d560
/src/block.cpp
5d097a45e6998eebb80922c92e6537c496db1e88
[]
no_license
lizhongz/link
1b9eb8d56e6865f56d5bd87292b1edb782a02622
d9a5ec7e203766969adfb0a0aefcfc29b08ab005
refs/heads/master
2021-05-09T05:31:03.594062
2018-01-31T16:56:47
2018-01-31T17:00:06
119,311,516
0
0
null
null
null
null
UTF-8
C++
false
false
531
cpp
#include "json.hpp" #include "block.h" #include "utils.h" void blockchain::to_json(nlohmann::json& j, const blockchain::Block& blk) { j = nlohmann::json({ {"block", blk.id}, {"nonce", blk.nonce}, {"prev", blk.prev}, {"hash_code", blk.hash_code}, {"timestamp", time_to_str(blk.timestamp)}, }); auto transactions = nlohmann::json::array(); for (auto tx : blk.transactions) { transactions.push_back(nlohmann::json(tx)); } j["transactions"] = transactions; }
[ "z.lizhong@gmail.com" ]
z.lizhong@gmail.com
fbd5e9cfbad7e3dbfc2b500e7369b95162c389a4
9fe8904686fc84c00fc3ee8557f77b694203d7af
/mDot_Sensornode/app/tasks/TaskGyroscope.h
4c40e59b370d2a33bf1c7f8d2676ea699e380b74
[]
no_license
mitea1/mDot_Sensornode
15848f7aa42f095e7542afb6e0163e51b937bb36
6738f9d465695f7f09ff126356712f3599cfb699
refs/heads/master
2020-04-03T05:31:16.698043
2018-10-28T08:15:37
2018-10-28T08:15:37
155,048,649
0
0
null
null
null
null
UTF-8
C++
false
false
3,063
h
/** * @file TaskGyroscope.h * * @author Adrian * @date 30.05.2016 * */ #include "MPU9250.h" #include "main.h" #include "../communication/messages/MPU9250GyroscopeMessage.h" #ifndef TASKGYROSCOPE_H_ #define TASKGYROSCOPE_H_ /** * @class TaskGyroscope * @brief This TaskGyroscope Class handles the gyroscope measurement using the MPU9250. * Starting the task using the start() starts the measurement of all axis. * It can be used alongside with other measurement Tasks inside the mbed::rtos * environment. The Task Class basically wraps mbeds Thread functionality. */ class TaskGyroscope { public: TaskGyroscope(MPU9250*,Mutex*, Queue<MPU9250GyroscopeMessage,GYROSCOPE_QUEUE_LENGHT>*); TaskGyroscope(MPU9250*,Mutex*,Queue<MPU9250GyroscopeMessage,GYROSCOPE_QUEUE_LENGHT>*, osPriority, uint32_t, unsigned char*); virtual ~TaskGyroscope(); /** * @brief Starts the task by building it and connecting a callback function to * the mbed::Thread * @return */ osStatus start(); /** * @brief Stops the task. Should only be used after start() was used * @return */ osStatus stop(); /** * @brief Gets the actual state of the Task either RUNNING or SLEEPING * @return */ TASK_STATE getState(); private: rtos::Thread* thread; rtos::Queue<MPU9250GyroscopeMessage,GYROSCOPE_QUEUE_LENGHT>* queue; rtos::Mutex* mutexI2C ; osPriority priority; uint32_t stack_size; unsigned char *stack_pointer; TASK_STATE state; MPU9250* mpu9250; /** * @brief A Callback function thats called by the mbed::Thread of this TaskClass * @param */ static void callBack(void const *); /** * @brief Attaches the idle_hook for this task * @param */ void attachIdleHook(void (*fptr) (void)); /** * @brief A thread safe method that acquires data from the gyroscope. After acquiring data from the * it stores the data inside a MPU9250GyroscopeMessage */ void measureGyroscope(); /** * @brief Sets the message Queue of the Task where the measured values will be stored * after the measurement * @param queueGyro the queue where the MPU9250GyroscopeMessage will be stored */ void setQueue(Queue<MPU9250GyroscopeMessage,GYROSCOPE_QUEUE_LENGHT>* queueGyro); /** * @brief Sets the mutex thats used for a thread safe measurement * @param mutexI2C the I2C mutex */ void setMutex(Mutex* mutexI2C); /** * @brief Sets the priority of the Task * @param priority priority of the Task */ void setPriority(osPriority priority); /** * @brief Sets the size of the Task * @param stackSize the stack size in Bytes */ void setStackSize(uint32_t stackSize); /** * @brief Sets the stack pointer of for the task stack * @param stackPointer */ void setStackPointer(unsigned char* stackPointer); /** * @brief Sets the actual state of the Task. * @param taskState either RUNNING or SLEEPING */ void setState(TASK_STATE taskState); }; #endif /* TASKGYROSCOPE_H_ */
[ "adrian.mitevski@gmail.com" ]
adrian.mitevski@gmail.com
57f473e8a213d219601cc015f3278b09214909e4
b367fe5f0c2c50846b002b59472c50453e1629bc
/xbox_leak_may_2020/xbox trunk/xbox/private/test/directx/d3d/func/mstage5/media/brick0_5.bmp.cpp
5f6ff4d67e5b5032e93e10658279ddb2a0238d52
[]
no_license
sgzwiz/xbox_leak_may_2020
11b441502a659c8da8a1aa199f89f6236dd59325
fd00b4b3b2abb1ea6ef9ac64b755419741a3af00
refs/heads/master
2022-12-23T16:14:54.706755
2020-09-27T18:24:48
2020-09-27T18:24:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,787
cpp
/******************************************************************************* Copyright (c) 2000 Microsoft Corporation. All rights reserved. File Name: brick0_5.bmp.cpp Description Data file for the resource brick0_5.bmp. *******************************************************************************/ #include "d3dlocus.h" static BYTE g_brick0_5[] = { 0x42, 0x4D, 0x38, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC3, 0x0E, 0x00, 0x00, 0xC3, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4B, 0x62, 0x9B, 0x49, 0x5E, 0x98, 0x48, 0x5E, 0x9C, 0x5A, 0x71, 0xB1, 0xF4, 0xF5, 0xF9, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x5A, 0x74, 0x9E, 0x5D, 0x76, 0x9C, 0x5C, 0x73, 0x9A, 0x69, 0x7F, 0xA9, 0xF5, 0xF7, 0xFA, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x5D, 0x74, 0x8E, 0x5F, 0x75, 0x92, 0x44, 0x55, 0x78, 0x53, 0x64, 0x88, 0xF4, 0xF5, 0xF7, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x62, 0x79, 0x95, 0x5D, 0x74, 0x94, 0x44, 0x58, 0x80, 0x55, 0x69, 0x8E, 0xF4, 0xF5, 0xF7, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x58, 0x6C, 0x96, 0x59, 0x6D, 0x97, 0x53, 0x69, 0x97, 0x60, 0x74, 0x9A, 0xF5, 0xF6, 0xF7, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x52, 0x61, 0x95, 0x4F, 0x60, 0x98, 0x4B, 0x5F, 0x9A, 0x5C, 0x6B, 0x9B, 0xF4, 0xF6, 0xF8, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x59, 0x9E, 0xB3, 0x20, 0xD4, 0xE0, 0x22, 0xCD, 0xDB, 0x5D, 0x91, 0xAC, 0xF7, 0xF3, 0xF6, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x48, 0xA1, 0xB8, 0x32, 0x87, 0xA2, 0x21, 0xA6, 0xBB, 0x26, 0xC6, 0xD4, 0xF7, 0xED, 0xF2, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x50, 0x98, 0xAB, 0x3B, 0xA1, 0xB3, 0x1F, 0xCA, 0xD5, 0x38, 0xCF, 0xD6, 0xFA, 0xF3, 0xF4, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x2A, 0x99, 0xB0, 0x0C, 0xE8, 0xEC, 0x23, 0xA5, 0xB8, 0x5E, 0x87, 0xA0, 0xFA, 0xF9, 0xFA, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x53, 0x94, 0xA9, 0x0F, 0xE5, 0xEA, 0x17, 0xC6, 0xD1, 0x52, 0xB1, 0xC1, 0xFD, 0xF6, 0xF8, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x6C, 0x87, 0x98, 0x42, 0x6D, 0x82, 0x3B, 0x6E, 0x82, 0x50, 0x6E, 0x85, 0xF5, 0xF4, 0xF6, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x5F, 0x75, 0x87, 0x48, 0x54, 0x6E, 0x48, 0x55, 0x71, 0x59, 0x67, 0x7E, 0xF4, 0xF5, 0xF6, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x5B, 0x72, 0x8C, 0x57, 0x6D, 0x8B, 0x54, 0x6C, 0x8F, 0x6C, 0x86, 0xA3, 0xF6, 0xF9, 0xFB, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x59, 0x6C, 0x8F, 0x54, 0x68, 0x8D, 0x4D, 0x61, 0x8B, 0x62, 0x79, 0xA0, 0xF7, 0xF8, 0xFB, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x6E, 0x8B, 0xA2, 0x62, 0x7E, 0x93, 0x57, 0x71, 0x8A, 0x6C, 0x85, 0x9A, 0xF7, 0xF7, 0xFA, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, }; static RESOURCEDATA g_rd_brick0_5(TEXT(MODULE_STRING), TEXT("brick0_5.bmp"), g_brick0_5, sizeof(g_brick0_5)); extern "C" LPVOID PREPEND_MODULE(_brick0_5) = (LPVOID)&g_rd_brick0_5;
[ "benjamin.barratt@icloud.com" ]
benjamin.barratt@icloud.com
7b092882141495621fbaecfe2da6f517acfa049e
08161482fc08e9ca0352cb3a8ab16ebe13376af3
/src/dll.cpp
1e6e17c04c0d3853cff1907f8585a8d3fd19c25f
[]
no_license
czastack/nob
f8a2fdd476606f44df560950150907b3d31602c9
7ac2851dd34a350baf044ac6516f4e60779e54ea
refs/heads/master
2021-09-02T09:16:40.937891
2018-01-01T10:36:02
2018-01-01T10:36:02
115,931,517
1
0
null
2018-01-01T16:34:44
2018-01-01T16:34:43
null
UTF-8
C++
false
false
938
cpp
#include <nob/script.hpp> #include <nob/shv.hpp> #include <windows.h> #include <thread> namespace nob { namespace this_script { void _shv_main(); void _ysc_main(); void _exclusive_main(); } /* this_script */ namespace window { void _unhook_proc(); } /* window */ } /* nob */ BOOL APIENTRY DllMain(HMODULE hinstDLL, DWORD fdwReason, LPVOID) { switch (fdwReason) { case DLL_PROCESS_ATTACH: if (nob::shv::valid) { nob::this_script::mode = nob::this_script::mode_t::shv; nob::shv::scriptRegister(hinstDLL, nob::this_script::_shv_main); } else { nob::this_script::mode = nob::this_script::mode_t::exclusive; std::thread(nob::this_script::_exclusive_main).detach(); } break; case DLL_PROCESS_DETACH: nob::window::_unhook_proc(); #ifdef DEBUG if (nob::this_script::mode == nob::this_script::mode_t::shv) { nob::shv::scriptUnregister(hinstDLL); } #endif } return TRUE; }
[ "yulon@me.com" ]
yulon@me.com
a6e3e775c0ad2e307f158f06d8d41d0ab5dd1c0d
485faf9d4ec7def9a505149c6a491d6133e68750
/include/inv/ChemKit/ChemAtomBBox.H
019906d0143e5525af373ad9eb0ffb95523db8ba
[ "LicenseRef-scancode-warranty-disclaimer", "ECL-2.0" ]
permissive
ohlincha/ECCE
af02101d161bae7e9b05dc7fe6b10ca07f479c6b
7461559888d829338f29ce5fcdaf9e1816042bfe
refs/heads/master
2020-06-25T20:59:27.882036
2017-06-16T10:45:21
2017-06-16T10:45:21
94,240,259
1
1
null
null
null
null
UTF-8
C++
false
false
3,115
h
/* * ChemAtomBBox.h * * Defines the ChemAtomBBox class. * * Copyright 1996, 1997, Silicon Graphics, Inc. * ALL RIGHTS RESERVED * * UNPUBLISHED -- Rights reserved under the copyright laws of the United * States. Use of a copyright notice is precautionary only and does not * imply publication or disclosure. * * U.S. GOVERNMENT RESTRICTED RIGHTS LEGEND: * Use, duplication or disclosure by the Government is subject to restrictions * as set forth in FAR 52.227.19(c)(2) or subparagraph (c)(1)(ii) of the Rights * in Technical Data and Computer Software clause at DFARS 252.227-7013 and/or * in similar or successor clauses in the FAR, or the DOD or NASA FAR * Supplement. Contractor/manufacturer is Silicon Graphics, Inc., * 2011 N. Shoreline Blvd. Mountain View, CA 94039-7311. * * THE CONTENT OF THIS WORK CONTAINS CONFIDENTIAL AND PROPRIETARY * INFORMATION OF SILICON GRAPHICS, INC. ANY DUPLICATION, MODIFICATION, * DISTRIBUTION, OR DISCLOSURE IN ANY FORM, IN WHOLE, OR IN PART, IS STRICTLY * PROHIBITED WITHOUT THE PRIOR EXPRESS WRITTEN PERMISSION OF SILICON * GRAPHICS, INC. */ /**************************************************************************\ * * OpenMOIV - C++ library for molecular visualization using Inventor. * Copyright (C) 2001-2003 Universitat Pompeu Fabra - Barcelona (Spain) * * Developers: Interactive Technology Group (GTI) * Team: Josep Blat, Eduard Gonzalez, Sergi Gonzalez, * Daniel Soto, Alejandro Ramirez, Oscar Civit. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details (see the file * LICENSE.LGPL at the root directory). * * REMARK: This library is a derived product. * You need also to accept all other applicable licenses. * * Homepage: http://www.tecn.upf.es/openMOIV/ * Contact: openmoiv@upf.es * \**************************************************************************/ #ident "$Revision: 22148 $" #ifndef __CHEM_ATOMBBOX_H__ #define __CHEM_ATOMBBOX_H__ #include "inv/SbLinear.H" #include "inv/ChemKit/ChemkitBasic.H" ////////////////////////////////////////////////////////////////////////////// // // Class: ChemAtomBBox // // Holds the bounding box information for atoms // ////////////////////////////////////////////////////////////////////////////// class CHEMKIT_DLL_API ChemAtomBBox { public: // Default constructor ChemAtomBBox(int32_t numAtoms); ChemAtomBBox(const ChemAtomBBox &atomBBox); ChemAtomBBox(const ChemAtomBBox &atomBBox, int32_t numAtoms); ~ChemAtomBBox(); int32_t numberOfAtoms; int32_t *index; float *radius; SbVec3f *center; }; #endif /* __CHEM_ATOMBBOX_H__ */
[ "andre.ohlin@umu.se" ]
andre.ohlin@umu.se
e168df087b657e15c62dcfd87c1a1fb269079d4c
412a0f24d10443cc865a73fc1d9964b0ff23b44c
/code/AzureDeviceManagementClient/Handlers/DeviceSchemasHandler.h
4c866c54f8ebceddd5fdcc1d082d1cb7afc8be0f
[ "MIT" ]
permissive
v-jush/azure-client-tools
f0f354f84f1a58d01134b967e7a230305f1606c8
9ae17e1c1bc0f164dc7a7023e7568782dda77d6d
refs/heads/master
2020-05-17T18:00:13.872887
2019-04-10T17:56:44
2019-04-10T17:56:44
172,009,131
1
0
NOASSERTION
2019-02-22T06:44:08
2019-02-22T06:44:05
null
UTF-8
C++
false
false
2,449
h
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "..\IoThub\IoTHubInterfaces.h" #include "..\AzureRawHost.h" namespace Microsoft { namespace Azure { namespace DeviceManagement { namespace Client { class DeviceSchemasHandler : public DMCommon::BaseHandler { struct GroupsModel { bool all; bool configured; std::set<std::string> listedGroups; GroupsModel() : all(false), configured(false) {} static GroupsModel FromJson(const Json::Value& parent); }; struct TypesModel { bool all; std::set<std::string> listedTypes; TypesModel() : all(false) {} static TypesModel FromJson(const Json::Value& parent); }; struct TagsModel { std::set<std::string> listedTags; static TagsModel FromJson(const Json::Value& parent); }; struct ReportingModel { GroupsModel groupsModel; TypesModel types; TagsModel tags; static ReportingModel FromJson(const Json::Value& parent); }; public: DeviceSchemasHandler( const RawHandlerMapType* configurationHandlerMap); // IRawHandler void Start( const Json::Value& config, bool& active); void OnConnectionStatusChanged( DMCommon::ConnectionStatus status); DMCommon::InvokeResult Invoke( const Json::Value& desiredConfig) noexcept; private: void SetSubGroup( const Json::Value& groupRoot); static bool IsGroupIncluded( const GroupsModel& groupsModel, const IRawHandler* handler); static bool IsTypeIncluded( const TypesModel& typesModel, const Microsoft::Azure::DeviceManagement::Common::ReportedSchema& schema); void BuildReported( Json::Value& reportedObject, std::shared_ptr<DMCommon::ReportedErrorList> errorList); void EmptyReported( Json::Value& reportedObject); // Date Members Json::Value _groupDesiredConfigJson; ReportingModel _reportingModel; const RawHandlerMapType* _rawHandlerMap; }; }}}}
[ "gmileka@microsoft.com" ]
gmileka@microsoft.com
5c091e097b614d433c49f34aa67794c21464882c
e96cfbf2c4ce40c7a694d297eac733a739487886
/5674-782/162.cpp
71ebe2756f61b2276573c92477ba12c22a281e01
[]
no_license
KimDoKy/Cpp-ex-200
9cbfd6cad74a77783d2318ccb069c7693adf829a
3f07d8cd9677b804cdf7e0ae55188845933df9e5
refs/heads/master
2022-12-31T09:29:27.991438
2020-10-19T10:21:35
2020-10-19T10:21:35
293,564,880
0
0
null
null
null
null
UTF-8
C++
false
false
759
cpp
#include "stdafx.h" #include <iostream> #include <bitset> #include <string> using namespace std; int main() { bitset<8> data1(100); bitset<8> data2(0x78); bitset<8> data3(string("11110000")); cout << "data1 : " << data1 << endl; cout << "data2 : " << data2 << endl; cout << "data3 : " << data3 << endl; data1.set(); cout << endl << "== data1 ==" << endl; cout << "data1 all: " << data1.all() << '\n'; cout << "data1 any: " << data1.any() << '\n'; cout << "data1 none: " << data1.none() << '\n'; data2.reset(); cout << endl << "== data2 ==" << endl; cout << "data2 all: " << data2.all() << '\n'; cout << "data2 any: " << data2.any() << '\n'; cout << "data2 none: " << data2.none() << '\n'; return 0; }
[ "makingfunk0@gmail.com" ]
makingfunk0@gmail.com
46cc0c4dace03cf67db894341251e7717fa9508a
40ae10732b51aada027f6242ab47848a8153a6a8
/src/utils/ofxMuiUtils.h
7aa383da7f588295d5ea6eaba77626cf39830248
[]
no_license
mark-hoo/ofxMui
005f5803f28b47b55bb9cea8b049860caab6849d
eb25b015b0bf8615f2e54e9c5a0bbb54e0f41c58
refs/heads/master
2021-01-17T18:22:30.495207
2016-02-19T17:28:00
2016-02-19T17:28:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,705
h
/*============================================================================== Copyright (c) 2009-2012 Christopher Baker <http://christopherbaker.net> 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. ==============================================================================*/ #pragma once #include "ofMain.h" #include "ofxMuiObject.h" class ofxMuiObject; // UTILITY METHODS static inline void rect(float x1, float y1, float x2, float y2, float tl, float tr, float br, float bl) { ofBeginShape(); // vertex(x1+tl, y1); if (tr != 0) { ofVertex(x2-tr, y1); // quadraticVertex(x2, y1, x2, y1+tr); } else { ofVertex(x2, y1); } if (br != 0) { ofVertex(x2, y2-br); // quadraticVertex(x2, y2, x2-br, y2); } else { ofVertex(x2, y2); } if (bl != 0) { ofVertex(x1+bl, y2); // quadraticVertex(x1, y2, x1, y2-bl); } else { ofVertex(x1, y2); } if (tl != 0) { ofVertex(x1, y1+tl); // quadraticVertex(x1, y1, x1+tl, y1); } else { ofVertex(x1, y1); } // endShape(); // endShape(CLOSE); ofEndShape(); } //-------------------------------------------------------------- static inline int roundInt(float value) { // a la java return (int)floor((value + 0.5f)); }; //-------------------------------------------------------------- static inline string ofColorToHexString(const ofColor color) { char hex[9]; int red = CLAMP(roundInt(color.r),0,255); int green = CLAMP(roundInt(color.g),0,255); int blue = CLAMP(roundInt(color.b),0,255); int alpha = CLAMP(roundInt(color.a),0,255); sprintf(hex, "%.2X%.2X%.2X%.2X", alpha, red, green, blue ); return hex; }; //-------------------------------------------------------------- #define MAX_GUI_OBJECT_STACK 1024 static int ofxMuiDebug = true; static int ofxMuiObjectStackDepth = 0; static ofxMuiObject* ofxMuiObjectStack[MAX_GUI_OBJECT_STACK]; static void ofxMuiPushObject(ofxMuiObject* obj) { if(ofxMuiObjectStackDepth < MAX_GUI_OBJECT_STACK) { ofxMuiObjectStack[ofxMuiObjectStackDepth] = obj; ofxMuiObjectStackDepth++; } else { ofLog(OF_LOG_ERROR, "ofxMui: Too many calls to ofxMuiPushObject without enough calls to ofxMuiPopObject."); } } static ofxMuiObject* ofxMuiPopObject() { if(ofxMuiObjectStackDepth > 0) { ofxMuiObject* obj = ofxMuiObjectStack[ofxMuiObjectStackDepth]; ofxMuiObjectStackDepth--; return obj; } else { ofLog(OF_LOG_ERROR, "ofxMui: Too many calls to ofxMuiPopObject without enough calls to ofxMuiPushObject."); return NULL; } } /* static int ofxMuiObjectDeferredDrawStackDepth = 0; static ofxMuiObject* ofxMuiObjectDeferredDrawStack[MAX_GUI_OBJECT_STACK]; static void ofxMuiRegisterDeferredDrawObject(ofxMuiObject* obj) { if(ofxMuiObjectDeferredDrawStackDepth < MAX_GUI_OBJECT_STACK) { ofxMuiObjectDeferredDrawStack[ofxMuiObjectDeferredDrawStackDepth] = obj; ofxMuiObjectDeferredDrawStackDepth++; } else { ofLog(OF_LOG_ERROR, "ofxMui: ofxMuiRegisterDeferredDrawObject full!"); } } */ // no way to delete them ... ? static void ofxMuiDebugString(ofxMuiObject* object, string s) { string ss = ""; for(int i = 0; i < ofxMuiObjectStackDepth; i++) ss += "\t"; //ss += "[" + object->getName() + "] : "; ss += s; cout << ss << endl; }; static inline string debugRectToString(ofRectangle rect) { string s = ofToString(rect.x) + "/" + ofToString(rect.y) + "/" + ofToString(rect.width) + "/" + ofToString(rect.height); return s; };
[ "me@christopherbaker.net" ]
me@christopherbaker.net
1dfc5117769d8438dc36884f684c1590a62a1415
1eb85ecb99e2646d0478cf4564e9cbb1aa6671e5
/KOZAK PIZZA/promocje.h
1123ea0dbb4259200ff2f65c82499abd39400ace
[]
no_license
paulkastel/GeneratorPizzy
2dd31d8a2c0db43839cfddad97e6775149e0da92
8a045f2dacfc9e0f28d90572b10d2812b0dd0536
refs/heads/master
2016-09-14T06:18:22.982977
2016-04-27T17:08:48
2016-04-27T17:08:48
57,231,242
0
0
null
null
null
null
UTF-8
C++
false
false
254
h
#ifndef PROMOCJE_H_ #define PROMOCJE_H_ #include<iostream> #include<string> using namespace std; class Promocje { public: string na_haslo; double rabat, studencka; double obniz_rachunek(double); Promocje(); ~Promocje(); }; #endif
[ "pkastelik@poczta.fm" ]
pkastelik@poczta.fm