blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 2
247
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
57
| license_type
stringclasses 2
values | repo_name
stringlengths 4
111
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
58
| visit_date
timestamp[ns]date 2015-07-25 18:16:41
2023-09-06 10:45:08
| revision_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| committer_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| github_id
int64 3.89k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 25
values | gha_event_created_at
timestamp[ns]date 2012-06-07 00:51:45
2023-09-14 21:58:52
⌀ | gha_created_at
timestamp[ns]date 2008-03-27 23:40:48
2023-08-24 19:49:39
⌀ | gha_language
stringclasses 159
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 7
10.5M
| extension
stringclasses 111
values | filename
stringlengths 1
195
| text
stringlengths 7
10.5M
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
a5edd95a80cfb253025ffc2cef4ae196baa44bb8
|
d27c930671d65f65132eeb19d02caf26b22a6f21
|
/Graph/graph.cpp
|
d78dd392fe559ddc740a9325e827970e7d336502
|
[] |
no_license
|
dengxinlong/DataStructure_zuochengyun
|
adedd32da8fadcbdd057a001b34fcd77231b4c24
|
c44fa4b851f69314b12f36d3dedf476252213993
|
refs/heads/master
| 2023-01-06T02:06:27.683796
| 2020-11-04T06:48:51
| 2020-11-04T06:48:51
| 263,318,156
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,554
|
cpp
|
graph.cpp
|
/*
* 构造图
*/
#include <iostream>
#include <vector>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <queue>
using namespace std;
class Graph
{
public:
class Edge;
class Node
{
public:
Node(int value)
: _value(value), _in(0), _out(0)
{}
int _value;
int _in; // 该点的入度
int _out; // 该点的出度
vector<Node *> _nexts; // 与该点直接相连的结点
vector<Edge *> _edges; // 与该点直接相接的边
};
class Edge
{
public:
Edge(int weight, Node * from, Node * to)
: _weight(weight), _from(from), _to(to) {}
int _weight;
Node * _from;
Node * _to;
};
unordered_map<int, Node *> nodes;
unordered_set<Edge *> edges;
// 构造函数,根据传入的matrix生成图,matrix中为二维数组,其中的一个数组表示边的weight,from,to
Graph(const vector<vector<int>> & matrix)
{
for (int i = 0; i < matrix.size(); i++) {
int weight = matrix[i][0];
int from = matrix[i][1];
int to = matrix[i][2];
if (nodes.find(from) == nodes.end()) {
nodes[from] = new Node(from);
}
if (nodes.find(to) == nodes.end()) {
nodes[to] = new Node(to);
}
Node * fromNode = nodes[from];
Node * toNode = nodes[to];
Edge * newEdge = new Edge(weight, fromNode, toNode);
fromNode->_nexts.push_back(toNode);
fromNode->_out++;
toNode->_in++;
fromNode->_edges.push_back(newEdge);
edges.insert(newEdge);
}
}
~Graph()
{
// edges.erase();
}
Node * getNode(int value)
{
Node * node = nodes[value];
return node;
}
// 广度优先遍历
void BFS(Node * node)
{
cout << "fore: " << endl;
for (auto elem : nodes) {
cout << elem.first << " ";
}
cout << endl;
if (!node) return;
queue<Node *> helpQue;
unordered_set<Node *> markSet;
helpQue.push(node);
markSet.insert(node);
while (!helpQue.empty()) {
Node * cur = helpQue.front();
helpQue.pop();
cout << "while: " << cur->_value << endl;
cout << cur->_value << endl;
for (auto elem : node->_nexts) {
cout << "for: " << elem->_value << endl;
if (markSet.find(elem) == markSet.end()) {
helpQue.push(elem);
markSet.insert(elem);
}
}
}
}
// 深度优先遍历
void DFS(Node * node)
{
cout << node->_value << endl;
_markSet.insert(node);
for (auto elem : node->_nexts) {
if (_markSet.find(elem) == _markSet.end()) {
DFS(elem);
}
}
}
unordered_set<Node *> _markSet;
};
int
main(void)
{
vector<vector<int>> matrix{{1, 1, 2}, {3, 1, 4}, {4, 1, 3},
{1, 2, 1}, {2, 2, 4},
{4, 3, 1}, {8, 3, 4}, {5, 3, 5},
{2, 4, 2}, {3, 4, 1}, {8, 4, 3}, {6, 4, 5},
{5, 5, 3}, {6, 5, 4}};
Graph graph(matrix);
Graph::Node * node = graph.getNode(1);
cout << "BFS: " << endl;
graph.BFS(node);
cout << "DFS:" << endl;
graph.DFS(node);
return 0;
}
|
68c7784bd1331e61db15244b1b92b7ab1e326786
|
9e89ab53cd21f92c2d01585f65ae349a7cbf2ba7
|
/numberOfDivisor.cpp
|
8d2fd79e59be400575b337d6c18263ee8e41584c
|
[] |
no_license
|
alamkhaan/ProgrammingResources
|
cbede0c2f2933d76dcd9b442b489cff0b378db96
|
3f7ce820ad491048e512ceca71a6796af9bdccfa
|
refs/heads/master
| 2023-03-16T05:02:36.676279
| 2023-03-09T16:42:59
| 2023-03-09T16:42:59
| 231,253,905
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,833
|
cpp
|
numberOfDivisor.cpp
|
/*
Author: Alam Khan
AUST CSE 40th Batch
*/
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll,ll> pll;
typedef vector<ll> vl;
typedef deque<ll> dl;
typedef stack<ll> stl;
typedef set<ll> sl;
typedef map<string, ll> msl;
typedef map<ll,ll> mll;
#define sf(n) scanf("%lld",&n)
#define sff(n,m) scanf("%lld %lld",&n,&m)
#define sfff(n,m,r) scanf("%lld %lld %lld",&n,&m,&r)
#define sfs(n) scanf("%s",n)
#define pf(n) printf("%lld\n",n)
#define pff(n,m) printf("%lld %lld\n",n,m)
#define pfff(n,m,r) printf("%lld %lld %lld\n",n,m,r)
#define pfs(n) printf("%s\n",n)
#define pfcs(i,n) printf("Case %lld: %lld\n",i,n)
#define pb push_back
#define prf printf
#define inf 2e18
#define low -1000000000000
#define PI acos(-1.0)
#define rep1(i,n) for(i=1;i<n;i++)
#define rep0(i,n) for(i=0;i<n;i++)
#define rep(i,a,n) for(i=a;i<n;i++)
#define repe1(i,n) for(i=1;i<=n;i++)
#define repe0(i,n) for(i=0;i<=n;i++)
#define repe(i,a,n) for(i=a;i<=n;i++)
#define N 1000000
bool num[1000009];
vector<ll> prime;
void seive()
{
ll i,j;
num[1] = true;
for(i=4; i<=N; i+=2)
num[i] = true;
for(i=3; i<=sqrt(N); i+=2)
{
if(num[i]==false)
{
for(j=i*i; j<=N; j+=2*i)
{
num[j] = true;
}
}
}
prime.pb(2);
for(i=3; i<=N; i+=2)
{
if(!num[i])
prime.pb(i);
}
}
ll NOD(ll n)
{
//sieve(1e6)
ll res=1;
for(int i=0; i<prime.size() && prime[i]*prime[i]<=n; i++)
{
if(n%prime[i]==0)
{
ll p=0; // Counter for power of prime
while(n%prime[i]==0)
{
n/=prime[i];
p++;
}
res*=(p+1); // Multiply with answer
}
}
if(n!=1)
res*=2; // Remaining prime has power p^1. So multiply with 2/
return res;
}
ll mulMod(ll a,ll b,ll n)
{
ll res = 0;
a = a%n;
while(b>0)
{
if(b%2==1)
{
res = (res+a)%n;
}
a = (a*2)%n;
b/= 2;
}
return res;
}
ll bigMod(ll x,ll y, ll p)
{
ll res = 1;
x = x % p;
while (y > 0)
{
if (y & 1)
res = mulMod(res,x,p);
y = y>>1;
x = mulMod(x,x,p);
}
return res;
}
ll primetest[9] = {2,3,5,7,11,13,17,19,23};
bool millerTest(ll a,ll d,ll n)
{
ll x = bigMod(a,d,n);
if(x==1 || x==n-1)
return true;
while(d!=n-1 )
{
d*=2;
x= mulMod(x,x,n);
if(x==n-1)
return true;
if (x==1)
return false;
}
return false;
}
bool isPrime(ll n)
{
if (n <= 1 || n == 4)
return false;
if (n <= 3)
return true;
ll d = n - 1;
while (d % 2 == 0)
d /= 2;
ll k = 9;
for (ll i = 0; i < k && primetest[i]<n; i++)
{
if(!millerTest(primetest[i],d, n))
return false;
}
return true;
}
ll pollard(ll n)
{
ll x,y,g,j;
if(n%2==0)
return 2;
for(ll i=1;; i++)
{
x=y=2;
while(true)
{
x=(mulMod(x,x,n)+i)%n;
y=(mulMod(y,y,n)+i)%n;
y=(mulMod(y,y,n)+i)%n;
g=__gcd(abs(x-y),n);
if(g==n)
break;
if(g>1)
return g;
}
}
}
ll NodBig(ll n)
{
//sieve(1e6)
ll res=1;
for(int i=0; i<prime.size() && prime[i]*prime[i]<=n; i++)
{
if(n%prime[i]==0)
{
ll p=0; // Counter for power of prime
while(n%prime[i]==0)
{
n/=prime[i];
p++;
}
res*=(p+1); // Multiply with answer
}
}
if(n>1)
{
if(isPrime(n))
{
res = res*2;
}
else
{
ll n1 = pollard(n);
if(n1==n)
{
res = res*3;
}
else
res =res*4;
}
}
return res;
}
void prime_fact(ll n,vector<pair<ll,ll> > &v)
{
for(ll i=0;prime[i]*prime[i]<=n && i<prime.size();i++)
{
ll cnt =0;
while(n%prime[i]==0)
{
n = n/prime[i];
cnt++;
}
if(cnt>0)
{
v.pb({prime[i],cnt});
}
}
if(n>1)
{
if(isPrime(n))
{
v.pb({n,1});
}
else
{
ll x = pollard(n);
if(x*x==n)
{
v.pb({x,2});
}
else
{
v.pb({x,1});
v.pb({n/x,1});
}
}
}
}
void allDivisor(ll n)
{
vector<pair<ll,ll> >fact;
ll j,k,x,y;
prime_fact(n,fact);
vector<ll> div;
div.pb(1);
for(j=0; j<fact.size(); j++)
{
x = div.size();
y = 1;
for(ll l=0; l<fact[j].second; l++)
{
y = y*fact[j].first;
for(k=0; k<x; k++)
{
div.pb(div[k]*y);
}
}
}
sort(div.begin(),div.end());
for(j=0; j<div.size(); j++)
cout<<div[j]<<" ";
cout<<endl;
}
int main()
{
ll i,n,t,k,j,x=0,y=0,m;
seive();
for(i=2;i<=1000000;i++)
x = max(x,NOD(i));
cout<<x<<endl;
ll a[100009];
sf(n);
rep0(j,n)
{
sf(a[j]);
cout<<NodBig(a[j])<<endl;
}
return 0;
}
|
ea223fb749014e0e251474d39085c66921c0a10f
|
c7d5552497ca71cb7fa88f2d25aad4006f72aba7
|
/Engine/include/Porkholt/Core/PHGLExtCompat.h
|
0c21588a3c9f93c0ee2703948b2ebf3e57f9a18c
|
[] |
no_license
|
dapetcu21/Porkholt
|
bef4b6f02f56b4d9a33318ec6c498527c849c5fa
|
9bff9925742469d18b3dac4ff3e1f7d4af5dfda8
|
refs/heads/master
| 2016-08-11T13:13:57.319386
| 2015-11-23T22:06:37
| 2015-11-23T22:07:54
| 46,735,692
| 2
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,111
|
h
|
PHGLExtCompat.h
|
/* Copyright (c) Marius Petcu, Porkholt Labs!. All rights reserved. */
PHColor ccolor;
float cdepth;
int cstencil;
set<string> extensions;
bool parsedExtensions;
static bool phglinited;
int openGLVersionMajor,openGLVersionMinor,glslVersion;
string glslHeader;
bool openGLCaps[PHGLNumberCapabilities];
int stencilF, stencilRef;
unsigned int stencilMask, stencilWMask;
int stencilOpSF, stencilOpDF, stencilOpDP;
void initPHGL();
void loadCapabilities();
public:
bool hasExtension(const string & ext);
bool isGLES() { return openGLCaps[PHGLCapabilityOpenGLES]; }
#if defined(PH_GLES1_ONLY)
bool useShaders() { return false; }
#elif defined(PH_GLES2_ONLY)
bool useShaders() { return true; }
#else
bool useShaders() { return openGLCaps[PHGLCapabilityShaders]; }
#endif
int openGLMajorVersion() { return openGLVersionMajor; }
int openGLMinorVersion() { return openGLVersionMinor; }
int openGLSLVersion() { return glslVersion; }
bool hasCapability(int cap) { return openGLCaps[cap]; }
void setClearColor(const PHColor & c);
void setDepthClearValue(float val);
void setStencilClearValue(int val);
const PHColor & clearColor() { return ccolor; }
float depthClearValue() { return cdepth; }
int stencilClearValue() { return cstencil; }
enum {
colorBuffers = 1<<0,
depthBuffer = 1<<1,
stencilBuffer = 1<<2
};
void clearBuffers(int mask);
void clearColorBuffers() { clearBuffers(colorBuffers); }
void clearDepthBuffer() { clearBuffers(depthBuffer); }
void clearStencilBuffer() { clearBuffers(stencilBuffer); }
enum stencilFunc {
stencilAlways = 0,
stencilNever,
stencilLess,
stencilLEqual,
stencilGreater,
stencilGEqual,
stencilEqual,
stencilNotEqual,
};
enum stencilOp {
stencilKeep = 0,
stencilZero,
stencilReplace,
stencilIncrement,
stencilIncrementWarp,
stencilDecrement,
stencilDecrementWarp,
stencilInvert
};
void setStencilFunc(enum stencilFunc func, int ref, unsigned int mask = ((unsigned int)-1));
void setStencilOp(enum stencilOp sfail, enum stencilOp dpfail, enum stencilOp dppass);
void setStencilMask(unsigned int mask);
|
f91056db524d22db9d28fb494ae49a526878cfc4
|
19b5c3bff2fa1bb1e832b2a81b5f2756a5ac7ff8
|
/AppElements/mytabwidget.h
|
d455e788085ca9a7e7df288ac60fb2293cfc5764
|
[] |
no_license
|
Nikitosis/Graph-Helper
|
e5164f9b1c820b591418fcc39b7d13edf3bc32a3
|
9cbb640a8f6541028591fdf010866d345b33741f
|
refs/heads/master
| 2021-09-14T05:32:47.821503
| 2018-03-09T09:25:30
| 2018-03-09T09:25:30
| 110,248,570
| 3
| 0
| null | 2018-03-09T09:25:31
| 2017-11-10T13:13:49
|
C++
|
UTF-8
|
C++
| false
| false
| 225
|
h
|
mytabwidget.h
|
#ifndef MYTABWIDGET_H
#define MYTABWIDGET_H
#include <QTabWidget>
#include <QTabBar>
class MyTabWidget:public QTabWidget
{
public:
MyTabWidget(QWidget *parent);
QTabBar *tabBar() const;
};
#endif // MYTABWIDGET_H
|
62d27fe9f2d3f2fd8276e4df078afbd43db73ef0
|
ca7b94c3fc51f8db66ab41b32ee0b7a9ebd9c1ab
|
/wallet/gui/token_list_form.h
|
57e32a73287f92e9710113fd031f26685b4d8ff3
|
[] |
no_license
|
blockspacer/TronWallet
|
9235b933b67de92cd06ca917382de8c69f53ce5a
|
ffc60e550d1aff5f0f6f1153e0fcde212d37bdc6
|
refs/heads/master
| 2021-09-15T15:17:47.632925
| 2018-06-05T14:28:16
| 2018-06-05T14:28:16
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,028
|
h
|
token_list_form.h
|
#pragma once
#include "base_form.h"
#include "UILite/Controls/ListView/UIListView.h"
namespace protocol { class AssetIssueList; }
namespace wallet_gui
{
struct IssueItemData
{
std::wstring name;
std::wstring issuer;
uint64_t total_supply = 0;
uint64_t start_time;
uint64_t end_time;
std::wstring description;
std::wstring url;
int64_t avaliable_count = 0;
double exchange_rate = 0.0;
};
class CTokenListForm : public CBaseForm
{
public:
CTokenListForm(bool participate = true);
void UpdateIssueList(std::shared_ptr<protocol::AssetIssueList> issue_list);
CUIButton* GetActionButton(int64_t stime, int64_t etime);
void OnActionButtonClick(IssueItemData data);
protected:
void OnUICreate() override;
void Layout() override;
private:
bool participate_ = true;
std::unique_ptr<CUIListView> issue_list_;
};
}
|
fc2d7a21694ff5d862fecd734c80bd9e0a8439b2
|
6b2a8dd202fdce77c971c412717e305e1caaac51
|
/solutions_1483485_0/C++/japdlsd/a1.cc
|
25b13412d4dab1de997ff72f76445ffb05f78f40
|
[] |
no_license
|
alexandraback/datacollection
|
0bc67a9ace00abbc843f4912562f3a064992e0e9
|
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
|
refs/heads/master
| 2021-01-24T18:27:24.417992
| 2017-05-23T09:23:38
| 2017-05-23T09:23:38
| 84,313,442
| 2
| 4
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,828
|
cc
|
a1.cc
|
/* Look at my code
* My code is amazing
* Give it a lick
* Mmm! It tastes just like raisins!
*/
//another_fine_solution by Askar
#include <cstdio>
#include <iostream>
#include <ctime>
#include <cmath>
#include <cstdlib>
#include <algorithm>
#include <string>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <tr1/unordered_set>
using namespace std;
using namespace std::tr1;
#define For(i,n) for(int i = 0; i < n; i++)
#define mp make_pair
#define PASS
#define bodkociarka ;
#define menejmenej <<
#ifdef EBUG
#define db(x) cout << #x << "\t: " << (x) << endl;
#define dbg if(1)
#define WAT {cout << "WAT\n" << 1/0;}
#else
#define db(x)
#define dbg if(0)
#define WAT
#endif
int main(){
string t1 = "ejp mysljylc kd kxveddknmc re jsicpdrysi rbcpc ypc rtcsra dkh wyfrepkym veddknkmkrkcd de kr kd eoya kw aej tysr re ujdr lkgc jv";
string t2 = "our language is impossible to understand there are twenty six factorial possibilities so it is okay if you want to just give up";
map<char, char> tongue;
//urobit slovnik
int len = t1.size();
For(i, len){
tongue[t1[i]] = t2[i];
}
tongue['y'] = 'a';
tongue['e'] = 'o';
tongue['q'] = 'z';
tongue['z'] = 'q';
dbg if(!tongue.size() == 26) WAT;
tongue[' '] = ' ';//medzera je dolezita :D
int n;
cin >> n;
{//farmar's code
string buff;
getline(cin, buff);
}
For(i, n){
string buff;
getline(cin, buff);
dbg cout << i+1 << ": " << buff << endl;
int len = buff.size();
cout << "Case #" << i+1 << ": ";
For(j, len){
cout << tongue[buff[j]];
}
cout << endl;
}
}
|
4c2018ee4501e638b4e0aafa0ce0983159c01d9f
|
603a1e413cab3e40fc9a7cc5e2b789eb846a5b2b
|
/source/LiveActor/Sensor/HitSensor.cpp
|
065c74f3f0178382a55f9a093b2a62d6ba46d69b
|
[] |
no_license
|
BooshSource/Petari
|
999fdfda45411052942f3daafe7f3a78ff084899
|
cb63f1782b56f3c023edd89ddee5bfeb659f20dd
|
refs/heads/master
| 2023-02-09T10:43:37.879079
| 2021-01-08T00:05:27
| 2021-01-08T00:05:27
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,454
|
cpp
|
HitSensor.cpp
|
#include "LiveActor/Sensor/HitSensor.h"
#include "LiveActor/Sensor/SensorGroup.h"
#include "LiveActor/LiveActor.h"
#include "MR/SensorUtil.h"
HitSensor::HitSensor(u32 type, u16 a2, f32 a3, LiveActor *pActor)
{
// todo -- missing clrlwi on second arg
mSensorType = type;
_4.x = 0.0f;
_4.y = 0.0f;
_4.z = 0.0f;
_10 = a3;
mNumSensors = 0;
_16 = a2;
mSensors = 0;
mSensorGroup = 0;
_20 = 0;
_21 = 1;
mParentActor = pActor;
if (a2 != 0)
{
mSensors = (HitSensor**)new HitSensor[a2];
s32 curSensor = 0;
while(curSensor < _16)
{
mSensors[curSensor] = 0;
curSensor++;
}
}
MR::initHitSensorGroup(this);
}
u32 HitSensor::recieveMessage(u32 msg, HitSensor *pOther)
{
return mParentActor->receiveMessage(msg, pOther, this);
}
void HitSensor::setType(u32 type)
{
bool wasRemoved = 0;
u8 val = _20;
mSensorType = type;
if (val != 0)
{
if (_16 != 0)
{
if (_21 != 0)
{
mSensorGroup->remove(this);
wasRemoved = true;
}
}
}
MR::initHitSensorGroup(this);
if (wasRemoved != 0)
{
mSensorGroup->add(this);
}
mNumSensors = 0;
}
bool HitSensor::isType(u32 type) const
{
return !(type - mSensorType);
}
void HitSensor::validate()
{
if (_21)
{
return;
}
_21 = 1;
if (!_16)
{
return;
}
if (!_20)
{
return;
}
mSensorGroup->add(this);
}
void HitSensor::invalidate()
{
if (_21)
{
_21 = 0;
if (_16)
{
if (_20)
{
mSensorGroup->remove(this);
}
}
}
mNumSensors = 0;
}
void HitSensor::validateBySystem()
{
if (!_20)
{
if (_16)
{
if (_21)
{
mSensorGroup->add(this);
}
}
_20 = 1;
}
}
void HitSensor::invalidateBySystem()
{
if (!_20)
{
if (_16)
{
if (_21)
{
mSensorGroup->remove(this);
}
}
_20 = 0;
mNumSensors = 0;
}
}
void HitSensor::addHitSensor(HitSensor *sensor)
{
u16 val = mNumSensors;
u16 val2 = _16;
if (val >= val2)
{
return;
}
mSensors[val] = sensor;
mNumSensors++;
}
|
355456d1a2549c4c43bd20b7193324fd7db946a3
|
44351a727dad4614a782c68a2a34939fee711625
|
/Hungry_Dragon/Client/Code/Color_Mask.cpp
|
7bc839350a24c689ee8d3ba456d72d80ba2a494f
|
[] |
no_license
|
maverick107A/Hungry_Dragon_v3
|
9ebbb3676b3096b8236f8d6d9fd79580e55e7803
|
42c3fbbdfeef3efb835cef14ccf755cb071fe13e
|
refs/heads/master
| 2022-12-12T14:09:59.543934
| 2020-08-31T19:43:18
| 2020-08-31T19:43:18
| 282,894,128
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,181
|
cpp
|
Color_Mask.cpp
|
#include "stdafx.h"
#include "Color_Mask.h"
#include "Export_Function.h"
#include "Terrain.h"
#include "LandTex.h"
#include "Texture.h"
USING(Engine)
CColor_Mask::CColor_Mask(LPDIRECT3DDEVICE9 pGraphicDev)
: Engine::CGameObject(pGraphicDev)
{
}
CColor_Mask::~CColor_Mask(void)
{
}
HRESULT CColor_Mask::Ready_Object(void)
{
FAILED_CHECK_RETURN(Add_Component(), E_FAIL);
return S_OK;
}
int CColor_Mask::Update_Object(const float& fTimeDelta)
{
Engine::CGameObject::Update_Object(fTimeDelta);
return 0;
}
void CColor_Mask::Render_Object(void)
{
}
void CColor_Mask::Free(void)
{
Engine::CGameObject::Free();
}
HRESULT CColor_Mask::Add_Component(void)
{
Engine::CComponent* pComponent = nullptr;
// buffer
return S_OK;
}
CColor_Mask* CColor_Mask::Create(LPDIRECT3DDEVICE9 pGraphicDev)
{
CColor_Mask* pInstance = new CColor_Mask(pGraphicDev);
if (FAILED(pInstance->Ready_Object()))
Engine::Safe_Release(pInstance);
return pInstance;
}
HRESULT CColor_Mask::Init_MaskTex(int _iNum)
{
switch (_iNum)
{
case 0:
FAILED_CHECK(Clone_Component<CTexture>(&m_pTexture, RESOURCE_STAGE, L"TEX_BLACK", ID_STATIC, L"Com_Texture"));
break;
case 1:
FAILED_CHECK(Clone_Component<CTexture>(&m_pTexture, RESOURCE_STAGE, L"TEX_DARKBLUE", ID_STATIC, L"Com_Texture"));
break;
case 2:
FAILED_CHECK(Clone_Component<CTexture>(&m_pTexture, RESOURCE_STAGE, L"TEX_EMERALD", ID_STATIC, L"Com_Texture"));
break;
case 3:
FAILED_CHECK(Clone_Component<CTexture>(&m_pTexture, RESOURCE_STAGE, L"TEX_ORANGE", ID_STATIC, L"Com_Texture"));
break;
case 4:
FAILED_CHECK(Clone_Component<CTexture>(&m_pTexture, RESOURCE_STAGE, L"TEX_PURPLE", ID_STATIC, L"Com_Texture"));
break;
case 5:
FAILED_CHECK(Clone_Component<CTexture>(&m_pTexture, RESOURCE_STAGE, L"TEX_RED", ID_STATIC, L"Com_Texture"));
break;
case 6:
FAILED_CHECK(Clone_Component<CTexture>(&m_pTexture, RESOURCE_STAGE, L"TEX_SKYBLUE", ID_STATIC, L"Com_Texture"));
break;
case 7:
FAILED_CHECK(Clone_Component<CTexture>(&m_pTexture, RESOURCE_STAGE, L"TEX_WHITE", ID_STATIC, L"Com_Texture"));
break;
}
return S_OK;
}
void CColor_Mask::Set_ColorMask()
{
m_pTexture->Set_Texture();
}
|
056fcaee5a39e493959c1bfb56e3308aede5c42e
|
59f62056fb214e02378ffc154bc5a68a21614c16
|
/my_message_filter2.cpp
|
9e5aa5a7e71b81b9f9286d43317693acf3e0af25
|
[] |
no_license
|
Hariscorner/Agitr
|
eec994897bc3f34ee614b72ad3b3d3bc9c90eb19
|
28dfd149d4df8e8facd0420347579092e26663df
|
refs/heads/master
| 2021-07-18T18:15:37.640409
| 2017-10-24T08:58:46
| 2017-10-24T08:58:46
| 108,102,081
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 780
|
cpp
|
my_message_filter2.cpp
|
#include <message_filters/subscriber.h>
#include <message_filters/time_synchronizer.h>
#include<geometry_msgs/Twist.h>
#include <turtlesim/Pose.h>
#include <iomanip> //for std::setprecision and std::fixed
using namespace message_filters;
void callback(const ImageConstPtr& image, const CameraInfoConstPtr& cam_info)
{
// make changes here
}
int main(int argc, char** argv)
{
ros::init(argc, argv, "border_manager");
ros::NodeHandle nh;
message_filters::Subscriber<geometry_msgs::Twist> turtle_vel(nh, "vel", 1);
message_filters::Subscriber<turtlesim::Pose> turtle_pose(nh, "pose", 1);
TimeSynchronizer<geometry_msgs::Twist, turtlesim::Pose> sync(turtle_vel, turtle_pose, 10);
sync.registerCallback(boost::bind(&callback, _1, _2));
ros::spin();
return 0;
}
|
d3c457ac86ffb424294912604b118081c6f1bf68
|
9d8accf04b33072e6001d92db0422d7c7f0f4529
|
/promosql/viewer.cpp
|
87695821ccb6d42035bea4552f7ece6328f1c617
|
[] |
no_license
|
joshverdi/promo
|
e5df64ad485b3cf386193d31ae481bbd184626e2
|
359b761cf5098e5e88cc06a8093f9fe95bb81771
|
refs/heads/master
| 2021-01-19T10:31:25.175878
| 2017-04-11T01:08:00
| 2017-04-11T01:08:00
| 87,872,157
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 74,718
|
cpp
|
viewer.cpp
|
#include "viewer.h"
#include "putils.h"
#include "ptext3d.h"
#include "pboundingbox.h"
#include "main.h"
#include "QGLViewer/manipulatedCameraFrame.h"
#include <QStringListIterator>
#include <fstream>
#include <boost/algorithm/string.hpp>
using namespace qglviewer;
using namespace std;
Viewer::Viewer()
{
}
Viewer::Viewer(int type, QWidget* parent, const QGLWidget* shareWidget, Qt::WindowFlags flags)
: QGLViewer(parent, shareWidget, flags)
{
if (type < 3)
{
// Move camera according to viewer type (on X, Y or Z axis)
camera()->setPosition(Vec((type==0)? 1.0 : 0.0, (type==1)? 1.0 : 0.0, (type==2)? 1.0 : 0.0));
camera()->lookAt(sceneCenter());
camera()->setType(Camera::ORTHOGRAPHIC);
camera()->showEntireScene();
// Forbid rotation
WorldConstraint* constraint = new WorldConstraint();
constraint->setRotationConstraintType(AxisPlaneConstraint::FORBIDDEN);
camera()->frame()->setConstraint(constraint);
}
}
Viewer::~Viewer()
{
for (std::vector<PText3D*>::iterator iter = vec_t3d.begin(); iter!=vec_t3d.end(); iter++)
delete (*iter);
}
void Viewer::draw()
{
GLfloat textcolor[4]={1.0f,1.0f,0.0f,1.0f};
glMatrixMode(GL_MODELVIEW);
glPushMatrix();
glDisable(GL_LIGHTING);
update_orientation();
if ( (box_orientation!=REAL_PTS)
&&(box_orientation!=REAL_GAP)
&&(is_allqlfrs_drawn==false)
&&(vec_obb.empty())
)
draw_imgwire();
if (is_allqlfrs_drawn==false && vec_obb.empty())
{
for (int i=0; i<vecs_imgid.size(); i++)
{
QString qs = QString::number(i+1);
glPushMatrix();
glTranslatef((-0.45f)*idxr_fontsize*qs.size(), (-0.5f)*idxr_fontsize, 0.0f);
glTranslatef(vecs_imgid[i][0], vecs_imgid[i][1], vecs_imgid[i][2]);
glRotatef(90.0f, 1.0f, 0.0f, 0.0f);
drawtext(qs, idxr_fontsize);
glPopMatrix();
drawsphere(vecs_imgid[i], idxr_radius);
}
}
if (is_realtarget_drawn==true)
{
GLfloat sphrcolor[4] = {0.0f, 1.0f, 0.0f, 0.25f};
GLfloat dgtcolor[4] = {0.0f, 0.0f, 1.0f, 0.25f};
GLfloat linecolor[4] = {1.0f, 1.0f, 1.0f, 0.5f};
GLfloat linecolor_res[4] = {0.99f, 0.01f, 0.6f, 0.9f};
GLfloat linecolor_res2[4] = {0.01f, 0.99f, 0.6f, 0.9f};
GLfloat linecolor_res3[4] = {0.99f, 0.39f, 0.01f, 0.9f};
GLfloat linecolor_resman[4] = {0.995f, 0.0f, 0.0f, 0.9f};
GLfloat dist_tmp0 = 0, dist_tmp1 = 0, dist_tmp2 = 0, dist_tmp3 = 0;
for (int i=0; i<vecs_absoluteimgid.size(); i++)
{
QString qs = QString::number(i+1);
glPushMatrix();
glTranslatef((-0.45f)*idxr_fontsize*qs.size(), (-0.5f)*idxr_fontsize, 0.0f);
glTranslatef(vecs_absoluteimgid[i][0], vecs_absoluteimgid[i][1], vecs_absoluteimgid[i][2]);
glRotatef(90.0f, 1.0f, 0.0f, 0.0f);
drawtext(qs, dgtcolor, idxr_fontsize);
glPopMatrix();
drawsphere(vecs_absoluteimgid[i], idxr_radius, sphrcolor);
if (vecs_absoluteimgid.size()==vecs_imgid.size())
{
drawdashedline(vecs_absoluteimgid[i], vecs_imgid[i], linecolor);
dist_tmp0 += euclidist(vecs_absoluteimgid[i], vecs_imgid[i]);
}
if (vec_absolresampld1.size()==IMAGE_NB&&dash_method==DASH_METHOD1)
{
drawdashedline(vecs_absoluteimgid[vec_absolresampld1[i]], vecs_imgid[i], linecolor_res);
dist_tmp1 += euclidist(vecs_absoluteimgid[vec_absolresampld1[i]], vecs_imgid[i]);
}
if (vec_absolresampld2.size()==IMAGE_NB&&dash_method==DASH_METHOD2)
{
drawdashedline(vecs_absoluteimgid[i], vecs_imgid[vec_absolresampld2[i]], linecolor_res2);
dist_tmp2 += euclidist(vecs_absoluteimgid[i], vecs_imgid[vec_absolresampld2[i]]);
}
if (vec_absolresampld3.size()==IMAGE_NB&&dash_method==DASH_METHOD3)
{
drawdashedline(vecs_imgid[i], vecs_absoluteimgid[vec_absolresampld3[i]], linecolor_res3);
dist_tmp3 += euclidist(vecs_absoluteimgid[i], vecs_imgid[vec_absolresampld3[i]]);
}
if (vec_absolresampld_man.size()==IMAGE_NB&&dash_method==DASH_MANUAL)
{
drawdashedline(vecs_imgid[i], vecs_absoluteimgid[vec_absolresampld_man[i]-1], linecolor_resman);
}
}
std::cout << std::endl << "dist0 = " << dist_tmp0 << "\t"<< "dist1 = " << dist_tmp1 << "\tdist2 = " << dist_tmp2 << "\tdist3 = " << dist_tmp3;
}
if (is_scattered_drawn==true)
{
GLfloat sphrcolor[4] = {0.4f, 0.0f, 0.8f, 0.5f};
for (int i=0; i<vecs_scatterplot.size(); i++)
{
drawsphere(vecs_scatterplot[i], idxr_radius-0.5, sphrcolor);
}
}
if (is_qualifier_drawn==true)
draw_qlfrs();
if (is_allqlfrs_drawn==true)
draw_allqlfrs();
draw_usefn();
draw_diff();
if (!vec_obb.empty() && is_obb_drawn==true)
{
GLfloat sphrcolor[4] = {0.4f, 0.0f, 0.8f, 0.5f};
std::vector< std::vector< std::vector<GLfloat> > >::iterator iter_obbclouds;
std::vector< std::vector<float> >::iterator iter_rgb;
std::vector<PBoundingBox>::iterator iter_obb;
std::vector<bool>::iterator iter_displayobb;
std::vector< std::vector<float> > vecs_rgb = ::rgb_colorgenerator(vec_obb.size());
iter_rgb = vecs_rgb.begin();
iter_obb = vec_obb.begin();
iter_obbclouds = vecs_obb_clouds.begin();
iter_displayobb = vec_obbdisplayed.begin();
while (iter_obb != vec_obb.end() && iter_rgb != vecs_rgb.end() && iter_displayobb != vec_obbdisplayed.end())
{
if ((*iter_rgb).size()<3)
continue;
if ((*iter_displayobb)==true)
{
draw_obb(*iter_obb, (*iter_rgb)[0], (*iter_rgb)[1], (*iter_rgb)[2]);
if (vecs_obb_clouds.size() == vec_obb.size())
{
if (iter_obbclouds != vecs_obb_clouds.end())
{
for (std::vector< std::vector<GLfloat> >::iterator iter_pts = (*iter_obbclouds).begin(); iter_pts != (*iter_obbclouds).end(); iter_pts++)
drawsphere(*iter_pts, idxr_radius-1.5, (*iter_rgb)[0], (*iter_rgb)[1], (*iter_rgb)[2]);
}
}
}
iter_obb++;
iter_rgb++;
iter_displayobb++;
iter_obbclouds++;
}
}
if (!vec_obb_resampled.empty() && is_obbresampled_drawn == true)
{
GLfloat sphrcolor[4] = {0.4f, 0.0f, 0.8f, 0.5f};
std::vector< std::vector< std::vector<GLfloat> > >::iterator iter_obbclouds;
std::vector< std::vector<float> >::iterator iter_rgb;
std::vector<PBoundingBox>::iterator iter_obb;
std::vector<bool>::iterator iter_displayobb;
std::vector< std::vector<float> > vecs_rgb = ::rgb_colorgenerator(vec_obb.size());
iter_rgb = vecs_rgb.begin();
iter_obb = vec_obb_resampled.begin();
iter_obbclouds = vecs_obb_cloudsresampled.begin();
iter_displayobb = vec_obbdisplayed.begin();
while (iter_obb != vec_obb_resampled.end() && iter_rgb != vecs_rgb.end() && iter_displayobb != vec_obbdisplayed.end())
{
if ((*iter_rgb).size()<3)
continue;
if ((*iter_displayobb)==true)
{
draw_obb(*iter_obb, (*iter_rgb)[0], (*iter_rgb)[1], (*iter_rgb)[2]);
if (vecs_obb_cloudsresampled.size() == vec_obb_resampled.size())
{
if (iter_obbclouds != vecs_obb_cloudsresampled.end())
{
for (std::vector< std::vector<GLfloat> >::iterator iter_pts = (*iter_obbclouds).begin(); iter_pts != (*iter_obbclouds).end(); iter_pts++)
drawsphere(*iter_pts, idxr_radius-1.5, (*iter_rgb)[0], (*iter_rgb)[1], (*iter_rgb)[2]);
}
}
}
iter_obb++;
iter_rgb++;
iter_displayobb++;
iter_obbclouds++;
}
}
glPopMatrix();
}
void Viewer::init()
{
glEnable (GL_BLEND);
glBlendFunc (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
setGridIsDrawn(true);
setAxisIsDrawn(true);
setSceneRadius(120+50+10);
showEntireScene();
idxr_radius = 6.0f;
idxr_fontsize = 5;
is_realtarget_drawn = false;
is_qualifier_drawn = true;
is_scattered_drawn = false;
is_allqlfrs_drawn = false;
init_extremums();
box_orientation = STD_ORIENT;
dash_method = DISABLE_DASHD;
init_imgids(); // Please add your custom function BELOW, and NOT ABOVE the function
//init_imgt3ds();
bgcolor_default = backgroundColor();
is_obb_drawn = true;
is_obbresampled_drawn = false;
}
void Viewer::init_extremums()
{
step = 100.0f;
xmin=ymin=zmin=-step;
xmax=ymax=zmax= step;
}
//void Viewer::init_extremums(std::vector<float>& _vec_extremum)
//{
// if (_vec_extremum.size()>=6)
// {
// absolutexmin=_vec_extremum[0];absoluteymin=_vec_extremum[1];absolutezmin=_vec_extremum[2];
// absolutexmax=_vec_extremum[3];absoluteymax=_vec_extremum[4];absolutezmax=_vec_extremum[5];
// }
//}
//float Viewer::scalepca(float _x)
//{
// return (_x*(absolutexmax-absolutexmin)/step);
//}
void Viewer::init_imgids(bool _draw_real)
{
std::vector<GLfloat> vec_tmp;
if (_draw_real==true)
{
xmin = absolutexmin;
ymin = absoluteymin;
zmin = absolutezmin;
xmax = absolutexmax;
ymax = absoluteymax;
zmax = absolutezmax;
}
else
{
init_extremums();
}
GLfloat xmid = 0.5*(xmin+xmax);
GLfloat ymid = 0.5*(ymin+ymax);
GLfloat zmid = 0.5*(zmin+zmax);
vecs_imgid.clear();
vec_tmp.push_back(xmin);vec_tmp.push_back(ymin);vec_tmp.push_back(zmin);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmin);vec_tmp.push_back(ymid);vec_tmp.push_back(zmin);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmin);vec_tmp.push_back(ymax);vec_tmp.push_back(zmin);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmin);vec_tmp.push_back(ymin);vec_tmp.push_back(zmid);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmin);vec_tmp.push_back(ymid);vec_tmp.push_back(zmid);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmin);vec_tmp.push_back(ymax);vec_tmp.push_back(zmid);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmin);vec_tmp.push_back(ymin);vec_tmp.push_back(zmax);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmin);vec_tmp.push_back(ymid);vec_tmp.push_back(zmax);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmin);vec_tmp.push_back(ymax);vec_tmp.push_back(zmax);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmid);vec_tmp.push_back(ymin);vec_tmp.push_back(zmin);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmid);vec_tmp.push_back(ymid);vec_tmp.push_back(zmin);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmid);vec_tmp.push_back(ymax);vec_tmp.push_back(zmin);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmid);vec_tmp.push_back(ymin);vec_tmp.push_back(zmid);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmid);vec_tmp.push_back(ymid);vec_tmp.push_back(zmid);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmid);vec_tmp.push_back(ymax);vec_tmp.push_back(zmid);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmid);vec_tmp.push_back(ymin);vec_tmp.push_back(zmax);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmid);vec_tmp.push_back(ymid);vec_tmp.push_back(zmax);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmid);vec_tmp.push_back(ymax);vec_tmp.push_back(zmax);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmax);vec_tmp.push_back(ymin);vec_tmp.push_back(zmin);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmax);vec_tmp.push_back(ymid);vec_tmp.push_back(zmin);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmax);vec_tmp.push_back(ymax);vec_tmp.push_back(zmin);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmax);vec_tmp.push_back(ymin);vec_tmp.push_back(zmid);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmax);vec_tmp.push_back(ymid);vec_tmp.push_back(zmid);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmax);vec_tmp.push_back(ymax);vec_tmp.push_back(zmid);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmax);vec_tmp.push_back(ymin);vec_tmp.push_back(zmax);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmax);vec_tmp.push_back(ymid);vec_tmp.push_back(zmax);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
vec_tmp.push_back(xmax);vec_tmp.push_back(ymax);vec_tmp.push_back(zmax);vecs_imgid.push_back(vec_tmp);vec_tmp.clear();
if (_draw_real==false)
vecs_std_imgid = vecs_imgid;
}
void Viewer::drawline(std::vector<GLfloat>& _pt1,std::vector<GLfloat>& _pt2)
{
glPushAttrib(GL_CURRENT_BIT);
glColor3f(1.0,0.0,0.0);
glLineWidth(2);
glBegin(GL_LINES);
glVertex3f(_pt1[0], _pt1[1], _pt1[2]);
glVertex3f(_pt2[0], _pt2[1], _pt2[2]);
glEnd();
glPopAttrib();
}
void Viewer::drawline(std::vector<GLfloat>& _pt1,std::vector<GLfloat>& _pt2, GLfloat* _color)
{
glPushAttrib(GL_CURRENT_BIT);
glColor4fv(_color);
glLineWidth(2);
glBegin(GL_LINES);
glVertex3f(_pt1[0], _pt1[1], _pt1[2]);
glVertex3f(_pt2[0], _pt2[1], _pt2[2]);
glEnd();
glPopAttrib();
}
void Viewer::drawdashedline(std::vector<GLfloat>& _pt1,std::vector<GLfloat>& _pt2, GLfloat* _color)
{
glPushAttrib(GL_CURRENT_BIT);
glColor4fv(_color);
glEnable (GL_LINE_STIPPLE);
glLineStipple (1, 0x0101); /* dotted */
glBegin(GL_LINES);
glVertex3f(_pt1[0], _pt1[1], _pt1[2]);
glVertex3f(_pt2[0], _pt2[1], _pt2[2]);
glEnd();
glDisable (GL_LINE_STIPPLE);
glPopAttrib();
}
void Viewer::drawbox(std::vector< std::vector<GLfloat> >& _corners)
{
if (_corners.size()!=8)
{
std::cout << std::endl << "Drawing Error: Requesting to draw box with an incorrect number of vertices.";
}
else
{
drawline(_corners[0], _corners[1]);
drawline(_corners[1], _corners[2]);
drawline(_corners[2], _corners[3]);
drawline(_corners[3], _corners[0]);
drawline(_corners[4], _corners[5]);
drawline(_corners[5], _corners[6]);
drawline(_corners[6], _corners[7]);
drawline(_corners[7], _corners[4]);
drawline(_corners[0], _corners[4]);
drawline(_corners[1], _corners[5]);
drawline(_corners[2], _corners[6]);
drawline(_corners[3], _corners[7]);
}
}
void Viewer::drawpt3d(std::vector<float>& _vec3)
{
if (_vec3.size()==3 || _vec3.size()==2)
{
glPushAttrib(GL_CURRENT_BIT);
glColor3f(0.117, 0.564, 1.0);
glPointSize(6);
glBegin(GL_POINTS);
(_vec3.size()==3)?glVertex3f(_vec3[0], _vec3[1], _vec3[2]):glVertex3f(_vec3[0], _vec3[1], 0);
glEnd();
glPopAttrib();
}
}
void Viewer::drawtext(QString& _text, int _size)
{
int font_size=_size;
std::vector<PText3D*>::iterator iter;
for (iter = vec_t3d.begin(); iter!=vec_t3d.end(); iter++)
{
if (((*iter)->gettext().compare(_text)==0)&&((*iter)->getfont()->pointSize() == font_size) )
break;
}
if (iter==vec_t3d.end())
{
PText3D* t3d = new PText3D(_text);
QFont dfont("Comic Sans MS", font_size);
QFontMetrics fm(dfont);
t3d->initfont(dfont,1.0f);
vec_t3d.push_back(t3d);
}
else
{
glTranslatef(0.0f, 0.5f, 0.0f);
(*iter)->print();
glTranslatef(0.0f, -0.5f, 0.0f);
}
}
void Viewer::drawtext(QString& _text, GLfloat* _color, int _size)
{
int font_size=_size;
std::vector<PText3D*>::iterator iter;
for (iter = vec_t3d.begin(); iter!=vec_t3d.end(); iter++)
{
if ( ((*iter)->gettext().compare(_text)==0)
&&((*iter)->getfont()->pointSize() == font_size)
&&((*iter)->equalcolor(_color)==true))
break;
}
if (iter==vec_t3d.end())
{
PText3D* t3d = new PText3D(_text);
t3d->setcolor(_color);
QFont dfont("Comic Sans MS", font_size);
QFontMetrics fm(dfont);
t3d->initfont(dfont,1.0f);
vec_t3d.push_back(t3d);
}
else
{
glTranslatef(0.0f, 0.5f, 0.0f);
(*iter)->print();
glTranslatef(0.0f, -0.5f, 0.0f);
}
}
void Viewer::draw_imgid(unsigned int _idx)
{
int font_size=5;
if (_idx<vecs_imgid.size())
{
QString qs = QString::number(_idx+1);
glPushMatrix();
glTranslatef((-0.5f)*font_size*qs.size(), (-0.5f)*font_size, 0.0f);
glTranslatef(vecs_imgid[_idx][0], vecs_imgid[_idx][1], vecs_imgid[_idx][2]);
glRotatef(90.0f, 1.0f, 0.0f, 0.0f);
drawtext(qs, font_size);
glPopMatrix();
}
}
void Viewer::draw_imgwire(bool _draw_inside)
{
std::vector< std::vector<GLfloat> > vecs_corners;
glPushAttrib(GL_CURRENT_BIT);
glColor3f(1.0f, 0.0f, 0.0f);
if (vecs_imgid.size()>=27)
{
vecs_corners.push_back(vecs_imgid[2]);
vecs_corners.push_back(vecs_imgid[8]);
vecs_corners.push_back(vecs_imgid[26]);
vecs_corners.push_back(vecs_imgid[20]);
vecs_corners.push_back(vecs_imgid[0]);
vecs_corners.push_back(vecs_imgid[6]);
vecs_corners.push_back(vecs_imgid[24]);
vecs_corners.push_back(vecs_imgid[18]);
drawbox(vecs_corners);
}
if (_draw_inside)
{
vecs_corners.clear();
vecs_corners.push_back(vecs_imgid[5]);
vecs_corners.push_back(vecs_imgid[8]);
vecs_corners.push_back(vecs_imgid[17]);
vecs_corners.push_back(vecs_imgid[14]);
vecs_corners.push_back(vecs_imgid[4]);
vecs_corners.push_back(vecs_imgid[7]);
vecs_corners.push_back(vecs_imgid[16]);
vecs_corners.push_back(vecs_imgid[13]);
drawbox(vecs_corners);
vecs_corners.clear();
vecs_corners.push_back(vecs_imgid[14]);
vecs_corners.push_back(vecs_imgid[17]);
vecs_corners.push_back(vecs_imgid[26]);
vecs_corners.push_back(vecs_imgid[23]);
vecs_corners.push_back(vecs_imgid[13]);
vecs_corners.push_back(vecs_imgid[16]);
vecs_corners.push_back(vecs_imgid[25]);
vecs_corners.push_back(vecs_imgid[22]);
drawbox(vecs_corners);
vecs_corners.clear();
vecs_corners.push_back(vecs_imgid[4]);
vecs_corners.push_back(vecs_imgid[7]);
vecs_corners.push_back(vecs_imgid[16]);
vecs_corners.push_back(vecs_imgid[13]);
vecs_corners.push_back(vecs_imgid[3]);
vecs_corners.push_back(vecs_imgid[6]);
vecs_corners.push_back(vecs_imgid[15]);
vecs_corners.push_back(vecs_imgid[12]);
drawbox(vecs_corners);
vecs_corners.clear();
vecs_corners.push_back(vecs_imgid[13]);
vecs_corners.push_back(vecs_imgid[16]);
vecs_corners.push_back(vecs_imgid[25]);
vecs_corners.push_back(vecs_imgid[22]);
vecs_corners.push_back(vecs_imgid[12]);
vecs_corners.push_back(vecs_imgid[15]);
vecs_corners.push_back(vecs_imgid[24]);
vecs_corners.push_back(vecs_imgid[21]);
drawbox(vecs_corners);
vecs_corners.clear();
vecs_corners.push_back(vecs_imgid[2]);
vecs_corners.push_back(vecs_imgid[5]);
vecs_corners.push_back(vecs_imgid[14]);
vecs_corners.push_back(vecs_imgid[11]);
vecs_corners.push_back(vecs_imgid[1]);
vecs_corners.push_back(vecs_imgid[4]);
vecs_corners.push_back(vecs_imgid[13]);
vecs_corners.push_back(vecs_imgid[10]);
drawbox(vecs_corners);
vecs_corners.clear();
vecs_corners.push_back(vecs_imgid[11]);
vecs_corners.push_back(vecs_imgid[14]);
vecs_corners.push_back(vecs_imgid[23]);
vecs_corners.push_back(vecs_imgid[20]);
vecs_corners.push_back(vecs_imgid[10]);
vecs_corners.push_back(vecs_imgid[13]);
vecs_corners.push_back(vecs_imgid[22]);
vecs_corners.push_back(vecs_imgid[19]);
drawbox(vecs_corners);
vecs_corners.clear();
vecs_corners.push_back(vecs_imgid[1]);
vecs_corners.push_back(vecs_imgid[4]);
vecs_corners.push_back(vecs_imgid[13]);
vecs_corners.push_back(vecs_imgid[10]);
vecs_corners.push_back(vecs_imgid[0]);
vecs_corners.push_back(vecs_imgid[3]);
vecs_corners.push_back(vecs_imgid[12]);
vecs_corners.push_back(vecs_imgid[9]);
drawbox(vecs_corners);
vecs_corners.clear();
vecs_corners.push_back(vecs_imgid[10]);
vecs_corners.push_back(vecs_imgid[13]);
vecs_corners.push_back(vecs_imgid[22]);
vecs_corners.push_back(vecs_imgid[19]);
vecs_corners.push_back(vecs_imgid[9]);
vecs_corners.push_back(vecs_imgid[12]);
vecs_corners.push_back(vecs_imgid[21]);
vecs_corners.push_back(vecs_imgid[18]);
drawbox(vecs_corners);
}
glPopAttrib();
}
void Viewer::drawsphere(std::vector<GLfloat>& _center, GLfloat _radius)
{
GLint slices = 30;
GLint stacks = 30;
//GLfloat sphrcolor[4] = {0.87f, 0.08f, 0.32f, 0.30f};
GLfloat sphrcolor[4] = {1.0f, 0.0f, 0.0f, 0.25f};
GLUquadric* quad;
quad=gluNewQuadric();
gluQuadricNormals(quad, GL_SMOOTH);
glPushAttrib(GL_CURRENT_BIT);
glColor4fv(sphrcolor);
if (_center.size()>=3)
{
glPushMatrix();
glTranslatef(_center[0], _center[1], _center[2]);
gluSphere(quad, _radius, slices, stacks);
glPopMatrix();
}
glPopAttrib();
gluDeleteQuadric(quad);
}
void Viewer::drawsphere(std::vector<GLfloat>& _center, GLfloat _radius, GLfloat* _color)
{
GLint slices = 30;
GLint stacks = 30;
//GLfloat sphrcolor[4] = {0.87f, 0.08f, 0.32f, 0.30f};
GLUquadric* quad;
quad=gluNewQuadric();
gluQuadricNormals(quad, GL_SMOOTH);
glPushAttrib(GL_CURRENT_BIT);
glColor4fv(_color);
if (_center.size()>=3)
{
glPushMatrix();
glTranslatef(_center[0], _center[1], _center[2]);
gluSphere(quad, _radius, slices, stacks);
glPopMatrix();
}
glPopAttrib();
gluDeleteQuadric(quad);
}
void Viewer::drawsphere(std::vector<GLfloat>& _center, GLfloat _radius, GLfloat _red, GLfloat _green, GLfloat _blue)
{
GLint slices = 30;
GLint stacks = 30;
//GLfloat sphrcolor[4] = {0.87f, 0.08f, 0.32f, 0.30f};
GLUquadric* quad;
quad=gluNewQuadric();
gluQuadricNormals(quad, GL_SMOOTH);
glPushAttrib(GL_CURRENT_BIT);
glColor3f(_red, _green, _blue);
if (_center.size()>=3)
{
glPushMatrix();
glTranslatef(_center[0], _center[1], _center[2]);
gluSphere(quad, _radius, slices, stacks);
glPopMatrix();
}
glPopAttrib();
gluDeleteQuadric(quad);
}
void Viewer::draw_qlfrs()
{
int font_size=3;
const int color_range = 10;
std::vector<GLfloat*> vec_textcolors;
if (qvec_qlfrs.size()==vecs_imgid.size())
{
for (int i=0; i<color_range; i++)
{
GLfloat* x = new GLfloat[4];
std::fill(x, x+4, 1.0f);
PUtils::generate_color((float)i/color_range, x[0], x[1], x[2]);
//std::cout << std::endl << "Color " << i << ":" << x[0] << "\t" << x[1] << "\t" << x[2];
vec_textcolors.push_back(x);
}
for (int i=0; i<qvec_qlfrs.size(); i++)
{
QStringListIterator qsliter(*qvec_qlfrs.at(i));
QString qs;
glPushMatrix();
glTranslatef(vecs_imgid[i][0], vecs_imgid[i][1], vecs_imgid[i][2]);
int j=0;
while (qsliter.hasNext())
{
qs = qsliter.next();
qs.replace(QString(";"), QString (","));
glTranslatef(0.0f, -5.0f, 0.0f);
glPushMatrix();
glTranslatef((-0.5f)*qs.size(), -font_size-1, 0.0f);
glRotatef(90.0f, 1.0f, 0.0f, 0.0f);
drawtext(qs, vec_textcolors[(j+3)%vec_textcolors.size()], font_size);
glPopMatrix();
j++;
}
glPopMatrix();
}
}
for (std::vector<GLfloat*>::iterator iter=vec_textcolors.begin(); iter!=vec_textcolors.end(); iter++)
delete[] (*iter);
}
void Viewer::draw_usefn()
{
int font_size=12;
GLfloat textcolor[]={0.0f, 1.0f, 0.0f, 1.0f};
if (vec_usefulns.size()==vecs_imgid.size())
{
for (int i=0; i<vec_usefulns.size(); i++)
{
QString qs = QString::number(vec_usefulns.at(i), 'g', 4);
glPushMatrix();
glTranslatef(vecs_imgid[i][0], vecs_imgid[i][1], vecs_imgid[i][2]);
glTranslatef(0.0f, -5.0f, 0.0f);
glTranslatef(-0.5*font_size*qs.size(), -font_size-1, 0.0f);
glRotatef(90.0f, 1.0f, 0.0f, 0.0f);
drawtext(qs, textcolor, font_size);
glPopMatrix();
}
}
}
void Viewer::draw_diff()
{
int font_size=12;
GLfloat textcolor[]={1.0f, 0.5f, 0.0f, 1.0f};
GLfloat y_trans = -5.0f;
if (!vec_usefulns.empty())
{
y_trans*=2;
}
if (vec_diff.size()==vecs_imgid.size())
{
for (int i=0; i<vec_diff.size(); i++)
{
QString qs = QString::number(vec_diff.at(i), 'g', 4);
glPushMatrix();
glTranslatef(vecs_imgid[i][0], vecs_imgid[i][1], vecs_imgid[i][2]);
glTranslatef(0.0f, y_trans, 0.0f);
glTranslatef(-0.5*font_size*qs.size(), -font_size-1, 0.0f);
glRotatef(90.0f, 1.0f, 0.0f, 0.0f);
drawtext(qs, textcolor, font_size);
glPopMatrix();
}
}
}
void Viewer::draw_allqlfrs()
{
int font_size=3;
size_t qlfrsize = vec_xqlfr.size();
if ( vec_xqlfr.size()==qlfrsize
&& vec_yqlfr.size()==qlfrsize
&& vec_zqlfr.size()==qlfrsize
&& vec_qlfrgrmr.size()==qlfrsize
&& vec_allqlfrs.size()==qlfrsize
)
{
GLfloat sphrcolor[4] = {0.8f, 0.0f, 0.4f, 0.8f};
GLfloat textcolor[4] = {0.0f, 1.0f, 0.8f, 0.8f};
for (int i=0; i<vec_allqlfrs.size(); i++)
{
std::string qlfr_tmp = vec_allqlfrs[i];
QString qs_qlfr_tmp(vec_allqlfrs[i].c_str());
boost::algorithm::to_lower(qlfr_tmp);
if (std::find(vec_qlfrfilter.begin(), vec_qlfrfilter.end(), qlfr_tmp)!=vec_qlfrfilter.end())
{
std::vector<float> vec_coords_tmp;
vec_coords_tmp.push_back(vec_xqlfr[i]);
vec_coords_tmp.push_back(vec_yqlfr[i]);
vec_coords_tmp.push_back(vec_zqlfr[i]);
drawsphere(vec_coords_tmp, idxr_radius-0.5, sphrcolor);
glPushMatrix();
glTranslatef(vec_xqlfr[i], vec_yqlfr[i], vec_zqlfr[i]);
glTranslatef((-0.5f)*qs_qlfr_tmp.size(), -font_size-1, 0.0f);
glRotatef(90.0f, 1.0f, 0.0f, 0.0f);
drawtext(qs_qlfr_tmp, textcolor, font_size);
glPopMatrix();
}
}
}
}
void Viewer::keyPressEvent(QKeyEvent *e)
{
const int MIN_VIEW_MODE = STD_ORIENT;
const int MAX_VIEW_MODE = REAL_GAP;
const int MIN_DASH_MODE = DISABLE_DASHD;
const int MAX_DASH_MODE = DASH_MANUAL;
const Qt::KeyboardModifiers modifiers = e->modifiers();
bool handled = false;
if ((e->key()==Qt::Key_Left) && (modifiers==Qt::ShiftModifier))
{
if (box_orientation==MIN_VIEW_MODE)
box_orientation = MAX_VIEW_MODE;
else box_orientation--;
qDebug() << "Change to viewing mode: " << box_orientation;
updateGL();
handled = true;
}
else if ((e->key()==Qt::Key_Right) && (modifiers==Qt::ShiftModifier))
{
if (box_orientation==MAX_VIEW_MODE)
box_orientation = MIN_VIEW_MODE;
else box_orientation++;
qDebug() << "Change to viewing mode: " << box_orientation;
updateGL();
handled = true;
}
else if ((e->key()==Qt::Key_L) && (modifiers==Qt::ControlModifier))
{
if (dash_method==MAX_DASH_MODE)
dash_method = MIN_DASH_MODE;
else dash_method++;
if (dash_method == DASH_MANUAL)
if (!fn_manmatch.empty())
load_matching(fn_manmatch);
//if (dash_method == DASH_MANUAL)
//load_matching("tree1_0912_nykomatch.csv");
//load_matching("tree2_0912_nykomatch.csv");
//load_matching("tree3_0912_nykomatch.csv");
//load_matching("ternary_branching_0912_nykomatch.csv");
//load_matching("alternative_branch_0912_nykomatch.csv");
//load_matching("honda_sympodial_0912_nykomatch.csv");
updateGL();
}
else if ((e->key()==Qt::Key_T) && (modifiers==Qt::ControlModifier))
{
is_qualifier_drawn = !is_qualifier_drawn;
updateGL();
handled = true;
}
else if ((e->key()==Qt::Key_Plus)/* && (modifiers==Qt::ControlModifier)*/)
{
if (idxr_radius<20)
{
idxr_radius+=1;
idxr_fontsize+=1;
}
updateGL();
handled = true;
}
else if ((e->key()==Qt::Key_Minus)/* && (modifiers==Qt::ControlModifier)*/)
{
if (idxr_radius>1)
{
idxr_radius-=1;
idxr_fontsize-=1;
}
updateGL();
handled = true;
}
else if ((e->key()==Qt::Key_P) && (modifiers==Qt::ControlModifier))
{
is_scattered_drawn = !is_scattered_drawn;
updateGL();
handled = true;
}
else if ((e->key()==Qt::Key_B) && (modifiers==Qt::ControlModifier))
{
QColor color_tmp = backgroundColor();
if (color_tmp == bgcolor_default)
{
color_tmp = Qt::white;
setBackgroundColor(color_tmp);
}
else
setBackgroundColor(bgcolor_default);
updateGL();
handled = true;
}
else if ((e->key()==Qt::Key_R) && (modifiers==Qt::ControlModifier))
{
is_obb_drawn = !is_obb_drawn;
is_obbresampled_drawn = !is_obbresampled_drawn;
updateGL();
handled = true;
}
if (!handled)
QGLViewer::keyPressEvent(e);
}
void Viewer::update_orientation()
{
// idxr_radius = 6.0f;
// idxr_fontsize = 5;
is_realtarget_drawn = false;
switch (box_orientation)
{
case CUSTOM_ORIENT1:
vecs_imgid[0] = vecs_std_imgid[0];
vecs_imgid[1] = vecs_std_imgid[3];
vecs_imgid[2] = vecs_std_imgid[6];
vecs_imgid[3] = vecs_std_imgid[1];
vecs_imgid[4] = vecs_std_imgid[4];
vecs_imgid[5] = vecs_std_imgid[7];
vecs_imgid[6] = vecs_std_imgid[2];
vecs_imgid[7] = vecs_std_imgid[5];
vecs_imgid[8] = vecs_std_imgid[8];
vecs_imgid[9] = vecs_std_imgid[9];
vecs_imgid[10] = vecs_std_imgid[12];
vecs_imgid[11] = vecs_std_imgid[15];
vecs_imgid[12] = vecs_std_imgid[10];
vecs_imgid[13] = vecs_std_imgid[13];
vecs_imgid[14] = vecs_std_imgid[16];
vecs_imgid[15] = vecs_std_imgid[11];
vecs_imgid[16] = vecs_std_imgid[14];
vecs_imgid[17] = vecs_std_imgid[17];
vecs_imgid[18] = vecs_std_imgid[18];
vecs_imgid[19] = vecs_std_imgid[21];
vecs_imgid[20] = vecs_std_imgid[24];
vecs_imgid[21] = vecs_std_imgid[19];
vecs_imgid[22] = vecs_std_imgid[22];
vecs_imgid[23] = vecs_std_imgid[25];
vecs_imgid[24] = vecs_std_imgid[20];
vecs_imgid[25] = vecs_std_imgid[23];
vecs_imgid[26] = vecs_std_imgid[26];
break;
case CUSTOM_ORIENT2:
vecs_imgid[0] = vecs_std_imgid[0];
vecs_imgid[1] = vecs_std_imgid[3];
vecs_imgid[2] = vecs_std_imgid[6];
vecs_imgid[3] = vecs_std_imgid[9];
vecs_imgid[4] = vecs_std_imgid[12];
vecs_imgid[5] = vecs_std_imgid[15];
vecs_imgid[6] = vecs_std_imgid[18];
vecs_imgid[7] = vecs_std_imgid[21];
vecs_imgid[8] = vecs_std_imgid[24];
vecs_imgid[9] = vecs_std_imgid[1];
vecs_imgid[10] = vecs_std_imgid[4];
vecs_imgid[11] = vecs_std_imgid[7];
vecs_imgid[12] = vecs_std_imgid[10];
vecs_imgid[13] = vecs_std_imgid[13];
vecs_imgid[14] = vecs_std_imgid[16];
vecs_imgid[15] = vecs_std_imgid[19];
vecs_imgid[16] = vecs_std_imgid[22];
vecs_imgid[17] = vecs_std_imgid[25];
vecs_imgid[18] = vecs_std_imgid[2];
vecs_imgid[19] = vecs_std_imgid[5];
vecs_imgid[20] = vecs_std_imgid[8];
vecs_imgid[21] = vecs_std_imgid[11];
vecs_imgid[22] = vecs_std_imgid[14];
vecs_imgid[23] = vecs_std_imgid[17];
vecs_imgid[24] = vecs_std_imgid[20];
vecs_imgid[25] = vecs_std_imgid[23];
vecs_imgid[26] = vecs_std_imgid[26];
break;
case CUSTOM_ORIENT3:
vecs_imgid[0] = vecs_std_imgid[0];
vecs_imgid[1] = vecs_std_imgid[1];
vecs_imgid[2] = vecs_std_imgid[2];
vecs_imgid[3] = vecs_std_imgid[9];
vecs_imgid[4] = vecs_std_imgid[10];
vecs_imgid[5] = vecs_std_imgid[11];
vecs_imgid[6] = vecs_std_imgid[18];
vecs_imgid[7] = vecs_std_imgid[19];
vecs_imgid[8] = vecs_std_imgid[20];
vecs_imgid[9] = vecs_std_imgid[3];
vecs_imgid[10] = vecs_std_imgid[4];
vecs_imgid[11] = vecs_std_imgid[5];
vecs_imgid[12] = vecs_std_imgid[12];
vecs_imgid[13] = vecs_std_imgid[13];
vecs_imgid[14] = vecs_std_imgid[14];
vecs_imgid[15] = vecs_std_imgid[21];
vecs_imgid[16] = vecs_std_imgid[22];
vecs_imgid[17] = vecs_std_imgid[23];
vecs_imgid[18] = vecs_std_imgid[6];
vecs_imgid[19] = vecs_std_imgid[7];
vecs_imgid[20] = vecs_std_imgid[8];
vecs_imgid[21] = vecs_std_imgid[15];
vecs_imgid[22] = vecs_std_imgid[16];
vecs_imgid[23] = vecs_std_imgid[17];
vecs_imgid[24] = vecs_std_imgid[24];
vecs_imgid[25] = vecs_std_imgid[25];
vecs_imgid[26] = vecs_std_imgid[26];
break;
case CUSTOM_ORIENT4:
vecs_imgid[0] = vecs_std_imgid[0];
vecs_imgid[1] = vecs_std_imgid[9];
vecs_imgid[2] = vecs_std_imgid[18];
vecs_imgid[3] = vecs_std_imgid[1];
vecs_imgid[4] = vecs_std_imgid[10];
vecs_imgid[5] = vecs_std_imgid[19];
vecs_imgid[6] = vecs_std_imgid[2];
vecs_imgid[7] = vecs_std_imgid[11];
vecs_imgid[8] = vecs_std_imgid[20];
vecs_imgid[9] = vecs_std_imgid[3];
vecs_imgid[10] = vecs_std_imgid[12];
vecs_imgid[11] = vecs_std_imgid[21];
vecs_imgid[12] = vecs_std_imgid[4];
vecs_imgid[13] = vecs_std_imgid[13];
vecs_imgid[14] = vecs_std_imgid[22];
vecs_imgid[15] = vecs_std_imgid[5];
vecs_imgid[16] = vecs_std_imgid[14];
vecs_imgid[17] = vecs_std_imgid[23];
vecs_imgid[18] = vecs_std_imgid[6];
vecs_imgid[19] = vecs_std_imgid[15];
vecs_imgid[20] = vecs_std_imgid[24];
vecs_imgid[21] = vecs_std_imgid[7];
vecs_imgid[22] = vecs_std_imgid[16];
vecs_imgid[23] = vecs_std_imgid[25];
vecs_imgid[24] = vecs_std_imgid[8];
vecs_imgid[25] = vecs_std_imgid[17];
vecs_imgid[26] = vecs_std_imgid[26];
break;
case CUSTOM_ORIENT5:
vecs_imgid[0] = vecs_std_imgid[0];
vecs_imgid[1] = vecs_std_imgid[9];
vecs_imgid[2] = vecs_std_imgid[18];
vecs_imgid[3] = vecs_std_imgid[3];
vecs_imgid[4] = vecs_std_imgid[12];
vecs_imgid[5] = vecs_std_imgid[21];
vecs_imgid[6] = vecs_std_imgid[6];
vecs_imgid[7] = vecs_std_imgid[15];
vecs_imgid[8] = vecs_std_imgid[24];
vecs_imgid[9] = vecs_std_imgid[1];
vecs_imgid[10] = vecs_std_imgid[10];
vecs_imgid[11] = vecs_std_imgid[19];
vecs_imgid[12] = vecs_std_imgid[4];
vecs_imgid[13] = vecs_std_imgid[13];
vecs_imgid[14] = vecs_std_imgid[22];
vecs_imgid[15] = vecs_std_imgid[7];
vecs_imgid[16] = vecs_std_imgid[16];
vecs_imgid[17] = vecs_std_imgid[25];
vecs_imgid[18] = vecs_std_imgid[2];
vecs_imgid[19] = vecs_std_imgid[11];
vecs_imgid[20] = vecs_std_imgid[20];
vecs_imgid[21] = vecs_std_imgid[5];
vecs_imgid[22] = vecs_std_imgid[14];
vecs_imgid[23] = vecs_std_imgid[23];
vecs_imgid[24] = vecs_std_imgid[8];
vecs_imgid[25] = vecs_std_imgid[17];
vecs_imgid[26] = vecs_std_imgid[26];
break;
case REAL_TARGETS:
init_imgids(true);
break;
case REAL_PTS:
// idxr_radius = 3.0f;
// idxr_fontsize = 2;
vecs_imgid = vecs_absoluteimgid;
break;
case REAL_GAP:
is_realtarget_drawn = true;
// idxr_radius = 3.0f;
// idxr_fontsize = 2;
init_imgids(true);
case RESAMPLED:
resampledist_method1();
break;
default:
vecs_imgid = vecs_std_imgid;
}
}
void Viewer::scattercount()
{
float precision=2;
float threshold=0;
size_t init_tmp, end_tmp;
std::vector<GLfloat> vec_tmp, vec_dist;
std::vector< std::vector<GLfloat> > vecs_scatplotround, vecs_scatplottmp;
// First compression attempt
init_scattersize = vecs_scatterplot.size();
std::sort(vecs_scatterplot.begin(), vecs_scatterplot.end());
vecs_scatterplot.erase(std::unique(vecs_scatterplot.begin(), vecs_scatterplot.end()), vecs_scatterplot.end());
final_scattersize = vecs_scatterplot.size();
std::cout << std::endl;
std::cout << std::endl << "__FIRST_ATTEMPT__";
std::cout << std::endl << "Duplicate removal compression: ";
std::cout << std::endl << "Initial cloud points n#: " << init_scattersize;
std::cout << std::endl << "Removed duplicates: " << init_scattersize-final_scattersize;
std::cout << std::endl << "Final cloud points n#: " << final_scattersize;
std::cout << std::endl;
threshold = 0.01*maxdist(vecs_scatterplot);
std::cout << std::endl << "Threshold = " << threshold << std::endl;
// Second compression attempt, rounding floating point
std::cout << std::endl << "__SECOND_ATTEMPT__";
for (std::vector< std::vector<GLfloat> >::iterator iter = vecs_scatterplot.begin(); iter!=vecs_scatterplot.end(); iter++)
{
vec_tmp.clear();
for (std::vector<GLfloat>::iterator jter = (*iter).begin(); jter!=(*iter).end(); jter++)
{
vec_tmp.push_back(roundf((*jter)*pow(10, precision))/pow(10, precision));
}
vecs_scatplotround.push_back(vec_tmp);
}
init_tmp = vecs_scatplotround.size();
std::sort(vecs_scatplotround.begin(), vecs_scatplotround.end());
vecs_scatplotround.erase(std::unique(vecs_scatplotround.begin(), vecs_scatplotround.end()), vecs_scatplotround.end());
end_tmp = vecs_scatplotround.size();
std::cout << std::endl << "For precision = " << precision << " :";
std::cout << std::endl << "Initial cloud points n#: " << init_tmp;
std::cout << std::endl << "Removed duplicates: " << init_tmp-end_tmp;
std::cout << std::endl << "Final cloud points n#: " << end_tmp;
std::cout << std::endl;
// Third attempt on identifying minimal euclidean distance, cancelled
// for (std::vector< std::vector<GLfloat> >::iterator iter = vecs_scatterplot.begin(); iter!=vecs_scatterplot.end(); iter++)
// {
// GLfloat min = 123456789.0f;
// for (std::vector< std::vector<GLfloat> >::iterator jter = vecs_scatterplot.begin(); jter!=vecs_scatterplot.end(); jter++)
// {
// if (iter!=jter)
// {
// //std::cout << std::endl << "Indices : " << vecs_scatterplot.end()-iter << " < > " << vecs_scatterplot.end()-jter;
// min = PROCEDURAL_MIN(min, euclidist(*iter,*jter));
// }
// }
// vec_dist.push_back(min);
// }
// std::stringstream ss_dist;
// for (std::vector<GLfloat>::iterator iter=vec_dist.begin(); iter!=vec_dist.end(); iter++)
// {
// ss_dist << *iter << std::endl;
// }
// PUtils::save("dist.tmp", ss_dist);
// Fourth attempt compressing from minimal euclidian distance
vecs_scatplotround = vecs_scatterplot;
init_tmp = vecs_scatplotround.size();
for (std::vector< std::vector<GLfloat> >::iterator iter = vecs_scatplotround.begin(); iter!=vecs_scatplotround.end(); iter++)
{
for (std::vector< std::vector<GLfloat> >::iterator jter = vecs_scatplotround.begin(); jter!=vecs_scatplotround.end(); jter++)
{
if (iter!=jter)
{
if (euclidist(*iter,*jter)<threshold)
{
vecs_scatplotround.erase(jter);
jter--;
}
}
//std::cout << std::endl << "jter: " << vecs_scatplotround.end()-jter << " size: ";
}
}
end_tmp = vecs_scatplotround.size();
std::cout << std::endl;
std::cout << std::endl << "__FOURTH_ATTEMPT__";
std::cout << std::endl << "Euclidian compression: ";
std::cout << std::endl << "Initial cloud points n#: " << init_tmp;
std::cout << std::endl << "Removed duplicates: " << init_tmp-end_tmp;
std::cout << std::endl << "Final cloud points n#: " << end_tmp;
std::cout << std::endl;
// Fifth attempt compressing from minimal euclidian distance
vecs_scatplottmp = vecs_scatterplot;
init_tmp = vecs_scatplottmp.size();
for (std::vector< std::vector<GLfloat> >::iterator iter = vecs_scatplottmp.begin(); iter!=vecs_scatplottmp.end(); iter++)
{
for (std::vector< std::vector<GLfloat> >::iterator jter = iter+1; jter!=vecs_scatplottmp.end(); jter++)
{
//std::cout << std::endl << "distance = " << euclidist(*iter,*jter);
if (euclidist(*iter,*jter)<threshold)
{
jter = vecs_scatplottmp.erase(jter);
// iter--;
// break;
jter--;
}
}
}
end_tmp = vecs_scatplottmp.size();
std::cout << std::endl;
std::cout << std::endl << "__FIFTH_ATTEMPT__";
std::cout << std::endl << "Alternative Euclidian compression: ";
std::cout << std::endl << "Initial cloud points n#: " << init_tmp;
std::cout << std::endl << "Removed duplicates: " << init_tmp-end_tmp;
std::cout << std::endl << "Final cloud points n#: " << end_tmp;
std::cout << std::endl;
std::stringstream ss_scatterplot;
for (std::vector< std::vector<GLfloat> >::iterator iter = vecs_scatplottmp.begin(); iter!=vecs_scatplottmp.end(); iter++)
{
for (std::vector<GLfloat>::iterator jter = (*iter).begin(); jter!=(*iter).end(); jter++)
{
if (jter!=(*iter).begin())
ss_scatterplot << ',';
ss_scatterplot << (*jter);
}
ss_scatterplot << std::endl;
}
PUtils::save("scatterplot.tmp", ss_scatterplot);
init_imgids(true);
resampledist_method2();
resampledist_method3();
}
GLfloat Viewer::euclidist(const std::vector<float>& _pt1, const std::vector<float>& _pt2)
{
GLfloat value=-1;
if (_pt1.size()==_pt2.size())
{
value = 0;
for (int i=0; i<_pt1.size(); i++)
{
value += pow((_pt1[i]-_pt2[i]), 2.0f);
}
value = sqrt(value);
}
else
{
std::cout << std::endl << "Warning: Attempt to compare unequal sized vectors!";
}
return value;
}
GLfloat Viewer::maxdist(std::vector< std::vector<GLfloat> >& _src)
{
GLfloat value=0;
for (size_t i=0; i<_src.size(); i++)
{
for (size_t j=0; j<_src.size(); j++)
{
value = PROCEDURAL_MAX(value, euclidist(_src[i],_src[j]));
}
}
return value;
}
void Viewer::resampledist_method1()
{
uint idx_tmp;
GLfloat min = 123456789.0f;
GLfloat min_tmp = 123456789.0f;
float sum_min=0;
vec_absolresampld1.clear();
if (vecs_absoluteimgid.size()==vecs_imgid.size())
{
init_imgids(true);
for (unsigned int i=0; i<vecs_imgid.size(); i++)
{
min = min_tmp = 123456789.0f;
for (unsigned int j=0; j<vecs_absoluteimgid.size(); j++)
{
min = PROCEDURAL_MIN(min, euclidist(vecs_imgid[i], vecs_absoluteimgid[j]));
if (min<min_tmp)
{
idx_tmp = j;
min_tmp = min;
}
}
vec_absolresampld1.push_back(idx_tmp);
sum_min+=min_tmp;
}
std::vector<uint> vec_absolresuniq = vec_absolresampld1;
std::sort(vec_absolresuniq.begin(), vec_absolresuniq.end());
vec_absolresuniq.erase(std::unique(vec_absolresuniq.begin(), vec_absolresuniq.end()), vec_absolresuniq.end());
// std::cout << std::endl;
// std::cout << std::endl << "Dropped Images After Resampling: " << vec_absolresampld.size()-vec_absolresuniq.size();
// std::cout << std::endl << "Final Images N#: " << vec_absolresuniq.size();
// std::cout << std::endl << "Images Kept Indices: ";
// for (unsigned int i=0; i<vec_absolresuniq.size(); i++)
// {
// std::cout << vec_absolresuniq[i]+1;
// if (i<vec_absolresuniq.size())
// std::cout << ", ";
// }
// std::cout << std::endl;
std::cout << std::endl << "Resample Dist Method 1: min sum = " << sum_min;
}
}
void Viewer::resampledist_method2()
{
std::vector< std::vector<GLfloat> >::iterator minter;
std::vector< std::vector<GLfloat> > vecs_imgid_tmp, vecs_absoluteimgid_res;
std::vector<uint> vec_idxrespld;
float min_tmp;
vecs_imgid_tmp = vecs_imgid;
float sum_min=0;
vec_absolresampld2.clear();
std::cout << std::endl << "Processing call for resampledist_method2() ..." ;
for (unsigned int j=0; j<vecs_absoluteimgid.size(); j++)
{
float dist_tmp;
min_tmp = euclidist(vecs_imgid_tmp.front(), vecs_absoluteimgid[j]);
minter = vecs_imgid_tmp.begin();
for (std::vector< std::vector<GLfloat> >::iterator iter = vecs_imgid_tmp.begin(); iter!=vecs_imgid_tmp.end(); iter++)
{
dist_tmp = euclidist(*iter, vecs_absoluteimgid[j]);
//std::cout << std::endl << "Resample Dist Method 2: all dist = " << min_tmp;
if (dist_tmp<min_tmp)
{
minter = iter;
min_tmp = dist_tmp;
}
}
//std::cout << std::endl << "Resample Dist Method 2: min dist = " << min_tmp;
vecs_absoluteimgid_res.push_back(*minter);
vecs_imgid_tmp.erase(minter);
sum_min += min_tmp;
}
std::cout << std::endl << "Resample Dist Method 2: min sum = " << sum_min;
// Converting points to indices so that we know what to draw
for (unsigned int i=0; i<vecs_absoluteimgid_res.size(); i++)
{
for (unsigned int j=0; j<vecs_imgid.size(); j++)
{
if (euclidist(vecs_absoluteimgid_res[i], vecs_imgid[j])<0.001)
{
vec_idxrespld.push_back(j);
break;
}
}
}
// Printing result
std::cout << std::endl;
std::cout << std::endl << "Newly established matching: " ;
for (unsigned int i=0; i<vec_idxrespld.size(); i++)
{
std::cout << std::endl << "Image " << i+1 << "\t=>\t" << "Point #" << vec_idxrespld.at(i)+1;
}
vec_absolresampld2 = vec_idxrespld;
}
void Viewer::resampledist_method3()
{
std::vector< std::vector<GLfloat> >::iterator imgter, abster;
std::vector< std::vector<GLfloat> > vecs_imgid_tmp, vecs_absoluteimgid_tmp;
std::vector< std::vector<GLfloat> > vecs_distmx;
std::map<uint, uint> map_idx;
std::vector<uint> vec_imgidx, vec_absimgidx;
float min_tmp;
float sum_min=0;
vecs_imgid_tmp = vecs_imgid;
vecs_absoluteimgid_tmp = vecs_absoluteimgid;
vec_absolresampld3.clear();
std::cout << std::endl << "Processing call for resampledist_method3() ..." ;
if ((vecs_absoluteimgid_tmp.size()==vecs_imgid_tmp.size())&&(!vecs_absoluteimgid_tmp.empty()))
{
for (imgter = vecs_imgid_tmp.begin(); imgter!=vecs_imgid_tmp.end(); imgter++)
{
std::vector<GLfloat> vec_disttmp;
for (std::vector< std::vector<GLfloat> >::iterator abster = vecs_absoluteimgid_tmp.begin(); abster!=vecs_absoluteimgid_tmp.end(); abster++)
{
vec_disttmp.push_back(euclidist(*imgter, *abster));
}
vecs_distmx.push_back(vec_disttmp);
}
//Output temporarily matrix
std::stringstream ss_tmp;
QVector<GLfloat> qvec_tmp;
QVector< QVector<GLfloat> > qvecs_mx_tmp;
for (unsigned int i=0; i<vecs_distmx.size(); i++)
{
qvec_tmp.clear();
for (unsigned int j=0; j<vecs_distmx.at(i).size(); j++)
{
qvec_tmp.push_back(vecs_distmx.at(i).at(j));
}
qvecs_mx_tmp.push_back(qvec_tmp);
}
PUtils::data_to_csv(ss_tmp, qvecs_mx_tmp);
PUtils::save("dist_mx.csv", ss_tmp);
for (uint i=0; i<vecs_absoluteimgid_tmp.size(); i++)
{
vec_imgidx.push_back(i);
vec_absimgidx.push_back(i);
}
while (!vecs_distmx.empty())
{
float min_tmp = vecs_distmx[0][0];
uint min_idx1=0, min_idx2=0;
for (uint i=0; i<vecs_distmx.size(); i++)
{
for (uint j=0; j<vecs_distmx[i].size(); j++)
{
if (min_tmp>vecs_distmx[i][j])
{
min_tmp = vecs_distmx[i][j];
min_idx1 = i;
min_idx2 = j;
}
}
}
sum_min+=min_tmp;
map_idx.insert(std::pair<uint,uint>(vec_imgidx[min_idx1], vec_absimgidx[min_idx2]));
vec_imgidx.erase(vec_imgidx.begin()+min_idx1);
vec_absimgidx.erase(vec_absimgidx.begin()+min_idx2);
for (uint i=0; i<vecs_distmx.size(); i++)
{
vecs_distmx[i].erase(vecs_distmx[i].begin()+min_idx2);
}
vecs_distmx.erase(vecs_distmx.begin()+min_idx1);
}
std::cout << std::endl << "Resample Dist Method 3:";
for (std::map<uint, uint>::iterator map_iter = map_idx.begin(); map_iter!=map_idx.end(); map_iter++)
{
std::cout << std::endl << "Image " << map_iter->first+1 << "\t=>\t Point #" << map_iter->second+1;
}
std::cout << std::endl << "Resample Dist Method 3: min sum = " << sum_min;
}
for (uint i=0; i<map_idx.size(); i++)
vec_absolresampld3.push_back(map_idx.at(i));
// for (uint j=0; j<map_idx.size(); j++)
// if (map_idx.at(j) == i)
// {
// vec_absolresampld3.push_back(j);
// break;
// }
std::cout << std::endl << "Resample Dist Method 3 Computed.";
}
void Viewer::load_matching(std::string _filename)
{
std::stringstream ss_match;
std::vector<std::vector <std::string> > vecs_match;
vec_absolresampld_man.clear();
PUtils::load(_filename.c_str(), ss_match);
PUtils::csv_to_data(vecs_match, ss_match);
if (vecs_match.size()!=1)
std::cout << std::endl << "Vector size retrieved for manual matching is inconsistent!";
else
{
if (vecs_match.at(0).size()!=IMAGE_NB)
{
std::cout << std::endl << "Expected entries number are " << IMAGE_NB << " but the application could retrieve " << vecs_match.at(0).size() << " !";
}
else
{
for (size_t i=0; i<vecs_match.at(0).size(); i++)
{
uint tmp;
std::stringstream ss_tmp;
ss_tmp << vecs_match.at(0).at(i);
ss_tmp >> tmp;
vec_absolresampld_man.push_back(tmp);
}
}
}
}
void Viewer::update_qlfrfilter()
{
std::vector< std::vector<std::string> > vecs_datas;
std::ifstream filterfile("qlfr_filter.csv");
std::stringstream ss;
ss << filterfile.rdbuf();
filterfile.close();
vec_qlfrfilter.clear();
PUtils::csv_to_data(vecs_datas, ss);
for (std::vector< std::vector<std::string> >::iterator iter = vecs_datas.begin(); iter != vecs_datas.end(); iter++)
{
for (std::vector<std::string>::iterator jter = (*iter).begin(); jter!=(*iter).end(); jter++)
{
std::string qlfr_tmp = (*jter);
boost::algorithm::to_lower(qlfr_tmp);
vec_qlfrfilter.push_back(qlfr_tmp);
}
}
}
std::vector<size_t> Viewer::check_neighbours(std::vector< std::vector<float> >& _vecs_clouds, std::vector<float> _target, unsigned int _neighbours)
{
std::vector<size_t> value_all, value;
std::vector<float> vec_dist;
for (std::vector< std::vector<float> >::iterator iter = _vecs_clouds.begin(); iter != _vecs_clouds.end(); iter++)
{
vec_dist.push_back(euclidist(*iter, _target));
}
value_all = ordered(vec_dist);
if (_neighbours<_vecs_clouds.size())
{
for (size_t i=0; i<_neighbours; i++)
value.push_back(value_all[i]);
}
else value = value_all;
return value;
}
std::vector< std::vector<float> > Viewer::getclouds()
{
std::vector< std::vector<float> > value;
size_t cloudsize = vec_xqlfr.size();
if ( cloudsize==vec_xqlfr.size()
&& cloudsize==vec_yqlfr.size()
&& cloudsize==vec_zqlfr.size()
)
{
for (size_t i=0; i<cloudsize; i++)
{
std::vector<float> tmp;
tmp.push_back(vec_xqlfr[i]);
tmp.push_back(vec_yqlfr[i]);
tmp.push_back(vec_zqlfr[i]);
value.push_back(tmp);
}
}
return value;
}
void Viewer::draw_obb(PBoundingBox& _obb)
{
if (_obb.getVecCorner().size()!=8) return;
drawline(_obb.getVecCorner()[0], _obb.getVecCorner()[1]);
drawline(_obb.getVecCorner()[1], _obb.getVecCorner()[2]);
drawline(_obb.getVecCorner()[2], _obb.getVecCorner()[3]);
drawline(_obb.getVecCorner()[3], _obb.getVecCorner()[0]);
drawline(_obb.getVecCorner()[4], _obb.getVecCorner()[5]);
drawline(_obb.getVecCorner()[5], _obb.getVecCorner()[6]);
drawline(_obb.getVecCorner()[6], _obb.getVecCorner()[7]);
drawline(_obb.getVecCorner()[7], _obb.getVecCorner()[4]);
drawline(_obb.getVecCorner()[0], _obb.getVecCorner()[4]);
drawline(_obb.getVecCorner()[1], _obb.getVecCorner()[5]);
drawline(_obb.getVecCorner()[2], _obb.getVecCorner()[6]);
drawline(_obb.getVecCorner()[3], _obb.getVecCorner()[7]);
}
void Viewer::draw_obb(PBoundingBox& _obb, GLfloat _red, GLfloat _green, GLfloat _blue)
{
if (_obb.getVecCorner().size()!=8) return;
drawline(_obb.getVecCorner()[0], _obb.getVecCorner()[1], _red, _green, _blue);
drawline(_obb.getVecCorner()[1], _obb.getVecCorner()[2], _red, _green, _blue);
drawline(_obb.getVecCorner()[2], _obb.getVecCorner()[3], _red, _green, _blue);
drawline(_obb.getVecCorner()[3], _obb.getVecCorner()[0], _red, _green, _blue);
drawline(_obb.getVecCorner()[4], _obb.getVecCorner()[5], _red, _green, _blue);
drawline(_obb.getVecCorner()[5], _obb.getVecCorner()[6], _red, _green, _blue);
drawline(_obb.getVecCorner()[6], _obb.getVecCorner()[7], _red, _green, _blue);
drawline(_obb.getVecCorner()[7], _obb.getVecCorner()[4], _red, _green, _blue);
drawline(_obb.getVecCorner()[0], _obb.getVecCorner()[4], _red, _green, _blue);
drawline(_obb.getVecCorner()[1], _obb.getVecCorner()[5], _red, _green, _blue);
drawline(_obb.getVecCorner()[2], _obb.getVecCorner()[6], _red, _green, _blue);
drawline(_obb.getVecCorner()[3], _obb.getVecCorner()[7], _red, _green, _blue);
}
void Viewer::drawline(CGLA::Vec3f _pt1, CGLA::Vec3f _pt2)
{
glPushAttrib(GL_CURRENT_BIT);
glColor3f(1.0,0.0,0.0);
glLineWidth(2);
glBegin(GL_LINES);
glVertex3f(_pt1[0], _pt1[1], _pt1[2]);
glVertex3f(_pt2[0], _pt2[1], _pt2[2]);
glEnd();
glPopAttrib();
}
void Viewer::drawline(CGLA::Vec3f _pt1, CGLA::Vec3f _pt2, GLfloat _red, GLfloat _green, GLfloat _blue)
{
glPushAttrib(GL_CURRENT_BIT);
glColor3f(_red,_green,_blue);
glLineWidth(2);
glBegin(GL_LINES);
glVertex3f(_pt1[0], _pt1[1], _pt1[2]);
glVertex3f(_pt2[0], _pt2[1], _pt2[2]);
glEnd();
glPopAttrib();
}
void Viewer::update_obbdisplay()
{
vec_obbdisplayed.clear();
for (std::vector<PBoundingBox>::iterator iter = vec_obb.begin(); iter != vec_obb.end(); iter++)
vec_obbdisplayed.push_back(true);
for (std::vector<PBoundingBox>::iterator iter = vec_obb_resampled.begin(); iter != vec_obb_resampled.end(); iter++)
vec_obbdisplayed.push_back(true);
}
void Viewer::update_obbdisplay(std::vector<bool>& _vec_obbdisplayed)
{
if (vec_obbdisplayed.size() == _vec_obbdisplayed.size())
{
for (int i=0; i < vec_obbdisplayed.size(); i++)
vec_obbdisplayed[i] = _vec_obbdisplayed[i];
}
}
std::vector< GLfloat > Viewer::mean(const std::vector< std::vector<GLfloat> >& _vec_clouds)
{
std::vector< GLfloat > value;
size_t s;
if (!_vec_clouds.empty())
{
s = _vec_clouds.front().size();
if (s!= 0)
{
for (int i=0; i < s; i++)
value.push_back(0);
for (std::vector< std::vector<GLfloat> >::const_iterator iter = _vec_clouds.begin(); iter != _vec_clouds.end(); iter++)
{
if ((*iter).size() == s)
for (int i=0; i < s; i++)
{
value[i] += (*iter)[i];
}
}
for (int i=0; i < s; i++)
value[i] /= _vec_clouds.size();
}
}
return value;
}
std::vector< std::vector<GLfloat> > Viewer::compute_center(const std::vector< std::vector< std::vector<GLfloat> > >& _vecs_clouds)
{
std::vector< std::vector<GLfloat> > value;
std::vector<GLfloat> vec_tmp;
for (std::vector< std::vector< std::vector<GLfloat> > >::const_iterator iter = _vecs_clouds.begin(); iter != _vecs_clouds.end(); iter++)
{
vec_tmp = mean(*iter);
value.push_back(vec_tmp);
}
return value;
}
void Viewer::save_obbcenter(std::string _filename, const std::vector<PBoundingBox>& _vec_obb)
{
std::ofstream filetmp(_filename.c_str());
std::stringstream ss;
std::vector< std::vector< std::vector<GLfloat> > > vec_obbcorners;
std::vector< std::vector<GLfloat> > vecs_tmp, vec_obbcenter;
if (filetmp.is_open())
{
for (std::vector<PBoundingBox>::const_iterator iter = _vec_obb.begin(); iter != _vec_obb.end(); iter++)
{
std::vector<GLfloat> vec_tmp;
vecs_tmp.clear();
for (size_t i=0; i < (*iter).getVecCorner().size(); i++)
{
vec_tmp.clear();
vec_tmp.push_back((*iter).getVecCorner()[i][0]);
vec_tmp.push_back((*iter).getVecCorner()[i][1]);
vec_tmp.push_back((*iter).getVecCorner()[i][2]);
vecs_tmp.push_back(vec_tmp);
}
vec_obbcorners.push_back(vecs_tmp);
}
vec_obbcenter = compute_center(vec_obbcorners);
PUtils::data_to_csv(ss, vec_obbcenter);
filetmp << ss.str();
filetmp.close();
}
}
void Viewer::save_obbcenter(std::string _filename)
{
std::ofstream filetmp(_filename.c_str());
std::stringstream ss;
std::vector< std::vector< std::vector<GLfloat> > > vec_obbcorners;
std::vector< std::vector<GLfloat> > vecs_tmp, vec_obbcenter;
if (filetmp.is_open())
{
for (std::vector<PBoundingBox>::const_iterator iter = vec_obb_resampled.begin(); iter != vec_obb_resampled.end(); iter++)
{
std::vector<GLfloat> vec_tmp;
vecs_tmp.clear();
for (size_t i=0; i < (*iter).getVecCorner().size(); i++)
{
vec_tmp.clear();
vec_tmp.push_back((*iter).getVecCorner()[i][0]);
vec_tmp.push_back((*iter).getVecCorner()[i][1]);
vec_tmp.push_back((*iter).getVecCorner()[i][2]);
vecs_tmp.push_back(vec_tmp);
}
vec_obbcorners.push_back(vecs_tmp);
}
vec_obbcenter = compute_center(vec_obbcorners);
PUtils::data_to_csv(ss, vec_obbcenter);
filetmp << ss.str();
filetmp.close();
}
}
void Viewer::save_obbcorner(std::string _filenameprefix, const std::vector<PBoundingBox>& _vec_obb)
{
std::stringstream ss;
std::vector< std::vector< std::vector<GLfloat> > > vec_obbcorners;
std::vector< std::vector<GLfloat> > vecs_tmp;
int suffix = 1;
for (std::vector<PBoundingBox>::const_iterator iter = _vec_obb.begin(); iter != _vec_obb.end(); iter++)
{
std::string filename_tmp(_filenameprefix);
std::vector<GLfloat> vec_tmp;
vecs_tmp.clear();
for (size_t i=0; i < (*iter).getVecCorner().size(); i++)
{
vec_tmp.clear();
vec_tmp.push_back((*iter).getVecCorner()[i][0]);
vec_tmp.push_back((*iter).getVecCorner()[i][1]);
vec_tmp.push_back((*iter).getVecCorner()[i][2]);
vecs_tmp.push_back(vec_tmp);
}
vec_obbcorners.push_back(vecs_tmp);
ss.str("");
filename_tmp += "_";
filename_tmp += PUtils::float_to_stdstr((float)suffix);
filename_tmp += ".csv";
std::ofstream filetmp(filename_tmp.c_str());
if (filetmp.is_open())
{
PUtils::data_to_csv(ss, vecs_tmp);
filetmp << ss.str();
filetmp.close();
}
suffix++;
}
}
std::vector< std::vector<GLfloat> > Viewer::remove_furthest(std::vector< std::vector<GLfloat> > _vecs_clouds, std::vector<float> _target, unsigned int _remove_neighbours)
{
std::vector< std::vector<GLfloat> > value;
std::vector<size_t> vec_idx;
std::vector<float> vec_dist;
for (std::vector< std::vector<float> >::iterator iter = _vecs_clouds.begin(); iter != _vecs_clouds.end(); iter++)
{
vec_dist.push_back(euclidist(*iter, _target));
}
vec_idx = ordered(vec_dist);
if (_remove_neighbours<vec_idx.size())
for (size_t i=0; i<vec_idx.size()-_remove_neighbours; i++)
{
value.push_back(_vecs_clouds[vec_idx[i]]);
}
else value = _vecs_clouds;
return value;
}
/*
void Viewer::resample_obb()
{
std::vector< std::vector< std::vector<GLfloat> > >::iterator iter_clouds;
std::vector< std::vector<GLfloat> >::iterator iter_center;
std::vector< std::vector<GLfloat> > vecs_tmp, vec_obbcenter;
std::vector< std::vector< std::vector<GLfloat> > > vec_obbcorners;
std::vector<CGLA::Vec3f> vec_vertices;
vecs_obb_cloudsresampled.clear();
for (std::vector<PBoundingBox>::const_iterator iter = vec_obb.begin(); iter != vec_obb.end(); iter++)
{
std::vector<GLfloat> vec_tmp;
vecs_tmp.clear();
for (size_t i=0; i < (*iter).getVecCorner().size(); i++)
{
vec_tmp.clear();
vec_tmp.push_back((*iter).getVecCorner()[i][0]);
vec_tmp.push_back((*iter).getVecCorner()[i][1]);
vec_tmp.push_back((*iter).getVecCorner()[i][2]);
vecs_tmp.push_back(vec_tmp);
}
vec_obbcorners.push_back(vecs_tmp);
}
vec_obbcenter = compute_center(vec_obbcorners);
for (iter_clouds = vecs_obb_clouds.begin(), iter_center = vec_obbcenter.begin(); iter_clouds != vecs_obb_clouds.end() && iter_center != vec_obbcenter.end(); iter_clouds++, iter_center++)
{
int remove_neighbours = (int)(7*(*iter_clouds).size());
remove_neighbours /= 100;
std::vector< std::vector<GLfloat> > vecs_tmp = remove_furthest(*iter_clouds, *iter_center, remove_neighbours);
vecs_obb_cloudsresampled.push_back(vecs_tmp);
}
for (iter_clouds = vecs_obb_cloudsresampled.begin(); iter_clouds != vecs_obb_cloudsresampled.end(); iter_clouds++)
{
PBoundingBox* pobb = new PBoundingBox();
vec_vertices.clear();
for (std::vector< std::vector<GLfloat> >::iterator iter = (*iter_clouds).begin(); iter != (*iter_clouds).end(); iter++)
{
vec_vertices.push_back(CGLA::Vec3f((*iter)[0], (*iter)[1], (*iter)[2]));
}
pobb->compute_corner(vec_vertices);
vec_obb_resampled.push_back(*pobb);
delete pobb;
}
}
*/
void Viewer::resample_obb()
{
std::vector< std::vector< std::vector<GLfloat> > >::iterator iter_clouds;
std::vector< std::vector<GLfloat> >::iterator iter_center;
std::vector< std::vector<GLfloat> > vecs_tmp, vec_obbcenter;
std::vector< std::vector< std::vector<GLfloat> > > vec_obbcorners;
std::vector<CGLA::Vec3f> vec_vertices;
vecs_obb_cloudsresampled.clear();
for (std::vector<PBoundingBox>::const_iterator iter = vec_obb.begin(); iter != vec_obb.end(); iter++)
{
std::vector<GLfloat> vec_tmp;
vecs_tmp.clear();
for (size_t i=0; i < (*iter).getVecCorner().size(); i++)
{
vec_tmp.clear();
vec_tmp.push_back((*iter).getVecCorner()[i][0]);
vec_tmp.push_back((*iter).getVecCorner()[i][1]);
vec_tmp.push_back((*iter).getVecCorner()[i][2]);
vecs_tmp.push_back(vec_tmp);
}
vec_obbcorners.push_back(vecs_tmp);
}
// We want to compute the distance from the cloud means this time
//vec_obbcenter = compute_center(vec_obbcorners);
vec_obbcenter = compute_center(vecs_obb_clouds);
for (iter_clouds = vecs_obb_clouds.begin(), iter_center = vec_obbcenter.begin(); iter_clouds != vecs_obb_clouds.end() && iter_center != vec_obbcenter.end(); iter_clouds++, iter_center++)
{
int remove_neighbours = (int)(7*(*iter_clouds).size());
remove_neighbours /= 100;
std::vector< std::vector<GLfloat> > vecs_tmp = remove_furthest(*iter_clouds, *iter_center, remove_neighbours);
vecs_obb_cloudsresampled.push_back(vecs_tmp);
}
for (iter_clouds = vecs_obb_cloudsresampled.begin(); iter_clouds != vecs_obb_cloudsresampled.end(); iter_clouds++)
{
PBoundingBox* pobb = new PBoundingBox();
vec_vertices.clear();
for (std::vector< std::vector<GLfloat> >::iterator iter = (*iter_clouds).begin(); iter != (*iter_clouds).end(); iter++)
{
vec_vertices.push_back(CGLA::Vec3f((*iter)[0], (*iter)[1], (*iter)[2]));
}
pobb->compute_corner(vec_vertices);
vec_obb_resampled.push_back(*pobb);
delete pobb;
}
}
void Viewer::save_obbvol()
{
std::stringstream ss;
std::ofstream fileobb("obbvol.csv");
ss.str("");
if (fileobb.is_open())
{
std::vector< std::vector<GLfloat> > vecs_vol_tmp;
for (std::vector<PBoundingBox>::iterator iter = vec_obb.begin(); iter != vec_obb.end(); iter++)
vec_obbvol.push_back((*iter).volume());
vecs_vol_tmp.push_back(vec_obbvol);
PUtils::data_to_csv(ss, vecs_vol_tmp);
fileobb << ss.str();
fileobb.close();
}
std::ofstream fileobbres("obbvolres.csv");
ss.str("");
if (fileobbres.is_open())
{
std::vector< std::vector<GLfloat> > vecs_vol_tmp;
for (std::vector<PBoundingBox>::iterator iter = vec_obb_resampled.begin(); iter != vec_obb_resampled.end(); iter++)
vec_obbvol_resampled.push_back((*iter).volume());
vecs_vol_tmp.push_back(vec_obbvol_resampled);
PUtils::data_to_csv(ss, vecs_vol_tmp);
fileobbres << ss.str();
fileobbres.close();
}
}
bool Viewer::is_within(PBoundingBox& _obb, std::vector<GLfloat> _pt)
{
CGLA::Mat3x3f transfer_matrix;
CGLA::Vec3f vec3f_center_tmp, vec3f_pt, vec3f_pt_proj;
std::vector<GLfloat> vec_gltmp;
bool value = false;
vec3f_center_tmp = _obb.center();
vec3f_pt = CGLA::Vec3f(_pt[0],_pt[1],_pt[2]);
CGLA::Vec3f vec3f_u = _obb.u();
CGLA::Vec3f vec3f_v = _obb.v();
CGLA::Vec3f vec3f_w = _obb.w();
CGLA::Vec3f vec1, vec2, vec3;
vec1 = CGLA::Vec3f(vec3f_w[0], vec3f_w[1], vec3f_w[2]);
vec2 = CGLA::Vec3f(vec3f_v[0], vec3f_v[1], vec3f_v[2]);
vec3 = CGLA::Vec3f(vec3f_u[0], vec3f_u[1], vec3f_u[2]);
//transfer_matrix = CGLA::Mat3x3f(vec1, vec2, vec3);
transfer_matrix = CGLA::Mat3x3f(vec3f_w, vec3f_v, vec3f_u);
//vec3f_pt = CGLA::Vec3f(vec3f_pt[0]-vec3f_center_tmp[0], vec3f_pt[1]-vec3f_center_tmp[1], vec3f_pt[2]-vec3f_center_tmp[2]);
//transfer_matrix = CGLA::invert(transfer_matrix);
vec3f_center_tmp.operator *=(-1);
vec3f_pt_proj = PBoundingBox::change_basis(vec3f_pt, vec3f_center_tmp, transfer_matrix);
value = ((fabs(vec3f_pt_proj[2])-0.01)<=_obb.length()*0.5) && ((fabs(vec3f_pt_proj[1])-0.01)<=_obb.width()*0.5) && ((fabs(vec3f_pt_proj[0])-0.01)<=_obb.height()*0.5);
return value;
}
float Viewer::belong_rates(PBoundingBox& _obb, std::vector < std::vector<GLfloat> >& _vec_pts)
{
float value = 0;
size_t belong_nb = 0;
for (std::vector < std::vector<GLfloat> >::iterator iter = _vec_pts.begin(); iter != _vec_pts.end(); iter++)
{
if (is_within(_obb, *iter))
belong_nb++;
}
if (!_vec_pts.empty())
value = (float)belong_nb/_vec_pts.size();
return value;
}
void Viewer::save_belongrates()
{
std::ofstream filerates("belongrates.csv");
std::stringstream ss;
std::vector< std::vector<float> > vecs_belongs;
std::vector<float> vec_belongs_tmp;
float rate_tmp;
for (std::vector<PBoundingBox>::iterator iter_box = vec_obb.begin(); iter_box != vec_obb.end(); iter_box++)
{
vec_belongs_tmp.clear();
for(std::vector< std::vector< std::vector<GLfloat> > >::iterator iter_clouds = vecs_obb_clouds.begin(); iter_clouds != vecs_obb_clouds.end(); iter_clouds++)
{
vec_belongs_tmp.push_back(belong_rates(*iter_box, *iter_clouds));
}
vecs_belongs.push_back(vec_belongs_tmp);
}
if (filerates.is_open())
{
PUtils::data_to_csv(ss, vecs_belongs);
filerates << ss.str();
filerates.close();
}
}
void Viewer::save_belongrates_regen()
{
std::ofstream filerates("belongrates_regen.csv");
std::stringstream ss;
std::vector< std::vector<float> > vecs_belongs;
std::vector<float> vec_belongs_tmp;
float rate_tmp;
for (std::vector<PBoundingBox>::iterator iter_box = vec_obb_resampled.begin(); iter_box != vec_obb_resampled.end(); iter_box++)
{
vec_belongs_tmp.clear();
for(std::vector< std::vector< std::vector<GLfloat> > >::iterator iter_clouds = vecs_obb_cloudsresampled.begin(); iter_clouds != vecs_obb_cloudsresampled.end(); iter_clouds++)
{
vec_belongs_tmp.push_back(belong_rates(*iter_box, *iter_clouds));
}
vecs_belongs.push_back(vec_belongs_tmp);
}
if (filerates.is_open())
{
PUtils::data_to_csv(ss, vecs_belongs);
filerates << ss.str();
filerates.close();
}
}
void Viewer::save_averages_dist()
{
std::ofstream filerates("averages_matrix_res.csv");
std::stringstream ss;
std::vector< std::vector< GLfloat > > vecs_mean, vecs_matrix;
//vecs_mean = compute_center(vecs_obb_cloudsresampled);
vecs_mean = compute_center(vecs_obb_clouds);
//vecs_mean = compute_center(vecs_obb_cloudsresampled);
for(std::vector< std::vector<GLfloat> >::iterator iter = vecs_mean.begin(); iter != vecs_mean.end(); iter++)
{
std::vector< GLfloat > vec_tmp;
for(std::vector< std::vector<GLfloat> >::iterator jter = vecs_mean.begin(); jter != vecs_mean.end(); jter++)
{
vec_tmp.push_back(euclidist(*iter, *jter));
}
vecs_matrix.push_back(vec_tmp);
}
if (filerates.is_open())
{
PUtils::data_to_csv(ss, vecs_matrix);
filerates << ss.str();
filerates.close();
}
}
void Viewer::save_center_dist()
{
std::ofstream filerates("center_matrix_res.csv");
std::stringstream ss;
std::vector< std::vector< GLfloat > > vecs_matrix;
std::vector< std::vector<GLfloat> > vecs_tmp, vec_obbcenter;
std::vector< std::vector< std::vector<GLfloat> > > vec_obbcorners;
for (std::vector<PBoundingBox>::const_iterator iter = vec_obb_resampled.begin(); iter != vec_obb_resampled.end(); iter++)
{
std::vector<GLfloat> vec_tmp;
vecs_tmp.clear();
for (size_t i=0; i < (*iter).getVecCorner().size(); i++)
{
vec_tmp.clear();
vec_tmp.push_back((*iter).getVecCorner()[i][0]);
vec_tmp.push_back((*iter).getVecCorner()[i][1]);
vec_tmp.push_back((*iter).getVecCorner()[i][2]);
vecs_tmp.push_back(vec_tmp);
}
vec_obbcorners.push_back(vecs_tmp);
}
vec_obbcenter = compute_center(vec_obbcorners);
for(std::vector< std::vector<GLfloat> >::iterator iter = vec_obbcenter.begin(); iter != vec_obbcenter.end(); iter++)
{
std::vector< GLfloat > vec_tmp;
for(std::vector< std::vector<GLfloat> >::iterator jter = vec_obbcenter.begin(); jter != vec_obbcenter.end(); jter++)
{
vec_tmp.push_back(euclidist(*iter, *jter));
}
vecs_matrix.push_back(vec_tmp);
}
if (filerates.is_open())
{
PUtils::data_to_csv(ss, vecs_matrix);
filerates << ss.str();
filerates.close();
}
}
|
6ba079c142fff99edce5a490ddbcc0d2b7581652
|
b336f71641cf393a73f7dff08fdba677e8ec122f
|
/Polish_Notation_Translater(WinAPI)/Precompiled.h
|
3b8aacf27dfeb3b21291cb83b02e018738b89c99
|
[] |
no_license
|
Challanger524/Polish_Notation_Translater-WinAPI-
|
eb57239e9737dfbfc6d183dfda3d99a0061d05ec
|
5b206c0a1b739e2d3e69954dccc15f8545c7ba44
|
refs/heads/master
| 2022-05-03T06:42:43.708824
| 2022-03-14T12:33:52
| 2022-03-14T12:33:52
| 223,961,631
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,313
|
h
|
Precompiled.h
|
#pragma once
#include <Windows.h>
#include <CommCtrl.h>
#include <iostream>
#include <string_view>
#include <vector>
#include <array>
#include <stack>
#include <regex>
#include <thread>
#include <future>
#include <memory>
#include <cassert>
//for visual styles enabling
/*
#pragma comment(linker, \
"\"/manifestdependency:type='Win32' "\
"name='Microsoft.Windows.Common-Controls' "\
"version='6.0.0.0' "\
"processorArchitecture='*' "\
"publicKeyToken='6595b64144ccf1df' "\
"language='*'\"")
#pragma comment(lib, "ComCtl32.lib")
*/
using namespace std;
constexpr unsigned int G_SIZER = 128;
struct Timer {
Timer() : start{std::chrono::steady_clock::now()} {}
Timer(const Timer&) = delete;
Timer operator = (const Timer&) = delete;
~Timer() { cout << "\nTimer : " << static_cast<std::chrono::duration<float>>(std::chrono::steady_clock::now() - start).count() * 1000 << "ms\n"; }
std::chrono::duration<float> get() { return std::chrono::steady_clock::now() - start; }//sec
operator std::chrono::duration<float>() const { return std::chrono::steady_clock::now() - start; }
void Lap() { cout << "\nLap : " << static_cast<std::chrono::duration<float>>(std::chrono::steady_clock::now() - start).count() * 1000 << "ms\n"; }
private:
std::chrono::time_point<std::chrono::steady_clock> start;
};
|
eb2098e5011f352d55c4aece2d47871f84cb5866
|
a95fff02ba95fcda1e6956a83c18bb736c2973f3
|
/src/regkey_enumkeys.cpp
|
dd8e3ce10ac49a3acaaa756550a10e7ecaa14681
|
[
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] |
permissive
|
jilvan1234/winapi-wrapper
|
b905aaf34a9a4a4dfa3f311ed77e74456452778f
|
3d0e23bd1a7ee38996bf7b6947817ad35afae9f5
|
refs/heads/master
| 2021-06-07T19:22:23.650593
| 2016-11-24T23:27:48
| 2016-11-24T23:27:48
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 673
|
cpp
|
regkey_enumkeys.cpp
|
#include "winapi.h"
using namespace WinAPI;
int RegKey::EnumKeys( ENUMKEYS* p_keys ) const
{
p_keys->clear();
DWORD num_sub_keys = 0;
int retval = QueryInfo( &num_sub_keys );
if ( retval != ERROR_SUCCESS ) return retval;
p_keys->reserve( num_sub_keys );
for ( int i=num_sub_keys-1; i >= 0; i-- ) {
ENUMKEY ek;
ek.name.resize( 256 );
ek.key_class.resize( 256 );
DWORD name_len = 256;
DWORD key_class_len = 256;
retval = RegEnumKeyEx( hKey, i, &ek.name[0], &name_len, 0, &ek.key_class[0], &key_class_len, &ek.last_file_time );
if ( retval != ERROR_SUCCESS ) return retval;
p_keys->push_back( ek );
}
return ERROR_SUCCESS;
}
|
caf15dcd8da03a8a516218c5d16abd44fe20e624
|
846fe30d88cfc05765be550131645cae6a5e2631
|
/Chapter11-ScopeGuard/13a_scopeguard_te_benchmark.cpp
|
199efe3d6d0c0a7f261cf899301a2303e5c5aa2a
|
[
"MIT"
] |
permissive
|
shekerkamma/Hands-On-Design-Patterns-with-CPP
|
ac7ff377ee6898aa3ac9e0711e40bbdf3c9b3332
|
5f6aa05ac44491a92fef6e38179d1bd3c8e39347
|
refs/heads/master
| 2020-07-16T23:01:43.316132
| 2019-08-09T17:04:19
| 2019-08-09T17:04:19
| 205,886,406
| 4
| 1
|
MIT
| 2019-09-02T15:31:18
| 2019-09-02T15:31:17
| null |
UTF-8
|
C++
| false
| false
| 4,459
|
cpp
|
13a_scopeguard_te_benchmark.cpp
|
#include <functional>
#include "benchmark/benchmark.h"
#define REPEAT2(x) x x
#define REPEAT4(x) \
REPEAT2(x) \
REPEAT2(x)
#define REPEAT8(x) \
REPEAT4(x) \
REPEAT4(x)
#define REPEAT16(x) \
REPEAT8(x) \
REPEAT8(x)
#define REPEAT32(x) \
REPEAT16(x) \
REPEAT16(x)
#define REPEAT(x) REPEAT32(x)
namespace ScopeGuardTypeErased {
class ScopeGuard {
public:
template <typename Func>
ScopeGuard(Func&& func)
: commit_(false)
, func_(func)
{
}
template <typename Func>
ScopeGuard(const Func& func)
: commit_(false)
, func_(func)
{
}
~ScopeGuard()
{
if (!commit_)
func_();
}
void commit() const noexcept { commit_ = true; }
ScopeGuard(ScopeGuard&& other)
: commit_(other.commit_)
, func_(other.func_)
{
other.commit();
}
private:
mutable bool commit_;
std::function<void()> func_;
ScopeGuard& operator=(const ScopeGuard&) = delete;
};
} // namespace ScopeGuardTypeErased
namespace ScopeGuardTemplate {
class ScopeGuardBase {
public:
ScopeGuardBase()
: commit_(false)
{
}
void commit() const noexcept { commit_ = true; }
protected:
ScopeGuardBase(ScopeGuardBase&& other)
: commit_(other.commit_)
{
other.commit();
}
~ScopeGuardBase() {}
mutable bool commit_;
private:
ScopeGuardBase& operator=(const ScopeGuardBase&) = delete;
};
template <typename Func>
class ScopeGuard : public ScopeGuardBase {
public:
ScopeGuard(Func&& func)
: func_(func)
{
}
ScopeGuard(const Func& func)
: func_(func)
{
}
~ScopeGuard()
{
if (!commit_)
func_();
}
ScopeGuard(ScopeGuard&& other)
: ScopeGuardBase(std::move(other))
, func_(other.func_)
{
}
private:
Func func_;
};
template <typename Func>
ScopeGuard<Func> MakeGuard(Func&& func)
{
return ScopeGuard<Func>(std::forward<Func>(func));
}
} // namespace ScopeGuardTemplate
inline void noop() {}
void BM_type_erased_noop(benchmark::State& state)
{
for (auto _ : state) {
REPEAT({ ScopeGuardTypeErased::ScopeGuard SG([&] { noop(); }); })
}
state.SetItemsProcessed(32 * state.iterations());
}
void BM_template_noop(benchmark::State& state)
{
for (auto _ : state) {
REPEAT({ auto SG = ScopeGuardTemplate::MakeGuard([&] { noop(); }); })
}
state.SetItemsProcessed(32 * state.iterations());
}
void BM_free(benchmark::State& state)
{
void* p = NULL;
for (auto _ : state) {
benchmark::DoNotOptimize(p = malloc(8));
free(p);
}
state.SetItemsProcessed(state.iterations());
}
void BM_type_erased_free(benchmark::State& state)
{
void* p = NULL;
for (auto _ : state) {
benchmark::DoNotOptimize(p = malloc(8));
ScopeGuardTypeErased::ScopeGuard SG([&] { free(p); });
}
state.SetItemsProcessed(state.iterations());
}
void BM_template_free(benchmark::State& state)
{
void* p = NULL;
for (auto _ : state) {
benchmark::DoNotOptimize(p = malloc(8));
auto SG = ScopeGuardTemplate::MakeGuard([&] { free(p); });
}
state.SetItemsProcessed(state.iterations());
}
void BM_count(benchmark::State& state)
{
volatile int i = 0;
for (auto _ : state) {
REPEAT({
benchmark::DoNotOptimize(++i);
--i;
});
}
state.SetItemsProcessed(32 * state.iterations());
if (i)
abort();
}
void BM_type_erased_count(benchmark::State& state)
{
volatile int i = 0;
for (auto _ : state) {
REPEAT({
benchmark::DoNotOptimize(++i);
ScopeGuardTypeErased::ScopeGuard SG([&] { --i; });
});
}
state.SetItemsProcessed(32 * state.iterations());
if (i)
abort();
}
void BM_template_count(benchmark::State& state)
{
volatile int i = 0;
for (auto _ : state) {
REPEAT({
benchmark::DoNotOptimize(++i);
auto SG = ScopeGuardTemplate::MakeGuard([&] { --i; });
});
}
state.SetItemsProcessed(32 * state.iterations());
if (i)
abort();
}
BENCHMARK(BM_type_erased_noop);
BENCHMARK(BM_template_noop);
BENCHMARK(BM_free);
BENCHMARK(BM_type_erased_free);
BENCHMARK(BM_template_free);
BENCHMARK(BM_count);
BENCHMARK(BM_type_erased_count);
BENCHMARK(BM_template_count);
BENCHMARK_MAIN();
|
cc862887ac4009211a2747e9587253b519b230b8
|
95de04e3c0c105b32232996ffe1ec3f731b5b21f
|
/core/bk.hpp
|
35fb91ba6186d2677a29f95d9cdea4e5d08e53b7
|
[] |
no_license
|
kk-mats/asterism
|
e817a298919d0dee243d45b678dc9231a4c9bb47
|
f806c76c149872382645e6c03675555b2bb921f1
|
refs/heads/master
| 2020-04-26T03:56:56.277392
| 2019-09-30T05:34:05
| 2019-09-30T05:34:05
| 173,284,519
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 549
|
hpp
|
bk.hpp
|
#ifndef BK_HPP
#define BK_HPP
#include "matching_table.hpp"
namespace asterism
{
class bk_fuser final
{
public:
static shared_set<clone_pair> run(const shared_list<detection_result> &results, const matching_table &m) noexcept;
private:
static bool bron_kerbosch(shared_set<clone_pair> &r, QSet<query> &p, const QSet<query> &x, const matching_table &m) noexcept;
static std::shared_ptr<clone_pair> maximal(const shared_set<clone_pair> &p) noexcept;
static fragment maximal(const QVector<fragment> &fragment) noexcept;
};
}
#endif // BK_HPP
|
72f06012d55342a21e7f3014a976ecc3b8b115f8
|
291f182ff74c4bbaca5052f1076e52a6900296e4
|
/testprograms/Triangulation.cpp
|
64a003a7401b49cb8976891f6b508b01a12faf8b
|
[] |
no_license
|
jaigupta/algorithmic-arena
|
de8b3f1f3895de21993f42feec278a6a71ceb01f
|
440d6bc8d60ac323b21f1efe0cb9f9c90827628f
|
refs/heads/master
| 2021-01-01T15:25:15.379634
| 2014-08-21T11:28:49
| 2014-08-21T11:28:49
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 8,541
|
cpp
|
Triangulation.cpp
|
#include <vector>
#include <list>
#include <map>
#include <set>
#include <deque>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <stdlib.h>
#include <ctime>
#include <cstring>
#include <stdio.h>
#include <string>
using namespace std;
class Triangulation {
public:
vector <string> triangulate(vector <int>, vector <int>);
};
static int get_line_intersection(float p0_x, float p0_y, float p1_x, float p1_y,
float p2_x, float p2_y, float p3_x, float p3_y)
{
float s1_x, s1_y, s2_x, s2_y;
s1_x = p1_x - p0_x; s1_y = p1_y - p0_y;
s2_x = p3_x - p2_x; s2_y = p3_y - p2_y;
float s, t;
s = (-s1_y * (p0_x - p2_x) + s1_x * (p0_y - p2_y)) / (-s2_x * s1_y + s1_x * s2_y);
t = ( s2_x * (p0_y - p2_y) - s2_y * (p0_x - p2_x)) / (-s2_x * s1_y + s1_x * s2_y);
if (s > 0 && s < 1 && t > 0 && t < 1)
{
// Collision detected
return 1;
}
return 0; // No collision
}
static std::string to_string(int n)
{
std::ostringstream os;
os << n;
return os.str();
}
vector <string> Triangulation::triangulate(vector <int> x, vector <int> y) {
vector<string> res;
vector<pair<int, int> > linesp1 ;
vector<pair<int, int> > linesp2 ;
int n = x.size();
for(int i=0; i<x.size(); i++)
{
pair<int, int> p1 = make_pair(x[i%n], y[i%n]);
linesp1.push_back(p1);
pair<int, int> p2 = make_pair(x[(i+1)%n], y[(i+1)%n]);
linesp2.push_back(p2);
}
char buf[20], buf2[20];
printf("%d %d\n", linesp1.size(), linesp2.size());
for(int i=0; i<x.size(); i++)
{
for(int j=i+2; j<x.size(); j++)
{
if(i == (j+1)%n) continue;
int k;
for(k=0; k<linesp1.size(); k++)
{
if(get_line_intersection(linesp1[k].first, linesp1[k].second, linesp2[k].first, linesp2[k].second, x[i], y[i], x[j], y[j]))
{
printf("line %d\n", k);
break;
}
}
if(k==linesp1.size())
{
pair<int, int> p1 = make_pair(x[i%n], y[i%n]);
linesp1.push_back(p1);
pair<int, int> p2 = make_pair(x[(j)%n], y[(j)%n]);
linesp1.push_back(p2);
res.push_back(to_string(i)+string(" ")+to_string(j));
}
}
}
return res;
}
double test0() {
int t0[] = {0,10,10,0};
vector <int> p0(t0, t0+sizeof(t0)/sizeof(int));
int t1[] = {0,0,10,10};
vector <int> p1(t1, t1+sizeof(t1)/sizeof(int));
Triangulation * obj = new Triangulation();
clock_t start = clock();
vector <string> my_answer = obj->triangulate(p0, p1);
clock_t end = clock();
delete obj;
cout <<"Time: " <<(double)(end-start)/CLOCKS_PER_SEC <<" seconds" <<endl;
string t2[] = { "0 2" };
vector <string> p2(t2, t2+sizeof(t2)/sizeof(string));
cout <<"Desired answer: " <<endl;
cout <<"\t{ ";
if (p2.size() > 0) {
cout <<"\""<<p2[0]<<"\"";
for (int i=1; i<p2.size(); i++)
cout <<", \"" <<p2[i]<<"\"";
cout <<" }" <<endl;
}
else
cout <<"}" <<endl;
cout <<endl <<"Your answer: " <<endl;
cout <<"\t{ ";
if (my_answer.size() > 0) {
cout <<"\""<<my_answer[0]<<"\"";
for (int i=1; i<my_answer.size(); i++)
cout <<", \"" <<my_answer[i]<<"\"";
cout <<" }" <<endl;
}
else
cout <<"}" <<endl;
if (my_answer != p2) {
cout <<"DOESN'T MATCH!!!!" <<endl <<endl;
return -1;
}
else {
cout <<"Match :-)" <<endl <<endl;
return (double)(end-start)/CLOCKS_PER_SEC;
}
}
double test1() {
int t0[] = {0,10,10,8};
vector <int> p0(t0, t0+sizeof(t0)/sizeof(int));
int t1[] = {0,0,10,2};
vector <int> p1(t1, t1+sizeof(t1)/sizeof(int));
Triangulation * obj = new Triangulation();
clock_t start = clock();
vector <string> my_answer = obj->triangulate(p0, p1);
clock_t end = clock();
delete obj;
cout <<"Time: " <<(double)(end-start)/CLOCKS_PER_SEC <<" seconds" <<endl;
string t2[] = { "1 3" };
vector <string> p2(t2, t2+sizeof(t2)/sizeof(string));
cout <<"Desired answer: " <<endl;
cout <<"\t{ ";
if (p2.size() > 0) {
cout <<"\""<<p2[0]<<"\"";
for (int i=1; i<p2.size(); i++)
cout <<", \"" <<p2[i]<<"\"";
cout <<" }" <<endl;
}
else
cout <<"}" <<endl;
cout <<endl <<"Your answer: " <<endl;
cout <<"\t{ ";
if (my_answer.size() > 0) {
cout <<"\""<<my_answer[0]<<"\"";
for (int i=1; i<my_answer.size(); i++)
cout <<", \"" <<my_answer[i]<<"\"";
cout <<" }" <<endl;
}
else
cout <<"}" <<endl;
if (my_answer != p2) {
cout <<"DOESN'T MATCH!!!!" <<endl <<endl;
return -1;
}
else {
cout <<"Match :-)" <<endl <<endl;
return (double)(end-start)/CLOCKS_PER_SEC;
}
}
double test2() {
int t0[] = {0,5,10,10,0};
vector <int> p0(t0, t0+sizeof(t0)/sizeof(int));
int t1[] = {10,5,10,0,0};
vector <int> p1(t1, t1+sizeof(t1)/sizeof(int));
Triangulation * obj = new Triangulation();
clock_t start = clock();
vector <string> my_answer = obj->triangulate(p0, p1);
clock_t end = clock();
delete obj;
cout <<"Time: " <<(double)(end-start)/CLOCKS_PER_SEC <<" seconds" <<endl;
string t2[] = { "1 3", "1 4" };
vector <string> p2(t2, t2+sizeof(t2)/sizeof(string));
cout <<"Desired answer: " <<endl;
cout <<"\t{ ";
if (p2.size() > 0) {
cout <<"\""<<p2[0]<<"\"";
for (int i=1; i<p2.size(); i++)
cout <<", \"" <<p2[i]<<"\"";
cout <<" }" <<endl;
}
else
cout <<"}" <<endl;
cout <<endl <<"Your answer: " <<endl;
cout <<"\t{ ";
if (my_answer.size() > 0) {
cout <<"\""<<my_answer[0]<<"\"";
for (int i=1; i<my_answer.size(); i++)
cout <<", \"" <<my_answer[i]<<"\"";
cout <<" }" <<endl;
}
else
cout <<"}" <<endl;
if (my_answer != p2) {
cout <<"DOESN'T MATCH!!!!" <<endl <<endl;
return -1;
}
else {
cout <<"Match :-)" <<endl <<endl;
return (double)(end-start)/CLOCKS_PER_SEC;
}
}
double test3() {
int t0[] = {0,1,1,0,0,1,1,0,-1,-1};
vector <int> p0(t0, t0+sizeof(t0)/sizeof(int));
int t1[] = {0,1,2,2,3,3,4,5,4,1};
vector <int> p1(t1, t1+sizeof(t1)/sizeof(int));
Triangulation * obj = new Triangulation();
clock_t start = clock();
vector <string> my_answer = obj->triangulate(p0, p1);
clock_t end = clock();
delete obj;
cout <<"Time: " <<(double)(end-start)/CLOCKS_PER_SEC <<" seconds" <<endl;
string t2[] = { "0 2", "0 3", "0 8", "3 8", "4 6", "4 7", "4 8" };
vector <string> p2(t2, t2+sizeof(t2)/sizeof(string));
cout <<"Desired answer: " <<endl;
cout <<"\t{ ";
if (p2.size() > 0) {
cout <<"\""<<p2[0]<<"\"";
for (int i=1; i<p2.size(); i++)
cout <<", \"" <<p2[i]<<"\"";
cout <<" }" <<endl;
}
else
cout <<"}" <<endl;
cout <<endl <<"Your answer: " <<endl;
cout <<"\t{ ";
if (my_answer.size() > 0) {
cout <<"\""<<my_answer[0]<<"\"";
for (int i=1; i<my_answer.size(); i++)
cout <<", \"" <<my_answer[i]<<"\"";
cout <<" }" <<endl;
}
else
cout <<"}" <<endl;
if (my_answer != p2) {
cout <<"DOESN'T MATCH!!!!" <<endl <<endl;
return -1;
}
else {
cout <<"Match :-)" <<endl <<endl;
return (double)(end-start)/CLOCKS_PER_SEC;
}
}
double test4() {
int t0[] = {0,1,1,0,1,1,0,-1,-1};
vector <int> p0(t0, t0+sizeof(t0)/sizeof(int));
int t1[] = {0,1,2,2,3,4,5,4,1};
vector <int> p1(t1, t1+sizeof(t1)/sizeof(int));
Triangulation * obj = new Triangulation();
clock_t start = clock();
vector <string> my_answer = obj->triangulate(p0, p1);
clock_t end = clock();
delete obj;
cout <<"Time: " <<(double)(end-start)/CLOCKS_PER_SEC <<" seconds" <<endl;
string t2[] = { "0 2", "0 3", "0 7", "3 5", "3 6", "3 7" };
vector <string> p2(t2, t2+sizeof(t2)/sizeof(string));
cout <<"Desired answer: " <<endl;
cout <<"\t{ ";
if (p2.size() > 0) {
cout <<"\""<<p2[0]<<"\"";
for (int i=1; i<p2.size(); i++)
cout <<", \"" <<p2[i]<<"\"";
cout <<" }" <<endl;
}
else
cout <<"}" <<endl;
cout <<endl <<"Your answer: " <<endl;
cout <<"\t{ ";
if (my_answer.size() > 0) {
cout <<"\""<<my_answer[0]<<"\"";
for (int i=1; i<my_answer.size(); i++)
cout <<", \"" <<my_answer[i]<<"\"";
cout <<" }" <<endl;
}
else
cout <<"}" <<endl;
if (my_answer != p2) {
cout <<"DOESN'T MATCH!!!!" <<endl <<endl;
return -1;
}
else {
cout <<"Match :-)" <<endl <<endl;
return (double)(end-start)/CLOCKS_PER_SEC;
}
}
int main() {
int time;
bool errors = false;
time = test0();
if (time < 0)
errors = true;
time = test1();
if (time < 0)
errors = true;
time = test2();
if (time < 0)
errors = true;
time = test3();
if (time < 0)
errors = true;
time = test4();
if (time < 0)
errors = true;
if (!errors)
cout <<"You're a stud (at least on the example cases)!" <<endl;
else
cout <<"Some of the test cases had errors." <<endl;
}
//Powered by [KawigiEdit] 2.0!
|
c224170ca7a9a17e6987e02fa939a5ece8bd3d6f
|
0db5517b2159d771e1afbe54a89f611452005649
|
/IronWrought/Source/Engine/CharacterController.h
|
0f8f804a911cd42f06eb1453fce5cacb22d901fb
|
[] |
no_license
|
HaqvinBager/G3SP7
|
f117be0c343469ba2eb67205a29d3b64e088ed60
|
2e04646ffbc6b9d2e78d435ff88ca56fddda10f4
|
refs/heads/master
| 2023-05-04T17:05:35.963943
| 2021-05-19T13:51:52
| 2021-05-19T13:51:52
| 327,616,500
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,427
|
h
|
CharacterController.h
|
#pragma once
#include "pxPhysicsApi.h"
#include <utility>
namespace physx
{
class PxController;
class PxUserControllerHitReport;
}
class CPlayerReportCallback;
class CTransformComponent;
class CCharacterController
{
public:
CCharacterController(const Vector3 aPosition, const float aRadius = 0.6f, const float aHeight = 1.8f, CTransformComponent* userData = nullptr, physx::PxUserControllerHitReport* aHitReport = nullptr);
physx::PxController& GetController();
Vector3 GetPosition() const;
void SetPosition(const Vector3& aPosition);
// void SetRotation(const Quaternion& aRotation);
UINT8 Move(const Vector3& aDir, float aSpeed);
const Vector3 GetHitNormal() const;
private:
physx::PxController* myController = nullptr;
CPlayerReportCallback* myPlayerReport;
};
//#pragma once
//#include <PxPhysicsAPI.h>
//using namespace physx;
//
//class CCharacterController
//{
//public:
//public:
// CCharacterController(PxControllerShapeType::Enum aType, const Vector3& aPos, const float& aRadius, const float& aHeight);
// ~CCharacterController();
//
// bool InitCapsuelController(const Vector3& aPos, const float& aRadius, const float& aHeight);
// bool InitBoxController(const Vector3& aPos, const float& aRadius, const float& aHeight);
//
// PxController& GetController() { return *myController; };
//
// Vector3 GetPosition() const;
//private:
// PxController* myController;
//};
|
ab7722bf679e95062e48a219f1cee4f8b437d3bd
|
35d18181399ef953a7b0b37b7739e5cc44f43327
|
/src/rfkill.cpp
|
866bc4db55bd44a3ef61dbc7f07778324b383a8f
|
[] |
no_license
|
cutefishos-ubuntu/bluez-qt
|
2957c51e4ed29b01113752f4d39c51ebd50ca405
|
07bc2d4e5f42b350b98f76028a2be964d44d35d1
|
refs/heads/master
| 2023-07-14T12:35:53.203932
| 2021-08-30T01:13:53
| 2021-08-30T01:13:53
| 401,178,961
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,781
|
cpp
|
rfkill.cpp
|
/*
* BluezQt - Asynchronous Bluez wrapper library
*
* SPDX-FileCopyrightText: 2015 David Rosca <nowrep@gmail.com>
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
#include "rfkill.h"
#include "rfkill_p.h"
#include "debug.h"
#ifdef Q_OS_LINUX
#include <fcntl.h>
#include <stdint.h>
#include <string.h>
#include <unistd.h>
#endif
#include <QSocketNotifier>
namespace BluezQt
{
#ifdef Q_OS_LINUX
enum rfkill_type {
RFKILL_TYPE_ALL = 0,
RFKILL_TYPE_WLAN,
RFKILL_TYPE_BLUETOOTH,
RFKILL_TYPE_UWB,
RFKILL_TYPE_WIMAX,
RFKILL_TYPE_WWAN,
};
enum rfkill_operation {
RFKILL_OP_ADD = 0,
RFKILL_OP_DEL,
RFKILL_OP_CHANGE,
RFKILL_OP_CHANGE_ALL,
};
struct rfkill_event {
quint32 idx;
quint8 type;
quint8 op;
quint8 soft;
quint8 hard;
};
#endif
Rfkill::Rfkill(QObject *parent)
: QObject(parent)
, d(new RfkillPrivate)
{
init();
}
Rfkill::~Rfkill()
{
#ifdef Q_OS_LINUX
if (d->m_readFd != -1) {
::close(d->m_readFd);
}
if (d->m_writeFd != -1) {
::close(d->m_writeFd);
}
#endif
}
Rfkill::State Rfkill::state() const
{
return d->m_state;
}
bool Rfkill::block()
{
if (d->m_state == SoftBlocked || d->m_state == HardBlocked) {
return true;
}
if (d->m_state != Unblocked) {
return false;
}
return setSoftBlock(1);
}
bool Rfkill::unblock()
{
if (d->m_state == Unblocked) {
return true;
}
if (d->m_state != SoftBlocked) {
return false;
}
return setSoftBlock(0);
}
void Rfkill::devReadyRead()
{
State oldState = d->m_state;
updateRfkillDevices();
if (d->m_state != oldState) {
Q_EMIT stateChanged(d->m_state);
}
}
void Rfkill::init()
{
#ifdef Q_OS_LINUX
d->m_readFd = ::open("/dev/rfkill", O_RDONLY | O_CLOEXEC);
if (d->m_readFd == -1) {
qCWarning(BLUEZQT) << "Cannot open /dev/rfkill for reading!";
return;
}
if (::fcntl(d->m_readFd, F_SETFL, O_NONBLOCK) < 0) {
::close(d->m_readFd);
d->m_readFd = -1;
return;
}
updateRfkillDevices();
QSocketNotifier *notifier = new QSocketNotifier(d->m_readFd, QSocketNotifier::Read, this);
connect(notifier, &QSocketNotifier::activated, this, &Rfkill::devReadyRead);
#endif
}
bool Rfkill::openForWriting()
{
#ifndef Q_OS_LINUX
return false;
#else
if (d->m_writeFd != -1) {
return true;
}
d->m_writeFd = ::open("/dev/rfkill", O_WRONLY | O_CLOEXEC);
if (d->m_writeFd == -1) {
qCWarning(BLUEZQT) << "Cannot open /dev/rfkill for writing!";
return false;
}
if (::fcntl(d->m_writeFd, F_SETFL, O_NONBLOCK) < 0) {
::close(d->m_writeFd);
d->m_writeFd = -1;
return false;
}
return true;
#endif
}
#ifdef Q_OS_LINUX
static Rfkill::State getState(const rfkill_event &event)
{
if (event.hard) {
return Rfkill::HardBlocked;
} else if (event.soft) {
return Rfkill::SoftBlocked;
}
return Rfkill::Unblocked;
}
#endif
void Rfkill::updateRfkillDevices()
{
#ifdef Q_OS_LINUX
if (d->m_readFd == -1) {
return;
}
rfkill_event event;
while (::read(d->m_readFd, &event, sizeof(event)) == sizeof(event)) {
if (event.type != RFKILL_TYPE_BLUETOOTH) {
continue;
}
switch (event.op) {
case RFKILL_OP_ADD:
case RFKILL_OP_CHANGE:
d->m_devices[event.idx] = getState(event);
break;
case RFKILL_OP_DEL:
d->m_devices.remove(event.idx);
break;
case RFKILL_OP_CHANGE_ALL:
for (auto it = d->m_devices.begin(); it != d->m_devices.end(); ++it) {
it.value() = getState(event);
}
break;
default:
break;
}
}
// Update global state
d->m_state = Unknown;
for (State state : qAsConst(d->m_devices)) {
Q_ASSERT(state != Unknown);
if (d->m_state == Unknown) {
d->m_state = state;
} else if (state > d->m_state) {
d->m_state = state;
}
}
qCDebug(BLUEZQT) << "Rfkill global state changed:" << d->m_state;
#endif
}
bool Rfkill::setSoftBlock(quint8 soft)
{
#ifndef Q_OS_LINUX
Q_UNUSED(soft)
return false;
#else
if (!openForWriting()) {
return false;
}
rfkill_event event;
::memset(&event, 0, sizeof(event));
event.op = RFKILL_OP_CHANGE_ALL;
event.type = RFKILL_TYPE_BLUETOOTH;
event.soft = soft;
bool ret = ::write(d->m_writeFd, &event, sizeof(event)) == sizeof(event);
qCDebug(BLUEZQT) << "Setting Rfkill soft block succeeded:" << ret;
return ret;
#endif
}
} // namespace BluezQt
|
fe48f6bf74c60e02663220225e77fb7378b7d605
|
5883a23874be7c3714b94e173333f22c31342231
|
/include/FastBVH/Intersection.h
|
fb3524e590568c53063f2eb3af818530343da82b
|
[
"MIT"
] |
permissive
|
meshula/Fast-BVH
|
c7b60a77542c99fbcf115c4610957add6aa9c4f6
|
0ee16eba9d30fe4c95c0b0c566040807cc9f6d66
|
refs/heads/master
| 2020-04-07T22:34:02.796644
| 2020-03-30T03:54:08
| 2020-03-30T03:54:08
| 20,222,827
| 0
| 0
|
MIT
| 2020-03-30T03:54:09
| 2014-05-27T14:26:27
|
C++
|
UTF-8
|
C++
| false
| false
| 1,754
|
h
|
Intersection.h
|
#pragma once
#include <FastBVH/Vector3.h>
#include <limits>
namespace FastBVH {
//! \brief Stores information regarding a ray intersection with a primitive.
//! \tparam Float The floating point type used for vector components.
//! \tparam Primitive The type of primitive used to construct the BVH.
template <typename Float, typename Primitive>
struct Intersection final {
/// A simple type definition for 3D vector.
using Vec3 = Vector3<Float>;
//! The scale at which the ray reaches the primitive.
Float t = std::numeric_limits<Float>::infinity();
//! A pointer to the primitive that the ray intersected with.
const Primitive* object = nullptr;
//! The normal at the point of intersection.
Vec3 normal = {0, 0, 1};
//! The UV coordinates at the position of intersection.
Float uv[2] = {0, 0};
//! Gets the position at the ray hit the object.
//! \param ray_pos The ray position.
//! \param ray_dir The ray direction.
//! \return The position at which the intersection occurred at.
Vec3 getHitPosition(const Vec3& ray_pos, const Vec3& ray_dir) const noexcept { return ray_pos + (ray_dir * t); }
//! Indicates whether or not the intersection is valid.
//! \return True if the intersection is valid, false otherwise.
operator bool() const noexcept { return t != std::numeric_limits<Float>::infinity(); }
};
//! \brief Gets the closest of two intersections.
//! \returns A copy of either @p a or @p b, depending on which one is closer.
template <typename Float, typename Primitive>
Intersection<Float, Primitive> closest(const Intersection<Float, Primitive>& a,
const Intersection<Float, Primitive>& b) noexcept {
return (a.t < b.t) ? a : b;
}
} // namespace FastBVH
|
9368013735ce14e9418b1ab1842f1730ddb715e2
|
c990ba64b77b7b4034772fb15a5520a28f1ea5e7
|
/copasi/analytics/CStatistics.h
|
ed74da1f2ce15d6be56650295e1fcc3358fa2043
|
[
"LicenseRef-scancode-other-copyleft",
"Artistic-2.0",
"LicenseRef-scancode-proprietary-license"
] |
permissive
|
copasi/COPASI
|
a3fb515b4d9c667519ad756c52d8b82747a26e64
|
3ddf61e95191f2db09256dddc013f12041719a2c
|
refs/heads/develop
| 2023-09-01T19:32:39.004552
| 2023-06-02T15:01:23
| 2023-06-02T15:01:23
| 4,810,881
| 75
| 34
|
Artistic-2.0
| 2022-09-14T13:13:20
| 2012-06-27T16:35:48
|
Component Pascal
|
UTF-8
|
C++
| false
| false
| 1,586
|
h
|
CStatistics.h
|
// Copyright (C) 2017 by Pedro Mendes, Virginia Tech Intellectual
// Properties, Inc., University of Heidelberg, and University of
// of Connecticut School of Medicine.
// All rights reserved.
// Copyright (C) 2016 by Pedro Mendes, Virginia Tech Intellectual
// Properties, Inc., University of Heidelberg, and The University
// of Manchester.
// All rights reserved.
#ifndef CSTATISTICS_H
#define CSTATISTICS_H
#include "copasi/model/CModelValue.h"
#include "copasi/core/CDataObjectReference.h"
#include "copasi/core/CDataObject.h"
#include "copasi/core/CDataContainer.h"
class CStatistics : public CDataContainer // CModelEntity //
{
// Operations
private:
/**
* Default constructor made unreachable.
**/
CStatistics();
public:
/**
* Public constructor.
**/
CStatistics(const std::string & name,
const CDataContainer * pParent,
const std::string & type,
const unsigned C_INT32 & flag,
C_FLOAT64 statValue);
/**
* Destructor.
*/
~CStatistics();
/**
* Retrieves the value of the statistics
* @return const C_FLOAT64 & mStatValue
*/
const C_FLOAT64 & getStatValue() const;
/**
* Retrieve object referencing the concentration
* @return CConcentrationReference * concentrationReference
*/
CDataObject * getStatValueReference() const;
// Attributes
private:
/**
* Value of the statistics.
*/
C_FLOAT64 mStatValue;
protected:
CDataObject * mpStatValueReference;
/**
* Initialize the contained CDataObjects
*/
void initObjects();
};
#endif // CSTATISTICS_H
|
c50162d1416648185fc65ce8a1172dfbc856e8fc
|
e91b16ab1799a614282fb0260ca696ddb6143b16
|
/Baekjoon/q16986.cpp
|
d75513a31fc7d29bb15d82bb0b497df85003efa8
|
[] |
no_license
|
bluesquanium/Algorithm
|
cde3b561aa05413fcd61fe5ce013fe3e8c122a9c
|
9d87cbc4efc5a3382376fc74b82915832659e97b
|
refs/heads/master
| 2022-06-24T10:55:58.011128
| 2022-05-29T09:50:58
| 2022-05-29T09:50:58
| 174,677,803
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,862
|
cpp
|
q16986.cpp
|
#include <iostream>
using namespace std;
int N, K;
int ** t;
int P[3][20];
int c[3];
int win[3];
int ans;
int is_used[9];
void Input() {
cin >> N >> K;
t = new int*[N];
for (int i = 0; i < N; i++) {
t[i] = new int[N];
}
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
cin >> t[i][j];
}
}
for (int i = 0; i < 20; i++) {
cin >> P[1][i];
P[1][i]--;
}
for (int i = 0; i < 20; i++) {
cin >> P[2][i];
P[2][i]--;
}
}
void Dfs(int round, int p1, int p2) {
if (win[0] == K) {
ans = 1;
return;
}
else if (win[1] == K || win[2] == K) {
//ans = -1;
return;
}
if (ans == -1 || ans == 1) {
return;
}
if (3*K-2-round < K-win[0]) {
return;
}
if (p1 == 0) { // Áö¿ì°¡ Âü¿©
for (int i = 0; i < N; i++) {
if (is_used[i] == 0) {
is_used[i] = 1;
if (t[i][P[p2][c[p2]]] == 2) {
win[0]++;
c[p2]++;
Dfs(round + 1, 0, (p2 == 1 ? 2 : 1));
c[p2]--;
win[0]--;
}
else {
win[p2]++;
c[p2]++;
Dfs(round + 1, 1, 2);
c[p2]--;
win[p2]--;
}
is_used[i] = 0;
}
}
}
else { // Áö¿ì Âü¿© x
if ( t[P[p1][c[p1]]][P[p2][c[p2]]] == 2 ) {
win[p1]++;
c[p1]++;
c[p2]++;
Dfs(round + 1, 0, p1);
c[p2]--;
c[p1]--;
win[p1]--;
}
else {
win[p2]++;
c[p1]++;
c[p2]++;
Dfs(round + 1, 0, p2);
c[p2]--;
c[p1]--;
win[p2]--;
}
}
}
void Print() {
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
cout << t[i][j] << ' ';
}cout << endl;
}cout << endl;
}
int main(void) {
ios::sync_with_stdio(false);
Input();
Dfs(0, 0, 1);
//Print();
if (ans == -1 || ans == 0) {
cout << 0;
}
else if (ans == 1) {
cout << 1;
}
//system("pause");
return 0;
}
|
21ab6d5c23d57dd7c3dc6814a1ef4afae5bb6969
|
c68f791005359cfec81af712aae0276c70b512b0
|
/World CodeSprint #4/stacks.cpp
|
67c2db1295720786125b5cfc4e6bf1078cc8e6d6
|
[] |
no_license
|
luqmanarifin/cp
|
83b3435ba2fdd7e4a9db33ab47c409adb088eb90
|
08c2d6b6dd8c4eb80278ec34dc64fd4db5878f9f
|
refs/heads/master
| 2022-10-16T14:30:09.683632
| 2022-10-08T20:35:42
| 2022-10-08T20:35:42
| 51,346,488
| 106
| 46
| null | 2017-04-16T11:06:18
| 2016-02-09T04:26:58
|
C++
|
UTF-8
|
C++
| false
| false
| 580
|
cpp
|
stacks.cpp
|
#include <bits/stdc++.h>
using namespace std;
const int N = 1e5 + 5;
int n[3];
int a[3][N];
set<int> s[3];
int main() {
for(int i = 0; i < 3; i++) scanf("%d", n + i);
for(int i = 0; i < 3; i++) {
for(int j = 0; j < n[i]; j++) {
scanf("%d", &a[i][j]);
}
}
for(int i = 0; i < 3; i++) {
int sum = 0;
s[i].insert(0);
for(int j = n[i] - 1; j >= 0; j--) {
sum += a[i][j];
s[i].insert(-sum);
}
}
for(auto it : s[0]) {
if(s[1].count(it) && s[2].count(it)) {
cout << -it << endl;
return 0;
}
}
return 0;
}
|
992b5ff3928130f119d8b13562c0e11ea6a56551
|
5fdecef5cfdf071b2188668064fc9dd31877e6c4
|
/feature/core/include/core/Types.h
|
afc2350acde25d33be7645f5ca22b268698d97e4
|
[] |
no_license
|
mck1117/efi-playground
|
0d6f5887555b6f2036565687d66d5f9dc7e104d6
|
09bfa09b10c881019e16ae34b821a8f0bc6012b5
|
refs/heads/master
| 2020-04-16T00:33:54.817434
| 2019-01-11T01:52:42
| 2019-01-11T01:52:42
| 165,143,315
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 497
|
h
|
Types.h
|
#pragma once
#include <core/math/Quantity.h>
QUANTITY_TYPE(1, 0, -1, 0, massrate_t);
template <typename TBin, typename TValue, unsigned char TSize>
struct Table2Data
{
const char* Name;
TBin Bins[TSize];
TValue Values[TSize];
};
template <typename TBin, typename TValue, unsigned char TSizeX, unsigned char TSizeY>
struct Table3Data
{
const char* Name;
TBin BinsX[TSizeX];
TBin BinsY[TSizeY];
TValue Values[TSizeX * TSizeY];
};
struct PhaseDurationScheduled
{
};
|
f1a084738f3b43ea94f8d8d13d989da664142e36
|
346a0f7c2f439686bfb8be58918bba33c412fd01
|
/template1.cpp
|
541fb7cd9a329342fbb4ae67ae2a79d8a839e47b
|
[] |
no_license
|
Anandoganiya/c-cpp
|
d01b712a59cc4fa299a8e958a7481c39348a0996
|
a3f04255827758c2aff885a3cb4d974a4a636ac4
|
refs/heads/master
| 2023-01-14T08:16:28.282766
| 2020-11-23T08:52:53
| 2020-11-23T08:52:53
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 936
|
cpp
|
template1.cpp
|
#include<iostream>
using namespace std;
const int size = 3;
template<class T>
class vector
{
T *v;
public:
vector()
{
v = new T[size];
for(int i=0;i<size;i++)
v[i]=0;
}
vector(T *a)
{
v = new T[size];
for(int i=0;i<size;i++){
v[i] = a[i];
}
}
T operator*(vector &y)
{
T sum=0;
for(int i=0;i<size;i++)
sum += this->v[i] * y.v[i];
return sum;
}
void display()
{
for(int i=0;i<size;i++)
cout<<v[i]<<" ";
cout<<"\n";
}
};
int main()
{
int x[3] = {1,2,3};
int y[3]={4,5,6};
float z[]= {1.2,3.24,5.6};
vector<int> v1;
vector<int> v2;
vector<float> v3;
v1 = x;
v2 = y;
v3 = z;
cout<<"v1 x v2 ="<<v1*v2;
cout<<"\n";
v1.display();
v2.display();
v3.display();
return 0;
}
|
7fccb39990d40ad1ce9f821a947e831305b65892
|
d7b7dcec797f3294b1de671d1f84e354c93a1308
|
/physx/source/physx/src/NpParticleSystem.cpp
|
ee1ba047b1010c2213b115fbe8beee530c0599fe
|
[
"BSD-3-Clause"
] |
permissive
|
NVIDIA-Omniverse/PhysX
|
c93ed4287a57d51fda56798b5fae8aaa65cdfa13
|
e8c8deb2d548dc635db4f61083ea0e745c0102a0
|
refs/heads/main
| 2023-08-16T14:46:51.919670
| 2023-07-25T17:22:31
| 2023-07-25T17:22:31
| 545,381,143
| 1,814
| 216
|
BSD-3-Clause
| 2023-08-28T19:47:10
| 2022-10-04T09:07:32
|
C++
|
UTF-8
|
C++
| false
| false
| 39,920
|
cpp
|
NpParticleSystem.cpp
|
// 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 NVIDIA CORPORATION 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 ''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 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.
//
// Copyright (c) 2008-2023 NVIDIA Corporation. All rights reserved.
// Copyright (c) 2004-2008 AGEIA Technologies, Inc. All rights reserved.
// Copyright (c) 2001-2004 NovodeX AG. All rights reserved.
#include "foundation/PxPreprocessor.h"
#if PX_SUPPORT_GPU_PHYSX
#include "NpParticleSystem.h"
#include "foundation/PxAllocator.h"
#include "foundation/PxArray.h"
#include "foundation/PxMath.h"
#include "foundation/PxMemory.h"
#include "foundation/PxSort.h"
#include "common/PxPhysXCommonConfig.h"
#include "cudamanager/PxCudaContext.h"
#include "cudamanager/PxCudaContextManager.h"
#if PX_ENABLE_FEATURES_UNDER_CONSTRUCTION
#include "PxGridParticleSystem.h"
#endif
#include "PxRigidActor.h"
#include "PxsSimulationController.h"
#include "NpArticulationLink.h"
#include "NpRigidDynamic.h"
#include "NpScene.h"
#include "NpCheck.h"
#include "ScBodyCore.h"
#include "ScParticleSystemCore.h"
#include "ScParticleSystemSim.h"
#include "ScParticleSystemShapeCore.h"
#include "DyParticleSystemCore.h"
#include "CmVisualization.h"
#define PARTICLE_MAX_NUM_PARTITIONS_TEMP 32
#define PARTICLE_MAX_NUM_PARTITIONS_FINAL 8
using namespace physx;
namespace physx
{
#if PX_ENABLE_DEBUG_VISUALIZATION
static void visualizeParticleSystem(PxRenderOutput& out, NpScene& npScene, const Sc::ParticleSystemCore& core)
{
if (!(core.getActorFlags() & PxActorFlag::eVISUALIZATION))
return;
const Sc::Scene& scScene = npScene.getScScene();
const bool visualizeAABBs = scScene.getVisualizationParameter(PxVisualizationParameter::eCOLLISION_AABBS) != 0.0f;
if (visualizeAABBs)
{
out << PxU32(PxDebugColor::eARGB_YELLOW) << PxMat44(PxIdentity);
Cm::renderOutputDebugBox(out, core.getSim()->getBounds());
}
}
#else
PX_CATCH_UNDEFINED_ENABLE_DEBUG_VISUALIZATION
#endif
////////////////////////////////////////////////////////////////////////////////////////
PxPartitionedParticleCloth::PxPartitionedParticleCloth()
{
PxMemZero(this, sizeof(*this));
}
PxPartitionedParticleCloth::~PxPartitionedParticleCloth()
{
if (mCudaManager)
{
PxScopedCudaLock lock(*mCudaManager);
PxCudaContext* context = mCudaManager->getCudaContext();
if (context)
{
context->memFreeHost(accumulatedSpringsPerPartitions);
context->memFreeHost(accumulatedCopiesPerParticles);
context->memFreeHost(remapOutput);
context->memFreeHost(orderedSprings);
context->memFreeHost(sortedClothStartIndices);
context->memFreeHost(cloths);
}
}
}
void PxPartitionedParticleCloth::allocateBuffers(PxU32 nbParticles, PxCudaContextManager* cudaManager)
{
mCudaManager = cudaManager;
PxScopedCudaLock lock(*mCudaManager);
PxCudaContext* context = mCudaManager->getCudaContext();
const unsigned int CU_MEMHOSTALLOC_DEVICEMAP = 0x02;
const unsigned int CU_MEMHOSTALLOC_PORTABLE = 0x01;
PxCUresult result = context->memHostAlloc(reinterpret_cast<void**>(&accumulatedSpringsPerPartitions), size_t(sizeof(PxU32) * PARTICLE_MAX_NUM_PARTITIONS_FINAL), CU_MEMHOSTALLOC_DEVICEMAP | CU_MEMHOSTALLOC_PORTABLE); // TODO AD: WTF where does 32 come from?
result = context->memHostAlloc(reinterpret_cast<void**>(&accumulatedCopiesPerParticles), size_t(sizeof(PxU32) * nbParticles), CU_MEMHOSTALLOC_DEVICEMAP | CU_MEMHOSTALLOC_PORTABLE);
result = context->memHostAlloc(reinterpret_cast<void**>(&orderedSprings), size_t(sizeof(PxParticleSpring) * nbSprings), CU_MEMHOSTALLOC_DEVICEMAP | CU_MEMHOSTALLOC_PORTABLE);
result = context->memHostAlloc(reinterpret_cast<void**>(&remapOutput), size_t(sizeof(PxU32) * nbSprings * 2), CU_MEMHOSTALLOC_DEVICEMAP | CU_MEMHOSTALLOC_PORTABLE);
result = context->memHostAlloc(reinterpret_cast<void**>(&sortedClothStartIndices), size_t(sizeof(PxU32) * nbCloths), CU_MEMHOSTALLOC_DEVICEMAP | CU_MEMHOSTALLOC_PORTABLE);
result = context->memHostAlloc(reinterpret_cast<void**>(&cloths), size_t(sizeof(PxParticleCloth) * nbCloths), CU_MEMHOSTALLOC_DEVICEMAP | CU_MEMHOSTALLOC_PORTABLE);
}
////////////////////////////////////////////////////////////////////////////////////////
PxU32 NpParticleClothPreProcessor::computeSpringPartition(const PxParticleSpring& spring, const PxU32 partitionStartIndex, PxU32* partitionProgresses)
{
PxU32 partitionA = partitionProgresses[spring.ind0];
PxU32 partitionB = partitionProgresses[spring.ind1];
const PxU32 combinedMask = (~partitionA & ~partitionB);
PxU32 availablePartition = combinedMask == 0 ? PARTICLE_MAX_NUM_PARTITIONS_TEMP : PxLowestSetBit(combinedMask);
if (availablePartition == PARTICLE_MAX_NUM_PARTITIONS_TEMP)
{
return 0xFFFFFFFF;
}
const PxU32 partitionBit = (1u << availablePartition);
partitionA |= partitionBit;
partitionB |= partitionBit;
availablePartition += partitionStartIndex;
partitionProgresses[spring.ind0] = partitionA;
partitionProgresses[spring.ind1] = partitionB;
return availablePartition;
}
void NpParticleClothPreProcessor::writeSprings(const PxParticleSpring* springs, PxU32* partitionProgresses, PxU32* tempSprings,
PxU32* orderedSprings, PxU32* accumulatedSpringsPerPartition)
{
//initialize the partition progress counter to be zero
PxMemZero(partitionProgresses, sizeof(PxU32) * mNumParticles);
PxU32 numUnpartitionedSprings = 0;
// Goes through all the springs and assigns them to a partition. This code is exactly the same as in classifySprings
// except that we now know the start indices of all the partitions so we can write THEIR INDEX into the ordered spring
// index list.
// AD: All of this relies on the fact that we partition exactly the same way twice. Remember that when changing anything
// here.
for (PxU32 i = 0; i < mNumSprings; ++i)
{
const PxParticleSpring& spring = springs[i];
const PxU32 availablePartition = computeSpringPartition(spring, 0, partitionProgresses);
if (availablePartition == 0xFFFFFFFF)
{
tempSprings[numUnpartitionedSprings++] = i;
continue;
}
//output springs
orderedSprings[accumulatedSpringsPerPartition[availablePartition]++] = i;
}
PxU32 partitionStartIndex = 0;
// handle the overflow of springs we couldn't partition above.
while (numUnpartitionedSprings > 0)
{
//initialize the partition progress counter to be zero
PxMemZero(partitionProgresses, sizeof(PxU32) * mNumParticles);
partitionStartIndex += PARTICLE_MAX_NUM_PARTITIONS_TEMP;
PxU32 newNumUnpartitionedSprings = 0;
for (PxU32 i = 0; i < numUnpartitionedSprings; ++i)
{
const PxU32 springInd = tempSprings[i];
const PxParticleSpring& spring = springs[springInd];
const PxU32 availablePartition = computeSpringPartition(spring, partitionStartIndex, partitionProgresses);
if (availablePartition == 0xFFFFFFFF)
{
tempSprings[newNumUnpartitionedSprings++] = springInd;
continue;
}
//output springs
orderedSprings[accumulatedSpringsPerPartition[availablePartition]++] = springInd;
}
numUnpartitionedSprings = newNumUnpartitionedSprings;
}
// at this point all of the springs are partitioned and in the ordered list.
}
void NpParticleClothPreProcessor::classifySprings(const PxParticleSpring* springs, PxU32* partitionProgresses, PxU32* tempSprings, physx::PxArray<PxU32>& tempSpringsPerPartition)
{
//initialize the partition progress counter to be zero
PxMemZero(partitionProgresses, sizeof(PxU32) * mNumParticles);
PxU32 numUnpartitionedSprings = 0;
// Goes through all the springs and tries to partition, but will max out at 32 partitions (because we only have 32 bits)
for (PxU32 i = 0; i < mNumSprings; ++i)
{
const PxParticleSpring& spring = springs[i];
// will return the first partition where it's possible to place this spring.
const PxU32 availablePartition = computeSpringPartition(spring, 0, partitionProgresses);
if (availablePartition == 0xFFFFFFFF)
{
// we couldn't find a partition, so we add the index to this list for later.
tempSprings[numUnpartitionedSprings++] = i;
continue;
}
// tracks how many springs we have in each partition.
tempSpringsPerPartition[availablePartition]++;
}
PxU32 partitionStartIndex = 0;
// handle the overflow of the springs we couldn't partition above
// we work in batches of 32 bits.
while (numUnpartitionedSprings > 0)
{
//initialize the partition progress counter to be zero
PxMemZero(partitionProgresses, sizeof(PxU32) * mNumParticles);
partitionStartIndex += PARTICLE_MAX_NUM_PARTITIONS_TEMP;
//Keep partitioning the un-partitioned constraints and blat the whole thing to 0!
tempSpringsPerPartition.resize(PARTICLE_MAX_NUM_PARTITIONS_TEMP + tempSpringsPerPartition.size());
PxMemZero(tempSpringsPerPartition.begin() + partitionStartIndex, sizeof(PxU32) * PARTICLE_MAX_NUM_PARTITIONS_TEMP);
PxU32 newNumUnpartitionedSprings = 0;
for (PxU32 i = 0; i < numUnpartitionedSprings; ++i)
{
const PxU32 springInd = tempSprings[i];
const PxParticleSpring& spring = springs[springInd];
const PxU32 availablePartition = computeSpringPartition(spring, partitionStartIndex, partitionProgresses);
if (availablePartition == 0xFFFFFFFF)
{
tempSprings[newNumUnpartitionedSprings++] = springInd;
continue;
}
tempSpringsPerPartition[availablePartition]++;
}
numUnpartitionedSprings = newNumUnpartitionedSprings;
}
// after all of this we have the number of springs per partition in tempSpringsPerPartition. we don't really know what spring will
// go where yet, that will follow later.
}
PxU32* NpParticleClothPreProcessor::partitions(const PxParticleSpring* springs, PxU32* orderedSpringIndices)
{
//each particle has a partition progress counter
PxU32* tempPartitionProgresses = reinterpret_cast<PxU32*>(PX_ALLOC(sizeof(PxU32) * mNumParticles, "tempPartitionProgresses"));
//this stores the spring index for the unpartitioned springs
PxU32* tempSprings = reinterpret_cast<PxU32*>(PX_ALLOC(sizeof(PxU32) * mNumSprings, "tempSprings"));
PxArray<PxU32> tempSpringsPerPartition;
tempSpringsPerPartition.reserve(PARTICLE_MAX_NUM_PARTITIONS_TEMP);
tempSpringsPerPartition.forceSize_Unsafe(PARTICLE_MAX_NUM_PARTITIONS_TEMP);
PxMemZero(tempSpringsPerPartition.begin(), sizeof(PxU32) * PARTICLE_MAX_NUM_PARTITIONS_TEMP);
classifySprings(springs, tempPartitionProgresses, tempSprings, tempSpringsPerPartition);
//compute number of partitions
PxU32 maxPartitions = 0;
for (PxU32 a = 0; a < tempSpringsPerPartition.size(); ++a, maxPartitions++)
{
if (tempSpringsPerPartition[a] == 0)
break;
}
PxU32* tempAccumulatedSpringsPerPartition = reinterpret_cast<PxU32*>(PX_ALLOC(sizeof(PxU32) * maxPartitions, "mAccumulatedSpringsPerPartition"));
mNbPartitions = maxPartitions; // save the current number of partitions
//compute run sum
PxU32 accumulation = 0;
for (PxU32 a = 0; a < maxPartitions; ++a)
{
PxU32 count = tempSpringsPerPartition[a];
tempAccumulatedSpringsPerPartition[a] = accumulation;
accumulation += count;
}
PX_ASSERT(accumulation == mNumSprings);
// this will assign the springs to partitions
writeSprings(springs, tempPartitionProgresses, tempSprings,
orderedSpringIndices, tempAccumulatedSpringsPerPartition);
#if 0 && PX_CHECKED
//validate spring partitions
for (PxU32 i = 0; i < mNumSprings; ++i)
{
PxU32 springInd = orderedSprings[i];
for (PxU32 j = i + 1; j < mNumSprings; ++j)
{
PxU32 otherSpringInd = orderedSprings[j];
PX_ASSERT(springInd != otherSpringInd);
}
}
PxArray<bool> mFound(mNumParticles);
PxU32 startIndex = 0;
for (PxU32 i = 0; i < maxPartition; ++i)
{
PxU32 endIndex = tempAccumulatedSpringsPerPartition[i];
PxMemZero(mFound.begin(), sizeof(bool) * mNumParticles);
for (PxU32 j = startIndex; j < endIndex; ++j)
{
PxU32 tetrahedronIdx = orderedSprings[j];
const PxParticleSpring& spring = springs[tetrahedronIdx];
PX_ASSERT(!mFound[spring.ind0]);
PX_ASSERT(!mFound[spring.ind1]);
mFound[spring.ind0] = true;
mFound[spring.ind1] = true;
}
startIndex = endIndex;
}
#endif
PX_FREE(tempPartitionProgresses);
PX_FREE(tempSprings);
return tempAccumulatedSpringsPerPartition;
}
PxU32 NpParticleClothPreProcessor::combinePartitions(const PxParticleSpring* springs, const PxU32* orderedSpringIndices, const PxU32* accumulatedSpringsPerPartition,
PxU32* accumulatedSpringsPerCombinedPartition, PxParticleSpring* orderedSprings, PxU32* accumulatedCopiesPerParticles, PxU32* remapOutput)
{
// reduces the number of partitions from mNbPartitions to PARTICLE_MAX_NUM_PARTITIONS_FINAL
const PxU32 nbPartitions = mNbPartitions;
mNbPartitions = PARTICLE_MAX_NUM_PARTITIONS_FINAL;
PxMemZero(accumulatedSpringsPerCombinedPartition, sizeof(PxU32) * PARTICLE_MAX_NUM_PARTITIONS_FINAL);
// ceil(nbPartitions/maxPartitions) -basically the number of "repetitions" before combining. Example, MAX_FINAL is 8, we have 20 total, so this is 3.
const PxU32 maxAccumulatedCP = (nbPartitions + PARTICLE_MAX_NUM_PARTITIONS_FINAL - 1) / PARTICLE_MAX_NUM_PARTITIONS_FINAL;
// enough space for all partitions.
const PxU32 partitionArraySize = maxAccumulatedCP * PARTICLE_MAX_NUM_PARTITIONS_FINAL;
// for each particle, have a table of all partitions.
const PxU32 nbPartitionTables = partitionArraySize * mNumParticles;
// per-particle, stores whether particle is part of partition
PxU32* tempPartitionTablePerVert = reinterpret_cast<PxU32*>(PX_ALLOC(sizeof(PxU32) * nbPartitionTables, "tempPartitionTablePerVert"));
// per-particle, stores remapping ?????
PxU32* tempRemapTablePerVert = reinterpret_cast<PxU32*>(PX_ALLOC(sizeof(PxU32) * nbPartitionTables, "tempRemapTablePerVert"));
// per-particle, stores the number of copies for each particle.
PxU32* tempNumCopiesEachVerts = reinterpret_cast<PxU32*>(PX_ALLOC(sizeof(PxU32) * mNumParticles, "tempNumCopiesEachVerts"));
PxMemZero(tempNumCopiesEachVerts, sizeof(PxU32) * mNumParticles);
//initialize partitionTablePerVert
for (PxU32 i = 0; i < nbPartitionTables; ++i)
{
tempPartitionTablePerVert[i] = 0xffffffff;
tempRemapTablePerVert[i] = 0xffffffff;
}
// combine partitions:
// let PARTICLE_MAX_NUM_PARTITIONS_FINAL be 8 and the current number of partitions be 20
// this will merge partition 0, 8, 16 into the first partition,
// then put 1, 9, 17 into the second partition, etc.
// we move all the springs of partition x*PARTICLE_MAX_NUM_PARTITION_FINAL to the end of partition x,
// using the count variable.
// output of this stage
// orderedSprings - has springs per partition
// accumulatedSpringsPerCombinedPartition - has number of springs of each partition
// tempPartitionTablePerVert - has spring index of spring that connects to this particle in this partition.
mMaxSpringsPerPartition = 0;
PxU32 count = 0;
for (PxU32 i = 0; i < PARTICLE_MAX_NUM_PARTITIONS_FINAL; ++i)
{
PxU32 totalSpringsInPartition = 0;
for (PxU32 j = 0; j < maxAccumulatedCP; ++j)
{
PxU32 partitionId = i + PARTICLE_MAX_NUM_PARTITIONS_FINAL * j;
if (partitionId < nbPartitions)
{
const PxU32 startInd = partitionId == 0 ? 0 : accumulatedSpringsPerPartition[partitionId - 1];
const PxU32 endInd = accumulatedSpringsPerPartition[partitionId];
const PxU32 index = i * maxAccumulatedCP + j;
for (PxU32 k = startInd; k < endInd; ++k)
{
const PxU32 springInd = orderedSpringIndices[k];
const PxParticleSpring& spring = springs[springInd];
orderedSprings[count] = spring;
PX_ASSERT(spring.ind0 != spring.ind1);
tempPartitionTablePerVert[spring.ind0 * partitionArraySize + index] = count;
tempPartitionTablePerVert[spring.ind1 * partitionArraySize + index] = count + mNumSprings;
count++;
}
totalSpringsInPartition += (endInd - startInd);
}
}
accumulatedSpringsPerCombinedPartition[i] = count;
mMaxSpringsPerPartition = PxMax(mMaxSpringsPerPartition, totalSpringsInPartition);
}
PX_ASSERT(count == mNumSprings);
PxMemZero(tempNumCopiesEachVerts, sizeof(PxU32) * mNumParticles);
bool* tempHasOccupied = reinterpret_cast<bool*>(PX_ALLOC(sizeof(bool) * partitionArraySize, "tempOrderedSprings"));
// compute num of copies and remap index
//
// remap table - builds a chain of indices of the same particle across partitions
// if particle x is at index y in partition 1, we build a table such that particle x in partition 2 can look up the index in partition 1
// This basically maintains the gauss-seidel part of the solver, where each partition works on the results of the another partition.
// This remap table is build across combined partitions. So there will never be a remap into the same partition.
//
// numCopies is then the number of final copies, meaning all copies of each particle that don't have a remap into one of the following
// partitions.
//
for (PxU32 i = 0; i < mNumParticles; ++i)
{
// for each particle, use this list to track which partition is occupied.
PxMemZero(tempHasOccupied, sizeof(bool) * partitionArraySize);
// partition table has size numPartitions for each particle, tells you the spring index for this partition
const PxU32* partitionTable = &tempPartitionTablePerVert[i * partitionArraySize];
// remapTable is still empty (0xFFFFFFFF)
PxU32* remapTable = &tempRemapTablePerVert[i * partitionArraySize];
// for all of the final partitions.
for (PxU32 j = 0; j < PARTICLE_MAX_NUM_PARTITIONS_FINAL; ++j)
{
// start index of this combined partition in the initial partition array
const PxU32 startInd = j * maxAccumulatedCP;
// start index if the next combined partition in the initial partition array
PxU32 nextStartInd = (j + 1) * maxAccumulatedCP;
// for our 8/20 example, that would be startInd 0, nextStartInd 3 because every
// final partition will be combined from 3 partitions.
// go through the indices of this combined partition (0-2)
for (PxU32 k = 0; k < maxAccumulatedCP; ++k)
{
const PxU32 index = startInd + k;
if (partitionTable[index] != 0xffffffff)
{
// there is a spring in this partition connected to this particle
bool found = false;
// look at the next partition, potentially also further ahead to figure out if there is any other partition having this particle index.
for (PxU32 h = nextStartInd; h < partitionArraySize; ++h)
{
// check if any of the partitions in this combined partition is occupied.
const PxU32 remapInd = partitionTable[h];
if (remapInd != 0xffffffff && !tempHasOccupied[h])
{
// if it is, and none of the other partitions in the partition before already remapped to that one
remapTable[index] = remapInd; // maps from partition i to one of the next ones.
found = true;
tempHasOccupied[h] = true; // mark as occupied
nextStartInd++; // look one more (initial!) partition ahead for next remap.
break;
}
}
if (!found)
{
tempNumCopiesEachVerts[i]++; // if not found, add one more copy as there won't be any follow-up partition taking this position as an input.
}
}
}
}
}
const PxU32 totalNumVerts = mNumSprings * 2;
// compute a runSum for the number of copies for each particle
PxU32 totalCopies = 0;
for (PxU32 i = 0; i < mNumParticles; ++i)
{
totalCopies += tempNumCopiesEachVerts[i];
accumulatedCopiesPerParticles[i] = totalCopies;
}
const PxU32 remapOutputSize = totalNumVerts + totalCopies;
// fill the output of the remap
//
// for all particle copies that are at the end of a remap chain, calculate the remap
// into the final accumulation buffer.
//
// the final accumulation buffer will have numCopies entries for each particle.
//
for (PxU32 i = 0; i < mNumParticles; ++i)
{
const PxU32 index = i * partitionArraySize;
const PxU32* partitionTable = &tempPartitionTablePerVert[index];
PxU32* remapTable = &tempRemapTablePerVert[index];
PxU32 accumulatedCount = 0;
for (PxU32 j = 0; j < partitionArraySize; ++j)
{
const PxU32 vertInd = partitionTable[j];
if (vertInd != 0xffffffff)
{
PxU32 remapInd = remapTable[j];
//this remap is in the accumulation buffer
if (remapInd == 0xffffffff)
{
const PxU32 start = i == 0 ? 0 : accumulatedCopiesPerParticles[i - 1];
remapInd = totalNumVerts + start + accumulatedCount;
accumulatedCount++;
}
PX_ASSERT(remapInd < remapOutputSize);
remapOutput[vertInd] = remapInd;
}
}
}
PX_FREE(tempHasOccupied);
PX_FREE(tempPartitionTablePerVert);
PX_FREE(tempRemapTablePerVert);
PX_FREE(tempNumCopiesEachVerts);
return remapOutputSize;
}
void NpParticleClothPreProcessor::partitionSprings(const PxParticleClothDesc& clothDesc, PxPartitionedParticleCloth& output)
{
mNumSprings = clothDesc.nbSprings;
mNumParticles = clothDesc.nbParticles;
// prepare the output
output.nbSprings = clothDesc.nbSprings;
output.nbCloths = clothDesc.nbCloths;
output.allocateBuffers(mNumParticles, mCudaContextManager);
// will create a temp partitioning with too many partitions
PxU32* orderedSpringIndices = reinterpret_cast<PxU32*>(PX_ALLOC(sizeof(PxU32) * mNumSprings, "orderedSpringIndices"));
PxU32* accumulatedSpringsPerPartitionTemp = partitions(clothDesc.springs, orderedSpringIndices);
// combine these partitions to a max of PARTICLE_MAX_NUM_PARTITIONS_FINAL
// build remap chains and accumulation buffer.
output.remapOutputSize = combinePartitions(clothDesc.springs, orderedSpringIndices, accumulatedSpringsPerPartitionTemp, output.accumulatedSpringsPerPartitions,
output.orderedSprings, output.accumulatedCopiesPerParticles, output.remapOutput);
// get the max number of partitions for each cloth
// AD Todo: figure out why blendScale is computed like this.
PxParticleCloth* cloths = clothDesc.cloths;
for (PxU32 i = 0; i < clothDesc.nbCloths; ++i)
{
PxU32 maxPartitions = 0;
for (PxU32 p = cloths[i].startVertexIndex, endIndex = cloths[i].startVertexIndex + cloths[i].numVertices;
p < endIndex; p++)
{
PxU32 copyStart = p == 0 ? 0 : output.accumulatedCopiesPerParticles[p - 1];
PxU32 copyEnd = output.accumulatedCopiesPerParticles[p];
maxPartitions = PxMax(maxPartitions, copyEnd - copyStart);
}
cloths[i].clothBlendScale = 1.f / (maxPartitions + 1);
}
// sort the cloths in this clothDesc according to their startVertexIndex into the particle list.
PxSort(cloths, clothDesc.nbCloths);
// reorder such that things still match after the sorting.
for (PxU32 i = 0; i < clothDesc.nbCloths; ++i)
{
output.sortedClothStartIndices[i] = cloths[i].startVertexIndex;
output.cloths[i] = cloths[i];
}
output.nbPartitions = mNbPartitions;
output.maxSpringsPerPartition = mMaxSpringsPerPartition;
PX_FREE(accumulatedSpringsPerPartitionTemp);
PX_FREE(orderedSpringIndices);
}
void NpParticleClothPreProcessor::release()
{
PX_DELETE_THIS;
}
///////////////////////////////////////////////////////////////////////////////////////
NpPBDParticleSystem::NpPBDParticleSystem(PxU32 maxNeighborhood, PxCudaContextManager& cudaContextManager) :
NpParticleSystem<PxPBDParticleSystem>(cudaContextManager, PxConcreteType::ePBD_PARTICLESYSTEM, NpType::ePBD_PARTICLESYSTEM, PxActorType::ePBD_PARTICLESYSTEM)
{
//PX_ASSERT(mCudaContextManager);
setSolverType(PxParticleSolverType::ePBD);
mCore.getShapeCore().initializeLLCoreData(maxNeighborhood);
enableCCD(false);
}
PxU32 NpPBDParticleSystem::createPhase(PxParticleMaterial* material, const PxParticlePhaseFlags flags)
{
if (material->getConcreteType() == PxConcreteType::ePBD_MATERIAL)
{
Sc::ParticleSystemShapeCore& shapeCore = mCore.getShapeCore();
Dy::ParticleSystemCore& core = shapeCore.getLLCore();
PxU16 materialHandle = static_cast<NpPBDMaterial*>(material)->mMaterial.mMaterialIndex;
const PxU32 groupID = mNextPhaseGroupID++;
core.mPhaseGroupToMaterialHandle.pushBack(materialHandle);
if (mCore.getSim())
mCore.getSim()->getLowLevelParticleSystem()->mFlag |= Dy::ParticleSystemFlag::eUPDATE_PHASE;
return (groupID & PxParticlePhaseFlag::eParticlePhaseGroupMask)
| (PxU32(flags) & PxParticlePhaseFlag::eParticlePhaseFlagsMask);
}
else
{
PxGetFoundation().error(PxErrorCode::eINVALID_PARAMETER, PX_FL, "PxPBDParticleSystem:createPhase(): the provided material is not supported by this type of particle system.");
return 0;
}
}
void NpPBDParticleSystem::release()
{
NpScene* npScene = getNpScene();
NP_WRITE_CHECK(npScene);
// NpPhysics::getInstance().notifyDeletionListenersUserRelease(this, PxArticulationBase::userData);
if (npScene)
{
npScene->scRemoveParticleSystem(*this);
npScene->removeFromParticleSystemList(*this);
}
PX_ASSERT(!isAPIWriteForbidden());
NpDestroyParticleSystem(this);
}
void NpPBDParticleSystem::addParticleBuffer(PxParticleBuffer* clothBuffer)
{
NP_WRITE_CHECK(getNpScene());
PX_CHECK_AND_RETURN(getNpScene() != NULL, "NpPBDParticleSystem::addParticleBuffer: this function cannot be called when the particle system is not inserted into the scene!");
mCore.getShapeCore().addParticleBuffer(clothBuffer);
}
void NpPBDParticleSystem::removeParticleBuffer(PxParticleBuffer* clothBuffer)
{
mCore.getShapeCore().removeParticleBuffer(clothBuffer);
}
#if PX_ENABLE_DEBUG_VISUALIZATION
void NpPBDParticleSystem::visualize(PxRenderOutput& out, NpScene& npScene) const
{
visualizeParticleSystem(out, npScene, mCore);
}
#else
PX_CATCH_UNDEFINED_ENABLE_DEBUG_VISUALIZATION
#endif
static void internalAddRigidAttachment(PxRigidActor* actor, Sc::ParticleSystemCore& psCore)
{
Sc::BodyCore* core = getBodyCore(actor);
psCore.addRigidAttachment(core);
}
static void internalRemoveRigidAttachment(PxRigidActor* actor, Sc::ParticleSystemCore& psCore)
{
Sc::BodyCore* core = getBodyCore(actor);
psCore.removeRigidAttachment(core);
}
void NpPBDParticleSystem::addRigidAttachment(PxRigidActor* actor)
{
NP_WRITE_CHECK(getNpScene());
PX_CHECK_AND_RETURN(getNpScene() != NULL, "NpPBDParticleSystem::addRigidAttachment: particleSystem must be inserted into the scene.");
PX_CHECK_AND_RETURN((actor == NULL || actor->getScene() != NULL), "NpPBDParticleSystem::addRigidAttachment: actor must be inserted into the scene.");
PX_CHECK_SCENE_API_WRITE_FORBIDDEN(getNpScene(), "NpPBDParticleSystem::addRigidAttachment: Illegal to call while simulation is running.");
internalAddRigidAttachment(actor, mCore);
}
void NpPBDParticleSystem::removeRigidAttachment(PxRigidActor* actor)
{
NP_WRITE_CHECK(getNpScene());
PX_CHECK_AND_RETURN(getNpScene() != NULL, "NpPBDParticleSystem::removeRigidAttachment: particleSystem must be inserted into the scene.");
PX_CHECK_AND_RETURN((actor == NULL || actor->getScene() != NULL), "NpPBDParticleSystem::removeRigidAttachment: actor must be inserted into the scene.");
PX_CHECK_SCENE_API_WRITE_FORBIDDEN(getNpScene(), "NpPBDParticleSystem::removeRigidAttachment: Illegal to call while simulation is running.");
internalRemoveRigidAttachment(actor, mCore);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
#if PX_ENABLE_FEATURES_UNDER_CONSTRUCTION
NpFLIPParticleSystem::NpFLIPParticleSystem(PxCudaContextManager& cudaContextManager) :
NpParticleSystem<PxFLIPParticleSystem>(cudaContextManager, PxConcreteType::eFLIP_PARTICLESYSTEM, NpType::eFLIP_PARTICLESYSTEM, PxActorType::eFLIP_PARTICLESYSTEM)
{
//PX_ASSERT(mCudaContextManager);
setSolverType(PxParticleSolverType::eFLIP);
mCore.getShapeCore().initializeLLCoreData(0);
enableCCD(false);
}
PxU32 NpFLIPParticleSystem::createPhase(PxParticleMaterial* material, const PxParticlePhaseFlags flags)
{
if (material->getConcreteType() == PxConcreteType::eFLIP_MATERIAL)
{
Sc::ParticleSystemShapeCore& shapeCore = mCore.getShapeCore();
Dy::ParticleSystemCore& core = shapeCore.getLLCore();
PxU16 materialHandle = static_cast<NpFLIPMaterial*>(material)->mMaterial.mMaterialIndex;
const PxU32 groupID = mNextPhaseGroupID++;
core.mPhaseGroupToMaterialHandle.pushBack(materialHandle);
if (mCore.getSim())
mCore.getSim()->getLowLevelParticleSystem()->mFlag |= Dy::ParticleSystemFlag::eUPDATE_PHASE;
return (groupID & PxParticlePhaseFlag::eParticlePhaseGroupMask)
| (PxU32(flags) & PxParticlePhaseFlag::eParticlePhaseFlagsMask);
}
else
{
PxGetFoundation().error(PxErrorCode::eINVALID_PARAMETER, PX_FL, "PxFLIPParticleSystem:createPhase(): the provided material is not supported by this type of particle system.");
return 0;
}
}
void NpFLIPParticleSystem::getSparseGridCoord(PxI32& x, PxI32& y, PxI32& z, PxU32 id)
{
const PxI32 iid = static_cast<PxI32>(id);
x = iid % MAX_SPARSEGRID_DIM + MIN_SPARSEGRID_ID;
y = (iid / MAX_SPARSEGRID_DIM) % MAX_SPARSEGRID_DIM + MIN_SPARSEGRID_ID;
z = iid / MAX_SPARSEGRID_DIM / MAX_SPARSEGRID_DIM + MIN_SPARSEGRID_ID;
}
void NpFLIPParticleSystem::release()
{
NpScene* npScene = getNpScene();
NP_WRITE_CHECK(npScene);
// NpPhysics::getInstance().notifyDeletionListenersUserRelease(this, PxArticulationBase::userData);
if (npScene)
{
npScene->scRemoveParticleSystem(*this);
npScene->removeFromParticleSystemList(*this);
}
PX_ASSERT(!isAPIWriteForbidden());
NpDestroyParticleSystem(this);
}
void* NpFLIPParticleSystem::getSparseGridDataPointer(PxSparseGridDataFlag::Enum flags)
{
NpScene* scene = getNpScene();
if (!scene)
return NULL;
if ((flags & (PxSparseGridDataFlag::eSUBGRID_MASK | PxSparseGridDataFlag::eSUBGRID_ID
| PxSparseGridDataFlag::eGRIDCELL_SOLID_GRADIENT_AND_SDF | PxSparseGridDataFlag::eGRIDCELL_SOLID_VELOCITY
| PxSparseGridDataFlag::eGRIDCELL_FLUID_SDF | PxSparseGridDataFlag::eGRIDCELL_FLUID_VELOCITY
)) == 0)
{
PxGetFoundation().error(PxErrorCode::eINVALID_OPERATION, PX_FL, "PxParticleSystem::getSparseGridDataPointer, specified data is not available.");
return NULL;
}
NP_READ_CHECK(scene);
return scene->getSimulationController()->getSparseGridDataPointer(*getCore().getSim()->getLowLevelParticleSystem(), flags, getCore().getSolverType());
}
#if PX_ENABLE_DEBUG_VISUALIZATION
void NpFLIPParticleSystem::visualize(PxRenderOutput& out, NpScene& npScene) const
{
visualizeParticleSystem(out, npScene, mCore);
}
#else
PX_CATCH_UNDEFINED_ENABLE_DEBUG_VISUALIZATION
#endif
void NpFLIPParticleSystem::addParticleBuffer(PxParticleBuffer* particleBuffer)
{
NP_WRITE_CHECK(getNpScene());
PX_CHECK_AND_RETURN(getNpScene() != NULL, "NpFLIPParticleSystem::addParticleBuffer: this function cannot be called when the particle system is not inserted into the scene!");
PxType type = particleBuffer->getConcreteType();
if (type == PxConcreteType::ePARTICLE_BUFFER || type == PxConcreteType::ePARTICLE_DIFFUSE_BUFFER)
{
mCore.getShapeCore().addParticleBuffer(particleBuffer);
}
else
{
PxGetFoundation().error(PxErrorCode::eINVALID_PARAMETER, PX_FL, "NpFLIPParticleSystem:addParticleBuffer(): the provided buffer type is not supported by this type of particle system.");
}
}
void NpFLIPParticleSystem::removeParticleBuffer(PxParticleBuffer* particleBuffer)
{
PxType type = particleBuffer->getConcreteType();
if (type == PxConcreteType::ePARTICLE_BUFFER || type == PxConcreteType::ePARTICLE_DIFFUSE_BUFFER)
{
mCore.getShapeCore().removeParticleBuffer(particleBuffer);
}
else
{
PxGetFoundation().error(PxErrorCode::eINVALID_PARAMETER, PX_FL, "NpFLIPParticleSystem:addParticleBuffer(): the provided buffer type is not supported by this type of particle system.");
}
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
NpMPMParticleSystem::NpMPMParticleSystem(PxCudaContextManager& cudaContextManager) :
NpParticleSystem<PxMPMParticleSystem>(cudaContextManager, PxConcreteType::eMPM_PARTICLESYSTEM, NpType::eMPM_PARTICLESYSTEM, PxActorType::eMPM_PARTICLESYSTEM)
{
//PX_ASSERT(mCudaContextManager);
setSolverType(PxParticleSolverType::eMPM);
mCore.getShapeCore().initializeLLCoreData(0);
enableCCD(false);
}
PxU32 NpMPMParticleSystem::createPhase(PxParticleMaterial* material, const PxParticlePhaseFlags flags)
{
if (material->getConcreteType() == PxConcreteType::eMPM_MATERIAL)
{
Sc::ParticleSystemShapeCore& shapeCore = mCore.getShapeCore();
Dy::ParticleSystemCore& core = shapeCore.getLLCore();
PxU16 materialHandle = static_cast<NpMPMMaterial*>(material)->mMaterial.mMaterialIndex;
const PxU32 groupID = mNextPhaseGroupID++;
core.mPhaseGroupToMaterialHandle.pushBack(materialHandle);
if (mCore.getSim())
mCore.getSim()->getLowLevelParticleSystem()->mFlag |= Dy::ParticleSystemFlag::eUPDATE_PHASE;
return (groupID & PxParticlePhaseFlag::eParticlePhaseGroupMask)
| (PxU32(flags) & PxParticlePhaseFlag::eParticlePhaseFlagsMask);
}
else
{
PxGetFoundation().error(PxErrorCode::eINVALID_PARAMETER, PX_FL, "PxMPMParticleSystem:createPhase(): the provided material is not supported by this type of particle system.");
return 0;
}
}
void NpMPMParticleSystem::getSparseGridCoord(PxI32& x, PxI32& y, PxI32& z, PxU32 id)
{
const PxI32 iid = static_cast<PxI32>(id);
x = iid % MAX_SPARSEGRID_DIM + MIN_SPARSEGRID_ID;
y = (iid / MAX_SPARSEGRID_DIM) % MAX_SPARSEGRID_DIM + MIN_SPARSEGRID_ID;
z = iid / MAX_SPARSEGRID_DIM / MAX_SPARSEGRID_DIM + MIN_SPARSEGRID_ID;
}
void NpMPMParticleSystem::release()
{
NpScene* npScene = getNpScene();
NP_WRITE_CHECK(npScene);
// NpPhysics::getInstance().notifyDeletionListenersUserRelease(this, PxArticulationBase::userData);
if (npScene)
{
npScene->scRemoveParticleSystem(*this);
npScene->removeFromParticleSystemList(*this);
}
PX_ASSERT(!isAPIWriteForbidden());
NpDestroyParticleSystem(this);
}
void* NpMPMParticleSystem::getSparseGridDataPointer(PxSparseGridDataFlag::Enum flags)
{
if ((flags & (PxSparseGridDataFlag::eSUBGRID_MASK | PxSparseGridDataFlag::eSUBGRID_ID
| PxSparseGridDataFlag::eGRIDCELL_SOLID_GRADIENT_AND_SDF | PxSparseGridDataFlag::eGRIDCELL_SOLID_VELOCITY
| PxSparseGridDataFlag::eGRIDCELL_FLUID_SDF | PxSparseGridDataFlag::eGRIDCELL_FLUID_VELOCITY
)) == 0)
{
PxGetFoundation().error(PxErrorCode::eINVALID_OPERATION, PX_FL, "PxParticleSystem::getSparseGridDataPointer, specified data is not available.");
return NULL;
}
NP_READ_CHECK(getNpScene());
NpScene* scene = getNpScene();
return scene->getSimulationController()->getSparseGridDataPointer(*getCore().getSim()->getLowLevelParticleSystem(), flags, getCore().getSolverType());
}
void* NpMPMParticleSystem::getMPMDataPointer(PxMPMParticleDataFlag::Enum flags)
{
NpScene* scene = getNpScene();
if (!scene)
return NULL;
if ((flags & (PxMPMParticleDataFlag::eMPM_AFFINE_C1 | PxMPMParticleDataFlag::eMPM_AFFINE_C2 | PxMPMParticleDataFlag::eMPM_AFFINE_C3
| PxMPMParticleDataFlag::eMPM_DEFORMATION_GRADIENT_F1 | PxMPMParticleDataFlag::eMPM_DEFORMATION_GRADIENT_F2 | PxMPMParticleDataFlag::eMPM_DEFORMATION_GRADIENT_F3)) == 0)
{
PxGetFoundation().error(PxErrorCode::eINVALID_OPERATION, PX_FL, "PxMPMParticleSystem::copyData, specified data is not available.");
return NULL;
}
NP_READ_CHECK(scene);
return scene->getSimulationController()->getMPMDataPointer(*getCore().getSim()->getLowLevelParticleSystem(), flags);
}
#if PX_ENABLE_DEBUG_VISUALIZATION
void NpMPMParticleSystem::visualize(PxRenderOutput& out, NpScene& npScene) const
{
visualizeParticleSystem(out, npScene, mCore);
}
#else
PX_CATCH_UNDEFINED_ENABLE_DEBUG_VISUALIZATION
#endif
void NpMPMParticleSystem::addParticleBuffer(PxParticleBuffer* particleBuffer)
{
NP_WRITE_CHECK(getNpScene());
PX_CHECK_AND_RETURN(getNpScene() != NULL, "NpMPMParticleSystem::addParticleBuffer: this function cannot be called when the particle system is not inserted into the scene!");
if (particleBuffer->getConcreteType() == PxConcreteType::ePARTICLE_BUFFER)
{
mCore.getShapeCore().addParticleBuffer(particleBuffer);
}
else
{
PxGetFoundation().error(PxErrorCode::eINVALID_PARAMETER, PX_FL, "NpMPMParticleSystem:addParticleBuffer(): the provided buffer type is not supported by this type of particle system.");
}
}
void NpMPMParticleSystem::removeParticleBuffer(PxParticleBuffer* particleBuffer)
{
if (particleBuffer->getConcreteType() == PxConcreteType::ePARTICLE_BUFFER)
{
mCore.getShapeCore().removeParticleBuffer(particleBuffer);
}
else
{
PxGetFoundation().error(PxErrorCode::eINVALID_PARAMETER, PX_FL, "NpMPMParticleSystem:addParticleBuffer(): the provided buffer type is not supported by this type of particle system.");
}
}
void NpMPMParticleSystem::addRigidAttachment(PxRigidActor* actor)
{
NP_WRITE_CHECK(getNpScene());
PX_CHECK_AND_RETURN(getNpScene() != NULL, "NpMPMParticleSystem::addRigidAttachment: particleSystem must be inserted into the scene.");
PX_CHECK_AND_RETURN((actor == NULL || actor->getScene() != NULL), "NpMPMParticleSystem::addRigidAttachment: actor must be inserted into the scene.");
PX_CHECK_SCENE_API_WRITE_FORBIDDEN(getNpScene(), "NpMPMParticleSystem::addRigidAttachment: Illegal to call while simulation is running.");
internalAddRigidAttachment(actor, mCore);
}
void NpMPMParticleSystem::removeRigidAttachment(PxRigidActor* actor)
{
NP_WRITE_CHECK(getNpScene());
PX_CHECK_AND_RETURN(getNpScene() != NULL, "NpMPMParticleSystem::removeRigidAttachment: particleSystem must be inserted into the scene.");
PX_CHECK_AND_RETURN((actor == NULL || actor->getScene() != NULL), "NpMPMParticleSystem::removeRigidAttachment: actor must be inserted into the scene.");
PX_CHECK_SCENE_API_WRITE_FORBIDDEN(getNpScene(), "NpMPMParticleSystem::removeRigidAttachment: Illegal to call while simulation is running.");
internalRemoveRigidAttachment(actor, mCore);
}
#endif
}
physx::PxParticleClothPreProcessor* PxCreateParticleClothPreProcessor(physx::PxCudaContextManager* cudaContextManager)
{
physx::PxParticleClothPreProcessor* processor = PX_NEW(physx::NpParticleClothPreProcessor)(cudaContextManager);
return processor;
}
#endif //PX_SUPPORT_GPU_PHYSX
|
4b3af0f5f0dd3f5a5e714a51a7fc6512eae66b92
|
3a6c3fdcb217bd11084635e06887d7cd870f00de
|
/physics/trimesh.h
|
c2f11db6f0c961641c21c34f61a51c0784b2a2f2
|
[] |
no_license
|
ZackMisso/GameEngine
|
f566a03e743b22bfbe8aac1a58f750f01d189a8a
|
917f34d51bcb38f066a2cdddfe70988df81ef625
|
refs/heads/master
| 2021-01-10T14:42:47.650567
| 2016-03-21T15:25:25
| 2016-03-21T15:25:25
| 48,777,545
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 444
|
h
|
trimesh.h
|
#ifndef __TRIMESH_H__
#define __TRIMESH_H__
#include "../datastructures/array.h"
#include "../physics/vertex.h"
#include "../physics/face.h"
#include "../scene/attribnode.h"
class TriMesh {
private:
Array<Vertex*> *vertices;
Array<Face*> *faces;
public:
TriMesh();
~TriMesh();
void calcNormals();
void addVertex(float *vals);
void addFace(int *vals);
void render(AttributeNode* node);
int numOfVerts();
int numOfFaces();
};
#endif
|
c546ec6c0e25950abf4b89f8cb253441045b7a9c
|
eee439ed5d1ffbf169e98d2e0c057faa71509372
|
/src/service/ai/deep_brain_chain/ai_training/task_scheduling/task_scheduling.cpp
|
0b8bbf30e571a3231720c59572d3459d1d1a067e
|
[] |
no_license
|
changshoumeng/DBC-AIComputingNet
|
33180e3decd569fd576724cef9d512208a179cbc
|
5e0abdd4f71573903de51ff66e220a8447956d9b
|
refs/heads/master
| 2023-03-28T05:39:28.992993
| 2021-04-02T05:34:33
| 2021-04-02T05:34:33
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 43,157
|
cpp
|
task_scheduling.cpp
|
/*********************************************************************************
* Copyright (c) 2017-2018 DeepBrainChain core team
* Distributed under the MIT software license, see the accompanying
* file COPYING or http://www.opensource.org/licenses/mit-license.php
* file name : oss_task_manager.cpp
* description : oss_task_manager for implementation
* date : 2018.10.17
* author : Regulus
**********************************************************************************/
#include "common.h"
#include "task_scheduling.h"
#include "util.h"
#include "utilstrencodings.h"
#include "task_common_def.h"
#include "server.h"
#include <regex>
#include "time_util.h"
#include "url_validator.h"
#include <boost/property_tree/json_parser.hpp>
#include <unistd.h>
namespace ai
{
namespace dbc
{
task_scheduling::task_scheduling(std::shared_ptr<container_worker> container_worker_ptr)
{
m_container_worker = container_worker_ptr;
}
int32_t task_scheduling::init_db(std::string db_name)
{
auto rtn = m_task_db.init_db(env_manager::get_db_path(),db_name);
if (E_SUCCESS != rtn)
{
return rtn;
}
try
{
load_task();
}
catch (const std::exception & e)
{
LOG_ERROR << "load task from db error: " << e.what();
return E_DEFAULT;
}
return E_SUCCESS;
}
int32_t task_scheduling::update_task(std::shared_ptr<ai_training_task> task)
{
if (nullptr == task)
{
return E_DEFAULT;
}
if (task->entry_file.empty() || task->code_dir.empty() || task->task_id.empty())
{
LOG_DEBUG << "task config error.";
return E_DEFAULT;
}
// auto state = get_task_state(task);
if (task->container_id.empty())
{
LOG_INFO << "container_id null. container_id";
return E_DEFAULT;
}
std::shared_ptr<update_container_config> config = m_container_worker->get_update_container_config(task);
int32_t ret= CONTAINER_WORKER_IF->update_container(task->container_id, config);
if (ret != E_SUCCESS)
{
LOG_ERROR << "update task error. Task id:" << task->task_id;
return E_DEFAULT;
}
LOG_INFO << "update task success. Task id:" << task->task_id;
// task->__set_update_time(time_util::get_time_stamp_ms());
task->__set_start_time(time_util::get_time_stamp_ms());
task->__set_status(task_running);
task->error_times = 0;
// task->__set_memory(config->memory);
// task->__set_memory_swap(config->memory_swap);
// task->__set_gpus(config->env);
m_task_db.write_task_to_db(task);
return E_SUCCESS;
}
int32_t task_scheduling::update_task_commit_image(std::shared_ptr<ai_training_task> task)
{
if (nullptr == task)
{
return E_DEFAULT;
}
if (task->task_id.empty())
{
LOG_DEBUG << "task config error.";
task->__set_status(update_task_error);
task->error_times = 0;
return E_DEFAULT;
}
std::string autodbcimage_version=m_container_worker->get_autodbcimage_version(task);
LOG_INFO << "autodbcimage_version" << autodbcimage_version;
if(autodbcimage_version.empty())
{
task->__set_status(update_task_error);
task->error_times = 0;
return E_DEFAULT;
}
std::string training_engine_name="www.dbctalk.ai:5000/dbc-free-container:autodbcimage_"+task->task_id.substr(0,6)+"_"+task->container_id.substr(0,6)+autodbcimage_version;
std::string image_id="";
bool can_create_container=false;
LOG_INFO << "task->status:" << task->status ;
LOG_INFO << "training_engine_name 1 "<<training_engine_name;
if (task->status!=task_creating_image ){ //刚开始创建
std::shared_ptr<container_inspect_response> resp = CONTAINER_WORKER_IF->inspect_container(task->container_id);//需要查询一下task中的镜像名字是否和真正的容器id一致
if (resp == nullptr) //说明之前创建新的容器出问题了,没有保存container_id
{
std::string container_id=CONTAINER_WORKER_IF->get_container_id_current(task->task_id);
if(container_id.empty())
{
container_id=CONTAINER_WORKER_IF->get_container_id_current(task->task_id);
}
if(!container_id.empty())
{
resp = CONTAINER_WORKER_IF->inspect_container(container_id);
}
if (resp == nullptr)
{
return E_DEFAULT;
}
task->__set_container_id(container_id);
}
training_engine_name="www.dbctalk.ai:5000/dbc-free-container:autodbcimage_"+task->task_id.substr(0,6)+"_"+task->container_id.substr(0,6)+autodbcimage_version;
LOG_INFO << "training_engine_name 2 "<<training_engine_name;
if(E_SUCCESS==CONTAINER_WORKER_IF-> exist_docker_image(training_engine_name,30)) {
LOG_INFO << "delete the same name image";
CONTAINER_WORKER_IF->delete_image(training_engine_name);//删除之前的同名镜像
sleep(10);
}
int64_t sleep_time=m_container_worker->get_sleep_time(task);
task->__set_start_time(time_util::get_time_stamp_ms());
LOG_INFO << "sleep_time waiting :" << sleep_time << "s" ;
task->__set_status(task_creating_image);
std::string status=CONTAINER_WORKER_IF->commit_image(task->container_id,autodbcimage_version,task->task_id,60);
if(status.compare("error")==0){
return E_DEFAULT;
}
return E_SUCCESS;
} else if (task->status==task_creating_image){ //正在创建中
if(E_SUCCESS==CONTAINER_WORKER_IF-> exist_docker_image(training_engine_name,60)) {
LOG_INFO << "is exist_docker_image";
// sleep(100);
can_create_container=true;
}else
{
int64_t real_time=time_util::get_time_stamp_ms();
int64_t sleep_time=m_container_worker->get_sleep_time(task);
int64_t sub_time=real_time - task->start_time;
LOG_INFO << "real_time :" << real_time;
LOG_INFO << "task start_time:" << task->start_time;
LOG_INFO << "sub_time:" << sub_time;
if(sub_time>sleep_time*1000){//是否创建时间已经超过sleep_time
// if(sub_time>sleep_time*10){//测试
can_create_container= false;
} else
{
return E_SUCCESS;
}
}
}
if(can_create_container)
{
std::string training_engine_original=task->training_engine;
// training_engine_new="www.dbctalk.ai:5000/dbc-free-container:autodbcimage_"+task->task_id.substr(0,6)+"_"+task->container_id.substr(0,6)+autodbcimage_version;
task->__set_training_engine(training_engine_name);
LOG_INFO << "training_engine_original:" << training_engine_original;
LOG_INFO << "training_engine_new:" << "www.dbctalk.ai:5000/dbc-free-container:autodbcimage_"+task->task_id.substr(0,6)+"_"+task->container_id.substr(0,6)+autodbcimage_version;
int32_t status=start_task_from_new_image(task,autodbcimage_version,training_engine_name);
if(status!= E_NO_START_CONTAINER &&status!= E_SUCCESS)
{
task->__set_training_engine(training_engine_original);
return E_DEFAULT;
}
}else
{
// CONTAINER_WORKER_IF->delete_image(image_id);//delete new image,防止可能创建成功
LOG_INFO << "update_task_error";
task->__set_status(update_task_error);
task->error_times = 0;
return E_DEFAULT;
}
task->__set_gpus(get_gpu_spec(task->server_specification));
return E_SUCCESS;
}
std::string task_scheduling::get_gpu_spec(std::string s)
{
if (s.empty())
{
return "";
}
std::string rt;
std::stringstream ss;
ss << s;
boost::property_tree::ptree pt;
try
{
boost::property_tree::read_json(ss, pt);
rt = pt.get<std::string>("env.NVIDIA_VISIBLE_DEVICES");
if ( !rt.empty())
{
matrix::core::string_util::trim(rt);
LOG_DEBUG << "gpus requirement: " << rt;
}
}
catch (...)
{
return "";
}
return rt;
}
int32_t task_scheduling::change_gpu_id(std::shared_ptr<ai_training_task> task)
{
if (nullptr == task)
{
return E_DEFAULT;
}
if (task->task_id.empty())
{
LOG_DEBUG << "task config error.";
task->__set_status(update_task_error);
return E_DEFAULT;
}
if (task->status!=task_creating_image ) { //刚开始创建
std::shared_ptr<container_inspect_response> resp = CONTAINER_WORKER_IF->inspect_container(
task->container_id);//需要查询一下task中的镜像名字是否和真正的容器id一致
if (resp == nullptr) //说明之前创建新的容器出问题了,没有保存container_id
{
std::string container_id = CONTAINER_WORKER_IF->get_container_id_current(task->task_id);
if (container_id.empty()) {
container_id = CONTAINER_WORKER_IF->get_container_id_current(task->task_id);
}
if (!container_id.empty()) {
resp = CONTAINER_WORKER_IF->inspect_container(container_id);
}
if (resp == nullptr) {
task->__set_status(update_task_error);
return E_DEFAULT;
}
task->__set_container_id(container_id);
}
std::string change_gpu_id_file_name = env_manager::get_home_path().generic_string() + "/tool/change_gpu_id.sh";
std::string task_id=task->task_id;
std::string old_gpu_id = m_container_worker->get_old_gpu_id(task);
std::string new_gpu_id = m_container_worker->get_new_gpu_id(task);
std::string old_cpu_shares=std::to_string(m_container_worker->get_old_cpu_shares(task));
std::string new_cpu_shares=std::to_string(m_container_worker->get_new_cpu_shares(task));
std::string cpu_shares=old_cpu_shares+","+new_cpu_shares;
std::string old_cpu_quota=std::to_string(m_container_worker->get_old_cpu_quota( task));
std::string new_cpu_quota=std::to_string(m_container_worker->get_new_cpu_quota(task));
std::string cpu_quota= old_cpu_quota+","+new_cpu_quota;
std::string old_memory = m_container_worker->get_old_memory(task);
std::string new_memory=m_container_worker->get_new_memory(task);
std::string memory=old_memory +","+ new_memory;
std::string old_memory_swap=m_container_worker->get_old_memory_swap(task);
std::string new_memory_swap=m_container_worker->get_new_memory_swap(task);
std::string memory_swap=old_memory_swap+","+new_memory_swap;
std::string docker_dir=CONTAINER_WORKER_IF->get_docker_dir(task->container_id);
if (docker_dir.empty())
{
LOG_ERROR << "docker_dir is empty";
task->__set_status(update_task_error);
return E_DEFAULT;
}
std::string container_id=task->container_id;
std::string m_change_gpu_id_cmd="";
int32_t reslut =commit_change_gpu_id_bash(change_gpu_id_file_name, task_id , old_gpu_id , new_gpu_id
, container_id , cpu_shares ,cpu_quota
, memory , memory_swap , docker_dir);
if (reslut ==E_DEFAULT){
task->__set_status(update_task_error);
return E_DEFAULT;
}
LOG_INFO << "sleep_time waiting" ;
int64_t sleep_time=m_container_worker->get_sleep_time(task);
task->__set_start_time(time_util::get_time_stamp_ms());
LOG_INFO << "sleep_time waiting :" << sleep_time << "s" ;
task->__set_status(task_creating_image);
return E_SUCCESS;
}else if (task->status==task_creating_image){ //正在创建中
std::shared_ptr<container_inspect_response> resp = CONTAINER_WORKER_IF->inspect_container(task->container_id);
if (resp!= nullptr && true == resp->state.running) {
std::string sub_task_id=task->task_id.substr(0,12);
std::string gpu_id=CONTAINER_WORKER_IF->get_gpu_id(sub_task_id);
if(gpu_id.find("NVIDIA_VISIBLE_DEVICES=")== string::npos){ //如果gpu id 没有修改过来
LOG_INFO << "update_task_error";
task->__set_status(update_task_error);
return E_DEFAULT;
}else{
std::vector<std::string> list;
string_util::split( gpu_id, "=", list);
std::string new_gpu_id = m_container_worker->get_new_gpu_id(task);
if(new_gpu_id.compare(list[1])!=0){//说明没有设置成功
LOG_INFO << "update_task_error new_gpu_id !=inspect " <<gpu_id;
task->__set_status(update_task_error);
return E_DEFAULT;
}
}
}else
{
int64_t real_time=time_util::get_time_stamp_ms();
int64_t sleep_time=m_container_worker->get_sleep_time(task);
int64_t sub_time=real_time - task->start_time;
LOG_INFO << "real_time :" << real_time;
LOG_INFO << "task start_time:" << task->start_time;
LOG_INFO << "sub_time:" << sub_time;
if(sub_time>360*1000 ){//是否创建时间已经超过sleep_time
LOG_INFO << "update_task_error :can not start container ";
task->__set_status(update_task_error);
return E_DEFAULT;
}
return E_SUCCESS;
}
}
task->__set_gpus(get_gpu_spec(task->server_specification));
task->__set_status(task_running);
return E_SUCCESS;
}
int32_t task_scheduling::commit_change_gpu_id_bash(std::string change_gpu_id_file_name, std::string task_id ,std::string old_gpu_id ,std::string new_gpu_id
,std::string container_id ,std::string cpu_shares ,std::string cpu_quota
,std::string memory ,std::string memory_swap ,std::string docker_dir)
{
std::string m_change_gpu_id_cmd = boost::str(boost::format("/bin/bash %s %s %s %s %s %s %s %s %s %s")
% change_gpu_id_file_name % task_id % old_gpu_id % new_gpu_id % container_id % cpu_shares % cpu_quota
% memory % memory_swap % docker_dir);
LOG_INFO << "m_change_gpu_id_cmd " << m_change_gpu_id_cmd;
LOG_INFO << " m_change_gpu_id_cmd will commit" ;
if (m_change_gpu_id_cmd.empty())
{
LOG_ERROR << "m_change_gpu_id_cmd command is empty";
return E_DEFAULT;
}
if(!std::regex_match(new_gpu_id,std::regex("[0-9]{0,}[,0-9]{0,}")) && ! std::regex_match(new_gpu_id,std::regex("none")))
{
LOG_ERROR << "new_gpu_id is error ";
return E_DEFAULT;
}
if(!std::regex_match(cpu_shares,std::regex("[0-9]{1,},[0-9]{1,}")) )
{
LOG_ERROR << "cpu_shares is error ";
return E_DEFAULT;
}
if(!std::regex_match(cpu_quota,std::regex("[0-9]{1,},[0-9]{1,}")) )
{
LOG_ERROR << "cpu_quota is error ";
return E_DEFAULT;
}
if(!std::regex_match(memory,std::regex("[0-9]{1,},[0-9]{1,}")) )
{
LOG_ERROR << "memory is error ";
return E_DEFAULT;
}
if(!std::regex_match(memory_swap,std::regex("[0-9]{1,},[0-9]{1,}")) )
{
LOG_ERROR << "memory_swap is error ";
return E_DEFAULT;
}
try
{
std::error_code ec;
std::future<std::string> fut;
std::future<std::string> fut_err;
int32_t ret = bp::system(bp::cmd=m_change_gpu_id_cmd, bp::std_out > fut, bp::std_err > fut_err, ec);
std::string m_change_gpu_id_cmd_log = "m_change_gpu_id_cmd info.";
if (ec)
{
m_change_gpu_id_cmd_log +=ec.message();
}
if (fut.valid())
{
m_change_gpu_id_cmd_log += fut.get();
}
if (fut_err.valid())
{
m_change_gpu_id_cmd_log += fut_err.get();
}
LOG_INFO << " m_change_gpu_id_cmd ret code:" << ret << ". " ;
}
catch (const std::exception & e)
{
LOG_ERROR << "m_change_gpu_id_cmd error" << e.what();
return E_DEFAULT;
}
catch (...)
{
LOG_ERROR << "m_change_gpu_id_cmd error";
return E_DEFAULT;
}
return E_SUCCESS;
}
//from new image
int32_t task_scheduling::start_task_from_new_image(std::shared_ptr<ai_training_task> task,std::string autodbcimage_version,std::string training_engine_new)
{
if (nullptr == task)
{
return E_DEFAULT;
}
std::shared_ptr<container_inspect_response> resp = CONTAINER_WORKER_IF->inspect_container(task->container_id);
std::string old_container_id=task->container_id;
if (resp == nullptr) //说明之前创建新的容器出问题了,没有保存container_id
{
std::string container_id=CONTAINER_WORKER_IF->get_container_id_current(task->task_id);
if(container_id.empty())
{
container_id=CONTAINER_WORKER_IF->get_container_id_current(task->task_id);
}
if(!container_id.empty())
{
resp = CONTAINER_WORKER_IF->inspect_container(container_id);
}
if (resp == nullptr)
{
return E_DEFAULT;
}
old_container_id=container_id;
task->__set_container_id(container_id);
}
bool original_status_container=false;//默认容器是关闭的状态
if (true == resp->state.running)
{
original_status_container=true;
if(E_SUCCESS==CONTAINER_WORKER_IF->stop_container(old_container_id))
{
LOG_INFO << "stop container success , task id:" << old_container_id;
} else
{
LOG_INFO << "stop container failure , task id:" << task->task_id;
task->__set_status(update_task_error);
task->error_times = 0;
// m_task_db.write_task_to_db(task);
return E_DEFAULT;
}
}
if (E_SUCCESS != create_task_from_image(task,autodbcimage_version))
{
LOG_ERROR << "create task error";
CONTAINER_WORKER_IF->delete_image(training_engine_new);//delete new image
if(original_status_container)
{
CONTAINER_WORKER_IF->start_container(task->container_id);//start original container_id
}
task->__set_status(update_task_error);
task->error_times = 0;
// m_task_db.write_task_to_db(task);
return E_DEFAULT;
}else{
/* std::string image_id=CONTAINER_WORKER_IF->get_image_id(old_container_id);
if(image_id.compare("error")==0){
CONTAINER_WORKER_IF->remove_container(task->container_id);//delete new docker
CONTAINER_WORKER_IF->delete_image(training_engine_new);//delete new image
CONTAINER_WORKER_IF->start_container(old_container_id);//start original container_id
task->__set_container_id(old_container_id);
task->__set_status(update_task_error);
task->error_times = 0;
// m_task_db.write_task_to_db(task);
LOG_INFO << "remove container failure. recover old_container:" << task->task_id;
return E_DEFAULT;
}*/
// bool can_delete_image=CONTAINER_WORKER_IF->can_delete_image(image_id);//is or not delete image,can not delete original images
std::shared_ptr<container_inspect_response> resp = CONTAINER_WORKER_IF->inspect_container(old_container_id);
bool is_exsit_old_container=false;
if(resp == nullptr)
{
sleep (3);
resp = CONTAINER_WORKER_IF->inspect_container(old_container_id);
}
if(resp == nullptr) //用第二种方法判断 旧容器知否存在
{
sleep (6);
std::string container_id=CONTAINER_WORKER_IF->get_container_id_current(task->task_id);
if(!container_id.empty())
{
is_exsit_old_container=true;
}
}
if (resp != nullptr || is_exsit_old_container)//如果旧的镜像还存在,则删除
{
if(E_SUCCESS!=CONTAINER_WORKER_IF->remove_container(old_container_id))//delete old container
{
CONTAINER_WORKER_IF->remove_container(task->container_id);//delete new docker
CONTAINER_WORKER_IF->delete_image(training_engine_new);//delete new image
CONTAINER_WORKER_IF->start_container(old_container_id);//start original container_id
task->__set_container_id(old_container_id);
task->__set_status(update_task_error);
task->error_times = 0;
// m_task_db.write_task_to_db(task);
LOG_INFO << "remove container failure. recover old_container:" << task->task_id;
return E_DEFAULT;
}//else// if(can_delete_image){//旧的镜像 因为有新生成的子镜像,故无法删除
//if(E_SUCCESS!=CONTAINER_WORKER_IF->remove_image(image_id)){//delete old image
// CONTAINER_WORKER_IF->remove_image(image_id);
// }
// }
}
LOG_INFO << "delete old container success , task id:" << old_container_id;
if(E_SUCCESS!=CONTAINER_WORKER_IF->rename_container(task->task_id,autodbcimage_version))
{
LOG_INFO << "rename container failure";
CONTAINER_WORKER_IF->rename_container(task->task_id,autodbcimage_version);
}
LOG_INFO << "rename container success , task id:" << task->task_id;
}
LOG_INFO << "start_task_from_new_image success. Task id:" ;
int32_t ret = CONTAINER_WORKER_IF->start_container(task->container_id);//start new container_id
if (ret != E_SUCCESS)
{
task->__set_status(update_task_error);
LOG_ERROR << "Start task error. Task id:" << task->task_id;
return E_NO_START_CONTAINER;
}
LOG_INFO << "start_task_from_new_image success. Task id:" << task->task_id;
// task->__set_start_time(time_util::get_time_stamp_ms());
task->__set_status(task_running);
task->error_times = 0;
LOG_INFO << "update task status:" << "task_running";
// m_task_db.write_task_to_db(task);
LOG_INFO << "update task status:" << "write_task_to_db";
LOG_INFO << "update E_SUCCESS:" << E_SUCCESS;
return E_SUCCESS;
}
vector<string> split(const string& str, const string& delim) {
vector<string> res;
if("" == str) return res;
//先将要切割的字符串从string类型转换为char*类型
char * strs = new char[str.length() + 1] ; //不要忘了
strcpy(strs, str.c_str());
char * d = new char[delim.length() + 1];
strcpy(d, delim.c_str());
char *p = strtok(strs, d);
while(p) {
string s = p; //分割得到的字符串转换为string类型
res.push_back(s); //存入结果数组
p = strtok(NULL, d);
}
return res;
}
int32_t task_scheduling::create_task_from_image(std::shared_ptr<ai_training_task> task,std::string autodbcimage_version)
{
if (nullptr == task)
{
return E_DEFAULT;
}
if (task->entry_file.empty() || task->code_dir.empty() || task->task_id.empty())
{
LOG_INFO << "task config error.";
return E_DEFAULT;
}
// std::string container_id_original=task->container_id;
std::shared_ptr<container_config> config = m_container_worker->get_container_config_from_image(task);
std::string task_id=task->task_id;
std::string container_name=task_id+"_DBC_"+autodbcimage_version;
if(CONTAINER_WORKER_IF->exist_container(container_name)!=E_CONTAINER_NOT_FOUND){
CONTAINER_WORKER_IF->remove_container(container_name);
}
std::shared_ptr<container_create_resp> resp = CONTAINER_WORKER_IF->create_container(config, task_id,autodbcimage_version);
if (resp != nullptr && !resp->container_id.empty())
{
task->__set_container_id(resp->container_id);
LOG_INFO << "create from_image task success. task id:" << task->task_id << " container id:" << task->container_id;
return E_SUCCESS;
}
else
{
// sleep(90);
LOG_INFO << "exist_container ?" ;
if(CONTAINER_WORKER_IF->exist_container_time(container_name,240)!=E_CONTAINER_NOT_FOUND) {
LOG_INFO << "exist_container yes";
}else{
LOG_ERROR << "create task failed. task id:" << task->task_id;
}
}
return E_DEFAULT;
}
int32_t task_scheduling::create_task(std::shared_ptr<ai_training_task> task)
{
if (nullptr == task)
{
return E_DEFAULT;
}
if (task->entry_file.empty() || task->code_dir.empty() || task->task_id.empty())
{
LOG_INFO << "task config error.";
return E_DEFAULT;
}
if(CONTAINER_WORKER_IF->exist_container(task->task_id)!=E_CONTAINER_NOT_FOUND){
CONTAINER_WORKER_IF->remove_container(task->task_id);
}
std::shared_ptr<container_config> config = m_container_worker->get_container_config(task);
std::shared_ptr<container_create_resp> resp = CONTAINER_WORKER_IF->create_container(config, task->task_id,"");
if (resp != nullptr && !resp->container_id.empty())
{
task->__set_container_id(resp->container_id);
LOG_INFO << "create task success. task id:" << task->task_id << " container id:" << task->container_id;
return E_SUCCESS;
}
else
{
sleep(60);
std::string container_name=task->task_id;
LOG_INFO << "exist_container ?" ;
std::string container_id=CONTAINER_WORKER_IF->get_container_id(container_name);
if(container_id.compare("error")!=0){
LOG_INFO << "exist_container yes" ;
task->__set_container_id(container_id);
LOG_INFO << "create task success. task id:" << task->task_id << " container id:" << task->container_id;
return E_SUCCESS;
}else{
LOG_INFO << "exist_container no" ;
LOG_ERROR << "create task failed. task id:" << task->task_id;
}
}
return E_DEFAULT;
}
int32_t task_scheduling::start_task(std::shared_ptr<ai_training_task> task)
{
if (nullptr == task)
{
return E_SUCCESS;
}
auto state = get_task_state(task);
if (DBC_TASK_RUNNING == state)
{
if (task->status != task_running)
{
task->__set_status(task_running);
m_task_db.write_task_to_db(task);
}
int32_t ret = CONTAINER_WORKER_IF->restart_container(task->container_id);
if (ret != E_SUCCESS)
{
LOG_ERROR << "restart task error. Task id:" << task->task_id;
LOG_ERROR << "restart task error. container_id:" << task->container_id;
return E_DEFAULT;
}
LOG_DEBUG << "task have been restarted, task id:" << task->task_id;
task->__set_start_time(time_util::get_time_stamp_ms());
task->__set_status(task_running);
task->error_times = 0;
LOG_INFO << "task status:" << "task_running";
m_task_db.write_task_to_db(task);
LOG_INFO << "task status:" << "write_task_to_db";
LOG_INFO << "E_SUCCESS:" << E_SUCCESS;
return E_SUCCESS;
}
//if image do not exist, then pull it
if (E_IMAGE_NOT_FOUND == CONTAINER_WORKER_IF->exist_docker_image(task->training_engine,15))
{
return start_pull_image(task);
}
bool is_container_existed = (!task->container_id.empty());
if (!is_container_existed)
{
//if container_id does not exist, means dbc need to create container
if (E_SUCCESS != create_task(task))
{
LOG_ERROR << "create task error";
return E_DEFAULT;
}
}
// update container's parameter if
std::string path = env_manager::get_home_path().generic_string() + "/container/parameters";
std::string text = "task_id=" + task->task_id + "\n";
LOG_INFO << " container_id: " << task->container_id << " task_id: " << task->task_id;
// if (is_container_existed)
// {
// server_specification indicates the container to be reused for this task
// needs to indicate container run with different parameters
// text += ("code_dir=" + task->code_dir + "\n");
// if (task->server_specification == "restart")
// {
// use case: restart a task
// text += ("restart=true\n");
// }
// }
if (!file_util::write_file(path, text))
{
LOG_ERROR << "fail to refresh task's code_dir before reusing existing container for new task "
<< task->task_id;
return E_DEFAULT;
}
int32_t ret = CONTAINER_WORKER_IF->start_container(task->container_id);
if (ret != E_SUCCESS)
{
LOG_ERROR << "Start task error. Task id:" << task->task_id;
return E_DEFAULT;
}
LOG_INFO << "start task success. Task id:" << task->task_id;
task->__set_start_time(time_util::get_time_stamp_ms());
task->__set_status(task_running);
task->error_times = 0;
LOG_INFO << "task status:" << "task_running";
m_task_db.write_task_to_db(task);
LOG_INFO << "task status:" << "write_task_to_db";
LOG_INFO << "E_SUCCESS:" << E_SUCCESS;
return E_SUCCESS;
}
int32_t task_scheduling::restart_task(std::shared_ptr<ai_training_task> task)
{
if (nullptr == task)
{
return E_SUCCESS;
}if (task->status == update_task_error)//如果任务是升级错误状态,则只修改任务状态为running
{
LOG_INFO << "update task status success. Task id:" << task->task_id;
task->__set_start_time(time_util::get_time_stamp_ms());
task->__set_status(task_running);
task->error_times = 0;
LOG_INFO << "task status:" << "task_running";
m_task_db.write_task_to_db(task);
LOG_INFO << "task status:" << "write_task_to_db";
LOG_INFO << "E_SUCCESS:" << E_SUCCESS;
return E_SUCCESS;
}
auto state = get_task_state(task);
if (DBC_TASK_RUNNING == state)
{
if (task->status != task_running)
{
task->__set_status(task_running);
m_task_db.write_task_to_db(task);
}
int32_t ret = CONTAINER_WORKER_IF->restart_container(task->container_id);
if (ret != E_SUCCESS)
{
LOG_ERROR << "restart task error. Task id:" << task->task_id;
LOG_ERROR << "restart task error. container_id:" << task->container_id;
return E_DEFAULT;
}
LOG_DEBUG << "task have been restarted, task id:" << task->task_id;
return E_SUCCESS;
} else if(DBC_TASK_STOPPED == state)
{
int32_t ret = CONTAINER_WORKER_IF->start_container(task->container_id);
if (ret != E_SUCCESS)
{
LOG_ERROR << "Start task error. Task id:" << task->task_id;
return E_DEFAULT;
}
} else
{
LOG_ERROR << "Start task error. Task id:" << task->task_id;
return E_DEFAULT;
}
LOG_INFO << "start task success. Task id:" << task->task_id;
task->__set_start_time(time_util::get_time_stamp_ms());
task->__set_status(task_running);
task->error_times = 0;
LOG_INFO << "task status:" << "task_running";
m_task_db.write_task_to_db(task);
LOG_INFO << "task status:" << "write_task_to_db";
LOG_INFO << "E_SUCCESS:" << E_SUCCESS;
return E_SUCCESS;
}
int32_t task_scheduling::stop_task(std::shared_ptr<ai_training_task> task)
{
if (nullptr == task || task->container_id.empty())
{
return E_SUCCESS;
}
LOG_INFO << "stop task " << task->task_id;
task->__set_end_time(time_util::get_time_stamp_ms());
m_task_db.write_task_to_db(task);
if(task->container_id.empty()){
return CONTAINER_WORKER_IF->stop_container(task->task_id);
}else{
return CONTAINER_WORKER_IF->stop_container(task->container_id);
}
}
int32_t task_scheduling::stop_task_only_id(std::string task_id)
{
return CONTAINER_WORKER_IF->stop_container(task_id);
}
int32_t task_scheduling::delete_task(std::shared_ptr<ai_training_task> task)
{
if (nullptr == task)
{
return E_SUCCESS;
}
try
{
if (DBC_TASK_RUNNING == get_task_state(task))
{
stop_task(task);
}
if (!task->container_id.empty())
{
CONTAINER_WORKER_IF->remove_container(task->container_id);
}
m_task_db.delete_task(task);
}
catch (...)
{
LOG_ERROR << "delete task abnormal";
return E_DEFAULT;
}
return E_SUCCESS;
}
TASK_STATE task_scheduling::get_task_state(std::shared_ptr<ai_training_task> task)
{
if (nullptr == task || task->task_id.empty())
{
return DBC_TASK_NULL;
}
// inspect container
std::string container_id = task->container_id;
// container can be started again by task delivered latter,
// in that case, the container's id and name keeps the original value, then new task's id and container's name does not equal any more.
if(!task->container_id.empty())
{
container_id = task->container_id;
}
std::shared_ptr<container_inspect_response> resp = CONTAINER_WORKER_IF->inspect_container(container_id);
if (nullptr == resp)
{
// LOG_ERROR << "set_container_id:" << "null";
//task->__set_container_id("");
return DBC_TASK_NOEXIST;
}
//local db may be deleted, but task is running, then container_id is empty.
if (!resp->id.empty() && ( task->container_id.empty() || resp->id != task->container_id))
{
task->__set_container_id(resp->id);
}
if (true == resp->state.running)
{
return DBC_TASK_RUNNING;
}
return DBC_TASK_STOPPED;
}
int32_t task_scheduling::start_pull_image(std::shared_ptr<ai_training_task> task)
{
if (nullptr == task || task->training_engine.empty())
{
return E_SUCCESS;
}
//check local evn.
auto ret = m_container_worker->can_pull_image();
if (E_SUCCESS != m_container_worker->can_pull_image())
{
return ret;
}
if (nullptr == m_pull_image_mng)
{
m_pull_image_mng = std::make_shared<image_manager>();
}
//if the task pulling image is not the task need image.
if (!m_pull_image_mng->get_pull_image_name().empty()
&& m_pull_image_mng->get_pull_image_name() != task->training_engine)
{
if (PULLING == m_pull_image_mng->check_pull_state())
{
m_pull_image_mng->terminate_pull();
}
}
//if training_engine is pulling, then return.
if (PULLING == m_pull_image_mng->check_pull_state())
{
return E_SUCCESS;
}
//start pulling
if (E_SUCCESS != m_pull_image_mng->start_pull(task->training_engine))
{
LOG_ERROR << "task engine pull fail. engine:" << task->training_engine;
return E_PULLING_IMAGE;
}
m_pull_image_mng->set_start_time(time_util::get_time_stamp_ms());
if (task_queueing == task->status)
{
task->__set_status(task_pulling_image);
LOG_DEBUG << "docker pulling image. change status to " << to_training_task_status_string(task->status)
<< " task id:" << task->task_id << " image engine:" << task->training_engine;
m_task_db.write_task_to_db(task);
}
return E_SUCCESS;
}
int32_t task_scheduling::stop_pull_image(std::shared_ptr<ai_training_task> task)
{
if (!m_pull_image_mng)
{
return E_SUCCESS;
}
if (task->training_engine != m_pull_image_mng->get_pull_image_name())
{
LOG_ERROR << "pull image is not " << task->training_engine;
return E_SUCCESS;
}
LOG_INFO << "terminate pull " << task->training_engine;
m_pull_image_mng->terminate_pull();
return E_SUCCESS;
}
}
}
|
e15d258953f98f5d5ebaa381ded93b96c98c387f
|
3b219a1ef40c30fe4d9686ffb04acc80386fbbdf
|
/LinkedList/DoublyLinkedList/C++/DLL.cpp
|
9d48a28535f2d62f4c4832c24e05910ecc11726f
|
[] |
no_license
|
AJKZ/DataStructures
|
1e44e9be9cdd77f29ef8a75f9c9b5ee09d10b6f4
|
2452274958feda59d5019ec2769af95d5bfa13f8
|
refs/heads/master
| 2020-08-07T17:15:09.806278
| 2019-02-08T12:34:28
| 2019-02-08T12:34:28
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,242
|
cpp
|
DLL.cpp
|
#include <iostream>
class Node {
public:
int value;
Node *prev;
Node *next;
Node() = default;
Node(int value, Node *prev, Node *next){
this->value = value;
this->prev = prev;
this->next = next;
}
};
class DLL {
public:
Node *head;
Node *tail;
int size;
public:
DLL(){
head = tail = nullptr;
size = 0;
}
void insertFirst(int value){
Node *newNode = new Node;
newNode->value = value;
newNode->next = head;
if(head == nullptr){
tail = newNode;
}else{
head->prev = newNode;
}
head = newNode;
size++;
}
void insertLast(int value){
Node *newNode = new Node;
newNode->value = value;
newNode->prev = tail;
if(tail == nullptr){
head = newNode;
}else{
tail->next = newNode;
}
tail = newNode;
size++;
}
void insertAtPos(int value, int pos){
if(pos <= 1){
insertFirst(value);
return;
}
if(pos >= size){
insertLast(value);
return;
}
Node *current = head;
for(int i = 2; i < pos; i++){
current = current->next;
}
Node *tmp = current->next;
Node *newNode = new Node;
newNode->value = value;
newNode->prev = current;
newNode->next = tmp;
current->next = newNode;
tmp->prev = newNode;
free(tmp);
size++;
}
void printList(){
Node *current = head;
while(current != nullptr){
std::cout << current->value << " ";
current = current->next;
}
std::cout << std::endl;
}
int getSize(){
return size;
}
bool isEmpty(){
return size == 0;
}
void removeFirst(){
if(head != nullptr){
head = head->next;
if(head != nullptr){
head->prev = nullptr;
}
size--;
}
}
void removeLast(){
if(tail != nullptr){
tail = tail->prev;
if(tail != nullptr){
tail->next = nullptr;
}
size--;
}
}
void removeAtPos(int pos){
if(pos <= 1){
removeFirst();
return;
}
if(pos >= size){
removeLast();
return;
}
Node *current = head->next;
for(int i = 2; i < pos; i++){
current = current->next;
}
Node *p = current->prev;
Node *n = current->next;
p->next = n;
n->prev = p;
size--;
}
};
|
df6bbf0e38c37a3a3351784f2e70e6dc44645f76
|
a5f3b0001cdb692aeffc444a16f79a0c4422b9d0
|
/main/basegfx/test/testtools.hxx
|
f4b9e15112911316c53866643a4c6b94ce1838a2
|
[
"Apache-2.0",
"CPL-1.0",
"bzip2-1.0.6",
"LicenseRef-scancode-other-permissive",
"Zlib",
"LZMA-exception",
"LGPL-2.0-or-later",
"LicenseRef-scancode-free-unknown",
"LicenseRef-scancode-philippe-de-muyter",
"OFL-1.1",
"LGPL-2.1-only",
"MPL-1.1",
"X11",
"LGPL-2.1-or-later",
"GPL-2.0-only",
"OpenSSL",
"LicenseRef-scancode-cpl-0.5",
"GPL-1.0-or-later",
"NPL-1.1",
"MIT",
"MPL-2.0",
"LicenseRef-scancode-other-copyleft",
"LicenseRef-scancode-unknown-license-reference",
"MPL-1.0",
"LicenseRef-scancode-openssl",
"LicenseRef-scancode-ssleay-windows",
"BSL-1.0",
"LicenseRef-scancode-docbook",
"LicenseRef-scancode-mit-old-style",
"Python-2.0",
"BSD-3-Clause",
"IJG",
"LicenseRef-scancode-warranty-disclaimer",
"GPL-2.0-or-later",
"LGPL-2.0-only",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-unknown",
"BSD-2-Clause",
"Autoconf-exception-generic",
"PSF-2.0",
"NTP",
"LicenseRef-scancode-python-cwi",
"Afmparse",
"W3C",
"W3C-19980720",
"curl",
"LicenseRef-scancode-x11-xconsortium-veillard",
"Bitstream-Vera",
"HPND-sell-variant",
"ICU"
] |
permissive
|
apache/openoffice
|
b9518e36d784898c6c2ea3ebd44458a5e47825bb
|
681286523c50f34f13f05f7b87ce0c70e28295de
|
refs/heads/trunk
| 2023-08-30T15:25:48.357535
| 2023-08-28T19:50:26
| 2023-08-28T19:50:26
| 14,357,669
| 907
| 379
|
Apache-2.0
| 2023-08-16T20:49:37
| 2013-11-13T08:00:13
|
C++
|
UTF-8
|
C++
| false
| false
| 2,781
|
hxx
|
testtools.hxx
|
/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
#ifndef _BASEGFX_TESTTOOLS_HXX
#define _BASEGFX_TESTTOOLS_HXX
#include <basegfx/point/b2dpoint.hxx>
#include <vector>
#include <iostream>
namespace basegfx
{
class B2DCubicBezier;
class B2DPolygon;
class B2DPolyPolygon;
class B2DRange;
namespace testtools
{
class Plotter
{
public:
/** Create a plotter for the given output stream
This class can be used to generate gnuplot scripts for
a number of basegfx graphics primitives, useful for
debugging, regression-testing and comparing basegfx.
*/
Plotter( ::std::ostream& rOutputStream );
/** Delete the plotter
This implicitly flushes all potential pending writes
to the output stream
*/
~Plotter();
/** Plot a 2d polygon into the current graph
*/
void plot( const B2DPolygon& rPoly );
/** Plot a 2d polyPolygon into the current graph
*/
void plot( const B2DPolyPolygon& rPolyPoly );
/** Plot a 2d point into the current graph
*/
void plot( const B2DPoint& rPoint );
/** Plot a 2d rectangle into the current graph
*/
void plot( const B2DRange& rRect );
/** Plot a 2d line into the current graph
*/
void plot( const B2DPoint& rStartPoint, const B2DPoint& rEndPoint );
/** Plot a 2d cubic bezier curve into the current graph
*/
void plot( const B2DCubicBezier& rCurve );
private:
void writeSeparator();
::std::ostream& mrOutputStream;
::std::vector< B2DPoint > maPoints;
bool mbFirstElement;
};
}
}
#endif /* _BASEGFX_TESTTOOLS_HXX */
|
e1a466cc08600d37b6734f42186efbe900a050e6
|
4704b793b2c16bf86603d54e0f2775464f737eee
|
/include/scancontext_ros/scan_context_matcher.h
|
9206aee80ec5ff53ad90a3eb12e601cf1f6ef1b7
|
[] |
no_license
|
zhouzhibo0117/scancontext_ros
|
10a1cfd51ddb7a0a3d38b32d5eb822e683dc810b
|
c30df24a5e3cce4f66baa6cb8c8cf84ed4579eb8
|
refs/heads/master
| 2020-07-29T04:19:01.471609
| 2020-04-19T12:17:01
| 2020-04-19T12:17:01
| 209,666,981
| 3
| 2
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,009
|
h
|
scan_context_matcher.h
|
//
// Created by zhou on 9/26/19.
//
#ifndef SRC_SCAN_CONTEXT_MATCHER_H
#define SRC_SCAN_CONTEXT_MATCHER_H
#include "scan_context.h"
#include "util/file_io_util.h"
#include <opencv2/opencv.hpp>
class ScanContextMatcher {
public:
ScanContextMatcher() {};
void LoadDatabase(const std::string &database_folder_path);
void SetTarget(const ScanContext &target);
void Solve(int candidate_num);
std::vector<std::vector<double>> GetCandidateInfo();
private:
std::vector<ScanContext> vec_sc_database_;
ScanContext sc_target_;
std::string database_folder_path_;
int candidate_num_;
class ScanContextDistance {
public:
std::string id;
double ring_key_dist;
double image_dist;
public:
ScanContextDistance() {
id = "";
ring_key_dist = 0.0;
image_dist = 0.0;
}
ScanContextDistance(const std::string &id_input,
double ring_key_dist_input);
ScanContextDistance(const std::string &id_input,
double ring_key_dist_input,
double image_dist_input);
};
std::vector<ScanContextDistance> vec_scan_context_all_;
std::vector<ScanContextDistance> vec_scan_context_candidate_;
private:
void GetCandidatesWithDatabase();
void UpdateScanContextDistance();
static double CalcRingKeyDistance(const ScanContext &target,
const ScanContext &query);
static double CalcImageDistance(const ScanContext &target,
const ScanContext &query);
static bool CompareRingKeyDistanceFunction(const ScanContextDistance &scd1,
const ScanContextDistance &scd2);
static bool CompareImageDistanceFunction(const ScanContextDistance &scd1,
const ScanContextDistance &scd2);
};
#endif //SRC_SCAN_CONTEXT_MATCHER_H
|
05576a540ac1a89c0f6263364218d117d5b97f80
|
bda34633491b808b2dddd292a885186b4dedc7e6
|
/860/lemonade_change.cpp
|
cd7d8d5644930eab5e0b5a993f819eef0fecd12c
|
[] |
no_license
|
berneylin/LeetCode2019Spring
|
3990561862faddf8f294d5750e4ac4c5fcba2953
|
000f8fb2b00d4d5c6bfec9abb11b7f6158ad9ba8
|
refs/heads/master
| 2021-07-07T00:14:10.898739
| 2020-08-17T18:03:23
| 2020-08-17T18:03:23
| 167,664,035
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 584
|
cpp
|
lemonade_change.cpp
|
#include<vector>
using namespace std;
class Solution {
public:
bool lemonadeChange(vector<int>& bills) {
int five = 0, ten = 0;
for(const int bill: bills){
if (bill == 5) five++;
else if(bill==10){
five--;
ten++;
}
else{
if(ten>0){
ten--;
five--;
}
else{
five -= 3;
}
}
if(five<0) return false;
}
return true;
}
};
|
5705dc4f5a6eda34418490cf49402575f51d0625
|
3687ee904728af0aa012c2eba0442c3c22ff33b1
|
/src/VideoBase.cpp
|
8b00489aef41329607f7d2c17d057a5d28604a46
|
[] |
no_license
|
lucasjliu/omtt
|
f93f9e2d1de1254819a7080f8165d97b40c80149
|
2045ff80a23ba2afa89be1d6cbcc24cd341e2441
|
refs/heads/master
| 2020-07-02T11:49:27.967803
| 2017-02-13T00:52:40
| 2017-02-13T00:52:40
| 74,307,706
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,535
|
cpp
|
VideoBase.cpp
|
/*
* by Jiahuan.Liu
* 04/17/2016
* @SCUT
*/
#include "VideoBase.h"
CvFont VideoBase::_labelFont = CvFont();
const int RECT_THICKNESS = 2;
void VideoBase::initialize()
{
cvInitFont(&_labelFont, CV_FONT_HERSHEY_SIMPLEX, 1, 1, 1, 2, 8);
}
void VideoBase::showFrame(const char* name, Frame* frame)
{
cvShowImage(name, frame);
}
void VideoBase::rectangle(Frame* frame, Object& object,
CvScalar rectColor)
{
cvRectangle(frame, CvPoint(object.getPos().x, object.getPos().y),
CvPoint(object.getPos().x + object.getSize().width,
object.getPos().y + object.getSize().height), rectColor, RECT_THICKNESS);
}
void VideoBase::cutFrame(Frame* frame, Position& p, Size& s, Frame*& patch)
{
cvSetImageROI(frame, cvRect(p.x, p.y, s.width, s.height));
patch = cvCreateImage(CvSize(frame->roi->width, frame->roi->height), 8, 3);
cvCopy(frame, patch, 0);
cvResetImageROI(frame);
}
void VideoBase::extractColorHist(Frame* frame, Position& p, Size& s,
float*& histVal, const int binSize, bool isRGB)
{
int histSize[] = { binSize, binSize, binSize };
float range[] = { 0, 255 };
float* ranges[] = { range, range, range };
CvHistogram* hist = cvCreateHist(3, histSize, CV_HIST_ARRAY, ranges, 1);
Frame* patch = NULL;
cutFrame(frame, p, s, patch);
IplImage* plane1 = cvCreateImage(cvGetSize(patch), 8, 1);
IplImage* plane2 = cvCreateImage(cvGetSize(patch), 8, 1);
IplImage* plane3 = cvCreateImage(cvGetSize(patch), 8, 1);
IplImage* planes[] = { plane1, plane2, plane3 };
if (!isRGB)
cvCvtColor(patch, patch, CV_BGR2HSV);
cvSplit(patch, plane1, plane2, plane3, 0);
cvCalcHist(planes, hist, 0, 0);
for (int dim1 = 0; dim1 < binSize; dim1++)
{
for (int dim2 = 0; dim2 < binSize; dim2++)
{
for (int dim3 = 0; dim3 < binSize; dim3++)
{
histVal[dim1*binSize*binSize + dim2*binSize + dim3] =
cvGetReal3D(hist->bins, dim1, dim2, dim3);
}
}
}
cvReleaseImage(&patch);
}
ImageInput::ImageInput(std::string path)
: _path(path) {}
bool ImageInput::get(unsigned int frameNum, Frame*& frame)
{
char filename[10];
sprintf_s(filename, "%06d", frameNum + 1);
std::string filepath = _path + std::string(filename) + ".jpg";
frame = cvLoadImage(filepath.c_str(), CV_LOAD_IMAGE_COLOR);
return (bool)frame;
}
ImageOutput::ImageOutput(std::string path)
: _path(path) {}
bool ImageOutput::put(unsigned int frameNum, Frame* frame)
{
char filename[11];
sprintf_s(filename, "%06d", frameNum + 1);
std::string filepath = _path + std::string(filename) + ".jpg";
return cvSaveImage(filepath.c_str(), frame);
}
|
d57ae2c2e1b910360d8f336cb278c6364c4b5639
|
afcb8a2f000099ec415ee72021ea2533030184fd
|
/src/Nazara/Core/ThreadExt.cpp
|
782647b6d53c03702e2a4e5431f9e78cf8e91522
|
[
"GPL-3.0-only",
"MIT",
"BSD-3-Clause",
"LicenseRef-scancode-proprietary-license",
"Apache-2.0"
] |
permissive
|
NazaraEngine/NazaraEngine
|
b67397af8a355bed0389daafd3463f0695a1ab92
|
1b9c19fd788e6116984c2466bad0b75047012a6a
|
refs/heads/main
| 2023-09-04T10:08:48.321299
| 2023-08-31T16:01:59
| 2023-08-31T16:01:59
| 4,192,801
| 207
| 23
|
MIT
| 2023-09-09T20:09:05
| 2012-05-01T14:08:17
|
C++
|
UTF-8
|
C++
| false
| false
| 1,607
|
cpp
|
ThreadExt.cpp
|
// Copyright (C) 2023 Jérôme "Lynix" Leclercq (lynix680@gmail.com)
// This file is part of the "Nazara Engine - Core module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#include <Nazara/Core/ThreadExt.hpp>
#if defined(NAZARA_PLATFORM_WINDOWS)
#include <Nazara/Core/Win32/ThreadImpl.hpp>
#elif defined(NAZARA_PLATFORM_POSIX)
#include <Nazara/Core/Posix/ThreadImpl.hpp>
#else
#error OS not handled
#endif
#include <Nazara/Core/Debug.hpp>
namespace Nz
{
namespace NAZARA_ANONYMOUS_NAMESPACE
{
PlatformImpl::ThreadHandle GetHandle(std::thread& thread)
{
#ifdef NAZARA_COMPILER_MINGW_THREADS_MCF
// MCF flavor (returns HANDLE by a void*)
return static_cast<PlatformImpl::ThreadHandle>(_MCF_thread_get_handle(thread.native_handle()));
#else
// Cast because of MSVC standard library that returns a void* instead of a HANDLE
return static_cast<PlatformImpl::ThreadHandle>(thread.native_handle());
#endif
}
}
std::string GetCurrentThreadName()
{
return PlatformImpl::GetCurrentThreadName();
}
std::string GetThreadName(std::thread& thread)
{
NAZARA_USE_ANONYMOUS_NAMESPACE
// std::thread::native_handle returns a void* with MSVC instead of a HANDLE
return PlatformImpl::GetThreadName(GetHandle(thread));
}
void SetCurrentThreadName(const char* name)
{
PlatformImpl::SetCurrentThreadName(name);
}
void SetThreadName(std::thread& thread, const char* name)
{
NAZARA_USE_ANONYMOUS_NAMESPACE
// std::thread::native_handle returns a void* with MSVC instead of a HANDLE
PlatformImpl::SetThreadName(GetHandle(thread), name);
}
}
|
fb188f999bbec11014fc8e5cf129c150d937835b
|
0679a42f3d35946a420f5c56f4bd2249080c82f3
|
/include/parser.hpp
|
dd00af5cb2aef883b44379de33526e5329a4993f
|
[] |
no_license
|
ZzAZz4/asdfasdf
|
fe5b38bd7ac99ad55e6621b2677b6e1b0a66b2ed
|
c1e3092f49c65f730b8d51368942a8ed0a658e26
|
refs/heads/main
| 2023-03-25T21:04:34.208805
| 2021-03-15T03:13:49
| 2021-03-15T03:13:49
| 343,542,816
| 0
| 0
| null | 2021-03-15T02:41:23
| 2021-03-01T20:08:30
|
C++
|
UTF-8
|
C++
| false
| false
| 127
|
hpp
|
parser.hpp
|
//
// Created by esteb on 13-Mar-21.
//
#ifndef ASDFASDF_PARSER_HPP
#define ASDFASDF_PARSER_HPP
#endif //ASDFASDF_PARSER_HPP
|
87bcfe55e0d0402422bfca45b83341653908eb7a
|
73f1a17f1f546b6e8aea2e9651dff03972a0549f
|
/Data-Structure/spoj QTREE Query on a tree LCT.cpp
|
d386d5b284cc1867323c8cb501f55a9cc4706a0d
|
[] |
no_license
|
lzcwr/ACM-ICPC-Code
|
b24cff38952b77472b0cb4de4ffe91d3b6194232
|
c6f3254686df8488f8c8f9677ef81f99fb15472b
|
refs/heads/master
| 2021-05-03T18:17:19.141420
| 2017-06-08T08:51:46
| 2017-06-08T08:51:46
| 70,171,318
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,736
|
cpp
|
spoj QTREE Query on a tree LCT.cpp
|
#include <bits/stdc++.h>
#ifdef __WINDOWS_
#include <windows.h>
#endif
using namespace std;
#define showtime printf("time = %.15f\n", clock() / (double)CLOCKS_PER_SEC);
#define lson l, m, rt << 1
#define rson m + 1, r, rt << 1 | 1
#define root 1, n, 1
const int maxn = 10010;
const int maxm = 100005;
const int mod = 7;
const double eps = 1e-8;
const double pi = acos(-1.0);
const int inf = 0x7fffffff;
int ch[maxn][2], pre[maxn], Max[maxn], key[maxn];
bool rt[maxn];
void push_down(int r) {}
void push_up(int r)
{
Max[r] = max(max(Max[ch[r][false]], Max[ch[r][true]]), key[r]);
}
void Rotate(int x)
{
int y = pre[x], kind = ch[y][true] == x;
ch[y][kind] = ch[x][!kind];
pre[ch[y][kind]] = y;
pre[x] = pre[y];
pre[y] = x;
ch[x][!kind] = y;
if(rt[y]) rt[y] = false, rt[x] = true;
else ch[pre[x]][ch[pre[x]][true] == y] = x;
push_up(y);
}
void P(int r)
{
if(!rt[r]) P(pre[r]);
push_down(r);
}
void Splay(int r)
{
while(!rt[r])
{
int f = pre[r], ff = pre[f];
if(rt[f]) Rotate(r);
else if( (ch[ff][true] == f) == (ch[f][true] == r) )
Rotate(f), Rotate(r);
else Rotate(r), Rotate(r);
}
push_up(r);
}
int Access(int x)
{
int y = 0;
do{
Splay(x);
rt[ch[x][true]] = true;
rt[ch[x][true] = y] = false;
push_up(x);
x = pre[y = x];
} while(x);
return y;
}
void lca(int &u, int &v)
{
Access(v); v = 0;
while(u)
{
Splay(u);
if(!pre[u]) return ;
rt[ch[u][true]] = true;
rt[ch[u][true] = v] = false;
push_up(u);
u = pre[v = u];
}
}
void change(int u, int k)
{
Access(u);
key[u] = k;
push_up(u);
}
void query(int u, int v)
{
lca(u, v);
printf("%d\n", max(Max[v], Max[ch[u][true]]));
}
struct Edge
{
int to, nxt;
int val, idx;
} edge[maxn << 1];
int head[maxn], id[maxn], tot;
void addedge(int u, int v, int val, int idx)
{
edge[tot].to = v; edge[tot].nxt = head[u];
edge[tot].val = val; edge[tot].idx = idx;
head[u] = tot++;
}
void dfs(int u)
{
for(int i = head[u]; i != -1; i = edge[i].nxt)
{
int v = edge[i].to;
if(pre[v] != 0) continue;
pre[v] = u;
id[edge[i].idx] = v;
key[v] = edge[i].val;
dfs(v);
}
}
void init()
{
tot = 0;
memset(head, -1, sizeof(head));
}
int main()
{
int T;
scanf("%d", &T);
while(T--)
{
init();
int n;
scanf("%d", &n);
for(int i = 0; i <= n; i++)
{
pre[i] = 0;
ch[i][false] = ch[i][true] = 0;
rt[i] = true;
}
Max[0] = -inf;
for(int i = 1; i < n; i++)
{
int u, v, w;
scanf("%d%d%d", &u, &v, &w);
addedge(u, v, w, i);
addedge(v, u, w, i);
}
pre[1] = -1;
dfs(1);
pre[1] = 0;
char op[20];
while(scanf("%s", op) != EOF)
{
if(op[0] == 'D') break;
int a, b;
scanf("%d%d", &a, &b);
if(op[0] == 'C') change(id[a], b);
else query(a, b);
}
}
return 0;
}
|
1a3ae987b997c9da23aef38f851835fd7361e08a
|
d89333d3c1a63c9f7caf085d80b33fb3e7543a2f
|
/app/src/main/synthts_et/lib/etana/chklyh3.cpp
|
dab860952627bcc85a8acfc7efb1a0c100677ca2
|
[] |
no_license
|
Kaljurand/EKISpeak
|
b1c3f6f54c8e2318e21fc9ad34544e1c469e1c40
|
9bdb52b49a28311bbeebcd353539bb17f23cca00
|
refs/heads/master
| 2021-01-23T07:34:27.197992
| 2019-01-19T11:48:09
| 2019-01-19T14:00:39
| 33,014,685
| 12
| 2
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 9,641
|
cpp
|
chklyh3.cpp
|
/*
* kontrollib, kas S6na on suurt�hel. lyhend mingi l�puga;
* n�iteks:
*
* USA-ni, USAni, SS-lane, SSlane, IRA-meelne
*
*/
#include "mrf-mrf.h"
#include "mittesona.h"
int MORF0::chklyh3(MRFTULEMUSED *tulemus, FSXSTRING *S6na, int sygavus, int *tagasitasand)
{
int i;
int res;
FSXSTRING tmpsona, tmplopp, tmpliik, vorminimi;
//int tulem = -1; //FS_Failure;
const FSxCHAR *vn;
FSXSTRING s; // sona ise
FSXSTRING kriips(FSxSTR("")); // kriips (kui teda on)
FSXSTRING lopp; // l�pp ise
FSXSTRING ne_lopp; // line lane lopu jaoks
FSXSTRING lali; // line lane alguse jaoks
FSXSTRING ss; //
int s_pik;
int tyyp=0;
#define LYHEND 1
#define PROTSENT 2
#define KELL 3
#define PARAGRAHV 4
#define NUMBER 5
#define KRAAD 6
#define MATA 6
// if ( !ChIsUpper(*S6na) && *S6na != '%' && *S6na != para) /* ei alga suure t�hega */
// if (!TaheHulgad::OnSuur(S6na, 0) && (*S6na)[0] != (FSxCHAR)'%' && (*S6na)[0] != TaheHulgad::para[0]
if (TaheHulgad::AintSuuredjaNrjaKriipsud(S6na)) /* v�ib olla lihtsalt suuret�heline s�na */
return ALL_RIGHT; /* ei suru v�gisi l�hendiks */
s = (const FSxCHAR *)S6na->SpanIncluding((const FSxCHAR *)(TaheHulgad::protsendinumber));
if (s.GetLength() != 0)
if (TaheHulgad::OnLopus(&s, FSxSTR("%")) || TaheHulgad::OnLopus(&s, FSxSTR("%-")))
tyyp = PROTSENT;
if (!TaheHulgad::OnSuur(S6na, 0) && tyyp != PROTSENT && (*S6na)[0] != TaheHulgad::para[0] )
return ALL_RIGHT;
if (!tyyp)
{
s = (const FSxCHAR *)(S6na->SpanIncluding((const FSxCHAR *)(TaheHulgad::kraadinumber)));
if (s.GetLength() != 0)
if (TaheHulgad::OnLopus(&s, (const FSxCHAR *)(TaheHulgad::kraad))
|| TaheHulgad::OnLopus(&s, (const FSxCHAR *)(TaheHulgad::kraadjakriips)) )
tyyp = KRAAD;
}
if (!tyyp)
{
s = (const FSxCHAR *)(S6na->SpanIncluding((const FSxCHAR *)(TaheHulgad::paranumber)));
if (s.GetLength() != 0)
if (TaheHulgad::OnAlguses(&s, (const FSxCHAR *)(TaheHulgad::para)))
tyyp = PARAGRAHV;
}
if (!tyyp)
{
s = (const FSxCHAR *)(S6na->SpanIncluding((const FSxCHAR *)(TaheHulgad::matemaatika1)));
if (s.GetLength() == 2 && TaheHulgad::OnLopus(&s, FSxSTR("-")))
tyyp = MATA;
}
if (!tyyp)
{
s = (const FSxCHAR *)(S6na->SpanIncluding((const FSxCHAR *)(TaheHulgad::suurnrthtkriips)));
ss = (const FSxCHAR *)(S6na->SpanIncluding((const FSxCHAR *)(TaheHulgad::kellanumber)));
if (s.GetLength() > ss.GetLength())
tyyp = LYHEND;
else if (ss.GetLength() != 0 && s.GetLength() <= ss.GetLength())
{
s = ss;
tyyp = KELL;
}
}
if (!tyyp) // ei saa olla...
return ALL_RIGHT;
s_pik = s.GetLength();
lopp = (const FSxCHAR *)(S6na->Mid(s_pik));
if (lopp.GetLength()==0) // pole siin midagi vaadata
return ALL_RIGHT;
kriips = (const FSxCHAR *)(s.Mid(s_pik-1));
if (kriips != FSxSTR("-"))
kriips = FSxSTR("");
if (tyyp == LYHEND && kriips == FSxSTR("")) // ebakindel v�rk
{
if (s.GetLength()==1) // nt Arike
return ALL_RIGHT;
i = s.ReverseFind(FSxSTR("-"));
if (i == s.GetLength()-2)
return ALL_RIGHT; // nt CD-Romile
}
s.TrimRight(FSxSTR("-"));
if (s.GetLength()==0) // pole siin midagi vaadata
return ALL_RIGHT;
if (TaheHulgad::PoleMuudKui(&s, &TaheHulgad::number))
tyyp = NUMBER;
/* oletan, et on lyhend vm lubatud asi */
i = 1;
if (tyyp == LYHEND)
{
if(mrfFlags.Chk(MF_LYHREZH))
{
if (s.GetLength() == 1 || (!mrfFlags.Chk(MF_SPELL) && s.GetLength() < 7))
i = 1;
else
i = (dctLoend[3])[(FSxCHAR *)(const FSxCHAR *)s];
}
}
// *(S6na+k) = taht; /* taastan esialgse sona */
if (i==-1) /* pole lyhend */
return ALL_RIGHT;
if ((s.GetLength() > 1 && tyyp == LYHEND && (TaheHulgad::OnAlguses(&lopp, FSxSTR("la")) || TaheHulgad::OnAlguses(&lopp, FSxSTR("li"))) )
|| ((tyyp == NUMBER || tyyp == PROTSENT || tyyp == KRAAD) && TaheHulgad::OnAlguses(&lopp, FSxSTR("li"))) )
{
ne_lopp = (const FSxCHAR *)(lopp.Mid(2));
lali = (const FSxCHAR *)(lopp.Left(2));
vn = nLopud.otsi_ne_vorm((const FSxCHAR *)ne_lopp);
if (vn != NULL) /* ongi line lise ... voi lane lase ... */
{
vorminimi = vn;
vorminimi += FSxSTR(", ");
tmpsona = s;
if (kriips.GetLength() == 1 && !mrfFlags.Chk(MF_ALGV))
tmpsona += kriips;
else
tmpsona += FSxSTR("=");
tmpsona += lali;
if (mrfFlags.Chk(MF_ALGV) || vorminimi == FSxSTR("sg n, "))
tmpsona += FSxSTR("ne");
else
{
if (TaheHulgad::OnAlguses(&vorminimi, FSxSTR("pl")) || TaheHulgad::OnAlguses(&vorminimi, FSxSTR("sg p")))
tmpsona += FSxSTR("s");
else
tmpsona += FSxSTR("se");
}
if (ne_lopp == FSxSTR("ne") || ne_lopp == FSxSTR("se"))
tmplopp = FSxSTR("0");
else if (ne_lopp == FSxSTR("st"))
tmplopp = FSxSTR("t");
else if (TaheHulgad::OnAlguses(&vorminimi, FSxSTR("sg")))
tmplopp = (const FSxCHAR *)(ne_lopp.Mid(2));
else
tmplopp = (const FSxCHAR *)(ne_lopp.Mid(1));
if (lali == FSxSTR("la"))
tmpliik = FSxSTR("S");
else
tmpliik = FSxSTR("A");
tulemus->Add((const FSxCHAR *)tmpsona, (const FSxCHAR *)tmplopp, FSxSTR(""),
(const FSxCHAR *)tmpliik, (FSxCHAR *)(const FSxCHAR *)vorminimi);
*tagasitasand = 1;
return ALL_RIGHT;
}
}
vn = nLopud.otsi_lyh_vorm((const FSxCHAR *)lopp);
if (vn == NULL)
{
if (tyyp == LYHEND && (kriips.GetLength() != 0 || mrfFlags.Chk(MF_OLETA)) && // LYH-sona
!TaheHulgad::OnAlguses(&lopp, FSxSTR("lise")) && !TaheHulgad::OnAlguses(&lopp, FSxSTR("lasi")) )
{
res = chkwrd(tulemus, &lopp, lopp.GetLength(), sygavus, tagasitasand, LIIK_SACU);
if (res > ALL_RIGHT)
return res; /* viga! */
if ( tulemus->on_tulem() ) /* analyys �nnestus */
{
s += kriips;
tulemus->LisaTyvedeleEtte((const FSxCHAR *)s);
}
}
return ALL_RIGHT;
}
if (tyyp != LYHEND)
return ALL_RIGHT;
/* vist lihtne l�pp */
*tagasitasand = 1;
if (TaheHulgad::OnAlguses(&lopp, FSxSTR("te")) )// akronyymidele sellised lopud ei sobi
return ALL_RIGHT;
if (lopp == FSxSTR("i"))
vorminimi = FSxSTR("adt, sg g, sg p, ");
else if (lopp == FSxSTR("d"))
vorminimi = FSxSTR("pl n, sg p, ");
else
{
vorminimi = vn;
vorminimi += FSxSTR(", ");
}
FSxCHAR vi;
FSXSTRING fl;
vi = s[s.GetLength()-1];
fl = FSxSTR("FLMNRS");
if (vi == (FSxCHAR)'J'); // jott voi dzhei; iga lopp sobib...
else if (TaheHulgad::para.Find(vi) != -1 || vi == (FSxCHAR)'%')
{
if (lopp == FSxSTR("d"))
vorminimi = FSxSTR("pl n, ");
}
else if (fl.Find(vi) != -1)
{
if (!mrfFlags.Chk(MF_OLETA))
{
if (!TaheHulgad::OnAlguses(&lopp, FSxSTR("i")) && !TaheHulgad::OnAlguses(&lopp, FSxSTR("e")))
return ALL_RIGHT; // yldse ei sobinud
}
else if (lopp == FSxSTR("d"))
vorminimi = FSxSTR("pl n, ");
}
else
{
//vi = s.SuurPisiks(s.GetLength()-1); // tahan lihtsalt vi pisiks teha
vi = TaheHulgad::SuurPisiks(&s, s.GetLength()-1); // tahan lihtsalt vi pisiks teha
if (TaheHulgad::taish.Find(vi) != -1) // lyh lopus vokaal
{
if (TaheHulgad::OnAlguses(&lopp, FSxSTR("i")) || TaheHulgad::OnAlguses(&lopp, FSxSTR("e")))
return ALL_RIGHT; // yldse ei sobinud
}
if (!mrfFlags.Chk(MF_OLETA))
{
if (s.GetLength() == 1)
{
if (TaheHulgad::OnAlguses(&lopp, FSxSTR("i")) || TaheHulgad::OnAlguses(&lopp, FSxSTR("e")))
return ALL_RIGHT; // yldse ei sobinud
}
else
{
FSxCHAR eelvi;
eelvi = TaheHulgad::SuurPisiks(&s, s.GetLength()-2);
if (TaheHulgad::taish.Find(eelvi)==-1 &&
s != FSxSTR("GOST") && s != FSxSTR("GATT") && s != FSxSTR("SAPARD") && s != FSxSTR("SARS"))
if (TaheHulgad::OnAlguses(&lopp, FSxSTR("i")) || TaheHulgad::OnAlguses(&lopp, FSxSTR("e")))
return ALL_RIGHT; // yldse ei sobinud
}
}
}
tulemus->Add((const FSxCHAR *)s, (const FSxCHAR *)lopp, FSxSTR(""),
FSxSTR("Y"), (const FSxCHAR *)vorminimi);
return ALL_RIGHT;
}
|
63bbb18c62d60105a446a4bbebd7abe9d181abc0
|
c8b1a76f6387f9d8d63e2da621afdfa84b23a438
|
/test/proto/request_msg.pb.h
|
c6cde25e7ff56927965c9221b563529257619c19
|
[] |
no_license
|
bruan/srpc
|
a808d5bf35952ec0dcfc8e5663eb8187af229740
|
95a55aa9fe247043908f0f84d9e6bbd6b07c0b49
|
refs/heads/master
| 2021-01-12T07:50:31.896099
| 2017-06-19T03:24:06
| 2017-06-19T03:24:06
| 90,016,539
| 3
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| true
| 8,213
|
h
|
request_msg.pb.h
|
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: request_msg.proto
#ifndef PROTOBUF_request_5fmsg_2eproto__INCLUDED
#define PROTOBUF_request_5fmsg_2eproto__INCLUDED
#include <string>
#include <google/protobuf/stubs/common.h>
#if GOOGLE_PROTOBUF_VERSION < 2007000
#error This file was generated by a newer version of protoc which is
#error incompatible with your Protocol Buffer headers. Please update
#error your headers.
#endif
#if 2007000 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
#error This file was generated by an older version of protoc which is
#error incompatible with your Protocol Buffer headers. Please
#error regenerate this file with a newer version of protoc.
#endif
#include <google/protobuf/arena.h>
#include <google/protobuf/arenastring.h>
#include <google/protobuf/generated_message_util.h>
#include <google/protobuf/metadata.h>
#include <google/protobuf/message.h>
#include <google/protobuf/repeated_field.h>
#include <google/protobuf/extension_set.h>
#include <google/protobuf/unknown_field_set.h>
// @@protoc_insertion_point(includes)
// Internal implementation detail -- do not call these.
void protobuf_AddDesc_request_5fmsg_2eproto();
void protobuf_AssignDesc_request_5fmsg_2eproto();
void protobuf_ShutdownFile_request_5fmsg_2eproto();
class request_msg;
// ===================================================================
class request_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:request_msg) */ {
public:
request_msg();
virtual ~request_msg();
request_msg(const request_msg& from);
inline request_msg& operator=(const request_msg& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _internal_metadata_.unknown_fields();
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return _internal_metadata_.mutable_unknown_fields();
}
static const ::google::protobuf::Descriptor* descriptor();
static const request_msg& default_instance();
void Swap(request_msg* other);
// implements Message ----------------------------------------------
inline request_msg* New() const { return New(NULL); }
request_msg* New(::google::protobuf::Arena* arena) const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const request_msg& from);
void MergeFrom(const request_msg& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const {
return InternalSerializeWithCachedSizesToArray(false, output);
}
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
void InternalSwap(request_msg* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return _internal_metadata_.arena();
}
inline void* MaybeArenaPtr() const {
return _internal_metadata_.raw_arena_ptr();
}
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// required uint32 tt = 1;
bool has_tt() const;
void clear_tt();
static const int kTtFieldNumber = 1;
::google::protobuf::uint32 tt() const;
void set_tt(::google::protobuf::uint32 value);
// required string info = 2;
bool has_info() const;
void clear_info();
static const int kInfoFieldNumber = 2;
const ::std::string& info() const;
void set_info(const ::std::string& value);
void set_info(const char* value);
void set_info(const char* value, size_t size);
::std::string* mutable_info();
::std::string* release_info();
void set_allocated_info(::std::string* info);
// @@protoc_insertion_point(class_scope:request_msg)
private:
inline void set_has_tt();
inline void clear_has_tt();
inline void set_has_info();
inline void clear_has_info();
// helper for ByteSize()
int RequiredFieldsByteSizeFallback() const;
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::uint32 _has_bits_[1];
mutable int _cached_size_;
::google::protobuf::internal::ArenaStringPtr info_;
::google::protobuf::uint32 tt_;
friend void protobuf_AddDesc_request_5fmsg_2eproto();
friend void protobuf_AssignDesc_request_5fmsg_2eproto();
friend void protobuf_ShutdownFile_request_5fmsg_2eproto();
void InitAsDefaultInstance();
static request_msg* default_instance_;
};
// ===================================================================
// ===================================================================
#if !PROTOBUF_INLINE_NOT_IN_HEADERS
// request_msg
// required uint32 tt = 1;
inline bool request_msg::has_tt() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void request_msg::set_has_tt() {
_has_bits_[0] |= 0x00000001u;
}
inline void request_msg::clear_has_tt() {
_has_bits_[0] &= ~0x00000001u;
}
inline void request_msg::clear_tt() {
tt_ = 0u;
clear_has_tt();
}
inline ::google::protobuf::uint32 request_msg::tt() const {
// @@protoc_insertion_point(field_get:request_msg.tt)
return tt_;
}
inline void request_msg::set_tt(::google::protobuf::uint32 value) {
set_has_tt();
tt_ = value;
// @@protoc_insertion_point(field_set:request_msg.tt)
}
// required string info = 2;
inline bool request_msg::has_info() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void request_msg::set_has_info() {
_has_bits_[0] |= 0x00000002u;
}
inline void request_msg::clear_has_info() {
_has_bits_[0] &= ~0x00000002u;
}
inline void request_msg::clear_info() {
info_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
clear_has_info();
}
inline const ::std::string& request_msg::info() const {
// @@protoc_insertion_point(field_get:request_msg.info)
return info_.GetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void request_msg::set_info(const ::std::string& value) {
set_has_info();
info_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:request_msg.info)
}
inline void request_msg::set_info(const char* value) {
set_has_info();
info_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:request_msg.info)
}
inline void request_msg::set_info(const char* value, size_t size) {
set_has_info();
info_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:request_msg.info)
}
inline ::std::string* request_msg::mutable_info() {
set_has_info();
// @@protoc_insertion_point(field_mutable:request_msg.info)
return info_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* request_msg::release_info() {
// @@protoc_insertion_point(field_release:request_msg.info)
clear_has_info();
return info_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void request_msg::set_allocated_info(::std::string* info) {
if (info != NULL) {
set_has_info();
} else {
clear_has_info();
}
info_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), info);
// @@protoc_insertion_point(field_set_allocated:request_msg.info)
}
#endif // !PROTOBUF_INLINE_NOT_IN_HEADERS
// @@protoc_insertion_point(namespace_scope)
// @@protoc_insertion_point(global_scope)
#endif // PROTOBUF_request_5fmsg_2eproto__INCLUDED
|
6f516c729016df451cff350f86c137e6f0714c36
|
ce5c724a6e817b9f7d1a2565a8717ae4276e48e4
|
/Lab04/Exercise03/main.cpp
|
106c3f01187db4c7db1db96faf36c459a880b31a
|
[] |
no_license
|
aliciazavala/Programming-I
|
6d6620faf4accefc542a3b5b8c219930468fff76
|
21edeec0a1441f98833d3328f2d3da83ffa58e10
|
refs/heads/master
| 2022-12-28T08:50:45.296850
| 2020-09-24T17:42:43
| 2020-09-24T17:42:43
| 297,139,874
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 878
|
cpp
|
main.cpp
|
/* -----------------------------------------------------------------------------
*
* File Name: main.cpp
* Author: Alicia Zavala Ferreira
* Assignment: EECS-168 Lab 4
* Description: This program will print an nxn checkerboard with dimensions obtained by user
* Date: 04/05/2019
*
---------------------------------------------------------------------------- */
#include<iostream>
#include<string>
int main(){
int size;char a,b,e;
a='A';
b='B';
std::cout<<"Input size of your board (nxn):";
std::cin>>size;
for (int i = 1; i <= size; i++)
{
for (int j = 0; j < size; j++)
{
if (j % 2 == 0)
{
std::cout << a;
}
else
{
std::cout << b;
}
}
e = a;
a = b;
b = e;
std::cout << std::endl;
}
return(0);
}
|
3d4301a39ee70f4239e88f64ae65f84e75e7b4df
|
f35768ca2c485c60d96cb6b12282707174318cac
|
/stepper_piec4/stepper_piec4.ino
|
8339ef0f079c290f9bc774de239f7f612f5e4597
|
[] |
no_license
|
KowalczykL/workspaceard
|
840161c63269e2e8a18b80712d22182085a4b430
|
454b552d3db1a232209e38434c86fa5ee19dbee7
|
refs/heads/master
| 2021-06-10T16:14:33.771699
| 2017-01-30T22:24:16
| 2017-01-30T22:24:16
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 9,060
|
ino
|
stepper_piec4.ino
|
byte motorPin1 = 8; // Blue - 28BYJ48 pin 1
byte motorPin2 = 9; // Pink - 28BYJ48 pin 2
byte motorPin3 = 10; // Yellow - 28BYJ48 pin 3
byte motorPin4 = 11; // Orange - 28BYJ48 pin 4
byte motorSpeed = 3; //variable to set stepper speed
int obr = 512; // szacowane na obrót 512
int i;
//int zmm = 0;
byte pozAkt = 5;
byte pozDoc = 5;
byte pozmin = 2;
byte pozmax = 100;
long del = 150;
long licznik = 1;
boolean start1 = true;
boolean start2 = true;
boolean start3 = true;
#define styg 4
#define styd 5
#define przg 3
#define przd 2
#define ledPin 13
#define potp A2
#include <OneWire.h>
#include <DallasTemperature.h>
#define ONE_WIRE_BUS 6
OneWire oneWire(ONE_WIRE_BUS);
DallasTemperature sensors(&oneWire);
byte stemp = 50;
byte ntemp = 50;
byte to = 60;
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2); // set the LCD address to 0x27 for a 16 chars and 2 line display
void setup() {
pinMode(motorPin1, OUTPUT);
pinMode(motorPin2, OUTPUT);
pinMode(motorPin3, OUTPUT);
pinMode(motorPin4, OUTPUT);
pinMode(ledPin, OUTPUT);
pinMode(styg, INPUT_PULLUP);
pinMode(styd, INPUT_PULLUP);
pinMode(przg, INPUT_PULLUP);
pinMode(przd, INPUT_PULLUP);
// Serial.begin(9600);
sensors.begin();
// attachInterrupt(0, pozX, LOW);
// attachInterrupt(1, pozX, LOW);
lcd.init(); // initialize the lcd
lcd.backlight();
lcd.print("*main*");
}
void off() {
digitalWrite(motorPin1, LOW);
digitalWrite(motorPin2, LOW);
digitalWrite(motorPin3, LOW);
digitalWrite(motorPin4, LOW);
// delay(5000);
}
void counterclockwise() {
digitalWrite(motorPin1, HIGH);
digitalWrite(motorPin2, LOW);
digitalWrite(motorPin3, LOW);
digitalWrite(motorPin4, LOW);
delay(motorSpeed);
digitalWrite(motorPin1, HIGH);
digitalWrite(motorPin2, HIGH);
digitalWrite(motorPin3, LOW);
digitalWrite(motorPin4, LOW);
delay (motorSpeed);
digitalWrite(motorPin1, LOW);
digitalWrite(motorPin2, HIGH);
digitalWrite(motorPin3, LOW);
digitalWrite(motorPin4, LOW);
delay(motorSpeed);
digitalWrite(motorPin1, LOW);
digitalWrite(motorPin2, HIGH);
digitalWrite(motorPin3, HIGH);
digitalWrite(motorPin4, LOW);
delay(motorSpeed);
digitalWrite(motorPin1, LOW);
digitalWrite(motorPin2, LOW);
digitalWrite(motorPin3, HIGH);
digitalWrite(motorPin4, LOW);
delay(motorSpeed);
digitalWrite(motorPin1, LOW);
digitalWrite(motorPin2, LOW);
digitalWrite(motorPin3, HIGH);
digitalWrite(motorPin4, HIGH);
delay (motorSpeed);
digitalWrite(motorPin1, LOW);
digitalWrite(motorPin2, LOW);
digitalWrite(motorPin3, LOW);
digitalWrite(motorPin4, HIGH);
delay(motorSpeed);
digitalWrite(motorPin1, HIGH);
digitalWrite(motorPin2, LOW);
digitalWrite(motorPin3, LOW);
digitalWrite(motorPin4, HIGH);
delay(motorSpeed);
}
void clockwise() {
digitalWrite(motorPin4, HIGH);
digitalWrite(motorPin3, LOW);
digitalWrite(motorPin2, LOW);
digitalWrite(motorPin1, LOW);
delay(motorSpeed);
digitalWrite(motorPin4, HIGH);
digitalWrite(motorPin3, HIGH);
digitalWrite(motorPin2, LOW);
digitalWrite(motorPin1, LOW);
delay (motorSpeed);
digitalWrite(motorPin4, LOW);
digitalWrite(motorPin3, HIGH);
digitalWrite(motorPin2, LOW);
digitalWrite(motorPin1, LOW);
delay(motorSpeed);
digitalWrite(motorPin4, LOW);
digitalWrite(motorPin3, HIGH);
digitalWrite(motorPin2, HIGH);
digitalWrite(motorPin1, LOW);
delay(motorSpeed);
digitalWrite(motorPin4, LOW);
digitalWrite(motorPin3, LOW);
digitalWrite(motorPin2, HIGH);
digitalWrite(motorPin1, LOW);
delay(motorSpeed);
digitalWrite(motorPin4, LOW);
digitalWrite(motorPin3, LOW);
digitalWrite(motorPin2, HIGH);
digitalWrite(motorPin1, HIGH);
delay (motorSpeed);
digitalWrite(motorPin4, LOW);
digitalWrite(motorPin3, LOW);
digitalWrite(motorPin2, LOW);
digitalWrite(motorPin1, HIGH);
delay(motorSpeed);
digitalWrite(motorPin4, HIGH);
digitalWrite(motorPin3, LOW);
digitalWrite(motorPin2, LOW);
digitalWrite(motorPin1, HIGH);
delay(motorSpeed);
}
void obrclockwise() {
for (i = 1; i < obr; i++)
{
clockwise();
}
off();
// Serial.println("otw");
}
void obrcounterclockwise() {
for (i = 1; i < obr; i++)
{
counterclockwise();
}
off();
// Serial.println("zamyk");
}
void mig() {
digitalWrite(ledPin, HIGH);
delay(500);
digitalWrite(ledPin, LOW);
}
void start()
{
if (start3 == true)
{
lcd.print("start3");
if (digitalRead(styg) == 0)
{
obrcounterclockwise();
obrcounterclockwise();
obrcounterclockwise();
}
if (digitalRead(styd) == 0)
{
obrclockwise();
obrclockwise();
obrclockwise();
}
start3 = false;
}
if (start2 == true)
{
lcd.print("start2");
if (digitalRead(styg) == 1)
{
obrclockwise();
if (digitalRead(styg) == 0)
{
pozAkt = 0;
pozmin = 3;
start2 = false;
}
}
}
if (start1 == true)
{
lcd.print("start1");
if (digitalRead(styd) == 1)
{
obrcounterclockwise();
pozAkt++;
if (digitalRead(styd) == 0)
{
pozmax = (pozAkt - 3);
start1 = false;
}
}
}
}
void serial()
{
}
void lcdfunc()
{
lcd.clear();
lcd.print("T:");
lcd.print(ntemp);
lcd.print(" ");
lcd.print("P:");
lcd.print(pozAkt);
lcd.setCursor(1, 1);
lcd.print("T opt:");
lcd.print(to);
lcd.print(" ");
lcd.print("Pmax:");
lcd.print(pozmax);
//lcd.print();
//lcd.print();
//lcd.print();
}
void pot()
{
to = analogRead(potp);
to = map(to, 0, 123, 40, 90);
}
void styki()
{
if (digitalRead(styg) != 1)
{
pozAkt = 2;
}
if (digitalRead(styd) != 1)
{
pozAkt = 38;
}
}
void ogrpoz()
{
if (pozDoc > 38) {
pozDoc = 38;
}
if (pozDoc < 2) {
pozDoc = 2;
}
}
void delays()
{
if (ntemp < 40)
{
del = 200;
}
else if ((ntemp >= 40 && ntemp <= 62) || (ntemp >= 68 && ntemp <= 76))
{
del = 20;
}
else if (ntemp >= 62 && ntemp <= 68)
{
del = 60;
}
else if (ntemp > 76)
{
del = 1;
}
else
{
del = 100;
}
}
void petla()
{
for (i = 1; i < del; i++);
}
void pozycjonuj()
{
if (pozAkt > pozDoc/*&& pozAkt <= 38*/)
{
obrclockwise();
pozAkt--;
}
else if (pozAkt < pozDoc/* && pozAkt >= 2 */)
{
obrcounterclockwise();
pozAkt++;
}
else
{
mig;
}
}
void tempy()
{ sensors.requestTemperatures();
stemp = ntemp;
ntemp = (sensors.getTempCByIndex(0));
}
void sprTempNowaPoz()
{
if (ntemp < (to - 25))
{ pozDoc--;
if (pozDoc > 17)
{
pozDoc = 17;
}
}
else if (ntemp >= (to - 25) && ntemp < (to - 12))
{ if (ntemp > stemp)
{
mig;
}
else if (ntemp < stemp)
{
pozDoc--;
}
else if (ntemp == stemp)
{
pozDoc--;
}
if (pozDoc > 20)
{
pozDoc = 20;
}
}
else if ((ntemp >= (to - 12)) && (ntemp < (to - 7)))
{ if (ntemp > stemp)
{ pozDoc++;
pozDoc++;
}
else if (ntemp < stemp)
{ pozDoc--;
pozDoc--;
}
else if (ntemp == stemp)
{ pozDoc--;
pozDoc--;
}
if (pozDoc > 24)
{
pozDoc = 24;
}
if (pozDoc < 12)
{
pozDoc = 12;
}
}
else if ((ntemp >= (to - 7)) && (ntemp <= (to - 3)))
{ if (ntemp > stemp)
{ pozDoc++;
pozDoc++;
}
else if (ntemp < stemp)
{ pozDoc--;
pozDoc--;
}
else if (ntemp == stemp)
{
pozDoc--;
}
if (pozDoc > 32)
{
pozDoc = 32;
}
if (pozDoc < 16)
{
pozDoc = 16;
}
}
else if ((ntemp > (to - 3)) && (ntemp < (to + 3)))
{ if (ntemp > stemp)
{
pozDoc++;
}
else if (ntemp < stemp)
{
pozDoc--;
}
else if (ntemp == stemp)
{
mig();
}
if (pozDoc > 36)
{
pozDoc = 36;
}
if (pozDoc < 20)
{
pozDoc = 20;
}
}
else if ((ntemp >= (to + 3)) && (ntemp <= (to + 5)))
{ if (ntemp > stemp)
{ pozDoc++;
pozDoc++;
}
else if (ntemp == stemp)
{ pozDoc++;
pozDoc++;
}
else if (ntemp < stemp)
{ pozDoc--;
pozDoc--;
}
if (pozDoc < 24)
{
pozDoc = 24;
}
}
else if ((ntemp > (to + 5)) && (ntemp <= (to + 5)))
{ if (ntemp > stemp)
{ pozDoc++;
pozDoc++;
}
else if (ntemp == stemp)
{ pozDoc++;
pozDoc++;
}
else if (ntemp < stemp)
{ pozDoc--;
pozDoc--;
}
if (pozDoc < 24)
{
pozDoc = 24;
}
}
else if ((ntemp > (to + 5)) && (ntemp < (to + 7)))
{ if (ntemp > stemp)
{ pozDoc++;
pozDoc++;
}
else if (ntemp == stemp)
{
pozDoc++;
}
else if (ntemp < stemp)
{
mig;
}
if (pozDoc < 28)
{
pozDoc = 28;
}
}
else if (ntemp >= (to + 7))
{ pozDoc++;
if (pozDoc < 32)
{
pozDoc = 32;
}
}
}
void loop() {
tempy();
lcdfunc();
start();
delays();
sprTempNowaPoz();
styki();
ogrpoz();
petla();
pozycjonuj();
//serial();
lcdfunc();
}
|
35c92f6e4a56ef03a90a33f07c23dad8d41e74c0
|
4b9c10f69d7a3d80d443bb83fa2de38151bad85b
|
/458/decoder_wrong.cpp
|
288e9579efc849c99d4f84f1362b055f48d456f0
|
[] |
no_license
|
rajul/UVa
|
474dd53f84c02ad28097d6423e360886b95c3539
|
0534eb23c1868f96e6c72bf2de5c7a72faba5489
|
refs/heads/master
| 2020-12-29T02:38:12.777992
| 2019-05-19T05:04:15
| 2019-05-19T05:04:15
| 43,592,656
| 2
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,256
|
cpp
|
decoder_wrong.cpp
|
/*
Wrong Solution
*/
#include <iostream>
#include <map>
using namespace std;
map<char, char> mapping;
void create_mapping()
{
int i;
string input1 = "1JKJ'pz'{ol'{yhklthyr'vm'{ol'Jvu{yvs'Kh{h'Jvywvyh{pvu5";
string input2 = "1PIT'pz'h'{yhklthyr'vm'{ol'Pu{lyuh{pvuhs'I|zpulzz'Thjopul'Jvywvyh{pvu5";
string input3 = "1KLJ'pz'{ol'{yhklthyr'vm'{ol'Kpnp{hs'Lx|pwtlu{'Jvywvyh{pvu5";
string output1 = "*CDC is the trademark of the Control Data Corporation.";
string output2 = "*IBM is a trademark of the International Business Machine Corporation.";
string output3 = "*DEC is the trademark of the Digital Equipment Corporation.";
int l1 = input1.length();
int l2 = input2.length();
int l3 = input3.length();
for(i=0; i<l1; i++)
{
char key = input1[i];
char value = output1[i];
mapping[key] = value;
}
for(i=0; i<l2; i++)
{
char key = input2[i];
char value = output2[i];
mapping[key] = value;
}
for(i=0; i<l3; i++)
{
char key = input3[i];
char value = output3[i];
mapping[key] = value;
}
}
int main()
{
create_mapping();
string input;
int i, l;
while(1)
{
cin >> input;
if(cin.eof())
break;
l = input.length();
for(i=0; i<l; i++)
cout << mapping[input[i]];
cout << endl;
}
return 0;
}
|
dc80d159edbfd3183c90ce4a3aad2fade0ec92e8
|
83934c40b2bd835464732345fa516b2c657a6259
|
/RcsPySim/src/cpp/core/observation/OMDynamicalSystemDiscrepancy.h
|
1ba4fcb2b5d2c08065de62a02b148a5e25e1e438
|
[
"BSD-2-Clause",
"BSD-3-Clause"
] |
permissive
|
1abner1/SimuRLacra
|
e0427bf4f2459dcb992206d3b2f347beab68a5b4
|
d7e9cd191ccb318d5f1e580babc2fc38b5b3675a
|
refs/heads/master
| 2023-05-25T04:52:17.917649
| 2021-06-07T07:26:44
| 2021-06-07T07:26:44
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,429
|
h
|
OMDynamicalSystemDiscrepancy.h
|
/*******************************************************************************
Copyright (c) 2020, Fabio Muratore, Honda Research Institute Europe GmbH, and
Technical University of Darmstadt.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of Fabio Muratore, Honda Research Institute Europe GmbH,
or Technical University of Darmstadt, 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 FABIO MURATORE, HONDA RESEARCH INSTITUTE EUROPE GMBH,
OR TECHNICAL UNIVERSITY OF DARMSTADT 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.
*******************************************************************************/
#ifndef _OMDYNAMICALSYSTEMDISCREPANCY_H_
#define _OMDYNAMICALSYSTEMDISCREPANCY_H_
#include "ObservationModel.h"
#include "../action/AMDynamicalSystemActivation.h"
namespace Rcs
{
class ControllerBase;
/**
* ObservationModel wrapping multiple AMDynamicalSystemActivation to compute the discrepancies between the task space changes
* commanded by the DS and the ones executed by the robot.
*/
class OMDynamicalSystemDiscrepancy : public ObservationModel
{
public:
/**
* Create from action model.
* NOTE: assumes that the task activation action model wraps a IK-based action model.
*/
explicit OMDynamicalSystemDiscrepancy(AMDynamicalSystemActivation* actionModel);
virtual ~OMDynamicalSystemDiscrepancy();
// not copy- or movable - klocwork doesn't pick up the inherited ones. RCSPYSIM_NOCOPY_NOMOVE(OMDynamicalSystemDiscrepancy)
virtual unsigned int getStateDim() const;
unsigned int getVelocityDim() const override;
virtual void computeObservation(double* state, double* velocity, const MatNd* currentAction, double dt) const;
void reset() override;
virtual std::vector<std::string> getStateNames() const;
private:
// Task activation action model, provides the tasks (not owned)
AMDynamicalSystemActivation* actionModel;
// Controller to extract the task space state
ControllerBase* controller;
// last task space state
MatNd* x_curr;
};
} /* namespace Rcs */
#endif /* _OMDYNAMICALSYSTEMDISCREPANCY_H_ */
|
85193dfe73bb58d728f0697bc8a026ba7a68bcd9
|
a9f7e5c4f461c50c3f6a720e65eace2f9662f2dc
|
/main.cpp
|
860ca2447d4e1865ef6fc2e4620f108216750f9d
|
[] |
no_license
|
nazmul284/OpenGL-mercedes-car-logo
|
d823cdefc49e21a641009737cb4def9b5b8a7fec
|
04f830464998b35182b906bb0ecb2562b37a0282
|
refs/heads/master
| 2020-09-02T08:23:35.778136
| 2019-11-02T16:13:49
| 2019-11-02T16:13:49
| 219,178,541
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,535
|
cpp
|
main.cpp
|
#include<windows.h>
#include <GL/glut.h>
#include <math.h>
void init(void)
{
glClearColor(1.0, 1.0, 1.0, 0.1); // Set display window colour to white
glMatrixMode(GL_PROJECTION); // Set projection parameters
gluOrtho2D(0.0, 600.0, 0.0, 600.0);
}
void display()
{
float theta;
int i;
glClear(GL_COLOR_BUFFER_BIT); // Clear display window
//Set colour to red
glColor3f(0.2, 0.2, 0.2);
glBegin(GL_POLYGON);
for(i=0;i<360;i++)
{
theta=i*3.142/180;
glVertex2f(250+235*cos(theta),250+235*sin(theta)); // here (250,250) is the center and 150 is the radius
}
glEnd();
float theta4;
int l;
//Set colour to red
glColor3f(0.5, 0.5, 0.5);
glBegin(GL_POLYGON);
for(l=0;l<360;l++)
{
theta4=l*3.142/180;
glVertex2f(250+225*cos(theta4),250+225*sin(theta4)); // here (250,250) is the center and 150 is the radius
}
glEnd();
float theta2;
int j;
glBegin(GL_POLYGON);
for(j=0;j<360;j++)
{
glColor3f(0.4, 0.4, 0.4);
theta2=j*3.142/180;
glVertex2f(250+220*cos(theta2),250+220*sin(theta2)); // here (250,250) is the center and 220 is the radius
}
glEnd();
float theta3;
int k;
glColor3f(1.0, 1.0, 1.0);
glBegin(GL_POLYGON);
for(k=0;k<360;k++)
{
theta3=k*3.142/180;
glVertex2f(250+205*cos(theta3),250+205*sin(theta3)); // here (250,250) is the center and 205 is the radius
}
glEnd();
// 1
glBegin(GL_TRIANGLES);
glColor3f(0.4, 0.4, 0.4);
glVertex2i(250, 250);
glColor3f(0.7, 0.7, 0.7);
glVertex2i(281.25, 274.99);
glColor3f(0.3, 0.3, 0.3);
glVertex2i(250, 458.35);
glEnd();
glColor3f(0.0, 0.0, 3.0);
// 6
glBegin(GL_TRIANGLES);
glColor3f(0.7, 0.7, 0.7);
glVertex2i(250, 250);
glColor3f(0.7, 0.7, 0.7);
glVertex2i(250, 458.35);
glColor3f(0.5, 0.5, 0.5);
glVertex2i(218.75, 274.99);
glEnd();
///
// 2
glBegin(GL_TRIANGLES);
glColor3f(0.4, 0.4, 0.4);
glVertex2i(250, 250);
glColor3f(0.7, 0.7, 0.7);
glVertex2i(281.25, 274.99);
glColor3f(0.3, 0.3, 0.3);
glVertex2i(435, 150);
glEnd();
glColor3f(1.0, 0.0, 3.0);
// 3
glBegin(GL_TRIANGLES);
glColor3f(0.4, 0.4, 0.4);
glVertex2i(250, 250);
glColor3f(0.7, 0.7, 0.7);
glVertex2i(435, 150);
glColor3f(0.3, 0.3, 0.3);
glVertex2i(255, 213);
glEnd();
///
glColor3f(1.0, 0.5, 3.0);
// 4
glBegin(GL_TRIANGLES);
glColor3f(0.3, 0.3, 0.3);
glVertex2i(250, 250);
glColor3f(0.6, 0.6, 0.6);
glVertex2i(255, 213);
glColor3f(0.5, 0.5, 0.5);
glVertex2i(93, 110);
glEnd();
glColor3f(1.0, 0.5, 3.0);
// 5
glBegin(GL_TRIANGLES);
glColor3f(0.7, 0.7, 0.7);
glVertex2i(250, 250);
glColor3f(0.7, 0.7, 0.7);
glVertex2i(218.75, 274.99);
glColor3f(0.6, 0.6, 0.6);
glVertex2i(93, 110);
glEnd();
glFlush();
}
int main(int argc, char* argv[])
{
glutInit(&argc, argv); // Initalise GLUT
glutInitDisplayMode(GLUT_SINGLE|GLUT_RGB); // Set display mode
glutInitWindowPosition(100, 100); // Set window position
glutInitWindowSize(600, 600); // Set window size
glutCreateWindow("An Example OpenGL Program"); // Create display window
init(); // Execute initialisation procedure
glutDisplayFunc(display); // Send graphics to display window
glutMainLoop(); // Display everything and wait
return 0;
}
|
09b52c05d61b89ff96fd0d779e7baca39b51f208
|
c23ba168431ad1d1fdab69b5da012240361a5648
|
/src/TCPHelper.h
|
860f46084855439426bc5b7657ee8678d2283d71
|
[] |
no_license
|
2ToThe10th/1CDepartmentEntryTask
|
028cdebc5dcdfb397ceb9b239ccefd51e0599b0c
|
64ee7a6b695df82f9c2f53ddaf3c0a349bd7e9d0
|
refs/heads/master
| 2022-04-16T18:07:03.288253
| 2020-04-13T21:27:22
| 2020-04-13T21:27:22
| 255,401,078
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 582
|
h
|
TCPHelper.h
|
//
// Created by 2ToThe10th on 13.04.2020.
//
#ifndef INC_1CDEPARTMENTENTRYTASK_SRC_TCPHELPER_H_
#define INC_1CDEPARTMENTENTRYTASK_SRC_TCPHELPER_H_
#include <cstdlib>
#include <exception>
class InetAtonException : public std::exception {
[[nodiscard]] const char *what() const noexcept override {
return "inet aton";
}
};
void WriteAll(int socket_fd, const char *buffer, size_t buffer_size);
void WriteString(int socket_fd, const std::string& buffer);
void ReadAll(int socket_fd, char *buffer, size_t buffer_size);
#endif //INC_1CDEPARTMENTENTRYTASK_SRC_TCPHELPER_H_
|
e631631bb636082f990f0953d3bcb051a5173b06
|
a967d530185fc3704e07be11dc8f7f9457b19402
|
/ffmpegvideosource.cpp
|
0a7113a3b5748ac43ad3e6de9c974e1eddef6ead
|
[] |
no_license
|
mbaradad/shotdetection
|
392a3c9e8ca75e8bd576474f47d238081ecfe226
|
adcf4badba38cb094695f5afa8ee74d264b883cb
|
refs/heads/master
| 2022-04-19T01:50:12.865712
| 2020-04-15T05:11:54
| 2020-04-15T05:11:54
| 255,408,064
| 0
| 0
| null | 2020-04-13T18:18:04
| 2020-04-13T18:18:03
| null |
UTF-8
|
C++
| false
| false
| 7,487
|
cpp
|
ffmpegvideosource.cpp
|
#include <iostream>
#include "ffmpegvideosource.hpp"
#include <opencv2/imgproc/imgproc.hpp>
extern "C" {
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libswscale/swscale.h>
}
#include <string>
#include <memory>
using namespace std;
double inline normalize_ts(int64_t ts, AVRational time_base)
{
return double(ts) * av_q2d(time_base);
}
int64_t inline denormalize_ts(double ts, AVRational time_base)
{
return int64_t(ts * time_base.den) / time_base.num;
}
double inline normalize_ts(int64_t ts, int64_t time_base)
{
return double(ts) / time_base;
}
AVStreamConverter::AVStreamConverter(PixelFormat src_format, int width, int height)
{
int flags = 2; // 2 was taken from an example, apparently the flag is ignored in swscale anyway
sws_ = sws_getContext(width, height, src_format, width, height,
PIX_FMT_RGB24, flags, NULL, NULL, NULL);
}
AVStreamConverter::~AVStreamConverter()
{
sws_freeContext(sws_);
}
void AVStreamConverter::frame_to_rgb24(const AVFrame* frame, unsigned char* rgb_data,
int rgb_data_linesize)
{
uint8_t* dst_data[3] = {(uint8_t*)(rgb_data), NULL, NULL};
int dst_stride[3] = {rgb_data_linesize, 0, 0};
sws_scale(sws_, frame->data, frame->linesize, 0, frame->height,
dst_data, dst_stride);
}
double FFMPEGVideoSource::getTimestamp(int) const
{
if (pint->frame_dts == (int64_t) AV_NOPTS_VALUE){
cout << "Could not find ANY timestamp. Please implement something..." << endl;
return -1.;
}
else
return normalize_ts(pint->frame_dts, pint->stream->time_base);
}
double FFMPEGVideoSource::getStartTimestamp()
{
if (pint->format->start_time == (int64_t) AV_NOPTS_VALUE){
return 0.0;
}
else
return normalize_ts(pint->format->start_time, AV_TIME_BASE);
}
FFMPEGVideoSource::FFMPEGVideoSource(const std::string& filename){
pint = new Impl;
pint->filename = filename;
AVDictionary* options = NULL;
av_dict_set(&options, "rtsp_transport", "tcp", 0);
AVFormatContext* format = avformat_alloc_context();
av_register_all();
avcodec_register_all();
if (avformat_open_input(&format, filename.c_str(), NULL, &options) != 0) {
cout << "could not open file" << endl;
return;
}
if (options) av_dict_free(&options);
if (avformat_find_stream_info(format, NULL) < 0) {
cout <<"Could not retrieve stream info from file" <<endl;
return;
}
// Obtain stream info
int stream_index = -1;
for (int i = 0; i < format->nb_streams; i++){
if (format->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO){
stream_index = i;
}
//cout << format->streams[i]->codec->codec_type << endl;
}
if (stream_index == -1){
cout << "No video stream found" << endl;
return;
}
AVStream *stream = format->streams[stream_index];
AVCodecContext *codec = stream -> codec;
if (avcodec_open2(codec, avcodec_find_decoder(codec->codec_id), NULL) < 0) {
cout << "Failed to open decoder for stream #"<<stream_index<<" in file"<<endl;
return;
}
av_init_packet(&pint->avpkt);
pint->stream = stream;
pint->format = format;
pint->stream_index = stream_index;
pint->cur_frame = avcodec_alloc_frame();
pint->converter = new AVStreamConverter(pint->stream->codec->pix_fmt,
pint->stream->codec->width, pint->stream->codec->height);
pint->img = cv::Mat(cv::Size(codec->width, codec->height), CV_8UC3);
cout << "Init source" << endl;
}
FFMPEGVideoSource::~FFMPEGVideoSource()
{
if (pint->avpkt.data)
av_free_packet(&pint->avpkt);
if (pint->cur_frame)
av_free(pint->cur_frame);
if (pint->stream)
avcodec_close(pint->stream->codec);
if (pint->format)
avformat_close_input(&(pint->format));
delete pint;
}
CvSize FFMPEGVideoSource::getSize(){
int w = pint->stream->codec->width;
int h = pint->stream->codec->height;
return cvSize(w, h);
}
double FFMPEGVideoSource::getAspectRatio(){
int w = pint->stream->codec->width;
int h = pint->stream->codec->height;
return (double) w/ (double) h;
}
int FFMPEGVideoSource::getNumberOfFrames(){
return pint->stream->nb_frames;
}
int FFMPEGVideoSource::getFrameNumber(){
return pint->stream->codec->frame_number;
}
bool FFMPEGVideoSource::getNextFrame(){
int got_pic = 0;
// Free packet from last frame
if (pint->avpkt.data){
av_free_packet(&pint->avpkt);
}
int64_t timestamp = (int64_t)AV_NOPTS_VALUE;
while (av_read_frame(pint->format, &pint->avpkt) >= 0){
// make sure we are decoding from the right stream
if (pint->avpkt.stream_index == pint->stream_index){
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(52, 23, 0)
int res = avcodec_decode_video2(pint->stream->codec, pint->cur_frame,
&got_pic, &pint->avpkt);
#else
int res = avcodec_decode_video(pint->stream->codec, pint->cur_frame,
&got_pic, pint->avpkt.data, pint->avpkt.size);
#endif
if (res < 0){
std::cerr << "ERROR: Error decoding video frame!" << std::endl;
return false;
}
if (got_pic) {
timestamp = pint->avpkt.dts;
break;
}
}
av_free_packet(&pint->avpkt);
}
if (!got_pic and (pint->stream->codec->codec->capabilities & CODEC_CAP_DELAY)){
AVPacket avpkt;
av_init_packet(&avpkt);
avpkt.data = 0;
avpkt.size = 0;
// flush decoder
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(52, 23, 0)
if (avcodec_decode_video2(pint->stream->codec, pint->cur_frame,
&got_pic, &pint->avpkt) < 0)
#else
if (avcodec_decode_video(pint->stream->codec, pint->cur_frame,
&got_picture, pint->avpkt.data, pint->avpkt.size) < 0)
#endif
{
std::cerr << "ERROR: Error decoding video frame!" << std::endl;
return false;
}
}
if (got_pic){
if (timestamp != (int64_t)AV_NOPTS_VALUE)
{
pint->frame_dts = timestamp;
}
else
{
int64_t delta = denormalize_ts(1.0 / av_q2d(pint->stream->r_frame_rate), pint->stream->time_base);
pint->frame_dts += delta;
}
}
return got_pic != 0;
}
void FFMPEGVideoSource::printImage(){
cout << pint->cur_frame->data[0] << endl;
}
cv::Mat FFMPEGVideoSource::getImage(int channel){
pint->converter->frame_to_rgb24(pint->cur_frame, pint->img.ptr(), pint->img.step);
return pint->img;
}
bool FFMPEGVideoSource::getFrame(int frame)
{
double ts = getStartTimestamp() + frame / av_q2d(pint->stream->r_frame_rate);
return getFrameAt(ts);
}
bool FFMPEGVideoSource::getFrameAt(double timestamp)
{
int64_t seek_target = denormalize_ts(timestamp, pint->stream->time_base);
if (av_seek_frame(pint->format, pint->stream_index, seek_target, AVSEEK_FLAG_ANY) < 0){
cout <<"Error while seeking"<<endl;
return false;
}
avcodec_flush_buffers(pint->stream->codec);
return getNextFrame();
}
// double getLength(); not needed
|
76df003f0645e4cf16b41dd155d9b873faab0ac8
|
9df457dfb0dcf45a65522623eb062514065491a0
|
/matrix_algebra.h
|
4e0d77c0d824168aff402bed6b507db400f78010
|
[] |
no_license
|
phzls/MBL_v1
|
9e4d2df8ad44c9ca1a56196d9ca48441d7e6bb20
|
1723cea5e3c3e8453fb73dd4f9d17c82a55f526c
|
refs/heads/master
| 2021-03-27T16:12:26.515411
| 2016-04-01T18:33:03
| 2016-04-01T18:33:03
| 33,960,287
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,057
|
h
|
matrix_algebra.h
|
//
// Created by Liangsheng Zhang on 4/14/15.
//
#ifndef MATRIX_ALGEBRA_H
#define MATRIX_ALGEBRA_H
/*
* This file defines functions which handle general matrix algebra based on Eigen.
*/
#include <iostream>
#include <Eigen/Dense>
using namespace Eigen;
using namespace std;
void Matrix_Add(const MatrixXd&, const MatrixXd&, MatrixXd&);
void Matrix_Add(const MatrixXd&, const MatrixXd&, MatrixXcd&);
void Matrix_Add(const MatrixXd&, const MatrixXcd&, MatrixXcd&);
void Matrix_Add(const MatrixXcd&, const MatrixXd&, MatrixXcd&);
void Matrix_Add(const MatrixXcd&, const MatrixXcd&, MatrixXcd&);
void Matrix_Add(const MatrixXd&, const MatrixXd&, VectorXd&);
void Matrix_Add(const MatrixXd&, const MatrixXd&, VectorXcd&);
void Matrix_Add(const MatrixXd&, const MatrixXcd&, VectorXcd&);
void Matrix_Add(const MatrixXcd&, const MatrixXd&, VectorXcd&);
void Matrix_Add(const MatrixXcd&, const MatrixXcd&, VectorXcd&);
void Matrix_Sub(const MatrixXd&, const MatrixXd&, MatrixXd&);
void Matrix_Sub(const MatrixXd&, const MatrixXd&, MatrixXcd&);
void Matrix_Sub(const MatrixXd&, const MatrixXcd&, MatrixXcd&);
void Matrix_Sub(const MatrixXcd&, const MatrixXd&, MatrixXcd&);
void Matrix_Sub(const MatrixXcd&, const MatrixXcd&, MatrixXcd&);
void Matrix_Sub(const MatrixXd&, const MatrixXd&, VectorXd&);
void Matrix_Sub(const MatrixXd&, const MatrixXd&, VectorXcd&);
void Matrix_Sub(const MatrixXd&, const MatrixXcd&, VectorXcd&);
void Matrix_Sub(const MatrixXcd&, const MatrixXd&, VectorXcd&);
void Matrix_Sub(const MatrixXcd&, const MatrixXcd&, VectorXcd&);
void Matrix_Mul(const MatrixXd&, const MatrixXd&, MatrixXd&);
void Matrix_Mul(const MatrixXd&, const MatrixXd&, MatrixXcd&);
void Matrix_Mul(const MatrixXd&, const MatrixXcd&, MatrixXcd&);
void Matrix_Mul(const MatrixXcd&, const MatrixXd&, MatrixXcd&);
void Matrix_Mul(const MatrixXcd&, const MatrixXcd&, MatrixXcd&);
void Matrix_Mul(const MatrixXd&, const MatrixXd&, VectorXd&);
void Matrix_Mul(const MatrixXd&, const MatrixXd&, VectorXcd&);
void Matrix_Mul(const MatrixXd&, const MatrixXcd&, VectorXcd&);
void Matrix_Mul(const MatrixXcd&, const MatrixXd&, VectorXcd&);
void Matrix_Mul(const MatrixXcd&, const MatrixXcd&, VectorXcd&);
template <class T1, class T2>
void Matrix_Mul_Check(const MatrixBase<T1>& A, const MatrixBase<T2>& B){
// Check dimensionality for multiplication
if (A.cols() != B.rows()){
cout << "Dimension does not match for matrix multiplication." << endl;
cout << "First matrix col num: " << A.cols() << endl;
cout << "Second matrix row num: " << B.rows() << endl;
abort();
}
}
template <class T1, class T2>
void Matrix_Add_Sub_Check(const MatrixBase<T1>& A, const MatrixBase<T2>& B){
// Check dimensionality for addition and subtraction
if (A.cols() != B.cols()){
cout << "Col dimension does not match for matrix multiplication." << endl;
cout << "First matrix col num: " << A.cols() << endl;
cout << "Second matrix col num: " << B.cols() << endl;
abort();
}
if (A.rows() != B.rows()){
cout << "Row dimension does not match for matrix multiplication." << endl;
cout << "First matrix row num: " << A.rows() << endl;
cout << "Second matrix row num: " << B.rows() << endl;
abort();
}
}
template <class T>
void Vector_Check(const MatrixBase<T>& A){
// Check if it is a vector
if (A.cols() != 1 && A.rows() != 1){
cout << "Matrix is not of vector shape." << endl;
cout << "Row num: " << A.rows() << endl;
cout << "Col num: " << A.cols() << endl;
abort();
}
}
template <class T1, class T2>
void Mul_Vector_Check(const MatrixBase<T1>& A, const MatrixBase<T2>& B){
// Check if the multiplication results in a vector
if (A.rows() != 1 && B.cols() != 1){
cout << "Multiplication does not give a vector." << endl;
cout << "First matrix row num: " << A.rows() << endl;
cout << "Second matrix col num: " << B.cols() << endl;
abort();
}
}
#endif //MATRIX_ALGEBRA_H
|
93fe45b43250152a7687aea1c0a3d60eba2aeb2c
|
80d2b3219bf0f980b8d2b24f8633edb5c4eb2b84
|
/src/controller.cpp
|
30fd45a11808fb11a49ca71914144ad7e25da007
|
[] |
no_license
|
CLDrone/vis_pose_test
|
49f63e86288d72d762a285e1b6b29952a541b9c0
|
f1dffb5a85cc447e90088f22402f33da5d71b584
|
refs/heads/master
| 2021-01-12T19:33:39.080903
| 2015-10-22T08:42:39
| 2015-10-22T08:42:39
| 44,729,590
| 0
| 0
| null | 2015-10-22T07:37:19
| 2015-10-22T07:37:19
| null |
UTF-8
|
C++
| false
| false
| 9,544
|
cpp
|
controller.cpp
|
/*
* Controller.cpp
*
* Created on: Mar 28, 2015
* Author: ubuntu
*/
#include "controller.h"
Controller::Controller(ros::NodeHandle* n)
{
initROS(n);
}
Controller::~Controller()
{
// TODO Auto-generated destructor stub
}
void Controller::initROS(ros::NodeHandle *n)
{
ros_node_ = n;
// Subscribe to joystick topic
joy_sub_ = ros_node_->subscribe<sensor_msgs::Joy>("joy", 10, &Controller::joyCallback, this);
// Advertise the attitude setpoint topic
pt_attitude_setpoint_pub_ = ros_node_->advertise<mavros_msgs::PoseThrottle>("/mavros/setpoint_attitude/pt_attitude", 1000);
// Advertise the position setpoint topic
position_setpoint_pub_ = ros_node_->advertise<geometry_msgs::PoseStamped>("/mavros/setpoint_position/local", 1000);
// Subscribe to service for changing the FCU mode
// Currently not used
set_mode_client_ = ros_node_->serviceClient<mavros_msgs::SetMode>("/mavros/set_mode");
// Set up the watchdog timer
watchdog_timer_ = ros_node_->createTimer(ros::Duration(0.2), &Controller::watchDogCallback, this);
watchdog_timer_.start();
ROS_INFO("^^^ ROS ON CONTROLLER INITIALIZED ^^^");
return;
}
void Controller::locationError()
{
// An error has occurred so stop sending setpoints to the FCU and let it do its normal
// failsafe to drop out of offboard mode
off_board_enabled_ = false;
}
void Controller::sendAttitudeCommand()
{
/*
* Don't send setpoint unless offboard enabled.
*/
if (!off_board_enabled_)
{
return;
}
mavros_msgs::PoseThrottle pt;
pt.pose = vehicle_command_ENU_.getPose();
pt.throttle.data = vehicle_command_ENU_.attitude.throttle;
pt_attitude_setpoint_pub_.publish(pt);
last_update_time_ = ros::Time::now();
return;
}
void Controller::sendAttitudeCommand(double roll, double pitch, double yaw, double throttle)
{
ROS_DEBUG(">SEND ATT SETPOINT[R:%5.3f P:%5.3f Y:%5.3f T:%5.3f]",
roll, pitch, yaw, throttle);
vehicle_command_ENU_.setAttitude(roll, pitch, yaw, throttle);
sendAttitudeCommand();
return;
}
void Controller::vehiclePositionUpdated()
{
if (initialize_setpoint_ && locator_ != NULL)
{
// Initialize the vehicle's current setpoints equal to the current position.
vehicle_command_ENU_.setPose(locator_->vehicle_current_ENU_.getPose());
vehicle_setpoint_ENU_.setPose(locator_->vehicle_current_ENU_.getPose());
initialize_setpoint_ = false;
}
}
void Controller::targetPositionUpdated()
{
// Do nothing place holder for those that want to do some sort of control on each target frame update
return;
}
void Controller::sendPositionCommand()
{
if (locator_ == NULL || !locator_->isTargetPoseInitialized() || !off_board_enabled_)
{
return;
}
geometry_msgs::PoseStamped vpc;
vpc.pose = vehicle_command_ENU_.getPose();
vpc.header.stamp = ros::Time::now();
position_setpoint_pub_.publish(vpc);
ROS_DEBUG(">SEND POS SETPOINT[X:%5.3f Y:%5.3f Z:%5.3f]",
vpc.pose.position.x,
vpc.pose.position.y,
vpc.pose.position.z);
last_update_time_ = ros::Time::now();
return;
}
void Controller::setPositionCommand(double x, double y, double z)
{
VehicleAttitude va = vehicle_setpoint_ENU_.attitude;
vehicle_command_ENU_.setAttitude(va);
vehicle_command_ENU_.setPosition(x, y, z);
return;
}
void Controller::sendPositionCommand(double x, double y, double z)
{
setPositionCommand(x, y, z);
sendPositionCommand();
return;
}
void Controller::watchDogLoop()
{
ros::Duration dt = ros::Time::now() - last_update_time_;
if (dt.toSec() > WATCHDOG_TIMEOUT)
{
ROS_WARN("***** WATCHDOG TIMEOUT NOT SENDING SETPOINTS *****");
last_update_time_ = ros::Time::now();
}
}
void Controller::watchDogCallback(const ros::TimerEvent& te)
{
watchDogLoop();
}
bool Controller::isVehiclePoseInitialized()
{
return locator_ == NULL ? false : locator_->isVehiclePoseInitialized();
}
void Controller::joyCallback(const sensor_msgs::Joy::ConstPtr& msg)
{
if (locator_ == NULL)
{
return;
}
// Determine the flight mode based upon the joystick buttons
FlightMode fm = getJoyFlightMode(msg);
switch (fm)
{
case FlightMode::MANUAL:
{
/*
* Fail safe mechanism to only enable offboard mode when the flight mode is manual AND
* The offboard button on the RC controller is not enabled.
* This will ensure that if off board mode is ever disabled then certain steps must be taken
* by the operator to put it back into offboard mode.
* Note that a better way to do this would be to query the FCU for its flight mode instead
* instead of relying on the state of the offboard switch on the joystick.
*/
if (!msg->buttons[OFF_BOARD_BUTTON])
{
off_board_enabled_ = true;
}
if (flight_mode_ != FlightMode::MANUAL)
{
ROS_INFO("ENTERING FLIGHT MODE MANUAL");
}
joyCallback(msg, fm);
flight_mode_ = FlightMode::MANUAL;
// Since we are in manual mode disable the automatic control loop
control_enabled_ = false;
return;
}
case FlightMode::POSCTL:
case FlightMode::ALTCTL:
{
if (flight_mode_ != fm)
{
ROS_INFO("ENTERING FLIGHT MODE: %s\n", fm == FlightMode::POSCTL ? "POSCTL" : "ALTCTL");
}
if (flight_mode_ == FlightMode::MANUAL)
{
control_enabled_ = true;
// initialize the setpoint to the current vehicle position so that the joystick
// inputs create position setpoints relative to that.
vehicle_setpoint_ENU_.setPose(locator_->vehicle_current_ENU_.getPose());
}
flight_mode_ = fm;
// Process the joystick inputs considering the flight mode
joyCallback(msg, fm);
}
}
}
void Controller::joyCallback(const sensor_msgs::Joy::ConstPtr& msg, FlightMode fm)
{
ROS_DEBUG("RAW JOY: AXES[%4.2f %4.2f %4.2f %4.2f %4.2f %4.2f] BUTTONS[%d %d %d %d]",
(double)msg->axes[0],
(double)msg->axes[1],
(double)msg->axes[2],
(double)msg->axes[3],
(double)msg->axes[4],
(double)msg->axes[5],
msg->buttons[0],
msg->buttons[1],
msg->buttons[2],
msg->buttons[3]);
ROS_DEBUG("RPYT[%4.2f %4.2f %4.2f %4.2f]",
(double)msg->axes[joy_axis_.roll],
(double)msg->axes[joy_axis_.pitch],
(double)msg->axes[joy_axis_.yaw],
(double)msg->axes[joy_axis_.throttle]);
if (isVehiclePoseInitialized())
{
VehicleAttitude currentAttitude = locator_->vehicle_current_ENU_.getAttitude();
ROS_DEBUG("<ATT[r:%5.3f p:%5.3f y:%5.3f t:%5.3f]",
currentAttitude.roll,
currentAttitude.pitch,
currentAttitude.yaw,
currentAttitude.throttle);
switch (fm)
{
case FlightMode::MANUAL:
updateAttitudeSetpoint(msg, currentAttitude);
break;
case FlightMode::ALTCTL:
updatePositionSetpoint(msg, false);
break;
case FlightMode::POSCTL:
updatePositionSetpoint(msg, true);
break;
}
}
}
void Controller::updateAttitudeSetpoint(const sensor_msgs::Joy::ConstPtr& msg, VehicleAttitude currentAttitude)
{
// Set the attitude rotation commands based upon the joystick input
double roll_sp, pitch_sp, yaw_sp, throttle_sp;
// Calculate pitch
pitch_sp = (msg->axes[joy_axis_.pitch] + joy_offset_.pitch) * attitude_scale_.pitch;
// Calculate roll
roll_sp = (msg->axes[joy_axis_.roll] + joy_offset_.roll) * attitude_scale_.roll;
// Calculate yaw
yaw_sp = ((msg->axes[joy_axis_.yaw] + joy_offset_.yaw) * attitude_scale_.yaw) + currentAttitude.yaw;
// Calculate the throttle
throttle_sp = (msg->axes[joy_axis_.throttle] + joy_offset_.throttle) * attitude_scale_.throttle;
if (throttle_sp < 0)
{
throttle_sp = 0;
}
sendAttitudeCommand(roll_sp, pitch_sp, yaw_sp, throttle_sp);
}
void Controller::updatePositionSetpoint(const sensor_msgs::Joy::ConstPtr& msg, bool adjust_xy)
{
double x_off, y_off, z_off, joy_sp;
// Calculate the z offset
joy_sp = msg->axes[joy_axis_.throttle];
if (joy_sp > -th_deadband && joy_sp < th_deadband)
{
joy_sp = 0;
}
z_off = joy_sp * max_pos_value_.throttle;
if (adjust_xy)
{
// Calculate the y offset
joy_sp = msg->axes[joy_axis_.roll];
if (joy_sp > -xy_deadband && joy_sp < xy_deadband)
{
joy_sp = 0;
}
y_off = joy_sp * max_pos_value_.roll;
// Calculate the x offset
joy_sp = msg->axes[joy_axis_.pitch];
if (joy_sp > -xy_deadband && joy_sp < xy_deadband)
{
joy_sp = 0;
}
x_off = joy_sp * max_pos_value_.pitch;
}
else
{
y_off = 0;
x_off = 0;
}
geometry_msgs::Point p_off = locator_->convertFLUtoENUoff(x_off, y_off, z_off);
geometry_msgs::Point p = vehicle_setpoint_ENU_.position;
p.x += p_off.x;
p.y += p_off.y;
p.z += p_off.z;
vehicle_setpoint_ENU_.setPosition(p);
sendPositionCommand(p.x, p.y, p.z);
}
|
f983906e1b46a16d957d8beb6381793ea10e362f
|
51835b8233eccfb53cffe96c071fc6fcf3d84f9b
|
/lib/gevent.h
|
a4b51f4e391f194cb05e9e8dd2f2c4e0eb1bc05a
|
[
"MIT"
] |
permissive
|
GoldbergData/newWorldSimulation
|
eda3dc31df52c15ff19c3cb78a0001f1ac0bd6c3
|
9534592ac2c9f5909bd0aba126fa678a40cf0408
|
refs/heads/main
| 2023-05-15T02:14:00.805514
| 2021-06-18T02:46:05
| 2021-06-18T02:46:05
| 373,677,715
| 0
| 0
|
MIT
| 2021-06-09T03:14:35
| 2021-06-04T00:32:16
|
C++
|
UTF-8
|
C++
| false
| false
| 19,406
|
h
|
gevent.h
|
/*
* File: gevent.h
* --------------
*
* @author Marty Stepp
* @version 2021/04/09
* - added sgl namespace
* @version 2018/09/20
* - removed deprecation warning on waitForEvent/Click global functions (for now)
* @version 2018/09/07
* - added doc comments for new documentation generation
* @version 2018/08/23
* - renamed to gevent.h to replace Java version
* @version 2018/07/06
* - initial version
*/
#ifndef _gevent_h
#define _gevent_h
#include <functional>
#include <iostream>
#include <string>
#include "gtypes.h"
class QEvent;
namespace sgl {
class GEvent;
class GInteractor;
class GObservable;
class _Internal_QCanvas;
class _Internal_QCheckBox;
class _Internal_QPushButton;
class _Internal_QWidget;
/** Types for the event listener functions to be passed to various interactors. */
typedef std::function<void(GEvent)> GEventListener;
/** Types for the event listener functions to be passed to various interactors. */
typedef std::function<void()> GEventListenerVoid;
/**
* Represents all major categories of events.
*/
enum EventClass {
NULL_EVENT = 0x0000,
ACTION_EVENT = 0x0010,
KEY_EVENT = 0x0020,
TIMER_EVENT = 0x0040,
WINDOW_EVENT = 0x0080,
MOUSE_EVENT = 0x0100,
CLICK_EVENT = 0x0200,
TABLE_EVENT = 0x0400,
SERVER_EVENT = 0x0800,
CHANGE_EVENT = 0x1000,
HYPERLINK_EVENT = 0x2000,
SCROLL_EVENT = 0x4000,
ANY_EVENT = ACTION_EVENT | KEY_EVENT | TIMER_EVENT | WINDOW_EVENT
| MOUSE_EVENT | CLICK_EVENT | TABLE_EVENT | SERVER_EVENT
| CHANGE_EVENT | HYPERLINK_EVENT | SCROLL_EVENT
};
// Note: If you add any new classes of events, you must also add logic to the
// GEvent::classToString function in gevent.cpp.
/**
* Defines the event subtypes for all events.
* An event type is a subcategory within an event class.
*/
enum EventType {
NULL_TYPE = 0,
WINDOW_CLOSED = WINDOW_EVENT + 1,
WINDOW_RESIZED = WINDOW_EVENT + 2,
CONSOLE_CLOSED = WINDOW_EVENT + 3,
WINDOW_CLOSING = WINDOW_EVENT + 4,
WINDOW_MINIMIZED = WINDOW_EVENT + 5,
WINDOW_RESTORED = WINDOW_EVENT + 6,
WINDOW_MAXIMIZED = WINDOW_EVENT + 7,
ACTION_PERFORMED = ACTION_EVENT + 1,
ACTION_MENU = ACTION_EVENT + 2,
MOUSE_CLICKED = MOUSE_EVENT + 1,
MOUSE_PRESSED = MOUSE_EVENT + 2,
MOUSE_RELEASED = MOUSE_EVENT + 3,
MOUSE_MOVED = MOUSE_EVENT + 4,
MOUSE_DRAGGED = MOUSE_EVENT + 5,
MOUSE_ENTERED = MOUSE_EVENT + 6,
MOUSE_EXITED = MOUSE_EVENT + 7,
MOUSE_WHEEL_DOWN = MOUSE_EVENT + 8,
MOUSE_WHEEL_UP = MOUSE_EVENT + 9,
MOUSE_DOUBLE_CLICKED = MOUSE_EVENT + 10,
KEY_PRESSED = KEY_EVENT + 1,
KEY_RELEASED = KEY_EVENT + 2,
KEY_TYPED = KEY_EVENT + 3,
TIMER_TICKED = TIMER_EVENT + 1,
TABLE_UPDATED = TABLE_EVENT + 1, // when a cell's value gets set
TABLE_SELECTED = TABLE_EVENT + 2, // cursor moves onto a cell
TABLE_EDIT_BEGIN = TABLE_EVENT + 3, // user presses F2 or double clicks to start editing a cell
TABLE_REPLACE_BEGIN = TABLE_EVENT + 4, // user starts typing on a cell; like TABLE_EDIT_BEGIN but wipes out previous value
TABLE_EDIT_CANCEL = TABLE_EVENT + 5, // user presses Esc or otherwise stops editing a cell
TABLE_CUT = TABLE_EVENT + 6, // user cuts cell value to clipboard
TABLE_COPY = TABLE_EVENT + 7, // user copies cell value to clipboard
TABLE_PASTE = TABLE_EVENT + 8, // user pastes cell value from clipboard
SERVER_REQUEST = SERVER_EVENT + 1,
STATE_CHANGED = CHANGE_EVENT + 1,
HYPERLINK_CLICKED = HYPERLINK_EVENT + 1,
SCROLL_SCROLLED = SCROLL_EVENT + 1
};
// Note: If you add any new classes of events, you must also add logic to the
// GEvent::typeToString function in gevent.cpp.
/**
* A set of constants used to check whether various event modifiers are in effect.
* These constants can be combined in a single modifier int using bitwise operators.
*/
enum Modifier {
SHIFT_DOWN = 1 << 0,
CTRL_DOWN = 1 << 1,
META_DOWN = 1 << 2,
ALT_DOWN = 1 << 3,
ALT_GRAPH_DOWN = 1 << 4,
BUTTON1_DOWN = 1 << 5,
BUTTON2_DOWN = 1 << 6,
BUTTON3_DOWN = 1 << 7
};
/**
* A GEvent represents a user action that has occurred on a graphical interactor.
*
* Older versions of this library used an event-polling model where the client
* was encouraged to write a while (true) loop and call waitForEvent(...) to
* get each event and process it.
* The current design instead prefers that you attach event listener functions
* to be called when events occur.
* These listener functions can accept an optional GEvent as a parameter.
* The GEvent object will contain information about the event that occurred.
*
* Older versions of this library had an inheritance hierarchy for various
* event types, such as GMouseEvent, GKeyEvent, etc.
* The current design has a single type GEvent that is a union of all data
* needed by any kind of event.
* The previous subclass names such as GMouseEvent are retained for backward
* compatibility, but they are now just aliases for the type GEvent.
*/
class GEvent {
public:
/**
* An empty event handler that can be passed that does nothing.
*/
static GEventListener EMPTY_EVENT_LISTENER;
/**
* An event listener that just prints the event that occurred.
* This listener is useful for debugging.
*/
static GEventListener LOG_EVENT;
/*
* Type: KeyCode
* -------------
* This type defines the names of the key codes returned in a key event.
*/
enum KeyCode {
BACKSPACE_KEY = 8,
TAB_KEY = 9,
ENTER_KEY = 10,
CLEAR_KEY = 12,
RETURN_KEY = 13,
SHIFT_KEY = Qt::Key_Shift,
CTRL_KEY = Qt::Key_Control,
ALT_KEY = Qt::Key_Alt,
PAUSE_KEY = 19,
CAPS_LOCK_KEY = 20,
ESCAPE_KEY = 27,
PAGE_UP_KEY = Qt::Key_PageUp,
PAGE_DOWN_KEY = Qt::Key_PageDown,
END_KEY = Qt::Key_End,
HOME_KEY = Qt::Key_Home,
LEFT_ARROW_KEY = Qt::Key_Left,
UP_ARROW_KEY = Qt::Key_Up,
RIGHT_ARROW_KEY = Qt::Key_Right,
DOWN_ARROW_KEY = Qt::Key_Down,
F1_KEY = Qt::Key_F1,
F2_KEY = Qt::Key_F2,
F3_KEY = Qt::Key_F3,
F4_KEY = Qt::Key_F4,
F5_KEY = Qt::Key_F5,
F6_KEY = Qt::Key_F6,
F7_KEY = Qt::Key_F7,
F8_KEY = Qt::Key_F8,
F9_KEY = Qt::Key_F9,
F10_KEY = Qt::Key_F10,
F11_KEY = Qt::Key_F11,
F12_KEY = Qt::Key_F12,
DELETE_KEY = 127,
NUM_LOCK_KEY = Qt::Key_NumLock,
SCROLL_LOCK_KEY = Qt::Key_ScrollLock,
PRINT_SCREEN_KEY = Qt::Key_Print,
INSERT_KEY = Qt::Key_Insert,
HELP_KEY = Qt::Key_Help,
META_KEY = Qt::Key_Meta,
WINDOWS_KEY = Qt::Key_Super_L,
MENU_KEY = Qt::Key_Menu
};
/**
* Creates a new event of the given type.
*/
GEvent(EventClass eventClass = NULL_EVENT,
EventType eventType = NULL_TYPE,
const std::string& eventName = "",
GObservable* source = nullptr);
/**
* Frees memory allocated internally by the event.
*/
virtual ~GEvent();
/**
* Converts an event class such as ACTION_PERFORMED
* to a string such as "ACTION_PERFORMED".
* @private
*/
static std::string classToString(EventClass eventClass);
/**
* Returns the action command associated with the event.
* For some interactors such as buttons, this will be the text of the
* interactor.
*/
virtual std::string getActionCommand() const;
/**
* Returns which mouse button was clicked, if this is a mouse event.
* If this is not a mouse event, returns 0.
*/
virtual int getButton() const;
/**
* Returns this event's class (major type such as MOUSE_EVENT).
* Equivalent to getEventClass.
*/
virtual EventClass getClass() const;
/**
* Returns the column that was interacted with, if this is a table event.
* If this is not a table event, returns 0.
*/
virtual int getColumn() const;
/**
* Returns the current time as a number of milliseconds elapsed since the
* epoch of 1970/01/01 12:00am.
* Used to supply timestamps to individual events.
* @private
*/
static long getCurrentTimeMS();
/**
* Returns this event's class (major type such as MOUSE_EVENT).
* Equivalent to getClass.
*/
virtual EventClass getEventClass() const;
/**
* Returns the event's type (minor type such as MOUSE_PRESSED).
* Equivalent to getType.
*/
virtual EventType getEventType() const;
/**
* Returns the source interactor that generated this event.
*/
virtual GInteractor* getInteractor() const;
/**
* Returns the Qt event being wrapped by this event, if any.
* If this event does not wrap a Qt event, returns nullptr.
*/
virtual QEvent* getInternalEvent() const;
/**
* Returns the key character that was typed, if this is a key event.
* If this is not a key event, returns '\0'.
*/
virtual char getKeyChar() const;
/**
* Returns the integer key code that was typed, if this is a key event.
* See the KeyCode enumeration for helpful constants for comparing key values.
* If this is not a key event, returns 0.
*/
virtual int getKeyCode() const;
/**
* Returns an (x, y) point representing the mouse position within the interactor
* when this event occurred.
* If this is not a mouse event, returns (0, 0).
*/
virtual GPoint getLocation() const;
/**
* Returns the modifiers active during this event.
* See the Modifiers enumeration for more information.
*/
virtual int getModifiers() const;
/**
* Returns this event's name such as "click" or "keydown" or "actionperformed".
*/
virtual std::string getName() const;
/**
* Returns this event's request URL, if this is a server URL event.
* If this is not a server URL event, returns an empty string.
*/
virtual std::string getRequestURL() const;
/**
* Returns the row that was interacted with, if this is a table event.
* If this is not a table event, returns 0.
*/
virtual int getRow() const;
/**
* Returns the source object that generated this event.
*/
virtual GObservable* getSource() const;
/**
* Returns this event's timestamp, as a number of milliseconds elapsed
* since the epoch of 1970/01/01 12:00am.
*/
virtual long getTime() const;
/**
* Returns the event's type (minor type such as MOUSE_PRESSED).
* Equivalent to getEventType.
*/
virtual EventType getType() const;
/**
* Returns the x-coordinate of the mouse position within the interactor
* when this event occurred.
* If this is not a mouse event, returns 0.
*/
virtual double getX() const;
/**
* Returns the y-coordinate of the mouse position within the interactor
* when this event occurred.
* If this is not a mouse event, returns 0.
*/
virtual double getY() const;
/**
* Instructs the GUI system to ignore or cancel this event.
* For example, if you listen to window-closing events and ignore them,
* the window will stay open.
*/
virtual void ignore();
/**
* Returns <code>true</code> if the Alt key was held down during this event.
* If this is not a mouse or key event, returns false.
*/
virtual bool isAltKeyDown() const;
/**
* Returns <code>true</code> if the Ctrl key was held down during this event.
* If this is not a mouse or key event, returns false.
*/
virtual bool isCtrlKeyDown() const;
/**
* Returns <code>true</code> if the Ctrl key, or the Command key (Mac),
* was held down during this event.
* If this is not a mouse or key event, returns false.
*/
virtual bool isCtrlOrCommandKeyDown() const;
/**
* Returns true if the user pressed the mouse button multiple times.
* If this is not a mouse event, returns false.
*/
virtual bool isDoubleClick() const;
/**
* Returns true if the user pressed the left mouse button.
* If this is not a mouse event, returns false.
*/
virtual bool isLeftClick() const;
/**
* Returns true if the user pressed the middle mouse button.
* (Note that not every mouse has a simple delineation of "left, right,
* and middle" buttons; this was implemented on a standard 3-button mouse
* with scroll wheel.)
* If this is not a mouse event, returns false.
*/
virtual bool isMiddleClick() const;
/**
* Returns true if the user pressed the right mouse button.
* If this is not a mouse event, returns false.
*/
virtual bool isRightClick() const;
/**
* Returns <code>true</code> if the Meta/Command key was held down during this event.
* If this is not a mouse or key event, returns false.
*/
virtual bool isMetaKeyDown() const;
/**
* Returns <code>true</code> if the Shift key was held down during this event.
* If this is not a mouse or key event, returns false.
*/
virtual bool isShiftKeyDown() const;
/**
* Converts a key code such as 67 into a string such as "A".
* Works for special keys such as "Enter" and "Tab".
*/
static std::string keyCodeToString(int keyCode);
/**
* @private
*/
virtual void setActionCommand(const std::string& actionCommand);
/**
* @private
*/
virtual void setButton(int button);
/**
* @private
*/
virtual void setInternalEvent(QEvent* event);
/**
* @private
*/
virtual void setKeyChar(char keyChar);
/**
* @private
*/
virtual void setKeyChar(const std::string& keyCharString);
/**
* @private
*/
virtual void setKeyCode(int keyCode);
/**
* @private
*/
virtual void setModifiers(Qt::KeyboardModifiers modifiers);
/**
* @private
*/
virtual void setRequestURL(const std::string& requestUrl);
/**
* @private
*/
virtual void setRowAndColumn(int row, int col);
/**
* @private
*/
virtual void setSource(GObservable* source);
/**
* @private
*/
virtual void setX(double x);
/**
* @private
*/
virtual void setY(double y);
/**
* Returns a text representation of the event for debugging.
*/
virtual std::string toString() const;
/**
* Converts an event type such as MOUSE_EVENT to a string such as
* "MOUSE_EVENT".
*/
static std::string typeToString(EventType eventType);
private:
/*
* Represents the two types of event listeners.
*/
enum EventListenerType {
HANDLER_EVENT,
HANDLER_VOID
};
/*
* A wrapper that can hold either of the two types of event listeners.
*/
struct EventListenerWrapper {
GEventListener handler;
GEventListenerVoid handlerVoid;
EventListenerType type;
void fireEvent(const GEvent& event) {
if (type == HANDLER_EVENT) {
handler(event);
} else {
handlerVoid();
}
}
};
// member variables
std::string _actionCommand;
int _button;
EventClass _class;
char _keyChar;
int _keyCode;
int _modifiers;
std::string _name;
std::string _requestUrl;
GObservable* _source;
long _time;
EventType _type;
double _x;
double _y;
int _row;
int _col;
QEvent* _internalQtEvent;
friend class GInteractor;
friend class GObservable;
friend class _Internal_QWidget;
};
/**
* Writes the given event to the given output stream.
*/
std::ostream& operator <<(std::ostream& out, const GEvent& event);
// alias GEvent to all event types
typedef GEvent GActionEvent;
typedef GEvent GChangeEvent;
typedef GEvent GHyperlinkEvent;
typedef GEvent GKeyEvent;
typedef GEvent GMouseEvent;
typedef GEvent GScrollEvent;
typedef GEvent GServerEvent;
typedef GEvent GTableEvent;
typedef GEvent GTimerEvent;
typedef GEvent GWindowEvent;
// global functions for backward compatibility
// see geventqueue.cpp for implementation
/**
* Checks to see if there are any events of the desired type waiting on the
* event queue. If so, this function returns the event in exactly the same
* fashion as <code>waitForEvent</code>; if not, <code>getNextEvent</code>
* returns an invalid event. The <code>mask</code> parameter is optional.
* If it is missing, <code>getNextEvent</code> accepts any event.
*
* @deprecated
* This function is deprecated and discouraged from use.
* Instead of calling waitForClick in an event loop, you should attach an
* event-listening function to the widget of choice using that object's methods
* such as setActionListener or setMouseListener.
*/
GEvent getNextEvent(int mask = ANY_EVENT) /*Q_DECL_DEPRECATED*/;
/**
* Waits for a mouse click to occur anywhere in any window,
* returning the event that occurred.
*
* @deprecated
* This function is deprecated and discouraged from use.
* Instead of calling waitForClick in an event loop, you should attach an
* event-listening function to the widget of choice using that object's methods
* such as setActionListener or setMouseListener.
*/
GMouseEvent waitForClick() /*Q_DECL_DEPRECATED*/;
/**
* Dismisses the process until an event occurs whose type is covered by
* the event mask. The mask parameter is a combination of the events of
* interest. For example, to wait for a mouse event or an action event,
* clients can use the following call:
*
*<pre>
* e = waitForEvent(MOUSE_EVENT + ACTION_EVENT);
*</pre>
*
* The <code>mask</code> parameter is optional. If it is missing,
* <code>waitForEvent</code> accepts any event.
*
* <p>As a more sophisticated example, the following code is the canonical
* event loop for an animated application that needs to respond to mouse,
* key, and timer events:
*
*<pre>
* GTimer timer(ANIMATION_DELAY_IN_MILLISECONDS);
* timer.start();
* while (true) {
* GEvent e = waitForEvent(TIMER_EVENT + MOUSE_EVENT + KEY_EVENT);
* switch (e.getEventClass()) {
* case TIMER_EVENT:
* takeAnimationStep();
* break;
* case MOUSE_EVENT:
* handleMouseEvent(GMouseEvent(e));
* break;
* case KEY_EVENT:
* handleKeyEvent(GKeyEvent(e));
* break;
* }
* }
*</pre>
*
* @deprecated
* This function is deprecated and discouraged from use.
* Instead of calling waitForClick in an event loop, you should attach an
* event-listening function to the widget of choice using that object's methods
* such as setActionListener or setMouseListener.
*/
GEvent waitForEvent(int mask = ANY_EVENT) /*Q_DECL_DEPRECATED*/;
} // namespace sgl
#endif // _gevent_h
|
b47e1ba2f42542e89ad1422598a914404ba78930
|
9a888c6ddd86c1938cd672c5f2ac24e928e48665
|
/THREAD/PI/PI.HPP
|
26e58f3760c00778adcbe825d4802417bda3b1ed
|
[
"BSD-3-Clause"
] |
permissive
|
OS2World/DEV-SAMPLES-BOOK-Power_GUI_Programming_with_VisualAge_for_Cpp
|
228390f4876520bb72afd5a25fc985fb6ea82de8
|
919dfa422daf18d2bbb924213a0a813c06565720
|
refs/heads/master
| 2020-05-29T18:33:38.074186
| 2019-05-29T22:02:13
| 2019-05-29T22:02:13
| 189,303,859
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 858
|
hpp
|
PI.HPP
|
#ifndef _PI_
#define _PI_
/**************************************************************
* FILE NAME: pi.hpp *
* *
* DESCRIPTION: *
* This file contains the declaration of the function: *
* pi - Calculate pi to arbitrary number of digits. *
* *
* COPYRIGHT: *
* Licensed Materials - Property of Solution Frameworks *
* Copyright (C) 1996, Solution Frameworks *
* All Rights Reserved *
**************************************************************/
class IString;
IString pi( unsigned digits );
#endif // _PI_
|
14c11f07d3175ccf8c723bb63869c51b913832e8
|
1d7190ff4c1773f4c9cd4226692cea1184799a00
|
/AdaptiveTerrainTessellation/src/terrain.cpp
|
7e2984dc1ac938da21e170ca09d846461d7a9106
|
[] |
no_license
|
Hasenpfote/OpenGLExamples
|
4b0dc9800e0019f032fb0268b41b21717b6883c6
|
c7008ffb180d1aa88467aa225b6d46c13305d522
|
refs/heads/master
| 2021-01-11T07:54:37.729129
| 2019-09-04T05:13:24
| 2019-09-04T05:13:24
| 72,074,048
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,259
|
cpp
|
terrain.cpp
|
#include <cassert>
#include <vector>
#include <GL/glew.h>
#include <glm/gtc/type_ptr.hpp>
#include "terrain.h"
Terrain::Terrain()
{
lod_factor = 10.0f;
horizontal_scale = 1000.0f;
vertical_scale = 300.0f;
draw_mode = DrawMode::Solid;
light_direction = glm::normalize(glm::vec3(1.0f, 1.0f,-1.0));
}
Terrain::~Terrain()
{
if(glIsBuffer(texcoord_buffer_object))
glDeleteBuffers(1, &texcoord_buffer_object);
if(glIsBuffer(index_buffer_object))
glDeleteBuffers(1, &index_buffer_object);
if(glIsVertexArray(vao))
glDeleteVertexArrays(1, &vao);
if(glIsSampler(sampler))
glDeleteSamplers(1, &sampler);
}
void Terrain::Initialize()
{
/*
tess contorol shader の outer と合わせる
e3
+--- x v3 --- v2
| e0 | | e2
z v0 --- v1
e1
*/
constexpr int size = 10+1;// 50 + 1;
std::vector<float> vertices;
std::vector<float> coords;
for(int i = 0; i < size; i++){
for (int j = 0; j < size; j++){
const float u = static_cast<float>(j);
const float v = static_cast<float>(i);
coords.push_back(u/(size-1));
coords.push_back(v/(size-1));
}
}
std::vector<int> indices;
for(int i = 0; i < size - 1; i++){
for(int j = 0; j < size - 1; j++){
indices.push_back((i+1)*size+j);
indices.push_back((i+1)*size+j+1);
indices.push_back(i*size+j+1);
indices.push_back(i*size+j);
}
}
num_indices = indices.size();
glGenVertexArrays(1, &vao);
glBindVertexArray(vao);
glGenBuffers(1, &texcoord_buffer_object);
glBindBuffer(GL_ARRAY_BUFFER, texcoord_buffer_object);
glBufferData(GL_ARRAY_BUFFER, sizeof(float) * coords.size(), coords.data(), GL_STATIC_DRAW);
glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 0, nullptr);
glEnableVertexAttribArray(0);
glGenBuffers(1, &index_buffer_object);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, index_buffer_object);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(int) * indices.size(), indices.data(), GL_STATIC_DRAW);
glBindVertexArray(0);
glGenSamplers(1, &sampler);
glSamplerParameteri(sampler, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR);
//glSamplerParameteri(sampler, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glSamplerParameteri(sampler, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glSamplerParameteri(sampler, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glSamplerParameteri(sampler, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
auto& rm = System::GetMutableInstance().GetResourceManager();
diffuse_map = rm.GetResource<Texture>("assets/textures/terrain.png")->GetTexture();
height_map = rm.GetResource<Texture>("assets/textures/heightmap_linear.png")->GetTexture();
// for solid model
pipeline1 = std::make_unique<ProgramPipeline>(
ProgramPipeline::ProgramPtrSet({
rm.GetResource<Program>("assets/shaders/terrain.vs"),
rm.GetResource<Program>("assets/shaders/terrain.tcs"),
rm.GetResource<Program>("assets/shaders/terrain.tes"),
rm.GetResource<Program>("assets/shaders/terrain.gs"),
rm.GetResource<Program>("assets/shaders/terrain.fs")})
);
// for wireframe model
pipeline2 = std::make_unique<ProgramPipeline>(
ProgramPipeline::ProgramPtrSet({
rm.GetResource<Program>("assets/shaders/terrain.vs"),
rm.GetResource<Program>("assets/shaders/terrain.tcs"),
rm.GetResource<Program>("assets/shaders/terrain.tes"),
rm.GetResource<Program>("assets/shaders/terrain_wf.gs"),
rm.GetResource<Program>("assets/shaders/terrain_wf.fs") })
);
}
void Terrain::Draw()
{
if(draw_mode == DrawMode::Solid){
DrawSolid();
}
else{
DrawWireFrame();
}
}
void Terrain::DrawSolid()
{
auto& uniform = pipeline1->GetPipelineUniform();
uniform.Set("diffuse_map", 0);
uniform.Set("height_map", 1);
uniform.Set("horizontal_scale", horizontal_scale);
uniform.Set("vertical_scale", vertical_scale);
uniform.Set("lod_factor", lod_factor);
auto& camera = System::GetMutableInstance().GetCamera();
const auto& resolution = camera.viewport().size();
auto mvp = camera.proj() * camera.view();
uniform.Set("mvp", &mvp, 1, false);
uniform.Set("vp_size", glm::vec2(resolution.x, resolution.y));
uniform.Set("light_direction", light_direction);
pipeline1->Bind();
{
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, diffuse_map);
glBindSampler(0, sampler);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, height_map);
glBindSampler(1, sampler);
glPatchParameteri(GL_PATCH_VERTICES, 4);
glBindVertexArray(vao);
glDrawElements(GL_PATCHES, num_indices, GL_UNSIGNED_INT, nullptr);
glBindVertexArray(0);
glActiveTexture(GL_TEXTURE0);
}
pipeline1->Unbind();
}
void Terrain::DrawWireFrame()
{
auto& uniform = pipeline2->GetPipelineUniform();
uniform.Set("height_map", 0);
uniform.Set("horizontal_scale", horizontal_scale);
uniform.Set("vertical_scale", vertical_scale);
uniform.Set("lod_factor", lod_factor);
auto& camera = System::GetMutableInstance().GetCamera();
const auto& resolution = camera.viewport().size();
auto mvp = camera.proj() * camera.view();
uniform.Set("mvp", &mvp, 1, false);
uniform.Set("vp_size", glm::vec2(resolution.x, resolution.y));
pipeline2->Bind();
{
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, height_map);
glBindSampler(0, sampler);
glPatchParameteri(GL_PATCH_VERTICES, 4);
glBindVertexArray(vao);
glDrawElements(GL_PATCHES, num_indices, GL_UNSIGNED_INT, nullptr);
glBindVertexArray(0);
glActiveTexture(GL_TEXTURE0);
}
pipeline2->Unbind();
}
|
fbe1b049a86d9cd51214ea4f2b1149be8d6c8332
|
a81ad9fcba58121eb6c20bb6c2acc99f2b4c7874
|
/inc/gameobjects/sword/swordobjectfactory.h
|
3c6720c5c7190fe219416881c0596ddd8160d409
|
[] |
no_license
|
dkamakin/OOP
|
34cdef74ccfc1517b4b54f4444e9abae7cb58382
|
6e438a08c623533f6e6053b89604cc2f5f88f6a2
|
refs/heads/main
| 2023-02-08T16:18:57.996429
| 2020-12-23T05:49:26
| 2020-12-23T05:49:26
| 316,035,364
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 375
|
h
|
swordobjectfactory.h
|
#ifndef SWORDOBJECTFACTORY_H
#define SWORDOBJECTFACTORY_H
#include "gameobjects/gameobjectfactory.h"
#include "swordobject.h"
using sSwordObjectFactory = std::shared_ptr <class SwordObjectFactory>;
class SwordObjectFactory : public GameObjectFactory {
public:
SwordObjectFactory() = default;
sGameObject createObject() override;
};
#endif // SWORDOBJECTFACTORY_H
|
8c9eb046eb8503e56f31efef849bb7dabf5e5a42
|
eaa6ba297efd95550bddc5a661153330376452bc
|
/CSVAdopt.h
|
eafddf9c155e1ae5115c4b261186667b533decd6
|
[] |
no_license
|
SergiuPloscar/CatAdoptionShelter-Qt-GUI-
|
ef05c29c0fcfb34fc4b285631e6f9c27e6961127
|
317f91f63619ae9b833306b2f9f2cb1ad8d1b229
|
refs/heads/master
| 2020-04-29T18:11:59.493283
| 2019-03-18T15:44:59
| 2019-03-18T15:44:59
| 176,317,138
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 437
|
h
|
CSVAdopt.h
|
#pragma once
#include "Cat.h"
#include <string>
#include <vector>
#include "FileRepository.h"
class CSVAdoptionList : public FileRepository
{
public:
/*
Writes the AdoptionList to file.
Throws: FileException - if it cannot write.
*/
CSVAdoptionList();
void writetoFile(const std::vector <Cat>& adopt) override;
/*
Displays the AdoptionList using Microsoft Excel.
*/
void displayAdoptionList() override;
};
|
f02bf54482a8a7f9e045c48db5ed6fd5e6c1d389
|
189f52bf5454e724d5acc97a2fa000ea54d0e102
|
/ras/floatingObject/3/ddt0(U)
|
4a19f7e89e793c8de0f3a7e9ad890e0171f05dea
|
[] |
no_license
|
pyotr777/openfoam_samples
|
5399721dd2ef57545ffce68215d09c49ebfe749d
|
79c70ac5795decff086dd16637d2d063fde6ed0d
|
refs/heads/master
| 2021-01-12T16:52:18.126648
| 2016-11-05T08:30:29
| 2016-11-05T08:30:29
| 71,456,654
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 616,673
|
ddt0(U)
|
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1606+ |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "3";
object ddt0(U);
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -2 0 0 0 0];
internalField nonuniform List<vector>
11640
(
(0.0128296262567 0.0119553341784 -0.0169394488756)
(0.0385528896434 0.0115294880659 -0.0166337230804)
(0.06351107859 0.0112403671835 -0.0160167403673)
(0.086767961539 0.0111259684405 -0.0151747471735)
(0.107392222307 0.0111008913956 -0.0141026919005)
(0.124614455097 0.0111520689312 -0.0128087715967)
(0.13782159662 0.0112312873372 -0.0113571897675)
(0.146640088676 0.0111770175779 -0.00979709539215)
(0.151146330415 0.0109121255831 -0.0081513901914)
(0.151647772181 0.0103239506613 -0.00645264534584)
(0.148566464904 0.00949137106757 -0.0047397389203)
(0.142355526177 0.00854149182607 -0.00306641441008)
(0.133396183859 0.00753887604066 -0.00150318027825)
(0.1218971941 0.00663876449821 -3.29463840642e-05)
(0.108080587065 0.00588960866886 0.00125325059193)
(0.0921476817272 0.0052213263994 0.00252179540463)
(0.0740651958731 0.00457137702377 0.00357479059149)
(0.0540287369382 0.00409333567898 0.00445982419342)
(0.0327424000419 0.0037008075557 0.00504104874403)
(0.0109530494795 0.00338321757578 0.00529320725919)
(0.0123896331969 0.0360642976172 -0.0166568608666)
(0.0378563174877 0.035301572741 -0.017476964965)
(0.0631640555342 0.0346832986188 -0.0171427974785)
(0.0866966959916 0.0343047654098 -0.0162126987549)
(0.107546745696 0.0341712737371 -0.0149004643135)
(0.124884865342 0.034249944908 -0.0134428893684)
(0.138001556484 0.0343670736715 -0.0118478685383)
(0.146550035081 0.0341186038825 -0.0101654822011)
(0.150570356635 0.0331248539183 -0.00838633756857)
(0.150567597928 0.0311476491303 -0.00653178524278)
(0.147125829149 0.0283466101162 -0.00463612347508)
(0.140727255887 0.0251442979776 -0.00280123585426)
(0.131774484591 0.0218728975963 -0.00110146778926)
(0.120489251475 0.0189040093542 0.000468062881468)
(0.106865949505 0.0164053210573 0.00195400508118)
(0.0909835684994 0.0143543478741 0.00327264391109)
(0.0730216776473 0.0125277015075 0.00439777592406)
(0.0532284586855 0.0112140267125 0.00524702199959)
(0.032086336087 0.0101981195596 0.00567189825474)
(0.0106643142208 0.00948609626986 0.00534294990171)
(0.0120369505295 0.0595987222127 -0.0161655734306)
(0.0372070606362 0.0590650167219 -0.017247589433)
(0.0626720927609 0.0583561174602 -0.0168671479353)
(0.0865007671109 0.0578654079354 -0.0158286352848)
(0.107602520378 0.0578570103892 -0.0145786107139)
(0.124972031801 0.0581762964977 -0.0132440635246)
(0.137760803636 0.0585265594971 -0.0117266974269)
(0.145534112443 0.0580421237562 -0.00997619743655)
(0.148407081588 0.0560212051959 -0.00812674296222)
(0.147282074955 0.0521967512584 -0.00617633861111)
(0.143033581018 0.0468820920123 -0.00413772509222)
(0.136340712518 0.0408161369385 -0.00222558956036)
(0.127558651372 0.0347532959201 -0.000586116273717)
(0.116777618771 0.0295818645093 0.000932749115167)
(0.103846030518 0.025141275123 0.00222874134113)
(0.0885427030127 0.0215479904755 0.00345348453734)
(0.0711218264912 0.018822261624 0.00474015660001)
(0.0517922561834 0.0167978579801 0.005625390373)
(0.0310606219821 0.0154319497726 0.00598340524691)
(0.0102701023162 0.0146094995839 0.00545953269948)
(0.0118301621302 0.081900277752 -0.0154758343964)
(0.0366495904723 0.0814343394654 -0.0165363863434)
(0.0621594167884 0.0805793831787 -0.0160962415336)
(0.0861975841252 0.0801862026858 -0.0151831841079)
(0.107355089039 0.0805918892645 -0.0141919162966)
(0.124599626933 0.0813303625803 -0.0130867962879)
(0.137095629737 0.0820232599279 -0.0116048780107)
(0.143617234052 0.0816499661714 -0.00967316562023)
(0.144671742441 0.0787240427249 -0.00764265823981)
(0.141725993322 0.0724580192015 -0.0054821950508)
(0.136204730648 0.0639772965064 -0.0032908365528)
(0.129060200323 0.0542344796521 -0.00125933786818)
(0.120906616988 0.0451141342125 0.000303518984434)
(0.111153711599 0.0376701942663 0.0017262308659)
(0.0991675967695 0.0314400526312 0.00287042211258)
(0.0850444824518 0.0266516382578 0.00393037135251)
(0.0685883020822 0.0231514847471 0.00520290533754)
(0.0499694557429 0.0207453624222 0.00600551576376)
(0.0298828242048 0.0191304738199 0.00625948696048)
(0.00982421207513 0.0183449678954 0.0057632450171)
(0.0116132099754 0.102292229322 -0.0145596218917)
(0.0359675043052 0.101662233852 -0.0155446323003)
(0.061292213708 0.100671880818 -0.0151347430457)
(0.0853012822036 0.10045617338 -0.0143901973537)
(0.106270847804 0.100917599971 -0.0137729154756)
(0.123462650985 0.101741043371 -0.0129213437885)
(0.13612144449 0.102733784067 -0.0111566729338)
(0.141091976504 0.103352679885 -0.00871713617893)
(0.139165728631 0.0984502619945 -0.00617859019915)
(0.133432949884 0.0888853373966 -0.00361831707145)
(0.126079720718 0.0754633587839 -0.00127529219673)
(0.118899625097 0.0603286687231 0.000751163670311)
(0.112235416238 0.0485438790823 0.00192518351337)
(0.104076538969 0.0408394605832 0.00303956882927)
(0.0937195458394 0.0346885522535 0.00390207174892)
(0.0811793902802 0.0292639818219 0.00471366497526)
(0.0658648264963 0.0255905828877 0.00573872254306)
(0.0480582175213 0.022954368494 0.00636340541869)
(0.028715947655 0.0212296193527 0.00657786412116)
(0.00945737984328 0.0205101806569 0.00603092013555)
(0.0112365490192 0.120268250562 -0.0134622121545)
(0.034887621866 0.11936469459 -0.0143073499815)
(0.0596530389294 0.118224550334 -0.01385909936)
(0.0832222550766 0.117640350214 -0.0132480149305)
(0.104099564104 0.11692798094 -0.0127327099835)
(0.121695680231 0.117416907684 -0.0119080114152)
(0.135263569377 0.11811958021 -0.00959788401382)
(0.137897534618 0.121795168786 -0.00616722765094)
(0.130821173059 0.114722028346 -0.00343152978024)
(0.121062853936 0.102308977103 -0.000415804183187)
(0.111279981265 0.085143540397 0.00175446446873)
(0.105627598564 0.0687505684074 0.00302143582984)
(0.103115681269 0.0559985242001 0.00369253458711)
(0.0978425095219 0.0430363292969 0.00405350965498)
(0.088525333897 0.0356242363416 0.00511526703897)
(0.077575422703 0.029512331722 0.00686513170527)
(0.0633850006385 0.0260419841878 0.0066702778575)
(0.0460628448701 0.023413719855 0.00682887138291)
(0.027601035692 0.0217089926086 0.00681072211994)
(0.00910525510793 0.0209670662557 0.00622379437672)
(0.0106713984464 0.135576804778 -0.0121730323742)
(0.0332106652519 0.134422001082 -0.0128552493948)
(0.0569317025595 0.132903959552 -0.0123853513381)
(0.0797273077729 0.131029185512 -0.0117738469665)
(0.100255866165 0.128724498485 -0.0110806283453)
(0.118321146453 0.127777101156 -0.0103510355658)
(0.135566689674 0.125008336398 -0.0075131021501)
(0.135374102412 0.134662389601 0.00120736213137)
(0.119732432858 0.116063579098 0.00496156071391)
(0.106519800038 0.0861886110168 0.0126238735678)
(0.0973735912067 0.0509657341621 0.0175721243908)
(0.0936014530691 0.0226030675508 0.0203018049329)
(0.0904884192881 0.00766167355832 0.0211229770836)
(0.0874778891905 0.0244969612283 0.00987869230973)
(0.0832355532752 0.0276957609805 0.00800020139612)
(0.0738229763649 0.0271116741118 0.0073691434408)
(0.0606320790189 0.0241665751448 0.00717822331694)
(0.0442426698506 0.0222922092697 0.00711369155997)
(0.0264624061018 0.0207475778772 0.00697898838365)
(0.00876613423524 0.0199729495004 0.00637906869773)
(0.00994884559279 0.148013150118 -0.010656244676)
(0.0309014807029 0.146650431267 -0.0111932762053)
(0.0529549352262 0.144652049319 -0.0106653083932)
(0.0745204880943 0.14159914526 -0.0100262337015)
(0.0942299182462 0.137691779794 -0.00924899107308)
(0.111553587397 0.134847038216 -0.00919909268419)
(0.135798935704 0.128114338209 -0.00866872009688)
(0.126090435157 0.129985322123 0.0111566173708)
(0.0890843975123 0.106961486753 0.00824529851226)
(0.0691628126628 0.0763883120484 0.00378510466653)
(0.0621162537124 0.0461517492066 -0.00564461711447)
(0.0725170956186 0.0216517010128 -0.0120184194669)
(0.102472750461 0.00938900903046 -0.0153301632275)
(0.110338249219 0.0221525063186 0.00390416891743)
(0.0895424762617 0.0254466052361 0.00538988504394)
(0.0741095808791 0.0251161098545 0.00639800710181)
(0.0592691979295 0.0225761539024 0.00802607045681)
(0.0431212453743 0.0206756407321 0.00721585695849)
(0.0254574526746 0.0190575325853 0.00692609910102)
(0.00839782792946 0.0181269823256 0.006319374744)
(0.0090857289032 0.157322671626 -0.00892446690131)
(0.0281185192008 0.155732235245 -0.00933724317691)
(0.0480778095606 0.153333461594 -0.00886137005108)
(0.0676619316077 0.149516181655 -0.00813782067935)
(0.0858098861318 0.144216806326 -0.0075472703786)
(0.101194507182 0.138677725095 -0.00757132771542)
(0.124173072354 0.129186528035 -0.00823991663376)
(0.112965622413 0.117023231505 0.0124056145627)
(0.0720303441156 0.0983522991345 0.00838365558046)
(0.0534756468642 0.0789171387756 0.00408993163469)
(0.0503752577289 0.0628688267406 -0.00233957731063)
(0.0632158208725 0.0508604296129 -0.00632334396627)
(0.095163081715 0.0415190438952 -0.0101333523363)
(0.10535790809 0.0352486324012 0.00575402324833)
(0.0866975563373 0.0299121200799 0.00533961882959)
(0.0718161231209 0.0261083367126 0.00589785957499)
(0.0568575376159 0.0226256999932 0.00717475079463)
(0.0409196092184 0.019370205931 0.00687797993807)
(0.0240794537417 0.0171637759083 0.00662971034718)
(0.00791522998745 0.0159165280118 0.00604309275264)
(0.00806131285474 0.163298275133 -0.00703339718579)
(0.0248849324234 0.161555147269 -0.00732898645688)
(0.0423875313371 0.158690013407 -0.00684217587622)
(0.0594149908789 0.154159930509 -0.00608649277635)
(0.0753775848982 0.147901412345 -0.00539886606354)
(0.0890353060035 0.14007642621 -0.00557468008653)
(0.108554246936 0.128936297419 -0.00592041615431)
(0.0960515310404 0.109691113599 0.0129591877461)
(0.0574467124315 0.0915392672967 0.0080609117701)
(0.0419595528942 0.0783577023555 0.0024988419353)
(0.0412710859867 0.0680333886822 -0.00435055162757)
(0.0564522482889 0.0601453334452 -0.009246518721)
(0.0894379340183 0.0525034342028 -0.0128697837738)
(0.101010258771 0.0414368890587 0.0046812864443)
(0.0822339842481 0.0335842408773 0.00485991408898)
(0.0677170050625 0.0275283951704 0.00549519268321)
(0.0532073057809 0.022187567277 0.00663346511559)
(0.0379446223927 0.0181496101285 0.00640244967235)
(0.0221858739606 0.015299541614 0.0062010072069)
(0.00726479255695 0.0136443811599 0.0055950733317)
(0.00693562959004 0.16578376976 -0.00503664741031)
(0.0211864137082 0.164033706577 -0.00519505110781)
(0.0356507345475 0.160931661589 -0.00448268123121)
(0.0497872524003 0.156246169935 -0.00310223952099)
(0.0631075191687 0.149095011628 -0.00246667073862)
(0.0742965194576 0.13901485039 -0.00328668820873)
(0.0896751584258 0.124445883786 -0.00385147197147)
(0.0780050349584 0.0834517366554 0.0127497370111)
(0.0468065425892 0.0689251699844 0.00813169572458)
(0.0357233132291 0.0665579902755 0.00231346662549)
(0.0373224010578 0.0712889752051 -0.00457717065555)
(0.0528425498338 0.073473633133 -0.00905774646583)
(0.0818260857525 0.0694785819026 -0.0114009584605)
(0.0916311754844 0.0503524276188 0.00292671148007)
(0.0752639799636 0.0384248746317 0.00403757351545)
(0.0617078358295 0.029536824216 0.00498424130582)
(0.0482793151844 0.022515914518 0.00635625356231)
(0.0342536086071 0.0172159916522 0.00589225025343)
(0.0197789525422 0.0136105748931 0.00564741252251)
(0.0064072802269 0.0115121038119 0.00499019758872)
(0.00578054254471 0.164565822624 -0.00292241031193)
(0.0174371517886 0.162912687226 -0.00298180746342)
(0.0291582016863 0.160034837616 -0.00231613717445)
(0.0398963696196 0.156161610673 -0.00111205584539)
(0.0492324483302 0.149954007448 -0.000719950297629)
(0.0550992860987 0.140572017913 -0.00220539547269)
(0.0536556619787 0.127397176087 -0.00454206467266)
(0.0491248667308 0.100627739716 -0.0107667579102)
(0.0456912772069 0.0915146541925 -0.0122370614493)
(0.0451912180859 0.0898815336948 -0.0132907716793)
(0.0483855873912 0.0928172825036 -0.0118557662575)
(0.0571755093172 0.0917677515883 -0.0105237679998)
(0.0719965055497 0.083710318837 -0.0064962739932)
(0.0761738929507 0.0594025537456 0.000196908282255)
(0.0654252135283 0.0435389304611 0.00286802542606)
(0.0538974754333 0.0316515937388 0.0043591630729)
(0.0417892100374 0.0230777698618 0.00508396621879)
(0.0291636595199 0.0164081839896 0.00519880259061)
(0.0167259388994 0.012100620627 0.00500095702458)
(0.00536896266538 0.00959701153635 0.00423084750045)
(0.00472258182043 0.159377768126 -0.000761734898328)
(0.0141011635871 0.157907864631 -0.000672216384906)
(0.0231691468237 0.155360137124 -9.5542055609e-05)
(0.0312951593084 0.152064620378 0.00101576917304)
(0.0381527923189 0.147392605406 0.00198789103059)
(0.043365238321 0.140333394606 0.00193656066174)
(0.0456992439663 0.131715841129 0.0014480160619)
(0.0436155307523 0.124556702402 0.00112874538138)
(0.039748398267 0.117043511891 3.03747531535e-05)
(0.0390644607475 0.110404014197 -0.000791166554364)
(0.0420087962016 0.103734486201 -0.00143397937049)
(0.0488480562621 0.0949423899503 -0.000898797387001)
(0.0569226906615 0.0826085407612 0.000657429563245)
(0.0586498491738 0.0615113005142 0.00226129670228)
(0.0526133986767 0.0451031227647 0.00360286522906)
(0.0439007588214 0.0320927056475 0.00424395619704)
(0.0340118789294 0.0223186433615 0.00454726462313)
(0.0235105146456 0.0152935034586 0.00460245774528)
(0.0132696094443 0.0105900103713 0.0043159368114)
(0.00416429616823 0.00782765946913 0.00342145538782)
(0.00388909911037 0.149846503195 0.00147127564328)
(0.0113837388963 0.148596718075 0.00152049376563)
(0.0182546761561 0.146222311217 0.00204394065089)
(0.0242844528403 0.14341232342 0.00304398504582)
(0.0292394140424 0.139833706944 0.00405342216563)
(0.032655407206 0.134536652787 0.00448120653659)
(0.0341748132943 0.126656794713 0.00405540308307)
(0.033774034485 0.117009019081 0.00266103813773)
(0.0333976837858 0.10895930543 0.00163048408224)
(0.0344175391017 0.102445988273 0.00130563937956)
(0.0369765826789 0.0950337614565 0.00138017755283)
(0.0409186125734 0.0858432901617 0.00178633962504)
(0.0444821878601 0.0732713779037 0.00240555317878)
(0.0444925223625 0.0571770431266 0.00318219383139)
(0.0401238419113 0.0425223827892 0.0037116727902)
(0.0334096964471 0.0302691108509 0.00399473319547)
(0.0257411477596 0.0206923373333 0.0040521028738)
(0.0175475642338 0.0137130197827 0.0039932485165)
(0.00957107418647 0.00894203420892 0.00363147117672)
(0.00289975764955 0.00620005644162 0.0026227682435)
(0.00320921644932 0.13584694434 0.00335345605309)
(0.00923603978836 0.134723035348 0.00361155127815)
(0.0145164069992 0.132473528234 0.00397481298501)
(0.0189283783282 0.129746179118 0.00466485556953)
(0.0224037709935 0.126434340051 0.00544577841402)
(0.0248751361163 0.12194912078 0.00601471018785)
(0.0261916629235 0.115811987629 0.0061073961244)
(0.0264697714161 0.108522487232 0.00572129845521)
(0.0265535910668 0.101243002925 0.00523056257664)
(0.0271956954665 0.0938492489227 0.00475148056743)
(0.0285814181336 0.0852584265581 0.00446877525644)
(0.0304800860036 0.0753206050138 0.00422553257122)
(0.0318544635275 0.0634094312206 0.00408186740977)
(0.0312948947765 0.0501578172937 0.00404322981703)
(0.0282463825976 0.0374728624193 0.00392173486775)
(0.0234616366209 0.0267394800414 0.00380055079572)
(0.0178150351467 0.0181403853407 0.00361018213993)
(0.0117940222088 0.0116727386662 0.00340945507874)
(0.00608340066146 0.00724761182804 0.00298223228268)
(0.00164424907938 0.0047433829421 0.00180476389858)
(0.00264655200452 0.117647835712 0.00515367556154)
(0.00746501749756 0.116654700872 0.00546722798586)
(0.0116387680475 0.114524570335 0.00572893887343)
(0.0148982535536 0.111735247633 0.00613514358572)
(0.0172834261913 0.108408728996 0.00656648820871)
(0.0188044416765 0.1041835654 0.00694313288877)
(0.0194545267982 0.0987807648725 0.00706270658548)
(0.0196074867036 0.0924518065874 0.00685925478799)
(0.0195363690933 0.0857317771746 0.00651451939334)
(0.0195065382878 0.0786195715154 0.00610704880553)
(0.01990417218 0.0706875520026 0.00566263463472)
(0.0204818919359 0.0618055691528 0.00525410965018)
(0.020671502944 0.0518753481228 0.00480967933416)
(0.0198241640736 0.0413271054241 0.00439464963359)
(0.0176598475667 0.0311075631344 0.00400965771589)
(0.014479403266 0.022160759216 0.00358911308173)
(0.0106789186224 0.0148258181319 0.00325920385372)
(0.00664790108955 0.00925377090078 0.00294814551057)
(0.00290999252495 0.00544735441205 0.00243140934095)
(0.00053828349551 0.00329859012379 0.00106214442646)
(0.00215881064259 0.0956141211372 0.00666644807205)
(0.00592838662988 0.0947607344236 0.00701824721571)
(0.00910852948199 0.0928688684248 0.00718432346279)
(0.0115680702635 0.0902383224627 0.00741974698652)
(0.0131258925542 0.0870022843583 0.00764000688606)
(0.0138794953102 0.083156232002 0.00777163221332)
(0.0139492393258 0.0785867799185 0.00772488383089)
(0.0135464762286 0.0734182045883 0.0074786673662)
(0.0129703035939 0.0677490662366 0.0071120389475)
(0.0124279307769 0.0616537180795 0.00664252876359)
(0.0120465037053 0.0550120363833 0.00615034347771)
(0.0117923963121 0.0476895102608 0.00558817074155)
(0.0113528452364 0.0398257815763 0.00494896922467)
(0.0105078406325 0.0316634068074 0.00434658274548)
(0.00903938046172 0.0237969187641 0.00380353158958)
(0.00706645943661 0.016766049983 0.00332918655244)
(0.00480375154786 0.0109682043022 0.0029292305675)
(0.00241720875526 0.00653584321308 0.0025150125017)
(0.000318626683282 0.00357098149256 0.00191157645624)
(-0.000344260555573 0.0019827118686 0.000469283025547)
(0.00173676364835 0.0703774681254 0.00788769127252)
(0.00464637811915 0.0696265196989 0.00825528679346)
(0.00701392510392 0.0681005722514 0.00835487585828)
(0.00873783890371 0.0659789487307 0.00841439314183)
(0.00974730166907 0.0633433249163 0.00840612191634)
(0.00997586610618 0.0602478127094 0.00833521561754)
(0.0095405494159 0.0566960519335 0.00813769589847)
(0.00873761024994 0.0527572213637 0.00783150099792)
(0.00773641073203 0.0484676709108 0.0073767082787)
(0.00669671484438 0.0438233721594 0.00684457818373)
(0.00581620683704 0.0387826922637 0.00623895268667)
(0.00506083528098 0.033314206199 0.00560456101541)
(0.00432649137506 0.0275343073148 0.00495060427559)
(0.0035585347469 0.0216551890528 0.00428575798814)
(0.00259577901876 0.0159871154096 0.00367235471234)
(0.00153018844756 0.0109333521331 0.00311828057673)
(0.000389872786893 0.00677397519139 0.00257764991472)
(-0.00072577472938 0.00366120180227 0.00207090389597)
(-0.00147739825763 0.00175805445736 0.00145938574924)
(-0.000915399031792 0.000899852911316 2.76134085501e-05)
(0.00135615075639 0.0429713545479 0.00871107184606)
(0.00359871982121 0.0423450675267 0.0089959153743)
(0.00545596329964 0.0412529237329 0.00901094765752)
(0.00672101543095 0.0398359635164 0.00896738656268)
(0.00729037678954 0.038102263808 0.00884472471527)
(0.00716157577058 0.0361098737611 0.008639028401)
(0.00645045795492 0.0338905243857 0.00833602154479)
(0.00533962359141 0.0314335981525 0.00793264060988)
(0.00402686525633 0.0287262259061 0.00739957786476)
(0.00268647622351 0.0258012062938 0.00681448197438)
(0.00144573737986 0.0226191765094 0.0061439888289)
(0.000408386263088 0.0191866387792 0.00544044865964)
(-0.000455569775419 0.0155913923667 0.00467421027485)
(-0.00116388037184 0.0119391061433 0.0039276511248)
(-0.00177220414897 0.00845851942194 0.00323112351389)
(-0.00221422697544 0.00536312942042 0.00258251920898)
(-0.00250556399775 0.0028629867029 0.0019880893739)
(-0.00260086524772 0.00112795214829 0.0014909779607)
(-0.0023522709205 0.000269716568472 0.000927072558045)
(-0.00109595311047 0.000158850505299 -0.000227061001907)
(0.00104033925837 0.0144669525911 0.00908154317029)
(0.00285132257269 0.0141985665764 0.00894262547656)
(0.00450369897442 0.0137813221615 0.0088199536678)
(0.0055904593356 0.0132631882209 0.00871755161981)
(0.00599838292576 0.0126553779395 0.00856254245471)
(0.00572035578525 0.0119754494678 0.00830179099053)
(0.00482805830671 0.0112263815112 0.00796869955127)
(0.00352191212901 0.0103749966039 0.00751910206814)
(0.00199883278752 0.00944356681887 0.00693845634507)
(0.000431728553487 0.0084248021743 0.00626837007675)
(-0.00101698860013 0.00729965906476 0.00547867100789)
(-0.0022277469289 0.00610000276223 0.00460435652874)
(-0.00317233088995 0.00485217579621 0.00371322138637)
(-0.0038417723925 0.0035722967689 0.00277548121782)
(-0.00422244612026 0.00236129938151 0.00191427832165)
(-0.00427250440524 0.00130832591946 0.0011272728371)
(-0.00401592624803 0.000477920107108 0.000501852428485)
(-0.00341743816947 -5.62069498036e-05 4.01255694069e-05)
(-0.00243875944377 -0.000228758338343 -0.000230021499035)
(-0.000945447750854 -8.4565536731e-05 -0.000372759435247)
(0.0132888448057 0.0123862498234 -0.0500011135001)
(0.0392836596301 0.0124468687775 -0.0491998255406)
(0.0645805428423 0.0123006011902 -0.0474174177022)
(0.0881065129493 0.0122172075309 -0.0449634741477)
(0.108962289373 0.0121403611109 -0.0419289317583)
(0.126385636485 0.0120796802518 -0.0383294211549)
(0.139772052829 0.012077780493 -0.0342099630793)
(0.148745157862 0.0119807628191 -0.0296675371776)
(0.15332343729 0.011651998991 -0.0247796364917)
(0.153864100457 0.0110017229389 -0.0197055191715)
(0.150767951632 0.0100825810516 -0.0146241147449)
(0.144457629576 0.00898906277687 -0.00963517155728)
(0.135371348417 0.00787232527246 -0.00493099232724)
(0.123725344611 0.00688619506122 -0.000576223233013)
(0.109777558191 0.00615696497407 0.00332830190681)
(0.0937064030531 0.00538981146822 0.00726456298423)
(0.075402503686 0.00464520225606 0.0103773903168)
(0.0550749581496 0.00406464842819 0.0128884965505)
(0.0333899606568 0.00362906381136 0.0146165691755)
(0.0112985991369 0.00336411451411 0.0153923814535)
(0.0134145500719 0.0367181356238 -0.0493033156676)
(0.0393131543541 0.0365579988858 -0.0503528367914)
(0.0646385309549 0.036052003938 -0.0491407790557)
(0.0884139592964 0.0356150631139 -0.0466923397219)
(0.109432087048 0.035166448967 -0.0434597880489)
(0.126950128512 0.0348763921316 -0.0397044627298)
(0.140291752838 0.034808877469 -0.0353961602682)
(0.149000683412 0.0345475833879 -0.0305571814515)
(0.153159833109 0.0335584778751 -0.0253923663546)
(0.153222270344 0.0316048341498 -0.0199693596443)
(0.149732253867 0.0288537523471 -0.0144714259726)
(0.143243590594 0.0255631152666 -0.00918067868986)
(0.134200030357 0.0221890707325 -0.00417983138241)
(0.122815862937 0.019110821924 0.000497433645439)
(0.109004134868 0.0165905171094 0.00499861598003)
(0.0927910679364 0.014510741888 0.00864993511587)
(0.0745829157202 0.0126917859031 0.0118498217835)
(0.0546121495137 0.0113335370604 0.0143713994581)
(0.0334690784438 0.0102883576765 0.0158010802022)
(0.0114959591339 0.00961402324751 0.0156247465452)
(0.013264255724 0.0604715876804 -0.0478630451055)
(0.0388476288656 0.060261769208 -0.0494413565594)
(0.0641673113151 0.0593888287254 -0.0483816383081)
(0.0880955573477 0.0583214570781 -0.0458893066677)
(0.109282936749 0.0572413725759 -0.0427373148282)
(0.126927444136 0.0564978189412 -0.0391652467966)
(0.140123891638 0.0563122386318 -0.0348933016129)
(0.148218623687 0.0560172577148 -0.0298479881669)
(0.151334046017 0.0543496710045 -0.0244434274185)
(0.150375422623 0.0509006241194 -0.018740517118)
(0.146114593168 0.0460089704843 -0.0130050528492)
(0.139250280736 0.0403615550507 -0.00757062989067)
(0.130265944013 0.0344669264186 -0.0027158300631)
(0.119248784777 0.0295345531387 0.00192135884708)
(0.106030797625 0.0252247588432 0.00602073660659)
(0.0904481225177 0.0217117533782 0.00965711665417)
(0.0727707906779 0.0190900990319 0.012850268559)
(0.0532143470532 0.0171725651887 0.0153211940113)
(0.0325667826872 0.015756558524 0.0166219247958)
(0.0112020853071 0.0149391815978 0.0161362584497)
(0.0131203333599 0.0829875509684 -0.0458726169281)
(0.0383328687969 0.0827069028555 -0.0475083755844)
(0.0635535430265 0.0812925250969 -0.0464162327231)
(0.0876016192773 0.0794153988882 -0.0438824161588)
(0.108922557321 0.0775778870055 -0.0409138259305)
(0.126747839556 0.0763127789799 -0.0374366688015)
(0.139919849834 0.0762108379956 -0.0329949361374)
(0.147045437209 0.0766020123385 -0.0275088784251)
(0.148370538941 0.074448580165 -0.0217249815817)
(0.145604512426 0.0694817668141 -0.0159198336443)
(0.140167204385 0.0623870287692 -0.00981288765768)
(0.132805984074 0.0538991898704 -0.00459892309527)
(0.124325799041 0.0451986024856 0.000142428911897)
(0.114216775788 0.0377935945777 0.00444287281341)
(0.101563506872 0.0316662836045 0.00809263504114)
(0.0868596219484 0.026987469153 0.0112125205436)
(0.0701907140105 0.0237456433248 0.0138629304824)
(0.0513631048531 0.0213405031564 0.0163806662179)
(0.0313419855638 0.0196796352717 0.0175455182701)
(0.0108031985686 0.018826016742 0.017077552901)
(0.0128592210184 0.103627243941 -0.0432915556089)
(0.0376146411829 0.103020505192 -0.0448332434295)
(0.0625532574507 0.100862299927 -0.0435767361282)
(0.0866449570034 0.0978796213128 -0.0410290550896)
(0.10819147688 0.0950049636799 -0.0381359345945)
(0.126451093783 0.0929551016442 -0.0344146549523)
(0.140217416681 0.0924345509147 -0.0292778127245)
(0.146086299359 0.0936308141898 -0.0219856673955)
(0.14438698142 0.0895209701861 -0.0151091563263)
(0.139074507153 0.0820334984434 -0.00850461222066)
(0.131610017467 0.0712046091477 -0.00278075192522)
(0.123087108154 0.0586758805559 0.00175525042213)
(0.115061075006 0.0480436023423 0.00407906867851)
(0.10632706825 0.0402625749008 0.00839798737323)
(0.0956459221316 0.0343375774731 0.0103760586233)
(0.0826922547216 0.0302663993386 0.0131064735024)
(0.0672849835967 0.0267392492215 0.0154744578068)
(0.0493610185661 0.0237392145724 0.0175461062433)
(0.0300722486383 0.0218479401746 0.0185576888354)
(0.0103427684333 0.0209374254188 0.0180408305389)
(0.0124254108135 0.12183892937 -0.0400752804527)
(0.0364699482301 0.120857970679 -0.0414081419426)
(0.0609057359401 0.117786470854 -0.0400538736828)
(0.0847910776674 0.113692875051 -0.0374005527569)
(0.106333653041 0.109901290386 -0.0343597406928)
(0.125010791974 0.106986494057 -0.0308808133762)
(0.140109713165 0.106804195313 -0.0251709169864)
(0.143387740184 0.113276245805 -0.0157978754703)
(0.136964064245 0.108016789096 -0.00791413995508)
(0.127760236959 0.101141624909 -0.00148533302179)
(0.117343950249 0.0895235899443 0.00410762539492)
(0.110091307735 0.0764619588551 0.00556159931836)
(0.106831665004 0.0649500625655 0.00421029614793)
(0.101281890377 0.0453243515896 0.00858159753365)
(0.0918226908508 0.0371383162636 0.0120540864456)
(0.0791168018498 0.0319025411953 0.0154925056898)
(0.063943824783 0.0275998077794 0.0172837350286)
(0.0469360887054 0.0243486935287 0.0187533907428)
(0.0286799486168 0.0222916173563 0.0193400332482)
(0.00988181910288 0.0213306776515 0.018731338952)
(0.0118214448176 0.137390519963 -0.0362266405937)
(0.0347598181895 0.136049912817 -0.0372701529229)
(0.0582751220933 0.132107416709 -0.0357913434007)
(0.0817249080626 0.12679601477 -0.0330855343098)
(0.103575494421 0.121130276626 -0.0297617093187)
(0.124135285148 0.115411590069 -0.0253091314442)
(0.145226025334 0.111878278238 -0.0162455445091)
(0.145067837368 0.128492061062 0.00972935856274)
(0.131466468429 0.108833906692 0.0172161703613)
(0.120386946204 0.0825240846689 0.0194035254166)
(0.107426240983 0.0504493294646 0.0259582132574)
(0.0996852620135 0.0256908054046 0.0320871431945)
(0.085738965592 0.0121330403739 0.0283774265706)
(0.0789003117829 0.0294551136439 0.0188704948311)
(0.0818601562997 0.0308172744013 0.0205210927312)
(0.0735500741345 0.028414875 0.018357678071)
(0.0609200718048 0.0261480766931 0.0188967209462)
(0.0449019858829 0.023171987269 0.0195720566108)
(0.0274367739119 0.0211887410459 0.0198431628616)
(0.00948901146515 0.0202070139081 0.0191255127968)
(0.0110243604007 0.150101406804 -0.0317270434189)
(0.0323962407281 0.148503870366 -0.0325761238001)
(0.0542629018169 0.144007259639 -0.0310609736623)
(0.0763660000587 0.13764298687 -0.0289286175536)
(0.0971597076004 0.129733537439 -0.0265633791105)
(0.117127387018 0.120434514873 -0.0256006090074)
(0.152962889573 0.110449701393 -0.017196887253)
(0.13712369805 0.118062242611 0.0611394738719)
(0.0930628164929 0.0936381321341 0.0401807209232)
(0.0707919039075 0.0606878542003 0.0142773351656)
(0.0615612958997 0.0271604829564 -0.0274313978102)
(0.0726647466383 0.00329377097734 -0.0498903769236)
(0.110470316631 -0.00873885017299 -0.0709890268898)
(0.117867453591 0.0208630962682 -0.0023355349255)
(0.0898230855071 0.026305399657 0.0130357890316)
(0.0756487426155 0.0262235161622 0.0168309953289)
(0.060129278632 0.0241553814613 0.0194437644694)
(0.0431338719465 0.0212754512294 0.0197208367646)
(0.0262949360116 0.0192069266663 0.0197498996824)
(0.00909227512785 0.0180772292959 0.0189736310851)
(0.0100432527936 0.159654570966 -0.0266378000382)
(0.0294787954516 0.157892993927 -0.0273171596104)
(0.0493533328657 0.153085370797 -0.0259145179383)
(0.0695907617289 0.146058240243 -0.0241282445099)
(0.0890323924469 0.136533775785 -0.0220166392881)
(0.107050074065 0.125210140433 -0.0212433245758)
(0.144320411204 0.111649552712 -0.01211357704)
(0.123841448473 0.100585257099 0.0715614212182)
(0.0725741050866 0.0827461478408 0.0464420771594)
(0.0526975411275 0.0650176991186 0.0210374673469)
(0.0487719237501 0.0526835890639 -0.0123486505459)
(0.0624685459907 0.0439402928606 -0.0387560824897)
(0.103651502638 0.0366727116125 -0.0645686242115)
(0.114653754504 0.0347210323003 0.000161150979923)
(0.0864826243441 0.0311004680835 0.0133370275147)
(0.0731100025343 0.0274377025896 0.0163715057218)
(0.0578597527427 0.023156027907 0.0186591911991)
(0.0413698712008 0.0196616004619 0.0190610569215)
(0.0249154390243 0.0170601419131 0.0189753563712)
(0.00861204442054 0.0156090093554 0.0181676266701)
(0.00889483191775 0.165850249516 -0.0210578163819)
(0.0261015141362 0.163995334024 -0.0216067410246)
(0.0436566593426 0.159095278946 -0.0203854044295)
(0.0615659595584 0.151528696817 -0.0188766646247)
(0.0786912584241 0.140495885231 -0.0170548089231)
(0.0944193956067 0.126743891517 -0.0164653012714)
(0.127802926169 0.111445217745 -0.00627812382044)
(0.105776574334 0.0931512591872 0.0702084646812)
(0.0561900958178 0.0772412427507 0.0431563149978)
(0.0393245122024 0.0645484202947 0.0161226615858)
(0.0383370688832 0.0560777105645 -0.0184637267866)
(0.0547603690046 0.0506683689691 -0.0455209336634)
(0.0996468836965 0.0466731653244 -0.0708087099897)
(0.110448598817 0.0407535944973 -2.7160747799e-05)
(0.0822503833239 0.0346788668348 0.0126427741901)
(0.0692084741762 0.0289770786372 0.0153338042187)
(0.0543131320019 0.0232385342621 0.0174604944051)
(0.0385440246994 0.0183288145516 0.0177874688958)
(0.0231089377307 0.0150139133201 0.0176465474783)
(0.00798341936522 0.013124117485 0.0168176153667)
(0.00764140645081 0.168504276659 -0.0151004258757)
(0.0224336799486 0.166731462161 -0.0154272964574)
(0.0374640669389 0.161835387661 -0.0142443738729)
(0.052316352529 0.153919994937 -0.0124660907147)
(0.0661760189004 0.14125214958 -0.0109180999396)
(0.0794188479486 0.124196602857 -0.0106111629021)
(0.110344751078 0.101746152823 -0.000915191233707)
(0.0883751514582 0.0573001224828 0.0751958838592)
(0.0440999657313 0.0487484735667 0.0479217936677)
(0.0309273772245 0.048242894427 0.0181753428463)
(0.0334468989771 0.0564548178147 -0.0196132056428)
(0.0511079187718 0.0624118305187 -0.0429813693668)
(0.0912469893235 0.0650768145209 -0.0639941736732)
(0.100310357621 0.0466023001624 0.000204711473604)
(0.0759645505723 0.0382080366443 0.0116076640744)
(0.0636599707146 0.0305489989066 0.0140814346959)
(0.0495656079097 0.0229375267265 0.0160043069843)
(0.0348235266759 0.01712349759 0.0161096316327)
(0.0207846009218 0.0131291370871 0.0158770884697)
(0.00716957935523 0.0108076494119 0.0149447590387)
(0.00637410747358 0.1674224525 -0.00886458070568)
(0.0185987580758 0.165927653304 -0.00898079440546)
(0.0307674456404 0.161464148864 -0.00808299976942)
(0.0418715441277 0.153947630195 -0.00724344232366)
(0.0506072164981 0.142643226428 -0.00615306286498)
(0.0564679810766 0.127456648563 -0.00817881081286)
(0.0558371053583 0.108136687822 -0.00994120715975)
(0.0511502943796 0.0633788539054 -0.0251256099342)
(0.0459818391438 0.0620860449817 -0.0320028606872)
(0.0462811162713 0.0671959712899 -0.0346809868589)
(0.0508407425145 0.0780522102802 -0.0349147093472)
(0.0613834810399 0.0845647966439 -0.034260882432)
(0.081968526768 0.0843160792736 -0.0292902808575)
(0.0848548148693 0.0563135164607 0.00051992993651)
(0.068698404758 0.0434497773183 0.00892108435906)
(0.0564887415687 0.0325700049578 0.0116903860345)
(0.0435273611589 0.0229826322813 0.0133902730671)
(0.0304827783393 0.0161204508579 0.0138420731325)
(0.0179663298511 0.0114482444705 0.0137041134216)
(0.0061869847384 0.00875764342575 0.0127206429378)
(0.00523237325711 0.162322762025 -0.00249161683882)
(0.0151057341223 0.161109749063 -0.00237079322729)
(0.0246538704551 0.157468936717 -0.00157250964414)
(0.0335020899061 0.151231001485 -0.000426275292637)
(0.0405590427445 0.142694370693 0.000763931612216)
(0.0459134230863 0.132386856003 0.000975731196608)
(0.048693971082 0.121682084877 0.00113505362169)
(0.0460218392768 0.11407353043 2.81860754651e-05)
(0.0417114425725 0.10893625363 -0.00265562411208)
(0.0412003609703 0.105567037318 -0.00458838226179)
(0.0445372402093 0.101396318398 -0.00584638326559)
(0.0521107726835 0.0964664551385 -0.00469062760091)
(0.061949637861 0.0855281879734 -0.00185858503725)
(0.0630751654929 0.0618029115552 0.00637082002042)
(0.0545764677974 0.046181418341 0.00949393638457)
(0.0457588573046 0.0331007145908 0.0108260135574)
(0.0355924229241 0.0225604497265 0.0115537162108)
(0.0248572199747 0.014910496824 0.0116973705857)
(0.0146002031846 0.00988200900959 0.0114006705458)
(0.00504959465033 0.00691634999583 0.0102518356484)
(0.00419461975491 0.152617163516 0.00370313993517)
(0.0121072496751 0.151730386499 0.00401999444288)
(0.0194930503001 0.148816364648 0.00471330696476)
(0.0260544524031 0.144066484773 0.00576387546165)
(0.0312641870733 0.137339116471 0.00662567230246)
(0.0346157268326 0.129086449012 0.00686504178373)
(0.035672079124 0.119359659504 0.00636939561479)
(0.0351645222715 0.10949766281 0.00384058806768)
(0.0350924023748 0.102728974534 0.00228222342086)
(0.0364933700834 0.0971737321538 0.0016636545906)
(0.0392618336814 0.0918807723113 0.00184031928277)
(0.0433683304434 0.0847672262237 0.00312701769448)
(0.0474664534754 0.0734173134128 0.00475816442786)
(0.0472128948828 0.0572333804914 0.00788732336679)
(0.0419188224092 0.0432591693221 0.00915915393048)
(0.0349214250924 0.0308710731487 0.00958764029849)
(0.0271271431263 0.0206342169639 0.00968536332544)
(0.0188201919374 0.0131462867642 0.00963353050839)
(0.0109318693167 0.0082316738521 0.00916826977384)
(0.00381018058943 0.00527581047233 0.00776551340295)
(0.00347238654183 0.138360889942 0.00970688021892)
(0.00979167948533 0.137682361117 0.0100821066199)
(0.0154016968809 0.135219094102 0.0107111921536)
(0.0202152319199 0.131624206961 0.0113549635173)
(0.0240622755658 0.126555478906 0.0121345278573)
(0.0266167573947 0.120302140393 0.0126305878786)
(0.0277858642056 0.113247868799 0.0127960014296)
(0.0278085800787 0.106291954477 0.0123077644559)
(0.0276883916919 0.099732154761 0.0116921085416)
(0.0283856710563 0.0927292979277 0.0107047595784)
(0.0297821740736 0.0848676777887 0.0102044803592)
(0.0316181970423 0.0757398097144 0.00979188004944)
(0.0331574020402 0.0642986940663 0.00952685664451)
(0.0324278656195 0.0508780036762 0.00961260537797)
(0.0291004251726 0.0381868967648 0.00926188323233)
(0.0242290691767 0.0270292422077 0.00874613358689)
(0.0186795531904 0.0179170682961 0.00821487224484)
(0.0128505130769 0.0110814830768 0.0078601004395)
(0.00743568781517 0.00655246794674 0.00710568832245)
(0.00263547629076 0.00380090306935 0.00523845785269)
(0.00282937799786 0.119913241542 0.0151096173802)
(0.00776985268301 0.11925255841 0.0156340506908)
(0.0121576554788 0.117127146846 0.0159967839473)
(0.0157101785345 0.114099546505 0.0164620463778)
(0.0182449322039 0.110052765251 0.0168873852139)
(0.0198553634356 0.104988313165 0.017143041096)
(0.0203678337578 0.0989680794734 0.0171752117253)
(0.0203528419666 0.0924585654753 0.0167710681407)
(0.0201974994934 0.085863371937 0.0157875416854)
(0.0199940777677 0.0789004356983 0.014906997344)
(0.0203167795558 0.0711668036819 0.0139676273584)
(0.0208410267988 0.0625133575053 0.0126904250912)
(0.0209457084608 0.05265273196 0.0115154170702)
(0.0200381352542 0.0419409232263 0.0103607335952)
(0.0178203669083 0.0315871465862 0.00919341724544)
(0.0147087468464 0.0222912916703 0.00803218702399)
(0.0111636455546 0.0146549490533 0.0070708202261)
(0.00742730793517 0.00882126109043 0.00628980214943)
(0.00425417120584 0.00490405873116 0.00516733858043)
(0.00157670227501 0.0024789251078 0.00291582315034)
(0.00227960421409 0.0974934139473 0.0197022106069)
(0.00613190525268 0.0969922656321 0.020223370939)
(0.00945570946979 0.0951800049097 0.0205088559723)
(0.0120024246343 0.0924667725435 0.0208302372042)
(0.0135910891535 0.0890343137026 0.0209736973402)
(0.0143384571947 0.0848565367862 0.0209253750781)
(0.0142853955026 0.0799322262633 0.0205786578614)
(0.013768233198 0.0746485860053 0.0198075201298)
(0.0130647111065 0.0688395868055 0.0188046274373)
(0.0123748339726 0.0626526732843 0.0174585630125)
(0.0118791870753 0.0559927344831 0.0159099828057)
(0.0115276946019 0.0485836179456 0.014285763417)
(0.0110904655922 0.0406199864041 0.0125783765225)
(0.010235289823 0.0323072992594 0.0108282336664)
(0.00880754455864 0.024275208952 0.00909907459269)
(0.00691613911867 0.0170752117922 0.00744296511793)
(0.00494404280549 0.0110702449897 0.00603654388739)
(0.00303234204396 0.00643465746761 0.00482277934054)
(0.00162332120736 0.00334507195399 0.00340035876658)
(0.000683951533985 0.00135271172059 0.000951516940425)
(0.00180901832562 0.0718162902566 0.0233387563385)
(0.00478728282066 0.0714771646705 0.0239120465308)
(0.0072106578736 0.0699808339016 0.0240809917496)
(0.0089682620298 0.067782638372 0.0241697912127)
(0.00991253066297 0.0650254398833 0.0240685335175)
(0.0100501382318 0.0617777255675 0.0236832107555)
(0.00955784318841 0.0580397187848 0.0230400284183)
(0.00863328573659 0.0540005975981 0.0220306370353)
(0.00744938535966 0.0495539337187 0.0206529622749)
(0.00628148310713 0.044846326419 0.0190150187354)
(0.00528751817685 0.0397208686507 0.017168499573)
(0.00449092973931 0.034260360326 0.0150759708522)
(0.00372064005897 0.028397624225 0.0129782785026)
(0.00292898331426 0.0224897015059 0.0107903873316)
(0.00206398517159 0.0167605853 0.00869292054967)
(0.00115165618403 0.0116526901319 0.00669680099944)
(0.000322619543425 0.00738582346975 0.00497603309113)
(-0.00028704510537 0.00411713831925 0.00349955153241)
(-0.000383456427227 0.0019034434016 0.00191807386703)
(-1.71537211622e-05 0.000532621352856 -0.000550990674614)
(0.00137156507348 0.0438594586995 0.0258267568054)
(0.00362490280635 0.0439087278743 0.0262524790539)
(0.00549702306896 0.0429658263491 0.0261853875755)
(0.00679086299159 0.0415470562 0.0260188941599)
(0.00732132097534 0.0397741308173 0.0256656423247)
(0.00710671099895 0.0376792625236 0.0251018145659)
(0.006296722832 0.0353455815461 0.0241863359195)
(0.00504178838186 0.0327701824361 0.0229549249323)
(0.00358167720191 0.0299983225663 0.0214271638793)
(0.00212386202487 0.0270481186715 0.0195010398922)
(0.00079916920123 0.0238490948733 0.0173908387134)
(-0.000331249570897 0.0204482718399 0.015065388357)
(-0.00125536102882 0.0168763484119 0.0126293911692)
(-0.0019248474507 0.0133090074225 0.01012570579)
(-0.00244380705745 0.00988622505932 0.00770134291749)
(-0.00275213221919 0.0068006073509 0.00547097605014)
(-0.00273904183983 0.00421523156427 0.00353541530344)
(-0.00245118987455 0.00224938425996 0.00194368516837)
(-0.00166741729097 0.00096382496887 0.000513736702482)
(-0.000441708232192 7.75893100131e-05 -0.00147835827031)
(0.000946039928839 0.0148720698587 0.026982136946)
(0.0027189998578 0.01502551025 0.0266740498562)
(0.00441491903211 0.0147396897353 0.0263497577467)
(0.00551322752891 0.014272756556 0.0260526138468)
(0.00584997981358 0.0136765516016 0.0256385472156)
(0.00547486478513 0.0129588514043 0.0249274740608)
(0.00447076082312 0.0121915071605 0.0239182126221)
(0.00301155527219 0.0113161955957 0.022579885386)
(0.00134278156583 0.0103695408789 0.0208279051447)
(-0.000371134503699 0.00934968016385 0.0187644380574)
(-0.00194396588412 0.00824120848924 0.0163790818818)
(-0.00323220719785 0.00705856978207 0.0137615502085)
(-0.00422236596757 0.00584870459904 0.0110025307838)
(-0.00488445750074 0.00462751534359 0.008207117798)
(-0.00520259872314 0.00345897370926 0.0055172672027)
(-0.00512816596955 0.0024114808634 0.00305418596139)
(-0.00465848628904 0.00154722793051 0.000985025345525)
(-0.00379401258944 0.000861079944137 -0.000556199713846)
(-0.00253210333696 0.000438401482354 -0.0014942068677)
(-0.000809452195796 5.74382196239e-05 -0.00204533164404)
(0.0137879247556 0.0128141307059 -0.0844311547267)
(0.0404390622824 0.0131415435715 -0.0831301765608)
(0.066402076521 0.0130586451109 -0.0802489321403)
(0.0904795708548 0.0130045195301 -0.0761939522393)
(0.111830960052 0.0129157983512 -0.0710811203481)
(0.129707764502 0.0128301167191 -0.0649756567169)
(0.143464878615 0.0128071750422 -0.0580192415209)
(0.152742338921 0.0127033468915 -0.0503860201112)
(0.15755641658 0.012358761223 -0.0422392068346)
(0.158176096894 0.011676498482 -0.0337432191706)
(0.155054545127 0.0107402174419 -0.0251312571355)
(0.148619122438 0.00960594095224 -0.0167322213395)
(0.139255921332 0.00841536936854 -0.00868616403706)
(0.127251552256 0.00738743336271 -0.00140858405954)
(0.113184561331 0.00672531032011 0.00586814035746)
(0.096774855363 0.00558086640724 0.0123130776983)
(0.0778063068216 0.00477826164636 0.0176312852795)
(0.0568718069307 0.00417094012528 0.0218172545313)
(0.034491359898 0.00370051669374 0.0246941573564)
(0.0117128452854 0.00342663149678 0.0260499054095)
(0.0142516840693 0.0376744123544 -0.0834057078009)
(0.0408989267078 0.0378914015694 -0.0834951658568)
(0.0666107943235 0.0375274491353 -0.0811640659766)
(0.0908390320563 0.0371384181406 -0.0771824772637)
(0.112267568654 0.036682997571 -0.0719549393249)
(0.130199852043 0.036335199138 -0.0656679063782)
(0.14392427306 0.0362386136109 -0.0584897605554)
(0.152948252185 0.0360626649242 -0.0505726099034)
(0.157316718242 0.0350846265378 -0.042056391518)
(0.157504288656 0.0331476846364 -0.03317242135)
(0.154014271949 0.0303983234217 -0.0241806084583)
(0.147351666281 0.0270822800131 -0.0153588937644)
(0.138030785585 0.0234784792729 -0.00705929051595)
(0.126468104091 0.0202806301047 0.000726282460111)
(0.112213977437 0.0175831648527 0.00764149568093)
(0.0955421888798 0.015114892081 0.013818550914)
(0.0770447535757 0.0131912290148 0.0192587381454)
(0.0565642604051 0.0118073729784 0.0234314038823)
(0.0348960496508 0.0107098065256 0.0259957815667)
(0.0121453420509 0.0100081141138 0.0266094495913)
(0.0141878694052 0.0619467716371 -0.0811212330056)
(0.0406301626245 0.0618390239978 -0.0817875551046)
(0.0662410436229 0.0610192993665 -0.0798144022022)
(0.0905543196897 0.0599299057978 -0.0758231062086)
(0.112067964591 0.0588053347857 -0.0704731781734)
(0.13009259646 0.0580518289674 -0.0641415401998)
(0.143777106609 0.0579492971129 -0.0568238058921)
(0.152246974491 0.0580108689085 -0.0486075283332)
(0.155610502696 0.05652828342 -0.0397836212528)
(0.154749583513 0.0531440023585 -0.030608094948)
(0.15046965754 0.0484556837363 -0.0213354529542)
(0.143300282954 0.0425737625527 -0.0123677757259)
(0.133976741799 0.0365379435246 -0.00418517609986)
(0.122665573028 0.0313354436545 0.00288458124474)
(0.10905427028 0.026556454317 0.00984213779204)
(0.0932065679905 0.0227743457748 0.0158368624494)
(0.0752414225802 0.0200247222792 0.0211501399907)
(0.0552079417669 0.0179936778374 0.0252000350049)
(0.0340779378146 0.0164975220959 0.0274467387954)
(0.0119134726094 0.0156523919287 0.0277055562513)
(0.014072713844 0.0849526598127 -0.0778546651596)
(0.0402343399185 0.0846646843205 -0.0786504161702)
(0.065650168071 0.0832166723221 -0.0766576187613)
(0.089986637425 0.0812751427138 -0.0726041371623)
(0.111658395857 0.0794077723594 -0.067221373754)
(0.129998017955 0.0781974005607 -0.0607729677504)
(0.14388740118 0.0783639416918 -0.0531455495256)
(0.151487280557 0.0798707009933 -0.0443520484775)
(0.152833670435 0.0784065747229 -0.0349260065322)
(0.150245651961 0.0738867032437 -0.0253457501364)
(0.144569147346 0.0668500073549 -0.0155087190382)
(0.136736293953 0.0578949255624 -0.00638225180048)
(0.127922301907 0.0480043611093 0.0015835482852)
(0.117385018708 0.0408978180944 0.0074934168689)
(0.104295230225 0.0335752939988 0.0129663884269)
(0.0894031026101 0.0285062490574 0.0183422674875)
(0.0725587312992 0.0250159533972 0.0233834010382)
(0.0532681591135 0.0224126918983 0.027154818679)
(0.0328334700259 0.0206231128172 0.0292164163236)
(0.0115142253378 0.0197187674032 0.0293282303755)
(0.0138088706328 0.106104185787 -0.0735522068718)
(0.0395164649291 0.105402224796 -0.07425546333)
(0.064626608777 0.103155505828 -0.0721498280388)
(0.0889726354123 0.100176137722 -0.0679739094745)
(0.110940213733 0.0972747006275 -0.0625435393413)
(0.130037452052 0.0950212297057 -0.0559067237952)
(0.145322671087 0.0947182161643 -0.0473639056501)
(0.152024732611 0.0980768159645 -0.0365309190528)
(0.149987444739 0.0949505847506 -0.0248993465985)
(0.143990825651 0.0877523670485 -0.0141424175572)
(0.13557704324 0.077006468086 -0.00323809692572)
(0.125808001527 0.0626980524473 0.00739218483057)
(0.118256456256 0.0485138985497 0.0146776906201)
(0.1091415872 0.0411704541121 0.0179291344311)
(0.0974623063847 0.0353878393324 0.0174496186842)
(0.0851203782036 0.0314958271959 0.0215735950564)
(0.0694326647176 0.0278474439979 0.0259928979285)
(0.0510065900235 0.0247755961318 0.0292941720034)
(0.0314278874598 0.0227441824856 0.0309607243973)
(0.0110047231649 0.0217495158345 0.0310009966986)
(0.0133643911479 0.124838213669 -0.0681092981581)
(0.0383357620438 0.123757599603 -0.0686524283175)
(0.0629046499932 0.120691795658 -0.0664509323095)
(0.0870693315777 0.116643080686 -0.0623277408328)
(0.109089539255 0.112742751948 -0.0569975262209)
(0.128886906268 0.11010571071 -0.0504471668444)
(0.14666268848 0.111312242822 -0.041550412682)
(0.150567365332 0.125788936253 -0.0259256772087)
(0.142648391412 0.11988578759 -0.0113113596763)
(0.132731159531 0.107578684666 0.00288316224916)
(0.120089331155 0.0944516459364 0.0177081289777)
(0.109125412676 0.0824091121251 0.0311225817093)
(0.107549802488 0.0677145658392 0.0373181411733)
(0.104907654219 0.0471537337848 0.0195518541697)
(0.0948778004935 0.0411458552024 0.020749918843)
(0.082009833665 0.0333928651142 0.0244633960872)
(0.0661441779303 0.0286162245243 0.0281864847169)
(0.0484302913226 0.0251549424733 0.0310866072988)
(0.0298681074313 0.0229418052982 0.0324127755624)
(0.0104831409603 0.0218625422005 0.0323293935077)
(0.012732717099 0.140916345374 -0.061539559575)
(0.0366031014609 0.139480184359 -0.0619159984395)
(0.0603143392637 0.135530206561 -0.0596210487179)
(0.0842640689551 0.129859203066 -0.0555747435285)
(0.107120545105 0.123467662631 -0.0501808891992)
(0.130470329014 0.116557960893 -0.043807916483)
(0.162480593275 0.112970348825 -0.0292081749029)
(0.158481800381 0.142844584629 0.0211387192807)
(0.129120177832 0.119315580262 0.04894364079)
(0.117232098557 0.085881743786 0.0668680186397)
(0.110657392822 0.0372115486668 0.0795373594893)
(0.0992532923361 0.00827435472313 0.0843727765414)
(0.0858567984609 -0.0113712540538 0.0819699097676)
(0.0813833981278 0.0212616862343 0.0402615948498)
(0.0835823912314 0.0294239816925 0.0369962444962)
(0.0732390827304 0.0281055357779 0.0305322736016)
(0.0619709342247 0.0259999764645 0.0306782313871)
(0.0458947464894 0.0233692044364 0.0323300244096)
(0.0283944496238 0.0213838638111 0.0331763196386)
(0.0100180135452 0.0203084974932 0.0329425794623)
(0.0118882165638 0.154119305229 -0.0539530175714)
(0.0341184974214 0.152423223037 -0.0542162357248)
(0.0560664917296 0.147833450404 -0.0521836349203)
(0.0781438993537 0.140868149332 -0.048898674296)
(0.0984305521608 0.132258480612 -0.0463956207859)
(0.119115542359 0.121552018321 -0.0465625615072)
(0.16130551262 0.114327751091 -0.056980636523)
(0.164634955982 0.150830087107 0.0618555702115)
(0.0621635990693 0.111985151153 0.0417956395089)
(0.0324490427194 0.0680612823966 0.0153186788526)
(0.0267212869851 0.0159925665366 -0.0206135672917)
(0.0452379121345 -0.0262331112621 -0.0407795220708)
(0.133126009291 -0.050406762203 -0.0612686545344)
(0.144212686684 0.00836339806152 0.0447636798343)
(0.101596876603 0.0200934275054 0.0349901501528)
(0.0795630585545 0.0241740598083 0.0290743525315)
(0.0621702903423 0.0231550849732 0.0302301672385)
(0.0444862475674 0.0208143981678 0.0323189204161)
(0.0272342995982 0.0188360218663 0.0329853503273)
(0.00957811225032 0.0176497937456 0.0326400037585)
(0.0108357544289 0.164145724077 -0.0453934057658)
(0.0311114983236 0.162192243467 -0.0454780606959)
(0.0510924152347 0.157228436139 -0.0436574569531)
(0.0712997947289 0.149678930893 -0.0409000112792)
(0.090046830851 0.140094474397 -0.0391414228666)
(0.110905734258 0.12923997523 -0.0415656548198)
(0.159029151994 0.117638941082 -0.0522284271814)
(0.154306790307 0.10482673189 0.0674587368893)
(0.039586652995 0.0841370747081 0.0431948783934)
(0.0188556582194 0.067638913231 0.01730911465)
(0.0138785076028 0.0596884942572 -0.0119840044571)
(0.0277233479703 0.0483907921797 -0.0385227741513)
(0.121418833581 0.0381445147389 -0.0652537362032)
(0.138716195705 0.0332553393563 0.0459625200145)
(0.0981218430312 0.0284139559199 0.0348118537791)
(0.0767794689652 0.0255460358289 0.0287522939445)
(0.0597353083491 0.0220040280957 0.0299366276448)
(0.0424657042893 0.018701327258 0.0313131197533)
(0.0257773849995 0.0161675466025 0.0317284213698)
(0.00907701244533 0.0146480386474 0.0312988285146)
(0.00960026478328 0.170735081115 -0.0359925898343)
(0.0275570641346 0.168709060025 -0.0360638546893)
(0.0453558293507 0.163427297596 -0.0344157019525)
(0.063087945347 0.155295044546 -0.0319139679331)
(0.0794151714059 0.144508903185 -0.0305779028905)
(0.0988447901298 0.131775899599 -0.0331820871556)
(0.143317467834 0.117440284729 -0.0416349276211)
(0.13192820567 0.0965115856326 0.0666316454228)
(0.0223717833703 0.0797097975128 0.0404383581027)
(0.005110909202 0.0653880048144 0.0146555761422)
(0.00357506119337 0.0527849505293 -0.0154975673999)
(0.0199973952012 0.0487246305104 -0.0417710335225)
(0.118967992019 0.0467138587329 -0.0685353824104)
(0.138258202755 0.038433829057 0.0429158340726)
(0.0940280433706 0.0312815609484 0.0325367654775)
(0.0729635101291 0.0264593000544 0.0269661301126)
(0.0561216868235 0.0213374938626 0.0282110167835)
(0.0395239337365 0.0168767478594 0.0293154430646)
(0.0239008576632 0.0136545592649 0.0295642720333)
(0.00842325536003 0.0116769813487 0.0290103395542)
(0.00826873473995 0.173695381371 -0.0259168300805)
(0.0237166956305 0.171776302288 -0.0258763574215)
(0.0388778313737 0.166380465502 -0.0246116623049)
(0.0537819579192 0.157522493354 -0.0227679564704)
(0.067291212666 0.145517691546 -0.0213590271253)
(0.0835042889858 0.129076499015 -0.023502599681)
(0.126636015365 0.100934319612 -0.0275916646306)
(0.114023575605 0.0138680714863 0.0658215190081)
(0.0111441334773 0.0138288215343 0.0412827635694)
(-0.00645035124129 0.0263992301288 0.0143250330852)
(-0.00128138686645 0.0510374564543 -0.0192042146268)
(0.0213831607555 0.0718865384807 -0.0421524750703)
(0.110094427856 0.0908736263328 -0.0655311813102)
(0.124069640563 0.0456491634509 0.036106098157)
(0.0854488498992 0.0343549157099 0.0275427513029)
(0.0667986520563 0.0274328270735 0.0242679386368)
(0.0510712538456 0.020662238245 0.0253747137815)
(0.0357207663506 0.0152529670825 0.0265664917111)
(0.0214793615511 0.0113725271312 0.0265781337951)
(0.00760021045654 0.00894232015516 0.0258476964342)
(0.00690943389625 0.172803248168 -0.0153854948822)
(0.0196721668069 0.171127767417 -0.0153198346149)
(0.0316881033823 0.1662562334 -0.0144562162603)
(0.0430560903245 0.158281892729 -0.0135883891468)
(0.0509904424386 0.147086206472 -0.0124305835809)
(0.0562480872962 0.132693514049 -0.015689171557)
(0.0487928334937 0.109438616661 -0.0218510050103)
(0.043749695543 0.0429724608418 -0.0656315299322)
(0.0415317504976 0.0473112876259 -0.0728248181925)
(0.0441296906094 0.058947737182 -0.075421995192)
(0.0504012986052 0.0830714805217 -0.0750086336813)
(0.0626483930148 0.0973555156117 -0.0686021156728)
(0.0958329440152 0.106081054745 -0.0555242967667)
(0.101476648253 0.0576867628145 0.00329227883752)
(0.0757831453703 0.0408643407256 0.0157247864767)
(0.0595363996618 0.0298238387348 0.0195500183385)
(0.0450292236581 0.0208170824115 0.0221693148088)
(0.0311821127679 0.0140678203851 0.0231487768448)
(0.0186048341963 0.00942443036172 0.022997648977)
(0.00659930349695 0.00661126875037 0.0220332514845)
(0.00567608210467 0.167647221807 -0.00463289540651)
(0.0160708589145 0.166368823603 -0.00445989410357)
(0.0259312201175 0.162406399164 -0.003667397925)
(0.0349082928736 0.156108453725 -0.00257301437176)
(0.0417340749989 0.147093066537 -0.0014410537621)
(0.0467800486273 0.137755355748 -0.00169290584644)
(0.0484006884688 0.127446314327 -0.00315759021073)
(0.0448229411444 0.125712950189 -0.0127160589203)
(0.0406605031701 0.123037602902 -0.0162225942103)
(0.0409451503979 0.119813194659 -0.0165948300268)
(0.0456357428415 0.116481587355 -0.0137256071158)
(0.0539871166667 0.110498011812 -0.00751023865511)
(0.0668499808039 0.0986168979626 -0.00143312951465)
(0.069313415749 0.0636737139076 0.0122417880997)
(0.0576117420941 0.04482499647 0.0164140691423)
(0.0471568925653 0.0311748340599 0.018385429571)
(0.0361488895951 0.0205175335031 0.0195106873137)
(0.0251662657373 0.0128528605371 0.0196499345894)
(0.015130071661 0.00773147101926 0.0191107103456)
(0.00546433197605 0.00462729656577 0.0178443841897)
(0.00466185282785 0.15791963159 0.00584262701306)
(0.0129928464976 0.156897209231 0.00635027002405)
(0.0206514621766 0.153712390382 0.00708580380729)
(0.0271971171747 0.148431786919 0.00803814936915)
(0.0320130464164 0.141246544977 0.00879931098643)
(0.0349601410853 0.132822706184 0.00860927301177)
(0.0350058303222 0.123115960093 0.00794485894731)
(0.0341377048847 0.114545048075 0.00443324528574)
(0.0346673005641 0.108702673436 0.00310058692707)
(0.0365654026214 0.103076474353 0.00275624770761)
(0.0401823134931 0.0972897690492 0.00394128859763)
(0.0448354501393 0.0886846369563 0.00619891150545)
(0.0499582032952 0.0765658647359 0.00922999508856)
(0.0498810901187 0.0568654565113 0.0138708865605)
(0.0430460689486 0.0417985889374 0.0158507941169)
(0.0353045904505 0.0290772459528 0.016488761415)
(0.0271972969279 0.0186979474751 0.016530129343)
(0.0189658416969 0.0111690352639 0.0160097386302)
(0.0114175290117 0.00610097479441 0.0150875269564)
(0.00422474971718 0.00295262316687 0.0135553558859)
(0.00373128831136 0.143428266332 0.0161525964389)
(0.0103664410868 0.142534657997 0.0166348196704)
(0.0162208095629 0.13983680207 0.0173264745002)
(0.0211433324395 0.135722656895 0.0181708817536)
(0.024865606681 0.130368041367 0.0188533741148)
(0.0272264053999 0.123972490772 0.0191695687337)
(0.028051923712 0.116987575251 0.0191110502132)
(0.0278132270139 0.110828421163 0.0176849469318)
(0.0273647505653 0.104255919591 0.0170261919316)
(0.0279064486624 0.0971648075317 0.0169005053845)
(0.0295013301916 0.088820186938 0.016530910922)
(0.03144005354 0.0785121696086 0.0162467508962)
(0.0332599498433 0.0660679089964 0.0160539336996)
(0.0325677936313 0.050867368201 0.016266411943)
(0.0288001195586 0.0372807878481 0.0158066078931)
(0.0237620088337 0.0257095946753 0.0147604282277)
(0.0183516773569 0.016302807933 0.0137916496637)
(0.0128317709483 0.00926867144515 0.0127112921908)
(0.00780530797332 0.00454997615609 0.0113132545125)
(0.00302533725084 0.00159124891969 0.00928588601222)
(0.00298361396734 0.124309064759 0.0253519995593)
(0.00814187969287 0.123547039172 0.0259438780445)
(0.0126375681496 0.121200228363 0.0266563450847)
(0.016290992293 0.117930407775 0.02711953323)
(0.0188176035982 0.113499066137 0.0274816427668)
(0.0202382786341 0.108095603633 0.0276085013297)
(0.0205144974078 0.101812484982 0.0274906833692)
(0.0199229462146 0.0950996516205 0.0267892758985)
(0.0194170010579 0.0882138007844 0.025595365688)
(0.0193430878637 0.0811147129448 0.0240473749513)
(0.0194084600965 0.0729476492756 0.0226725315934)
(0.0197412337403 0.0638171868425 0.0207582862288)
(0.0200078890431 0.0533824244605 0.019008548108)
(0.0190611512211 0.0418850137082 0.0172161533769)
(0.0167621741244 0.0309387974296 0.015234163464)
(0.0137540209184 0.0212741163364 0.0132089681853)
(0.0105257111688 0.0133565327508 0.0113626701306)
(0.00728042442503 0.00726887046769 0.00972143262573)
(0.00455347735577 0.00316418799798 0.00786385076378)
(0.0019325161534 0.000559356320899 0.0053530565268)
(0.0023494720802 0.101118894504 0.0332570907472)
(0.00628538351126 0.100592117994 0.0338384354425)
(0.00971199853654 0.0986957196319 0.0342867441368)
(0.0122819335755 0.0958293107619 0.034582231063)
(0.0137717893146 0.0920971845468 0.0346857900553)
(0.0143181354578 0.0876067142109 0.0344332221904)
(0.0139464133787 0.0823633376465 0.0337457336109)
(0.0130658490531 0.0766839082085 0.0325638710461)
(0.0120926689173 0.0707730284372 0.0307006269374)
(0.0111365467329 0.0642962102688 0.0285783944089)
(0.0104598746145 0.0572067623814 0.0260748474412)
(0.00998841092318 0.0495347158169 0.0233358077331)
(0.00945784052685 0.0411921100197 0.0204005902478)
(0.00858305563097 0.0324157511237 0.0174753079688)
(0.00722038992199 0.0240164763838 0.0145099655833)
(0.00562315617085 0.0164933130786 0.0117216184796)
(0.00408432361464 0.010231759849 0.00929476381039)
(0.00268203033485 0.00536445840281 0.00704481097339)
(0.00179229901317 0.00199884424336 0.00474685814046)
(0.000983278309174 -0.000186741133598 0.00200148250681)
(0.00182868620751 0.0744910280469 0.0394559207418)
(0.00482780133624 0.0743057555492 0.0399358987826)
(0.0072965756331 0.0728183701748 0.0401679188361)
(0.00898840197519 0.0704892495971 0.0402275356514)
(0.00978445413419 0.0675278409438 0.0399872722042)
(0.00971994513462 0.0640419376644 0.0393346000105)
(0.00887410597428 0.0600295313936 0.0382123577998)
(0.00758533713303 0.0557465684669 0.0363425235808)
(0.00613425361798 0.0511239575388 0.0340253744179)
(0.00470795939623 0.0461252152592 0.0312762293569)
(0.003465574095 0.0408348294928 0.0280766257216)
(0.00249463141765 0.0350823889348 0.0246106129125)
(0.00169298332941 0.0290399373093 0.020923816166)
(0.00092462872311 0.0228644899338 0.0171994370002)
(0.000196942388587 0.0169078167102 0.0136164820706)
(-0.000424235724556 0.0115845129343 0.0102662864678)
(-0.000788670031759 0.00708434415736 0.00721184574523)
(-0.000902595429244 0.00353343911788 0.00459598599684)
(-0.000450325157374 0.00106440747529 0.00211230379516)
(0.000193043416486 -0.000573687935911 -0.000638595965974)
(0.00133661836887 0.0454682092975 0.0436661060129)
(0.00356785056632 0.045845773193 0.0439210160649)
(0.00538417886756 0.0449666078624 0.0438341099586)
(0.00660185091553 0.043507446616 0.0435924349476)
(0.00697058386557 0.0416376688118 0.0429964140086)
(0.00650645773458 0.0393747143189 0.0419731181687)
(0.00537343946769 0.0368496899578 0.0404679615174)
(0.00382785452187 0.0341633903406 0.0382597863091)
(0.00201609832785 0.0312378366872 0.0356066694573)
(0.000263886187189 0.0281597726735 0.0323250446887)
(-0.00127521621401 0.0248239671725 0.0286842746213)
(-0.00255940501516 0.0213403771472 0.0246371611939)
(-0.00351897783409 0.0176441904191 0.0204906231266)
(-0.00421784025805 0.0139617445775 0.0162456003436)
(-0.00457399829129 0.0104131809793 0.0121370477839)
(-0.0045541508285 0.00719313143281 0.00830005422773)
(-0.00414049581277 0.00442406625337 0.00491896547359)
(-0.00332800764191 0.00220146439062 0.00213327095832)
(-0.00194691716203 0.000698174621921 -0.000185673256587)
(-0.000365671535215 -0.000554246182359 -0.00249163650221)
(0.000822631823669 0.0154415772109 0.0456770346993)
(0.00251334441903 0.015809377592 0.0454144606466)
(0.00418607979999 0.0155776333782 0.0450004841881)
(0.00522086184261 0.0151214322298 0.0445243184412)
(0.00535876500317 0.0145121222507 0.0438257088007)
(0.00470065646763 0.0137522470063 0.0426653750905)
(0.0034048912255 0.0129073931211 0.0409206365094)
(0.00161088610509 0.0119954841048 0.0386266657384)
(-0.000395922547033 0.0109917509065 0.0356623056848)
(-0.00240492714021 0.00994479783714 0.0321350683681)
(-0.00422386910083 0.0087981901662 0.0281189179198)
(-0.0056900872823 0.00759829825423 0.0237153889968)
(-0.0067522936933 0.00635032544135 0.0190343938358)
(-0.00736989888137 0.00510522206069 0.0143258699748)
(-0.00752349076984 0.00392041520935 0.00977685099288)
(-0.00716393970409 0.00281831919922 0.00562554776363)
(-0.00628698138044 0.00186946642785 0.00205672603533)
(-0.0049228486959 0.00108365761061 -0.00068605614839)
(-0.00314953752764 0.000521477769816 -0.00255555147907)
(-0.000937790868664 -7.93022338208e-05 -0.00363603404419)
(0.0144020749709 0.0132981029794 -0.120197380119)
(0.0421072893829 0.0137073434783 -0.118423437358)
(0.0691042157723 0.0136493713272 -0.114471291675)
(0.0941029355844 0.0136215609547 -0.108820912448)
(0.116279677235 0.0135466331137 -0.101586700515)
(0.134882255159 0.0134622814068 -0.0929465874597)
(0.14925289079 0.0134475080997 -0.0831224837637)
(0.159002114721 0.0133503342242 -0.0723792514694)
(0.164134665965 0.0130540488235 -0.0608910086616)
(0.164965732747 0.0124413887856 -0.0488404727086)
(0.161831592514 0.0115276657822 -0.0366296896197)
(0.155167429863 0.0104441441663 -0.0246260473941)
(0.145348241108 0.00925820489076 -0.0132227215882)
(0.133207080488 0.00831447467385 -0.00240398448664)
(0.118715735032 0.00702940230265 0.00834340757176)
(0.101367592979 0.00591729184472 0.0173518688555)
(0.081596731579 0.00508395236991 0.0250474189302)
(0.0596699619207 0.00445503616848 0.0310698735424)
(0.0361845931188 0.00395694785827 0.0351991945871)
(0.0123056131626 0.00364027069862 0.0371628800208)
(0.0149797625033 0.0389831826398 -0.118890656793)
(0.0427083086932 0.0392837024018 -0.118324106996)
(0.0693806750007 0.0389560869615 -0.114861050524)
(0.0944969037773 0.0386513310078 -0.109232215822)
(0.116680962188 0.0382452314444 -0.101835943838)
(0.135290970392 0.0379235348335 -0.0929960059867)
(0.149621122918 0.0378907798393 -0.0829576205115)
(0.159175206996 0.0377779102447 -0.0719247040771)
(0.163967841923 0.0369580495825 -0.0600211434389)
(0.16433689273 0.0351865592595 -0.0476074953277)
(0.160846482303 0.0325848833807 -0.0349755850029)
(0.153956288222 0.0293706031119 -0.022514861652)
(0.144266890508 0.0257042290919 -0.0105939758746)
(0.132025019524 0.022050228456 0.000292741702771)
(0.117217129211 0.0189570897293 0.0100524009412)
(0.100147827669 0.0162134978085 0.0191965210068)
(0.0808842433128 0.0141574528916 0.0270133919823)
(0.0594398630494 0.0127202065287 0.033009906544)
(0.036718311683 0.0115493583696 0.036822432662)
(0.012845966186 0.0107586151553 0.0382001113597)
(0.014959034349 0.0640801215327 -0.11586291065)
(0.0425110600651 0.0640051868188 -0.115814129745)
(0.0690885239235 0.0632419578046 -0.112653283205)
(0.0942377164897 0.0622183505604 -0.106982772029)
(0.116443286218 0.0611635051237 -0.0994475980762)
(0.13515075303 0.060456243259 -0.0904808125405)
(0.149501572031 0.0605069610118 -0.0802082308714)
(0.158562145475 0.0608543875503 -0.0689459099148)
(0.162333415666 0.059768255358 -0.056759217714)
(0.161725697894 0.0567800799448 -0.0440145487173)
(0.157411295483 0.0524825693539 -0.0310333974832)
(0.149883876121 0.047062502084 -0.0184212340374)
(0.139649626927 0.0408663435433 -0.0068785485277)
(0.127881835738 0.0344317488925 0.00312551811254)
(0.114018382838 0.0288919837165 0.0132518962456)
(0.0975112840396 0.0245733343469 0.0220170941238)
(0.0789575186985 0.0215392772619 0.0296253077441)
(0.0580641552376 0.0193473746706 0.0354708204618)
(0.0358927982827 0.0177586169028 0.0389912805068)
(0.0126344360791 0.0168245256739 0.039977348313)
(0.0148845405422 0.0879171638269 -0.111386936895)
(0.0421963357685 0.0876415328011 -0.111432252632)
(0.0685654191861 0.0862027534572 -0.108258203048)
(0.0937072619681 0.0842979818538 -0.102485245766)
(0.116049964053 0.0825085187957 -0.0948271159736)
(0.135114275809 0.0814107132101 -0.0857210060566)
(0.149813905827 0.0819635048527 -0.0750871899488)
(0.15819152459 0.0843109283658 -0.063449028726)
(0.160129370749 0.0841479885455 -0.050636088751)
(0.157741938233 0.0804848842468 -0.037328443373)
(0.152174324729 0.0749016984475 -0.0238552507744)
(0.143628712468 0.0679193066437 -0.0104944247251)
(0.133025271014 0.0588296795271 0.000319811437816)
(0.121281833363 0.0488067850848 0.00838940372846)
(0.108176747743 0.0372760069488 0.017290647231)
(0.0933079830521 0.0309578634171 0.0254683415003)
(0.0760629542411 0.026924124793 0.0327346544555)
(0.0560330924968 0.0240256570483 0.0382768432478)
(0.0346068493184 0.0220497649334 0.0416429059075)
(0.0122254178411 0.0210787383586 0.0424363691801)
(0.0146306746914 0.109925679043 -0.105395306184)
(0.041541010322 0.109165562866 -0.105309931603)
(0.0675851421304 0.106876089405 -0.102028190007)
(0.0927251036643 0.103893421319 -0.0961660756522)
(0.115412873175 0.100997413477 -0.0883983146731)
(0.135521014149 0.0988207473743 -0.0789529050593)
(0.152126534915 0.0988314585032 -0.0671798677797)
(0.16014307204 0.106117920513 -0.0540809460778)
(0.158619323791 0.106181163682 -0.0391256527625)
(0.153118283094 0.102308357691 -0.0248580928449)
(0.145749263181 0.0954154855388 -0.00919893509185)
(0.134933441449 0.0860098805692 0.00582404231612)
(0.122323276304 0.0739627233773 0.0171593729019)
(0.108328025732 0.0485492080354 0.0181575189995)
(0.0975902953074 0.0395464110094 0.023470637623)
(0.0878754452665 0.0343062034022 0.0297492081443)
(0.0724507742696 0.0298255268807 0.036239956501)
(0.0534932165382 0.02635711596 0.0412501853578)
(0.0330726660764 0.0240426807926 0.0441500841255)
(0.011679973475 0.0229678038627 0.0448963055676)
(0.0141880595556 0.129548992072 -0.097781794075)
(0.0403858380065 0.128334961325 -0.0975327130997)
(0.0658710988173 0.125208726572 -0.0941803423605)
(0.0907383366247 0.121112663947 -0.0883700522091)
(0.113463784998 0.117104932787 -0.0807083471812)
(0.134352257172 0.114118538662 -0.0712933509267)
(0.156368665578 0.116404749457 -0.0588899789456)
(0.163250507382 0.138606547678 -0.0407799449159)
(0.155391535216 0.143739490466 -0.0228121304004)
(0.146571498468 0.142872947536 -0.00364372288703)
(0.136044564733 0.135090512693 0.0153688686027)
(0.123114409966 0.120309810108 0.0349227486088)
(0.0996993336882 0.104446289148 0.0475840947095)
(0.0894413871011 0.0591349522869 0.0238200153263)
(0.094487806299 0.0499857684118 0.0301564859058)
(0.0838036112382 0.0376189415947 0.0340315820613)
(0.0685144759247 0.0306083562058 0.0392984414304)
(0.0506289813814 0.0263875627149 0.043747114079)
(0.0313746881488 0.0238450081895 0.0462418601474)
(0.0111091427471 0.0226321533453 0.0468463635738)
(0.0135524317446 0.146467879909 -0.0885125855941)
(0.0386474050593 0.144842210913 -0.0881337242526)
(0.0632507461054 0.140714444324 -0.0847816300413)
(0.0877348609717 0.134756470651 -0.0790809842127)
(0.11096919447 0.127064207883 -0.0714451206913)
(0.135789000217 0.117948651813 -0.0619490384736)
(0.175811066936 0.0974546570366 -0.0432104713559)
(0.193890183092 0.114357445838 0.00439550796175)
(0.161106692818 0.11212088087 0.0368397066074)
(0.143459374121 0.110053069536 0.0667301764897)
(0.124943690849 0.104537774495 0.0897898785478)
(0.108950734449 0.0915474381894 0.105009246603)
(0.0530496966944 0.0779723246686 0.108963240655)
(0.0507965701662 0.0463348981756 0.0465450909997)
(0.0760392787036 0.037954078004 0.0416424175379)
(0.0690890229215 0.0302593912111 0.038904805283)
(0.0621366629599 0.0269532085672 0.0420627400337)
(0.0474290131029 0.0238863035246 0.045315217486)
(0.0296974458393 0.0216286377107 0.0472966187786)
(0.0105925647375 0.0204009539376 0.0476773778994)
(0.0126850189139 0.160488118468 -0.0777866757029)
(0.0360120281258 0.158627065887 -0.077342314332)
(0.0585913119481 0.153766083583 -0.0742661582504)
(0.0799077665265 0.146476875766 -0.0693708632183)
(0.0988007653678 0.136511769833 -0.0640304314997)
(0.102774454118 0.124344299452 -0.0597782178503)
(0.0834940992438 0.095314397783 -0.0612801888029)
(0.06422230904 0.0268232172638 0.0467911803827)
(0.0802569730101 0.0225464624424 0.0429300417114)
(0.0736722853434 0.02349093339 0.0391734474622)
(0.0628705910079 0.0230549380669 0.0421625699629)
(0.0460352829918 0.0204905632547 0.0453596927893)
(0.0284340201583 0.018288518595 0.0470048647885)
(0.0101178112346 0.0169544125586 0.0472232857661)
(0.0116106314242 0.171256040542 -0.0656017553669)
(0.0329341285388 0.169151814802 -0.0650127592702)
(0.0534072317825 0.163979138047 -0.0622563095514)
(0.0728111286081 0.156395500344 -0.0578203342965)
(0.0889717961722 0.146779078506 -0.0530235181907)
(0.0933161157795 0.135092820317 -0.0529602163397)
(0.0704002019928 0.125232581909 -0.0521029972252)
(0.0632120198596 0.0310612869873 0.042661159435)
(0.0776392638095 0.0277234080749 0.0410587571008)
(0.0709988505335 0.0245654514355 0.0381535914574)
(0.0600801939741 0.0211477239512 0.0413573334253)
(0.0436480419009 0.0175310194809 0.0439197155105)
(0.0268561246968 0.014805747474 0.0452044087661)
(0.00957605922512 0.013154145435 0.0452673462033)
(0.0103251621467 0.178474526789 -0.0521726265809)
(0.0292901859829 0.176213169499 -0.0515781157427)
(0.0476673223609 0.170713292059 -0.0489985253058)
(0.0648672400244 0.162545723464 -0.0448589086056)
(0.0786710903312 0.152035531975 -0.0399058525323)
(0.0827850353057 0.139633718331 -0.0398667544596)
(0.0636857067422 0.129954825534 -0.0352945934516)
(0.0610891515469 0.031181066922 0.0390960231314)
(0.0755552700697 0.0275384275465 0.038910616279)
(0.0679235672641 0.0240526021021 0.035856514348)
(0.0565659998712 0.0193443970083 0.0390476254385)
(0.0405738293634 0.0149612818705 0.0411418339965)
(0.0248792979596 0.0115725768192 0.0420768060411)
(0.008882023013 0.00944959978038 0.0419432732149)
(0.00892119812442 0.181886470014 -0.0377379366097)
(0.0252899137243 0.1797283366 -0.0372210272767)
(0.0409641015883 0.173980124482 -0.0350788960704)
(0.0554750215944 0.164964121732 -0.0316518890147)
(0.0664110629737 0.152958832821 -0.0274039952166)
(0.070763082538 0.137137132172 -0.026629312231)
(0.0548385609671 0.123847860303 -0.0165473330207)
(0.0656307138979 0.0178695200932 0.0324594300468)
(0.0709782239708 0.0257573111002 0.0339139655427)
(0.0637540394486 0.023505646218 0.0327551954433)
(0.0517798944606 0.0179083962688 0.0355601714472)
(0.0367817930319 0.01273768766 0.0373178499119)
(0.0223055815465 0.0086916525785 0.0378017092988)
(0.00800429146475 0.00610870533071 0.037417032582)
(0.00747279794111 0.181285314224 -0.0226518325801)
(0.0210063307838 0.179357572044 -0.0222472461864)
(0.0335169438646 0.174157164113 -0.020768865129)
(0.0444913278399 0.165996385796 -0.018389505495)
(0.0500049553909 0.155085139829 -0.0164512179789)
(0.050814364814 0.141731193822 -0.017963469634)
(0.0198983055846 0.128469778424 -0.0209142256522)
(0.0133307414447 0.103207904001 -0.0706368327817)
(0.043251353392 0.103289057069 -0.0710373466814)
(0.048513314405 0.106323419816 -0.0734176975818)
(0.0592400171293 0.107223701124 -0.0711525471241)
(0.0757208905807 0.107418542666 -0.062849934717)
(0.126759447011 0.104169424898 -0.045073514919)
(0.120240375083 0.0377895158865 0.00949065566767)
(0.0815034951849 0.033443255809 0.023002849056)
(0.0621707693518 0.0267326756122 0.0278074212905)
(0.0467600917689 0.0181958058866 0.0311555429229)
(0.032248203907 0.0112348787602 0.0326006407701)
(0.0192907823794 0.00636566429897 0.0326305326928)
(0.00693803706279 0.00336798585815 0.0319276131291)
(0.00616075805535 0.176193582583 -0.00718584036233)
(0.0172609457164 0.174703370074 -0.00674649642123)
(0.027596779973 0.170419060833 -0.00555355613947)
(0.0366481061977 0.163810631449 -0.00374201458965)
(0.0424556963898 0.155106020494 -0.0017858500034)
(0.0454443048207 0.147413737707 -0.00154097504774)
(0.0406908310908 0.140812106536 -0.00273130067433)
(0.0376337456424 0.156956244961 -0.0132212347723)
(0.0401910035955 0.154565137922 -0.0152119986148)
(0.0439071372322 0.151431473227 -0.0144212838928)
(0.0514486410383 0.14503911312 -0.00899908729615)
(0.0605012719046 0.13365883061 -0.000845691679096)
(0.0743334158077 0.117082245267 0.00699157893583)
(0.0752762082268 0.0672385542514 0.018726261411)
(0.0597189383443 0.0444975544075 0.0236706573104)
(0.0482560290307 0.0296167936051 0.0259169974324)
(0.0368863306397 0.0181083992658 0.0273003224431)
(0.0256648481208 0.0098907692509 0.027574767478)
(0.0155335290395 0.0044577614151 0.0269912823294)
(0.00572091299848 0.00117871728321 0.0258640665846)
(0.00506673308525 0.166255151875 0.00818110501349)
(0.0139807575133 0.165021345978 0.00869646510082)
(0.0219791954217 0.16145954372 0.00956061457531)
(0.0286573871306 0.155884589669 0.0108867723279)
(0.0329308710687 0.148393582342 0.0123249175108)
(0.0350070333747 0.140430221611 0.0127380096613)
(0.0334903113537 0.132220392301 0.0129372957164)
(0.0323985460506 0.128793001503 0.0104163016398)
(0.0341627176457 0.124113822881 0.00932954726869)
(0.0370536462365 0.118337931742 0.0097692023579)
(0.041383775897 0.110290325192 0.0114015099998)
(0.0464310645376 0.098075515792 0.0135918797842)
(0.0522077472896 0.0825037967968 0.0164680774711)
(0.0520281118542 0.0578181814226 0.020493824207)
(0.0440167919175 0.0410399778361 0.0225802377305)
(0.0355684993292 0.0273081503614 0.0231865181361)
(0.0272064218901 0.0162061355979 0.0230489644939)
(0.0189755500967 0.00818295263798 0.0222251940805)
(0.0115930477827 0.00281363765043 0.0211091902031)
(0.00441080643034 -0.000532938717912 0.0196242863077)
(0.00401393633097 0.151208633177 0.0227853584947)
(0.0110754663183 0.150159756283 0.0234527669198)
(0.0173394694043 0.14713978397 0.0242806982197)
(0.0223607225633 0.142635352883 0.0254427922129)
(0.0257704364647 0.136798629756 0.0264319452643)
(0.0276952768229 0.13044786496 0.0269960609119)
(0.0275116971614 0.123678240289 0.0274831043353)
(0.0268941694239 0.118525548493 0.0263180720334)
(0.0273124314528 0.112146428081 0.0257158364705)
(0.0279577727323 0.104495311784 0.0255500594606)
(0.0290823555851 0.0950387916001 0.024831901347)
(0.0308767960301 0.0833586669877 0.0243500662384)
(0.032799059978 0.0692803792621 0.0236206610082)
(0.0321396846453 0.0518487874932 0.0231095584551)
(0.0280191589902 0.036724105261 0.022064071205)
(0.0228913017727 0.0241024881373 0.0205026977338)
(0.0176718533372 0.0139603787857 0.0189243172595)
(0.0124215295403 0.00650005684834 0.0171992540257)
(0.00769854894661 0.00147460741172 0.015467125286)
(0.0031012915176 -0.00174565234742 0.0135146629849)
(0.00317283664067 0.131191831674 0.0361001556821)
(0.00867680712061 0.130352138921 0.0368083419124)
(0.0133090343415 0.127730144956 0.0377031651228)
(0.0169304689345 0.123915561729 0.0385242162709)
(0.019348694062 0.119078628046 0.0389005009199)
(0.02050211392 0.113355995571 0.0390159254047)
(0.0202238806576 0.106784268847 0.0388825260565)
(0.0193091679828 0.10037076101 0.0378573164633)
(0.0184274670804 0.0930990471944 0.0367342386255)
(0.0179657508082 0.0850632246761 0.0346801902314)
(0.0179345601262 0.0761329388957 0.0322779791324)
(0.0181138275022 0.0661229476249 0.0296704553777)
(0.018310848775 0.0547519928129 0.0268852668185)
(0.0173157243109 0.042128508413 0.023985388126)
(0.014987387415 0.0302126108315 0.0209750958412)
(0.0121418343709 0.0198568812456 0.0179070489563)
(0.00929857280684 0.0113545172796 0.0151176661457)
(0.00651259432124 0.00484698156106 0.01266020218)
(0.00415118460386 0.000436836251433 0.0103075440073)
(0.00189359813774 -0.00239724353785 0.00774968916937)
(0.00247127675615 0.106784532115 0.0474786240707)
(0.00656714278424 0.106218675318 0.0482076022106)
(0.009999975048 0.104077867183 0.0488548286623)
(0.0125295430147 0.100919598287 0.0492407426702)
(0.0138835685274 0.0968265903571 0.0492618534006)
(0.014097872879 0.0919181648945 0.0488399716449)
(0.0133218588003 0.0862460065435 0.0479284234988)
(0.0119006176589 0.0802429147232 0.0461985980997)
(0.0104619093463 0.0737925142691 0.0436880595666)
(0.00921717530841 0.0669726587335 0.0406073161867)
(0.00819461242158 0.0593025902552 0.0369856853201)
(0.00746797886794 0.0510506506572 0.0328699269328)
(0.00686035887904 0.0420124619084 0.0285116469042)
(0.00600562431756 0.0325148074871 0.0240721422331)
(0.00477411088397 0.0234695288644 0.019715256723)
(0.00349558552972 0.0154243935342 0.0155859205431)
(0.00240277337353 0.0086735300489 0.0118871379629)
(0.00152734169039 0.00340772749979 0.00865857109224)
(0.00115275049879 -0.000199303282527 0.0057099595356)
(0.000844772907597 -0.00260213853074 0.00280833596851)
(0.00189066823206 0.0786580883722 0.0564424101748)
(0.00497245570247 0.0784771910784 0.0570713867138)
(0.0073638901676 0.0769080671712 0.0573065247058)
(0.00893853348497 0.0744294171857 0.0573165076479)
(0.00948452577959 0.0711445210779 0.0569431875432)
(0.00905331597981 0.0672938214707 0.0559544295666)
(0.00772917962425 0.0629447544188 0.0542571162072)
(0.00595005009179 0.0582262116234 0.0517306096199)
(0.00408452607804 0.0533117576599 0.0483884394214)
(0.00222552193961 0.0479344932014 0.0443651489575)
(0.000645198818112 0.0422336194472 0.0396692667263)
(-0.000563934937305 0.0360996795409 0.0346069870931)
(-0.0015186931498 0.0296395795674 0.0291701020443)
(-0.00222193919389 0.0230170097192 0.0236959902015)
(-0.00271730522266 0.0166502727404 0.0183530356321)
(-0.00301437595099 0.0109160503163 0.0133627786478)
(-0.00288945163977 0.006019585962 0.00884411882419)
(-0.00232765289426 0.00218934638954 0.00500925281036)
(-0.00127202301295 -0.000537384308719 0.00179009834339)
(-4.0049533558e-05 -0.00238615051687 -0.00118384569918)
(0.00133124034733 0.0479758788329 0.0625451607712)
(0.00356189014482 0.0484674862421 0.0628136874955)
(0.00528371891612 0.0475473032536 0.0627361255381)
(0.00630254923422 0.0459513610241 0.0623824932168)
(0.00634646923637 0.0439062585003 0.061560903828)
(0.00552676092742 0.0414368386712 0.0600660475252)
(0.00390079278741 0.0386505714077 0.057878861688)
(0.0018387477483 0.0357573505249 0.0547417003389)
(-0.000406711934171 0.0325992729749 0.0507966076046)
(-0.00259390814225 0.0292637366252 0.0461362999988)
(-0.00449065388256 0.0257287593059 0.0407747082654)
(-0.00601851019194 0.0219965567123 0.0349582604714)
(-0.007080541161 0.0180719252036 0.0287800052907)
(-0.00770103450116 0.0141605783863 0.0225691230281)
(-0.00785270469041 0.0103454629834 0.016550448886)
(-0.00749259461191 0.00687315899382 0.0109075840313)
(-0.00648951024804 0.00388234226509 0.00599509072101)
(-0.00500397449532 0.0014650935222 0.00181930699217)
(-0.0029815727491 -0.00028953179711 -0.00139508376321)
(-0.000652548418681 -0.00166859717755 -0.00398825744044)
(0.000743176922338 0.0162943110253 0.0654992949188)
(0.0023447398348 0.0167883247096 0.0653422834308)
(0.00388853904104 0.0165604785054 0.064913468748)
(0.00476412367562 0.0160496273504 0.0643006159041)
(0.00461845634624 0.0153932963937 0.0632599961955)
(0.00352117033712 0.0145713285322 0.0616093516357)
(0.00174539186464 0.0136284269699 0.0590889195593)
(-0.000542239323951 0.0126470321961 0.0557119538155)
(-0.00305207638634 0.0115636224742 0.0514581231367)
(-0.00548872140682 0.0104230863295 0.0463682280241)
(-0.00765369689709 0.00921300936329 0.0406055994947)
(-0.0093875964047 0.00794886854443 0.0342580029735)
(-0.0105718193743 0.0066113244313 0.0276041639908)
(-0.01112349092 0.00529105470469 0.0207901952851)
(-0.011040550256 0.00400623870215 0.0142041809323)
(-0.0102851996618 0.00281293133879 0.00814472034122)
(-0.00883363356102 0.00178192333375 0.0028860472741)
(-0.00680483758143 0.000881577322849 -0.00125745603239)
(-0.0042730423479 0.000242868665965 -0.00414881719374)
(-0.00127777413557 -0.000438905380569 -0.00579119216674)
(0.0151951863698 0.0138806213081 -0.157429069275)
(0.0443227783908 0.0143275347747 -0.155142566447)
(0.0727117368693 0.0142734101015 -0.150055023713)
(0.0989911159719 0.0142752805977 -0.142733941264)
(0.122309826699 0.0142229582636 -0.133335140528)
(0.141889945975 0.0141485527968 -0.12211538207)
(0.157038210864 0.0141629534323 -0.109422754508)
(0.167416286938 0.0141208007921 -0.0955835219195)
(0.173095750087 0.0138880634327 -0.0806617324511)
(0.174177057542 0.0133181276095 -0.0650209261908)
(0.171041161058 0.0124963669339 -0.0491918218031)
(0.164069335487 0.0114772070922 -0.0334527356571)
(0.153927765816 0.0104136330298 -0.0186550467533)
(0.141492704134 0.00917761981841 -0.00345598893615)
(0.126221436066 0.00756194390301 0.0102374399345)
(0.107788647996 0.00640098653141 0.0223082444194)
(0.0868492418963 0.00552505656599 0.0325472029798)
(0.0635386678883 0.00488442064656 0.0405522858479)
(0.038530699904 0.0043520858795 0.046061963955)
(0.0131215236498 0.00401248244778 0.0486930328465)
(0.0158313552688 0.0406523708658 -0.15583572725)
(0.044951914103 0.0409178413627 -0.15461920123)
(0.0730314166195 0.0405785101221 -0.149967056708)
(0.0994282213698 0.040346446756 -0.142636074509)
(0.122708049347 0.0400164979599 -0.133050837391)
(0.142274610685 0.0397633766769 -0.121624734899)
(0.157442177617 0.0398304917761 -0.108666517522)
(0.1677095269 0.0398704900533 -0.0944754882124)
(0.172984353975 0.0392233882819 -0.0792331553189)
(0.17366102362 0.0375963194549 -0.0632520550863)
(0.170227963283 0.0352057506947 -0.0468545135892)
(0.163125193044 0.0320847960133 -0.0307318669434)
(0.152779645645 0.0282615056319 -0.0147429655108)
(0.139817276557 0.0241811926544 -0.000991881236544)
(0.124419450134 0.0207192004827 0.0125003355779)
(0.106535211634 0.0177463910594 0.0247148259093)
(0.0861604037656 0.0155635117267 0.0350015013498)
(0.0633463284309 0.0140608723364 0.0429497540667)
(0.0391399594367 0.0127952119588 0.0482053312283)
(0.0137444329241 0.0119183689747 0.0502929223152)
(0.0158238532702 0.06684859384 -0.152091309447)
(0.0447655521532 0.0667754883555 -0.151320615076)
(0.0727868414858 0.0660477699196 -0.146903090776)
(0.0992075352993 0.0651055385895 -0.139495470801)
(0.122490491468 0.0641624525397 -0.129736052957)
(0.142167008388 0.0635955330809 -0.118128049293)
(0.157359759965 0.0639118509295 -0.104941861942)
(0.16711277405 0.0644476310131 -0.0906666914019)
(0.17147684899 0.0636162744875 -0.0751866994992)
(0.171182709477 0.0609285008698 -0.0587690154283)
(0.166859089661 0.0568964135723 -0.0421954381926)
(0.158767586012 0.0516629267477 -0.0258466500946)
(0.147740267665 0.0447494740189 -0.0112754818076)
(0.135518927503 0.0372134321893 0.00281624027468)
(0.121089336396 0.0316463632851 0.0163325734031)
(0.10366852276 0.0269400239367 0.0282567590093)
(0.0841065236284 0.0236464719562 0.0384324712999)
(0.0619221219009 0.0212740909298 0.046259087074)
(0.0382486920891 0.0195994634603 0.0511610958011)
(0.0135227257964 0.0185469441125 0.0528935972528)
(0.015776824508 0.0918420286553 -0.146446657308)
(0.0445060782892 0.0915760298874 -0.145755302807)
(0.072345795036 0.090157785926 -0.141293384222)
(0.0987540561854 0.0883255899986 -0.133748037463)
(0.122188528704 0.0866823763617 -0.123845607555)
(0.142310176241 0.0858345069079 -0.112057695396)
(0.157868625481 0.0869648798122 -0.0984554166373)
(0.166979393628 0.0898336784835 -0.0840356666581)
(0.169523956776 0.0904057790933 -0.0683514703196)
(0.16750907335 0.0872038662121 -0.0516152631921)
(0.161944426234 0.0823561026295 -0.034478361718)
(0.152376242734 0.0754187788689 -0.0180064651733)
(0.140127087318 0.0657762273906 -0.00666418716622)
(0.128227357457 0.0519272587882 0.00720619904383)
(0.115115107829 0.0410091771944 0.0210934852674)
(0.0991699850051 0.0339064002513 0.0326381642862)
(0.0809884238929 0.029464953721 0.0425336084574)
(0.0597850295035 0.026230375576 0.0501541153576)
(0.036910016507 0.0240509388585 0.0548110183823)
(0.0130942033817 0.023033346627 0.0564049799994)
(0.0155450022702 0.115036907818 -0.13881710458)
(0.0439250560657 0.114255255614 -0.1379899752)
(0.0714645664814 0.111947371879 -0.13340199722)
(0.0979036583495 0.109007877828 -0.125740473166)
(0.121783990544 0.106241343375 -0.115667051856)
(0.143256733996 0.104292366509 -0.103492287872)
(0.160949337772 0.105272781321 -0.0887079384609)
(0.169826864379 0.113854463167 -0.0736366545536)
(0.168966989986 0.115576719577 -0.0571625910514)
(0.163772574791 0.113409330043 -0.0391570703855)
(0.15600308017 0.107492035675 -0.0207443298659)
(0.143550018001 0.0982244571678 -0.00471004135619)
(0.126738119374 0.0860227555578 0.0104745412383)
(0.113488768634 0.0534881564101 0.0124448130896)
(0.104682489359 0.0444698275354 0.0273084276226)
(0.0930324316977 0.0373560103719 0.0375412810577)
(0.0770100871614 0.032283227586 0.0469538537848)
(0.0569536511462 0.028423619737 0.0540487167097)
(0.0352521598882 0.0258120228975 0.0583363398535)
(0.0125365275713 0.0246896433895 0.0598450842751)
(0.0151199806114 0.135885791962 -0.129070681829)
(0.0428486307058 0.134629458627 -0.128064701761)
(0.0698437696263 0.131426713266 -0.123385543243)
(0.0960160314065 0.127355191979 -0.115703311732)
(0.119956248836 0.123464175377 -0.105539315452)
(0.14270338145 0.120786408173 -0.0933593773728)
(0.166645646922 0.125045848815 -0.0774767901397)
(0.174996003844 0.147886922295 -0.0621917350375)
(0.168362007593 0.15394377273 -0.0429193643683)
(0.159445552088 0.152836852768 -0.0234145950329)
(0.147444840121 0.148448559869 -0.00461414053157)
(0.132663387313 0.138329037524 0.0105343627649)
(0.101738757005 0.12038885909 0.0233936593576)
(0.0897329821331 0.0680624317565 0.0211772892723)
(0.0999752751385 0.0537315828609 0.0344327289891)
(0.0875685083738 0.0397930636756 0.0420227005406)
(0.0726884688082 0.0326204027782 0.0506964160977)
(0.0538930829065 0.0279039666291 0.0572980937767)
(0.0334585999225 0.0250420344496 0.0611949691488)
(0.011935088604 0.023682389731 0.0625136416249)
(0.0145129384441 0.154014910282 -0.117134393974)
(0.0411908182343 0.152310114909 -0.115956843229)
(0.0673216302366 0.148013228847 -0.111258870243)
(0.0931486473582 0.141870409995 -0.103543117213)
(0.117699504185 0.133930232659 -0.0929998710553)
(0.145768559236 0.123880650975 -0.0799885590855)
(0.188789284907 0.110510623304 -0.0584957600368)
(0.21015726747 0.114044263916 -0.0378415689901)
(0.173630853286 0.115831570832 -0.0182470507658)
(0.157641976494 0.115106311679 0.00255974857827)
(0.143164728842 0.114011253679 0.0246816320503)
(0.120957231885 0.110846698276 0.0423480975951)
(0.0477705046739 0.0993460104644 0.0512629177633)
(0.0443973144038 0.0406398100203 0.0301109594012)
(0.0773676525535 0.0389858700462 0.037898651139)
(0.0729125486117 0.0317413534217 0.0443826991035)
(0.0662083633728 0.0279421980622 0.0534279517361)
(0.0502983783053 0.0244567693097 0.0593451237074)
(0.0315595958369 0.0218931008184 0.0626560108817)
(0.0113316461396 0.0205035268285 0.0637481243061)
(0.0136610684103 0.169164132091 -0.103192391696)
(0.0385425958331 0.167218824376 -0.1018492133)
(0.0624264129289 0.16210236204 -0.0973787332984)
(0.0847685009243 0.154612258814 -0.0900151491702)
(0.103832580797 0.144497806358 -0.0799996180163)
(0.116340159281 0.130017640067 -0.0708440191773)
(0.0826605050238 0.109804415424 -0.0283334729669)
(0.059957747303 0.0114466601535 -0.00776047609278)
(0.0920011424715 0.0221383048967 0.0362937006111)
(0.0780487138384 0.0239781117668 0.0453397964688)
(0.0665736838977 0.0227288382224 0.0535776218277)
(0.0489096132761 0.0199342605181 0.0592070915222)
(0.0302417562763 0.0174511245269 0.0622662123126)
(0.0108385139192 0.0159751258345 0.0631409260168)
(0.012584432643 0.181000067783 -0.0872770966428)
(0.035433491778 0.178726341891 -0.0858681213986)
(0.0571766336494 0.173330965724 -0.0816012239994)
(0.0776523809595 0.165640089007 -0.0745766597479)
(0.0928730990999 0.156341277518 -0.0648874829359)
(0.108374690311 0.143671884301 -0.0568946447427)
(0.0694746627338 0.139384985449 -0.00673533949213)
(0.0609709035043 0.0286079765737 -0.014699889252)
(0.0909740604861 0.02666811589 0.0331964648994)
(0.0760028708189 0.023669988081 0.0437762007072)
(0.0638238026845 0.0199789899409 0.0521031031289)
(0.0463389063774 0.0159367113557 0.0573609853961)
(0.0285087310327 0.0128834230208 0.0598286935384)
(0.0102479002573 0.011053748666 0.0604608581262)
(0.0112567468038 0.189086282048 -0.0696579104507)
(0.0317088809327 0.186577260326 -0.0682947363966)
(0.051364428911 0.180758561035 -0.0643055857689)
(0.0697227823888 0.172361306595 -0.0577280649944)
(0.0828666871633 0.161981693598 -0.0482217081082)
(0.0982998845018 0.150136543462 -0.0397620773301)
(0.0655307590945 0.142837962109 0.0136593722961)
(0.0596583302581 0.0313659917927 -0.0152110893046)
(0.0886815749777 0.0266842844791 0.0322530010724)
(0.0724907016633 0.0226787703018 0.0417179283133)
(0.0600573898359 0.0174093269937 0.0493118389906)
(0.0429493216936 0.0124745545787 0.0537344564939)
(0.0263017382523 0.00869114900355 0.0556222414357)
(0.00947582029841 0.00636797448761 0.0559664537654)
(0.00974918228522 0.193149090249 -0.0506749025913)
(0.0274580828788 0.190674776752 -0.0495185855103)
(0.044300497356 0.184375656617 -0.0461190176219)
(0.0599098430231 0.174718417971 -0.0404311637339)
(0.0706466229413 0.161916715011 -0.0318990469183)
(0.0862627836196 0.14589878794 -0.0227569567169)
(0.0560593339513 0.118051277715 0.0387868684814)
(0.063663129749 0.0245883020052 -0.0097321758709)
(0.0820179431636 0.0241351057065 0.0316317265493)
(0.0674985401422 0.0215112154061 0.0393798577277)
(0.0547514395902 0.0152309472026 0.0456122865661)
(0.0386856026742 0.00948325406979 0.0488110036987)
(0.0234629116853 0.00500357578048 0.0499001080375)
(0.00850599331646 0.00219407386372 0.0498225131945)
(0.00816173657042 0.192948997742 -0.0307666019837)
(0.0227762786217 0.190733462538 -0.0298856909181)
(0.0361040019823 0.184937410366 -0.0274817229719)
(0.0474122381468 0.176123261328 -0.0237533890763)
(0.0520437997817 0.164223164262 -0.0190244946259)
(0.052808854681 0.150143472852 -0.0160864693316)
(0.0165654886606 0.122838869513 -0.0154323517243)
(0.00487923895122 0.121157828653 -0.0276647253195)
(0.0436468397142 0.118505012882 -0.0189193055348)
(0.0477727150789 0.119212177236 -0.0202498530086)
(0.0603298455232 0.117926567898 -0.0186756770687)
(0.0796023481458 0.114689444948 -0.0145702729242)
(0.140087231871 0.105755684686 -0.00373203556133)
(0.132567573794 0.0467520642812 0.0156963002753)
(0.089095962411 0.0332847592992 0.0301835010653)
(0.0660684678311 0.0249216028253 0.0364598107291)
(0.0492679108145 0.0152000431871 0.0408623135749)
(0.0336882733884 0.00749164490987 0.0427268935858)
(0.020095021972 0.00212656563467 0.0429381726948)
(0.00730902032604 -0.00114942121044 0.0424084146455)
(0.00673398519961 0.187986349225 -0.0102818206782)
(0.0187643699899 0.186210346379 -0.00946418219935)
(0.0298459426933 0.181343117218 -0.00762816960011)
(0.0392880626808 0.174230847482 -0.00481442239712)
(0.0445717296115 0.165156488377 -0.001191557012)
(0.0462621273241 0.157673774812 0.00150386411175)
(0.0380314395607 0.150632896162 0.00396132422582)
(0.0350530127827 0.169918625295 -9.19747113746e-05)
(0.040046625735 0.166509675979 0.00193085599137)
(0.0453261270872 0.164250686201 0.00364912015545)
(0.0548061887037 0.157866283735 0.00842014005286)
(0.0643043609322 0.145787844463 0.0142710505126)
(0.0789243231456 0.127476310651 0.019911179488)
(0.0803071816847 0.0725195803593 0.0254208505403)
(0.0630320193744 0.045072171201 0.0313563656746)
(0.0499091758001 0.0280177118364 0.0340655738351)
(0.0379272426666 0.0150008956149 0.0356805377951)
(0.0262486631709 0.00583936861285 0.0359102652746)
(0.0158564897226 -7.60068662077e-05 0.0351992815169)
(0.00593654482031 -0.0036453980314 0.0341500300159)
(0.00550403029971 0.177723897134 0.0101464221595)
(0.0150975680419 0.176283214924 0.0109107182306)
(0.0237341936993 0.172189073802 0.012267353878)
(0.0307332878831 0.166015549925 0.0142123591256)
(0.034593271046 0.157942615289 0.0164827260085)
(0.0361330803616 0.149839629535 0.0183018333202)
(0.0336514493942 0.142174901648 0.0205777347315)
(0.0318596565299 0.141370620225 0.0206323122795)
(0.0340116793229 0.136767175058 0.0208545448205)
(0.037463728397 0.130626798003 0.0218029318799)
(0.0420351854603 0.120687961185 0.0231499811412)
(0.0471485585939 0.106048779901 0.0247310252473)
(0.0534316093221 0.0880432717554 0.0266225620236)
(0.053656719583 0.0600293166243 0.0285889517105)
(0.0449369657032 0.0405353142632 0.0302385292614)
(0.0357907677255 0.025205926857 0.0303551042758)
(0.0270985201065 0.0128829473092 0.0297815740483)
(0.0188080090277 0.0040173263744 0.0285405631307)
(0.0115118859741 -0.00178550679983 0.027175841104)
(0.0044747586555 -0.00536858220872 0.0255983908691)
(0.00435945326899 0.16192764366 0.0295519506498)
(0.0119972887218 0.160710483393 0.0305351138544)
(0.0186582879258 0.157354096008 0.0317170887094)
(0.0239051426999 0.152279668191 0.0330908080092)
(0.0271312422755 0.145804449408 0.0346130019122)
(0.0287527980069 0.139043598972 0.0359846690093)
(0.0280094130405 0.131974522906 0.0376465411954)
(0.0267362084545 0.126847338077 0.0377850398775)
(0.0266815589137 0.120370350659 0.0376133994427)
(0.0269961006984 0.111925380549 0.0366817976839)
(0.0282232096783 0.101291642334 0.0354581995116)
(0.0299694875163 0.0882167451682 0.0341166546024)
(0.0317572730362 0.0726148384991 0.0325224010454)
(0.0311116747684 0.0530092049332 0.0307441430399)
(0.0268371272249 0.0359874294977 0.0288360568697)
(0.0216483295659 0.0219170964366 0.0263939920711)
(0.0165150184979 0.010693364335 0.0239160219135)
(0.0115583063655 0.00255491045187 0.021465125286)
(0.00722870092181 -0.00288101333591 0.0193406717154)
(0.00304990374897 -0.00636423700464 0.0173071890071)
(0.00340443558891 0.140687097586 0.0473515632134)
(0.00929436849948 0.139729280247 0.0482372021981)
(0.014280034929 0.136788509391 0.0493414033869)
(0.0178781913675 0.132449604399 0.0504797982658)
(0.0199518357314 0.12690813928 0.0513083208267)
(0.0208086719353 0.120612297169 0.0515942481553)
(0.0200204917659 0.113374684212 0.0514867462714)
(0.0185459472933 0.106390532858 0.0505975446569)
(0.0172030719854 0.0984936167332 0.0488789062776)
(0.01615870367 0.0898133590427 0.0466260107858)
(0.0157405090873 0.0800421309206 0.0433787704468)
(0.015710483179 0.0688392455353 0.0396482061332)
(0.0157683305243 0.0563124260502 0.0354470747635)
(0.0147613290772 0.0423451799121 0.0311056469385)
(0.0124503421051 0.0291903661152 0.026801038722)
(0.00978540732221 0.0177601984948 0.022462232607)
(0.0073508538515 0.00840413452679 0.0185061551605)
(0.00512343513705 0.00136700530748 0.0150497595094)
(0.00328166283079 -0.00342683758913 0.0121111240703)
(0.00166580044092 -0.00653894443127 0.00948388253717)
(0.00262801371317 0.114603101082 0.0625211636781)
(0.00703000281966 0.114030221374 0.0633437651927)
(0.0104978681277 0.11158032445 0.0642025604529)
(0.012855077647 0.107873868493 0.0648766828324)
(0.0139224965519 0.103294966099 0.0648996237992)
(0.0137947416582 0.0978509273363 0.0643749069053)
(0.0123909049503 0.0915378797178 0.0631846376492)
(0.0102888924791 0.0849710797288 0.0609223058112)
(0.00831199909583 0.0778115067784 0.0578048132446)
(0.00651561235705 0.0702557870751 0.0536186979886)
(0.00503285045051 0.0618836184096 0.0486644353999)
(0.00397581934409 0.0528106141662 0.0430710452626)
(0.00319456333754 0.0428979295283 0.0370571942587)
(0.00235740212608 0.0324815551249 0.0308495107897)
(0.00129718246655 0.0225196888038 0.0247483489664)
(0.000355763076592 0.0136926580279 0.0189540930537)
(-0.00016104562194 0.00630068715291 0.0137902101295)
(-0.000335336243418 0.000540917555289 0.00944682536286)
(-6.0266487746e-05 -0.00343599884338 0.00576338371109)
(0.000496515421543 -0.00604566491051 0.00267276034067)
(0.00196926182208 0.084450077562 0.0744949814134)
(0.00520355332262 0.0842393767648 0.0751844318037)
(0.00743916187094 0.0824787758227 0.0754967471878)
(0.008833632381 0.0796588005435 0.0756277672674)
(0.00903663056928 0.0760048068608 0.0750871730582)
(0.00809472315185 0.0716702771449 0.0737746662095)
(0.00616476669664 0.0667603866041 0.0715112162919)
(0.00370788426919 0.0615817661474 0.0681952482745)
(0.00118166508664 0.0561121952016 0.0637000061699)
(-0.00124415928006 0.0502070974552 0.0582424363226)
(-0.00327460997412 0.0439405296615 0.0519487766096)
(-0.00482224637351 0.0372446955489 0.0450019399278)
(-0.00593074689206 0.03017599414 0.0376214571987)
(-0.00660390902577 0.0229402126595 0.0301294417754)
(-0.0069017602784 0.0159447127416 0.0227209404323)
(-0.00675176760116 0.00965745968462 0.0158107618606)
(-0.00597257584345 0.00434075521816 0.00969050702653)
(-0.00462332899173 3.1186438445e-05 0.00453151233654)
(-0.00273172161256 -0.00298190533783 0.000368654515152)
(-0.000474594584301 -0.00500230587103 -0.00285426209534)
(0.00133453505347 0.0514745041658 0.0826851744889)
(0.0035893664522 0.0519915336137 0.0830344735378)
(0.00513430286537 0.0509576230246 0.0829963986377)
(0.00587712674935 0.0491772424846 0.0825238550337)
(0.00550244603162 0.0468516344052 0.0814866178394)
(0.0041162196093 0.0440991061684 0.0794987881211)
(0.00185423101728 0.0409568469583 0.0764930703494)
(-0.000903323593477 0.0377141307002 0.0723211166408)
(-0.0037863861236 0.0342280695273 0.067007013526)
(-0.00654770747655 0.0305692504473 0.0607390599555)
(-0.00891886815955 0.0267263515194 0.0535091706181)
(-0.0107996062658 0.0226282073763 0.0456495924699)
(-0.0120289983402 0.0183888891892 0.0373458121396)
(-0.0125825401706 0.0140630347907 0.028834566962)
(-0.0124751155765 0.00987352067674 0.0205601870099)
(-0.0115659595009 0.0060822812917 0.0128584433538)
(-0.00993189572307 0.00280112450444 0.00610699880256)
(-0.00763386593079 0.000117488693522 0.000441688833391)
(-0.00453479999072 -0.00182155281648 -0.00377192604491)
(-0.00112813587947 -0.00336170126415 -0.00679260851618)
(0.000684149551508 0.0174912048443 0.0867143816714)
(0.00220368262583 0.0180727452128 0.086653259741)
(0.00356685952039 0.017814209311 0.0862216650517)
(0.00415367893707 0.0172498632639 0.0855493485634)
(0.00357155821063 0.0164907558771 0.0841480030663)
(0.00189860666327 0.0155750604099 0.0819189052899)
(-0.000567620843114 0.0145152497857 0.0785464995739)
(-0.0035351780228 0.0134048088717 0.0739511132603)
(-0.00670031930512 0.0122139399726 0.0682515776407)
(-0.00972434262414 0.0109598544329 0.0614265534434)
(-0.0123838448555 0.00964223650957 0.0537235561007)
(-0.0144445266491 0.00825213012871 0.045192403049)
(-0.0157943491169 0.00683433427606 0.0362707278861)
(-0.0163251182726 0.00537001884794 0.0271480655761)
(-0.0159387151584 0.00395597075618 0.018234846324)
(-0.0146603376715 0.00264005098323 0.0099607304134)
(-0.012481174479 0.0014510698073 0.00276467727816)
(-0.00955024463426 0.000488865148922 -0.00302283106073)
(-0.00596498161118 -0.000240862581259 -0.0070192751255)
(-0.00182608136007 -0.0010367371977 -0.00935372079901)
(0.0161821778956 0.0145676960358 -0.19656830413)
(0.0471035346536 0.0150533545115 -0.193736793135)
(0.0772697504509 0.0150023824276 -0.187436163028)
(0.105170515628 0.0150488019902 -0.178362844707)
(0.129929196755 0.0150390604973 -0.166744533397)
(0.15071706386 0.0149910532601 -0.152910346511)
(0.166838077172 0.0150534158036 -0.137309256608)
(0.1780746532 0.0150555599421 -0.120266711238)
(0.18439652104 0.0148542306071 -0.101851920263)
(0.185824070567 0.0143604859798 -0.0826654434538)
(0.18275770674 0.0136585485918 -0.0629241857115)
(0.175402235681 0.0127132304598 -0.0434986416013)
(0.165229792414 0.0120739936894 -0.0242906010726)
(0.152351515416 0.00988830153247 -0.00521498794804)
(0.135766828915 0.00825589453551 0.0118903073729)
(0.116128255185 0.00704148943482 0.0271826673851)
(0.093669933824 0.0061226692178 0.0401972206598)
(0.068579508542 0.00547668929695 0.0503852527092)
(0.0415924331817 0.0049224977675 0.057407078543)
(0.0141842211157 0.00456965585376 0.0607572916491)
(0.0168716268163 0.0426471592302 -0.194705592035)
(0.0477634032053 0.0428927904889 -0.192832795168)
(0.0776436378438 0.0425410579342 -0.186905881845)
(0.105688385968 0.0423973948852 -0.177793305006)
(0.130374847991 0.0421745359173 -0.165944102787)
(0.151156413274 0.0420248813487 -0.151866760511)
(0.167344487674 0.0422493662913 -0.135947093054)
(0.178431882663 0.0423915061915 -0.118607862824)
(0.18440642105 0.0418626168174 -0.0999871438578)
(0.185544272681 0.0404943585615 -0.0802329998741)
(0.182158899117 0.0382799133294 -0.0600545441657)
(0.175008915997 0.0352566115132 -0.0396692117665)
(0.163757847278 0.0311533020622 -0.020279722303)
(0.149867013239 0.0264389578238 -0.00256868669001)
(0.134020463794 0.0228780320759 0.0147321759087)
(0.114871580662 0.0197355623244 0.0302595662313)
(0.0929637593713 0.0174489526041 0.043401673732)
(0.0684587259746 0.0158815344413 0.0535348711688)
(0.0422628259617 0.0145119123613 0.0602410697906)
(0.0148717943614 0.0135840661244 0.0630487256191)
(0.0168807573797 0.0702195392706 -0.190281266266)
(0.0475930626841 0.070162005414 -0.188772553095)
(0.077451872217 0.0694790635531 -0.183008993961)
(0.105526885647 0.0686358307008 -0.173764158356)
(0.130218544913 0.0678366423416 -0.161713800896)
(0.15113001961 0.0674550292175 -0.147449262226)
(0.167263225661 0.0680370381904 -0.131315694826)
(0.177860906686 0.068612776212 -0.114010320629)
(0.183062751365 0.0679032115767 -0.0951262600777)
(0.183204475811 0.0655459762863 -0.075106368153)
(0.178856943796 0.0618226894489 -0.0545952431252)
(0.170005778856 0.0566568791926 -0.0344839173796)
(0.158317576552 0.0469784322429 -0.0159371478827)
(0.145841242041 0.0403697378653 0.0021161190995)
(0.130499400408 0.0349235033325 0.0194119376677)
(0.111829600273 0.029882745346 0.034766535168)
(0.090830928813 0.0264006533663 0.0477633229625)
(0.0669093963574 0.0239308352356 0.0577732409684)
(0.0412641842824 0.0220313531687 0.0641788363118)
(0.0146395275372 0.0209675536066 0.0666969073747)
(0.0168629257132 0.0966829049777 -0.183533258148)
(0.0473934714496 0.0964401113565 -0.182079044807)
(0.0771171101626 0.0950636564599 -0.176221401007)
(0.105195897259 0.093336412247 -0.166801987593)
(0.130058588372 0.0918772148762 -0.154594931432)
(0.151467776196 0.0912914211222 -0.14016116477)
(0.167918248486 0.0930276288689 -0.12369126145)
(0.177705145222 0.0960011097279 -0.106531554825)
(0.181244345814 0.0965165388072 -0.0877389999819)
(0.179910783405 0.0941194314349 -0.0672609006579)
(0.174198143619 0.0899977074689 -0.0462203762312)
(0.16186632662 0.0828777130797 -0.0263239472236)
(0.149658465659 0.074426888597 -0.0137350215956)
(0.139443853405 0.0556525146254 0.00727767500333)
(0.124643919643 0.0451105338974 0.0251517162924)
(0.107125931897 0.0373753609613 0.0403066430514)
(0.0876032925683 0.0326419817873 0.0530789351057)
(0.0646531008669 0.029152445062 0.0629400886222)
(0.039832285966 0.0267705657871 0.0690928381923)
(0.0142113812608 0.0257291288794 0.0715382055108)
(0.0166650018821 0.12138587693 -0.17434392097)
(0.0469096938296 0.120624186214 -0.172737004695)
(0.0763829026576 0.118328657731 -0.16671464538)
(0.104546958507 0.115493844364 -0.157159000595)
(0.12991505833 0.112932937141 -0.144754581348)
(0.152956845525 0.111261939554 -0.130035182055)
(0.17146718505 0.113202001261 -0.112557985002)
(0.180616754004 0.122051616547 -0.0955607519351)
(0.181244579397 0.125228652265 -0.076956785602)
(0.177208962991 0.123687514238 -0.0548517282823)
(0.16859538913 0.118151602379 -0.0331494988431)
(0.155937725005 0.107939272692 -0.0131606026721)
(0.134326621974 0.0974068089219 0.00904523391383)
(0.119915197854 0.059031462045 0.014299212671)
(0.114023790604 0.0489763795804 0.0320213238902)
(0.100493586801 0.0407142209747 0.0461219529246)
(0.0833761282641 0.0352934167176 0.0585793999165)
(0.0616587799506 0.0310540318721 0.0680732689488)
(0.0381101567295 0.0282283581545 0.0739567333418)
(0.0136148004541 0.0270143209305 0.076262424756)
(0.0162822839638 0.143837594544 -0.162538419872)
(0.0459532581436 0.142565345867 -0.160701490362)
(0.0749484435494 0.139353633005 -0.154575827465)
(0.102901418344 0.13535663098 -0.144893093866)
(0.128380262683 0.131814305461 -0.132272953534)
(0.153063263931 0.129772745706 -0.117406768171)
(0.177796379409 0.136000671819 -0.0988506220818)
(0.187455172855 0.156847576398 -0.083725638995)
(0.182076379284 0.165497638819 -0.0628195700206)
(0.172978941501 0.167642883072 -0.0418699419277)
(0.159511089656 0.163330513464 -0.0206353891941)
(0.143311660184 0.149825933527 -0.0026916189817)
(0.10897489776 0.12956208143 0.0134330370693)
(0.0947868088494 0.0714170805186 0.0209578161621)
(0.107713878953 0.0567918178519 0.0384215907546)
(0.0943553186891 0.0422055246767 0.0511060060505)
(0.0788602886934 0.0349463507234 0.0632886366783)
(0.0584493421277 0.0298557580819 0.0723417176189)
(0.0362127551675 0.0266299371526 0.0777945470221)
(0.0129688077968 0.0251701840139 0.0798532211975)
(0.0157116663616 0.163536235552 -0.147945091869)
(0.0444669063457 0.161823257754 -0.145945540411)
(0.0726344447961 0.157389067885 -0.139721324765)
(0.100435564494 0.151335988032 -0.129869819335)
(0.126918675499 0.143846634855 -0.116562508465)
(0.158099198801 0.134486705713 -0.100188828896)
(0.200820835821 0.126174340661 -0.076970018823)
(0.223423862293 0.120751397921 -0.0649589994997)
(0.192128765644 0.123566553741 -0.0425864211437)
(0.174972195075 0.126237443818 -0.0148851092776)
(0.153516626019 0.125491240307 0.00661805928156)
(0.129709401357 0.119992529254 0.0198562914524)
(0.04637738795 0.106662626982 0.0418776675587)
(0.0475608059198 0.0339128524547 0.0183763604389)
(0.0862052824507 0.0378475692424 0.041639938999)
(0.0799624516865 0.0325047593854 0.0541985298741)
(0.0724394172507 0.0289545003372 0.0664466950828)
(0.0546269369255 0.0250996591594 0.0750234537384)
(0.0341736005827 0.0222504901821 0.0797842308363)
(0.0123426254989 0.0207281523011 0.0816470067056)
(0.0149085087333 0.180221473612 -0.130732466676)
(0.0418710159511 0.178206014696 -0.128532930081)
(0.0678316732938 0.172894779443 -0.122394743526)
(0.0924140157798 0.165312646509 -0.112380473234)
(0.113378000252 0.155396252702 -0.0985548785422)
(0.131319506227 0.141472144316 -0.0830488319374)
(0.0961595613942 0.127827943746 -0.0349375693489)
(0.0767926906122 0.000799164694268 -0.0121056298747)
(0.108904550259 0.0195634771204 0.0381033912386)
(0.0872433130594 0.0235014208056 0.053831433551)
(0.0731090574837 0.0222999622558 0.066731804518)
(0.0532840898095 0.0191892568821 0.0747142531003)
(0.0328747002688 0.0163532293131 0.0792846651077)
(0.0118154397984 0.0146617753718 0.0809137375046)
(0.013837904338 0.193433306927 -0.110961812552)
(0.0387864976295 0.191024834763 -0.108762864738)
(0.062550266233 0.18537244368 -0.102726939487)
(0.0851929794519 0.177456069575 -0.0929841001027)
(0.102772265996 0.168083116641 -0.0791186122645)
(0.12534684664 0.156032987964 -0.0621643541078)
(0.0826624038843 0.152899651672 -0.00839891183025)
(0.078262156061 0.0276222440523 -0.0156748705088)
(0.108111610954 0.0253937297159 0.0359889269565)
(0.0856476759394 0.0225684775784 0.0526023061257)
(0.0703062351732 0.0185165140933 0.064923935102)
(0.0504610638268 0.0139440558915 0.0725192857974)
(0.0308535918029 0.0103343945512 0.076162042918)
(0.0111384409883 0.00826780658926 0.0773351030757)
(0.012457620737 0.202694204733 -0.0889710482287)
(0.0349565197161 0.199921990367 -0.0867775883135)
(0.0565999335683 0.19368187582 -0.0812190196024)
(0.0771602397153 0.184837823803 -0.0720223515996)
(0.0929472132097 0.174232918199 -0.0584640026841)
(0.116327631698 0.162876206809 -0.0413398509848)
(0.0798837533462 0.162151537043 0.0144931028893)
(0.0770423356404 0.0320791138821 -0.0153186400834)
(0.105766875711 0.0263505204752 0.035441606318)
(0.0814789021576 0.0212953971749 0.0505796994981)
(0.0659248091828 0.0151255115425 0.0615749998214)
(0.0465679879817 0.00928748490481 0.0679105291481)
(0.0283487768002 0.00489757678206 0.0706688575293)
(0.0102610438346 0.00226412920022 0.0714591279375)
(0.0108273852356 0.207625928374 -0.0651837360443)
(0.030413347837 0.204791023663 -0.063271856778)
(0.0490679325538 0.197770094149 -0.0584299112913)
(0.0667140651219 0.187068707181 -0.0504082187678)
(0.0803031386519 0.172638674263 -0.0380638603162)
(0.108839092834 0.153911438302 -0.0201155350564)
(0.0759480520283 0.111100930679 0.0460266923547)
(0.0799152648308 0.0348682829965 -0.00775111263573)
(0.0968339198774 0.0251643671442 0.0364149119342)
(0.0749435631044 0.0201946042556 0.0485273316417)
(0.0595252458847 0.012295245652 0.0571084900811)
(0.0414961051257 0.00537361146996 0.0615741619731)
(0.0250001361346 0.000154573320864 0.0631868591412)
(0.00912282160916 -0.00301264822406 0.0633859957294)
(0.00904572077588 0.20800789928 -0.0400918652226)
(0.0251891548258 0.205431491845 -0.0385959035931)
(0.0397362213951 0.198865926574 -0.0350879922785)
(0.0519389786942 0.188872417364 -0.0295435731911)
(0.0566312517583 0.175183745254 -0.0219775311737)
(0.0531419851213 0.157102365222 -0.0146084222067)
(0.0161642080937 0.11506871594 -0.0116276878647)
(0.00829322761579 0.133321634573 -0.0128709443813)
(0.04908449581 0.127815950964 0.00046406724859)
(0.0492497039845 0.128023940837 0.00270078928573)
(0.0627673325466 0.126778280276 0.0055646721408)
(0.084122411072 0.123384182959 0.00995450323841)
(0.146703997372 0.1138182842 0.0196803847033)
(0.142044730125 0.0571169713362 0.0258603008884)
(0.0966734693746 0.0352765629107 0.0397707702736)
(0.0706994990845 0.023565145367 0.0465949743406)
(0.0523756616016 0.0116803832384 0.0516816918699)
(0.0354755201544 0.0026470215746 0.0538048869888)
(0.0210810097807 -0.00350769966583 0.0540636182686)
(0.00774012975561 -0.00714196180656 0.0536180727063)
(0.00747538106254 0.203250976884 -0.0141669040812)
(0.0207986765322 0.20114477851 -0.0128145499625)
(0.0329040683405 0.195602638107 -0.0101151425279)
(0.0430611364801 0.187591674521 -0.00606454260234)
(0.0481875144028 0.17746871133 -0.000530848643735)
(0.0489519394639 0.169096600372 0.00463501248497)
(0.0380233674293 0.165667625776 0.0112434112099)
(0.0354748359107 0.184805092391 0.0122501541348)
(0.0420509826702 0.178493654894 0.0175322479394)
(0.0472377725725 0.176051005115 0.0211080225101)
(0.0573163761604 0.169167358416 0.025788041461)
(0.0667469136452 0.156084902634 0.029540950514)
(0.0815078227008 0.135509170715 0.0334677824235)
(0.0841976065859 0.0777537501921 0.0347107493307)
(0.0666166131557 0.0457848121541 0.0404870716311)
(0.0518698159167 0.0259769708493 0.0431422491906)
(0.0391772428742 0.0109117815702 0.0447648874151)
(0.0268864186898 0.000460771213507 0.044724585047)
(0.0161740628114 -0.00614244935395 0.0438011721684)
(0.00616551377695 -0.0100894288448 0.0427457096875)
(0.00605290470766 0.192617824463 0.01178538569)
(0.0167121553233 0.190919116255 0.0130276452531)
(0.0260905350596 0.186160741389 0.0151318648473)
(0.0334475865494 0.179086050602 0.0177829491543)
(0.0371848643194 0.170007987641 0.0212250448989)
(0.0384750197865 0.161186269169 0.0245976369173)
(0.0352875384996 0.15358892867 0.029292937006)
(0.0327877477557 0.154103053715 0.0312789426041)
(0.0346318199174 0.148340030682 0.0337174404137)
(0.0379122521765 0.141231778734 0.0353341446638)
(0.0424278848431 0.129591914491 0.0366571193991)
(0.047490044949 0.112809020299 0.0373780129035)
(0.0536912629982 0.0927683140909 0.0383845457938)
(0.054255257618 0.0624532848225 0.037976727795)
(0.0454935032197 0.0398837227706 0.0387709019118)
(0.0357192749738 0.0224285709297 0.0380166155202)
(0.0267927483144 0.00841579650924 0.036738972406)
(0.0184363444433 -0.00156557275461 0.0349362471499)
(0.0112568774648 -0.00794378926017 0.0330809769528)
(0.00448595307643 -0.011840752224 0.0314467734768)
(0.00480983489351 0.175891610439 0.0365422328427)
(0.0132437587778 0.174459117156 0.0380471981825)
(0.0203782575171 0.1704858846 0.0395859962722)
(0.0258738962932 0.164703655779 0.0415052878272)
(0.0290551404198 0.157424035305 0.0436574723694)
(0.0305414792144 0.149942818734 0.0459098297813)
(0.0290045523373 0.14185434857 0.0487295130457)
(0.0268686161215 0.136137307903 0.049593395673)
(0.0263137599032 0.128700547008 0.0500006170982)
(0.0261172662924 0.119353551554 0.0493074548761)
(0.0268567582095 0.10740788946 0.0477367885536)
(0.0282992122136 0.0927954680398 0.0451910824863)
(0.0299519067303 0.0753406398718 0.0424362419374)
(0.0293323345793 0.0539161615521 0.0390550244083)
(0.0250328896671 0.0347017332251 0.0359886532465)
(0.0197542126125 0.0189075938277 0.0322839280484)
(0.0148294315342 0.00629424931536 0.0286579495962)
(0.0102769621455 -0.0027724363969 0.0253538921786)
(0.00644184614774 -0.00879481851877 0.0227120992724)
(0.00290852303266 -0.0125110289462 0.0204779457121)
(0.00369931974404 0.15308798923 0.0593177459419)
(0.0100784037538 0.151918514898 0.0604669386882)
(0.0154332231016 0.148528991249 0.0619662568135)
(0.0191817815525 0.143539584348 0.0633102060792)
(0.0210154514168 0.137157082993 0.0645907465515)
(0.021223371795 0.129940062388 0.0654352447651)
(0.0197832148309 0.121568801693 0.0655383364196)
(0.017545314141 0.113805490024 0.0646842065521)
(0.0156122317128 0.104964296223 0.0627045320682)
(0.014042318476 0.0951824345813 0.0596583108785)
(0.0129398470703 0.084203003697 0.0555872305074)
(0.0123896596875 0.0717674916082 0.0505320186659)
(0.0121761464666 0.0578096087324 0.0447388053716)
(0.0112033774044 0.0423621491111 0.0386219034294)
(0.00900238641325 0.02759501763 0.0326260687879)
(0.00656206324039 0.0148293316557 0.0266625699109)
(0.00460337791168 0.00439671911393 0.0212844428207)
(0.00303453464582 -0.00338494513156 0.0166880804719)
(0.00197852860427 -0.00871934794577 0.0130318087906)
(0.00135888575232 -0.0120812699045 0.0102701953155)
(0.00279781836608 0.12480191573 0.0787522387727)
(0.00755209999644 0.124128973796 0.0798233323985)
(0.0111585914462 0.121282892505 0.0807901280677)
(0.0133409841316 0.117072291009 0.0817238478796)
(0.0140054724711 0.111631860198 0.0820132068971)
(0.0133213460416 0.10541308371 0.0812731550021)
(0.0111894692471 0.0983040779989 0.0797857343582)
(0.00832632373427 0.0908940915139 0.0771172042247)
(0.00550343188965 0.0828895046263 0.0731042881212)
(0.00294267354968 0.0742783453922 0.0677228108913)
(0.000881015103985 0.0648753134009 0.0612703800749)
(-0.000645762692315 0.0547441472278 0.0539410193233)
(-0.00170445059095 0.0437748008727 0.0459746206781)
(-0.00257853041802 0.0322221710054 0.0376868497065)
(-0.00344283609849 0.0210506012465 0.029491199499)
(-0.00392213271526 0.0111930874161 0.0217349079994)
(-0.00371873452024 0.00296437215229 0.0149064239801)
(-0.00303986376156 -0.00341573735048 0.00912350905644)
(-0.00181133346435 -0.00783254150843 0.00455366781878)
(3.3362494419e-05 -0.0106894958152 0.00125584808467)
(0.00206534434217 0.0920077025909 0.0940067131702)
(0.00547856957859 0.0917663040258 0.0947959743371)
(0.00765443949406 0.0897552256746 0.0952609797828)
(0.0087504577229 0.0864593824943 0.0955384106527)
(0.0083984733745 0.082292888362 0.0948788348515)
(0.0068186988501 0.0772941671798 0.0931973242925)
(0.00409145429248 0.0717010784625 0.090270976995)
(0.00075064216103 0.0657916398314 0.0859918507978)
(-0.00261281009294 0.0595716659579 0.0802307403039)
(-0.00576076036659 0.0529871666932 0.0732133351034)
(-0.00843533259969 0.0459698913407 0.065069143466)
(-0.0104565702085 0.0385062233078 0.0559779897167)
(-0.0118106517302 0.0306664395454 0.0463350422555)
(-0.0125032247718 0.0225991366774 0.0364166875129)
(-0.0125245122176 0.0148000119888 0.0266388923043)
(-0.0117794070302 0.00779942715222 0.0175098751433)
(-0.0101821135789 0.00184218089327 0.00946479392863)
(-0.00785461624458 -0.00295918686795 0.00271693446829)
(-0.00479396600134 -0.0062922531667 -0.0024284165702)
(-0.00104917720392 -0.00856369768972 -0.00606111789052)
(0.0013505739164 0.0560811072098 0.104517251687)
(0.00366945723159 0.056598641321 0.10505271509)
(0.00497883813722 0.0553995726591 0.105041034985)
(0.00533010938762 0.0533218360807 0.104590118843)
(0.00437683878178 0.0506653747254 0.103266770197)
(0.00223546414726 0.0475270515271 0.100721371722)
(-0.000876342964085 0.0439390744742 0.0968011038504)
(-0.00451561845436 0.0402026033432 0.0913817706027)
(-0.00820703688376 0.0363062736766 0.0845093256812)
(-0.0117335242895 0.0321846075391 0.0763690263162)
(-0.0147562078791 0.027901629902 0.067078090837)
(-0.0170587979359 0.0233419637622 0.0568328682198)
(-0.0185667087824 0.0186283770357 0.0460445835496)
(-0.0191283313262 0.0138182936167 0.0349539922279)
(-0.0186645097845 0.00916932424016 0.0240868909353)
(-0.0171518340486 0.00490332558637 0.0139189439767)
(-0.0145940321558 0.00121405182989 0.00492775123)
(-0.0111446201363 -0.00178817359424 -0.00231233081787)
(-0.00676879247822 -0.00389282610056 -0.00770172398275)
(-0.00180104771548 -0.00566500303014 -0.0113451581955)
(0.000657390268361 0.0190795972772 0.109770812096)
(0.00210065014141 0.0197360225597 0.109844402797)
(0.0032343621333 0.0194049582024 0.109466824749)
(0.00341224838879 0.0187819745465 0.108728119496)
(0.00220062415661 0.0178839890452 0.107028386972)
(-0.000236961308101 0.0168390830495 0.104094361545)
(-0.00361603890759 0.0156211854802 0.0997067103167)
(-0.00746735019226 0.0143488521177 0.0937522222009)
(-0.0114758034773 0.0130071583626 0.0863532974043)
(-0.0152566455081 0.0115934135997 0.0775791002199)
(-0.018561457431 0.0101539408515 0.0676183441711)
(-0.021101540935 0.00860147631957 0.0567015617654)
(-0.02265757555 0.00701238755721 0.0450732834357)
(-0.0231459631362 0.00543649822241 0.0332858236132)
(-0.0224510265265 0.00385761993197 0.0216765905171)
(-0.0205166930117 0.00237895079838 0.0108697283657)
(-0.0174007707079 0.00107432934823 0.00137384852365)
(-0.0132770083042 -5.03491667253e-05 -0.00627797622197)
(-0.00828253587682 -0.000878850690977 -0.0115624216352)
(-0.00259030430826 -0.00183842610865 -0.0146815297106)
(0.0173945253874 0.0153552230283 -0.238051447886)
(0.0504786046316 0.0158901491817 -0.234642807007)
(0.0828230364626 0.015855732838 -0.227044837002)
(0.112693107357 0.0159566865483 -0.216109764408)
(0.139174144327 0.0160038439322 -0.202186584916)
(0.161410734533 0.0159997337195 -0.185660279587)
(0.178714208726 0.0161108694444 -0.167065817956)
(0.19096764117 0.0161513541477 -0.146753412203)
(0.198076027228 0.0159866557628 -0.124872957313)
(0.200034771095 0.0156085210866 -0.101952412186)
(0.19705587255 0.0149684905742 -0.0782851114466)
(0.189725719374 0.0143980237461 -0.0550057108573)
(0.179350714481 0.0132324282029 -0.0304594228971)
(0.165512468961 0.0108017456815 -0.00793010014243)
(0.147692723997 0.00913168632417 0.0131115842293)
(0.126536237637 0.00790061117176 0.0319219351401)
(0.102228021082 0.00695791392551 0.0479890877392)
(0.074904156551 0.00628920295975 0.0605683922073)
(0.0454300302447 0.00569266502179 0.0692692025948)
(0.0155097021313 0.00536563209506 0.0734061710805)
(0.0181306783434 0.0449468960035 -0.235940929182)
(0.0512051409136 0.0451938155487 -0.233411187618)
(0.0832817354299 0.0448598222564 -0.226131544125)
(0.113327627755 0.0448297548515 -0.215149001223)
(0.139719683322 0.0447498801594 -0.200934553243)
(0.161960758124 0.0447400914533 -0.184132696142)
(0.179326469928 0.0451435668781 -0.165184709465)
(0.191406912125 0.0453462378407 -0.144619691766)
(0.198279385742 0.0449197346045 -0.122434975058)
(0.199992436905 0.0437856306815 -0.0988310749522)
(0.196987535049 0.0417513595144 -0.0746127474367)
(0.189367502899 0.0389123233739 -0.0495691560117)
(0.177260526723 0.0344013774103 -0.027046550814)
(0.162891338263 0.0292353002596 -0.00447438308553)
(0.146002373726 0.0255565016827 0.0169301872639)
(0.125391358592 0.0223451592395 0.0359091664606)
(0.101611569185 0.019940285846 0.0521023592569)
(0.0747821490991 0.0182948649549 0.0646245189322)
(0.0460866858627 0.0168427554121 0.072891451183)
(0.016289649279 0.0159105263489 0.0765998040336)
(0.0181713865297 0.0741413215989 -0.230912278242)
(0.0510795653257 0.074132197862 -0.228674709984)
(0.0831683354844 0.0735162742075 -0.221478678407)
(0.113266001619 0.0728130343406 -0.210291908779)
(0.139670473773 0.0721889946515 -0.195843704501)
(0.162030356741 0.0720087456317 -0.178818772254)
(0.179273394826 0.0728683276809 -0.159676462987)
(0.190843063927 0.0733338937603 -0.139158531108)
(0.197006802806 0.0727317792244 -0.116697649493)
(0.197815102526 0.0706427792683 -0.0929793153887)
(0.193558388281 0.0672964390135 -0.0683762589679)
(0.184161579074 0.0616675516603 -0.0444338630151)
(0.171837098191 0.0496202889365 -0.0206617900401)
(0.158705678931 0.0442563990028 0.0015236915374)
(0.142429779785 0.0389348864415 0.0226964866462)
(0.122164891546 0.0337198622062 0.0418603872078)
(0.0992906566092 0.0299627591707 0.0577871944246)
(0.0731475043855 0.0273041371488 0.070186080867)
(0.0450332754382 0.0253273012165 0.0782488552353)
(0.0160340924119 0.0242767000728 0.0816675767834)
(0.0181845399619 0.102370026275 -0.223147077791)
(0.0509475673453 0.102180390467 -0.220947135115)
(0.0829653916367 0.100871432329 -0.213585919946)
(0.113103230873 0.0993019560121 -0.202186830893)
(0.139684140396 0.0980623532262 -0.18755762529)
(0.162584745253 0.097744559607 -0.170409702531)
(0.179919426543 0.0999950036277 -0.150993905366)
(0.190576536785 0.102615176677 -0.130901031391)
(0.195352618963 0.102966397419 -0.108518929788)
(0.194888531186 0.101407130245 -0.0843186090824)
(0.188972873349 0.0975618156783 -0.059238475357)
(0.173870885892 0.0905531403142 -0.0377040218493)
(0.162215636637 0.0835728625256 -0.0140434083492)
(0.153831814028 0.0604804360597 0.00865868593201)
(0.136715983186 0.0499241036234 0.0298593953423)
(0.117345163613 0.0417283087707 0.0487844266408)
(0.0959003438233 0.0367323912543 0.0647222007401)
(0.0707909648114 0.0330129243137 0.0769608741864)
(0.0435644581962 0.0304547514424 0.0849468021126)
(0.0155960946856 0.0294068652243 0.0882121871221)
(0.0180281907005 0.128917037939 -0.212553805311)
(0.0506026959177 0.128208336953 -0.210128047241)
(0.0824412460281 0.125982888525 -0.202585958573)
(0.112695739326 0.123295076539 -0.190973958875)
(0.139835183238 0.121046296959 -0.176167423647)
(0.164499672259 0.119697698783 -0.158808874177)
(0.183586689341 0.122474071428 -0.138748147462)
(0.193168980439 0.130195153151 -0.119473032209)
(0.195761725211 0.133837779031 -0.0973740369679)
(0.192864530484 0.132343075505 -0.0719132037685)
(0.183765665767 0.126792739841 -0.0466817507619)
(0.171808418888 0.11610835 -0.0200950275433)
(0.145672469689 0.106567869922 0.00550180763313)
(0.129070969611 0.0635498791325 0.0165980092095)
(0.125719884257 0.053670859359 0.0378344884734)
(0.110374161259 0.0446721681108 0.0559762164443)
(0.0915866938896 0.0391074837941 0.0717875332015)
(0.0677080313012 0.0345937993981 0.0838447880614)
(0.0417732841527 0.0314859270459 0.0914660467148)
(0.0149657935761 0.0301878266356 0.0945843491884)
(0.017705236989 0.153328927786 -0.198750154958)
(0.0498217423567 0.152104581636 -0.196085900954)
(0.0812579550107 0.148919405249 -0.188392212721)
(0.11144280676 0.145131765489 -0.176613776121)
(0.138751884143 0.142045960559 -0.161435835132)
(0.165291803323 0.140986074537 -0.143914356154)
(0.189516426065 0.14878726972 -0.123208229867)
(0.200047711985 0.164941373959 -0.107240274242)
(0.196769778951 0.173863298959 -0.0852381691741)
(0.188148746834 0.176926722585 -0.0615585869601)
(0.174094038119 0.172598934178 -0.0367494530691)
(0.156197335136 0.157541340179 -0.0134437169247)
(0.119776328128 0.137941868283 0.00164201858186)
(0.105500039059 0.0705813723681 0.0194858595757)
(0.119574480481 0.0595248008853 0.0444438545705)
(0.104039667848 0.0450678425358 0.0620251323025)
(0.0871015139954 0.0378470126913 0.0778340047493)
(0.0644186757928 0.0324213297932 0.0895041866643)
(0.0397647544005 0.0287633962949 0.0966558342032)
(0.0142737332092 0.0271830528922 0.099586237287)
(0.017194240074 0.175051120856 -0.181604475791)
(0.048541532944 0.173342896853 -0.178712846152)
(0.0792889050634 0.168913113397 -0.170883819955)
(0.109543717536 0.163087024285 -0.158795247673)
(0.138531523733 0.156292166775 -0.142776213675)
(0.172576378205 0.148658494532 -0.123515230925)
(0.211811503654 0.147023655886 -0.099061403457)
(0.233619824464 0.126513894736 -0.0904658311351)
(0.208891722359 0.129233125382 -0.0686301669318)
(0.192045935366 0.133165359058 -0.0429035084892)
(0.168260452148 0.132549599348 -0.0189646274563)
(0.147204224401 0.12652518521 0.00293557546984)
(0.0494206994315 0.115347239192 0.034488314761)
(0.0537901867593 0.0262890680521 0.0149544540132)
(0.102172737447 0.0365957128932 0.0482869683202)
(0.0903622735593 0.0332622591568 0.0662861797484)
(0.0807960126182 0.030269716112 0.0818296793659)
(0.0604415751147 0.0259603551709 0.0930152201077)
(0.0376176261246 0.0227383881742 0.0994446285804)
(0.0136194483673 0.0210940756828 0.101948778063)
(0.0164584579705 0.193670088494 -0.161060249928)
(0.0461313419418 0.191604482765 -0.157987180123)
(0.0748282155577 0.186192758499 -0.15001758656)
(0.102239392569 0.178695303101 -0.137562415908)
(0.12652349992 0.169226195981 -0.120538943811)
(0.151245932491 0.156853113069 -0.100344895294)
(0.11551121669 0.15384161317 -0.0458896491721)
(0.0980228790574 -0.00718858761878 -0.0128591803103)
(0.130471158796 0.0176641770321 0.0453918386645)
(0.0999893321205 0.0229962729214 0.0657904180764)
(0.0820802394254 0.0218852582185 0.0820081578444)
(0.0590693554771 0.0183063116967 0.0928599520505)
(0.0363551309681 0.0149700238688 0.0987360629376)
(0.0130749621572 0.012981767524 0.101078689503)
(0.0153923388779 0.208689547539 -0.137365927174)
(0.0430902595341 0.206141886338 -0.134303645189)
(0.0696427950747 0.200186305433 -0.126408633243)
(0.0952433812051 0.192005679996 -0.114007590953)
(0.116787087146 0.182655883396 -0.0964961941116)
(0.148654637279 0.171296080692 -0.0744442110768)
(0.104035180065 0.170684413535 -0.012291512145)
(0.0992798780519 0.0286558545953 -0.0146126193391)
(0.129545196113 0.0250734953987 0.044533047364)
(0.0981789912121 0.0217342637385 0.0650171298645)
(0.078947407723 0.0167806443674 0.0804635537638)
(0.055927497477 0.0115167491937 0.0901854049819)
(0.033901735878 0.00709502905296 0.0948468849923)
(0.0122381366936 0.00463323504495 0.0964479417621)
(0.0139661341788 0.219443737718 -0.110748928134)
(0.0391426286176 0.216460041311 -0.10768360571)
(0.0634519368929 0.209661935056 -0.100409424517)
(0.0870463961461 0.20021478244 -0.088670982855)
(0.107038532506 0.189087879822 -0.0717186694423)
(0.1396037661 0.178435033771 -0.0498147074267)
(0.101815250824 0.180491292776 0.0125318042368)
(0.0974867030082 0.0346402871814 -0.0139043142494)
(0.126109547487 0.0266128732169 0.0441308241238)
(0.0930665773173 0.0199907657229 0.0628935928618)
(0.0736871254195 0.012373692136 0.0764101541184)
(0.0513126446414 0.00526906836048 0.0843172761462)
(0.0309402200463 -3.196511155e-06 0.0877729467996)
(0.0112220184966 -0.00303840112651 0.0888559376192)
(0.0121995150024 0.225565419853 -0.0817948028429)
(0.0342677645466 0.22232013163 -0.0790423500195)
(0.0553146266199 0.214428675523 -0.072630262878)
(0.0757520855667 0.2024560135 -0.0622375793973)
(0.0940807817955 0.185993341602 -0.0470191634805)
(0.13301013286 0.163883570068 -0.0232327125938)
(0.0986452835022 0.10631773152 0.0446471585051)
(0.0981621583149 0.0486725737537 -0.00377688923198)
(0.114254348137 0.0275409766892 0.0457282161085)
(0.084371567989 0.0190755979086 0.0605543342447)
(0.065664218195 0.00880206888662 0.0708302848618)
(0.0451258515887 0.000148446640874 0.0761626184736)
(0.0269738173962 -0.00612554342526 0.0780952538288)
(0.009876773116 -0.00979332051674 0.0784247830963)
(0.0101804136722 0.226764250836 -0.0510471751737)
(0.0283531242551 0.223785658496 -0.0488398009028)
(0.0446711387291 0.216212428276 -0.0440104942557)
(0.0584241011675 0.204725154142 -0.036344834103)
(0.0640767328206 0.188587487842 -0.025268361266)
(0.0593267894119 0.164545326262 -0.0122069622242)
(0.0222715924183 0.111561591711 0.0033420302521)
(0.0147517468309 0.140940095864 0.00246705847707)
(0.0548393089248 0.133363492502 0.0254602388118)
(0.0509791561163 0.133879402139 0.0255840218361)
(0.0650228150238 0.133078448146 0.0287778351507)
(0.0871684850197 0.128765005595 0.0332302385202)
(0.148346797669 0.119351483233 0.0407824841052)
(0.148133488202 0.0708161169911 0.037236901078)
(0.104658285299 0.038153594753 0.0513084200726)
(0.0758816903998 0.0220602658026 0.0584890201523)
(0.0560041292432 0.00730359145783 0.0639827291713)
(0.0375766774367 -0.00360696675408 0.0661527544414)
(0.0222144082872 -0.0108364768871 0.0662448225679)
(0.00822445851181 -0.0149789584921 0.0658054957743)
(0.00843496071024 0.222343545529 -0.019110597963)
(0.0234808355041 0.219850445821 -0.0171175170854)
(0.0369463297498 0.213436479485 -0.0133718884168)
(0.0482047980212 0.204079368768 -0.00780235553471)
(0.0535259125435 0.192351655008 -1.51620202022e-05)
(0.054106508961 0.181891210814 0.00849629132091)
(0.0418532900248 0.178897442982 0.0200023894079)
(0.0386313901182 0.195838271912 0.0247970866592)
(0.0452887638111 0.187017182078 0.0339366346424)
(0.0496315422836 0.18428657188 0.0392517362719)
(0.0591964389113 0.177112553413 0.0434521499758)
(0.0677372471428 0.162679851698 0.0455604545874)
(0.0820586214807 0.140354294925 0.047813237447)
(0.0864197657453 0.0827579385794 0.0460316788664)
(0.0700430958016 0.0462046398429 0.0509946680017)
(0.053944550791 0.0231647798355 0.0533472391239)
(0.0405521640486 0.0055317020943 0.0547279005085)
(0.0275374689693 -0.00655798405898 0.0542049437893)
(0.0164897583431 -0.0141214217549 0.0529031381456)
(0.00639230726101 -0.0185011102969 0.0516746462409)
(0.00681033729197 0.211315066825 0.0129822607063)
(0.0187639837918 0.209360067255 0.0149788050748)
(0.0291612256481 0.203647756081 0.017683989132)
(0.0371555920589 0.195420962636 0.0214134956037)
(0.0409429799075 0.184826033186 0.0263550675201)
(0.04226570484 0.174682429188 0.0316032346191)
(0.0382869122476 0.166076243559 0.0392094373222)
(0.0350050904698 0.16605249233 0.0428121845729)
(0.0363686973878 0.15853983955 0.0476019368742)
(0.0387021876518 0.150160698928 0.0502273553156)
(0.0424426944686 0.136644314893 0.0513908971209)
(0.0470136681133 0.118089398106 0.0511700607822)
(0.0528589647454 0.0962419325456 0.050677698733)
(0.0538258495344 0.0645759657834 0.0484008077871)
(0.045491230171 0.0386696569352 0.0480485436342)
(0.0352459770231 0.0186757390338 0.046230262513)
(0.0261867205443 0.00250718453032 0.0440131859709)
(0.0177787660083 -0.00888015494036 0.0413347232191)
(0.0107599520854 -0.0160361281447 0.038809596302)
(0.00447599657294 -0.0203204799343 0.0370680147668)
(0.00546409691248 0.193477175467 0.0437128312306)
(0.0147850975719 0.191700107258 0.0462289564267)
(0.0225423097469 0.187054814597 0.047849305605)
(0.028496869677 0.180244504204 0.0505691679222)
(0.0316605441678 0.171773870782 0.0536133150432)
(0.0330441572448 0.163182408663 0.0567896347023)
(0.0307047758656 0.153528773379 0.0608758046705)
(0.027516455155 0.146699077829 0.0627842787448)
(0.0261982037676 0.137719122911 0.0638988218837)
(0.025058524559 0.1267799937 0.0632521986908)
(0.0249467291366 0.11324525216 0.0609957915103)
(0.0258103969484 0.0969917748887 0.057442500921)
(0.0271191356014 0.0775961437715 0.0531864473912)
(0.0265600323089 0.0544118135911 0.0480301951929)
(0.0224148034926 0.032678946654 0.0434001753069)
(0.0171207580963 0.0147956227595 0.0381815747948)
(0.0125038238756 0.000455157162509 0.0331731689667)
(0.00846803256976 -0.00983010511608 0.0287420798722)
(0.00529181926236 -0.0165282186737 0.0252856223195)
(0.00263855486538 -0.0205424854046 0.0228351708454)
(0.00405317286516 0.168743536314 0.0721784272225)
(0.0111584566806 0.167267228949 0.0739569042219)
(0.0169457062612 0.16330378366 0.075727513418)
(0.0207538821889 0.15748054754 0.0774523925571)
(0.0224576908429 0.150040234832 0.0790564153923)
(0.0221193803165 0.141526073251 0.0801915917673)
(0.0197207626273 0.131606059782 0.081169560797)
(0.0165971049418 0.122657159323 0.0803049535585)
(0.0136589866716 0.112357273637 0.0782352850555)
(0.0111453952068 0.101140943511 0.074218738645)
(0.00929537603646 0.0886680107615 0.0688946967487)
(0.00803737209411 0.0747490206939 0.0622854154853)
(0.00738446760185 0.0591381398788 0.0546907771749)
(0.00635615248229 0.0420227477485 0.0464846610397)
(0.00431778273456 0.0253135598952 0.0383913758759)
(0.00222617058317 0.0108836280602 0.0304320777779)
(0.000913212498456 -0.000901920575681 0.0232745157392)
(0.000213460585038 -0.0097085228062 0.017312129124)
(0.000221130618206 -0.0157195442663 0.0128178190938)
(0.000909424556492 -0.0193080167633 0.00974183799812)
(0.00301386404096 0.137641815284 0.096426185987)
(0.00820442666616 0.136860418185 0.0977616866224)
(0.0119158231128 0.133513855218 0.099006480385)
(0.0140812993769 0.128611681295 0.100246265177)
(0.0141423139389 0.122232342854 0.100756572126)
(0.0127100330596 0.114834146194 0.0999982799428)
(0.00978615539342 0.106540569965 0.0982367722959)
(0.00582613714189 0.0979888303324 0.0950313353214)
(0.00195170531089 0.0887154536253 0.0898970909499)
(-0.00156427632772 0.0789303252793 0.0831995276648)
(-0.0044575654583 0.0682328254566 0.0750128559316)
(-0.00662897654855 0.0567792157783 0.0655672936369)
(-0.00809774612944 0.0444947664907 0.0552900375439)
(-0.0090555932046 0.0315639723074 0.0445213319572)
(-0.00966949600048 0.0189525397951 0.0338465033497)
(-0.00956300831525 0.00781414349064 0.0237545809083)
(-0.0084999189228 -0.00148648313409 0.0148427148814)
(-0.0067313715412 -0.0086929266138 0.00738510471531)
(-0.0041132488448 -0.013642725383 0.00178492276674)
(-0.00062017643525 -0.0167956095982 -0.00185460130804)
(0.0021989365099 0.101527268096 0.11543852611)
(0.00588487462067 0.101207356301 0.116432091101)
(0.00794865848701 0.0988889547992 0.117206053329)
(0.00865773152962 0.0950673581029 0.117537178526)
(0.00762363264107 0.0901169685349 0.116899538128)
(0.00516965656921 0.0843798586892 0.114712537842)
(0.001437807541 0.0778072127117 0.111106685155)
(-0.00297968408823 0.0709422832725 0.105611386995)
(-0.00740740608496 0.0637718382183 0.0983706747791)
(-0.0115188544573 0.0562455704421 0.0895306009589)
(-0.0150487074784 0.0483103871407 0.0792389076744)
(-0.0177043232643 0.0398671501334 0.0676997091921)
(-0.0194279454149 0.0310351035328 0.055323399333)
(-0.0201743811209 0.0219671449655 0.0425368522602)
(-0.0198676665302 0.0131520829504 0.0299914634693)
(-0.0184108075047 0.00522071302726 0.0182233035094)
(-0.0157940285131 -0.00156203573911 0.00780191384242)
(-0.0121561161926 -0.00691951432013 -0.000843955894622)
(-0.00750898373166 -0.0106449170704 -0.00717708602507)
(-0.00187585676681 -0.0132430840061 -0.0112876066564)
(0.0014213892878 0.0619282494458 0.128482620926)
(0.00382899709493 0.0623974987754 0.129375967319)
(0.00484234008324 0.0609619424219 0.129362685816)
(0.0047057885132 0.0585697719197 0.12899156099)
(0.0029471422295 0.0554986882274 0.127444741005)
(-0.000175358098576 0.0518231887284 0.124263970115)
(-0.00437376120029 0.0476552549243 0.119248193494)
(-0.00913502741469 0.0433021569819 0.112346145519)
(-0.0138826310586 0.0388316441496 0.103637195676)
(-0.0183273023677 0.0341284980498 0.0933250693127)
(-0.0221865178155 0.0292761589297 0.081659122547)
(-0.0251423109071 0.0241687645881 0.0687133549139)
(-0.0269725012238 0.0188038975491 0.0549017241231)
(-0.0275572466982 0.0133856970342 0.0407613766515)
(-0.0267629296898 0.00812792636923 0.0268057791287)
(-0.0244867635783 0.00328937932428 0.0138191367116)
(-0.0207317554229 -0.000922297742633 0.00233049203087)
(-0.0158023108029 -0.00428798128561 -0.00702244453737)
(-0.00976032245966 -0.0066106618966 -0.0137963095922)
(-0.00268242688517 -0.00862151580537 -0.0181107056952)
(0.000677816667119 0.0211196355465 0.135176939176)
(0.00210169173613 0.0218272285468 0.135413277833)
(0.00291253212854 0.0214413415097 0.135153740781)
(0.00255459041515 0.0207013556062 0.134452699237)
(0.000478952022733 0.0196503312704 0.132443655124)
(-0.00301383021276 0.0184015704529 0.128654315923)
(-0.00751553845421 0.0169811457138 0.123059568541)
(-0.0125024540622 0.0155079145881 0.115476656826)
(-0.0175582335303 0.0139611272921 0.106103288102)
(-0.0223024583494 0.0123705799919 0.0950539136293)
(-0.0264080340804 0.0107130663761 0.0825030529843)
(-0.0295768675128 0.00902052381569 0.0687728193302)
(-0.0314907912142 0.0072344696363 0.0540990431208)
(-0.0319563249518 0.0054449065573 0.0390614293666)
(-0.0308651840559 0.00366269638025 0.0243243463995)
(-0.0281461331204 0.00204194658443 0.0104835425556)
(-0.0238612947911 0.000555876676088 -0.0017055695956)
(-0.0181568427348 -0.0007107769283 -0.0115594220274)
(-0.0113201891438 -0.00166886553862 -0.0183991993757)
(-0.00359833873968 -0.00287039265985 -0.0224641566739)
(0.0188088062952 0.0162385287371 -0.282274140967)
(0.0545172225996 0.0168434881153 -0.278250343264)
(0.0894409401337 0.0168334579148 -0.269283081227)
(0.121629683238 0.016991444013 -0.256357451472)
(0.150102275409 0.0171050427755 -0.240008359131)
(0.174020164521 0.0171625073388 -0.220697035742)
(0.19269096588 0.0173375185047 -0.199068901614)
(0.206137392806 0.0174113082243 -0.17543332858)
(0.214194282229 0.017312574791 -0.150047710098)
(0.216812396386 0.0170911708142 -0.123169929587)
(0.213983072072 0.0166579689489 -0.0958071935301)
(0.207207330363 0.0166558017602 -0.0675403064852)
(0.196538128029 0.0143641300693 -0.0384003808262)
(0.181307874789 0.0120022831873 -0.0114978233085)
(0.162207933513 0.010327616223 0.0137199237076)
(0.139245649177 0.00906670215958 0.0365818751971)
(0.112681324407 0.00806977525714 0.0558898978567)
(0.0826454225256 0.00736851048948 0.0711095516996)
(0.0501344386345 0.00672287703447 0.0816648367052)
(0.0171303486582 0.00646262887035 0.0866852150798)
(0.0196401378374 0.0475009590667 -0.280006208084)
(0.0553310202354 0.0477948265812 -0.276771142141)
(0.0900005313075 0.0475137046511 -0.268072595417)
(0.122413215531 0.0476134133577 -0.255102066165)
(0.150815868364 0.0477192758505 -0.238403962128)
(0.174724496152 0.0478867010453 -0.218753673851)
(0.193464674245 0.0485067749053 -0.196681350749)
(0.206712493391 0.0487598103112 -0.172758538338)
(0.214704384889 0.0485454446023 -0.146787097666)
(0.217194348045 0.0476469094789 -0.119289805219)
(0.21477549842 0.0458828393375 -0.0903854937323)
(0.206512919384 0.0431589053232 -0.0613908863587)
(0.193636648597 0.0383097079534 -0.0340050785991)
(0.178967557971 0.0329302028662 -0.00692060372221)
(0.160670068918 0.0290689030921 0.0187805865531)
(0.138075881457 0.0258861376065 0.041777888874)
(0.112057820382 0.0232445741418 0.0611850540827)
(0.0825195045973 0.0215196462877 0.0762877511328)
(0.0508323130827 0.0199683275929 0.0864381609072)
(0.0180374949497 0.0191243595609 0.0910899103807)
(0.0197235289091 0.0785453253728 -0.274458742091)
(0.0552924448604 0.0786087643882 -0.271497760915)
(0.0900128708793 0.0780940539644 -0.262790259338)
(0.122492878441 0.077578476536 -0.249495164029)
(0.150908092933 0.0771721075586 -0.232508839896)
(0.1749658051 0.0772362373903 -0.212609164313)
(0.193432547569 0.078366193426 -0.190270488524)
(0.206228645904 0.0786735028058 -0.166372585256)
(0.213533860331 0.0782170911092 -0.140095988858)
(0.215119355961 0.0763711631671 -0.112291419363)
(0.210913074441 0.07332205237 -0.0835990086622)
(0.201590609342 0.0655886477224 -0.054932315397)
(0.188716401704 0.0564366659774 -0.0248388449475)
(0.174426545985 0.0497041669849 0.00101846135219)
(0.156994984512 0.0439829389446 0.0262489510963)
(0.134816323412 0.0386500920571 0.0493394257662)
(0.109523312708 0.0347361189827 0.0689677729709)
(0.0807778028278 0.0319065475903 0.0837495303935)
(0.0497393656896 0.0298480752847 0.0936514082929)
(0.0177537769834 0.0287785833383 0.0979846764166)
(0.0197651228091 0.108810701226 -0.265845311296)
(0.0552279693161 0.108705963003 -0.262864701872)
(0.0899838036222 0.107511361294 -0.253935841779)
(0.122548330572 0.106133762056 -0.240374008903)
(0.15114511753 0.105168430441 -0.223172530936)
(0.175704312889 0.105111293249 -0.203110277039)
(0.194043437094 0.107795183282 -0.180619612333)
(0.205756999374 0.10976699112 -0.157181850063)
(0.21203718662 0.11003490425 -0.130834815654)
(0.212549596927 0.109036891462 -0.102599346857)
(0.205142278331 0.105480786252 -0.0737931794713)
(0.191907780085 0.100253801498 -0.049262501211)
(0.18003968833 0.0929307108584 -0.00771597011445)
(0.168463034625 0.0661804386308 0.0111942858492)
(0.151050158433 0.0557625546404 0.0354750868291)
(0.129908362655 0.0471535897781 0.0582332217026)
(0.106143295004 0.0421065021747 0.0779101872792)
(0.0783582454378 0.0381935130807 0.0927837941914)
(0.0481848550974 0.0354168731181 0.102697677498)
(0.0172683093728 0.0343142065161 0.106758532043)
(0.0196605967561 0.137516775157 -0.253943169586)
(0.0550673664863 0.13691943489 -0.250751336402)
(0.0896965918364 0.13478320324 -0.241555612201)
(0.12245610441 0.13233375643 -0.227767782088)
(0.15158966546 0.130435199572 -0.21033557815)
(0.177975000741 0.129470466243 -0.190202095003)
(0.197519198476 0.132639362487 -0.167276429276)
(0.207918714385 0.138657100005 -0.145160487978)
(0.21265449498 0.141873151068 -0.119025078312)
(0.210970892474 0.140274586798 -0.0897459090745)
(0.203144968589 0.134857262205 -0.0602179326872)
(0.190700035292 0.125935004505 -0.0239865047647)
(0.159372726935 0.109033343228 0.00723929829763)
(0.141813622789 0.0669894473464 0.0198482336682)
(0.140177642187 0.0589524715475 0.0450432910297)
(0.122831764117 0.0497134254129 0.0675883214951)
(0.101864096613 0.0441195476307 0.0870297901982)
(0.0752155483219 0.0393389540913 0.101915898425)
(0.0462720530065 0.0358606302632 0.11141330652)
(0.0166203298696 0.0345226078787 0.115356888963)
(0.019401238912 0.164303964044 -0.238392083865)
(0.0545171641154 0.163159580375 -0.234851074087)
(0.0888484088063 0.160067088502 -0.225488995639)
(0.121647728727 0.156514554039 -0.211435064956)
(0.151083472404 0.154046391774 -0.193609737654)
(0.179131291309 0.15399430917 -0.173353536147)
(0.202550440484 0.162686029772 -0.151037949638)
(0.213707533931 0.173052857864 -0.131809705277)
(0.212980537896 0.181516056874 -0.10782514317)
(0.20587642197 0.184447108914 -0.0802968557131)
(0.192096940519 0.17985864896 -0.0503396126534)
(0.169589813051 0.162649984217 -0.0241444972391)
(0.133516319975 0.144101852759 -0.016399231456)
(0.123085291908 0.0698087157243 0.0204238776312)
(0.135690503192 0.0629322020213 0.0528228290873)
(0.116653387156 0.0489286971068 0.0754547685064)
(0.0975102622517 0.0416587691336 0.0950345862874)
(0.071897535447 0.0358603576888 0.109475010136)
(0.0443061200967 0.0317453256496 0.118429462668)
(0.0159172092869 0.0299571612758 0.122217060479)
(0.0189707076996 0.18848900753 -0.218760288214)
(0.0534823849127 0.186859211775 -0.21497473445)
(0.087291479327 0.182489561028 -0.205414383754)
(0.120482950877 0.177002636617 -0.191015918192)
(0.152236927506 0.171026095654 -0.172212552857)
(0.188560524314 0.165580501382 -0.150732002974)
(0.222376196553 0.168506253235 -0.1236932483)
(0.243114333255 0.133137579669 -0.115413650568)
(0.225769325063 0.134012589195 -0.0924509274951)
(0.210163858272 0.138349004475 -0.065458702109)
(0.186073061893 0.13752338687 -0.0374709575459)
(0.167183396825 0.131240153291 -0.00974099576289)
(0.0587092718844 0.123478747943 0.0203938666451)
(0.066302098781 0.0205248381386 0.0222179519674)
(0.12168424415 0.0361491570913 0.0589660025984)
(0.103630847309 0.0346491803414 0.0814341372928)
(0.0912705894946 0.03179153251 0.100300251048)
(0.0678695120993 0.027295262009 0.114107586506)
(0.0419249083547 0.0234663171823 0.122214301101)
(0.0151856715311 0.0215822262012 0.125406945221)
(0.0183228098063 0.20957528746 -0.194942290705)
(0.0513459970205 0.20745871027 -0.190924856754)
(0.0833577888334 0.202030734371 -0.181113210688)
(0.114100318226 0.194689641189 -0.16624487179)
(0.142426549561 0.185803119329 -0.146093514114)
(0.173501766739 0.175326584203 -0.121718184904)
(0.137436127958 0.183527042925 -0.0630919617211)
(0.121496120323 -0.0138218775898 -0.00462332844983)
(0.154972647157 0.0163982545939 0.0576231423105)
(0.115117871743 0.0227731663722 0.0817702184484)
(0.0932494367704 0.0216522551437 0.100699974084)
(0.0666115118572 0.0174320349051 0.114243739738)
(0.0406274385702 0.0132391238026 0.121333278857)
(0.0145926156095 0.0108533161041 0.124354197938)
(0.0172703265255 0.226833688715 -0.167185895508)
(0.0484029795152 0.224188092821 -0.163147364634)
(0.0783761194221 0.217897121835 -0.153364792894)
(0.107482224297 0.209504975544 -0.138428777959)
(0.133712764083 0.199984267026 -0.11775202141)
(0.173900573879 0.189193738056 -0.0917955604239)
(0.127902072737 0.190175836355 -0.0258429896764)
(0.12181931326 0.0300743797022 -0.00581108918508)
(0.153299308766 0.0251625273828 0.0574381855958)
(0.113101015438 0.0210744970914 0.0812737422096)
(0.08953521987 0.0151538929322 0.099445139963)
(0.0626905118189 0.00846250073434 0.111014198099)
(0.0375819832645 0.0030135790772 0.116757701655)
(0.0135443637858 -1.80380005673e-05 0.118422274135)
(0.0158104683013 0.239592433335 -0.135680653714)
(0.0443148217323 0.236366214975 -0.131725175474)
(0.0719433076873 0.228954550843 -0.122592701955)
(0.0989504097455 0.218824949885 -0.108344825014)
(0.123758183945 0.20676182205 -0.0886455081764)
(0.163953740368 0.196848124223 -0.0635873579695)
(0.125428259059 0.20215685388 -0.00130029537351)
(0.11994112674 0.0374254957072 -0.00518716600196)
(0.149054322211 0.0270894716029 0.0570414890299)
(0.106800221254 0.0185724276825 0.0788863114996)
(0.0830078243792 0.00904761685648 0.0943928056506)
(0.0570945651929 0.000158036173395 0.103505640784)
(0.0340433745428 -0.00626724536991 0.107514081529)
(0.0123308626501 -0.00987887795478 0.108702253288)
(0.0138924769039 0.2472651205 -0.101206274652)
(0.0390779464914 0.243588140573 -0.0974485500434)
(0.0631744385251 0.234705484047 -0.0893223659073)
(0.0866062613986 0.221388969813 -0.0764896567695)
(0.110495226828 0.203181354539 -0.0587056453745)
(0.160267698923 0.178565705856 -0.0319662249205)
(0.12335812224 0.110335194588 0.0408367414242)
(0.117679738388 0.0643922179775 0.00578581856003)
(0.133485608007 0.0305842756961 0.0586225578254)
(0.0954137597736 0.0176878417045 0.0756799119518)
(0.0729098568907 0.00440981768877 0.0872301301447)
(0.0494166680186 -0.00650564849753 0.0930463491299)
(0.0292580686221 -0.0141985809411 0.095036233414)
(0.0106981859645 -0.0185008477571 0.0952855872853)
(0.0116304900838 0.249593795852 -0.064217446961)
(0.0323923403126 0.246137785572 -0.0610464119703)
(0.0510777281196 0.237410659368 -0.054739033158)
(0.0672628274314 0.224065709279 -0.0448699047394)
(0.0755538934254 0.205635518644 -0.0304446406309)
(0.0721980401368 0.175446746085 -0.00988510037048)
(0.0293003511221 0.112306996134 0.0131353535405)
(0.0245947779712 0.149165738397 0.0162837517423)
(0.0649725242998 0.135705647021 0.0405860330092)
(0.0514658254016 0.138824321019 0.0439115249376)
(0.067731050358 0.137907820111 0.0489049745108)
(0.0898232363855 0.132584392171 0.0530660542239)
(0.147793127238 0.124870194513 0.0585528973075)
(0.152010645088 0.0850526369752 0.0517774841339)
(0.112946883214 0.0412881240788 0.065057925714)
(0.0815490339138 0.0198888079058 0.0725083336034)
(0.0600837410866 0.00159596082357 0.0781551581864)
(0.0399356846539 -0.0116634348812 0.0800425224567)
(0.0234815898104 -0.0202754234995 0.0798210522654)
(0.00878381627063 -0.0250691966148 0.0791429579818)
(0.00967008106002 0.245679388649 -0.0255792458536)
(0.0269044173107 0.24286014763 -0.0225648577868)
(0.0421848889346 0.235230831799 -0.0177516895261)
(0.0549974132173 0.224197244492 -0.0104609895776)
(0.0612585147184 0.209997205361 -0.000278028844743)
(0.0621508804648 0.195831884521 0.0130193062263)
(0.0477249726247 0.190488201208 0.0306440748523)
(0.0441614318234 0.208872686366 0.0356903113765)
(0.0511005082246 0.192398152772 0.0488324995971)
(0.0523868071196 0.191512083533 0.0562321210896)
(0.0603174594 0.183559163647 0.060436104961)
(0.0677937928533 0.167608320672 0.0614838197208)
(0.0813738410145 0.14354626599 0.0623836225248)
(0.0877172814509 0.0872745910553 0.0589979453008)
(0.0731981016212 0.0459671049991 0.0629958297981)
(0.0560807317299 0.0191989621828 0.0649803290755)
(0.0419717866031 -0.00150539029256 0.0657758418108)
(0.0281391185451 -0.0156748832889 0.0645385911707)
(0.0167362608756 -0.024439755878 0.062535437377)
(0.00656637438857 -0.0293863700976 0.060971784183)
(0.00785739573189 0.234251349725 0.0135824123242)
(0.0215193944677 0.232230618843 0.0164990284301)
(0.0330435358761 0.225121775222 0.0199612624727)
(0.042049562093 0.215394164689 0.0249689216025)
(0.0461547935158 0.202817487155 0.0317472246541)
(0.0478065325909 0.190296303099 0.0389305072875)
(0.0428329422227 0.179722878908 0.0498009735796)
(0.0384920338526 0.178939343247 0.0552977713665)
(0.0391799985286 0.168209175426 0.06230953863)
(0.0396765392663 0.157911904148 0.0657777660869)
(0.0420725071605 0.142686112231 0.0664986780765)
(0.0456916622864 0.122512456015 0.0656234673531)
(0.0509657356259 0.0988881531161 0.0636317811504)
(0.052508794937 0.066147452604 0.0597323432861)
(0.0448697457309 0.0366444375616 0.0580821574714)
(0.0342904062538 0.0136165551708 0.0550458992681)
(0.025147150859 -0.00518048755313 0.051619464687)
(0.0167160848342 -0.0183406806482 0.0477259821515)
(0.0100578233829 -0.0265593135589 0.04444037289)
(0.00440536046142 -0.0312773283753 0.042262402479)
(0.00657167391169 0.215193769675 0.0516659580495)
(0.0167572381102 0.213081263414 0.054095738769)
(0.0251492710315 0.207464683586 0.0569952470583)
(0.0319586722443 0.199329704466 0.0604305448214)
(0.0350917642788 0.189201123026 0.0644394034705)
(0.0364181217767 0.178829413215 0.0686753697713)
(0.0332305631028 0.167015965098 0.0743663148815)
(0.0287828136712 0.158660044404 0.0773478349674)
(0.0263075420494 0.147317198884 0.0791126430422)
(0.0237489566965 0.134383348104 0.0783399429416)
(0.0224380594127 0.118972860559 0.0753351029693)
(0.0224334424274 0.100850384616 0.0706342370585)
(0.0231545476546 0.0794494581277 0.0647156605751)
(0.0226518937757 0.0543193394007 0.0576361125188)
(0.0187861169498 0.0297042662727 0.051133860092)
(0.0135959314588 0.00932697236766 0.0440500398116)
(0.00937463253281 -0.00717034387216 0.0373153188728)
(0.00595060577874 -0.0189420214271 0.0313811957169)
(0.00366574080009 -0.0265024777073 0.0268866738293)
(0.00225764180924 -0.0309304663566 0.0241097443515)
(0.00456234890643 0.18812947066 0.0862246924328)
(0.012594285911 0.185938848625 0.0884184566937)
(0.0186357905498 0.181556515515 0.0908170534543)
(0.0227644190615 0.174612995021 0.0932264910246)
(0.0241517056749 0.165778569617 0.0952574506102)
(0.0234528693666 0.155684461401 0.0967346208225)
(0.0201010073485 0.143710156168 0.0983639359105)
(0.0155448859961 0.133076542726 0.0974380065521)
(0.0113744350873 0.120816654076 0.095052890507)
(0.00754531192404 0.107753979915 0.0902491541532)
(0.00461753159907 0.0935124187034 0.0833837149812)
(0.00246111387445 0.0777347789011 0.0748923060524)
(0.00119304456669 0.0602178710402 0.0651376406469)
(3.14212644243e-05 0.0411529363065 0.0545067502752)
(-0.001778121163 0.0221486737701 0.0439752309349)
(-0.0034278610322 0.00567332027804 0.0336225828047)
(-0.0039307044614 -0.0078436673138 0.0242943828118)
(-0.00351502001555 -0.0179279613056 0.0166097258195)
(-0.00211604425177 -0.0247212058087 0.0109520068996)
(0.000217348107643 -0.0286409311981 0.00746535172127)
(0.00328579662558 0.15353665013 0.115895633781)
(0.00905811754383 0.152388527745 0.117495722248)
(0.0130215999773 0.148640686764 0.119441613024)
(0.0150096567054 0.142908597002 0.120959437096)
(0.0144750222276 0.135356291821 0.121571397093)
(0.0121253523951 0.126609505091 0.120999369011)
(0.00808250578315 0.116558845937 0.118641044775)
(0.00279391937339 0.106469176271 0.114271350921)
(-0.00245906089541 0.0955461088915 0.108415197694)
(-0.00716799625588 0.0842489734467 0.100227159902)
(-0.0111995523191 0.0720069823708 0.0900138620524)
(-0.0142475672623 0.0589675173541 0.078094751969)
(-0.0162607051774 0.0450310631687 0.0650335460365)
(-0.0173619213297 0.030437729716 0.0512934817602)
(-0.0176786901013 0.0160723448255 0.0376772834125)
(-0.0168750547993 0.00334773605426 0.024757449748)
(-0.0147278125932 -0.00731159353234 0.0133023422608)
(-0.011517533486 -0.0155703342032 0.00390396639632)
(-0.00712801093342 -0.0212244917259 -0.00298242572583)
(-0.00154691260639 -0.0246703120463 -0.00724638488904)
(0.00236497173877 0.1132550561 0.139294010165)
(0.00646874930396 0.112954941708 0.140484720566)
(0.00842572964755 0.110165086749 0.141526091473)
(0.00862272543216 0.105676214115 0.14210729702)
(0.00668267301965 0.0998880195146 0.141566756987)
(0.00313131979167 0.0930398200137 0.138740802238)
(-0.00186960222284 0.0852622762283 0.134261427796)
(-0.00771166414155 0.0770884493471 0.127320807234)
(-0.0133860658121 0.0687436069745 0.118385216931)
(-0.0186903713056 0.0600259383468 0.107429001853)
(-0.0233169576988 0.0509535646485 0.09466058389)
(-0.0268748210181 0.0413568162358 0.0802671268372)
(-0.0291580276647 0.031277872484 0.0646633075753)
(-0.0299771365134 0.0209449779819 0.0484598237746)
(-0.029257903573 0.0108682807213 0.0325622121147)
(-0.0269771173149 0.00179628179199 0.0175855785854)
(-0.0230911057524 -0.00595684855135 0.00432001844037)
(-0.0177628664543 -0.0120835374047 -0.00655158229839)
(-0.0110177333828 -0.0163198391802 -0.0144525533436)
(-0.00298960238609 -0.0192602851362 -0.0191157109831)
(0.00161557314215 0.0691630235928 0.155427519965)
(0.00412113531128 0.0695593622216 0.156270864555)
(0.00473587900743 0.0677919632554 0.156524824854)
(0.00405076611146 0.0650668931233 0.156260640907)
(0.00123571422617 0.0614354451428 0.154755028806)
(-0.00321589264471 0.0571225417954 0.150755452737)
(-0.00881915209089 0.0521773389239 0.144335743403)
(-0.0149511080769 0.0470851286203 0.135576901996)
(-0.0209731857593 0.041880276341 0.124714552392)
(-0.0265626357919 0.0364521458099 0.1119386311)
(-0.0314651521404 0.0308730517081 0.0974823079931)
(-0.0353223063333 0.0250476812418 0.0814134504878)
(-0.0377034652236 0.018933088145 0.0640934406155)
(-0.0383707217274 0.012743584065 0.0462164075651)
(-0.0370920106578 0.00671249685366 0.0286038142615)
(-0.0338352855354 0.00112636929432 0.0121702651316)
(-0.0287004959578 -0.00369094272455 -0.00237706935382)
(-0.0219143709933 -0.00751505587613 -0.0142460259909)
(-0.0136125473477 -0.010110171228 -0.0226942441802)
(-0.00391215758968 -0.0124198837461 -0.0278037627671)
(0.000735248852663 0.0237054919336 0.163503594075)
(0.00220436725034 0.0243502173867 0.163920930342)
(0.00269649551048 0.0239417406407 0.163828007627)
(0.00162731330861 0.0231172098343 0.163457797925)
(-0.00167710708771 0.0218613308311 0.161087880732)
(-0.00653143749572 0.0203093705999 0.156231630239)
(-0.0124607702532 0.0186508016815 0.149219816035)
(-0.0188418960716 0.0169045588059 0.139583902434)
(-0.0251771237045 0.015129390936 0.127815718354)
(-0.0311058963536 0.0132725862347 0.114124005119)
(-0.0362360198729 0.0113958227244 0.0986561300944)
(-0.0402340859157 0.00945266408557 0.0815512537342)
(-0.0426627199848 0.00745967335842 0.0632789523109)
(-0.0431616776894 0.00539763999182 0.0444314799632)
(-0.0416294655858 0.0034048448399 0.0258537393234)
(-0.0379711827762 0.00147261593383 0.00843253340095)
(-0.0321704672887 -0.000212991977126 -0.00695023414398)
(-0.0244736395017 -0.0016203665601 -0.0194273904049)
(-0.0152602680745 -0.00263794171734 -0.0281615682938)
(-0.00492047535209 -0.00418891898068 -0.033457444426)
(0.0204789667909 0.0171814363985 -0.329675058784)
(0.0592460999267 0.0178888510391 -0.324969718054)
(0.0971808808815 0.017911978344 -0.314513345597)
(0.132060423414 0.0181307459329 -0.299472741272)
(0.162793732618 0.0183290625685 -0.28057474937)
(0.188572758658 0.0184566442663 -0.258417780194)
(0.208810549203 0.0187355875211 -0.233709010999)
(0.223594172034 0.0188641676133 -0.206658650379)
(0.232853060662 0.0189284964864 -0.1777426588)
(0.236129073379 0.0188717856904 -0.146951233117)
(0.234077945305 0.0190416115726 -0.115679340647)
(0.227933948476 0.0188126456655 -0.0814395570196)
(0.216656076977 0.0161168868945 -0.0482616790444)
(0.200170555795 0.0135996212777 -0.016508961341)
(0.179603260354 0.0119213366684 0.0134672006775)
(0.15450132229 0.0105946163351 0.0407998837555)
(0.125163346768 0.00956085863437 0.063771601708)
(0.091958660754 0.00882896603787 0.0819650058314)
(0.0558022024604 0.00814237065117 0.0945746489875)
(0.0190844319878 0.00795412026295 0.100559250714)
(0.0214379066381 0.0502536383792 -0.327356920745)
(0.0602429914934 0.0506175563416 -0.323385172637)
(0.0978797141868 0.0504533907902 -0.313148480015)
(0.13303462068 0.0507052111404 -0.298001970445)
(0.163726357825 0.051045527924 -0.278676802704)
(0.189548627099 0.0514538743966 -0.256054978145)
(0.209803178211 0.0523762573244 -0.230678709747)
(0.224488911292 0.0527142491084 -0.203357976671)
(0.23373234297 0.0528598175103 -0.173433596787)
(0.237409320171 0.0522422401391 -0.141716232068)
(0.235407916003 0.0510143587262 -0.107812373535)
(0.226825384664 0.0482169859158 -0.0756198222851)
(0.213436538324 0.0441329349448 -0.0421408494816)
(0.19791596154 0.0377845768796 -0.0102667566935)
(0.178213881428 0.0337621195025 0.0200589508575)
(0.153423207703 0.0302698024751 0.0477011638819)
(0.124585516347 0.0278442132556 0.0707615573711)
(0.0918372500623 0.0258185060839 0.0888451677096)
(0.0565618514483 0.0241891414573 0.101005279212)
(0.0201275763134 0.0234569167706 0.106532528273)
(0.0215566225634 0.0833126372523 -0.321407848646)
(0.0602874194234 0.0834853932129 -0.317679524542)
(0.0980608001558 0.0831085864568 -0.307358871272)
(0.133328226577 0.0828474521139 -0.291832532748)
(0.164048057536 0.082718421908 -0.272105368608)
(0.189994360815 0.0830843726759 -0.249090042737)
(0.209906217713 0.0845284086528 -0.223394127818)
(0.224054163591 0.0847132391661 -0.1958302937)
(0.232810309047 0.0845018562932 -0.165558769152)
(0.235237077782 0.0830609430518 -0.133347161519)
(0.231557341849 0.0796525936205 -0.100416011374)
(0.223276040085 0.0707992453316 -0.0659877871322)
(0.208868626168 0.0688848653849 -0.0301642059846)
(0.192528475221 0.057170467473 -7.69629486279e-05)
(0.174241515137 0.0507373988128 0.029949025398)
(0.150164356902 0.0451029754994 0.0572885759077)
(0.121955694362 0.0411760037077 0.0809941356408)
(0.0897869295439 0.0380858285598 0.0989617038479)
(0.0554397058392 0.0358946651378 0.110873288601)
(0.0198077955366 0.034792258564 0.115715488357)
(0.0216355293237 0.115875186035 -0.312157437531)
(0.0603507000349 0.115894315531 -0.308354981022)
(0.0982445641446 0.114832307068 -0.297746649999)
(0.133642467492 0.11370707943 -0.281837872337)
(0.164532110655 0.113064460382 -0.261802032159)
(0.190981767319 0.113339057631 -0.238606864715)
(0.210418715464 0.116376088607 -0.212705417554)
(0.223530532011 0.117589662267 -0.185546057784)
(0.231502488306 0.117884645852 -0.154873349517)
(0.232777799298 0.117526482322 -0.122053439325)
(0.224531023269 0.114325114057 -0.0917754816946)
(0.217745654777 0.11283089968 -0.0564860961846)
(0.202070704641 0.106497032421 -0.00906330171521)
(0.182547068037 0.0735785229318 0.0128888065859)
(0.167724047848 0.0631904030747 0.0418527660511)
(0.145063757981 0.0545504887513 0.0690541602309)
(0.11852618437 0.0491496499939 0.0927826229242)
(0.0874062184354 0.0451701008722 0.110808545584)
(0.0537188729827 0.0421004339312 0.122703893102)
(0.0192762517545 0.0409372314907 0.127550124897)
(0.0215586109009 0.147055125339 -0.299218928781)
(0.0602923982147 0.146595154925 -0.295192125746)
(0.0982481288389 0.14460017416 -0.284252139657)
(0.133909311373 0.142421174177 -0.268031227417)
(0.165340132798 0.1409536815 -0.247738926526)
(0.19349018382 0.14033281405 -0.224399602574)
(0.213600001625 0.143419346284 -0.198107607195)
(0.225101472356 0.14790333193 -0.172693626453)
(0.23240891821 0.150109537289 -0.141773368223)
(0.231997862106 0.148442359082 -0.107661126512)
(0.227473458536 0.144088036351 -0.0693792401656)
(0.216619764764 0.134779341655 -0.0287746535977)
(0.175668889011 0.100515631813 0.00840008176164)
(0.154604820408 0.0701560749543 0.0238258863015)
(0.157464720254 0.0655179748017 0.0540153562837)
(0.138016211832 0.0565397375663 0.0814116007363)
(0.114252098288 0.0508342236218 0.104957209067)
(0.0842705797516 0.0457890528912 0.122849974798)
(0.0516962959512 0.0418037380261 0.13447299957)
(0.0185880801319 0.0403776717627 0.139268586156)
(0.0213859161333 0.176590444706 -0.282045035661)
(0.0600762159762 0.175606920644 -0.277667544019)
(0.0977808416226 0.172613224118 -0.266486408246)
(0.133636961816 0.16940903449 -0.249989690522)
(0.165391052627 0.1675370608 -0.229184702642)
(0.194556593739 0.168325586244 -0.205849516848)
(0.217645003125 0.178366937982 -0.181269139595)
(0.229643717899 0.18192168852 -0.157690663516)
(0.231440518234 0.189062941572 -0.130355862908)
(0.22692831067 0.191093943562 -0.0980735335541)
(0.212016177839 0.186277277677 -0.0630099773087)
(0.179460741247 0.164771868581 -0.0368997826946)
(0.151912311595 0.141336531566 -0.0237970149547)
(0.15154024474 0.0713135481022 0.0260746815752)
(0.155930636186 0.0679448125654 0.0644376827721)
(0.132257615841 0.0542529630159 0.0920295630007)
(0.110099672499 0.0468758849763 0.115606694783)
(0.0809276142851 0.0405690482464 0.133040352724)
(0.0497089380712 0.0357829171093 0.143890385785)
(0.0178760207933 0.0337280148181 0.148499748868)
(0.0210486312423 0.20381516697 -0.260196272485)
(0.0593306815622 0.202274742245 -0.255460460102)
(0.0967538029102 0.198037339698 -0.244030052005)
(0.13327219634 0.192895077812 -0.227089010243)
(0.167839458043 0.187913516393 -0.205388958507)
(0.20695188318 0.185218521824 -0.181433931639)
(0.234623652752 0.192625878295 -0.150298443302)
(0.253375495257 0.140051477219 -0.140133325527)
(0.243880154661 0.138447895655 -0.115127970543)
(0.230565383666 0.142449292646 -0.0851810919454)
(0.206996341488 0.141290872847 -0.052708423675)
(0.187067567573 0.13587913388 -0.018493248228)
(0.0754455924688 0.133069217619 0.0159141586386)
(0.088684503508 0.0177387387638 0.0328260327705)
(0.143116950586 0.0372000374923 0.0731040053002)
(0.119470947583 0.0371474304981 0.0994886308851)
(0.103833462233 0.034229876774 0.122717930244)
(0.0767766762247 0.029230250813 0.139163788885)
(0.047107063311 0.0245457590725 0.148919545877)
(0.0170782316807 0.0223509330393 0.152885492929)
(0.0205133574377 0.227898949354 -0.233137244072)
(0.0575727549181 0.225819382521 -0.228207880618)
(0.0934530531918 0.220382155318 -0.2163351435)
(0.12801611518 0.213267763781 -0.198882978896)
(0.161283109533 0.204941883141 -0.175909873964)
(0.199142272898 0.196904948504 -0.14687605574)
(0.160968425509 0.215223265455 -0.0848068626588)
(0.146551843996 -0.0205170605498 0.00953493227318)
(0.181749495031 0.0157836893414 0.0744993667463)
(0.132684359753 0.0231127096472 0.102237786702)
(0.106263134751 0.0217618644966 0.124569017078)
(0.0754249390862 0.0165490427488 0.139861436135)
(0.0456759890086 0.0113669178988 0.1481085542)
(0.0164108099698 0.00816556533586 0.151440064919)
(0.0194981463338 0.248054792088 -0.201319678389)
(0.0547939547319 0.245254967474 -0.196205266019)
(0.0887938908207 0.238647327783 -0.18434986871)
(0.121792517349 0.230028982924 -0.166702235641)
(0.153326296461 0.22023385105 -0.143080913127)
(0.20127773039 0.209357497184 -0.113201551019)
(0.152870851347 0.20959009963 -0.0450587245621)
(0.146154670063 0.0317339252411 0.00798628530012)
(0.179558585387 0.0255060542172 0.0750125181929)
(0.130251300402 0.0204771346804 0.101946187224)
(0.101820789821 0.0131833802008 0.122645809027)
(0.0707574983581 0.00476742146366 0.135557204805)
(0.0418682499022 -0.00203957834533 0.142271973571)
(0.0149350499023 -0.00596186287642 0.143952257422)
(0.0179831594883 0.263281984555 -0.16473337026)
(0.0505226721426 0.259888383388 -0.159623153636)
(0.0821768758151 0.251774344371 -0.148492476403)
(0.11289065374 0.240971251755 -0.131511008685)
(0.142683298452 0.22790436207 -0.109610422703)
(0.188892186367 0.218075941014 -0.0812987786154)
(0.148478545355 0.227258421542 -0.0220633293179)
(0.143750300437 0.0403451406811 0.00967705014037)
(0.173863868196 0.0274839674469 0.074454051467)
(0.122388236634 0.0167463595186 0.0989291492444)
(0.0936712824602 0.00482664396537 0.116135485315)
(0.0638065987911 -0.00628501377913 0.125979084208)
(0.0376290759784 -0.0143843672263 0.130506877084)
(0.0135339619721 -0.0186041769043 0.131498232719)
(0.0159769665162 0.273045574589 -0.124121436235)
(0.0450547630113 0.269007524543 -0.11930065665)
(0.0727491945878 0.258998318464 -0.10918907182)
(0.0996158630638 0.244178927128 -0.0936612078781)
(0.128688495527 0.224279968359 -0.072976269338)
(0.189678134892 0.198842837233 -0.0431055376531)
(0.149571966114 0.12208246574 0.0362810455052)
(0.139094832203 0.0813283355387 0.0198804477149)
(0.15438702222 0.0337605054185 0.0750582110985)
(0.107915057082 0.0155639496566 0.094231566938)
(0.0811068818563 -0.00129731885628 0.106658474509)
(0.0542832820365 -0.0150174421597 0.11270278016)
(0.0317704400859 -0.0244725671213 0.114509161146)
(0.0115932393476 -0.0296324926821 0.114475673602)
(0.0134800292099 0.276962006842 -0.0802989091916)
(0.0375171852577 0.273106800637 -0.0758747400628)
(0.0590295641709 0.262889999477 -0.0679174201479)
(0.0781026613167 0.247471080136 -0.0557915358669)
(0.0910286560839 0.226410300364 -0.0385286316577)
(0.0890287912192 0.191536784407 -0.0134032835867)
(0.042033063522 0.119771992675 0.0149102861431)
(0.0346157628825 0.154389480042 0.0275856369471)
(0.0740923011959 0.140771582395 0.0535980857633)
(0.0566167951115 0.143385525723 0.0616273161052)
(0.0712466446143 0.142084474528 0.0675077881267)
(0.0915013064774 0.135401778554 0.0714804283294)
(0.146221191747 0.130141767708 0.0755736917972)
(0.155202005293 0.0991377595769 0.0682886129417)
(0.121315991627 0.0441815777619 0.0810195173629)
(0.087690736122 0.0165678666264 0.0888778042796)
(0.0645223236545 -0.00589737639441 0.0944941511692)
(0.0424880120147 -0.0219752040194 0.0959193672897)
(0.0248095986457 -0.0323537039547 0.0950068600225)
(0.00928990070439 -0.0379927568843 0.0937640821818)
(0.0113621338425 0.273914792112 -0.0343421226743)
(0.0312891835079 0.270639552684 -0.0294086256995)
(0.0486465199375 0.261575445166 -0.0236049806904)
(0.063521363192 0.248480598834 -0.0143111003921)
(0.0719043004793 0.231651889195 -0.00173654981092)
(0.0746642684676 0.211517049848 0.0154321365674)
(0.0557495858667 0.204422453261 0.041497416603)
(0.050132455694 0.22005734199 0.045757012123)
(0.0585717169497 0.201398942626 0.0626573176283)
(0.0562996547982 0.198805355371 0.0716605623341)
(0.061531582174 0.189276981188 0.0767574387834)
(0.0671171878089 0.171676602207 0.0774849713232)
(0.0799756897815 0.145924668164 0.0774330799239)
(0.0883831982465 0.0908508541958 0.0732674123357)
(0.0761604102067 0.0446291307421 0.0766205404726)
(0.0582304359081 0.0136400338437 0.0780862892499)
(0.0433481668312 -0.0106672331355 0.0780648263947)
(0.0286042879768 -0.0273447160749 0.0758518360225)
(0.0168043509004 -0.0376229930486 0.0728075012521)
(0.00669773178639 -0.043329548184 0.0707497113284)
(0.00920023689511 0.262510881765 0.0136437355933)
(0.024975769454 0.259457358449 0.0170093435982)
(0.0379389022646 0.251388361287 0.0217890389129)
(0.048445619211 0.239681048364 0.028268582358)
(0.052921560171 0.224591257703 0.0374247329372)
(0.0551761052228 0.208316534418 0.0452965853084)
(0.0491704660458 0.194045182214 0.060703072904)
(0.0433597435384 0.193225222407 0.0693946686407)
(0.0429499989101 0.178680244231 0.0774807070935)
(0.0407651911024 0.165774325839 0.0816950915515)
(0.0413587910918 0.148360951475 0.0819827912146)
(0.0437694103878 0.12652483622 0.0805016275014)
(0.0481526856087 0.101053375101 0.0773093117126)
(0.0503332030549 0.0669418311065 0.0719129466268)
(0.0436297367172 0.0335032025792 0.068886296293)
(0.0328425274734 0.00687169312426 0.0644151122076)
(0.023605485272 -0.0150776508226 0.059487442867)
(0.0152080757282 -0.0304872782424 0.0541284122765)
(0.00902280312791 -0.0400122997168 0.0497669146534)
(0.00413411652384 -0.0453042328719 0.047002248524)
(0.0069940224772 0.241705468374 0.059905102365)
(0.0193428764331 0.238878081563 0.06219581676)
(0.0289523569703 0.232320550205 0.0667679988916)
(0.0361880507772 0.222601016771 0.071122233469)
(0.03947128779 0.210231232037 0.0761787914925)
(0.04094236783 0.197669850031 0.0813628577754)
(0.0367927138155 0.182841742438 0.0894644991544)
(0.0306370471875 0.172254104859 0.0933907222169)
(0.0265898732293 0.157964575082 0.0956380700677)
(0.0221425520018 0.142587014766 0.0946059404906)
(0.0192791070542 0.125006319227 0.0907829515212)
(0.0180896184264 0.104582520058 0.0846760677441)
(0.0180242472597 0.0809336661706 0.0769167554419)
(0.0175462605621 0.053531281201 0.067730935728)
(0.0140429795319 0.0256269038818 0.0590581576131)
(0.00902148117108 0.00221282875228 0.0497318458255)
(0.005285158616 -0.0169300245135 0.0408554791995)
(0.00261845948425 -0.0305915844311 0.0330466689262)
(0.00153865485706 -0.0393613689045 0.0273031874569)
(0.00167975624349 -0.0442322399075 0.0238581322193)
(0.00507788213881 0.211427458102 0.101629481158)
(0.0143931180117 0.20917361399 0.104123223082)
(0.0212110690462 0.203714104172 0.107711952306)
(0.0253950719565 0.195440887213 0.110886305358)
(0.0264354754118 0.18484805084 0.1133880495)
(0.0252601688206 0.172823383707 0.115457726879)
(0.0205825939561 0.157995173098 0.117310763138)
(0.0144505042452 0.144898951776 0.116464456957)
(0.00878011654098 0.130452064683 0.11369922195)
(0.00316016541339 0.115255790194 0.107914889487)
(-0.00126980825679 0.0988619811342 0.0992213254767)
(-0.00454891538928 0.0808773029143 0.0884799338884)
(-0.00660257003695 0.0610759634249 0.0761211962381)
(-0.00793376500362 0.0396947068235 0.0626859394834)
(-0.0094885472922 0.0179523390254 0.0492462492101)
(-0.0106041438971 -0.00101630971105 0.0360097765546)
(-0.0101411389165 -0.0167028235104 0.0240430322962)
(-0.00835938511708 -0.0283629261957 0.0142069647195)
(-0.00519156407158 -0.0361770591531 0.00712392463469)
(-0.000704330383457 -0.0406238409436 0.00287691509569)
(0.00363295962705 0.17290135534 0.137526289317)
(0.0103278592469 0.171513734964 0.139642555572)
(0.0145252529573 0.166974635364 0.142334515603)
(0.0161428836412 0.16013237699 0.144333806323)
(0.0149922197192 0.151299206122 0.145151255143)
(0.011419139592 0.140654066488 0.144382675153)
(0.00564958114705 0.128507059744 0.141433801699)
(-0.000843685026186 0.116476567327 0.136257233691)
(-0.00738801934845 0.103519000555 0.129125559441)
(-0.0139568388337 0.090313138015 0.119061188104)
(-0.0195145827149 0.0762823604748 0.106431492675)
(-0.0237469739051 0.0613541930492 0.0916432660738)
(-0.0265119677174 0.0454591408038 0.0752928826765)
(-0.0278054991114 0.0288288749685 0.058010554709)
(-0.0277625425673 0.0123186080631 0.0408238229969)
(-0.026147235921 -0.00240164116362 0.0244597752019)
(-0.0226507262946 -0.0147533066637 0.00998617620071)
(-0.0176474507737 -0.0243214170007 -0.0018368923983)
(-0.0110928046784 -0.0308643623696 -0.0103367070492)
(-0.00287655425585 -0.034732695128 -0.0154446984611)
(0.00253893782912 0.127717843381 0.165938431554)
(0.0071275002297 0.127119622956 0.167488257325)
(0.009107623101 0.12372363641 0.168877295542)
(0.00880668172676 0.118535478623 0.169888811469)
(0.00562575915669 0.111890588465 0.169400211612)
(0.000567385153313 0.103620314711 0.166510277467)
(-0.00596192794858 0.0943222043277 0.160231730401)
(-0.0134301550695 0.0847943520854 0.151644521493)
(-0.0206423478661 0.0746389426843 0.140625463984)
(-0.0274755742883 0.0644161665768 0.127229877674)
(-0.0335096186577 0.0539650359607 0.111553774242)
(-0.0382592189493 0.0429827163267 0.0938153137176)
(-0.0413379701445 0.0314063525502 0.0744084312523)
(-0.0423290135522 0.0195367535103 0.0541873356117)
(-0.041169118015 0.00787405317402 0.0341641709055)
(-0.0378644175437 -0.00264225743785 0.0152920270025)
(-0.0323626259663 -0.0116310302742 -0.00136590492712)
(-0.0249352500983 -0.0187401383914 -0.0148621873843)
(-0.0155763553821 -0.023632841088 -0.0246190483316)
(-0.0044723724321 -0.0269205828803 -0.0304366941777)
(0.00158123227846 0.077971808916 0.185671813574)
(0.00438252244055 0.078297979443 0.186561069004)
(0.00486736840445 0.0761750442187 0.187273682694)
(0.00352921542646 0.0731671138317 0.187268747138)
(-0.000698165604949 0.0688236948699 0.185670959814)
(-0.0070850833398 0.0636485112819 0.180952172119)
(-0.0144508573987 0.0577951112152 0.172730425285)
(-0.0221947726806 0.0517085171948 0.161644740826)
(-0.0296882927922 0.0454906813029 0.148086722632)
(-0.0366678981843 0.0391716621469 0.132482306377)
(-0.0429093180613 0.0327505016729 0.114848007297)
(-0.0479732110802 0.026024585554 0.0950897558855)
(-0.0511607240258 0.0189557720279 0.0735944963969)
(-0.0520042569742 0.0118114806257 0.0512711161543)
(-0.0502271400097 0.00477603752021 0.0292662601526)
(-0.045822370235 -0.00167378322737 0.00858491000902)
(-0.0388742931483 -0.00724449042756 -0.00966736135638)
(-0.029706102351 -0.0116442270931 -0.0243725877832)
(-0.0185329982725 -0.014547024519 -0.0348570334902)
(-0.00555087824144 -0.0172532721572 -0.0411351267716)
(0.000824088419167 0.026706542216 0.19542380291)
(0.00244431498244 0.0275213651073 0.196014408243)
(0.00272778101697 0.0269654518019 0.196290041778)
(0.000746537544993 0.0261374573163 0.195987364406)
(-0.00435964549904 0.0245658403158 0.194228565382)
(-0.010972061229 0.0226333366165 0.187547256646)
(-0.0186791440927 0.0207014833276 0.178889964619)
(-0.0268372513068 0.0186190581054 0.166623196584)
(-0.0346311338683 0.0164944791069 0.151856609104)
(-0.0419012299812 0.0143541500144 0.135109778664)
(-0.048372941644 0.0121828149803 0.116326905666)
(-0.0535274260106 0.00994870587487 0.0953600200122)
(-0.056685413558 0.00762841991193 0.072666291444)
(-0.0573675601384 0.00523524549194 0.0492060492207)
(-0.0553078512779 0.00287963683722 0.026024881508)
(-0.050430616811 0.000686660368783 0.00425539528787)
(-0.0427805415358 -0.00122859018676 -0.0150689548757)
(-0.032540846671 -0.00280609662174 -0.0305630421337)
(-0.0203754953361 -0.00393544157732 -0.04177772391)
(-0.00667624712024 -0.00586013201682 -0.0485119015521)
(0.022385462483 0.0181160797688 -0.380839286831)
(0.0646759171472 0.0189575373122 -0.375331349179)
(0.106089103643 0.0190308144211 -0.36321322514)
(0.144022545285 0.0193347641205 -0.345867925576)
(0.177255159338 0.0196429973024 -0.324203710664)
(0.205086910491 0.0199049113078 -0.299099518895)
(0.227084301376 0.0203337634627 -0.271248736382)
(0.24336672747 0.0205561761809 -0.24096546796)
(0.25391509944 0.0209392497817 -0.208452866114)
(0.25811413002 0.0212893388693 -0.174194298026)
(0.25758684729 0.0223846545781 -0.137426763412)
(0.252103658199 0.0207163194914 -0.0980931316854)
(0.239770677198 0.0183781045539 -0.0605684247399)
(0.222380862392 0.0158295434662 -0.0236628484529)
(0.200258600925 0.0140899471447 0.0120132443839)
(0.172653136218 0.012685863779 0.0441251028667)
(0.140054649268 0.0115826478807 0.0716302199554)
(0.103038322089 0.0107870561373 0.0929384156622)
(0.0625521845056 0.0100457569133 0.107866110693)
(0.0214211268506 0.00992469146343 0.115061722556)
(0.0235151471279 0.0530395127879 -0.37845182694)
(0.0659443492722 0.0535780898971 -0.373646420487)
(0.107030566175 0.0535455955738 -0.361720436365)
(0.145295116942 0.0540212047274 -0.344201416297)
(0.178537795495 0.0546946360452 -0.322065418004)
(0.206486729094 0.0555001308975 -0.296291856789)
(0.228384255531 0.0568313660781 -0.267582017395)
(0.244679656484 0.0573458253148 -0.236694201129)
(0.255599120174 0.058027411637 -0.202887672182)
(0.26077060638 0.0580031546407 -0.166089207722)
(0.258686774956 0.0572593107618 -0.128000183061)
(0.25023234561 0.0544496084035 -0.0912033462576)
(0.237129309288 0.0511694339491 -0.0524388793967)
(0.220301415141 0.0441882699954 -0.0151304618369)
(0.199038217519 0.0400477783591 0.0207686562341)
(0.171586728256 0.0363502738475 0.0534164800227)
(0.139435954719 0.0338920615055 0.0806317316989)
(0.102936942479 0.0318252728049 0.10201687579)
(0.0633656185836 0.0300141225661 0.11642578704)
(0.0225826872233 0.0292023292788 0.122863050077)
(0.023674554126 0.0882392103727 -0.372284330676)
(0.0660943816526 0.0886351826755 -0.36769982776)
(0.107392305684 0.0884077190748 -0.355627860214)
(0.145837316083 0.0884400700588 -0.337585531464)
(0.179165631847 0.0886989669288 -0.314911421089)
(0.207263184907 0.0895095739136 -0.288600125669)
(0.228743248385 0.09133680202 -0.259233983682)
(0.244517767751 0.0916529627839 -0.227812654812)
(0.254923854054 0.0918705340323 -0.193319512745)
(0.258303684668 0.0909576412987 -0.156328873069)
(0.255696124547 0.085315340147 -0.118227388814)
(0.248379759222 0.0797269570707 -0.0772615861425)
(0.232454961645 0.0807265598887 -0.0382244957987)
(0.214341581202 0.066401077908 -0.00204615195325)
(0.194749494798 0.0596390413536 0.0336045048377)
(0.168192833962 0.0537412105179 0.0660692318005)
(0.136822710472 0.0498712618223 0.093750331168)
(0.100779329247 0.0465111051746 0.115408051749)
(0.0618941869592 0.044038322519 0.129445093994)
(0.0221606897176 0.0428690743388 0.135087143621)
(0.0237992114806 0.123315549369 -0.362635648575)
(0.0663471165042 0.123501291732 -0.357954722937)
(0.107819331443 0.12261584567 -0.345487997463)
(0.14649937795 0.121810873026 -0.326983950952)
(0.180028252652 0.121612060445 -0.303849120521)
(0.208493196977 0.122326289567 -0.277058005718)
(0.229321963917 0.125913532761 -0.24725036941)
(0.244043133701 0.12623162614 -0.21596954535)
(0.254072429253 0.127044098434 -0.180698657201)
(0.254482787582 0.127551695769 -0.142622613514)
(0.248801180193 0.127908490088 -0.108298763748)
(0.246641848135 0.127109747832 -0.0564979023602)
(0.226300505758 0.120911431398 -0.019064669036)
(0.202463113757 0.0830744949246 0.0135979560558)
(0.187992145322 0.0729797212113 0.0490984383464)
(0.163041243861 0.0644350054753 0.0816596466594)
(0.133273552925 0.0589787681586 0.109609768055)
(0.0981491351707 0.0545096308424 0.131277615957)
(0.0601803759061 0.0510472603691 0.145313133865)
(0.0216402653052 0.0499240103094 0.15108765187)
(0.0237569750587 0.157315656499 -0.349031320593)
(0.0664888327013 0.157013981084 -0.344113010113)
(0.108189094442 0.155183354244 -0.331231286273)
(0.14719679698 0.153330594745 -0.312281426571)
(0.181250070319 0.152354449331 -0.288708467603)
(0.21145612126 0.152250892035 -0.261720729543)
(0.232064390188 0.155211297546 -0.231441837767)
(0.245224171007 0.158175578153 -0.202162536829)
(0.255645203184 0.159227139459 -0.165311800164)
(0.259079112966 0.15759801868 -0.126524499274)
(0.255304062011 0.156111456353 -0.0771447377322)
(0.242547825766 0.140921777758 -0.0356261532004)
(0.195911589495 0.0985957888503 -0.00504329997098)
(0.172512782698 0.0760942820051 0.0276373613977)
(0.178329051404 0.0745471843663 0.0651692768194)
(0.15627403411 0.0658478170233 0.0979058362952)
(0.129007818835 0.0600996281295 0.126096632444)
(0.0949480647288 0.0545955327808 0.147336081854)
(0.0580919993729 0.0499714867729 0.161307679804)
(0.0209023529754 0.0483354085082 0.167013375966)
(0.023648321499 0.190067834882 -0.330527372585)
(0.0664569219232 0.18922913748 -0.325236048065)
(0.108154684883 0.186389647918 -0.312105178606)
(0.147530934919 0.183533296507 -0.292818870053)
(0.182025141171 0.182319389687 -0.26866984439)
(0.212277838043 0.183926697399 -0.241449362446)
(0.23519744712 0.195425728753 -0.212941738542)
(0.248242229045 0.192257542295 -0.184931035015)
(0.25289228485 0.197077430477 -0.153046445303)
(0.251109196454 0.197650911058 -0.114599091724)
(0.23361288322 0.189547719002 -0.0772473054628)
(0.196451918219 0.167175630032 -0.0548333055152)
(0.176590490312 0.14261092399 -0.00565264068804)
(0.181703853717 0.0745978451288 0.0377769681292)
(0.17942372781 0.0749090527953 0.0798487986254)
(0.150794469299 0.0611690525722 0.112705721084)
(0.12509346003 0.0539855326442 0.140384335515)
(0.0915884543983 0.0470733626881 0.161067370392)
(0.0560448639944 0.0413680026269 0.174038495585)
(0.0201924991864 0.0388721124435 0.179485180674)
(0.0234269889537 0.220846134609 -0.306742988306)
(0.0661906675809 0.219414370503 -0.300954933831)
(0.107754044086 0.215372221372 -0.287444975679)
(0.148042269001 0.210710357105 -0.267740330542)
(0.185775817452 0.206424326673 -0.242647861757)
(0.227891283315 0.207084253572 -0.215037019419)
(0.249827856544 0.218022645533 -0.179964698608)
(0.26556601254 0.147799176532 -0.166365154328)
(0.26396499882 0.142983437992 -0.136713904984)
(0.253470412987 0.146185473431 -0.102189236646)
(0.231977493118 0.144577530229 -0.0649398438115)
(0.214025480909 0.14238062927 -0.0207646083944)
(0.0970133048702 0.141609448775 0.023467363933)
(0.113723227572 0.0174580820171 0.0463957834125)
(0.167771436618 0.0400769716995 0.0911498103556)
(0.13832998752 0.0412456205853 0.122347739248)
(0.119118516495 0.0382154112804 0.150072492496)
(0.0872571128862 0.0322300162545 0.169187352752)
(0.0532882763746 0.0263600882578 0.180731200881)
(0.019280859742 0.0233796020554 0.185317740493)
(0.0230266944776 0.248629884329 -0.276683994844)
(0.0649104739781 0.246555414915 -0.270618109414)
(0.105339573203 0.241187710293 -0.256503980107)
(0.143813236255 0.234347681043 -0.23596969993)
(0.183025606714 0.226560264544 -0.21005830394)
(0.227411437884 0.221432240165 -0.176459426388)
(0.185369071815 0.248657060219 -0.11085756541)
(0.172987680678 -0.024759741124 0.0289250180874)
(0.210576215516 0.0166159714748 0.096083184187)
(0.152894498425 0.0248283916204 0.127865557779)
(0.121291291519 0.0223272746619 0.153188022213)
(0.085427458545 0.0156265175305 0.17072330639)
(0.0512078487523 0.00904182530363 0.179824646119)
(0.0183778708462 0.00475166768879 0.182877917216)
(0.0221062232178 0.272277050159 -0.240727363981)
(0.0624049729702 0.269500358691 -0.234419664671)
(0.10110731553 0.262444368021 -0.220195434369)
(0.138276398115 0.253689494349 -0.199487182233)
(0.175845342449 0.243283912919 -0.17317443559)
(0.230810271162 0.232229469602 -0.137616325369)
(0.178763208607 0.229723237785 -0.0664796621438)
(0.171804407103 0.0337899198806 0.027201433878)
(0.207740809292 0.0262166027741 0.0976578292389)
(0.149465502808 0.0198292943093 0.127625019157)
(0.115695536147 0.0104772131324 0.150492891012)
(0.0797940517452 -5.4593344313e-05 0.165117548951)
(0.046765477326 -0.00844057751995 0.172441750278)
(0.0164402948488 -0.0134710904262 0.174026299345)
(0.0206432100838 0.290885505559 -0.198817094474)
(0.058116785401 0.28721658521 -0.192437369876)
(0.0943689197459 0.278373479794 -0.178935916202)
(0.128710336676 0.266874150622 -0.158947934537)
(0.16419989422 0.252821444901 -0.133816261687)
(0.213916012589 0.24328138131 -0.1008673293)
(0.170442086928 0.258846338675 -0.0383110846101)
(0.168531259032 0.0429291664529 0.0293478537601)
(0.200131827627 0.0273734364265 0.0966461976189)
(0.139679537091 0.0142131503136 0.123493626925)
(0.105546254023 -0.000666724279598 0.142497715653)
(0.0713636873039 -0.0143484827642 0.152545377649)
(0.0416151083575 -0.0245076908874 0.157514481441)
(0.0147737274355 -0.0296726740439 0.157772489835)
(0.0185011649631 0.303371234879 -0.151490071783)
(0.0522234973971 0.298964562401 -0.145384419026)
(0.0843509683016 0.28765852712 -0.133054745079)
(0.114928822429 0.271127568275 -0.114399994524)
(0.150107696671 0.24984039303 -0.0909315637337)
(0.223660026859 0.222467821354 -0.0566278996984)
(0.179390046559 0.141383059039 0.0263218720671)
(0.161563850185 0.0979307666058 0.0377168863392)
(0.176687299894 0.0362881474219 0.0952202006569)
(0.121818269489 0.0121765310988 0.116438968886)
(0.0902333577988 -0.00883619713924 0.129667910162)
(0.0597342383021 -0.0256952524679 0.135805626965)
(0.034500001675 -0.0375227795269 0.137068613711)
(0.0124891599072 -0.0437614493311 0.136312473811)
(0.0158558549195 0.309193159054 -0.100093893459)
(0.0439048082776 0.305408520948 -0.0941128076421)
(0.0686975630883 0.29332644899 -0.0841626534952)
(0.091105718777 0.275493311661 -0.0698197960355)
(0.108182866723 0.251757475345 -0.0491714063435)
(0.109092277734 0.210959138765 -0.026283075886)
(0.0579009276162 0.131592661856 0.0131612644022)
(0.0517745641374 0.161682370266 0.0370030954587)
(0.0883580180336 0.143571590489 0.069623713179)
(0.0607459416538 0.146912035558 0.0783791800139)
(0.0744252972014 0.145605715121 0.0852622796572)
(0.0929164505006 0.13795467284 0.0889237157808)
(0.144396934842 0.135911395649 0.0931271043522)
(0.158907140155 0.112407220925 0.0865329610209)
(0.13006920416 0.0462301194977 0.099187199187)
(0.0945318945456 0.011496087112 0.107715643082)
(0.0695117014021 -0.0156691051894 0.113315671975)
(0.0452218709114 -0.0350880652455 0.114145476886)
(0.0260125477696 -0.0476972508174 0.112070210795)
(0.00972353167522 -0.0543917436244 0.109934500854)
(0.0139200842033 0.307948731176 -0.0447187027266)
(0.0370343626516 0.303784545742 -0.039472741676)
(0.0564982386102 0.293177977697 -0.0314804825636)
(0.0741068450036 0.277748968623 -0.0205351892538)
(0.0844384758354 0.258146517184 -0.00181391560119)
(0.0913519231911 0.231658755141 0.0123774662036)
(0.0667376936468 0.222241240042 0.0540663838212)
(0.057597856905 0.235736924607 0.05335894208)
(0.0680884359717 0.208677840097 0.0765853349461)
(0.060855802311 0.205568151161 0.0867009394784)
(0.0630322224953 0.194693415881 0.0923352476016)
(0.0662639735113 0.175118073927 0.0934690411648)
(0.0783532780752 0.147822996197 0.0930338686204)
(0.0888187090564 0.0933208326997 0.0885622757313)
(0.0791738177963 0.0419782793814 0.0916998209817)
(0.0605296321362 0.006105352008 0.092617353434)
(0.0448106687689 -0.0223941428232 0.0917283480051)
(0.028949851942 -0.0421605820273 0.0883000781607)
(0.016662167203 -0.0543210795225 0.0839292067011)
(0.0067596091152 -0.060936546668 0.0808949058881)
(0.0105592025966 0.296723673008 0.0126686999783)
(0.0292002822478 0.292186664274 0.016597962958)
(0.0442632907796 0.282973165041 0.0231166469755)
(0.0567066680786 0.268868009412 0.0309106037093)
(0.0608783804602 0.250905286633 0.0410428478215)
(0.0645046237984 0.230243824352 0.0498803121905)
(0.0586827681488 0.210423899938 0.0790978183809)
(0.0498063968192 0.210080060162 0.0813385403769)
(0.0470597727603 0.190437419105 0.0930382994144)
(0.0420471927668 0.174522245071 0.0980925353904)
(0.0403527848581 0.154470797669 0.0982103137902)
(0.0412934044443 0.130521631013 0.0958562006631)
(0.0446175671441 0.102987123266 0.0915366421176)
(0.047489154517 0.0670068468246 0.0846659633406)
(0.0418878247769 0.029086631802 0.0802645901219)
(0.0309535185847 -0.0017826023401 0.0742041763462)
(0.0216407154059 -0.0275431172832 0.0675809830348)
(0.0132073898531 -0.0458057003762 0.0604877513276)
(0.00761432456124 -0.057047987425 0.0545069519695)
(0.00376035523905 -0.0632604813155 0.0507239451095)
(0.00795408565641 0.273591838589 0.0681406783307)
(0.0227034731958 0.270285659218 0.0716422429575)
(0.0337643897556 0.26245551548 0.0772499808116)
(0.0416106987082 0.250724853506 0.0827086789337)
(0.04484370199 0.235322193786 0.0887965772385)
(0.0469954205775 0.220777041052 0.0954863552887)
(0.0417628594611 0.201370723905 0.105797080966)
(0.0330325202389 0.187455280598 0.110796334007)
(0.0269841429836 0.170129215184 0.113571229656)
(0.0202394162552 0.151889892798 0.112273073167)
(0.0153900346258 0.131714740311 0.107410508636)
(0.0126884864909 0.108558302031 0.0995520624218)
(0.0117003728864 0.0822429902528 0.0896295905126)
(0.0112663050577 0.0521807578091 0.0779695085093)
(0.00817164891724 0.020406647284 0.0669073842244)
(0.00339998226073 -0.00663490803892 0.0550205903882)
(0.000193069770277 -0.029086513299 0.0436024033086)
(-0.00158928970016 -0.0452167554644 0.0335404143061)
(-0.00124553233508 -0.0555740282783 0.0261345634127)
(0.000819692355935 -0.0613159467322 0.0216891154718)
(0.00580847310978 0.239699644508 0.118553006736)
(0.0168793071099 0.237169783761 0.121964692182)
(0.0245212669824 0.230512986687 0.126641715832)
(0.0286729825436 0.220594726254 0.130663771166)
(0.0293253901049 0.207868529522 0.133840853098)
(0.0275537188609 0.193452155369 0.136133778609)
(0.0214490587234 0.174815708608 0.138218805463)
(0.0134174219666 0.159061349404 0.137675965268)
(0.00577284345688 0.141785724257 0.134477458206)
(-0.00215321253592 0.123950196226 0.127392722402)
(-0.00851627464257 0.105005274421 0.116610466434)
(-0.0131847304684 0.0844217570703 0.103194553652)
(-0.0161376348706 0.0619772685623 0.087773168967)
(-0.0176880813748 0.0377919005039 0.0710066454839)
(-0.0189383178055 0.0127912679616 0.0541194683735)
(-0.0194448716901 -0.00927951368456 0.0373664909557)
(-0.0178583297962 -0.0276685749791 0.0221874972615)
(-0.014464937101 -0.0414100791518 0.00964046016435)
(-0.00918526259071 -0.0506181336946 0.000624290901522)
(-0.00207137340432 -0.0558192450032 -0.00478032278191)
(0.00411058804551 0.196258590469 0.161827182665)
(0.0119665085679 0.194560451839 0.164607021416)
(0.0165893663644 0.188992451179 0.168013666292)
(0.017767076899 0.180956702931 0.170942647026)
(0.0156541840482 0.170508581963 0.172030655548)
(0.0106366569645 0.158064979833 0.170918537145)
(0.00329428060983 0.142854097877 0.167360143905)
(-0.00501897738792 0.128319795592 0.161425680508)
(-0.0136876236613 0.112803404929 0.152422340387)
(-0.0222519030259 0.0973485490941 0.14007923723)
(-0.0296420878383 0.0812367411215 0.124540266984)
(-0.0353362760742 0.0641567012825 0.106345677564)
(-0.0390842198321 0.0459240619756 0.0861297828063)
(-0.0406630108457 0.0268573015743 0.0646669895272)
(-0.0402468271389 0.00768117910444 0.0431235194197)
(-0.037626013089 -0.00950389837098 0.0225912774659)
(-0.032530122603 -0.0240009098878 0.00438987677549)
(-0.0253655649473 -0.0352140697912 -0.0105596205667)
(-0.016135997682 -0.0429643964247 -0.0213338410113)
(-0.00460193907902 -0.047586974338 -0.027575977538)
(0.00281093154681 0.145133284953 0.195906286661)
(0.00811836079443 0.144264758458 0.198039199583)
(0.0101787813538 0.140190561842 0.200193232633)
(0.00922997900953 0.134130007088 0.201680285796)
(0.00485814529229 0.126353689554 0.201278433709)
(-0.00248032794495 0.116596837598 0.197825059983)
(-0.0113290787642 0.105344665337 0.189753823617)
(-0.0204087136724 0.0935817775337 0.178993598282)
(-0.0294363992069 0.0814347130648 0.165455478163)
(-0.0380804806298 0.069495213312 0.149283110083)
(-0.045885739795 0.0574984777455 0.130245309355)
(-0.0521995791145 0.0448618946399 0.108605577578)
(-0.0563285246752 0.0314788759292 0.0846523589674)
(-0.0576486520901 0.0176989929915 0.0595225049256)
(-0.0560230829894 0.00411170587228 0.0345421493054)
(-0.0514568553118 -0.00820313117818 0.0109703132174)
(-0.0439315323544 -0.0187351442093 -0.00976479580173)
(-0.0339171503562 -0.0270348253894 -0.0268181892613)
(-0.0215309345018 -0.0327936184754 -0.0390643962222)
(-0.00658717783528 -0.0366485583606 -0.0463383455766)
(0.00169088628051 0.0886898127548 0.219550963718)
(0.00495903018401 0.0888452234025 0.221135674545)
(0.00527609493189 0.0863459043497 0.222399303565)
(0.00303850769462 0.0827626386726 0.222741595795)
(-0.00287287247751 0.0781771475183 0.221038768495)
(-0.0116866803413 0.0713220262084 0.215765728865)
(-0.0215037612861 0.0646680451231 0.20513129863)
(-0.0312105996771 0.057223484158 0.190852148136)
(-0.0403417566616 0.0497560792605 0.174068601253)
(-0.0488545372765 0.042367490252 0.155250399097)
(-0.0568183042392 0.0349860500399 0.134122364977)
(-0.0635565348368 0.0271885978463 0.110083624535)
(-0.0679061938957 0.0189181772504 0.083519221959)
(-0.0690576777428 0.0104871606443 0.0557793115878)
(-0.0667087857165 0.0022446795547 0.028361043164)
(-0.0608719520624 -0.00528472157256 0.00259921657137)
(-0.0516150009266 -0.0118235651601 -0.0200284176418)
(-0.0394769052389 -0.0169601064006 -0.0385983443821)
(-0.0248157451826 -0.0204534619774 -0.0518175200371)
(-0.00770024931075 -0.0233884979073 -0.0596459761276)
(0.000918160228156 0.0304381374363 0.231434839342)
(0.00291295039443 0.0312772607491 0.232571742144)
(0.00283303467631 0.0306283976845 0.233512488437)
(0.000295125611673 0.029596187271 0.233202510637)
(-0.00730734901222 0.0282478663473 0.23117660842)
(-0.0167947545226 0.0253635506096 0.22489276828)
(-0.0264578920224 0.0232714018139 0.213106483348)
(-0.036910216301 0.0207221820824 0.197130474388)
(-0.0462702576264 0.0181445270474 0.178656233274)
(-0.0549872469929 0.0156173632503 0.15834598397)
(-0.0631254080312 0.0131264898896 0.13597652999)
(-0.0699765858895 0.0105280514609 0.11048478528)
(-0.0742924682915 0.00779245979703 0.0824594800623)
(-0.0752418116097 0.00495011321186 0.0532534136419)
(-0.0726017279574 0.00216530313044 0.0244425241282)
(-0.0663177810374 -0.000431053960187 -0.00271285184573)
(-0.0561800843173 -0.00265912601014 -0.0265546573245)
(-0.0428697857976 -0.00443121758488 -0.0462808207186)
(-0.0269479592749 -0.00575748147606 -0.0602781289441)
(-0.00889818779166 -0.00796880192192 -0.0689060988615)
(0.0246516574303 0.0191281842024 -0.434459134778)
(0.0710340457347 0.0201008449168 -0.42848798559)
(0.116344774086 0.0202455204441 -0.414855642765)
(0.157754642455 0.0206439443485 -0.395257163548)
(0.193683235337 0.0210557652444 -0.370663190778)
(0.2235848382 0.0214562303192 -0.342753007713)
(0.24735973879 0.0221194842936 -0.311947440041)
(0.265320043893 0.0226024004269 -0.279035741522)
(0.277246191474 0.0234548329199 -0.243365545918)
(0.283371313725 0.0249039805298 -0.205730910312)
(0.284727590096 0.02588236887 -0.161098836991)
(0.279142994311 0.0235238858897 -0.118512199657)
(0.266241552248 0.0214408069367 -0.0764279286541)
(0.248469123998 0.0188686800741 -0.033486965859)
(0.224626816988 0.017022588011 0.00834423715464)
(0.194104911576 0.0155948443206 0.0460491757821)
(0.157665694533 0.0142888949088 0.0785538509741)
(0.116058279848 0.0134670250057 0.104014704572)
(0.0706113608202 0.0126032093287 0.121655683287)
(0.0241898098759 0.0125060831576 0.129501475074)
(0.0260097123864 0.0559140808508 -0.43272133713)
(0.0725140564043 0.05653991941 -0.427608793663)
(0.117549555477 0.0566756277871 -0.414033051483)
(0.159300925587 0.0574901066752 -0.39390426077)
(0.195325352339 0.0585524864474 -0.36879722194)
(0.22554032336 0.0598674787374 -0.339737887119)
(0.249198998789 0.061853132355 -0.307945731659)
(0.267284509602 0.0629470879414 -0.273185924254)
(0.280500768293 0.064396957317 -0.235357472055)
(0.287116674563 0.065640674069 -0.1930860804)
(0.285241244009 0.0651191038106 -0.151967326381)
(0.277193427571 0.063312445892 -0.108813013945)
(0.264140745131 0.0599197550083 -0.0653442107033)
(0.246561176976 0.0527605473016 -0.0219737527954)
(0.223528123832 0.0483822676331 0.0203153812432)
(0.192893418344 0.044725496482 0.0584021423142)
(0.156831190935 0.0418385361376 0.0909854465544)
(0.115936463728 0.0398206400478 0.115574607121)
(0.0713488237161 0.0377174073153 0.132596975719)
(0.0254510118898 0.0368205788653 0.140070564957)
(0.0262085872751 0.0933345624204 -0.427043522374)
(0.0728317173202 0.0938125750217 -0.421918382938)
(0.118172774573 0.0938051610326 -0.407923054538)
(0.160227454991 0.0942527304152 -0.387181177174)
(0.196449360623 0.0950699354228 -0.361286946084)
(0.226878480479 0.0965149585684 -0.331379344106)
(0.250145999259 0.099184577617 -0.298186666853)
(0.267620588161 0.099784932742 -0.262582364348)
(0.280129263679 0.100868752961 -0.223659008818)
(0.285066711586 0.100450760261 -0.181928082846)
(0.28432975296 0.0944078001344 -0.13727678713)
(0.2765151629 0.0963112490247 -0.0906980390748)
(0.259078586318 0.0932441089452 -0.0478722834665)
(0.240289392834 0.0781085655992 -0.00495028865438)
(0.219067785364 0.0714234120411 0.0372375304069)
(0.189384903175 0.065500842911 0.0755660613975)
(0.154094747862 0.0615579515272 0.107851469786)
(0.113408102206 0.058052253564 0.133002347284)
(0.0695065881047 0.0551280461088 0.149565305317)
(0.0249312868124 0.0537664726766 0.15644960909)
(0.026356480898 0.131036229783 -0.417367047605)
(0.0732900686958 0.131280564537 -0.412223291705)
(0.118917496584 0.130638067948 -0.39769240423)
(0.161378144403 0.130293740792 -0.37634593993)
(0.197908867537 0.130705342296 -0.34973431416)
(0.228829879187 0.13216181305 -0.318999078709)
(0.251010181196 0.136407314321 -0.28447419269)
(0.267541639503 0.136009443727 -0.24840691139)
(0.280062969393 0.138129907821 -0.208210915787)
(0.28099609233 0.139114635111 -0.167619037373)
(0.281667243837 0.144273128681 -0.120320143284)
(0.276824828011 0.142941646736 -0.0619027005287)
(0.249360621345 0.130528695174 -0.0275516974055)
(0.228158612195 0.0948962587439 0.0148706690505)
(0.212550084165 0.085997568521 0.0577528715758)
(0.184426178845 0.0776467208762 0.0963327376134)
(0.150562193026 0.0723312992028 0.128946162953)
(0.110698863226 0.067472228786 0.154475873907)
(0.0676028326376 0.0636400997841 0.171001538682)
(0.0244010818801 0.0621723281226 0.177735159359)
(0.0263015663119 0.168092328493 -0.403640789082)
(0.0736406553008 0.167854827493 -0.398083007473)
(0.11969790646 0.166281471936 -0.383166744876)
(0.162631793774 0.164903084197 -0.361239382892)
(0.19979467253 0.164595563858 -0.33397390238)
(0.232209052266 0.16523873141 -0.30256098384)
(0.253369333126 0.168281599315 -0.267471257124)
(0.268830988215 0.169863439891 -0.233137082709)
(0.282234330329 0.169902662306 -0.189546112419)
(0.290441463887 0.16887750655 -0.142051934715)
(0.287518074879 0.167277503813 -0.086305553127)
(0.265161078713 0.136863072503 -0.0419568948052)
(0.219623867399 0.108899511269 -0.0181407698267)
(0.201690074746 0.0869861649711 0.0334206565959)
(0.204054909282 0.0869418762613 0.0793830533305)
(0.178080674366 0.0785313801512 0.117849716404)
(0.146561312923 0.0726474125606 0.151066444692)
(0.107495897735 0.0666369732986 0.176275748366)
(0.065515150073 0.0613986855249 0.192664633622)
(0.0235910392164 0.0592116228682 0.199455926772)
(0.0262270266229 0.204351985716 -0.384405409249)
(0.0738024279459 0.203761507813 -0.378522967089)
(0.120156295593 0.201141594643 -0.36317495794)
(0.16367818262 0.198787346554 -0.340790589603)
(0.201422240832 0.198194884032 -0.312622925912)
(0.233192260852 0.200884789023 -0.280653643517)
(0.255898333097 0.213834159738 -0.246874761939)
(0.269948169588 0.203410771778 -0.212793464911)
(0.278276140173 0.20633818519 -0.175284184799)
(0.27767880953 0.20571204885 -0.130032981369)
(0.252913799805 0.192845883782 -0.0962705191786)
(0.227659778693 0.17230863325 -0.0646103218814)
(0.2137280273 0.154747298359 0.010845987217)
(0.208547485384 0.0822795362297 0.0535657346454)
(0.205792250902 0.084595112586 0.0995833437784)
(0.172784172264 0.0708977822017 0.137734739637)
(0.142669979512 0.0635873302272 0.170456580943)
(0.104223922034 0.055877473698 0.194770988932)
(0.0633631567932 0.049159342012 0.210195156209)
(0.0228678655965 0.0458457670649 0.216424772477)
(0.0261880619672 0.239363721992 -0.35910871588)
(0.0741610781392 0.238069603932 -0.352503009476)
(0.120508556921 0.234354871615 -0.336685985761)
(0.165078849654 0.230293457324 -0.313662613921)
(0.206687366531 0.226702449113 -0.284681982701)
(0.251713117352 0.230749490688 -0.252068519375)
(0.267276560856 0.244079046007 -0.212568378956)
(0.280884935178 0.155621186194 -0.195373231408)
(0.287995952719 0.148019204781 -0.157855839557)
(0.279971841929 0.150131614519 -0.117294195587)
(0.262313519762 0.149467319743 -0.0711718256237)
(0.246985569577 0.156592107791 -0.017031574953)
(0.123460815773 0.142072942471 0.0372782392383)
(0.142563342412 0.0195452950672 0.0685510495811)
(0.195484818329 0.0451030089421 0.114610058477)
(0.160579404527 0.0470710380047 0.151904930545)
(0.136900106303 0.0433853185645 0.182787565569)
(0.099523022273 0.0363746272652 0.205262049888)
(0.0603190002621 0.0289140122905 0.218881548948)
(0.021739195911 0.0245661039773 0.224284304785)
(0.025940927108 0.271607060765 -0.326629189318)
(0.0735525922243 0.269550223173 -0.319469130227)
(0.119241692193 0.264331958601 -0.302880060894)
(0.162091287389 0.257953838884 -0.278676659862)
(0.207669135875 0.25017932154 -0.248370706461)
(0.258325323701 0.249056641226 -0.210688967272)
(0.211386765638 0.284581516349 -0.140247263221)
(0.200386397677 -0.0272209323598 0.0536457010383)
(0.241333663206 0.0189777407391 0.123088810949)
(0.175695531368 0.0272179272361 0.158993178264)
(0.138543051218 0.0229634036179 0.186589811786)
(0.0971023056287 0.0147620019045 0.207433736266)
(0.0570592448994 0.0064554537652 0.217196943448)
(0.0203028316192 0.000637160277598 0.220117393596)
(0.0251947287101 0.299761339592 -0.28657436213)
(0.0713485603079 0.296753291233 -0.279051432778)
(0.115595388784 0.289398291683 -0.262016623668)
(0.15694613815 0.280362886205 -0.237651505323)
(0.202092580938 0.269838781056 -0.207299537477)
(0.264133056055 0.258943546108 -0.166074944307)
(0.206295312557 0.256169294883 -0.089824419122)
(0.198794692349 0.0358698460106 0.0511312233988)
(0.237819153526 0.0273673349013 0.125767308517)
(0.170776097602 0.018842103221 0.158946029781)
(0.131649746483 0.00735187778036 0.183689847594)
(0.0904758523453 -0.00620024722156 0.199103833843)
(0.0520673797491 -0.0162323121843 0.205524262829)
(0.017906106626 -0.0227243047247 0.208479491347)
(0.0237494536728 0.322568914006 -0.239123712691)
(0.0671135009182 0.318671580274 -0.231199993996)
(0.108777337815 0.308956123014 -0.214928269433)
(0.147585551821 0.296763919073 -0.191150479223)
(0.189678219449 0.281689876366 -0.161853437719)
(0.244186792848 0.271379485005 -0.122877722813)
(0.195868456853 0.291651244813 -0.0504981011955)
(0.194435725459 0.0446832877914 0.0530286610693)
(0.227913660894 0.0264030146289 0.124050847449)
(0.158988331555 0.0104636677269 0.15317809705)
(0.11898261627 -0.00768551094871 0.174055851221)
(0.0799267884611 -0.0246463423476 0.185185102833)
(0.045795055268 -0.0373371018553 0.187830857024)
(0.0157166601105 -0.0438258053597 0.188019708973)
(0.0216211394658 0.338613749174 -0.184751065591)
(0.060892004805 0.334018772777 -0.176667133323)
(0.098209408734 0.321309861657 -0.161961943322)
(0.132751968325 0.302694834925 -0.140051923929)
(0.17426955432 0.279699069264 -0.112744493688)
(0.257979824362 0.246890432416 -0.0743818126306)
(0.209168162316 0.16299078475 0.00794101822431)
(0.185363479415 0.113322622458 0.0585911762461)
(0.200537131126 0.0374393815959 0.119625508014)
(0.137450485966 0.00687557358324 0.142405044173)
(0.100786865893 -0.0189252083662 0.156923520095)
(0.0659501894821 -0.0392155685808 0.163161495597)
(0.0371841369866 -0.0540944473133 0.163306620614)
(0.0132302922401 -0.0614993586245 0.161165993279)
(0.0189597011094 0.347841303459 -0.125622400294)
(0.0518131212127 0.343016040376 -0.115760807265)
(0.0802493470449 0.329409369636 -0.104138349587)
(0.106664207934 0.308444070542 -0.087017137452)
(0.12528150181 0.284367943111 -0.0642041033125)
(0.132601642937 0.233532934668 -0.0446515379227)
(0.083914251969 0.154906756884 0.00832577348207)
(0.0731677843961 0.166476927929 0.053836666595)
(0.102539851721 0.147603335238 0.0797806475463)
(0.0672038294084 0.150682919187 0.0929510670496)
(0.0782231175061 0.148967309359 0.101780171688)
(0.0944753711514 0.140344386076 0.105976610376)
(0.142794524752 0.142231896063 0.111466320287)
(0.163528604633 0.12437324299 0.106202465911)
(0.1397276341 0.0467735749506 0.119802446155)
(0.102580118119 0.00418919713039 0.129156909461)
(0.0754622642347 -0.0283017852137 0.135037032418)
(0.0483912481172 -0.0516350511263 0.135149652344)
(0.027053517581 -0.066924432659 0.131338477771)
(0.010023296602 -0.0750484237278 0.127831449708)
(0.0159201478026 0.348681154975 -0.0584846122115)
(0.0435734323836 0.343390618842 -0.0525808466293)
(0.0663056014781 0.331085134467 -0.0417561716724)
(0.088985223247 0.312742349743 -0.0283280681115)
(0.0980410160838 0.289214407756 -0.00698596721663)
(0.113056730493 0.258686181314 0.00178020984265)
(0.0820452109951 0.249298377937 0.0625327872703)
(0.06395802543 0.249801085346 0.0730424773514)
(0.0806710125347 0.21795527448 0.0917903876104)
(0.066043062167 0.213321264572 0.101945936432)
(0.0649395772343 0.200296915907 0.107794237367)
(0.0655487780036 0.178605536687 0.109470070601)
(0.0768576460159 0.149354088052 0.109148455025)
(0.0896163745651 0.0946006226106 0.104360516385)
(0.0827995363297 0.0377639221909 0.107959018698)
(0.0634452866973 -0.00372764303808 0.108533838817)
(0.0467649230661 -0.0371055455412 0.106947771754)
(0.0294155283747 -0.0605652017611 0.102264480547)
(0.0162187707304 -0.0752316092867 0.0961331233749)
(0.0065623409344 -0.0832882411518 0.091409125457)
(0.0123528801777 0.337307143906 0.00967922067052)
(0.0345758000543 0.332268053472 0.0151572574287)
(0.0520403642191 0.321166520839 0.0234732679257)
(0.0656155396305 0.304651242116 0.0330721689077)
(0.0698615797046 0.280809885758 0.0443721912399)
(0.0822481677123 0.258816003754 0.0589371103094)
(0.0699419001842 0.227506997866 0.0883486188205)
(0.0530398798713 0.231322325603 0.0976799479637)
(0.0539549050368 0.204167953576 0.11004633382)
(0.0437204341648 0.184927384429 0.115083091127)
(0.0390283105068 0.161769211147 0.11510911883)
(0.0381940625095 0.135026036607 0.11159502651)
(0.0404273733606 0.105062942227 0.106007692789)
(0.0441928471563 0.0665470542932 0.0976054926333)
(0.0399668520824 0.0233861427365 0.0920268670459)
(0.0289991321586 -0.0124674968688 0.0842869531633)
(0.0195458806826 -0.0428371477149 0.075868770672)
(0.0108333596531 -0.0647020415022 0.0667903583831)
(0.00554190408665 -0.0783712941141 0.0587155193421)
(0.00303176517912 -0.0859219767809 0.0531934369921)
(0.00930531784029 0.311950243418 0.0765167409812)
(0.0267699284758 0.308093111609 0.0817610255505)
(0.0396865758607 0.298691170954 0.0886779045665)
(0.0481627581241 0.284786192749 0.0955233518921)
(0.0518044172448 0.266789996349 0.102791920357)
(0.054576977988 0.249421619045 0.111526733077)
(0.0476747358078 0.219030464924 0.122304187215)
(0.0362267880063 0.207255043033 0.129691616043)
(0.0275437730592 0.18467357382 0.13323451602)
(0.0178640970545 0.162930796749 0.131475791048)
(0.0105215016127 0.1397368088 0.125180507971)
(0.00599703529087 0.113428297306 0.115170779951)
(0.00400850976276 0.0840040274324 0.102731266522)
(0.00379319891401 0.0507375874264 0.0883770854931)
(0.00137843148566 0.0144102166377 0.0746383560538)
(-0.00312577140427 -0.017139248683 0.0597468783396)
(-0.00575496877775 -0.043731628651 0.0453864902652)
(-0.00667319431487 -0.0631775654845 0.0325729748293)
(-0.00484085793913 -0.075871507353 0.0229605873719)
(-0.000372425291552 -0.0829163132874 0.0169330282164)
(0.00682710025366 0.273648486363 0.137641528513)
(0.0201568983123 0.270674404494 0.142038037817)
(0.0288050723713 0.262567676153 0.148002930714)
(0.0329325303989 0.250948821829 0.153367406727)
(0.0328487146357 0.235730077178 0.157280897715)
(0.0301576739441 0.218161125673 0.159501979067)
(0.0226019060985 0.195097016142 0.161387570786)
(0.012439229103 0.175909803737 0.161544952374)
(0.00217211914769 0.155275611258 0.157770938463)
(-0.00864596734354 0.134406345853 0.149088179537)
(-0.0173857303064 0.112473780355 0.135811684542)
(-0.0236918826011 0.088963738827 0.119149929108)
(-0.0276560617704 0.0634679750207 0.0999858241672)
(-0.0293669222033 0.0360587789191 0.0793740181691)
(-0.0302707714217 0.00700714673806 0.0584031749979)
(-0.0300291392616 -0.0188989173962 0.0374804292821)
(-0.0271838417297 -0.0407916779252 0.0183780729969)
(-0.0220207411982 -0.0574003485573 0.00244943941271)
(-0.0143604209466 -0.0687787359956 -0.00917668111865)
(-0.00383101485972 -0.0753268424964 -0.0162936047002)
(0.00474050429893 0.224261900556 0.189299142692)
(0.0142606293035 0.222139784321 0.192947867707)
(0.0194203963091 0.215505603831 0.197669008345)
(0.0200709816802 0.205944552749 0.201577889547)
(0.0165468583484 0.193661153059 0.203128268599)
(0.00969808333955 0.178704072529 0.201616464397)
(0.000285792340372 0.160194408907 0.196455172675)
(-0.0101285431578 0.142323870643 0.18897183853)
(-0.0211523125974 0.123735594809 0.17858615249)
(-0.0322914000225 0.105711160275 0.163682017302)
(-0.0419277525309 0.0872853425742 0.144691643032)
(-0.0493542317688 0.0677755345513 0.122395119965)
(-0.0542411794897 0.0468418458001 0.0976543110855)
(-0.0562111245028 0.0247888011151 0.0711819700118)
(-0.0553358458592 0.00240122774868 0.0444855688341)
(-0.0515662348022 -0.0178705973743 0.0188491637346)
(-0.0446427365462 -0.0350747969187 -0.00390503611486)
(-0.0350369899794 -0.048635433464 -0.0227985547041)
(-0.0226359822544 -0.0581593980691 -0.0365582548417)
(-0.00683222145242 -0.0639633985306 -0.0447674470112)
(0.00321165455487 0.165896136918 0.229932418283)
(0.00969213031185 0.16479103754 0.232878611481)
(0.011866337315 0.159951921941 0.236172755118)
(0.0100428615477 0.152799452648 0.238245585479)
(0.00379675718544 0.143781574336 0.238205194425)
(-0.00626776694578 0.13242062938 0.233678888866)
(-0.0176906590727 0.118548752015 0.223085763243)
(-0.0288899628879 0.103972092523 0.208927644077)
(-0.0399131894311 0.0892886999781 0.192945300028)
(-0.0507176790643 0.075422514156 0.17398448093)
(-0.0607186646141 0.0618218782619 0.151034498856)
(-0.0690186392758 0.0473699306549 0.125041437318)
(-0.0746094169685 0.031768635049 0.0956064348356)
(-0.0763580594187 0.015644972008 0.0644957256621)
(-0.0741740172867 -0.000350351302388 0.0334941362542)
(-0.0680786631996 -0.0148866552676 0.00421776409092)
(-0.0583270604138 -0.0273633346999 -0.0216119855482)
(-0.0453619037225 -0.0373776823827 -0.0431716005883)
(-0.0290786306595 -0.0443753788621 -0.0588483650051)
(-0.00916510198413 -0.0491234013955 -0.0681650189255)
(0.00197942365048 0.101447578703 0.258215857767)
(0.0060658635837 0.101543626284 0.260659225815)
(0.00613053311788 0.0986509309193 0.262872089378)
(0.00287486041754 0.0943567577457 0.263562554439)
(-0.00502081050381 0.0888303831855 0.262282385264)
(-0.0172350331762 0.0817159398107 0.256012243187)
(-0.0305277984893 0.0732902771728 0.242673044094)
(-0.042393071723 0.0638990203317 0.223376093161)
(-0.0530712473846 0.0547394960307 0.202816557451)
(-0.0632473738519 0.0460621095888 0.180482489941)
(-0.0733931832764 0.0377591186205 0.1559500628)
(-0.0825194879575 0.0287017732291 0.126977533215)
(-0.0885504980727 0.018939899721 0.0942301358481)
(-0.09020525001 0.00889977721556 0.0597340077739)
(-0.0871783930959 -0.000907229392976 0.0256887948276)
(-0.0795392417884 -0.00984388418069 -0.00632434638085)
(-0.0676787962399 -0.017554448954 -0.0344867844094)
(-0.0520991546959 -0.0237410857544 -0.0580230060281)
(-0.0328976342466 -0.0278520424821 -0.0747270892341)
(-0.010379272728 -0.0312928650706 -0.0845542941924)
(0.00126434707027 0.0349109539756 0.272340559799)
(0.00400120041855 0.0358438392036 0.274641619561)
(0.00340459584661 0.0351129975262 0.276660865208)
(-0.000687195813375 0.0338830747713 0.276829225494)
(-0.00982780060586 0.0320204333991 0.274399770747)
(-0.0229663197649 0.0293752921784 0.267844445284)
(-0.0371345904789 0.0266244122076 0.253384011872)
(-0.049770925636 0.0233886888347 0.23178001132)
(-0.0604729700578 0.0201796776092 0.208469328258)
(-0.0705281870493 0.0171475108243 0.184186974698)
(-0.0808144014222 0.0143062778703 0.158325480716)
(-0.090212946322 0.0112380676396 0.127449560523)
(-0.0963156444697 0.00795766223893 0.0927931616141)
(-0.0978389432869 0.0045331781774 0.056532121996)
(-0.0944786504649 0.00117867328091 0.0205972275301)
(-0.0861588244039 -0.00186634373043 -0.0128715825456)
(-0.0732790485273 -0.00445347403371 -0.0427210076081)
(-0.0560807331758 -0.00657995892087 -0.067578759964)
(-0.0351652152568 -0.00796612673093 -0.0846508143628)
(-0.0116310890092 -0.0104270657037 -0.0958081339459)
(0.0269478146711 0.0196324475489 -0.496309836736)
(0.0776652406706 0.0206212231253 -0.488828246684)
(0.127523069214 0.020847764273 -0.473014966956)
(0.172859034911 0.0215280788985 -0.450038774891)
(0.211615371574 0.0221586214252 -0.421508252801)
(0.243779822256 0.0230056220152 -0.390066035265)
(0.269332767713 0.024075700166 -0.356097668834)
(0.288880561291 0.0253491352854 -0.320745241341)
(0.30256203193 0.0271385669252 -0.283420840498)
(0.312720742661 0.0304757673026 -0.240273705664)
(0.315583063349 0.0288422971539 -0.189064864782)
(0.308491572921 0.0273008720444 -0.143700711614)
(0.296427031302 0.0256221359758 -0.0972598257876)
(0.278800355776 0.0231321641326 -0.0475206391859)
(0.253148394185 0.0213881907993 0.0012325342991)
(0.2193465473 0.0198014640039 0.0459401553087)
(0.178737071642 0.0183261827584 0.0834726561264)
(0.131745162946 0.017013332629 0.113889783071)
(0.0797627713632 0.0159717661229 0.134625184188)
(0.0273110680772 0.016070616357 0.143418522379)
(0.0282919277071 0.057890877072 -0.494401946578)
(0.0796533503223 0.0587679586674 -0.487019527564)
(0.129542028135 0.0593415461908 -0.471200302085)
(0.175250403623 0.0607977431065 -0.44801139328)
(0.214266962406 0.0624248857957 -0.419471337327)
(0.246591647312 0.0646552723532 -0.387078837132)
(0.272246611538 0.0676651351051 -0.351754467555)
(0.292507023292 0.0699590260032 -0.313471518744)
(0.308554324768 0.0729376816635 -0.271224893351)
(0.31615482644 0.0756648268805 -0.225614037888)
(0.314974600908 0.0747711616335 -0.178615813546)
(0.30817222189 0.0744703451095 -0.130423195087)
(0.295168927763 0.0713442014217 -0.0816325341479)
(0.277296966476 0.0642153844051 -0.0312994769389)
(0.252223133934 0.0600259366085 0.0180742425809)
(0.218179716944 0.0563899284161 0.0623927535786)
(0.177281669193 0.0530036053245 0.100285245869)
(0.130810312225 0.0503856681082 0.129422050103)
(0.080520616061 0.047941830442 0.149125984438)
(0.0288350471868 0.0472306928586 0.157862495215)
(0.0285976523097 0.0975851829989 -0.488731172569)
(0.0804469333284 0.0986512694208 -0.481597229115)
(0.130712359676 0.0992182770265 -0.465033861838)
(0.176860218012 0.100322060983 -0.441108672913)
(0.216259084643 0.101985876381 -0.411593462644)
(0.249293000485 0.104408079426 -0.378031336078)
(0.274428179513 0.108561973922 -0.340608017893)
(0.293892626492 0.109890071437 -0.30070764302)
(0.308453096328 0.112004203887 -0.257095593693)
(0.316066646608 0.109971453621 -0.210717083074)
(0.316893994244 0.108721462142 -0.158538692182)
(0.308270189904 0.114044872132 -0.108516536395)
(0.290212306426 0.108073966753 -0.059162372393)
(0.271332809027 0.0931985551619 -0.00870731799784)
(0.248159338051 0.0869949693727 0.0410853996276)
(0.214607132157 0.0811891055369 0.0857271651907)
(0.174391961238 0.0768318890829 0.122967471345)
(0.128241666023 0.0735309610159 0.15214005618)
(0.0782729380217 0.0702964833001 0.171588165544)
(0.0281004638588 0.068512150707 0.179595754562)
(0.0288366649766 0.138057358545 -0.478835312354)
(0.081145533631 0.138913467618 -0.472066853335)
(0.131999470001 0.138817503995 -0.455093575821)
(0.178794461441 0.139202074989 -0.430486714637)
(0.218811401542 0.140546241987 -0.400020561383)
(0.252502700036 0.143145108805 -0.36478129299)
(0.276497814758 0.1485646791 -0.325190762904)
(0.294758481535 0.147816754416 -0.283805199389)
(0.307809004662 0.15200295249 -0.237283510944)
(0.3134330504 0.156715344388 -0.193465211697)
(0.319160220447 0.165194536542 -0.128024744335)
(0.308852491956 0.16237635019 -0.078907276709)
(0.278783709542 0.141880954936 -0.0340951120351)
(0.260004855934 0.110436798074 0.0175463632682)
(0.242390275733 0.103170314435 0.068513356752)
(0.210035148868 0.0948716368365 0.113517533044)
(0.171275239933 0.0898084642145 0.151465572649)
(0.125565219316 0.0849446309181 0.180846238413)
(0.0760935989882 0.0808227065842 0.200190470952)
(0.0274341702092 0.0789600391784 0.207741054783)
(0.0288940387295 0.178460920043 -0.464905779832)
(0.0818142648945 0.178774715605 -0.458228295704)
(0.133229067043 0.177785850255 -0.440979071297)
(0.180858631019 0.177193532411 -0.415670329956)
(0.221714140931 0.177807571059 -0.38408884354)
(0.25675754303 0.17966146952 -0.347454136251)
(0.278662462413 0.183049670012 -0.306208478147)
(0.29682948256 0.183838182009 -0.264438901041)
(0.31578070694 0.183285749009 -0.215417335682)
(0.327487690694 0.185392868994 -0.156322317251)
(0.321992125215 0.174712518276 -0.0954247619408)
(0.289167027804 0.139596498741 -0.0561789409136)
(0.247797514945 0.122801123671 -0.0193540256116)
(0.238274765219 0.103000926158 0.0431783075148)
(0.235193238236 0.103429589072 0.0972744081514)
(0.204373750539 0.0947552631579 0.142312278179)
(0.167913027797 0.0891304894007 0.181043539823)
(0.122708857109 0.0827261949928 0.210791364877)
(0.0741135022838 0.0771922844334 0.229702480582)
(0.0266692968396 0.074428988857 0.237188847044)
(0.0289790754493 0.219151442496 -0.444832937455)
(0.0823104002579 0.2188051987 -0.438414872941)
(0.134372530712 0.216845151748 -0.420861097908)
(0.182773494674 0.215244729102 -0.394826391417)
(0.224597885809 0.215400460776 -0.362017360598)
(0.258173907598 0.219438331724 -0.324077086619)
(0.281063490808 0.233459826095 -0.283801708813)
(0.296189832629 0.215197022015 -0.242237605873)
(0.30782916745 0.216929551006 -0.196813820215)
(0.304084190825 0.21284239642 -0.145186156954)
(0.278436744949 0.198144034357 -0.116397354496)
(0.267103137166 0.180761843808 -0.0525551647435)
(0.256008552133 0.175109119657 0.0122797852992)
(0.241721802997 0.096031059396 0.0727440735718)
(0.23618137135 0.0974218247359 0.124475376451)
(0.199230210368 0.0838499277572 0.168027209853)
(0.164492231245 0.0755310994222 0.206917243264)
(0.119701539238 0.067056100645 0.236080737975)
(0.0720637068758 0.0597499305115 0.254067012351)
(0.0258348490872 0.0557432234234 0.260763070329)
(0.0292147724342 0.258950443526 -0.418134793756)
(0.0832627093381 0.257893458343 -0.4111133728)
(0.135626276297 0.25483686298 -0.392904626171)
(0.18520732183 0.251860431536 -0.366029556935)
(0.231461267368 0.249052752694 -0.332533634104)
(0.27920963 0.256031043315 -0.293099709817)
(0.287502789603 0.270974559019 -0.249073695154)
(0.299917510463 0.163138773013 -0.224041846197)
(0.317014835618 0.1532571751 -0.177695290823)
(0.312785248324 0.15445843862 -0.130251347301)
(0.299303202321 0.160788059602 -0.0736949221672)
(0.287231484367 0.171794799341 -0.00553393950143)
(0.156393561401 0.146891752222 0.0622634741785)
(0.173084330782 0.0249079002986 0.0999686133963)
(0.225747312257 0.0523390567257 0.143524334033)
(0.186790705232 0.054745577425 0.185884869158)
(0.158064017508 0.0490385400048 0.221764660607)
(0.114975433471 0.0411978473022 0.248698321533)
(0.0689854466412 0.0319683456523 0.265429884499)
(0.0247137503477 0.0262114509111 0.27192664979)
(0.0293118600908 0.296562466772 -0.383759369029)
(0.0835720755256 0.294532914206 -0.37568621524)
(0.135848566979 0.289917584761 -0.35635625293)
(0.183972918544 0.28417996188 -0.327620613551)
(0.236106502692 0.27695302595 -0.292615443489)
(0.292380222178 0.279275378351 -0.249085498924)
(0.23955825931 0.323275880788 -0.172629317494)
(0.22898693585 -0.0296344108959 0.0824504744082)
(0.274552833714 0.0226754921118 0.156802047619)
(0.20164565635 0.0298325838034 0.194327182739)
(0.159111986964 0.0235441952592 0.224801808686)
(0.111543720161 0.0124239650722 0.244055371128)
(0.0640528219017 0.00114809911865 0.260418126731)
(0.0224967610265 -0.00541537911793 0.263322520432)
(0.0287762067453 0.330283121092 -0.340128240365)
(0.0820302828384 0.327397873971 -0.331321766808)
(0.133019701743 0.31992779154 -0.311243331144)
(0.179534944755 0.310888750337 -0.281950439353)
(0.232384479247 0.299447421124 -0.246490832656)
(0.301054798469 0.289693262337 -0.199034243793)
(0.236024305484 0.288388649006 -0.114818418424)
(0.227604341184 0.0374861203297 0.0788187468571)
(0.270731301825 0.028737232761 0.159977479229)
(0.195041175984 0.0173029664299 0.196337519165)
(0.149618378501 0.00333447612637 0.223253554783)
(0.101927556902 -0.0136188377463 0.238965895265)
(0.0587100568328 -0.0269009257344 0.245029711011)
(0.0208043191949 -0.0345607987887 0.244829741314)
(0.027614449492 0.358442989947 -0.28690427744)
(0.0779660477315 0.354743568247 -0.277426785102)
(0.126265133808 0.344133694104 -0.257863438831)
(0.169835061042 0.330925378794 -0.229035823415)
(0.219613685777 0.314631252575 -0.195669387144)
(0.280047166162 0.303185714791 -0.148574119934)
(0.224845929474 0.326482711706 -0.066043617454)
(0.222129002309 0.0452520069443 0.0795497115094)
(0.258313339576 0.0242241215826 0.157198845346)
(0.181012723942 0.0046383249108 0.188724384588)
(0.135506949893 -0.0168650470093 0.211633148157)
(0.0895007844083 -0.0367750549229 0.224131176832)
(0.049917962222 -0.0515369988149 0.225321387152)
(0.017393023218 -0.0609505908935 0.222666056035)
(0.0256564757265 0.378660693612 -0.224648890434)
(0.071504452194 0.375441290996 -0.215003887641)
(0.114572407297 0.360874958505 -0.196580025914)
(0.154064372904 0.339870031225 -0.170610699449)
(0.202301312562 0.313966333555 -0.139502498316)
(0.293842807306 0.272858517465 -0.0958785329116)
(0.239530988453 0.187211022032 -0.0088016881297)
(0.211224196915 0.126728420921 0.0813053202423)
(0.226810144346 0.0364603022145 0.148553083677)
(0.155634593008 -0.00129997703547 0.172451720886)
(0.11388012416 -0.0323933665425 0.189120182371)
(0.0737597784513 -0.0569574210441 0.195793112141)
(0.0400635042554 -0.0739455850698 0.194007238841)
(0.0136246186919 -0.0836369748662 0.189659668742)
(0.0241700288146 0.392959732715 -0.156092748616)
(0.0624925325213 0.3875237781 -0.14377084745)
(0.0939994023467 0.372653987772 -0.129007266096)
(0.124442494091 0.348806351832 -0.110170310138)
(0.142802591985 0.321455085971 -0.0770594875141)
(0.159926051165 0.257692018771 -0.0660766986356)
(0.121609734394 0.184584739594 0.00586894629088)
(0.0999653098239 0.177564578666 0.0697257469436)
(0.115666631798 0.154459203235 0.0904618051211)
(0.0757446064454 0.155362610172 0.10596842388)
(0.082950255344 0.152706060963 0.11702774342)
(0.0968376735839 0.142732071011 0.122463777585)
(0.142070102741 0.148747888479 0.130624683307)
(0.169815459881 0.134627176939 0.126173163409)
(0.151503019394 0.0449141869704 0.142825653304)
(0.11263447168 -0.00620332559133 0.153350977866)
(0.083281497135 -0.0448125062757 0.160181620271)
(0.0525576321511 -0.0724601621233 0.159700647256)
(0.0280999184859 -0.0907339503158 0.152933015966)
(0.010105334021 -0.100672012021 0.147698403457)
(0.0191408374867 0.397690572869 -0.0776537960216)
(0.0523475865217 0.390079354726 -0.0685186966419)
(0.0790462575151 0.376369510655 -0.0547280717153)
(0.104463681591 0.355144249279 -0.0389913430226)
(0.109950867286 0.328718762762 -0.020140029749)
(0.139673588256 0.296835188411 -0.00136829426255)
(0.113444338211 0.27676503711 0.06133459897)
(0.0754695908345 0.267240883704 0.0941867494558)
(0.0873470331205 0.230940890718 0.106605821635)
(0.0709271589587 0.222740840078 0.117548486452)
(0.0669225992533 0.207186451715 0.123574134274)
(0.0649560779512 0.182790948178 0.125432325264)
(0.0754912491428 0.151104615809 0.125268863468)
(0.0913399621168 0.0951078727169 0.119939314583)
(0.0877236331016 0.0315967537148 0.125086133234)
(0.0675799626688 -0.0165872519264 0.125752298566)
(0.049932764562 -0.0556902230093 0.12382480844)
(0.0305936676711 -0.0832800847108 0.118377714712)
(0.0156294569887 -0.10079557158 0.109761194695)
(0.00606300064073 -0.111107364676 0.102657122689)
(0.0149332121042 0.386187306431 0.00423349157763)
(0.0417241662409 0.3803475206 0.0124384256735)
(0.0620838109948 0.367113100146 0.0228568338869)
(0.0773839069909 0.347475319217 0.0346366781515)
(0.0839459274369 0.319716584597 0.0493569588273)
(0.0962053684832 0.298334449294 0.0697004275262)
(0.0844619618334 0.24973528949 0.0907310676166)
(0.0646617365718 0.249291306266 0.116578706495)
(0.0584098825136 0.220307830848 0.12808865039)
(0.044877707085 0.197730412754 0.132352645809)
(0.03705253373 0.171143367801 0.132152625469)
(0.0340949564689 0.140826769177 0.127521838867)
(0.0354958327556 0.107908170223 0.120443615647)
(0.0405314086975 0.066085095395 0.110263587771)
(0.0380013474763 0.0163153563323 0.103854722051)
(0.0270721442481 -0.025688481883 0.0943305661471)
(0.0176564333969 -0.0615911491248 0.0842755108955)
(0.00847242100105 -0.0877745206613 0.0730950498996)
(0.00301241891232 -0.104562316119 0.0624202702546)
(0.00193867744568 -0.11441499226 0.0545044295255)
(0.0113504937874 0.358486430531 0.0850982018245)
(0.0326257464474 0.353705045955 0.0925014239424)
(0.0473048611186 0.342600594989 0.101154905121)
(0.0565569663177 0.326222775671 0.109923816969)
(0.0604160093043 0.304756057825 0.118431814483)
(0.0627814984827 0.281743528738 0.128550411832)
(0.054650299136 0.247032995384 0.13997929646)
(0.0405369644213 0.228087180613 0.150452453998)
(0.0278928326612 0.202087642345 0.154890928712)
(0.0143917615457 0.17679092754 0.152339737369)
(0.00397331527629 0.149928773449 0.144130109722)
(-0.00258195692524 0.120012995354 0.131509429211)
(-0.00544437540741 0.086782045471 0.116021636379)
(-0.00519686870581 0.0496109616232 0.0986573359315)
(-0.00682989800563 0.0075258966285 0.0819955105618)
(-0.0107785155645 -0.0294967870212 0.0636931517847)
(-0.0125836231479 -0.061197299557 0.0459390452772)
(-0.0125145417826 -0.084761040366 0.0298158425434)
(-0.00929220076753 -0.100652593892 0.0172499328823)
(-0.00205152755091 -0.11013712192 0.0086562182645)
(0.00816953713305 0.314621565603 0.158498905414)
(0.0241559212664 0.310738667363 0.165093541357)
(0.0344295767597 0.301447820155 0.172742073977)
(0.038391763353 0.287688603678 0.179850598988)
(0.0368383146836 0.269704068868 0.185060463865)
(0.032574641993 0.248144506478 0.185614764311)
(0.0238007467229 0.220159489892 0.187383056914)
(0.0112645655607 0.196127682499 0.188591090324)
(-0.00259867632935 0.17169696444 0.184296473338)
(-0.0170289661188 0.147338190926 0.173600088153)
(-0.028712978564 0.12205437975 0.157097773751)
(-0.0370096142261 0.0951871302574 0.136250667773)
(-0.0419078783202 0.0661889508417 0.112436180019)
(-0.0436212734997 0.0347286587268 0.0875891302164)
(-0.0439640230661 0.000784364928035 0.0619196637782)
(-0.0427329731151 -0.0298994466128 0.0360556694542)
(-0.0382762866017 -0.0560974117663 0.0123253276807)
(-0.0310507041194 -0.0763915205777 -0.00777916144453)
(-0.0208091685191 -0.0908343692725 -0.0227537039919)
(-0.00615945118674 -0.099884586577 -0.0325207039238)
(0.0057234471181 0.257513835062 0.220763410837)
(0.0176491546889 0.254993916306 0.225309558605)
(0.0233819333974 0.247298426211 0.232134093779)
(0.0230387412308 0.23597176211 0.237447689901)
(0.017585851709 0.221632086506 0.239340836788)
(0.00773960937783 0.20413337395 0.237651632504)
(-0.0041756108286 0.181248206361 0.228019982528)
(-0.0163855191782 0.158514257025 0.220032333048)
(-0.0302739099647 0.136491770625 0.208400685642)
(-0.0447682858655 0.115859990545 0.190482215874)
(-0.0571637524064 0.0948719432818 0.167120732319)
(-0.0665563645376 0.0729045620318 0.139885325727)
(-0.0727448517832 0.0488522935645 0.109970798355)
(-0.0750905491193 0.0231699225997 0.0776615609942)
(-0.0736264301632 -0.00323356189745 0.0447272496212)
(-0.0683498580742 -0.0272838331785 0.013053602832)
(-0.0592378088985 -0.0479618187523 -0.0152275912118)
(-0.0467912706273 -0.0645940026806 -0.0389131518414)
(-0.0308648355482 -0.0767484364399 -0.0565445315274)
(-0.00978331921301 -0.0847376060722 -0.0681777300546)
(0.00395881871278 0.190627641248 0.268493321629)
(0.0123306852385 0.189251920224 0.272721330101)
(0.0144409596416 0.18357607159 0.277773156735)
(0.0114003825541 0.175105202812 0.280768220237)
(0.00281395776506 0.16491777001 0.28159507335)
(-0.0115208129429 0.15153968709 0.276665428942)
(-0.0268221287382 0.135197280659 0.259412588391)
(-0.0396208296748 0.116274519101 0.241999828207)
(-0.0520850411512 0.0983095860936 0.223830482569)
(-0.0656865370662 0.0823603430083 0.200969536678)
(-0.0784487311145 0.0675238990736 0.174367004941)
(-0.0892441936804 0.0511419189383 0.1437192921)
(-0.0968209826125 0.0328486711134 0.107676258229)
(-0.0990973720206 0.013752727635 0.0692480327021)
(-0.0961516654606 -0.00520024643593 0.0310256683047)
(-0.0882327726084 -0.0225269741099 -0.00515627134427)
(-0.0758279743296 -0.0375648723028 -0.0372308471986)
(-0.0594567405172 -0.0499468923664 -0.0642824125072)
(-0.0387850837265 -0.0587901773728 -0.0845360928755)
(-0.0125427370215 -0.0649161172416 -0.0979542715581)
(0.00257113368102 0.116663686134 0.302254452204)
(0.00812529465149 0.116601062697 0.30606210843)
(0.00779501530447 0.11332877161 0.309874894872)
(0.00326527998135 0.108398896682 0.311359386722)
(-0.007171944999 0.102133197591 0.311011519889)
(-0.0238804310817 0.0936908798096 0.30448777432)
(-0.0422385584974 0.0845977781695 0.285811889027)
(-0.0567677296027 0.0726302823214 0.258472421598)
(-0.0681586992106 0.0607285388419 0.233823656005)
(-0.0797491991441 0.0503594330675 0.208027506368)
(-0.0926550251332 0.0415641959744 0.181255062204)
(-0.105381595252 0.0309319775629 0.146602608999)
(-0.113843375933 0.0192609079024 0.106025534728)
(-0.116135246254 0.00718327612296 0.0632095995702)
(-0.112225726075 -0.0046332352087 0.0209776810453)
(-0.102472218426 -0.0152062338447 -0.0185137424687)
(-0.0875707234179 -0.0246455173108 -0.0535958800651)
(-0.0677728313092 -0.032326313672 -0.0832370547826)
(-0.0431045683472 -0.0372525018557 -0.104537572326)
(-0.0135769794283 -0.0415101684324 -0.117571630098)
(0.00199847430511 0.040305133777 0.319207831606)
(0.00611316446906 0.0413712610505 0.32289708941)
(0.00484501315089 0.0405750585091 0.326733512094)
(-0.000848263641071 0.0391590690013 0.327515171788)
(-0.0129855142089 0.0370829488169 0.327298587867)
(-0.0304337002115 0.0338091268796 0.317207394717)
(-0.0501129676945 0.031168738579 0.301323387888)
(-0.0664499198747 0.0270218407858 0.27120274464)
(-0.0777066365541 0.0226900703738 0.241180784182)
(-0.0883603650788 0.0190666446185 0.212920742941)
(-0.101525962975 0.0158937845734 0.184729970396)
(-0.115088020009 0.0121638662636 0.147097460298)
(-0.12382174129 0.00812632155269 0.103886352822)
(-0.126207471418 0.00401513196098 0.058510065745)
(-0.121828741811 -3.77020825922e-05 0.0138425434471)
(-0.111213490463 -0.00354961819189 -0.0276834528463)
(-0.0949299483292 -0.0067106050117 -0.064985608998)
(-0.0725637784627 -0.00928042580385 -0.0962030622344)
(-0.0455592671226 -0.0108161144243 -0.117002137096)
(-0.0146835627608 -0.0133096552774 -0.130815936665)
(0.0298672942022 0.0202604279047 -0.555024236087)
(0.0864867416496 0.0220226711977 -0.548410443098)
(0.141824185264 0.02261685616 -0.531310590182)
(0.192092264234 0.0235839739943 -0.505824838063)
(0.233865194792 0.0241908353752 -0.474473389845)
(0.267411706526 0.0250045242749 -0.441967149324)
(0.293807342902 0.0262655347777 -0.406282014645)
(0.313416500287 0.028418023608 -0.37027706356)
(0.330424813218 0.0326133296888 -0.330494783685)
(0.345829302257 0.0357727236792 -0.280360624268)
(0.349002604601 0.033206957052 -0.223049408292)
(0.340591479681 0.0324417638185 -0.17619755942)
(0.33058571007 0.031622413065 -0.126174525503)
(0.314005639019 0.0294465519638 -0.0683579991156)
(0.286511201307 0.0276974285384 -0.0107006917675)
(0.248455716273 0.0256876611084 0.0412674585183)
(0.20290955254 0.0240172936335 0.0849414587686)
(0.150268886975 0.0224694174491 0.120726426634)
(0.0911042144415 0.0211573892555 0.1454533223)
(0.0316412911584 0.0210188213242 0.156375985491)
(0.0321853677654 0.0603188684221 -0.556259688865)
(0.0893556501163 0.0621955439578 -0.550323046297)
(0.143910120919 0.0635479918202 -0.532274168415)
(0.193899497278 0.0655567818594 -0.505424490908)
(0.235849414093 0.0675704104746 -0.473130324671)
(0.270554456612 0.0704822472263 -0.438312069248)
(0.298052068042 0.0748277195983 -0.399525506254)
(0.320685477732 0.0786583374473 -0.357925225177)
(0.339054903454 0.0845380743226 -0.312810563968)
(0.349315647079 0.0878433523059 -0.265830813563)
(0.349452826933 0.0875114906536 -0.208073912717)
(0.342631087899 0.0883977048909 -0.15712295151)
(0.330909798699 0.0864850072789 -0.102912109979)
(0.31349795854 0.0796124488244 -0.0442912289518)
(0.286275162994 0.0757353115929 0.0136012227998)
(0.247955554675 0.071481867197 0.065081388608)
(0.201866797957 0.0679097976683 0.10835027893)
(0.148951150078 0.0648798409864 0.142133315633)
(0.0911274889837 0.0624274245912 0.164618360732)
(0.0329224648337 0.0623317511452 0.175411671294)
(0.0326506955913 0.102484835267 -0.552412823335)
(0.0905556487999 0.10377647033 -0.545609778201)
(0.146188413421 0.105491901024 -0.52604556095)
(0.196885688872 0.107675977539 -0.498642338806)
(0.239698025867 0.110455295362 -0.465249488873)
(0.27539652741 0.114357724153 -0.427985069679)
(0.302702525485 0.120125127006 -0.386327608304)
(0.324248184635 0.122509890926 -0.342518082831)
(0.341241048972 0.126408177415 -0.295080182089)
(0.352534007588 0.124633741983 -0.243820585926)
(0.353876234508 0.131476778003 -0.184503510783)
(0.344119173846 0.133283925752 -0.129895960416)
(0.327175675429 0.127009326047 -0.072555221176)
(0.308558794414 0.112969631935 -0.0132945942243)
(0.283145142646 0.10753990502 0.0451323078769)
(0.244712574634 0.101753145048 0.096988237975)
(0.198873507626 0.097256953015 0.139883208228)
(0.146255127899 0.0936020465684 0.1728621874)
(0.0886526712825 0.0906603293935 0.194941790816)
(0.031761421172 0.0895275959647 0.205136678105)
(0.0329462315202 0.146134506231 -0.543816479977)
(0.0913818303593 0.146793761131 -0.53661939404)
(0.148336264828 0.147710091932 -0.51694431118)
(0.200174557376 0.149363903958 -0.488878551719)
(0.244176084716 0.152062624648 -0.454039856317)
(0.2810340519 0.156453641233 -0.413980971633)
(0.306763014771 0.163610824273 -0.36867374292)
(0.327626056495 0.163832176748 -0.321807761482)
(0.342008682436 0.16924802328 -0.271665265226)
(0.355732319218 0.179333016738 -0.218911428913)
(0.359296994617 0.190334555682 -0.14513473611)
(0.341166008234 0.180269125176 -0.0972064561919)
(0.315973624334 0.158013136619 -0.0384235049686)
(0.29867296403 0.131318349233 0.0221912100098)
(0.278362429747 0.125853606072 0.0817669453979)
(0.241017891497 0.117933895732 0.134410991839)
(0.196206796403 0.113139854237 0.178179593045)
(0.14371081377 0.10818240413 0.211728971008)
(0.0861434341248 0.10400292492 0.233405501481)
(0.0306635008523 0.102646932674 0.242823780551)
(0.0327521014839 0.190407029976 -0.533324406132)
(0.0921819155329 0.190103190704 -0.524652637994)
(0.150264182274 0.190236604815 -0.504582721872)
(0.203552990967 0.190996292373 -0.47530445967)
(0.248864199026 0.193005306839 -0.438589616761)
(0.287050171915 0.196702904134 -0.395810361537)
(0.310552402997 0.200755958667 -0.347118848359)
(0.330117645692 0.201311526217 -0.297224501459)
(0.355025509268 0.200423992952 -0.241955451678)
(0.371313977061 0.205197329824 -0.174326594151)
(0.356126700718 0.177301278959 -0.111436021806)
(0.317614183961 0.155446916819 -0.0721442391008)
(0.287958778979 0.137384184524 -0.0115650844542)
(0.28153495868 0.124933505643 0.0572897240055)
(0.272781980816 0.125412554771 0.119854365249)
(0.23629227588 0.1163925053 0.172749980976)
(0.194068436592 0.111007463892 0.218181668477)
(0.141589923238 0.10447134179 0.252763405046)
(0.0843323828834 0.0985787289003 0.274593368838)
(0.0298996948526 0.0961186780503 0.282978335087)
(0.0323367759874 0.235344958443 -0.515032981926)
(0.0927661642822 0.23478778552 -0.505453889942)
(0.152115956738 0.234184828882 -0.485510114685)
(0.206729581056 0.233970420831 -0.455108505537)
(0.253536392431 0.234810340162 -0.416234946737)
(0.289314512749 0.240789221478 -0.371576238308)
(0.311854079279 0.254711495745 -0.321818351008)
(0.328569978239 0.229522412368 -0.272636040373)
(0.34320398076 0.230812284949 -0.216436529649)
(0.3323344507 0.222373494227 -0.161509292301)
(0.315606821872 0.205982248742 -0.116941030522)
(0.311457460742 0.20245921264 -0.0298263680885)
(0.298448062173 0.204347730349 0.029558345721)
(0.285823443323 0.117124867556 0.0951196707534)
(0.272181498826 0.11397832992 0.155475644561)
(0.231373417829 0.0995791103976 0.206198363885)
(0.191902331676 0.0907228400353 0.252415211032)
(0.139656942059 0.0810686036683 0.288143311093)
(0.0825312483399 0.0736392458189 0.308190649044)
(0.0291825983813 0.0704194306108 0.315915079072)
(0.0324736070873 0.279752633182 -0.488582950125)
(0.0943478772718 0.279201740298 -0.47790300239)
(0.154535532934 0.277868555261 -0.456691440177)
(0.210126338588 0.276575375659 -0.424838232625)
(0.262170161271 0.274151417215 -0.384757451504)
(0.311946674562 0.284049469287 -0.338723263383)
(0.31347668708 0.298922529592 -0.287703421297)
(0.324854921872 0.172381096196 -0.251696962735)
(0.351256435028 0.159794231894 -0.195357699723)
(0.350879848527 0.160079279547 -0.135450607263)
(0.345311784537 0.177617344797 -0.0679461329499)
(0.338070554755 0.185098671906 0.0145063217828)
(0.19600709088 0.161241328524 0.0817301440937)
(0.204201620265 0.0329115937095 0.129358718586)
(0.257736776591 0.0621314908214 0.175634243756)
(0.218735482643 0.0630385000329 0.217469770969)
(0.185457669059 0.0544549532909 0.26845925859)
(0.135819115578 0.0411619511825 0.306914275477)
(0.0812520863965 0.0336843273683 0.325233630633)
(0.0285381256509 0.0276343222999 0.332887632509)
(0.0330743383536 0.323114177763 -0.451603824773)
(0.0957947017535 0.32181475957 -0.441062717678)
(0.156656182154 0.318673722408 -0.417895207049)
(0.2107568526 0.314402118789 -0.383209260825)
(0.270297198918 0.307231954054 -0.342555412978)
(0.331129446851 0.312720509316 -0.290900855848)
(0.270184758564 0.365840950088 -0.207132197816)
(0.260554433134 -0.0342093004676 0.112197207108)
(0.311510739698 0.0278445517142 0.198259722509)
(0.230893177628 0.0335488308187 0.233468298624)
(0.181064222917 0.0232938194801 0.268678155492)
(0.130360139525 0.00809939671179 0.287625922787)
(0.0774743471733 -0.0062502476254 0.302515258033)
(0.0253186784911 -0.0161493736523 0.312572272984)
(0.0330521395059 0.363836826473 -0.404265666971)
(0.0951392383987 0.361459678441 -0.393381156102)
(0.154938233583 0.354852190567 -0.369415556289)
(0.207328448884 0.346028173421 -0.333517765514)
(0.268726817816 0.333571237677 -0.291557965699)
(0.344645288433 0.324807192828 -0.235469458571)
(0.269515925508 0.326596132023 -0.141944083637)
(0.259931126819 0.0383625262932 0.108616986846)
(0.308866487674 0.0296591531627 0.203935547451)
(0.223419564013 0.0159892028333 0.24024613647)
(0.171359994791 -0.0010680235464 0.271454490387)
(0.117255743999 -0.0190502166118 0.289088858988)
(0.0658111919784 -0.0386934989947 0.29436666576)
(0.0212258772095 -0.0490626040171 0.287280402441)
(0.0321516807767 0.399020253814 -0.345156161137)
(0.09140731911 0.395973969 -0.333057936746)
(0.148335027144 0.385696237486 -0.309449655381)
(0.197348571548 0.371365147696 -0.275414232216)
(0.255847984903 0.352631567814 -0.23374759759)
(0.3229966454 0.33883023044 -0.176579009359)
(0.257783108822 0.364414961788 -0.0815995568727)
(0.253695021659 0.0440573189718 0.107443145189)
(0.29417025929 0.0200001339199 0.198478361686)
(0.207086788399 -0.00427908876295 0.231557877049)
(0.155789590157 -0.0293875871827 0.258243458058)
(0.103388805099 -0.0522918962486 0.271960295282)
(0.0557897803919 -0.0701966312184 0.273475426291)
(0.0176287305049 -0.0797693001293 0.264490515082)
(0.0304029552794 0.425299810497 -0.274034636651)
(0.084884186112 0.423437682121 -0.261728039056)
(0.135756380855 0.4082669341 -0.239298542848)
(0.179607619982 0.38317024972 -0.207742188274)
(0.23481339429 0.359306375988 -0.170666330254)
(0.33484495545 0.300923061991 -0.119694754155)
(0.272767143814 0.217477143232 -0.0236049626396)
(0.241187589964 0.137732477324 0.103833732346)
(0.258086395392 0.0318240166831 0.182780032962)
(0.177380389591 -0.0142814109829 0.207486435903)
(0.130796368434 -0.0512716543194 0.227917272018)
(0.0844218166437 -0.0801488667446 0.236252821671)
(0.0445805456569 -0.100457012014 0.232635715432)
(0.0141420155425 -0.110544947853 0.223346601217)
(0.029078507649 0.445554285869 -0.194497394284)
(0.0755894274622 0.440886157696 -0.179197690694)
(0.110809724115 0.425051999757 -0.15979420521)
(0.150760898645 0.396908097137 -0.137803064501)
(0.163045452691 0.365770859108 -0.0920494118208)
(0.190666538812 0.293866726016 -0.0828997494011)
(0.170702542946 0.218717548213 0.00615980573959)
(0.130362973985 0.187937540286 0.0807113907721)
(0.128260377313 0.162933346725 0.101025836353)
(0.0855672565416 0.162309292132 0.115297683392)
(0.0894955427935 0.157910674633 0.130096467559)
(0.100544411901 0.146003699007 0.137306938396)
(0.142774657769 0.156002773399 0.149785363448)
(0.179038967472 0.143669081473 0.145246536292)
(0.166878870415 0.0388963761671 0.168641748368)
(0.125308543623 -0.021957719437 0.181051219944)
(0.093615042754 -0.0678872377099 0.189907504147)
(0.0583289238639 -0.0995613156794 0.189275640076)
(0.0301662338292 -0.119969766079 0.176652060514)
(0.0102701745885 -0.132004495018 0.169619079448)
(0.0235579553341 0.455257694838 -0.102727889002)
(0.0646722441694 0.44685034886 -0.0881673480682)
(0.0948295427542 0.431560287185 -0.0710599063869)
(0.121537191307 0.40881558587 -0.0534152857403)
(0.130480893608 0.373685244825 -0.0305413652522)
(0.169833792276 0.346683921408 0.00577981574909)
(0.14488860937 0.309247011536 0.0497589598985)
(0.0928674488737 0.286666433384 0.101675342324)
(0.0963135120728 0.247810647197 0.120559883867)
(0.0762874225326 0.235713693197 0.133143855011)
(0.0682680916716 0.216449926847 0.139800676707)
(0.063632083325 0.188527853972 0.141417176439)
(0.0736699709479 0.153296074405 0.140997017643)
(0.0939196654107 0.0946142568534 0.134997047078)
(0.0940696927743 0.0214681408607 0.143187202615)
(0.0726667608191 -0.0353410422351 0.144536053334)
(0.0544694067431 -0.0811559809909 0.142430352736)
(0.0330791827679 -0.112508841201 0.137882135874)
(0.015535392278 -0.131615647242 0.126047306926)
(0.00535028709263 -0.145027089071 0.114383843672)
(0.0186012581027 0.445247631402 -0.00542928982854)
(0.0517257434271 0.438206491523 0.00684726960683)
(0.0751619849239 0.42264358265 0.0204181611353)
(0.0926877304699 0.400746685542 0.0351929592872)
(0.101303014378 0.3697341374 0.0538020902986)
(0.112955772674 0.342524684359 0.0770746163081)
(0.100810762909 0.2809368368 0.102248660572)
(0.0780935977361 0.273010827199 0.131412910271)
(0.0637363768034 0.240852468355 0.14509070322)
(0.0449098000183 0.213827545984 0.15016482538)
(0.0335028290728 0.183009946622 0.149616040175)
(0.0278406689278 0.148377071414 0.143514617681)
(0.0285127644799 0.111370822222 0.134548143386)
(0.0354003982158 0.064619815552 0.122287039457)
(0.0348238653856 0.00567411643473 0.115241887696)
(0.0241707561665 -0.0442695397684 0.103244602188)
(0.0154192253285 -0.086644454627 0.0925422202957)
(0.0061773917795 -0.117264731498 0.079557181702)
(0.000416210401904 -0.136533879425 0.0659012568828)
(0.000573626923607 -0.149830819005 0.0541074838655)
(0.0142871422968 0.414112653115 0.0929616724496)
(0.0402833929802 0.408756485959 0.10294617626)
(0.057465760054 0.396039437967 0.114991376141)
(0.0673621509752 0.377133373329 0.126037782989)
(0.0707598038987 0.351837132788 0.135924823111)
(0.0722357052079 0.321449392971 0.147301007569)
(0.0630396853474 0.281131350241 0.161004489599)
(0.0456693934245 0.25475909353 0.174291742553)
(0.0274477697035 0.223811388443 0.17953348854)
(0.0087570125786 0.194409942926 0.175967463406)
(-0.00570171121028 0.162907522626 0.165191985458)
(-0.0149118034754 0.128213894524 0.148982195309)
(-0.0187534048695 0.0900297923862 0.129387083946)
(-0.0176829961994 0.0476019937245 0.10818255119)
(-0.0181988009334 -0.00215403263738 0.0884910588944)
(-0.0212642441414 -0.046128143938 0.0661947254584)
(-0.0214367139542 -0.0837684467755 0.0447092901981)
(-0.0195638132369 -0.111553795714 0.0247753445625)
(-0.0145050561788 -0.130458535092 0.00868550036747)
(-0.00410827024991 -0.143831326863 -0.00380336065423)
(0.0107853751615 0.363512915494 0.181431761496)
(0.0307476681291 0.358928197649 0.190680076731)
(0.0419728613865 0.348788148513 0.20155851523)
(0.0458941357927 0.332806219537 0.211267122745)
(0.0410786915239 0.311405326551 0.219255020775)
(0.0343130763936 0.285790459189 0.213310527776)
(0.0251796492937 0.250274928271 0.216859018835)
(0.0097257185088 0.220561037012 0.220031164074)
(-0.00921576013712 0.191658423049 0.215901637664)
(-0.0286707348193 0.163168970757 0.202588684013)
(-0.0444645307171 0.13376639752 0.181368451649)
(-0.0554478283212 0.102826965029 0.154706947481)
(-0.0611756809841 0.0696343193367 0.124523376654)
(-0.0626288815698 0.0329836258862 0.095569475013)
(-0.0623331807225 -0.00746063578269 0.0642920613437)
(-0.0594415661919 -0.0439693058347 0.032518436512)
(-0.0525028118127 -0.0751423040636 0.00316471953921)
(-0.0422047421144 -0.0992428153852 -0.0218837538846)
(-0.028539344168 -0.116868392741 -0.0407952167335)
(-0.00882978041398 -0.130033357964 -0.0544700852914)
(0.00745138034269 0.297113717778 0.256812356682)
(0.0223639915335 0.294023328168 0.262437405496)
(0.0289823466784 0.285852578951 0.272776446446)
(0.0269089314803 0.272354453817 0.281051634649)
(0.018826154733 0.255658212174 0.282691566163)
(0.00359575004162 0.236378511949 0.276271502009)
(-0.0111303251745 0.206159796778 0.261318839311)
(-0.0237320191667 0.177338478194 0.255906604656)
(-0.0419001742813 0.151339643713 0.244034516952)
(-0.0612118896107 0.127245768237 0.222279004044)
(-0.0772694928276 0.104035742895 0.192484563731)
(-0.088922903563 0.0797745558423 0.158778950868)
(-0.0966812958712 0.0520116336086 0.123515371073)
(-0.0996566436791 0.0214269417966 0.0841836633095)
(-0.0972242801937 -0.0100203116775 0.0436539484244)
(-0.0897518859393 -0.0387238925654 0.00464336752139)
(-0.0775397009658 -0.0634336539601 -0.0303297286768)
(-0.0613232976687 -0.083543946353 -0.0597802035254)
(-0.0409973407845 -0.0987650323896 -0.0819816418827)
(-0.013281514218 -0.110585674007 -0.0981065715757)
(0.00562950502387 0.2197415915 0.314379146826)
(0.0167661642625 0.218499402327 0.318419899824)
(0.0183423277503 0.212111376385 0.325912862027)
(0.0135030841703 0.202181803462 0.332811931505)
(0.00198737495089 0.190913368499 0.330944780627)
(-0.0203897629313 0.176050630638 0.328021243849)
(-0.040362910573 0.15657099674 0.292219802457)
(-0.0525009689124 0.130027065396 0.277452412031)
(-0.0674746124123 0.10787252953 0.259467999765)
(-0.0842149733923 0.0899554321563 0.232081925056)
(-0.0996117400984 0.0751677760112 0.199720869277)
(-0.114319006924 0.0568830258 0.165948943447)
(-0.124917798169 0.0349603781965 0.121663709058)
(-0.127673826056 0.0120272582985 0.0741320408664)
(-0.123514777101 -0.0106812550855 0.0269131732248)
(-0.113114895764 -0.0313646631099 -0.0173930550316)
(-0.097457952548 -0.0496046625756 -0.0571856058836)
(-0.0769665855301 -0.0650198291172 -0.091030142254)
(-0.0511685384118 -0.0761810314612 -0.1174915638)
(-0.0167539231037 -0.0844135800909 -0.137278648709)
(0.00410431772899 0.135086465834 0.355642466356)
(0.0121328169423 0.134363154691 0.358897173458)
(0.010845841244 0.130796211996 0.364371809651)
(0.00464480955917 0.124716485614 0.368674176223)
(-0.00864920091147 0.118419772475 0.367446623309)
(-0.0331031878815 0.107621194065 0.365265390392)
(-0.0601010603091 0.10087706377 0.332449603514)
(-0.075903350454 0.0836906399119 0.289540804926)
(-0.0857975227196 0.0674439045845 0.26504294675)
(-0.0978708864266 0.0560007128298 0.236296632683)
(-0.114431399491 0.0473356514378 0.211224969573)
(-0.133256398246 0.0343148390188 0.170332653291)
(-0.145038305173 0.02013690231 0.119627876595)
(-0.147887558354 0.00544897785516 0.0664020941204)
(-0.142591460523 -0.00882242009365 0.0142963396492)
(-0.13016912054 -0.0215693609076 -0.0342689114433)
(-0.111901951019 -0.0331622863064 -0.0776818670565)
(-0.0872531100258 -0.0430560344095 -0.115658328907)
(-0.0557978341899 -0.0486793196906 -0.143510920522)
(-0.0172297289512 -0.0540111739873 -0.160096203779)
(0.00349760894961 0.0470732037261 0.377020036677)
(0.010159754564 0.0479597486431 0.382594589363)
(0.00794181227881 0.0471207304389 0.387371153584)
(0.000800307288717 0.045283585805 0.389430362717)
(-0.0158180499621 0.0433767182724 0.392781133421)
(-0.0393680006998 0.0385794236523 0.376089254937)
(-0.0667270136982 0.0378759689979 0.360853892541)
(-0.0886269482636 0.0329644461616 0.316119344676)
(-0.0982763124074 0.0263861660204 0.277048349621)
(-0.107601905461 0.0219462379615 0.244442523664)
(-0.124964300903 0.0183187639732 0.218159703127)
(-0.145715222423 0.0135289028809 0.170988927996)
(-0.158318154845 0.0084618738625 0.116104000911)
(-0.161770211876 0.00333663632035 0.0590388797089)
(-0.155995851085 -0.00145005393204 0.00375543044256)
(-0.142451994028 -0.00557353370505 -0.0479580255484)
(-0.122387528715 -0.00933041373005 -0.093985605332)
(-0.0934905816518 -0.0125882796903 -0.134741314913)
(-0.0582405868027 -0.0139749802915 -0.158640203392)
(-0.0179649848591 -0.0168005940869 -0.174680822587)
(0.0340001594321 0.0214578757843 -0.613858389167)
(0.0943720259869 0.0248178822431 -0.608696054979)
(0.154554581762 0.0261054625889 -0.591571454232)
(0.209722136306 0.027340393397 -0.563163896405)
(0.254018174234 0.0275832609703 -0.525819065857)
(0.288767742539 0.0286419224926 -0.490222312209)
(0.314631876317 0.0306634327855 -0.450933333734)
(0.336407367085 0.0353448934553 -0.417273547302)
(0.360446989879 0.0408693451032 -0.378645352897)
(0.383411540976 0.0416867130666 -0.331127652912)
(0.385115067483 0.0396619056617 -0.257702765873)
(0.373633290601 0.040164971486 -0.215219076287)
(0.368859692808 0.040610804894 -0.164534256182)
(0.35646253943 0.0382078901883 -0.0944339633838)
(0.327817798663 0.0355557814156 -0.0251937948459)
(0.285178368537 0.0324121336891 0.0359060307432)
(0.23403097082 0.0297015308242 0.0889659038674)
(0.173825514186 0.0272550555921 0.13187215423)
(0.105260097378 0.0259750418539 0.160543530287)
(0.0364660045547 0.0279057137906 0.171292153664)
(0.0382954601839 0.0606446815146 -0.6201463711)
(0.100508393185 0.0651124081219 -0.613630492537)
(0.161052351816 0.0687535621102 -0.595159759044)
(0.216484524225 0.0724545548472 -0.564830609119)
(0.261321045916 0.0754196428506 -0.52856462561)
(0.298200756357 0.0800839937448 -0.492073127454)
(0.328342081365 0.0858941716068 -0.4505827938)
(0.352679280904 0.0928824993013 -0.409648907572)
(0.372517967406 0.100265512883 -0.364699415783)
(0.388937595059 0.103276042668 -0.313475699938)
(0.389605342123 0.102485112511 -0.238543532327)
(0.379341292076 0.106404402566 -0.19097746129)
(0.371153276687 0.107725768217 -0.132334019409)
(0.355972445895 0.101393901265 -0.0600247416712)
(0.326712931405 0.0973240150892 0.0106593508012)
(0.283506333117 0.0924624949393 0.0726027299299)
(0.231269457005 0.0877687231102 0.123319689333)
(0.171145199499 0.0831459246984 0.163347100211)
(0.105863732491 0.0800106680094 0.190969376705)
(0.0391086307546 0.0812382321187 0.197918562771)
(0.0396301431264 0.104738912213 -0.619423672859)
(0.104153813501 0.109516751641 -0.611988308483)
(0.16634901679 0.11391180271 -0.590917746443)
(0.222522754522 0.117897705992 -0.559772792005)
(0.269071430904 0.1223443257 -0.522985304322)
(0.307717030425 0.128624320686 -0.482590241433)
(0.337040685071 0.136593547135 -0.435608069489)
(0.360009836234 0.139764657016 -0.389092339864)
(0.379723691031 0.144211151176 -0.338534904324)
(0.395367398252 0.145622530335 -0.283764835337)
(0.396542048849 0.155145672631 -0.223095215546)
(0.384669349546 0.156774602081 -0.155220885033)
(0.369189607641 0.154147382845 -0.0899913218378)
(0.351461359118 0.141422558797 -0.0190958721809)
(0.323219481767 0.137278693627 0.0506120540596)
(0.279391188944 0.131861616357 0.112119312628)
(0.226935317036 0.126490679374 0.164066545661)
(0.167807953729 0.121531769149 0.202827505587)
(0.103635786242 0.117212417145 0.229654865627)
(0.0379690032262 0.116698634377 0.235939419055)
(0.0394489574646 0.150571438193 -0.609893337776)
(0.106129610093 0.155312134065 -0.603750652052)
(0.170401878139 0.158709080485 -0.583478786593)
(0.228489437975 0.162543836825 -0.552583293547)
(0.277172077203 0.167421974209 -0.513808485623)
(0.317456458927 0.17439337187 -0.468604498994)
(0.34512393973 0.18379717158 -0.415707055948)
(0.365825473373 0.185248263865 -0.362450258625)
(0.382929324871 0.193361904632 -0.307609803676)
(0.40375650445 0.209315944968 -0.243290093008)
(0.40449273319 0.219259559937 -0.178002391883)
(0.381634047748 0.203867028884 -0.104624961831)
(0.359866495436 0.185434672803 -0.0403417091956)
(0.342158700715 0.162310587967 0.0290085636152)
(0.318924475381 0.160074802271 0.0992755425048)
(0.27539108473 0.153315921159 0.161422821625)
(0.22406145395 0.148368842115 0.214951141842)
(0.164860912051 0.141829486588 0.254727416787)
(0.100621710482 0.135313697105 0.281075021564)
(0.0359705437405 0.133107982277 0.285589106968)
(0.0382919003802 0.197853216649 -0.600751193671)
(0.108043980619 0.202637551283 -0.59733807599)
(0.1742578541 0.205163524831 -0.57536282449)
(0.234432872258 0.208321141832 -0.542324654143)
(0.284994098141 0.21261972062 -0.500349733585)
(0.326696000478 0.218620882267 -0.45019598312)
(0.351502654472 0.224058142619 -0.391597251952)
(0.372450895366 0.224208552142 -0.334245406578)
(0.402738235479 0.226739375301 -0.270473806012)
(0.419709562192 0.230117869909 -0.198592918077)
(0.394675490452 0.197184399657 -0.137704722849)
(0.356246754516 0.186758858252 -0.0763715140787)
(0.335343111742 0.166769746233 0.00503792202731)
(0.32832347258 0.155362323996 0.0754177370227)
(0.31509486353 0.158714601178 0.149965403444)
(0.271831694368 0.150520275197 0.213091982771)
(0.222675494441 0.145578542741 0.26698013571)
(0.163190012802 0.137541604608 0.308182499213)
(0.0984410651653 0.12797296482 0.33498273611)
(0.0346033461393 0.123934708422 0.339392007516)
(0.0373045631719 0.246730175067 -0.579710667553)
(0.109059008479 0.253102132427 -0.579397859234)
(0.177313177513 0.255355797255 -0.559343524457)
(0.239859114718 0.257433669734 -0.524685598032)
(0.292135324765 0.259885669385 -0.47850411659)
(0.330722904565 0.266817382962 -0.424567238809)
(0.352155564111 0.280498590743 -0.361479073763)
(0.369973853336 0.248992554402 -0.30220261008)
(0.385107506712 0.24941927198 -0.23696943638)
(0.374238285882 0.239574337022 -0.177847983189)
(0.366705618737 0.226310708559 -0.0988236121519)
(0.361691844866 0.235130819739 -0.0126201924457)
(0.339627238605 0.232248608063 0.0670316590204)
(0.329999998313 0.140975763012 0.104934454884)
(0.314753351265 0.136269595449 0.198219169623)
(0.268078297417 0.118192831546 0.260107168925)
(0.223048595835 0.113912610723 0.316289118069)
(0.162216316028 0.105720687672 0.358454492607)
(0.0960206975798 0.0935322084322 0.383102964129)
(0.0339671179405 0.08981890169 0.386065236653)
(0.0379683397465 0.297178128852 -0.554534635088)
(0.111926748725 0.303424522958 -0.553243332014)
(0.181557218744 0.305812746983 -0.529903750987)
(0.245027296866 0.307287553491 -0.492309946262)
(0.302064914937 0.304763912249 -0.443407412997)
(0.353108642895 0.317329598151 -0.388608353562)
(0.347532706476 0.330132441831 -0.319166752909)
(0.356207025391 0.183921490713 -0.27200532534)
(0.395021913146 0.168150390843 -0.20499113319)
(0.40000033307 0.171938998912 -0.130457358286)
(0.399893528277 0.193457147356 -0.0495206981042)
(0.386670058864 0.196919118019 0.0486400546952)
(0.236134638152 0.164574454949 0.106565518063)
(0.244743300802 0.0431333049272 0.147774741305)
(0.29351969014 0.0767351856075 0.211959362524)
(0.256371452415 0.0737233416258 0.248557880739)
(0.225171097789 0.0623136406358 0.323303988699)
(0.163235078652 0.0417729304081 0.383847773077)
(0.0975633755674 0.0276396882422 0.408768236303)
(0.0348670868402 0.0256043261343 0.408736366897)
(0.0388571169377 0.348840844454 -0.521259634178)
(0.114535963554 0.352913668503 -0.515468054439)
(0.186017150276 0.353056437158 -0.489328941183)
(0.246903431556 0.351148980393 -0.449546112144)
(0.31379830984 0.343559841409 -0.397634979875)
(0.378475044402 0.352316765704 -0.334994126772)
(0.304017711732 0.411472256249 -0.232218269045)
(0.299319630806 -0.0362153244833 0.141509910822)
(0.355153670765 0.0390352978699 0.253215700127)
(0.261560284896 0.0450725772347 0.28201621574)
(0.206425229368 0.0256120107257 0.322323279834)
(0.147134652063 -1.40499628911e-05 0.34109749505)
(0.0944990901696 -0.0193571933513 0.359049441538)
(0.0353079113408 -0.0332645858558 0.374768999193)
(0.0389799554963 0.398418297316 -0.474764634446)
(0.113876526058 0.401294622613 -0.466754364548)
(0.184784450815 0.396647976004 -0.438253474122)
(0.244698165903 0.388012681275 -0.395298106103)
(0.31477952673 0.375685471971 -0.341198119799)
(0.397056380162 0.367377376792 -0.274855432477)
(0.3068702389 0.371734891685 -0.161454605598)
(0.300414054063 0.0391347412886 0.140063102876)
(0.355210965245 0.0312557927248 0.265908766821)
(0.253844646195 0.0173190512402 0.295441899471)
(0.195523207213 -0.00286273590639 0.335752339685)
(0.132753881665 -0.0236543316495 0.357513392945)
(0.073362940648 -0.0454985551571 0.360253453195)
(0.0227042208758 -0.0646969465186 0.339929214995)
(0.0387317730195 0.443628971293 -0.413603947095)
(0.110306896698 0.445157548062 -0.4015205654)
(0.176766524684 0.43588106394 -0.371016898821)
(0.23413962429 0.420352808246 -0.331355309362)
(0.303311359157 0.399322087527 -0.27766660907)
(0.376980763291 0.381524619633 -0.208803193431)
(0.296329250834 0.406931674417 -0.0878552279115)
(0.292884386223 0.0405354198647 0.136494569892)
(0.338902761638 0.011590648821 0.256553353962)
(0.236191758921 -0.0162462416911 0.285275348333)
(0.178577293641 -0.0456050927054 0.320857719663)
(0.118679552002 -0.0715389223216 0.339063791358)
(0.0637682017856 -0.0913656712522 0.342316250477)
(0.0180484235739 -0.101809269187 0.326450730228)
(0.037341749822 0.478774545389 -0.335817477203)
(0.103428945324 0.4815646429 -0.318554951619)
(0.162886651408 0.466658862162 -0.29080535247)
(0.213770506997 0.438538422102 -0.255448967715)
(0.275990132751 0.414086511286 -0.208883105686)
(0.383215126037 0.338098048241 -0.143187670181)
(0.30987099865 0.25300564616 -0.040534200354)
(0.278364408802 0.146104034252 0.125559885232)
(0.296902379882 0.0201324455461 0.228073168111)
(0.201376306131 -0.0347288632265 0.250725154806)
(0.150138586377 -0.0791467777638 0.27821790911)
(0.0973671312043 -0.112674470156 0.291605330164)
(0.0512330181204 -0.136970272348 0.290920163384)
(0.0142113963669 -0.144492168807 0.277810635768)
(0.0371802752238 0.507798644239 -0.243973292786)
(0.0951357478406 0.505798626049 -0.222062217649)
(0.134060178692 0.490567766802 -0.19590912901)
(0.183859619756 0.457607354476 -0.167100749361)
(0.192170869106 0.422423104613 -0.128718168956)
(0.229318507003 0.342846778434 -0.0889566928813)
(0.22488039202 0.253277252002 0.00532850227326)
(0.164208784052 0.199774976421 0.0879564444529)
(0.140286943391 0.174946877759 0.111182539639)
(0.094972255904 0.173331427858 0.123542834336)
(0.0965092957463 0.16605836152 0.143453712429)
(0.105068647514 0.151433987458 0.152502033427)
(0.145085213734 0.164621022625 0.170723612029)
(0.192298417466 0.151080608444 0.164285663624)
(0.186209806991 0.0243116739829 0.200280229016)
(0.138513580626 -0.0478956082682 0.215104884789)
(0.104050410258 -0.103551624682 0.227761945352)
(0.0631472079391 -0.138618055369 0.229651923738)
(0.0341311393037 -0.158736583869 0.217830082329)
(0.0121903460517 -0.170520934824 0.193243282873)
(0.031142889398 0.523517450292 -0.136504037772)
(0.0833473045939 0.513468456788 -0.112923739459)
(0.115258397393 0.498338877828 -0.0855467349691)
(0.145242311242 0.474386212675 -0.070496315048)
(0.160619732065 0.430241027722 -0.0414960885801)
(0.197293860448 0.405376879985 0.0044639108261)
(0.176564586403 0.348062943241 0.0356215564987)
(0.121386200626 0.311302082624 0.111355369171)
(0.10802689323 0.268269116175 0.138302100587)
(0.0807874929889 0.253001026834 0.150579581053)
(0.0673982504233 0.228519490389 0.158678729171)
(0.0594571658921 0.195847478833 0.159011665767)
(0.0695217555828 0.154522987091 0.157519852966)
(0.0959430226538 0.0903576142467 0.150197240296)
(0.0998871889912 0.00137106088881 0.163734287702)
(0.0753683557592 -0.0674699431715 0.166324254526)
(0.0577404245726 -0.121026051692 0.165545418838)
(0.0354794259991 -0.154886989832 0.163553878235)
(0.0158472648424 -0.170072079199 0.148791786687)
(0.00413012008832 -0.186010789876 0.132121287574)
(0.024076642273 0.515994253239 -0.0200913431085)
(0.0669885473903 0.505584677578 -7.93377473999e-05)
(0.0937021894607 0.489015540075 0.0174313844515)
(0.113597397243 0.465354148558 0.0356315660851)
(0.123877610091 0.429447812419 0.0578780577196)
(0.133727927189 0.39255833833 0.0857763698153)
(0.121193908167 0.326736664405 0.115518984159)
(0.0934522286601 0.303493960038 0.148573603056)
(0.0693774116878 0.265090021066 0.165166831419)
(0.044124856637 0.232586113033 0.171532336253)
(0.0267324517771 0.196228399087 0.169867944567)
(0.0171174202207 0.155709287546 0.161250464675)
(0.016751024694 0.112259742315 0.149068755764)
(0.0256889746662 0.0572387957735 0.134178977718)
(0.0262952279195 -0.0153495783032 0.126498156816)
(0.0162321242105 -0.0760650817002 0.109605213471)
(0.00978511540945 -0.125740459481 0.0999246834942)
(0.00166027447055 -0.160562333129 0.0850182541024)
(-0.00293662334435 -0.178278507558 0.0702930476021)
(-0.000993043804684 -0.191994707144 0.0548755039119)
(0.0180955127624 0.483232012181 0.102201426048)
(0.052547731505 0.475518196936 0.123322246709)
(0.0722745145873 0.460943518655 0.13655280963)
(0.0824859005969 0.439247997912 0.149127620296)
(0.0852118691701 0.409883982214 0.154755015994)
(0.0856128698257 0.367948863492 0.169751949096)
(0.0748276050909 0.321606004394 0.18794465752)
(0.0524857166344 0.286714715482 0.20405890907)
(0.0264997431378 0.250489245227 0.210517052242)
(0.000337683732198 0.214966425408 0.205543313928)
(-0.020461624976 0.176820122178 0.190976916965)
(-0.0340941622164 0.135136171367 0.169325247115)
(-0.0398355999817 0.0891502179077 0.143815786777)
(-0.0378864681868 0.0391985512526 0.117428925917)
(-0.0374491605698 -0.0214949242479 0.0934377224312)
(-0.0393000094229 -0.0740788643708 0.0656182460733)
(-0.0365353551383 -0.119076112062 0.0394132952802)
(-0.0308009744535 -0.150001708068 0.0152382227379)
(-0.0217548818097 -0.168609263181 -0.00308753775847)
(-0.00620938130351 -0.181836099426 -0.0181272246095)
(0.0130977500837 0.425024631285 0.211569690079)
(0.0397879006762 0.418426948311 0.23202075265)
(0.0533632838648 0.406962926064 0.246563414016)
(0.0582300350783 0.38843754364 0.259511024304)
(0.0458738261294 0.363036679772 0.260236943495)
(0.0361721295979 0.32986748167 0.239847209055)
(0.0301298412745 0.28382842791 0.253276003574)
(0.00975553220778 0.248497684664 0.260333061379)
(-0.0171820698297 0.214537169868 0.256976012895)
(-0.0448247295194 0.180414759443 0.239787507386)
(-0.0674269515867 0.144933595236 0.211598010207)
(-0.08321899676 0.108285668951 0.176387921543)
(-0.0897701018004 0.0697817089806 0.135910074963)
(-0.090967253176 0.02563637662 0.103248039723)
(-0.090664989051 -0.0238605136684 0.0642372019841)
(-0.085432168338 -0.0677782175124 0.0243823378554)
(-0.0742824983259 -0.104302911621 -0.0120994744054)
(-0.0585579999172 -0.131104013594 -0.0428065078669)
(-0.0388995839715 -0.149344828298 -0.064337577321)
(-0.0110411694488 -0.161967649626 -0.0813007912951)
(0.00789969709998 0.347582360823 0.301736274958)
(0.0281415891476 0.342642756591 0.321929961749)
(0.0376103954304 0.333029623899 0.331765450394)
(0.0333092680315 0.318240786454 0.347269660163)
(0.0185447304817 0.294981816519 0.348741902932)
(-0.00321453790515 0.279203735917 0.290852030447)
(-0.0170286278858 0.230920276345 0.298600393824)
(-0.0293386493584 0.196627399673 0.302836582395)
(-0.0558085853339 0.166626422725 0.29108616971)
(-0.0836309415527 0.138260603046 0.263621920128)
(-0.105611358806 0.111697030475 0.223243164761)
(-0.119986870467 0.0864194233204 0.179604527276)
(-0.130436818544 0.0537097498421 0.139761193976)
(-0.135302591421 0.0155002829083 0.0904494634967)
(-0.131691381162 -0.0229483356213 0.039472788346)
(-0.120789464368 -0.0571947865487 -0.00901313240059)
(-0.103798957751 -0.0862472609854 -0.0523743743367)
(-0.0814534574526 -0.109305548812 -0.0879895044019)
(-0.0538330739879 -0.126546233153 -0.11325209223)
(-0.01575760275 -0.13912707685 -0.133964289516)
(0.00481303440178 0.257444938496 0.371855766819)
(0.0195184957515 0.255830315935 0.38718721648)
(0.0245801564384 0.247762302099 0.394323295511)
(0.0160642271603 0.23633018602 0.408477976828)
(0.0010718967256 0.222524206542 0.410047627977)
(-0.0362999231038 0.21211603785 0.364484655195)
(-0.0604906366319 0.183713440132 0.318355512758)
(-0.062829365583 0.140360241182 0.320711628658)
(-0.084719110064 0.11459450685 0.306312904441)
(-0.108659240203 0.0950141305628 0.271516531918)
(-0.126515075476 0.0842635125264 0.224471514203)
(-0.146485388792 0.0642444294859 0.195628788719)
(-0.163610768878 0.0362857741949 0.138921495092)
(-0.16724050828 0.00772311254163 0.0790109378903)
(-0.161048649019 -0.0199262493473 0.0198768877489)
(-0.147102259745 -0.0448156300013 -0.0348532393504)
(-0.126935744474 -0.0665005370985 -0.0836563275862)
(-0.100696408145 -0.0853883078207 -0.125083216196)
(-0.0672534118299 -0.0984920513894 -0.158668645405)
(-0.0205741541416 -0.10628808914 -0.189646050439)
(0.00310582331101 0.159191925838 0.419701449243)
(0.013047421696 0.161077062051 0.432910928947)
(0.0144515840816 0.156172950338 0.438275244817)
(0.00568829773728 0.147031139558 0.448736923644)
(-0.0091381060054 0.143828698715 0.448947655481)
(-0.0469505124362 0.126573604092 0.410812337096)
(-0.0924169495299 0.131210510776 0.334532054879)
(-0.101491814834 0.0994229370931 0.313391014703)
(-0.103757674759 0.0742302108408 0.299645339157)
(-0.116063971472 0.0618941390886 0.26330019768)
(-0.137665236836 0.058017290751 0.253674102115)
(-0.168427513403 0.0392076491089 0.202426340205)
(-0.185393674893 0.020899689317 0.137922129268)
(-0.188460218863 0.00272933837952 0.0711645914477)
(-0.181117884785 -0.0146187924154 0.00594704109141)
(-0.165337980989 -0.03011957423 -0.053598016046)
(-0.143362778474 -0.0441261382143 -0.106968514153)
(-0.112621875688 -0.0570411913708 -0.156221079125)
(-0.070350681117 -0.0611391182855 -0.194555151318)
(-0.0194881658119 -0.0671396897805 -0.211389569766)
(0.00497670713116 0.0555924663579 0.443551274496)
(0.0130766273649 0.0585210993973 0.453186502454)
(0.0102077266439 0.0576001267086 0.458361485356)
(0.00335709585369 0.0543429959554 0.464083947949)
(-0.0212245714591 0.0541264856276 0.464933564725)
(-0.0508274274551 0.0427844508593 0.431983976684)
(-0.0883814964501 0.0513862722264 0.358519731497)
(-0.119999801322 0.0468802740347 0.310904433763)
(-0.123057100708 0.0328632148589 0.284206152821)
(-0.126000713026 0.0271462112027 0.271345986115)
(-0.149995799873 0.0232039312606 0.258781622145)
(-0.18407215136 0.0157588700003 0.200894841961)
(-0.200185234279 0.00930720604224 0.132406001069)
(-0.202881430804 0.00325446668265 0.0618775462694)
(-0.19462604249 -0.00201816732591 -0.0077062099298)
(-0.177901497021 -0.00653922885738 -0.0729169791024)
(-0.155007324592 -0.010844177932 -0.131531825267)
(-0.118012513519 -0.0152971226696 -0.187734178741)
(-0.0726937460529 -0.0154305224101 -0.21122643657)
(-0.023201186709 -0.0224242804639 -0.23593420691)
(0.0356636883785 0.0160723948875 -0.735458623612)
(0.101182027006 0.0188170594281 -0.73115031681)
(0.169793947618 0.0225885521232 -0.714530410805)
(0.232841840377 0.0272302168086 -0.681896834359)
(0.276812038204 0.0294567427753 -0.624887728777)
(0.315157759465 0.0330903472051 -0.590916550217)
(0.345439722625 0.0356078371655 -0.540804567014)
(0.368806152737 0.0392444292709 -0.497642654165)
(0.397605426079 0.0447627408619 -0.450807620958)
(0.431237749018 0.0492475670823 -0.400456107301)
(0.426367877686 0.0466239691723 -0.31456712178)
(0.401212993841 0.0470206109447 -0.297581894355)
(0.410620371548 0.0520290603804 -0.244706039961)
(0.406148401147 0.0487697322186 -0.156581483278)
(0.37467383996 0.0460524382501 -0.0724628113177)
(0.327162476112 0.0421478213012 0.00327126662277)
(0.268747796668 0.0379908164572 0.0676144392284)
(0.19816472556 0.0352517163584 0.126146543226)
(0.118128688848 0.0348703884584 0.163359804713)
(0.0435828368631 0.0385300920433 0.176427861152)
(0.0384720209664 0.0520254404453 -0.750474269588)
(0.108035494987 0.060574881858 -0.731855858826)
(0.180959844283 0.0686592553147 -0.707354895932)
(0.245536350666 0.0765041755225 -0.664341650936)
(0.292144513736 0.0818444432354 -0.616469604235)
(0.330993343693 0.0902062710829 -0.579194274161)
(0.362574170423 0.0978250053773 -0.526554444578)
(0.386769109958 0.107072946931 -0.483757704361)
(0.410714896301 0.117958733305 -0.430145761324)
(0.439966301625 0.125561859129 -0.376017670331)
(0.435747274185 0.114438295701 -0.288311363631)
(0.412612403782 0.128886871022 -0.252656527492)
(0.413117447984 0.135814068764 -0.185599375809)
(0.402224675501 0.13260196461 -0.0984082167094)
(0.368017131588 0.131614399879 -0.016262968619)
(0.317336035253 0.127560843843 0.0547389475075)
(0.257657123576 0.122881196186 0.11331027031)
(0.191667312357 0.116113746598 0.159397391727)
(0.119256817304 0.107585873917 0.194218240508)
(0.0467179255235 0.110561265571 0.214494016959)
(0.0415475984143 0.101824372322 -0.757205735158)
(0.115865143212 0.114848553444 -0.727946517402)
(0.190792629695 0.122358679986 -0.693053018354)
(0.254941473932 0.128485789533 -0.654366288401)
(0.304101275798 0.135212027355 -0.607670545022)
(0.346161343213 0.145659852326 -0.565419793435)
(0.37653720736 0.157701108894 -0.504236532655)
(0.398505452303 0.164721218889 -0.450349762648)
(0.420517705116 0.17361639507 -0.392338651284)
(0.437381652141 0.181028494122 -0.330218890023)
(0.445071623279 0.180904957512 -0.263308647707)
(0.430100459047 0.198642805579 -0.203731933074)
(0.409775248668 0.197065163173 -0.118605479637)
(0.392675588084 0.186880859067 -0.0344301080964)
(0.359153387271 0.18722578163 0.0461217875552)
(0.308609876559 0.183351401025 0.116698176348)
(0.249319394591 0.177841512841 0.173243576421)
(0.184045238533 0.168758667357 0.214912314784)
(0.116170348993 0.155885775453 0.246608881451)
(0.046216624187 0.153323222195 0.266918729436)
(0.0446954160946 0.150694593696 -0.73947869789)
(0.121073954899 0.163987952125 -0.712615677627)
(0.197366489754 0.170222264859 -0.684413314535)
(0.264015031708 0.176283496957 -0.647094443421)
(0.317279355492 0.184473518332 -0.60016472573)
(0.362173084291 0.196649360457 -0.550578640122)
(0.390576745692 0.20995653747 -0.480956211144)
(0.409762926004 0.213650618398 -0.414880324714)
(0.431246764194 0.226408083983 -0.345831138161)
(0.450368999836 0.248799020625 -0.270849233132)
(0.455278954097 0.259864281442 -0.203946357032)
(0.427726455092 0.241743788662 -0.132850274433)
(0.395512345854 0.232433334446 -0.0437596081842)
(0.381171360338 0.212372142886 0.035334376309)
(0.352801369761 0.218446714868 0.11538660654)
(0.302154986601 0.215297650609 0.186842141255)
(0.243409980749 0.209049768954 0.245462559708)
(0.17813125639 0.19796606667 0.288217969382)
(0.111117971823 0.181236796305 0.317074943511)
(0.0436699781844 0.171645098273 0.331944183713)
(0.047600794334 0.204307813422 -0.736215210618)
(0.126441321512 0.216025463802 -0.712073691101)
(0.205653461428 0.219971871709 -0.68187539135)
(0.27453275884 0.226103847582 -0.641074068638)
(0.331444126224 0.234949121211 -0.591308282981)
(0.378066462046 0.246650562773 -0.532326518445)
(0.402507902669 0.255520944567 -0.457836217591)
(0.421128666508 0.255332019719 -0.382751773172)
(0.454949073174 0.259608179399 -0.304066271338)
(0.469037149267 0.260453924201 -0.230146398388)
(0.439826347084 0.240181445066 -0.153922966453)
(0.404418393077 0.223079347859 -0.0660072066231)
(0.380123306532 0.214417448858 0.0321589133481)
(0.370632601659 0.190909448855 0.10276379416)
(0.353953724804 0.217016056174 0.183775267437)
(0.299455165025 0.213894350143 0.254128928482)
(0.240379195453 0.208738637617 0.314739602883)
(0.174638389706 0.194246563894 0.360294178245)
(0.10769315316 0.173420176346 0.393074665314)
(0.0426409724651 0.158544121277 0.405875928522)
(0.0490404338464 0.26835177389 -0.71311024539)
(0.128654993635 0.275676657764 -0.694463404614)
(0.210936676094 0.279360871422 -0.67020230881)
(0.284706864033 0.283843794397 -0.629802083643)
(0.344562460423 0.28916230235 -0.571773283478)
(0.387974797046 0.300656867605 -0.504082847404)
(0.40729895702 0.31986378545 -0.426410940448)
(0.421664358978 0.280877490214 -0.354854475758)
(0.434780415163 0.280193397255 -0.270292255466)
(0.430997847296 0.272087565312 -0.179429850131)
(0.422274116726 0.266655662953 -0.0676627118569)
(0.411232125693 0.282532040703 0.022837054755)
(0.370067977699 0.265990202215 0.12563692932)
(0.37142890013 0.166813691632 0.152148581647)
(0.370613707215 0.171454005516 0.244757472047)
(0.299042029761 0.147297804088 0.313689291052)
(0.241561347488 0.153162165321 0.375802897903)
(0.171696820953 0.149186995459 0.422226132792)
(0.104594668043 0.127652368008 0.456063132938)
(0.0421470519337 0.111118458317 0.472118041369)
(0.0506563393823 0.326745229356 -0.688596383213)
(0.134248383687 0.333931431576 -0.67246076461)
(0.219430313583 0.338102129929 -0.640476805435)
(0.293668169298 0.341388568563 -0.593545790445)
(0.357956980685 0.342472693304 -0.536226327669)
(0.414824467006 0.359085548612 -0.468645173066)
(0.399584623025 0.376049734492 -0.384268851302)
(0.400693573607 0.205125260179 -0.318370010496)
(0.451914350264 0.185099604256 -0.213160589423)
(0.456640414492 0.193419234429 -0.113862066375)
(0.457919194995 0.210283943366 -0.0171652435784)
(0.433654363132 0.218961326463 0.0914159064507)
(0.263414009451 0.165996112125 0.175496169148)
(0.287081482516 0.069539418336 0.172046343623)
(0.331696920095 0.101659064491 0.308059605527)
(0.287908571357 0.0916833602237 0.363722125496)
(0.264338602599 0.0769706180865 0.419259435991)
(0.18714529495 0.0422139690689 0.465555086526)
(0.107925012101 0.0195174168853 0.498198031877)
(0.0432266347097 0.0163675412593 0.512791874383)
(0.051803057359 0.387007215355 -0.643751349248)
(0.139885584399 0.391764605449 -0.626919552979)
(0.22381891824 0.393388386338 -0.591153599468)
(0.297301389623 0.393562911136 -0.54754371186)
(0.374642046559 0.388150030054 -0.484385953177)
(0.446785667024 0.401684009734 -0.410808036531)
(0.357438817156 0.472729105163 -0.282773892307)
(0.352207280989 -0.0304065824266 0.160445797824)
(0.402207054966 0.065069873981 0.342642975742)
(0.28088628061 0.0744533773528 0.381078672119)
(0.215574564628 0.0419153042754 0.45226805866)
(0.154376106056 -0.00263794778553 0.517492773863)
(0.112728350516 -0.0357522546066 0.548721953517)
(0.05182397236 -0.0616412367027 0.551805704227)
(0.0502214745236 0.449031938944 -0.580352438122)
(0.138532381801 0.447653689933 -0.567735005117)
(0.223302046394 0.445889629726 -0.535013304594)
(0.295652621257 0.437754909468 -0.482091422073)
(0.376658934356 0.426201995819 -0.419942063461)
(0.469882944248 0.419055513188 -0.342607085137)
(0.362239008436 0.429271169788 -0.194758682927)
(0.35733022243 0.0434712116264 0.151612325163)
(0.406556682346 0.0379059456725 0.340947579937)
(0.275728574627 0.0275044091525 0.373912681236)
(0.20899320876 0.00765760429276 0.442032887301)
(0.13296788091 -0.01276836437 0.493722603095)
(0.0647559544356 -0.0437870103949 0.529431304504)
(0.0223086018676 -0.0762606199124 0.525275750879)
(0.0488231996461 0.501755806373 -0.504058516436)
(0.134854169008 0.503620512511 -0.48727333461)
(0.213825601492 0.495185291281 -0.45260861918)
(0.282101856739 0.477057973539 -0.407224077014)
(0.363542225083 0.451700381932 -0.340832539088)
(0.452388675464 0.433826718431 -0.261345562699)
(0.353250849271 0.450883769505 -0.0950155406726)
(0.347586475664 0.0341648609678 0.141382759725)
(0.389262728539 -0.000515045392826 0.316134611052)
(0.257948254288 -0.0276775110132 0.342680552457)
(0.192313747298 -0.0618364981297 0.398644393486)
(0.122568699819 -0.0905269368122 0.437573499419)
(0.0617817974064 -0.109078620939 0.463758200985)
(0.0212417754696 -0.113673472711 0.450634701697)
(0.0484473182327 0.543369544313 -0.409289326478)
(0.128257797688 0.552124201669 -0.385746489183)
(0.194810658159 0.536020827051 -0.353550990448)
(0.255241044549 0.505156878374 -0.315579028147)
(0.33160946303 0.470630851815 -0.259829558006)
(0.443346860632 0.389825969675 -0.182182228058)
(0.353790291175 0.290186257993 -0.0510739154828)
(0.327711727613 0.148605881138 0.122041992305)
(0.339103780801 -0.00206103305267 0.272194628301)
(0.217476745449 -0.0619086339059 0.298245648486)
(0.160497852812 -0.116220920193 0.33791054953)
(0.10151901071 -0.155711289552 0.363800342944)
(0.0537058725405 -0.181173399285 0.379839378385)
(0.0204541024974 -0.191870659251 0.361638033892)
(0.0510648604917 0.577383964441 -0.309920655077)
(0.120370808243 0.584931495426 -0.251231770692)
(0.16441504567 0.571631622079 -0.225406830361)
(0.216238584851 0.53064105863 -0.20597863384)
(0.235999175207 0.488663931374 -0.17474639431)
(0.289176219596 0.396770232017 -0.0996153414755)
(0.281137577155 0.289196297702 -0.00550033951669)
(0.200585416111 0.214183907308 0.0772458913725)
(0.150025453554 0.189032044558 0.0997638309228)
(0.0980271304526 0.186037642852 0.126542994415)
(0.0965516249379 0.175824426439 0.14213264318)
(0.103911434217 0.15799256358 0.150914470666)
(0.144483379755 0.173422041873 0.178263489079)
(0.208865516075 0.151702874537 0.171902201115)
(0.2051717532 -0.00466609948858 0.227634174764)
(0.142830908465 -0.0875670791959 0.247195461626)
(0.103846927522 -0.155569325557 0.267363989043)
(0.0607670924066 -0.195800236423 0.281268584923)
(0.0272177099669 -0.21648096082 0.296467443426)
(0.00985079714531 -0.221662428511 0.259531371009)
(0.0435825121768 0.598929939791 -0.208445472753)
(0.108979083354 0.592305994643 -0.174426427422)
(0.136154434327 0.577353012226 -0.125360446887)
(0.169280727498 0.549430178375 -0.0889257544166)
(0.199837039955 0.501720537767 -0.0555342045151)
(0.230746164766 0.463555898948 -0.00189130024974)
(0.216335038532 0.38662915745 0.0466590268782)
(0.159820391502 0.33578126855 0.126685622032)
(0.120935197945 0.289222087725 0.153466189901)
(0.0830730037448 0.270792255494 0.167680045521)
(0.0636903981334 0.239860887304 0.172355186028)
(0.0513374940511 0.200343235229 0.169385817388)
(0.0617384603528 0.148914145557 0.166690289156)
(0.095350186264 0.0746594315266 0.158674619241)
(0.0999574455063 -0.0375950990553 0.179687656405)
(0.0678285832643 -0.122136462623 0.185130989576)
(0.0501633242989 -0.184824649049 0.188015415221)
(0.0276389277279 -0.222717206276 0.183951037394)
(0.0116956997242 -0.231950906565 0.173745710416)
(0.00781244147063 -0.229909390386 0.142150199548)
(0.0342484800336 0.598941032741 -0.0584738711879)
(0.0854385377314 0.587046035997 -0.0248780574027)
(0.114076333683 0.565016847852 0.00487216191736)
(0.138343839576 0.542291008642 0.0361730379229)
(0.153393084637 0.495396132895 0.0632221689752)
(0.162937700304 0.446314780752 0.0961039807407)
(0.148177142727 0.377933165989 0.132723366414)
(0.114067611216 0.333411370874 0.165827734398)
(0.0783597718398 0.287224332202 0.183323155016)
(0.0430586191117 0.249419368678 0.190232559116)
(0.0175548117759 0.205663679537 0.186378123909)
(0.00191678449556 0.156908613446 0.174188866474)
(-0.00101051314118 0.102340906099 0.158956527797)
(0.00850174970956 0.0338498314441 0.141285827003)
(0.00614378428366 -0.0579386996459 0.134557740781)
(-0.00439394512465 -0.13196037308 0.124550848767)
(-0.00682754045758 -0.191181214375 0.104275678839)
(-0.0125444898768 -0.230989981041 0.0850525189276)
(-0.00971133416762 -0.24103745317 0.0654134991049)
(0.000642892356284 -0.243012549737 0.0331514040842)
(0.0267906937561 0.565918380396 0.0994156095655)
(0.067794638124 0.557605713154 0.12611172741)
(0.0886056832516 0.540841787118 0.146070217637)
(0.0979205865082 0.516894425307 0.16506679999)
(0.102854331562 0.476710498198 0.184639205188)
(0.108178069233 0.413955749315 0.19858746541)
(0.0949233246055 0.364068136875 0.219524170075)
(0.0647689222262 0.320896607617 0.235999273611)
(0.0282344036883 0.277338977369 0.242642120052)
(-0.00860153679713 0.233506716554 0.23559607675)
(-0.0391092355916 0.185745041956 0.216846729386)
(-0.0603799652477 0.132956672275 0.189829893649)
(-0.0706071021187 0.0737077339652 0.158989196839)
(-0.0695536352021 0.0132070424409 0.126441304763)
(-0.069939178928 -0.0621785523153 0.0947926474697)
(-0.0713953304168 -0.124133685017 0.0613466482067)
(-0.064701800866 -0.178938080595 0.0279536311393)
(-0.0520513731538 -0.211982117675 -0.00331210683863)
(-0.0333385370544 -0.22560417205 -0.0309866122562)
(-0.00603793119825 -0.227855497346 -0.061135385296)
(0.0189704501239 0.497085348026 0.234805754288)
(0.0528619926199 0.492250733426 0.252626666308)
(0.0705489635477 0.475994195094 0.271049679905)
(0.07116895718 0.458695353503 0.287502067812)
(0.0456649814709 0.433316203772 0.294154708428)
(0.0437043931768 0.360035927838 0.301745339721)
(0.0485085684354 0.315782561647 0.312007977439)
(0.0164339449367 0.277839855961 0.314970792952)
(-0.0231427730997 0.237278548067 0.306643579191)
(-0.0633230531837 0.194426446301 0.284250526645)
(-0.0970732475578 0.148725524057 0.249762520999)
(-0.122537600414 0.102382462581 0.208640137593)
(-0.130718630562 0.0574551112313 0.164816406294)
(-0.131893231811 0.00197895997897 0.110779055782)
(-0.134467563385 -0.0596146258191 0.0600889844471)
(-0.126612376829 -0.112179331054 0.0105955067084)
(-0.10939004967 -0.154341712961 -0.0350317676291)
(-0.0844687044923 -0.182115633774 -0.0751841214399)
(-0.0542175947442 -0.197469035529 -0.108136276467)
(-0.0127333580634 -0.200409421774 -0.134546819659)
(0.0120753100656 0.406448372899 0.346626059458)
(0.0381375061765 0.402088524279 0.353977825215)
(0.0523147286463 0.387836574318 0.365879597079)
(0.0500661776778 0.372811048093 0.381535103132)
(-0.0047752981202 0.35577259905 0.390678400202)
(-0.0162625598641 0.318126990747 0.385493450071)
(0.00569189705951 0.246349534 0.399291455873)
(-0.0253726247 0.213180677289 0.387641641315)
(-0.0692177601486 0.179588982147 0.363715130609)
(-0.111485175414 0.143538690668 0.326619252853)
(-0.143937220176 0.108322854122 0.278280714165)
(-0.161329834351 0.0871266588946 0.220585614233)
(-0.176875570906 0.0467577913696 0.158920012469)
(-0.187837025768 -0.00386410863519 0.0936657778553)
(-0.182993089772 -0.0513444558809 0.0300772558122)
(-0.167298695785 -0.0918092634134 -0.0299862049547)
(-0.142742585993 -0.12463425063 -0.0833888345895)
(-0.110496804134 -0.149728524349 -0.1284612916)
(-0.0724839102041 -0.169119069554 -0.163205512113)
(-0.0199577975205 -0.17917394457 -0.18419393852)
(0.00677258237877 0.300511769998 0.425458712769)
(0.0262032662115 0.29867242523 0.427820999367)
(0.0365772154816 0.289572016171 0.435214560317)
(0.0317105235415 0.276580107465 0.447526898894)
(-0.0178053451407 0.264714282367 0.455889604827)
(-0.072022131339 0.260862408196 0.444727287007)
(-0.0630109031765 0.182645030425 0.46988524353)
(-0.0584508358723 0.136690283403 0.44910654323)
(-0.102204444445 0.112314817695 0.412570175941)
(-0.143584238692 0.0888748671645 0.363371001387)
(-0.158665542766 0.095150869662 0.30115587711)
(-0.184922880122 0.0703792537036 0.227404045733)
(-0.219464476173 0.0305030806134 0.152908612509)
(-0.224440792097 -0.00579013856898 0.07813924256)
(-0.21551920428 -0.0398413507919 0.00475820947977)
(-0.196009917191 -0.0691355683654 -0.0623740688608)
(-0.169139229722 -0.0940768530094 -0.121155941429)
(-0.134578646873 -0.117030387463 -0.171020645162)
(-0.093170429559 -0.135296209797 -0.216145447349)
(-0.0306700783567 -0.141708390265 -0.27181573978)
(0.00468480765974 0.185155922001 0.481782228206)
(0.0188955897482 0.187021815522 0.483396545777)
(0.022511449868 0.182263478983 0.487804856389)
(0.0149084478264 0.173034803908 0.497312777757)
(-0.0301936386454 0.167678322543 0.502839540345)
(-0.105894174389 0.163730326173 0.491565430761)
(-0.12238800686 0.133568007315 0.490430806871)
(-0.0982052489902 0.0787307169464 0.497941371782)
(-0.119782968795 0.0531980989299 0.455319114112)
(-0.129797751439 0.0577975778673 0.397685209276)
(-0.157897925637 0.0748609472187 0.307596069912)
(-0.21623078307 0.0416025056999 0.234890469818)
(-0.240409940992 0.0179562087191 0.150218784263)
(-0.244792906365 -0.00489426504465 0.0652471437669)
(-0.235339728813 -0.0265929086198 -0.0171242273498)
(-0.215548698514 -0.0461254113708 -0.0901062124954)
(-0.189702555867 -0.0638782852442 -0.151416526245)
(-0.15172166467 -0.0824588134307 -0.21291902062)
(-0.0913621613793 -0.0821211094398 -0.279903993456)
(-0.0222660226832 -0.0878398206369 -0.270306756441)
(0.00659513394196 0.0680097625209 0.511926446526)
(0.0200861810769 0.0707579537362 0.529305093434)
(0.0168073344317 0.0698800374538 0.538401574207)
(0.00654806703859 0.0652710243393 0.548545682792)
(-0.037263481744 0.0634290933919 0.551763392985)
(-0.110703298148 0.0597191773976 0.552981128459)
(-0.146510168023 0.0580380814486 0.521999543262)
(-0.135449500237 0.0327901540965 0.513956859313)
(-0.120722948716 0.0162855988545 0.480458873488)
(-0.120056426316 0.0296841197051 0.410982938607)
(-0.168131144832 0.0270470237458 0.323901917497)
(-0.227818419745 0.0175883548874 0.240463134686)
(-0.249437540794 0.0104311653309 0.1433958568)
(-0.252545132782 0.00387313503484 0.049827294769)
(-0.242204636433 -0.00237531124368 -0.0382594777677)
(-0.221790077545 -0.00871959901156 -0.113491222639)
(-0.202460420701 -0.016405172076 -0.177047068031)
(-0.154370634146 -0.0255203113209 -0.269565474399)
(-0.0928658407712 -0.0177582455731 -0.266951868239)
(-0.0311141150398 -0.0295539290476 -0.305267963439)
(0.0170499317186 -0.00735832982209 -0.733390673386)
(0.088886981857 0.00345645087201 -0.712165638451)
(0.167827431245 0.0122483538982 -0.683005581447)
(0.250926112412 0.0314170085246 -0.654614534457)
(0.295982643954 0.0312345056755 -0.636424810863)
(0.324502591298 0.0356892663287 -0.593549741903)
(0.367086839852 0.0409837109898 -0.57000990948)
(0.366600282666 0.0444803234066 -0.525492705077)
(0.418303219941 0.0540485744873 -0.512275218854)
(0.478318406195 0.0584747037382 -0.465623709663)
(0.457354822049 0.0533497475506 -0.413342835848)
(0.44644214026 0.0605734683701 -0.326421910605)
(0.466621306467 0.0587653861927 -0.215551535923)
(0.440609676037 0.055182460283 -0.100001101597)
(0.40124915719 0.0524964661041 0.000703668641612)
(0.347341885674 0.0491997300027 0.0887338345557)
(0.285004138668 0.049786636553 0.160192085359)
(0.208199124719 0.0450209326 0.21956266996)
(0.116471494343 0.0426672372705 0.255906262218)
(0.0498229736009 0.0412977165214 0.267388820786)
(0.0291945475919 0.0347505704654 -0.733756886231)
(0.112826428276 0.054088449515 -0.729178336231)
(0.200277704758 0.0738700956573 -0.701689165703)
(0.272324809467 0.0885135155095 -0.676910080243)
(0.305747726632 0.0857699416233 -0.641278242735)
(0.346116853148 0.0960480321739 -0.589268242331)
(0.39637594677 0.110178571153 -0.55704888126)
(0.403005454112 0.122003319877 -0.509301569427)
(0.446167113369 0.141569948692 -0.476526882849)
(0.484170280325 0.158898097814 -0.425025039303)
(0.470724892161 0.143586029093 -0.367503604589)
(0.461836013739 0.176962887227 -0.289503347949)
(0.463805821922 0.181950717312 -0.178937290991)
(0.434110148804 0.175484100044 -0.0646605727469)
(0.393757663029 0.172856604886 0.0382948139681)
(0.340758423966 0.167909007989 0.119685464895)
(0.277052995698 0.164799481929 0.187817123745)
(0.203268573706 0.158386394644 0.243741221203)
(0.111635203319 0.157390008989 0.283336826932)
(0.0506054493255 0.146618278439 0.299977456899)
(0.0390187427038 0.10870097095 -0.73746646309)
(0.134187453426 0.121312807633 -0.734269552735)
(0.212601261122 0.12984431208 -0.716354096617)
(0.27374925069 0.129241641398 -0.68472415546)
(0.315821105226 0.13446231015 -0.639533979287)
(0.360510226338 0.1503699935 -0.575585827073)
(0.405678057868 0.171688482329 -0.533646365906)
(0.430395996275 0.191348755838 -0.479673917091)
(0.443242711583 0.2111056045 -0.418152518969)
(0.465238501246 0.234509055478 -0.355871513434)
(0.480224077685 0.232917362092 -0.286639514403)
(0.469589753639 0.258779818983 -0.221041054226)
(0.447986824092 0.258201933042 -0.108021940968)
(0.415324048651 0.243026088682 -0.00223535404175)
(0.376942396554 0.237911845301 0.09577937935)
(0.326176469119 0.230209254643 0.175996082959)
(0.267547075977 0.224108953909 0.240262926396)
(0.198014528079 0.220601245427 0.286230879525)
(0.109512120996 0.21623861597 0.324792800043)
(0.0525334232584 0.199709347178 0.344512586979)
(0.0458001702622 0.158194954922 -0.761410594847)
(0.133526783564 0.16129846725 -0.755180522344)
(0.210637268424 0.160743781362 -0.72923262539)
(0.27948098736 0.16764698293 -0.689870234524)
(0.332313594124 0.178570153927 -0.634627391096)
(0.383853339988 0.20220759584 -0.562674652732)
(0.421036264268 0.22403041226 -0.498489570607)
(0.452032946903 0.243105562732 -0.438822569098)
(0.47001529731 0.268710244202 -0.361094919188)
(0.496290447934 0.299057426416 -0.289581525407)
(0.489273069835 0.317785583096 -0.216671241558)
(0.463229062839 0.312474254365 -0.13829621559)
(0.431057907898 0.300522089133 -0.0246503046004)
(0.398974915739 0.273811607194 0.0695463560605)
(0.366175179111 0.274806297843 0.164202815694)
(0.316383206075 0.265691555592 0.243725443747)
(0.262947884162 0.260801365419 0.304766699916)
(0.196242976172 0.257835009916 0.347880254136)
(0.109673487926 0.251567305021 0.379410843067)
(0.055311812602 0.226685816958 0.387578295913)
(0.0531600755368 0.211323990935 -0.768748116396)
(0.144824638733 0.209656848655 -0.755933682159)
(0.225925768298 0.202497028517 -0.72222280624)
(0.297456349936 0.209335865359 -0.684041368942)
(0.357340283881 0.228548614187 -0.621735537032)
(0.412885106844 0.25982626417 -0.541798296381)
(0.439673214096 0.272031114 -0.463260499565)
(0.466779532309 0.277224210815 -0.389226402686)
(0.509605247778 0.293002796694 -0.313675653922)
(0.510103205979 0.308516155157 -0.238879197413)
(0.494518927359 0.304416355386 -0.15483299125)
(0.449297388852 0.297388491248 -0.0461285271788)
(0.410318098431 0.286206769456 0.0618572563549)
(0.386350202306 0.253850686222 0.140302115263)
(0.365414467919 0.274312308607 0.233048535406)
(0.309235015216 0.265357035275 0.314790929986)
(0.261416869905 0.262027062137 0.375106286589)
(0.197351536646 0.258159908324 0.417920341669)
(0.110970259224 0.242455694134 0.439114698867)
(0.0571811878248 0.211348024123 0.428414853214)
(0.056487073252 0.286451726916 -0.765305442255)
(0.142918691173 0.285155980392 -0.758273982727)
(0.227862670188 0.275527967254 -0.716757831046)
(0.314212404733 0.276685852784 -0.662891262926)
(0.390459010987 0.293419003854 -0.598850577521)
(0.437442520813 0.316348772687 -0.512977504235)
(0.44428955154 0.343604291558 -0.416131985102)
(0.468214169265 0.311259864199 -0.362633415874)
(0.507405981876 0.323984603178 -0.273590658478)
(0.511593760252 0.322443952872 -0.170140853532)
(0.486286411114 0.317507378752 -0.0432745734358)
(0.456067595738 0.328975648212 0.0615590400958)
(0.398987392861 0.31081960108 0.157118090986)
(0.383947863093 0.201463584003 0.197308247705)
(0.384579606793 0.248273545017 0.288176969347)
(0.310246842985 0.228346683267 0.373814181641)
(0.261958839859 0.225017696563 0.430340332584)
(0.193537374232 0.216492656871 0.467443516409)
(0.109987725923 0.187913980338 0.476881314809)
(0.0602837561011 0.149014666572 0.455448406165)
(0.0570506707257 0.327292064903 -0.718709468002)
(0.148560406058 0.343412479381 -0.720220365885)
(0.246134489841 0.353911541543 -0.690404812121)
(0.331750633498 0.350426713336 -0.637095159135)
(0.401598895188 0.354358937028 -0.562668082787)
(0.471132752522 0.377276775085 -0.47332596601)
(0.455062819866 0.417156689632 -0.35800153242)
(0.452101539515 0.230310219877 -0.26966080094)
(0.504120706924 0.209867329896 -0.159282873515)
(0.504235878195 0.211991309958 -0.0585498354266)
(0.500611201724 0.215480683136 0.0235225903233)
(0.436497276551 0.217809771355 0.071459809661)
(0.259613601901 0.158299042139 0.150171051363)
(0.330145470966 0.0931651748978 0.163893215934)
(0.404827596151 0.161447253225 0.352396769034)
(0.299031785652 0.159727247422 0.455339045049)
(0.26180533038 0.160656081017 0.495527786359)
(0.183899949997 0.150405324582 0.503257196356)
(0.0991782148006 0.111483932774 0.50203152726)
(0.0581644105825 0.0642352237209 0.475354961122)
(0.0558886550769 0.397989568161 -0.688112888475)
(0.147012701951 0.404485736571 -0.669641448694)
(0.246707339254 0.420499858011 -0.640808046388)
(0.335234401015 0.419435050928 -0.589902796603)
(0.4238656057 0.410836032391 -0.506527375393)
(0.5164972817 0.428266986123 -0.424895829265)
(0.406171848551 0.517467531773 -0.224028393834)
(0.376603512728 -0.0148111990481 0.126660839962)
(0.452774222795 0.0765260553703 0.355980963319)
(0.31662469278 0.0905618868063 0.424146406296)
(0.26476998437 0.0860737697449 0.517230455843)
(0.174533101079 0.0564417575473 0.583793840884)
(0.0877001950054 0.0151590835099 0.583520210473)
(0.0562871683005 -0.0372054872532 0.53596408176)
(0.0536086108606 0.478981167827 -0.649287687415)
(0.141664331595 0.484552340827 -0.623846826666)
(0.244158395632 0.468770512489 -0.575451359236)
(0.337487094934 0.481766345994 -0.527883523406)
(0.42517258225 0.463751731687 -0.446289967804)
(0.538230768888 0.456667632656 -0.366778771489)
(0.413032438432 0.471214695413 -0.163729607941)
(0.367684210453 0.0386420050922 0.119731381999)
(0.443370147462 0.0383756202925 0.333759567332)
(0.301908640214 0.0262942969629 0.383963684432)
(0.237179637673 6.97311639502e-05 0.468500754638)
(0.148634583211 -0.0466182788478 0.515100722682)
(0.0672130704635 -0.0847157152608 0.539871530013)
(0.0441809361653 -0.116234777984 0.545122482616)
(0.0588209273104 0.538151809412 -0.55882357877)
(0.14586700343 0.566047749096 -0.54055532426)
(0.234232605846 0.53623421048 -0.495875619303)
(0.324270234051 0.528452637627 -0.445231379825)
(0.420725721193 0.507149916036 -0.368561983683)
(0.533920285758 0.487627258599 -0.293434563349)
(0.412061123246 0.486340211876 -0.082532034295)
(0.362317203709 0.0175434064492 0.10578512904)
(0.413197357942 -0.0118183409578 0.29566662631)
(0.27017283583 -0.0417315373753 0.329673554593)
(0.203235238977 -0.0877869860985 0.396714224296)
(0.124396809446 -0.135523809115 0.428596284515)
(0.0590927067084 -0.171487395754 0.442135372458)
(0.0444862969378 -0.168306242005 0.431790524805)
(0.0617764412165 0.6126827716 -0.451536510674)
(0.136025808011 0.62949799877 -0.426305375264)
(0.214443266195 0.614208112127 -0.398552900303)
(0.292241219104 0.563533962493 -0.348456414105)
(0.386225958139 0.529161614133 -0.280156397773)
(0.511394933738 0.452532923626 -0.212942770574)
(0.401130219517 0.320974706093 -0.0272789168196)
(0.347947764341 0.125489463031 0.077529016225)
(0.357812344824 -0.0269672218811 0.242783637635)
(0.219025134867 -0.0921953838188 0.279208768281)
(0.157605925304 -0.160305665584 0.326770179713)
(0.0950078533866 -0.213855302468 0.343832969997)
(0.0489101603926 -0.240232679318 0.352869410942)
(0.0468176010323 -0.225088802168 0.335903631311)
(0.0741556418688 0.642614928481 -0.331076967133)
(0.130352609344 0.659228172388 -0.306832059201)
(0.160322299784 0.630633647961 -0.277935413745)
(0.234572192507 0.590186527166 -0.241874661399)
(0.287758660957 0.550527883757 -0.204759335194)
(0.351664579364 0.450478668546 -0.107112740082)
(0.32944043458 0.319280015794 -0.0241491016763)
(0.224716923937 0.228482524031 0.0615642893352)
(0.155615238371 0.202436757819 0.07756981468)
(0.10334749496 0.195706012662 0.0982971023241)
(0.0960863056005 0.186326321692 0.0982510244155)
(0.10599950076 0.162342115115 0.100030722204)
(0.141248161648 0.178551171209 0.121626501269)
(0.218053604381 0.132169395187 0.107225616223)
(0.207450538031 -0.0429334722276 0.192849468796)
(0.130975591463 -0.136085248937 0.225436799728)
(0.0949551323118 -0.216858228878 0.252328600906)
(0.0621073887265 -0.273284982124 0.260757644444)
(0.031184503146 -0.297426407904 0.272283646247)
(0.0357230133434 -0.264496260976 0.262648685735)
(0.0547185440778 0.661275616757 -0.204938324252)
(0.105845322201 0.661756996219 -0.183712827731)
(0.154215963703 0.640840869743 -0.149951758293)
(0.202418265419 0.613411952364 -0.114520212303)
(0.240309451091 0.561652264382 -0.0752711276334)
(0.276520713503 0.504023404332 -0.00976822891752)
(0.258948880834 0.417729483608 0.056796983533)
(0.192541316921 0.356862375562 0.111778977207)
(0.1402402121 0.308462213598 0.123141945305)
(0.0925854902254 0.276853409765 0.133252595675)
(0.0655679760789 0.240416671147 0.133797892769)
(0.0509246592296 0.190676121076 0.128174082159)
(0.0575554993819 0.12502083368 0.123297424308)
(0.0903926996672 0.0403587427794 0.114924441352)
(0.0895428879425 -0.0892412238786 0.150865318495)
(0.0495185816896 -0.176875194096 0.167322448265)
(0.0321316213849 -0.256900563924 0.174618877431)
(0.0152982474384 -0.311227609793 0.167560858407)
(0.00707648019875 -0.330113812407 0.16226007459)
(0.0270837587311 -0.281861710438 0.143308208656)
(0.0536086300827 0.657808715071 -0.0276489464259)
(0.104898691829 0.671188701381 -0.00635396873766)
(0.129601358863 0.642950465991 0.00849133837203)
(0.156429496714 0.609321598241 0.031348814382)
(0.179974926773 0.559652157501 0.0617904402915)
(0.197241842532 0.49283167412 0.0903305994092)
(0.1814325768 0.415143072854 0.123311670958)
(0.140281912916 0.355773817078 0.146810079099)
(0.0961721685655 0.301951839532 0.159432931637)
(0.0511306011375 0.252481050131 0.165940158768)
(0.0171491876695 0.201797271995 0.162061174496)
(-0.00658162050059 0.143628494912 0.149117887749)
(-0.01688479936 0.0782447385998 0.130456267531)
(-0.0103078175728 -0.00552426086824 0.114145928249)
(-0.0123292979661 -0.114760289935 0.116777970907)
(-0.0295601032252 -0.196021561915 0.116147978633)
(-0.0321026805493 -0.264991338538 0.0967950792033)
(-0.0256538673888 -0.31078346187 0.080638679277)
(-0.017652750162 -0.321596389433 0.0679665330133)
(0.0111845430486 -0.283208600323 0.0572436361666)
(0.0388068862088 0.619829885206 0.142289527023)
(0.0984600933212 0.618905828528 0.171415128886)
(0.115404983817 0.597107889526 0.17610741247)
(0.128405494248 0.570484366795 0.181568318837)
(0.129593515682 0.535424372066 0.20208171531)
(0.132616108747 0.477945092551 0.210982369255)
(0.122101867047 0.415765478562 0.219997638277)
(0.085530415281 0.359591959378 0.22890853971)
(0.0397523531489 0.302854811082 0.232634562536)
(-0.00743355921061 0.243918145329 0.225855943318)
(-0.048533206902 0.18449176735 0.207301483142)
(-0.0806877147446 0.121132144209 0.178341508602)
(-0.0994664856826 0.0522955981799 0.146166124804)
(-0.105532533605 -0.028636171726 0.115901369272)
(-0.106975682072 -0.115594990266 0.0882408292846)
(-0.104200851414 -0.187449077351 0.0594532192785)
(-0.0907170805862 -0.243567994872 0.0299616851633)
(-0.0706852645082 -0.282718110401 0.00534126577944)
(-0.0494039913618 -0.294627926158 -0.00976549782473)
(-0.00555606350967 -0.264894288119 -0.0134443868781)
(0.0260990831805 0.545248149822 0.277730820765)
(0.0919846505928 0.535434885375 0.308529511196)
(0.105690711634 0.514947137868 0.315168398184)
(0.110606089636 0.494634968214 0.313043895821)
(0.0940005631803 0.468052045732 0.317399206822)
(0.0820396513466 0.427414744061 0.342912881134)
(0.0661857973538 0.379848274155 0.332334289914)
(0.0258242724008 0.325223224023 0.323641534568)
(-0.0229554117976 0.267539934506 0.310029846881)
(-0.072128659261 0.208513722388 0.28648227694)
(-0.11678104446 0.150878657835 0.251290269745)
(-0.151466104886 0.0911624918332 0.209295778393)
(-0.177998815006 0.0282950507176 0.169273193999)
(-0.188512900565 -0.0377459507131 0.113540928451)
(-0.182733117226 -0.10435657089 0.0662814120457)
(-0.168940135737 -0.161897752939 0.0206551351301)
(-0.144398242075 -0.208918916491 -0.016285369299)
(-0.112537073853 -0.241823801528 -0.0460777832213)
(-0.0806703701875 -0.252754522777 -0.0601338391476)
(-0.0201714928706 -0.238474784681 -0.0649098536645)
(0.0147008634513 0.442740717091 0.389411962948)
(0.0801974884013 0.432115124468 0.409380529131)
(0.0924366799415 0.412027556603 0.416207038118)
(0.0925324601591 0.396055718979 0.417258250858)
(0.0661053968877 0.377353217394 0.41675847909)
(0.0460833609356 0.348675099413 0.470611361342)
(0.0180823828533 0.315310825354 0.445532551269)
(-0.0324375757162 0.267534816065 0.412334051217)
(-0.0828957942245 0.216732510691 0.379067391456)
(-0.131720151569 0.16604547165 0.338660122548)
(-0.177424738133 0.118372552244 0.290344469838)
(-0.215436547182 0.0687629409571 0.237208482738)
(-0.240129389137 0.0134500710816 0.169958690182)
(-0.248463063991 -0.0370079675617 0.107167779811)
(-0.240117481513 -0.0886738573658 0.0487662890184)
(-0.218331877324 -0.133294831389 -0.00231498869574)
(-0.186400016065 -0.171308985628 -0.0483285406676)
(-0.146378666555 -0.200410098553 -0.0769138278629)
(-0.102316837747 -0.207993580404 -0.0961631622593)
(-0.0306751630129 -0.225608164254 -0.102528091989)
(0.0100676435258 0.325171529419 0.456812538805)
(0.0707070398659 0.31910545383 0.478367787152)
(0.0766868053284 0.304986154745 0.48341809)
(0.0733018546856 0.292149261762 0.480673220321)
(0.0432031476605 0.280432810868 0.477062771805)
(0.0147457825671 0.268480208015 0.514434954054)
(-0.0256467754251 0.228402756164 0.542601369445)
(-0.0829381031496 0.200557812965 0.490121322509)
(-0.131340188468 0.163025298625 0.437749440557)
(-0.175993345254 0.128127007699 0.384176170312)
(-0.219881038458 0.0860655532457 0.325795512763)
(-0.261021986945 0.0535619926262 0.239114725218)
(-0.285573277416 0.00967706490397 0.168526963789)
(-0.290626877994 -0.0318079457812 0.102364876272)
(-0.278043782849 -0.0714040658037 0.0414855187966)
(-0.251973420202 -0.105124281389 -0.0160972885758)
(-0.217281768014 -0.133622684678 -0.0594252401539)
(-0.167499142201 -0.151585173002 -0.0906669535989)
(-0.138133070949 -0.17393038302 -0.13125495718)
(-0.0568233062247 -0.117160643578 -0.146105776823)
(0.0061644826745 0.203495201882 0.510030552149)
(0.056687269316 0.195303176223 0.525772832346)
(0.056809164468 0.187186879428 0.526916581926)
(0.0489356774024 0.18124664878 0.518263628382)
(0.0184267708562 0.179964411552 0.508962099892)
(-0.0304746658945 0.176742355951 0.529108540885)
(-0.0691076706554 0.142736008811 0.585331150878)
(-0.112838261532 0.124151068139 0.556021548731)
(-0.16198564293 0.105412512578 0.489371279833)
(-0.207549310797 0.0815004653705 0.426266504432)
(-0.244830665943 0.0605388268876 0.316110899588)
(-0.278897364314 0.0352910212502 0.246411380068)
(-0.308548729885 0.00233374482481 0.173296878028)
(-0.310930915093 -0.0282974008188 0.105309988389)
(-0.295297853772 -0.0559262152594 0.0387935291171)
(-0.266753814432 -0.0790513132805 -0.0181661319658)
(-0.22610840815 -0.0972963227651 -0.0611027608939)
(-0.18639256154 -0.123862446928 -0.115070792086)
(-0.0871583818505 -0.0735213421088 -0.154280127044)
(0.0130736121148 -0.0430626875824 -0.226978196507)
(0.00386457315832 0.0860799817471 0.534265399577)
(0.0389137045265 0.086865545102 0.545854819465)
(0.0357690804078 0.0873415466122 0.541581108196)
(0.0246996214742 0.0860069331275 0.532549981261)
(-0.00836308449722 0.086133615917 0.517855614535)
(-0.0650594156368 0.0819283276906 0.526072286571)
(-0.108734520309 0.0694215256878 0.567122862189)
(-0.135241366039 0.0522721538773 0.566456847287)
(-0.171119147173 0.0478239006737 0.512863793217)
(-0.199923966612 0.0352597590974 0.410407422292)
(-0.227407413764 0.0371819344684 0.300744624774)
(-0.26548115871 0.0254553595911 0.233789363373)
(-0.288874330584 0.011921381004 0.163364893112)
(-0.290544811409 -0.000308569648197 0.0986697696861)
(-0.281180453743 -0.0108219733327 0.0312643560363)
(-0.261161269152 -0.020075678274 -0.0227817219949)
(-0.23665405294 -0.0248470063472 -0.0783952462743)
(-0.120155688179 -0.0452302614031 -0.140007440732)
(-0.0522626597414 0.0218773668401 -0.235074833808)
(-0.033027181167 -0.0274834867539 -0.287176726224)
(-0.0591126545572 -0.148915946002 -0.642712102431)
(0.0536710693853 0.301210146758 -0.777640502203)
(0.32710411511 0.479611007014 -0.822185004367)
(0.805346374 0.0785685481446 -0.818255360055)
(0.54771917556 -0.0417822683821 -0.573208519718)
(0.0797320423 0.19315634111 -0.668558304766)
(0.0992457595932 0.141687019897 -0.532185426297)
(0.509439338687 0.0545014348401 -0.55345976231)
(0.504194164992 0.0808556603975 -0.475017284949)
(0.52884882513 0.100827163181 -0.442497731537)
(0.578586143109 0.118762429061 -0.484719162079)
(0.566301760071 0.105894888919 -0.380060482563)
(0.500124089257 0.0762134525108 -0.296299856307)
(0.369179477749 0.041802750053 -0.209207757437)
(0.309354403025 0.00952468340986 -0.118104085316)
(0.180129420118 -0.0345650262428 -0.0431192141198)
(0.239637610746 0.0095320126002 0.0302093264474)
(0.0806460682323 0.0137483405614 0.0942608044885)
(-0.0491925392978 0.0741959773529 0.107436293499)
(0.0408965136917 0.0832826824922 0.0771195143959)
(0.425897839599 0.0391213362924 -0.839280961534)
(-0.0130230294554 -0.124429030478 -0.886591612518)
(0.403241250663 0.0169524091815 -0.892866668935)
(0.496197408746 0.137647518443 -0.711338565172)
(0.265143338469 0.143584468471 -0.619014627375)
(0.221411796435 0.168412710476 -0.698959496948)
(0.359302964923 0.100906922712 -0.566422634924)
(0.45925285759 0.130721666377 -0.549498577444)
(0.453254433916 0.181151341834 -0.492489445498)
(0.46485092018 0.226408281428 -0.441344775875)
(0.48095503188 0.25284358444 -0.440826993333)
(0.442855748239 0.242715188712 -0.341938961967)
(0.405706116602 0.192602510288 -0.239388482763)
(0.32941857899 0.127346068809 -0.139309721768)
(0.280094661825 0.0837773476807 -0.0489954745165)
(0.295989994029 0.0413210421839 0.041529908751)
(0.219070611657 0.123857294977 0.120123580602)
(0.17180047477 0.17080592868 0.0999641705181)
(0.0724473845191 0.197368278773 0.146179456244)
(0.0357487736277 0.344361396071 0.156501627467)
(0.277251397334 0.250259403295 -0.892578018639)
(0.211461876168 0.561246820102 -0.879847529086)
(0.296727656318 0.268774494459 -0.763132112976)
(0.292376283325 0.123081538919 -0.683098128006)
(0.20419313001 0.089265839573 -0.625415624639)
(0.343920432098 0.231349422586 -0.692334034087)
(0.439320656184 0.124775576886 -0.556030400968)
(0.449954024502 0.198382354597 -0.517576456702)
(0.481308535886 0.256418582847 -0.461331530155)
(0.473225163822 0.312375855128 -0.385273169054)
(0.439960160172 0.325104293188 -0.310483984333)
(0.405392916295 0.322624257214 -0.241342099455)
(0.350580553788 0.261198468743 -0.145587893911)
(0.289567568882 0.165460673611 -0.0585245186172)
(0.274604874241 0.0967947824595 0.0233180294847)
(0.328040643099 0.0406252903876 0.121756392305)
(0.320729986729 0.0939994942345 0.151648419736)
(0.25259738159 0.192084364529 0.205281840778)
(0.115988192467 0.346183304777 0.228739970448)
(0.0803335944121 0.627678241246 0.2219353586)
(-0.0198667843517 0.591618002259 -0.716749282562)
(0.173762224783 0.263110187968 -0.703077717409)
(0.158310538774 0.154674953645 -0.700835746827)
(0.192855894163 0.0866479596432 -0.675374551092)
(0.203959127763 0.102870624924 -0.647571082808)
(0.360660032456 0.235679905452 -0.678508490365)
(0.498041362862 0.193222645844 -0.542820513662)
(0.48615677855 0.251454625902 -0.47980583935)
(0.509305148921 0.319374854339 -0.404723217132)
(0.45848681166 0.364303254633 -0.308078325378)
(0.425327600804 0.373876561604 -0.229169704733)
(0.392583125352 0.373184686518 -0.122083346562)
(0.309575289769 0.30947612985 -0.0334217510576)
(0.264459635769 0.195498808143 0.0411378131855)
(0.278780670065 0.113649888202 0.116058690094)
(0.365760623518 0.043994313901 0.200614059478)
(0.423756711636 0.0697110689581 0.236016057301)
(0.389894775121 0.18213908331 0.282817602021)
(0.263071968915 0.335704647328 0.330522313883)
(0.200698495796 0.703356970988 0.316291822461)
(0.255447782773 -0.295038146399 -0.881868884465)
(0.344684496591 0.00957681175715 -0.850281401667)
(0.404692607758 0.142010752465 -0.789679777052)
(0.331238795681 0.0398195757608 -0.706715318762)
(0.364970704418 0.200989147 -0.69310600199)
(0.466206294235 0.277954517725 -0.663541691088)
(0.528555138963 0.289337004106 -0.531914079232)
(0.542702556193 0.290287664962 -0.441548039035)
(0.541102797785 0.334064479691 -0.342563366371)
(0.502914042567 0.335926815123 -0.268754625751)
(0.447755227316 0.364953324215 -0.148893013066)
(0.396565118731 0.375863936683 -0.0128548327535)
(0.278482735481 0.321064717619 0.0913703312867)
(0.239834228418 0.216775965662 0.143563380894)
(0.28094282296 0.148555780936 0.218637994289)
(0.394060201414 0.0713788848419 0.292854452301)
(0.527725379761 0.0661963235285 0.337819678832)
(0.568333167209 0.164110928176 0.377125594383)
(0.467517954906 0.320768692114 0.446310016593)
(0.397659627959 0.724060518753 0.487801631038)
(0.353771313864 -0.0711813972737 -0.755129491314)
(-0.170316386957 0.432345843539 -0.729427677888)
(0.117866963633 0.373770089725 -0.801145148572)
(0.391785536669 0.319757312505 -0.783894906327)
(0.413926055636 0.3511015566 -0.71432056577)
(0.612160116922 0.36774927841 -0.563027218441)
(0.489746930382 0.405168699766 -0.488956835027)
(0.592406302956 0.365601670787 -0.425287698656)
(0.614331003364 0.390182086313 -0.314361166272)
(0.539909478617 0.372465296683 -0.201371041114)
(0.532637428972 0.415173102129 -0.0163629812747)
(0.46189153752 0.423361537978 0.150872760185)
(0.278795250041 0.386661297688 0.262289424684)
(0.248598464116 0.251768859105 0.241582299366)
(0.286233616071 0.202573770594 0.361725865164)
(0.402565424664 0.122871079431 0.394304500203)
(0.614130565672 0.109721247907 0.44747052236)
(0.724230868952 0.186929519918 0.478071575775)
(0.70090068344 0.336809704727 0.544165153945)
(0.594342138187 0.780326594058 0.57250497417)
(0.145048527618 0.342401074578 -0.807936191726)
(0.0595295378484 0.304120447257 -0.761303645003)
(0.432053479244 0.324208599073 -0.749542679355)
(0.215454319966 0.354193009933 -0.660595455022)
(0.43869824973 0.450663555033 -0.601948161955)
(0.471762833068 0.334960346384 -0.588994425645)
(0.614443232282 0.524327991312 -0.454686748011)
(0.699369414653 0.289729951393 -0.293930521389)
(0.839608826565 0.294043640994 -0.160676680402)
(0.717135829545 0.271453132493 -0.0635494924709)
(0.725630827312 0.320583403658 0.0690803845467)
(0.739398951637 0.377526324422 0.10299951401)
(0.424780065001 0.414506803956 0.229370576914)
(0.264957233899 0.314757865164 0.185190935556)
(0.279710191269 0.23481449312 0.351956163709)
(0.419967714057 0.181229760228 0.502957969371)
(0.652432734577 0.184952656462 0.587792632503)
(0.795761028302 0.209592444399 0.613537101504)
(0.815944687114 0.335404046204 0.648766811923)
(0.588300784471 0.642041954816 0.593707550861)
(0.0218794417636 0.497042843372 -0.741699428912)
(0.114781633359 0.45232565005 -0.746104117365)
(0.205400533467 0.410950677108 -0.695364255555)
(0.372877597046 0.459293648915 -0.658191862532)
(0.434209233167 0.429639246527 -0.572689964779)
(0.624369954727 0.512053063918 -0.514713168939)
(0.625042912919 0.731172991487 -0.259670530606)
(0.451747527562 0.210116263369 0.184909076843)
(0.215573927562 0.242449604986 0.432386159127)
(0.445592850626 0.225007410238 0.43578652255)
(0.669689571852 0.202646284335 0.482179878599)
(0.800160133263 0.204425159342 0.43983038829)
(0.712569092074 0.261578526099 0.515341054111)
(0.33694886571 0.280493853113 0.527832924222)
(0.0203839809622 0.593374365321 -0.649578594293)
(0.120651960298 0.547928725125 -0.655156988808)
(0.222194517842 0.529364448085 -0.63409216968)
(0.329411928151 0.501125297955 -0.5788711805)
(0.45952941666 0.526098023356 -0.509070332898)
(0.656879132638 0.569427340244 -0.44720744712)
(0.672499224648 0.712051000893 -0.193270213975)
(0.539306790022 0.125213064538 0.15468203994)
(0.240046652895 0.195519219154 0.473355664928)
(0.452644220939 0.193575332407 0.435758458706)
(0.658451742586 0.158311980606 0.495425363017)
(0.739804350573 0.142079034267 0.526511216978)
(0.5511479801 0.0819202064087 0.580561668212)
(0.126075877525 -0.0624215827561 0.883609492036)
(0.0348616955261 0.725260267742 -0.562691674308)
(0.137496846409 0.6160061341 -0.553202326522)
(0.228817165771 0.606964145513 -0.539157985371)
(0.332333773846 0.566015745189 -0.489151609669)
(0.454450034044 0.572186614786 -0.421849016908)
(0.62510716063 0.601113516548 -0.362124155671)
(0.549986777644 0.588708172209 -0.105831167569)
(0.540311752131 0.00658937395827 0.136869864528)
(0.268120767322 0.0705076679021 0.465119182823)
(0.406053037169 0.0853756928498 0.442258844486)
(0.581240929475 0.0335606426232 0.498473144744)
(0.566636621324 -0.0428879955145 0.531292329115)
(0.390842309641 -0.1748519562 0.556015756365)
(-0.00774494748891 -0.403754048006 0.743517598437)
(0.0427881367185 0.802041282309 -0.459072841864)
(0.173317305987 0.704043294063 -0.454927658256)
(0.230306158368 0.628778876635 -0.42623183498)
(0.32280903895 0.614072773564 -0.398226701551)
(0.4192483388 0.572845024058 -0.330727088119)
(0.580713443569 0.553531089399 -0.284449513541)
(0.513285521728 0.390016891012 -0.0602572924304)
(0.515112490341 0.109254209642 0.0902505158406)
(0.24991734428 -0.017114746583 0.403111084408)
(0.323313901048 -0.0354199575724 0.417383822899)
(0.457313396559 -0.117951255064 0.4384687952)
(0.429954231734 -0.244161510477 0.448727296746)
(0.309123441641 -0.423689220546 0.478383797502)
(-0.0147445637732 -0.681167436452 0.610414994577)
(0.0689521097991 0.889457515566 -0.362254717404)
(0.219347600112 0.694865007309 -0.37767855286)
(0.249200683965 0.643853626608 -0.340450528697)
(0.298400401688 0.603178354946 -0.287969946909)
(0.329624529388 0.528834635071 -0.254795189334)
(0.391743905173 0.427176765716 -0.147154704176)
(0.400504425867 0.322045029289 -0.05968481699)
(0.370495637552 0.33382497067 0.0243733121723)
(0.349609895238 0.317500930812 0.040272759243)
(0.28848804209 0.301206525162 0.0607178495872)
(0.258013239382 0.261650534898 0.0837257248501)
(0.286885308931 0.208983942331 0.110325761448)
(0.257537095581 0.150769479779 0.193610353842)
(0.191280457322 0.0498859772254 0.172877862659)
(0.118076545569 -0.0917586381495 0.332818524693)
(0.192398501009 -0.12239539529 0.335687465726)
(0.31893654036 -0.222155693155 0.333048065775)
(0.343310371249 -0.36338729579 0.317902856517)
(0.251244050242 -0.580685245118 0.298809579323)
(0.0205633090374 -0.881485715505 0.430416970472)
(0.0642087169733 0.872512458602 -0.254444988232)
(0.226323341213 0.661991817426 -0.20033000267)
(0.261505818167 0.59689494868 -0.172260587559)
(0.280802406517 0.562000626689 -0.154641019524)
(0.321035107147 0.512698533324 -0.112211113685)
(0.364631450705 0.513490922776 -0.0333078969364)
(0.364357931343 0.455501628099 0.0571545224714)
(0.303400898095 0.39626766294 0.128492155936)
(0.232403300916 0.323598536504 0.155516791843)
(0.154269288946 0.280472584123 0.182266948129)
(0.0886443791948 0.226567629702 0.196299372679)
(0.0393070306605 0.141764758277 0.198634618227)
(0.00461708057806 0.0356607856063 0.202728735918)
(0.0193448809159 -0.0606838339148 0.193908957223)
(0.0162078942187 -0.139471491093 0.238571990951)
(0.0883916026112 -0.176169730806 0.220101559713)
(0.194293393599 -0.273069072148 0.197465605315)
(0.240094208121 -0.410066829799 0.196294276639)
(0.194947838705 -0.613984542133 0.187596095412)
(0.0725556439522 -0.937325614505 0.177374969983)
(0.082288324756 0.742463753155 -0.110930608056)
(0.264308891863 0.594606564333 -0.0546002474536)
(0.291041624748 0.559078897337 -0.0195881360295)
(0.29777039885 0.553765253812 0.0087994411134)
(0.293548152929 0.544827913065 0.0614955392408)
(0.294896301821 0.50557650899 0.0919920600736)
(0.277460820094 0.423242346773 0.135809572857)
(0.222181179952 0.355668474706 0.176077731497)
(0.147157729916 0.282991616754 0.204790090549)
(0.0701667962649 0.225225040937 0.224105634605)
(-5.77965025981e-05 0.160153302824 0.227408540686)
(-0.0569263708733 0.0865202219681 0.213014118502)
(-0.0954158374222 -0.000263256482018 0.189765085685)
(-0.103053992611 -0.0756941854377 0.163985625629)
(-0.0712615761509 -0.143382495096 0.144034071628)
(-0.00433806638457 -0.190558672034 0.0966127004083)
(0.0751362620573 -0.28222366593 0.0778928153015)
(0.116925426868 -0.412748670451 0.049887183823)
(0.100716522816 -0.573104175798 0.0407495924549)
(0.055786811995 -0.838381168726 0.0241483970701)
(0.081589606587 0.634241670853 0.0696163842238)
(0.283275383382 0.490429830937 0.150444639316)
(0.320186423357 0.452463097201 0.171705364045)
(0.316975155326 0.461754297225 0.188236626208)
(0.282879629525 0.46952698719 0.204562279099)
(0.247235404429 0.444713142004 0.244729199809)
(0.209826673767 0.389474685274 0.263557834423)
(0.145615713664 0.326899239397 0.285931326255)
(0.0650437780226 0.257033428387 0.300399755623)
(-0.0152646600182 0.199355181389 0.296597226616)
(-0.0901640047223 0.130082151426 0.275248237607)
(-0.152505943133 0.0555158288854 0.235939367674)
(-0.197303315432 -0.0086414754659 0.184082114875)
(-0.198999118568 -0.0676548970509 0.129614735608)
(-0.16220611973 -0.123480074189 0.0788028559398)
(-0.110537007932 -0.193783300714 0.0204531817167)
(-0.0381592862892 -0.246578869457 -0.0098026351049)
(0.00404250039856 -0.347763277118 -0.0403820376239)
(0.0127432109992 -0.475184012788 -0.0636732341926)
(0.0158130927907 -0.699633928873 -0.0896289717475)
(0.0607318157273 0.463634632314 0.218668437098)
(0.250502504165 0.385205184123 0.301166745883)
(0.299578601291 0.336313663211 0.326294751346)
(0.325831912928 0.323352393122 0.346976167928)
(0.283898688506 0.341221597136 0.340481855597)
(0.219810057717 0.324881479265 0.397298488103)
(0.153663992398 0.300654794521 0.402030404456)
(0.0757542737693 0.254413886911 0.404008106132)
(-0.0124712718872 0.199970240493 0.392543780121)
(-0.0978933904621 0.148781566562 0.362281573592)
(-0.176403337904 0.0893443685708 0.312948115645)
(-0.243602784772 0.0319933627121 0.248561174878)
(-0.288521905699 -0.0207947950493 0.171599341383)
(-0.285370164073 -0.0602902732112 0.107512365451)
(-0.259584016597 -0.117972101621 0.0302950425133)
(-0.181472451016 -0.154416657832 -0.0246233803468)
(-0.143204073505 -0.255359960646 -0.0969960662262)
(-0.11641793659 -0.347900717017 -0.136841881522)
(-0.0811018328412 -0.469647210326 -0.177335520766)
(-0.0425028861208 -0.675490272865 -0.196385199447)
(0.0388576374477 0.177620865029 0.279323789959)
(0.231984786115 0.215457921245 0.374304069076)
(0.281372496508 0.194007931083 0.400047589513)
(0.326569735612 0.152742023526 0.411778019562)
(0.291236168405 0.14704549361 0.419748833352)
(0.204526807595 0.203420891367 0.539657755036)
(0.116270733373 0.200932446928 0.49732204728)
(0.0184208440511 0.173489342295 0.49061628337)
(-0.081864828559 0.144240299514 0.462573026147)
(-0.172711942444 0.103623478899 0.408930830974)
(-0.252561429644 0.0584159063328 0.335639353121)
(-0.328507954091 0.00884302506957 0.278591875196)
(-0.370083916537 -0.0342725786859 0.183759221226)
(-0.365755746682 -0.0685227805292 0.087169735835)
(-0.313409401653 -0.0984621824647 0.0112760848741)
(-0.297656174949 -0.172897108851 -0.0780042853595)
(-0.220789516421 -0.216604670771 -0.110861973026)
(-0.172091857869 -0.285684069632 -0.157159460316)
(-0.111986636537 -0.277100533311 -0.168809241671)
(-0.0266742550054 -0.412278083511 -0.166786690491)
(0.0368520007059 -0.0518532300801 0.438002233025)
(0.191521199349 0.146402195248 0.516146629229)
(0.209336391535 0.164154444801 0.536955363475)
(0.254111826101 0.138710282796 0.530815311364)
(0.277978064976 0.106888062782 0.509044016085)
(0.220492994032 0.102110881966 0.625389741068)
(0.0792088290179 0.15563974206 0.535851295574)
(-0.0327707248976 0.144294591998 0.540238472601)
(-0.141130583445 0.115304129065 0.505165164071)
(-0.239291742946 0.0826065642059 0.431098534005)
(-0.330542648515 0.0443470959416 0.342083212318)
(-0.411580102974 -0.0108644346144 0.282010047199)
(-0.448509042547 -0.0448068103436 0.170119495318)
(-0.416318394249 -0.0673127598131 0.0793129210797)
(-0.425859263185 -0.126100171273 -0.0300374245838)
(-0.330590697854 -0.149288105252 -0.0756132022274)
(-0.274346806986 -0.180419811423 -0.141716805723)
(-0.0781561914681 -0.130884069643 -0.225455969227)
(-1.28387976897 -1.6205919271 -0.191715358699)
(-0.561068150844 -0.198366531364 -0.799995859563)
(0.0600120658991 -0.151360855342 0.474467254252)
(0.252460508842 0.00463307690822 0.563745979655)
(0.239847414561 0.0560270489462 0.542401963283)
(0.285313676952 0.0609361981131 0.553313044203)
(0.293209814564 0.0628952536886 0.576168627638)
(0.235324780657 0.0692033352727 0.593046399073)
(0.0632650204683 0.114594517263 0.682864655055)
(-0.090183981423 0.119047836663 0.555749664463)
(-0.216225622791 0.0978302535754 0.525448644111)
(-0.322189325188 0.069742234634 0.42810479383)
(-0.433235462285 0.0287143525038 0.44622261131)
(-0.529445154852 -0.0404369020622 0.295633930008)
(-0.543306268483 -0.0660258756992 0.170158780916)
(-0.562521968464 -0.0923041167389 0.0451195744546)
(-0.475580612348 -0.114304668307 -0.0376952393314)
(-0.369441592951 -0.0968953363118 -0.111519082285)
(-0.270306100721 -0.158574989451 -0.200749411575)
(-1.4734314247 -1.47314309532 -0.206283147086)
(2.18071118928 1.80512285833 -0.724086120062)
(0.902655139421 0.667965386223 0.187919732474)
(0.114918786202 -0.0813587970689 0.542748718782)
(0.424624193523 -0.00585716692715 0.572349608521)
(0.509404244025 0.0414424425915 0.615150843884)
(0.597997878067 0.072953377443 0.604428289431)
(0.523240561183 0.129348757984 0.708043008457)
(0.301615857274 0.15690255892 0.655779320213)
(-0.0388587323949 0.169565386389 0.845138256535)
(-0.255259611342 0.148149778984 0.761771409733)
(-0.395671684963 0.122066748955 0.652557595282)
(-0.493519508417 0.0945660740405 0.578479410491)
(-0.640278674044 0.0664471984929 0.487234669599)
(-0.785037059528 0.00873980977266 0.306652224327)
(-0.830960368429 -0.0269049417188 0.14320067077)
(-0.822623441783 -0.0539608975255 0.015753608999)
(-0.637629637724 -0.0459017549703 -0.0614612120132)
(-0.443649392724 -0.0276298978277 -0.154487659438)
(1.4507622102 0.317543061368 -0.233945975182)
(3.71961181863 0.132541030009 -0.703987490521)
(-0.414521029482 0.567126209181 0.266829905723)
(1.55813685262 1.52167071179 -0.039345493498)
(-0.410266784101 -0.579569416086 -0.710083064856)
(0.232752872358 -0.419462023607 -1.07633078057)
(0.151553630986 -0.371445569451 -1.4408326203)
(0.375618929258 -0.389933084382 -0.921832734948)
(0.891562025653 0.0248229786053 -0.322377782833)
(0.0934537104088 0.605308466774 -0.584201655041)
(0.895163614081 -0.01846942723 -1.03559020868)
(0.781696634301 0.129478828672 -0.923270770262)
(0.0178652178787 0.24316108303 -0.646898499779)
(0.554770070525 0.23754952518 -0.698065534704)
(0.741379878403 0.436240026096 -0.47538502365)
(1.06988831907 0.358529600837 -0.89151918829)
(1.86022875783 -0.000829391685603 -0.339356753732)
(2.72672917453 0.741421701327 0.370111792271)
(-2.07413290581 -0.75174231687 -0.580117267717)
(1.75465489717 0.812006868591 0.774329746006)
(-4.93652944861 -0.948168942713 -2.18749591211)
(1.59781936286 -0.443600699113 -0.274853537397)
(1.79560251121 -0.739459972508 1.5583082407)
(1.56561700935 -2.2507128433 2.79443671675)
(-0.260468784918 0.0996517810385 -1.27178351936)
(0.0939286697731 -0.0619544622616 -0.891985310425)
(0.0708679031494 -0.0591721410298 -0.884564249513)
(0.18430515234 0.0391870152421 -0.677130979169)
(0.532020709387 0.136701852155 -0.61249933149)
(0.257881566049 0.172741272846 -0.681546335844)
(0.617567018518 0.0156774111299 -0.722806486465)
(0.344900523528 0.25232439038 -0.665332778573)
(0.265522393192 0.360760764591 -0.617571727738)
(0.0632875770697 0.305554805107 -0.560010018685)
(0.0973000571065 0.362255453176 -0.332720193425)
(0.287155742902 0.162146190496 -0.432707313953)
(0.281703336781 -0.200230433239 -0.280283142858)
(0.275088832416 0.150520272325 -0.0868358091008)
(-0.0191090867231 0.106072478009 -0.0178201195289)
(-0.463549198406 -0.528198899009 -0.526314878574)
(0.00327565144918 0.494114041163 -0.575627607486)
(1.65858441835 -0.631019895967 1.08791306426)
(1.08888941693 -1.48791286734 1.45849976892)
(0.433504969721 -3.13783582122 1.97702744712)
(-0.0720217132005 0.0464058739347 -1.43059404596)
(0.0790976465009 -0.123252969397 -1.00428849956)
(0.111223571838 -0.0960534715836 -0.892814833608)
(0.229456694761 0.00743890824189 -0.663088130357)
(0.487660152793 0.0828736861211 -0.711154487093)
(0.389222663167 0.17323820026 -0.780902439293)
(0.401568269338 0.228503413075 -0.691398390704)
(0.0974671431923 0.411859705291 -0.577128988644)
(0.223313163473 0.432515257148 -0.528367200586)
(0.021372931509 0.438286202686 -0.425138257011)
(0.0656017125284 0.246749816787 -0.297445582865)
(0.257179479552 0.0935566490593 -0.286502960637)
(0.177575869594 0.00305817957987 -0.203685887955)
(0.929550949233 0.175838763039 0.0331468098604)
(0.169309356941 0.511647306212 0.209474283587)
(0.193596386509 -0.946200949715 -0.584334132481)
(0.9227424186 0.423294844557 0.544543276044)
(0.58686552889 -0.938253013808 0.835753973428)
(0.607461561195 -2.16130124992 0.936526494318)
(-0.0421297118 -5.01242513582 1.49335412641)
(0.347843615778 0.72871482384 -0.632654515286)
(0.128730597239 0.237780718168 -0.616475509523)
(0.193197114837 0.141030635385 -0.756114882122)
(0.304338829873 0.145602821071 -0.744749736973)
(0.444169789173 0.120958087336 -0.870156329499)
(0.517301637653 0.202323132446 -0.799504029611)
(0.292603462619 0.32590813852 -0.701514315273)
(0.314774326381 0.385459043909 -0.512638452037)
(0.106343564533 0.450716363107 -0.40193544264)
(0.0704773097788 0.380774905558 -0.237767387359)
(-0.0818857455865 0.110482681088 -0.341441733864)
(0.312974550017 0.138766608501 -0.120605451473)
(0.253558386251 0.00343767056378 -0.0317191400647)
(0.230732911418 -0.0148672767398 -0.00712634283572)
(0.324647225013 0.186669619013 0.178899897036)
(0.850325941198 -0.783229083305 -0.343498281311)
(0.37246227809 0.179852130936 0.563561324524)
(-0.102469491656 -1.04214076484 0.755408309925)
(0.320655590268 -1.5210089583 0.631260938309)
(-0.68863316872 -4.6931486209 0.726165940132)
(0.644234197025 0.122034085811 -0.77585638652)
(-0.0166109588321 0.23090192722 -0.961561202046)
(0.108218713825 0.336850066867 -0.873239276891)
(0.172463612084 0.266903096949 -0.860865546166)
(0.418319249364 0.23114215981 -0.89337664874)
(0.514079314205 0.21978662089 -0.740672430536)
(0.311559522662 0.323780843517 -0.631418290357)
(0.588901234835 0.385842195134 -0.467939863126)
(0.335159384556 0.435072444859 -0.294389876846)
(-0.344577274069 -0.104437036055 -0.164989531173)
(0.433478607039 0.390591656017 -0.131176331138)
(0.314964132707 0.183989366027 0.0410618691349)
(0.277290628049 0.132473309817 0.160948873223)
(-0.0623641510351 0.0386256840708 0.0778278007393)
(0.503480822306 -0.0711930609275 0.0710438665983)
(0.663566883264 -0.23352537331 -0.0839531885826)
(0.518135193071 0.0478703174284 0.355815952013)
(-0.847397902495 -0.944041352758 0.566628021399)
(0.703407612376 -0.855145621722 0.451361717269)
(0.435653484353 -1.06140155258 0.1680077938)
(-0.519441618917 0.518807308285 -1.28770046918)
(-0.0889744555526 0.31809715292 -0.861085680405)
(0.373615107074 0.0103687111439 -1.18257457814)
(0.323897998692 0.159164384875 -1.05677197218)
(0.408572624318 0.284030494361 -0.913488183506)
(0.565342456687 0.309229450026 -0.626048382138)
(0.349746354219 0.331140126996 -0.499253534605)
(0.553367685536 0.422533976853 -0.609912807439)
(-0.263367641142 0.387829594101 -0.282027349696)
(0.407443771604 0.29311271885 -0.194576043862)
(0.216672042373 0.291922641908 -0.0476895556731)
(0.46196098943 0.31820247642 0.143945489426)
(0.362360176951 0.293824977327 0.00230413283727)
(0.342692208235 0.161959837212 0.098666447045)
(0.504909349454 0.114001475873 0.24953939285)
(0.511753826732 -0.0192137215255 0.0668587058257)
(1.27406895174 0.152073400685 0.265297261016)
(-1.44339318075 -0.789932489224 0.377379585097)
(0.855136746859 -0.547133256955 0.215430986075)
(1.05142569361 1.8079890731 0.542660418132)
(-0.395158459046 0.447300778647 -1.19617796854)
(0.194153301043 0.0925747563162 -0.933543762715)
(-0.0574031898017 0.404103032036 -0.830698663444)
(0.286536416496 0.419681868664 -0.790728289168)
(0.588694031091 0.220284853414 -0.820605290812)
(0.639652885551 0.24000358565 -0.726955650246)
(0.701979156524 0.479574269118 -0.687204185159)
(0.906648084335 0.414416565077 -0.390799229532)
(0.170485669924 0.770515587225 0.826439507472)
(-1.85384946859 -0.118491700781 -0.299781018622)
(-0.537256435382 0.298783440118 0.249291403414)
(0.683398760886 0.357669051931 0.343725402975)
(0.621583229788 0.333431356452 0.963076629207)
(0.436494498397 0.196824156289 0.0984984137262)
(0.641849526891 0.113064680516 0.139541158071)
(1.31061093874 0.480619855025 0.113102679196)
(0.663802523308 0.20614651013 0.217522657916)
(-0.0556154625204 -0.365724253703 0.416468510959)
(2.93854774202 0.25210857867 0.561922193906)
(-0.701405828219 -1.33519478308 1.9050576087)
(0.554547652921 0.4789015516 -0.999145959307)
(0.0710614505948 0.546270305633 -0.953923323323)
(0.0387710542661 0.492939210594 -0.937255784438)
(0.602253298843 0.215021121991 -0.83954330384)
(0.478333242729 0.631955621712 -0.698144009463)
(0.79845042808 0.611836261582 -0.818349165519)
(1.23837330422 0.789102998087 -0.123046482058)
(0.493065120383 -0.0056459935147 0.612825165243)
(0.631151125544 0.10372733637 0.184930640514)
(0.688229352402 0.0334410003906 0.103223585405)
(0.886450752714 0.0855663652246 0.149081341577)
(1.2755758593 0.0132095429458 0.1654211411)
(0.0597530031043 -0.285116869312 0.864201182113)
(-0.13597746484 -0.281080229929 1.45541666206)
(-0.531366819747 0.642330075827 -0.879255314669)
(0.49155002624 0.391305697996 -0.877128046587)
(0.730884501703 0.332171040642 -0.82421004096)
(0.583240252762 0.376636013277 -0.718212530766)
(0.535354584624 0.642763748029 -0.685031005882)
(0.864434230918 0.407105727796 -0.716039285285)
(1.76249330565 0.361713857361 0.137761396828)
(0.443399116284 0.0270526190121 0.578930106597)
(0.439762254999 0.131495344752 0.738912863549)
(0.689923215083 0.11309169128 0.202715099066)
(0.794873372893 0.0543008333714 0.281105458854)
(1.05172987351 -0.0313824418404 0.79527218993)
(0.208142241961 -0.143757066713 0.968545295499)
(0.161603017922 -0.249438048889 0.961459996997)
(0.698309893197 0.698544707013 -0.839893893199)
(0.578758278517 0.327467310837 -0.710546452246)
(0.561882014294 0.485395567727 -0.665113813487)
(0.488444679286 0.535222051545 -0.624027206997)
(0.663481887124 0.481067501973 -0.496573474301)
(0.532480503808 0.355149682008 -0.544168608731)
(-1.17637452037 -3.71548814488 1.71060053523)
(0.403553543105 -0.0019972997007 0.448804554356)
(0.575563650419 0.0407835976077 0.569696404441)
(0.520603767583 0.00280977758469 0.475037028198)
(0.553190541384 -0.0738309179094 0.819412408537)
(0.508014531396 -0.111164273282 0.750963093329)
(0.295458861718 -0.205947218589 0.892826226516)
(0.30030463996 -0.273254164799 0.960838320266)
(0.81482028985 0.696371919552 -0.764141121837)
(0.942220714142 0.427877803955 -0.626809788694)
(0.745175725082 0.3682910027 -0.485387373664)
(0.694421728393 0.38170355842 -0.442676118743)
(0.605207072513 0.388353902502 -0.25302126642)
(0.1646161946 -0.0108424341572 -0.08511619098)
(-6.51166081247 -9.43999790811 0.779307355693)
(0.417299503802 0.104877559334 0.236477935554)
(0.517349342899 0.0185526085231 0.505972406767)
(0.389185776066 -0.0381322572233 0.621809506718)
(0.858096899464 -0.163622754438 0.527116897146)
(0.413132005614 -0.198240215536 0.573008659776)
(0.45080717014 -0.343941817599 0.716165909553)
(0.481537704664 -0.418105341719 0.983697541722)
(1.09057623358 0.433548478742 -0.544922008196)
(1.28657266652 0.192467295968 -0.365694096312)
(1.03404085618 0.195085335271 -0.145541819311)
(0.782291169238 -0.00699050900134 -0.246893811108)
(0.191064615175 -0.152771127831 -0.0443157077055)
(-0.219893831776 -1.09029312667 -0.226541700088)
(-1.03892932714 0.180532125914 -0.399702109219)
(-8.14517084862 -1.89941814854 -0.0688042763631)
(-3.70122080425 -0.0755637600981 -0.763933061403)
(0.389331601499 -0.224579408634 -0.26478724483)
(-0.231734392326 0.29530282384 0.0853271250655)
(0.133974219343 0.169597080387 0.180022611525)
(0.186803595749 0.084528580991 0.504123533306)
(0.201996592571 0.033698946424 0.319142405933)
(0.234943243962 -0.0200813329791 0.412371719431)
(0.483938461189 -0.0983221808788 0.320698966098)
(0.415227392756 -0.153477329194 0.345404787686)
(0.496271019198 -0.188634613556 0.322812086678)
(-0.105799395726 -0.265332166418 0.445086752712)
(0.596306958404 -0.606211280679 0.83803518929)
(0.751261703544 0.485355023834 -0.800178306596)
(0.580302173397 -0.0821464058069 -0.244309764296)
(0.832190628734 -0.117887848459 -0.240861496209)
(0.75155263067 -0.0315130598636 -0.104197932542)
(0.566894295393 -0.147830714518 -0.104908134286)
(0.407583682729 0.296204109294 0.000215826648485)
(0.735934539516 0.582314227388 0.19795436546)
(0.460324659166 1.42596090066 0.0971557511486)
(0.379168379185 1.05014879656 -0.0648644483301)
(0.0762041287978 -0.154623384608 0.19537271982)
(-0.117341689885 -0.00369055612496 0.269657893484)
(-0.0092229586694 0.176155098318 0.225523853528)
(-0.0376471263989 -0.02609654488 0.285040921182)
(0.0565350013795 0.0488025328525 0.229428623373)
(0.0700076577291 0.0196855316374 0.244231136826)
(0.0467298915166 0.0391608236228 0.26478233423)
(0.407536419331 -0.123500451657 0.21238295077)
(-0.0401178956634 -0.0752585703731 0.220666858967)
(0.770346911022 -0.692988612687 0.00583709300196)
(1.30664993474 -2.14468074846 0.50796392504)
(-0.29439060132 2.85729890469 0.375758988288)
(0.505208820773 0.49454444899 0.060866076389)
(0.563171183284 0.0119128937456 0.2033466366)
(0.61846748181 -0.0412453100158 0.265805357954)
(0.650058159488 0.499285367871 0.148344269019)
(0.420321241922 0.308701642811 0.131928051175)
(0.449249519914 0.680618356445 0.208707106963)
(0.250070325436 0.592989472798 0.233210507444)
(0.173098249278 -0.158878363559 0.314495989861)
(0.169458012075 0.140306290606 0.267187284808)
(-0.00307328221482 0.093474249053 0.264663623547)
(-0.119678336705 -0.0749375243298 0.285935102669)
(-0.0846347593978 0.0133067833476 0.21301440998)
(-0.057215992977 0.055704541883 0.151102554276)
(0.119082318558 0.0377358590474 0.182353408154)
(0.121183646993 0.0580311795545 0.0646610006184)
(0.208525241604 -0.0681037189521 0.0655942341995)
(-0.126090971178 0.177137255806 0.166502654143)
(0.209715023712 -0.310469508699 -0.00503962900115)
(0.894640608668 -1.38248644585 0.0985948407978)
(1.56921230193 -3.84385262894 -0.404021792498)
(2.57974073994 -1.37232987763 0.0571361864029)
(1.74182366542 -1.51184477464 0.195978530862)
(1.23636870439 -0.655417851945 0.574285748494)
(0.966463410893 -0.0521852694292 0.373038919647)
(0.56969768032 0.267718718902 0.28359548491)
(0.247263627076 0.514889360475 0.35402989279)
(0.209652393861 0.642070179287 0.369511380353)
(0.135283463946 0.179465982119 0.361118295642)
(0.0168681274111 0.103017785807 0.35931577125)
(0.00713728085968 0.200709453679 0.317683209486)
(-0.0296839150719 0.19860931625 0.257627385049)
(-0.183373754374 0.105983747727 0.190004226328)
(-0.261140710442 0.078530188493 0.0794042605726)
(0.137571930301 -0.0226485127786 0.0938561189747)
(0.292023287868 0.194239314915 0.192788306293)
(0.37489509718 -0.291583745117 -0.35503458969)
(0.643918050412 -1.17544049723 -0.441009811226)
(0.737010731359 -2.13120332476 -0.634343461507)
(0.706596443449 -3.6774842454 -0.769328375527)
(0.256941241748 -6.7439473967 -2.19803282375)
(1.87653499027 -2.90129188311 -0.713445658262)
(2.74649832365 -3.84057264284 -0.416238617196)
(2.79418763689 -4.39025289697 -0.449647503155)
(1.39945855294 -2.24753294685 -0.0045572665274)
(0.102007848342 0.890804480898 0.365330877258)
(0.217144960949 -0.213280725373 0.399040792352)
(0.0646495121057 0.0385777644456 0.462786641695)
(0.0182257472522 0.0947049070647 0.458508507815)
(-0.043278160272 0.0787190805424 0.429789288317)
(-0.147004502481 -0.00915999314899 0.379194946256)
(-0.0976564974421 0.0178373696344 0.299170205092)
(-0.183108279653 0.0600265031767 0.184593452061)
(-0.284766148032 0.0069079181261 0.0614138125535)
(0.745255992699 0.115430385371 0.176372114341)
(-0.723747348311 -0.408640879868 -0.306977126891)
(0.6925385359 0.709561483617 0.263239477181)
(0.500127942722 1.28789090806 0.197993105815)
(0.444141943431 1.85953690184 0.241082824035)
(-0.253657953546 4.47419699992 0.641654829613)
(-0.880123759542 7.84095665105 2.8544818772)
(-1.23128501462 2.46168002544 1.10263381379)
(-1.36094500416 2.00668074097 0.972602115266)
(-2.44435537227 3.6956263946 1.31794529625)
(-1.81874519739 3.7423662203 1.30959781489)
(-0.265183608902 1.09738890389 0.421702922875)
(-0.221810786415 0.581201223803 0.489125638813)
(-0.123255666958 0.641087178134 0.565868631943)
(-0.0270705283747 0.138873262633 0.520056690189)
(-0.102055284629 0.062352879842 0.467207830611)
(-0.177056390775 0.05596057648 0.375433092051)
(-0.268008924895 0.0181706702057 0.276060887662)
(-0.312307845391 -0.0185297078892 0.197532445898)
(-0.058774420422 0.170542489147 0.125915354001)
(-1.29787025083 -0.348377250215 -0.245954260012)
(1.0462637421 0.445203891886 0.208930776757)
(-1.08343816278 -0.629892111771 -0.465112109236)
(-1.1341521916 -1.69259712899 -0.651259592507)
(-1.01278437515 -2.2615598982 -0.41640176344)
(0.37514851714 -5.23285148045 -1.8197026073)
(0.381496992911 -6.30839900337 -1.6781888969)
(2.57509150066 -3.74043704473 -0.982188889709)
(2.81697026991 -3.62001118529 -0.668192215916)
(2.74892612136 -3.56667576353 0.0868529388341)
(0.849048128232 -1.39920724067 1.02727434787)
(-0.879577483342 2.36194334659 1.31014371483)
(0.342956840918 -0.147464572934 0.463294844237)
(0.0537375839901 -0.451315849262 0.506240372694)
(-0.0532289228183 0.153668081504 0.564791253115)
(-0.153022424628 0.0671650192499 0.454981351667)
(-0.238729175171 0.0384704081027 0.333418951263)
(-0.505429997165 -0.0170559256194 0.448847220355)
(-0.509544198985 0.0713317861014 0.191888117927)
(-2.25980283346 -0.511894453967 -0.250561666235)
(1.77017169346 0.388356309191 0.343557867729)
(-2.12873160223 -0.707989875141 -0.535501808069)
(-0.798856383002 -0.00502058129691 -0.738038412401)
(0.637529275749 0.998420541054 0.873953785683)
(0.838001208491 1.31085227707 -0.646599326299)
(0.50274404187 2.40187445319 -1.24206836513)
(-0.823059906293 -3.1153291711 -2.32550659627)
(2.33007052443 -1.12237117815 -1.41947517244)
(2.0329792898 -0.782696461697 -0.657173560175)
(2.93753557737 -1.53506216208 -0.285391885078)
(2.4456807632 -2.15544363137 0.565415146064)
(-0.724154408115 0.811160889018 2.12750573921)
(0.604661762833 0.114031307559 0.550681899242)
(0.0119994474992 0.0965282566193 0.427293484484)
(-0.157638431995 0.0339587954011 0.471471411285)
(-0.287786158778 -0.0164899285702 0.368004246016)
(-0.350531539063 -0.0684945043762 0.424262608169)
(0.176995352164 0.374666197299 0.567104036492)
(-2.05397522483 -0.060342633974 -0.0878692351336)
(1.66383125384 0.296024541155 0.335012789984)
(-1.44495624514 -0.913895761843 -0.286890798384)
(-1.74839314332 -0.126728858742 -0.907158631409)
(0.886805805067 1.05074407065 0.102548915621)
(1.0631872135 0.971870926127 -1.08076720857)
(0.75986552549 0.518573817298 -1.48001481024)
(-0.665142597839 1.85640503998 0.472139178307)
(-0.16747154737 0.380419361743 -3.33915764013)
(3.89959801126 0.767147734787 -2.18632776258)
(4.51232510464 0.570323154904 -1.3996159436)
(7.58879148089 0.25847346237 -0.638427897027)
(4.89381633853 -0.726581967796 0.897455172023)
(-3.03382768552 0.49548174032 2.97363632403)
(0.42207194412 0.406280253853 0.920743634331)
(-0.614487360851 0.428954869439 0.445630571136)
(-0.412155475224 0.431438423299 0.459328304158)
(-0.379508071968 0.229070298389 0.345844516096)
(-0.493430188474 0.0458545018862 0.524501472372)
(-1.92017524355 -0.125540156164 0.120351470737)
(0.677131540141 0.655188630074 -0.0996376643961)
(2.56486336192 -0.00797841851877 0.587534442496)
(-4.01552012118 -0.384844567656 -0.769633110101)
(-2.13378511183 0.619018144518 -2.26674220057)
(2.06470125528 0.781492146894 -2.13559767791)
(2.28431815731 -0.0826642632274 0.407943438514)
(2.28589936776 0.0383702099039 2.12608480706)
(0.556729722937 0.592733577448 2.1796313122)
(0.482901230503 0.514761603123 -0.658207082724)
(0.185208031626 0.436386385567 -0.987215290814)
(0.102917290452 0.416075799963 -0.975518410986)
(-0.00135400148538 0.513333095819 -1.12439978877)
(0.141473289076 0.626711713788 -0.763982399636)
(0.269331472821 0.556653606844 -1.08004150545)
(0.119396878343 0.455782755732 -1.06131729088)
(0.142942307528 0.366353792797 -0.711411186824)
(0.246673117373 0.24490494428 -0.91824544095)
(0.331221623629 0.158145503866 -0.926682047415)
(0.408055372785 0.109495328759 -0.746824170916)
(-0.00558812227075 -0.177085834238 -1.48176245745)
(-0.612855747663 0.0811963399817 0.239485196872)
(-0.453873518617 0.165672062052 0.213635350307)
(-0.343192728326 0.109197522291 0.626051931373)
(0.0528707767761 0.174090026073 0.665859493677)
(0.0849946011176 -0.149893051306 0.943295828357)
(-0.621853472961 -0.315924807537 -0.373348775574)
(-0.938671752609 -0.118241625296 -0.180879461361)
(-0.332042612498 0.0798250896249 0.493688606691)
(0.440966080772 0.188276066242 -1.2417875905)
(0.0561350505253 0.0416762719534 -1.26642158705)
(0.140231676102 0.0390365437883 -1.11511891175)
(0.163787998014 0.138911604586 -1.12763374331)
(0.24520560784 0.308676135611 -0.742389846509)
(0.322689269836 0.303355263943 -0.621581824407)
(0.193154875683 0.233997571303 -0.829953380028)
(0.067081303153 0.209062958733 -0.684101491468)
(0.0202210676566 0.0999522510816 -0.68367043214)
(0.126925542323 0.0285549595108 -0.577692773044)
(0.484491719419 0.21278011355 -0.472028985559)
(0.13811262164 -0.234748865752 -0.671317648078)
(-0.170979845189 0.0312674355803 -0.1889169839)
(-0.131428388482 0.163925421436 -0.06791428847)
(-0.00656044369702 0.0958860545817 0.146253968521)
(0.122066366428 0.19549685648 0.528949734151)
(-0.0877851252686 -0.286975638395 0.0489608903497)
(-0.435970270684 -0.286782701058 -0.426628466772)
(-0.553294864046 0.118758056197 -0.388997241174)
(-0.193759652726 0.4325128568 0.0865012921417)
(0.449693045801 -0.0141099127587 -1.34026611314)
(0.0489734971828 0.0152052974896 -1.14918832834)
(0.179568489546 0.100083266212 -0.97621391702)
(0.262949625318 0.227235429255 -0.972236997165)
(0.349530955308 0.407420996257 -0.783868238758)
(0.291277443762 0.400977694687 -0.765291366819)
(0.187003846074 0.387649795285 -0.721660901748)
(0.0589141592684 0.334325862692 -0.658620553499)
(-0.0690960951395 0.175972608901 -0.577586344102)
(-0.0154763590623 0.0224728944652 -0.448140251434)
(0.220440165731 0.0781198569924 -0.384648329519)
(0.0769773763947 -0.136900551262 -0.353700442579)
(-0.0240103059212 -0.0386199939231 -0.239369953291)
(-0.019080221809 0.0691730016931 -0.103863793932)
(0.078978257385 0.0822469178564 0.0472164557031)
(0.0178443063635 0.0265168668359 0.248128087203)
(-0.141257748153 -0.248494573356 0.176570314586)
(-0.176684928524 -0.106278468829 0.134653456069)
(-0.231439407406 0.151854719493 -0.166332979231)
(-0.123556070516 0.420451069928 -0.0872171351564)
(0.586143384084 0.00591386754162 -1.06524358485)
(0.179471609054 0.0613933471884 -0.847280683515)
(0.336474556826 0.183044789306 -1.00009494235)
(0.432373902112 0.316249415575 -0.970917769448)
(0.419250682978 0.409440073388 -0.990055314026)
(0.359564509878 0.408527339224 -0.822913896973)
(0.140382126327 0.351507027423 -0.645497289091)
(0.00562789526159 0.311110397685 -0.570001124973)
(-0.162620815667 0.145378443964 -0.426412883661)
(-0.252475040946 0.0320775263083 0.375845660173)
(0.130712139801 -0.0011075051009 -0.753475086531)
(-0.00918699613018 -0.148666183728 -0.193739433248)
(0.0611348386014 -0.0830803077798 -0.0294582282624)
(0.082400645239 0.0311089629168 -0.0274068731046)
(0.0879702327647 0.0543508597716 -0.0318495066865)
(-0.0253970959031 -0.0514104299584 0.129954356537)
(-0.101933335948 -0.109612751917 0.266836718317)
(-0.00206465202874 -0.0217765933693 0.230126828636)
(0.0333509309516 0.0444153036157 0.0482200964412)
(-0.0687613956338 0.12317561922 -0.355524553637)
(0.789663731209 0.223958523138 -1.15125152802)
(0.279772689923 0.225127266131 -0.702931413372)
(0.50356731787 0.307070947842 -0.8956112746)
(0.613935901093 0.401985047281 -1.00714768948)
(0.427775112436 0.322016421618 -0.994300204401)
(0.436720207992 0.374272137932 -0.842021824997)
(0.211967508174 0.320830323395 -0.719997896005)
(-0.030251602334 0.254150482516 -0.613201964594)
(-0.232874393832 0.0148701005053 -0.0470507876992)
(-0.380196090444 0.219949130968 0.616495108458)
(-0.00331857136977 -0.213645035224 -0.768058976559)
(-0.0549384692067 -0.187022473498 0.00992065987985)
(0.128374157006 -0.10536738382 0.138707705085)
(0.143256317521 -0.0504398539714 0.000384723126445)
(0.0795828141046 0.00190704074945 -0.0428256605683)
(-0.0700959576352 -0.0794869065632 0.145968033851)
(-0.104397592599 -0.0699033120828 0.436739885777)
(-0.035161077836 -0.0547580871535 0.31650260763)
(-0.151505811583 -0.182597181083 0.222318947877)
(-0.0751544158345 -0.45770234164 0.287713355913)
(1.33007129991 0.486326247196 -0.97121460651)
(0.279762876112 0.236208951878 -1.16562744251)
(0.74809501457 0.36636628869 -1.19999179015)
(0.497770629688 0.288669075708 -0.921844564458)
(0.530804073708 0.393077160219 -0.971462206251)
(0.432733701321 0.371512237871 -0.761404204461)
(0.202313346467 0.274969639413 -0.701435969267)
(-0.0843315379367 0.0861329295634 -0.672848477929)
(-0.257643213362 -0.58095911653 0.236706315443)
(0.0156108117553 0.15442567528 -2.03182103991)
(-0.325105136278 -0.274000294869 -0.145760711166)
(0.0189273859586 -0.182475887062 0.22665005936)
(0.177710537967 -0.163442082628 0.338504633986)
(0.161078836494 -0.153395740034 0.120090502769)
(0.0648326126121 -0.0927783628145 0.11430769769)
(-0.122262236041 -0.121362858182 0.228229027342)
(-0.193993751538 -0.0930570262253 0.628624888536)
(-0.23720077842 -0.183260889372 0.489501096463)
(-0.610704666118 -0.490160816111 0.496401569082)
(-0.332918725629 -0.760827654058 1.04292683448)
(1.46466920963 0.601085138978 -1.14329623078)
(0.281677823723 0.227922696306 -1.14179435049)
(0.586833688968 0.115711929037 -1.06293639831)
(0.645543097388 0.227734545261 -1.0701761319)
(0.60513150291 0.353492433645 -1.07209455884)
(0.585169210981 0.39941578318 -1.02374188579)
(0.0396952847794 -0.0938474387027 -0.869841952703)
(-0.814336830739 -0.248561776706 -0.585245822681)
(-0.0431534374844 -0.145826115226 4.6201355236)
(0.529798416185 -0.603422669817 -2.65125171672)
(-0.596592441346 -0.249656833803 -0.652589652588)
(-0.170677739693 -0.148875864767 0.256818214125)
(-0.000155696782776 -0.134966982321 0.849560333273)
(0.089602090646 -0.291479468366 0.418039152514)
(0.0538448727282 -0.213597857303 0.338981291973)
(-0.168205291941 -0.19941896167 0.382833426301)
(-0.303728686802 -0.174867448107 0.592906058959)
(-0.581472534853 -0.35801427399 0.554206197143)
(-0.906886705589 -0.594055069654 1.04662635031)
(-0.38761454 -0.446402813807 1.48196521766)
(0.968551499646 0.439294525525 -1.59085346716)
(0.630888718966 0.280678086615 -0.827504642379)
(0.638492908638 0.149346860101 -1.07761942848)
(0.86990253578 0.234942252633 -1.05695622562)
(0.604693568378 0.21885396356 -0.974637610573)
(0.217537234603 0.147273435014 -1.14508304726)
(-0.547248044977 -0.800911425109 0.485737709603)
(-0.00283735685388 -0.131095247457 0.124676210263)
(0.141696044402 0.475394188523 0.206171621585)
(0.126874490699 -0.604850769637 0.0142300487185)
(-0.122996916465 -0.289648262481 -0.0385258594092)
(-0.191720283121 -0.0906466900461 -0.0378186585123)
(-0.335025276296 -0.054214370699 -0.0304404850894)
(-0.249059547601 -0.293845983417 0.510717185533)
(0.027160640751 -0.320428601237 0.574058451423)
(-0.201965869506 -0.253588454402 0.580448230169)
(-0.439945828138 -0.279787455027 0.643840243186)
(-0.744721522629 -0.400382876487 0.962829871772)
(-0.733103069228 -0.341050027704 1.23430984847)
(-0.274826117555 -0.0512645222725 1.21861768262)
(0.692931276109 0.314538094528 -1.43160360239)
(0.755448290986 0.225694087846 -1.33488675856)
(0.686705961986 0.102135489698 -0.972188820972)
(0.748843160846 0.123591043257 -0.855803394988)
(0.46071945249 -0.000422449528618 -0.732819303276)
(-0.0703216702345 -0.0348400145536 -1.24987952855)
(-0.632747720855 -0.903924704765 2.53994125466)
(0.23117663743 -0.105053471994 0.134786165141)
(0.0656676048676 -0.0283176631399 0.109690470087)
(0.0114044650753 -0.164079482403 0.0497682615969)
(-0.111780475052 -0.121759055875 0.0110349104215)
(-0.185558175928 -0.134294677886 -0.034529463095)
(-0.356825459873 -0.13179608145 -0.208577381307)
(-0.317022762602 -0.176475922033 0.371606398623)
(-0.014272697199 -0.225272950642 0.649264538027)
(-0.20966098802 -0.228251967458 0.688628735494)
(-0.494746701487 -0.272198400242 0.800030247653)
(-0.733538688436 -0.179069254274 1.09990252973)
(-0.509501978653 -0.0592487281792 1.19181412527)
(-0.199761864954 0.104264678261 1.11151394941)
(0.4719518341 0.420802428497 -1.32854809549)
(0.757744124109 0.15022114109 -0.854442084747)
(0.803627048602 0.0203789341977 -0.809383040562)
(0.682480207663 0.0502531700151 -0.808714140898)
(0.437238056847 -0.156875317324 -0.695226560428)
(-0.773347599934 -0.4964479869 -1.62331280667)
(0.339494323672 0.739621341348 3.43916951179)
(0.703082126909 0.0650156359809 0.219933842582)
(0.136905218906 -0.036476658353 0.110547041318)
(0.0187518560431 -0.147485692497 0.0563957291988)
(-0.118714813044 -0.166477540737 -0.0125073749857)
(-0.209182255916 -0.168166094174 -0.0408270968397)
(-0.312227919113 -0.138811017833 -0.233750468885)
(-0.270709052561 -0.0673117298661 0.293578552486)
(-0.0552773559048 -0.0688141235012 0.664986932197)
(-0.24512139357 -0.11268647024 0.741969928752)
(-0.385216389574 -0.117200457971 0.847164304448)
(-0.598391724722 0.0326209161848 0.978570699757)
(-0.51758267827 0.13572033592 1.08235790906)
(-0.197719234873 0.200919087351 1.1175459399)
(0.0738212470589 0.685705496971 -1.36950501832)
(0.743115801094 0.115474908557 -0.664015744633)
(0.754126148427 -0.0996131313989 -0.589695646663)
(0.53329976447 -0.301062671497 -0.584374810266)
(0.206141586383 -0.383894954787 -0.211052553995)
(-0.0684387829646 -0.407651713919 2.44280518159)
(0.561864921431 0.841593742656 -3.3902826354)
(-0.278051569919 0.194320144932 -0.0314671236196)
(-0.0469832957337 0.164924314591 0.00414102164736)
(-0.105044340792 0.000920650590373 -0.0176589483327)
(-0.136292820895 -0.165214787508 -0.0469327065613)
(-0.152388590095 -0.198099945098 -0.0689423045831)
(-0.223044822325 -0.219536479397 -0.220277953452)
(-0.187334734198 -0.0154357830033 0.290027786933)
(-0.0398432680004 0.000419268577885 0.592928297748)
(-0.192424864307 0.0315304507655 0.593494579132)
(-0.296749618022 0.0734580749886 0.656406435028)
(-0.481365471356 0.109478402836 0.777775807752)
(-0.503671837822 0.304101198692 0.889794243145)
(-0.225685967159 0.346702647168 1.10145636797)
(-0.577253555061 0.358298555097 -3.29213216801)
(-0.0669399231938 0.0390034149686 0.220577638654)
(0.594989249611 -0.431108443868 0.274407981551)
(0.530166474934 -0.673797580204 0.283820987313)
(0.454519004803 -0.77700384623 1.22805330871)
(0.606913514245 -0.110070825991 -0.554759319622)
(0.129568650634 -0.34586927347 -1.8745502923)
(-0.12764947472 -0.0940138535819 -0.428925863827)
(0.0199582546554 -0.12309814563 -0.948997029915)
(-0.26496463854 -0.146713255631 -0.575164923014)
(-0.248432367437 -0.176405247459 -0.014984405662)
(-0.128157175232 -0.164575792927 0.20869114941)
(-0.0545488922651 -0.0987995316109 0.463930113064)
(0.0135176208916 0.0845851688088 0.358080424279)
(0.0228851553867 0.09383595606 0.443116890556)
(-0.0841840136784 0.126021915874 0.331355349812)
(-0.233091791308 0.187870646058 0.333127774013)
(-0.356643926315 0.275015465294 0.421196978859)
(-0.452011134229 0.488857683682 0.638767612727)
(-0.25992851895 0.560545495849 1.01900507705)
(-0.387280963579 0.539675357694 -0.760262138265)
(-0.565657438731 -0.342564943664 0.0644349792446)
(-0.0724861923796 -0.220046801784 -0.440648658674)
(0.185074208516 -0.187401302016 -0.576275989633)
(0.168954761939 -0.1395357226 -0.815295026496)
(0.0398128120752 -0.350328795747 -0.398353895464)
(-0.0639175088799 -0.431501104142 -0.106409950914)
(-0.0542798397762 -0.234939894223 0.186390634482)
(-0.0259401995181 -0.375305920874 0.332283810159)
(-0.0705779310045 -0.273875500961 0.309814554249)
(-0.0314383990028 -0.112443388371 0.392769209749)
(0.0412868163786 -0.021057417294 0.405434763337)
(0.0987292893012 0.0801587667127 0.35552517481)
(0.108225246149 0.157760694456 0.210351779635)
(0.0490018158418 0.169671679496 0.176154616836)
(-0.00253756418902 0.189363292139 0.0554528087846)
(-0.0705361921895 0.26319615997 0.0466621203019)
(-0.145140442174 0.406125696715 0.0412356209357)
(-0.367312172854 0.609003390451 0.252905560523)
(-0.255465368417 0.816509738094 0.857869553979)
(-0.160126739935 -0.00742101139734 0.634112227679)
(-0.289484455294 -0.171151068276 0.274634953524)
(-0.308721403876 -0.259545017193 0.546684291782)
(-0.191075403915 -0.341061318488 0.556968309765)
(-0.0819141287481 -0.32707842585 0.409999045089)
(-0.0725570202654 -0.224645942967 0.312214389082)
(-0.100641374145 -0.203406059618 0.383252720158)
(-0.0653006523252 -0.164596514665 0.556296394126)
(0.022538729745 -0.180213690021 0.577914536475)
(0.0654863916632 -0.132615592763 0.481978556352)
(0.0851923727728 -0.0444227459196 0.457447590276)
(0.138304843027 0.0269023029157 0.396746637147)
(0.180856568702 0.100168714786 0.262382292631)
(0.165772150857 0.161028607406 0.0817704656487)
(0.127952178591 0.209759610619 -0.0698897919239)
(0.0920025401774 0.251104126294 -0.167235260888)
(0.0460021355993 0.384421044246 -0.167881442684)
(0.00210225534168 0.517592736767 -0.152975767901)
(-0.125959433639 0.746560268401 0.0498884132148)
(-0.102814585217 1.09677723436 0.356139392772)
(-0.2412542348 0.664813473027 0.805337507649)
(-0.473243026074 0.493699623355 0.442162579996)
(-0.555743545046 0.344058315066 1.00273588627)
(-0.338090513079 0.164689571127 1.21535067749)
(-0.12132863385 0.0464089177408 0.993368519159)
(-0.0623547124074 -0.00871314258102 0.621629626643)
(-0.0760637433787 -0.0269370299658 0.66626393149)
(-0.0101115826341 -0.0294486724179 0.668469802614)
(0.0537952939252 -0.0289882021028 0.597317029895)
(0.100048444626 -0.0289949333965 0.580381201078)
(0.153684067324 0.00797374551948 0.532132013099)
(0.20853028829 0.0562751906667 0.44288561356)
(0.254477930449 0.108177033035 0.274374881526)
(0.246605983807 0.177890416181 0.00827667389748)
(0.205161193154 0.229160348784 -0.214106367654)
(0.241334748026 0.319186648752 -0.32439760741)
(0.228816190246 0.373123151152 -0.3668440478)
(0.174479941252 0.484140627825 -0.332266020698)
(0.157274952922 0.656902175552 -0.375723612611)
(0.095839567338 0.859886868133 -0.519547379664)
(-0.383260704336 -0.104805414113 -0.619249651671)
(-0.711545650511 0.210601110123 -0.317548084409)
(-0.71681680865 0.300282565229 0.23576695052)
(-0.561092681441 0.198902907421 0.628252262861)
(-0.350978177959 0.108655347275 0.651497451789)
(-0.189930871937 0.101975143703 0.585535914824)
(-0.120597395626 0.0693509095826 0.669744633308)
(-0.0324641250819 0.0317744489724 0.734665123662)
(0.0615858845974 0.0169089359775 0.705146956456)
(0.133874406324 0.0257203041708 0.666214283913)
(0.203624473049 0.0473782802284 0.588119135943)
(0.270721233466 0.0785267519376 0.461354945234)
(0.329674401813 0.121160789163 0.276600270432)
(0.317745655678 0.177153995285 -0.0147341976495)
(0.316162421627 0.272380546359 -0.191195190013)
(0.271231646437 0.311563362737 -0.298303514042)
(0.207940927681 0.39773859608 -0.345606872948)
(0.220495276682 0.502242591867 -0.30970230192)
(0.150974434493 0.663846991374 -0.592915697071)
(0.143075367157 0.918175235785 -0.571021494176)
(-0.0940890647994 -0.232844694522 0.270704211852)
(-0.361681876763 0.145550602785 0.424213337728)
(-0.656625157579 0.214011122327 0.814694638799)
(-0.539817307824 -0.00978103711642 0.82198580167)
(-0.206510988071 -0.211260620143 0.601376855826)
(-0.0828369277343 -0.167464569274 0.329915415418)
(-0.119733425843 -0.0014237409247 0.637110992035)
(-0.021882088032 0.0329856913215 0.798810733327)
(0.0928740043933 0.0265612341088 0.748512375059)
(0.17850216714 0.0431511053017 0.679666154905)
(0.253065068867 0.0607968221185 0.576344853084)
(0.321839345133 0.0886607502374 0.452368159466)
(0.388403152536 0.146040031766 0.317345004179)
(0.432742198703 0.221791572666 0.10128995598)
(0.364673546901 0.230228704252 -0.184677044078)
(0.35269645171 0.375675602447 -0.146326475617)
(0.386395166575 0.612802085578 -0.0476915300632)
(0.36932922862 0.591044154748 -0.407541155962)
(0.309434773752 0.702869609112 -0.8069123825)
(0.262543798538 0.832434094578 -0.443046701994)
(-0.198761044474 0.976018946365 2.5424303699)
(-0.570069688273 0.895345927707 1.52199927123)
(-0.97134250474 0.69781481383 1.62722660418)
(-0.98643541995 0.379509597472 2.11565181807)
(-0.442573857356 -0.0879524414183 2.00740983669)
(0.11434913258 -0.359197817088 1.04180955265)
(0.148364515835 -0.107658388519 0.659984477252)
(0.0589247266221 0.0234707607169 0.751752558646)
(0.141719663959 0.0245173971034 0.771189396231)
(0.234665252572 0.0373098344561 0.653755843024)
(0.310954184231 0.0514961566178 0.553355250149)
(0.411374769615 0.100749197588 0.532699263625)
(0.515513762491 0.223551430899 0.356969381626)
(0.444016363643 0.156178559153 -0.0513170810128)
(0.480591550367 0.210710117546 -0.0128515187925)
(0.631510286317 0.584275184335 0.0173312785881)
(0.389758658289 0.622860399817 -0.830955675205)
(0.244570514251 0.426303647687 -1.18838700321)
(0.210285542301 0.1724789607 -1.66454614709)
(0.23536822653 -0.0708491956211 -1.75887045537)
(-0.336724718844 1.08063457735 1.22417951651)
(-0.86374206301 0.919621387557 0.723498613736)
(-1.24445586597 0.721457397623 0.891182117535)
(-1.34949739352 0.46318969824 1.4586274663)
(-0.915984481202 0.0281683337268 2.17647594872)
(-0.0162865754497 -0.343170689544 1.57058491988)
(0.367681173399 -0.204182806022 0.749373275037)
(0.224367244783 -0.0932054325283 0.656847513836)
(0.215985966712 -0.0323885809435 0.64073562876)
(0.296061790054 -0.0189697086622 0.561482951019)
(0.406212437753 0.000830414678323 0.517558589411)
(0.597375165339 0.172055653215 0.438143276498)
(0.563596115612 0.218082783316 -0.0585913284052)
(0.528250296778 -0.0244176262217 -0.0991252816281)
(0.876445672058 0.246342418226 0.149109790218)
(0.820448015266 0.597047756988 -0.926526602861)
(0.250860149605 0.494205807867 -1.63744792025)
(-0.102378031224 0.0759411345066 -1.36437262764)
(-0.314756157798 -0.506534788368 -1.26189848048)
(0.0135399066795 -0.834931107895 -0.416881262086)
(-0.401632946573 0.425025637645 1.15530992198)
(-1.06395636647 0.353266028173 0.993780039838)
(-1.51281599609 0.264078196362 1.27712078582)
(-1.67372386493 0.101497636223 1.97608385882)
(-1.13662379045 -0.113666458579 3.01319692523)
(0.0956953852854 -0.258241759647 2.16681546316)
(0.632542540251 -0.183366717826 1.09428360184)
(0.433212419019 -0.150017040466 0.867208024743)
(0.37984456541 -0.091416373071 0.731941712255)
(0.391035738027 -0.07296053612 0.71386424202)
(0.613588264839 -0.0554710505588 0.798331852393)
(0.832224982889 0.100090031269 0.365131337936)
(0.636464112252 0.0968497361744 -0.131976295285)
(0.839105765861 0.0170903462335 0.537717703098)
(1.43609172378 0.214778067993 0.477299855833)
(1.06313615154 0.400806786585 -1.19042167706)
(-0.0495904805064 0.400423087522 -1.95107639362)
(-0.642579334071 0.131887674739 -0.864122864598)
(-0.726787153398 -0.186372797227 0.262010921193)
(-0.0529650127009 -0.258047138304 0.89584184301)
(0.0338923086817 0.098971700308 -1.32333678075)
(-0.111361566184 0.0500298031518 -1.10486950119)
(-0.118350154137 0.0125808483243 -1.29814808768)
(-0.242612013049 -0.0339160689847 -1.28984080867)
(-0.239273355507 -0.0552709883776 -1.1983545836)
(-0.225384326557 -0.11206713427 -1.31542323993)
(-0.304120419175 -0.154398315905 -1.36959533958)
(-0.30726756089 -0.167096988039 -1.25558337782)
(-0.280778544064 -0.176064621522 -1.06810807572)
(-0.298118671011 -0.154112119531 -0.598007982717)
(-0.575633758954 -0.288797311921 -0.236306065622)
(-0.828612088872 -0.137190611239 -0.378819264091)
(-0.736285422991 0.00358399440696 -0.061922412725)
(-0.599776836913 0.0122021894965 0.0682836924979)
(-0.552619378553 0.0403892629572 0.021449479667)
(-0.381495766767 0.0731011292179 0.17663641304)
(-0.434556413064 -0.00528368825436 -0.18118666276)
(-0.683536072465 0.00486087013112 0.105988284097)
(-0.652857226491 0.0847504152218 0.756498383322)
(-0.303076333281 0.22945098678 1.39758238078)
(-0.0168838820191 0.0243803863924 -1.25921715755)
(-0.159513138209 -0.0269919660954 -0.842262417526)
(-0.10689008537 -0.0668745279266 -1.05972705972)
(-0.149359489505 -0.0822782584429 -0.981899235895)
(-0.140972634444 -0.0671397745727 -0.812309543699)
(-0.0966335481323 -0.135768719684 -0.71050087884)
(-0.0773288289718 -0.219663144304 -0.749450068943)
(-0.0563008601338 -0.261794409211 -0.796658000934)
(0.0148524328816 -0.284762002858 -0.792232752063)
(-0.102772479504 -0.296509083461 -0.549811427276)
(-0.317240288391 -0.406700087436 -0.318277614777)
(-0.474225960581 -0.258035226423 -0.248203569588)
(-0.483837122783 -0.0415301927258 -0.113933911921)
(-0.43654328832 0.0196637961264 0.0277530961236)
(-0.376948205625 0.0737521346337 0.13103054908)
(-0.317285304001 0.0924185241918 0.143930203681)
(-0.374223544345 -0.094420931646 0.00433377452573)
(-0.477739955743 -0.0855071642944 0.240815341984)
(-0.459447656405 0.10521813314 0.545833299521)
(-0.2533213962 0.373893857232 0.986814139611)
(-0.0525112923853 0.0289222958376 -1.5198488099)
(-0.18595132647 -0.0251053801743 -1.11693064131)
(-0.103680047545 -0.0223099909883 -1.34066378172)
(-0.121194316167 0.017869679759 -1.18237565233)
(-0.128520145917 0.0621561370691 -0.91079573521)
(-0.112450362506 0.021305131159 -0.692921206122)
(-0.0945405289649 -0.0825502906903 -0.552889730387)
(-0.0578511435171 -0.176328180778 -0.503817461123)
(0.0215811461551 -0.264051007679 -0.497882833774)
(-0.0228279603975 -0.346455056103 -0.358244829888)
(-0.185908366825 -0.277347400772 -0.331445327904)
(-0.33731613691 -0.230793503284 -0.193221933804)
(-0.352359411478 -0.128935513584 -0.110358020283)
(-0.334742440232 -0.0388062401898 0.0276108608892)
(-0.299714254934 0.0278909613421 0.137532182335)
(-0.342777834081 0.0384172410644 0.13977348696)
(-0.399694799277 -0.0871281643767 0.271606314434)
(-0.354448903241 -0.0669281196221 0.334455075975)
(-0.288767469574 0.095990802342 0.363201534622)
(-0.186861355239 0.382178479528 0.533325437956)
(-0.108403849776 0.0335481503996 -1.61164079763)
(-0.151957545098 -0.0387616837666 -1.13168929295)
(-0.02348177478 -0.0136760495601 -1.3357554148)
(-0.053206109762 0.0452177899444 -1.13220189629)
(-0.101457264708 0.0760028843085 -0.839008265526)
(-0.140392167873 0.0327403182083 -0.573341023523)
(-0.135080130841 -0.0626592349068 -0.347940986265)
(-0.0949608547206 -0.156145062326 -0.171225009121)
(-0.0064760740372 -0.248029077016 -0.0980190711048)
(0.0308423478687 -0.306922683078 -0.110400817645)
(-0.105113486114 -0.205413093069 -0.356745174382)
(-0.282160927277 -0.247501313238 -0.164597173144)
(-0.279444788042 -0.18500821756 -0.0247888730536)
(-0.256324798095 -0.101027473938 0.069049687518)
(-0.253529299688 -0.0190708537409 0.165756334)
(-0.356282493317 -0.0190749462011 0.195976906406)
(-0.41202667141 -0.0453404688814 0.391481714477)
(-0.305866120071 -0.0336127206375 0.385860239711)
(-0.173661295457 0.0332401831985 0.191004391038)
(-0.0779085172337 0.243335603033 0.0154026301903)
(-0.170721165798 0.105977284378 -1.77501332873)
(-0.127541433737 0.00945079657414 -1.09585276652)
(0.0822123457135 0.00624011092591 -1.28568222746)
(0.024417003139 0.0344564901483 -1.09084097314)
(-0.0849373417473 0.0402564257126 -0.867759832365)
(-0.143526394153 -0.00109150717939 -0.517246326353)
(-0.164304204554 -0.0825042628817 -0.164540784255)
(-0.13233894718 -0.157004314113 0.0992432130389)
(0.00410731827614 -0.245667109956 0.212896296058)
(0.0903955794693 -0.15322989426 -0.165797106084)
(-0.0829591667909 -0.236321608983 -0.406446655487)
(-0.311711500716 -0.295131057915 -0.10064890248)
(-0.24250442617 -0.241011092128 0.0776887422665)
(-0.190587820764 -0.164112947189 0.180940158338)
(-0.239121866365 -0.11259874124 0.232731913821)
(-0.380620842455 -0.0981249470339 0.320687215736)
(-0.433832338263 -0.0809749999881 0.492274295804)
(-0.340471368366 -0.0920358426329 0.444860838014)
(-0.134217074443 -0.167199054858 0.174873642362)
(-0.0154700108689 -0.111075056825 0.0306263604112)
(-0.156007633661 -0.0409626735235 -1.77388831532)
(-0.117763294511 -0.0351460124466 -1.11604673065)
(0.136271801756 -0.049180003617 -1.26619575912)
(0.048567759602 -0.0253327485792 -1.07363398286)
(-0.0807698396889 -0.0281613780886 -0.866908013052)
(-0.183886787774 -0.0640412435484 -0.3944137486)
(-0.200827006018 -0.146318007797 0.116764430207)
(-0.176568874144 -0.242639686953 0.227448373469)
(0.0935113840774 -0.444473701563 0.331326297285)
(0.127848872862 -0.098756993623 -0.549106745553)
(-0.230800118114 -0.275028741239 -0.150912902949)
(-0.326998558923 -0.280945763628 0.0310777676371)
(-0.224225458015 -0.251390072017 0.195363027616)
(-0.186007115958 -0.229873740801 0.302658232889)
(-0.245059215901 -0.209053561684 0.381195273981)
(-0.398633760064 -0.19072881004 0.462454561636)
(-0.479569111851 -0.1581600017 0.605258808585)
(-0.456302487405 -0.198469049931 0.533983526886)
(-0.257518492656 -0.313821940106 0.260769331826)
(-0.0528347800835 -0.335246061305 0.427712117836)
(-0.124060427219 -0.238549738786 -1.81478846937)
(-0.138745629957 -0.121523449353 -1.11682046007)
(0.140437112436 -0.133298590941 -1.18128669192)
(0.0369677588383 -0.118865225201 -1.03472111394)
(-0.0987765756695 -0.137408626426 -0.774707535602)
(-0.251691740745 -0.159884296609 -0.213150917385)
(-0.334976359946 -0.334695821618 0.298411514137)
(-0.408229457042 -0.333020901172 0.281940721824)
(0.125550404697 -0.240290547146 1.08720106466)
(0.351541219753 -0.323780858118 -0.568305578741)
(-0.306885659899 -0.271177078628 -0.169265302316)
(-0.402989663714 -0.16471740933 0.0618538004749)
(-0.310723625296 -0.114773454289 0.263029277067)
(-0.257519047932 -0.212264521741 0.326123468638)
(-0.284685122106 -0.261617510088 0.479809199934)
(-0.413291527332 -0.246231213862 0.58411486722)
(-0.514698819673 -0.23005860015 0.666742164672)
(-0.515963107337 -0.246296431684 0.611716163113)
(-0.333813144432 -0.248804004805 0.541684866999)
(-0.0948677518896 -0.209350328527 0.752223153121)
(-0.163813446901 -0.319576917386 -1.86280854047)
(-0.259201525163 -0.109656706344 -1.25524187991)
(0.0626386987401 -0.20154288633 -1.09540483177)
(-0.0510658301109 -0.22222909343 -0.812714156144)
(-0.150138733228 -0.23015037256 -0.450595173093)
(-0.397575201872 -0.215297930088 -0.110987282388)
(-0.441823424102 -0.420724975543 0.416480889881)
(-0.210649545798 -0.298653371437 0.199376033834)
(-0.0836544870989 -0.00418447926017 0.243622984694)
(-0.0467523001772 -0.297976038026 0.0624150650698)
(-0.208016863384 -0.252586259656 0.0418024814319)
(-0.289235613096 -0.108165215452 0.00333144043873)
(-0.366713325943 -0.0137991028948 -0.00742389486329)
(-0.421044112854 -0.116212677193 0.156503741062)
(-0.321748615808 -0.224055497939 0.435818144932)
(-0.396462520099 -0.224367736302 0.592720273206)
(-0.506774785313 -0.227033271471 0.679502741888)
(-0.467645562992 -0.222426075515 0.676486703266)
(-0.307801691824 -0.0981538828526 0.676470171532)
(-0.0922504405258 0.00188410098729 0.745770890115)
(-0.237522837833 -0.299355999198 -1.77114268523)
(-0.401039460046 -0.187294555211 -1.36735685447)
(-0.122665704922 -0.238534332955 -0.891119536656)
(-0.123934580398 -0.256519249876 -0.45528508142)
(-0.13622057007 -0.241578398447 -0.0603528906821)
(-0.43582656219 -0.204905312781 0.0122341936591)
(-0.388733716732 -0.450705833432 0.61551396043)
(-0.0436480148271 -0.245350882476 0.19778924323)
(-0.0682070661008 -0.136739109753 0.171260631965)
(-0.103730175108 -0.163188729901 0.0619733035031)
(-0.172729700696 -0.156156359877 0.0378223926597)
(-0.217254183447 -0.119251327113 0.0131955064527)
(-0.345301641817 -0.0606925984335 -0.0235549010339)
(-0.427270778561 -0.0843613289649 0.0796347219067)
(-0.330645449257 -0.160294550773 0.390184214292)
(-0.361894842911 -0.130470903623 0.56379018954)
(-0.469528905195 -0.105252793499 0.643615218959)
(-0.370363027431 -0.126175507196 0.686925255765)
(-0.218693863714 0.0508617553206 0.667287827699)
(-0.0692401795013 0.128083882989 0.695169413421)
(-0.455252782115 -0.233524751734 -1.58884247972)
(-0.545528422471 -0.312576610176 -1.22890690192)
(-0.282920693812 -0.249889186828 -0.542786033488)
(-0.205679643596 -0.276608708183 -0.0276976059814)
(-0.124887958108 -0.219440111161 0.438443303649)
(-0.599883909809 -0.198342252398 0.369315580792)
(-0.331156698383 0.251988050935 1.31006156776)
(0.255758858893 -0.0579230245398 0.278308471853)
(0.018732203928 -0.0917529704003 0.152050734867)
(-0.080743706942 -0.15326733564 0.0556008197849)
(-0.168380891281 -0.156056315221 0.0107110319093)
(-0.206162996357 -0.135049045901 0.0120867546264)
(-0.309721051476 -0.109447532328 -0.0191780884086)
(-0.431203261166 -0.0445823763739 0.0560731879665)
(-0.311924550698 -0.0423283581904 0.302130982054)
(-0.263501110872 0.0237679768371 0.521932539124)
(-0.424437678727 0.0740693207288 0.600492349985)
(-0.309852242055 0.105475637082 0.493690179322)
(-0.163279635615 0.206948377274 0.595559097684)
(-0.0614956687639 0.224434326609 0.692888819301)
(-0.545264398317 -0.213442828077 -1.21378505186)
(-0.694521843937 -0.399628735834 -0.850939277641)
(-0.473318126088 -0.302793217228 -0.197520269724)
(-0.263555671345 -0.24599159228 0.488308052119)
(-0.161802010668 -0.125461679966 0.981114143699)
(0.0515313256434 -0.000632104185543 1.10181410084)
(0.0408370104819 0.500340986414 -0.328726246569)
(-0.132618160672 0.055914112239 0.090679296798)
(-0.118473578315 -0.0207372965395 0.0367785634872)
(-0.157986253012 -0.0866538871504 0.0138839493266)
(-0.164294467497 -0.1338877949 0.00350359492091)
(-0.164570611383 -0.144928403491 0.0116396404469)
(-0.247998826123 -0.163547048411 -0.0089621796323)
(-0.346615007636 -0.0205202782925 0.0570735032641)
(-0.238009244411 0.152624714776 0.294057911702)
(-0.196959924562 0.174137708184 0.461819489207)
(-0.351241865171 0.235684916567 0.508129480671)
(-0.277085156639 0.365473786394 0.421009624177)
(-0.183303243005 0.357977424006 0.511699952639)
(-0.0727293055464 0.344455903236 0.663365047484)
(-0.459437053875 -0.532547119956 -1.52967520884)
(-0.977047501583 -0.578047386078 -0.410199021298)
(-0.616075117388 -0.290272452153 -0.0450745989828)
(-0.280181613722 -0.133465722102 0.597922737316)
(-0.065140578928 -0.000145239479946 0.938193812143)
(0.133927301949 0.0501870558548 0.272610581346)
(0.00916260797303 -0.128742906229 -0.312790256248)
(-0.0964230673472 -0.163429314004 -0.071118502949)
(-0.0729100214644 -0.209310450571 -0.32727740138)
(-0.179068160302 -0.205595291877 -0.233133134619)
(-0.211098264519 -0.2020084521 -0.0588860187234)
(-0.18685130039 -0.181039707171 0.0367535028912)
(-0.164104450123 -0.139550038079 0.11767972003)
(-0.140083677114 0.00192298189316 0.162062779106)
(-0.104370452472 0.224870938056 0.301033556387)
(-0.148885779343 0.25694521328 0.330602737609)
(-0.224775684844 0.338964742453 0.337572905215)
(-0.244550215695 0.475116306189 0.383925481436)
(-0.237995361529 0.474680340408 0.404832849576)
(-0.0924178788723 0.474114571985 0.601988404555)
(-0.364168885622 -0.774962863094 0.170098027289)
(-0.479076586673 -0.776174301018 -0.0561700284219)
(-0.456515912638 -0.453342264489 -0.188390366767)
(-0.272692632157 -0.288667800047 -0.162499533704)
(-0.151051798493 -0.17906443264 -0.0947252597402)
(-0.127400710315 -0.196813235793 -0.0741632903334)
(-0.165283928838 -0.349944410259 -0.0600849827904)
(-0.136847822028 -0.345000374579 0.000228593630671)
(-0.0989430864508 -0.388043473955 -0.030403506768)
(-0.100917241191 -0.343574096433 0.0197736278088)
(-0.0758147818373 -0.251311603565 0.0983883702118)
(-0.0316895904286 -0.152166854808 0.136920525777)
(-0.010164647685 -0.0388643663376 0.168672672073)
(0.0225210742583 0.0877305931773 0.167928736093)
(0.0321233883623 0.212128709749 0.19845359997)
(-0.035511761405 0.292254165125 0.169379643953)
(-0.111862612862 0.372910093095 0.146664582046)
(-0.169572360565 0.46740305193 0.158052493338)
(-0.205593635022 0.541421352413 0.203904666851)
(-0.0890741340111 0.573854537225 0.439200545054)
(-0.224176307166 -0.501976215251 0.640850858363)
(-0.262468302223 -0.580661227364 0.219919710956)
(-0.413813475684 -0.494271433691 0.195736122193)
(-0.326540385845 -0.436608699094 0.199947845498)
(-0.231222641276 -0.392269050117 0.157475898025)
(-0.181908563913 -0.364833006448 0.125315261546)
(-0.157561589345 -0.351742269977 0.146511855183)
(-0.109227675553 -0.322511305079 0.199624331269)
(-0.0437937844567 -0.301544799763 0.218460213603)
(0.0043352941905 -0.248411062539 0.203493602216)
(0.0479994214896 -0.169140705301 0.208474727547)
(0.101367530004 -0.0846011516999 0.205448323255)
(0.141403293921 0.0127124156729 0.174845627857)
(0.154439858868 0.131234709716 0.125662794633)
(0.125708428942 0.210725986085 0.0745465482385)
(0.0761685677654 0.290059883376 0.00786508641156)
(0.00675327484957 0.37839651675 -0.0257201425554)
(-0.0557927627555 0.478646598239 0.00134854451842)
(-0.0880187619703 0.592499631734 0.0468120992758)
(-0.0430295679384 0.609128096749 0.125095413712)
(-0.1023811583 -0.28240795042 0.37524038498)
(-0.309583808319 -0.270703400688 0.182355876989)
(-0.437761706479 -0.249439129552 0.367716486084)
(-0.342945521864 -0.255371932782 0.454004937487)
(-0.233629251147 -0.264105048249 0.422725617213)
(-0.161889027108 -0.2738095101 0.327080796275)
(-0.112286164275 -0.268339658521 0.328828821029)
(-0.0453283896796 -0.249471473049 0.335826944557)
(0.0241741924252 -0.219871306676 0.324452399125)
(0.0870212531685 -0.179111278215 0.311715949244)
(0.150291715729 -0.120506411935 0.286634006226)
(0.21417493138 -0.0511881119184 0.244577039278)
(0.265934562006 0.02411022204 0.177696226126)
(0.276611620648 0.106761868561 0.075937013872)
(0.237421050365 0.18220920492 -0.0103672026313)
(0.201558851552 0.264417833917 -0.0837949705606)
(0.14919989656 0.333086608794 -0.186615522058)
(0.0936092143518 0.427550345978 -0.197379803503)
(0.0557149729274 0.518536929452 -0.229201927987)
(-0.00992306866946 0.437300911098 -0.308872665383)
(-0.0445190549712 -0.464303427167 -0.267819731137)
(-0.341455282002 -0.280738421829 -0.0795558492813)
(-0.479444384622 -0.202747267822 0.194996244379)
(-0.395377149875 -0.228283278583 0.316890382961)
(-0.278247394234 -0.240335900007 0.381164364385)
(-0.177423035479 -0.23832261122 0.380027477691)
(-0.0873430682715 -0.214301668686 0.402044847427)
(-0.000691902275189 -0.194657515139 0.427927722424)
(0.0845113178082 -0.164806929212 0.419717497825)
(0.161624465918 -0.123059685823 0.39316570289)
(0.238035596089 -0.0734013378097 0.345244309294)
(0.30974223748 -0.0198060008941 0.276591255143)
(0.365808416978 0.0362979297772 0.180883305165)
(0.375947014188 0.0961479443222 0.0557951828351)
(0.347480277004 0.173344739583 -0.024700639663)
(0.284210961233 0.244451690841 -0.138495766555)
(0.220247337548 0.333213636758 -0.108779561228)
(0.191710466851 0.419210501662 -0.114581970822)
(0.109396000647 0.480337104723 -0.193961896964)
(0.00838465475139 0.435252930307 -0.0718252132688)
(-0.00574110234156 -0.326532465709 0.583247008851)
(-0.269329674399 -0.187383613361 0.490088765536)
(-0.464471967262 -0.15586704737 0.614422371194)
(-0.39994777535 -0.240316913618 0.716489558669)
(-0.236684143967 -0.336425297174 0.669615712687)
(-0.0993023388854 -0.320833015106 0.456500588966)
(-0.0071948186725 -0.244148539003 0.474944648901)
(0.0670277385106 -0.172355297249 0.505921066881)
(0.151684451696 -0.129606396753 0.482823765397)
(0.231974738411 -0.0839293399199 0.43515539097)
(0.309540865009 -0.0382722354771 0.367598043651)
(0.380905803135 0.00585912900684 0.286774567074)
(0.438477689455 0.0511323089512 0.192431362546)
(0.465257053085 0.111117115402 0.0738818001691)
(0.436674771962 0.168685395191 -0.0587371716588)
(0.402193887229 0.287973431343 -0.0551779106401)
(0.356506394248 0.417539035486 -0.154779047138)
(0.310256794042 0.44148687614 -0.265277214965)
(0.184241079427 0.423403116897 -0.494179668291)
(0.0842124174432 0.361909296809 -0.419741477468)
(-0.0384268362775 0.1976893103 0.30847367512)
(-0.351292493746 0.2064025673 0.371910251532)
(-0.600262501088 0.116501086403 0.60146485231)
(-0.566970856367 -0.0418136333495 0.941819828997)
(-0.304315535269 -0.257888107225 1.1259539676)
(-0.0138244009724 -0.332529909313 0.892026404403)
(0.134096593237 -0.232689424647 0.590073018163)
(0.179878552509 -0.156486706694 0.551323516836)
(0.22562650396 -0.0989676662492 0.525318511582)
(0.295597344937 -0.0540702753262 0.45557720124)
(0.364975154281 -0.010722537523 0.380592916197)
(0.431191067684 0.0270452462463 0.297061440499)
(0.499184974888 0.0873728223044 0.176096181477)
(0.519388835705 0.1070506161 0.0172157543012)
(0.551269425367 0.196236362816 0.0337105637441)
(0.559869106521 0.382379801976 -0.156574316257)
(0.397449691961 0.443065985009 -0.405521637854)
(0.254420718008 0.323761233528 -0.414344749212)
(0.0780102522198 0.0958943788713 -0.624851914958)
(0.0178876334716 -0.121648871686 -0.361259180841)
(-0.104312735939 0.304891427179 -0.29399782433)
(-0.472867140572 0.249673647188 -0.0758451738407)
(-0.722632219749 0.161162086083 0.265433356191)
(-0.730255398824 0.0127938701892 0.696700258367)
(-0.450445959174 -0.195684696871 1.15771363707)
(0.017270832878 -0.318797825567 1.19498122522)
(0.257437000954 -0.203668885522 0.760868432908)
(0.270479643155 -0.14419487391 0.569426497153)
(0.298787079765 -0.0924879854027 0.522947071461)
(0.343099389936 -0.0547139581314 0.458047791431)
(0.398498836071 -0.0151947585629 0.385332830104)
(0.471634830015 0.0300648923675 0.270547190058)
(0.500189622179 0.066656834977 0.0462333913959)
(0.550608611751 0.0252099386224 0.0742990724231)
(0.696410180452 0.157597712138 -0.0380174594118)
(0.640083862629 0.311208699308 -0.480992590301)
(0.278826587182 0.277773344767 -0.666395636018)
(-0.00103043407218 0.0296599071232 -0.49283211704)
(-0.193677468629 -0.293599078758 -0.368450774712)
(-0.0953890997206 -0.511470521101 0.17661179347)
(-0.124526343583 0.0640007442508 -0.776859345567)
(-0.493729882194 0.0314653868739 -0.387519798161)
(-0.73616889394 0.00676018801279 -0.00587959360539)
(-0.791264566214 -0.0564312155194 0.581687493576)
(-0.494504333995 -0.129488126281 1.25200025723)
(0.0928837258185 -0.16851913699 1.42589842529)
(0.384190285449 -0.103789397466 0.873809552305)
(0.328029774269 -0.0716809431762 0.68488139337)
(0.315107965745 -0.0542841648272 0.589835706899)
(0.340286616648 -0.0409316164004 0.524296838409)
(0.379127560995 -0.0277620527576 0.448036514003)
(0.40028191756 -0.010993467613 0.179053604328)
(0.355184812476 -0.0157059752506 0.0138062652756)
(0.486092070722 -0.0436374276528 0.258924828699)
(0.770342237502 0.0373897635574 0.0402190519933)
(0.737129600502 0.127833060375 -0.465412831204)
(0.140409390064 0.150723476664 -0.638030843761)
(-0.358216878689 -0.0455849486671 -0.0398895827997)
(-0.441005657714 -0.222133783659 0.503120038192)
(-0.141706687408 -0.265630147277 1.09059832025)
(-0.0296920474676 0.0142505575529 -1.04575257562)
(-0.145186156216 -0.0182980767479 -0.953558114581)
(-0.155750153327 -0.011620534739 -1.00020134353)
(-0.255113712437 -0.0090352407514 -0.986356543395)
(-0.326395575185 -0.0278173635894 -0.912663324343)
(-0.394403442264 -0.0295378030154 -0.944003740409)
(-0.444096095168 -0.032508583768 -0.983242962072)
(-0.388958147678 -0.021115886837 -0.911673254613)
(-0.345340407846 -0.0499568296994 -0.828517671232)
(-0.377231306872 -0.143736448217 -0.706823054274)
(-0.540384135827 -0.147286819455 -0.638368514269)
(-0.629773050813 -0.0874185487156 -0.296324630504)
(-0.540409442532 -0.0450479671859 -0.0669637050914)
(-0.473876118757 -0.0478823360929 0.0036285643846)
(-0.428756784624 -0.0438649624601 0.0963933756556)
(-0.349390805437 -0.0419183166902 0.157704696366)
(-0.378172914331 -0.0446622691311 0.0687062840975)
(-0.450789808659 -0.000716289415491 0.228452153597)
(-0.365936074099 0.0386619716129 0.559644295984)
(-0.154434859219 0.0986551803778 0.808268332488)
(-0.0767917070833 -0.0387689156776 -1.03259165979)
(-0.177181441138 -0.0518436477641 -0.893570740773)
(-0.158063214905 -0.0676761495701 -0.937521260051)
(-0.269130649104 -0.0998309686969 -0.898155634294)
(-0.315757962605 -0.147978837147 -0.815602158966)
(-0.333267109332 -0.176529933964 -0.768760494747)
(-0.335410390631 -0.198136902393 -0.75365123995)
(-0.328162662623 -0.192401277948 -0.710598627111)
(-0.360153370003 -0.214842204258 -0.625468781868)
(-0.37332785428 -0.279211215977 -0.57484245708)
(-0.451208604111 -0.278742000958 -0.372067812734)
(-0.535904870713 -0.179452236175 -0.196576700618)
(-0.511318147579 -0.0892503955383 -0.0873400931109)
(-0.476599759962 -0.0658116039551 0.0197407528879)
(-0.420080057582 -0.0517665409587 0.100006874477)
(-0.357469125382 -0.0615009652227 0.129634123342)
(-0.353970752886 -0.100235656183 0.126218729372)
(-0.367097827999 -0.0282033671882 0.266268790145)
(-0.305780143761 0.0919358553279 0.479640609239)
(-0.126730356426 0.221232048451 0.636445523329)
(-0.0752819129423 -0.0228375686909 -1.14533486238)
(-0.188853514437 -0.014555413319 -1.00005732805)
(-0.179218144385 -0.0487717213233 -1.04520534075)
(-0.291856567019 -0.0776834979141 -0.968082238061)
(-0.341631880247 -0.104392962513 -0.833529909984)
(-0.352785292041 -0.152790439045 -0.735344518938)
(-0.329621149245 -0.225258267696 -0.658590978226)
(-0.295831288677 -0.287794693519 -0.577169556311)
(-0.287564010126 -0.319418537644 -0.479388685921)
(-0.292771505086 -0.298750396032 -0.411914813269)
(-0.372461230865 -0.262200018288 -0.292053839239)
(-0.451053643954 -0.202547416853 -0.159678806496)
(-0.448697643623 -0.151319536849 -0.0700179218288)
(-0.434631574256 -0.108193706792 0.0407092465086)
(-0.399490820117 -0.0825858073511 0.130705142537)
(-0.36722451698 -0.089228355747 0.168241243961)
(-0.327665215218 -0.117877847021 0.228899865557)
(-0.262504146203 -0.0612755635948 0.30147195492)
(-0.199235419594 0.0705316233419 0.369239875288)
(-0.0862765246497 0.212667780275 0.443055749723)
(-0.0727714728849 -0.0614862275166 -1.18613442792)
(-0.214634539644 -0.107331766035 -1.00711773927)
(-0.1914337924 -0.130502095285 -1.04493556409)
(-0.309369824589 -0.153474296232 -0.922520340594)
(-0.366297414931 -0.161399077127 -0.792974010827)
(-0.38768601616 -0.201073911012 -0.656683259719)
(-0.364469120878 -0.271661204623 -0.527602209653)
(-0.300762239262 -0.336749504688 -0.408901890593)
(-0.244919204887 -0.359213848645 -0.280100113156)
(-0.210259123855 -0.31680803144 -0.226350962632)
(-0.292826515895 -0.24021860411 -0.241044720114)
(-0.400914424656 -0.229750175919 -0.125342758033)
(-0.407312736938 -0.197761478391 -0.0145994334788)
(-0.39255243588 -0.155302502495 0.0910561650158)
(-0.375856732588 -0.128795797972 0.182451328382)
(-0.361040082499 -0.124699860029 0.243771754426)
(-0.300757309332 -0.126148368533 0.313790109927)
(-0.179420908895 -0.0860219112783 0.30757102829)
(-0.098900378741 -0.0155840553513 0.272563500835)
(-0.029211892646 0.085898325893 0.270108901162)
(-0.0768724072392 -0.0738301696684 -1.28780311315)
(-0.252348960927 -0.154257959363 -1.01904778751)
(-0.191246996083 -0.188672056799 -0.992658068104)
(-0.309538511703 -0.200663482296 -0.854670622393)
(-0.373541015198 -0.196403171814 -0.728507027602)
(-0.412740117195 -0.235625529557 -0.572253652236)
(-0.39061245224 -0.301102321354 -0.406682299378)
(-0.311148717367 -0.336894509881 -0.253730991756)
(-0.19931172485 -0.346736461747 -0.0934019833066)
(-0.13287133513 -0.267526587084 -0.115569352446)
(-0.250788837409 -0.240419331606 -0.257116619312)
(-0.393141228701 -0.255815392384 -0.0723842620341)
(-0.387560324635 -0.230382936736 0.0573742100751)
(-0.366654742738 -0.196778084299 0.1620478317)
(-0.358787219977 -0.180595211551 0.259879132653)
(-0.350229639718 -0.169892650243 0.347160809659)
(-0.279445162679 -0.150779685904 0.40682944224)
(-0.1533047242 -0.132568129387 0.342724942679)
(-0.0674398382126 -0.115491707129 0.254130329191)
(-0.0117030602517 -0.0732277537468 0.213018294129)
(-0.112862696981 -0.174635752775 -1.45594103369)
(-0.307799846764 -0.213073116962 -1.06060793341)
(-0.205248105332 -0.259239331431 -0.960843833179)
(-0.310891281026 -0.259575736651 -0.786268824602)
(-0.388106210595 -0.250788383836 -0.663267260539)
(-0.449922315077 -0.280780681703 -0.470012329972)
(-0.412813934299 -0.334024418905 -0.262379956502)
(-0.318075458107 -0.352860470883 -0.118306579841)
(-0.151272319643 -0.389910947904 0.063310746027)
(-0.0950891805196 -0.246802522457 -0.157410760795)
(-0.271931023465 -0.248551454463 -0.142171454521)
(-0.3905746266 -0.233822517311 0.0325539372127)
(-0.373426238941 -0.206535657224 0.152240388217)
(-0.353387100421 -0.18498087249 0.228924505249)
(-0.346334264533 -0.192237373406 0.336080415964)
(-0.332997845868 -0.184970530075 0.434888261236)
(-0.263458734927 -0.161853126208 0.473134304009)
(-0.155057094896 -0.158913651581 0.400528248584)
(-0.0605567556919 -0.151444877721 0.389554613159)
(-0.000849433283024 -0.135031333974 0.388203796139)
(-0.118977034915 -0.314546498369 -1.45696269219)
(-0.34983488709 -0.267203840294 -1.07659183546)
(-0.248780207573 -0.326253221232 -0.922209131623)
(-0.339595727112 -0.334847152466 -0.755412864717)
(-0.425193679707 -0.332472443718 -0.59933977083)
(-0.494718039426 -0.340094661459 -0.365201422888)
(-0.455267714709 -0.381825575615 -0.123899323821)
(-0.392350466869 -0.332574306946 0.0322667820425)
(-0.143446232691 -0.259736040865 0.405424242246)
(-0.00659254054701 -0.251775969063 -0.126384634756)
(-0.263512157552 -0.231909524867 -0.0944092500799)
(-0.37515388428 -0.155682936632 0.0678069914718)
(-0.369265264184 -0.0897863831827 0.178458086691)
(-0.368084865375 -0.0990348795209 0.23284636558)
(-0.349473581066 -0.140195571523 0.358019278501)
(-0.315610254753 -0.142922419876 0.464701869345)
(-0.250560360263 -0.13529327073 0.488325390164)
(-0.163061872336 -0.132653717053 0.451956085173)
(-0.0858063477092 -0.107584730399 0.512433905691)
(-0.0163678729002 -0.0923185432509 0.566690349287)
(-0.106645355575 -0.416702044272 -1.38666688338)
(-0.402177301421 -0.301878258814 -1.07452777334)
(-0.350284635461 -0.411542790256 -0.885015953848)
(-0.413952039406 -0.413891256119 -0.684592030094)
(-0.476489640124 -0.396197102248 -0.463374623258)
(-0.537189055332 -0.361250368496 -0.198919294902)
(-0.450490181122 -0.391564893208 0.143102617625)
(-0.278554280354 -0.294450491764 0.105107568389)
(-0.16282209294 -0.14790463633 0.133063205678)
(-0.1355454382 -0.221768703602 0.048907492126)
(-0.223148876264 -0.208508777129 0.0113664331987)
(-0.279430676536 -0.11285814522 0.0313326153282)
(-0.328981201188 -0.0349164991596 0.0548569498389)
(-0.398468804283 -0.0323012282297 0.152834587637)
(-0.372459692564 -0.0722016929059 0.33086894474)
(-0.299984488449 -0.0784383774951 0.429038752061)
(-0.23554967608 -0.0749573882007 0.459685337269)
(-0.158421325016 -0.051919120371 0.465940549108)
(-0.0894354418666 -0.0149573882949 0.55044476811)
(-0.0199378519824 0.0131158185772 0.605376055969)
(-0.0871482400397 -0.51073567939 -1.24873406917)
(-0.492042587867 -0.421091063145 -1.0495444069)
(-0.506229951748 -0.464231195168 -0.780594724339)
(-0.459161603251 -0.465965089416 -0.538660549507)
(-0.472486031429 -0.423877370459 -0.300641666969)
(-0.521289178464 -0.3501523128 -0.0908189020381)
(-0.389072189833 -0.379301804266 0.308450861039)
(-0.169692692082 -0.253065564846 0.16725799504)
(-0.13301988628 -0.175344659737 0.111390012302)
(-0.135945434655 -0.171596104571 0.0535505975742)
(-0.174567788239 -0.145189328847 0.0376485268763)
(-0.213336930478 -0.105304940801 0.038708415632)
(-0.27906123324 -0.061062097599 0.0349446567576)
(-0.367078735161 -0.0350266010341 0.132736287895)
(-0.359982928507 -0.0252130562565 0.301766961148)
(-0.274569976029 -0.0156110258748 0.397919543637)
(-0.198933238751 0.00702569380898 0.445466009366)
(-0.136176365614 0.0229460244382 0.535369370405)
(-0.0901712731863 0.0793712086546 0.550730327184)
(-0.0211175485916 0.0998582771721 0.598511984483)
(-0.144050693163 -0.598844278546 -1.08556128267)
(-0.538500755251 -0.612071212629 -0.90086871662)
(-0.619125956418 -0.498488997085 -0.605869794434)
(-0.523900546487 -0.482205147371 -0.343658203266)
(-0.458382937443 -0.415602179074 -0.104671741566)
(-0.496618101866 -0.289664855345 0.0921825548442)
(-0.306806502396 -0.096776664624 0.682305404538)
(-0.0274784780253 -0.134606205003 0.229939034585)
(-0.0753345095681 -0.125222913546 0.101714829564)
(-0.105548300329 -0.14755060766 0.0300932855195)
(-0.154597293801 -0.1449521646 0.0225454440756)
(-0.194487052453 -0.116287012654 0.0379032504868)
(-0.250705256778 -0.0800784748498 0.0309329430241)
(-0.32641556307 -0.032335605129 0.126297538422)
(-0.32596303497 0.021768393502 0.341822838042)
(-0.238800161539 0.0658255150133 0.37767285142)
(-0.195006944029 0.105760039172 0.409121154938)
(-0.12022217129 0.124005744127 0.557523034501)
(-0.0634638230901 0.180670694738 0.516196092262)
(-0.0206897181127 0.191083220863 0.580795604587)
(-0.232073152573 -0.65559534559 -0.803473871947)
(-0.552724896231 -0.709562973533 -0.672085026388)
(-0.633299427777 -0.545758460529 -0.380715523279)
(-0.532728098017 -0.439018398593 -0.115219807858)
(-0.381919849545 -0.324859654708 0.117854423637)
(-0.17857978352 -0.165880035839 0.261429494466)
(-0.120489622024 0.0522095618011 -0.0157290001667)
(-0.131227692394 -0.0742510710999 0.0616510923577)
(-0.131828598241 -0.0975222300606 0.0240580241077)
(-0.153710300536 -0.104824350797 0.0376876668866)
(-0.152127529523 -0.124209667709 0.0486285684147)
(-0.14930622382 -0.113277124212 0.0586393095361)
(-0.19728818158 -0.105227248877 0.054231386659)
(-0.265635091756 -0.0273497466402 0.122553822441)
(-0.260758351307 0.0758598670777 0.322438302833)
(-0.191218036925 0.150797937604 0.331472220208)
(-0.167610479059 0.214022481898 0.356752977458)
(-0.111651732052 0.277436794386 0.468230190159)
(-0.0718212464164 0.28377315411 0.444923233209)
(-0.0247111045029 0.293084004611 0.524054949619)
(-0.466460101645 -0.931596281153 -0.392146102304)
(-0.538476867599 -0.769403530432 -0.36915032396)
(-0.579946850768 -0.539180000044 -0.130947240598)
(-0.462845524049 -0.339041184252 0.0290392376191)
(-0.286925927927 -0.19501937869 0.175447291561)
(-0.110292522762 -0.102684989894 0.112104596229)
(-0.0816453471551 -0.163264791306 -0.102297866275)
(-0.106716734343 -0.195771004908 -0.0563493583507)
(-0.0949139090781 -0.207603940511 -0.125155439757)
(-0.132568545548 -0.184510363178 -0.0948029962283)
(-0.164624371393 -0.161805644852 -0.0168647498029)
(-0.165988094374 -0.13739246747 0.0500994351332)
(-0.164675954969 -0.106998749783 0.10472350547)
(-0.176427941061 -0.0156214016534 0.1457353585)
(-0.157136114305 0.118881241039 0.222037324542)
(-0.119425322462 0.210291860594 0.257407065764)
(-0.111422991921 0.286211830208 0.265841187625)
(-0.108014779824 0.348868171477 0.295819597499)
(-0.102590215251 0.358478668595 0.338539914608)
(-0.0322086619191 0.3821756744 0.430494353881)
(-0.175689077412 -0.882067317474 0.405127239526)
(-0.215822726974 -0.74134959872 -0.0662480591092)
(-0.348198017742 -0.569892494971 -0.0940156799692)
(-0.327674858744 -0.403331410032 -0.0780820806104)
(-0.253864028954 -0.271254325458 -0.0432019137866)
(-0.175665466167 -0.235275228978 -0.0413674000561)
(-0.144856996939 -0.300213150227 -0.0174336253606)
(-0.127551273953 -0.314349468697 0.0195534504187)
(-0.105479601143 -0.318278741628 0.0211653014507)
(-0.102110739132 -0.295929323124 0.0496882290871)
(-0.0923481855112 -0.23458549661 0.0925293422371)
(-0.0726857504341 -0.162322975443 0.121914344832)
(-0.0544916020915 -0.0773256478738 0.145090738788)
(-0.0485124765922 0.0224943680925 0.175213826955)
(-0.0377949598686 0.14666826545 0.170941350405)
(-0.0371918137946 0.234139814269 0.160420321273)
(-0.0606626610526 0.302680308339 0.142387492435)
(-0.083796332519 0.353417187668 0.151099991449)
(-0.088824744959 0.396693236421 0.196253117564)
(-0.0326379214539 0.439831959611 0.282128327989)
(0.0245670365312 -0.492644046687 0.331773611764)
(-0.113474432834 -0.555730003002 0.0825222975641)
(-0.245815035632 -0.525255564079 0.105793031513)
(-0.239961201171 -0.475565998617 0.125276470856)
(-0.199328709731 -0.411746684961 0.115746659133)
(-0.158532646844 -0.378651945825 0.110753870686)
(-0.129743423128 -0.367188951728 0.126081606664)
(-0.0965981459962 -0.343396982256 0.153894076118)
(-0.059089481338 -0.313376979734 0.166687438406)
(-0.0291506273443 -0.265669695403 0.168241237282)
(1.8000278804e-05 -0.200376726577 0.172257886368)
(0.03306807365 -0.127043413295 0.168403282486)
(0.0602895852065 -0.0450688940762 0.150282649423)
(0.0752336960607 0.0459806746837 0.123796237923)
(0.0744198526027 0.144285854912 0.0902101171026)
(0.0467486851309 0.218846703113 0.0493399482069)
(0.003333746265 0.283035848842 0.0183513018768)
(-0.0318939150919 0.34121242992 0.0220157740087)
(-0.0413809796953 0.398152150574 0.0445031486442)
(-0.0173352567631 0.432242723644 0.0863322226366)
(0.00768199043535 -0.301486065476 0.185821499277)
(-0.142734298599 -0.414104354516 0.13787159698)
(-0.244296319611 -0.415003009607 0.231973384479)
(-0.215977811201 -0.403533175615 0.275382850023)
(-0.161969392325 -0.391655211501 0.277860965518)
(-0.118915724696 -0.372750226458 0.260421186488)
(-0.0810661394836 -0.350503607305 0.264008701898)
(-0.0387695597233 -0.319931235532 0.272300199572)
(0.00589985921216 -0.280249471855 0.269399040825)
(0.0491434592081 -0.230471691019 0.257976406688)
(0.0929976636648 -0.16960958284 0.236930759752)
(0.136217225545 -0.102290832825 0.203302741324)
(0.170527504996 -0.0314014569461 0.153477824712)
(0.182950310749 0.0454681369201 0.0891059166139)
(0.169116529197 0.117930562794 0.0262041493671)
(0.132876010007 0.177359206912 -0.0271310221116)
(0.0839317251044 0.2310270326 -0.0855751469739)
(0.0490098977393 0.286038945418 -0.10535256273)
(0.021182927882 0.328360444517 -0.137251434337)
(-0.0056989031896 0.310779937173 -0.121116878287)
(-0.0275758643912 -0.271809829032 0.105703462966)
(-0.169125815556 -0.356538493354 0.124566783518)
(-0.25775098084 -0.355996071601 0.244946758446)
(-0.227452892499 -0.361679770499 0.315960683623)
(-0.160235835385 -0.363778712386 0.338236032137)
(-0.0920782933186 -0.351260568002 0.351587433489)
(-0.0365186119299 -0.319176809948 0.35881169376)
(0.0178895539337 -0.281589422964 0.365698482349)
(0.0725726842561 -0.237194847691 0.35381383476)
(0.125278940931 -0.186301376367 0.328228504904)
(0.176947078286 -0.131273254096 0.287024909514)
(0.224059415369 -0.0753930881804 0.229466190733)
(0.258329454358 -0.0212135023388 0.155578936743)
(0.266969139551 0.037116976681 0.0716095444959)
(0.246923016076 0.0946494114125 -0.00130490481146)
(0.201833396594 0.147389250472 -0.0713134049405)
(0.147058106163 0.202488417173 -0.100488700551)
(0.111121347818 0.245415355606 -0.123408552201)
(0.0515023869771 0.260948420334 -0.166693899556)
(-0.0111936420591 0.203973845194 -0.101491197027)
(-0.0487287450008 -0.146120434634 0.344589226145)
(-0.18012437435 -0.228989054814 0.344952972322)
(-0.272898794449 -0.261760148469 0.443543565233)
(-0.238085815533 -0.318434784983 0.535605238008)
(-0.141351031593 -0.360811472459 0.53197086706)
(-0.0434735851659 -0.352845212685 0.501696128722)
(0.0297546419436 -0.302998654415 0.462972333833)
(0.0841867466239 -0.245317484294 0.446603100284)
(0.138084738714 -0.193256564034 0.41712996241)
(0.190764256456 -0.142849304523 0.373573690521)
(0.240903310966 -0.0945103415422 0.31445238718)
(0.283630826878 -0.0492605037584 0.241279137028)
(0.317508389691 -0.000728488899431 0.156758249618)
(0.327393879445 0.0431668702971 0.0675032317581)
(0.304076370167 0.0924045751102 -0.0219452971383)
(0.263056390646 0.158576757441 -0.0809110624358)
(0.206166396304 0.213413638724 -0.153465820369)
(0.155430325613 0.21110166802 -0.199544464225)
(0.0713246767583 0.174721100475 -0.277977323645)
(-0.00352759987898 0.0989590664597 -0.209609585616)
(-0.0791798688638 0.09891506872 0.206340587744)
(-0.239107990481 0.0128869900706 0.266476586293)
(-0.348816234143 -0.0648727854345 0.439535017567)
(-0.319531882097 -0.162529466833 0.64443092975)
(-0.172510576779 -0.270318929492 0.763353314376)
(0.000247342368503 -0.303078047679 0.715065563924)
(0.107718660843 -0.256387744764 0.606355997121)
(0.158629568757 -0.202605317936 0.519038088959)
(0.19695941181 -0.146970011524 0.466052210031)
(0.239067455057 -0.103008680207 0.403533177278)
(0.280880759665 -0.0645666219501 0.329330541799)
(0.322961626788 -0.0253744806768 0.247605689624)
(0.349592637631 0.0232128751094 0.159879010633)
(0.351582214631 0.0491922633382 0.0526603274406)
(0.351425788397 0.104245987591 -0.0177232116082)
(0.317003211529 0.181782194573 -0.148536385077)
(0.209107769731 0.196996807652 -0.247384632582)
(0.111731347573 0.116804339447 -0.229786400649)
(0.00147764320538 -0.00621066668972 -0.271854711913)
(-0.0336442058391 -0.111515970228 -0.156342171063)
(-0.114833108848 0.174871569355 -0.0913046857659)
(-0.308389541072 0.109700949623 0.0299722013835)
(-0.431678774845 0.0400838671574 0.277867313768)
(-0.417716790199 -0.0557884973114 0.568179376505)
(-0.248155344794 -0.164413359644 0.828859138437)
(0.00388872931511 -0.22301120949 0.869180153006)
(0.157003370913 -0.207647759792 0.684297622569)
(0.210220264734 -0.160973677007 0.573534584029)
(0.241561455808 -0.115437622909 0.489237171258)
(0.26419566917 -0.085389689143 0.414098544032)
(0.297229268096 -0.0595772866085 0.328117910564)
(0.339294803754 -0.00908104118074 0.242570552613)
(0.348455315583 0.0111540527443 0.123120131513)
(0.357077215523 0.0176164980496 0.060347834227)
(0.386832012579 0.0704577604477 -0.0698321430965)
(0.317380003484 0.117932941674 -0.2770906467)
(0.131089411811 0.0970154623137 -0.334566097043)
(-0.0349356757808 -0.0399661240496 -0.220381825428)
(-0.134287410213 -0.19028446169 -0.126128102996)
(-0.0863171644785 -0.264576920691 0.0774905089282)
(-0.156220523101 0.101834853381 -0.216495709338)
(-0.358882345598 0.065688969756 -0.094978922551)
(-0.501970897219 0.0354243156355 0.167308830277)
(-0.513566073297 -0.00988582956118 0.546825893327)
(-0.327478646356 -0.0556631425783 0.920214064645)
(-0.0365255231321 -0.0862769991154 1.02275656489)
(0.171177165685 -0.0939100880567 0.748941725689)
(0.246442198118 -0.0670673933367 0.605824462714)
(0.259897234668 -0.0520021815478 0.511276364159)
(0.270748309722 -0.0441876001169 0.433567852425)
(0.319898648984 -0.0389340345452 0.341244721769)
(0.337965627303 -0.00682539534749 0.240492815518)
(0.292216528872 -0.0120459735129 0.145277569199)
(0.307078615582 -0.0194146417959 0.139052879909)
(0.356133408374 -0.00135347018255 -0.061288064167)
(0.267710428428 0.00897177894032 -0.290228531106)
(0.0313498147378 -0.00386326681397 -0.277811561685)
(-0.188253961192 -0.0684560435369 -0.0496899737734)
(-0.234615377618 -0.123962058236 0.157718937431)
(-0.116143087433 -0.146942109671 0.417769732742)
(-0.0341544900237 -0.00582457909557 -1.00076132078)
(-0.115308284735 -0.0210147010683 -0.923657660062)
(-0.150993996259 -0.0223678782367 -0.942904539738)
(-0.224650631573 -0.019286467667 -0.898102921882)
(-0.286546918177 -0.0337012282802 -0.839564601172)
(-0.338429753776 -0.0365049572548 -0.753760335375)
(-0.353833893718 -0.0400584412707 -0.692452141706)
(-0.387598109439 -0.0663587009102 -0.578401147306)
(-0.412257048441 -0.0629879680042 -0.500386201718)
(-0.404589956378 -0.0943676442185 -0.479407939019)
(-0.475536106453 -0.105193124373 -0.419285238707)
(-0.503597429953 -0.0615207942536 -0.238312787909)
(-0.435988195279 -0.0406629496856 -0.0932726037901)
(-0.376500849919 -0.0419580972581 -0.0133891793221)
(-0.325082761439 -0.0427761838906 0.0606265765294)
(-0.27651636602 -0.0397453902315 0.109522284811)
(-0.276947434294 -0.032692544525 0.128045391781)
(-0.286155826203 -0.00965009958029 0.28130725305)
(-0.227905789181 0.0108588134668 0.468224515246)
(-0.0693511870405 0.0293540564823 0.593656637245)
(-0.0501203402514 -0.0466780594822 -0.962893095174)
(-0.136610202072 -0.0488731537355 -0.864716421742)
(-0.173678712289 -0.0627912548048 -0.891218432167)
(-0.258509475754 -0.0856380185205 -0.833825311062)
(-0.30934414235 -0.116044964819 -0.754115389017)
(-0.341742445936 -0.134403371008 -0.685460119142)
(-0.372135806739 -0.150914773325 -0.633868289513)
(-0.399720360389 -0.17725886104 -0.569488519604)
(-0.418157901335 -0.179203267222 -0.486700153665)
(-0.426875540952 -0.200329677963 -0.367216448251)
(-0.446814247021 -0.198727433458 -0.305153446193)
(-0.449646208211 -0.132122286324 -0.183417469834)
(-0.424508584625 -0.093324352485 -0.0825809810937)
(-0.391447977556 -0.0833599046676 0.00898345568797)
(-0.343273351968 -0.0794785221145 0.0805384275274)
(-0.294181190026 -0.0794547596078 0.126573721894)
(-0.270480375409 -0.0748367582626 0.16148414743)
(-0.253072759085 -0.0309579016709 0.263112496116)
(-0.190651339053 0.0318708832865 0.406588380247)
(-0.0624156398257 0.0833711932772 0.496954656002)
(-0.0447979359978 -0.0592341406502 -1.00837044815)
(-0.15366386665 -0.0462508389629 -0.935515509373)
(-0.204984689136 -0.0884156499363 -0.955967761262)
(-0.309199305628 -0.115390240166 -0.859521154586)
(-0.355359300314 -0.146699954352 -0.746205136556)
(-0.376649519941 -0.176108679906 -0.647634042758)
(-0.38271161782 -0.217912750616 -0.567929931532)
(-0.384608944029 -0.246214865757 -0.495575783093)
(-0.382853765573 -0.25489367268 -0.405046304014)
(-0.380531006756 -0.242098609455 -0.304622070705)
(-0.404700139342 -0.198134579709 -0.23506968523)
(-0.417303680319 -0.159597231332 -0.137892729363)
(-0.405785454951 -0.135935567749 -0.0524525577897)
(-0.383304672771 -0.121446796417 0.0395969475914)
(-0.340188517494 -0.115435626459 0.115171974135)
(-0.289083855254 -0.114653407939 0.166171091641)
(-0.240176598555 -0.105403537811 0.211518544158)
(-0.19065612631 -0.0583960405164 0.268927476479)
(-0.134582548894 0.0154702533259 0.329374304517)
(-0.0438521286775 0.066329826086 0.383282811021)
(-0.0274430092396 -0.0968343918721 -1.00154639393)
(-0.180926975593 -0.109204988698 -0.928560804249)
(-0.241043690245 -0.178304861183 -0.917907472458)
(-0.336061970569 -0.198175868232 -0.801823862434)
(-0.391389773524 -0.213719300089 -0.675906343591)
(-0.409125609689 -0.237074657985 -0.560006748544)
(-0.404858788517 -0.276999736453 -0.455473781342)
(-0.382972104749 -0.305749622205 -0.359732933759)
(-0.353275319654 -0.305479997432 -0.270848559794)
(-0.325277455514 -0.268053272159 -0.197708629985)
(-0.355604510587 -0.207424761453 -0.179689370654)
(-0.388589097985 -0.183285986387 -0.0945591967434)
(-0.38771869349 -0.166973251279 -0.00340552626234)
(-0.369418163045 -0.151710212717 0.090879043398)
(-0.329363874731 -0.144310855585 0.172364827317)
(-0.273463338024 -0.14100065002 0.230283590235)
(-0.202106435943 -0.123687541906 0.272146233772)
(-0.125650307285 -0.082541105848 0.284310284047)
(-0.0727168908333 -0.0320264501597 0.282284553246)
(-0.019700288067 0.0129379813077 0.294118248985)
(-0.0428614949452 -0.129812074604 -1.04702855605)
(-0.230380366391 -0.158392634079 -0.900162202155)
(-0.285801727084 -0.231649335155 -0.867511970858)
(-0.357595409115 -0.257889784798 -0.729217804954)
(-0.412499006309 -0.260318238667 -0.598718112719)
(-0.435542787923 -0.281691490455 -0.470186880684)
(-0.423953650852 -0.316709342042 -0.343354714575)
(-0.381841781253 -0.33112255445 -0.235783918599)
(-0.315266812292 -0.317672555622 -0.141871465003)
(-0.265556087338 -0.261022406212 -0.122327823042)
(-0.315291027637 -0.214529310629 -0.156445819233)
(-0.3694669376 -0.196988196666 -0.0460768876457)
(-0.372431617105 -0.180174172331 0.0551388856182)
(-0.354509599187 -0.163218818876 0.149461311296)
(-0.316013113119 -0.15820171206 0.239571447108)
(-0.25376621174 -0.152296867819 0.306684447104)
(-0.167286526133 -0.13264620249 0.342336449578)
(-0.083528133702 -0.107684477596 0.329679595826)
(-0.0245853634029 -0.087061445561 0.319428439827)
(0.00854736504077 -0.0688193797799 0.33472957986)
(-0.0508448204467 -0.228909353322 -1.08846230062)
(-0.268177485224 -0.226362268164 -0.895735110969)
(-0.326182733791 -0.281576109795 -0.822659578742)
(-0.37516041247 -0.302631470616 -0.662868665157)
(-0.430871047795 -0.302404207379 -0.528163460085)
(-0.460334691266 -0.318550323223 -0.37803924495)
(-0.434645237105 -0.342086959318 -0.226694389539)
(-0.372031472843 -0.339398939948 -0.12537959833)
(-0.274657760781 -0.320971761768 -0.0325703679904)
(-0.222011627569 -0.250264809571 -0.0850443633793)
(-0.288100339679 -0.217081386863 -0.0983105330691)
(-0.348260655339 -0.181843879792 0.019945662587)
(-0.348920193068 -0.15328894494 0.119016074401)
(-0.335285669372 -0.132945744184 0.205117868305)
(-0.300162047876 -0.134691888261 0.299429498494)
(-0.234928286652 -0.128555746482 0.370910669353)
(-0.148103119441 -0.114646431909 0.397636499888)
(-0.06837760329 -0.104737327462 0.388217362526)
(-0.0211832565175 -0.102163033872 0.389263763416)
(0.00171662135604 -0.108578167317 0.395248113277)
(-0.0520694867796 -0.347595361343 -1.08268246484)
(-0.291630287869 -0.305584664633 -0.894709598826)
(-0.372688752813 -0.335105120577 -0.784447063858)
(-0.407801380458 -0.351669685039 -0.616076612911)
(-0.459791038479 -0.351135920382 -0.464854606908)
(-0.483689326834 -0.355082588028 -0.28963130391)
(-0.43924509781 -0.359753684882 -0.118203460703)
(-0.368532650612 -0.314995951172 -0.0150154612822)
(-0.237884469154 -0.247660970369 0.129808768243)
(-0.16949499026 -0.213754969663 -0.0439650586217)
(-0.253241675809 -0.195597845583 -0.0501142048445)
(-0.309254793379 -0.13401397035 0.0491473970098)
(-0.315818594635 -0.0859832265396 0.140107029651)
(-0.320242212287 -0.0685200642021 0.211258116403)
(-0.291865906024 -0.0787257897194 0.320728029072)
(-0.223008868606 -0.0769654490789 0.394385682356)
(-0.142846700018 -0.0719784099624 0.423162730952)
(-0.0739096190243 -0.0669593413251 0.429702084802)
(-0.0371451600401 -0.0655938661349 0.452452366897)
(-0.00911747036755 -0.0613456832512 0.478856860658)
(-0.0508437378764 -0.452960164227 -1.01809956907)
(-0.308071607573 -0.391865426891 -0.870015480716)
(-0.434798262212 -0.404488069229 -0.730691690952)
(-0.455960680661 -0.408476868715 -0.546396872116)
(-0.491103837736 -0.391970718199 -0.36632135517)
(-0.495980043839 -0.369885300379 -0.171859508935)
(-0.408542640133 -0.356915019133 0.0179409665009)
(-0.288486950638 -0.281394898102 0.0426903303766)
(-0.198579591172 -0.195444712528 0.0607017570303)
(-0.176057714112 -0.189611673578 0.0188002987157)
(-0.218323684636 -0.169691705029 0.0081627814867)
(-0.249126042849 -0.107296263391 0.0424165572633)
(-0.27340138937 -0.0565853953843 0.0824602821111)
(-0.306905105395 -0.0327370721849 0.164798040722)
(-0.289571694296 -0.0305959646587 0.299008242913)
(-0.217894671404 -0.027698848392 0.3787379254)
(-0.14445111372 -0.0203211569962 0.420944527372)
(-0.0831143310678 -0.00742852540328 0.445630150883)
(-0.0478766887485 0.00195294947336 0.477791806526)
(-0.0134743090001 0.0159808885015 0.507232781906)
(-0.0535248410494 -0.567096878166 -0.874171061687)
(-0.321203801132 -0.520212516077 -0.828430475888)
(-0.483324405556 -0.47330569845 -0.596956579846)
(-0.477094015233 -0.455616028248 -0.427963328797)
(-0.483054061259 -0.418143350347 -0.246447112342)
(-0.470587952126 -0.363610537265 -0.07373573566)
(-0.352440270327 -0.329064779353 0.134545327901)
(-0.215051257261 -0.246396732382 0.0966607837113)
(-0.166842307141 -0.186885949037 0.0732355411053)
(-0.155251507167 -0.16888726255 0.0461153791053)
(-0.171138078262 -0.135493923697 0.0380481689213)
(-0.195939596871 -0.0961567642397 0.0519310507691)
(-0.231959979767 -0.0609014769609 0.0716733728796)
(-0.276334729469 -0.0296760683501 0.150431538627)
(-0.269948553388 -0.00639382950601 0.276402051402)
(-0.204557486362 0.0120707782634 0.360605515677)
(-0.134952435411 0.0346776403078 0.408603642742)
(-0.0838671805631 0.049011211742 0.427077644919)
(-0.0522668397888 0.0733729593903 0.475292859213)
(-0.0147354022056 0.0906844289255 0.511209162754)
(-0.0970178700955 -0.668021259679 -0.700381719)
(-0.318733385364 -0.620808597798 -0.694410558051)
(-0.464266550608 -0.528556716853 -0.478920069382)
(-0.479752256461 -0.479881531418 -0.286282276903)
(-0.451935986362 -0.417383705795 -0.102055508166)
(-0.414288445146 -0.320218417233 0.0515582488169)
(-0.273949138864 -0.204908586742 0.282131433517)
(-0.135242026022 -0.174046863588 0.131475830405)
(-0.122857433044 -0.148147304933 0.0730282888829)
(-0.124601445567 -0.136808046977 0.0407334904921)
(-0.146521091698 -0.120833890732 0.0291995617985)
(-0.171950810382 -0.0959416246935 0.0520785109213)
(-0.201154448203 -0.0637582025071 0.0720673445993)
(-0.243999535592 -0.0261055330464 0.143957758296)
(-0.238839071471 0.0173333400108 0.264242217096)
(-0.180115212816 0.057674859058 0.338915451335)
(-0.127259952923 0.0938607136241 0.382487751682)
(-0.0782518035139 0.117582065268 0.435192670393)
(-0.0437926102199 0.147051901629 0.449820839734)
(-0.0139573745502 0.165288443925 0.492483056628)
(-0.105446831153 -0.744846627374 -0.485300418596)
(-0.293778544423 -0.632709832541 -0.483551343157)
(-0.418372880429 -0.551640131979 -0.323134175017)
(-0.435885898633 -0.464466376628 -0.136576436171)
(-0.370457901315 -0.368274926867 0.0269980658058)
(-0.254145914803 -0.252673564562 0.109673722661)
(-0.173010204602 -0.138695915942 0.0392940447964)
(-0.138011382476 -0.140846267539 0.0439481768401)
(-0.128441490115 -0.131568207161 0.028733630173)
(-0.130472302367 -0.122529074804 0.0498230841294)
(-0.13676294126 -0.115545885627 0.0699738035071)
(-0.142000779362 -0.0941247241281 0.0818360770702)
(-0.162901728014 -0.0672715384976 0.0863702645366)
(-0.198163525849 -0.0198407024723 0.141213797881)
(-0.192945274597 0.0452072724296 0.240869907858)
(-0.144919407626 0.10502199117 0.297036821285)
(-0.105545398617 0.155905837347 0.330415069305)
(-0.0685035066543 0.200217067206 0.374459741501)
(-0.0421269262117 0.219992075512 0.390221308289)
(-0.0131744810348 0.238559977232 0.442441367911)
(-0.0663006848046 -0.789241759066 -0.246516970383)
(-0.240676584819 -0.628259671514 -0.295556993926)
(-0.34665464805 -0.530313784867 -0.173186392117)
(-0.347668012695 -0.412225512436 -0.0434818849815)
(-0.278075520038 -0.303295394612 0.064208321135)
(-0.173471121763 -0.222490724579 0.067478954993)
(-0.122566661522 -0.206156528486 -0.00951151356626)
(-0.114194951007 -0.200451565599 -0.00820806666041)
(-0.107866571572 -0.188527354977 -0.0196785590528)
(-0.117422137949 -0.168381041417 -0.0175611696039)
(-0.126109273552 -0.142475834269 0.0253182540484)
(-0.127417564039 -0.109414109435 0.0677538454409)
(-0.13023209994 -0.0725365632267 0.108352886511)
(-0.142097632433 -0.0125982108262 0.142485288209)
(-0.132339912371 0.0688099831061 0.204764864931)
(-0.0950237920228 0.141309311024 0.234224214322)
(-0.0707237716191 0.201755589191 0.242620224258)
(-0.0590666929695 0.248334200943 0.255887879708)
(-0.0462042712304 0.272880341689 0.29914452517)
(-0.0143224756938 0.296718633053 0.361321230018)
(0.0539824756542 -0.607454190389 0.036588072484)
(-0.0828976389752 -0.570070529203 -0.0868571527695)
(-0.203407859985 -0.500389089167 -0.0677134700464)
(-0.230792968836 -0.411128474383 -0.0372667318152)
(-0.206348826189 -0.323632348588 0.00260856858604)
(-0.159076609726 -0.274626387677 0.0161190286027)
(-0.128883766588 -0.277486758711 0.0203066210948)
(-0.111662716565 -0.270432340108 0.0421125094754)
(-0.0964995218486 -0.255410263082 0.052967554843)
(-0.0897965511916 -0.224990109917 0.069818116191)
(-0.0818815812946 -0.179736778538 0.0940952805882)
(-0.0716577726139 -0.126429837218 0.114329272036)
(-0.0635805447809 -0.0675689929529 0.129217480097)
(-0.0628855135767 0.000683985540613 0.138651989431)
(-0.054555540032 0.0857826285624 0.158463117586)
(-0.0375941439441 0.158064213967 0.156924116814)
(-0.0351740321885 0.215827573109 0.146006877226)
(-0.0406064398564 0.259840225937 0.153372146984)
(-0.0363471597501 0.297119411398 0.1884952861)
(-0.0131417093959 0.327516468533 0.246051645875)
(0.0388986248757 -0.390996383381 0.149692278381)
(-0.0562810161407 -0.452137345097 0.0581228390807)
(-0.143238418678 -0.447767009126 0.0750331277542)
(-0.16036398155 -0.419024953521 0.0947880962432)
(-0.150039724704 -0.376287839448 0.104180283008)
(-0.126790629971 -0.343468488694 0.110848970556)
(-0.102804917017 -0.324301977288 0.121793541865)
(-0.0789222240976 -0.299233223196 0.137930366437)
(-0.0550151392843 -0.267667933083 0.14696380788)
(-0.0348042240855 -0.225130342607 0.150349201436)
(-0.0162166109452 -0.172756851603 0.152302234052)
(0.0021037734815 -0.11502164339 0.148171302458)
(0.0161571455497 -0.053342843797 0.136063094104)
(0.0231528525646 0.0134141977572 0.119250783763)
(0.0254513388249 0.085838693234 0.0996287788137)
(0.0213845862187 0.148696834889 0.0731528940184)
(0.00589788929433 0.201154701 0.048078414586)
(-0.00995229376177 0.245125786009 0.0470199506969)
(-0.0150052573333 0.286073238418 0.0657952635797)
(-0.00701219037715 0.312123536642 0.10102786837)
(0.00538686943568 -0.285029506977 0.173004070372)
(-0.0740480902028 -0.360287737829 0.142641470713)
(-0.137008199537 -0.380244737191 0.183751078309)
(-0.137179698694 -0.37842112023 0.22064484554)
(-0.114496290409 -0.366469958999 0.228024134299)
(-0.0867798488249 -0.346001654413 0.227402700449)
(-0.0587247735975 -0.321696691298 0.231149406382)
(-0.0295221188431 -0.291456168464 0.235916361997)
(0.000113358411603 -0.253961330248 0.233785035317)
(0.0286965719326 -0.208958492827 0.223639237188)
(0.0560051688218 -0.157237606483 0.205112692721)
(0.0804427133686 -0.101448660508 0.177284030696)
(0.0986118753965 -0.0445145674516 0.14000414029)
(0.105008754556 0.0133869008538 0.0942183395985)
(0.097841740819 0.0695851650356 0.0506421127045)
(0.0797374873053 0.119748045523 0.00751827233858)
(0.0526461955557 0.162727090298 -0.0306586850903)
(0.030281293836 0.199033482207 -0.0459764912104)
(0.0108074544547 0.229858394001 -0.0535250181084)
(-0.00317166262864 0.237439116691 -0.0301174372033)
(-0.0216199504041 -0.223458863944 0.175490933732)
(-0.0996566757842 -0.288134786857 0.186815956449)
(-0.148581862805 -0.318159100488 0.248868918526)
(-0.138490670608 -0.334165028913 0.29525415037)
(-0.101777432403 -0.337607720443 0.321300383432)
(-0.0578201215153 -0.325504073421 0.325443306265)
(-0.0179027689944 -0.298677244761 0.325938911754)
(0.0196321857569 -0.264063294362 0.323353758115)
(0.056116565175 -0.223538100108 0.309800959581)
(0.0907198898038 -0.178412550179 0.284826892252)
(0.122811511621 -0.1305384623 0.248184313247)
(0.149832103785 -0.0821181625395 0.200028211732)
(0.167162908767 -0.0352677717396 0.142023198382)
(0.169449276062 0.0105417918929 0.0787865143238)
(0.155051463404 0.0548746187059 0.0208746685432)
(0.126038817663 0.0954143058929 -0.0319157866569)
(0.089552232975 0.129709782285 -0.0668248680061)
(0.0608583814649 0.150892850486 -0.0859340119837)
(0.0243670990243 0.157951646762 -0.103961512544)
(-0.00530417440174 0.145397303818 -0.0640072764183)
(-0.0384126537424 -0.123453936099 0.26027723191)
(-0.123440076391 -0.180619006658 0.284399878456)
(-0.173702210626 -0.227206806091 0.356813683575)
(-0.156293498158 -0.273131289337 0.425607650785)
(-0.0975674329509 -0.302218883213 0.451742283267)
(-0.0296143148245 -0.299153770196 0.447390825128)
(0.026197313747 -0.268564062193 0.423092477965)
(0.0692372315284 -0.227495352845 0.39999148439)
(0.107425998688 -0.184628195793 0.369724005054)
(0.142712177077 -0.141894611883 0.329063799811)
(0.174274548215 -0.10006323703 0.276914206376)
(0.199209321358 -0.0600488191072 0.214927218759)
(0.214337282299 -0.0212137816691 0.146831591014)
(0.213669038359 0.0142142164451 0.071049321224)
(0.194396358608 0.0505157944761 0.00218836247664)
(0.16045442152 0.088023010425 -0.0553192866443)
(0.114541904681 0.110762670111 -0.103452287052)
(0.0756336159982 0.105081582838 -0.126021109168)
(0.0279960712447 0.0823518018017 -0.151420722274)
(-0.00638886233254 0.0605908524185 -0.109768332048)
(-0.0566736291871 0.0120724344682 0.200694246476)
(-0.166352323012 -0.0346393847059 0.252688246412)
(-0.227848243201 -0.0939089674035 0.370644056602)
(-0.208678421895 -0.160315141653 0.501094841609)
(-0.121829800069 -0.218844746604 0.585759408195)
(-0.0136820659504 -0.237578285009 0.581694761591)
(0.066648568108 -0.214158084863 0.528321813452)
(0.115135438687 -0.177498648142 0.470280326596)
(0.149940737052 -0.138555430478 0.41866960244)
(0.180743188975 -0.102856116832 0.362513409157)
(0.208183335906 -0.0696592573247 0.298353076134)
(0.230775130096 -0.0371486676347 0.227541541943)
(0.240807295702 -0.00558511550378 0.143355356882)
(0.236101550433 0.019499263272 0.0651431612443)
(0.220198803533 0.0525557255909 -0.007151048162)
(0.178325619904 0.084062957957 -0.089767085193)
(0.109071634979 0.0869095049001 -0.14349178667)
(0.0495771531944 0.0465256643035 -0.1363356882)
(-0.00319071892794 -0.00839018513601 -0.137916498829)
(-0.0141718496036 -0.0357102709898 -0.0771936207197)
(-0.0748881351075 0.0655262343025 0.0512164631117)
(-0.210365540144 0.0373174080977 0.135830932825)
(-0.287029859715 -0.00805730941824 0.297733150807)
(-0.273193718973 -0.0690527834533 0.48721210054)
(-0.168325586682 -0.127208842359 0.645957765191)
(-0.0191817457779 -0.157801695912 0.681304181291)
(0.0908188493601 -0.149763629183 0.604218347256)
(0.14635236016 -0.121748953644 0.530931007241)
(0.179648720346 -0.0942553435332 0.455432164666)
(0.204877866903 -0.0696238124054 0.387778645002)
(0.228591095564 -0.0454798093087 0.317954618916)
(0.247064941257 -0.0230672613544 0.238633978699)
(0.249283893154 -0.00635501465515 0.138997434451)
(0.243973865755 0.00416713929697 0.068448284652)
(0.229640787507 0.0286147563829 -0.0264696953817)
(0.169876452412 0.0461018143228 -0.136592837846)
(0.0665124816108 0.0341011822614 -0.175168117642)
(-0.016409626972 -0.0195809496286 -0.116351875792)
(-0.0613983877634 -0.0784304700075 -0.0534157451736)
(-0.0367426836609 -0.102775129219 0.0587590807296)
(-0.0919425566267 0.0335701429739 -0.044119144252)
(-0.240770800251 0.0217436927728 0.0591750500985)
(-0.333096061151 0.00708727556896 0.248535443566)
(-0.330615386342 -0.0183107503174 0.483414193919)
(-0.212055938826 -0.0440099339741 0.69157962186)
(-0.0351926558999 -0.0567837618923 0.758063587272)
(0.101815968441 -0.0572160026801 0.69165507527)
(0.169678782535 -0.0468879625001 0.586641383656)
(0.201703786681 -0.0377642406935 0.496206350809)
(0.228123792415 -0.0291178129903 0.426788423413)
(0.248978356626 -0.0195636331857 0.358752662132)
(0.257607047556 -0.0113325982848 0.243211416689)
(0.248422658931 -0.00878669944852 0.157441351264)
(0.243455950567 -0.00858986893793 0.102400301329)
(0.227214749741 -0.00254041774623 -0.00686173544697)
(0.151832449628 -0.00106632335178 -0.126155173685)
(0.0297521510552 -0.0101383336757 -0.142855579946)
(-0.0623737656632 -0.0256863247871 -0.0334096585856)
(-0.102618670852 -0.0483507715875 0.0920913139015)
(-0.0540790987036 -0.0563069732063 0.22486752298)
(-0.0385652191599 -0.0190137408255 -0.924767915129)
(-0.104574358341 -0.0241770691212 -0.870875404219)
(-0.146393762229 -0.0261740935156 -0.872562307611)
(-0.203881157593 -0.0233139244294 -0.823536398398)
(-0.254755687684 -0.0306164464538 -0.775267884013)
(-0.285511506167 -0.0340667564584 -0.699715393825)
(-0.312396002474 -0.0422416408516 -0.636319958222)
(-0.35193914246 -0.0471282174063 -0.582909110272)
(-0.363771302745 -0.0495074443714 -0.485861222891)
(-0.363301695472 -0.0625977610471 -0.422167394258)
(-0.392955151331 -0.0652550653346 -0.350354314962)
(-0.402260364941 -0.0470559933762 -0.197884411801)
(-0.365850022868 -0.0341202494206 -0.0802801175945)
(-0.324313053305 -0.0334313405278 0.00899851493203)
(-0.283345723826 -0.035176548864 0.084840246463)
(-0.248286152298 -0.0314017924373 0.139747771158)
(-0.230294922599 -0.0237780076869 0.185028910571)
(-0.21226338679 -0.00893329353366 0.281301292723)
(-0.161143633671 -0.000559867106631 0.39831125346)
(-0.0523310913871 -0.00184337654677 0.478437528826)
(-0.0443555271242 -0.0439996317598 -0.893950992125)
(-0.112890705977 -0.0459042551411 -0.845538500389)
(-0.156608154168 -0.0621106655928 -0.83681362525)
(-0.223676415255 -0.0697576101855 -0.775517840572)
(-0.272049979804 -0.0885803207881 -0.718870356298)
(-0.303529784029 -0.100157218495 -0.656031591325)
(-0.33190178542 -0.118882981459 -0.601821316691)
(-0.359635993298 -0.129212919932 -0.525950527697)
(-0.374940466301 -0.130222426155 -0.433826208122)
(-0.372891675996 -0.139303776132 -0.344208760839)
(-0.371232762196 -0.132668301505 -0.260345136444)
(-0.361835383529 -0.0995428059445 -0.162258017704)
(-0.341113515711 -0.0785990056493 -0.0731178758629)
(-0.315011509812 -0.0735686614422 0.00972724324216)
(-0.277777737574 -0.0738544609164 0.0787974746434)
(-0.240105506937 -0.0710317794786 0.131075161778)
(-0.212364253265 -0.0595647465705 0.178210961706)
(-0.183215944727 -0.0283080450334 0.25545663005)
(-0.129933133912 0.00501032856843 0.355195264264)
(-0.0319537553268 0.0171929539319 0.424454729149)
(-0.0424496982239 -0.0345046013908 -0.918251067125)
(-0.126954729986 -0.0588370370633 -0.862972800312)
(-0.191174090005 -0.0958979276441 -0.852187724629)
(-0.264395896774 -0.118364008144 -0.772020916264)
(-0.311900354874 -0.142079386801 -0.688985525452)
(-0.334328317867 -0.159252342138 -0.607806392367)
(-0.347375795898 -0.179764010946 -0.536342875413)
(-0.356175773505 -0.192396439704 -0.457816258077)
(-0.358957099816 -0.190456080912 -0.367453136129)
(-0.351259646295 -0.174797740599 -0.280417650113)
(-0.347881139631 -0.147118863228 -0.207189762796)
(-0.342677942745 -0.122921389239 -0.123173712545)
(-0.328408478679 -0.110687054909 -0.0442461220167)
(-0.305452995618 -0.103186728442 0.0361267722973)
(-0.268511268503 -0.100798415824 0.103836121494)
(-0.225419293894 -0.0989390576877 0.156562899117)
(-0.183733034527 -0.0866698931295 0.200967924881)
(-0.140528532364 -0.0532323610057 0.249229577603)
(-0.0921689708551 -0.0132523642243 0.3080411653)
(-0.020004996038 0.00938136368534 0.360377121256)
(-0.0483825385742 -0.103587212826 -0.894061705676)
(-0.155735522291 -0.11931863969 -0.852339227048)
(-0.220978071163 -0.161959123523 -0.809891269461)
(-0.295093533134 -0.189378929298 -0.730059645353)
(-0.343026018472 -0.20495830526 -0.628120731282)
(-0.361299326412 -0.218928618528 -0.534634815247)
(-0.364025705575 -0.236149134998 -0.448329880899)
(-0.355986913258 -0.24510314653 -0.362511337344)
(-0.339641964185 -0.235760120864 -0.274896717056)
(-0.319294120042 -0.204891167998 -0.202120902907)
(-0.320737576117 -0.165503271134 -0.156790051351)
(-0.326295175497 -0.144329762326 -0.0806032649075)
(-0.317192176823 -0.13177504475 -0.00206436161198)
(-0.295565101725 -0.123927707242 0.077341999382)
(-0.258452729555 -0.119951248286 0.149834046896)
(-0.207751710024 -0.115831213925 0.204308411405)
(-0.151121685186 -0.101135375348 0.243190531339)
(-0.0988892891243 -0.0737954989835 0.264875106569)
(-0.0575570774193 -0.0450803641281 0.289717924488)
(-0.00948535518525 -0.0227033786413 0.321592885099)
(-0.0350537675655 -0.169445090953 -0.90446993252)
(-0.168227483268 -0.167981225726 -0.843492417385)
(-0.253763712872 -0.213937650408 -0.768202152268)
(-0.320340238929 -0.242402794093 -0.670026536347)
(-0.365560174747 -0.252233638851 -0.55889248337)
(-0.382366574353 -0.262924405714 -0.453745639479)
(-0.375210179611 -0.275906324045 -0.353774635653)
(-0.351130256185 -0.27538624833 -0.260911826379)
(-0.313224997048 -0.256027108057 -0.177477588197)
(-0.280543800914 -0.214912679089 -0.135025916125)
(-0.291118749132 -0.175637574767 -0.119032490144)
(-0.310415195666 -0.154641361695 -0.0371105472008)
(-0.305577004916 -0.137465987332 0.0454807057552)
(-0.28549930083 -0.125490133246 0.126750574412)
(-0.246137038358 -0.121199227042 0.203566463366)
(-0.189292381956 -0.114666975495 0.263606883224)
(-0.123678776739 -0.101614207778 0.295486397561)
(-0.0685226029553 -0.0849208568205 0.302350897436)
(-0.0309230657239 -0.0726804779551 0.312960583949)
(-0.00189721889335 -0.0599249370316 0.317112129226)
(-0.0342585037967 -0.218464620056 -0.891187121771)
(-0.191746112332 -0.221894219595 -0.837005144073)
(-0.282523379951 -0.255682339916 -0.73041733107)
(-0.339553984041 -0.279487746875 -0.611954552729)
(-0.382463320866 -0.287262373234 -0.492837366467)
(-0.398097330734 -0.294183209273 -0.373200430817)
(-0.379591515464 -0.298515459855 -0.258458707925)
(-0.338818226789 -0.285579575797 -0.16762624234)
(-0.281325221599 -0.257370899375 -0.0917057287309)
(-0.242908172843 -0.215302425843 -0.0826442320539)
(-0.261897119276 -0.177177807912 -0.0727641692837)
(-0.287978894937 -0.145675894934 0.00977602966352)
(-0.283650226688 -0.119090766332 0.0901562213622)
(-0.269157999328 -0.100584031471 0.166499599305)
(-0.234192890833 -0.0961144648574 0.247074690029)
(-0.176397566625 -0.0894442953065 0.308513920747)
(-0.109613954831 -0.08029378181 0.33772524)
(-0.0571696797626 -0.0741723932807 0.345514682285)
(-0.0243383664073 -0.0739830956405 0.360221872216)
(-0.00342701391864 -0.0728889360048 0.366135385521)
(-0.0358799918837 -0.305112341182 -0.86996600488)
(-0.208079306674 -0.282724282099 -0.824213213341)
(-0.307406438772 -0.300284874861 -0.697452880131)
(-0.362348280117 -0.3160287453 -0.563286677062)
(-0.401089931433 -0.319167951121 -0.431229987375)
(-0.408146594082 -0.318200421059 -0.294694341809)
(-0.372553468978 -0.308054031002 -0.168622351581)
(-0.318248889733 -0.271113097096 -0.0795707128789)
(-0.249090384866 -0.220102247773 -0.00055142594632)
(-0.205755637156 -0.183640628862 -0.0370201587501)
(-0.223990810548 -0.158132781937 -0.0313372756176)
(-0.253676414203 -0.116725207309 0.039398475482)
(-0.255633706868 -0.0811658945476 0.107965685352)
(-0.252080085606 -0.0615975531681 0.176536830196)
(-0.224743497033 -0.0568307997186 0.262288928103)
(-0.169612065438 -0.0498185643378 0.325178881643)
(-0.108093761918 -0.0436318108648 0.357073622181)
(-0.0616898302534 -0.0418612311986 0.374722630656)
(-0.033542790164 -0.0438234140719 0.402455677888)
(-0.0114933754307 -0.0429596589261 0.41714643978)
(-0.0319152069713 -0.405248477561 -0.797949175415)
(-0.21506805919 -0.353380714161 -0.782823211903)
(-0.332194693727 -0.354077130726 -0.643779992714)
(-0.382142099396 -0.357258586498 -0.497795010478)
(-0.41146435792 -0.346988818268 -0.350843868601)
(-0.404354139051 -0.328124436833 -0.202466533407)
(-0.342013063438 -0.30266632824 -0.0712231582087)
(-0.2649211709 -0.248948230568 -0.0236892987048)
(-0.203803907853 -0.192361236097 0.00183487638276)
(-0.181948581114 -0.162482548026 -0.0123743288048)
(-0.198661822373 -0.14056716463 0.00371052229493)
(-0.214501273198 -0.0969763748414 0.0440739645249)
(-0.225429189943 -0.0605996203833 0.0898331391353)
(-0.235873618057 -0.0362089199653 0.158587971438)
(-0.216587612279 -0.025175702211 0.251101219616)
(-0.166192474498 -0.0140082378499 0.315823364236)
(-0.110976525602 -0.00395465035582 0.356467504169)
(-0.0697247557128 0.00329319570422 0.385471895763)
(-0.0431886804169 0.00696466229673 0.424165244706)
(-0.0182110007567 0.016579249777 0.447240477159)
(-0.0294511399377 -0.479619368468 -0.698182171297)
(-0.211377649389 -0.428671077365 -0.701399888778)
(-0.336545799195 -0.407364143178 -0.54585643829)
(-0.380263523875 -0.392965984504 -0.400115853908)
(-0.395419142598 -0.364517313412 -0.256343534944)
(-0.374832733543 -0.324474887765 -0.116619386756)
(-0.295936217423 -0.281247976333 0.0126213819926)
(-0.213435140947 -0.22290430385 0.0263878128665)
(-0.172270818051 -0.176948368121 0.0301117504931)
(-0.156810741951 -0.151605597904 0.0278678157968)
(-0.161482460825 -0.12173520989 0.0358272431777)
(-0.174859539446 -0.0867769191499 0.0569766808398)
(-0.19235972258 -0.0550136566493 0.089289450793)
(-0.211361315735 -0.0259194636195 0.151315221114)
(-0.200443207744 -0.00482971403113 0.23792202946)
(-0.155430547244 0.0165609632599 0.302809868606)
(-0.106047327273 0.0364190148456 0.345236744541)
(-0.0702307460146 0.0496049357205 0.375705138211)
(-0.0447570610019 0.0631834744776 0.418090695187)
(-0.0177024562458 0.0770090865012 0.441994447934)
(-0.025545201514 -0.536412280208 -0.56625769824)
(-0.19598668447 -0.485918422759 -0.537643784817)
(-0.31584547603 -0.445202844117 -0.427093094147)
(-0.356136610627 -0.410487691266 -0.285530127139)
(-0.357461968612 -0.362117772672 -0.144202097882)
(-0.322953918129 -0.296787882398 -0.0258552863973)
(-0.235349204509 -0.222733520278 0.0865271614507)
(-0.160211266849 -0.180895580425 0.0559403893314)
(-0.136800725744 -0.150815526236 0.0415154708008)
(-0.129070005304 -0.12966550412 0.0351348784306)
(-0.136363754306 -0.107739870877 0.0386029989183)
(-0.148094265323 -0.0813221868077 0.0628438710574)
(-0.163177658947 -0.050786196386 0.0920856854143)
(-0.183776929771 -0.0170993638624 0.14651498396)
(-0.175510226119 0.0157714923569 0.225926474632)
(-0.135942717402 0.0491119794158 0.283654520038)
(-0.0967703236527 0.0790906733223 0.321691510423)
(-0.0641374693675 0.100680611841 0.362185241914)
(-0.0395023096574 0.11975404944 0.393790998661)
(-0.0150791198022 0.133179018144 0.420912011938)
(-0.0197043199549 -0.562002865682 -0.403743648407)
(-0.168259824264 -0.506963660747 -0.365026019468)
(-0.269362322703 -0.456753169889 -0.29246321309)
(-0.304818873044 -0.400786892943 -0.169191260831)
(-0.290143927527 -0.334890437883 -0.0516696842007)
(-0.231529420528 -0.256386492372 0.0205431472428)
(-0.171321184403 -0.188832232201 0.0233284191195)
(-0.137822711961 -0.160550638897 0.0260647716973)
(-0.123272926867 -0.139181210005 0.0291686851127)
(-0.117386803681 -0.120972451532 0.0408551337727)
(-0.118263780449 -0.102310324183 0.0586476226709)
(-0.121236740895 -0.0767438964184 0.0804855965176)
(-0.12933454539 -0.0477478571262 0.100470583824)
(-0.146511808631 -0.0108092715662 0.144179201384)
(-0.141437058562 0.0361916478441 0.206189375643)
(-0.107934451184 0.0808249383694 0.251005272668)
(-0.0778439295422 0.121582181406 0.279685335613)
(-0.0532912024033 0.153878870537 0.313077313856)
(-0.0342511872399 0.173103784939 0.343458837198)
(-0.012325002659 0.186307229531 0.376527083459)
(0.00642594585389 -0.549933459282 -0.219744453106)
(-0.122982383833 -0.4968711577 -0.229690521209)
(-0.209064627415 -0.438596158369 -0.166317273044)
(-0.234220844384 -0.370893038514 -0.08035609932)
(-0.21623388425 -0.301039587208 -0.00236704033888)
(-0.167467049255 -0.238392879044 0.0301268113324)
(-0.128524160549 -0.208176825079 0.0102531894001)
(-0.110543301268 -0.186831025474 0.0148351318241)
(-0.101594639489 -0.166476541348 0.0188460859095)
(-0.0994664329587 -0.143334289363 0.0324186543829)
(-0.0996939674606 -0.11649643082 0.057597076634)
(-0.0991916029062 -0.0840232929375 0.0846402638989)
(-0.10045170313 -0.0483811515137 0.109603200625)
(-0.105073825945 -0.00531903139321 0.1367574338)
(-0.0966700109898 0.0520417549157 0.178032743271)
(-0.0717893898406 0.104806902633 0.203364946293)
(-0.0518223761678 0.151517718644 0.216014815177)
(-0.0403464230946 0.188531926691 0.233701879258)
(-0.0294447961458 0.211732659363 0.269479551804)
(-0.0106021357941 0.226375038806 0.308128423768)
(0.0212917307548 -0.4612948952 0.0164808040722)
(-0.057734787919 -0.446117085421 -0.0647607222818)
(-0.131889056135 -0.405555825305 -0.0551117494725)
(-0.160172945415 -0.354845941992 -0.0247772447657)
(-0.156764071295 -0.300879938475 0.0106449895962)
(-0.133054535672 -0.260492133818 0.0312199244303)
(-0.110456692905 -0.241955377734 0.0399026372145)
(-0.0945846324548 -0.225023053674 0.0565104284925)
(-0.081800638261 -0.203213103901 0.0692222461708)
(-0.0728641960847 -0.173918809976 0.0835393905167)
(-0.0647068479026 -0.136642962152 0.0992658960428)
(-0.0573094158095 -0.0937984605824 0.112247536789)
(-0.0522930464434 -0.0469790988389 0.122156460199)
(-0.050806135122 0.00413569290575 0.129610644488)
(-0.0440319324758 0.0626211027464 0.143206797454)
(-0.0304524976615 0.11646636409 0.1462931886)
(-0.0234068878828 0.162637357156 0.143626879331)
(-0.0230082243466 0.200107694006 0.152013129601)
(-0.0198680102524 0.228301035471 0.181191442701)
(-0.00848221284449 0.243679767241 0.21731666531)
(0.0111407548073 -0.354108680431 0.108880835114)
(-0.0446510772645 -0.3701206317 0.0528927439362)
(-0.0971956087052 -0.362756661316 0.0594291587849)
(-0.114871637073 -0.34270569972 0.076352821551)
(-0.113419199061 -0.31433847357 0.0924720150626)
(-0.0995503971882 -0.287967617932 0.105992036336)
(-0.0811754927831 -0.266909527984 0.117869015012)
(-0.0626077172181 -0.243143115637 0.130074783791)
(-0.0448136345036 -0.213861060318 0.137793954092)
(-0.0289112376808 -0.177554394786 0.140958779621)
(-0.0150252348422 -0.135142913402 0.140857224926)
(-0.00312156683612 -0.0887483534202 0.136275734345)
(0.00508351619923 -0.0394637268559 0.126691389322)
(0.00869174352825 0.0109402399904 0.114190586449)
(0.0111574064599 0.0639635187802 0.101114043161)
(0.0120975467316 0.112159475249 0.0843448422907)
(0.00704797715725 0.154135851707 0.0690035879226)
(-0.00120940597876 0.188669506023 0.0680492444112)
(-0.00591636905301 0.217220156073 0.0861952528958)
(-0.00455927599185 0.23019031412 0.114020196212)
(-0.00521527851348 -0.275259509396 0.158223525074)
(-0.0540882035568 -0.301408268288 0.134454250945)
(-0.0930330375144 -0.312481985134 0.153842270611)
(-0.0983917089727 -0.312337802631 0.178331608889)
(-0.0868313437399 -0.3026538474 0.193340460338)
(-0.0674311498354 -0.285757449068 0.201458033509)
(-0.0450753923967 -0.264482128929 0.207403060806)
(-0.0221159079355 -0.238363000033 0.210873134204)
(0.000344194480507 -0.20632413596 0.208470943278)
(0.0212961870693 -0.168618773596 0.199213747083)
(0.0400254654678 -0.126324853367 0.182620878163)
(0.0557878483436 -0.0809583152198 0.159175789456)
(0.0649127310158 -0.034985684341 0.129966433992)
(0.0665927977094 0.010771353691 0.0962128493759)
(0.0624836056418 0.0548733568714 0.0635056591137)
(0.0526653144643 0.0945941116409 0.032235639664)
(0.0372094817154 0.128654599344 0.00637635172564)
(0.0222286708613 0.155488578755 -0.00305976053919)
(0.00898335942772 0.176279028611 0.000852246547842)
(-0.00117053515168 0.180705063404 0.0238978533404)
(-0.018513592327 -0.209288380017 0.191772774868)
(-0.070421161141 -0.235301123373 0.191083161799)
(-0.103233952486 -0.256358949998 0.22488936851)
(-0.100480200052 -0.271039317805 0.258759747085)
(-0.0769313245998 -0.27474316419 0.28184210615)
(-0.0451785230087 -0.265295132458 0.29048448854)
(-0.013504749519 -0.244839144601 0.291490155927)
(0.0160897193052 -0.217220922708 0.286679609006)
(0.0437845695142 -0.184244380979 0.273223930615)
(0.0691297921211 -0.147355337014 0.250334973166)
(0.0910492781504 -0.108053381368 0.218465179838)
(0.107738124036 -0.0679221243136 0.178319152496)
(0.116409533465 -0.0291030193536 0.132115053052)
(0.11506137196 0.0091719190187 0.0831366403381)
(0.103985312242 0.0447680563809 0.0372194882766)
(0.0847927927126 0.0760845781527 -0.00339167541829)
(0.0604932806009 0.100381474367 -0.0325425154803)
(0.0390304057639 0.114915832728 -0.045912461806)
(0.0162097467075 0.121319632956 -0.0493279051676)
(-0.00110366776534 0.116142297919 -0.0202222432234)
(-0.0285922300456 -0.128432160502 0.234851899389)
(-0.0896662288062 -0.152432977702 0.246579919208)
(-0.123977836965 -0.183663953734 0.293991873638)
(-0.116667238383 -0.214606260093 0.345964108859)
(-0.0787993843426 -0.233939006051 0.378382889932)
(-0.0300659294617 -0.233409099369 0.38523215771)
(0.0143764594193 -0.214554216123 0.3735255069)
(0.0508710736236 -0.186040933592 0.353789886677)
(0.0820166010874 -0.153361943829 0.326390254981)
(0.10897042124 -0.119399758832 0.290293432294)
(0.131288379376 -0.0853443376935 0.245351073827)
(0.147166324791 -0.0519466389274 0.192989406817)
(0.1542221387 -0.0199125094499 0.135785142)
(0.149909015755 0.0100174550202 0.0758339712775)
(0.133797624319 0.0381699840266 0.0203257994204)
(0.107242089087 0.0623538413458 -0.0273316554162)
(0.0738727878789 0.0752640294641 -0.0622093705793)
(0.0452759377978 0.0732445945089 -0.0753068276553)
(0.0174327955584 0.0633469168311 -0.0790841259376)
(-0.00228396769383 0.0527779192455 -0.0438117324589)
(-0.0391596862395 -0.0408377307415 0.208556626663)
(-0.116709208807 -0.0592752444184 0.240284666079)
(-0.158770005782 -0.0947843571995 0.31529884359)
(-0.149318112162 -0.135140067994 0.402785598369)
(-0.0961130707659 -0.168214721776 0.465504814603)
(-0.0246882889719 -0.179010889845 0.477563090373)
(0.0368926541582 -0.166937932618 0.452242253457)
(0.0808913103937 -0.143484818401 0.414058836031)
(0.113516554265 -0.115082371653 0.371126425781)
(0.139637197103 -0.0875362655727 0.322868490405)
(0.160595539453 -0.0608565615976 0.267830880508)
(0.174778012441 -0.0348135235932 0.206846993521)
(0.179177399599 -0.0100412202479 0.139508882121)
(0.172375013716 0.0116219985117 0.0741874511979)
(0.153774247816 0.033562015254 0.0115702961956)
(0.119002997738 0.0501231436208 -0.0474794292773)
(0.0717152635788 0.0502618986088 -0.0818378893114)
(0.0331579944527 0.0325078694287 -0.079481457749)
(0.00490357090316 0.00819896370487 -0.0686419312206)
(-0.00608407588449 -0.00616638037576 -0.0215840100748)
(-0.0492079900146 0.00677248042698 0.140544322179)
(-0.142352842511 -0.00636072122286 0.190222292246)
(-0.194681584333 -0.0317219457349 0.293398926462)
(-0.186685474233 -0.0666722455928 0.416353647848)
(-0.121466070864 -0.097618392297 0.516597139506)
(-0.0286162111708 -0.11278455032 0.547900483892)
(0.0500544757692 -0.109730187775 0.513767627727)
(0.102787923169 -0.0930460386439 0.463142083627)
(0.13751033343 -0.0743659111086 0.407321806056)
(0.161757910632 -0.0562349001394 0.349804829168)
(0.181138811987 -0.038485861278 0.288261203971)
(0.193222260888 -0.0213435023716 0.220032522494)
(0.19388587824 -0.00681860864759 0.146882132065)
(0.185492334853 0.0047380136032 0.0795217319043)
(0.164127905706 0.0186816385826 0.00533668676151)
(0.117036577288 0.0265963062969 -0.062979420033)
(0.0532765660333 0.0199545691689 -0.0875932363472)
(0.00496882409144 -0.000914237274751 -0.0600023836509)
(-0.0216645844399 -0.0277898587404 -0.0160672502817)
(-0.0150659247214 -0.0404602215848 0.0561543544838)
(-0.0577642547559 0.00688085328429 0.0986019107883)
(-0.158670955818 2.67326708516e-05 0.161439239657)
(-0.2171216094 -0.00899044550789 0.280283788216)
(-0.212143854108 -0.0222174401206 0.430265240673)
(-0.138457098904 -0.0346460092627 0.555069751912)
(-0.0323404434204 -0.041144333876 0.598844262092)
(0.0603099549148 -0.040971886922 0.565549430129)
(0.119162852401 -0.0344332568893 0.501613854812)
(0.152590849312 -0.0289285373146 0.438065263207)
(0.176739775748 -0.0226604628728 0.375453771165)
(0.193960043213 -0.0163833637311 0.308565993395)
(0.20168624254 -0.0107322612649 0.236873288222)
(0.197951027386 -0.00663940256316 0.167347785037)
(0.189291300216 -0.00367267498876 0.104389790395)
(0.165906640972 -0.000561879216352 0.0239634310661)
(0.108608651732 -0.000777028144759 -0.0427249410242)
(0.0369101768063 -0.00657848966669 -0.0518235829227)
(-0.0150213278407 -0.0134596358467 -0.00478936231899)
(-0.0413598407299 -0.0227894396795 0.0686775688531)
(-0.0209138003122 -0.0207111388753 0.14375207766)
(-0.0308627598493 -0.0173457733546 -0.862640824315)
(-0.0894853946234 -0.0201793029981 -0.824091194696)
(-0.132419756926 -0.0233957819256 -0.808619610183)
(-0.176123894475 -0.0203115396 -0.759621244608)
(-0.220945732413 -0.0260824388774 -0.707910434534)
(-0.247868467594 -0.0282987894655 -0.640627367237)
(-0.271843300857 -0.0316246123199 -0.5848976808)
(-0.297855938248 -0.0343644363683 -0.517351149657)
(-0.310319067878 -0.0368699741612 -0.431314587512)
(-0.314037405981 -0.0408533691325 -0.360761742835)
(-0.325803075939 -0.0403512970778 -0.282796773389)
(-0.326833616399 -0.0324119753021 -0.172022348435)
(-0.3072595318 -0.0266769211483 -0.0722045797564)
(-0.278992406114 -0.0240851748315 0.0103210300933)
(-0.248424900511 -0.0231136877887 0.0810202106795)
(-0.218266975143 -0.0207389388305 0.141750822581)
(-0.192611617355 -0.0154703023431 0.198893604866)
(-0.164780023237 -0.00614756730522 0.271136784835)
(-0.119477440929 -0.00183832234844 0.350281263702)
(-0.0436962078718 -0.0118120606573 0.409250472662)
(-0.0349371890503 -0.0375269498243 -0.837138649029)
(-0.0961910609498 -0.0444567147217 -0.798890163719)
(-0.137011554282 -0.0526933174366 -0.77490795898)
(-0.185018779441 -0.0598647087788 -0.723490707189)
(-0.230316366205 -0.0714485271848 -0.666534653974)
(-0.254716945269 -0.0788516866649 -0.603154034423)
(-0.27717912241 -0.0893770971362 -0.543055855719)
(-0.298151408365 -0.0954471763305 -0.472904529422)
(-0.308710702375 -0.0968382781443 -0.3896258699)
(-0.307615441479 -0.0980983687946 -0.306962196458)
(-0.304581519889 -0.0912494127777 -0.228595095022)
(-0.296648541271 -0.0740675477682 -0.143102118516)
(-0.280532856371 -0.0622456140403 -0.0647935983758)
(-0.25879839836 -0.0569422604097 0.0105736212614)
(-0.231190104069 -0.0556665541472 0.0770505641597)
(-0.202029495622 -0.0523420323495 0.132002356247)
(-0.17471693851 -0.0427532938022 0.183233030197)
(-0.143724966599 -0.0240378832916 0.244782280427)
(-0.097353622274 -0.00505128191596 0.314246643545)
(-0.0290897106136 -0.003934996483 0.373257783576)
(-0.0383467320412 -0.0508082636857 -0.85128120834)
(-0.103705696858 -0.066521755854 -0.807498619363)
(-0.159212157744 -0.0845215638355 -0.761402785663)
(-0.213150611023 -0.107068838225 -0.699233918164)
(-0.252855957374 -0.121582065584 -0.625814877059)
(-0.273713477669 -0.13200515737 -0.554441692003)
(-0.287509722777 -0.141932700617 -0.486543442727)
(-0.296965020787 -0.146916225393 -0.414126215194)
(-0.299095688361 -0.143202559306 -0.334708325015)
(-0.292064427532 -0.13148205685 -0.256262682283)
(-0.284806346639 -0.113028424935 -0.187143318251)
(-0.276685662283 -0.0966758961996 -0.112265510191)
(-0.263455851953 -0.0866604070047 -0.0398017374576)
(-0.244224171817 -0.0814166582958 0.0313779688603)
(-0.216646054167 -0.0786297803869 0.0945559726964)
(-0.183658415616 -0.0757870078143 0.146057904233)
(-0.150272610557 -0.0656187021984 0.190591607388)
(-0.115520483893 -0.0445941353289 0.236297257741)
(-0.0736076387937 -0.0210382703825 0.287701108136)
(-0.0168822602918 -0.0118794516796 0.335110786219)
(-0.0415390317968 -0.0973031967282 -0.860097384445)
(-0.116900896535 -0.110809290196 -0.790990983548)
(-0.179600924727 -0.136385714305 -0.728745753384)
(-0.237156971227 -0.159140194187 -0.656251303432)
(-0.275710035223 -0.172253629655 -0.571493955226)
(-0.29396509052 -0.181440523485 -0.492733176601)
(-0.299712598859 -0.188941760029 -0.41736846028)
(-0.297328556857 -0.189629741274 -0.341432786096)
(-0.28752395205 -0.179201664183 -0.26469905737)
(-0.272671226562 -0.15755075122 -0.197142144564)
(-0.266535378785 -0.131190390992 -0.142641588336)
(-0.263518926311 -0.114143360087 -0.0737708079016)
(-0.253459793945 -0.102797671693 -0.00324585736751)
(-0.233572917217 -0.0959118685377 0.0656682043469)
(-0.203409097156 -0.0915200240583 0.128860326154)
(-0.165782338577 -0.0872361489443 0.180877731728)
(-0.125260129809 -0.0772865874809 0.218692780689)
(-0.0881773255815 -0.0604095530823 0.247962643951)
(-0.0534579900388 -0.0430566203447 0.281637174532)
(-0.0116345767872 -0.0287416265015 0.316014679747)
(-0.040072436462 -0.148000363658 -0.824257642943)
(-0.130390974449 -0.152200142113 -0.764823874732)
(-0.201585486525 -0.178560088355 -0.689435017433)
(-0.256805012168 -0.200637891444 -0.603993096599)
(-0.293736853931 -0.212351507466 -0.512174127197)
(-0.309513035158 -0.219369239798 -0.424882919874)
(-0.307194234806 -0.223216460713 -0.34233935485)
(-0.29305941509 -0.217515195897 -0.263627951438)
(-0.270580581579 -0.199502238578 -0.191501243152)
(-0.248677444391 -0.170150535538 -0.140711120991)
(-0.246621270674 -0.140963310623 -0.102648926382)
(-0.250391196094 -0.121650089455 -0.0345680449357)
(-0.24251031419 -0.105793703796 0.0361569355359)
(-0.224308540784 -0.0944121645011 0.106628195573)
(-0.19323013876 -0.0892640002563 0.171277253403)
(-0.151182063332 -0.0835112966435 0.223346707052)
(-0.10534147391 -0.075389763261 0.256674990487)
(-0.0680379252078 -0.0650423099674 0.276992110805)
(-0.0380153944265 -0.0568687323883 0.300653117376)
(-0.00602665889815 -0.0444728728492 0.322347149526)
(-0.0342494155151 -0.198027216861 -0.794791125893)
(-0.140147232066 -0.193955440512 -0.740317154246)
(-0.217913007334 -0.213608080221 -0.650534289642)
(-0.271284013167 -0.231832800152 -0.554040170813)
(-0.307014669462 -0.241504410814 -0.454343607609)
(-0.319639657467 -0.245292595548 -0.358235129804)
(-0.308721288768 -0.242825835174 -0.266779994131)
(-0.282899826221 -0.228337088797 -0.188485922934)
(-0.247920597787 -0.203412727887 -0.122846432679)
(-0.221671491712 -0.172653106465 -0.0906007941441)
(-0.22416474724 -0.142465400953 -0.0617160123244)
(-0.232604371371 -0.116256997873 0.0035669370546)
(-0.226379509357 -0.0941425479169 0.0705819516657)
(-0.212190116751 -0.0785527395547 0.13676306301)
(-0.183802810093 -0.0710993499369 0.202976669635)
(-0.141769170046 -0.063837474961 0.255681817467)
(-0.0949971072572 -0.0572722748718 0.288899433337)
(-0.0585280745145 -0.0537542129692 0.309085914714)
(-0.0326904165554 -0.0523219693026 0.333314789896)
(-0.00373676645523 -0.044720092539 0.348003877634)
(-0.0306395257696 -0.255923629735 -0.755628023005)
(-0.147532171488 -0.241375482679 -0.706816100674)
(-0.230643450515 -0.250075138268 -0.612236541276)
(-0.283699437904 -0.261588535835 -0.506392875965)
(-0.316735226809 -0.265604940254 -0.397621839988)
(-0.322672528639 -0.263107089709 -0.290873873797)
(-0.300005902035 -0.250365000178 -0.194287656457)
(-0.264004356775 -0.222056614477 -0.119846447523)
(-0.223500513561 -0.185570537375 -0.0608536157886)
(-0.194897587834 -0.154830525352 -0.0428453050282)
(-0.196591520041 -0.129455569856 -0.0255705046741)
(-0.207508983788 -0.098188315846 0.0301248719282)
(-0.206292595429 -0.0712907407125 0.088623700516)
(-0.198913204638 -0.0534486990182 0.149742705601)
(-0.175700028303 -0.0442083830014 0.217042933067)
(-0.136432503898 -0.0354693290881 0.269995320535)
(-0.0934385294866 -0.0290285906445 0.305717234279)
(-0.0595248094434 -0.0279972297757 0.332549413377)
(-0.0328843074098 -0.0274965133879 0.36062739235)
(-0.00491496803092 -0.0213306514909 0.372810117723)
(-0.0284912832364 -0.318190114258 -0.691893181996)
(-0.147337402199 -0.297476467139 -0.656053978478)
(-0.237711511541 -0.291483493721 -0.556998870727)
(-0.289170993594 -0.292320669419 -0.445338933327)
(-0.316701043138 -0.285370418671 -0.32971033788)
(-0.313034615946 -0.271649525701 -0.217838623468)
(-0.275069196625 -0.247080231861 -0.121734356989)
(-0.227999316461 -0.209187960843 -0.0686870549522)
(-0.189196642542 -0.169319375866 -0.03561786805)
(-0.170305754054 -0.140264089159 -0.0256524675894)
(-0.173064348153 -0.116154729202 -0.00039223843678)
(-0.180168787184 -0.0840007484106 0.0415269427291)
(-0.184302998643 -0.055717148759 0.0877872410646)
(-0.184913600863 -0.0342620388447 0.146447835051)
(-0.167538823707 -0.0207252867249 0.214819152166)
(-0.132462715355 -0.00800955945671 0.268059524419)
(-0.0939356404686 0.00185980355199 0.307052102808)
(-0.0615654596393 0.00661357589186 0.340900374064)
(-0.0335014776214 0.00902880937242 0.372422179403)
(-0.00721177017868 0.0130100641596 0.389981267304)
(-0.0289957225159 -0.371501377666 -0.597076158584)
(-0.141998624766 -0.346069522994 -0.570184983168)
(-0.229238306097 -0.330341938876 -0.474700653807)
(-0.278237120698 -0.317434908053 -0.363781863648)
(-0.298778324094 -0.296260241378 -0.250408778785)
(-0.286216337467 -0.269475551625 -0.145259413909)
(-0.238627175525 -0.233156040586 -0.0571813833822)
(-0.190339646247 -0.191395565272 -0.0233865343055)
(-0.160043793327 -0.156011545186 -0.00342943295515)
(-0.145384306468 -0.129802185131 0.0100169403712)
(-0.144820045332 -0.104075756846 0.0288517656292)
(-0.151060355246 -0.0750003635657 0.0562529384363)
(-0.158787650766 -0.0474203199886 0.0927547775931)
(-0.164901241645 -0.0226134366406 0.143059213266)
(-0.153047496844 -0.00187028750126 0.208278704697)
(-0.122510585882 0.0178980641665 0.260226236249)
(-0.0893211436844 0.0346866478381 0.299641838234)
(-0.0612777323042 0.0452078552345 0.332867509253)
(-0.0368686801859 0.0503334516395 0.369416037329)
(-0.0108828403012 0.0536349961649 0.385328556815)
(-0.024524552287 -0.409159459923 -0.474496405899)
(-0.129007265666 -0.375646339995 -0.45614275868)
(-0.21306414182 -0.355413457759 -0.373388567632)
(-0.252072352385 -0.329214067916 -0.269690270468)
(-0.265790249078 -0.295274789494 -0.165115400134)
(-0.245579237953 -0.250654687448 -0.0732130472997)
(-0.193447232746 -0.203546333414 -0.00476754196139)
(-0.151398654573 -0.167093002471 0.00706023012369)
(-0.130536101217 -0.139285439858 0.0160427117257)
(-0.120777204006 -0.116480751447 0.0256554795775)
(-0.121139974412 -0.0938981730485 0.0407704961619)
(-0.125856846953 -0.0680152141486 0.0661773540157)
(-0.133130970863 -0.0401288201254 0.0963277582874)
(-0.140318663062 -0.0113757023745 0.139712589976)
(-0.131319058604 0.0167074433636 0.198228056172)
(-0.105526245584 0.0441339639746 0.243997274928)
(-0.0783873874881 0.0681660835811 0.279583493562)
(-0.0552843007542 0.0850722951788 0.314045687415)
(-0.0346363087807 0.094262331586 0.347353057863)
(-0.00961895079145 0.0997835046276 0.365739777358)
(-0.013449996864 -0.431079773226 -0.330108968112)
(-0.108708012623 -0.399742880416 -0.318778300628)
(-0.185146111037 -0.363370345052 -0.260928265084)
(-0.212605338248 -0.323928418005 -0.175279836339)
(-0.214673145851 -0.280023396018 -0.0903156580342)
(-0.187208288201 -0.226015205734 -0.026977927437)
(-0.149946026155 -0.183615695314 -0.00359963193026)
(-0.124538447903 -0.153669903873 0.010961508463)
(-0.110321722148 -0.130359819073 0.0243531098746)
(-0.102153007694 -0.109405220496 0.0398068824329)
(-0.0997255093462 -0.0877622754466 0.0581541114227)
(-0.100155426311 -0.0620996624844 0.0802168837942)
(-0.10361593153 -0.0337518362633 0.103113462005)
(-0.109816512878 -0.00196477909653 0.134591142262)
(-0.103284824159 0.0337210188963 0.181713454326)
(-0.0821528939952 0.068173385963 0.217187530267)
(-0.0616065510294 0.0990526643248 0.244651042046)
(-0.0448802254162 0.121760846451 0.273873053726)
(-0.0293191558374 0.133648600861 0.305536829522)
(-0.0080717832762 0.138323211903 0.329796510486)
(-0.00458377430593 -0.423638467874 -0.173241167767)
(-0.0782558508788 -0.398415092487 -0.191362589786)
(-0.137893966165 -0.352005720189 -0.150831336019)
(-0.162608539947 -0.30667988666 -0.0927160808306)
(-0.161254744166 -0.260392888868 -0.0347265329625)
(-0.14000622675 -0.216310355798 0.00182761267111)
(-0.114649278922 -0.187195554976 0.0114025171108)
(-0.0970071573143 -0.164212955827 0.0221758131788)
(-0.0872823421117 -0.142564432163 0.0339432542605)
(-0.0814153278865 -0.119702067383 0.0488469232603)
(-0.0780956031442 -0.0940162003637 0.0677846081854)
(-0.0758279536112 -0.0641730102854 0.0881208041208)
(-0.0751650569807 -0.0314410961656 0.108260945786)
(-0.0760151119049 0.0046150263777 0.130436576582)
(-0.0693915208537 0.0463536880898 0.159006650592)
(-0.0538110961277 0.0858690245341 0.18016600619)
(-0.0404466014712 0.120990299061 0.1952925118)
(-0.0319836373103 0.14742878664 0.215249585908)
(-0.022764201073 0.162091583212 0.246174942419)
(-0.00691954108962 0.166983256831 0.27480198468)
(0.00102467200262 -0.37281341012 -0.0220029637167)
(-0.0480799199914 -0.357446379752 -0.0587256639157)
(-0.0948177491971 -0.326141558895 -0.0486177030242)
(-0.116340641032 -0.291049970922 -0.0215959503816)
(-0.118417491244 -0.254737988578 0.00981611194572)
(-0.106340290597 -0.224290950002 0.0331933602149)
(-0.0900648576182 -0.202133187126 0.0475183390773)
(-0.0761538349438 -0.183556758391 0.0625617065321)
(-0.0648958098744 -0.161818964885 0.0757317730741)
(-0.0554251921524 -0.135429960943 0.0882560321502)
(-0.0473824617589 -0.103918849012 0.099821066899)
(-0.0408642265766 -0.0682079442669 0.109138217264)
(-0.0369188197672 -0.0297377227005 0.116480079754)
(-0.0352165023359 0.0107115999543 0.122883672173)
(-0.0304319837093 0.0540444744088 0.13202027358)
(-0.0221297035308 0.094618878672 0.136729388741)
(-0.0171927013976 0.129824695377 0.139462266205)
(-0.0165458640164 0.156979851819 0.150534714022)
(-0.0138401890587 0.173916526745 0.17593464446)
(-0.0049992747247 0.178745028297 0.203888503855)
(-0.000940567944623 -0.30723427078 0.0708535956847)
(-0.0389525383642 -0.306222288489 0.0429746173856)
(-0.0739329977771 -0.293883215376 0.0482037989497)
(-0.087667832064 -0.275820356263 0.0650382710047)
(-0.0874862836169 -0.254116197995 0.0835142015885)
(-0.0776513095614 -0.232981300211 0.0998379906275)
(-0.0629642802093 -0.213525791429 0.112846947633)
(-0.0475730612086 -0.192801273529 0.123662622543)
(-0.0329221497728 -0.167560478539 0.130712584303)
(-0.0194874023602 -0.137293755983 0.133652853787)
(-0.00805625884657 -0.102727959091 0.132664886038)
(0.000930242399271 -0.0649432346527 0.128098263852)
(0.00642957099282 -0.0254728791745 0.119939084643)
(0.00848363754772 0.0147419637975 0.110356003783)
(0.00954963807296 0.0551672616862 0.10096261701)
(0.00974470831432 0.0923908605171 0.0904697379628)
(0.00647152598486 0.124385337113 0.0821524627812)
(0.000379184723363 0.148788588852 0.0848648551468)
(-0.00328783114493 0.16531117496 0.102478572795)
(-0.0020771539277 0.168903445956 0.126903999199)
(-0.00749914986958 -0.246538876583 0.133593412299)
(-0.0427657006496 -0.253747424529 0.120176245531)
(-0.0705684974583 -0.255422673586 0.131595756855)
(-0.0767910087666 -0.251446586911 0.151261925154)
(-0.0692326688037 -0.241830046324 0.168342182929)
(-0.0539563553049 -0.22752472538 0.180516429346)
(-0.0351921100886 -0.209731665265 0.188276230625)
(-0.0158862552775 -0.188108644274 0.191601313511)
(0.00269437321119 -0.161718843228 0.189293679977)
(0.0195613808062 -0.130941107301 0.180959179524)
(0.0338498930796 -0.0966258658627 0.166603811122)
(0.0446926752281 -0.0599907565969 0.146767307404)
(0.0504256186733 -0.0227096340931 0.122284383354)
(0.0506916662267 0.0140716354119 0.097280050629)
(0.0466888266661 0.0490610861441 0.0726537343301)
(0.0391932778481 0.0803710677869 0.0499781646722)
(0.0281060759552 0.106250408427 0.0327997502702)
(0.016331708803 0.124632436731 0.02842927136)
(0.00625863171768 0.136607065929 0.0367803883875)
(-8.14555989825e-08 0.136707577948 0.0594413338428)
(-0.0145208605856 -0.188508962941 0.179054028063)
(-0.052448926444 -0.198256494904 0.177167153413)
(-0.0771630637598 -0.209003723771 0.197553015818)
(-0.0785557074396 -0.216712317419 0.224550834175)
(-0.062970307515 -0.217265096656 0.246183595088)
(-0.0387770815579 -0.208972594098 0.257632001785)
(-0.0125587812518 -0.19303047505 0.260375423758)
(0.0124375748284 -0.171552321356 0.256029741114)
(0.0351950548567 -0.145463236723 0.24398523709)
(0.055369275092 -0.11602959527 0.224066805652)
(0.0719917188854 -0.0842963997437 0.196866857814)
(0.0835763201894 -0.0516170904879 0.163546441196)
(0.0886235714733 -0.0193257526918 0.126099722211)
(0.0862583203139 0.0118109065585 0.0875829029146)
(0.0771981721337 0.0404164748986 0.0513267312046)
(0.0627006553425 0.0647734925434 0.0199761566085)
(0.0448279741187 0.0826113120301 -0.00231457575002)
(0.0280311216764 0.0926536186537 -0.0109323485937)
(0.0126158477814 0.0966199777082 -0.00674575945767)
(0.000610587738476 0.0929567735657 0.0184314241484)
(-0.0211038116802 -0.124266996781 0.214247435201)
(-0.0654221577506 -0.134525312539 0.22106215448)
(-0.0909693591107 -0.152145228604 0.251582248755)
(-0.0893479860055 -0.170421010622 0.291148234065)
(-0.0651510666749 -0.181224083295 0.320616318313)
(-0.029950734462 -0.179838739109 0.332211018272)
(0.00544551949962 -0.166952597094 0.327966077645)
(0.0364748673652 -0.146573824675 0.313275976535)
(0.0630459140968 -0.122212249684 0.290200578075)
(0.085245552834 -0.0957143426544 0.259296905661)
(0.102653091438 -0.0684979302458 0.221360772864)
(0.114039288543 -0.0413277223659 0.177598315683)
(0.117984796169 -0.015011761732 0.130346466979)
(0.113383384204 0.00967901796346 0.0823358643995)
(0.10022582202 0.0318378607507 0.0375682184532)
(0.0797482339956 0.0493486253043 -0.000453620692614)
(0.0551571590597 0.0586012823479 -0.0265857006862)
(0.0329880837002 0.0589630037366 -0.0351389980646)
(0.0143255303484 0.0540850689168 -0.0303946517406)
(-1.44508318214e-05 0.0474709654858 -0.00243401048509)
(-0.0277237378207 -0.0608036231521 0.211533008829)
(-0.0818414768884 -0.0705170160473 0.229475396607)
(-0.111992261753 -0.0898984986194 0.277628775339)
(-0.10827057653 -0.113034938914 0.337423611318)
(-0.0748226021068 -0.131184533802 0.383739718822)
(-0.0266816286583 -0.136554277024 0.400121279679)
(0.019966326377 -0.129060092537 0.389257453535)
(0.0574633742017 -0.112605426101 0.36376010085)
(0.086547716964 -0.0925491762527 0.329727597825)
(0.109442097577 -0.0715140640283 0.289379805597)
(0.126531748206 -0.0504592567587 0.243122168825)
(0.137043399829 -0.0298324264072 0.191826053315)
(0.139537856003 -0.00999280920608 0.137394384039)
(0.133077604909 0.00789535291098 0.083313140709)
(0.116779973854 0.0239291238543 0.0320005530293)
(0.0897155958415 0.0347461352059 -0.0121632800977)
(0.0563847278836 0.0360242025909 -0.0380753880278)
(0.0281960953598 0.0283584622888 -0.0393315420138)
(0.00893568976845 0.0161024374154 -0.0267549964531)
(-0.00237483868916 0.00715630337671 0.00697077181877)
(-0.0335648368233 -0.018532420194 0.18395868553)
(-0.0962105234749 -0.0278343472311 0.214389373684)
(-0.131644627907 -0.0417832840892 0.281443292314)
(-0.128124438458 -0.0608519227848 0.362060334015)
(-0.0869961126092 -0.077362588729 0.427889560074)
(-0.0270342275428 -0.0853012219688 0.453397860141)
(0.0300217100518 -0.0827636962952 0.439407563621)
(0.0737500135698 -0.0721362040968 0.406874561368)
(0.104642949994 -0.0590306331674 0.363176646693)
(0.127166230164 -0.045616985357 0.315677842885)
(0.143198673528 -0.0321907745004 0.263898891919)
(0.152343007258 -0.0191280875961 0.207369115196)
(0.152823527702 -0.00726458319671 0.148397913383)
(0.144642225728 0.00330231590992 0.0910932568822)
(0.125193413495 0.0130500950321 0.0336738067042)
(0.0906643470076 0.0181229605832 -0.0143278901384)
(0.04850008351 0.0153010756701 -0.0351500849635)
(0.014879688662 0.00632322810453 -0.0243748740091)
(-0.00437216778173 -0.00730971404188 0.00416371887743)
(-0.00686498551098 -0.012851510912 0.050897071908)
(-0.0372905196164 -0.00378412561052 0.165040432074)
(-0.10591738729 -0.00837365159879 0.207779600965)
(-0.143380809651 -0.0143245644147 0.286600629612)
(-0.140104663065 -0.0217029210103 0.383071025907)
(-0.0947275180512 -0.0284804469343 0.461063965999)
(-0.0272419719522 -0.0319199976901 0.492387892198)
(0.0370552725566 -0.0311239528856 0.477689320081)
(0.0836577720226 -0.027305474314 0.437626691656)
(0.113995265972 -0.0228324494854 0.390055108072)
(0.135016661642 -0.0184152038608 0.339129477299)
(0.149039898108 -0.0138910342748 0.284484619249)
(0.155742188984 -0.00952777874294 0.226507770062)
(0.154219396485 -0.00546680529207 0.168228842125)
(0.145463192687 -0.00263642412343 0.111592211264)
(0.124750078843 -0.000690576598951 0.0517590438928)
(0.0854285621939 -0.000568123489008 0.00386749623753)
(0.0388288692923 -0.00375149535091 -0.00861973655738)
(0.00280332105774 -0.00776222175652 0.0101052173215)
(-0.0143639775266 -0.0126639973065 0.0516960795769)
(-0.00665791350949 -0.00802514195774 0.0982650534116)
(-0.0260887752248 -0.0126183844265 -0.801751785374)
(-0.0762944887379 -0.0169307386828 -0.778668200249)
(-0.113531559305 -0.018322056966 -0.745605667367)
(-0.150623031205 -0.0204464591566 -0.70491351629)
(-0.187807937533 -0.0222373238777 -0.653392845442)
(-0.211128251897 -0.0232605809538 -0.591506063509)
(-0.230930025773 -0.0244910068209 -0.532000886693)
(-0.24870308974 -0.0260883958849 -0.464915184039)
(-0.259040983697 -0.027216572391 -0.388606163204)
(-0.263365727013 -0.0281264353209 -0.315942985952)
(-0.26774430987 -0.0266504790644 -0.238874834117)
(-0.265653003612 -0.0223322058863 -0.148281061408)
(-0.253133230831 -0.0187794243958 -0.0619781915437)
(-0.234037017647 -0.0169311765277 0.0159669540747)
(-0.210167538306 -0.0157537471274 0.0848503204526)
(-0.18435430748 -0.0136721471194 0.144754858356)
(-0.158873362055 -0.00949098058742 0.199599943494)
(-0.130368149751 -0.00327477383353 0.25703520561)
(-0.0908636008487 0.000780571851958 0.313440677349)
(-0.0379179990487 -0.00472685258852 0.358756974711)
(-0.0285048823738 -0.035883630073 -0.784106667839)
(-0.0776849638212 -0.0418298910697 -0.757493961709)
(-0.118243539534 -0.0449569974039 -0.717364161795)
(-0.15594493483 -0.0522222171923 -0.677391280783)
(-0.188833184887 -0.0589242372675 -0.619387453052)
(-0.209408673639 -0.0635122656816 -0.558489424677)
(-0.227302403011 -0.0683395004223 -0.497628552339)
(-0.242477755992 -0.0716818266298 -0.431083673055)
(-0.250579163239 -0.0720519131779 -0.356875753051)
(-0.251310083665 -0.070554293059 -0.282065559952)
(-0.249182333085 -0.0648702387792 -0.207941457346)
(-0.243374625827 -0.0549005471904 -0.13042307358)
(-0.231795640845 -0.047338633925 -0.0559930439888)
(-0.215245871769 -0.043162456018 0.0138755654952)
(-0.193944902702 -0.0410434966727 0.0763519100627)
(-0.169927926151 -0.0378595764886 0.130286205295)
(-0.144618611037 -0.0308948767501 0.179952138911)
(-0.115375718079 -0.0189063443981 0.231878623842)
(-0.0766223366709 -0.00694846801006 0.284967396913)
(-0.0289658596972 -0.00332860269834 0.333056320143)
(-0.0330707845087 -0.0586521288713 -0.785449813603)
(-0.0837895467305 -0.06675234449 -0.749431671197)
(-0.128818747145 -0.0754750483749 -0.697424449511)
(-0.169902733415 -0.0889505035129 -0.640818014878)
(-0.200281830538 -0.0984640394894 -0.575224425377)
(-0.218122802217 -0.105280127278 -0.510899889395)
(-0.230529813392 -0.110232729766 -0.447443730881)
(-0.238878527018 -0.111708574212 -0.380834991462)
(-0.241039426663 -0.108169460638 -0.309724818024)
(-0.236678977161 -0.0995287597305 -0.239436269809)
(-0.230865001618 -0.0870357452772 -0.172789153699)
(-0.224039845593 -0.0755317401834 -0.103894819505)
(-0.213603320166 -0.0673094004547 -0.0361786157681)
(-0.198444958291 -0.0623380716789 0.0285070568155)
(-0.177802135314 -0.0593595571507 0.0877077135973)
(-0.153242962167 -0.0561798663173 0.137890493545)
(-0.126578263657 -0.0487576393028 0.180750252042)
(-0.0972051520006 -0.0353066364739 0.223090949671)
(-0.0614276797606 -0.0197988897122 0.267102802338)
(-0.0197254304119 -0.0108266659761 0.311749844552)
(-0.0350713173315 -0.095809378553 -0.774757045047)
(-0.0909340004978 -0.0995662720449 -0.727434589994)
(-0.142728245607 -0.112692056616 -0.665508766966)
(-0.185567027428 -0.127619190571 -0.59812379428)
(-0.214745794767 -0.13764656189 -0.525513136463)
(-0.230747426924 -0.143937684171 -0.45654083903)
(-0.237631624529 -0.147106490742 -0.389735784401)
(-0.238009991132 -0.145192738133 -0.322090683438)
(-0.232314924015 -0.136256459909 -0.253676642026)
(-0.22245436019 -0.121031715234 -0.190501982877)
(-0.215936885569 -0.103011797927 -0.13340276591)
(-0.210923680064 -0.0896311769411 -0.0696556871515)
(-0.201726059457 -0.07957248799 -0.00460669081334)
(-0.186324216338 -0.0727098030439 0.0587465492425)
(-0.164311466282 -0.0684176858515 0.115302273854)
(-0.137328829923 -0.0646405227733 0.163483734311)
(-0.108344063349 -0.0581057548399 0.201564621313)
(-0.0795070991211 -0.0473657162186 0.233562446169)
(-0.0491379580485 -0.0340789753047 0.268512288003)
(-0.0141140122548 -0.0232492125821 0.304627725272)
(-0.0360118398801 -0.136807848755 -0.746107784214)
(-0.0979114009105 -0.132551194071 -0.700205092243)
(-0.156078317479 -0.145572998409 -0.627667761639)
(-0.199362104202 -0.159379819837 -0.551051730481)
(-0.227847906263 -0.169159617488 -0.472968919344)
(-0.241496812301 -0.174144197488 -0.39904441045)
(-0.242566136884 -0.174440624746 -0.328452464388)
(-0.234828150437 -0.16777266416 -0.260227659399)
(-0.221044027961 -0.153231538186 -0.195779773505)
(-0.206532664454 -0.132578785808 -0.14231942173)
(-0.201461064407 -0.111105625499 -0.0954136275542)
(-0.199624604895 -0.0951261428201 -0.0345714259588)
(-0.191682093871 -0.0815969797736 0.0284752193492)
(-0.177141929765 -0.071588757765 0.090569262801)
(-0.154415407802 -0.0657166876638 0.147639841153)
(-0.125075675142 -0.0608513106348 0.195256208089)
(-0.0937848159309 -0.0556635971055 0.230056642101)
(-0.065512873406 -0.049740769935 0.255712242817)
(-0.0390414922241 -0.0416599949606 0.284723522798)
(-0.00987289467981 -0.0311236651988 0.313264743368)
(-0.0333591770353 -0.174669883422 -0.706399304626)
(-0.101874866276 -0.165582735164 -0.667602954485)
(-0.16532427592 -0.173634903037 -0.588214457287)
(-0.208642871338 -0.184749569432 -0.50530456315)
(-0.236817526742 -0.192453052986 -0.421430973311)
(-0.247760742078 -0.19495654897 -0.34193781301)
(-0.242638097239 -0.190624447669 -0.26693795621)
(-0.227104564151 -0.177824682381 -0.198959925611)
(-0.205932888184 -0.158125071103 -0.139775092339)
(-0.188181369481 -0.135160870039 -0.0978762297478)
(-0.185220010978 -0.112575782069 -0.059048820101)
(-0.186223171675 -0.0916155021498 -0.00196172631002)
(-0.179692108745 -0.0737350602053 0.0571330348702)
(-0.167606039992 -0.0604694005209 0.116019368553)
(-0.146413668564 -0.052363042522 0.173065943732)
(-0.117003740872 -0.0459540368223 0.220518674526)
(-0.0855315908237 -0.0412528250003 0.255453859403)
(-0.0578955872607 -0.0389421985518 0.280027649235)
(-0.0328342745412 -0.0367590248283 0.307460714559)
(-0.00557808121845 -0.027436890373 0.330028853544)
(-0.0321435555333 -0.214484410656 -0.659361103221)
(-0.105863127872 -0.202273227588 -0.626281731869)
(-0.171268896815 -0.202330186776 -0.545528411308)
(-0.214711631321 -0.207909276492 -0.458650412288)
(-0.241058664604 -0.210884605702 -0.369511257393)
(-0.247397169311 -0.208838626946 -0.284799054982)
(-0.234681675691 -0.197350968437 -0.207507813331)
(-0.212614372527 -0.176481790727 -0.143539373476)
(-0.187773769734 -0.150213894571 -0.0907897239178)
(-0.169369749848 -0.12578655595 -0.0566447216668)
(-0.165948763249 -0.104119637305 -0.026097231895)
(-0.167978916411 -0.0799394339654 0.0227435236017)
(-0.165132178171 -0.0589511427166 0.0751872029133)
(-0.157263927819 -0.0433582530742 0.129991611299)
(-0.139415239905 -0.033236543025 0.186413788376)
(-0.111934984509 -0.0250658162829 0.233545322129)
(-0.0821623350503 -0.020375238579 0.269576752068)
(-0.0566437104032 -0.0182061594054 0.298044622496)
(-0.0316074123983 -0.019832775663 0.326336908894)
(-0.00245311178465 -0.0123189502322 0.340686887212)
(-0.0302867644879 -0.258707860006 -0.593753587688)
(-0.104698486287 -0.243098604327 -0.568108577687)
(-0.172116914718 -0.233785623589 -0.490970139761)
(-0.213597290953 -0.230741926662 -0.401914491266)
(-0.236897899553 -0.22523768148 -0.31004553685)
(-0.236771937458 -0.2154280678 -0.223438719808)
(-0.215187628871 -0.196305531431 -0.149078370723)
(-0.187472114895 -0.169200019775 -0.0967835496853)
(-0.162817929816 -0.140460502008 -0.058680126759)
(-0.148394678435 -0.11611768255 -0.0327415246132)
(-0.146061966221 -0.0940974720689 -0.00287524281046)
(-0.147981238687 -0.0695061656765 0.0374353310651)
(-0.148500184396 -0.0469157243468 0.0819369243963)
(-0.145413667671 -0.0286599618577 0.133040658728)
(-0.131689294968 -0.015071551024 0.188486529642)
(-0.10779295438 -0.00331000498959 0.235304204134)
(-0.0799114345643 0.00451622685216 0.272803494465)
(-0.0567216900353 0.00783834169595 0.304383142826)
(-0.0308014748844 0.00932988029672 0.331678043066)
(1.00922056035e-05 0.0123545153826 0.340128310753)
(-0.0285835161037 -0.29706061215 -0.505745920174)
(-0.0993930649772 -0.279787491793 -0.486391809418)
(-0.163745850432 -0.262121380111 -0.41766148797)
(-0.201714507171 -0.249155289747 -0.331426194359)
(-0.220492930881 -0.233714784038 -0.242634822363)
(-0.214776248848 -0.213504757023 -0.16090906683)
(-0.187332340306 -0.187794409961 -0.0948756123996)
(-0.15890906539 -0.157861399543 -0.0547399535989)
(-0.138157177895 -0.130749138137 -0.0260232465002)
(-0.126395530234 -0.107773861802 -0.0028400313907)
(-0.123623750097 -0.0856457078915 0.0219007902054)
(-0.125546238784 -0.0617277024895 0.0528567162857)
(-0.12837043752 -0.038262349778 0.0895667237526)
(-0.128806018867 -0.0170108315246 0.133991730095)
(-0.118630127201 0.00148635285917 0.185656845853)
(-0.0980769464424 0.0182999530281 0.22999528982)
(-0.0747130642146 0.0313092197017 0.266641993216)
(-0.0529956743559 0.0370647752633 0.299190215784)
(-0.029230362815 0.0414883921545 0.328373178258)
(-0.00187415306613 0.0400059257385 0.340899480795)
(-0.0247643014 -0.323948358586 -0.400204067478)
(-0.0896897620253 -0.301989554118 -0.39258279467)
(-0.147916644332 -0.280082235295 -0.330454261356)
(-0.180499810402 -0.258104250117 -0.252230442152)
(-0.193554110158 -0.233717659333 -0.173395306393)
(-0.183189283301 -0.202826736627 -0.0991180359113)
(-0.154723955505 -0.171687156115 -0.0483788462798)
(-0.129260774395 -0.143706287375 -0.0219764060415)
(-0.113393864446 -0.120032222129 -0.00128757217001)
(-0.104498001224 -0.0990276757006 0.017607325249)
(-0.102142861004 -0.0780593476934 0.0385998828679)
(-0.10320483085 -0.0548713220232 0.0650001308462)
(-0.105998699935 -0.0304522098136 0.0952692495913)
(-0.107795702736 -0.00595660251534 0.13313882297)
(-0.100420534137 0.0174707401946 0.177743259984)
(-0.0835111834218 0.0393000070356 0.216514240681)
(-0.0648724926857 0.056958153929 0.249048059969)
(-0.0471392653652 0.0671559037037 0.279361690574)
(-0.0281579632367 0.0713627655299 0.30892244213)
(-0.00358454506405 0.0700561976256 0.326012340375)
(-0.0172227651067 -0.338403388579 -0.2815959861)
(-0.0753200234244 -0.315442694665 -0.289295639175)
(-0.127413586245 -0.286303613885 -0.235239980127)
(-0.15151305944 -0.256188883893 -0.171184297551)
(-0.15744861989 -0.224638949975 -0.106444542539)
(-0.144232349221 -0.189352707913 -0.0533096129439)
(-0.121961813113 -0.159527701831 -0.0223951290108)
(-0.104174556035 -0.134802995943 -0.000930559318437)
(-0.0923230647915 -0.113581893655 0.0183266880874)
(-0.084626810276 -0.0934986201534 0.0368695309609)
(-0.0809552393873 -0.0726122502464 0.0561933990815)
(-0.079828535419 -0.049085743329 0.0778953557066)
(-0.0807880519487 -0.0236679215884 0.101030395672)
(-0.0823852290764 0.00328707614489 0.129065630719)
(-0.0770487128138 0.0314986941771 0.16443190009)
(-0.0640290001845 0.0579983925974 0.19444314819)
(-0.0504140501988 0.0800927031836 0.220273017436)
(-0.0380747491242 0.0942853744919 0.246115991452)
(-0.0241112877716 0.0999656198443 0.274275959419)
(-0.00407717687292 0.0995122912055 0.295633827185)
(-0.00975054176325 -0.331755314873 -0.156958489943)
(-0.0563014603551 -0.312809589084 -0.167306190936)
(-0.0975853438395 -0.280184468094 -0.137789787589)
(-0.117371889707 -0.24668536413 -0.0941657642201)
(-0.120167526001 -0.21386993829 -0.0485820962541)
(-0.109659324845 -0.182830250925 -0.01414083454)
(-0.0932184222364 -0.158938690923 0.00756337181943)
(-0.0794814469439 -0.138549582029 0.0229932198999)
(-0.0702612560808 -0.118772594614 0.0382586061436)
(-0.0635963747306 -0.0978821314696 0.0538942381428)
(-0.0591946580038 -0.0747314593764 0.0704646022583)
(-0.0562377894209 -0.0485389737914 0.0878214553088)
(-0.0548901809416 -0.0202527100184 0.105092202749)
(-0.0544369440084 0.00977004477724 0.123969762605)
(-0.0500539929487 0.0416373930628 0.146239039853)
(-0.0411501088168 0.0713958088224 0.165099415403)
(-0.0329977389499 0.0963876223184 0.181357915237)
(-0.0267590776245 0.113209583677 0.200514518716)
(-0.0182495920104 0.120860271342 0.226594683877)
(-0.00392260359535 0.120790151262 0.250449242128)
(-0.00570365202657 -0.298771478802 -0.0378657955564)
(-0.0403321219472 -0.286972771524 -0.0561329732604)
(-0.0723433635059 -0.262582922976 -0.0452699664353)
(-0.0876663880413 -0.235107513896 -0.0207400462903)
(-0.089906395038 -0.20828561508 0.00740870815172)
(-0.0822854144796 -0.18474007557 0.0311539414464)
(-0.0701032932128 -0.165264634732 0.048667571518)
(-0.0583879678597 -0.147865328599 0.0634776462466)
(-0.0484708920533 -0.128315655332 0.0766310250597)
(-0.0397402230179 -0.105559100543 0.0879719845416)
(-0.0324830411324 -0.0791824009792 0.0975135310158)
(-0.0270158531752 -0.0496465815771 0.10528982467)
(-0.0238397298948 -0.0182281815821 0.11140001027)
(-0.0224709746643 0.0142433186508 0.11760324926)
(-0.0200818308373 0.0472911334711 0.125190389036)
(-0.0162700979147 0.0777443634545 0.131260235036)
(-0.0140615739631 0.102980431686 0.137346601532)
(-0.0137888743183 0.120659591269 0.149015012548)
(-0.0108653322226 0.129904218988 0.170512730807)
(-0.00292506230139 0.130127688896 0.194583720604)
(-0.00520643006862 -0.255296076088 0.0514618609704)
(-0.0336582691464 -0.251580001421 0.0345838806253)
(-0.0586387114656 -0.238950657204 0.0400086088807)
(-0.0690841045037 -0.222249523224 0.0568321419435)
(-0.0685085442901 -0.203970411663 0.0759297838717)
(-0.0601415879507 -0.186328547347 0.0931370752792)
(-0.0477489952408 -0.169459408623 0.106790488976)
(-0.0346594777593 -0.151780578626 0.117088842286)
(-0.022283815886 -0.130727199174 0.123820337063)
(-0.0109436588584 -0.105905182652 0.126713522084)
(-0.00147048905744 -0.0778489007259 0.125855371411)
(0.00550996003166 -0.0473040262529 0.121976306662)
(0.00939651729675 -0.0154781634504 0.115531956421)
(0.0103341425921 0.0164759282532 0.108491755891)
(0.0097613941011 0.0477009193288 0.101965735293)
(0.00802513464081 0.0759363067321 0.0958805052714)
(0.00457639440178 0.099032292552 0.0926089210545)
(-0.000166531076161 0.114813755797 0.0968662916351)
(-0.00267277558289 0.123740161264 0.112890701015)
(-0.00127632804298 0.124340170914 0.135721086734)
(-0.00770202180553 -0.209987238143 0.118067639795)
(-0.0345904397671 -0.211678928304 0.107126307871)
(-0.0553662487017 -0.209123169358 0.114549639808)
(-0.0616305856619 -0.202830459703 0.131876863285)
(-0.0561756548534 -0.192740910778 0.149353655619)
(-0.043552091864 -0.179997617231 0.163034075208)
(-0.0275766580826 -0.164980922755 0.171836822824)
(-0.0111330960567 -0.1472344632 0.175554622015)
(0.00447176915787 -0.12583784873 0.173937557517)
(0.0183913710921 -0.10108064643 0.166852785283)
(0.0297721390931 -0.0735323191257 0.154844713082)
(0.037851187422 -0.0442042163316 0.138548911003)
(0.0416704115549 -0.0142911149114 0.11929200086)
(0.0410741606662 0.0149996078139 0.0994842793667)
(0.0369278866226 0.0425111289266 0.0806499484119)
(0.0299926902664 0.0665448581915 0.0642269719738)
(0.0209224974965 0.0853940699921 0.0529077348534)
(0.0114907195833 0.0973150335759 0.0512488249503)
(0.00484824814116 0.103665549155 0.0612873089234)
(0.000485900668395 0.103416632414 0.0841762863779)
(-0.011286522694 -0.163263617724 0.167465245032)
(-0.0396068121337 -0.167250739759 0.162733874777)
(-0.058278786423 -0.171662881253 0.175517975429)
(-0.0618514155744 -0.174333906351 0.197029439765)
(-0.0518291154006 -0.172175617219 0.216855713291)
(-0.0334781074683 -0.164313632397 0.229456948998)
(-0.012014513681 -0.15138997298 0.233944665581)
(0.00897512869084 -0.13445980098 0.230865430104)
(0.0279052980417 -0.11395094398 0.220721128461)
(0.0443605595305 -0.0907024625394 0.204004803772)
(0.057485879184 -0.0654776051693 0.181289767668)
(0.0661494793634 -0.0393269515382 0.153871806573)
(0.0694538883053 -0.0133087644416 0.123550687378)
(0.0670446780555 0.0116744296434 0.0927926662332)
(0.0594676770167 0.0343121236291 0.0640551621841)
(0.0478432075599 0.0530213425972 0.0397208005811)
(0.0340365942673 0.06618708017 0.022818137251)
(0.0205757127252 0.0732659073828 0.017268509365)
(0.00981885340605 0.0755251671648 0.0243642959961)
(0.000855962769935 0.0733338290586 0.0483189001774)
(-0.0151406852728 -0.113158593934 0.201696462376)
(-0.047394286184 -0.118696929331 0.203375105114)
(-0.0665002855162 -0.127609272891 0.222938491396)
(-0.0674613919141 -0.137408907264 0.252446834287)
(-0.0521300683321 -0.142437980615 0.277308815426)
(-0.0270584179509 -0.139901973093 0.289953865225)
(0.000487114076322 -0.130107245779 0.289846676239)
(0.0260371280147 -0.115080460325 0.279608948106)
(0.0481838021329 -0.0966405444503 0.26097516246)
(0.0665227603547 -0.0761636934893 0.235299778983)
(0.0804729845143 -0.054733699116 0.203703225894)
(0.0891506748545 -0.0331232510678 0.167417584158)
(0.0917763595837 -0.0120204447072 0.128584233153)
(0.0878206958644 0.00778959294134 0.0896228099354)
(0.0774025536066 0.0251995997547 0.05341085909)
(0.0615682788047 0.0384799378997 0.0231133701796)
(0.0428324132567 0.045792774001 0.00274379346191)
(0.0251307157263 0.0473654292732 -0.00349365990172)
(0.0118106498148 0.0449008125976 0.0036848700441)
(0.000191366206419 0.041537483218 0.0283391770645)
(-0.0190763351927 -0.0651210442183 0.211850783762)
(-0.0569598441769 -0.0715962431647 0.220507935765)
(-0.0782994988294 -0.0818527064669 0.251525043191)
(-0.07756776416 -0.0945982186902 0.293123659676)
(-0.0563046008084 -0.104031286322 0.327308995179)
(-0.0235265933184 -0.105956345829 0.34289358326)
(0.0110500949917 -0.100394184212 0.339239433657)
(0.0413338871212 -0.088589088611 0.321914874868)
(0.0658295954983 -0.0740190475563 0.295548401819)
(0.085026793149 -0.0581476868571 0.262502629766)
(0.0989872988825 -0.0418034036791 0.223958531592)
(0.107170952068 -0.0255782780748 0.181442733919)
(0.108881846623 -0.00995152298763 0.136609087513)
(0.103436676114 0.00426697213324 0.0920409819071)
(0.0902865635038 0.0164189977034 0.0503566103253)
(0.0696940750878 0.0246014401905 0.0158586165866)
(0.0454568187201 0.026824870715 -0.00500690645003)
(0.0238054828976 0.0238718633524 -0.00833755189498)
(0.00959731479113 0.0173299741155 0.00223293054711)
(-0.00178455913776 0.0121551353744 0.0285690673319)
(-0.0221022308453 -0.0285864036893 0.205982372203)
(-0.06506597718 -0.0346543736635 0.224090664702)
(-0.0890165814924 -0.0431541643769 0.267291186355)
(-0.0876821589942 -0.0534378157055 0.321550038256)
(-0.0613866881879 -0.0621974816278 0.36637041142)
(-0.021867207628 -0.0658973491851 0.386126236802)
(0.0189857441897 -0.0639583812054 0.380839782864)
(0.0531431141761 -0.0562501727255 0.358546660439)
(0.0787509960824 -0.047029265943 0.325807755527)
(0.0979771114803 -0.0370170110806 0.287198509442)
(0.111288229945 -0.0268560660762 0.244053298897)
(0.118416508831 -0.0168340955736 0.197428917651)
(0.118795154445 -0.00737235763909 0.148852875777)
(0.111896343452 0.000988389241156 0.101054454822)
(0.096327385704 0.00855296514587 0.0555295992472)
(0.0711111376245 0.0125594176218 0.019161278591)
(0.0418761310895 0.0120762998466 0.000559920977317)
(0.0167478491858 0.00833978198469 0.00216564291005)
(0.00211530658365 0.00118875113154 0.0186259267361)
(-0.00607168984649 -0.00228214438397 0.0494762847577)
(-0.0239102618806 -0.00853017379865 0.200903855431)
(-0.0703948805763 -0.0118945827831 0.228895862321)
(-0.0950375683475 -0.0157029188636 0.281802005512)
(-0.0932048636897 -0.0197505554272 0.344990606072)
(-0.064839589709 -0.0234407272273 0.396105200459)
(-0.0214415981277 -0.0250605209314 0.41909448825)
(0.0234000296133 -0.0243016160508 0.412283308852)
(0.059118995852 -0.0214483150273 0.386916164492)
(0.0839926069948 -0.0181253134692 0.35054901541)
(0.101790551783 -0.0147088259366 0.309339056624)
(0.113554265294 -0.0112552800764 0.264479527259)
(0.119234306086 -0.00777846825473 0.217060803131)
(0.118628222344 -0.00470896475384 0.168333213422)
(0.1113709241 -0.00229471555453 0.120470029135)
(0.0949054939144 -0.00111880645341 0.0740059675034)
(0.0674792940071 -0.000919258118792 0.0379789163043)
(0.0362121865031 -0.00232164894904 0.0223431972048)
(0.00885289842539 -0.00468477216139 0.0266950207052)
(-0.00473004952163 -0.00883095311043 0.0478685768981)
(-0.00723396533022 -0.00797150362505 0.0797648877948)
(-0.0224487365041 -0.0123182810309 -0.751975974655)
(-0.0593976512662 -0.0145239617657 -0.732591850505)
(-0.09356798252 -0.0157734753066 -0.699582644225)
(-0.125473012416 -0.0172526412939 -0.662868180094)
(-0.153288851619 -0.0180831088884 -0.611846660223)
(-0.172258745104 -0.0186550668373 -0.5539663377)
(-0.188427414724 -0.0191750031436 -0.493839204244)
(-0.201921085857 -0.0198203899946 -0.42833575763)
(-0.210071117722 -0.020180316374 -0.356865204805)
(-0.213623027985 -0.0199307011035 -0.284827450919)
(-0.214536586031 -0.0182183220359 -0.21036492876)
(-0.2112773984 -0.0155725094727 -0.13035135189)
(-0.202633808012 -0.0130966034967 -0.052457251632)
(-0.189116111577 -0.0113865804641 0.0198490726165)
(-0.171155039504 -0.00997110925282 0.0851522586888)
(-0.150337724167 -0.00814297343111 0.143083896591)
(-0.127882758011 -0.00498206756488 0.195314942779)
(-0.102226625072 -0.00110565247749 0.243795912063)
(-0.0685341439658 0.00242710630714 0.286417475072)
(-0.0296047254269 0.00221074547648 0.318545459334)
(-0.0239270691681 -0.033729542244 -0.739532424988)
(-0.0614674797367 -0.0362655589662 -0.715730082385)
(-0.0954840017349 -0.0382386591275 -0.676840642463)
(-0.126882532974 -0.0422316932146 -0.634184564337)
(-0.152144161937 -0.0456298161482 -0.580168457379)
(-0.168705115761 -0.0485348631465 -0.522799368194)
(-0.182557678088 -0.0514585117575 -0.463231095012)
(-0.194217297475 -0.0531686012538 -0.399332845247)
(-0.200676005229 -0.0529809502217 -0.331139051036)
(-0.202110804008 -0.0509774373366 -0.261448001203)
(-0.200665729621 -0.0464937389219 -0.191483997201)
(-0.196028726906 -0.0403410717024 -0.119595532513)
(-0.187500817112 -0.0351297442265 -0.0492746281208)
(-0.17512716064 -0.0318080439126 0.0164448371938)
(-0.158576333879 -0.0297326103985 0.0757290696569)
(-0.13886613208 -0.0270635027792 0.128188014518)
(-0.116874774641 -0.0219231492192 0.175556435731)
(-0.091520229167 -0.0145697306053 0.220582233818)
(-0.0596538599602 -0.00653187827808 0.263408388851)
(-0.024839856486 -0.00116377072974 0.30265341385)
(-0.0257845444605 -0.0574020362924 -0.730762586455)
(-0.0643315800828 -0.0590646914872 -0.6979755116)
(-0.101453531438 -0.0639283272421 -0.650610721101)
(-0.133064899606 -0.0713370905412 -0.597452898291)
(-0.156223780851 -0.0770280655558 -0.537551842204)
(-0.170758877059 -0.0810465611442 -0.477951084121)
(-0.181107294761 -0.0836612918806 -0.417961675636)
(-0.188295363724 -0.0836678902965 -0.355761680433)
(-0.190845295612 -0.0805390162242 -0.290617091183)
(-0.188869516316 -0.0744223487587 -0.225633559807)
(-0.184961556325 -0.0659635332581 -0.161961632664)
(-0.179546732122 -0.0579236386726 -0.0971510443639)
(-0.171547912284 -0.0515628733176 -0.0328686735528)
(-0.160274837521 -0.0471671872511 0.0279681712565)
(-0.144736535762 -0.0443420689807 0.0833135895202)
(-0.125480297046 -0.0413442223292 0.131515527948)
(-0.103459451555 -0.0357608293548 0.172864019765)
(-0.0791017994833 -0.0262981907111 0.212239706861)
(-0.0498678890108 -0.0154333427781 0.2518826101)
(-0.0194136109189 -0.00704068178922 0.293325320748)
(-0.0271778348429 -0.0860991099625 -0.711903741348)
(-0.0689038524751 -0.0859614289255 -0.674479158763)
(-0.110282578216 -0.0914665288399 -0.618594428156)
(-0.14229366947 -0.0998053349615 -0.556212140877)
(-0.164192953206 -0.106544947133 -0.491323680702)
(-0.176989404606 -0.110566043551 -0.429187677813)
(-0.183614388586 -0.111560882767 -0.367947478172)
(-0.185474516872 -0.108902960149 -0.306100808083)
(-0.18281652834 -0.101962151042 -0.243672135249)
(-0.176979812665 -0.0914116287363 -0.183931735673)
(-0.171862642237 -0.0791890039096 -0.127085508)
(-0.166893919192 -0.069133679741 -0.0670804531319)
(-0.159415368768 -0.061026889666 -0.00623668805385)
(-0.14835581912 -0.0551087636733 0.0521882903777)
(-0.132661321571 -0.0513603758191 0.105027063529)
(-0.113139476854 -0.0483477923898 0.150591122809)
(-0.0911338371743 -0.0442337357573 0.187152087893)
(-0.0681801734852 -0.0362960809397 0.220563061394)
(-0.0418202435086 -0.0259355588014 0.254617200408)
(-0.015469991693 -0.0154369243682 0.291464841714)
(-0.0277937807421 -0.117552192783 -0.681223447712)
(-0.0730284782712 -0.112925387495 -0.643737824782)
(-0.118445761636 -0.116302173405 -0.581262587195)
(-0.151123585122 -0.123639487786 -0.512420242547)
(-0.172535643257 -0.130204594139 -0.4434263747)
(-0.183443056009 -0.133514643861 -0.378512734145)
(-0.186036963954 -0.132370203743 -0.316002121482)
(-0.182525299763 -0.126304106059 -0.254546772848)
(-0.174574221873 -0.115298181801 -0.195423297786)
(-0.165449860181 -0.100832302978 -0.142009778533)
(-0.160413666634 -0.0856530258328 -0.0921866771952)
(-0.156735877628 -0.0730702176528 -0.0358087489206)
(-0.149924861706 -0.0622594497868 0.0222940274765)
(-0.139307456063 -0.0540099798444 0.0788316195631)
(-0.123376932723 -0.048781368144 0.130914194874)
(-0.103173985665 -0.0452995931245 0.17537898302)
(-0.0811275307696 -0.0423288117367 0.209838725611)
(-0.0592422845444 -0.037657621773 0.238327636662)
(-0.035706052376 -0.030128995954 0.267936454478)
(-0.0123091747783 -0.0195913322274 0.298475826531)
(-0.0268330556276 -0.146905483436 -0.639081684979)
(-0.0751115833377 -0.138786513974 -0.606338870613)
(-0.123651027853 -0.138355501089 -0.540531618928)
(-0.156967312216 -0.143172402227 -0.468317108847)
(-0.178033368416 -0.147975024327 -0.396185114594)
(-0.186817809925 -0.149477987873 -0.3283750248)
(-0.185214803031 -0.145124292112 -0.264047787893)
(-0.176621111294 -0.134937283097 -0.203635650354)
(-0.164027073183 -0.12006879048 -0.1485485973)
(-0.152646630017 -0.103095273928 -0.102452835097)
(-0.148272180662 -0.0862109088014 -0.0593924453464)
(-0.146007952853 -0.0703423823327 -0.00698703924571)
(-0.140333326607 -0.0564708727986 0.0473799998383)
(-0.131159784544 -0.0457170537164 0.101080799763)
(-0.116177003948 -0.0385765363906 0.152225325411)
(-0.0961496084555 -0.0338532046935 0.196160880397)
(-0.0743561076986 -0.0312811831745 0.230223587321)
(-0.0531993452669 -0.0293308205993 0.257354445508)
(-0.0311367534024 -0.0250622614639 0.284446842409)
(-0.00883067537494 -0.0166455588001 0.311089905277)
(-0.026195701349 -0.177114832062 -0.590299842287)
(-0.0769273143753 -0.165573482591 -0.561550858753)
(-0.125832351539 -0.160696614054 -0.496369042457)
(-0.159090753618 -0.161005684217 -0.422423526474)
(-0.179101725 -0.161905990219 -0.347965773115)
(-0.184797097575 -0.160134893845 -0.277724152832)
(-0.178367480107 -0.151233797797 -0.213400433629)
(-0.165601478965 -0.135874761698 -0.156203991303)
(-0.150395034344 -0.116880079049 -0.106548243375)
(-0.138411103069 -0.0981829560042 -0.0664468831725)
(-0.134129061417 -0.0806438313922 -0.0288696530983)
(-0.132919575777 -0.0625076701267 0.0165591550776)
(-0.129471973856 -0.0463243601357 0.0652366106538)
(-0.122733792604 -0.0334621325789 0.115188327326)
(-0.109854009137 -0.02442126287 0.164812187441)
(-0.09123000739 -0.0180018249719 0.208120005469)
(-0.0704400291911 -0.0148996825038 0.2424473815)
(-0.0501461756237 -0.0138867435058 0.270194155186)
(-0.0282029332778 -0.0121155049244 0.297765417638)
(-0.00363980298241 -0.00593642954921 0.31779103846)
(-0.0245496289968 -0.208645923488 -0.526688899932)
(-0.0755450231203 -0.194830984539 -0.504494043648)
(-0.124969192343 -0.184261399609 -0.442587752262)
(-0.155768178972 -0.17809416837 -0.369343339153)
(-0.173685897057 -0.172604075055 -0.294190285223)
(-0.175378179498 -0.165602729888 -0.223973744485)
(-0.163421870178 -0.151576816718 -0.162981041671)
(-0.147268764754 -0.132079587508 -0.113147845835)
(-0.131908359876 -0.111163376927 -0.0727102310091)
(-0.12168178729 -0.0919662315196 -0.0392902141233)
(-0.118202790568 -0.0739008428297 -0.00580311644739)
(-0.117670865241 -0.0548243214758 0.0331047507015)
(-0.116443555175 -0.0370235065864 0.0756147385726)
(-0.112726969212 -0.0219297365958 0.121502141396)
(-0.102698128959 -0.010153187201 0.169135870162)
(-0.086369681269 -0.000954217151644 0.211536225503)
(-0.0672497859355 0.00426798953642 0.246997944513)
(-0.0482178519696 0.00633039398481 0.274224030492)
(-0.0264851215605 0.00787487807258 0.303258154164)
(-0.00130700745807 0.0114960947851 0.315591748666)
(-0.022428873175 -0.235590942442 -0.447547806339)
(-0.0712923330716 -0.221225123828 -0.430042785054)
(-0.11782789125 -0.204800375895 -0.37573794792)
(-0.145296883613 -0.191914756978 -0.306581240646)
(-0.160448070375 -0.179718257689 -0.235429870208)
(-0.158288302297 -0.164654361203 -0.168270512922)
(-0.142270855886 -0.146588042727 -0.114186270951)
(-0.125616020566 -0.125237419707 -0.0731632838294)
(-0.11205033131 -0.104713714866 -0.0401913479137)
(-0.103391358551 -0.0859523850991 -0.0115524851194)
(-0.100210513987 -0.0676542175773 0.0168654675877)
(-0.100062751498 -0.0482935584412 0.0489279543607)
(-0.10039147925 -0.0292473516188 0.084817052009)
(-0.0990273821378 -0.011750429216 0.12518010723)
(-0.0916882021024 0.00347165188943 0.168614386646)
(-0.0781230017884 0.0162038389203 0.207807732165)
(-0.0614472446136 0.0245839080318 0.241145581105)
(-0.0443026732293 0.0281957720551 0.268806828974)
(-0.0246085868089 0.0304989175256 0.295396510674)
(-0.000572440217939 0.0311341016346 0.311072357604)
(-0.0191568117525 -0.252451909002 -0.355195565452)
(-0.0640216163787 -0.237963445974 -0.344098944505)
(-0.10603130995 -0.218193008489 -0.29804850356)
(-0.12982370256 -0.199389372927 -0.236750810734)
(-0.139812627829 -0.18099557449 -0.173274127239)
(-0.134688051241 -0.158984475693 -0.114379151036)
(-0.118604620421 -0.137878788967 -0.0698982756281)
(-0.102968939537 -0.117133151503 -0.0385260972089)
(-0.0918140449708 -0.0980472041625 -0.0123263689928)
(-0.0847324209985 -0.0801751456138 0.0114231972079)
(-0.0817723042516 -0.0620915044454 0.0353868809121)
(-0.0812541726333 -0.0425002398765 0.0621765753957)
(-0.0818590581857 -0.0222402924568 0.0916952139109)
(-0.0817718736178 -0.00229641496481 0.125479806465)
(-0.0766687397167 0.016347435914 0.162771477312)
(-0.0659844026651 0.0325848786246 0.196871594256)
(-0.0529773339191 0.0442772057965 0.226291593442)
(-0.0390122570993 0.0496939387728 0.252530740159)
(-0.0219477092118 0.0523579558773 0.277722098584)
(-0.00149796929375 0.0503436695954 0.298104227575)
(-0.015947723808 -0.26171535116 -0.255752541754)
(-0.055155801126 -0.246595866006 -0.25298308869)
(-0.0907008063503 -0.22370939185 -0.214743106248)
(-0.109159346623 -0.199767629525 -0.16406298501)
(-0.114563928239 -0.176283002164 -0.111864161683)
(-0.10770133244 -0.152097462178 -0.0664930753879)
(-0.0941375194622 -0.130732941272 -0.0340560717733)
(-0.081859172079 -0.111568264041 -0.0090942129779)
(-0.0728410226064 -0.0937575241737 0.0130121679288)
(-0.0664962928584 -0.076285714585 0.0334678808464)
(-0.0628356661136 -0.0579399508304 0.0534875059042)
(-0.0611315053721 -0.0377168897493 0.074994563466)
(-0.060965016936 -0.0163249688155 0.0976875761387)
(-0.0611574533968 0.00566497327861 0.123225999917)
(-0.0578495628869 0.0274018560449 0.152366883773)
(-0.050255167858 0.0467686203372 0.179037123212)
(-0.0412827775756 0.0613948265212 0.202687678652)
(-0.0316476149202 0.0694880515232 0.224981202521)
(-0.0190359576217 0.0728613214892 0.248937503721)
(-0.0027820183633 0.0706053535273 0.270663950275)
(-0.0104132925071 -0.256973992873 -0.144111159633)
(-0.0422403539368 -0.243300930334 -0.150375387483)
(-0.0717455085147 -0.220123824144 -0.127610933349)
(-0.0862862255863 -0.194839274224 -0.0919188322556)
(-0.0890040644949 -0.170591283738 -0.0537099516641)
(-0.0826701861807 -0.148240676529 -0.0214786709146)
(-0.0716007041345 -0.12966667813 0.00305464447917)
(-0.0613588847837 -0.112869175809 0.021717489315)
(-0.0536569700073 -0.0960150464888 0.0388582396937)
(-0.047641934374 -0.0781039873703 0.054769163336)
(-0.0432561890914 -0.0583423028886 0.0702542703686)
(-0.0403676312078 -0.0363933623591 0.0862937308965)
(-0.0390362585559 -0.0130485765631 0.102168342735)
(-0.0386253714584 0.0109859265831 0.119125656875)
(-0.0365613405261 0.0350763004236 0.138118070691)
(-0.0321256187758 0.056661527964 0.155619396705)
(-0.0273813917834 0.0733647978483 0.171609467745)
(-0.0224540784521 0.0834272769387 0.188610269739)
(-0.0143949412292 0.0880192489336 0.210322960323)
(-0.00290706238802 0.0866744041802 0.232977787859)
(-0.00701968539515 -0.234414142117 -0.0433511951396)
(-0.0327013263968 -0.226078583917 -0.0536605654941)
(-0.0561002482531 -0.208240247723 -0.0433210785682)
(-0.0671860129235 -0.187262737429 -0.0208055937143)
(-0.0682320371399 -0.166704979753 0.00510168631602)
(-0.0623579776778 -0.148370121582 0.0284608838713)
(-0.0528287739805 -0.132406717666 0.0469086131194)
(-0.043154648114 -0.117422439936 0.0621943637943)
(-0.0348447047519 -0.100810724821 0.0751844566131)
(-0.0274116945914 -0.0818026403331 0.0858229381399)
(-0.0212138493761 -0.060220162248 0.0944825865094)
(-0.0168110707287 -0.0364476723062 0.101980057418)
(-0.0146027004502 -0.0113657713545 0.108219839743)
(-0.0141334400054 0.0139862614545 0.114485655083)
(-0.0137432283156 0.0388696850266 0.121886845966)
(-0.0129103551931 0.0610016626975 0.129003507723)
(-0.0125679483238 0.0782663920077 0.136533050042)
(-0.0122353035902 0.0892985454772 0.147317234262)
(-0.00863258513973 0.095030581246 0.165584911421)
(-0.00216291696233 0.0943229253716 0.187740250783)
(-0.0059075699994 -0.204658224131 0.0396213098754)
(-0.0276063087984 -0.201114786589 0.0286395233754)
(-0.0465450541167 -0.190826287895 0.0339195730408)
(-0.0549376410904 -0.177201083088 0.0499343232645)
(-0.0539397183765 -0.162150858046 0.0691471913835)
(-0.0466251577996 -0.14752049071 0.0864080829124)
(-0.0360852925087 -0.133272433898 0.100369774177)
(-0.0250793879461 -0.118556856048 0.110581435529)
(-0.0147647734454 -0.101377111166 0.117245441653)
(-0.00543279843897 -0.0814011675774 0.120325190039)
(0.00223734042086 -0.0590636398101 0.120222201017)
(0.00757484239161 -0.0350256722443 0.117674638534)
(0.0100983443648 -0.0100537998117 0.113235576879)
(0.0100217686252 0.0147556739737 0.108445996711)
(0.00828507852414 0.0384246495905 0.104460849037)
(0.00549177109212 0.0591453514976 0.101450273156)
(0.00186778581807 0.0752100244746 0.100876181651)
(-0.00171534022004 0.0857879386179 0.105173298116)
(-0.00223096535954 0.0913539675297 0.118931131609)
(-0.00116605753724 0.0916078618218 0.142261707059)
(-0.00666349096341 -0.171041383749 0.105371221319)
(-0.0271021375307 -0.171099169858 0.0960176551559)
(-0.0429049132803 -0.167349238264 0.101653084937)
(-0.0490780590996 -0.161262673076 0.117023547412)
(-0.0456413724577 -0.152299770437 0.134127806792)
(-0.0355513981501 -0.141273678837 0.148248127875)
(-0.0222978413285 -0.128705419942 0.157745158114)
(-0.00861891140084 -0.114304430656 0.162070948038)
(0.00421424363847 -0.0972839043645 0.161388368497)
(0.0155119206438 -0.0777593412619 0.155829639658)
(0.0245246716007 -0.0561909112958 0.146153136494)
(0.0306006686358 -0.0333622352107 0.133244222908)
(0.033112410115 -0.010126642118 0.118060586734)
(0.0320412352103 0.0126047651319 0.102611063191)
(0.0280284860373 0.0336626708984 0.0883215832212)
(0.0219068458218 0.0515618083249 0.0762933973183)
(0.0146871441879 0.0650071127898 0.0684139573197)
(0.0073590171171 0.0736358281292 0.0678615372349)
(0.00340601524974 0.0777336637629 0.0778101851883)
(-0.000102086082985 0.0779593416418 0.100266873197)
(-0.00840319874434 -0.134828444474 0.156430917958)
(-0.0297405886648 -0.136651796348 0.150155666357)
(-0.0435026676918 -0.137723799892 0.158238442733)
(-0.0476099046913 -0.138043532959 0.175699931947)
(-0.0415822880806 -0.135064004815 0.193426949792)
(-0.0282470390394 -0.128159357271 0.206114454789)
(-0.0115040653759 -0.117712907346 0.211937437753)
(0.00539271484532 -0.104396460584 0.210214379302)
(0.0207901368933 -0.0884841556096 0.20220038152)
(0.0340186268439 -0.0704539166951 0.188546056279)
(0.0443278238523 -0.0509205121789 0.169902740805)
(0.0508807958356 -0.0306898306004 0.147559732957)
(0.0531670172561 -0.010490640103 0.122979195972)
(0.0510688649507 0.00889975558927 0.0982661691964)
(0.0449673600604 0.0263257688217 0.075393592149)
(0.0358914585085 0.0405305651842 0.0561550595724)
(0.0252830795015 0.0504604044693 0.0429048930496)
(0.0145260521377 0.0561195948586 0.0390082987409)
(0.00732130413362 0.0581558161288 0.0467013607083)
(7.05296803525e-06 0.0573233913131 0.0696604382007)
(-0.0103749222137 -0.0968003534974 0.192546054938)
(-0.0343574621918 -0.0998943083389 0.189298686647)
(-0.0479952549656 -0.104123342871 0.202217266858)
(-0.0498779060341 -0.109011989733 0.224506973013)
(-0.0402037031044 -0.110998840015 0.245033969108)
(-0.0226144804952 -0.108125383628 0.257329608032)
(-0.00185238403293 -0.100555596426 0.259293458057)
(0.0182534912435 -0.0892092688872 0.252221751007)
(0.0360171293811 -0.075377716342 0.237671120476)
(0.0507408300714 -0.0598106031312 0.216690676062)
(0.0617315979962 -0.0434562876726 0.190623206731)
(0.0683916287045 -0.0267701430082 0.160502374073)
(0.0703106578523 -0.0104357569465 0.128482774337)
(0.0671766270094 0.00487625305874 0.0965565359158)
(0.0590827387649 0.0182125960121 0.067049567615)
(0.0468996806584 0.0284157903319 0.0425003213011)
(0.0326450182086 0.0346064903126 0.0259616694519)
(0.0186795447745 0.0370137957523 0.0208102570868)
(0.00928415890253 0.0364477883725 0.0280174650109)
(-0.000680259482911 0.0350374327313 0.0514439280263)
(-0.0124526371829 -0.0603549728806 0.21115021869)
(-0.0399050537719 -0.0645182496372 0.212443783646)
(-0.0545988334636 -0.0699588487954 0.232197757733)
(-0.0551179410142 -0.0767918452391 0.261775296457)
(-0.0414711908688 -0.0813173321754 0.28758969641)
(-0.0190531240778 -0.0816746707165 0.301040287783)
(0.00615045779967 -0.0773249088356 0.300562344675)
(0.0294855528714 -0.0686512202749 0.288664311102)
(0.0490376031585 -0.0580812339687 0.268071042735)
(0.0645127935088 -0.0462803563354 0.241084965034)
(0.0756931296458 -0.0339874063117 0.209196647932)
(0.0821711474423 -0.0216223614346 0.173816848352)
(0.0833789374739 -0.0096646855494 0.136519460455)
(0.0790610627886 0.00122221417901 0.0995307742102)
(0.0689215327496 0.0104059170053 0.0653309655584)
(0.0535781277933 0.0168268155685 0.0373351649104)
(0.0358405737772 0.0196094216443 0.0197317428709)
(0.0191183743123 0.0192139174613 0.0152096246645)
(0.00883848583368 0.0162466347791 0.0234010452182)
(-0.00219301609126 0.0134905286474 0.0470558220628)
(-0.0139280638208 -0.0296229001806 0.216688296397)
(-0.0445286542965 -0.0335256568703 0.22500058728)
(-0.0603171929385 -0.0384282999764 0.253262210738)
(-0.060039417297 -0.0441776730123 0.29061444405)
(-0.0434796932475 -0.0487999176137 0.321891078148)
(-0.0172458377836 -0.0504855678553 0.337407096014)
(0.0120716628157 -0.048812044046 0.335922866779)
(0.03780852781 -0.0430084769315 0.320104983391)
(0.0579651838983 -0.0365182448326 0.295208888329)
(0.0735821081082 -0.0291894471993 0.263977112648)
(0.0843167260662 -0.0215369385913 0.228044452014)
(0.0901307814052 -0.0140564023846 0.188990986498)
(0.0905611586068 -0.00675920594929 0.148401476146)
(0.085182542446 -0.000246202126022 0.108487107546)
(0.0733646531689 0.00507075950254 0.0715456983267)
(0.0552540712005 0.00850224652482 0.0421084016)
(0.0345913479496 0.00924615951447 0.0252723491801)
(0.015518591283 0.0083289841528 0.022387585325)
(0.00481842966501 0.00513572588962 0.0318417610715)
(-0.00607225526651 0.00281412249157 0.0547040296693)
(-0.0148549179744 -0.0104466710398 0.218897560325)
(-0.046850508753 -0.0127227445916 0.236720167732)
(-0.0628699669603 -0.0148436373229 0.27297556262)
(-0.0623365595901 -0.0171522812523 0.315091390273)
(-0.0445542023926 -0.0190934770705 0.349851593418)
(-0.0162824586024 -0.0197331205354 0.366980634763)
(0.0153700074252 -0.0190637614904 0.364411572616)
(0.0418399680363 -0.0166277277989 0.346304356584)
(0.0609391899187 -0.014341366077 0.318751772233)
(0.0755864275281 -0.0117835099761 0.285356008605)
(0.085124320421 -0.00914826576838 0.248161801335)
(0.0899732623324 -0.00661368669049 0.208320471544)
(0.0899684187593 -0.00442449154797 0.167274359441)
(0.0842533365111 -0.00270964203545 0.127140265398)
(0.0719004569418 -0.00197428078194 0.0899907084622)
(0.0526966929448 -0.00176123689921 0.0611127332938)
(0.0311243484079 -0.00262903000681 0.0458960702257)
(0.0105010524274 -0.00381278571218 0.0434500836514)
(-0.000239523728279 -0.00692050112552 0.0520822862468)
(-0.0100214219901 -0.0100343436074 0.0703558795017)
(-0.0196862840998 -0.0127798003145 -0.7153170617)
(-0.0454931933968 -0.0128446236664 -0.697044095524)
(-0.0725409866858 -0.0133065312948 -0.667709851211)
(-0.0972545546574 -0.0138066779438 -0.630261076311)
(-0.118068130938 -0.0142249945813 -0.580475728393)
(-0.133755671267 -0.0143793307418 -0.525251012447)
(-0.146451514009 -0.0143994313859 -0.465974485894)
(-0.156423407049 -0.0145935463228 -0.402194984535)
(-0.162582826 -0.014635360062 -0.333652985784)
(-0.164954544466 -0.0141040353617 -0.263554460594)
(-0.164525442001 -0.0127124266006 -0.191544559416)
(-0.161296607685 -0.0107290520669 -0.117952287803)
(-0.154896248562 -0.00881709357308 -0.045351920674)
(-0.145159087209 -0.00730500018504 0.0227022966913)
(-0.131923598691 -0.00596379606332 0.08473027988)
(-0.115632216603 -0.00420218533232 0.140110905519)
(-0.0973467180191 -0.00201316039864 0.189043498526)
(-0.0767431852636 0.000712570620623 0.231777284461)
(-0.0497912541506 0.00355660469629 0.265746812057)
(-0.0231336651553 0.00528922811254 0.288479603047)
(-0.0193751038766 -0.0277816378126 -0.704343839603)
(-0.0449956169618 -0.028168347785 -0.677708783327)
(-0.0730659313599 -0.0287208813308 -0.641079062517)
(-0.0969238229155 -0.0311420140716 -0.599324566407)
(-0.116380876056 -0.033211097503 -0.548456899031)
(-0.130128889626 -0.0350364397354 -0.493813413333)
(-0.140984774227 -0.0364293128357 -0.436370332639)
(-0.149779640347 -0.0376165451639 -0.375309916814)
(-0.154906787774 -0.037398935302 -0.310853540552)
(-0.156348804736 -0.035795584168 -0.245383986028)
(-0.155001973051 -0.032673373966 -0.178598008803)
(-0.150789793084 -0.0286417974916 -0.110809712745)
(-0.143979519507 -0.0249665082334 -0.0435739829715)
(-0.134489888238 -0.0224296811611 0.0187042712041)
(-0.121642425924 -0.0207264077339 0.0750683684115)
(-0.106071438844 -0.0187407296534 0.125374363776)
(-0.0885805250116 -0.0157281953005 0.170071031382)
(-0.0688820233839 -0.0115643936697 0.210264621694)
(-0.0441765409555 -0.00664969150021 0.246382503859)
(-0.0207222063324 -0.00147083556558 0.280495678383)
(-0.0197775827507 -0.0480896183178 -0.689700802518)
(-0.0465138245282 -0.0483057865842 -0.657290836821)
(-0.0761447400959 -0.0503842292929 -0.613150533357)
(-0.0995309834506 -0.0543305112592 -0.563948816368)
(-0.117125527936 -0.0577758606454 -0.50856444601)
(-0.128699223947 -0.0601622997564 -0.452724857209)
(-0.137008078011 -0.0609763388833 -0.395462098617)
(-0.143169760156 -0.0603166926426 -0.336706785958)
(-0.145988250827 -0.0578299922045 -0.275889762703)
(-0.145613005377 -0.0536024028358 -0.214782988461)
(-0.143050994721 -0.0481132276514 -0.153690611091)
(-0.138476228665 -0.0427346579777 -0.092010768474)
(-0.132140564982 -0.038117959483 -0.030141614316)
(-0.123611979919 -0.0345476792381 0.0276538289407)
(-0.111681754284 -0.0319518911924 0.0800760244262)
(-0.0967676263403 -0.0291878832907 0.126350054507)
(-0.0797760659426 -0.0248166239449 0.166566308958)
(-0.0609528420906 -0.0188799664809 0.203357764171)
(-0.0383297735153 -0.0121794709848 0.239247776003)
(-0.0177341972301 -0.00507925606508 0.277213632593)
(-0.0204523750352 -0.0706646138315 -0.668313833596)
(-0.0492199577509 -0.0692976029173 -0.632634824918)
(-0.0810775174896 -0.0707019798873 -0.582058369091)
(-0.104684221878 -0.0750415995052 -0.525132995769)
(-0.121081226639 -0.0791032271087 -0.465618383814)
(-0.130717641192 -0.0812852008208 -0.408237456689)
(-0.136333518065 -0.0811438152051 -0.350817787657)
(-0.139287329461 -0.0785552695533 -0.293222270309)
(-0.138963951795 -0.0735393030826 -0.235187089149)
(-0.136152480169 -0.0664312215845 -0.178326441602)
(-0.132739587902 -0.0584759734846 -0.122802257516)
(-0.128269276779 -0.0515413624316 -0.0658218028829)
(-0.122426877864 -0.0456424809958 -0.00766829741722)
(-0.114585993806 -0.0411053600477 0.0473577321955)
(-0.103245108222 -0.0380673243983 0.0972946618328)
(-0.0887598024685 -0.0355284137274 0.140807523219)
(-0.0721775688095 -0.0317365411839 0.176952678889)
(-0.0541094550548 -0.0261086180658 0.209591207419)
(-0.0332594296306 -0.0193800677869 0.242644812157)
(-0.014924974999 -0.0109336328309 0.278871623036)
(-0.0204918915272 -0.0939263648852 -0.635923292232)
(-0.0512828014982 -0.0899302745648 -0.600370079152)
(-0.0858930404882 -0.0892557021443 -0.545182498453)
(-0.11012136502 -0.0924335101582 -0.483698635125)
(-0.125518408357 -0.096006302034 -0.421370090821)
(-0.133628307204 -0.0975616411668 -0.362181540503)
(-0.136671212536 -0.0960498317628 -0.30505999271)
(-0.136061403518 -0.0912545632104 -0.248510382372)
(-0.132263440795 -0.0833880131253 -0.193205789641)
(-0.12716701203 -0.0735365850124 -0.140903811909)
(-0.123392277497 -0.0632458687396 -0.0906715824323)
(-0.119466304962 -0.0542653758694 -0.0376355719518)
(-0.114072536468 -0.0463561983157 0.0174337691415)
(-0.106781593958 -0.040273090496 0.0702446624081)
(-0.0958811338151 -0.0363898375378 0.118789759057)
(-0.0817881168516 -0.034050506295 0.16077698277)
(-0.0655087522179 -0.0316953476715 0.194687477812)
(-0.0484722152291 -0.0277730493839 0.223528539495)
(-0.029122726866 -0.0221239425388 0.253170558749)
(-0.012302780487 -0.0141963270111 0.285500334031)
(-0.0198717952629 -0.116176878115 -0.59380332184)
(-0.0524615162309 -0.109653407611 -0.561205580814)
(-0.088911611395 -0.106220869677 -0.504848180926)
(-0.113421197142 -0.106961486073 -0.441056893993)
(-0.128298831691 -0.108906994721 -0.37687169968)
(-0.134896403501 -0.109425600392 -0.31646508914)
(-0.135280251676 -0.10589713219 -0.259439269306)
(-0.131365251393 -0.0982720686665 -0.204237723444)
(-0.124508779206 -0.0875981462487 -0.152130283446)
(-0.117811752208 -0.0755578502737 -0.105000956311)
(-0.114049782806 -0.0634604453821 -0.0600714037416)
(-0.110813728827 -0.051961681651 -0.0109748367048)
(-0.106171501288 -0.0419529577165 0.0402629317293)
(-0.0998128233356 -0.0340217850852 0.0902844830002)
(-0.0896716150433 -0.0287484259242 0.137401392049)
(-0.0761253834344 -0.0258588541627 0.178517445127)
(-0.0604842048463 -0.0243857558189 0.211342839301)
(-0.0442304572105 -0.0223000005809 0.238310670424)
(-0.0257247722506 -0.0180814114126 0.265290598945)
(-0.00985539942198 -0.0115705286538 0.294811515868)
(-0.0190710590105 -0.138764793818 -0.543874785903)
(-0.0530904844358 -0.130068761779 -0.514606274287)
(-0.0896540074959 -0.123124845032 -0.460008498784)
(-0.113690358665 -0.120419172679 -0.396164563701)
(-0.127825303637 -0.119214828319 -0.331508973689)
(-0.13261993602 -0.117764336905 -0.27028811816)
(-0.1298518177 -0.111265299344 -0.214354789939)
(-0.123059137096 -0.100291308418 -0.162022022131)
(-0.114360786961 -0.0868786295061 -0.114496421717)
(-0.106966522907 -0.0731412660252 -0.0722506970409)
(-0.103344500943 -0.0599044400741 -0.0322362388227)
(-0.101097131971 -0.0465456298084 0.0114155483298)
(-0.0978406887148 -0.0348350180397 0.0578332413352)
(-0.0928183315673 -0.0251597418618 0.104356290122)
(-0.0840698538808 -0.0182983398001 0.149557437071)
(-0.0716238735994 -0.0141667142932 0.189673118615)
(-0.056834408734 -0.0125504781221 0.222018233831)
(-0.0412039659907 -0.0112470262181 0.248204751964)
(-0.0228386424037 -0.00834077708691 0.273953912609)
(-0.00714457803572 -0.00315296823742 0.300345935331)
(-0.0178273749434 -0.161106254941 -0.481789636602)
(-0.0518794921531 -0.150481277715 -0.459089002305)
(-0.0873816743435 -0.140288785682 -0.407878790164)
(-0.110017439793 -0.133369604555 -0.345703053901)
(-0.12303399373 -0.127949241154 -0.282038361341)
(-0.125250474059 -0.122101153825 -0.221501707831)
(-0.118728196241 -0.112393472174 -0.168637280391)
(-0.109877198736 -0.0987653927608 -0.121718664156)
(-0.100766370652 -0.0838653900848 -0.0806442821533)
(-0.094137160836 -0.0694397852582 -0.0440271410425)
(-0.0911688507598 -0.0554804838399 -0.0087345816756)
(-0.0896906268379 -0.0411317417159 0.0292151737324)
(-0.0878214583981 -0.0278585486744 0.0701394747138)
(-0.0846379981941 -0.0163375300867 0.112592834276)
(-0.0778389513752 -0.00743181690306 0.155283046664)
(-0.0670225354845 -0.00134491686183 0.19382811409)
(-0.0533748046766 0.00158924794555 0.225512869707)
(-0.0386995592618 0.00333615078663 0.251223405465)
(-0.0211371026111 0.00622658395712 0.27614536446)
(-0.00429265643605 0.00986094901857 0.299110492952)
(-0.016017168247 -0.17984096395 -0.40734619677)
(-0.0488713914197 -0.168193778767 -0.39038504307)
(-0.082501885839 -0.155020815927 -0.345276405783)
(-0.102676508898 -0.143863691948 -0.287980182744)
(-0.112807141054 -0.13398616711 -0.228478938815)
(-0.11238671875 -0.122603646239 -0.170717695525)
(-0.103848067561 -0.110141612077 -0.123314107229)
(-0.0941223639275 -0.0951949777605 -0.0831535660186)
(-0.0857771551002 -0.0801482141047 -0.0483415952483)
(-0.0799490766305 -0.0656861074229 -0.016992435348)
(-0.0772852087023 -0.0512764481289 0.0132105619932)
(-0.0761691396825 -0.0362071054154 0.0453342143232)
(-0.0753538010248 -0.0216110566396 0.080407328431)
(-0.0738638512194 -0.00820086133631 0.117714374505)
(-0.0691035576277 0.00307641637318 0.156207392793)
(-0.0602988041048 0.0115770035671 0.19150878792)
(-0.0486579754386 0.0166286858266 0.221170483307)
(-0.0348498049398 0.0194111442965 0.245056715505)
(-0.0180356395117 0.0220571206125 0.269218162199)
(-0.00178484664395 0.0239131128963 0.290635331393)
(-0.0136831555553 -0.193042690529 -0.322658844518)
(-0.0438921207733 -0.180444059568 -0.312320653194)
(-0.0742662393984 -0.164940279246 -0.274963086078)
(-0.0917391394236 -0.149847949764 -0.224433828811)
(-0.0985342543804 -0.135608582783 -0.170971522192)
(-0.0959779214289 -0.12059517685 -0.121080239774)
(-0.0869133057227 -0.105905628866 -0.0802325480028)
(-0.0774882098492 -0.0909916251156 -0.0474475588794)
(-0.0702065328475 -0.0764091264313 -0.0187931263476)
(-0.0651732711507 -0.0621837706865 0.00726699010834)
(-0.0624940545229 -0.0476025372534 0.0324663660331)
(-0.0611807474263 -0.0318518519672 0.0593418507817)
(-0.0608097289999 -0.0160561714306 0.0883131092504)
(-0.0604327750342 -0.000855073171354 0.119514293792)
(-0.0574470922059 0.0128006560769 0.152367445877)
(-0.0509306833233 0.0237163981914 0.182883917908)
(-0.04179911952 0.0308100899922 0.208997023545)
(-0.0307314134964 0.0350266875949 0.231021173489)
(-0.0160608959031 0.0374753294796 0.25351945214)
(-0.00203144482383 0.0361576089438 0.27659986904)
(-0.009754940916 -0.195078704265 -0.233477736774)
(-0.0362648457279 -0.185157225002 -0.228479984052)
(-0.0634257536649 -0.16875897416 -0.199329447887)
(-0.0776243945691 -0.15111912953 -0.157549392369)
(-0.0817112944681 -0.133901585061 -0.112961899867)
(-0.0777690693595 -0.117296442213 -0.0727892399122)
(-0.0693790177438 -0.102227086259 -0.0403619708407)
(-0.0612802133623 -0.0880103024662 -0.013979531089)
(-0.0549406807876 -0.0740057719131 0.00946455878606)
(-0.0502027432737 -0.0598349823948 0.0307368329439)
(-0.0468866601987 -0.0448150779408 0.0507908349542)
(-0.0448527091937 -0.0283301050048 0.0724694514651)
(-0.0444191941065 -0.011482565323 0.0949248934099)
(-0.0445939780017 0.00520740184825 0.118812518059)
(-0.0430843504597 0.0209556984417 0.144502487186)
(-0.0389460925763 0.0340274762215 0.168587848484)
(-0.0328819349092 0.0432266012051 0.189567890422)
(-0.0251203094515 0.0489233909174 0.208304439811)
(-0.0142904465416 0.0523281067726 0.229400474984)
(-0.00315142389218 0.0502546909178 0.253864040552)
(-0.00866538152183 -0.188221392112 -0.135047012093)
(-0.0306584683886 -0.181154830725 -0.138353248373)
(-0.051900002594 -0.1659956768 -0.120377154044)
(-0.0629992045289 -0.148653825667 -0.0895556234842)
(-0.0649379058488 -0.131487142737 -0.0555193344793)
(-0.060586546779 -0.115581061774 -0.0251291037241)
(-0.0529758448694 -0.101938109139 -5.58967257629e-05)
(-0.0455925789359 -0.0887263993818 0.0202305995406)
(-0.0397038704811 -0.0751700984898 0.0381993113384)
(-0.0348332231425 -0.0606129385691 0.0541611886269)
(-0.0307493563601 -0.0445679223659 0.0689163838209)
(-0.0280238668671 -0.0270700928453 0.08497941717)
(-0.0272873623996 -0.00898078100441 0.100430022194)
(-0.0275023212442 0.00909386707783 0.116345626081)
(-0.0270926760709 0.0263900828942 0.133545771358)
(-0.025292572396 0.0410949873699 0.149818479205)
(-0.0223692169332 0.0519403787848 0.164397882507)
(-0.0182039410295 0.0591125364939 0.178722869845)
(-0.0109834608973 0.063428953899 0.197371923952)
(-0.00319470429598 0.0618083715973 0.222110364549)
(-0.00643027737915 -0.175714997175 -0.0444890702732)
(-0.0250314160193 -0.169311398636 -0.0508587152095)
(-0.0423717051618 -0.157492481399 -0.042101971928)
(-0.0510865486425 -0.143498145454 -0.0217812329927)
(-0.0515542989896 -0.129022556072 0.00250465740385)
(-0.0469200457643 -0.115438239938 0.0252499349316)
(-0.0394090847806 -0.102964365692 0.0445060894151)
(-0.0316181449581 -0.0908083005453 0.0600354532054)
(-0.0250822102877 -0.0774114605176 0.0728862793591)
(-0.0190820391907 -0.0621685028553 0.0831161548691)
(-0.0138229537485 -0.0450922657938 0.0914254965574)
(-0.0103317866275 -0.0268685855899 0.0997802855331)
(-0.00925450339594 -0.00796620794667 0.106658878327)
(-0.00968651300546 0.0108631830459 0.113449890582)
(-0.0105276098168 0.0287151354859 0.121084194552)
(-0.0111069824317 0.0440187336454 0.128551050404)
(-0.0111789862718 0.0556648307508 0.135916046016)
(-0.0103870245086 0.0637483869599 0.145203368567)
(-0.00719427689625 0.0685681273673 0.160950481158)
(-0.00349607305705 0.0685484210644 0.186075019654)
(-0.00526349687693 -0.15605656478 0.0333423950885)
(-0.0214518712726 -0.151835928033 0.0247753768735)
(-0.0356141704138 -0.144151675053 0.0295639474152)
(-0.0427537182441 -0.135047833435 0.0443045649071)
(-0.0425798088646 -0.124296254569 0.0628679826464)
(-0.0366948786144 -0.113211857124 0.0794095965235)
(-0.0279500320453 -0.101741050213 0.0937322567342)
(-0.0190427023216 -0.0900664947652 0.104207808821)
(-0.0107773214563 -0.0765701560296 0.110996027256)
(-0.00327319709971 -0.0610707759064 0.114498731967)
(0.00286030584722 -0.0439849371536 0.115693129328)
(0.00673297736698 -0.0260459200092 0.115035066546)
(0.00803405779581 -0.00758729371471 0.112493086938)
(0.00731130849512 0.0107132660432 0.109803674677)
(0.00518650069488 0.0278327691633 0.107755761427)
(0.00244341680249 0.0424713635856 0.106450430879)
(-0.000301608982745 0.0537765018692 0.106586473046)
(-0.00273346032832 0.0618241890136 0.110694299307)
(-0.00189140643349 0.0662447990946 0.122741380217)
(-0.00209932640347 0.0672444019965 0.146016987561)
(-0.00520077551279 -0.132149872409 0.0973294293973)
(-0.0207492816789 -0.1296869204 0.0875723114562)
(-0.0322257800982 -0.125977701409 0.0918695703567)
(-0.0376247660375 -0.121618095897 0.105540937856)
(-0.0361482922839 -0.115153392659 0.121705102943)
(-0.0289534297253 -0.106648987858 0.13551810043)
(-0.0186801892038 -0.0967394059711 0.145450717767)
(-0.00786381980334 -0.0856970954442 0.150623289152)
(0.00227681803929 -0.072697831441 0.150981642462)
(0.0111511848525 -0.0579615556696 0.147026242075)
(0.0181785592751 -0.0419479967175 0.139661280533)
(0.0225626188336 -0.0251976943528 0.129830448776)
(0.024046266874 -0.00814111814556 0.118044766624)
(0.0229528818689 0.00859277944381 0.10608855626)
(0.0196179278671 0.0239693739298 0.0951156382602)
(0.0148765113636 0.0369383506161 0.0858935850021)
(0.00957018996405 0.0468550340724 0.0797966389801)
(0.00400132254267 0.0537722464818 0.0795846630128)
(0.00186672833173 0.0574802523559 0.0888485681935)
(-0.00194692184251 0.057444795091 0.110854312702)
(-0.00564507041736 -0.105207439013 0.148134858734)
(-0.0222090949332 -0.104117973393 0.13952227085)
(-0.0320685998443 -0.103509964354 0.144924609591)
(-0.0354782917668 -0.103164691097 0.159506407374)
(-0.0319241192488 -0.100717159953 0.175272465831)
(-0.0226378881868 -0.0953635333644 0.187272242453)
(-0.0104206236795 -0.0876154290245 0.193201524959)
(0.00239791240166 -0.0776828059069 0.193379644932)
(0.0144668692633 -0.0657764233468 0.187455194689)
(0.0246921325197 -0.0524408283525 0.176515842186)
(0.0325331685336 -0.0380601284159 0.161365430854)
(0.0373244282361 -0.02344783143 0.14328081059)
(0.0388674755121 -0.00864401854864 0.123228704891)
(0.0372230877591 0.00557996768645 0.103199142408)
(0.0326030247883 0.0183577626851 0.0846857446375)
(0.0257633713485 0.0288753171216 0.0690354244571)
(0.0178096966905 0.0365439023646 0.0581483644338)
(0.00947266046742 0.0415710188837 0.0550044260582)
(0.00470660782239 0.0440710848064 0.0623826733222)
(-0.00219002051581 0.0436456855973 0.084236100953)
(-0.00632484885874 -0.0770125909684 0.18558698499)
(-0.025056012441 -0.0774428074306 0.1783709577)
(-0.0343044426534 -0.0789427410301 0.186912924696)
(-0.0362024227338 -0.081396498316 0.204251227424)
(-0.0299712907049 -0.0818853784485 0.221285008154)
(-0.0179796724696 -0.079551347519 0.232464248638)
(-0.00306460293787 -0.0741781332785 0.235449256936)
(0.0122585668922 -0.0658722708405 0.230707052645)
(0.0259356808789 -0.0558711024172 0.219493186278)
(0.0372164035747 -0.0446535431649 0.202372810297)
(0.045472718167 -0.0327304635905 0.18051558902)
(0.0503568042314 -0.0206279050091 0.155540421779)
(0.0518320962999 -0.00872803000316 0.128813084816)
(0.0494671678858 0.0024258571901 0.102310304076)
(0.0434096135421 0.0121669749578 0.0779030127453)
(0.0343452707437 0.0198423639606 0.0576015001157)
(0.0237850259566 0.0250407166046 0.0436571389187)
(0.0129769243009 0.0279419996606 0.0389296988943)
(0.00635815921295 0.028886364876 0.0453182116953)
(-0.00289022082128 0.0282825427681 0.0672364003762)
(-0.0070497887021 -0.0502512668432 0.208636498636)
(-0.0289048413268 -0.0515788977804 0.20464717437)
(-0.0381607342199 -0.0543903014012 0.21758781852)
(-0.0389619143414 -0.0582111378802 0.23918310723)
(-0.03036918813 -0.0604225348131 0.259022886109)
(-0.0154130980065 -0.0600620071373 0.2704565944)
(0.00261626622037 -0.0566489286949 0.271477367027)
(0.0200732403271 -0.050699596643 0.262972210167)
(0.0350383096837 -0.0432902391734 0.246831703641)
(0.0471318896641 -0.0349331821499 0.224581115032)
(0.0558674434053 -0.0262202162622 0.197936992299)
(0.060785933307 -0.017244179565 0.168121106214)
(0.0617555023905 -0.00860718271343 0.136611168105)
(0.0585549189591 -0.000710196440191 0.105419482926)
(0.0510219056545 0.00595533686928 0.0768727539065)
(0.0398683602592 0.0107924429301 0.0534570812849)
(0.0270683642548 0.0136224052037 0.0380794946911)
(0.0142692903878 0.0145864951002 0.0328703818944)
(0.0067952439012 0.0139889647403 0.0388730824822)
(-0.00407774977117 0.0125224157395 0.0603872452273)
(-0.00716535504434 -0.0259598984826 0.220147763785)
(-0.0312919913262 -0.0274647386557 0.221692917384)
(-0.0412002704949 -0.0302479468207 0.240734194354)
(-0.0416996103417 -0.0335666705928 0.266957154161)
(-0.031206854971 -0.0360430477326 0.289472534308)
(-0.0136998335629 -0.0364738949418 0.302048640067)
(0.00656675477996 -0.0350355053137 0.302317490338)
(0.0255349195654 -0.0312648839124 0.290473675804)
(0.0412038442019 -0.02665515879 0.271089264032)
(0.053389257889 -0.0215067894168 0.245380528585)
(0.061949876072 -0.0161665906311 0.215256067152)
(0.0666753470817 -0.0107142491734 0.182088806746)
(0.0672823506979 -0.00559580936373 0.147582601205)
(0.0634166773586 -0.00101196863505 0.113799569775)
(0.0547321694166 0.00280732449674 0.0830697480505)
(0.0418809404749 0.0053239533136 0.0581951576815)
(0.0274086395265 0.00654262264479 0.0425821282185)
(0.0130179626581 0.0067806495407 0.0375311630356)
(0.00531605508409 0.00606672827716 0.042929212325)
(-0.00655081550121 0.00561812720399 0.0613177172621)
(-0.00708171633712 -0.0119773225271 0.226142472966)
(-0.0310932967387 -0.0132568427514 0.238230118538)
(-0.041302116983 -0.0141511457218 0.263590174933)
(-0.0415551294388 -0.015139032431 0.292592719841)
(-0.0303517120361 -0.015785277951 0.317016056732)
(-0.0118298957731 -0.0157263126072 0.330060795239)
(0.00959464959789 -0.0149718975186 0.329348840012)
(0.0287940173595 -0.0132421177311 0.315303902429)
(0.0435761735607 -0.0115106051694 0.294063632741)
(0.0548046838489 -0.00969576404783 0.266518308171)
(0.0624133463594 -0.00791610063661 0.234868270391)
(0.0663977370015 -0.00629086182811 0.200758301274)
(0.0665195829936 -0.00497924056141 0.165714836032)
(0.0624463201363 -0.00403359823323 0.131425924653)
(0.0534517360448 -0.00355138025805 0.100580184505)
(0.0399826475072 -0.00361478988128 0.076338502076)
(0.025042476473 -0.0042181702619 0.0616222015453)
(0.00955726652342 -0.0051688425428 0.0563152656091)
(0.00262754339421 -0.00690548513482 0.0586111707668)
(-0.0102541167966 -0.00916022663644 0.0643094135294)
(-0.0206856094048 -0.016352800284 -0.690776170226)
(-0.0326087692172 -0.0127505033379 -0.671672232633)
(-0.0524747099249 -0.0120416759204 -0.645891109848)
(-0.0694641520553 -0.013057171765 -0.608416562051)
(-0.0832403009039 -0.0125963228594 -0.560567490823)
(-0.094418389052 -0.011971299193 -0.506587268223)
(-0.104105911797 -0.0102563111855 -0.447829396177)
(-0.111433160908 -0.00978077197987 -0.385939883222)
(-0.115702551978 -0.00964267682364 -0.31856076769)
(-0.117562645694 -0.00900770999046 -0.250447072484)
(-0.116733672416 -0.0081310744541 -0.180318563016)
(-0.113814794832 -0.00687065252489 -0.110044428925)
(-0.109166921911 -0.00546578839174 -0.0408100255203)
(-0.102089814383 -0.00407554121299 0.0237469517498)
(-0.0923642801138 -0.00239906306014 0.0827926857511)
(-0.0806689317158 -0.00068322593885 0.136105851896)
(-0.0674647160957 0.00146600298521 0.18242359353)
(-0.0530304265066 0.00382587158841 0.22108015803)
(-0.0338384472956 0.00631823230421 0.250519364489)
(-0.0204252983992 0.00886782101855 0.2670675171)
(-0.0170349476609 -0.0213203058248 -0.678332066885)
(-0.0292591302849 -0.0185841208368 -0.646279095164)
(-0.0520309966542 -0.0179910940398 -0.615047330227)
(-0.068880061824 -0.0195837314716 -0.5741537189)
(-0.0825007054351 -0.0210690822262 -0.525576544982)
(-0.0926537558991 -0.0224451162972 -0.472795126465)
(-0.100283658653 -0.0229530522503 -0.416533132144)
(-0.106731526032 -0.0234068003487 -0.357938812799)
(-0.110671553713 -0.0234552676299 -0.296301068784)
(-0.112559175492 -0.0227544503218 -0.234039485659)
(-0.111448170526 -0.0210625164627 -0.169955174002)
(-0.10722138472 -0.018735218121 -0.104719059201)
(-0.101364139505 -0.0162393109657 -0.0393984018856)
(-0.0939131961153 -0.014162687672 0.0202067677687)
(-0.0846821189316 -0.0126049185199 0.074348720617)
(-0.0736563147464 -0.0110975364809 0.122969355714)
(-0.0612400818326 -0.00910856100487 0.165573676363)
(-0.0478121762034 -0.00707921712337 0.202723085079)
(-0.03064296514 -0.00457915664077 0.235218272936)
(-0.0188579759355 -0.00181783261699 0.265264022104)
(-0.0161343899231 -0.0369685014398 -0.664075509527)
(-0.0288529423825 -0.0369749570621 -0.627687791567)
(-0.0530145365033 -0.0373702386369 -0.590106137622)
(-0.0710025843004 -0.0400584720115 -0.542355278948)
(-0.0838477754467 -0.0421839113653 -0.489872987328)
(-0.0919064944058 -0.0433502113345 -0.435696170964)
(-0.0973216924996 -0.0429634707903 -0.380378536181)
(-0.102107254281 -0.0413895150826 -0.323850134547)
(-0.104642801055 -0.039100151756 -0.265779717483)
(-0.105236542202 -0.035765446032 -0.207183522727)
(-0.103845165747 -0.0322926804521 -0.1482589201)
(-0.0994845294414 -0.0289810305308 -0.088557572234)
(-0.0938668588088 -0.0257184820287 -0.028000058857)
(-0.0871065388717 -0.0227843738633 0.0276024427559)
(-0.0783509497187 -0.0204200575088 0.0778945240423)
(-0.0677431930431 -0.0179671708439 0.122640508536)
(-0.0558018036326 -0.0148500390264 0.161609997418)
(-0.0431247646065 -0.0113854794603 0.196542591392)
(-0.0277512809903 -0.00788534483812 0.230374080663)
(-0.0166909693399 -0.00423339082434 0.264583406556)
(-0.0157175393516 -0.0528321584421 -0.640472204564)
(-0.0303446178542 -0.0520539293816 -0.601939645411)
(-0.0562543602968 -0.0527174478088 -0.558476507052)
(-0.0743865093323 -0.0555980721053 -0.506092654956)
(-0.0863471658664 -0.0578883744373 -0.450345974813)
(-0.093036653399 -0.05827270723 -0.394817694307)
(-0.0967943924623 -0.057322123251 -0.339943738519)
(-0.0995245943782 -0.0545553106131 -0.284913455995)
(-0.100143524887 -0.0504314326197 -0.229440735276)
(-0.0991277791584 -0.0453196694313 -0.174589794709)
(-0.0974624420635 -0.0400661995333 -0.120633156398)
(-0.093286799537 -0.0356064943292 -0.0655924935995)
(-0.0881513603065 -0.0316058034005 -0.00872570229157)
(-0.0821383872185 -0.0282338799614 0.0440927227935)
(-0.0738251691172 -0.0255900206348 0.0918382440327)
(-0.0633278069695 -0.0231335138484 0.133917443938)
(-0.0515098163234 -0.0201144717794 0.169886454918)
(-0.0391590606169 -0.0165337371716 0.201790573679)
(-0.0245957103771 -0.0129686596583 0.233853272185)
(-0.0144878513105 -0.00912479980007 0.267436923828)
(-0.0153751354648 -0.0686643771237 -0.606806184212)
(-0.0316654176331 -0.0665061823925 -0.568761147081)
(-0.0596198185297 -0.0663814962932 -0.521318680587)
(-0.0777832634476 -0.0680751478265 -0.466149269739)
(-0.0885251789629 -0.0696066595501 -0.408653904205)
(-0.0941844914463 -0.0694149083084 -0.352475301177)
(-0.0967420818237 -0.0676996088603 -0.298198495948)
(-0.0973373200036 -0.0636371953465 -0.244437664713)
(-0.0959104699404 -0.0577743947501 -0.191515022158)
(-0.0934387183965 -0.0509651619285 -0.140301847027)
(-0.0911888952868 -0.0440102562353 -0.0908403344219)
(-0.0874951392139 -0.0376704529777 -0.0400220072387)
(-0.0827812414169 -0.0325515239736 0.0137310507436)
(-0.0774216727193 -0.0284312385323 0.0640964672068)
(-0.0697146443817 -0.025488663626 0.110098866269)
(-0.059526926073 -0.0233080878974 0.150362763096)
(-0.0478039600414 -0.0209907860489 0.183939744752)
(-0.0357788334806 -0.0181196764608 0.212790696696)
(-0.021881009223 -0.0152239360899 0.241905403366)
(-0.0125473534309 -0.0114264028399 0.273758800557)
(-0.014493501846 -0.0843312830293 -0.564404495958)
(-0.0325553130601 -0.0803601737967 -0.529018001669)
(-0.0612306558703 -0.0783376401642 -0.480628542006)
(-0.0791216134917 -0.0782727075019 -0.424166210331)
(-0.0893613936879 -0.0785978918228 -0.365793907285)
(-0.0941580145964 -0.0778849013869 -0.309087261729)
(-0.0951512965899 -0.0748264783749 -0.256040240901)
(-0.0936055423637 -0.0691036713507 -0.203887875129)
(-0.090409892484 -0.0615803888051 -0.153918627097)
(-0.0869382360288 -0.0530397315254 -0.106836602799)
(-0.0841807930115 -0.044572460747 -0.0619068287389)
(-0.0809963857425 -0.0361998161659 -0.014804405104)
(-0.0769805251109 -0.0296651948565 0.0351460692063)
(-0.07229559063 -0.0244254851596 0.0826756653941)
(-0.0654030793475 -0.0208801447868 0.126879363616)
(-0.0559307381484 -0.0188011168249 0.165761438088)
(-0.0446259467262 -0.0171196969658 0.197528671045)
(-0.0329088028363 -0.0151916015002 0.224113427952)
(-0.0193456641298 -0.012888539852 0.250817925416)
(-0.0106982844308 -0.00937694415131 0.281084170754)
(-0.0133670997535 -0.099878066529 -0.513655419881)
(-0.0327614908979 -0.0942375075817 -0.482362745187)
(-0.0609500983657 -0.0898324577186 -0.435761347688)
(-0.0784776117037 -0.0875907361938 -0.379565551495)
(-0.0881079713879 -0.0862218529097 -0.321416558741)
(-0.0916737696635 -0.0841941321927 -0.265195553982)
(-0.090971290521 -0.0793360004301 -0.213872100959)
(-0.0877155645778 -0.071582342494 -0.164701328609)
(-0.0830967338532 -0.0622205525991 -0.118533285482)
(-0.0789029211119 -0.0523162949701 -0.0756248346723)
(-0.0763648452043 -0.0426152026072 -0.0351607193764)
(-0.0737778628868 -0.0329828070897 0.00742640236136)
(-0.0703644753808 -0.0250897983318 0.0526107676972)
(-0.066723242449 -0.0185261244562 0.0967154032084)
(-0.0609147749486 -0.0140207164543 0.138839340693)
(-0.0524697133698 -0.0114720607191 0.176248724526)
(-0.0417985586841 -0.00982912127328 0.206583353551)
(-0.0303540015458 -0.00835530664224 0.231697624489)
(-0.0170332621531 -0.00651356819668 0.256895466538)
(-0.00877724201486 -0.00316271435413 0.285297041636)
(-0.0121148314519 -0.114902866424 -0.452118367069)
(-0.0321233964105 -0.107837399975 -0.426821368109)
(-0.0582570172557 -0.101088775969 -0.384201753666)
(-0.0750323539731 -0.0964387495623 -0.330124591547)
(-0.0841582286814 -0.0925761840061 -0.274155184991)
(-0.0862408419576 -0.0880732208209 -0.219408420588)
(-0.0833439957905 -0.0810908836871 -0.171131382376)
(-0.0786252793927 -0.0716239709133 -0.126229551423)
(-0.0736004087403 -0.0610583864755 -0.0850756406986)
(-0.0697380017815 -0.0505280076534 -0.0471303622686)
(-0.0675084131648 -0.0400496601665 -0.0114924911388)
(-0.0652092159511 -0.0295138896505 0.0258778017649)
(-0.0628772763503 -0.0203641933678 0.0659649403958)
(-0.0604576905053 -0.0124535070829 0.106177212294)
(-0.0560205919998 -0.00666196632537 0.145550608683)
(-0.0487256117438 -0.00298492589667 0.180875783627)
(-0.0389469554435 -0.00055406850746 0.209473458395)
(-0.0280559439992 0.00121819207563 0.233438308313)
(-0.0148792730451 0.00352296468819 0.257226330477)
(-0.00663608711226 0.00642727433235 0.284703275015)
(-0.0105245333184 -0.126782120238 -0.381622054806)
(-0.0300096818231 -0.119051107743 -0.362424978303)
(-0.0542535667171 -0.110471155738 -0.32445226888)
(-0.0696756008555 -0.103643559814 -0.275143273814)
(-0.0770637246451 -0.0971534367854 -0.222900261138)
(-0.0774487936611 -0.0895034959286 -0.172195449468)
(-0.0731378730837 -0.0805932281466 -0.127944220436)
(-0.067812873409 -0.0702561554898 -0.0884100952429)
(-0.062997334143 -0.0593834404039 -0.052879848282)
(-0.0594845652701 -0.0486145852632 -0.0202846911828)
(-0.0572889069004 -0.0376590324433 0.0102377663073)
(-0.0550980903218 -0.0262199086956 0.0423412888306)
(-0.0538049649465 -0.0159861726964 0.0769499860817)
(-0.0526311704961 -0.00679478468946 0.112295966914)
(-0.0496533991058 0.000513719246907 0.147558225592)
(-0.0437424475574 0.00571090130266 0.17954413242)
(-0.0351885985925 0.00924741832581 0.205739688462)
(-0.0250863846633 0.0120144106936 0.227825301362)
(-0.0130248118308 0.0145360807751 0.249825263948)
(-0.00527219508935 0.0165375672013 0.274860458554)
(-0.00872924262754 -0.13424758302 -0.3014296312)
(-0.0273550889339 -0.126398014065 -0.289984372632)
(-0.048693993178 -0.116901355359 -0.25854132951)
(-0.0620785650835 -0.107767233174 -0.215471363202)
(-0.0675523641056 -0.0988364240238 -0.168561831706)
(-0.0664980378509 -0.0890521821586 -0.124056403908)
(-0.0615772763135 -0.0788842249201 -0.0853423425936)
(-0.0562360757902 -0.0683368859999 -0.0520506789514)
(-0.0517609162506 -0.0575372143576 -0.022482579172)
(-0.0484513766485 -0.0467047868123 0.00457898262693)
(-0.0459371043164 -0.0355951248111 0.0297640034912)
(-0.0437591686932 -0.0232622577652 0.05706533836)
(-0.0432068846033 -0.0121096245575 0.0857407316832)
(-0.0430295557034 -0.00177652351418 0.115332349819)
(-0.0413801278803 0.00706854050704 0.145358963862)
(-0.0371202091993 0.0138218456945 0.172809943621)
(-0.0303254702679 0.0187768845516 0.195772578571)
(-0.0220678625894 0.022611610782 0.214948912582)
(-0.0110351948728 0.0253557202679 0.235770250319)
(-0.00433179974899 0.0263416232624 0.260855629067)
(-0.00711924361112 -0.134636725997 -0.214528309819)
(-0.0233344283572 -0.128760171758 -0.212158607576)
(-0.041592333576 -0.118838130233 -0.188191047585)
(-0.0526699886389 -0.108492886463 -0.152435994514)
(-0.0566218005999 -0.0982082823641 -0.112605230312)
(-0.054556400841 -0.0875011950362 -0.07557537102)
(-0.0495400753825 -0.0771419407612 -0.0438534285232)
(-0.0445913320095 -0.0667510183897 -0.0167623436637)
(-0.0404370858905 -0.0561602532742 0.00722173537798)
(-0.0371540709787 -0.0452118049762 0.0286437479229)
(-0.0337144836595 -0.0336023797312 0.0481220644034)
(-0.0312245258106 -0.0207073951016 0.0707988775211)
(-0.0313245323499 -0.00890274634923 0.0930870963394)
(-0.0319073822292 0.00229497737704 0.116019604786)
(-0.0313691023571 0.0124630759057 0.139533402523)
(-0.0287851882746 0.0206742291063 0.161220406146)
(-0.0241254301266 0.0271312643787 0.179449826649)
(-0.0180865577776 0.0320711500067 0.195576288221)
(-0.00965187477932 0.0355168259887 0.214493803398)
(-0.00432064830043 0.0360901160062 0.240927026646)
(-0.00632541362299 -0.129429756398 -0.126634370241)
(-0.0204125146083 -0.124183174663 -0.130657803983)
(-0.0345811121152 -0.115708162391 -0.115366879992)
(-0.0432543017923 -0.106469631159 -0.0873736724584)
(-0.045888062914 -0.0969202201879 -0.0562274647605)
(-0.0433724928131 -0.0864209820811 -0.0272652082779)
(-0.0383134468638 -0.0765712259002 -0.00213526815375)
(-0.0332863810793 -0.066569690543 0.0189349229617)
(-0.0291517604693 -0.0562321139301 0.0371853581385)
(-0.0255135783783 -0.0450379260228 0.0528719554097)
(-0.0212734370334 -0.0326474512388 0.0667795052206)
(-0.0188308202282 -0.0197203724698 0.0843343922932)
(-0.0193250974308 -0.00725222057651 0.0995732783534)
(-0.0201577425802 0.00479323799666 0.115078296787)
(-0.0203829604231 0.016008565729 0.131059226147)
(-0.0192839435491 0.0254492909276 0.145811890256)
(-0.016870192777 0.0331665904872 0.158563556393)
(-0.0136092587085 0.03908493668 0.17076301116)
(-0.0077431596979 0.0432916549669 0.187639542905)
(-0.00453310882381 0.0445632872114 0.213255252461)
(-0.00497559630691 -0.121138012763 -0.0433068653708)
(-0.0174366956666 -0.115586031875 -0.0478556067305)
(-0.0295054743461 -0.108793182823 -0.0410617996762)
(-0.0365232408743 -0.101494737369 -0.0231561742825)
(-0.0376988808439 -0.0930017622794 -0.00072160611784)
(-0.034545153935 -0.0846240082084 0.0215694003965)
(-0.029093539673 -0.0756091098075 0.0415479098252)
(-0.0235305882714 -0.0663887548716 0.0573283174254)
(-0.0186928692436 -0.0563071302338 0.0701237504755)
(-0.0140928335177 -0.0447836606106 0.079991037102)
(-0.00919235811728 -0.0317979836879 0.0878868088962)
(-0.00664048122519 -0.019352867713 0.0983245647879)
(-0.00712906676815 -0.00670015073568 0.106141596558)
(-0.00817541536495 0.00584175379738 0.113429764231)
(-0.0091318016763 0.0174707966563 0.121111800081)
(-0.00945545091948 0.0275239711766 0.128191891629)
(-0.0091080020909 0.0358453707748 0.13480645139)
(-0.00838397111368 0.0424562166224 0.142623862969)
(-0.0046807656356 0.0471649324004 0.156637363708)
(-0.00428865775333 0.0478045699845 0.181949638742)
(-0.00396679446238 -0.109047517128 0.0297390501243)
(-0.0150661172497 -0.103304993808 0.0221925528409)
(-0.0248709678631 -0.0980881667206 0.0265292626181)
(-0.0304478529845 -0.0931182733273 0.0396099354824)
(-0.0319165428857 -0.0867290917791 0.0574336851736)
(-0.0283184054491 -0.0795717312724 0.0717180125669)
(-0.0214462699536 -0.0717639454155 0.0864806223908)
(-0.0148856992058 -0.0631720461484 0.0974689947904)
(-0.00868736671169 -0.0533595528726 0.104579728999)
(-0.00268292176507 -0.0421612731765 0.108458892002)
(0.00232011736629 -0.0300458614021 0.111951621136)
(0.00443840294261 -0.0185013369343 0.113269986525)
(0.00441701123944 -0.00644486568865 0.112263974587)
(0.00341397455063 0.00571297100045 0.111230018401)
(0.00170394779532 0.0169266463743 0.110324609927)
(1.33059175957e-05 0.0267188625641 0.109733707136)
(-0.00151344037561 0.034813661273 0.110102635038)
(-0.00334889076053 0.0413467450538 0.113877313267)
(-0.00281640838393 0.045713364418 0.124852468871)
(-0.00536995451056 0.0460982189576 0.147006654399)
(-0.00309347314739 -0.0928913836956 0.0910785390764)
(-0.0146015591946 -0.0881574046798 0.0810743228297)
(-0.0222366177871 -0.0852468317062 0.0845409209299)
(-0.0262904100496 -0.082577878966 0.0969814620428)
(-0.0262572246745 -0.0785628322586 0.111950302404)
(-0.0219204932779 -0.0724256813485 0.124665434292)
(-0.0145670533374 -0.0657721536401 0.135023562125)
(-0.00667735464083 -0.057872553694 0.140985429027)
(0.000691924347919 -0.0488248694022 0.142373330954)
(0.00726414974929 -0.0387244646149 0.139872500224)
(0.0124942283425 -0.0282224477984 0.13467453354)
(0.0151145047755 -0.0175993139646 0.12705304626)
(0.0156848619428 -0.0064415665026 0.118159285876)
(0.0144641040288 0.00445787661789 0.10895111296)
(0.0119766666248 0.014588409327 0.0998831731128)
(0.00886162331004 0.0233620072048 0.0924022203075)
(0.0053323451439 0.0303907866175 0.0875015806132)
(0.00110910756706 0.0359599447169 0.0876004286445)
(-0.000622885126091 0.0402054662326 0.0964017249647)
(-0.00597778620022 0.0413273393248 0.116739780343)
(-0.00222896157797 -0.0740572653324 0.141425443846)
(-0.0151163186764 -0.070451452991 0.131026702994)
(-0.0217685715659 -0.0695814669107 0.135100559627)
(-0.0244438038217 -0.0693590189731 0.147808019362)
(-0.0226045913918 -0.0675995748397 0.161913050286)
(-0.0169544910021 -0.0637455229758 0.17300616628)
(-0.00831498563595 -0.0584767251201 0.179027823763)
(0.00105176968628 -0.0517128933721 0.180315965274)
(0.00949974982848 -0.0435553468833 0.175963085766)
(0.0168431868023 -0.0346279570753 0.167117908299)
(0.0224201479976 -0.0253674767365 0.154580555098)
(0.0254155766862 -0.0160585692501 0.139761691466)
(0.0262267682623 -0.0064118897448 0.123967288466)
(0.0246997373629 0.00273027092039 0.107210323126)
(0.0212693492426 0.0110677342416 0.0912092133591)
(0.0164890240686 0.018169562359 0.0780531114594)
(0.0109321809003 0.0235932849887 0.0688848475697)
(0.00471647374265 0.0277633575555 0.0663324102717)
(0.00098436282783 0.0310426094327 0.0737305658887)
(-0.00671388105757 0.0323322113471 0.0927583434877)
(-0.00147968191599 -0.0548575346084 0.179846174058)
(-0.0164697532024 -0.0524282060857 0.170725194541)
(-0.0228589915923 -0.0530685043412 0.1762346721)
(-0.024693809577 -0.0546029406761 0.190214030685)
(-0.0210981758806 -0.0545861125251 0.20454963299)
(-0.0133876423185 -0.0527327011134 0.214303560001)
(-0.00329752316035 -0.0487543404062 0.217934809479)
(0.00758780807217 -0.0435356286523 0.214500076939)
(0.0173821740003 -0.03694083809 0.20476303733)
(0.0252474838226 -0.029553712144 0.190634278477)
(0.0311174773938 -0.0217894457275 0.172141875159)
(0.034439011581 -0.0139977353019 0.151480477017)
(0.0353405933927 -0.00622333372213 0.129737268181)
(0.0333918150633 0.000820577874379 0.106993704136)
(0.0289608504755 0.00699939698647 0.0857975928604)
(0.0225723583595 0.0120224628423 0.0685015245598)
(0.0151388508605 0.0158221683294 0.056373847017)
(0.00713509080644 0.0185055216442 0.0521434896176)
(0.00189632094208 0.0206199836343 0.0585735455573)
(-0.00769861883161 0.0220712951893 0.0765549360855)
(-0.000582703216581 -0.0369636162801 0.205266593442)
(-0.0185741435249 -0.0355151047041 0.199315995755)
(-0.0252447432652 -0.0373481233779 0.207448489543)
(-0.0264515821694 -0.0397581950797 0.223844134705)
(-0.0214511726665 -0.0407517835356 0.239202166323)
(-0.0119477061563 -0.0401518787079 0.248827561177)
(3.01113963182e-05 -0.0376272121002 0.250911722836)
(0.0122300724753 -0.0339369787603 0.244210383432)
(0.0229433562742 -0.0293151298404 0.230889724193)
(0.0317461248647 -0.0240113083917 0.211944188643)
(0.0382180437937 -0.0182636005966 0.188992879926)
(0.0417666845661 -0.0125139360496 0.16376503012)
(0.042383595186 -0.00687439978651 0.137037837173)
(0.0398626993662 -0.00190569892661 0.109890606149)
(0.0343886276625 0.00222942912158 0.0852907343187)
(0.0266824140154 0.00522296790575 0.0652349062569)
(0.0178836438027 0.00744815605727 0.0515794799687)
(0.00845965936014 0.00887447256293 0.046264227758)
(0.00256007846131 0.0100546012042 0.051698336208)
(-0.00867723312994 0.010572700916 0.0679316596315)
(0.000281455650167 -0.0191623329013 0.220286938884)
(-0.020265607184 -0.0199143160104 0.21974716242)
(-0.0272518961007 -0.0217744770297 0.232110454386)
(-0.0282074456129 -0.0235842897878 0.251134064456)
(-0.0221118506809 -0.0245610138522 0.268039951249)
(-0.0109805719043 -0.0241889572968 0.277728697652)
(0.00227637820595 -0.0232618381676 0.278362139878)
(0.015380142045 -0.020870285696 0.269890996162)
(0.0269197084735 -0.0179661583454 0.253523292225)
(0.0360064372487 -0.0148287643168 0.231572430493)
(0.042537520687 -0.0116793442732 0.205579393949)
(0.046255364881 -0.00842376377919 0.176983787912)
(0.0469662536578 -0.00510643890373 0.147215519826)
(0.0441679036862 -0.00251536552868 0.117862719177)
(0.0378392180711 -0.00043475063971 0.091589001064)
(0.0289876652511 0.0010822978835 0.0703126363051)
(0.019318728133 0.00187609326343 0.0561188821268)
(0.00904323937325 0.002681720673 0.0501892564971)
(0.00320260664419 0.00406067488391 0.0544868531461)
(-0.00975732087557 0.00566292996259 0.0670758341448)
(0.000879838441994 -0.0141173095482 0.226252656411)
(-0.0200903524729 -0.0151671543836 0.236764296038)
(-0.0261882194721 -0.0150398500692 0.255325159605)
(-0.0272710966978 -0.0148107769083 0.276329671568)
(-0.0205246323126 -0.0145644040844 0.294128737306)
(-0.0089096495565 -0.0138819964046 0.30393514956)
(0.00509599724807 -0.013128351737 0.303924742753)
(0.0185368205236 -0.0118222342802 0.293651020549)
(0.029401399303 -0.0105303559476 0.276062873076)
(0.0377603560668 -0.00939346559172 0.252635229542)
(0.0437761344262 -0.00858500781567 0.2250867027)
(0.0471660902836 -0.00786101763726 0.194839029952)
(0.0474309398603 -0.0074152906332 0.163817615999)
(0.0444580007827 -0.00737950076748 0.13383309673)
(0.0384375469822 -0.00769937824679 0.106697006578)
(0.0293230183661 -0.00794247442162 0.0851460245456)
(0.019264963022 -0.00878135016168 0.0708250479091)
(0.00811729095914 -0.00943738929733 0.0637311550963)
(0.00312918506343 -0.00992177058319 0.0645471777333)
(-0.0114386752923 -0.0104140402865 0.06083273059)
(-0.0455111870479 -0.0433040052139 -0.675645822792)
(-0.0213774160579 -0.0423041559128 -0.673178705982)
(-0.0394603423929 -0.0391520261222 -0.648415440086)
(-0.0495966207063 -0.0256499709113 -0.610303171917)
(-0.0566095600486 -0.0237042204707 -0.562730706782)
(-0.0614471512014 -0.0207127468635 -0.508897629143)
(-0.0620702302409 -0.0251805789197 -0.448300443495)
(-0.0636620381893 -0.0193857848924 -0.382483340016)
(-0.0639819762979 -0.0148500009439 -0.314502481781)
(-0.0630849023199 -0.00974765126385 -0.245003652186)
(-0.0694686177763 -0.00371855734628 -0.175370721582)
(-0.0683623684225 -0.0032924532796 -0.106150307095)
(-0.0655005410358 -0.00238908574892 -0.0382237216351)
(-0.0589473148197 -0.000735971357595 0.0245383319054)
(-0.0528772649561 0.00183479196254 0.081237196148)
(-0.0461706628574 0.00446411667996 0.132948411018)
(-0.0391326488749 0.00691527085202 0.178083189554)
(-0.0312230650326 0.00943750732225 0.214184115151)
(-0.0211224989148 0.0109535866035 0.242702658455)
(-0.0192556490639 0.0122345356336 0.251274572521)
(-0.0449417445337 -0.0155221822132 -0.678935484861)
(-0.0188596988862 -0.0130505960912 -0.643304369093)
(-0.0426298306479 -0.0144908941086 -0.612760900503)
(-0.0534384477849 -0.0161615861763 -0.568747674298)
(-0.0611740310713 -0.0172864657328 -0.520690357183)
(-0.0649641337288 -0.0175710618926 -0.467583548052)
(-0.0665774469368 -0.0169393739387 -0.410893178012)
(-0.0680949899004 -0.0149513649203 -0.351510480637)
(-0.0684364760399 -0.0139725606975 -0.29068110459)
(-0.0694191879382 -0.0120187593266 -0.228587764792)
(-0.0709782767796 -0.0112590647695 -0.165680468459)
(-0.068142436092 -0.00996626262985 -0.102337812931)
(-0.0630347860664 -0.00829047789666 -0.0377628455418)
(-0.0571986591355 -0.0061925915274 0.020383590553)
(-0.0517187238364 -0.00441608197841 0.073778570551)
(-0.0453489097311 -0.00267818649917 0.121713912085)
(-0.0380313580786 -0.000796698736356 0.163395222881)
(-0.0303737239641 0.000955808922722 0.19944574021)
(-0.0208170746728 0.00135793754078 0.232604638272)
(-0.0185692024839 0.000955832215793 0.256079573994)
(-0.0421295246431 -0.0316042825115 -0.663789175082)
(-0.0204860118813 -0.0341193624918 -0.623588468347)
(-0.0457820724054 -0.0365559644376 -0.583820759877)
(-0.0569720626121 -0.0384425849375 -0.535170544443)
(-0.0646780436994 -0.0390681997348 -0.484929780165)
(-0.0678843752739 -0.0379990419327 -0.430782340915)
(-0.0691938560768 -0.0355384641135 -0.376256706515)
(-0.0705650287327 -0.032321254789 -0.319887695858)
(-0.0701898500633 -0.0278359465193 -0.262348665925)
(-0.0696642745358 -0.0233923611746 -0.204251696327)
(-0.0696862958908 -0.019627569632 -0.146561139433)
(-0.0663426650712 -0.0165854643797 -0.0881641348394)
(-0.0607039699464 -0.0142221997939 -0.0276672950575)
(-0.0551066656889 -0.0117279642005 0.0267228713608)
(-0.0494095404223 -0.00953725550444 0.0760326407415)
(-0.0428923167125 -0.00722007993312 0.119934394079)
(-0.0356732444158 -0.0046898793711 0.158294730343)
(-0.0284839113563 -0.00227882656482 0.19259632585)
(-0.0204499606421 -0.000744190618932 0.22722253264)
(-0.0178879303002 -0.00181099808025 0.255443446155)
(-0.0401663053726 -0.0405740171511 -0.63651644066)
(-0.0225570096179 -0.0435505567367 -0.594288850207)
(-0.0490448801125 -0.0469951480174 -0.549575020425)
(-0.0600567840714 -0.0491806112154 -0.499230405462)
(-0.0665875467011 -0.0494185409037 -0.44641280107)
(-0.069066002465 -0.0477407720505 -0.391377351955)
(-0.0697239516177 -0.0444359651645 -0.337276801619)
(-0.0697036547195 -0.0400518420704 -0.283141557526)
(-0.0694765059434 -0.0358517839987 -0.228041211227)
(-0.0679780466583 -0.0304535737849 -0.173532977912)
(-0.0675589204464 -0.0256667278284 -0.120313165397)
(-0.0641676550097 -0.0210691344895 -0.0674898452347)
(-0.0585691118157 -0.0181193742028 -0.0103850647734)
(-0.0532984156271 -0.0154833000123 0.0411687159013)
(-0.0475637652699 -0.0131420912422 0.0876703985452)
(-0.0408069658404 -0.0107915917152 0.129008971794)
(-0.0334369743102 -0.00837519984907 0.164820940699)
(-0.0264281757412 -0.00581760594628 0.196767293125)
(-0.0189015778275 -0.00376847247326 0.230052095268)
(-0.0168605342989 -0.00459060364763 0.259199199663)
(-0.0377200690446 -0.0479233321683 -0.600074596992)
(-0.0242604177691 -0.0523744184282 -0.558220950343)
(-0.0503421685654 -0.0554858240071 -0.511683973872)
(-0.0614276769709 -0.0569301378274 -0.459788602237)
(-0.0670223364081 -0.05660544074 -0.405453759745)
(-0.0689003149684 -0.0543925185438 -0.350226321854)
(-0.0692037026204 -0.0508435663056 -0.297100413237)
(-0.068581739298 -0.045906376715 -0.244412795969)
(-0.0670854115659 -0.0403032420923 -0.192376952773)
(-0.0654240979582 -0.0350002584586 -0.140981919321)
(-0.063583581842 -0.0297776198239 -0.0910551220747)
(-0.0614703545666 -0.0230089726557 -0.0437769709051)
(-0.056105534909 -0.0192887537234 0.0102246299685)
(-0.0511871702251 -0.016326678873 0.0590908267986)
(-0.0456429192815 -0.0138005075734 0.103602715097)
(-0.0387958155492 -0.0115634182063 0.143019268631)
(-0.0312601836533 -0.00952820777327 0.176631087705)
(-0.0243614751541 -0.0073563457575 0.206022296517)
(-0.0166734960422 -0.00555118469956 0.2366132512)
(-0.0155045831708 -0.00677431064245 0.264688332844)
(-0.0342946865168 -0.0550070535374 -0.555472754566)
(-0.0248714000112 -0.0598960501287 -0.515943893696)
(-0.0501661959657 -0.062481588921 -0.469684079614)
(-0.0607601834674 -0.0627528520484 -0.417449015133)
(-0.065865511002 -0.0617136964921 -0.362348937469)
(-0.0674840605209 -0.0591269528261 -0.307449760937)
(-0.0675375129338 -0.0553878929504 -0.255712658208)
(-0.0661489157818 -0.0500080720914 -0.204933893453)
(-0.0640514514658 -0.0435584599958 -0.156015114061)
(-0.0616439503609 -0.0366755345881 -0.108596840651)
(-0.0593525566611 -0.0304308451062 -0.063212581522)
(-0.0577068179399 -0.0227375523242 -0.0195146105699)
(-0.0528513554043 -0.0184313375652 0.0307594761927)
(-0.0485459953358 -0.0149400351341 0.0766977455276)
(-0.0433648379277 -0.0120827646464 0.119044926955)
(-0.0366886716449 -0.00999418254448 0.156694361715)
(-0.0292112646516 -0.00823616344389 0.188159843881)
(-0.0223181321215 -0.00679844516953 0.215190389929)
(-0.014715322121 -0.00544289667821 0.243445097141)
(-0.0138902194432 -0.00745071433448 0.270459534289)
(-0.0299238953512 -0.0614816237038 -0.502317055524)
(-0.0245779503401 -0.066619512145 -0.467131461075)
(-0.0477500205061 -0.0681816924689 -0.42432307509)
(-0.0579940821743 -0.0674284889068 -0.37180949782)
(-0.0631709157585 -0.0656041516225 -0.316471529257)
(-0.0633824289744 -0.0616305244309 -0.263978052984)
(-0.0628198573993 -0.0571610578279 -0.214397257097)
(-0.0608893204238 -0.0511027409462 -0.166795749565)
(-0.0581937084629 -0.043876899784 -0.121115765972)
(-0.0561478616608 -0.0367017028151 -0.0774068544621)
(-0.0535063738312 -0.0289983367506 -0.0363920808573)
(-0.0524371016375 -0.0216267098705 0.00327180380137)
(-0.0480084174921 -0.0165364724992 0.0483340589709)
(-0.0448816698852 -0.0123334908308 0.0907712435423)
(-0.0404920927852 -0.0090666446474 0.130844289938)
(-0.0343505518546 -0.00680679884167 0.166532978408)
(-0.0270720590831 -0.0050860783283 0.19595944138)
(-0.0200799536691 -0.00389935634516 0.220861940672)
(-0.013151231366 -0.00298413709008 0.247370106166)
(-0.0121884713304 -0.00454735834278 0.273864373345)
(-0.0252762774717 -0.0684003880742 -0.439369260046)
(-0.0230931314806 -0.0723768856095 -0.410714195372)
(-0.0446253776259 -0.0738749846242 -0.371367127492)
(-0.0537198838587 -0.0717197765325 -0.321483261434)
(-0.0590672913284 -0.0691719897447 -0.269612274732)
(-0.0589150509984 -0.0640045432365 -0.219099229002)
(-0.057241309211 -0.058410136321 -0.172397608878)
(-0.0545398537259 -0.0513444699608 -0.128532662199)
(-0.0514629443213 -0.0433521586547 -0.0871558777813)
(-0.0492377163496 -0.0353587714276 -0.0482137305172)
(-0.0464314340549 -0.0271442052334 -0.0125858706744)
(-0.0448133424949 -0.0196484270251 0.0224087632417)
(-0.0425048177223 -0.0141674030279 0.0623203896524)
(-0.0406765961725 -0.00936362557425 0.100967758306)
(-0.0371513777385 -0.0056720065636 0.138148573747)
(-0.0315988462244 -0.00293172618786 0.171273730179)
(-0.0246586401411 -0.000883176935769 0.19842204489)
(-0.0181034110645 0.000450924630742 0.221596673398)
(-0.0119089212206 0.00169180744137 0.246006165128)
(-0.0105588495516 0.00174155679617 0.272800289722)
(-0.0194373219869 -0.072743388194 -0.367606511322)
(-0.0197016945262 -0.0765684153779 -0.345888156792)
(-0.0394414594007 -0.077731858179 -0.311250374081)
(-0.0481867157278 -0.0750877991449 -0.266755914604)
(-0.0528105189534 -0.0712268272489 -0.218929303897)
(-0.0523531183694 -0.0646245160859 -0.172368936214)
(-0.0500483296005 -0.0580400888878 -0.129704311544)
(-0.0469949221294 -0.050439741366 -0.0903239181123)
(-0.0437241004102 -0.0419026189886 -0.0544209124704)
(-0.0416455682726 -0.0339076390108 -0.0209351990921)
(-0.0388623699437 -0.0257059475754 0.00941023757712)
(-0.036034570216 -0.0175315326451 0.0394266776794)
(-0.0366449892341 -0.0119732914705 0.0737465679749)
(-0.035581901102 -0.00664636140764 0.107805073836)
(-0.0329036227782 -0.00227328267002 0.140828869767)
(-0.0280537028242 0.00118408238495 0.170446515058)
(-0.0218471744926 0.00374455368049 0.19497951884)
(-0.0155443530834 0.00565015827526 0.21543104601)
(-0.0098976215442 0.00723870297896 0.237507937955)
(-0.00975664391816 0.00866030709225 0.263902994687)
(-0.0138736769578 -0.0725335652344 -0.288554890582)
(-0.0164974532822 -0.0782656716732 -0.275654209409)
(-0.0335141572903 -0.0794589382041 -0.246546843835)
(-0.0412877693217 -0.075762979522 -0.20861515732)
(-0.0451705697443 -0.070927507049 -0.16522685917)
(-0.0444555781826 -0.0636869717405 -0.124319496806)
(-0.0417808385089 -0.0564675401427 -0.0867709783209)
(-0.0385535445923 -0.0484569910638 -0.0531566974862)
(-0.0355792457686 -0.0401331280509 -0.0232213544274)
(-0.0334590599465 -0.0322250757642 0.00452665051452)
(-0.0302974429544 -0.0243902017978 0.0292941676557)
(-0.0282336356764 -0.0156283706467 0.0543699436026)
(-0.0298116207191 -0.00993564836125 0.0830390436108)
(-0.0296758387962 -0.00440482434957 0.111632641156)
(-0.0277548718261 0.00058143249117 0.139681346944)
(-0.0237664606007 0.00478513842713 0.164891260099)
(-0.0184390585094 0.00821689539375 0.185836667953)
(-0.0133338308506 0.0108685917409 0.203641562086)
(-0.00886354613353 0.0127986752608 0.224210267657)
(-0.00909096883335 0.0156250614539 0.249433409529)
(-0.00943561235726 -0.0687004915941 -0.203892798487)
(-0.0130666048168 -0.077656441472 -0.199626282331)
(-0.0266135452268 -0.0778580845555 -0.178585995398)
(-0.0338799608202 -0.0746799192096 -0.14669957126)
(-0.0369190037235 -0.0690245615298 -0.10971202313)
(-0.0362282810742 -0.0617155093741 -0.075205214979)
(-0.0333562809518 -0.0540654985947 -0.0442204011224)
(-0.0302151269781 -0.0462057329545 -0.016922849101)
(-0.0276260433903 -0.0382968178602 0.00746967555493)
(-0.025640214111 -0.0305137994654 0.0291154120616)
(-0.0225671897049 -0.0231839837541 0.0463802395505)
(-0.0193745898293 -0.0137297069618 0.0679323581675)
(-0.0227128901948 -0.00844479001131 0.0909781892038)
(-0.0229184355967 -0.00256172678153 0.113081388317)
(-0.0217066892974 0.00289662314737 0.135120888851)
(-0.0187039474033 0.00780519522932 0.154895288946)
(-0.0145699009264 0.0122764336023 0.17126102883)
(-0.0107643119228 0.0154154963489 0.186048224471)
(-0.00700075726727 0.0186087136883 0.204135852097)
(-0.00899436219333 0.0221154658127 0.229322214151)
(-0.00451316468915 -0.0722892716239 -0.11983534158)
(-0.0119399143897 -0.0726176167723 -0.122733208536)
(-0.0208255273239 -0.0725280499765 -0.107867411004)
(-0.0268845311823 -0.070966053366 -0.0818022500724)
(-0.029039840849 -0.0653458588205 -0.0541318198604)
(-0.0281218337133 -0.0580902589581 -0.0269315406959)
(-0.0253164259995 -0.0510642465946 -0.00209722926149)
(-0.0222529226468 -0.0438523015961 0.0193851237937)
(-0.019769389307 -0.0366617475437 0.0378824588783)
(-0.017528415508 -0.029067732454 0.0534169633306)
(-0.013583324348 -0.0215236846216 0.06517932243)
(-0.0128291052669 -0.0141651265104 0.0810475144443)
(-0.0157028268494 -0.0077788310949 0.0979007112)
(-0.0160263240536 -0.00154108486448 0.112970385866)
(-0.015209029109 0.00440140263182 0.128071692237)
(-0.0129656264198 0.00992950467058 0.141422788027)
(-0.0101911089334 0.0148612355988 0.152788583552)
(-0.00789455631106 0.018854227369 0.163885470984)
(-0.00608391459662 0.0231597009364 0.179163750903)
(-0.00984004626254 0.0270686819362 0.203561681638)
(-0.00278128207023 -0.0702316056946 -0.04124722204)
(-0.00984943444681 -0.0674397029034 -0.0457238464386)
(-0.0180115339225 -0.0664966916385 -0.039693477228)
(-0.0231719594711 -0.0626703438253 -0.022510597171)
(-0.0233558526803 -0.0561906947783 -0.00271893215228)
(-0.0216084281786 -0.0528642416793 0.0201857031157)
(-0.0186320401006 -0.0473780840327 0.0402146535239)
(-0.0154368419833 -0.041292872713 0.0564411902706)
(-0.012581120336 -0.0347750038978 0.0693372957633)
(-0.00964232499136 -0.0272490838279 0.078834035064)
(-0.00548614694827 -0.0185315065227 0.0848805379717)
(-0.00508450990465 -0.0135346034471 0.0955704931973)
(-0.00812280634358 -0.00748079645315 0.104545298804)
(-0.00883292147339 -0.000772591949909 0.111812309788)
(-0.00854446630966 0.00511248420093 0.119469681398)
(-0.00723777087061 0.0107299079872 0.125952784593)
(-0.00585513954264 0.0154810218474 0.131972938792)
(-0.00518375232487 0.0201311176987 0.139141103511)
(-0.00524758991478 0.0244402936954 0.152652198988)
(-0.0109436936063 0.0296295955538 0.173030587977)
(-0.00164818855661 -0.0620510576282 0.0288598595206)
(-0.00749423565415 -0.05982253878 0.0202792091717)
(-0.0138930675777 -0.0573906478297 0.0241054379714)
(-0.0173185032131 -0.0547865574156 0.0359895536335)
(-0.0200848241011 -0.0507625119785 0.0507505668743)
(-0.0193060636053 -0.0448947249352 0.0654075449575)
(-0.0133464148802 -0.0402396002265 0.081460282536)
(-0.00936806480643 -0.0351041966226 0.0929259041471)
(-0.00559168024848 -0.029134613275 0.10019240903)
(-0.00126490718843 -0.0230939989678 0.104014600874)
(0.00249784384723 -0.0156158889875 0.106701630125)
(0.000524705035727 -0.0122041713043 0.10982926231)
(-0.00116423396363 -0.00652587273551 0.109911901212)
(-0.00216642311211 -0.000622410121261 0.11016872609)
(-0.00237972406659 0.00499803878062 0.109953544383)
(-0.00213848535166 0.0101048794605 0.109856616016)
(-0.00180397247805 0.0146955661121 0.110315591875)
(-0.00280305454662 0.0184905827877 0.114389322414)
(-0.00458357254207 0.0226298554789 0.126144594465)
(-0.0118858437058 0.0291134103858 0.144780907281)
(0.000728509223237 -0.0519107421624 0.0867566431772)
(-0.0063129865568 -0.0516190938372 0.0767345845087)
(-0.0112072600394 -0.0506721539344 0.0788581236755)
(-0.0138506499726 -0.0490653542983 0.0902095977329)
(-0.015044507385 -0.0466641627777 0.104284212641)
(-0.0133716998385 -0.0402931974687 0.116184520522)
(-0.00889251043585 -0.0352581049409 0.126050449531)
(-0.00433638034854 -0.0304522937924 0.132291732324)
(8.66291612264e-06 -0.0252355685228 0.134088510492)
(0.00419447744827 -0.0194651313443 0.131983242668)
(0.00707553971527 -0.0150999539715 0.127179788655)
(0.00660075040988 -0.0113704079975 0.122071342718)
(0.00610293417722 -0.00527967954903 0.115407848632)
(0.00421009802652 -0.000671422497011 0.108362517928)
(0.00324012567534 0.00402050234244 0.100783659874)
(0.00254927576437 0.00830229708071 0.0947002520078)
(0.00139552171461 0.0118703089069 0.0909564791565)
(-0.000956607577242 0.015229677029 0.0916928007913)
(-0.00412619464078 0.0192003675128 0.101583599739)
(-0.0132182497194 0.0263324889542 0.117498733764)
(0.00350028340024 -0.0404894924012 0.13684449909)
(-0.00564730004125 -0.041439776757 0.126688178754)
(-0.0103295776935 -0.0416776020227 0.128107190273)
(-0.0123352836296 -0.0416363057919 0.139118509069)
(-0.0118925969022 -0.0401568073419 0.151792236209)
(-0.0095987630451 -0.03678143191 0.162491151997)
(-0.00529885225624 -0.0327518164272 0.168146662866)
(4.79558143348e-05 -0.0279935956869 0.168411261747)
(0.00493381320559 -0.0236654036463 0.164754379065)
(0.00930837766719 -0.0185462842997 0.156583271805)
(0.0124963869482 -0.0139157062695 0.14497427427)
(0.01292681942 -0.010032623693 0.133646087463)
(0.0122064921599 -0.00493031546007 0.121040618557)
(0.00960066622885 -0.00120158300706 0.107019085429)
(0.0081069922166 0.00257691067706 0.0932800766253)
(0.00620185426104 0.00573188012538 0.0822993841947)
(0.0037894937929 0.00861841831216 0.0743753402369)
(0.00037329303387 0.010946217098 0.0730875845072)
(-0.00383956689945 0.0135952917043 0.0823227788199)
(-0.014350234407 0.0211748965546 0.0951569142721)
(0.00625728245079 -0.0299868155254 0.175784101424)
(-0.00556378849573 -0.0306185880943 0.167768461246)
(-0.0104515843652 -0.0321773961744 0.169204942269)
(-0.0122480683165 -0.0330367245735 0.180378179822)
(-0.0108365356279 -0.0326895032027 0.192467115109)
(-0.00719702936533 -0.0311936497117 0.201392712873)
(-0.00244703212373 -0.0276953207455 0.20433899121)
(0.00289084812624 -0.0245479128918 0.201256111016)
(0.00843393362713 -0.0210029673225 0.192732299228)
(0.0141112907641 -0.0160169999795 0.178032746135)
(0.0172766278729 -0.0119707607025 0.161183664576)
(0.0181992667764 -0.00829479002687 0.144799873413)
(0.017431274105 -0.00478207820482 0.126650364858)
(0.0142848605783 -0.00201890313717 0.107292581263)
(0.0121268617712 0.00077008186214 0.0889359238272)
(0.00905035864485 0.00269715625579 0.074316954636)
(0.00545749524298 0.00461651619455 0.0635601517106)
(0.00112325282153 0.00599981615841 0.0607159655823)
(-0.00388797488297 0.00817296249878 0.0688849681834)
(-0.0153323115622 0.0149496159309 0.0792923792112)
(0.00920767643565 -0.0206463373263 0.203092362627)
(-0.00597204050763 -0.0207810696681 0.197643766763)
(-0.0119394748614 -0.0233987037756 0.201297960795)
(-0.0131730521399 -0.0249157831893 0.213746631709)
(-0.011090587595 -0.0250237757447 0.225774775997)
(-0.00629420379195 -0.0242819145053 0.233497867288)
(-0.000527867080307 -0.0222518883007 0.234982509885)
(0.00543964228023 -0.0193792147041 0.229208630031)
(0.0113962715314 -0.0166442846156 0.217370077314)
(0.0161476187789 -0.0140757896101 0.200375375245)
(0.0199916971532 -0.0110480526463 0.179635174563)
(0.0222088075941 -0.00819069067351 0.15688956118)
(0.021171575946 -0.00592181914702 0.133902320193)
(0.017981017275 -0.00381398357586 0.110713982209)
(0.0150575587449 -0.00196528621024 0.0896512079137)
(0.011397273759 -0.000978956731467 0.0722182047782)
(0.00675330232991 -1.73509740768e-05 0.0603335989341)
(0.00170324868527 0.000992331097083 0.055773348565)
(-0.00347777346772 0.0028902074075 0.0627715745525)
(-0.0158814077998 0.00827026152723 0.0692656985664)
(0.0110602327111 -0.0120588449502 0.221971695854)
(-0.00785336765075 -0.014677631575 0.221423022445)
(-0.0140144334281 -0.0166608528053 0.228832428123)
(-0.0143297570847 -0.0173462596335 0.243195658073)
(-0.0116840901349 -0.0175124083689 0.255700391278)
(-0.006336376526 -0.0171308435654 0.263387767557)
(0.0008585018288 -0.0158782494121 0.263706354332)
(0.00716585322098 -0.0137241903917 0.255616459336)
(0.0132244989202 -0.0120259310364 0.240870869822)
(0.0187478211849 -0.0103071618322 0.221052841028)
(0.0228269579942 -0.00880190711606 0.197480906548)
(0.0250955924748 -0.00766987146046 0.171634171257)
(0.0249122841027 -0.00684500251726 0.145596624018)
(0.0217173904684 -0.00566342260362 0.120765506236)
(0.0178781819358 -0.00490272697184 0.0982864350618)
(0.0133056215278 -0.00460606961043 0.0795560064039)
(0.0081306555053 -0.00466316837123 0.0668036085555)
(0.00289480683037 -0.00398225915611 0.0612578551311)
(-0.00188083586425 -0.00170856321029 0.0665171347096)
(-0.0153211846948 0.00179440120232 0.0707873331006)
(0.0100408071586 -0.0179668892401 0.224907195444)
(-0.00961792023089 -0.0202845018955 0.236754384783)
(-0.0143152786528 -0.0195282943739 0.248744097689)
(-0.0158120857979 -0.018485799053 0.265345201556)
(-0.0130263455456 -0.0179783173258 0.278836466)
(-0.00680715214328 -0.0168575562121 0.286566959953)
(0.00120137130712 -0.0155932802112 0.286533385378)
(0.00899803329928 -0.0149877424252 0.277514775435)
(0.0159674184182 -0.0139699203486 0.261838037367)
(0.0217796736092 -0.0133392501305 0.240753966086)
(0.0261001459961 -0.0131914605266 0.215575494509)
(0.0285195474978 -0.0132321415163 0.18783230888)
(0.0292910049549 -0.0138239805953 0.15902213327)
(0.027724137647 -0.0139742304492 0.131804295924)
(0.0239235377173 -0.0145541250007 0.107167200148)
(0.0185291311871 -0.0151761786864 0.086956685333)
(0.0125161693262 -0.016058400647 0.0729684636024)
(0.0060798240125 -0.0163341055829 0.0649197122843)
(-0.000119069750582 -0.0153493279672 0.0682154051086)
(-0.0159661911684 -0.0151407658032 0.0560730874205)
(-0.077747100931 -0.0775510549121 -0.57370338121)
(-0.0167299904211 -0.0888081990316 -0.594779156542)
(-0.0340213102708 -0.0917779520018 -0.560224654893)
(-0.0310908903268 -0.0899653427581 -0.531420033381)
(-0.0318149801129 -0.0825455893705 -0.493217131032)
(-0.0303295866184 -0.0744622464957 -0.447046801844)
(-0.0400239749412 -0.0631077548307 -0.394965807526)
(-0.038471352812 -0.0525509732914 -0.340095920642)
(-0.0349299728201 -0.039488737879 -0.284012964748)
(-0.0372278771494 -0.0270706910265 -0.227497868208)
(-0.023805626292 -0.0110648102227 -0.166572835758)
(-0.0277205354382 -0.00029638463319 -0.106416461034)
(-0.0261553884701 9.79026405425e-05 -0.0387871455849)
(-0.0196864286268 0.00126155200793 0.0200721742582)
(-0.0187230855877 0.00283193120014 0.0762828587157)
(-0.0178378481686 0.00459753195525 0.125738903757)
(-0.0157939488882 0.00720866371979 0.16733280072)
(-0.0122762729977 0.0070862318294 0.201993147638)
(-0.0103097570739 0.00942837880561 0.232985131937)
(-0.0106403039323 0.00915338635238 0.229971156076)
(-0.0901069145598 -0.0159558178475 -0.598908386108)
(-0.0247991342589 -0.0224003932605 -0.626524442443)
(-0.0432622527072 -0.0239339407489 -0.582338258922)
(-0.0477360930195 -0.0223006036516 -0.543828576343)
(-0.0479354572797 -0.0189991118518 -0.49976699309)
(-0.0484614290554 -0.0166019520916 -0.449695756329)
(-0.0523499638258 -0.0168530846071 -0.394664980849)
(-0.0519764069685 -0.013914806991 -0.337582381196)
(-0.0488159335775 -0.00989533004165 -0.280391758247)
(-0.0492615159223 -0.00936049715267 -0.221781559216)
(-0.0373028095214 -0.00951086570864 -0.15763434018)
(-0.0418670476415 -0.00364528512765 -0.101572751076)
(-0.0372392928981 -0.00235020141113 -0.0378482949414)
(-0.0315583265062 -0.000571938518879 0.0199871778144)
(-0.0285161263234 0.00125168028775 0.0741206184576)
(-0.0254033426332 0.00289375063914 0.121726511361)
(-0.0216591647546 0.00431283581989 0.163068038779)
(-0.0171823196995 0.00560978166014 0.19851093405)
(-0.0124354663123 0.00607931290869 0.231468197952)
(-0.0089023229189 0.00598779213281 0.246286774614)
(-0.0947144234487 -0.0318318470271 -0.573361070933)
(-0.0278205493653 -0.0396975215439 -0.591398289956)
(-0.0438753160526 -0.0385229390222 -0.542752199176)
(-0.0384612800844 -0.0310882664082 -0.503091344604)
(-0.0402459446533 -0.0290463976537 -0.456993602937)
(-0.0409102031465 -0.0259025799316 -0.407289889077)
(-0.0414111897786 -0.023160659174 -0.355697464235)
(-0.047550601988 -0.0238546127685 -0.301626626917)
(-0.0457378933621 -0.0191502464486 -0.248918874831)
(-0.0467697212104 -0.0190143506485 -0.194206593087)
(-0.0369804143553 -0.0198450700758 -0.136657067773)
(-0.045587778161 -0.00807437227299 -0.0877680076511)
(-0.0404990227413 -0.00569735635907 -0.0285070322714)
(-0.0350734672089 -0.00371236002489 0.0259692268966)
(-0.0310419923006 -0.0018737723792 0.075777164176)
(-0.0269207601518 0.000202077150713 0.1195616528)
(-0.0224539037717 0.002406430422 0.157695516243)
(-0.0178056162506 0.00436936135502 0.191504940888)
(-0.0132653555269 0.00512150927725 0.225016936923)
(-0.00948294702483 0.0052742328872 0.242831080034)
(-0.0942682670278 -0.0395465152137 -0.553101508521)
(-0.0292978764536 -0.0440251874503 -0.565766982083)
(-0.0402866877632 -0.0386591289504 -0.514946648048)
(-0.03809401907 -0.0327117905235 -0.471551329186)
(-0.0391759105593 -0.0303967964303 -0.423240108364)
(-0.0394907087929 -0.0275744239706 -0.372719263565)
(-0.0390797554594 -0.0244349274222 -0.321675536878)
(-0.0387992268267 -0.0216361447207 -0.270287525604)
(-0.0416348162295 -0.0213794345365 -0.21758791329)
(-0.0389325022644 -0.0177432530916 -0.167849725467)
(-0.0350484325859 -0.0235402053374 -0.112683267181)
(-0.0468596983163 -0.0111617362708 -0.0679283010977)
(-0.0410900899078 -0.0079236927328 -0.0123678155164)
(-0.0357379487895 -0.0058166749586 0.0390066029611)
(-0.0312758080878 -0.00391426335061 0.0857732755301)
(-0.0266485410907 -0.00175439238298 0.127174223718)
(-0.0218000365254 0.000279443778476 0.163146883108)
(-0.0172554857255 0.00255211931904 0.195081724365)
(-0.012098907266 0.00444548674387 0.228703326038)
(-0.0103956341199 0.00610008149536 0.24621993243)
(-0.0918114435644 -0.0425058023595 -0.52597286828)
(-0.0298832837101 -0.0482351696137 -0.534948088586)
(-0.0349703219854 -0.0371919254422 -0.484526105383)
(-0.0367873026974 -0.0349844354913 -0.437547243033)
(-0.0378303112372 -0.0328349369155 -0.387808007124)
(-0.0379246740401 -0.0298271468422 -0.336965459177)
(-0.0371591230807 -0.0267291406076 -0.285999879304)
(-0.0358131529399 -0.0228976725005 -0.236239014851)
(-0.0344114668376 -0.0198194236857 -0.186607129989)
(-0.0352201656219 -0.0190378897209 -0.137505552674)
(-0.0346091100445 -0.0189151152917 -0.0880181208037)
(-0.0461125211575 -0.0126916697711 -0.0451185665091)
(-0.0400474314907 -0.00874406089575 0.00739540716721)
(-0.0347876696084 -0.00642206083725 0.0556633894031)
(-0.0303735399023 -0.00441669228037 0.100366564304)
(-0.0255519604887 -0.00228180720795 0.139801358842)
(-0.020513848326 -0.000422428283342 0.173729202304)
(-0.016144797911 0.00176445349262 0.203673038938)
(-0.0106116549831 0.0042427492907 0.235874521815)
(-0.00903222185678 0.00511569141132 0.252636147273)
(-0.0867540302296 -0.0434610177789 -0.491113421908)
(-0.0286658185774 -0.0511186870153 -0.497936918453)
(-0.0331351689275 -0.0395216881682 -0.4481003905)
(-0.0347974647402 -0.0369126069461 -0.400525702592)
(-0.0355597817167 -0.0344150322504 -0.350353447615)
(-0.0352000015526 -0.0310257005986 -0.299483111849)
(-0.0343544983541 -0.0279539532307 -0.249352839216)
(-0.0329844145474 -0.0242510807478 -0.201341590836)
(-0.0312014694102 -0.0202446307952 -0.154074117038)
(-0.0301376241537 -0.0168836987917 -0.107846061348)
(-0.030008684142 -0.0148648247208 -0.062953850368)
(-0.04330575424 -0.0124433081859 -0.0212292260816)
(-0.0376834852464 -0.008797755464 0.0276777812651)
(-0.0330450716652 -0.0063527131902 0.0729270740635)
(-0.0288793445259 -0.0040808952282 0.115269312611)
(-0.024095732515 -0.00222071889212 0.152796554435)
(-0.0190303405193 -0.00039708484931 0.184492543983)
(-0.0147066849781 0.000932997218511 0.212105402137)
(-0.00968910495228 0.00269609686887 0.24241582305)
(-0.00685345426616 0.0036660252276 0.25861773828)
(-0.07916433619 -0.0435293834997 -0.448381093941)
(-0.0263478145575 -0.0534717220787 -0.453874419992)
(-0.0306380114629 -0.0416966812177 -0.406911790288)
(-0.0314097337178 -0.0381542345551 -0.36014644977)
(-0.0322446010624 -0.0353372050402 -0.30995749151)
(-0.0292806483204 -0.0289705398377 -0.260979074988)
(-0.0283823925176 -0.0257145889143 -0.21280251603)
(-0.0269702551843 -0.0223087509292 -0.166865834412)
(-0.0255906873138 -0.0185100498118 -0.122540490503)
(-0.0259711077661 -0.015685195735 -0.0789405399387)
(-0.0247625905603 -0.0119828835918 -0.0384640330317)
(-0.0386316466226 -0.012157387391 0.0024091105798)
(-0.0332447874977 -0.00857933204966 0.0459085744886)
(-0.0302764135346 -0.00595563850263 0.0878487864689)
(-0.026727767388 -0.00349964059665 0.127427025224)
(-0.0222439901792 -0.00168665355721 0.162599841433)
(-0.0172173565629 -3.62483641718e-06 0.191871632975)
(-0.012790031443 0.00113729649542 0.217483316117)
(-0.00796774536501 0.00247891670433 0.246803208084)
(-0.0084572661696 0.00168149695943 0.261503285136)
(-0.0693682878567 -0.0438491594218 -0.397765211868)
(-0.0221117042865 -0.0555050213109 -0.402699800951)
(-0.0329716270197 -0.0507366422183 -0.358555033939)
(-0.0283758617621 -0.0399834696009 -0.315463005173)
(-0.0295089174706 -0.0363187497557 -0.266737400415)
(-0.0261703216842 -0.0292996923786 -0.219898236755)
(-0.0248901869605 -0.0255506116252 -0.17416794421)
(-0.0232027718489 -0.0215956363907 -0.131513156317)
(-0.0215645581692 -0.0174478337629 -0.0910889892934)
(-0.0211529253385 -0.0137510199822 -0.0520077739385)
(-0.0196131982805 -0.0100360295978 -0.0156143546485)
(-0.0329796876142 -0.00959392290442 0.0220710172346)
(-0.0286342024721 -0.00802786071499 0.061073268163)
(-0.0274263226009 -0.00554558905601 0.0991924258736)
(-0.0243413130017 -0.00330948944501 0.135417505987)
(-0.0200299836681 -0.0015076828125 0.167625570383)
(-0.0149512122575 -2.52122656211e-05 0.194580689329)
(-0.0107123382507 0.00110783672178 0.218364571828)
(-0.00659511642794 0.00171265910618 0.245200061638)
(-0.00876426384675 0.00130424873176 0.259727923499)
(-0.0554712449962 -0.04116810074 -0.338203028827)
(-0.0153917766365 -0.0555402512001 -0.343478393857)
(-0.0274481115774 -0.0517987222175 -0.305178235321)
(-0.0244448958789 -0.041009491701 -0.265702305362)
(-0.0254871648533 -0.0363550607033 -0.220727263314)
(-0.0226349595788 -0.0290619588933 -0.17716614134)
(-0.0210221263308 -0.0247354070386 -0.135090888812)
(-0.0192266020942 -0.0205195924752 -0.0966818505225)
(-0.0173000156676 -0.0159541028499 -0.0610689744047)
(-0.0169529145691 -0.0123878720962 -0.0263345292142)
(-0.0151164973661 -0.00898300437921 0.00475087430766)
(-0.0351185206525 -0.0121192917346 0.0414750190787)
(-0.0250302201894 -0.00822237528916 0.0752690961482)
(-0.0242807326563 -0.00573527322063 0.107294572856)
(-0.021442810128 -0.00353292805396 0.139031635053)
(-0.0172400922949 -0.00168662674916 0.167484311898)
(-0.0124113398418 -0.000410692705727 0.191775784565)
(-0.00858949123241 0.000653139907833 0.212595170802)
(-0.00457630761408 0.00194425444932 0.23962489322)
(-0.00574599763803 0.00258915307386 0.253184832927)
(-0.0477214001532 -0.044888045986 -0.273612031811)
(-0.0105625660025 -0.0521438889206 -0.279702598701)
(-0.0210721376689 -0.0505062272589 -0.247035347634)
(-0.0196584640622 -0.0401052083442 -0.212268110953)
(-0.0204433706453 -0.0350887429107 -0.172235062851)
(-0.018504651374 -0.0277421298521 -0.132934093902)
(-0.0165716897916 -0.0229025389199 -0.0958352302116)
(-0.0149231833088 -0.0186271928488 -0.0623234432992)
(-0.0134398795853 -0.0145135230462 -0.0312962868626)
(-0.0131127032354 -0.0113327484849 -0.00179877912125)
(-0.0118727967255 -0.00881020184569 0.0236095077584)
(-0.0302220209173 -0.014240977272 0.0593695011164)
(-0.0215576002775 -0.00855216756623 0.0854170659893)
(-0.0213226528014 -0.00680201104386 0.11210137263)
(-0.0185837322117 -0.00491005083745 0.138766055279)
(-0.0142909047687 -0.00302626356875 0.162709709805)
(-0.00959103732364 -0.00129321938314 0.183114778911)
(-0.00526244041962 -0.000820326648649 0.202956840715)
(-0.00227303327144 0.00110609742501 0.226182845172)
(-0.00622286604721 0.00313102165727 0.239498529827)
(-0.0293608757738 -0.030134680699 -0.206875612893)
(-0.0115079912597 -0.0539192317946 -0.210891174785)
(-0.0152715719494 -0.0458803761467 -0.186264949934)
(-0.016104290318 -0.0391463903338 -0.155233226525)
(-0.0156447199819 -0.0325696095165 -0.120971381983)
(-0.0143572701647 -0.0254680797951 -0.0871937000255)
(-0.0126625260942 -0.0206697765096 -0.05571878435)
(-0.0111760370444 -0.0166985104001 -0.0272473467392)
(-0.0102129572973 -0.0132216914057 -0.00135617245054)
(-0.0107413151081 -0.0106491979837 0.02211135183)
(-0.00962764888116 -0.0088504090084 0.0379904654202)
(-0.0269460068414 -0.0170407306026 0.0756790325725)
(-0.0193900104834 -0.0100594491477 0.0947616326462)
(-0.0180119638464 -0.00773271744938 0.114093668362)
(-0.0153763750153 -0.0060543604899 0.134638426683)
(-0.0114114787847 -0.00421225921488 0.153352865581)
(-0.0069271766692 -0.00232846858747 0.168877118383)
(-0.00290694323357 -0.00232139306676 0.186386164235)
(-0.000181034413866 4.75726289497e-05 0.206890660703)
(-0.0057369670682 0.0026016345064 0.21908640858)
(-0.0004003102042 -0.025301443817 -0.118386367873)
(-0.0127954688225 -0.0397702090672 -0.136756619373)
(-0.0126768712428 -0.0434513712217 -0.122615161897)
(-0.0125328276145 -0.0360756619081 -0.0962798227707)
(-0.0115504015966 -0.0276116207575 -0.0687945719227)
(-0.010300779852 -0.021599892384 -0.0409052767224)
(-0.00900166046454 -0.017949355104 -0.0145899898693)
(-0.00788077113436 -0.0148035983254 0.00838272200816)
(-0.00732424852885 -0.0121468839084 0.0286885985028)
(-0.00771545682885 -0.00985060424337 0.0461403695488)
(-0.00765234742101 -0.00874459353257 0.0582580629621)
(-0.0176559173135 -0.014537696073 0.0881255157187)
(-0.016459870391 -0.0115130674303 0.101190008488)
(-0.014968343645 -0.0087683723492 0.113940001739)
(-0.0124493998359 -0.00721961855749 0.127968706312)
(-0.00866970991797 -0.00546383877623 0.140616174257)
(-0.0042231613397 -0.00594834595444 0.153060021975)
(-0.000936274386723 -0.00395386973428 0.164344641066)
(0.00247273707876 -0.00387987168287 0.187038720184)
(-0.00593932424699 0.00125789768374 0.193924496558)
(0.000293350086571 -0.0255276732001 -0.0406426858021)
(-0.0024561462197 -0.0394062212035 -0.0427445015802)
(-0.0154038263723 -0.040147653601 -0.0511405309251)
(-0.00875204726977 -0.0261873952016 -0.0380595849935)
(-0.00783924980564 -0.0210217601753 -0.017790465826)
(-0.0066933399416 -0.0185611642741 0.00660023185728)
(-0.00614461362415 -0.016092334227 0.0278524936219)
(-0.00531866691729 -0.013807157567 0.0452874678352)
(-0.00477403765232 -0.011570584955 0.0595459880125)
(-0.005200180529 -0.00979192783505 0.0712147577249)
(-0.00395974426617 -0.00678861182321 0.0768847902944)
(-0.0144694937307 -0.0144618978135 0.102222199953)
(-0.0138745302132 -0.0125803668321 0.107549439778)
(-0.0121844714388 -0.00954778577481 0.112426473408)
(-0.00973739062104 -0.0081000576754 0.119591606116)
(-0.00638061110482 -0.00670201616048 0.125709446497)
(-0.00273367656375 -0.00800450556534 0.133922250428)
(0.000500930666004 -0.00634935438211 0.140719834036)
(0.00243213855005 -0.00760772013161 0.16213716874)
(-0.00539642667844 -0.000115234523656 0.166923353463)
(0.000866950460441 -0.0179135445021 0.0234358680217)
(-0.000446164055501 -0.032321645223 0.0197034775568)
(-0.00370630921668 -0.0342280249418 0.0246412537784)
(-0.00653707031967 -0.0332358467476 0.0358452609978)
(-0.00434992011392 -0.0323549905318 0.0545719261383)
(-0.00646733651557 -0.0150700161303 0.0527404645365)
(-0.00407795124549 -0.01247421535 0.0684717325354)
(-0.00318454896686 -0.0107600178227 0.0806941319981)
(-0.00284651505728 -0.00905083545102 0.0891803845612)
(-0.00144302676171 -0.00755224420368 0.0935830987141)
(-0.0154558424068 -0.0178701076221 0.117178253264)
(-0.0131748667031 -0.0149497381696 0.11641128863)
(-0.011724715928 -0.0122027636376 0.111796903422)
(-0.0112607510085 -0.0115416222675 0.112662180576)
(-0.00776096941878 -0.0088312032128 0.110465124594)
(-0.00502798494716 -0.0077855021088 0.110184844222)
(-0.00212241207647 -0.00686315725931 0.111381881997)
(0.000370854095847 -0.00879137844141 0.118889687712)
(0.000454598037581 -0.00686102107129 0.132508493956)
(-0.00564155978729 -0.000798629941797 0.138555835026)
(0.00318563063247 -0.017481637376 0.0804203142559)
(0.00100386931183 -0.0293926354169 0.0763758068895)
(-0.000757131252374 -0.0319969790399 0.0785045782221)
(-0.00147604451837 -0.0314019390722 0.0901643274542)
(-0.00257078843008 -0.0295547204681 0.105896816992)
(-0.00302191622427 -0.0271037041276 0.120016306589)
(-0.00400353010945 -0.0297912612083 0.132369655688)
(-0.00688798683316 -0.0256403672656 0.137646572167)
(-0.00987219523273 -0.0220657468448 0.140408374129)
(-0.0124325517389 -0.0189432934087 0.13947696755)
(-0.0145400339232 -0.0184222024655 0.137831720349)
(-0.0111363804025 -0.0148363234096 0.127085621646)
(-0.012684590282 -0.0138277885181 0.120122626069)
(-0.00965635393974 -0.0111151928136 0.109801445837)
(-0.00644258872864 -0.00900835022152 0.10107793715)
(-0.00416278519202 -0.00862701460662 0.0957808310543)
(-0.00199195474281 -0.00811134092281 0.0925042852589)
(-0.00102337058085 -0.00740483597776 0.0950576662168)
(-0.000499845205836 -0.00908149340709 0.110960613858)
(-0.00606006897075 -0.001480987011 0.11157816462)
(0.00608828673912 -0.0158593334586 0.127979513762)
(0.00211314549466 -0.0255115071242 0.126228120498)
(0.000469794710542 -0.0280327660871 0.126771315296)
(0.000167775554512 -0.028322720608 0.137302607439)
(0.000556520719519 -0.0281460056031 0.15125122647)
(-0.000145493327172 -0.0272785589769 0.164089284867)
(-0.00187481248199 -0.0234798319175 0.170090233549)
(-0.00470535526312 -0.0251992653126 0.174311406103)
(-0.00775415295213 -0.0216776405498 0.171209285987)
(-0.0102509172478 -0.0185798619923 0.163493817279)
(-0.0126003842133 -0.0174153209365 0.154865884403)
(-0.00850143612404 -0.0127932866603 0.137515549812)
(-0.0108389200459 -0.0122725673209 0.123957980476)
(-0.00861595556026 -0.0102373356707 0.107422756546)
(-0.00541960866111 -0.00851650824671 0.093505287109)
(-0.00409816394926 -0.00850965479694 0.0838886456393)
(-0.0022635143071 -0.00700102385706 0.0758970103634)
(-0.00183372430062 -0.00666625608463 0.0760689637353)
(-0.00252472816282 -0.00749467169129 0.0888101522822)
(-0.00718743661963 -0.00202831094547 0.089649765155)
(0.00643192646882 -0.0138708468802 0.163888992431)
(0.00285017508504 -0.0203415098396 0.167172622465)
(0.00138862987498 -0.0231389487636 0.167225802721)
(0.000845057184191 -0.0232369775219 0.177196378057)
(0.00180441341158 -0.0236039585269 0.190659507599)
(0.00114937705179 -0.0217055624644 0.198336322852)
(0.000407965228037 -0.0208449464473 0.204193285683)
(-0.0015048500193 -0.0178179511083 0.202034920739)
(-0.00265866096826 -0.0146965161329 0.193464073978)
(-0.00870019452415 -0.0151243622252 0.186093790932)
(-0.0105086958585 -0.0127540318294 0.172360639787)
(-0.00623169068052 -0.00909990979763 0.147738869418)
(-0.00940838966658 -0.0093013007717 0.128996714715)
(-0.00758560152839 -0.00811070841848 0.107633264373)
(-0.00468685447581 -0.00718375047279 0.0893838467156)
(-0.00421491839106 -0.00790593696862 0.0763666720773)
(-0.00298298133822 -0.00694489083746 0.0658772617745)
(-0.00268373897881 -0.00702274691096 0.0647985049124)
(-0.00405978643499 -0.00632418067336 0.0742033188927)
(-0.00895999863823 -0.00226227516603 0.0728692126954)
(0.0091598462122 -0.00828804268109 0.191711252711)
(0.00336776819387 -0.0154886748859 0.197549561203)
(0.00153030237804 -0.0173871709246 0.198589940818)
(0.000934348122991 -0.0176420679602 0.209473709083)
(0.0022020809362 -0.0174862616591 0.223363790091)
(0.00241601995248 -0.0161429727478 0.230365664716)
(0.00261366000988 -0.0151653644448 0.234475190691)
(0.000727808960171 -0.0125196096791 0.228702456348)
(-0.00120923099422 -0.0106073207763 0.217802848709)
(-0.00248612366398 -0.00806200568709 0.201573912823)
(-0.00340964594036 -0.00617595276718 0.181723876281)
(-0.00513721986572 -0.00552000081121 0.159527649898)
(-0.00814860034512 -0.00561628089641 0.137463924739)
(-0.00657840841531 -0.00555788594845 0.112877848518)
(-0.00409392517444 -0.00549476628945 0.0914579472154)
(-0.00274819836756 -0.00631392675888 0.0742348041533)
(-0.00319923622612 -0.00661564290639 0.0636986083442)
(-0.00315914834626 -0.00621856839802 0.0606076862812)
(-0.00509648188884 -0.00533364071719 0.0683211358739)
(-0.0119734692196 0.00015972845336 0.0651844586741)
(0.0109495135103 -0.00865540177201 0.217434581399)
(0.002053248753 -0.0108514239543 0.224924328947)
(0.000698223691179 -0.0121783035543 0.228407785058)
(0.000910381966913 -0.011636531098 0.241511087941)
(0.00309775503908 -0.0111270020532 0.256429934615)
(0.00337149050309 -0.0100351435218 0.263666694219)
(0.00329475132071 -0.00906488162343 0.262314756696)
(0.00267560507095 -0.00825807466853 0.258842129225)
(0.000972068957251 -0.00693956060676 0.245809693973)
(-0.000336798948944 -0.00542262589573 0.227812599093)
(-0.00157895951774 -0.00418297097159 0.205689366193)
(-0.00287851257534 -0.00365162865926 0.181052810402)
(-0.00566433960823 -0.0040022085496 0.156207313372)
(-0.00458425606195 -0.00408482336034 0.127506559981)
(-0.00331470882948 -0.00480919831949 0.103053572)
(-0.00260232138902 -0.0059476086027 0.0839167373689)
(-0.00317287951079 -0.00688562301186 0.0721155485278)
(-0.00289467894525 -0.00720028620827 0.0670689277881)
(-0.00447714419779 -0.00615839261586 0.0750876877455)
(-0.0106408881064 -0.00656650628291 0.0698210029251)
(0.00673318426128 -0.00918912009318 0.204947800294)
(0.0016210441902 -0.0137716624548 0.231776365116)
(-0.00214758933759 -0.0136145260835 0.235255249466)
(-0.000427558179967 -0.0143313118766 0.249418157747)
(0.000952230353795 -0.0112836581697 0.262292414581)
(0.00153197049993 -0.0124624642013 0.27036317262)
(0.00200478544831 -0.0134666625411 0.270467561813)
(0.00311720333238 -0.0102210090964 0.263425893368)
(0.00341149589857 -0.0103689826603 0.24921131475)
(0.00346070939285 -0.00984848607089 0.229712679892)
(0.00286950067681 -0.00888465771874 0.206323822823)
(0.00259777214386 -0.0107660727893 0.177819240542)
(0.00161662696816 -0.00886318387857 0.150471821663)
(0.000916315562174 -0.00849392016716 0.123791575238)
(0.000130720690654 -0.00916144710723 0.100068164824)
(-0.000398953664031 -0.0105087981004 0.0798792656965)
(-0.00157746428865 -0.0095655148849 0.0657028057032)
(0.000537668247949 -0.0122274871948 0.0602512771859)
(-0.00651153281886 -0.0110596565145 0.0675158756809)
(-0.00975428614189 -0.00974479376028 0.0406208199857)
)
;
boundaryField
{
stationaryWalls
{
type calculated;
value uniform (0 0 0);
}
atmosphere
{
type calculated;
value nonuniform List<vector>
400
(
(-0.184716418272 -0.19289126783 -0.57370338121)
(0.0595244894348 0.168893977993 -0.598908386108)
(0.110778960639 0.289198268782 -0.573361070933)
(0.123326638883 0.380335603732 -0.553101508521)
(0.127632890268 0.404927247081 -0.52597286828)
(0.123536573296 0.408150674357 -0.491113421908)
(0.113755602541 0.408495463967 -0.448381093941)
(0.0967358219538 0.409472042574 -0.397765211868)
(0.0433556802527 0.408090815282 -0.338203028827)
(-0.0224889943306 -0.362743505073 -0.273612031811)
(0.00912660663959 -0.281989986612 -0.206875612893)
(0.03929740079 -0.045374590211 -0.118386367873)
(0.00199984941886 -0.0255640831382 -0.0406426858021)
(0.0310699375029 -0.0022649802035 0.0234358680217)
(-0.068772912011 -0.119977679782 0.0804203142559)
(0.130392811629 0.0819650832773 0.127979513762)
(-0.147912645706 -0.110023239924 0.163888992431)
(-0.193783166248 -0.0922740386895 0.191711252711)
(-0.234860258889 0.0165755083902 0.217434581399)
(0.281002939737 -0.281714761063 0.204947800294)
(0.189244122968 0.0477469308647 -0.594779156542)
(0.294092467683 0.256184645143 -0.626524442443)
(0.340021152929 0.378642567666 -0.591398289956)
(0.360191457671 0.4570800487 -0.565766982083)
(0.367700757297 0.491162182001 -0.534948088586)
(0.354642036639 0.496261267718 -0.497936918453)
(0.329353479233 0.500649026758 -0.453874419992)
(0.284350284476 0.505069365535 -0.402699800951)
(0.221425189706 0.49032559827 -0.343478393857)
(0.15188229226 0.458452428295 -0.279702598701)
(-0.107174878598 -0.365580139663 -0.210891174785)
(0.0577080570568 0.205037617154 -0.136756619373)
(-0.00257402311304 -0.0406658430018 -0.0427445015802)
(-0.00233120755667 0.000366201082451 0.0197034775568)
(0.0103835934341 -0.0364520834917 0.0763758068895)
(-0.012634405426 -0.0612051154308 0.126228120498)
(-0.0215387061208 -0.0566992232043 0.167172622465)
(0.0100700024525 0.0319333620829 0.197549561203)
(-0.0021861090178 -0.00912244195056 0.224924328947)
(-0.063228647306 0.235022005514 0.231776365116)
(0.316474892691 0.0926027481458 -0.560224654893)
(0.432816739299 0.289385022161 -0.582338258922)
(0.475110463222 0.408250283502 -0.542752199176)
(0.434587167602 0.421658642226 -0.514946648048)
(-0.456647447598 -0.486983519559 -0.484526105383)
(-0.440014764946 -0.500872949148 -0.4481003905)
(-0.403150231044 -0.502550678108 -0.406911790288)
(0.380048968661 0.502328148586 -0.358555033939)
(0.311374420412 0.483690004818 -0.305178235321)
(0.244806379993 0.456944129134 -0.247035347634)
(0.171794326139 0.399324136334 -0.186264949934)
(-0.116266713319 -0.248791070918 -0.122615161897)
(-0.0152250723166 -0.0375163262128 -0.0511405309251)
(0.0231077487282 0.0136017408016 0.0246412537784)
(0.0293882002302 -0.0460871376741 0.0785045782221)
(0.0156972169204 -0.0407300231713 0.126771315296)
(-0.0311569528752 0.0358969444714 0.167225802721)
(-0.0351523919786 0.0124869250294 0.198589940818)
(-0.0418430892226 -0.0294263422364 0.228407785058)
(0.00619134035346 0.227435684954 0.235255249466)
(-0.394158279944 -0.0487249612507 -0.531420033381)
(0.509444348458 0.293485404475 -0.543828576343)
(-0.509323122704 -0.382422384112 -0.503091344604)
(-0.516523937991 -0.452024083566 -0.471551329186)
(-0.510495821015 -0.484617961661 -0.437547243033)
(-0.48362785316 -0.489256485587 -0.400525702592)
(-0.437316317424 -0.481558705863 -0.36014644977)
(-0.383108487336 -0.475331638408 -0.315463005173)
(-0.319437751824 -0.464742712492 -0.265702305362)
(-0.246676062299 -0.428289239659 -0.212268110953)
(-0.174487535865 -0.371419096222 -0.155233226525)
(0.126568379247 0.264296325905 -0.0962798227707)
(-0.0921500444007 -0.20899579211 -0.0380595849935)
(0.0380150284534 0.0363000902196 0.0358452609978)
(-0.0426301312157 -0.0178263708371 0.0901643274542)
(-0.0450339241496 0.0255568736581 0.137302607439)
(-0.0492218568089 0.0265503135943 0.177196378057)
(-0.0555816577429 0.00327988328199 0.209473709083)
(-0.057551048302 -0.0329602759767 0.241511087941)
(-0.00272248909221 0.240281219477 0.249418157747)
(-0.409543744917 -0.0751739519751 -0.493217131032)
(0.478726625242 0.25361130798 -0.49976699309)
(-0.519261598159 -0.366742018521 -0.456993602937)
(-0.519325892953 -0.433623186044 -0.423240108364)
(-0.500751162299 -0.459209949247 -0.387808007124)
(-0.465844313297 -0.458652873867 -0.350353447615)
(-0.417276574037 -0.447338169964 -0.30995749151)
(-0.368607301142 -0.439706769417 -0.266737400415)
(-0.308930719227 -0.424066977994 -0.220727263314)
(-0.239121695009 -0.380013224767 -0.172235062851)
(-0.167627116585 -0.32140111872 -0.120971381983)
(0.095541710492 0.269675905359 -0.0687945719227)
(-0.0216304270228 -0.220193625737 -0.017790465826)
(-0.062370103924 0.0801307401287 0.0545719261383)
(0.0406460972534 -0.092705218885 0.105896816992)
(0.0370512141961 -0.0857787341695 0.15125122647)
(0.0362410473735 -0.0710021878639 0.190659507599)
(0.0682931986443 -0.0549934086518 0.223363790091)
(0.0709224074978 0.00801214337675 0.256429934615)
(-0.0352852320286 -0.235860354723 0.262292414581)
(-0.415440284911 -0.063933656158 -0.447046801844)
(0.459826024378 0.223738203629 -0.449695756329)
(-0.503266447748 -0.331826499039 -0.407289889077)
(-0.489252605112 -0.390901092203 -0.372719263565)
(-0.463588958189 -0.412178912145 -0.336965459177)
(-0.423564958889 -0.408294572239 -0.299483111849)
(0.374334633757 0.395836102716 -0.260979074988)
(0.325870895894 0.386909065028 -0.219898236755)
(0.270701033902 0.374606847836 -0.17716614134)
(0.204164299804 0.339171658094 -0.132934093902)
(0.138546068577 0.296821593419 -0.0871937000255)
(0.0731922451268 0.247881318533 -0.0409052767224)
(-0.00982343437629 -0.173800295777 0.00660023185728)
(0.0096545016459 -0.0401263873741 0.0527404645365)
(-0.0279430717938 0.0690226173059 0.120016306589)
(0.0196877261798 -0.0823144630881 0.164089284867)
(0.0433690922906 -0.0885234151303 0.198336322852)
(0.0530998486186 -0.04618695341 0.230365664716)
(0.0593657917463 0.0148298431777 0.263666694219)
(-0.0346728881413 -0.255249669612 0.27036317262)
(0.428596510619 0.0263679738573 -0.394965807526)
(0.481518215313 0.210812658024 -0.394664980849)
(-0.473446420632 -0.282970117364 -0.355697464235)
(-0.450416214628 -0.336023007146 -0.321675536878)
(-0.417886663643 -0.354575634457 -0.285999879304)
(-0.382965807102 -0.358235179279 -0.249352839216)
(0.340542797926 0.342914417876 -0.21280251603)
(0.294909402161 0.333523597202 -0.17416794421)
(0.238407319493 0.315662430229 -0.135090888812)
(-0.177183213941 -0.283267572933 -0.0958352302116)
(-0.11516473803 -0.257074007864 -0.05571878435)
(-0.0619556370411 -0.212301674126 -0.0145899898693)
(0.00860833316493 0.140123465073 0.0278524936219)
(0.00396215261437 -0.0399909923806 0.0684717325354)
(-0.00607069910637 -0.159298838333 0.132369655688)
(0.00212287624496 0.0525077345533 0.170090233549)
(0.00381213325741 0.0381099362109 0.204193285683)
(0.00323414360156 0.00286556750867 0.234475190691)
(0.0329660357768 0.0183218059645 0.262314756696)
(0.0068628310911 -0.26696743143 0.270467561813)
(0.41184186704 0.0194088197061 -0.340095920642)
(0.457685008669 0.161937457564 -0.337582381196)
(0.430922250438 0.244516604878 -0.301626626917)
(-0.408782646809 -0.27486034081 -0.270287525604)
(-0.375432023264 -0.294618896905 -0.236239014851)
(-0.340408739617 -0.299862489611 -0.201341590836)
(0.307018752091 0.286058483284 -0.166865834412)
(0.260212563192 0.272146472983 -0.131513156317)
(0.20728371948 0.251367008762 -0.0966818505225)
(-0.151786009404 -0.228230359954 -0.0623234432992)
(0.100733921428 0.202396561912 -0.0272473467392)
(-0.051465237184 -0.169027381955 0.00838272200816)
(0.00934365263717 0.10170188486 0.0452874678352)
(-0.00106681186608 -0.0238244478308 0.0806941319981)
(-0.0443322843198 -0.13805152383 0.137646572167)
(-0.0374099585639 -0.122793343787 0.174311406103)
(0.00947779351176 0.0548082702737 0.202034920739)
(0.00545172968655 0.0199866460191 0.228702456348)
(0.00165867277244 -0.0383571665123 0.258842129225)
(0.0195816910693 0.208417745157 0.263425893368)
(0.363034921853 0.0255272699444 -0.284012964748)
(0.413952491431 0.115909429991 -0.280391758247)
(0.382907600197 0.189788338397 -0.248918874831)
(0.340604680299 0.22838310114 -0.21758791329)
(-0.326037411413 -0.234922394309 -0.186607129989)
(-0.296470439528 -0.239687931431 -0.154074117038)
(0.268542134825 0.223650033431 -0.122540490503)
(0.222743333771 0.20924965665 -0.0910889892934)
(-0.180334070716 -0.192138867941 -0.0610689744047)
(0.135188661339 0.176690127974 -0.0312962868626)
(-0.08788290147 -0.155693360813 -0.00135617245054)
(0.0502108823574 0.133272644233 0.0286885985028)
(-0.0206823785815 -0.0897882523282 0.0595459880125)
(-0.00489660057468 -0.0139578577404 0.0891803845612)
(-0.0735607709755 -0.13200423787 0.140408374129)
(-0.0679792724039 -0.107407221873 0.171209285987)
(0.0419181547065 0.0499746689709 0.193464073978)
(0.0329962860747 0.0152885971084 0.217802848709)
(0.0215534628519 -0.0425026880038 0.245809693973)
(0.00891682931804 0.213050396891 0.24921131475)
(-0.313133320328 -0.000688256518813 -0.227497868208)
(-0.325746421786 -0.0824776374166 -0.221781559216)
(-0.275441838001 -0.145443662508 -0.194206593087)
(0.283420937307 0.175378684721 -0.167849725467)
(0.242547057757 0.18613429056 -0.137505552674)
(-0.23690054013 -0.178693754732 -0.107846061348)
(-0.194461843735 -0.162865721928 -0.0789405399387)
(0.177671673005 0.146805676901 -0.0520077739385)
(-0.145570335272 -0.129218014615 -0.0263345292142)
(-0.115868248143 -0.118942405378 -0.00179877912125)
(-0.0786243212905 -0.111259808722 0.02211135183)
(0.0383796485762 0.0849372019693 0.0461403695488)
(-0.0128003603137 -0.0356760135429 0.0712147577249)
(0.00503138368538 0.00702994147645 0.0935830987141)
(-0.110235376814 -0.121738201376 0.13947696755)
(-0.0941849687643 -0.0980130062786 0.163493817279)
(-0.0875035292095 -0.0718609303642 0.186093790932)
(0.0645606836633 -0.000490333675374 0.201573912823)
(0.0461971191294 -0.0471504925326 0.227812599093)
(-0.000174986554814 0.214277548341 0.229712679892)
(0.222045933248 -0.0247821865484 -0.166572835758)
(0.18055476138 0.0568115833599 -0.15763434018)
(0.122326444569 0.113151775913 -0.136657067773)
(0.0824993081046 0.133656631882 -0.112683267181)
(-0.118886128194 -0.136618583092 -0.0880181208037)
(0.132932691922 0.123122903348 -0.062953850368)
(-0.133972033608 -0.101995681128 -0.0384640330317)
(-0.144521960683 -0.080875083548 -0.0156143546485)
(0.120235123589 0.0704473486809 0.00475087430766)
(0.0940921882625 0.0628321823484 0.0236095077584)
(-0.0718333351591 -0.0679565456476 0.0379904654202)
(-0.0459182305666 -0.0609857855231 0.0582580629621)
(0.00591219630254 0.00521246582736 0.0768847902944)
(-0.126735131822 -0.103786476785 0.117178253264)
(-0.133834210906 -0.116990663282 0.137831720349)
(-0.114769782563 -0.0940606345604 0.154865884403)
(0.0842420523385 0.0298225646706 0.172360639787)
(0.0905988555822 0.00746492323526 0.181723876281)
(0.065433937833 -0.0517039164161 0.205689366193)
(-0.00280543454457 0.208524401916 0.206323822823)
(-0.0269686460654 -0.00247041997063 -0.106416461034)
(-0.0376048056154 -0.00339247781521 -0.101572751076)
(-0.0398514807105 -0.00836178214739 -0.0877680076511)
(-0.0523071610262 -0.00963640829095 -0.0679283010977)
(-0.0534732064085 -0.0116568328177 -0.0451185665091)
(-0.0503767532697 -0.0109027527382 -0.0212292260816)
(-0.0449460131181 -0.0133014621261 0.0024091105798)
(-0.340505070078 -0.059826661533 0.0220710172346)
(-0.297733147377 -0.0771932335462 0.0414750190787)
(-0.257746872336 -0.102664925736 0.0593695011164)
(-0.104352373466 -0.0496552079611 0.0756790325725)
(0.09108774117 0.0545479720514 0.0881255157187)
(0.0986400550805 0.0642907573646 0.102222199953)
(0.0900641117148 0.0565284314669 0.11641128863)
(0.110492770679 0.0673747824927 0.127085621646)
(0.10257649131 0.0501386622034 0.137515549812)
(0.104846834989 0.0347848715303 0.147738869418)
(0.109709779347 0.00394246147373 0.159527649898)
(0.0726928570874 -0.0622326153109 0.181052810402)
(0.00983809865779 -0.238934180696 0.177819240542)
(-0.0260548214367 -0.001522542812 -0.0387871455849)
(-0.0391678065556 -0.00206435888013 -0.0378482949414)
(-0.0429829946563 -0.00513006126367 -0.0285070322714)
(-0.0437200648282 -0.00736850955895 -0.0123678155164)
(-0.0432745523543 -0.00943499317725 0.00739540716721)
(-0.0341855240013 -0.0078326679843 0.0276777812651)
(-0.00906743818667 -0.0344012050184 0.0459085744886)
(-0.0991876299758 0.0116422339194 0.061073268163)
(0.0667912838795 -0.0012861670535 0.0752690961482)
(-0.021443446137 0.0075550914221 0.0854170659893)
(-0.0903461119398 -0.0586552311426 0.0947616326462)
(-0.0926022845173 -0.0705304017658 0.101190008488)
(-0.107558079747 -0.0907198533797 0.107549439778)
(-0.115475378692 -0.092346628843 0.111796903422)
(0.0967105601146 0.072552105333 0.120122626069)
(0.11508964934 0.071910805949 0.123957980476)
(0.118335694542 0.049217861372 0.128996714715)
(0.0993933013065 0.000341903644944 0.137463924739)
(0.0882789251908 -0.0624085170126 0.156207313372)
(0.0157747254863 -0.218167767093 0.150471821663)
(-0.0719389413524 -0.0199652271113 0.0200721742582)
(-0.0602712467065 0.00683860450935 0.0199871778144)
(-0.0862651770256 -0.0051509058978 0.0259692268966)
(0.015948593285 0.00515765578203 0.0390066029611)
(-0.0836582637629 -0.0254896099942 0.0556633894031)
(-0.0592923205932 -0.0382047402345 0.0729270740635)
(-0.00430613491171 -0.00518338752909 0.0878487864689)
(-0.0338864505048 -0.0179029905751 0.0991924258736)
(-0.0224009459865 -0.0239848694658 0.107294572856)
(0.0262651088868 0.0421429143891 0.11210137263)
(0.0227693611805 0.0439293496071 0.114093668362)
(0.0329966225665 0.0537515691188 0.113940001739)
(0.0455911881808 0.0596791266233 0.112426473408)
(-0.100466107495 -0.112638710783 0.112662180576)
(-0.1103746192 -0.106199909486 0.109801445837)
(-0.109237848626 -0.0818214133754 0.107422756546)
(-0.116589872784 -0.0581495214365 0.107633264373)
(-0.128580555292 -0.0186934552181 0.112877848518)
(-0.102741593506 0.048420522454 0.127506559981)
(-0.0215252269718 0.20509253524 0.123791575238)
(-0.0766260576198 -0.0359719664869 0.0762828587157)
(-0.0493270996115 0.00940594457444 0.0741206184576)
(-0.0751005846129 -0.00571800534144 0.075777164176)
(-0.0320826795455 0.041605686435 0.0857732755301)
(-0.0718451258461 -0.0279894207374 0.100366564304)
(-0.0446600629644 0.0221228658332 0.115269312611)
(-0.0374988912481 -0.0171551602158 0.127427025224)
(-0.0318143668952 -0.00964073939665 0.135417505987)
(-0.0261423843187 -0.0312501555175 0.139031635053)
(0.00174360473429 0.0413258769943 0.138766055279)
(0.0170342645803 0.0731807456889 0.134638426683)
(0.0153005056869 0.0702049162882 0.127968706312)
(0.0276611778079 0.0779742158434 0.119591606116)
(0.0426619215855 0.0800506175301 0.110465124594)
(0.05961013038 0.076947028673 0.10107793715)
(0.0766090599725 0.06665220247 0.093505287109)
(0.102768344467 0.0570095713027 0.0893838467156)
(0.106839681095 0.0109247759644 0.0914579472154)
(0.0769107354733 -0.0540394564722 0.103053572)
(0.0270986270558 -0.229311622166 0.100068164824)
(0.0349418830564 0.0692491756121 0.125738903757)
(-0.0123269482146 -0.00812321052815 0.121726511361)
(0.00504711926221 0.00329764497729 0.1195616528)
(0.00527348832555 -0.0637402585551 0.127174223718)
(-0.000226717755435 0.0224563695811 0.139801358842)
(0.00383263191393 0.0161486315546 0.152796554435)
(-0.0425820170264 -0.0096537152967 0.162599841433)
(-0.011340929319 -0.0095177888607 0.167625570383)
(-0.00742437146111 -0.0322322601135 0.167484311898)
(-0.0127002832221 0.0499064288857 0.162709709805)
(-0.00199718302715 0.0835490356512 0.153352865581)
(-0.00531748266783 0.084422868103 0.140616174257)
(0.00586467187608 0.0947840956071 0.125709446497)
(0.0210651572242 0.0988369760123 0.110184844222)
(0.0396153762399 0.0954552295146 0.0957808310543)
(0.0560236968129 0.085289504739 0.0838886456393)
(-0.0738406441905 -0.066397628552 0.0763666720773)
(-0.0812141510486 -0.0195087114045 0.0742348041533)
(-0.0839746986631 0.0377007149307 0.0839167373689)
(-0.0172887064606 0.214548399707 0.0798792656965)
(0.0278487053384 0.111203192084 0.16733280072)
(-0.0239985445921 0.0109780093308 0.163068038779)
(-0.0397374803157 -0.0096424975751 0.157695516243)
(-0.0482323581984 -0.0215838792808 0.163146883108)
(-0.0630711892923 0.0658258945524 0.173729202304)
(-0.0400340250822 -0.0258606496502 0.184492543983)
(-0.0608694835135 0.0262075399024 0.191871632975)
(0.00507309507053 -0.00706198315912 0.194580689329)
(-0.0270198394675 0.0297386106439 0.191775784565)
(-0.01105728576 0.0616203169398 0.183114778911)
(-0.0293588516077 0.0743947317269 0.168877118383)
(0.00990850652782 -0.116428738122 0.153060021975)
(-0.001031410057 -0.149967476543 0.133922250428)
(-0.00325326636989 0.1153482879 0.111381881997)
(0.0144685080798 0.111629923806 0.0925042852589)
(-0.0372138416731 -0.117401139836 0.0758970103634)
(-0.0474088321508 -0.0795372785913 0.0658772617745)
(-0.0565776054661 -0.0318063190465 0.0636986083442)
(-0.0645097469945 0.0320413543651 0.0721155485278)
(-0.0157043018246 0.203650805156 0.0657028057032)
(-0.0838491377498 -0.0881826524948 0.201993147638)
(-0.0645550889257 0.0466964249258 0.19851093405)
(-0.0569676847033 0.0794823672656 0.191504940888)
(-0.0509220276722 0.0864824844449 0.195081724365)
(-0.0431599153952 -0.0376086845923 0.203673038938)
(-0.0474121795397 -0.0263976577774 0.212105402137)
(-0.0423376969071 0.0351953040463 0.217483316117)
(0.0129303909637 -0.00652307446628 0.218364571828)
(-0.00586276661028 0.0233192817376 0.212595170802)
(0.0266455452962 -0.0529760377475 0.202956840715)
(0.0356965771219 -0.0805495130724 0.186386164235)
(0.0353966697744 -0.124155761127 0.164344641066)
(0.0421363742305 -0.131821150079 0.140719834036)
(0.0317893126752 -0.144675962724 0.118889687712)
(-0.0208170221106 0.137165722148 0.0950576662168)
(0.0088466590526 -0.112727329741 0.0760689637353)
(-0.00431615469903 -0.0878972683734 0.0647985049124)
(0.0060209545376 0.0204788351861 0.0606076862812)
(0.0142763173141 -0.0448565529266 0.0670689277881)
(0.0262858568024 -0.258539617189 0.0602512771859)
(-0.00124321534378 -0.138642852559 0.232985131937)
(-0.0385251573195 0.0524918397535 0.231468197952)
(-0.0304581311495 0.0790291689203 0.225016936923)
(-0.0400624249235 -0.0356137220952 0.228703326038)
(-0.0311665214839 0.0924857712919 0.235874521815)
(-0.0256080350017 0.065914084259 0.24241582305)
(-0.0412744986343 -0.019746451815 0.246803208084)
(-0.0469945642948 -0.00375443510287 0.245200061638)
(0.000269930502045 -0.0142139000484 0.23962489322)
(0.0466786424337 -0.0377931221433 0.226182845172)
(0.0575762848301 -0.0626600001237 0.206890660703)
(-0.0593826754614 0.103601332308 0.187038720184)
(-0.0681806679324 0.0986680378777 0.16213716874)
(0.0715419936778 -0.12249876055 0.132508493956)
(0.0673888489547 -0.128532575878 0.110960613858)
(-0.059216038474 0.113310183747 0.0888101522822)
(0.0479961757699 -0.0967594932918 0.0742033188927)
(-0.0509685533742 0.029116142353 0.0683211358739)
(-0.0377693412014 -0.029659626421 0.0750876877455)
(-0.103974844137 -0.264758198971 0.0675158756809)
(-0.181535199996 0.18726174009 0.229971156076)
(-0.133666767121 0.0137276988053 0.246286774614)
(-0.128433797032 -0.0455541044092 0.242831080034)
(-0.151092598429 -0.0334551813447 0.24621993243)
(0.146369048607 -0.0103996920872 0.252636147273)
(-0.148462179483 0.00980924604212 0.25861773828)
(-0.17255153373 -0.00682969535388 0.261503285136)
(-0.18087745934 -0.0117224294162 0.259727923499)
(0.14692723076 0.00268704213866 0.253184832927)
(0.155766757317 -0.0138555793446 0.239498529827)
(0.17891111988 -0.0104238651236 0.21908640858)
(0.182531172891 -0.0282538947426 0.193924496558)
(0.173490841599 -0.0152281107169 0.166923353463)
(-0.191551054637 0.0388053538293 0.138555835026)
(0.178771767 -0.0325777069961 0.11157816462)
(-0.207561103121 0.0502042003976 0.089649765155)
(0.199024887043 -0.0346781812749 0.0728692126954)
(-0.258095606047 0.040719988563 0.0651844586741)
(-0.272739401755 -0.0965297737663 0.0698210029251)
(0.241446700191 0.239661406577 0.0406208199857)
)
;
}
floatingObject
{
type calculated;
value nonuniform List<vector>
348
(
(-0.00102250567282 0.237140568388 0.154149573493)
(-0.000613503402382 0.237140568385 0.0924897440938)
(-0.000204501132714 0.237140568387 0.0308299146971)
(0.000204501137006 0.237140568387 -0.030829914705)
(0.000613503403257 0.237140568387 -0.0924897441002)
(0.00102250566919 0.237140568385 -0.154149573494)
(-0.0010225056733 0.237140568385 0.154149573493)
(-0.000613503406945 0.237140568384 0.092489744093)
(-0.000204501135599 0.237140568383 0.0308299146951)
(0.000204501134181 0.237140568382 -0.0308299147044)
(0.000613503401289 0.237140568385 -0.0924897441028)
(0.001022505673 0.237140568382 -0.154149573494)
(-0.00102250567374 0.237140568387 0.154149573493)
(-0.000613503406414 0.237140568386 0.092489744093)
(-0.000204501135576 0.237140568386 0.0308299146977)
(0.000204501135163 0.237140568386 -0.0308299147023)
(0.000613503399364 0.237140568385 -0.0924897441053)
(0.00102250567274 0.237140568388 -0.154149573494)
(-0.00102250567296 0.237140568383 0.154149573493)
(-0.000613503403556 0.237140568384 0.0924897440946)
(-0.000204501133329 0.237140568383 0.0308299146942)
(0.000204501139552 0.237140568384 -0.0308299147053)
(0.000613503401593 0.23714056838 -0.092489744102)
(0.00102250566948 0.237140568384 -0.154149573492)
(0.0198050743344 0.234978315343 0.159686435324)
(0.0203892688006 0.234978315339 0.0958897537901)
(0.0209734632721 0.234978315345 0.0320930722575)
(0.0215576577473 0.234978315363 -0.0317036092759)
(0.0221418522238 0.234978315343 -0.095500290809)
(0.0227260466897 0.234978315348 -0.159296972342)
(0.0194523374472 0.237140568387 0.191538158482)
(0.0216542154285 0.237140568386 -0.191265490303)
(0.0194523374469 0.237140568382 0.191538158481)
(0.0216542154514 0.237140568382 -0.191265490302)
(0.0194523374446 0.237140568388 0.191538158481)
(0.0216542154518 0.237140568387 -0.191265490302)
(0.0194523374452 0.237140568382 0.191538158481)
(0.0198050743328 0.234978315285 0.159686435323)
(0.0203892688038 0.234978315278 0.0958897537901)
(0.0209734632697 0.234978315305 0.0320930722559)
(0.0215576577433 0.234978315273 -0.0317036092768)
(0.0221418522147 0.234978315281 -0.0955002908093)
(0.0216542154274 0.237140568381 -0.191265490304)
(0.0227260466835 0.234978315301 -0.159296972343)
(0.062336195352 0.234978315335 0.160075898304)
(0.0629203898277 0.234978315356 0.0962792167713)
(0.0635045842944 0.234978315346 0.0324825352384)
(0.0640887787702 0.234978315351 -0.0313141462948)
(0.0646729732431 0.234978315347 -0.0951108278272)
(0.0652571677084 0.234978315367 -0.158907509363)
(0.06055889038 0.237140568385 0.191810826661)
(0.0627607683913 0.237140568387 -0.190992822122)
(0.0605588903864 0.237140568386 0.191810826662)
(0.062760768368 0.237140568384 -0.190992822125)
(0.0605588903784 0.237140568387 0.191810826662)
(0.0627607683696 0.237140568385 -0.190992822125)
(0.0605588903744 0.237140568383 0.191810826661)
(0.0623361953501 0.234978315283 0.160075898304)
(0.0629203898253 0.234978315292 0.0962792167702)
(0.0635045842942 0.234978315291 0.0324825352378)
(0.0640887787696 0.2349783153 -0.0313141462943)
(0.0646729732415 0.234978315306 -0.0951108278267)
(0.0627607683884 0.237140568386 -0.190992822123)
(0.0652571677112 0.234978315331 -0.158907509361)
(0.104867316374 0.234978315335 0.160465361284)
(0.105451510848 0.234978315356 0.0966686797513)
(0.106035705318 0.234978315342 0.0328719982198)
(0.106619899793 0.234978315337 -0.0309246833134)
(0.107204094261 0.234978315343 -0.0947213648463)
(0.107788288733 0.234978315351 -0.158518046379)
(0.101665443301 0.237140568387 0.192083494841)
(0.103867321316 0.237140568385 -0.190720153944)
(0.1016654433 0.237140568384 0.192083494841)
(0.103867321287 0.237140568381 -0.190720153944)
(0.10166544329 0.237140568383 0.19208349484)
(0.103867321301 0.237140568381 -0.190720153944)
(0.101665443296 0.237140568383 0.192083494841)
(0.104867316378 0.234978315312 0.160465361286)
(0.105451510847 0.234978315284 0.0966686797512)
(0.106035705319 0.234978315295 0.0328719982193)
(0.106619899794 0.234978315301 -0.0309246833142)
(0.107204094265 0.2349783153 -0.0947213648462)
(0.103867321299 0.237140568381 -0.190720153945)
(0.107788288737 0.234978315302 -0.15851804638)
(0.147398437398 0.234978315342 0.160854824266)
(0.147982631868 0.234978315348 0.0970581427354)
(0.148566826341 0.234978315343 0.0332614611992)
(0.149151020817 0.234978315352 -0.0305352203336)
(0.149735215287 0.234978315345 -0.0943319018641)
(0.150319409751 0.234978315349 -0.158128583401)
(0.142771996269 0.237140568385 0.192356163022)
(0.144973874226 0.237140568389 -0.190447485762)
(0.142771996238 0.237140568384 0.192356163018)
(0.144973874208 0.237140568381 -0.190447485767)
(0.142771996243 0.237140568386 0.19235616302)
(0.144973874217 0.237140568386 -0.190447485766)
(0.142771996261 0.237140568383 0.19235616302)
(0.147398437398 0.234978315292 0.160854824267)
(0.147982631868 0.2349783153 0.0970581427333)
(0.148566826345 0.234978315313 0.0332614612008)
(0.149151020815 0.234978315296 -0.0305352203318)
(0.149735215286 0.234978315301 -0.0943319018649)
(0.144973874214 0.237140568383 -0.190447485763)
(0.150319409752 0.234978315278 -0.158128583401)
(0.18992955842 0.234978315348 0.161244287246)
(0.190513752891 0.234978315354 0.0974476057137)
(0.191097947362 0.234978315341 0.0336509241788)
(0.191682141836 0.234978315354 -0.0301457573528)
(0.192266336304 0.234978315348 -0.0939424388865)
(0.192850530775 0.234978315343 -0.157739120418)
(0.183878549178 0.237140568386 0.192628831199)
(0.186080427175 0.237140568386 -0.190174817584)
(0.183878549176 0.237140568382 0.1926288312)
(0.186080427167 0.237140568383 -0.190174817585)
(0.183878549175 0.237140568381 0.192628831199)
(0.186080427175 0.237140568385 -0.190174817584)
(0.183878549174 0.237140568384 0.192628831199)
(0.18992955842 0.234978315289 0.161244287247)
(0.190513752892 0.23497831531 0.0974476057139)
(0.191097947368 0.234978315307 0.0336509241814)
(0.191682141837 0.234978315279 -0.0301457573523)
(0.192266336305 0.234978315298 -0.093942438886)
(0.186080427175 0.237140568382 -0.190174817585)
(0.192850530774 0.234978315281 -0.15773912042)
(0.232460679444 0.234978315339 0.161633750228)
(0.233044873912 0.234978315348 0.0978370686937)
(0.233629068388 0.234978315346 0.0340403871581)
(0.234213262859 0.234978315351 -0.0297562943711)
(0.234797457331 0.234978315353 -0.0935529759059)
(0.235381651802 0.234978315357 -0.157349657437)
(0.224985102113 0.237140568384 0.192901499381)
(0.227186980097 0.237140568388 -0.189902149406)
(0.224985102107 0.237140568385 0.19290149938)
(0.227186980104 0.237140568385 -0.189902149406)
(0.224985102115 0.237140568388 0.192901499382)
(0.227186980103 0.237140568387 -0.189902149406)
(0.224985102106 0.237140568383 0.192901499379)
(0.232460679442 0.234978315297 0.161633750228)
(0.233044873915 0.2349783153 0.0978370686926)
(0.233629068388 0.234978315333 0.0340403871616)
(0.234213262856 0.234978315293 -0.0297562943692)
(0.23479745733 0.234978315298 -0.0935529759052)
(0.227186980103 0.237140568385 -0.189902149407)
(0.2353816518 0.234978315285 -0.157349657439)
(0.274991800464 0.234978315342 0.162023213204)
(0.275575994933 0.234978315348 0.0982265316753)
(0.276160189406 0.234978315339 0.0344298501417)
(0.276744383881 0.234978315346 -0.0293668313922)
(0.277328578347 0.234978315338 -0.0931635129241)
(0.277912772819 0.234978315354 -0.156960194459)
(0.266091655034 0.237140568386 0.193174167558)
(0.268293533002 0.237140568387 -0.189629481227)
(0.266091655025 0.237140568385 0.193174167557)
(0.268293533008 0.237140568381 -0.189629481226)
(0.266091655041 0.237140568386 0.193174167558)
(0.268293533017 0.237140568382 -0.189629481226)
(0.266091655027 0.237140568385 0.193174167559)
(0.274991800462 0.234978315301 0.162023213205)
(0.275575994934 0.234978315291 0.0982265316724)
(0.276160189405 0.234978315283 0.0344298501413)
(0.276744383881 0.234978315301 -0.0293668313929)
(0.277328578347 0.234978315318 -0.093163512924)
(0.268293533001 0.23714056838 -0.189629481227)
(0.27791277282 0.234978315313 -0.156960194456)
(0.317522921485 0.234978315351 0.162412676188)
(0.318107115956 0.234978315352 0.0986159946547)
(0.318691310429 0.234978315365 0.0348193131252)
(0.319275504902 0.234978315348 -0.0289773684114)
(0.319859699371 0.234978315342 -0.0927740499447)
(0.320443893846 0.234978315353 -0.156570731475)
(0.307198207971 0.237140568387 0.193446835738)
(0.309400085922 0.237140568386 -0.189356813048)
(0.307198207979 0.237140568384 0.19344683574)
(0.30940008594 0.237140568383 -0.189356813049)
(0.307198207979 0.237140568385 0.193446835738)
(0.309400085939 0.237140568387 -0.189356813049)
(0.307198207973 0.237140568384 0.193446835739)
(0.317522921487 0.234978315288 0.162412676187)
(0.318107115956 0.234978315301 0.0986159946556)
(0.31869131043 0.234978315299 0.0348193131227)
(0.319275504901 0.234978315286 -0.0289773684117)
(0.319859699372 0.234978315306 -0.0927740499418)
(0.309400085941 0.237140568382 -0.189356813046)
(0.320443893844 0.234978315302 -0.156570731474)
(0.360054042509 0.23497831534 0.16280213917)
(0.36063823698 0.234978315357 0.0990054576374)
(0.361222431449 0.234978315346 0.0352087761044)
(0.361806625923 0.234978315344 -0.0285879054289)
(0.362390820397 0.234978315347 -0.0923845869611)
(0.362975014864 0.234978315352 -0.156181268494)
(0.348304760899 0.237140568386 0.193719503916)
(0.350506638894 0.237140568386 -0.189084144865)
(0.348304760916 0.237140568385 0.193719503917)
(0.350506638882 0.237140568383 -0.189084144866)
(0.348304760897 0.237140568385 0.193719503916)
(0.350506638886 0.237140568383 -0.189084144869)
(0.348304760904 0.237140568383 0.193719503918)
(0.36005404251 0.234978315295 0.162802139168)
(0.360638236979 0.234978315317 0.099005457639)
(0.36122243145 0.234978315308 0.0352087761027)
(0.361806625918 0.234978315303 -0.0285879054297)
(0.362390820395 0.234978315296 -0.0923845869628)
(0.350506638895 0.237140568381 -0.189084144867)
(0.362975014865 0.234978315288 -0.156181268493)
(0.402585163529 0.23497831535 0.163191602151)
(0.403169358003 0.234978315345 0.0993949206164)
(0.403753552475 0.234978315354 0.0355982390859)
(0.404337746948 0.234978315354 -0.0281984424496)
(0.404921941421 0.234978315349 -0.0919951239798)
(0.405506135892 0.234978315346 -0.155791805514)
(0.389411313824 0.237140568384 0.193992172098)
(0.391613191849 0.237140568386 -0.188811476686)
(0.389411313819 0.237140568385 0.1939921721)
(0.391613191835 0.237140568383 -0.188811476685)
(0.389411313813 0.237140568385 0.193992172096)
(0.391613191828 0.237140568384 -0.188811476686)
(0.389411313824 0.23714056838 0.193992172097)
(0.40258516353 0.234978315297 0.163191602153)
(0.403169358002 0.234978315296 0.099394920619)
(0.403753552475 0.234978315326 0.0355982390841)
(0.404337746948 0.234978315289 -0.0281984424453)
(0.404921941417 0.234978315306 -0.0919951239829)
(0.391613191855 0.237140568383 -0.188811476687)
(0.405506135889 0.234978315293 -0.155791805518)
(0.445116284552 0.234978315347 0.163581065131)
(0.445700479021 0.234978315361 0.0997843835965)
(0.446284673494 0.23497831535 0.0359877020662)
(0.446868867973 0.234978315359 -0.0278089794647)
(0.447453062437 0.234978315353 -0.0916056610018)
(0.448037256915 0.234978315366 -0.155402342529)
(0.430517866766 0.237140568387 0.194264840278)
(0.432719744751 0.237140568383 -0.188538808506)
(0.430517866744 0.237140568381 0.194264840278)
(0.432719744728 0.237140568385 -0.18853880851)
(0.430517866749 0.237140568381 0.194264840275)
(0.432719744738 0.237140568388 -0.188538808509)
(0.430517866767 0.237140568384 0.194264840278)
(0.445116284553 0.234978315289 0.163581065133)
(0.445700479022 0.234978315328 0.0997843835982)
(0.446284673491 0.234978315302 0.0359877020647)
(0.446868867966 0.234978315277 -0.0278089794729)
(0.447453062439 0.234978315298 -0.0916056610019)
(0.432719744757 0.237140568384 -0.188538808506)
(0.448037256911 0.23497831531 -0.155402342532)
(0.487647405574 0.234978315339 0.163970528111)
(0.488231600047 0.234978315328 0.100173846581)
(0.488815794517 0.234978315353 0.036377165047)
(0.489399988989 0.23497831535 -0.0274195164868)
(0.489984183465 0.234978315352 -0.0912161980201)
(0.490568377932 0.234978315355 -0.155012879551)
(0.471624419677 0.237140568385 0.194537508458)
(0.473826297716 0.237140568387 -0.188266140321)
(0.471624419682 0.237140568382 0.194537508457)
(0.47382629769 0.237140568384 -0.188266140326)
(0.471624419688 0.237140568388 0.194537508459)
(0.473826297693 0.237140568385 -0.188266140327)
(0.47162441968 0.237140568381 0.194537508457)
(0.487647405578 0.234978315295 0.163970528113)
(0.488231600044 0.234978315289 0.100173846584)
(0.488815794518 0.234978315309 0.036377165045)
(0.489399988991 0.234978315293 -0.0274195164901)
(0.489984183465 0.234978315295 -0.0912161980198)
(0.473826297699 0.237140568383 -0.188266140324)
(0.490568377931 0.234978315272 -0.155012879551)
(0.530178526596 0.234978315341 0.164359991096)
(0.530762721067 0.234978315343 0.10056330956)
(0.53134691554 0.234978315348 0.0367666280321)
(0.531931110013 0.234978315345 -0.0270300535029)
(0.532515304484 0.234978315348 -0.0908267350337)
(0.533099498954 0.234978315344 -0.154623416564)
(0.512730972608 0.237140568386 0.194810176639)
(0.514932850636 0.237140568386 -0.187993472142)
(0.512730972613 0.237140568382 0.194810176641)
(0.514932850627 0.237140568381 -0.187993472143)
(0.512730972621 0.237140568386 0.194810176642)
(0.514932850634 0.237140568384 -0.187993472144)
(0.512730972608 0.237140568386 0.194810176642)
(0.530178526596 0.234978315298 0.164359991095)
(0.530762721068 0.234978315312 0.100563309562)
(0.531346915539 0.234978315297 0.0367666280285)
(0.531931110018 0.234978315296 -0.0270300535011)
(0.532515304485 0.234978315295 -0.0908267350332)
(0.514932850643 0.237140568382 -0.187993472142)
(0.533099498955 0.234978315286 -0.15462341657)
(0.57270964762 0.234978315348 0.164749454074)
(0.573293842089 0.234978315351 0.100952772542)
(0.573878036562 0.234978315363 0.0371560910068)
(0.574462231038 0.234978315356 -0.026640590522)
(0.575046425506 0.234978315346 -0.0904372720569)
(0.57563061998 0.234978315353 -0.154233953585)
(0.553837525558 0.237140568387 0.195082844819)
(0.556039403565 0.237140568386 -0.187720803963)
(0.553837525543 0.237140568385 0.195082844823)
(0.556039403575 0.237140568383 -0.187720803963)
(0.553837525557 0.237140568388 0.195082844823)
(0.556039403584 0.237140568387 -0.187720803961)
(0.553837525549 0.237140568381 0.195082844821)
(0.572709647621 0.234978315305 0.164749454079)
(0.57329384209 0.234978315302 0.100952772542)
(0.573878036561 0.234978315313 0.0371560910125)
(0.574462231039 0.23497831529 -0.0266405905173)
(0.575046425503 0.234978315304 -0.0904372720549)
(0.556039403591 0.237140568386 -0.187720803962)
(0.575630619981 0.234978315301 -0.154233953587)
(0.615240768643 0.234978315356 0.165138917058)
(0.615824963112 0.234978315356 0.101342235528)
(0.616409157583 0.234978315358 0.0375455539887)
(0.616993352058 0.234978315337 -0.026251127537)
(0.617577546525 0.234978315341 -0.0900478090729)
(0.618161740997 0.234978315359 -0.153844490606)
(0.594944078487 0.237140568386 0.195355513)
(0.63698357563 0.237140568387 0.15781937019)
(0.637392577901 0.237140568385 0.0961595407791)
(0.63780158017 0.237140568384 0.0344997113961)
(0.638210582444 0.237140568384 -0.0271601179861)
(0.638619584708 0.237140568383 -0.0888199473924)
(0.597145956485 0.237140568387 -0.187448135781)
(0.639028586977 0.237140568386 -0.150479776774)
(0.594944078485 0.237140568381 0.195355512998)
(0.636983575628 0.237140568383 0.157819370216)
(0.637392577902 0.237140568386 0.0961595407883)
(0.637801580171 0.237140568385 0.0344997113744)
(0.638210582447 0.237140568387 -0.0271601179947)
(0.638619584715 0.237140568388 -0.0888199473931)
(0.597145956487 0.237140568382 -0.187448135783)
(0.639028586974 0.237140568384 -0.15047977678)
(0.594944078485 0.237140568384 0.195355512997)
(0.636983575631 0.237140568385 0.157819370207)
(0.6373925779 0.237140568384 0.0961595407884)
(0.63780158017 0.237140568386 0.0344997113727)
(0.638210582445 0.237140568383 -0.0271601180177)
(0.638619584712 0.237140568387 -0.0888199474235)
(0.597145956491 0.237140568388 -0.187448135781)
(0.639028586973 0.237140568386 -0.150479776774)
(0.594944078489 0.237140568381 0.195355512999)
(0.615240768641 0.234978315319 0.165138917057)
(0.636983575631 0.23714056838 0.157819370188)
(0.615824963112 0.234978315301 0.101342235522)
(0.637392577902 0.237140568382 0.096159540782)
(0.616409157583 0.234978315298 0.0375455539942)
(0.637801580172 0.237140568382 0.0344997113766)
(0.616993352055 0.234978315285 -0.02625112754)
(0.638210582443 0.237140568384 -0.0271601180095)
(0.617577546525 0.234978315283 -0.0900478090744)
(0.638619584712 0.237140568384 -0.0888199473807)
(0.597145956472 0.237140568387 -0.187448135781)
(0.618161740998 0.234978315281 -0.153844490605)
(0.639028586977 0.237140568384 -0.150479776786)
)
;
}
}
// ************************************************************************* //
|
|
3c6ef50a8eb221600190e8d452a5b91c803169b6
|
0a2d603e36817872e9b87635ddedf838b15cf8eb
|
/chokudai/2_interesting_party.cpp
|
28e13f1da0710274c19897856cef9f29f97bf171
|
[] |
no_license
|
setupup/chokudai-book
|
1f3797978989cc0b927eec28e455f4e55db6df48
|
5a080f4698c5d3323f54c9e34ce65e26a167eaf7
|
refs/heads/master
| 2023-03-30T14:04:17.692810
| 2021-04-06T12:15:22
| 2021-04-06T12:15:22
| 355,154,087
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,210
|
cpp
|
2_interesting_party.cpp
|
/*#include <iostream>
#include <vector>
#include <string>
#include <unordered_map>
#include <utility>
using namespace std;
class InterestingParty
{
public:
int bestInvitation(vector<string> first, vector<string> second)
{
unordered_map<string, int> my_map;
for (auto& elem : first)
{
my_map[elem]++;
}
for (auto& elem : second)
{
my_map[elem]++;
}
int res = -1;
for (auto& elem : my_map)
{
if (elem.second > res)
{
res = elem.second;
}
}
return res;
}
};*/
#include <string>
#include <map>
#include <vector>
using namespace std;
class InterestingParty
{
public:
int bestInvitation(vector<string> first, vector<string> second)
{
map<string, int> dic; //dic is a good name
for (int i = 0; i < first.size(); ++i)
{
dic[first[i]] = 0;
dic[second[i]] = 0;
}//actually not needed.
for (int i = 0; i < first.size(); ++i)
{
dic[first[i]]++;
dic[second[i]]++;
}
int ans = 0;
map<string, int>::iterator it; //when to use const_iterator
for (it = dic.begin(); it != dic.end(); ++it)
{
if (ans < it->second)
{
ans = it->second;
}
}
return ans;
}
};
|
a2444a0e7cc6049846246a4c69b19a367dafc276
|
7425b5322d2e86e53b28f1a84d26e246f5e469e7
|
/trafficlight.ino
|
b3b15656b04cd019b25f5c8c8f0d496f5be52854
|
[
"Apache-2.0"
] |
permissive
|
lloesche/trafficlight
|
3db3d12df9b08fbdcbae8130dfeb8e13e01fd81d
|
046f60f47f64d442e413b352250327e92bbb89aa
|
refs/heads/master
| 2021-04-26T16:45:08.786729
| 2016-04-16T10:31:32
| 2016-04-16T10:31:32
| 56,086,949
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 8,739
|
ino
|
trafficlight.ino
|
// Copyright 2016 Lukas Lösche <lloesche@fedoraproject.org>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#define red_led 4 // Output pin of the red LED
#define yellow_led 3 // Output pin of the yellow LED
#define green_led 2 // Output pin of the green LED
#define red_phase 6000 // How long the red phase lasts in ms
#define yellow_phase 2000 // How long the yellow phase lasts in ms
#define green_phase 7000 // How long the green phase lasts in ms
#define button1 9 // Input pin of Button 1
#define button2 8 // Input pin of Button 2
#define button3 7 // Input pin of Button 3
#define num_buttons 3 // Number of installed buttons
bool button_down[num_buttons]; // Stores when a button is pushed down
bool red = false; // True while the red LED is on
bool yellow = false; // True while the yellow LED is on
bool green = false; // True while the green LED is on
unsigned long to_red_millis = 0; // Time in millis() when red was turned on
unsigned long to_yellow_millis = 0; // Time in millis() when yellow was turned on
unsigned long to_green_millis = 0; // Time in millis() when green was turned on
unsigned int buttons[] = {button1, button2, button3}; // List of buttons
void setup() {
pinMode(red_led, OUTPUT); // Set the LED Pins to
pinMode(yellow_led, OUTPUT); // be output pins
pinMode(green_led, OUTPUT); //
digitalWrite(red_led, LOW); // and pull them LOW.
digitalWrite(yellow_led, LOW); //
digitalWrite(green_led, LOW); //
for (int i=0; i<num_buttons; i++) { // Iterate over the list
pinMode(buttons[i], INPUT); // of push buttons and
digitalWrite(buttons[i], HIGH); // pull them HIGH.
button_down[i] = false; // Default to the button not
} // being pressed right now.
Serial.begin(115200);
blocking_light_test(); // Run an LED test at startup and
Serial.println("defaulting to red on");
to_red(); // default to red after the test.
}
void loop() {
unsigned long currentMillis = millis(); // Store the current time in millis();
if(red && yellow && !green) { // If we're currently switching from red to green
if ((unsigned long)(currentMillis - to_yellow_millis) >= yellow_phase) { // and the yellow phase is over.
Serial.println("red and yellow are on, switching to green");
red_off();
yellow_off();
green_on();
}
} else if(red && !yellow && !green) { // If the light is red
if ((unsigned long)(currentMillis - to_red_millis) >= red_phase) { // and the red phase is over.
Serial.println("red is on, turning on yellow");
red_on();
yellow_on();
}
} else if(green && !red && !yellow) { // If the light is green
if ((unsigned long)(currentMillis - to_green_millis) >= green_phase) { // and the green phase is over.
Serial.println("green is on, switching to yellow");
green_off();
yellow_on();
}
} else if(yellow && !red && !green) { // If we're currently switching from green to red
if ((unsigned long)(currentMillis - to_yellow_millis) >= yellow_phase) { // and the yellow phase is over.
Serial.println("yellow is on, switching to red");
yellow_off();
red_on();
}
} else { // If we're in some undefined state
Serial.println("undefined state, resetting"); // e.g. after a light test
red_on(); // default to red.
yellow_off();
green_off();
}
handle_buttons(); // Handle Button Presses
}
// The <color>_on/off() functions turn
// the individual LEDs on or off. They
// store the time a LED was turned on in
// millis() and set the corresponding bool
// color variable true or false.
void red_on() {
to_red_millis = millis();
digitalWrite(red_led, HIGH);
red = true;
Serial.println("red on");
}
void red_off() {
digitalWrite(red_led, LOW);
red = false;
Serial.println("red off");
}
void yellow_on() {
to_yellow_millis = millis();
digitalWrite(yellow_led, HIGH);
yellow = true;
Serial.println("yellow on");
}
void yellow_off() {
digitalWrite(yellow_led, LOW);
yellow = false;
Serial.println("yellow off");
}
void green_on() {
to_green_millis = millis();
digitalWrite(green_led, HIGH);
green = true;
Serial.println("green on");
}
void green_off() {
digitalWrite(green_led, LOW);
green = false;
Serial.println("green off");
}
// Switch from any state to red
void to_red() {
if(red) { // If the red light is on either alone or in combination
red_on(); // with yellow we switch immediately back to red
yellow_off(); // thereby extending the red phase.
green_off();
} else if(green) { // If light is currently green
to_green_millis = 0; // expire the green phase immediately.
} else if(!red && !yellow && !green) {
red_on(); // Turn red on if all lights were previously off.
}
// There's one scenario missing where the light is just yellow.
// We don't do anything in that case and just wait for
// it to switch to red.
}
// Switch from any state to green
void to_green() {
if(red && !yellow) { // If the light is red we expire
to_red_millis = 0; // the red phase immediately.
} else if (yellow && !red) { // If we're currently switching from green to red
yellow_off(); //
red_off(); //
green_on(); // abort the switch and go back to green immediately.
} else if (green) { // If we're already green we extend the green phase
red_off(); // and also turn all other lights off just in case
yellow_off(); // they were on due to some light test phase.
green_on();
} else if(!red && !yellow && !green) {
green_on(); // Turn green on if all lights were previously off.
}
// There's one scenario missing where red and yellow are on.
// In that case we don't do anything and just wait for the yellow
// phase to expire and the light switch to green by itself.
}
// Run an LED test.
// During the test no inputs are being processed.
// The test ends with all lights being off.
void blocking_light_test() {
int delay_time = 70;
int test_rounds = 10;
Serial.println("running light test");
red_off();
yellow_off();
green_off();
for(int i=0; i<test_rounds; i++) {
red_on();
delay(delay_time);
yellow_on();
delay(delay_time);
green_on();
delay(delay_time);
red_off();
delay(delay_time);
yellow_off();
delay(delay_time);
green_off();
delay(delay_time);
}
}
// Handle button presses
// The button inputs are HIGH by default and go LOW when pushed down.
void handle_buttons() {
for (int i=0; i<num_buttons; i++) { // Iterate over the installed buttons
if (!digitalRead(buttons[i])) { // If the button is pulled LOW
button_down[i] = true; // we remember that it was pressed down.
} else { // If it's currently not being pressed
if(button_down[i]) { // but previously was consider it a full
button_down[i] = false; // button push and reset it's state.
Serial.print("button ");
Serial.println(i+1);
switch(i) { // Check which button was pressed down.
case 0: // Button 1 switches
to_red(); // the light to red.
break;
case 1: // Button 2 runs
blocking_light_test(); // the LED startup test.
break;
case 2: // Button 3 switches
to_green(); // the light to green.
break;
}
}
}
}
}
|
2648e26a2d19b74303731dcfb35873f51c26bee7
|
44de17fa9520b5ab1d1042e92c1f963186a0a975
|
/game_maze/field.cpp
|
52ab4a5352ffc09b9d93ccb5bbf01768d9a677d2
|
[
"MIT"
] |
permissive
|
Vasya-dot/maze
|
4d095085d7cf0e5044157df1f4a1860852e4dd04
|
0446cea773307d3b435a2a2bfb368a59db40d0a3
|
refs/heads/master
| 2023-06-12T20:39:40.488386
| 2021-06-30T20:11:12
| 2021-06-30T20:11:12
| 361,111,931
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,689
|
cpp
|
field.cpp
|
#include "field.h"
string ToString(eFieldType type)
{
switch (type)
{
case eFieldType::EMPTY: return ".";
case eFieldType::START: return "S";
case eFieldType::RELIX: return "R";
case eFieldType::TRAP: return "#";
case eFieldType::FINISH: return "F";
case eFieldType::TREE: return "T";
case eFieldType::WELL: return "W";
default: return "0";
}
return "";
}
eFieldType FromString(const string& txt)
{
if (txt == ".") return eFieldType::EMPTY;
if (txt == "F") return eFieldType::FINISH;
if (txt == "R") return eFieldType::RELIX;
if (txt == "S") return eFieldType::START;
if (txt == "#") return eFieldType::TRAP;
if (txt == "T") return eFieldType::TREE;
if (txt == "W") return eFieldType::WELL;
return eFieldType::EMPTY;
}
float GetProbabylity(eFieldType type)
{
switch (type)
{
case eFieldType::EMPTY: return 0.4;
case eFieldType::START: return 0;
case eFieldType::RELIX: return 0.1;
case eFieldType::TRAP: return 0.3;
case eFieldType::FINISH: return 0;
case eFieldType::TREE: return 0.1;
case eFieldType::WELL: return 0.1;
default: return 0;
}
}
int GetCount(eFieldType type, size_t cols, size_t rows)
{
if (type == eFieldType::START || type == eFieldType::FINISH)
{
return 1;
}
return cols * rows * GetProbabylity(type);
}
map<eFieldType, int > GetTextures(size_t cols, size_t rows)
{
int count = 0;
map<eFieldType, int > countTexturs;
for (int i = 0; i< int(eFieldType::TOTAL_COUNT); i++)
{
countTexturs[(eFieldType)i] = GetCount(eFieldType(i), cols, rows);
count += countTexturs[(eFieldType)i];
}
if (cols * rows > count)
{
countTexturs[eFieldType::EMPTY] += cols * rows - count;
}
return countTexturs;
}
|
6a9c779a70e8c8fde8f0f75aa2bd7a693cae2a3f
|
b1ca290baa255e9939882e3711093a8ca0509687
|
/782/Untitled1.cpp
|
18465854011f4bf32cdfb61a9b6e43e6e60cd221
|
[] |
no_license
|
ZeeshanAhmadKhalil/DevCpp
|
26872a9059d683072c116169b4035ea6ae706c54
|
c68c67f2972cbc6bca2691dd773a4bff62aa5889
|
refs/heads/master
| 2020-07-29T00:00:33.065937
| 2019-09-24T06:13:57
| 2019-09-24T06:13:57
| 209,585,282
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 316
|
cpp
|
Untitled1.cpp
|
#include <iostream>
using namespace std;
main()
{
cout<<"Enter a character"<<endl;
char c;
cin>>c;
if(c=='Z'||c=='E'||c=='S'||c=='H'||c=='A'||c=='N'||c=='z'||c=='e'||c=='s'||c=='h'||c=='a'||c=='n')
cout<<"Entered Character is from Zeeshan"<<endl;
else
cout<<"Entered Character is not from Zeeshan"<<endl;
}
|
e32983e9194327ce085ddba4375398b9f3566bf6
|
9a6041afb5a34bea98eea4e131d912f7dabd5abf
|
/reversestr.cpp
|
a77302e6f6cfae8edf317f3c70fbd37aaad6523c
|
[] |
no_license
|
kishankr7979/Cpp_SDE_SHEET
|
513aeae9a9df8bac7639a2608caa10f34e21dea0
|
2de5f449bba77c56bc04540c65ae4bde53a0b6a8
|
refs/heads/main
| 2023-01-09T10:55:02.839193
| 2020-11-17T19:01:37
| 2020-11-17T19:01:37
| 309,479,489
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 460
|
cpp
|
reversestr.cpp
|
#include <iostream>
#include<string>
using namespace std;
int main() {
//code
int arr[10] = {1,3,5,2,6,8,9,7,4};
int temp,j,i;
cout<<"The Given array is : ";
for(int i=0; i<10; i++)
{
cout<<arr[i];
}
for(int i=0; i<10; j++)
{
for (int j=0; j<=10-i; j++)
{
if(arr[j]>arr[j+1])
{
temp=arr[j];
arr[j]= arr[j+1];
arr[j+1] = temp;
}
}
}
cout<<"after Sorting";
for(int j=0; j<10; j++)
{
cout<<arr[j];
}
return 0;
}
|
83ecb290b21eb099d686af0a6840a584b5b8185b
|
0b79f365d0abec895da0db94eb203848f9de8462
|
/include/server_http.hpp
|
1d3d717015e1ff7ef4de2c503d9b36fd6ac945c3
|
[
"MIT"
] |
permissive
|
mmicko/webpp
|
bc389b50a77cd477ab745a737537d7c9b919d9ce
|
e1450fc989e5fefab8a542c28f3593fab63e0516
|
refs/heads/master
| 2020-07-12T22:30:13.519582
| 2017-06-09T07:34:30
| 2017-06-09T07:34:30
| 73,898,382
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 20,130
|
hpp
|
server_http.hpp
|
// license:MIT
// copyright-holders:Ole Christian Eidheim, Miodrag Milanovic
#ifndef SERVER_HTTP_HPP
#define SERVER_HTTP_HPP
#if defined(_MSC_VER)
#pragma warning(disable:4503)
#endif
#include "asio.h"
#include "asio/system_timer.hpp"
#include "path_to_regex.hpp"
#include <map>
#include <unordered_map>
#include <thread>
#include <functional>
#include <iostream>
#include <sstream>
#include <regex>
#ifndef CASE_INSENSITIVE_EQUALS_AND_HASH
#define CASE_INSENSITIVE_EQUALS_AND_HASH
class case_insensitive_equals {
public:
bool operator()(const std::string &key1, const std::string &key2) const {
return key1.size() == key2.size()
&& equal(key1.cbegin(), key1.cend(), key2.cbegin(),
[](std::string::value_type key1v, std::string::value_type key2v)
{ return tolower(key1v) == tolower(key2v); });
}
};
class case_insensitive_hash {
public:
size_t operator()(const std::string &key) const {
size_t seed = 0;
for (auto &c : key) {
std::hash<char> hasher;
seed ^= hasher(std::tolower(c)) + 0x9e3779b9 + (seed << 6) + (seed >> 2);
}
return seed;
}
};
#endif
namespace webpp {
template <class socket_type>
class Server;
template <class socket_type>
class ServerBase {
public:
virtual ~ServerBase() {}
class Response {
friend class ServerBase<socket_type>;
asio::streambuf m_streambuf;
std::shared_ptr<socket_type> m_socket;
std::ostream m_ostream;
std::stringstream m_header;
explicit Response(const std::shared_ptr<socket_type> &socket) : m_socket(socket), m_ostream(&m_streambuf) {}
static std::string statusToString(int status)
{
switch (status) {
default:
case 200: return "HTTP/1.0 200 OK\r\n";
case 201: return "HTTP/1.0 201 Created\r\n";
case 202: return "HTTP/1.0 202 Accepted\r\n";
case 204: return "HTTP/1.0 204 No Content\r\n";
case 300: return "HTTP/1.0 300 Multiple Choices\r\n";
case 301: return "HTTP/1.0 301 Moved Permanently\r\n";
case 302: return "HTTP/1.0 302 Moved Temporarily\r\n";
case 304: return "HTTP/1.0 304 Not Modified\r\n";
case 400: return "HTTP/1.0 400 Bad Request\r\n";
case 401: return "HTTP/1.0 401 Unauthorized\r\n";
case 403: return "HTTP/1.0 403 Forbidden\r\n";
case 404: return "HTTP/1.0 404 Not Found\r\n";
case 500: return "HTTP/1.0 500 Internal Server Error\r\n";
case 501: return "HTTP/1.0 501 Not Implemented\r\n";
case 502: return "HTTP/1.0 502 Bad Gateway\r\n";
case 504: return "HTTP/1.0 503 Service Unavailable\r\n";
}
}
public:
Response& status(int number) { m_ostream << statusToString(number); return *this; }
void type(std::string str) { m_header << "Content-Type: "<< str << "\r\n"; }
void send(std::string str) { m_ostream << m_header.str() << "Content-Length: " << str.length() << "\r\n\r\n" << str; }
size_t size() const { return m_streambuf.size(); }
std::shared_ptr<socket_type> socket() { return m_socket; }
/// If true, force server to close the connection after the response have been sent.
///
/// This is useful when implementing a HTTP/1.0-server sending content
/// without specifying the content length.
bool close_connection_after_response = false;
};
class Content : public std::istream {
friend class ServerBase<socket_type>;
public:
size_t size() const {
return streambuf.size();
}
std::string string() const {
std::stringstream ss;
ss << rdbuf();
return ss.str();
}
private:
asio::streambuf &streambuf;
explicit Content(asio::streambuf &streambuf): std::istream(&streambuf), streambuf(streambuf) {}
};
class Request {
friend class ServerBase<socket_type>;
friend class Server<socket_type>;
public:
std::string method, path, http_version;
Content content;
std::unordered_multimap<std::string, std::string, case_insensitive_hash, case_insensitive_equals> header;
path2regex::Keys keys;
std::map<std::string, std::string> params;
std::string remote_endpoint_address;
unsigned short remote_endpoint_port;
/// Returns query keys with percent-decoded values.
std::unordered_multimap<std::string, std::string, case_insensitive_hash, case_insensitive_equals> parse_query_string() {
std::unordered_multimap<std::string, std::string, case_insensitive_hash, case_insensitive_equals> result;
auto qs_start_pos = path.find('?');
if (qs_start_pos != std::string::npos && qs_start_pos + 1 < path.size()) {
++qs_start_pos;
static std::regex pattern("([\\w+%]+)=?([^&]*)");
int submatches[] = {1, 2};
auto it_begin = std::sregex_token_iterator(path.begin() + qs_start_pos, path.end(), pattern, submatches);
auto it_end = std::sregex_token_iterator();
for (auto it = it_begin; it != it_end; ++it) {
auto submatch1=it->str();
auto submatch2=(++it)->str();
auto query_it = result.emplace(submatch1, submatch2);
auto &value = query_it->second;
for (size_t c = 0; c < value.size(); ++c) {
if (value[c] == '+')
value[c] = ' ';
else if (value[c] == '%' && c + 2 < value.size()) {
auto hex = value.substr(c + 1, 2);
auto chr = static_cast<char>(std::strtol(hex.c_str(), nullptr, 16));
value.replace(c, 3, &chr, 1);
}
}
}
}
return result;
}
private:
Request(const socket_type &socket): content(streambuf) {
try {
remote_endpoint_address=socket.lowest_layer().remote_endpoint().address().to_string();
remote_endpoint_port=socket.lowest_layer().remote_endpoint().port();
}
catch(...) {}
}
asio::streambuf streambuf;
};
class Config {
friend class ServerBase<socket_type>;
Config(unsigned short port) : port(port) {}
public:
/// Port number to use. Defaults to 80 for HTTP and 443 for HTTPS.
unsigned short port;
/// Number of threads that the server will use when start() is called. Defaults to 1 thread.
size_t thread_pool_size=1;
/// Timeout on request handling. Defaults to 5 seconds.
size_t timeout_request=5;
/// Timeout on content handling. Defaults to 300 seconds.
size_t timeout_content=300;
/// IPv4 address in dotted decimal form or IPv6 address in hexadecimal notation.
/// If empty, the address will be any address.
std::string address;
/// Set to false to avoid binding the socket to an address that is already in use. Defaults to true.
bool reuse_address=true;
};
///Set before calling start().
Config m_config;
private:
class regex_orderable : public std::regex {
std::string str;
public:
regex_orderable(std::regex reg, const std::string ®ex_str) : std::regex(reg), str(regex_str) {}
bool operator<(const regex_orderable &rhs) const {
return str<rhs.str;
}
std::string getstr() const { return str; }
};
using http_handler = std::function<void(std::shared_ptr<Response>, std::shared_ptr<Request>)>;
public:
template<class T> void on_get(std::string regex, T&& func) { std::lock_guard<std::mutex> lock(m_resource_mutex); path2regex::Keys keys; auto reg = path2regex::path_to_regex(regex, keys); m_resource[regex_orderable(reg,regex)]["GET"] = std::make_tuple(std::move(keys), func); }
template<class T> void on_get(T&& func) { std::lock_guard<std::mutex> lock(m_resource_mutex); m_default_resource["GET"] = func; }
template<class T> void on_post(std::string regex, T&& func) { std::lock_guard<std::mutex> lock(m_resource_mutex); path2regex::Keys keys; auto reg = path2regex::path_to_regex(regex, keys); m_resource[regex_orderable(reg, regex)]["POST"] = std::make_tuple(std::move(keys), func); }
template<class T> void on_post(T&& func) { std::lock_guard<std::mutex> lock(m_resource_mutex); m_default_resource["POST"] = func; }
template<class T> void on_put(std::string regex, T&& func) { std::lock_guard<std::mutex> lock(m_resource_mutex); path2regex::Keys keys; auto reg = path2regex::path_to_regex(regex, keys); m_resource[regex_orderable(reg, regex)]["PUT"] = std::make_tuple(std::move(keys), func); }
template<class T> void on_put(T&& func) { std::lock_guard<std::mutex> lock(m_resource_mutex); m_default_resource["PUT"] = func; }
template<class T> void on_patch(std::string regex, T&& func) { std::lock_guard<std::mutex> lock(m_resource_mutex); path2regex::Keys keys; auto reg = path2regex::path_to_regex(regex, keys); m_resource[regex_orderable(reg, regex)]["PATCH"] = std::make_tuple(std::move(keys), func); }
template<class T> void on_patch(T&& func) { std::lock_guard<std::mutex> lock(m_resource_mutex); m_default_resource["PATCH"] = func; }
template<class T> void on_delete(std::string regex, T&& func) { std::lock_guard<std::mutex> lock(m_resource_mutex); path2regex::Keys keys; auto reg = path2regex::path_to_regex(regex, keys); m_resource[regex_orderable(reg, regex)]["DELETE"] = std::make_tuple(std::move(keys), func); }
template<class T> void on_delete(T&& func) { std::lock_guard<std::mutex> lock(m_resource_mutex); m_default_resource["DELETE"] = func; }
void remove_handler(std::string regex)
{
std::lock_guard<std::mutex> lock(m_resource_mutex);
for (auto it = m_resource.begin(); it != m_resource.end(); ++it)
{
if (it->first.getstr() == regex)
{
m_resource.erase(it);
break;
}
}
}
std::function<void(std::shared_ptr<typename ServerBase<socket_type>::Request>, const std::error_code&)> on_error;
std::function<void(std::shared_ptr<socket_type> socket, std::shared_ptr<typename ServerBase<socket_type>::Request>)> on_upgrade;
private:
/// Warning: do not add or remove resources after start() is called
std::map<regex_orderable, std::map<std::string, std::tuple<path2regex::Keys, http_handler>>> m_resource;
std::map<std::string, http_handler> m_default_resource;
std::mutex m_resource_mutex;
public:
virtual void start() {
if(!m_io_context)
m_io_context=std::make_shared<asio::io_context>();
if(m_io_context->stopped())
m_io_context.reset();
asio::ip::tcp::endpoint endpoint;
if(m_config.address.size()>0)
endpoint=asio::ip::tcp::endpoint(asio::ip::make_address(m_config.address), m_config.port);
else
endpoint=asio::ip::tcp::endpoint(asio::ip::tcp::v4(), m_config.port);
if(!acceptor)
acceptor= std::make_unique<asio::ip::tcp::acceptor>(*m_io_context);
acceptor->open(endpoint.protocol());
acceptor->set_option(asio::socket_base::reuse_address(m_config.reuse_address));
acceptor->bind(endpoint);
acceptor->listen();
accept();
if (!m_external_context)
m_io_context->run();
}
void stop() const
{
acceptor->close();
if (!m_external_context)
m_io_context->stop();
}
///Use this function if you need to recursively send parts of a longer message
void send(const std::shared_ptr<Response> &response, const std::function<void(const std::error_code&)>& callback=nullptr) const {
asio::async_write(*response->socket(), response->m_streambuf, [this, response, callback](const std::error_code& ec, size_t /*bytes_transferred*/) {
if(callback)
callback(ec);
});
}
void set_io_context(std::shared_ptr<asio::io_context> new_io_context)
{
m_io_context = new_io_context;
m_external_context = true;
}
protected:
std::shared_ptr<asio::io_context> m_io_context;
bool m_external_context;
std::unique_ptr<asio::ip::tcp::acceptor> acceptor;
std::vector<std::thread> threads;
ServerBase(unsigned short port) : m_config(port), m_external_context(false) {}
virtual void accept()=0;
std::shared_ptr<asio::system_timer> get_timeout_timer(const std::shared_ptr<socket_type> &socket, long seconds) {
if(seconds==0)
return nullptr;
auto timer = std::make_shared<asio::system_timer>(*m_io_context);
timer->expires_at(std::chrono::system_clock::now() + std::chrono::seconds(seconds));
timer->async_wait([socket](const std::error_code& ec){
if(!ec) {
std::error_code newec = ec;
socket->lowest_layer().shutdown(asio::ip::tcp::socket::shutdown_both, newec);
socket->lowest_layer().close();
}
});
return timer;
}
void read_request_and_content(const std::shared_ptr<socket_type> &socket) {
//Create new streambuf (Request::streambuf) for async_read_until()
//shared_ptr is used to pass temporary objects to the asynchronous functions
std::shared_ptr<Request> request(new Request(*socket));
//Set timeout on the following asio::async-read or write function
auto timer = get_timeout_timer(socket, m_config.timeout_request);
asio::async_read_until(*socket, request->streambuf, "\r\n\r\n",
[this, socket, request, timer](const std::error_code& ec, size_t bytes_transferred) {
if(timer)
timer->cancel();
if(!ec) {
//request->streambuf.size() is not necessarily the same as bytes_transferred, from Boost-docs:
//"After a successful async_read_until operation, the streambuf may contain additional data beyond the delimiter"
//The chosen solution is to extract lines from the stream directly when parsing the header. What is left of the
//streambuf (maybe some bytes of the content) is appended to in the async_read-function below (for retrieving content).
size_t num_additional_bytes=request->streambuf.size()-bytes_transferred;
if (!parse_request(request))
return;
//If content, read that as well
auto it = request->header.find("Content-Length");
if (it != request->header.end()) {
unsigned long long content_length;
try {
content_length = stoull(it->second);
}
catch (const std::exception &) {
if (on_error)
on_error(request, std::error_code(EPROTO, std::generic_category()));
return;
}
if (content_length > num_additional_bytes) {
//Set timeout on the following asio::async-read or write function
auto timer2 = get_timeout_timer(socket, m_config.timeout_content);
asio::async_read(*socket, request->streambuf,
asio::transfer_exactly(size_t(content_length) - num_additional_bytes),
[this, socket, request, timer2]
(const std::error_code& ec, size_t /*bytes_transferred*/) {
if (timer2)
timer2->cancel();
if (!ec)
find_resource(socket, request);
else if (on_error)
on_error(request, ec);
});
}
else {
find_resource(socket, request);
}
}
else {
find_resource(socket, request);
}
}
else if (on_error)
on_error(request, ec);
});
}
bool parse_request(const std::shared_ptr<Request> &request) const {
std::string line;
getline(request->content, line);
size_t method_end;
if((method_end=line.find(' '))!=std::string::npos) {
size_t path_end;
if((path_end=line.find(' ', method_end+1))!=std::string::npos) {
request->method=line.substr(0, method_end);
request->path=line.substr(method_end+1, path_end-method_end-1);
size_t protocol_end;
if((protocol_end=line.find('/', path_end+1))!=std::string::npos) {
if(line.compare(path_end+1, protocol_end-path_end-1, "HTTP")!=0)
return false;
request->http_version=line.substr(protocol_end+1, line.size()-protocol_end-2);
}
else
return false;
getline(request->content, line);
size_t param_end;
while((param_end=line.find(':'))!=std::string::npos) {
size_t value_start=param_end+1;
if((value_start)<line.size()) {
if(line[value_start]==' ')
value_start++;
if(value_start<line.size())
request->header.emplace(line.substr(0, param_end), line.substr(value_start, line.size() - value_start - 1));
}
getline(request->content, line);
}
}
else
return false;
}
else
return false;
return true;
}
void find_resource(const std::shared_ptr<socket_type> &socket, const std::shared_ptr<Request> &request) {
std::lock_guard<std::mutex> lock(m_resource_mutex);
//Upgrade connection
if(on_upgrade) {
auto it=request->header.find("Upgrade");
if(it!=request->header.end()) {
on_upgrade(socket, request);
return;
}
}
//Find path- and method-match, and call write_response
for(auto& regex_method : m_resource) {
auto it = regex_method.second.find(request->method);
if (it != regex_method.second.end()) {
std::smatch sm_res;
if (std::regex_match(request->path, sm_res, regex_method.first)) {
request->keys = std::get<0>(it->second);
for (size_t i = 0; i < request->keys.size(); i++) {
request->params.insert(std::pair<std::string, std::string>(request->keys[i].name, sm_res[i + 1]));
}
write_response(socket, request, std::get<1>(it->second));
return;
}
}
}
auto it=m_default_resource.find(request->method);
if(it!=m_default_resource.end()) {
write_response(socket, request, it->second);
}
}
void write_response(const std::shared_ptr<socket_type> &socket, const std::shared_ptr<Request> &request, http_handler& resource_function) {
//Set timeout on the following asio::async-read or write function
auto timer = get_timeout_timer(socket, m_config.timeout_content);
auto response=std::shared_ptr<Response>(new Response(socket), [this, request, timer](Response *response_ptr) {
auto response=std::shared_ptr<Response>(response_ptr);
send(response, [this, response, request, timer](const std::error_code& ec) {
if (timer)
timer->cancel();
if (!ec) {
if (response->close_connection_after_response)
return;
auto range = request->header.equal_range("Connection");
case_insensitive_equals check;
for (auto it = range.first; it != range.second; ++it) {
if (check(it->second, "close")) {
return;
} else if (check(it->second, "keep-alive")) {
this->read_request_and_content(response->socket());
return;
}
}
if(request->http_version >= "1.1")
read_request_and_content(response->socket());
}
else if (on_error)
on_error(request, ec);
});
});
try {
resource_function(response, request);
}
catch(const std::exception &) {
if (on_error)
on_error(request, std::error_code(EPROTO, std::generic_category()));
}
}
};
template<class socket_type>
class Server : public ServerBase<socket_type> {
public:
Server(unsigned short port, size_t num_threads, long timeout_request, long timeout_send_or_receive)
: ServerBase<socket_type>(port, num_threads, timeout_request, timeout_send_or_receive)
{
}
};
using HTTP = asio::ip::tcp::socket;
template<>
class Server<HTTP> : public ServerBase<HTTP> {
public:
Server() : ServerBase<HTTP>::ServerBase(80) {}
protected:
void accept() override {
//Create new socket for this connection
//Shared_ptr is used to pass temporary objects to the asynchronous functions
auto socket = std::make_shared<HTTP>(*m_io_context);
acceptor->async_accept(*socket, [this, socket](const std::error_code& ec){
//Immediately start accepting a new connection (if io_context hasn't been stopped)
if (ec != asio::error::operation_aborted)
accept();
if(!ec) {
asio::ip::tcp::no_delay option(true);
socket->set_option(option);
read_request_and_content(socket);
} else if (on_error)
on_error(std::shared_ptr<Request>(new Request(*socket)), ec);
});
}
};
class http_server : public Server<HTTP> {
public:
http_server() : Server<HTTP>::Server() {}
};
}
#endif /* SERVER_HTTP_HPP */
|
3d8e59bd8e5e6588bfe10aa8312854f1dafc0c7e
|
ead9b4e788bab8542a39215358e32c0df8a9533c
|
/MAC/GCF/PVSS/include/GCF/PVSS/PVSSresult.h
|
d5402b0cd61291cb2d6f3bd01796d4cf729f88a4
|
[] |
no_license
|
iniyannatarajan/pyimager-olegs-mods
|
34968740d47d8e38d65ff4005d215e6f87ea2a80
|
6218fdbed57c8c442238372cda408a69e91b2bb7
|
refs/heads/master
| 2022-11-12T21:50:18.539394
| 2015-08-18T09:30:25
| 2015-08-18T09:30:25
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,774
|
h
|
PVSSresult.h
|
//# PVSSresult.h: preprocessor definitions of various constants
//#
//# Copyright (C) 2002-2003
//# ASTRON (Netherlands Foundation for Research in Astronomy)
//# P.O.Box 2, 7990 AA Dwingeloo, The Netherlands, seg@astron.nl
//#
//# This program is free software; you can redistribute it and/or modify
//# it under the terms of the GNU General Public License as published by
//# the Free Software Foundation; either version 2 of the License, or
//# (at your option) any later version.
//#
//# This program is distributed in the hope that it will be useful,
//# but WITHOUT ANY WARRANTY; without even the implied warranty of
//# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
//# GNU General Public License for more details.
//#
//# You should have received a copy of the GNU General Public License
//# along with this program; if not, write to the Free Software
//# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//#
//# $Id: PVSSresult.h 15657 2010-05-11 10:19:59Z loose $
#ifndef PVSSRESULT_H
#define PVSSRESULT_H
namespace LOFAR {
namespace GCF {
namespace PVSS {
enum PVSSresult
{
SA_NO_ERROR = 0, // 0
SA_SCHEDULED, // 1
SA_PROPNAME_MISSING, // 2
SA_DPTYPE_UNKNOWN, // 3
SA_MACTYPE_UNKNOWN, // 4
SA_CREATEPROP_FAILED, // 5
SA_DELETEPROP_FAILED, // 6
SA_SUBSCRIBEPROP_FAILED, // 7
SA_UNSUBSCRIBEPROP_FAILED, // 8
SA_SETPROP_FAILED, // 9
SA_GETPROP_FAILED, // 10
SA_QUERY_SUBSC_FAILED, // 11
SA_QUERY_UNSUBSC_FAILED, // 12
SA_SCADA_NOT_AVAILABLE, // 13
SA_PROP_DOES_NOT_EXIST, // 14
SA_PROP_ALREADY_EXIST, // 15
SA_MACTYPE_MISMATCH, // 16
SA_ELEMENTS_MISSING // 17
};
} // namespace PVSS
} // namespace GCF
} // namespace LOFAR
#endif
|
29d8e8a9162da0d4cf1058a31d36bcd297b73c66
|
cc4a8f9e4d7298fa36c8eca9cbf93c213ca128ce
|
/GE/Basics.h
|
8164088691115f003c3a89bb74a02cd8cf16ed47
|
[] |
no_license
|
longsamaa/SPAProject
|
2a57f2fe1a28b6853c977961578a5805d0a7984d
|
3fd0fff9778bd3b3e8c0ddca4d6c14dfd27df567
|
refs/heads/main
| 2023-02-18T19:22:25.092711
| 2021-01-23T04:55:45
| 2021-01-23T04:55:45
| 331,819,138
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,414
|
h
|
Basics.h
|
#ifndef _BASICS_H_
#define _BASICS_H_
#ifndef GE_INT8
#define GE_INT8 signed char
#endif
#ifndef GE_INT8U
#define GE_INT8U unsigned char
#endif
#ifndef GE_INT16
#define GE_INT16 short
#endif
#ifndef GE_INT16U
#define GE_INT16U unsigned short
#endif
#ifndef GE_INT32
#define GE_INT32 int
#endif
#ifndef GE_INT32U
#define GE_INT32U unsigned
#endif
#ifndef GE_INT64
#if defined(_MSC_VER)
#define GE_INT64 signed __int64
#else
#define GE_INT64 signed long long
#endif
#endif
#ifndef GE_INT64U
#if defined(_MSC_VER)
#define GE_INT64U unsigned __int64
#else
#define GE_INT64U unsigned long long
#endif
#endif
//------------------------------------------------ Some fixes for MS Visual C++
#if defined(_MSC_VER)
#pragma warning(disable:4786) // Identifier was truncated...
#endif
#if defined(_MSC_VER)
#define GE_INLINE __forceinline
#else
#define GE_INLINE inline
#endif
namespace MapEngine
{
//-------------------------------------------------------------------------
typedef GE_INT8 int8; //----int8
typedef GE_INT8U int8u; //----int8u
typedef GE_INT16 int16; //----int16
typedef GE_INT16U int16u; //----int16u
typedef GE_INT32 int32; //----int32
typedef GE_INT32U int32u; //----int32u
typedef GE_INT64 int64; //----int64
typedef GE_INT64U int64u; //----int64u
typedef float real32; //----real32
typedef double real64; //----real64
#define MakeInt16u(lo, hi) ((int16u)(((int8u)(lo)) | ((int16u)((int8u)(hi))) << 8))
#define MakeInt32(lo, hi) ((int32)(((int16u)(lo)) | ((int32u)((int16u)(hi))) << 16))
#define LoInt16u(l) ((int16u)(l))
#define HiInt16u(l) ((int16u)(((int32u)(l) >> 16) & 0xFFFF))
#define LoInt8u(w) ((int8u)(w))
#define HiInt8u(w) ((int8u)(((int16u)(w) >> 8) & 0xFF))
#define LoInt64u(x) ((int32u)(x))
#define LoInt64(x) ((int32)(x))
#if defined(_MSC_VER) && _MSC_VER < 1300 // bug in MVC 6.0
#define HiInt64u(x) (sizeof(x) < 8 ? 0 : ((int32u)((int64u)(x)>>32)))
#define HiInt64(x) (sizeof(x) < 8 ? 0 : ((int32)((int64)(x)>>32)))
#else
#define HiInt64u(x) ((int32u)((int64u)(x)>>32))
#define HiInt64(x) ((int32)((int64)(x)>>32))
#endif
#define MakeInt64u(lo, hi) ((((int64u)(hi)) << 32) | (int32u)(lo))
#define MakeInt64(lo, hi) ((((int64)(hi)) << 32) | (int32u)(lo))
///#define MAX_NAT8 int64u(-1)
} // MapEngine
#endif // _BASICS_H_
|
f70bdecf1e7b0185ad5bf3c0bc884e8cdfe58e6c
|
b21df2103054c5532e36505828de652b9f6c3baf
|
/PS-Backjoon/PS-Backjoon/11279_최대힙.cpp
|
5f0fc5df3eea44499aad15ee20e84cde7ac351d5
|
[] |
no_license
|
geonhee7721/PS-Backjoon
|
cbdb762313f8b7cde27f9b256ccda774c6711f95
|
1126c28146bc05be48ef88e09adab5a028cbc8da
|
refs/heads/main
| 2023-03-23T00:12:29.159606
| 2021-03-14T05:13:32
| 2021-03-14T05:13:32
| 345,235,512
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,130
|
cpp
|
11279_최대힙.cpp
|
#include <stdio.h>
int heap[100001];
int N;
int heapSize = 0;
void heapPush(int value)
{
heap[heapSize] = value;
int current = heapSize;
while (current > 0 && heap[current] > heap[(current - 1) / 2]) {
int temp = heap[(current - 1) / 2];
heap[(current - 1) / 2] = heap[current];
heap[current] = temp;
current = (current - 1) / 2;
}
heapSize = heapSize + 1;
}
int heapPop()
{
if (heapSize <= 0) return 0;
int value = heap[0];
heapSize = heapSize - 1;
heap[0] = heap[heapSize];
int current = 0;
while (current * 2 + 1 < heapSize) {
int child;
if (current * 2 + 2 == heapSize) child = current * 2 + 1;
else child = heap[current * 2 + 1] > heap[current * 2 + 2] ? current * 2 + 1 : current * 2 + 2;
if (heap[current] > heap[child]) break;
int temp = heap[current];
heap[current] = heap[child];
heap[child] = temp;
current = child;
}
return value;
}
int main() {
scanf("%d", &N);
int value;
for (int i = 0; i < N; ++i) {
scanf("%d", &value);
if (value == 0) printf("%d\n", heapPop());
else heapPush(value);
}
return 0;
}
|
1f78d86076d19461263922e71127f8ba4f7a7853
|
490f58b61c3bd4ff812e651815a4080341d1af1b
|
/boost/distributions/src/ncx2.cpp
|
3afc5535dcd2f1943d38d30530cc29ca46cadaaa
|
[] |
no_license
|
plusk01/tests
|
586c2543fce4fe27e263870351bad70a70225163
|
1a86b0c4db8dbbfd1b5c35d1e3d725b4042b49a4
|
refs/heads/main
| 2023-06-02T04:39:47.146173
| 2023-05-12T14:50:30
| 2023-05-12T14:50:30
| 67,880,187
| 4
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 721
|
cpp
|
ncx2.cpp
|
#include <iostream>
#include <boost/math/distributions/non_central_chi_squared.hpp>
int main(int argc, char *argv[])
{
static constexpr int k = 3;
static constexpr double lambda = 10;
boost::math::non_central_chi_squared ncx2(k, lambda);
std::cout << "ncx2 degrees of freedom, k: " << ncx2.degrees_of_freedom() << std::endl;
std::cout << "ncx2 noncentrality, λ: " << ncx2.non_centrality() << std::endl;
static constexpr int N = 100;
static constexpr double step = 0.1;
static constexpr double start = lambda - (N/2)*step;
for (double x=start; x<(start+N*step); x += step) {
std::cout << "f(" << x << ") = " << boost::math::pdf(ncx2, x) << std::endl;
}
return 0;
}
|
671ca56c254eb0a477918ede1fdcc480fa51700d
|
178e83cc613c9fc527e7352417cd0c1baaf7bd7c
|
/beginners_selection/086c.cpp
|
f43fa1d5fa7b4b3d615b4f8aa1ce1ff3b4872417
|
[] |
no_license
|
shohirose/atcoder
|
658d32e5c79e198cbba3e5afa34a49c5504a9878
|
6ebf9cd39fe6c247fe27b9cf4c09f5020cc67bce
|
refs/heads/master
| 2021-06-08T13:40:19.932763
| 2021-05-13T06:33:56
| 2021-05-13T06:33:56
| 165,779,995
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 837
|
cpp
|
086c.cpp
|
#include <cmath>
#include <iostream>
#include <vector>
struct point {
int t;
int x;
int y;
friend std::istream& operator>>(std::istream& is, point& p) {
is >> p.t >> p.x >> p.y;
return is;
}
};
bool is_movable(const point& p1, const point& p2) {
const auto dt = p2.t - p1.t;
const auto dist = abs(p1.x - p2.x) + abs(p1.y - p2.y);
if (dt < dist)
return false;
else if (dt == dist)
return true;
else
return (dt - dist) % 2 == 0;
}
int main() {
int n;
std::cin >> n;
std::vector<point> pts(n + 1);
for (int i = 1; i <= n; ++i) {
std::cin >> pts[i];
}
for (size_t i = 0; i < pts.size() - 1; ++i) {
if (!is_movable(pts[i], pts[i + 1])) {
std::cout << "No" << std::endl;
return EXIT_SUCCESS;
}
}
std::cout << "Yes" << std::endl;
return EXIT_SUCCESS;
}
|
ec0455363c5e67c87fa5fafa20aaddefac17e21f
|
cfdfb8b045feb9efc845dab5f7de6ce815b3246a
|
/Classes/TestScene.h
|
16dfab03c4d65c73d2d0cc9b931ed68fbaea41ff
|
[] |
no_license
|
joyfish/TowerTD
|
814e3063a97bfff1ba9f6d0fa6392886cc787727
|
ba793ad00c10adf923dd28a813e44f6ca9956977
|
refs/heads/master
| 2021-01-14T09:10:29.032591
| 2014-10-17T03:24:11
| 2014-10-17T03:24:11
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 191
|
h
|
TestScene.h
|
#ifndef __TESTSCENE_H
#define __TESTSCENE_H
#include "cocos2d.h"
USING_NS_CC;
class TestScene:public Scene
{
public:
virtual bool init();
CREATE_FUNC(TestScene);
protected:
};
#endif
|
962177620708837f10685e9ab7b4930c2d142104
|
80e05a52e86479e3d45a4483c8aac53c6548105e
|
/dijkstra.cpp
|
504aee97cb80cbfedf1d2d507e80a8637cad9a62
|
[] |
no_license
|
ydooWoody/LSRouting
|
c4af5a3f37f2e437d8ad6d561f026de66c80abff
|
069884fcd8616653afe670bbd1bce792669139e2
|
refs/heads/master
| 2021-08-22T19:34:55.717995
| 2017-12-01T03:09:38
| 2017-12-01T03:09:38
| 110,162,083
| 0
| 0
| null | 2017-11-28T02:10:10
| 2017-11-09T20:21:18
|
C++
|
UTF-8
|
C++
| false
| false
| 1,493
|
cpp
|
dijkstra.cpp
|
#include <iostream>
#include <vector>
#include <set>
#include <limits>
using namespace std;
const int SIZE = 1000;
class Graph {
int g[SIZE][SIZE];
public:
void add(int x, int y, int w) {
g[x][y] = w;
g[y][x] = w;
}
int dijkstra(int src, int dest) {
set<int> q;
vector<int> dist(SIZE);
//vector<int> prev(SIZE);
for (int v = 0; v < SIZE; ++v) {
dist[v] = numeric_limits<int>::max();
//prev[v] = -1;
q.insert(v);
}
dist[src] = 0;
while (!q.empty()) {
int u = *q.begin();
int min_dist = dist[*q.begin()];
for (int v : q) {
if (dist[v] < min_dist) {
min_dist = dist[v];
u = v;
}
}
q.erase(u);
for (int v = 0; v < SIZE; ++v) {
if (g[u][v] != 0 && q.count(v)) {
int new_dist = dist[u] + g[u][v];
if (new_dist < dist[v]) {
dist[v] = new_dist;
//prev[v] = u;
}
}
}
}
return dist[dest];
}
};
int main() {
Graph graph;
graph.add(0, 1, 10);
graph.add(0, 3, 5);
graph.add(1, 2, 1);
graph.add(3, 2, 2);
cout << graph.dijkstra(0, 2) << endl; // should be 7
return 0;
}
|
65cd569fdeef7060888a27a666159d144880fdb8
|
6e206cdb058e7c7dfecbf59882d1f375dfdbeabd
|
/spec/rational/doubles-can-be-converted-to-rationals.cpp
|
ed96e7f471189397d19d954ba69fa558f7f900ed
|
[] |
no_license
|
LukeBillo/exact-arithmetic
|
0a476af198655013ed4be61e1075cd21b2d1ce50
|
82dbe7cfe730f960e609248b37fd926260dc620c
|
refs/heads/master
| 2020-04-27T12:53:39.945939
| 2019-06-04T16:13:05
| 2019-06-04T16:13:05
| 174,348,299
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 858
|
cpp
|
doubles-can-be-converted-to-rationals.cpp
|
#include <catch2/catch.hpp>
#include <dividebyzeroerror.h>
#include "rational.h"
using ExactArithmetic::Rational;
using ExactArithmetic::DivideByZeroError;
using namespace Catch::Generators;
SCENARIO("Doubles can be converted to rationals", "[rational]") {
GIVEN("Any double") {
double i = GENERATE(take(10, random(-10.0l, 10.0l)));
WHEN("Calling the conversion constructor") {
Rational converted = Rational(i);
THEN("The integer is correctly represented as a rational") {
REQUIRE(converted == Rational(i, 1));
}
}
WHEN("Implicitly converting int to Rational") {
Rational converted = (Rational) i;
THEN("The integer is correctly implicitly converted") {
REQUIRE(converted == Rational(i, 1));
}
}
}
}
|
0b1327e23985e4257743a47c7ff2b688ae28c6d4
|
9dc935e5791db4971742d02619be69127b1e1623
|
/character.h
|
21c553f21e86e4f8b5981018dbf4dc754ca67c85
|
[] |
no_license
|
jh1jia/Rogue-ChamberCrawler3000
|
fa0563ede6fb6321c7ef95b0a1acf3b7449cf62f
|
7c5d935a351f5dfb74477dd3d7d1158c3dadae18
|
refs/heads/master
| 2020-05-01T12:44:16.318511
| 2019-03-24T22:36:28
| 2019-03-24T22:36:28
| 177,465,196
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 548
|
h
|
character.h
|
#ifndef Character_H
#define Character_H
#include "entity.h"
#include <iostream>
#include <string>
#include <utility>
using std::pair;
using std::string;
class Board;
class Character : public Entity
{
protected:
int currentHp, maxHp, atk, def;
public:
Character(char symbol, int cr, pair<int,int>& loc, Board& bd, int hp, int at, int df, string ra);
void changeHp(int num);
int getDef();
int getAtk();
bool isDead();
int getMaxHp();
int getCurrentHp();
void setAtk(int a);
void setDef(int d);
};
#endif
|
9711d7523451876360e3ffe15f55453e36cae5d9
|
e9131855f3ed7ee2b933da9219bc63607fe8067a
|
/HW2 - Auto Algorithm/RPS_FightInfo.h
|
a72142d8142e227e02edc78669e8ac9cbec6c02a
|
[] |
no_license
|
TomHerman11/Rock-Paper-Scissors
|
5cf85e55fa1df91adc0adbe67377d9ad31946e04
|
7564b66aab833b1fd2688c6645c3f67df11b443c
|
refs/heads/master
| 2020-03-26T02:34:29.682288
| 2019-06-15T17:49:23
| 2019-06-15T17:49:23
| 144,416,193
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,255
|
h
|
RPS_FightInfo.h
|
/*
* RPS_FightInfo.h
*
* Created on: Apr 29, 2018
* Author: tomhe
*/
#ifndef RPS_FIGHTINFO_H_
#define RPS_FIGHTINFO_H_
#include "RPS_Point.h"
#include "FightInfo.h"
class RPS_FightInfo: public FightInfo {
const RPS_Point point;
char player1_piece;
char player2_piece;
int winner;
public:
RPS_FightInfo(): point(0,0), player1_piece(0), player2_piece(0), winner(0) {}
RPS_FightInfo(int col, int row, char player1_piece, char player2_piece, int winner):
point(col, row), player1_piece(player1_piece), player2_piece(player2_piece), winner(winner) {}
/*
void setPoint(const Point& _point) {this->point=RPS_Point(_point.getX(), _point.getY());}
void setPlayer1Piece(char _player1_piece) {this->player1_piece=_player1_piece;}
void setPlayer2Piece(char _player2_piece) {this->player2_piece=_player2_piece;}
void setWinner(int _winner) {this->winner=_winner;}
*/
virtual const Point& getPosition()const override {return point;}
virtual char getPiece(int player)const override; // R, P, S, B or F (but NOT J)
virtual int getWinner()const override {return winner;} // 0 - both lost / tie, 1 - player 1 won, 2 - player 2 won
virtual ~RPS_FightInfo() {}
};
#endif /* RPS_FIGHTINFO_H_ */
|
ebd98a9db0b5f106ed067fb68c20c7f801c977d6
|
0e8b237418ab928120ee735b9b8972bf37e45b3b
|
/calaos_network.cpp
|
394776dc2f35e23f979450e0d00f76f7deda6fca
|
[] |
no_license
|
Cloudxtreme/calaos_tools
|
17bb4132c179c23e0c163be7736010052341d633
|
015da99d00ec41cdf500ee314f3c4140efc45975
|
refs/heads/master
| 2020-06-14T03:07:24.137831
| 2018-01-29T10:50:05
| 2018-01-29T10:50:05
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,029
|
cpp
|
calaos_network.cpp
|
/******************************************************************************
** Copyright (c) 2006-2011, Calaos. All Rights Reserved.
**
** This file is part of Calaos Home.
**
** Calaos Home is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 3 of the License, or
** (at your option) any later version.
**
** Calaos Home is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with Calaos; if not, write to the Free Software
** Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
**
******************************************************************************/
#include <Utils.h>
#include <EcoreTimer.h>
#include <CalaosNetwork.h>
static CalaosNetwork calaos_network;
static EcoreTimer *timer = NULL;
static int argc = 0;
static char **argv = NULL;
static void printUsage()
{
cout << "Calaos Network command line tool." << endl;
cout << "(c) 2011 Calaos" << endl << endl;
cout << "Usage: " << argv[0] << " <command>" << endl << endl;
cout << "Where command is one of:" << endl;
cout << "\tregister [username] [password]\tRegister a machine with a calaos network account" << endl;
cout << "\tupdate_ip <private_ip>\tUpdate the private IP" << endl;
cout << "\tget_ip\t\tGet public and private IP" << endl;
ecore_main_loop_quit();
}
static void parseCommandLine()
{
delete timer;
if (argc <= 1)
{
printUsage();
return;
}
string command = argv[1];
if (command == "register")
{
if (argc >= 4)
calaos_network.Register(argv[2], argv[3]);
else
calaos_network.Register(Utils::get_config_option("cn_user"), Utils::get_config_option("cn_pass"));
}
else if (command == "update_ip")
{
if (argc < 3)
printUsage();
else
calaos_network.updateIP(argv[2]);
}
else if (command == "get_ip")
{
calaos_network.getIP();
}
else
{
printUsage();
}
}
static void register_cb(string result)
{
if (result == "done")
cout << "Register done." << endl;
else
cout << "Register failed !" << endl;
ecore_main_loop_quit();
}
static void update_ip_cb(string result)
{
if (result == "done")
cout << "Update IP done." << endl;
else
cout << "Update IP failed !" << endl;
ecore_main_loop_quit();
}
static void get_ip_cb(string result, string public_ip, string private_ip, bool at_home)
{
if (result == "done")
cout << "Public IP: " << public_ip << endl << "Private IP: " << private_ip << endl << "At Home: " << boolalpha << at_home << endl;
else
cout << "Get IP failed !" << endl;
ecore_main_loop_quit();
}
int main (int _argc, char **_argv)
{
argc = _argc;
argv = _argv;
ecore_init();
ecore_con_init();
calaos_network.registered.connect(sigc::ptr_fun(register_cb));
calaos_network.ip_updated.connect(sigc::ptr_fun(update_ip_cb));
calaos_network.ip_retrieved.connect(sigc::ptr_fun(get_ip_cb));
Utils::InitLoggingSystem(string(DEFAULT_CONFIG_PATH) + "calaos_console_log.conf");
timer = new EcoreTimer(0.0, (sigc::slot<void>)sigc::ptr_fun(parseCommandLine));
ecore_main_loop_begin();
ecore_con_shutdown();
ecore_shutdown();
return 0;
}
|
441bba3832600d50a834d726339ef3402d15c64f
|
0eff74b05b60098333ad66cf801bdd93becc9ea4
|
/second/download/git/gumtree/git_new_log_2333.cpp
|
85307f7546f8003d15446125dc4dd7ace9a80652
|
[] |
no_license
|
niuxu18/logTracker-old
|
97543445ea7e414ed40bdc681239365d33418975
|
f2b060f13a0295387fe02187543db124916eb446
|
refs/heads/master
| 2021-09-13T21:39:37.686481
| 2017-12-11T03:36:34
| 2017-12-11T03:36:34
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 80
|
cpp
|
git_new_log_2333.cpp
|
warning ("Stripping signature from tag %s",
oid_to_hex(&tag->object.oid));
|
c10f960fde18536d5e6f361c1a1a1b2ad419602b
|
91bf1e6eb7f849657f3e48cc08b888aa88dbe564
|
/lab4/Tablero.cpp
|
d3dd3757141f5d963a6bad1b61b7f9b80e4fb389
|
[] |
no_license
|
SahoryHerrera/P3Lab4_SahoryCano
|
e77c6935d7c4c2b850a734d97bc934eaaf0721c2
|
4b819003c22e2cbc4e9a99ff3121efb46c6aa6f4
|
refs/heads/master
| 2023-04-28T12:14:57.031301
| 2021-05-15T01:37:16
| 2021-05-15T01:37:16
| 367,491,324
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 116
|
cpp
|
Tablero.cpp
|
#include "Tablero.h"
Tablero::Tablero() {
}
Tablero::Tablero(const Tablero& orig) {
}
Tablero::~Tablero() {
}
|
33bc15a6b128a1bab4695c5fef74a5e92f92ff57
|
7da798eafb861b68acc3670a5456fe3274096f6a
|
/solution1/.autopilot/db/convolution.pragma.0.cpp.ap-line.CXX
|
709922545549c6710542cb4c756cb5e77c8bbdd2
|
[] |
no_license
|
gornad/Convolution-FPGA-Project
|
1ddae9b33f7e7cdb065277343edc49a0a9172aa0
|
5ebd956cfd3a71f682c99145302319ff6746e233
|
refs/heads/master
| 2021-10-01T13:58:03.584808
| 2018-11-26T21:36:55
| 2018-11-26T21:36:55
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 67,169
|
cxx
|
convolution.pragma.0.cpp.ap-line.CXX
|
#pragma line 1 "LAB4/convolution.cpp" ::: -10
#pragma line 1 "LAB4/convolution.cpp" 1 ::: -9
#pragma line 1 "<built-in>" 1 ::: -8
#pragma line 1 "<built-in>" 3 ::: -7
#pragma line 153 "<built-in>" 3 ::: -6
#pragma line 1 "<command line>" 1 ::: -5
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot\\etc/autopilot_ssdm_op.h" 1 ::: 2
#pragma line 145 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot\\etc/autopilot_ssdm_op.h" ::: 55
#pragma line 156 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot\\etc/autopilot_ssdm_op.h" ::: 58
#pragma line 413 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot\\etc/autopilot_ssdm_op.h" ::: 188
#pragma line 427 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot\\etc/autopilot_ssdm_op.h" ::: 191
#pragma line 8 "<command line>" 2 ::: 193
#pragma line 1 "<built-in>" 2 ::: 194
#pragma line 1 "LAB4/convolution.cpp" 2 ::: 195
#pragma line 1 "LAB4/convolution.h" 1 ::: 196
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/include\\stdbool.h" 1 3 4 ::: 200
#pragma line 5 "LAB4/convolution.h" 2 ::: 236
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot\\ap_axi_sdata.h" 1 ::: 237
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int.h" 1 ::: 324
#pragma line 60 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int.h" ::: 376
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/hls_half.h" 1 ::: 377
#pragma line 32 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/hls_half.h" ::: 398
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cmath" 1 3 ::: 399
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cmath" 3 ::: 441
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++config.h" 1 3 ::: 443
#pragma line 63 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++config.h" 3 ::: 496
#pragma line 90 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++config.h" 3 ::: 514
#pragma line 187 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++config.h" 3 ::: 541
#pragma line 197 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++config.h" 3 ::: 543
#pragma line 207 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++config.h" 3 ::: 545
#pragma line 217 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++config.h" 3 ::: 547
#pragma line 238 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++config.h" 3 ::: 549
#pragma line 258 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++config.h" 3 ::: 555
#pragma line 272 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++config.h" 3 ::: 558
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/os_defines.h" 1 3 ::: 563
#pragma line 57 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/os_defines.h" 3 ::: 608
#pragma line 276 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++config.h" 2 3 ::: 613
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/cpu_defines.h" 1 3 ::: 617
#pragma line 279 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++config.h" 2 3 ::: 646
#pragma line 339 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++config.h" 3 ::: 682
#pragma line 379 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++config.h" 3 ::: 700
#pragma line 43 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cmath" 2 3 ::: 1503
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/cpp_type_traits.h" 1 3 ::: 1504
#pragma line 36 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/cpp_type_traits.h" 3 ::: 1541
#pragma line 193 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/cpp_type_traits.h" 3 ::: 1681
#pragma line 416 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/cpp_type_traits.h" 3 ::: 1892
#pragma line 44 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cmath" 2 3 ::: 1922
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/type_traits.h" 1 3 ::: 1923
#pragma line 32 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/type_traits.h" 3 ::: 1956
#pragma line 45 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cmath" 2 3 ::: 2127
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\math.h" 1 3 ::: 2129
#pragma line 10 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\math.h" 3 ::: 2140
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3 ::: 2143
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include/_mingw_mac.h" 1 3 ::: 2154
#pragma line 18 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include/_mingw_mac.h" 3 ::: 2160
#pragma line 47 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include/_mingw_mac.h" 3 ::: 2165
#pragma line 62 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include/_mingw_mac.h" 3 ::: 2167
#pragma line 79 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include/_mingw_mac.h" 3 ::: 2174
#pragma line 10 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 2 3 ::: 2177
#pragma line 32 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 2181
#pragma line 147 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 2184
#pragma line 225 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 2188
#pragma line 277 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 2190
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\vadefs.h" 1 3 ::: 2191
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3 ::: 2205
#pragma line 674 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 2211
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include/sdks/_mingw_directx.h" 1 3 ::: 2212
#pragma line 674 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 2 3 ::: 2213
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include/sdks/_mingw_ddk.h" 1 3 ::: 2215
#pragma line 675 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 2 3 ::: 2216
#pragma line 13 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\vadefs.h" 2 3 ::: 2217
#pragma line 46 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\vadefs.h" 3 ::: 2237
#pragma line 99 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\vadefs.h" 3 ::: 2239
#pragma line 277 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 2 3 ::: 2244
#pragma line 316 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 2248
#pragma line 372 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 2254
#pragma line 382 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 2256
#pragma line 394 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 2258
#pragma line 407 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 2260
#pragma line 420 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 2262
#pragma line 436 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 2264
#pragma line 456 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 2267
#pragma line 518 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 2285
#pragma line 605 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 2299
#pragma line 12 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\math.h" 2 3 ::: 2363
#pragma line 55 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\math.h" 3 ::: 2369
#pragma line 75 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\math.h" 3 ::: 2374
#pragma line 91 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\math.h" 3 ::: 2380
#pragma line 135 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\math.h" 3 ::: 2414
#pragma line 162 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\math.h" 3 ::: 2433
#pragma line 236 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\math.h" 3 ::: 2493
#pragma line 260 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\math.h" 3 ::: 2495
#pragma line 278 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\math.h" 3 ::: 2502
#pragma line 325 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\math.h" 3 ::: 2527
#pragma line 372 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\math.h" 3 ::: 2541
#pragma line 403 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\math.h" 3 ::: 2549
#pragma line 552 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\math.h" 3 ::: 2671
#pragma line 583 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\math.h" 3 ::: 2693
#pragma line 594 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\math.h" 3 ::: 2695
#pragma line 737 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\math.h" 3 ::: 2765
#pragma line 867 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\math.h" 3 ::: 2861
#pragma line 893 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\math.h" 3 ::: 2877
#pragma line 46 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cmath" 2 3 ::: 2884
#pragma line 46 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cmath" ::: 2886
#pragma line 76 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cmath" 3 ::: 2893
#pragma line 497 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cmath" 3 ::: 3302
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/cmath.tcc" 1 3 ::: 3421
#pragma line 615 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cmath" 2 3 ::: 3475
#pragma line 33 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/hls_half.h" 2 ::: 3476
#pragma line 3272 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/hls_half.h" ::: 3499
#pragma line 61 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int.h" 2 ::: 3575
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" 1 ::: 3576
#pragma line 68 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 3628
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iostream" 1 3 ::: 3629
#pragma line 37 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iostream" 3 ::: 3667
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 1 3 ::: 3670
#pragma line 38 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 3709
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ios" 1 3 ::: 3711
#pragma line 37 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ios" 3 ::: 3749
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iosfwd" 1 3 ::: 3751
#pragma line 38 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iosfwd" 3 ::: 3790
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stringfwd.h" 1 3 ::: 3793
#pragma line 39 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stringfwd.h" 3 ::: 3833
#pragma line 80 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stringfwd.h" 3 ::: 3863
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iosfwd" 2 3 ::: 3867
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/postypes.h" 1 3 ::: 3868
#pragma line 40 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/postypes.h" 3 ::: 3909
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 1 3 ::: 3911
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 3 ::: 3953
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 1 3 ::: 3956
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 3998
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 1 3 4 ::: 4001
#pragma line 56 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 3 4 ::: 4037
#pragma line 44 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 2 3 ::: 4040
#pragma line 44 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 2 3 ::: 4051
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 1 3 ::: 4054
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3 ::: 4064
#pragma line 9 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 2 3 ::: 4070
#pragma line 27 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 4077
#pragma line 50 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 4089
#pragma line 66 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 4091
#pragma line 164 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 4133
#pragma line 178 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 4135
#pragma line 193 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 4137
#pragma line 217 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 4139
#pragma line 360 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 4243
#pragma line 412 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 4274
#pragma line 493 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 4346
#pragma line 507 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 4351
#pragma line 540 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 4373
#pragma line 621 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 4445
#pragma line 669 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 4474
#pragma line 816 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 4612
#pragma line 876 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 4638
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\sec_api/wchar_s.h" 1 3 ::: 4645
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 1 3 ::: 4655
#pragma line 9 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\sec_api/wchar_s.h" 2 3 ::: 4661
#pragma line 881 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 2 3 ::: 4662
#pragma line 47 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 2 3 ::: 4663
#pragma line 64 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 3 ::: 4671
#pragma line 138 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 3 ::: 4679
#pragma line 257 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 3 ::: 4791
#pragma line 42 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/postypes.h" 2 3 ::: 4805
#pragma line 69 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/postypes.h" 3 ::: 4810
#pragma line 238 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/postypes.h" 3 ::: 4972
#pragma line 42 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iosfwd" 2 3 ::: 4974
#pragma line 39 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ios" 2 3 ::: 5092
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\exception" 1 3 ::: 5093
#pragma line 35 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\exception" 3 ::: 5129
#pragma line 40 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ios" 2 3 ::: 5242
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/char_traits.h" 1 3 ::: 5243
#pragma line 39 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/char_traits.h" 3 ::: 5283
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 1 3 ::: 5285
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 1 3 ::: 5347
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 5389
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 1 3 4 ::: 5392
#pragma line 56 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 3 4 ::: 5417
#pragma line 44 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 2 3 ::: 5420
#pragma line 62 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 2 3 ::: 5421
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/functexcept.h" 1 3 ::: 5422
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\exception_defines.h" 1 3 ::: 5460
#pragma line 38 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/functexcept.h" 2 3 ::: 5499
#pragma line 63 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 2 3 ::: 5561
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/numeric_traits.h" 1 3 ::: 5564
#pragma line 32 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/numeric_traits.h" 3 ::: 5597
#pragma line 51 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/numeric_traits.h" 3 ::: 5606
#pragma line 96 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/numeric_traits.h" 3 ::: 5631
#pragma line 66 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 2 3 ::: 5664
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_pair.h" 1 3 ::: 5665
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/move.h" 1 3 ::: 5726
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 1 3 ::: 5761
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 5803
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 1 3 4 ::: 5806
#pragma line 56 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 3 4 ::: 5831
#pragma line 44 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 2 3 ::: 5834
#pragma line 35 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/move.h" 2 3 ::: 5835
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/concept_check.h" 1 3 ::: 5836
#pragma line 33 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/concept_check.h" 3 ::: 5870
#pragma line 36 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/move.h" 2 3 ::: 5881
#pragma line 95 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/move.h" 3 ::: 5882
#pragma line 61 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_pair.h" 2 3 ::: 5915
#pragma line 112 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_pair.h" 3 ::: 5944
#pragma line 149 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_pair.h" 3 ::: 5950
#pragma line 198 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_pair.h" 3 ::: 5989
#pragma line 257 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_pair.h" 3 ::: 6007
#pragma line 67 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 2 3 ::: 6009
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator_base_types.h" 1 3 ::: 6010
#pragma line 63 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator_base_types.h" 3 ::: 6074
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 1 3 ::: 6077
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 6119
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 1 3 4 ::: 6122
#pragma line 56 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 3 4 ::: 6147
#pragma line 44 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 2 3 ::: 6150
#pragma line 66 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator_base_types.h" 2 3 ::: 6151
#pragma line 68 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 2 3 ::: 6265
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator_base_funcs.h" 1 3 ::: 6266
#pragma line 63 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator_base_funcs.h" 3 ::: 6330
#pragma line 69 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 2 3 ::: 6444
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 1 3 ::: 6445
#pragma line 68 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 6505
#pragma line 442 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 6864
#pragma line 532 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 6939
#pragma line 646 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 7036
#pragma line 70 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 2 3 ::: 7287
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\debug/debug.h" 1 3 ::: 7289
#pragma line 72 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 2 3 ::: 7348
#pragma line 134 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 7402
#pragma line 339 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 7592
#pragma line 377 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 7610
#pragma line 514 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 7710
#pragma line 542 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 7723
#pragma line 572 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 7737
#pragma line 689 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 7813
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/char_traits.h" 2 3 ::: 8351
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 1 3 ::: 8353
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 3 ::: 8395
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 1 3 ::: 8398
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 8440
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 1 3 4 ::: 8443
#pragma line 56 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 3 4 ::: 8468
#pragma line 44 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 2 3 ::: 8471
#pragma line 44 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 2 3 ::: 8472
#pragma line 43 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/char_traits.h" 2 3 ::: 8473
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ios" 2 3 ::: 8805
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/localefwd.h" 1 3 ::: 8806
#pragma line 39 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/localefwd.h" 3 ::: 8846
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++locale.h" 1 3 ::: 8849
#pragma line 40 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++locale.h" 3 ::: 8890
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\clocale" 1 3 ::: 8892
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\clocale" 3 ::: 8934
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\locale.h" 1 3 ::: 8937
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3 ::: 8947
#pragma line 9 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\locale.h" 2 3 ::: 8953
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\locale.h" 3 ::: 8960
#pragma line 75 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\locale.h" 3 ::: 8981
#pragma line 44 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\clocale" 2 3 ::: 9002
#pragma line 42 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++locale.h" 2 3 ::: 9018
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 1 3 ::: 9019
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 9061
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 1 3 4 ::: 9064
#pragma line 56 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 3 4 ::: 9089
#pragma line 44 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 2 3 ::: 9092
#pragma line 43 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++locale.h" 2 3 ::: 9093
#pragma line 42 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/localefwd.h" 2 3 ::: 9140
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cctype" 1 3 ::: 9142
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cctype" 3 ::: 9184
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\ctype.h" 1 3 ::: 9187
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3 ::: 9197
#pragma line 9 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\ctype.h" 2 3 ::: 9203
#pragma line 70 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\ctype.h" 3 ::: 9208
#pragma line 100 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\ctype.h" 3 ::: 9221
#pragma line 193 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\ctype.h" 3 ::: 9259
#pragma line 275 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\ctype.h" 3 ::: 9261
#pragma line 44 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cctype" 2 3 ::: 9263
#pragma line 63 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cctype" 3 ::: 9269
#pragma line 44 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/localefwd.h" 2 3 ::: 9287
#pragma line 42 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ios" 2 3 ::: 9431
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 1 3 ::: 9432
#pragma line 39 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9472
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/atomicity.h" 1 3 ::: 9474
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr.h" 1 3 ::: 9509
#pragma line 162 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr.h" 3 ::: 9653
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr-default.h" 1 3 ::: 9654
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\errno.h" 1 3 ::: 9725
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3 ::: 9735
#pragma line 9 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\errno.h" 2 3 ::: 9741
#pragma line 74 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\errno.h" 3 ::: 9755
#pragma line 71 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr-default.h" 2 3 ::: 9757
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3 ::: 9759
#pragma line 73 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr-default.h" 2 3 ::: 9765
#pragma line 340 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr-default.h" 3 ::: 9766
#pragma line 371 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr-default.h" 3 ::: 9788
#pragma line 401 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr-default.h" 3 ::: 9801
#pragma line 767 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr-default.h" 3 ::: 9939
#pragma line 163 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr.h" 2 3 ::: 9941
#pragma line 35 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/atomicity.h" 2 3 ::: 9950
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/atomic_word.h" 1 3 ::: 9951
#pragma line 36 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/atomicity.h" 2 3 ::: 9997
#pragma line 61 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/atomicity.h" 3 ::: 10013
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 2 3 ::: 10059
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 1 3 ::: 10061
#pragma line 39 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 10101
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\string" 1 3 ::: 10104
#pragma line 38 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\string" 3 ::: 10143
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/allocator.h" 1 3 ::: 10148
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++allocator.h" 1 3 ::: 10197
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/new_allocator.h" 1 3 ::: 10232
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\new" 1 3 ::: 10266
#pragma line 39 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\new" 3 ::: 10306
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 1 3 ::: 10308
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 10350
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 1 3 4 ::: 10353
#pragma line 56 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 3 4 ::: 10378
#pragma line 44 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 2 3 ::: 10381
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\new" 2 3 ::: 10382
#pragma line 34 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/new_allocator.h" 2 3 ::: 10454
#pragma line 114 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/new_allocator.h" 3 ::: 10527
#pragma line 35 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++allocator.h" 2 3 ::: 10543
#pragma line 49 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/allocator.h" 2 3 ::: 10544
#pragma line 204 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/allocator.h" 3 ::: 10674
#pragma line 43 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\string" 2 3 ::: 10676
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ostream_insert.h" 1 3 ::: 10679
#pragma line 33 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ostream_insert.h" 3 ::: 10713
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cxxabi-forced.h" 1 3 ::: 10716
#pragma line 33 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cxxabi-forced.h" 3 ::: 10750
#pragma line 46 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cxxabi-forced.h" ::: 10766
#pragma line 51 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cxxabi-forced.h" ::: 10774
#pragma line 52 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cxxabi-forced.h" ::: 10777
#pragma line 53 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cxxabi-forced.h" ::: 10781
#pragma line 36 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ostream_insert.h" 2 3 ::: 10787
#pragma line 46 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\string" 2 3 ::: 10877
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_function.h" 1 3 ::: 10881
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\backward/binders.h" 1 3 ::: 11594
#pragma line 713 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_function.h" 2 3 ::: 11762
#pragma line 50 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\string" 2 3 ::: 11763
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 1 3 ::: 11766
#pragma line 39 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 11806
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\initializer_list" 1 3 ::: 11810
#pragma line 33 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\initializer_list" 3 ::: 11844
#pragma line 43 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 2 3 ::: 11845
#pragma line 510 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 12286
#pragma line 584 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 12332
#pragma line 695 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 12407
#pragma line 753 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 12453
#pragma line 915 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 12604
#pragma line 981 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 12659
#pragma line 1033 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 12694
#pragma line 1117 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 12767
#pragma line 1164 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 12799
#pragma line 1620 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 13236
#pragma line 53 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\string" 2 3 ::: 14274
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.tcc" 1 3 ::: 14277
#pragma line 42 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.tcc" 3 ::: 14320
#pragma line 239 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.tcc" 3 ::: 14509
#pragma line 56 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\string" 2 3 ::: 15435
#pragma line 42 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 2 3 ::: 15436
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.tcc" 1 3 ::: 16210
#pragma line 37 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.tcc" 3 ::: 16248
#pragma line 815 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 2 3 ::: 16481
#pragma line 43 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 2 3 ::: 16482
#pragma line 53 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 16483
#pragma line 43 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ios" 2 3 ::: 17402
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 1 3 ::: 17403
#pragma line 37 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 17441
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/streambuf.tcc" 1 3 ::: 18204
#pragma line 38 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/streambuf.tcc" 3 ::: 18243
#pragma line 799 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 2 3 ::: 18378
#pragma line 44 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ios" 2 3 ::: 18379
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 1 3 ::: 18380
#pragma line 35 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 3 ::: 18416
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 1 3 ::: 18420
#pragma line 39 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 18460
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwctype" 1 3 ::: 18462
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwctype" 3 ::: 18504
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wctype.h" 1 3 ::: 18509
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3 ::: 18523
#pragma line 13 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wctype.h" 2 3 ::: 18529
#pragma line 166 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wctype.h" 3 ::: 18536
#pragma line 46 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwctype" 2 3 ::: 18547
#pragma line 75 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwctype" 3 ::: 18554
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 2 3 ::: 18583
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cctype" 1 3 ::: 18584
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cctype" 3 ::: 18626
#pragma line 42 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 2 3 ::: 18627
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/ctype_base.h" 1 3 ::: 18628
#pragma line 43 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 2 3 ::: 18690
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/streambuf_iterator.h" 1 3 ::: 18697
#pragma line 35 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/streambuf_iterator.h" 3 ::: 18733
#pragma line 50 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 2 3 ::: 19096
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/ctype_inline.h" 1 3 ::: 20556
#pragma line 1509 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 2 3 ::: 20629
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.tcc" 1 3 ::: 21722
#pragma line 35 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.tcc" 3 ::: 21758
#pragma line 729 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.tcc" 3 ::: 22435
#pragma line 1024 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.tcc" 3 ::: 22712
#pragma line 1151 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.tcc" 3 ::: 22831
#pragma line 2601 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 2 3 ::: 23039
#pragma line 39 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 2 3 ::: 23040
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.tcc" 1 3 ::: 23473
#pragma line 34 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.tcc" 3 ::: 23508
#pragma line 471 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 2 3 ::: 23660
#pragma line 45 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ios" 2 3 ::: 23661
#pragma line 40 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 2 3 ::: 23662
#pragma line 582 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 24186
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ostream.tcc" 1 3 ::: 24191
#pragma line 39 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ostream.tcc" 3 ::: 24231
#pragma line 586 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 2 3 ::: 24598
#pragma line 40 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iostream" 2 3 ::: 24599
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 1 3 ::: 24600
#pragma line 38 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 24639
#pragma line 850 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 25433
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/istream.tcc" 1 3 ::: 25438
#pragma line 39 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/istream.tcc" 3 ::: 25478
#pragma line 854 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 2 3 ::: 26510
#pragma line 41 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iostream" 2 3 ::: 26511
#pragma line 69 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" 2 ::: 26546
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/include\\limits.h" 1 3 4 ::: 26551
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\limits.h" 1 3 4 ::: 26590
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3 4 ::: 26597
#pragma line 6 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\limits.h" 2 3 4 ::: 26603
#pragma line 38 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/include\\limits.h" 2 3 4 ::: 26618
#pragma line 60 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/include\\limits.h" 3 4 ::: 26624
#pragma line 90 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/include\\limits.h" 3 4 ::: 26626
#pragma line 102 "C:/Xilinx/Vivado_HLS/2017.2/win64/tools/clang/bin/../lib/clang/3.1/include\\limits.h" 3 4 ::: 26628
#pragma line 74 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" 2 ::: 26633
#pragma line 111 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 26651
#pragma line 129 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 26654
#pragma line 147 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 26656
#pragma line 184 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 26669
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/etc/autopilot_dt.def" 1 ::: 26670
#pragma line 185 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" 2 ::: 27709
#pragma line 603 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 27710
#pragma line 646 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 27712
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/etc/autopilot_ssdm_bits.h" 1 ::: 27713
#pragma line 98 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/etc/autopilot_ssdm_bits.h" ::: 27766
#pragma line 108 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/etc/autopilot_ssdm_bits.h" ::: 27768
#pragma line 129 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/etc/autopilot_ssdm_bits.h" ::: 27770
#pragma line 143 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/etc/autopilot_ssdm_bits.h" ::: 27775
#pragma line 156 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/etc/autopilot_ssdm_bits.h" ::: 27778
#pragma line 192 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/etc/autopilot_ssdm_bits.h" ::: 27780
#pragma line 358 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/etc/autopilot_ssdm_bits.h" ::: 27782
#pragma line 647 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" 2 ::: 27784
#pragma line 881 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 28010
#pragma line 920 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 28039
#pragma line 1567 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 28679
#pragma line 1686 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 28786
#pragma line 1820 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 28912
#pragma line 2044 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 29121
#pragma line 2107 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 29176
#pragma line 2509 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 29571
#pragma line 2628 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 29679
#pragma line 2762 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 29805
#pragma line 2991 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 30018
#pragma line 3054 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 30073
#pragma line 3368 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 30362
#pragma line 3403 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 30384
#pragma line 3428 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 30390
#pragma line 3462 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 30403
#pragma line 3498 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 30421
#pragma line 3534 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 30439
#pragma line 3574 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 30457
#pragma line 3628 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 30475
#pragma line 3684 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 30504
#pragma line 3731 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 30533
#pragma line 3798 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 30581
#pragma line 3823 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 30599
#pragma line 3848 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 30617
#pragma line 3893 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 30649
#pragma line 4048 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 30663
#pragma line 4074 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int_syn.h" ::: 30681
#pragma line 62 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int.h" 2 ::: 30698
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" 1 ::: 30699
#pragma line 62 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 30752
#pragma line 81 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 30756
#pragma line 1313 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 31979
#pragma line 1406 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 32059
#pragma line 1424 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 32069
#pragma line 1555 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 32163
#pragma line 1600 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 32182
#pragma line 1658 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 32203
#pragma line 1690 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 32221
#pragma line 1759 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 32260
#pragma line 1773 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 32263
#pragma line 1808 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 32278
#pragma line 1820 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 32280
#pragma line 1868 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 32299
#pragma line 1882 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 32302
#pragma line 1912 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 32317
#pragma line 1959 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 32351
#pragma line 2232 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 32615
#pragma line 2350 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 32665
#pragma line 2400 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 32683
#pragma line 2485 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 32738
#pragma line 2525 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_fixed_syn.h" ::: 32756
#pragma line 63 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/ap_int.h" 2 ::: 32771
#pragma line 87 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot\\ap_axi_sdata.h" 2 ::: 33245
#pragma line 6 "LAB4/convolution.h" 2 ::: 33275
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot\\hls_stream.h" 1 ::: 33276
#pragma line 1 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot/etc/autopilot_enum.h" 1 ::: 33343
#pragma line 67 "C:/Xilinx/Vivado_HLS/2017.2/common/technology/autopilot\\hls_stream.h" 2 ::: 33478
#pragma line 7 "LAB4/convolution.h" 2 ::: 33584
#pragma line 1 "LAB4/globals.h" 1 ::: 33585
#pragma line 8 "LAB4/convolution.h" 2 ::: 33586
#pragma line 2 "LAB4/convolution.cpp" 2 ::: 33589
|
99d88656d586773de71db5e94fff53300ad025ca
|
4bbf93f1e13b4e4be157aa54a6042e7a35f07b18
|
/Peach3D/RenderDX/Peach3DObjectDX.cpp
|
42ca989362a109e674ddd0517ae30aefd271b989
|
[
"MIT"
] |
permissive
|
singoonhe/peach3d
|
39ce85c90ce08a91e45656387db65977dfb31016
|
ac09379b3131cb01f34a59bd995c33fa14b9d563
|
refs/heads/master
| 2022-04-04T08:33:40.949312
| 2020-02-10T09:11:36
| 2020-02-10T09:11:36
| 224,649,107
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 11,052
|
cpp
|
Peach3DObjectDX.cpp
|
#include "Peach3DObjectDX.h"
#include "Peach3DProgramDX.h"
#include "Peach3DIPlatform.h"
#include "Peach3DResourceManager.h"
namespace Peach3D
{
ID3D11Buffer* ObjectDX::mAABBVertexBuffer = nullptr;
ID3D11Buffer* ObjectDX::mAABBIndexBuffer = nullptr;
IProgram* ObjectDX::mAABBProgram = nullptr;
bool ObjectDX::setVertexBuffer(const void* data, uint size, uint type)
{
// base object setVertexBuffer
bool result = IObject::setVertexBuffer(data, size, type);
/*
// delete old vertex buffer
cleanObjectVertexBuffer();
// create vertex buffer
if (data && size > 0 && result)
{
D3D11_BUFFER_DESC vertexBufferDesc = { 0 };
vertexBufferDesc.ByteWidth = size;
vertexBufferDesc.Usage = D3D11_USAGE_DEFAULT;
vertexBufferDesc.BindFlags = D3D11_BIND_VERTEX_BUFFER;
vertexBufferDesc.CPUAccessFlags = 0;
vertexBufferDesc.MiscFlags = 0;
vertexBufferDesc.StructureByteStride = 0;
D3D11_SUBRESOURCE_DATA vertexBufferData;
vertexBufferData.pSysMem = data;
vertexBufferData.SysMemPitch = 0;
vertexBufferData.SysMemSlicePitch = 0;
mD3DDevice->CreateBuffer(&vertexBufferDesc, &vertexBufferData, &mVertexBuffer);
// only set draw tranglestrip when vertex count is 4
if ((mVertexBufferSize / mVertexDataStride) == 4)
{
mDrawMode = D3D11_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP;
}
}*/
return result && mVertexBuffer;
}
void ObjectDX::setIndexBuffer(const void*data, uint size, IndexType type)
{
// base object setIndexBuffer
IObject::setIndexBuffer(data, size, type);
/*
// delete old index buffer
cleanObjectIndexBuffer();
// create index buffer
if (data && size > 0)
{
D3D11_BUFFER_DESC indexBufferDesc = { 0 };
indexBufferDesc.ByteWidth = size;
indexBufferDesc.Usage = D3D11_USAGE_DEFAULT;
indexBufferDesc.BindFlags = D3D11_BIND_INDEX_BUFFER;
indexBufferDesc.CPUAccessFlags = 0;
indexBufferDesc.MiscFlags = 0;
indexBufferDesc.StructureByteStride = 0;
D3D11_SUBRESOURCE_DATA indexBufferData;
indexBufferData.pSysMem = data;
indexBufferData.SysMemPitch = 0;
indexBufferData.SysMemSlicePitch = 0;
mD3DDevice->CreateBuffer(&indexBufferDesc, &indexBufferData, &mIndexBuffer);
}*/
}
/*
void ObjectDX::render(RenderObjectAttr* attrs, Material* mtl, float lastFrameTime)
{
// check is need choose preset program
IObject::render(attrs, mtl, lastFrameTime);
if (mVertexBuffer && mRenderProgram && mRenderProgram->useAsRenderProgram())
{
// bind vertex buffer and index buffer
this->bindBaseAttrBuffer(attrs, mtl, lastFrameTime);
// enable depth bias
float biasFactor = attrs->depthBias;
ID3D11RasterizerState *oldRasterizerState = nullptr;
if (biasFactor > FLT_EPSILON || biasFactor < -FLT_EPSILON) {
mDeviceContext->RSGetState(&oldRasterizerState);
if (!mRenderState) {
// create render state
D3D11_RASTERIZER_DESC rasterizerDesc;
oldRasterizerState->GetDesc(&rasterizerDesc);
rasterizerDesc.DepthBias = INT(100.0f * biasFactor);
rasterizerDesc.SlopeScaledDepthBias = 0.0f;
#if PEACH3D_CURRENT_PLATFORM == PEACH3D_PLATFORM_WINDESK
rasterizerDesc.DepthBiasClamp = 0.0001f;
#endif
mD3DDevice->CreateRasterizerState(&rasterizerDesc, &mRenderState);
}
mDeviceContext->RSSetState(mRenderState);
}
if (mIndexBuffer)
{
uint indexStride = (mIndexDataType == IndexType::eUShort) ? sizeof(ushort) : sizeof(uint);
// draw as triangles when indexs exist
mDeviceContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
mDeviceContext->DrawIndexed(mIndexBufferSize / indexStride, 0, 0);
PD_ADD_DRAWCALL(1);
PD_ADD_DRAWTRIAGNLE(mIndexBufferSize / (indexStride * 3));
}
else
{
// draw triangles array
mDeviceContext->IASetPrimitiveTopology(mDrawMode);
mDeviceContext->Draw(mVertexBufferSize / mVertexDataStride, 0);
PD_ADD_DRAWCALL(1);
PD_ADD_DRAWTRIAGNLE(mVertexBufferSize / (mVertexDataStride * 3));
}
// disable depth bias after rendering
if (biasFactor > FLT_EPSILON || biasFactor < -FLT_EPSILON) {
mDeviceContext->RSSetState(oldRasterizerState);
}
// check AABB need show
if (attrs->showAABB) {
renderAABB(attrs);
}
}
}*/
void ObjectDX::render(const std::vector<Widget*>& renderList)
{
}
void ObjectDX::render(const std::vector<RenderNode*>& renderList)
{
}
void ObjectDX::render(const std::vector<OBB*>& renderList)
{
}
void ObjectDX::generateAABBBuffers(ComPtr<ID3D12Device> device, ComPtr<ID3D11DeviceContext2> context)
{/*
// generate vertex buffer for AABB rendering
if (!mAABBVertexBuffer && !mAABBIndexBuffer) {
float globalVertex[] = { -0.5, -0.5, -0.5, mAABBColor.r, mAABBColor.g, mAABBColor.b, mAABBColor.a,
0.5, -0.5, -0.5, mAABBColor.r, mAABBColor.g, mAABBColor.b, mAABBColor.a,
0.5, 0.5, -0.5, mAABBColor.r, mAABBColor.g, mAABBColor.b, mAABBColor.a,
-0.5, 0.5, -0.5, mAABBColor.r, mAABBColor.g, mAABBColor.b, mAABBColor.a,
-0.5, -0.5, 0.5, mAABBColor.r, mAABBColor.g, mAABBColor.b, mAABBColor.a,
0.5, -0.5, 0.5, mAABBColor.r, mAABBColor.g, mAABBColor.b, mAABBColor.a,
0.5, 0.5, 0.5, mAABBColor.r, mAABBColor.g, mAABBColor.b, mAABBColor.a,
-0.5, 0.5, 0.5, mAABBColor.r, mAABBColor.g, mAABBColor.b, mAABBColor.a };
D3D11_BUFFER_DESC vertexBufferDesc = { 0 };
vertexBufferDesc.ByteWidth = sizeof(globalVertex);
vertexBufferDesc.Usage = D3D11_USAGE_DEFAULT;
vertexBufferDesc.BindFlags = D3D11_BIND_VERTEX_BUFFER;
vertexBufferDesc.CPUAccessFlags = 0;
vertexBufferDesc.MiscFlags = 0;
vertexBufferDesc.StructureByteStride = 0;
D3D11_SUBRESOURCE_DATA vertexBufferData;
vertexBufferData.pSysMem = globalVertex;
vertexBufferData.SysMemPitch = 0;
vertexBufferData.SysMemSlicePitch = 0;
device->CreateBuffer(&vertexBufferDesc, &vertexBufferData, &mAABBVertexBuffer);
ushort globalIndex[] = {0, 1, 2, 3, 0, 4, 5, 6, 7, 4, 1, 5, 2, 6, 3, 7};
D3D11_BUFFER_DESC indexBufferDesc = { 0 };
indexBufferDesc.ByteWidth = sizeof(globalIndex);
indexBufferDesc.Usage = D3D11_USAGE_DEFAULT;
indexBufferDesc.BindFlags = D3D11_BIND_INDEX_BUFFER;
indexBufferDesc.CPUAccessFlags = 0;
indexBufferDesc.MiscFlags = 0;
indexBufferDesc.StructureByteStride = 0;
D3D11_SUBRESOURCE_DATA indexBufferData;
indexBufferData.pSysMem = globalIndex;
indexBufferData.SysMemPitch = 0;
indexBufferData.SysMemSlicePitch = 0;
device->CreateBuffer(&indexBufferDesc, &indexBufferData, &mAABBIndexBuffer);
// generate program
Material AABBMtl;
mAABBProgram = ResourceManager::getSingleton().getObjectPresetProgram(VertexTypePosition3 | VertexTypeColor4, AABBMtl);
}*/
}
/*
void ObjectDX::renderAABB(RenderObjectAttr* attrs)
{
// generate AABB buffers if needed
generateAABBBuffers(mD3DDevice, mDeviceContext);
const UINT offset = 0, vertexStride = 7 * sizeof(float);
mDeviceContext->IASetVertexBuffers(0, 1, &mAABBVertexBuffer, &vertexStride, &offset);
mDeviceContext->IASetIndexBuffer(mAABBIndexBuffer, DXGI_FORMAT_R16_UINT, 0);
// update AABB model matrix
AABB nodeAABB = getAABB(*attrs->modelMatrix);
if (nodeAABB.isValid()) {
// update AABB model matrix
Vector3 AABBSize = Vector3(nodeAABB.max.x - nodeAABB.min.x,
nodeAABB.max.y - nodeAABB.min.y,
nodeAABB.max.z - nodeAABB.min.z);
Vector3 AABBCenter = Vector3((nodeAABB.max.x + nodeAABB.min.x) / 2.0f,
(nodeAABB.max.y + nodeAABB.min.y) / 2.0f,
(nodeAABB.max.z + nodeAABB.min.z) / 2.0f);
Matrix4 AABBTranslateMat = Matrix4::createTranslation(AABBCenter.x, AABBCenter.y, AABBCenter.z);
Matrix4 AABBScaleMat = Matrix4::createScaling(AABBSize.x, AABBSize.y, AABBSize.z);
Matrix4 AABBMat = AABBTranslateMat * AABBScaleMat;
attrs->modelMatrix = &AABBMat;
// set program
mAABBProgram->useAsRenderProgram();
mAABBProgram->updateObjectUnifroms(attrs, nullptr, 0.0f);
// modelMatrix not enabled, it point to a local Matrix4.
attrs->modelMatrix = nullptr;
// draw AABB
mDeviceContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_LINESTRIP);
mDeviceContext->DrawIndexed(10, 0, 0);
PD_ADD_DRAWCALL(1);
mDeviceContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_LINELIST);
mDeviceContext->DrawIndexed(6, 10, 0);
PD_ADD_DRAWCALL(1);
}
}*/
void ObjectDX::deleteAABBBuffers()
{
if (mAABBVertexBuffer) {
mAABBVertexBuffer->Release();
mAABBVertexBuffer = nullptr;
}
if (mAABBIndexBuffer) {
mAABBIndexBuffer->Release();
mAABBIndexBuffer = nullptr;
}
}
void ObjectDX::cleanObjectVertexBuffer()
{
if (mVertexBuffer)
{
// delete object
mVertexBuffer->Release();
mVertexBuffer = nullptr;
// set vertex size and stride to zero
mVertexBufferSize = 0;
mVertexDataStride = 0;
}
}
void ObjectDX::cleanObjectIndexBuffer()
{
if (mIndexBuffer)
{
// delete object
mIndexBuffer->Release();
mIndexBuffer = nullptr;
// set vertex size and stride to zero
mIndexBufferSize = 0;
}
}
ObjectDX::~ObjectDX()
{
// delete dx object
cleanObjectVertexBuffer();
cleanObjectIndexBuffer();
if (mRenderState) {
mRenderState->Release();
mRenderState = nullptr;
}
}
}
|
caad0eeff8814366ca583c0b6225ef7b9b81381a
|
2f96d0e69ce3d6b1ea4623ed5b4c1741d9634ea9
|
/tests/dummy_repo/pytorch/aten/src/ATen/qconv.cpp
|
2d9c4aed849565ae75d08293ae27daa15ff0b759
|
[
"Apache-2.0"
] |
permissive
|
tqchen/ffi-navigator
|
ae1e8923e4d5be589beabfadba91f4a3b39e03dd
|
46b0d0c6bce388a8e1e2cb7ed28062e889e4596c
|
refs/heads/main
| 2023-02-06T22:32:54.214871
| 2023-02-05T16:25:16
| 2023-02-05T16:25:16
| 230,478,838
| 217
| 24
|
Apache-2.0
| 2023-02-05T16:25:18
| 2019-12-27T16:44:58
|
Python
|
UTF-8
|
C++
| false
| false
| 705
|
cpp
|
qconv.cpp
|
static auto registry =
c10::RegisterOperators()
.op("quantized::conv2d",
c10::RegisterOperators::options().kernel<QConvInt8<2, false>>(
TensorTypeId::QuantizedCPUTensorId))
.op("quantized::conv2d_relu",
c10::RegisterOperators::options().kernel<QConvInt8<2, true>>(
TensorTypeId::QuantizedCPUTensorId))
.op("quantized::conv3d",
c10::RegisterOperators::options().kernel<QConvInt8<3, false>>(
TensorTypeId::QuantizedCPUTensorId))
.op("quantized::conv3d_relu",
c10::RegisterOperators::options().kernel<QConvInt8<3, true>>(
TensorTypeId::QuantizedCPUTensorId));
|
8527173c6686a1e5efdf8aeac658c9082eeb40a7
|
78dfe43e7020ad63a1d7de0680703e2a7551765c
|
/src/code/basic/OSDLCommandManager.h
|
ae4fed4bd509156fbd2ef06ef69c14fdb8e085a3
|
[] |
no_license
|
Olivier-Boudeville/OSDL-Heavy
|
1ca02761d8d971cd66c76fdde56a137f9eb26e0a
|
ab0a857849999423291e76a32c627776cce678de
|
refs/heads/master
| 2021-01-19T03:24:14.399709
| 2014-05-03T19:05:44
| 2014-05-03T19:05:44
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 11,406
|
h
|
OSDLCommandManager.h
|
/*
* Copyright (C) 2003-2013 Olivier Boudeville
*
* This file is part of the OSDL library.
*
* The OSDL library is free software: you can redistribute it and/or modify
* it under the terms of either the GNU Lesser General Public License or
* the GNU General Public License, as they are published by the Free Software
* Foundation, either version 3 of these Licenses, or (at your option)
* any later version.
*
* The OSDL 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 and the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License and of the GNU General Public License along with the OSDL library.
* If not, see <http://www.gnu.org/licenses/>.
*
* Author: Olivier Boudeville (olivier.boudeville@esperide.com)
*
*/
#ifndef OSDL_COMMAND_MANAGER_H_
#define OSDL_COMMAND_MANAGER_H_
#include "OSDLAudioCommon.h" // for BufferSize
#include "OSDLException.h" // for OSDL::Exception
#include "Ceylan.h" // for inheritance
#include <string>
// Command management only needed for the Nintendo DS:
#if defined(OSDL_ARCH_NINTENDO_DS) && OSDL_ARCH_NINTENDO_DS
namespace OSDL
{
namespace Audio
{
class Sound ;
class Music ;
}
/// Mother class for all command-related exceptions.
class CommandException: public OSDL::Exception
{
public:
explicit CommandException( const std::string & reason ) ;
virtual ~CommandException() throw() ;
} ;
// Defined afterwards.
class CommandManager ;
/**
* Persistant settings about the command manager, not related to a
* particular music.
*
* @note References to buffers point towards the internal buffers of
* the command manager.
*
*/
struct CommandManagerSettings
{
/**
* Actual sample buffers are managed directly by the command manager so
* that if no music is played, no memory is reserved, but the first
* played music will trigger the buffer reservation, once for all.
*
*/
/// Pointer to the shared command manager (cache).
CommandManager * _commandManager ;
/// The size of a (simple) CommandManager buffer, in bytes:
Audio::BufferSize _bufferSize ;
/**
* The actual double sound buffer, two simple buffers, one after the
* other (so the first half buffer has the same address as this double
* one).
*
* @note Pointer to the internal buffer of the CommandManager.
*
*/
Ceylan::Byte * _doubleBuffer ;
/// The address of the second buffer:
Ceylan::Byte * _secondBuffer ;
} ;
/**
* IPC-based command manager, between the two ARMs of the Nintendo DS.
*
*/
class OSDL_DLL CommandManager: public Ceylan::System::FIFO
{
public:
/**
* Creates a new command manager, which is expected to be a
* singleton.
*
* @throw CommandException if the operation failed.
*
*/
CommandManager() ;
/// Virtual destructor.
virtual ~CommandManager() throw() ;
// Audio section.
/**
* Requests the ARM7 to play the specified sound at once.
*
* Returns just after having sent the request, i.e. without waiting
* for the sound to finish or even to start.
*
* @param sound the sound to play. Its content (samples) must have
* been loaded already.
*
* @throw CommandException if the operation failed.
*
*/
virtual void playSound( Audio::Sound & sound ) ;
/**
* Allocates the adequate memory for music playback, and creates a
* shared structure to expose settings needed by musics.
*
* @throw CommandException if the operation failed.
*
*/
virtual void enableMusicSupport() ;
/**
* Deallocates the memory dedicated to music playback, and
* deallocates the shared structure to expose settings needed by
* musics.
*
* @throw CommandException if the operation failed.
*
*/
virtual void disableMusicSupport() ;
/**
* Returns the size of an internal (simple) buffer for music, in
* bytes.
*
*/
virtual Audio::BufferSize getMusicBufferSize() const ;
/**
* Returns the address of internal double buffer for music.
*
* @throw CommandException if no buffer is available.
*
*/
virtual Ceylan::Byte * getMusicBuffer() const ;
/**
* Requests the ARM7 to play the specified music at once.
*
* If a music was already playing, stop it and start immediately the
* specified one.
*
* @param music the music to play.
*
* Returns just after having sent the request, i.e. without waiting
* for the music to finish or even to start.
*
* @throw CommandException if the operation failed.
*
*/
virtual void playMusic( Audio::Music & music ) ;
/**
* Requests the ARM7 to play the specified music with a fade-in.
*
* If a music was already playing, stop it and start immediately the
* specified one.
*
* @param music the music to play.
*
* @param fadeInMaxDuration duration in milliseconds during which
* the fade-in effect should take to go from silence to full
* volume. The fade in effect only applies to the first loop.
*
* Returns just after having sent the request, i.e. without waiting
* for the music to finish or even to start.
*
* @throw CommandException if the operation failed.
*
*/
virtual void playMusicWithFadeIn( Audio::Music & music,
Ceylan::System::Millisecond fadeInMaxDuration ) ;
/**
* Requests the ARM7 to stop at once any currently music being
* played.
*
* Returns just after having sent the request, i.e. without waiting
* for the music to finish.
*
* @throw CommandException if the operation failed.
*
*/
virtual void stopMusic() ;
/**
* Requests the ARM7 to start at once a fade-in effect on the music
* over specified duration.
*
* Returns just after having sent the request, i.e. without waiting
* for the fade-in to complete.
*
* @throw CommandException if the operation failed.
*
*/
virtual void fadeInMusic(
Ceylan::System::Millisecond fadeInMaxDuration ) ;
/**
* Requests the ARM7 to start at once a fade-out effect on the music
* over specified duration.
*
* Returns just after having sent the request, i.e. without waiting
* for the fade-out to complete.
*
* @throw CommandException if the operation failed.
*
*/
virtual void fadeOutMusic(
Ceylan::System::Millisecond fadeOutMaxDuration ) ;
/**
* Requests the ARM7 to set the volume of music channel to specified
* value.
*
* @note Will affect all musics played afterwards this one as well.
*
* @throw CommandException if the operation failed.
*
*/
virtual void setMusicVolume( Audio::Volume newVolume ) ;
/**
* Requests the ARM7 to pause the playback of current music (if any)
* at once.
*
* @note Will last until unPauseMusic or stopMusic is called.
*
* @throw CommandException if the operation failed.
*
*/
virtual void pauseMusic() ;
/**
* Requests the ARM7 to unpause the playback of current music (if
* any) at once, so that the playback resumes.
*
* @throw CommandException if the operation failed.
*
*/
virtual void unpauseMusic() ;
/**
* Notifies the ARM7 that the end of encoded stream was reached
* while streaming music.
*
* @throw CommandException if the operation failed.
*
*/
virtual void notifyEndOfEncodedStreamReached() ;
/**
* Unsets specified music if it was current, so that it is not
* current anymore from this manager point of view.
*
*/
virtual void unsetCurrentMusic( Audio::Music & music ) ;
/**
* Returns an interpretation of the latest error code set by the
* ARM7, taking into account OSDL error codes as well.
*
* Reads the relevant shared variable.
*
*/
virtual std::string interpretLastARM7ErrorCode() ;
/**
* Returns an user-friendly description of the state of this object.
*
* @param level the requested verbosity level.
*
* @note Text output format is determined from overall settings.
*
* @see Ceylan::TextDisplayable
*
*/
virtual const std::string toString(
Ceylan::VerbosityLevels level = Ceylan::high ) const ;
// Static section.
/**
* Returns true iff the command manager is already available.
*
*/
static bool HasExistingCommandManager() ;
/**
* Returns the supposedly already existing command manager.
*
* @throw CommandException if the operation failed, including if no
* manager was already existing.
*
*/
static CommandManager & GetExistingCommandManager() ;
/**
* Returns the command manager, creates it if needed.
*
* @throw CommandException if the operation failed.
*
*/
static CommandManager & GetCommandManager() ;
protected:
/**
* The current music being played, if any.
*
* @note Local copy of static Music current music member, to avoid
* retrieving the pointer again and again while refilling buffers.
*
*/
Audio::Music * _currentMusic ;
/**
* The actual double sound buffer for musics, two simple buffers,
* one after the other (so the first half buffer has the same
* address as this double one).
*
*/
Ceylan::Byte * _doubleBuffer ;
/// The size of a (simple) buffer, in bytes:
Audio::BufferSize _bufferSize ;
/// The settings to share with all musics.
CommandManagerSettings * _settings ;
/**
* Method responsible for the actual decoding and management of an
* incoming command specific to OSDL.
*
* Implements the library-specific protocol for these commands.
*
* @param commandID the library-specific command ID read from the
* first FIFO element of the command.
*
* @param firstElement the full (first) FIFO element corresponding
* to the command (thus containing commandID).
*
* @note Called automatically by handleReceivedCommand when
* relevant.
*
* @note Only lightweight operations should be performed here.
*
*/
virtual void handleReceivedIntegratingLibrarySpecificCommand(
FIFOCommandID commandID,
Ceylan::System::FIFOElement firstElement ) ;
/// The singleton manager.
static CommandManager * _IPCManager ;
private:
/**
* Copy constructor made private to ensure that it will be never
* called.
*
* The compiler should complain whenever this undefined constructor
* is called, implicitly or not.
*
*/
explicit CommandManager( const CommandManager & source ) ;
/**
* Assignment operator made private to ensure that it will be never
* called.
*
* The compiler should complain whenever this undefined operator is
* called, implicitly or not.
*
*/
CommandManager & operator = ( const CommandManager & source ) ;
} ;
}
#endif // defined(OSDL_ARCH_NINTENDO_DS) && OSDL_ARCH_NINTENDO_DS
#endif // OSDL_COMMAND_MANAGER_H_
|
6f08ab14aac8a2a466c2cb03f95c4f0611edeeeb
|
afb36eb8fd2059b2255f32cee0b21d7f08dad3aa
|
/OOPs with C++ Programming/CPP/1_C_CPP_Difference/String/Getline.cpp
|
c9e1481ded90c384824d9debdb30d9e9511e7222
|
[] |
no_license
|
anantgehi/Post-Graduate-Diploma-in-Advanced-Computing-CDAC
|
33d1645d6fe75817e490c63ec1da497426167e8a
|
8f8605d31b3e8eeaf29ba23b46642803a89ef124
|
refs/heads/main
| 2023-04-12T06:59:28.978009
| 2021-04-29T16:01:26
| 2021-04-29T16:01:26
| 412,961,496
| 1
| 2
| null | 2021-10-03T02:57:40
| 2021-10-03T02:57:39
| null |
UTF-8
|
C++
| false
| false
| 190
|
cpp
|
Getline.cpp
|
#include <iostream>
#include <string>
using namespace std;
int main () {
string str;
cout << "Please enter full name: ";
getline (cin,str);
cout << "Thank you, " << str << ".\n";
}
|
a6b58be4f5b3ec3963d085ce68326b0fec96a3f6
|
04d993acdf1609329870d6dd1a8f6d4170f0fce5
|
/day2.cpp
|
d55c55f4fcdb247bd565e4cca44819c5496a527d
|
[] |
no_license
|
dreum/AdventOfCode2018
|
98f769c21ab53600ace3f0720b7bf79ae87e1d55
|
fef89deda8f2930755efd83ea3dceab24d0546ef
|
refs/heads/master
| 2020-04-12T11:27:40.833153
| 2018-12-21T13:39:12
| 2018-12-21T13:39:12
| 162,460,072
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,794
|
cpp
|
day2.cpp
|
#include <algorithm>
#include <iostream>
#include <vector>
#include <string>
using namespace std;
struct OffByOneComparison
{
bool operator()(string const& first, string const& second)
{
vector<int> diffCharIndices;
for(auto i{0u}; i < first.size(); ++i)
{
if(first[i] != second[i])
diffCharIndices.push_back(i);
}
if(diffCharIndices.size() < 2)
{
diffIndex = diffCharIndices.front();
return false;
}
return true;
}
size_t diffIndex{0};
};
bool checkForMultiples(string const& input, unsigned int const numberOf)
{
for(auto const& c : input)
{
auto number = count(
begin(input),
end(input),
c);
if(numberOf == number)
return true;
}
return false;
}
bool hasDuplicate(string const& input)
{
return checkForMultiples(input, 2);
}
bool hasTriplicate(string const& input)
{
return checkForMultiples(input, 3);
}
// puzzle input https://adventofcode.com/2018/day/2/input
int main()
{
vector<string> boxIDs;
string ID;
while(cin >> ID)
boxIDs.push_back(ID);
auto countOfStringsWithDuplicates{0u};
auto countOfStringsWithTriplicates{0u};
for(auto const& id : boxIDs)
{
if(hasDuplicate(id))
++countOfStringsWithDuplicates;
if(hasTriplicate(id))
++countOfStringsWithTriplicates;
}
cout << countOfStringsWithDuplicates * countOfStringsWithTriplicates << '\n';
OffByOneComparison comp;
string id1,id2;
for(auto first = boxIDs.cbegin(); first != boxIDs.cend(); ++first)
{
for(auto second = first + 1; second != boxIDs.cend(); ++second)
{
if(!comp(*first, *second))
{
id1 = *first;
id2 = *second;
break;
}
}
}
cout
<< id1 << '\n'
<< id2 << '\n'
<< id1.substr(0, comp.diffIndex)
<< id1.substr(comp.diffIndex + 1, id1.size() - comp.diffIndex) << '\n';
return 0;
}
|
d156e4c3a37dede7cf4972f18967e8cba140add2
|
ccc00e43d72c55eeec6b2a41cdae11aa27251ea0
|
/Project10/Project10/소스.cpp
|
a816706419b75876ad7ab882daad09010a365209
|
[] |
no_license
|
khyojun/visualcode
|
80ddd1bf32e9794254729b8a69e027defacac656
|
273895a7f6313c76d4190c2cc73668cb5eeac3a6
|
refs/heads/master
| 2022-07-08T10:23:18.738476
| 2018-12-17T06:49:29
| 2018-12-17T06:49:29
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,212
|
cpp
|
소스.cpp
|
#include <stdio.h>
#include <string.h>
#include <algorithm>
using namespace std;
#pragma warning(disable:4996)
int L, C;
char alpha[1010];
int sor[1010];
char mo[5] = { 'a' , 'e', 'i', 'o', 'u' };
char pass[1010];
bool chek(char arr1[])
{
int mo1 = 0;
int ja = 0;
for (int i = 0; i < strlen(mo); i++)
{
for (int j = 0; j < strlen(arr1); j++)
{
if (arr1[j] == mo[i])
{
mo1++;
}
}
}
ja = strlen(arr1) - mo1;
return (ja >= 2 && mo1 >= 1);
}
void f(int len, char arr[],char pasw[],int index, int size, int flag)
{
if(flag==1)
{
pasw[size] = arr[index];
}
if (strlen(pasw) == len)
{
if (chek(pasw))
{
for (int i = 0; i < strlen(pasw); i++)
{
printf("%c", pasw[i]);
}
printf("\n");
}
return;
}
if (index >= strlen(arr))
{
return;
}
f(L, alpha, pasw, index+1, size+1,1);
pasw[size+1] = 0;
f(L, alpha, pasw, index + 1, size,0);
}
int main()
{
scanf("%d %d", &L, &C);
for (int i = 0; i < C; i++)
{
scanf(" %c", &alpha[i]);
sor[i] = alpha[i] - 'a' + 1;
}
sort(sor, sor + C);
for (int i = 0; i < C; i++)
{
alpha[i]=sor[i] + 'a' - 1;
}
for (int i = 0; i < C; i++) {
f(L, alpha, pass, i, 0, 1);
pass[0]=0;
f(L, alpha, pass, i, 0, 0);
}
}
|
e583b25a12d0ba7c95f8e41dae549d84e0ac674c
|
4f14b1901d909b0b917d35815e7b19233692f25b
|
/binomial-heap/BinomialHeap.hpp
|
1061dafa23e8fd0a52041d7d10c12c1d95c3f2cb
|
[] |
no_license
|
nayuki/Nayuki-web-published-code
|
e61a761e5c188aeacd35e5c8ddd005460545c94e
|
49414617b088ec4c4e339a6c1caa7ec0f40eb58f
|
refs/heads/master
| 2023-08-24T10:54:42.862243
| 2023-03-14T05:29:56
| 2023-03-14T05:29:56
| 25,706,873
| 133
| 53
| null | 2017-02-20T08:39:16
| 2014-10-24T20:33:24
|
Java
|
UTF-8
|
C++
| false
| false
| 7,704
|
hpp
|
BinomialHeap.hpp
|
/*
* Binomial heap (C++)
*
* Copyright (c) 2021 Project Nayuki. (MIT License)
* https://www.nayuki.io/page/binomial-heap
*
* 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 <cassert>
#include <cstddef>
#include <memory>
#include <stdexcept>
#include <utility>
template <typename E>
class BinomialHeap final {
private: class Node; // Forward declaration
/*---- Fields ----*/
private: std::unique_ptr<Node> head;
/*---- Constructors/assignments ----*/
public: explicit BinomialHeap() {}
public: explicit BinomialHeap(const BinomialHeap &other) {
if (other.head.get() != nullptr)
head.reset(new Node(*other.head.get()));
}
public: BinomialHeap(BinomialHeap &&other) = default;
public: BinomialHeap &operator=(BinomialHeap other) {
std::swap(head, other.head);
return *this;
}
/*---- Methods ----*/
public: bool empty() const {
return isNull(head);
}
public: std::size_t size() const {
std::size_t result = 0;
for (const Node *node = head.get(); node != nullptr; node = node->next.get()) {
std::size_t temp = safeLeftShift(1, node->rank);
if (temp == 0) {
// The result cannot be returned, however the data structure is still valid
throw std::overflow_error("Size overflow");
}
result |= temp;
}
return result;
}
public: void clear() {
head.reset();
}
public: void push(E val) {
mergeNodes(std::make_unique<Node>(std::move(val)));
}
public: const E &top() const {
if (empty())
throw std::logic_error("Empty heap");
const E *result = nullptr;
for (const Node *node = head.get(); node != nullptr; node = node->next.get()) {
if (result == nullptr || node->value < *result)
result = &node->value;
}
assert(result != nullptr);
return *result;
}
public: E pop() {
if (empty())
throw std::logic_error("Empty heap");
const E *min = nullptr;
std::unique_ptr<Node> *linkToMin = nullptr;
for (std::unique_ptr<Node> *link = &head; ; ) {
Node *node = link->get();
if (node == nullptr)
break;
if (min == nullptr || node->value < *min) {
min = &node->value;
linkToMin = link;
}
link = &node->next;
}
assert(min != nullptr && linkToMin != nullptr);
std::unique_ptr<Node> minNode = std::move(*linkToMin);
assert(min == &minNode->value);
linkToMin->swap(minNode->next);
mergeNodes(minNode->removeRoot());
return std::move(*min);
}
// Moves all the values in the given heap into this heap.
// Using std::move() is strongly recommended to avoid copying the entire argument heap.
public: void merge(BinomialHeap other) {
mergeNodes(std::move(other.head));
}
private: void mergeNodes(std::unique_ptr<Node> other) {
std::unique_ptr<Node> self = std::move(head);
std::unique_ptr<Node> *linkToTail = nullptr;
Node *tail = nullptr;
while (!isNull(self) || !isNull(other)) {
std::unique_ptr<Node> node;
if (isNull(other) || (!isNull(self) && self->rank <= other->rank)) {
node = std::move(self);
self.swap(node->next);
} else {
node = std::move(other);
other.swap(node->next);
}
assert(!isNull(node));
assert(isNull(node->next));
assert(tail == nullptr || isNull(tail->next));
if (tail == nullptr) {
head = std::move(node);
linkToTail = &head;
tail = head.get();
} else if (tail->rank < node->rank) {
linkToTail = &tail->next;
tail->next = std::move(node);
tail = tail->next.get();
} else if (tail->rank == node->rank + 1) {
assert(linkToTail != nullptr);
node->next = std::move(*linkToTail);
*linkToTail = std::move(node);
linkToTail = &(*linkToTail)->next;
} else if (tail->rank == node->rank) {
// Merge nodes
if (node->value < tail->value) {
std::swap(node->value, tail->value);
std::swap(node->down, tail->down);
}
node->next = std::move(tail->down);
tail->down = std::move(node);
tail->rank++;
} else
throw std::logic_error("Assertion error");
assert(isNull(node));
}
}
private: static bool isNull(const std::unique_ptr<Node> &p) {
return p.get() == nullptr;
}
private: static std::size_t safeLeftShift(std::size_t val, int shift) { // Avoids undefined behavior, e.g. 1 << 999
if (shift < 0)
throw std::domain_error("Negative shift");
for (int i = 0; i < shift && val != 0; i++)
val = (0U + val) << 1;
return val;
}
// For unit tests
public: void checkStructure() const {
// Check chain of nodes and their children
if (!isNull(head))
head->checkStructure(true, nullptr);
}
/*---- Helper class: Binomial heap node ----*/
private: class Node final {
/*-- Fields --*/
public: E value;
public: signed char rank;
public: std::unique_ptr<Node> down;
public: std::unique_ptr<Node> next;
/*-- Constructors --*/
// Regular node
public: Node(E val) :
value(std::move(val)),
rank(0) {}
public: Node(const Node &other) :
value(other.value),
rank(other.rank) {
if (other.down.get() != nullptr)
down.reset(new Node(*other.down.get()));
if (other.next.get() != nullptr)
next.reset(new Node(*other.next.get()));
}
/*-- Methods --*/
public: std::unique_ptr<Node> removeRoot() {
assert(isNull(next));
std::unique_ptr<Node> node = std::move(down);
std::unique_ptr<Node> result;
while (!isNull(node)) { // Reverse the order of nodes from descending rank to ascending rank
node->next.swap(result);
node.swap(result);
}
return result;
}
// For unit tests
public: void checkStructure(bool isMain, const E *lowerBound) const {
// Basic checks
if (isMain != (lowerBound == nullptr))
throw std::logic_error("Assertion error: Invalid arguments");
if (!isMain && value < *lowerBound)
throw std::logic_error("Assertion error: Min-heap property violated");
// Check children and non-main chain
if (rank > 0) {
if (isNull(down) || down->rank != rank - 1)
throw std::logic_error("Assertion error: Down node absent or has invalid rank");
down->checkStructure(false, &value);
if (!isMain) {
if (isNull(next) || next->rank != rank - 1)
throw std::logic_error("Assertion error: Next node absent or has invalid rank");
next->checkStructure(false, lowerBound);
}
} else if (!isNull(down))
throw std::logic_error("Assertion error: Down node must be absent");
// Check main chain
if (isMain && !isNull(next)) {
if (next->rank <= rank)
throw std::logic_error("Assertion error: Next node has invalid rank");
next->checkStructure(true, nullptr);
}
}
};
};
|
f85fc6b4362155341115b946329a63d332d4f1e0
|
826c99e63fcdd0f45c78b8ebd97a1557dc3eabda
|
/cracking_1_3.cpp
|
92bd58ee1bdcc9836220fa595260a6b401b6e549
|
[] |
no_license
|
cjwfries/puzzles
|
b908f523d5670f91102266733903165c7e0f07ed
|
b7ab5654cd529069575e6880cf7eaecde709abaf
|
refs/heads/master
| 2021-01-13T01:55:08.738065
| 2013-08-01T05:24:14
| 2013-08-01T05:24:14
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 781
|
cpp
|
cracking_1_3.cpp
|
#include <cstddef>
#include <iostream>
#include <climits>
#include <string>
using namespace std;
#define ASCII_SET_SIZE 128
/* 7/27/13 Cracking the Coding Interview
* 1.3 Given 2 strings, decide if 1 is a permutation of the other
*/
bool isPermutation(string s1, string s2)
{
if(s1.length() != s2.length())
return false;
if(s1.length() == 0)
return true;
int hashTable[ASCII_SET_SIZE] = {0};
for(int i = 0 ; i < s1.length() ; i++)
{
hashTable[s1[i]]++;
hashTable[s2[i]]--;
}
for(int i = 0 ; i < ASCII_SET_SIZE ; i++)
{
if(hashTable[i] != 0)
return false;
}
return true;
}
int main(int argc, char * argv[])
{
if(argc < 3)
{
cerr << "Usage: " << argv[0] << " STRING1 STRING2" << endl;
return 1;
}
cout << isPermutation(argv[1], argv[2]) << endl;
}
|
6cf7b33bd2b042e51a710b3a4897a4a2a4309975
|
618790f0d10472740c2b3dca66badb40c61fe4bd
|
/Day23/l4.cpp
|
43529033a9fc66d39dac1d6533481f70c0b6e971
|
[] |
no_license
|
SwarnenduGanguli25/Code-Asylums
|
94fbdada20d78053f0f5f7736b8f0f4110821816
|
2f7215e9651f6258c746843fc6bcc8e9bbfe6c1d
|
refs/heads/master
| 2022-11-05T13:07:03.580906
| 2020-07-02T07:52:15
| 2020-07-02T07:52:15
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,389
|
cpp
|
l4.cpp
|
/* Write a GetNth() function that takes a linked list and an integer index and
returns the data value stored in the node at that index position.
Example:
Input: 1->10->30->14, index = 2
Output: 30
The node at index 2 is 30
*/
#include<iostream>
using namespace std;
struct Node {
int data;
struct Node* next;
};
void push(struct Node **head_ref, int new_data) {
struct Node* new_node = (struct Node*) malloc(sizeof(struct Node));
new_node->data = new_data;
new_node->next = NULL;
if(*head_ref == NULL) {
*head_ref = new_node;
return;
}
struct Node* temp = *head_ref;
while(temp->next!=NULL) {
temp = temp->next;
}
temp->next = new_node;
}
int GetNth(struct Node* head, int index) {
int count = 0;
while(count < index) {
head = head->next;
count++;
}
return head->data;
}
void printLinkedList(struct Node* temp) {
while(temp!=NULL) {
cout << temp->data << " ";
temp = temp->next;
}
cout << endl;
}
int main() {
struct Node* head = NULL;
int n;
cout << "Enter the number of elements" << endl;
cin >> n;
cout << "Enter the elements" << endl;
int val;
for(int i = 0 ; i < n; i++) {
cin >> val;
push(&head, val);
}
int index;
cout << "Enter the index" << endl;
cin >> index;
cout << "Initial Linked List" << endl;
printLinkedList(head);
cout << "The element at the nth-index is " << GetNth(head, index) << endl;
return 0;
}
|
283717f003b1c047f91b69a4d8631fb94361fdb2
|
94b771e2b0d40342abc1e2d7213c1a84d8499851
|
/src/webrtc/include/webrtc/multiplexmediacapturer.h
|
91bc88fd0abbb93c33eb4077b2924d6ccd44ac8f
|
[] |
no_license
|
hermanumrao/mediaserver
|
6468bc5de8827dc574b42f3466b5c163252fcf4a
|
6a4a34b3006e5fca5c360010c6df361a538cf23b
|
refs/heads/master
| 2022-11-29T22:50:03.281390
| 2020-08-22T13:29:38
| 2020-08-22T13:29:38
| 274,053,774
| 1
| 0
| null | 2020-06-22T06:07:56
| 2020-06-22T06:07:55
| null |
UTF-8
|
C++
| false
| false
| 969
|
h
|
multiplexmediacapturer.h
|
#ifndef WebRTC_MultiplexMediaCapturer_H
#define WebRTC_MultiplexMediaCapturer_H
#include "base/base.h"
#ifdef HAVE_FFMPEG
#include "ff/ff.h"
#include "ff/mediacapture.h"
#include "webrtc/audiopacketmodule.h"
#include "webrtc/videopacketsource.h"
#include "api/peerconnectioninterface.h"
namespace base {
namespace wrtc {
class MultiplexMediaCapturer
{
public:
MultiplexMediaCapturer();
~MultiplexMediaCapturer();
void openFile(const std::string& file, bool loop = true);
void addMediaTracks(webrtc::PeerConnectionFactoryInterface* factory,
webrtc::MediaStreamInterface* stream);
void start();
void stop();
rtc::scoped_refptr<AudioPacketModule> getAudioModule();
VideoPacketSource* createVideoSource();
protected:
// PacketStream _stream;
ff::MediaCapture::Ptr _videoCapture;
rtc::scoped_refptr<AudioPacketModule> _audioModule;
};
} } // namespace wrtc
#endif // HAVE_FFMPEG
#endif
|
e7ed9c988c04bff6b61b83111f8b5ac2c16b3e42
|
822c36d1ebeedc6f38cb8d93a71318e0d9adca77
|
/GeometrySketchpad/DialogCircle.cpp
|
e71e1aa6469724300dcf6d6631853edd852b887e
|
[
"Unlicense"
] |
permissive
|
lightyears1998/geometry-sketchpad
|
c93bb48cf462fdbdb47ffd0a1dce33cbe59ae2a0
|
f5a0a6be61cb46d28eaa32141b294dd60b0525fe
|
refs/heads/master
| 2020-04-15T11:52:31.634195
| 2019-02-22T04:43:53
| 2019-02-22T04:43:53
| 164,648,459
| 3
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 705
|
cpp
|
DialogCircle.cpp
|
// DialogCircle.cpp: 实现文件
//
#include "stdafx.h"
#include "GeometrySketchpad.h"
#include "DialogCircle.h"
#include "afxdialogex.h"
// DialogCircle 对话框
IMPLEMENT_DYNAMIC(DialogCircle, CDialogEx)
DialogCircle::DialogCircle(CWnd* pParent /*=nullptr*/)
: CDialogEx(IDD_CIRCLE, pParent)
, coordinate_x(0)
, coordinate_y(0)
, radius(0)
{
}
DialogCircle::~DialogCircle()
{
}
void DialogCircle::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
DDX_Text(pDX, IDC_EDIT1, coordinate_x);
DDX_Text(pDX, IDC_EDIT2, coordinate_y);
DDX_Text(pDX, IDC_EDIT3, radius);
}
BEGIN_MESSAGE_MAP(DialogCircle, CDialogEx)
END_MESSAGE_MAP()
// DialogCircle 消息处理程序
|
35260dbcd0aa8df169492f310c81e18bbb10d7df
|
82a43b7a2ffd8cb3232bc6ab6ad563173d597cff
|
/libvast/vast/concept/printable/vast/value.hpp
|
b5a2f90ff7b6e65b7ee4b9213f23bd11ca1aee60
|
[
"BSD-3-Clause"
] |
permissive
|
cjolivier01/vast
|
9fd52c7124f65b679ceceed86a4a8cdc2d3011f4
|
1a8aa2eda2a34450507f48385825e73381ce3b3a
|
refs/heads/master
| 2021-06-25T17:57:59.593575
| 2017-08-15T05:08:03
| 2017-08-15T05:08:03
| 105,785,573
| 1
| 0
| null | 2017-10-04T15:33:44
| 2017-10-04T15:33:38
|
C++
|
UTF-8
|
C++
| false
| false
| 543
|
hpp
|
value.hpp
|
#ifndef VAST_CONCEPT_PRINTABLE_VAST_VALUE_HPP
#define VAST_CONCEPT_PRINTABLE_VAST_VALUE_HPP
#include "vast/value.hpp"
#include "vast/concept/printable/vast/data.hpp"
namespace vast {
struct value_printer : printer<value_printer> {
using attribute = value;
template <typename Iterator>
bool print(Iterator& out, value const& v) const {
static auto const p = make_printer<data>{};
return p.print(out, v.data());
}
};
template <>
struct printer_registry<value> {
using type = value_printer;
};
} // namespace vast
#endif
|
aad8650e52f5f0af21ff448646a32ec974189a38
|
7d83df57b7cb4a98733c76ad8c6a9691b2ca7890
|
/dev/ese/published/inc/os/memory.hxx
|
d32ad5c2fcee5c89b6fb8554517833223928cb0a
|
[
"MIT"
] |
permissive
|
microsoft/Extensible-Storage-Engine
|
30ab5bf8b5f8f2c2b5887b1dfa59b82c0588de70
|
933dc839b5a97b9a5b3e04824bdd456daf75a57d
|
refs/heads/main
| 2023-08-13T11:53:52.563089
| 2022-07-29T17:16:38
| 2022-07-29T17:16:38
| 331,747,853
| 844
| 66
|
MIT
| 2023-06-15T11:57:35
| 2021-01-21T20:34:01
|
C++
|
UTF-8
|
C++
| false
| false
| 16,759
|
hxx
|
memory.hxx
|
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#ifndef _OS_MEMORY_HXX_INCLUDED
#define _OS_MEMORY_HXX_INCLUDED
#pragma warning(push)
#pragma warning(disable:4595) // non-member operator new or delete functions may not be declared inline
const BYTE bGlobalAllocFill = (BYTE)0xba;
const BYTE bGlobalFreeFill = (BYTE)0xbf;
// Offset computation
// computes the offset of a given element in a struct
#define IbElementInStruct( struct, element ) ( (BYTE*)&struct.element - (BYTE*)&struct )
// computes the minimum amount of bytes required to store a given struct up to a certain element
#define CbElementInStruct( struct, element ) ( IbElementInStruct( struct, element ) + sizeof( struct.element ) )
// System Memory Attributes
// returns the system page reserve granularity
DWORD OSMemoryPageReserveGranularity();
// returns the system page commit granularity
DWORD OSMemoryPageCommitGranularity();
// returns the current available physical memory in the system
QWORD OSMemoryAvailable();
// returns the total physical memory in the system
QWORD OSMemoryTotal();
// returns the current available virtual address space in the process
DWORD_PTR OSMemoryPageReserveAvailable();
// returns the total virtual address space in the process
DWORD_PTR OSMemoryPageReserveTotal();
// returns the peak working set size of the process
DWORD_PTR OSMemoryPageWorkingSetPeak();
// returns the total number of physical memory pages evicted from the system
DWORD OSMemoryPageEvictionCount();
// retrieves the current processes memory usage stats
typedef struct _MEMSTAT
{
DWORD cPageFaultCount;
SIZE_T cbWorkingSetSize;
SIZE_T cbPeakWorkingSetSize;
SIZE_T cbPagefileUsage;
SIZE_T cbPeakPagefileUsage;
SIZE_T cbPrivateUsage;
} MEMSTAT;
void OSMemoryGetProcessMemStats( MEMSTAT * const pmemstat );
// Bitmap API
class IBitmapAPI // bmapi
{
public:
enum class ERR
{
errSuccess,
errInvalidParameter,
errOutOfMemory,
};
virtual ~IBitmapAPI() {}
virtual ERR ErrInitBitmap( _In_ const size_t cbit ) = 0;
virtual ERR ErrSet( _In_ const size_t iBit, _In_ const BOOL fValue ) = 0;
virtual ERR ErrGet( _In_ const size_t iBit, _Out_ BOOL* const pfValue ) = 0;
};
// Simple fixed bitmap (useful for stack allocation) implementation of IBitmapAPI
#define CbFromCbit( cbit ) ( cbit / 8 + 1 )
#define PbCbStackBitmap( cbit ) alloca( CbFromCbit( cbit ) ), CbFromCbit( cbit )
class CFixedBitmap // fbm
: public IBitmapAPI
{
public: // specialized API
// ctor
CFixedBitmap( _Out_writes_bytes_(cbBuffer) void * pbBuffer, _In_ ULONG cbBuffer );
public: // IBitmapAPI
virtual ~CFixedBitmap();
virtual ERR ErrInitBitmap( _In_ const size_t cbit );
virtual ERR ErrSet( _In_ const size_t iBit, _In_ const BOOL fValue );
virtual ERR ErrGet( _In_ const size_t iBit, _Out_ BOOL* const pfValue );
private:
size_t m_cbit;
void* m_rgbit;
};
// Sparse Bitmap implementation of IBitmapAPI
class CSparseBitmap // sbm
: public IBitmapAPI
{
public: // specialized API
// ctor
CSparseBitmap();
// sets the bitmap to read only mode
ERR ErrDisableUpdates();
// sets the bitmap to write again and blank
ERR ErrReset( const size_t cbit );
public: // IBitmapAPI
virtual ~CSparseBitmap();
virtual ERR ErrInitBitmap( const size_t cbit );
virtual ERR ErrSet( const size_t iBit, const BOOL fValue );
virtual ERR ErrGet( _In_ const size_t iBit, _Out_ BOOL* const pfValue );
private:
size_t m_cbit;
void* m_rgbit;
size_t m_cbitUpdate;
size_t m_cbitCommit;
void* m_rgbitCommit;
size_t m_shfCommit;
};
// these 3 functions work together to provide a bitmap representing the residence
// of individual virtual memory pages in physical memory.
//
// ScanStart() - begins a scan, and takes the maximum size of memory that will
// later be retrieved.
// Retrieve() - retrieves a bitmap for the segment of virtual memory provide,
// that must not be larger than cbMax provided to XxxScanStart().
// ScanStop() - cleans up any allocated memory, including the bitmap returned
// by XxxRetrieve(). Do not use bitmap after this func.
ERR ErrOSMemoryPageResidenceMapScanStart( const size_t cbMax, __out DWORD * const pdwUpdateId );
ERR ErrOSMemoryPageResidenceMapRetrieve( void* const pv, const size_t cb, IBitmapAPI** const ppbmapi );
VOID OSMemoryPageResidenceMapScanStop();
// returns fTrue if the virtual memory pages backing the specified buffer are
// either in the working set of the process or are held elsewhere in system
// memory
BOOL FOSMemoryPageResident( void* const pv, const size_t cb );
// Memory Alloc Type Test Routines
// Returns true if it is PvOSMemoryPageAlloc() or PvOSMemoryPageReserve() + FOSMemoryCommit() type
// memory. All pages must be of the allocated type memory or this function returns false.
// Note: This is to be used in comparison with FOSMemoryFileMapped*, it can not be used to reliably
// determine the nature of potentially heap allocated memory
// NOTE: This routine is only available in debug or OS unit tests.
BOOL FOSMemoryPageAllocated( const void * const pv, const size_t cb );
// Determines if memory is mapped to a file with MapViewOfFileEx()
// Returns true if memory is mapped to a file with MapViewOfFileEx(). All pages must be mapped
// to a file or this function returns false.
// NOTE: This routine is only available in debug or OS unit tests.
BOOL FOSMemoryFileMapped( const void * const pv, const size_t cb );
// Determines if memory is mapped to a file with MapViewOfFileEx() AND also has been modified and
// thus copied (on the write). Unlike previous functions, this returns true if _ANY_ page is copied.
// NOTE: This routine is only available in debug or OS unit tests.
BOOL FOSMemoryFileMappedCowed( const void * const pv, const size_t cb );
// returns the total physical memory in the system taking any existing process
// quotas into account
DWORD_PTR OSMemoryQuotaTotal();
// Heap Memory Allocation
// allocate a chunk of memory from the process heap of the specifed size,
// returning NULL if there is insufficient heap memory available to satisfy
// the request. you may (optionally) specify an alignment for the block. The
// memory is not zero filled.
void* PvOSMemoryHeapAlloc__( const size_t cbSize );
void* PvOSMemoryHeapAllocAlign__( const size_t cbSize, const size_t cbAlign );
#ifdef MEM_CHECK
void* PvOSMemoryHeapAlloc_( const size_t cbSize, __in_z const CHAR* szFile, LONG lLine );
void* PvOSMemoryHeapAllocAlign_( const size_t cbSize, const size_t cbAlign, __in_z const CHAR* szFile, LONG lLine );
#define PvOSMemoryHeapAlloc( cbSize ) PvOSMemoryHeapAlloc_( cbSize, __FILE__, __LINE__ )
#define PvOSMemoryHeapAllocAlign( cbSize, cbAlign ) PvOSMemoryHeapAllocAlign_( cbSize, cbAlign, __FILE__, __LINE__ )
#else // !MEM_CHECK
#define PvOSMemoryHeapAlloc( cbSize ) ( PvOSMemoryHeapAlloc__( cbSize ) )
#define PvOSMemoryHeapAllocAlign( cbSize, cbAlign ) ( PvOSMemoryHeapAllocAlign__( cbSize, cbAlign ) )
#endif // MEM_CHECK
// free the specified chunk of memory back to the process heap
void OSMemoryHeapFree( void* const pv );
void OSMemoryHeapFreeAlign( void* const pv );
// Test hooks
const void* PvOSMemoryHookNtQueryInformationProcess( const void* const pfnNew );
const void* PvOSMemoryHookNtQuerySystemInformation( const void* const pfnNew );
const void* PvOSMemoryHookGlobalMemoryStatus( const void* const pfnNew );
// Global C++ Heap Allocation Operators
extern INT g_fMemCheck;
#ifdef MEM_CHECK
INLINE const CHAR * const SzNewFile();
INLINE ULONG UlNewLine();
#endif
_Ret_maybenull_ _Post_writable_byte_size_(cbSize)
INLINE void* __cdecl operator new( const size_t cbSize )
{
#ifdef MEM_CHECK
return g_fMemCheck?
PvOSMemoryHeapAlloc_( cbSize, SzNewFile(), UlNewLine() ):
PvOSMemoryHeapAlloc__( cbSize );
#else // !MEM_CHECK
return PvOSMemoryHeapAlloc( cbSize );
#endif // MEM_CHECK
}
#ifdef MEM_CHECK
BOOL FOSMemoryNewMemCheck_( __in_z const CHAR* const szFileName, const ULONG ulLine );
// this #define is a huge hack used to facilitate tracking file/line info for allocations
// (note that "new" MUST be in the 'else' clause in order to properly associate the rest
// of the line with the operator)
//
#define new ( g_fMemCheck && !FOSMemoryNewMemCheck_( __FILE__, __LINE__ ) ) ? NULL : new
#endif // MEM_CHECK
INLINE void __cdecl operator delete( void* const pv )
{
OSMemoryHeapFree( pv );
}
#pragma push_macro("new")
#undef new
_Ret_maybenull_ _Post_writable_byte_size_(size)
inline void* __cdecl operator new[](size_t size) { return operator new(size); }
inline void __cdecl operator delete[](void* p) { operator delete(p); }
#pragma pop_macro("new")
// Page Memory Control
// reserves and commits a range of virtual addresses of the specifed size,
// returning NULL if there is insufficient address space or backing store to
// satisfy the request. Note that the page reserve granularity applies to
// this range
void * PvOSMemoryPageAlloc__(
const size_t cbSize,
void * const pv,
const BOOL fAllocTopDown );
#ifdef MEM_CHECK
void * PvOSMemoryPageAlloc_(
const size_t cbSize,
void * const pv,
const BOOL fAllocTopDown,
__in_z const CHAR * szFile,
const LONG lLine );
#define PvOSMemoryPageAlloc( cbSize, pv ) PvOSMemoryPageAlloc_( cbSize, pv, fFalse, __FILE__, __LINE__ )
#define PvOSMemoryPageAllocEx( cbSize, pv, fAllocTopDown ) PvOSMemoryPageAlloc_( cbSize, pv, fAllocTopDown, __FILE__, __LINE__ )
#else // !MEM_CHECK
#define PvOSMemoryPageAlloc( cbSize, pv ) PvOSMemoryPageAlloc__( cbSize, pv, fFalse )
#define PvOSMemoryPageAllocEx( cbSize, pv, fAllocTopDown ) PvOSMemoryPageAlloc__( cbSize, pv, fAllocTopDown )
#endif // MEM_CHECK
// free the reserved range of virtual addresses starting at the specified
// address, freeing any backing store committed to this range
void OSMemoryPageFree( void* const pv );
// reserve a range of virtual addresses of the specified size, returning NULL
// if there is insufficient address space to satisfy the request. Note that
// the page reserve granularity applies to this range
void* PvOSMemoryPageReserve__( const size_t cbSize, void* const pv );
#ifdef MEM_CHECK
void* PvOSMemoryPageReserve_( const size_t cbSize, void* const pv, __in_z const CHAR* szFile, LONG lLine );
#define PvOSMemoryPageReserve( cbSize, pv ) PvOSMemoryPageReserve_( cbSize, pv, __FILE__, __LINE__ )
#else // !MEM_CHECK
#define PvOSMemoryPageReserve( cbSize, pv ) PvOSMemoryPageReserve__( cbSize, pv )
#endif // MEM_CHECK
// reset the dirty bit for the specified range of virtual addresses. this
// results in the contents of the memory being thrown away instead of paged
// to disk if the OS needs its physical memory for another process. a value
// of fTrue for fToss results in a hint to the OS to throw the specified
// memory out of our working set. Note that the page commit granularity
// applies to this range
void OSMemoryPageReset( void* const pv, const size_t cbSize, const BOOL fToss = fFalse );
// set the specified range of virtual addresses as read only. Note that the
// page commit granularity applies to this range
void OSMemoryPageProtect( void* const pv, const size_t cbSize );
// set the specified range of virtual addresses as read / write. Note that
// the page commit granularity applies to this range
void OSMemoryPageUnprotect( void* const pv, const size_t cbSize );
// commit the specified range of virtual addresses, returning fFalse if there
// is insufficient backing store to satisfy the request. Note that the page
// commit granularity applies to this range
BOOL FOSMemoryPageCommit( void* const pv, const size_t cb );
// decommit the specified range of virtual addresses, freeing any backing
// store committed to this range. Note that the page commit granularity
// applies to this range
void OSMemoryPageDecommit( void* const pv, const size_t cb );
// locks the specified range of virtual addresses, returning fFalse if there
// is insufficient quota to satisfy the request. Note that the page commit
// granularity applies to this range
BOOL FOSMemoryPageLock( void* const pv, const size_t cb );
// unlocks the specified range of virtual addresses. Note that the page
// commit granularity applies to this range
void OSMemoryPageUnlock( void* const pv, const size_t cb );
// Memory Mapping
class COSMemoryMap
{
public:
enum class ERR
{
errSuccess,
errOutOfBackingStore,
errMappingFailed,
errOutOfAddressSpace,
errOutOfMemory,
};
public:
// ctor/dtor
COSMemoryMap();
~COSMemoryMap();
// init/term
ERR ErrOSMMInit();
VOID OSMMTerm();
// basic API
static BOOL FCanMultiMap();
ERR ErrOSMMReserve__( const size_t cbMap,
const size_t cMap,
__inout_ecount( cMap ) void** const rgpvMap,
const BOOL* const rgfProtect );
#ifdef MEM_CHECK
ERR ErrOSMMReserve_( const size_t cbMap,
const size_t cMap,
void** const rgpvMap,
const BOOL* const rgfProtect,
__in_z const CHAR* szFile,
LONG lLine );
#endif // MEM_CHECK
BOOL FOSMMCommit( const size_t cbCommit );
VOID OSMMFree( void *const pv );
// pattern API
ERR ErrOSMMPatternAlloc__( const size_t cbPattern,
const size_t cbSize,
void** const ppvPattern );
#ifdef MEM_CHECK
ERR ErrOSMMPatternAlloc_( const size_t cbPattern,
const size_t cbSize,
void** const ppvPattern,
__in_z const CHAR* szFile,
LONG lLine );
#endif // MEM_CHECK
VOID OSMMPatternFree();
#ifdef MEM_CHECK
static VOID OSMMDumpAlloc( __in_z const WCHAR* szFile );
#endif // MEM_CHECK
private:
void *m_pvMap; // location of the first mapping
size_t m_cbMap; // size of the mapping
size_t m_cMap; // total number of mappings
size_t m_cbReserve; // amount of address space consumed by this page store (bytes)
size_t m_cbCommit; // amount of committed backing store (bytes)
#ifdef MEM_CHECK
COSMemoryMap *m_posmmNext;
BOOL m_fInList;
CHAR *m_szFile;
LONG m_lLine;
#endif // MEM_CHECK
};
#ifdef MEM_CHECK
#define ErrOSMMReserve( cbMap, cMap, rgpvMap, rgfProtect ) ErrOSMMReserve_( cbMap, cMap, rgpvMap, rgfProtect, __FILE__, __LINE__ )
#define ErrOSMMPatternAlloc( cbPattern, cbSize, ppvPattern ) ErrOSMMPatternAlloc_( cbPattern, cbSize, ppvPattern, __FILE__, __LINE__ )
#else // !MEM_CHECK
#define ErrOSMMReserve( cbMap, cMap, rgpvMap, rgfProtect ) ErrOSMMReserve__( cbMap, cMap, rgpvMap, rgfProtect )
#define ErrOSMMPatternAlloc( cbPattern, cbSize, ppvPattern ) ErrOSMMPatternAlloc__( cbPattern, cbSize, ppvPattern )
#endif // MEM_CHECK
// Memory Manipulation
__forceinline void UtilMemCpy( __out_bcount(cb) void * const pvDest, __in_bcount(cb) const void *pvSrc, const size_t cb )
{
memcpy( (BYTE*)pvDest, (BYTE*)pvSrc, cb );
}
__forceinline void UtilMemMove( __out_bcount(cb) void * const pvDest, __in_bcount(cb) const void *pvSrc, const size_t cb )
{
memmove( (BYTE*)pvDest, (BYTE*)pvSrc, cb );
}
BOOL FUtilZeroed( __in_bcount(cbData) const BYTE * pbData, __in const size_t cbData );
size_t IbUtilLastNonZeroed( __in_bcount(cbData) const BYTE * pbData, __in const size_t cbData );
#if defined( MEM_CHECK ) && !defined( DEBUG )
#error "MEM_CHECK can be enabled only in DEBUG mode"
#endif // MEM_CHECK && !DEBUG
#endif // _OS_MEMORY_HXX_INCLUDED
|
23c03794447fb8d21cb80f5308b2dd1fece6eb62
|
370a48d63ae2fadfed0f8f39f1da31afc942d12f
|
/src/trainSet/inputSet.cpp
|
17be0ce1a20e3614151d2049ddb984e0f4a493d1
|
[] |
no_license
|
elcabesa/neuralNet
|
43c3ee1fae610581b286dff811c7355998f513dc
|
dea4438bcea2d46d28940e33172c6959853d7bd1
|
refs/heads/master
| 2023-01-29T18:16:05.603718
| 2020-09-12T08:04:09
| 2020-09-12T08:04:09
| 294,898,184
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 71
|
cpp
|
inputSet.cpp
|
#include "inputSet.h"
InputSet::InputSet(){}
InputSet::~InputSet(){}
|
e67fa897307613bb29895ca2efe904d20ffee565
|
7becf623eaeae4f9cebd184a85665b6eaa93cf7f
|
/build/message_info/rosidl_generator_cpp/message_info/msg/vision_geometry.hpp
|
a0634b98cca17d8c44c7503ffc5e941da85889cb
|
[] |
no_license
|
mukuyo/SSLRasp
|
bb1f00609e998dd5fa5aee5e92fe7986860d43fb
|
90889a714e2e174fb417098bc2a349658cd7598f
|
refs/heads/main
| 2023-09-05T02:18:56.943849
| 2021-07-21T19:04:18
| 2021-07-21T19:04:18
| 360,840,199
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 453
|
hpp
|
vision_geometry.hpp
|
// generated from rosidl_generator_cpp/resource/idl.hpp.em
// generated code does not contain a copyright notice
#ifndef MESSAGE_INFO__MSG__VISION_GEOMETRY_HPP_
#define MESSAGE_INFO__MSG__VISION_GEOMETRY_HPP_
#include "message_info/msg/detail/vision_geometry__struct.hpp"
#include "message_info/msg/detail/vision_geometry__builder.hpp"
#include "message_info/msg/detail/vision_geometry__traits.hpp"
#endif // MESSAGE_INFO__MSG__VISION_GEOMETRY_HPP_
|
e4ae6b0e1d319d2af5020152c05b1b371bc47ca1
|
52a9de68fd06139997374570e46c9bcaa98a7fc3
|
/NightLight/NightLight.ino
|
52d90e9393e5017136dd61a2d987ce1aef37b221
|
[] |
no_license
|
BtpPrograms/ArduinoDigitalSandbox
|
0b8c6c543d092bbcab1df0a282552a5edeebef18
|
65681702b71efa9ddbfbfed7571e0fabe31b74df
|
refs/heads/master
| 2016-09-01T04:16:21.382238
| 2015-12-12T21:35:09
| 2015-12-12T21:35:09
| 46,365,052
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 302
|
ino
|
NightLight.ino
|
int dark;
void setup() {
dark = 10;
Serial.begin(9600);
}
void loop() {
Serial.println(A1);
if(analogRead(A1) <= dark) {
digitalWrite(4, HIGH);
digitalWrite(8, HIGH);
}
else {
digitalWrite(4, LOW);
digitalWrite(8, LOW);
}
delay(100);
}
|
943fce8503d6d73a1c8ba36fa7fe4fee4304a95d
|
8cc355e8465211f4384655f55472d50d080ce1ac
|
/file/file.h
|
5cdd2a9d67b310408bd032fce5fdbee988436143
|
[
"CC0-1.0"
] |
permissive
|
pgrawehr/golgotha
|
47fb1e47c9a2e7f24e0ce7dde188f884a5504438
|
94e0b448d7e7224e56c27b029dec80ca710ceb8b
|
refs/heads/master
| 2023-06-29T12:04:11.302599
| 2022-03-19T08:09:59
| 2022-03-19T08:09:59
| 40,831,531
| 7
| 5
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 8,021
|
h
|
file.h
|
/********************************************************************** <BR>
This file is part of Crack dot Com's free source code release of
Golgotha. <a href="http://www.crack.com/golgotha_release"> <BR> for
information about compiling & licensing issues visit this URL</a>
<PRE> If that doesn't help, contact Jonathan Clark at
golgotha_source@usa.net (Subject should have "GOLG" in it)
***********************************************************************/
#ifndef __I4FILE_HPP
#define __I4FILE_HPP
#include "arch.h"
#include "isllist.h"
enum {
I4_FILE_STATUS_DIRECTORY=1
};
struct i4_file_status_struct
{
w32 last_modified;
w32 last_accessed;
w32 created;
w32 flags;
w64 size;
} ;
// Summary
// A file (i4_file_class) is a purely virtual file
// which should allow much flexability.
// A i4_file_class is opened through the i4_file_manager_class::open().
// A file manager defaults going through the operating system's open(), but
// like the unix model other file managers can be mounted on top of directories.
// When a file is accessed in this directory, the open call will be transfered
// to this file manager.
// This allows for redirection, tar-like-files, memory-files, and other goodies.
// One particular instance this is useful, might be running game off of a cdrom.
// the data directory can be linked to the cdrom and the savegame data can
// be linked to somewhere on the hard-drive.
// i.e.
// i4_file_man.mount_dir("/cdrom",new file_redirector("d:\\"));
// i4_file_class *fp=i4_file_man.open("/cdrom/art/picture.pcx");
// TODO : test mounting, now that all string are i4_const_str instead of char *
class i4_const_str;
class i4_str;
class i4_file_class
{
public:
virtual w32 read(void * buffer, w32 size) = 0;
virtual w32 write(const void * buffer, w32 size) = 0;
virtual w32 seek(w32 offset) = 0;
virtual w32 size() = 0;
virtual w32 tell() = 0;
i4_bool eof()
{
return tell()==size();
}
typedef void (*async_callback)(w32 count, void * context);
// returns i4_F if an immediate error occured
virtual i4_bool async_read(void * buffer, w32 size,
async_callback call,
void * context, w32 priority, int caller_id);
virtual i4_bool async_write(const void * buffer, w32 size,
async_callback call,
void * context);
// abort current operation
virtual void abort()
{
}
// Nice Read Methods
w8 read_8()
{
w8 buf;
if (read(&buf,1)!=1)
{
return 0xff;
}
else
{
return buf;
}
}
w16 read_16() // loads and converts to LSB (intel-format)
{
w16 buf;
if (read(&buf,2)!=2)
{
return 0xffff;
}
else
{
return s_to_lsb(buf);
}
}
w32 read_32() // loads and converts to LSB (intel-format)
{
w32 buf;
if (read(&buf,4)!=4)
{
return 0xffffffff;
}
else
{
return l_to_lsb(buf);
}
}
float read_float() // loads and converts to LSB (intel-format)
{
w32 buf;
if (read(&buf,4)!=4)
{
return (float)0xffff;
}
buf = l_to_lsb(buf);
return *((float *)&buf);
}
i4_str *read_str(w32 len);
i4_str *read_counted_str();
// C++ stream operators
i4_file_class& operator>>(w32& v)
{
v = (w32) read_32();
return *this;
}
i4_file_class& operator>>(sw32& v)
{
v = (sw32)read_32();
return *this;
}
i4_file_class& operator>>(w16& v)
{
v = (w16) read_16();
return *this;
}
i4_file_class& operator>>(sw16& v)
{
v = (sw16)read_16();
return *this;
}
i4_file_class& operator>>(w8& v)
{
v = (w8) read_8();
return *this;
}
i4_file_class& operator>>(sw8& v)
{
v = (sw8) read_8();
return *this;
}
i4_file_class& operator>>(float& v)
{
v = read_float();
return *this;
}
// Nice Write Methods
w32 write_8(w8 num)
{
return (write(&num,1));
}
w32 write_16(w16 num) // loads and converts to LSB (intel-format)
{
num = s_to_lsb(num);
return (write(&num,2));
}
w32 write_32(w32 num) // loads and converts to LSB (intel-format)
{
num = l_to_lsb(num);
return (write(&num,4));
}
w32 write_float(float num) // loads and converts to LSB (intel-format)
{
w32 tmp = l_to_lsb( *((w32 *)&num) );
return (write(&tmp,4));
}
w32 write_str(const i4_const_str &str);
w32 write_counted_str(const i4_const_str &str);
// same as fprintf, but with the addition %S is a i4_const_str *
int printf(char * format, ...);
// write_format takes a different set of % symbols than the typical printf to elimante
// confusion with sizes and be easily usuable with readf_binary
// writef_binary("124fS", &a_w8_var, &a_w16_var, &a_w32_var,
// &a_float_var, &a_i4_const_str_pointer);
int write_format(char * format, ...);
// format is same as write_format
int read_format(char * format, ...);
// C++ stream operators
i4_file_class& operator<<(w32 v)
{
write_32(v);
return *this;
}
i4_file_class& operator<<(sw32 v)
{
write_32((w32)v);
return *this;
}
i4_file_class& operator<<(w16 v)
{
write_16(v);
return *this;
}
i4_file_class& operator<<(sw16 v)
{
write_16((w16)v);
return *this;
}
i4_file_class& operator<<(w8 v)
{
write_8(v);
return *this;
}
i4_file_class& operator<<(sw8 v)
{
write_8((w8)v);
return *this;
}
i4_file_class& operator<<(float v)
{
write_float(v);
return *this;
}
virtual ~i4_file_class()
{
}
};
// open flags
enum {
I4_READ=1,
I4_WRITE=2,
I4_APPEND=4,
I4_NO_BUFFER=8,
I4_SUPPORT_ASYNC=16, // this flag is needed if you intend to call async_read/write
I4_OPEN_MASK=32-1,
I4_NO_ERROR=32 //If this flag is set, no error message will be displayed to the user
//if the file can't be opened for writting.
};
// returns NULL if unable to open file
i4_file_class *i4_open(const i4_const_str &name, w32 flags=I4_READ);
// return i4_F on failure
i4_bool i4_unlink(const i4_const_str &name);
// returns i4_F if file does not exsist
i4_bool i4_get_status(const i4_const_str &filename,
i4_file_status_struct &return_stat);
// return i4_F on failure
i4_bool i4_mkdir(const i4_const_str &path);
i4_bool i4_rmdir(const i4_const_str &path);
i4_bool i4_chdir(const i4_const_str &path);
i4_bool i4_copy_file(const i4_const_str &source, const i4_const_str &dest);
struct i4_directory_struct
{
i4_str * * files;
w32 tfiles;
i4_str * * dirs;
w32 tdirs;
i4_file_status_struct * file_status; // array of file stats coresponding to above files
i4_directory_struct() {
tfiles=tdirs=0;
files=dirs=0;
file_status=0;
}
~i4_directory_struct();
};
// returns i4_F if path is bad (tfiles and tdirs will be 0 as well)
// you are responsible for deleting both the array of strings and each string in the array
// file_status is a pointer to an array of file_status's that will be created, you
// must free these as well. file_status may be 0 (default), in which case no array is created
class i4_status_class;
i4_bool i4_get_directory(const i4_const_str &path,
i4_directory_struct &dir_struct,
i4_bool get_status=i4_F,
i4_status_class * status=0);
struct i4_filename_struct
{
char path[256];
char filename[256];
char extension[256];
i4_filename_struct() {
path[0]=0;
filename[0]=0;
extension[0]=0;
}
};
// returns i4_F if path cannot be split
i4_bool i4_split_path(const i4_const_str &name, i4_filename_struct &fname_struct);
// return 0 if full path cannot be determined
i4_str *i4_full_path(const i4_const_str &relative_name);
// returns the shortest relative path
i4_str *i4_relative_path(const i4_const_str &path);
#endif
|
ede16dcc901e5fa22cc81fc91178b4b1cea0216c
|
f8b1dfccaef5a8f75567b527fc7c2f0a34e3877b
|
/codeforce/c544/pa.cpp
|
8abf4cec110dc6c51c711ba4699f2344f2fdede4
|
[] |
no_license
|
bamboohiko/problemSolve
|
e7e2a2c6e46a4d10ccfa54cffff3c9895b3ddb1b
|
cd3e9e5986325f5def4efe01975a950f6eaa6015
|
refs/heads/master
| 2021-01-17T06:39:42.502176
| 2017-09-13T14:30:08
| 2017-09-13T14:30:08
| 47,928,189
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 653
|
cpp
|
pa.cpp
|
#include<iostream>
#include<cstdio>
#include<map>
#include<set>
#include<vector>
#include<stack>
#include<queue>
#include<string>
#include<cstring>
#include<algorithm>
#include<cmath>
using namespace std;
set<char> dic;
int main()
{
int n;
string st;
scanf("%d",&n);
cin >> st;
for (int i = 0;i < st.length(); i++)
dic.insert(st[i]);
if (dic.size() >= n) {
dic.clear();
dic.insert(st[0]);
printf("YES\n");
cout << st[0];
for (int i = 1;i < st.length(); i++) {
if (!dic.count(st[i]) && dic.size() < n) cout << endl;
dic.insert(st[i]);
cout << st[i];
}
}
else printf("NO\n");
return 0;
}
|
fb683512e28e0811e274e949553b746186e06483
|
dc775430a181b1b296fa40cce185dcecc0032432
|
/windowplaying.cpp
|
951d2a23b71796f8bff65151f2e3b67797c312f7
|
[] |
no_license
|
zscszndxdxs/ElectronicPet
|
ee379c82c72a7631ebe2aa38425693add48a597a
|
02005677fe79fea725e6d29f91638b4d91e8fcbc
|
refs/heads/master
| 2023-07-13T05:57:04.354123
| 2021-08-26T06:14:02
| 2021-08-26T06:14:02
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 97
|
cpp
|
windowplaying.cpp
|
#include "windowplaying.h"
windowPlaying::windowPlaying(QWidget *parent) : QWidget(parent)
{
}
|
36b2d237ae1fa06dfac5cc7c3442909b52175b83
|
ff92d7103cc73306d85f83583f7104095b84b72e
|
/callstack/appl_callstack_service.cpp
|
b39290166156ffa85cd66440bf26eed0b78ea506
|
[
"MIT"
] |
permissive
|
fboucher9/appl
|
43d94878518d3c43d6d6df2b2844d37b4b94222a
|
bb90398cf9985d4cc0a2a079c4d49d891108e6d1
|
refs/heads/master
| 2021-06-06T07:28:53.144067
| 2019-11-07T01:50:58
| 2019-11-07T01:50:58
| 115,062,399
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 7,011
|
cpp
|
appl_callstack_service.cpp
|
/* See LICENSE for license details */
/*
*/
#include <appl_predefines.h>
#include <callstack/appl_callstack_service.h>
#include <appl_types.h>
#include <appl_status.h>
#include <buf/appl_buf.h>
#include <buf/appl_buf0.h>
#include <buf/appl_str.h>
#include <misc/appl_unused.h>
#include <misc/appl_convert.h>
#include <clock/appl_clock_handle.h>
#define APPL_CALLSTACK_FRAMES (64u)
#define APPL_CALLSTACK_TEXT_SIZE (4096u)
static unsigned long int __thread g_callstack_index = 0ul;
static unsigned long int __thread g_callstack_stack[APPL_CALLSTACK_FRAMES];
static unsigned long int __thread g_callstack_level = 0ul;
static unsigned char __thread g_callstack_text[APPL_CALLSTACK_TEXT_SIZE];
//
//
//
static
void
push_frame_index(void)
{
if (
g_callstack_level
< appl_convert::to_ulong(sizeof(g_callstack_stack)))
{
g_callstack_stack[g_callstack_level] =
g_callstack_index;
}
g_callstack_level ++;
}
//
//
//
static
void
pop_frame_index(void)
{
if (
g_callstack_level)
{
g_callstack_level --;
if (
g_callstack_level
< appl_convert::to_ulong(sizeof(g_callstack_stack)))
{
g_callstack_index = g_callstack_stack[g_callstack_level];
}
}
}
//
//
//
static
void
set_text_ptr(
unsigned char const * const
p_copy_result)
{
if (
(
p_copy_result >= g_callstack_text)
&& (
p_copy_result <= g_callstack_text + sizeof(g_callstack_text)))
{
g_callstack_index =
appl_convert::to_ulong(
appl_convert::to_unsigned(
p_copy_result
- g_callstack_text));
}
}
//
//
//
static
void
write_frame_char(
unsigned char const
c_data)
{
if (g_callstack_index < sizeof(g_callstack_text))
{
g_callstack_text[g_callstack_index] = c_data;
g_callstack_index ++;
}
}
//
//
//
static
void
write_frame_buffer(
unsigned char const * const
p_buffer_min,
unsigned char const * const
p_buffer_max)
{
unsigned char * const
p_copy_result =
appl_str_copy(
g_callstack_text + g_callstack_index,
g_callstack_text + sizeof(g_callstack_text),
p_buffer_min,
p_buffer_max);
set_text_ptr(
p_copy_result);
}
//
//
//
static
void
write_frame_buffer0(
char const * const
p_buffer0)
{
union appl_buf_ptr
o_buffer0_ptr;
o_buffer0_ptr.pc_char =
p_buffer0;
unsigned long int const
i_buffer0_len =
appl_buf0_len(
o_buffer0_ptr.pc_uchar);
write_frame_buffer(
o_buffer0_ptr.pc_uchar,
o_buffer0_ptr.pc_uchar + i_buffer0_len);
}
//
//
//
static
void
write_frame_number(
signed long int const
i_value,
int const
i_flags,
unsigned int const
i_width)
{
unsigned char const *
p_print_result =
appl_buf_print_number(
g_callstack_text + g_callstack_index,
g_callstack_text + sizeof(g_callstack_text),
i_value,
i_flags,
i_width);
set_text_ptr(
p_print_result);
}
//
//
//
void
appl_callstack_service::s_enter(
struct appl_context * const
p_context,
char const * const
p_buffer0)
{
push_frame_index();
appl_unused(
p_context);
if (g_callstack_index)
{
write_frame_char('\n');
}
appl_ull_t
i_clock_value;
if (
appl_status_ok
== appl_clock_read(
p_context,
1000ul,
&(i_clock_value)))
{
write_frame_number(
appl_convert::to_signed(
appl_convert::to_ulong(
i_clock_value / 1000ul)),
appl_buf_print_flag_unsigned,
0);
write_frame_char('.');
write_frame_number(
appl_convert::to_signed(
appl_convert::to_ulong(
i_clock_value % 1000ul)),
appl_buf_print_flag_unsigned
| appl_buf_print_flag_zero,
3);
write_frame_char(':');
}
write_frame_buffer0(
p_buffer0);
} // s_enter()
//
//
//
void
appl_callstack_service::s_print0(
struct appl_context * const
p_context,
char const * const
p_buffer0)
{
appl_unused(
p_context);
write_frame_char(' ');
write_frame_buffer0(p_buffer0);
} // s_print0()
//
//
//
void
appl_callstack_service::s_print_buffer(
struct appl_context * const
p_context,
unsigned char const * const
p_buffer_min,
unsigned char const * const
p_buffer_max)
{
appl_unused(
p_context);
write_frame_char(' ');
write_frame_buffer(p_buffer_min, p_buffer_max);
} // s_print_buffer()
//
//
//
void
appl_callstack_service::s_print_signed(
struct appl_context * const
p_context,
signed long int const
i_number)
{
appl_unused(
p_context);
write_frame_char(' ');
write_frame_number(i_number, 0, 0u);
} // s_print_signed()
//
//
//
void
appl_callstack_service::s_print_unsigned(
struct appl_context * const
p_context,
unsigned long int const
i_number)
{
appl_unused(
p_context);
write_frame_char(' ');
write_frame_number(
appl_convert::to_signed(
i_number),
appl_buf_print_flag_unsigned,
0u);
} // s_print_unsigned()
//
//
//
void
appl_callstack_service::s_print_hexadecimal(
struct appl_context * const
p_context,
unsigned long int const
i_number)
{
appl_unused(
p_context);
write_frame_char(' ');
write_frame_number(
appl_convert::to_signed(
i_number),
appl_buf_print_flag_unsigned
| appl_buf_print_flag_hex
| appl_buf_print_flag_zero,
8u);
} // s_print_hexadecimal()
//
//
//
void
appl_callstack_service::s_leave(
struct appl_context * const
p_context)
{
appl_unused(
p_context);
pop_frame_index();
} // s_leave()
//
//
//
void
appl_callstack_service::s_report(
struct appl_context * const
p_context,
void (* p_callback)(
void * const
p_callback_data,
unsigned char const * const
p_report_min,
unsigned char const * const
p_report_max),
void * const
p_callback_data)
{
appl_unused(
p_context);
(*p_callback)(
p_callback_data,
g_callstack_text,
g_callstack_text + g_callstack_index);
} // s_report()
/* end-of-file: appl_callstack_service.cpp */
|
b2b316a03681b8f3f28f1fb0468b1fb3351553c5
|
f0f47361fa1b539ce1c5d6546e9f00214e493b7b
|
/lessons/classLesson/classLesson.ino
|
5925100ff042c2867b6a349379018787e292d6e1
|
[] |
no_license
|
aefrank/SMPRobotics2017
|
9e9adf9cf47a1ab599ee5003cededad9806e94df
|
bf51775b30e2ae772315f1c2811a9be2f077b79f
|
refs/heads/master
| 2020-12-02T08:15:26.883735
| 2017-08-25T18:30:33
| 2017-08-25T18:30:33
| 96,794,905
| 0
| 2
| null | 2017-07-10T22:33:56
| 2017-07-10T15:48:21
|
C++
|
UTF-8
|
C++
| false
| false
| 2,552
|
ino
|
classLesson.ino
|
/* Lesson: Writing classes - Person class
* By Andrea Frank
* 7/17/2017
* SMP Robotics 2017
*
* Students are first instructed to write a class called Person that
* can be instantiated as individual Persons. They are requested to
* give the Person class public fields for name and occupation, and
* private fields for birthdate (day, month, year). They are not
* allowed to have an age field. Students should write a public method
* to introduce the Person object's name, age, and occupation; and a
* private method to calculate their age from their (private) birth-
* date. This will be a helper function called by the public
* introduce() function.
*
* Students must then write a program to test their class. The loop()
* should end with while(1); to keep the program from looping.
*
* Bonus: Write a program where you can input a person’s information
* from the Serial monitor! (You can get rid of while(1); here so
* the program can accept new information immediately after each
* introduction.)
*/
#include "Person.h"
/*********************** GLOBAL VARIABLES ***********************/
//Person person; // declare instance of Person object;
// note: declared globally so can be accessed by both
// setup() and loop()!
// commented out because it only needs to be accessed in loop()
// for bonus program, can be redeclared each loop
/************************* MAIN PROGRAM *************************/
// setup Serial communication
void setup() {
// Serial setup
Serial.begin(9600); // begin serial communication
while(!Serial); // wait for serial port to open
Serial.setTimeout(10); // let's you type faster without Strings being combined
// construct Person object
// person = Person("Andi", "SMP Coordinator", 15, 4, 1995); // for non-Serial version
}
// gather Serial inputs, construct Person object, and introduce
void loop() {
// gather Strings from command line
String str[5]; // 5 pieces of info necessary: name, job, birthday, birth month, birth year
for(int i = 0; i < 5; i++){
while(!Serial.available()); // wait for each string
str[i] = Serial.readString();
}
int bdate[3];
for(int i = 0; i < 3; i++){
bdate[i] = str[i+2].toInt(); // turn birthdate info into ints
}
// create Person object with information from Serial
Person person = Person(str[0], str[1], bdate[0], bdate[1], bdate[2]);
// introduce person
person.introduce();
} // loop and wait for more inputs
|
eaaa7761edf2854cdb6416430d43898a08de6569
|
f1da33ef6e78fe962aa86be5f63e0b8ab8f26289
|
/car.h
|
664a861ac58eb8ece6baaad846cbed2e0af12ca5
|
[] |
no_license
|
00riddle00/BSc1-ProgrammingCpp-car-database
|
89518ed564fc2159825785a36461400d81bde348
|
45b48b72b85f7bf92b7c45c9d8ce5e2b7591263f
|
refs/heads/master
| 2020-08-31T04:42:53.006023
| 2018-04-29T12:53:19
| 2018-04-29T12:53:19
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,921
|
h
|
car.h
|
#ifndef __CAR_H_
#define __CAR_H_
#include "wheels.h"
const int MAX_ENTRY_SIZE = 30;
const int LATEST_YEAR = 2018;
const int EARLIEST_YEAR = 1920;
const int MAX_PRICE = 1e9;
const int MAX_MAX_SPEED = 420;
const float MAX_NOT_TO_SIXTY = 100.0;
const float MAX_SIXTY_TO_MAX_SPEED = 1000.0;
const float MAX_HEIGHT_FROM_GROUND = 150.0;
class Car {
int id;
bool filter;
std::string car_make;
std::string car_model;
int car_year;
int car_price;
int max_speed;
float not_to_sixty;
float sixty_to_max_speed;
float offroad_hindrance;
float maneuverability;
// FIXME use the pointer or not?
float constant1;
float constant2;
float race_time;
static size_t numberOfCars;
static size_t compField;
public:
Wheels wheels;
Car();
Car(
int id,
bool filter,
const std::string& car_make,
const std::string& car_model,
int car_year,
int car_price,
int max_speed,
float not_to_sixty,
float sixty_to_max_speed,
float offroad_hindrance,
float maneuverability,
int tireSize,
const std::string& tireType,
float protectorDepth
);
Car(const Car&);
virtual ~Car() = 0;
friend bool operator>(const Car& obj1, const Car& obj2);
void setID(int);
void setFilter(bool);
void setCarMake(const std::string&);
void setCarModel(const std::string&);
void setCarYear(int);
void setCarPrice(int);
void setMaxSpeed(int);
void setNotToSixty(float);
void setSixtyToMaxSpeed(float);
void setOffroadHindrance(float);
void setManeuverability(float);
void setConstant1(float);
void setConstant2(float, int);
void setRaceTime(float);
int getID() const;
bool getFilter() const;
const std::string& getCarMake() const;
const std::string& getCarModel() const;
int getCarYear() const;
int getCarPrice() const;
int getMaxSpeed() const;
float getNotToSixty() const;
float getSixtyToMaxSpeed() const;
float getOffroadHindrance() const;
float getManeuverability() const;
float getConstant1() const;
float getConstant2() const;
float getRaceTime() const;
virtual void getCar(int id);
virtual float getNotToSixtyForRace(const std::string&) const = 0;
virtual float getSixtyToMaxSpeedForRace(const std::string&) const = 0;
virtual int getMaxSpeedForRace(const std::string&) const = 0;
static size_t getNumberOfCars();
static void decrementNumberOfCars();
static void setCompField(size_t);
static size_t getCompField();
};
bool operator>(const Car& obj1, const Car& obj2);
#endif
|
f1ebbd6e74081a7d751b7e49237e88b330f697c5
|
8292e1f6f3ff4fa0afd8aafe9aaaa5135d82d077
|
/OOP Homework/Thuc hanh/Week8/Exercise 3 + 4/Rectangle.cpp
|
9788dfcf566381f88d9eaab6f6928d22306b46ba
|
[] |
no_license
|
lkdn3t/First-Year-In-UIT
|
b03abcd18506d5916bac609d536bb333e7a4f03d
|
ca7a5f4c1ca81bd7898176d24fb027891303321e
|
refs/heads/master
| 2021-04-06T04:02:07.216858
| 2018-07-03T14:17:10
| 2018-07-03T14:17:10
| 123,702,504
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 763
|
cpp
|
Rectangle.cpp
|
#include "Rectangle.h"
bool Rectangle::isRectangle() {
if (!isParallelogram()) return false;
if (point[0].get_y() == point[1].get_y()) return point[0].get_x() == point[3].get_x();
return point[0].get_x() == point[1].get_x();
}
Rectangle::Rectangle(Point2D AA, Point2D BB, Point2D CC, Point2D DD) {
this->point[0] = AA; this->point[1] = BB; this->point[2] = CC; this->point[3] = DD;
}
Rectangle::Rectangle(const Rectangle & R) {
*this = R;
}
void Rectangle::input() {
cout << "...Enter points of a Rectangle...\n";
Quadrilateral::input();
if (!isRectangle()) {
cout << " Entered points cannot found a Rectangle\n\n";
input();
}
}
void Rectangle::output() const {
cout << "...Information of the input-Rectangle...\n";
Quadrilateral::output();
}
|
23439669adb60c4ac3c0ea9221a919034bef1b9a
|
79d3221f551c86fb9de43e15a9d75369c5a3abc2
|
/Source/Jogo2D/Enemy.cpp
|
bc77e79e4b7a09ae9ea36bfb050a09debff7527e
|
[] |
no_license
|
R1tter/Avalia-o1
|
e696d88ece13a73f4d720e790f45b00f284df19e
|
9d222b6e69fc665262f179ff1e58c0de925c5ca5
|
refs/heads/master
| 2021-01-22T18:46:22.684103
| 2017-09-29T01:29:11
| 2017-09-29T01:29:11
| 102,414,661
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,884
|
cpp
|
Enemy.cpp
|
// Fill out your copyright notice in the Description page of Project Settings.
#include "Enemy.h"
#include "Components/BoxComponent.h"
#include "PaperFlipbookComponent.h"
#include "Personagem.h"
#include "Bullet.h"
// Sets default values
AEnemy::AEnemy()
{
// Set this pawn to call Tick() every frame. You can turn this off to improve performance if you don't need it.
PrimaryActorTick.bCanEverTick = true;
CollisionComp = CreateDefaultSubobject<UBoxComponent>(TEXT("CollisionComp"));
CollisionComp->SetCollisionProfileName("BlockAll");
CollisionComp->OnComponentHit.AddDynamic(this, &AEnemy::OnHit);
RootComponent = CollisionComp;
Sprite = CreateDefaultSubobject<UPaperFlipbookComponent>
(TEXT("Sprite"));
// Idle = CreateDefaultSubobject<UPaperFlipbookComponent>
// (TEXT("Idle"));
// Walking = CreateDefaultSubobject<UPaperFlipbookComponent>
// (TEXT("Walking"));
Sprite->SetupAttachment(RootComponent);
// Idle->SetupAttachment(RootComponent);
// Walking->SetupAttachment(RootComponent);
Life = 1;
Speed = 1;
}
// Called when the game starts or when spawned
void AEnemy::BeginPlay()
{
Super::BeginPlay();
InitialLocation = GetActorLocation();
}
// Called every frame
void AEnemy::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
//Move();
if (Life <= 0) {
UE_LOG(LogTemp, Warning, TEXT("PASSOU DE FASE!!!"));
Destroy();
}
}
/*void AEnemy::OnHit(UPrimitiveComponent * HitComponent, AActor * OtherActor, UPrimitiveComponent * OtherComp,
FVector NormalImpulse, const FHitResult & Hit)
{
UE_LOG(LogTemp, Warning, TEXT("EXPLODED"));
Destroy();
}*/
// Called to bind functionality to input
void AEnemy::SetupPlayerInputComponent(UInputComponent* PlayerInputComponent)
{
Super::SetupPlayerInputComponent(PlayerInputComponent);
}
void AEnemy::SetLife(int newLife)
{
Life = newLife;
}
int AEnemy::GetLife()
{
return Life;
}
void AEnemy::OnHit(UPrimitiveComponent * HitComponent, AActor * OtherActor, UPrimitiveComponent * OtherComp, FVector NormalImpulse,
const FHitResult & Hit) {
if (OtherActor != nullptr && OtherActor->IsA(APersonagem::StaticClass())) {
APersonagem* Personagem = Cast<APersonagem>(OtherActor);
Personagem->SetLife(Personagem->GetLife() - 0.1);
UE_LOG(LogTemp, Warning, TEXT("%f"), Personagem->GetLife());
//ChangeSpeed();
SetLife(GetLife() - 1);
}
if (OtherActor != nullptr && OtherActor->IsA(ABullet::StaticClass())) {
SetLife(GetLife() - 1);
}
}
void AEnemy::Move()
{
if (GetActorLocation().X>=InitialLocation.X+250 || GetActorLocation().X <= InitialLocation.X -250) {
ChangeSpeed();
}
FVector ActualLocation = GetActorLocation();
ActualLocation.X += (2 * Speed);
SetActorLocation(ActualLocation);
}
void AEnemy::ChangeSpeed() {
Speed *= -1;
if (Speed > 0) {
Sprite->SetWorldRotation(FRotator(0.0f, 0.0f, 0.0f));
}
else {
Sprite->SetWorldRotation(FRotator(0.0f, 180.0f, 0.0f));
}
}
|
501c26720c8879f1797f5180faeeed94bd40af9f
|
e0387cf8f45d3e2b7ea3788b299f195a621708a8
|
/Source/Sable/Core/Math/Vector2i.h
|
e34ed82e5a1d50006ff9bdd5d2b11c2a8112248d
|
[] |
no_license
|
ClementVidal/sable.sable
|
eea0e822d90739269e35bed20805a2789b5fbc81
|
0ec2cd03867a4673472c1bc7b071a3f16b55fb1b
|
refs/heads/master
| 2021-01-13T01:28:54.070144
| 2013-10-15T15:21:49
| 2013-10-15T15:21:49
| 39,085,785
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,809
|
h
|
Vector2i.h
|
#ifndef _SABLE_CORE_MATH_VECTOR2I_
#define _SABLE_CORE_MATH_VECTOR2I_
#include <Sable\Core\Common\DataTypes.h>
#include <Sable\Core\Math\Tuple.h>
namespace Sable
{
class CVector2f;
class CPersistentArchive;
/**
\ingroup CoreMath
Vector 2.
*/
class CVector2i : private STuple2i
{
public:
/** @name Constructor/Destructor*/
//@{
CVector2i();
CVector2i( const CVector2f& other );
CVector2i( const CVector2i& other );
CVector2i( Int32 px, Int32 py);
~CVector2i();
//@}
/** @name Operator*/
//@{
CVector2i& operator=( const CVector2i& other );
Bool operator==( const CVector2i& V ) const;
Bool operator!=( const CVector2i& V ) const;
CVector2i operator-( ) const ;
CVector2i operator+( const CVector2i& v) const ;
CVector2i operator-( const CVector2i& v) const;
CVector2i operator*( const CVector2i& v) const ;
CVector2i operator/( const CVector2i& v) const ;
CVector2f operator/( const CVector2f& v) const ;
CVector2i operator-( const Int32 v) const ;
CVector2i operator*( const Int32 v) const ;
CVector2i operator/( const Int32 v) const ;
CVector2i& operator+=( const CVector2i& v);
CVector2i& operator-=( const CVector2i& v);
CVector2i& operator*=( const CVector2i& v);
CVector2i& operator/=( const CVector2i& v);
//@}
/** @name Accessors*/
//@{
Void Set( const Int32 px, const Int32 py);
Int32 GetX() const;
Int32 GetY() const;
Void SetX( Int32 v );
Void SetY( Int32 v );
//@}
/** @name Manipulator*/
//@{
Float32 GetLength() const;
Bool Serialize( CPersistentArchive& ar );
//@}
/** @name Constants*/
//@{
static CVector2i Zero;
//@}
};
}
#endif
|
54b7c21c975fb81574f3b676d4edc15f33f18717
|
72e95df33ab3fb6bba03a81867b77b755f46bb66
|
/shared_model/backend/protobuf/deserialize_repeated_transactions.hpp
|
c70ba2aeee66e026b02088ea2548cb190039f3fb
|
[
"Apache-2.0",
"CC-BY-4.0"
] |
permissive
|
hyperledger/iroha
|
f07a81389fe1d3c488968919ab9196c548048f3a
|
f2d96e3050a504a982b983d8061588d8c650c5ad
|
refs/heads/main
| 2023-09-06T00:40:53.092106
| 2023-09-01T17:37:08
| 2023-09-01T17:37:08
| 67,340,575
| 1,125
| 419
|
Apache-2.0
| 2019-04-16T17:26:30
| 2016-09-04T11:17:53
|
C++
|
UTF-8
|
C++
| false
| false
| 1,135
|
hpp
|
deserialize_repeated_transactions.hpp
|
/**
* Copyright Soramitsu Co., Ltd. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef IROHA_SHARED_MODEL_PROTO_DESERIALIZE_REPEATED_TRANSACTIONS_HPP
#define IROHA_SHARED_MODEL_PROTO_DESERIALIZE_REPEATED_TRANSACTIONS_HPP
#include "common/result.hpp"
#include "interfaces/common_objects/transaction_sequence_common.hpp"
#include "interfaces/iroha_internal/abstract_transport_factory.hpp"
#include "interfaces/transaction.hpp"
#include "transaction.pb.h"
namespace shared_model {
namespace proto {
using TransactionFactoryType = interface::AbstractTransportFactory<
shared_model::interface::Transaction,
iroha::protocol::Transaction>;
iroha::expected::Result<interface::types::SharedTxsCollectionType,
TransactionFactoryType::Error>
deserializeTransactions(
const TransactionFactoryType &transaction_factory,
const google::protobuf::RepeatedPtrField<iroha::protocol::Transaction>
&transactions);
} // namespace proto
} // namespace shared_model
#endif // IROHA_SHARED_MODEL_PROTO_DESERIALIZE_REPEATED_TRANSACTIONS_HPP
|
c6829f835393928d6f78a1a4d4255b6fa5dd456d
|
1b4e1f33b0b6afc551143c4bd115494a14831901
|
/kitchen.ino
|
cc0ec377624dc1a4b1f650ddef1dc6bb8464f2ac
|
[] |
no_license
|
solarmania/IAQ-monitor
|
0d591c5609194164bea2a448fcaf88b632bdfdd3
|
5d0bea5220edca804ee811d9e105d7ff0e88934f
|
refs/heads/master
| 2020-04-01T11:41:49.327226
| 2018-10-16T10:18:58
| 2018-10-16T10:18:58
| 153,173,411
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,000
|
ino
|
kitchen.ino
|
#include <SoftwareSerial.h>
#include <Wire.h>
#include <SDS011.h>
#include <Adafruit_SHT31.h>
#include <ESP8266WiFi.h>
SoftwareSerial co2(D7,D8);
SDS011 dust;
Adafruit_SHT31 tempHumid = Adafruit_SHT31();
const byte readCmd[] = {0xFF,0x01,0x86,0x00,0x00,0x00,0x00,0x00,0x79};
const char* ssid = "myid";
const char* password = "mypassword";
const char* host = "myip";
const int httpPort = 80;
int ppm;
float p10,p25;
int error;
float h,t;
void setup() {
Serial.begin(9600);
co2.begin(9600);
dust.begin(D4,D3);
tempHumid.begin(0x44);
// We start by connecting to a WiFi network
Serial.println();
Serial.println();
Serial.print("Connecting to ");
Serial.println(ssid);
WiFi.mode(WIFI_STA); //Explicitly set the ESP8266 to be a WiFi-client.
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay (500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
delay(30000);
}
int stat = 0;
int dataByteCount = 0;
byte checkSum = 0;
byte ppmHigh = 0;
byte ppmLow = 0;
void loop() {
//measure PM2.5 and PM10
error = dust.read(&p25,&p10);
if (! error) {
Serial.print("PM2.5: " + String(p25) + ", ");
Serial.print("PM10: " + String(p10) + ", ");
}
//measure temperature and humidity
t = tempHumid.readTemperature();
h = tempHumid.readHumidity();
Serial.print("T: " + String(t) + "C, ");
Serial.print("RH: " + String(h) + "%, ");
//measure CO2
while (co2.available() == 0) {
co2.write(readCmd,9);
delay (1000);
}
while (co2.available() > 0) {
byte d = co2.read();
switch (stat) {
case 0:
if (d == 0xFF) stat = 1;
break;
case 1:
if (d == 0x86) {
stat = 2;
}else if (d != 0xFF){
stat = 0;
}
break;
case 2:
switch (dataByteCount){
case 0:
ppmHigh = d;
checkSum = 0x86 + d;
dataByteCount ++;
break;
case 1:
ppmLow = d;
checkSum = checkSum + d;
dataByteCount ++;
break;
case 6:
checkSum = 255 - checkSum;
checkSum = checkSum + 1;
if (checkSum < 0){
checkSum = checkSum + 256;
}
if (checkSum == d){
stat = 0;
dataByteCount = 0;
checkSum = 0;
ppm = ppmHigh * 256 + ppmLow;
Serial.println ("CO2: " + String(ppm) + "ppm");
}
break;
default:
checkSum = checkSum + d;
dataByteCount ++;
break;
}
}
}
//Modify data to minimize storage space
int T = t*100;
int H = h*100;
int P10 = p10*10;
int P25 = p25*10;
// Use WiFiClient class to create TCP connections
WiFiClient client;
Serial.print("connecting to ");
Serial.println(host);
if (!client.connect(host, httpPort)) {
Serial.println("connection failed");
return;
}
// This will send the request to the server
String postData = "user=kitchen&T="+String(T)+"&H="+String(H)+"&P10="+String(P10)+"&P25="+String(P25)+"&C="+String(ppm);
client.println("POST / HTTP/1.1");
client.println("Content-Type: application/x-www-form-urlencoded;");
client.print("Content-Length: ");
client.println(postData.length());
client.println();
client.println(postData);
// Read all the lines of the reply from server and print them to Serial
while (client.available()) {
String line = client.readStringUntil('\r');
Serial.print(line);
}
client.stop();
Serial.println();
Serial.println("closing connection");
delay(1000);
dust.sleep();
delay(867000);
dust.wakeup();
delay(30000);
}
|
8a681fd7f823ecfe5477625b85ec6dfcaa22456b
|
c0621b0c0ba69cc5c5014a3c31fd2152ac1337a5
|
/ast/functionargumentexpr.h
|
d20dce78e1841673a249007fbddd8e2ebc9b9bce
|
[] |
no_license
|
chakalov/wait-for-it
|
f3148c19bc896ef829492d8433b6a6cec4749c0c
|
0ed72734fa2b65f4607128ed6646741e19506ef5
|
refs/heads/master
| 2021-01-18T15:12:33.508723
| 2014-04-04T18:26:44
| 2014-04-04T18:26:44
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 437
|
h
|
functionargumentexpr.h
|
#ifndef FUNCTIONARGUMENTEXPR_H
#define FUNCTIONARGUMENTEXPR_H
#include "localvariableexpr.h"
namespace wait_for_it {
class FunctionArgumentExpr: public LocalVariableExpr
{
llvm::Value *m_param;
public:
FunctionArgumentExpr(std::string type, std::string name);
void setParameter(llvm::Value *val);
virtual llvm::Value *emitCode(llvm::IRBuilder<>& builder, llvm::Module &module);
};
}
#endif // FUNCTIONARGUMENTEXPR_H
|
86e619a127c188d8361a5fa463b37b294b062081
|
1b3aab0c21bd5d969a9baeeea63f97f59881cfdc
|
/queuewithstacks.cpp
|
3e18ba014061951b7b899840a9d6537681ba8543
|
[] |
no_license
|
pritambiswas544/stacks-and-queues
|
4e398c64c430198a5e382d3bd8cefe72e078e5bb
|
b9d06e791aba7b97f09d44cd5848658e3a36a566
|
refs/heads/master
| 2020-04-21T17:36:09.828895
| 2019-02-09T15:36:55
| 2019-02-09T15:36:55
| 169,741,081
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,086
|
cpp
|
queuewithstacks.cpp
|
#include<iostream>
#include"templatestack.cpp"
using namespace std;
//making a class named queue
class queue{
public:
stackarr s1;
stackarr s2;
//int *a=(int*)&(s1.top);
//int *b=(int*)&(s2.top);
//function for inserting the element
void enqueue(int x){
//checking if the stack s1 is empty
while(!s1.isEmpty()){
//moving all the elements from s1 to s2
s2.push(s1.top);
s1.pop();
}
s1.push(x);
//again pushing back all elements from s2
//to get reverse order of the stack
while(!s2.isEmpty()){
s1.push(s2.top);
s2.pop();
}
}
//function for deleting one element
void dequeue(){
//checking if the list is empty
if(s1.isEmpty()){
cout<<"there is no item to delete"<<endl;
return;
}
//if not then delete
else{
s1.pop();
return;
}
} //for displaying the elements
void display(){
s1.display();
}
};
//main
int main(){
queue q;
for(int i=0;i<5;i++){
q.enqueue(i);
}
q.display();
q.enqueue(8);
q.display();
q.dequeue();
q.display();
q.dequeue();
q.display();
return 0;
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.