blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
d504dd3c44cec1e9cada80725e4cc71d8cc160db | 86c1e9ab2e057423a571e7df566bbe71c2f7f47e | /BAB VII/ELEMENT ARRAY/Element Array.cpp | ec76273ae6dad09f0e65dd852dc7f02ed01c33e4 | [] | no_license | luthfihilmanaf/UTS_DASAR_PEMROGRAMAN | 5bb0fdf352dc83df3a1f29498593aacd0c5d0775 | a3261a8d373ffe742d4afbfff47c6eb1f42cb381 | refs/heads/master | 2020-08-31T11:30:53.007819 | 2019-10-31T04:15:58 | 2019-10-31T04:15:58 | 218,680,400 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 755 | cpp | #include <iostream>
using namespace std;
int main()
{
cout<< "================================== " << endl;
cout<< " Luthfi Hilman Al Farizi " << endl;
cout<< " A2.1900099 " << endl;
cout<< "=================================== " << endl;
cout<< endl;
int Nama_Array[10];
cout << "Masukan nilai pada : " << endl;
for(int C=0; C<10; C++)
{
cout << "Element [" << C << "] = ";
cin >> Nama_Array [C];
}
cout << "\n";
cout << "Tampilkan nilai yang dimasukan : " << endl;
for(int D=0; D<10; D++)
{
cout << "Nilai yang terdapat pada element ke";
cout << D+1 << " = " << Nama_Array[D] << endl;
}
cout << "\n";
return 0;
}
| [
"luthfihilmanaf@gmail.com"
] | luthfihilmanaf@gmail.com |
59b02beead10a93c8aa2c60bcf446a708f7a872b | e5c6bbe97f6ef41271e7f9006adf24284dccff0d | /CS1/physics_lab1.cpp | 8dedecae2a7923b12495eed1dde9b290876cfc75 | [] | no_license | anazeneli/fordham-cs2 | 941a9c5c06cb13643edfaeff79c824825c96cf82 | 4e5ef20fde251a6d19d6ba7f818f28baf70ca4bc | refs/heads/master | 2021-01-12T01:21:11.238268 | 2017-01-20T00:11:03 | 2017-01-20T00:11:03 | 78,373,534 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 581 | cpp | //
// physicslab1.cpp
#include <iostream>
#include <iomanip>
#include <cmath>
using namespace std;
double standard_deviation_x ( double &a,double&b, double&c,double&v,double&u,double&w);
int main()
{
double a,b,c, v, u , w;
cout<< "Enter V, delta V, u, delta u, w, delta w"<<endl;
cin>> v>>a>>u>>b>>w>>c;
cout<<standard_deviation_x(a,b,c,v,u,w);
}
double standard_deviation_x ( double &a,double&b, double&c,double&v,double&u,double&w)
{
return sqrt(pow((2/(47*u*w)),2)*pow(a,2) + pow((-2*v/(47*u*u*w)),2)*pow(b,2)+ pow(-2*v/(47*u*w*w),2)*pow(c,2));
} | [
"anazeneli1@Anas-MacBook-Air.local"
] | anazeneli1@Anas-MacBook-Air.local |
01fe03353403d25e62943ced3564be456b9b7e23 | 93320ab0e4174142eb7e07956dea7e90e601e457 | /练习/ID1047/ID1047.cpp | caae05ff13dd5f00c2ddb58a7e1b810efc26a4da | [] | no_license | xianzheTM/Test_Cpp | c302f6f2e6d276ee4b6985dc80d385c8cea8aa0d | ab9368c5f022c59e2111c934e35252c3d2d3c496 | refs/heads/master | 2021-04-06T07:10:44.958263 | 2019-06-17T07:49:40 | 2019-06-17T07:49:40 | 124,899,813 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 521 | cpp | //http://222.22.91.42/view/practice/display.aspx?qid=1047#flag
#include <iostream>
#include <math.h>
#include <iomanip>
using namespace std;
int main()
{
double n, i;
double number = 0, sum = 0;
cin >> n;
for (i = 1; abs((pow(-1.0, i + 1)) * 1 / (i*(i + 1) + n)) > pow(10.0, -4); ++i)
{
number = (pow(-1, i + 1)) * 1 / (i*(i + 1) + n);
sum = sum + number;
}
cout << setiosflags(ios::fixed) << setprecision(4) << sum-0.0001;//不知道哪里的精度不对,与答案差了0.0001
system("pause");
return 0;
} | [
"ylxianzhe@outlook.com"
] | ylxianzhe@outlook.com |
46d01a1d6049b3d65d7a6d005bfdb77e37c11bf4 | 380de7ea06addf0a41f9fa38c107a2bc122fcbb8 | /Tactics/Framework/IO/MenuList.cpp | 4eff223aca7874cf0a1f62a4fccb31d41a0c47e7 | [] | no_license | DStagg/Tactics | 4eead72fb420f92861f3a799080cb0d3d829360a | 34f6c73ca76c2dc974481758da4b601edd19a786 | refs/heads/master | 2020-03-29T14:13:52.642099 | 2018-09-23T21:58:12 | 2018-09-23T21:58:12 | 150,005,923 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,104 | cpp | #include "MenuList.h"
MenuList::MenuList()
{
};
MenuList::~MenuList()
{
};
void MenuList::Populate(std::vector<std::string> list)
{
_List = list;
SetChoice(0);
};
int MenuList::GetChoice()
{
return _Choice;
};
void MenuList::SetChoice(int c)
{
if (c < 0)
c = 0;
else if ((int)_List.size() == 0)
c = 0;
else if (c >= (int)_List.size())
c = (int)_List.size() - 1;
_Choice = c;
};
void MenuList::IncChoice()
{
_Choice++;
if (_Choice >= (int)_List.size())
{
if (GetLoop())
SetChoice(0);
else
SetChoice((int)_List.size() - 1);
}
};
void MenuList::DecChoice()
{
_Choice--;
if (_Choice < 0)
{
if (GetLoop())
SetChoice((int)_List.size() - 1);
else
SetChoice(0);
}
};
void MenuList::SetLoop(bool b)
{
_Loop = b;
};
bool MenuList::GetLoop()
{
return _Loop;
};
int MenuList::CountList()
{
return (int)_List.size();
};
std::string MenuList::GetList(int id)
{
if (id < 0)
id = 0;
if (id >= CountList())
id = CountList() - 1;
return _List[id];
};
void MenuList::SetList(int id, std::string tex)
{
if (id < 0)
id = 0;
if (id >= CountList())
id = CountList() - 1;
_List[id] = tex;
};
///
SFMLMenuList::SFMLMenuList()
{
};
SFMLMenuList::~SFMLMenuList()
{
};
void SFMLMenuList::Format(sf::Font font, float x, float y, int orientation)
{
_Font = font;
_X = x;
_Y = y;
_Orientation = orientation;
}
void SFMLMenuList::SetBuffers(float x, float y)
{
_XBuffer = x;
_YBuffer = y;
};
void SFMLMenuList::Draw(sf::RenderWindow* rw)
{
float ySpace = 0.f;
for (int i = 0; i < CountList(); i++)
{
sf::Text tex;
tex.setString(GetList(i));
tex.setFont(_Font);
if (i == GetChoice())
tex.setStyle(sf::Text::Underlined);
if (_Orientation == SFMLMenuList::Left)
tex.setPosition(_X + _XBuffer, _Y + ySpace + (i * _YBuffer));
else if (_Orientation == SFMLMenuList::Center)
tex.setPosition(_X - (tex.getLocalBounds().width / 2.f), _Y + ySpace + (i * _YBuffer));
else
tex.setPosition(_X - (tex.getLocalBounds().width + _XBuffer), _Y + ySpace + (i * _YBuffer));
rw->draw(tex);
ySpace += tex.getLocalBounds().height;
};
}; | [
"staggy11@gmail.com"
] | staggy11@gmail.com |
3c7cdd7504f1cfc30540221e8840220088656f69 | 01bd7ed3537042a4f88ed93eddf47c19036db46a | /SouShen/Classes/Game/GameManager.cpp | 6a648f87de8352aec4c49b77883cea8fcbbb7498 | [] | no_license | Michael-Z/SouShen | f80b8df144e8171c344a6f16e5981642776f0ed4 | 8e83996e3951a0aa8e289b3c0865bc613bc6894b | refs/heads/master | 2021-01-25T12:23:50.593240 | 2013-09-24T00:53:05 | 2013-09-24T00:53:05 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 805 | cpp | #include "Config.h"
#include "GameManager.h"
namespace View
{
void GameManager::DisplayNowScene(int sID)
{
CBaseScene *actScene = NULL;
bool bFirstScene = false;
do
{
//auto it = _allScenesMap.find(sID);
//if (it != _allScenesMap.end())
//{
// actScene = _allScenesMap[sID];
// break;
//}
switch (sID)
{
case SCENE_INIT:
bFirstScene = true;
actScene = new CTestScene();// CBaseScene::create();
break;
case SCENE_LOGIN:
actScene = new CTestScene();
break;
case SCENE_MENU:
actScene = new CMenuScene();
break;
default:
break;
}
//_allScenesMap[sID] = actScene;
} while (0);
if (actScene != NULL)
{
actScene->runThisScene();
actScene->release(); //»ØÊÕ
}
}
} | [
"pope@pope.taomee-ex.com"
] | pope@pope.taomee-ex.com |
b977d3f6d16f6a5ead2627708c0f377fcc59d42d | 792ad26fd812df30bf9a4cc286cca43b87986685 | /图论/图论疯狂500题/最小生成树/HDU 1863 畅通工程.cpp | d0440c6fe44578c821d54b80cd9b38c9b1ddf639 | [] | no_license | Clqsin45/acmrec | 39fbf6e02bb0c1414c05ad7c79bdfbc95dc26bf6 | 745b341f2e73d6b1dcf305ef466a3ed3df2e65cc | refs/heads/master | 2020-06-18T23:44:21.083754 | 2016-11-28T05:10:44 | 2016-11-28T05:10:44 | 74,934,363 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,285 | cpp | #include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
using namespace std;
#define N 111
#define M
#define LL __int64
#define INF 0x3f7f7f7f
int f[N][N], d[N];
bool vis[N];
int n, ans;
bool prim(){
int i, j, now, loc;
for(i = 1; i <= n; i++){
d[i] = f[1][i];
}
memset(vis, false, sizeof(vis));
d[1] = 0; vis[1] = true;
for(i = 1; i < n; i++){
now = f[0][0];
for(j = 1; j <= n; j++){
if(vis[j]) continue;
if(now > d[j]){
now = d[j]; loc = j;
}
}
if(now == f[0][0]) return false;
ans += now; vis[loc] = true;
for(j = 1; j <= n; j++){
if(vis[j]) continue;
d[j] = min(d[j], f[loc][j]);
}
}
return true;
}
int main(){
int m, i, x, y, z;
while(scanf("%d", &m) && m){
scanf("%d", &n);
memset(f, 0x3f, sizeof(f));
// printf("%d %d\n", f[0][0], INF);
while(m--){
scanf("%d%d%d", &x, &y, &z);
f[x][y] = min(z, f[x][y]);
f[y][x] = f[x][y];
}
ans = 0;
if(prim()){
printf("%d\n", ans);
}
else printf("?\n");
}
}
| [
"someway.bit@gmail.com"
] | someway.bit@gmail.com |
cd1fc686baa02f9997b32429d644689d9eeacf20 | 54c9a08deccb6ca465205b6d99554795b2c8ea19 | /Aulas/P2/9(Polimorfismo)/Aula 10/Livro_24_7_11/fig24_11.cpp | 9d43abbea129092ed4ea30af177ab4597a2850a8 | [] | no_license | PabloFreitas-lib/Prog3-UFSC-2018.2 | 2ff284bb4ec43702090b95f0745b6cef5f35f907 | 6950628e0819d4f472f4bc11b54873c0ebe76c00 | refs/heads/master | 2022-06-27T04:00:43.487131 | 2019-09-08T03:44:54 | 2019-09-08T03:44:54 | 195,102,246 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 2,551 | cpp | // Fig. 24.11: fig24_11.cpp
// Driver para o exemplo de herança múltipla.
#include <iostream>
using std::cout;
using std::endl;
#include "Base1.h"
#include "Base2.h"
#include "Derived.h"
int main()
{
Base1 base1( 10 ), *base1Ptr = 0; // cria objeto Base1
Base2 base2( 'Z' ), *base2Ptr = 0; // cria objeto Base2
Derived derived( 7, 'A', 3.5 ); // cria objeto Derived
// imprime membros de dados de objetos da classe básica
cout << "Object base1 contains integer " << base1.getData()
<< "\nObject base2 contains character " << base2.getData()
<< "\nObject derived contains:\n" << derived << "\n\n";
// imprime membros de dados do objeto da classe derivada
// operador de resolução de escopo resolve ambigüidade de getData
cout << "Data members of Derived can be accessed individually:"
<< "\n Integer: " << derived.Base1::getData()
<< "\n Character: " << derived.Base2::getData()
<< "\nReal number: " << derived.getReal() << "\n\n";
cout << "Derived can be treated as an object of either base class:\n";
// trata Derived como um objeto Base1
base1Ptr = &derived;
cout << "base1Ptr->getData() yields " << base1Ptr->getData() << '\n';
// trata Derived como um objeto Base2
base2Ptr = &derived;
cout << "base2Ptr->getData() yields " << base2Ptr->getData() << endl;
return 0;
} // fim de main
/**************************************************************************
* (C) Copyright 1992-2005 Deitel & Associates, Inc. e *
* Pearson Education, Inc. Todos os direitos reservados *
* *
* NOTA DE ISENÇÃO DE RESPONSABILIDADES: Os autores e o editor deste *
* livro empregaram seus melhores esforços na preparação do livro. Esses *
* esforços incluem o desenvolvimento, pesquisa e teste das teorias e *
* programas para determinar sua eficácia. Os autores e o editor não *
* oferecem nenhum tipo de garantia, explícita ou implicitamente, com *
* referência a esses programas ou à documentação contida nesses livros. *
* Os autores e o editor não serão responsáveis por quaisquer danos, *
* acidentais ou conseqüentes, relacionados com ou provenientes do *
* fornecimento, desempenho ou utilização desses programas. *
**************************************************************************/
| [
"pablo.santos1999@gmail.com"
] | pablo.santos1999@gmail.com |
628161aae6f7c32648e5f496020913b1bb5ce2ee | fe2362eda423bb3574b651c21ebacbd6a1a9ac2a | /VTK-7.1.1/Imaging/Core/Testing/Cxx/ImageAutoRange.cxx | b175af24bdcf26d68128b9a08f2b997ec0acc871 | [
"BSD-3-Clause"
] | permissive | likewatchk/python-pcl | 1c09c6b3e9de0acbe2f88ac36a858fe4b27cfaaf | 2a66797719f1b5af7d6a0d0893f697b3786db461 | refs/heads/master | 2023-01-04T06:17:19.652585 | 2020-10-15T21:26:58 | 2020-10-15T21:26:58 | 262,235,188 | 0 | 0 | NOASSERTION | 2020-05-08T05:29:02 | 2020-05-08T05:29:01 | null | UTF-8 | C++ | false | false | 3,841 | cxx | /*=========================================================================
Program: Visualization Toolkit
Module: ImageAutoRange.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// Use vtkImageHistogramStatistics to auto compute the window/level
//
// The command line arguments are:
// -I => run in interactive mode
#include "vtkSmartPointer.h"
#include "vtkRenderWindowInteractor.h"
#include "vtkInteractorStyleImage.h"
#include "vtkRenderWindow.h"
#include "vtkRenderer.h"
#include "vtkCamera.h"
#include "vtkImageData.h"
#include "vtkImageSliceMapper.h"
#include "vtkImageProperty.h"
#include "vtkImageSlice.h"
#include "vtkPNGReader.h"
#include "vtkImageHistogramStatistics.h"
#include "vtkTestUtilities.h"
int ImageAutoRange(int argc, char *argv[])
{
vtkSmartPointer<vtkRenderWindowInteractor> iren =
vtkSmartPointer<vtkRenderWindowInteractor>::New();
vtkSmartPointer<vtkInteractorStyle> style =
vtkSmartPointer<vtkInteractorStyle>::New();
vtkSmartPointer<vtkRenderWindow> renWin =
vtkSmartPointer<vtkRenderWindow>::New();
iren->SetRenderWindow(renWin);
iren->SetInteractorStyle(style);
vtkSmartPointer<vtkPNGReader> reader =
vtkSmartPointer<vtkPNGReader>::New();
char* fname = vtkTestUtilities::ExpandDataFileName(
argc, argv, "Data/fullhead15.png");
reader->SetFileName(fname);
delete[] fname;
vtkSmartPointer<vtkImageHistogramStatistics> statistics =
vtkSmartPointer<vtkImageHistogramStatistics>::New();
statistics->SetInputConnection(reader->GetOutputPort());
statistics->GenerateHistogramImageOff();
statistics->Update();
// Get a viewing range based on the full data range
double range[2];
range[0] = statistics->GetMinimum();
range[1] = statistics->GetMaximum();
// Use the autorange feature to get a better image range
double autorange[2];
statistics->GetAutoRange(autorange);
for (int i = 0; i < 2; i++)
{
vtkSmartPointer<vtkRenderer> renderer =
vtkSmartPointer<vtkRenderer>::New();
vtkCamera *camera = renderer->GetActiveCamera();
renderer->SetBackground(0.0,0.0,0.0);
renderer->SetViewport(0.5*(i&1), 0.0,
0.5 + 0.5*(i&1), 1.0);
renWin->AddRenderer(renderer);
vtkSmartPointer<vtkImageSliceMapper> imageMapper =
vtkSmartPointer<vtkImageSliceMapper>::New();
imageMapper->SetInputConnection(reader->GetOutputPort());
double *bounds = imageMapper->GetBounds();
double point[3];
point[0] = 0.5*(bounds[0] + bounds[1]);
point[1] = 0.5*(bounds[2] + bounds[3]);
point[2] = 0.5*(bounds[4] + bounds[5]);
camera->SetFocalPoint(point);
point[imageMapper->GetOrientation()] += 500.0;
camera->SetPosition(point);
camera->SetViewUp(0.0, 1.0, 0.0);
camera->ParallelProjectionOn();
camera->SetParallelScale(128);
vtkSmartPointer<vtkImageSlice> image =
vtkSmartPointer<vtkImageSlice>::New();
image->SetMapper(imageMapper);
renderer->AddViewProp(image);
if ((i & 1) == 0)
{
image->GetProperty()->SetColorWindow(range[1] - range[0]);
image->GetProperty()->SetColorLevel(0.5*(range[0] + range[1]));
}
else
{
image->GetProperty()->SetColorWindow(autorange[1] - autorange[0]);
image->GetProperty()->SetColorLevel(0.5*(autorange[0] + autorange[1]));
}
}
renWin->SetSize(512,256);
iren->Initialize();
renWin->Render();
iren->Start();
return EXIT_SUCCESS;
}
| [
"likewatchk@gmail.com"
] | likewatchk@gmail.com |
211be7bfd2369642433a8f6e0276094eb4dff0dc | 7324bc957e3f7dc4dcab464ed97b4a0688fbebd1 | /LeetCode/231. Power of Two.cpp | 7b87faabce842fcc1acc4528022ce23087627d93 | [] | no_license | sungzh/leetcode | ca505c108f85bf719f667c5a283a0b6cf0238071 | de7a480bdddbb30ed1a7c59f16bcc3337ebdff5e | refs/heads/master | 2021-01-17T16:47:11.493866 | 2018-01-31T06:58:39 | 2018-01-31T06:58:39 | 63,408,814 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 432 | cpp | /*
* Given an integer, write a function to determine if it is a power of two.
*
* Credits:
* Special thanks to @jianchao.li.fighter for adding this problem and creating all test cases.
*/
/*
* Source: https://leetcode.com/problems/power-of-two/
* Description: n&(n-1)==0 power 2
* Author: guozheng
* Data: 20170915
*/
class Solution {
public:
bool isPowerOfTwo(int n) {
return n>0 && (n&(n-1))==0;
}
};
| [
"sdsxsgz@gmail.com"
] | sdsxsgz@gmail.com |
4a9b45003f6e5125d870e4cbe357df956cb65a4f | 6bcbd9c9c9cf07846eb76927804cc0b6b48247c0 | /src/third_party/webrtc/modules/audio_processing/gain_control_for_experimental_agc.h | 8f5681f0eaade01b775fcdc36f5e9673ad92bf04 | [] | no_license | haska1025/spiritbreaker | 108730c882e7b82fd1027e2efdeca8205f93e51e | 0bc5129d373e54b17084c5dfc9be05f7cc28ce74 | refs/heads/master | 2022-12-23T07:07:29.032596 | 2020-04-05T06:05:10 | 2020-04-05T06:05:10 | 176,910,696 | 5 | 3 | null | 2022-12-10T15:01:15 | 2019-03-21T09:18:25 | C++ | UTF-8 | C++ | false | false | 2,962 | h | /*
* Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#ifndef MODULES_AUDIO_PROCESSING_GAIN_CONTROL_FOR_EXPERIMENTAL_AGC_H_
#define MODULES_AUDIO_PROCESSING_GAIN_CONTROL_FOR_EXPERIMENTAL_AGC_H_
#include "modules/audio_processing/agc/agc_manager_direct.h"
#include "modules/audio_processing/include/audio_processing.h"
#include "rtc_base/constructor_magic.h"
#include "rtc_base/critical_section.h"
#include "rtc_base/thread_checker.h"
namespace webrtc {
class ApmDataDumper;
// This class has two main purposes:
//
// 1) It is returned instead of the real GainControl after the new AGC has been
// enabled in order to prevent an outside user from overriding compression
// settings. It doesn't do anything in its implementation, except for
// delegating the const methods and Enable calls to the real GainControl, so
// AGC can still be disabled.
//
// 2) It is injected into AgcManagerDirect and implements volume callbacks for
// getting and setting the volume level. It just caches this value to be used
// in VoiceEngine later.
class GainControlForExperimentalAgc : public GainControl,
public VolumeCallbacks {
public:
GainControlForExperimentalAgc(GainControl* gain_control,
rtc::CriticalSection* crit_capture);
~GainControlForExperimentalAgc() override;
// GainControl implementation.
int Enable(bool enable) override;
bool is_enabled() const override;
int set_stream_analog_level(int level) override;
int stream_analog_level() override;
int set_mode(Mode mode) override;
Mode mode() const override;
int set_target_level_dbfs(int level) override;
int target_level_dbfs() const override;
int set_compression_gain_db(int gain) override;
int compression_gain_db() const override;
int enable_limiter(bool enable) override;
bool is_limiter_enabled() const override;
int set_analog_level_limits(int minimum, int maximum) override;
int analog_level_minimum() const override;
int analog_level_maximum() const override;
bool stream_is_saturated() const override;
// VolumeCallbacks implementation.
void SetMicVolume(int volume) override;
int GetMicVolume() override;
void Initialize();
private:
std::unique_ptr<ApmDataDumper> data_dumper_;
GainControl* real_gain_control_;
int volume_;
rtc::CriticalSection* crit_capture_;
bool do_log_level_ = true;
static int instance_counter_;
RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(GainControlForExperimentalAgc);
};
} // namespace webrtc
#endif // MODULES_AUDIO_PROCESSING_GAIN_CONTROL_FOR_EXPERIMENTAL_AGC_H_
| [
"evilwolf125@163.com"
] | evilwolf125@163.com |
cb5e4f010b89acebd939d237d2503594d9f71147 | fb0370b675eb6cce3432de4e35a8577cc3692dc9 | /UVA/1152/14535866_AC_4450ms_0kB.cpp | ccf83d5aa88cd9aae016767538f0bba4234649ce | [] | no_license | qq734628996/ac-code | 752b84911b5814d233ca1a3a9f65895acff8e678 | 9306d4c2db8d845dc5c5a1f6be723dbf6e0aae53 | refs/heads/master | 2021-08-18T11:05:00.311669 | 2020-05-29T14:08:38 | 2020-05-29T14:08:38 | 188,193,391 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,356 | cpp | #include <bits/stdc++.h>
using namespace std;
#define REP(i,n) for(int i = 0; i < n; i++)
#define FOR(i,l,r) for(int i = l; i <= r; i++)
#define TR(e,x) for(auto e = x.begin(); e != x.end(); e++)
#define DEBUG(x) cout << #x << "=" << x << endl;
#define SHOW1(A,n) { REP(i,n-1) printf("%d ", A[i]); printf("%d\n", A[n-1]); }
#define SHOW2(A,m,n) { REP(i,m) { REP(j,n-1) printf("%d ", A[i][j]); printf("%d\n", A[i][n-1]); } }
#define PB push_back
#define ALL(x) x.begin(),x.end()
#define SZ(x) (int)((x).size())
typedef long long LL;
typedef pair<int, int> pii;
const int MAXN = 4e3+5, INF = ~0U>>1, MOD = ~0U>>1;
int T, n, kase;
LL a[MAXN][4];
unordered_map<LL, int> mp;
int main()
{
#ifdef LOCAL
freopen("i.txt", "r", stdin);
//freopen("o.txt", "w", stdout);
#endif //LOCAL
scanf("%d", &T);
while (T--) {
if (kase++) puts("");
scanf("%d", &n);
REP(i,n)REP(j,4) scanf("%lld", &a[i][j]);
mp.clear();
REP(i,n)REP(j,n) {
LL x = a[i][0]+a[j][1];
if (mp.count(x)) mp[x]++;
else mp[x] = 1;
}
int ans = 0;
REP(i,n)REP(j,n) {
LL x = -a[i][2]-a[j][3];
if (mp.count(x)) ans += mp[x];
}
printf("%d\n", ans);
}
return 0;
}
| [
"734628996@qq.com"
] | 734628996@qq.com |
17af6f9f1c7aeee22c4adeb1104a237e26a41864 | cf4ed97d519efcc5329a48b331a2f41a99d067e9 | /3th-semester/sdp/examples/graph/bfs.cpp | d049974b08a4a73fe0dd1c4e984815e94ba5d151 | [] | no_license | tborisova/homeworks | 6a186420f036ab175231e97d6c01021d7e2b7ce5 | dc08d7b360b1337ece567deae66ad265fd83dd3e | refs/heads/master | 2021-03-27T15:41:32.735565 | 2020-05-17T15:43:59 | 2020-05-17T15:43:59 | 25,862,294 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 573 | cpp | template <typename T>
void BFS(const T& a, graph<T> g, LList<T> l){
queue<T> q;
q.push(a);
l.toEnd(a);
while(!q.empty()){
q.pop(x);
cout << x << endl;
elem_link1<T>* p = g.point(x);
p = p->link;
while(p){
if(!member(p->inf, l)){
q.push(p->inf);
l.toEnd(p->inf);
}
p = p->link;
}
}
}
template <typename T>
void fullBFS(graph<T>& g){
LList<T> v = g.vertexes(), l, h = v;
while(!h.empty()){
h.iterStart();
elem_link1<T> *p = h.iter();
BFS(p->inf, g, l);
h = differenceSets(v, l);
}
} | [
"ts.borisova3@gmail.com"
] | ts.borisova3@gmail.com |
81e63cbc27837e9d885530287b51fd27206b8e1d | 724b535ea82e5d489b8581716a428877261e70eb | /tensorflow/compiler/xla/service/hlo_evaluator_test.cc | fcba9f815d21c976a4fa65deb2826e4814594d44 | [
"Apache-2.0"
] | permissive | penguin219/tensorflow | fc039bbc4ecaa992de7fe5f7a15449b8139b15f2 | 2717bde837d0a3d75f5e0eda7cb388bd86dc710e | refs/heads/master | 2020-04-12T22:25:21.726598 | 2018-12-22T13:31:00 | 2018-12-22T13:31:00 | 162,789,250 | 0 | 0 | Apache-2.0 | 2018-12-22T06:59:00 | 2018-12-22T06:58:59 | null | UTF-8 | C++ | false | false | 100,272 | cc | /* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/compiler/xla/service/hlo_evaluator.h"
#include <initializer_list>
#include <memory>
#include <string>
#include <tuple>
#include <utility>
#include <vector>
#include "absl/memory/memory.h"
#include "absl/strings/str_format.h"
#include "tensorflow/compiler/xla/client/xla_builder.h"
#include "tensorflow/compiler/xla/literal.h"
#include "tensorflow/compiler/xla/reference_util.h"
#include "tensorflow/compiler/xla/service/hlo_computation.h"
#include "tensorflow/compiler/xla/service/hlo_element_type_converter.h"
#include "tensorflow/compiler/xla/service/hlo_instruction.h"
#include "tensorflow/compiler/xla/shape_util.h"
#include "tensorflow/compiler/xla/status.h"
#include "tensorflow/compiler/xla/status_macros.h"
#include "tensorflow/compiler/xla/statusor.h"
#include "tensorflow/compiler/xla/test.h"
#include "tensorflow/compiler/xla/tests/hlo_test_base.h"
#include "tensorflow/compiler/xla/tests/literal_test_util.h"
#include "tensorflow/compiler/xla/tests/test_utils.h"
#include "tensorflow/compiler/xla/types.h"
#include "tensorflow/compiler/xla/util.h"
#include "tensorflow/compiler/xla/xla_data.pb.h"
#include "tensorflow/core/lib/core/status.h"
#include "tensorflow/core/lib/core/status_test_util.h"
#include "tensorflow/core/platform/test.h"
#include "tensorflow/core/platform/test_benchmark.h"
#include "tensorflow/core/platform/types.h"
namespace xla {
namespace {
static std::array<bool, 2> use_bf16_params{true, false};
class HloEvaluatorTest : public ::testing::WithParamInterface<bool>,
public HloTestBase {
protected:
HloEvaluatorTest() : HloTestBase(), use_bfloat16_(GetParam()) {
evaluator_ = absl::make_unique<HloEvaluator>();
}
Literal Evaluate(absl::Span<const Literal* const> arg_literals = {}) {
if (use_bfloat16_) {
// In BF16 mode, we convert all F32 type to BF16 and evaluate the module.
auto type_converter = HloElementTypeConverter(F32, BF16);
type_converter.Run(m_.get()).ValueOrDie();
}
return evaluator_->Evaluate(*m_->entry_computation(), arg_literals)
.ConsumeValueOrDie();
}
// Evaluate function that takes in a local module instead of using m_
// that is in HloTestBase. Once m_ in HloTestBase is
// removed, this should be the default Evaluate function.
Literal EvaluateWithModule(
HloModule* module, absl::Span<const Literal* const> arg_literals = {}) {
if (use_bfloat16_) {
// In BF16 mode, we convert all F32 type to BF16 and evaluate the module.
auto type_converter = HloElementTypeConverter(F32, BF16);
type_converter.Run(module).ValueOrDie();
}
return evaluator_->Evaluate(*module->entry_computation(), arg_literals)
.ConsumeValueOrDie();
}
std::unique_ptr<HloEvaluator> evaluator_;
void TestUnaryOp(HloOpcode opcode, Literal expected, Literal input,
float aabs = 0) {
HloComputation::Builder b(TestName());
auto c1 =
b.AddInstruction(HloInstruction::CreateConstant(std::move(input)));
b.AddInstruction(HloInstruction::CreateUnary(expected.shape(), opcode, c1));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
auto element_type = expected.shape().element_type();
if (element_type == F32 || element_type == F64) {
ErrorSpec error(aabs);
EXPECT_TRUE(LiteralTestUtil::Near(expected, result, error));
} else {
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
}
void TestBinaryOp(HloOpcode opcode, Literal expected, Literal lhs,
Literal rhs) {
HloComputation::Builder b(TestName());
auto c1 = b.AddInstruction(HloInstruction::CreateConstant(std::move(lhs)));
auto c2 = b.AddInstruction(HloInstruction::CreateConstant(std::move(rhs)));
b.AddInstruction(
HloInstruction::CreateBinary(expected.shape(), opcode, c1, c2));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
bool use_bfloat16_;
std::unique_ptr<HloModule> m_ = CreateNewVerifiedModule();
};
#define XLA_TYPED_TEST_P(test_case_name, test_name, test_type1) \
TEST_P(test_case_name, test_name)
// Verifies that HloEvaluator evaluates a HLO instruction that performs clamp
// with 3 operands.
TEST_P(HloEvaluatorTest, DoesClamp) {
auto low = LiteralUtil::CreateR2<float>({{0.f, 2.f}, {2.f, 4.f}});
auto value = LiteralUtil::CreateR2<float>({{0.f, 5.f}, {0.f, 4.f}});
auto high = LiteralUtil::CreateR2<float>({{2.f, 4.f}, {4.f, 4.f}});
Shape shape = low.shape();
HloComputation::Builder b(TestName());
auto c1 = b.AddInstruction(HloInstruction::CreateConstant(std::move(low)));
auto c2 = b.AddInstruction(HloInstruction::CreateConstant(std::move(value)));
auto c3 = b.AddInstruction(HloInstruction::CreateConstant(std::move(high)));
b.AddInstruction(
HloInstruction::CreateTernary(shape, HloOpcode::kClamp, c1, c2, c3));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
auto expected = LiteralUtil::CreateR2<float>({{0, 4}, {2, 4}});
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, DISABLED_DoesClampSpecialBroadcast) {
auto low = LiteralUtil::CreateR0<float>(0.f);
auto value = LiteralUtil::CreateR2<float>({{-1.f, 0.f}, {1.f, 2.f}});
auto high = LiteralUtil::CreateR0<float>(1.f);
Shape shape = value.shape();
HloComputation::Builder b(TestName());
auto c1 = b.AddInstruction(HloInstruction::CreateConstant(std::move(low)));
auto c2 = b.AddInstruction(HloInstruction::CreateConstant(std::move(value)));
auto c3 = b.AddInstruction(HloInstruction::CreateConstant(std::move(high)));
b.AddInstruction(
HloInstruction::CreateTernary(shape, HloOpcode::kClamp, c1, c2, c3));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
auto expected = LiteralUtil::CreateR2<float>({{0, 0}, {1, 1}});
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
// Verifies that HloEvaluator evaluates a HLO instruction that performs select
// with 3 operands.
TEST_P(HloEvaluatorTest, DoesSelect) {
auto pred = LiteralUtil::CreateR2<bool>({{true, false}, {false, true}});
auto on_true = LiteralUtil::CreateR2<float>({{2.f, 4.f}, {4.f, 4.f}});
auto on_false = LiteralUtil::CreateR2<float>({{0.f, 5.f}, {0.f, 4.f}});
Shape shape = on_true.shape();
HloComputation::Builder b(TestName());
auto c1 = b.AddInstruction(HloInstruction::CreateConstant(std::move(pred)));
auto c2 =
b.AddInstruction(HloInstruction::CreateConstant(std::move(on_true)));
auto c3 =
b.AddInstruction(HloInstruction::CreateConstant(std::move(on_false)));
b.AddInstruction(
HloInstruction::CreateTernary(shape, HloOpcode::kSelect, c1, c2, c3));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate({});
auto expected = LiteralUtil::CreateR2<float>({{2, 5}, {0, 4}});
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
// Verifies that HloEvaluator evaluates a HLO instruction that performs
// element-wise addition with 2 operands.
TEST_P(HloEvaluatorTest, DoesAdd) {
auto lhs = LiteralUtil::CreateR2<int64>({{1, 0}, {-100, 4}});
auto rhs = LiteralUtil::CreateR2<int64>({{2, 4}, {4, 4}});
auto expected = LiteralUtil::CreateR2<int64>({{3, 4}, {-96, 8}});
TestBinaryOp(HloOpcode::kAdd, std::move(expected), std::move(lhs),
std::move(rhs));
}
// Verifies that HloEvaluator evaluates a HLO instruction that performs
// element-wise and with 2 operands.
TEST_P(HloEvaluatorTest, DoesAnd) {
auto lhs = LiteralUtil::CreateR2<int64>({{1, 0}, {-100, 4}});
auto rhs = LiteralUtil::CreateR2<int64>({{2, 4}, {4, 4}});
auto expected = LiteralUtil::CreateR2<int64>({{0, 0}, {4, 4}});
TestBinaryOp(HloOpcode::kAnd, std::move(expected), std::move(lhs),
std::move(rhs));
}
// Verifies that HloEvaluator evaluates a HLO instruction that performs
// element-wise or with 2 operands.
TEST_P(HloEvaluatorTest, DoesOr) {
auto lhs = LiteralUtil::CreateR2<int64>({{1, 0}, {-100, 4}});
auto rhs = LiteralUtil::CreateR2<int64>({{2, 4}, {4, 4}});
auto expected = LiteralUtil::CreateR2<int64>({{3, 4}, {-100, 4}});
TestBinaryOp(HloOpcode::kOr, std::move(expected), std::move(lhs),
std::move(rhs));
}
// Verifies that HloEvaluator evaluates a HLO instruction that performs
// element-wise or with 2 operands.
TEST_P(HloEvaluatorTest, DoesXor) {
auto lhs = LiteralUtil::CreateR2<int64>({{1, 0}, {-100, 4}});
auto rhs = LiteralUtil::CreateR2<int64>({{2, 4}, {4, 4}});
auto expected = LiteralUtil::CreateR2<int64>({{3, 4}, {-104, 0}});
TestBinaryOp(HloOpcode::kXor, std::move(expected), std::move(lhs),
std::move(rhs));
}
// Verifies that HloEvaluator evaluates a HLO instruction that performs
// element-wise multiply with 2 operands.
TEST_P(HloEvaluatorTest, DoesMultiply) {
auto lhs = LiteralUtil::CreateR2<int32>({{-1, 0}, {-100, 4}});
auto rhs = LiteralUtil::CreateR2<int32>(
{{std::numeric_limits<int32>::min(), 4}, {4, 4}});
auto expected = LiteralUtil::CreateR2<int32>(
{{std::numeric_limits<int32>::min(), 0}, {-400, 16}});
TestBinaryOp(HloOpcode::kMultiply, std::move(expected), std::move(lhs),
std::move(rhs));
}
// Verifies that HloEvaluator evaluates a HLO instruction that performs
// element-wise divide with 2 operands.
TEST_P(HloEvaluatorTest, DoesDivideInt64) {
auto lhs = LiteralUtil::CreateR2<int64>({{1, 0}, {-100, 4}});
auto rhs = LiteralUtil::CreateR2<int64>({{2, 4}, {4, 4}});
auto expected = LiteralUtil::CreateR2<int64>({{0, 0}, {-25, 1}});
TestBinaryOp(HloOpcode::kDivide, std::move(expected), std::move(lhs),
std::move(rhs));
}
TEST_P(HloEvaluatorTest, DoesDivideDouble) {
auto lhs = LiteralUtil::CreateR2<double>({{1.0, 0.0}, {-100.0, 4.0}});
auto rhs = LiteralUtil::CreateR2<double>({{2.2, 4.0}, {4.0, 4.0}});
auto expected =
LiteralUtil::CreateR2<double>({{0.45454545454545453, 0}, {-25, 1}});
TestBinaryOp(HloOpcode::kDivide, std::move(expected), std::move(lhs),
std::move(rhs));
}
// Verifies that HloEvaluator evaluates a HLO instruction that performs
// element-wise abs op with 1 operand.
TEST_P(HloEvaluatorTest, DoesAbsR2) {
auto operand = LiteralUtil::CreateR2<int64>({{1, -20}, {-100, 4}});
auto expected = LiteralUtil::CreateR2<int64>({{1, 20}, {100, 4}});
TestUnaryOp(HloOpcode::kAbs, std::move(expected), std::move(operand));
}
TEST_P(HloEvaluatorTest, DoesAbsR0) {
auto operand = LiteralUtil::CreateR0<float>(-1.0f);
auto expected = LiteralUtil::CreateR0<float>(1.0f);
TestUnaryOp(HloOpcode::kAbs, std::move(expected), std::move(operand));
}
TEST_P(HloEvaluatorTest, DoesAbsR1WithZeroSize) {
auto operand = LiteralUtil::CreateR1<float>({});
auto expected = LiteralUtil::CreateR1<float>({});
TestUnaryOp(HloOpcode::kAbs, std::move(expected), std::move(operand));
}
TEST_P(HloEvaluatorTest, DoesNegateR2) {
auto operand = LiteralUtil::CreateR2<int32>(
{{0, std::numeric_limits<int32>::min()}, {-1, 4}});
auto expected = LiteralUtil::CreateR2<int32>(
{{0, std::numeric_limits<int>::min()}, {1, -4}});
TestUnaryOp(HloOpcode::kNegate, std::move(expected), std::move(operand));
}
TEST_P(HloEvaluatorTest, DoesCosR2) {
auto operand = LiteralUtil::CreateR2<float>({{0, M_PI}, {-M_PI, 2 * M_PI}});
auto expected = LiteralUtil::CreateR2<float>({{1, -1}, {-1, 1}});
TestUnaryOp(HloOpcode::kCos, std::move(expected), std::move(operand),
use_bfloat16_ ? 0.031250 : 9.5367431640625E-7);
}
TEST_P(HloEvaluatorTest, DoesSinR2) {
auto operand = LiteralUtil::CreateR2<float>({{0, M_PI}, {-M_PI, 2 * M_PI}});
auto expected = LiteralUtil::CreateR2<float>({{0, 0}, {0, 0}});
TestUnaryOp(HloOpcode::kSin, std::move(expected), std::move(operand),
use_bfloat16_ ? 0.031250 : 9.5367431640625E-7);
}
TEST_P(HloEvaluatorTest, DoesNotR2) {
auto operand =
LiteralUtil::CreateR2<int32>({{0, std::numeric_limits<int>::min()},
{-1, std::numeric_limits<int>::max()}});
auto expected =
LiteralUtil::CreateR2<int32>({{-1, std::numeric_limits<int>::max()},
{0, std::numeric_limits<int>::min()}});
TestUnaryOp(HloOpcode::kNot, std::move(expected), std::move(operand));
}
// Verifies that HloEvaluator evaluates a HLO Computation with non-parameter nor
// constant operands.
TEST_P(HloEvaluatorTest, DoesTraverseInstructions) {
auto lhs = LiteralUtil::CreateR2<int64>({{1, 0}, {-100, 4}});
auto rhs = LiteralUtil::CreateR2<int64>({{2, 4}, {4, 4}});
auto rhs2 = LiteralUtil::CreateR2<int64>({{1, -20}, {-100, 4}});
std::vector<const Literal*> args = {&lhs, &rhs, &rhs2};
Shape shape = ShapeUtil::MakeShape(S64, {2, 2});
HloComputation::Builder b(TestName());
auto param_lhs =
b.AddInstruction(HloInstruction::CreateParameter(0, shape, "lhs"));
auto param_rhs =
b.AddInstruction(HloInstruction::CreateParameter(1, shape, "rhs"));
auto lhs_instruction = b.AddInstruction(HloInstruction::CreateBinary(
shape, HloOpcode::kAdd, param_lhs, param_rhs));
auto param_rhs2 =
b.AddInstruction(HloInstruction::CreateParameter(2, shape, "rhs2"));
b.AddInstruction(HloInstruction::CreateBinary(shape, HloOpcode::kAdd,
lhs_instruction, param_rhs2));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate(args);
auto expected = LiteralUtil::CreateR2<int64>({{4, -16}, {-196, 12}});
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
// Verifies Reshape operation is correctly evaluated.
TEST_P(HloEvaluatorTest, DoesReshape) {
HloComputation::Builder b(TestName());
const int64 dimensions[] = {11, 8, 7, 5, 9};
TF_ASSERT_OK_AND_ASSIGN(auto literal,
LiteralUtil::CreateRandomLiteral<F32>(
ShapeUtil::MakeShape(F32, dimensions), 0.0, 1.0));
auto literal_clone = literal.Clone();
HloInstruction* literal_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(literal)));
Shape shape = ShapeUtil::MakeShape(F32, {8, 7, 11, 9, 5});
const int64 permutation[] = {1, 2, 0, 4, 3};
b.AddInstruction(
HloInstruction::CreateTranspose(shape, literal_instruction, permutation));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate({});
using NativeT = typename primitive_util::PrimitiveTypeToNative<F32>::type;
result.EachCell<NativeT>([&](absl::Span<const int64> indices, NativeT value) {
std::vector<int64> rindexes = Permute(permutation, indices);
EXPECT_NEAR(value, literal_clone.Get<NativeT>(rindexes), 0.031250);
});
}
// Verifies Broadcast operation is correctly evaluated.
TEST_P(HloEvaluatorTest, DoesBroadcast) {
HloComputation::Builder b(TestName());
auto input_literal = LiteralUtil::CreateR2<int32>({{1, 2}, {3, 4}, {5, 6}});
auto output_literal = LiteralUtil::CreateR3<int32>(
{{{1, 2}, {3, 4}, {5, 6}}, {{1, 2}, {3, 4}, {5, 6}}});
HloInstruction* literal_instruction = b.AddInstruction(
HloInstruction::CreateConstant(std::move(input_literal)));
b.AddInstruction(HloInstruction::CreateBroadcast(
output_literal.shape(), literal_instruction, {1, 2}));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate({});
EXPECT_TRUE(LiteralTestUtil::Equal(result, output_literal));
}
TEST_P(HloEvaluatorTest, DoesBroadcastScalar) {
HloComputation::Builder b(TestName());
auto input_literal = LiteralUtil::CreateR0<int32>(111);
auto output_literal = LiteralUtil::CreateR2<int32>(
{{111, 111}, {111, 111}, {111, 111}, {111, 111}, {111, 111}, {111, 111}});
HloInstruction* literal_instruction = b.AddInstruction(
HloInstruction::CreateConstant(std::move(input_literal)));
// Broadcast dimension should be empty in the case of scalars.
b.AddInstruction(HloInstruction::CreateBroadcast(
output_literal.shape(), literal_instruction,
/*broadcast_dimensions=*/{}));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate({});
EXPECT_TRUE(LiteralTestUtil::Equal(result, output_literal));
}
TEST_P(HloEvaluatorTest, DoesConcatenateSimple) {
HloComputation::Builder b(TestName());
HloInstruction* operand1 = b.AddInstruction(HloInstruction::CreateConstant(
LiteralUtil::CreateR2<int64>({{-1, -2}, {100, 200}})));
HloInstruction* operand2 = b.AddInstruction(HloInstruction::CreateConstant(
LiteralUtil::CreateR2<int64>({{-2, -3}, {-100, -200}})));
std::vector<HloInstruction*> operands = {operand1, operand2};
Shape shape = ShapeUtil::MakeShape(S64, {4, 2});
b.AddInstruction(HloInstruction::CreateConcatenate(shape, operands, 0));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
auto expected = LiteralUtil::CreateR2<int64>(
{{-1, -2}, {100, 200}, {-2, -3}, {-100, -200}});
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, ConcatenateHandlesShapeWithZeroElement) {
HloComputation::Builder b(TestName());
HloInstruction* operand1 = b.AddInstruction(
HloInstruction::CreateConstant(LiteralUtil::CreateR1<int64>({100, 200})));
HloInstruction* operand2 = b.AddInstruction(
HloInstruction::CreateConstant(LiteralUtil::CreateR1<int64>({})));
std::vector<HloInstruction*> operands = {operand1, operand2};
Shape shape = ShapeUtil::MakeShape(S64, {2});
b.AddInstruction(HloInstruction::CreateConcatenate(shape, operands, 0));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
auto expected = LiteralUtil::CreateR1<int64>({100, 200});
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, ConvertWithSameLayout) {
HloComputation::Builder b(TestName());
auto input_literal = LiteralUtil::CreateR2<int32>({{1, 2}, {3, 4}, {5, 6}});
auto expected =
LiteralUtil::CreateR2<float>({{1.0, 2.0}, {3.0, 4.0}, {5.0, 6.0}});
ASSERT_TRUE(LayoutUtil::LayoutsInShapesEqual(input_literal.shape(),
expected.shape()));
HloInstruction* constant = b.AddInstruction(
HloInstruction::CreateConstant(std::move(input_literal)));
b.AddInstruction(HloInstruction::CreateConvert(expected.shape(), constant));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
EXPECT_TRUE(LiteralTestUtil::Equal(result, expected));
}
TEST_P(HloEvaluatorTest, ConvertWithDifferentLayout) {
HloComputation::Builder b(TestName());
auto input_literal = LiteralUtil::CreateR2WithLayout<int32>(
{{1, 2}, {3, 4}, {5, 6}}, LayoutUtil::MakeLayout({0, 1}));
auto expected = LiteralUtil::CreateR2WithLayout<float>(
{{1.0, 2.0}, {3.0, 4.0}, {5.0, 6.0}}, LayoutUtil::MakeLayout({1, 0}));
ASSERT_FALSE(LayoutUtil::LayoutsInShapesEqual(input_literal.shape(),
expected.shape()));
HloInstruction* constant = b.AddInstruction(
HloInstruction::CreateConstant(std::move(input_literal)));
b.AddInstruction(HloInstruction::CreateConvert(expected.shape(), constant));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
EXPECT_TRUE(LiteralTestUtil::Equal(result, expected));
}
PaddingConfig CreatePaddingConfig(
std::initializer_list<std::array<int64, 3>> padding_dimensions) {
PaddingConfig padding_config;
for (auto& paddings_per_dim : padding_dimensions) {
auto dimension = padding_config.add_dimensions();
dimension->set_edge_padding_low(paddings_per_dim[0]);
dimension->set_edge_padding_high(paddings_per_dim[1]);
dimension->set_interior_padding(paddings_per_dim[2]);
}
return padding_config;
}
TEST_P(HloEvaluatorTest, Pad2DIntegerArrayWithZeroDimension) {
auto operand = LiteralUtil::CreateR2<int32>({{}, {}});
HloComputation::Builder b(TestName());
auto operand_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(operand)));
constexpr int32 kPadValue = 10;
auto pad_value = LiteralUtil::CreateR0<int32>(kPadValue);
auto padding_value_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(pad_value)));
auto padding_config = CreatePaddingConfig({{{1, 0, 2}}, {{0, 2, 1}}});
Shape shape = ShapeUtil::MakeShape(S32, {5, 2});
b.AddInstruction(HloInstruction::CreatePad(
shape, operand_instruction, padding_value_instruction, padding_config));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
auto expected = LiteralUtil::CreateR2<int32>(
{{10, 10}, {10, 10}, {10, 10}, {10, 10}, {10, 10}});
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, Pad4DFloatArrayWithInteriorPadding) {
HloComputation::Builder b(TestName());
Array4D<float> input_array(3, 2, 1, 1, {1, 2, 3, 4, 5, 6});
auto input = LiteralUtil::CreateR4FromArray4D<float>(input_array);
HloInstruction* input_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(input)));
constexpr float kPadValue = 1.5;
auto pad_value = LiteralUtil::CreateR0<float>(kPadValue);
HloInstruction* pad_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(pad_value)));
Shape shape = ShapeUtil::MakeShape(F32, {8, 5, 1, 1});
auto r4_padding_on_dim0_dim1 =
CreatePaddingConfig({{{1, 0, 2}}, {{0, 2, 1}}, {{0, 0, 0}}, {{0, 0, 0}}});
b.AddInstruction(HloInstruction::CreatePad(
shape, input_instruction, pad_instruction, r4_padding_on_dim0_dim1));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
auto expected_array = absl::make_unique<Array4D<float>>(8, 5, 1, 1);
expected_array->Fill(kPadValue);
(*expected_array)(1, 0, 0, 0) = 1.0f;
(*expected_array)(1, 2, 0, 0) = 2.0f;
(*expected_array)(4, 0, 0, 0) = 3.0f;
(*expected_array)(4, 2, 0, 0) = 4.0f;
(*expected_array)(7, 0, 0, 0) = 5.0f;
(*expected_array)(7, 2, 0, 0) = 6.0f;
auto expected = LiteralUtil::CreateR4FromArray4D<float>(*expected_array);
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, NegativePadding2D) {
HloComputation::Builder b(TestName());
// input_array:
// f32[4,3] {
// { 1, 2, 3 },
// { 5, 6, 7 },
// { 9, 10, 11 },
// { 13, 14, 15 },
// }
auto input_array = absl::make_unique<Array2D<float>>(4, 3);
input_array->FillUnique(1.0f);
auto input = LiteralUtil::CreateR2FromArray2D<float>(*input_array);
HloInstruction* input_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(input)));
auto pad_value_instruction = b.AddInstruction(
HloInstruction::CreateConstant(LiteralUtil::CreateR0<float>(2.718f)));
auto r2_padding_on_dim0_dim1 =
CreatePaddingConfig({{{-1, -2, 0}}, {{-2, 4, 0}}});
Shape shape = ShapeUtil::MakeShape(F32, {1, 5});
b.AddInstruction(HloInstruction::CreatePad(shape, input_instruction,
pad_value_instruction,
r2_padding_on_dim0_dim1));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
// f32[1,5] { 7.0, 2.718, 2.718, 2.718, 2.718 }
auto expected_array = absl::make_unique<Array2D<float>>(1, 5);
(*expected_array)(0, 0) = 7.0f;
(*expected_array)(0, 1) = 2.718f;
(*expected_array)(0, 2) = 2.718f;
(*expected_array)(0, 3) = 2.718f;
(*expected_array)(0, 4) = 2.718f;
auto expected = LiteralUtil::CreateR2FromArray2D<float>(*expected_array);
EXPECT_TRUE(LiteralTestUtil::Near(expected, result, ErrorSpec(0.031250)));
}
TEST_P(HloEvaluatorTest, NegativeAndInteriorPadding2D) {
HloComputation::Builder b(TestName());
// f32[4,3] {
// { 1, 2, 3 },
// { 5, 6, 7 },
// { 9, 10, 11 },
// { 13, 14, 15 },
// }
auto input_array = absl::make_unique<Array2D<float>>(4, 3);
input_array->FillUnique(1.0f);
auto input = LiteralUtil::CreateR2FromArray2D<float>(*input_array);
HloInstruction* input_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(input)));
auto pad_value_instruction = b.AddInstruction(
HloInstruction::CreateConstant(LiteralUtil::CreateR0<float>(2.718f)));
PaddingConfig padding_config = MakeNoPaddingConfig(2);
// Negative padding that results in zero dimensions.
auto r2_padding_on_dim0_dim1 =
CreatePaddingConfig({{{-2, -5, 1}}, {{-2, 4, 2}}});
Shape shape = ShapeUtil::MakeShape(F32, {0, 9});
b.AddInstruction(HloInstruction::CreatePad(shape, input_instruction,
pad_value_instruction,
r2_padding_on_dim0_dim1));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
auto expected_array = absl::make_unique<Array2D<float>>(0, 9);
auto expected = LiteralUtil::CreateR2FromArray2D<float>(*expected_array);
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, DotRank2AndRank1) {
HloComputation::Builder b(TestName());
// lhs:
// f32[4,1] {
// { 1 },
// { 2 },
// { 3 },
// { 4 },
// }
auto lhs_array = absl::make_unique<Array2D<float>>(4, 1);
lhs_array->FillUnique(1.0f);
auto lhs_literal = LiteralUtil::CreateR2FromArray2D<float>(*lhs_array);
HloInstruction* lhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(lhs_literal)));
// rhs:
// f32[2] { 1, 2 },
auto rhs_literal = LiteralUtil::CreateR2<float>({{1, 2}});
HloInstruction* rhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(rhs_literal)));
Shape shape = ShapeUtil::MakeShape(F32, {4, 2});
DotDimensionNumbers dot_dnums;
dot_dnums.add_lhs_contracting_dimensions(1);
dot_dnums.add_rhs_contracting_dimensions(0);
b.AddInstruction(HloInstruction::CreateDot(shape, lhs_instruction,
rhs_instruction, dot_dnums,
DefaultPrecisionConfig(2)));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
// clang-format off
auto expected_array = Array2D<float>({
{1.f, 2.f},
{2.f, 4.f},
{3.f, 6.f},
{4.f, 8.f},
});
// clang-format on
auto expected = LiteralUtil::CreateR2FromArray2D<float>(expected_array);
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, DotRank1AndRank2) {
HloComputation::Builder b(TestName());
// lhs:
// f32[3]
// { 1, 2, 3 },
auto lhs_literal = LiteralUtil::CreateR1<float>({1, 2, 3});
HloInstruction* lhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(lhs_literal)));
// rhs:
// f32[3,2] {
// { 1, 2 },
// { 3, 4 },
// { 5, 6 },
// }
auto rhs_array = absl::make_unique<Array2D<float>>(3, 2);
rhs_array->FillUnique(1.0f);
auto rhs_literal = LiteralUtil::CreateR2FromArray2D<float>(*rhs_array);
HloInstruction* rhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(rhs_literal)));
Shape shape = ShapeUtil::MakeShape(F32, {2});
DotDimensionNumbers dot_dnums;
dot_dnums.add_lhs_contracting_dimensions(0);
dot_dnums.add_rhs_contracting_dimensions(0);
b.AddInstruction(HloInstruction::CreateDot(shape, lhs_instruction,
rhs_instruction, dot_dnums,
DefaultPrecisionConfig(2)));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
auto expected = LiteralUtil::CreateR1<float>({22.f, 28.f});
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, DotRank2AndRank2) {
HloComputation::Builder b(TestName());
// lhs:
// f32[4,3] {
// { 1, 2, 3 },
// { 5, 6, 7 },
// { 9, 10, 11 },
// { 13, 14, 15 },
// }
auto lhs_array = absl::make_unique<Array2D<float>>(4, 3);
lhs_array->FillUnique(1.0f);
auto lhs_literal = LiteralUtil::CreateR2FromArray2D<float>(*lhs_array);
HloInstruction* lhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(lhs_literal)));
// rhs:
// f32[3,2] {
// { 1, 2 },
// { 3, 4 },
// { 5, 6 },
// }
auto rhs_array = absl::make_unique<Array2D<float>>(3, 2);
rhs_array->FillUnique(1.0f);
auto rhs_literal = LiteralUtil::CreateR2FromArray2D<float>(*rhs_array);
HloInstruction* rhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(rhs_literal)));
Shape shape = ShapeUtil::MakeShape(F32, {4, 2});
DotDimensionNumbers dot_dnums;
dot_dnums.add_lhs_contracting_dimensions(1);
dot_dnums.add_rhs_contracting_dimensions(0);
b.AddInstruction(HloInstruction::CreateDot(shape, lhs_instruction,
rhs_instruction, dot_dnums,
DefaultPrecisionConfig(2)));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
auto expected_array = Array2D<float>({
{22.f, 28.f},
{58.f, 76.f},
{94.f, 124.f},
{130.f, 172.f},
});
auto expected = LiteralUtil::CreateR2FromArray2D<float>(expected_array);
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, SimpleConv1D) {
HloComputation::Builder b(TestName());
Array3D<float> lhs_array = {{{1, 2, 3}}};
auto lhs_literal = LiteralUtil::CreateR3FromArray3D<float>(lhs_array);
HloInstruction* lhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(lhs_literal)));
Array3D<float> rhs_array = {{{3.f, 4.f}}};
auto rhs_literal = LiteralUtil::CreateR3FromArray3D<float>(rhs_array);
HloInstruction* rhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(rhs_literal)));
Window window;
WindowDimension dim;
dim.set_size(2);
dim.set_stride(1);
dim.set_padding_low(0);
dim.set_padding_high(1);
dim.set_window_dilation(1);
dim.set_base_dilation(1);
*window.add_dimensions() = dim;
ConvolutionDimensionNumbers dnums;
dnums.set_input_batch_dimension(0);
dnums.set_output_batch_dimension(0);
dnums.set_input_feature_dimension(1);
dnums.set_output_feature_dimension(1);
dnums.add_input_spatial_dimensions(2);
dnums.add_output_spatial_dimensions(2);
dnums.set_kernel_output_feature_dimension(0);
dnums.set_kernel_input_feature_dimension(1);
dnums.add_kernel_spatial_dimensions(2);
Shape shape = ShapeUtil::MakeShape(F32, {1, 1, 3});
b.AddInstruction(HloInstruction::CreateConvolve(
shape, lhs_instruction, rhs_instruction, /*feature_group_count=*/1,
/*batch_group_count=*/1, window, dnums, DefaultPrecisionConfig(2)));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
Array3D<float> expected_array = {{{11.f, 18.f, 9.f}}};
auto expected = LiteralUtil::CreateR3FromArray3D<float>(expected_array);
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, Simple4x4Conv2DWith2x2Kernel) {
HloComputation::Builder b(TestName());
Array4D<float> lhs_array(1, 1, 4, 4);
// clang-format off
lhs_array.FillWithYX(Array2D<float>({
{1, 2, 3, 4 },
{5, 6, 7, 8 },
{9, 10, 11, 12},
{13, 14, 15, 16},
}));
// clang-format on
auto lhs_literal = LiteralUtil::CreateR4FromArray4D<float>(lhs_array);
HloInstruction* lhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(lhs_literal)));
Array4D<float> rhs_array(1, 1, 2, 2);
// clang-format off
rhs_array.FillWithYX(Array2D<float>({
{5, 6},
{7, 8},
}));
// clang-format on
auto rhs_literal = LiteralUtil::CreateR4FromArray4D<float>(rhs_array);
HloInstruction* rhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(rhs_literal)));
Window window;
WindowDimension dim;
dim.set_size(2);
dim.set_stride(1);
dim.set_padding_low(0);
dim.set_padding_high(1);
dim.set_window_dilation(1);
dim.set_base_dilation(1);
*window.add_dimensions() = dim;
*window.add_dimensions() = dim;
ConvolutionDimensionNumbers dnums =
XlaBuilder::CreateDefaultConvDimensionNumbers(2);
Shape shape = ShapeUtil::MakeShape(F32, {1, 1, 4, 4});
b.AddInstruction(HloInstruction::CreateConvolve(
shape, lhs_instruction, rhs_instruction, /*feature_group_count=*/1,
/*batch_group_count=*/1, window, dnums, DefaultPrecisionConfig(2)));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
Array4D<float> expected_array(1, 1, 4, 4);
// clang-format off
expected_array.FillWithYX(Array2D<float>({
{100, 126, 152, 76},
{204, 230, 256, 124},
{308, 334, 360, 172},
{149, 160, 171, 80},
}));
// clang-format on
auto expected = LiteralUtil::CreateR4FromArray4D<float>(expected_array);
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, Conv2DGeneralDimensionsReversed) {
HloComputation::Builder b(TestName());
// clang-format off
// Input dimensions: [feature=2, height=3, batch=1, width=4]
Array4D<float> input({
{{{1, 2, 3, 4}},
{{5, 6, 7, 8}},
{{9, 10, 11, 12}}},
{{{13, 14, 15, 16}},
{{17, 18, 19, 20}},
{{21, 22, 23, 24}}}
});
// Weight dimensions:
// [kernel_output_feature=1, width=3, kernel_input_feature=2, height=3]
Array4D<float> weight({{
{{1, 7, 13},
{4, 10, 16}},
{{2, 8, 14},
{5, 11, 17}},
{{3, 9, 15},
{6, 12, 18}}
}});
// clang-format on
auto lhs_literal = LiteralUtil::CreateR4FromArray4D<float>(input);
HloInstruction* lhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(lhs_literal)));
auto rhs_literal = LiteralUtil::CreateR4FromArray4D<float>(weight);
HloInstruction* rhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(rhs_literal)));
rhs_instruction = b.AddInstruction(HloInstruction::CreateReverse(
rhs_instruction->shape(), rhs_instruction, {3, 1}));
Window window;
WindowDimension dim;
dim.set_size(3);
dim.set_stride(1);
dim.set_padding_low(0);
dim.set_padding_high(0);
dim.set_window_dilation(1);
dim.set_base_dilation(1);
dim.set_window_reversal(true);
*window.add_dimensions() = dim;
*window.add_dimensions() = dim;
ConvolutionDimensionNumbers dnums;
dnums.set_input_batch_dimension(2);
dnums.set_output_batch_dimension(2);
dnums.set_input_feature_dimension(0);
dnums.set_output_feature_dimension(0);
dnums.add_input_spatial_dimensions(1);
dnums.add_output_spatial_dimensions(1);
dnums.add_input_spatial_dimensions(3);
dnums.add_output_spatial_dimensions(3);
dnums.set_kernel_output_feature_dimension(0);
dnums.set_kernel_input_feature_dimension(2);
dnums.add_kernel_spatial_dimensions(3);
dnums.add_kernel_spatial_dimensions(1);
Shape shape = ShapeUtil::MakeShape(F32, {1, 1, 1, 2});
b.AddInstruction(HloInstruction::CreateConvolve(
shape, lhs_instruction, rhs_instruction, /*feature_group_count=*/1,
/*batch_group_count=*/1, window, dnums, DefaultPrecisionConfig(2)));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
// clang-format off
// Result dimensions: [feature=1, height=1, batch=1, width=2]
Array4D<float> expected_array({{{{2514, 2685}}}});
Array4D<float> expected_array_bf16({{{{2512, 2688}}}});
// clang-format on
auto expected = LiteralUtil::CreateR4FromArray4D<float>(
use_bfloat16_ ? expected_array_bf16 : expected_array);
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, Conv2DGeneralDimensions) {
HloComputation::Builder b(TestName());
// clang-format off
// Input dimensions: [feature=2, height=3, batch=1, width=4]
Array4D<float> input({
{{{1, 2, 3, 4}},
{{5, 6, 7, 8}},
{{9, 10, 11, 12}}},
{{{13, 14, 15, 16}},
{{17, 18, 19, 20}},
{{21, 22, 23, 24}}}
});
// Weight dimensions:
// [kernel_output_feature=1, width=3, kernel_input_feature=2, height=3]
Array4D<float> weight({{
{{1, 7, 13},
{4, 10, 16}},
{{2, 8, 14},
{5, 11, 17}},
{{3, 9, 15},
{6, 12, 18}}
}});
// clang-format on
auto lhs_literal = LiteralUtil::CreateR4FromArray4D<float>(input);
HloInstruction* lhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(lhs_literal)));
auto rhs_literal = LiteralUtil::CreateR4FromArray4D<float>(weight);
HloInstruction* rhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(rhs_literal)));
Window window;
WindowDimension dim;
dim.set_size(3);
dim.set_stride(1);
dim.set_padding_low(0);
dim.set_padding_high(0);
dim.set_window_dilation(1);
dim.set_base_dilation(1);
*window.add_dimensions() = dim;
*window.add_dimensions() = dim;
ConvolutionDimensionNumbers dnums;
dnums.set_input_batch_dimension(2);
dnums.set_output_batch_dimension(2);
dnums.set_input_feature_dimension(0);
dnums.set_output_feature_dimension(0);
dnums.add_input_spatial_dimensions(1);
dnums.add_output_spatial_dimensions(1);
dnums.add_input_spatial_dimensions(3);
dnums.add_output_spatial_dimensions(3);
dnums.set_kernel_output_feature_dimension(0);
dnums.set_kernel_input_feature_dimension(2);
dnums.add_kernel_spatial_dimensions(3);
dnums.add_kernel_spatial_dimensions(1);
Shape shape = ShapeUtil::MakeShape(F32, {1, 1, 1, 2});
b.AddInstruction(HloInstruction::CreateConvolve(
shape, lhs_instruction, rhs_instruction, /*feature_group_count=*/1,
/*batch_group_count=*/1, window, dnums, DefaultPrecisionConfig(2)));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
// clang-format off
// Result dimensions: [feature=1, height=1, batch=1, width=2]
Array4D<float> expected_array({{{{2514, 2685}}}});
Array4D<float> expected_array_bf16({{{{2512, 2688}}}});
// clang-format on
auto expected = LiteralUtil::CreateR4FromArray4D<float>(
use_bfloat16_ ? expected_array_bf16 : expected_array);
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, DilatedBaseConv2DWithHighPadding) {
HloComputation::Builder b(TestName());
Array4D<float> lhs_array(1, 1, 4, 4);
// clang-format off
lhs_array.FillWithYX(Array2D<float>({
{1, 2, 3, 4 },
{5, 6, 7, 8 },
{9, 10, 11, 12},
{13, 14, 15, 16},
}));
// clang-format on
auto lhs_literal = LiteralUtil::CreateR4FromArray4D<float>(lhs_array);
HloInstruction* lhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(lhs_literal)));
Array4D<float> rhs_array(1, 1, 2, 2);
// clang-format off
rhs_array.FillWithYX(Array2D<float>({
{5, 6},
{7, 8},
}));
// clang-format on
auto rhs_literal = LiteralUtil::CreateR4FromArray4D<float>(rhs_array);
HloInstruction* rhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(rhs_literal)));
Window window;
WindowDimension dim;
dim.set_size(2);
dim.set_stride(1);
dim.set_padding_low(0);
dim.set_padding_high(1);
dim.set_window_dilation(1);
dim.set_base_dilation(2);
*window.add_dimensions() = dim;
*window.add_dimensions() = dim;
ConvolutionDimensionNumbers dnums =
XlaBuilder::CreateDefaultConvDimensionNumbers(2);
Shape shape = ShapeUtil::MakeShape(F32, {1, 1, 7, 7});
b.AddInstruction(HloInstruction::CreateConvolve(
shape, lhs_instruction, rhs_instruction, /*feature_group_count=*/1,
/*batch_group_count=*/1, window, dnums, DefaultPrecisionConfig(2)));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
Array4D<float> expected_array(1, 1, 7, 7);
expected_array.FillWithYX(Array2D<float>({
{5, 12, 10, 18, 15, 24, 20},
{35, 48, 42, 56, 49, 64, 56},
{25, 36, 30, 42, 35, 48, 40},
{63, 80, 70, 88, 77, 96, 84},
{45, 60, 50, 66, 55, 72, 60},
{91, 112, 98, 120, 105, 128, 112},
{65, 84, 70, 90, 75, 96, 80},
}));
auto expected = LiteralUtil::CreateR4FromArray4D<float>(expected_array);
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, DilatedBaseConv2DWithLowAndHighPadding) {
HloComputation::Builder b(TestName());
Array4D<float> lhs_array(1, 1, 4, 4);
// clang-format off
lhs_array.FillWithYX(Array2D<float>({
{1, 2, 3, 4 },
{5, 6, 7, 8 },
{9, 10, 11, 12},
{13, 14, 15, 16},
}));
// clang-format on
auto lhs_literal = LiteralUtil::CreateR4FromArray4D<float>(lhs_array);
HloInstruction* lhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(lhs_literal)));
Array4D<float> rhs_array(1, 1, 2, 2);
// clang-format off
rhs_array.FillWithYX(Array2D<float>({
{5, 6},
{7, 8},
}));
// clang-format on
auto rhs_literal = LiteralUtil::CreateR4FromArray4D<float>(rhs_array);
HloInstruction* rhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(rhs_literal)));
Window window;
WindowDimension dim;
dim.set_size(2);
dim.set_stride(1);
dim.set_padding_low(1);
dim.set_padding_high(1);
dim.set_window_dilation(1);
dim.set_base_dilation(2);
*window.add_dimensions() = dim;
*window.add_dimensions() = dim;
ConvolutionDimensionNumbers dnums =
XlaBuilder::CreateDefaultConvDimensionNumbers(2);
Shape shape = ShapeUtil::MakeShape(F32, {1, 1, 8, 8});
b.AddInstruction(HloInstruction::CreateConvolve(
shape, lhs_instruction, rhs_instruction, /*feature_group_count=*/1,
/*batch_group_count=*/1, window, dnums, DefaultPrecisionConfig(2)));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
Array4D<float> expected_array(1, 1, 8, 8);
expected_array.FillWithYX(Array2D<float>({
{8, 7, 16, 14, 24, 21, 32, 28},
{6, 5, 12, 10, 18, 15, 24, 20},
{40, 35, 48, 42, 56, 49, 64, 56},
{30, 25, 36, 30, 42, 35, 48, 40},
{72, 63, 80, 70, 88, 77, 96, 84},
{54, 45, 60, 50, 66, 55, 72, 60},
{104, 91, 112, 98, 120, 105, 128, 112},
{78, 65, 84, 70, 90, 75, 96, 80},
}));
auto expected = LiteralUtil::CreateR4FromArray4D<float>(expected_array);
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest,
DilatedWindowAndBaseConv2DWithDifferentLowAndHighPaddingAndStrides) {
HloComputation::Builder b(TestName());
Array4D<float> lhs_array(1, 1, 4, 4);
// clang-format off
lhs_array.FillWithYX(Array2D<float>({
{1, 2, 3, 4 },
{5, 6, 7, 8 },
{9, 10, 11, 12},
{13, 14, 15, 16},
}));
// clang-format on
auto lhs_literal = LiteralUtil::CreateR4FromArray4D<float>(lhs_array);
HloInstruction* lhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(lhs_literal)));
Array4D<float> rhs_array(1, 1, 2, 3);
// clang-format off
rhs_array.FillWithYX(Array2D<float>({
{5, 6, 7},
{8, 9, 10},
}));
// clang-format on
auto rhs_literal = LiteralUtil::CreateR4FromArray4D<float>(rhs_array);
HloInstruction* rhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(rhs_literal)));
Window window;
WindowDimension dim;
dim.set_size(2);
dim.set_stride(1);
dim.set_padding_low(2);
dim.set_padding_high(2);
dim.set_window_dilation(2);
dim.set_base_dilation(2);
*window.add_dimensions() = dim;
dim.set_size(3);
dim.set_stride(3);
dim.set_padding_low(2);
dim.set_padding_high(-1);
dim.set_window_dilation(1);
dim.set_base_dilation(3);
*window.add_dimensions() = dim;
ConvolutionDimensionNumbers dnums =
XlaBuilder::CreateDefaultConvDimensionNumbers(2);
Shape shape = ShapeUtil::MakeShape(F32, {1, 1, 9, 3});
b.AddInstruction(HloInstruction::CreateConvolve(
shape, lhs_instruction, rhs_instruction, /*feature_group_count=*/1,
/*batch_group_count=*/1, window, dnums, DefaultPrecisionConfig(2)));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
Array4D<float> expected_array(1, 1, 9, 3);
expected_array.FillWithYX(Array2D<float>({
{10, 20, 30},
{0, 0, 0},
{57, 74, 91},
{0, 0, 0},
{125, 142, 159},
{0, 0, 0},
{193, 210, 227},
{0, 0, 0},
{91, 98, 105},
}));
auto expected = LiteralUtil::CreateR4FromArray4D<float>(expected_array);
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, Conv2DGroupedConvolution) {
HloComputation::Builder b(TestName());
std::vector<int64> input_dims = {1, 2, 2, 4};
std::vector<int64> filter_dims = {2, 2, 2, 8};
Shape input_shape = ShapeUtil::MakeShapeWithType<float>(input_dims);
Shape filter_shape = ShapeUtil::MakeShapeWithType<float>(filter_dims);
// Tensorflow dimension numbers for 2D convolution.
ConvolutionDimensionNumbers dnums;
dnums.set_input_batch_dimension(0);
dnums.set_output_batch_dimension(0);
dnums.add_input_spatial_dimensions(1);
dnums.add_output_spatial_dimensions(1);
dnums.add_input_spatial_dimensions(2);
dnums.add_output_spatial_dimensions(2);
dnums.set_input_feature_dimension(3);
dnums.set_output_feature_dimension(3);
dnums.add_kernel_spatial_dimensions(0);
dnums.add_kernel_spatial_dimensions(1);
dnums.set_kernel_input_feature_dimension(2);
dnums.set_kernel_output_feature_dimension(3);
Window window;
WindowDimension dim;
dim.set_size(2);
dim.set_stride(1);
dim.set_padding_low(0);
dim.set_padding_high(0);
dim.set_window_dilation(1);
dim.set_base_dilation(1);
*window.add_dimensions() = dim;
*window.add_dimensions() = dim;
std::vector<float> input_elems(ShapeUtil::ElementsIn(input_shape));
std::iota(input_elems.begin(), input_elems.end(), -7);
auto input_r1 = LiteralUtil::CreateR1<float>(input_elems);
auto input_r4 = input_r1.Reshape(input_dims).ConsumeValueOrDie();
HloInstruction* lhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(input_r4)));
std::vector<float> filter_elems(ShapeUtil::ElementsIn(filter_shape));
std::iota(filter_elems.begin(), filter_elems.end(), -31);
auto filter_r1 = LiteralUtil::CreateR1<float>(filter_elems);
auto filter_r4 = filter_r1.Reshape(filter_dims).ConsumeValueOrDie();
HloInstruction* rhs_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(filter_r4)));
Shape shape = ShapeUtil::MakeShape(F32, {1, 1, 1, 8});
b.AddInstruction(HloInstruction::CreateConvolve(
shape, lhs_instruction, rhs_instruction,
/*feature_group_count=*/2, /*batch_group_count=*/1, window, dnums,
DefaultPrecisionConfig(2)));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
Array4D<float> expected_array(1, 1, 1, 8);
expected_array.FillWithYX(
Array2D<float>({{668, 664, 660, 656, 668, 680, 692, 704}}));
auto expected = LiteralUtil::CreateR4FromArray4D<float>(expected_array);
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
class HloEvaluatorPreciseReduceTest : public HloTestBase {};
// Tests that Reduce doesn't lose precision when adding many numbers (because
// it accumulates its result in a double).
TEST_F(HloEvaluatorPreciseReduceTest, AddReductionPrecisionTest) {
auto m = CreateNewVerifiedModule();
HloComputation::Builder b(TestName());
constexpr int kNumElements = 1 << 25; // float += 1 saturates at 1<<24
std::vector<float> v(kNumElements, 1.0f);
HloInstruction* arg_instruction = b.AddInstruction(
HloInstruction::CreateConstant(LiteralUtil::CreateR1<float>(v)));
HloInstruction* init_value = b.AddInstruction(
HloInstruction::CreateConstant(LiteralUtil::CreateR0<float>(0.f)));
HloComputation::Builder add_computation("add");
Shape scalar_shape = ShapeUtil::MakeShape(F32, {});
auto param_lhs = add_computation.AddInstruction(
HloInstruction::CreateParameter(0, scalar_shape, "lhs"));
auto param_rhs = add_computation.AddInstruction(
HloInstruction::CreateParameter(1, scalar_shape, "rhs"));
add_computation.AddInstruction(HloInstruction::CreateBinary(
scalar_shape, HloOpcode::kAdd, param_lhs, param_rhs));
auto add_func = m->AddEmbeddedComputation(add_computation.Build());
HloInstruction* reduce_instruction = b.AddInstruction(
HloInstruction::CreateReduce(scalar_shape, arg_instruction, init_value,
/*dimensions_to_reduce=*/{0}, add_func));
m->AddEntryComputation(b.Build());
HloEvaluator hlo_eval;
Literal result = hlo_eval.Evaluate(reduce_instruction).ConsumeValueOrDie();
LiteralTestUtil::ExpectR0Equal<float>(kNumElements, result);
}
// Reducing many numbers should be fast because it doesn't create
// intermediate Literals; the microbenchmark should finish in < 1 msec.
void BM_ReducePrecisely(int num_iters) {
tensorflow::testing::StopTiming();
HloComputation::Builder b("BM_ReducePrecisely");
HloModuleConfig config;
config.set_debug_options(GetDebugOptionsFromFlags());
HloModule module("BM_ReducePrecisely", config);
constexpr int kNumElements = 1 << 25; // float += 1 saturates at 1<<24
std::vector<float> v(kNumElements, 1.0f);
HloInstruction* arg_instruction = b.AddInstruction(
HloInstruction::CreateConstant(LiteralUtil::CreateR1<float>(v)));
auto init_value = b.AddInstruction(
HloInstruction::CreateConstant(LiteralUtil::CreateR0<float>(0.f)));
HloComputation::Builder add_computation("add");
Shape scalar_shape = ShapeUtil::MakeShape(F32, {});
auto param_lhs = add_computation.AddInstruction(
HloInstruction::CreateParameter(0, scalar_shape, "lhs"));
auto param_rhs = add_computation.AddInstruction(
HloInstruction::CreateParameter(1, scalar_shape, "rhs"));
add_computation.AddInstruction(HloInstruction::CreateBinary(
scalar_shape, HloOpcode::kAdd, param_lhs, param_rhs));
auto add_func = module.AddEmbeddedComputation(add_computation.Build());
HloInstruction* reduce_instruction = b.AddInstruction(
HloInstruction::CreateReduce(scalar_shape, arg_instruction, init_value,
/*dimensions_to_reduce=*/{0}, add_func));
module.AddEntryComputation(b.Build());
HloEvaluator hlo_eval;
tensorflow::testing::StartTiming();
hlo_eval.Evaluate(reduce_instruction).ConsumeValueOrDie();
tensorflow::testing::StopTiming();
}
BENCHMARK(BM_ReducePrecisely);
TEST_P(HloEvaluatorTest, ReduceAdd) {
HloComputation::Builder b(TestName());
// arg:
// f32[2,3] {
// { 1, 2, 3 },
// { 5, 6, 7 },
// }
auto arg_array = absl::make_unique<Array2D<float>>(2, 3);
arg_array->FillUnique(1.0f);
auto arg_literal = LiteralUtil::CreateR2FromArray2D<float>(*arg_array);
HloInstruction* arg_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(arg_literal)));
auto init_value = b.AddInstruction(
HloInstruction::CreateConstant(LiteralUtil::CreateR0<float>(0.f)));
HloComputation::Builder add_computation("add");
Shape scalar_shape = ShapeUtil::MakeShape(F32, {});
auto param_lhs = add_computation.AddInstruction(
HloInstruction::CreateParameter(0, scalar_shape, "lhs"));
auto param_rhs = add_computation.AddInstruction(
HloInstruction::CreateParameter(1, scalar_shape, "rhs"));
add_computation.AddInstruction(HloInstruction::CreateBinary(
scalar_shape, HloOpcode::kAdd, param_lhs, param_rhs));
auto add_func = m_->AddEmbeddedComputation(add_computation.Build());
Shape shape = ShapeUtil::MakeShape(F32, {2});
b.AddInstruction(
HloInstruction::CreateReduce(shape, arg_instruction, init_value,
/*dimensions_to_reduce=*/{1}, add_func));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
auto expected = LiteralUtil::CreateR1<float>({6, 18});
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, ReduceWindowMax) {
HloComputation::Builder b(TestName());
// arg:
// f32[2,3] {
// { 1, 2, 3 },
// { 5, 6, 7 },
// }
auto arg_array = absl::make_unique<Array2D<float>>(2, 3);
arg_array->FillUnique(1.0f);
auto arg_literal = LiteralUtil::CreateR2FromArray2D<float>(*arg_array);
HloInstruction* arg_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(arg_literal)));
auto init_value = b.AddInstruction(
HloInstruction::CreateConstant(LiteralUtil::CreateR0<float>(0.f)));
HloComputation::Builder max_computation("max");
Shape scalar_shape = ShapeUtil::MakeShape(F32, {});
auto param_lhs = max_computation.AddInstruction(
HloInstruction::CreateParameter(0, scalar_shape, "lhs"));
auto param_rhs = max_computation.AddInstruction(
HloInstruction::CreateParameter(1, scalar_shape, "rhs"));
max_computation.AddInstruction(HloInstruction::CreateBinary(
scalar_shape, HloOpcode::kMaximum, param_lhs, param_rhs));
auto max_func = m_->AddEmbeddedComputation(max_computation.Build());
Window window;
WindowDimension dim;
dim.set_size(2);
dim.set_stride(1);
dim.set_padding_low(0);
dim.set_padding_high(0);
dim.set_window_dilation(1);
dim.set_base_dilation(1);
*window.add_dimensions() = dim;
*window.add_dimensions() = dim;
Shape shape = ShapeUtil::MakeShape(F32, {1, 2});
b.AddInstruction(HloInstruction::CreateReduceWindow(
shape, arg_instruction, init_value, window, max_func));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
auto expected = LiteralUtil::CreateR2<float>({{6, 7}});
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, ReduceWindowMaxWindowDilation) {
HloComputation::Builder b(TestName());
// arg:
// f32[3,3] {
// { 1, 2, 3 },
// { 5, 6, 7 },
// { 9, 10, 11 },
// }
auto arg_array = absl::make_unique<Array2D<float>>(3, 3);
arg_array->FillUnique(1.0f);
auto arg_literal = LiteralUtil::CreateR2FromArray2D<float>(*arg_array);
HloInstruction* arg_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(arg_literal)));
auto init_value = b.AddInstruction(
HloInstruction::CreateConstant(LiteralUtil::CreateR0<float>(0.f)));
HloComputation::Builder max_computation("max");
Shape scalar_shape = ShapeUtil::MakeShape(F32, {});
auto param_lhs = max_computation.AddInstruction(
HloInstruction::CreateParameter(0, scalar_shape, "lhs"));
auto param_rhs = max_computation.AddInstruction(
HloInstruction::CreateParameter(1, scalar_shape, "rhs"));
max_computation.AddInstruction(HloInstruction::CreateBinary(
scalar_shape, HloOpcode::kMaximum, param_lhs, param_rhs));
auto max_func = m_->AddEmbeddedComputation(max_computation.Build());
Window window;
WindowDimension dim;
dim.set_size(2);
dim.set_stride(1);
dim.set_padding_low(0);
dim.set_padding_high(0);
dim.set_window_dilation(2);
dim.set_base_dilation(1);
*window.add_dimensions() = dim;
*window.add_dimensions() = dim;
Shape shape = ShapeUtil::MakeShape(F32, {1, 1});
b.AddInstruction(HloInstruction::CreateReduceWindow(
shape, arg_instruction, init_value, window, max_func));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
auto expected = LiteralUtil::CreateR2<float>({{11}});
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, ReduceWindowAdd) {
HloComputation::Builder b(TestName());
// arg:
// f32[2,3] {
// { 1, 2, 3 },
// { 5, 6, 7 },
// }
auto arg_array = absl::make_unique<Array2D<float>>(2, 3);
arg_array->FillUnique(1.0f);
auto arg_literal = LiteralUtil::CreateR2FromArray2D<float>(*arg_array);
HloInstruction* arg_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(arg_literal)));
auto init_value = b.AddInstruction(
HloInstruction::CreateConstant(LiteralUtil::CreateR0<float>(0.f)));
HloComputation::Builder add_computation("add");
Shape scalar_shape = ShapeUtil::MakeShape(F32, {});
auto param_lhs = add_computation.AddInstruction(
HloInstruction::CreateParameter(0, scalar_shape, "lhs"));
auto param_rhs = add_computation.AddInstruction(
HloInstruction::CreateParameter(1, scalar_shape, "rhs"));
add_computation.AddInstruction(HloInstruction::CreateBinary(
scalar_shape, HloOpcode::kAdd, param_lhs, param_rhs));
auto add_func = m_->AddEmbeddedComputation(add_computation.Build());
Window window;
WindowDimension dim;
dim.set_size(1);
dim.set_stride(1);
dim.set_padding_low(0);
dim.set_padding_high(0);
dim.set_window_dilation(1);
dim.set_base_dilation(1);
*window.add_dimensions() = dim;
dim.set_size(2);
dim.set_stride(1);
dim.set_padding_low(1);
dim.set_padding_high(0);
dim.set_window_dilation(1);
dim.set_base_dilation(1);
*window.add_dimensions() = dim;
Shape shape = ShapeUtil::MakeShape(F32, {2, 3});
b.AddInstruction(HloInstruction::CreateReduceWindow(
shape, arg_instruction, init_value, window, add_func));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
auto expected = LiteralUtil::CreateR2<float>({{1, 3, 5}, {5, 11, 13}});
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, ReduceWindowAdd6D) {
HloComputation::Builder b(TestName());
// arg: f32[4,4,4,4,4,4] full of ones. Using small dims to limit run-time.
std::vector<int64> input_dims(6, 4);
Literal arg_literal =
LiteralUtil::CreateFullWithDescendingLayout<float>(input_dims, 1.0f);
HloInstruction* arg_instruction =
b.AddInstruction(HloInstruction::CreateConstant(std::move(arg_literal)));
auto init_value = b.AddInstruction(
HloInstruction::CreateConstant(LiteralUtil::CreateR0<float>(0.f)));
HloComputation::Builder add_computation("add");
Shape scalar_shape = ShapeUtil::MakeShape(F32, {});
auto param_lhs = add_computation.AddInstruction(
HloInstruction::CreateParameter(0, scalar_shape, "lhs"));
auto param_rhs = add_computation.AddInstruction(
HloInstruction::CreateParameter(1, scalar_shape, "rhs"));
add_computation.AddInstruction(HloInstruction::CreateBinary(
scalar_shape, HloOpcode::kAdd, param_lhs, param_rhs));
auto add_func = m_->AddEmbeddedComputation(add_computation.Build());
Window window;
WindowDimension trivial_dim;
trivial_dim.set_size(1);
trivial_dim.set_stride(1);
trivial_dim.set_padding_low(0);
trivial_dim.set_padding_high(0);
trivial_dim.set_window_dilation(1);
trivial_dim.set_base_dilation(1);
WindowDimension active_dim;
active_dim.set_size(2);
active_dim.set_stride(1);
active_dim.set_padding_low(0);
active_dim.set_padding_high(0);
active_dim.set_window_dilation(1);
active_dim.set_base_dilation(1);
*window.add_dimensions() = trivial_dim;
*window.add_dimensions() = active_dim;
*window.add_dimensions() = active_dim;
*window.add_dimensions() = active_dim;
*window.add_dimensions() = trivial_dim;
*window.add_dimensions() = trivial_dim;
Shape shape = ShapeUtil::MakeShape(F32, {4, 3, 3, 3, 4, 4});
b.AddInstruction(HloInstruction::CreateReduceWindow(
shape, arg_instruction, init_value, window, add_func));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
std::vector<int64> output_dims = {4, 3, 3, 3, 4, 4};
Literal result_literal =
LiteralUtil::CreateFullWithDescendingLayout<float>(output_dims, 8.0f);
EXPECT_TRUE(LiteralTestUtil::Equal(result_literal, result));
}
TEST_P(HloEvaluatorTest, StridedSlice) {
HloComputation::Builder b(TestName());
// arg:
// f32[3,5] {
// { 1, 2, 3, 4, 5 },
// { 9, 10, 11, 12, 13 },
// { 17, 18, 19, 20, 21 },
// }
auto operand_array = absl::make_unique<Array2D<float>>(3, 5);
operand_array->FillUnique(1.0f);
auto operand_literal =
LiteralUtil::CreateR2FromArray2D<float>(*operand_array);
HloInstruction* operand = b.AddInstruction(
HloInstruction::CreateConstant(std::move(operand_literal)));
Shape shape = ShapeUtil::MakeShape(F32, {2, 1});
b.AddInstruction(HloInstruction::CreateSlice(shape, operand,
/*start_indices=*/{0, 2},
/*limit_indices=*/{3, 5},
/*strides=*/{2, 3}));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
auto expected = LiteralUtil::CreateR2<float>({
{3},
{19},
});
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, DynamicSlice) {
HloComputation::Builder b(TestName());
// arg:
// f32[2,4] {
// { 1, 2, 3, 4 },
// { 5, 6, 7, 8 },
// }
auto operand_array = absl::make_unique<Array2D<float>>(2, 4);
operand_array->FillUnique(1.0f);
auto operand_literal =
LiteralUtil::CreateR2FromArray2D<float>(*operand_array);
HloInstruction* operand = b.AddInstruction(
HloInstruction::CreateConstant(std::move(operand_literal)));
auto start_indices = b.AddInstruction(
HloInstruction::CreateConstant(LiteralUtil::CreateR1<int32>({0, 1})));
Shape shape = ShapeUtil::MakeShape(F32, {2, 3});
b.AddInstruction(HloInstruction::CreateDynamicSlice(shape, operand,
start_indices, {2, 3}));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
auto expected = LiteralUtil::CreateR2<float>({
{2, 3, 4},
{6, 7, 8},
});
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
// Verifies that the HloEvaluator's implementation goes along with existing
// backends' behavior, although this is not required by the spec.
TEST_P(HloEvaluatorTest, DynamicSliceModSlice) {
HloComputation::Builder b(TestName());
// arg:
// f32[2,4] {
// { 1, 2, 3, 4 },
// { 5, 6, 7, 8 },
// }
auto operand_array = absl::make_unique<Array2D<float>>(2, 4);
operand_array->FillUnique(1.0f);
auto operand_literal =
LiteralUtil::CreateR2FromArray2D<float>(*operand_array);
HloInstruction* operand = b.AddInstruction(
HloInstruction::CreateConstant(std::move(operand_literal)));
auto start_indices = b.AddInstruction(
HloInstruction::CreateConstant(LiteralUtil::CreateR1<int32>({2, 1})));
Shape shape = ShapeUtil::MakeShape(F32, {2, 3});
b.AddInstruction(HloInstruction::CreateDynamicSlice(shape, operand,
start_indices, {2, 3}));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
auto expected = LiteralUtil::CreateR2<float>({
{2, 3, 4},
{6, 7, 8},
});
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, DynamicSliceUpdate) {
HloComputation::Builder b(TestName());
// arg:
// f32[2,3] {
// { 1, 2, 3 },
// { 5, 6, 7 },
// }
auto operand_array = absl::make_unique<Array2D<double>>(2, 3);
operand_array->FillUnique(1.0);
auto operand_literal =
LiteralUtil::CreateR2FromArray2D<double>(*operand_array);
HloInstruction* operand = b.AddInstruction(
HloInstruction::CreateConstant(std::move(operand_literal)));
auto start_indices = b.AddInstruction(
HloInstruction::CreateConstant(LiteralUtil::CreateR1<int64>({0, 1})));
auto update = b.AddInstruction(HloInstruction::CreateConstant(
LiteralUtil::CreateR2<double>({{-2.0, -3.0}, {-6.0, -7.0}})));
Shape shape = ShapeUtil::MakeShape(F64, {2, 3});
b.AddInstruction(HloInstruction::CreateDynamicUpdateSlice(
shape, operand, update, start_indices));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
auto expected = LiteralUtil::CreateR2<double>({
{1, -2, -3},
{5, -6, -7},
});
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, SetAndGetTuples) {
HloComputation::Builder b(TestName());
// arg:
// f32[2,3] {
// { 1, 2, 3 },
// { 5, 6, 7 },
// }
auto operand_array = absl::make_unique<Array2D<double>>(2, 3);
operand_array->FillUnique(1.0);
auto operand_literal2 =
LiteralUtil::CreateR2FromArray2D<double>(*operand_array);
HloInstruction* operand2 = b.AddInstruction(
HloInstruction::CreateConstant(std::move(operand_literal2)));
HloInstruction* operand1 = b.AddInstruction(
HloInstruction::CreateConstant(LiteralUtil::CreateR1<int64>({0, 1})));
auto tuple =
b.AddInstruction(HloInstruction::CreateTuple({operand1, operand2}));
Shape shape = ShapeUtil::MakeShape(F64, {2, 3});
b.AddInstruction(HloInstruction::CreateGetTupleElement(shape, tuple, 1));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
auto expected = LiteralUtil::CreateR2<double>({
{1, 2, 3},
{5, 6, 7},
});
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, SetAndGetNestedTuples) {
HloComputation::Builder b(TestName());
// arg:
// f32[2,3] {
// { 1, 2, 3 },
// { 5, 6, 7 },
// }
auto operand_array = absl::make_unique<Array2D<double>>(2, 3);
operand_array->FillUnique(1.0);
HloInstruction* operand2 = b.AddInstruction(HloInstruction::CreateConstant(
LiteralUtil::CreateR2FromArray2D<double>(*operand_array)));
HloInstruction* operand1 = b.AddInstruction(
HloInstruction::CreateConstant(LiteralUtil::CreateR1<int64>({0, 1})));
auto tuple1 =
b.AddInstruction(HloInstruction::CreateTuple({operand1, operand2}));
auto tuple2 =
b.AddInstruction(HloInstruction::CreateTuple({operand2, operand2}));
auto outer_tuple =
b.AddInstruction(HloInstruction::CreateTuple({tuple1, tuple2}));
b.AddInstruction(
HloInstruction::CreateGetTupleElement(tuple2->shape(), outer_tuple, 1));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
auto result_inner_literal =
LiteralUtil::CreateR2FromArray2D<double>(*operand_array);
auto expected =
LiteralUtil::MakeTuple({&result_inner_literal, &result_inner_literal});
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, Reverse) {
HloComputation::Builder b(TestName());
// Input shape is float[4x3x2x1].
// clang-format off
Array4D<float> input({
{{{1.0f}, {2.0f}},
{{3.0f}, {4.0f}},
{{5.0f}, {6.0f}}},
{{{7.0f}, {8.0f}},
{{9.0f}, {10.0f}},
{{11.0f}, {12.0f}}},
{{{13.0f}, {14.0f}},
{{15.0f}, {16.0f}},
{{17.0f}, {18.0f}}},
{{{19.0f}, {20.0f}},
{{21.0f}, {22.0f}},
{{23.0f}, {24.0f}}},
});
// clang-format on
auto operand_literal = LiteralUtil::CreateR4FromArray4D<float>(input);
HloInstruction* operand = b.AddInstruction(
HloInstruction::CreateConstant(std::move(operand_literal)));
const Shape shape = ShapeUtil::MakeShape(F32, {4, 3, 2, 1});
b.AddInstruction(HloInstruction::CreateReverse(shape, operand, {0, 1}));
m_->AddEntryComputation(b.Build());
Literal result = Evaluate();
// clang-format off
auto expected = LiteralUtil::CreateR4FromArray4D<float>({
{{{23.0f}, {24.0f}},
{{21.0f}, {22.0f}},
{{19.0f}, {20.0f}}},
{{{17.0f}, {18.0f}},
{{15.0f}, {16.0f}},
{{13.0f}, {14.0f}}},
{{{11.0f}, {12.0f}},
{{9.0f}, {10.0f}},
{{7.0f}, {8.0f}}},
{{{5.0f}, {6.0f}},
{{3.0f}, {4.0f}},
{{1.0f}, {2.0f}}},
});
// clang-format on
EXPECT_TRUE(LiteralTestUtil::Equal(expected, result));
}
TEST_P(HloEvaluatorTest, EvaluateWithSubstitutions) {
HloComputation::Builder b(TestName());
Shape shape = ShapeUtil::MakeShape(F32, {4});
HloInstruction* param0 =
b.AddInstruction(HloInstruction::CreateParameter(0, shape, "param0"));
HloInstruction* square = b.AddInstruction(HloInstruction::CreateBinary(
shape, HloOpcode::kMultiply, param0, param0));
HloInstruction* add = b.AddInstruction(
HloInstruction::CreateBinary(shape, HloOpcode::kAdd, param0, square));
// Evaluate add with param0 = {1, 2, 3, 4}, square = {10, 20, 30, 40}.
HloEvaluator evaluator;
Literal param0_literal = LiteralUtil::CreateR1<float>({1, 2, 3, 4});
Literal square_literal = LiteralUtil::CreateR1<float>({10, 20, 30, 40});
auto result = evaluator.EvaluateWithSubstitutions(
add, {{param0, ¶m0_literal}, {square, &square_literal}});
TF_ASSERT_OK(result.status());
EXPECT_TRUE(LiteralTestUtil::Equal(
LiteralUtil::CreateR1<float>({11, 22, 33, 44}), result.ValueOrDie()));
}
// Check that EvaluateWithSubstitutions works if one of the operands to the op
// we're evaluating is a constant.
TEST_P(HloEvaluatorTest, EvaluateWithSubstitutionsWithConstantOperand) {
HloComputation::Builder b(TestName());
Shape shape = ShapeUtil::MakeShape(F32, {4});
HloInstruction* param0 =
b.AddInstruction(HloInstruction::CreateParameter(0, shape, "param0"));
HloInstruction* square = b.AddInstruction(HloInstruction::CreateBinary(
shape, HloOpcode::kMultiply, param0, param0));
HloInstruction* constant = b.AddInstruction(HloInstruction::CreateConstant(
LiteralUtil::CreateR1<float>({1, 2, 3, 4})));
HloInstruction* add = b.AddInstruction(
HloInstruction::CreateBinary(shape, HloOpcode::kAdd, constant, square));
// Evaluate add with square = {10, 20, 30, 40}.
HloEvaluator evaluator;
Literal square_literal = LiteralUtil::CreateR1<float>({10, 20, 30, 40});
auto result =
evaluator.EvaluateWithSubstitutions(add, {{square, &square_literal}});
TF_ASSERT_OK(result.status());
EXPECT_TRUE(LiteralTestUtil::Equal(
LiteralUtil::CreateR1<float>({11, 22, 33, 44}), result.ValueOrDie()));
}
TEST_P(HloEvaluatorTest, EvaluateGather_TensorFlowGatherV1) {
const char* hlo_text = R"(
HloModule TensorFlowGatherV1
ENTRY main {
operand = s32[3,3] parameter(0)
indices = s32[2] parameter(1)
ROOT gather = s32[2,3] gather(operand, indices),
offset_dims={1},
collapsed_slice_dims={0},
start_index_map={0},
index_vector_dim=1,
slice_sizes={1, 3}
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand =
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {4, 5, 6}, {7, 8, 9}});
Literal start_indices = LiteralUtil::CreateR1<int32>({0, 2});
EXPECT_TRUE(LiteralTestUtil::Equal(
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {7, 8, 9}}),
Evaluate({&operand, &start_indices})));
}
TEST_P(HloEvaluatorTest, EvaluateGather_TensorFlowGatherV2) {
const char* hlo_text = R"(
HloModule TensorFlowGatherV2
ENTRY main {
operand = s32[3,3] parameter(0)
indices = s32[2] parameter(1)
ROOT gather = s32[3,2] gather(operand, indices),
offset_dims={0},
collapsed_slice_dims={1},
start_index_map={1},
index_vector_dim=1,
slice_sizes={3, 1}
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand =
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {4, 5, 6}, {7, 8, 9}});
Literal start_indices = LiteralUtil::CreateR1<int32>({0, 2});
EXPECT_TRUE(LiteralTestUtil::Equal(
LiteralUtil::CreateR2<int32>({{1, 3}, {4, 6}, {7, 9}}),
Evaluate({&operand, &start_indices})));
}
TEST_P(HloEvaluatorTest, EvaluateGather_TensorFlowGatherMultipleBatchDims) {
const char* hlo_text = R"(
HloModule TensorFlowGatherMultipleBatchDims
ENTRY main {
operand = s32[3,3] parameter(0)
indices = s32[2,2] parameter(1)
ROOT gather = s32[2,3,2] gather(operand, indices),
offset_dims={1},
collapsed_slice_dims={1},
start_index_map={1},
index_vector_dim=2,
slice_sizes={3, 1}
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand =
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {4, 5, 6}, {7, 8, 9}});
Literal start_indices = LiteralUtil::CreateR2<int32>({{0, 2}, {2, 1}});
EXPECT_TRUE(LiteralTestUtil::Equal(
LiteralUtil::CreateR3<int32>(
{{{1, 3}, {4, 6}, {7, 9}}, {{3, 2}, {6, 5}, {9, 8}}}),
Evaluate({&operand, &start_indices})));
}
TEST_P(HloEvaluatorTest, EvaluateGather_TensorFlowGatherNd) {
const char* hlo_text = R"(
HloModule TensorFlowGatherNd
ENTRY main {
operand = s32[3,3,2] parameter(0)
indices = s32[2,2] parameter(1)
ROOT gather = s32[2,2] gather(operand, indices),
offset_dims={1},
collapsed_slice_dims={0,1},
start_index_map={0,1},
index_vector_dim=1,
slice_sizes={1,1,2}
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand =
LiteralUtil::CreateR3<int32>({{{-1, 1}, {-2, 2}, {-3, 3}}, //
{{-4, 4}, {-5, 5}, {-6, 6}}, //
{{-7, 7}, {-8, 8}, {-9, 9}}});
Literal start_indices = LiteralUtil::CreateR2<int32>({{0, 0}, {1, 0}});
EXPECT_TRUE(
LiteralTestUtil::Equal(LiteralUtil::CreateR2<int32>({{-1, 1}, {-4, 4}}),
Evaluate({&operand, &start_indices})));
}
TEST_P(HloEvaluatorTest,
EvaluateGather_TensorFlowGatherNdNonDefaultIndexVectorDim) {
const char* hlo_text = R"(
HloModule TensorFlowGatherNd
ENTRY main {
operand = s32[3,3,2] parameter(0)
indices = s32[2,2] parameter(1)
ROOT gather = s32[2,2] gather(operand, indices),
offset_dims={1},
collapsed_slice_dims={0,1},
start_index_map={0,1},
index_vector_dim=0,
slice_sizes={1,1,2}
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand =
LiteralUtil::CreateR3<int32>({{{-1, 1}, {-2, 2}, {-3, 3}}, //
{{-4, 4}, {-5, 5}, {-6, 6}}, //
{{-7, 7}, {-8, 8}, {-9, 9}}});
Literal start_indices = LiteralUtil::CreateR2<int32>({{0, 0}, {1, 0}});
EXPECT_TRUE(
LiteralTestUtil::Equal(LiteralUtil::CreateR2<int32>({{-2, 2}, {-1, 1}}),
Evaluate({&operand, &start_indices})));
}
TEST_P(HloEvaluatorTest, EvaluateGather_DynamicSlice) {
const char* hlo_text = R"(
HloModule DynamicSlice
ENTRY main {
operand = s32[3,3] parameter(0)
indices = s32[2] parameter(1)
ROOT gather = s32[1,1] gather(operand, indices),
offset_dims={0,1},
collapsed_slice_dims={},
start_index_map={0,1},
index_vector_dim=0,
slice_sizes={1,1}
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand =
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {4, 5, 6}, {7, 8, 9}});
Literal start_indices = LiteralUtil::CreateR1<int32>({1, 1});
EXPECT_TRUE(LiteralTestUtil::Equal(LiteralUtil::CreateR2<int32>({{5}}),
Evaluate({&operand, &start_indices})));
}
TEST_P(HloEvaluatorTest, EvaluateGather_BatchDynamicSlice) {
const char* hlo_text = R"(
HloModule BatchDynamicSlice
ENTRY main {
operand = s32[3,3] parameter(0)
indices = s32[2,2] parameter(1)
ROOT gather = s32[2,1,1] gather(operand, indices),
offset_dims={1,2},
collapsed_slice_dims={},
start_index_map={0,1},
index_vector_dim=0,
slice_sizes={1,1}
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand =
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {4, 5, 6}, {7, 8, 9}});
Literal start_indices = LiteralUtil::CreateR2<int32>({{2, 1}, {1, 1}});
EXPECT_TRUE(
LiteralTestUtil::Equal(LiteralUtil::CreateR3<int32>({{{8}}, {{5}}}),
Evaluate({&operand, &start_indices})));
}
TEST_P(HloEvaluatorTest, EvaluateGather_ZeroDimBounds) {
const char* hlo_text = R"(
HloModule TensorFlowGatherV1
ENTRY main {
operand = s32[3,0] parameter(0)
indices = s32[2] parameter(1)
ROOT gather = s32[2,0] gather(operand, indices),
offset_dims={1},
collapsed_slice_dims={0},
start_index_map={0},
index_vector_dim=1,
slice_sizes={1, 0}
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand = LiteralUtil::CreateR2<int32>({{}, {}, {}});
Literal start_indices = LiteralUtil::CreateR1<int32>({0, 2});
EXPECT_TRUE(LiteralTestUtil::Equal(LiteralUtil::CreateR2<int32>({{}, {}}),
Evaluate({&operand, &start_indices})));
}
TEST_P(HloEvaluatorTest, EvaluateGather_NoOutputWindowDims) {
const string hlo_text = R"(
HloModule GatherXd
ENTRY main {
operand = s32[3] parameter(0)
indices = s32[2,2,1] parameter(1)
ROOT gather = s32[2,2] gather(operand, indices),
offset_dims={},
collapsed_slice_dims={0},
start_index_map={0},
index_vector_dim=2,
slice_sizes={1}
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand = LiteralUtil::CreateR1<int32>({0, 1, 2});
Literal start_indices =
LiteralUtil::CreateR3<int32>({{{0}, {1}}, {{2}, {1}}});
EXPECT_TRUE(
LiteralTestUtil::Equal(LiteralUtil::CreateR2<int32>({{0, 1}, {2, 1}}),
Evaluate({&operand, &start_indices})));
}
TEST_P(HloEvaluatorTest, EvaluateScatter_TensorFlowScatterV1_Update) {
const char* hlo_text = R"(
HloModule TensorFlowScatterV1
update_s32 (lhs: s32[], rhs: s32[]) -> s32[] {
lhs = s32[] parameter(0)
ROOT rhs = s32[] parameter(1)
}
ENTRY main {
operand = s32[3,3] parameter(0)
indices = s32[2] parameter(1)
updates = s32[2,3] parameter(2)
ROOT scatter = s32[3,3] scatter(operand, indices, updates),
to_apply=update_s32,
update_window_dims={1},
inserted_window_dims={0},
scatter_dims_to_operand_dims={0},
index_vector_dim=1
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand =
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {4, 5, 6}, {7, 8, 9}});
Literal scatter_indices = LiteralUtil::CreateR1<int32>({0, 2});
Literal updates = LiteralUtil::CreateR2<int32>({{10, 20, 30}, {70, 80, 90}});
EXPECT_TRUE(LiteralTestUtil::Equal(
LiteralUtil::CreateR2<int32>({{10, 20, 30}, {4, 5, 6}, {70, 80, 90}}),
Evaluate({&operand, &scatter_indices, &updates})));
}
TEST_P(HloEvaluatorTest, EvaluateScatter_TensorFlowScatterV2_Update) {
const char* hlo_text = R"(
HloModule TensorFlowScatterV2
update_s32 (lhs: s32[], rhs: s32[]) -> s32[] {
lhs = s32[] parameter(0)
ROOT rhs = s32[] parameter(1)
}
ENTRY main {
operand = s32[3,3] parameter(0)
indices = s32[2] parameter(1)
updates = s32[3,2] parameter(2)
ROOT scatter = s32[3,3] scatter(operand, indices, updates),
to_apply=update_s32,
update_window_dims={0},
inserted_window_dims={1},
scatter_dims_to_operand_dims={1},
index_vector_dim=1
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand =
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {4, 5, 6}, {7, 8, 9}});
Literal scatter_indices = LiteralUtil::CreateR1<int32>({0, 2});
Literal updates =
LiteralUtil::CreateR2<int32>({{10, 30}, {40, 60}, {70, 90}});
EXPECT_TRUE(LiteralTestUtil::Equal(
LiteralUtil::CreateR2<int32>({{10, 2, 30}, {40, 5, 60}, {70, 8, 90}}),
Evaluate({&operand, &scatter_indices, &updates})));
}
TEST_P(HloEvaluatorTest, EvaluateScatter_TensorFlowScatter_Add) {
const char* hlo_text = R"(
HloModule TensorFlowScatter
add_s32 (lhs: s32[], rhs: s32[]) -> s32[] {
lhs = s32[] parameter(0)
rhs = s32[] parameter(1)
ROOT add = s32[] add(s32[] lhs, s32[] rhs)
}
ENTRY main {
operand = s32[3,3] parameter(0)
indices = s32[2] parameter(1)
updates = s32[2,3] parameter(2)
ROOT scatter = s32[3,3] scatter(operand, indices, updates),
to_apply=add_s32,
update_window_dims={1},
inserted_window_dims={0},
scatter_dims_to_operand_dims={0},
index_vector_dim=1
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand =
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {4, 5, 6}, {7, 8, 9}});
Literal scatter_indices = LiteralUtil::CreateR1<int32>({0, 2});
Literal updates = LiteralUtil::CreateR2<int32>({{10, 20, 30}, {70, 80, 90}});
EXPECT_TRUE(LiteralTestUtil::Equal(
LiteralUtil::CreateR2<int32>({{11, 22, 33}, {4, 5, 6}, {77, 88, 99}}),
Evaluate({&operand, &scatter_indices, &updates})));
}
TEST_P(HloEvaluatorTest, EvaluateScatter_TensorFlowScatter_Mul) {
const char* hlo_text = R"(
HloModule TensorFlowScatter
mul_s32 (lhs: s32[], rhs: s32[]) -> s32[] {
lhs = s32[] parameter(0)
rhs = s32[] parameter(1)
ROOT mul = s32[] multiply(s32[] lhs, s32[] rhs)
}
ENTRY main {
operand = s32[3,3] parameter(0)
indices = s32[2] parameter(1)
updates = s32[2,3] parameter(2)
ROOT scatter = s32[3,3] scatter(operand, indices, updates),
to_apply=mul_s32,
update_window_dims={1},
inserted_window_dims={0},
scatter_dims_to_operand_dims={0},
index_vector_dim=1
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand =
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {4, 5, 6}, {7, 8, 9}});
Literal scatter_indices = LiteralUtil::CreateR1<int32>({0, 2});
Literal updates = LiteralUtil::CreateR2<int32>({{10, 20, 30}, {70, 80, 90}});
EXPECT_TRUE(LiteralTestUtil::Equal(
LiteralUtil::CreateR2<int32>({{10, 40, 90}, {4, 5, 6}, {490, 640, 810}}),
Evaluate({&operand, &scatter_indices, &updates})));
}
TEST_P(HloEvaluatorTest, EvaluateScatter_TensorFlowScatter_F32) {
const char* hlo_text = R"(
HloModule TensorFlowScatter
add_f32 (lhs: f32[], rhs: f32[]) -> f32[] {
lhs = f32[] parameter(0)
rhs = f32[] parameter(1)
ROOT add = f32[] add(f32[] lhs, f32[] rhs)
}
ENTRY main {
operand = f32[3,3] parameter(0)
indices = s32[2] parameter(1)
updates = f32[2,3] parameter(2)
ROOT scatter = f32[3,3] scatter(operand, indices, updates),
to_apply=add_f32,
update_window_dims={1},
inserted_window_dims={0},
scatter_dims_to_operand_dims={0},
index_vector_dim=1
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand = LiteralUtil::CreateR2<float>(
{{1.1, 2.2, 3.3}, {4.4, 5.5, 6.6}, {7.7, 8.8, 9.9}});
Literal scatter_indices = LiteralUtil::CreateR1<int32>({2, 1});
Literal updates =
LiteralUtil::CreateR2<float>({{0.4, 1.1, 0.7}, {2.3, 3.1, 1.6}});
EXPECT_TRUE(LiteralTestUtil::Near(
LiteralUtil::CreateR2<float>(
{{1.1, 2.2, 3.3}, {6.7, 8.6, 8.2}, {8.1, 9.9, 10.6}}),
Evaluate({&operand, &scatter_indices, &updates}), ErrorSpec{0.1, 0.01}));
}
TEST_P(HloEvaluatorTest, EvaluateScatter_TensorFlowScatter_RepeatedIndices) {
const char* hlo_text = R"(
HloModule TensorFlowScatter
add_s32 (lhs: s32[], rhs: s32[]) -> s32[] {
lhs = s32[] parameter(0)
rhs = s32[] parameter(1)
ROOT add = s32[] add(s32[] lhs, s32[] rhs)
}
ENTRY main {
operand = s32[3,3] parameter(0)
indices = s32[2] parameter(1)
updates = s32[2,3] parameter(2)
ROOT scatter = s32[3,3] scatter(operand, indices, updates),
to_apply=add_s32,
update_window_dims={1},
inserted_window_dims={0},
scatter_dims_to_operand_dims={0},
index_vector_dim=1
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand =
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {4, 5, 6}, {7, 8, 9}});
Literal scatter_indices = LiteralUtil::CreateR1<int32>({1, 1});
Literal updates = LiteralUtil::CreateR2<int32>({{10, 20, 30}, {70, 80, 90}});
EXPECT_TRUE(LiteralTestUtil::Equal(
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {84, 105, 126}, {7, 8, 9}}),
Evaluate({&operand, &scatter_indices, &updates})));
}
TEST_P(HloEvaluatorTest, EvaluateScatter_TensorFlowScatter_MultipleBatchDims) {
const char* hlo_text = R"(
HloModule TensorFlowScatterMultipleBatchDims
add_s32 (lhs: s32[], rhs: s32[]) -> s32[] {
lhs = s32[] parameter(0)
rhs = s32[] parameter(1)
ROOT add = s32[] add(s32[] lhs, s32[] rhs)
}
ENTRY main {
operand = s32[3,3] parameter(0)
indices = s32[2,2] parameter(1)
updates = s32[2,3,2] parameter(2)
ROOT scatter = s32[3,3] scatter(operand, indices, updates),
to_apply=add_s32,
update_window_dims={1},
inserted_window_dims={1},
scatter_dims_to_operand_dims={1},
index_vector_dim=2
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand =
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {4, 5, 6}, {7, 8, 9}});
Literal scatter_indices = LiteralUtil::CreateR2<int32>({{0, 2}, {2, 1}});
Literal updates = LiteralUtil::CreateR3<int32>(
{{{10, 30}, {40, 60}, {70, 90}}, {{5, 5}, {5, 5}, {5, 5}}});
EXPECT_TRUE(LiteralTestUtil::Equal(
LiteralUtil::CreateR2<int32>({{11, 7, 38}, {44, 10, 71}, {77, 13, 104}}),
Evaluate({&operand, &scatter_indices, &updates})));
}
TEST_P(HloEvaluatorTest, EvaluateScatter_TensorFlowScatterNd) {
const char* hlo_text = R"(
HloModule TensorFlowScatterNd
update_s32 (lhs: s32[], rhs: s32[]) -> s32[] {
lhs = s32[] parameter(0)
ROOT rhs = s32[] parameter(1)
}
ENTRY main {
operand = s32[3,3,2] parameter(0)
indices = s32[2,2] parameter(1)
updates = s32[2,2] parameter(2)
ROOT scatter = s32[3,3,2] scatter(operand, indices, updates),
to_apply=update_s32,
update_window_dims={1},
inserted_window_dims={0,1},
scatter_dims_to_operand_dims={0,1},
index_vector_dim=1
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand =
LiteralUtil::CreateR3<int32>({{{-1, 1}, {-2, 2}, {-3, 3}}, //
{{-4, 4}, {-5, 5}, {-6, 6}}, //
{{-7, 7}, {-8, 8}, {-9, 9}}});
Literal scatter_indices = LiteralUtil::CreateR2<int32>({{0, 0}, {1, 0}});
Literal updates = LiteralUtil::CreateR2<int32>({{-10, 10}, {-40, 40}});
Literal expected =
LiteralUtil::CreateR3<int32>({{{-10, 10}, {-2, 2}, {-3, 3}}, //
{{-40, 40}, {-5, 5}, {-6, 6}}, //
{{-7, 7}, {-8, 8}, {-9, 9}}});
EXPECT_TRUE(LiteralTestUtil::Equal(
expected, Evaluate({&operand, &scatter_indices, &updates})));
}
TEST_P(HloEvaluatorTest,
EvaluateScatter_TensorFlowScatterNd_NonDefaultIndexVectorDim) {
const char* hlo_text = R"(
HloModule TensorFlowScatterNdNonDefaultIndexVectorDim
update_s32 (lhs: s32[], rhs: s32[]) -> s32[] {
lhs = s32[] parameter(0)
ROOT rhs = s32[] parameter(1)
}
ENTRY main {
operand = s32[3,3,2] parameter(0)
indices = s32[2,2] parameter(1)
updates = s32[2,2] parameter(2)
ROOT scatter = s32[3,3,2] scatter(operand, indices, updates),
to_apply=update_s32,
update_window_dims={1},
inserted_window_dims={0,1},
scatter_dims_to_operand_dims={0,1},
index_vector_dim=0
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand =
LiteralUtil::CreateR3<int32>({{{-1, 1}, {-2, 2}, {-3, 3}}, //
{{-4, 4}, {-5, 5}, {-6, 6}}, //
{{-7, 7}, {-8, 8}, {-9, 9}}});
Literal scatter_indices = LiteralUtil::CreateR2<int32>({{0, 0}, {1, 0}});
Literal updates = LiteralUtil::CreateR2<int32>({{-10, 10}, {-20, 20}});
Literal expected =
LiteralUtil::CreateR3<int32>({{{-20, 20}, {-10, 10}, {-3, 3}}, //
{{-4, 4}, {-5, 5}, {-6, 6}}, //
{{-7, 7}, {-8, 8}, {-9, 9}}});
EXPECT_TRUE(LiteralTestUtil::Equal(
expected, Evaluate({&operand, &scatter_indices, &updates})));
}
TEST_P(HloEvaluatorTest, EvaluateScatter_DynamicUpdateSlice) {
const char* hlo_text = R"(
HloModule DynamicUpdateSlice
update_s32 (lhs: s32[], rhs: s32[]) -> s32[] {
lhs = s32[] parameter(0)
ROOT rhs = s32[] parameter(1)
}
ENTRY main {
operand = s32[3,3] parameter(0)
indices = s32[2] parameter(1)
updates = s32[1,1] parameter(2)
ROOT scatter = s32[3,3] scatter(operand, indices, updates),
to_apply=update_s32,
update_window_dims={0,1},
inserted_window_dims={},
scatter_dims_to_operand_dims={0,1},
index_vector_dim=0
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand =
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {4, 5, 6}, {7, 8, 9}});
Literal scatter_indices = LiteralUtil::CreateR1<int32>({1, 1});
Literal updates = LiteralUtil::CreateR2<int32>({{10}});
Literal expected =
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {4, 10, 6}, {7, 8, 9}});
EXPECT_TRUE(LiteralTestUtil::Equal(
expected, Evaluate({&operand, &scatter_indices, &updates})));
}
TEST_P(HloEvaluatorTest, EvaluateScatter_BatchDynamicUpdateSlice) {
const char* hlo_text = R"(
HloModule BatchDynamicUpdateSlice
update_s32 (lhs: s32[], rhs: s32[]) -> s32[] {
lhs = s32[] parameter(0)
ROOT rhs = s32[] parameter(1)
}
ENTRY main {
operand = s32[3,3] parameter(0)
indices = s32[2,2] parameter(1)
updates = s32[2,1,1] parameter(2)
ROOT scatter = s32[3,3] scatter(operand, indices, updates),
to_apply=update_s32,
update_window_dims={1,2},
inserted_window_dims={},
scatter_dims_to_operand_dims={0,1},
index_vector_dim=0
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand =
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {4, 5, 6}, {7, 8, 9}});
Literal scatter_indices = LiteralUtil::CreateR2<int32>({{2, 1}, {1, 1}});
Literal updates = LiteralUtil::CreateR3<int32>({{{10}}, {{20}}});
Literal expected =
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {4, 20, 6}, {7, 10, 9}});
EXPECT_TRUE(LiteralTestUtil::Equal(
expected, Evaluate({&operand, &scatter_indices, &updates})));
}
TEST_P(HloEvaluatorTest, EvaluateScatter_ZeroDimBounds) {
const char* hlo_text = R"(
HloModule TensorFlowScatter_ZeroDimBounds
update_s32 (lhs: s32[], rhs: s32[]) -> s32[] {
lhs = s32[] parameter(0)
ROOT rhs = s32[] parameter(1)
}
ENTRY main {
operand = s32[3,0] parameter(0)
indices = s32[2] parameter(1)
updates = s32[2,0] parameter(2)
ROOT scatter = s32[3,0] scatter(operand, indices, updates),
to_apply=update_s32,
update_window_dims={1},
inserted_window_dims={0},
scatter_dims_to_operand_dims={0},
index_vector_dim=1
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand = LiteralUtil::CreateR2<int32>({{}, {}, {}});
Literal scatter_indices = LiteralUtil::CreateR1<int32>({0, 2});
Literal updates = LiteralUtil::CreateR2<int32>({{}, {}});
EXPECT_TRUE(LiteralTestUtil::Equal(
operand, Evaluate({&operand, &scatter_indices, &updates})));
}
TEST_P(HloEvaluatorTest, EvaluateScatter_NoUpdateWindowDims) {
const string hlo_text = R"(
HloModule Scatter_NoUpdateWindowDims
add_s32 (lhs: s32[], rhs: s32[]) -> s32[] {
lhs = s32[] parameter(0)
rhs = s32[] parameter(1)
ROOT add = s32[] add(s32[] lhs, s32[] rhs)
}
ENTRY main {
operand = s32[3] parameter(0)
indices = s32[2,2,1] parameter(1)
updates = s32[2,2] parameter(2)
ROOT scatter = s32[3] scatter(operand, indices, updates),
to_apply=add_s32,
update_window_dims={},
inserted_window_dims={0},
scatter_dims_to_operand_dims={0},
index_vector_dim=2
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal operand = LiteralUtil::CreateR1<int32>({0, 1, 2});
Literal scatter_indices =
LiteralUtil::CreateR3<int32>({{{0}, {1}}, {{2}, {1}}});
Literal updates = LiteralUtil::CreateR2<int32>({{10, 20}, {30, 40}});
Literal expected = LiteralUtil::CreateR1<int32>({10, 61, 32});
EXPECT_TRUE(LiteralTestUtil::Equal(
expected, Evaluate({&operand, &scatter_indices, &updates})));
}
TEST_P(HloEvaluatorTest, EvaluateScatter_NegativeIndices) {
const char* hlo_text = R"(
HloModule TensorFlowScatter_NegativeIndices
add_s32 (lhs: s32[], rhs: s32[]) -> s32[] {
lhs = s32[] parameter(0)
rhs = s32[] parameter(1)
ROOT add = s32[] add(s32[] lhs, s32[] rhs)
}
ENTRY main {
operand = s32[3,3] parameter(0)
indices = s32[2] parameter(1)
updates = s32[2,3] parameter(2)
ROOT scatter = s32[3,3] scatter(operand, indices, updates),
to_apply=add_s32,
update_window_dims={1},
inserted_window_dims={0},
scatter_dims_to_operand_dims={0},
index_vector_dim=1
}
)";
TF_ASSERT_OK_AND_ASSIGN(std::unique_ptr<HloModule> module,
ParseAndReturnVerifiedModule(hlo_text));
Literal operand =
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {4, 5, 6}, {7, 8, 9}});
// No updates should happen for the negative indices.
Literal scatter_indices = LiteralUtil::CreateR1<int32>({-1, 2});
Literal updates = LiteralUtil::CreateR2<int32>({{10, 20, 30}, {70, 80, 90}});
EXPECT_TRUE(LiteralTestUtil::Equal(
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {4, 5, 6}, {77, 88, 99}}),
EvaluateWithModule(module.get(),
{&operand, &scatter_indices, &updates})));
}
TEST_P(HloEvaluatorTest, EvaluateScatter_OobIndices) {
const string hlo_text = R"(
HloModule BatchDynamicUpdateSlice
update_s32 (lhs: s32[], rhs: s32[]) -> s32[] {
lhs = s32[] parameter(0)
ROOT rhs = s32[] parameter(1)
}
ENTRY main {
operand = s32[3,3]{1,0} parameter(0)
indices = s32[6,2]{1,0} parameter(1)
updates = s32[6,1,1]{2,1,0} parameter(2)
ROOT scatter = s32[3,3]{1,0} scatter(operand, indices, updates),
to_apply=update_s32,
update_window_dims={1,2},
inserted_window_dims={},
scatter_dims_to_operand_dims={0,1},
index_vector_dim=1
}
)";
TF_ASSERT_OK_AND_ASSIGN(std::unique_ptr<HloModule> module,
ParseAndReturnVerifiedModule(hlo_text));
Literal operand =
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {4, 5, 6}, {7, 8, 9}});
// No updates should happen for the OOB indices.
Literal scatter_indices = LiteralUtil::CreateR2<int32>(
{{2, 7}, {2, 1}, {1, 1}, {5, 1}, {2147483647, 1}, {1, 2}});
Literal updates = LiteralUtil::CreateR3<int32>(
{{{10}}, {{20}}, {{30}}, {{40}}, {{50}}, {{60}}});
EXPECT_TRUE(LiteralTestUtil::Equal(
LiteralUtil::CreateR2<int32>({{1, 2, 3}, {4, 30, 60}, {7, 20, 9}}),
EvaluateWithModule(module.get(),
{&operand, &scatter_indices, &updates})));
}
TEST_P(HloEvaluatorTest, EvaluateScatter_OobUpdateWindow) {
const char* hlo_text = R"(
HloModule TensorFlowScatterNd_OobUpdateWindow
update_s32 (lhs: s32[], rhs: s32[]) -> s32[] {
lhs = s32[] parameter(0)
ROOT rhs = s32[] parameter(1)
}
ENTRY main {
operand = s32[3,3,2] parameter(0)
indices = s32[1,2] parameter(1)
updates = s32[1,2,2] parameter(2)
ROOT scatter = s32[3,3,2] scatter(operand, indices, updates),
to_apply=update_s32,
update_window_dims={1,2},
inserted_window_dims={0},
scatter_dims_to_operand_dims={0,1},
index_vector_dim=1
}
)";
TF_ASSERT_OK_AND_ASSIGN(std::unique_ptr<HloModule> module,
ParseAndReturnVerifiedModule(hlo_text));
Literal operand =
LiteralUtil::CreateR3<int32>({{{-1, 1}, {-2, 2}, {-3, 3}}, //
{{-4, 4}, {-5, 5}, {-6, 6}}, //
{{-7, 7}, {-8, 8}, {-9, 9}}});
Literal scatter_indices = LiteralUtil::CreateR2<int32>({{0, 2}});
Literal updates = LiteralUtil::CreateR3<int32>({{{-10, 10}, {-40, 40}}});
// Given the update window size of 2,2 and the index of 0,2, the update window
// will be OOB. So, nothing should be updated.
Literal expected = operand.Clone();
EXPECT_TRUE(LiteralTestUtil::Equal(
expected, EvaluateWithModule(module.get(),
{&operand, &scatter_indices, &updates})));
}
// Verifies that HloEvaluator evaluates a HLO instruction that performs
// element-wise comparison with 2 bfloat16 operands.
TEST_P(HloEvaluatorTest, DoesCompareBF16) {
// lhs >= rhs
auto lhs = LiteralUtil::CreateR2<bfloat16>(
{{bfloat16(0.25), bfloat16(0.35), bfloat16(0.125)},
{bfloat16(-0.25), bfloat16(-0.35), bfloat16(-0.125)}});
auto rhs = LiteralUtil::CreateR2<bfloat16>(
{{bfloat16(0.5), bfloat16(0.125), bfloat16(0.125)},
{bfloat16(0.25), bfloat16(-0.375), bfloat16(-0.127)}});
auto expected =
LiteralUtil::CreateR2<bool>({{false, true, true}, {false, true, true}});
TestBinaryOp(HloOpcode::kGe, std::move(expected), std::move(lhs),
std::move(rhs));
}
TEST_P(HloEvaluatorTest, Bf16Reduction) {
const string hlo_text = R"(
HloModule Bf16Reduction
add_bf16 (lhs: bf16[], rhs: bf16[]) -> bf16[] {
lhs = bf16[] parameter(0)
rhs = bf16[] parameter(1)
ROOT add = bf16[] add(bf16[] lhs, bf16[] rhs)
}
ENTRY main {
arg0 = bf16[4]{0} parameter(0)
init = bf16[] constant(0)
ROOT %reduce = bf16[] reduce(arg0, init), dimensions={0}, to_apply=add_bf16
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal arg = LiteralUtil::CreateR1<bfloat16>(
{bfloat16(1.0f), bfloat16(3.0f), bfloat16(-2.0f), bfloat16(42.0f)});
Literal expected = LiteralUtil::CreateR0<bfloat16>(bfloat16(44.0f));
EXPECT_TRUE(LiteralTestUtil::Equal(expected, Evaluate({&arg})));
}
TEST_P(HloEvaluatorTest, SliceWithDifferentLayout) {
// Regression test for b/114735354.
const string hlo_text = R"(
HloModule SliceWithDifferentLayout
ENTRY main {
arg = f32[2,2,2]{0,1,2} parameter(0)
ROOT %slice = f32[2,2,2]{1,0,2} slice(f32[2,2,2]{0,1,2} %arg), slice={[0:2], [0:2], [0:2]}
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
Literal arg = LiteralUtil::CreateR3WithLayout<float>(
{{{1.0f, 2.0f}, {3.0f, 4.0f}}, {{5.0f, 6.0f}, {7.0f, 8.0f}}},
LayoutUtil::MakeLayout({0, 1, 2}));
Literal actual = Evaluate({&arg});
EXPECT_TRUE(LiteralTestUtil::Equal(arg, actual));
}
TEST_P(HloEvaluatorTest, Bitcast) {
// Regression test for b/114735354.
constexpr absl::string_view hlo_text_base = R"(
HloModule Bitcast
ENTRY main {
param = %s[32,121]{1,0} parameter(0)
ROOT bitcast = %s[121,32,1]{0,1,2} bitcast(%s[32,121]{1,0} param)
}
)";
string hlo_text;
if (use_bfloat16_) {
hlo_text = absl::StrFormat(hlo_text_base, "bf16", "bf16", "bf16");
} else {
hlo_text = absl::StrFormat(hlo_text_base, "f32", "f32", "f32");
}
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
auto args = MakeFakeArguments(m_.get()).ConsumeValueOrDie();
Literal actual = Evaluate({&args[0]});
if (use_bfloat16_) {
EXPECT_TRUE(
absl::c_equal(args[0].data<bfloat16>(), actual.data<bfloat16>()));
} else {
EXPECT_TRUE(absl::c_equal(args[0].data<float>(), actual.data<float>()));
}
}
// Check that s32 under/overflow doesn't trigger a ubsan failure.
TEST_P(HloEvaluatorTest, Int32Overflow) {
// Test not applicable to bf16; only applies to signed integral types.
if (use_bfloat16_) {
return;
}
constexpr absl::string_view hlo_text = R"(
HloModule Test
ENTRY main {
c1 = s32[] constant(1073741824) // 2^30
sum = s32[] add(c1, c1) // 2^31, i.e. INT_MIN
c2 = s32[] constant(-2147483648) // -2^31
sub = s32[] subtract(c2, c1) // -2^31 - 2^30, underflows
mul = s32[] multiply(c1, c1)
ROOT tuple = (s32[], s32[], s32[]) tuple(sum, sub, mul)
}
)";
TF_ASSERT_OK_AND_ASSIGN(m_, ParseAndReturnVerifiedModule(hlo_text));
std::vector<Literal> actual = Evaluate({}).DecomposeTuple();
ASSERT_EQ(actual.size(), 3);
uint32 pow30 = uint32{1} << 30;
uint32 pow31 = uint32{1} << 31;
EXPECT_EQ(actual[0].GetFirstElement<int32>(), static_cast<int32>(pow31));
EXPECT_EQ(actual[1].GetFirstElement<int32>(),
static_cast<int32>(-(pow31 + pow30)));
EXPECT_EQ(actual[2].GetFirstElement<int32>(),
static_cast<int32>(pow31 * pow31));
}
INSTANTIATE_TEST_CASE_P(HloEvaluatorTest_Instantiation, HloEvaluatorTest,
::testing::ValuesIn(use_bf16_params));
} // namespace
} // namespace xla
| [
"gardener@tensorflow.org"
] | gardener@tensorflow.org |
4e19907d30adc80401d94773ac1e5a1d6348df3c | e4c1da99d66911522e9e17e4214c50971fb13f6c | /multi_alt_exp_Asqr_expE_vec_const_model.cpp | cab28164aecde179005221f756c185b7a88243fa | [] | no_license | stefanmeinel/MBF | 2184d6b3db03a3150b86c2cc77459233a304a163 | 71347d3959103f3207c4ecf4d3bb68f6adbd38f7 | refs/heads/master | 2023-07-11T16:01:16.288941 | 2023-06-27T19:48:55 | 2023-06-27T19:48:55 | 230,803,070 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,843 | cpp | #include "multi_alt_exp_Asqr_expE_vec_const_model.h"
multi_alt_exp_Asqr_expE_vec_const_model::multi_alt_exp_Asqr_expE_vec_const_model(string _E_str, string _dE_str, string _A_str, string _B_str, string _t_str, string _C_str, int n_exp, int m_exp, int n_vec)
{
E_str=_E_str;
dE_str=_dE_str;
A_str=_A_str;
B_str=_B_str;
t_str=_t_str;
C_str=_C_str;
nvec=n_vec;
C.resize(nvec);
Co.resize(nvec);
model=new multi_alt_exp_Asqr_expE_vec_model(E_str, dE_str, A_str, B_str, t_str, n_exp, m_exp, n_vec);
}
multi_alt_exp_Asqr_expE_vec_const_model::~multi_alt_exp_Asqr_expE_vec_const_model()
{
delete model;
}
int multi_alt_exp_Asqr_expE_vec_const_model::get_n_functions()
{
return model->get_n_functions();
}
int multi_alt_exp_Asqr_expE_vec_const_model::get_n_variables()
{
return model->get_n_variables();
}
int multi_alt_exp_Asqr_expE_vec_const_model::get_n_parameters()
{
return model->get_n_parameters()+2*nvec;
}
int multi_alt_exp_Asqr_expE_vec_const_model::get_n_constants()
{
return model->get_n_constants();
}
void multi_alt_exp_Asqr_expE_vec_const_model::set_parameters(const vector< double >& parameters)
{
for(int n=0; n<nvec; ++n)
{
C[n]=parameters[model->get_n_parameters()+n];
}
for(int n=0; n<nvec; ++n)
{
Co[n]=parameters[model->get_n_parameters()+nvec+n];
}
vector<double> tmp_params=parameters;
tmp_params.erase(tmp_params.end()-2*nvec, tmp_params.end());
model->set_parameters(tmp_params);
}
void multi_alt_exp_Asqr_expE_vec_const_model::set_constants(const vector< double >& constants)
{
model->set_constants(constants);
}
double multi_alt_exp_Asqr_expE_vec_const_model::eval_function(int function, const vector< double >& arguments)
{
return model->eval_function(function, arguments)+C[function]+alt(arguments[0]+1)*Co[function];
}
double multi_alt_exp_Asqr_expE_vec_const_model::eval_derivative(int function, int parameter, const vector< double >& arguments)
{
if(parameter < model->get_n_parameters())
{
return model->eval_derivative(function, parameter, arguments);
}
else if( (parameter - model->get_n_parameters())==function )
{
return 1;
}
else if( (parameter - model->get_n_parameters() - nvec)==function )
{
return alt(arguments[0]+1);
}
else
{
return 0;
}
}
int multi_alt_exp_Asqr_expE_vec_const_model::no_of_errors()
{
return model->no_of_errors();
}
string multi_alt_exp_Asqr_expE_vec_const_model::get_function_name(int function)
{
stringstream function_st;
function_st << model->get_function_name(function, t_str) << "+" << C_str << "__" << function+1 << "+alt(" << t_str << "+1)*" << C_str << "o__" << function+1;
return function_st.str();
}
string multi_alt_exp_Asqr_expE_vec_const_model::get_parameter_name(int parameter)
{
if(parameter < model->get_n_parameters())
{
return model->get_parameter_name(parameter);
}
else if( (parameter >= model->get_n_parameters()) && (parameter < model->get_n_parameters()+nvec) )
{
stringstream param_st;
param_st << C_str << "__" << parameter - model->get_n_parameters() + 1;
return param_st.str();
}
else if( (parameter >= model->get_n_parameters()+nvec) && (parameter < model->get_n_parameters()+2*nvec) )
{
stringstream param_st;
param_st << C_str << "o__" << parameter - model->get_n_parameters() - nvec + 1;
return param_st.str();
}
else
{
return "";
}
}
string multi_alt_exp_Asqr_expE_vec_const_model::get_variable_name(int variable)
{
return model->get_variable_name(variable);
}
string multi_alt_exp_Asqr_expE_vec_const_model::get_constant_name(int constant)
{
return model->get_constant_name(constant);
}
double multi_alt_exp_Asqr_expE_vec_const_model::alt(double x)
{
int i=static_cast<int>(x);
if(i%2==0)
{
return 1.0;
}
else
{
return -1.0;
}
}
| [
"stefan@stefanmeinel.com"
] | stefan@stefanmeinel.com |
976768df27d5640d3c4680ab742bb63be1640c77 | d22e7a298458cf2bb7fc050b59fd585cd1f7e0c4 | /source/Plugins/ScriptEnv/LuaNeuroApi/Extensions/DSP/SimpleNoise/Engine/PerlinNoise.h | 6a38462e79839062d0c24d9ed02fe3e7baf91ed5 | [
"MIT",
"CC-BY-4.0"
] | permissive | egorpushkin/neurolab | 9cad44104dcfe199aa63dd6fd9669c063e29d5e8 | 08daa763f13982d2214bbc9cd9060a0709542d7e | refs/heads/master | 2021-05-04T18:49:01.131630 | 2017-10-19T21:52:40 | 2017-10-19T21:52:40 | 106,142,310 | 2 | 0 | null | 2017-10-09T03:21:07 | 2017-10-08T01:34:09 | null | UTF-8 | C++ | false | false | 660 | h | #pragma once
namespace PerlinNoise
{
float NoisingStep(float persistence, int octaves, float zoom, int x, int y);
void Generate(unsigned int * pData, float persistence, int octaves, unsigned int width, unsigned int height, float red, float green, float blue, int seed,
float zoom);
void GenerateNormalized(unsigned int * pData, float persistence, int octaves, unsigned int width, unsigned int height, float red, float green, float blue,
int seed, float zoom);
float Noise(int x, int y);
float SmoothNoise(int x, int y);
float Interpolate(float a, float b, float x);
float InterpolatedNoise(float x, float y);
extern int seed;
} | [
"egor.pushkin@gmail.com"
] | egor.pushkin@gmail.com |
4953bb58562fd5abdc5c2e557b429501c559654f | 212c56ec5c56cbdf1e6848620e197ebf75fd9afc | /src/Bone.h | f7f4626a20d59025dc67e2a41e736f6955548533 | [] | no_license | oleynikov/Fifteen-Puzzle | 6c93df8904194c33f4218c35f4b25be8d5b15c5e | 08bb17fa12a20e10027df3b47ea7f70b5c26326f | refs/heads/master | 2020-06-06T06:59:47.085931 | 2012-11-30T14:54:58 | 2012-11-30T14:54:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,153 | h | #ifndef BONE_H
#define BONE_H
#include <QGraphicsObject>
#include <QPainter>
#include <QPen>
#include <QBrush>
class Bone : public QGraphicsObject
{
Q_OBJECT
public:
Bone(int number) : number(number)
{
}
int getNumber()const
{
return this->number;
}
protected:
virtual void mousePressEvent(QGraphicsSceneMouseEvent* event)
{
emit this->clicked(this);
}
virtual void paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget)
{
painter->drawRect(this->boundingRect());
painter->drawText(this->boundingRect(),Qt::AlignCenter,QString::number(this->number));
}
virtual QRectF boundingRect()const
{
return QRectF(5,5,Bone::size-10,Bone::size-10);
}
private:
static const int size = 50;
int number;
signals:
void clicked(Bone*);
};
#endif // BONE_H
| [
"oleynikovny@mail.ru"
] | oleynikovny@mail.ru |
efe4a916eddb2beb139566fde8a27e0f1764877a | 036fae1cf025f6adde9d6e3fbc2e7bbf53bf3e2c | /src/solvers/multispawn2.cpp | 1693c2af15194f971061b887e6219672ffd52498 | [] | no_license | nodchip/icfpc2019 | 97b0426a2dfb540f670c25d08f8cc91d48bba022 | 715848faac647666973922b5e5cc4963ceb7d621 | refs/heads/master | 2020-06-07T19:27:49.750327 | 2019-06-24T16:13:46 | 2019-06-24T16:13:46 | 193,078,687 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,808 | cpp | // based on bfs5_6.cpp but paint smaller area first.
#include <iostream>
#include <limits>
#include <cctype>
#include <cmath>
#include "map_parse.h"
#include "solver_registry.h"
#include "solver_helper.h"
using namespace std;
// clone_fastが雛形。近くにあるアイテムを拾うようにする。
namespace {
struct WrapperEngine {
WrapperEngine(Game *game, int id, int iter) : m_game(game), m_id(id), m_wrapper(game->wrappers[id].get()), m_num_manipulators(0) {
m_dstart = rand() % 2 == 0;
m_astart = rand() % 2 == 0;
m_total_wrappers++;
}
Wrapper *action(double x, double y, std::vector<Trajectory> &to_go, ConnectedComponentAssignmentForParanoid& cc_assignment) {
if (m_game->num_boosters[BoosterType::MANIPULATOR] > 0 && (m_game->num_boosters[BoosterType::MANIPULATOR] + m_total_manipulators > m_total_wrappers * m_num_manipulators)) {
if (m_num_manipulators % 2 == 0) {
m_wrapper->addManipulator(Point(0, 1 + m_num_manipulators / 2));
} else {
m_wrapper->addManipulator(Point(0, - 1 - m_num_manipulators / 2));
}
m_num_manipulators++;
m_total_manipulators++;
} else if (((m_game->map2d(m_wrapper->pos) & CellType::kSpawnPointBit) != 0) && m_game->num_boosters[BoosterType::CLONING]) {
return m_wrapper->cloneWrapper();
} else if(to_go.size()!=0){
m_wrapper->move(Direction2Char(to_go[0].last_move));
to_go.erase(to_go.begin());
}else {
auto pos = m_wrapper->pos;
std::vector<Trajectory> trajs;
if (m_initial) {
m_initial = false;
std::vector<Point> candidates;
for (int x = 0; x < m_game->map2d.W; ++x) {
for (int y = 0; y < m_game->map2d.H; ++y) {
if ((m_game->map2d(m_wrapper->pos) & CellType::kObstacleBit) == 0
&& (m_game->map2d(m_wrapper->pos) & CellType::kWrappedBit) == 0) {
candidates.emplace_back(x, y);
}
}
}
if (!candidates.empty()) {
m_initial_target = candidates[rand() % candidates.size()];
}
else {
m_initial_moving = false;
}
}
if (m_initial_moving) {
if (pos == m_initial_target) {
m_initial_moving = false;
}
else if ((m_game->map2d(m_initial_target) & CellType::kWrappedBit) != 0) {
m_initial_moving = false;
}
else {
trajs = map_parse::findTrajectory(*m_game, pos, m_initial_target, INFINITY, false, false);
if (!trajs.empty()) {
char c = Direction2Char(trajs[0].last_move);
m_wrapper->move(c);
return NULL;
}
}
}
cc_assignment.update();
if (cc_assignment.hasDisjointComponents() && cc_assignment.isComponentAssignedToWrapper(m_id)) {
Trajectory t;
if (pointToDirection(t.last_move, cc_assignment.getSuggestedMotionOfWrapper(m_id))) {
trajs = { t };
}
/*
// 割り当てられた領域に向かう
auto target = cc_assignment.getTargetOfWrapper(m_id);
trajs = map_parse::findTrajectory(*m_game, pos, target, DISTANCE_INF, false, false);
// ただし密集した孤立領域に遠くから集まるのは効率が悪いので、近い孤立領域のみ。
if (trajs.size() > 100) {
trajs.clear();
}
*/
}
if (trajs.empty()) {
// なければbfs5_6と同じ
trajs = map_parse::findNearestUnwrapped(*m_game, pos, DISTANCE_INF, m_dstart, m_astart);
}
if (trajs.size() == 0) {
m_wrapper->nop();
return NULL;
}
char c = Direction2Char(trajs[0].last_move);
m_wrapper->move(c);
//cout << m_id << "traj : move: " << c << endl;
}
return NULL;
}
Game *m_game;
int m_id;
Wrapper *m_wrapper;
int m_num_manipulators;
bool m_dstart = false;
bool m_astart = false;
static int m_total_manipulators;
static int m_total_wrappers;
bool m_initial = true;
bool m_initial_moving = true;
Point m_initial_target;
};
int WrapperEngine::m_total_manipulators = 0;
int WrapperEngine::m_total_wrappers = 0;
};
static std::vector<std::vector<Trajectory>> getItemMatrixpick(Game* game, std::vector<WrapperEngine>& ws, const int mask, const int max_dist = DISTANCE_INF, bool onlyzero = true){
std::vector<std::vector<Trajectory>> output;
const int wsize = game->wrappers.size();
output.resize(wsize);
// wrapper0以外はアイテムを明示的に探さない!!
for(int j=0;j<wsize;++j){
if(onlyzero && j!=0){
break;
}
std::vector<Trajectory> trajs = map_parse::findNearestByBit(*game, game->wrappers[j]->pos, max_dist, mask, ws[j].m_dstart, ws[j].m_astart);
output[j] = trajs;
}
return output;
}
static bool no_spawner(Game* game, const std::vector<std::vector<Trajectory>> &cmat){
for(auto &cm : cmat){
if(cm.size()>0){
const Point pt = cm[cm.size()-1].pos;
if(game->map2d(pt.x, pt.y) & CellType::kSpawnPointBit){
return false;
}
}
}
const int wsize = game->wrappers.size();
for(int j=0;j<wsize;++j){
const Point pt = game->wrappers[j]->pos;
if(game->map2d(pt.x, pt.y) & CellType::kSpawnPointBit){
return false;
}
}
return true;
}
static std::vector<Trajectory> getTrajClone(Game* game, std::vector<WrapperEngine>& ws, const int wid, const std::vector<std::vector<Trajectory>> &cmat, const int max_dist){
// 他のwrapperの計画を見た上で割り振るジョブをキメる
// 取得予約済みのアイテムの種類と場所
std::vector<int> res_item;
std::vector<Point> res_point;
// 取りに行くアイテム
int target_item = CellType::kBoosterCloningBit;
bool spawner = false;
int clone_cnt = 0;
for(auto &cm : cmat){
if(cm.size()>0){
const Point pt = cm[cm.size()-1].pos;
res_item.push_back(game->map2d(pt.x, pt.y));
if(game->map2d(pt.x, pt.y) & CellType::kSpawnPointBit){
spawner = true;
}
if(game->map2d(pt.x, pt.y) & CellType::kBoosterCloningBit){
clone_cnt += 1;
}
res_point.push_back(pt);
}
}
if(clone_cnt == (enumerateCellsByMask(game->map2d, CellType::kBoosterCloningBit, CellType::kBoosterCloningBit).size())){
return std::vector<Trajectory>(0);
}
const int wsize = game->wrappers.size();
for(int j=0;j<wsize;++j){
const Point pt = game->wrappers[j]->pos;
if(game->map2d(pt.x, pt.y) & CellType::kSpawnPointBit){
spawner = true;
}
}
if(!spawner && game->num_boosters[BoosterType::CLONING] > 0){
cout<<"no spawner found"<<endl;
target_item = CellType::kSpawnPointBit;
}
for(int i=0;i<res_point.size();++i){
// 取得済みアイテムを消した上で探索(とても危ない)
game->map2d(res_point[i].x, res_point[i].y) = CellType::kWrappedBit;
}
std::vector<Trajectory> trajs = map_parse::findNearestByBit(*game, game->wrappers[wid]->pos, max_dist, target_item, ws[wid].m_dstart, ws[wid].m_astart);
for(int i=0;i<res_point.size();++i){
// 取得済みアイテムを戻す(とても危ない)
game->map2d(res_point[i].x, res_point[i].y) = res_item[i];
}
// debug
/*
for(auto traj : trajs){
cout<<traj<<" ";
}
cout<<endl;
*/
if(trajs.size()>0){
cout<<"multispawn "<<wid<<","<<trajs.size()<<endl;
}
return trajs;
}
static std::string multispawnSolverSub(SolverParam param, Game* game, SolverIterCallback iter_callback, int iter) {
int num_wrappers = 1;
vector<WrapperEngine> ws;
bool clone_mode = (game->num_boosters[BoosterType::CLONING] > 0);
ws.emplace_back(WrapperEngine(game, 0, iter));
int epoch(0);
bool clone_exist = (enumerateCellsByMask(game->map2d, CellType::kBoosterCloningBit, CellType::kBoosterCloningBit).size() > 0);
std::vector<std::vector<Trajectory>> cmat;
cmat = std::vector<std::vector<Trajectory>>(game->wrappers.size());
ConnectedComponentAssignmentForParanoid cc_assignment(game,
10 /* distance_threshold */,
100 /* small_region_bonus */);
if(clone_exist){
//cout<<"clone found"<<endl;
}
while (!game->isEnd()) {
game->clearDebugKeyValues();
game->addDebugKeyValue("clone_exist", clone_exist);
game->addDebugKeyValue("clone_mode", clone_mode);
// cout << epoch << ": ";
//cout<<*game<<endl;
clone_exist = (enumerateCellsByMask(game->map2d, CellType::kBoosterCloningBit, CellType::kBoosterCloningBit).size() > 0);
if(cmat.size() < game->wrappers.size()){
cmat.resize(game->wrappers.size());
}
for(int i=0; i<game->wrappers.size();++i){
//cout<<cmat[i].size()<<endl;
if(clone_exist && cmat[i].size()==0){
//cout<<"trajclone"<<endl;
cmat[i] = getTrajClone(game, ws, i, cmat, DISTANCE_INF);
}else if(game->num_boosters[BoosterType::CLONING] > 0 && no_spawner(game, cmat) && cmat.size()==1){
// spawnができるのにspawnしようとしている駒が居ない場合、wrapperのtrajを上書きする
cout<<"check no spawner"<<endl;
cmat[i] = getTrajClone(game, ws, i, cmat, DISTANCE_INF);
}
}
// neighbor item search
{
std::vector<std::vector<Trajectory>> bmat;
bmat = getItemMatrixpick(game, ws, CellType::kBoosterManipulatorBit, 3, false);
for(int i=0; i<game->wrappers.size();++i){
if(bmat[i].size()!=0 && cmat[i].size()==0){
/*
cout<<"wrapper "<<i<<" item traj"<<endl;
for(auto tj : bmat[i]){
cout<<tj<<" ";
}
cout<<endl;
*/
cmat[i] = bmat[i]; // push traj to get item
}
}
}
game->addDebugKeyValue("w0_has_tgt", cmat[0].size() != 0);
//game->addDebugKeyValue("n_cc", disjointConnectedComponentsByMask(game->map2d,
// CellType::kObstacleBit | CellType::kWrappedBit, 0).size());
epoch++;
vector<int> cloned;
double x(0.0), y(0.0);
for (auto &w : game->wrappers) {
x += w->pos.x;
y += w->pos.y;
}
x /= ws.size();
y /= ws.size();
// delayed assign component - wrapper.
cc_assignment.delayUpdate();
int ws_itr = 0;
for (auto &w : ws) {
auto wc = w.action(x, y, cmat[ws_itr], cc_assignment);
ws_itr += 1;
//auto wc = w.action(x, y, std::vector<Trajectory>(0));
if (wc != NULL) {
cloned.emplace_back(num_wrappers);
num_wrappers++;
}
}
game->tick();
displayAndWait(param, game);
if (iter_callback && !iter_callback(game)) return game->getCommand();
for (auto id : cloned) {
ws.emplace_back(game, id, iter);
}
}
return game->getCommand();
}
std::string multispawn2Solver(SolverParam param, Game* game_org, SolverIterCallback iter_callback) {
srand(3333);
std::unique_ptr<Game> best_game;
int best_time = std::numeric_limits<int>::max();
for (int iter = 0; iter < 2; ++iter) {
auto copied_game = std::make_unique<Game>(*game_org);
//std::cerr << iter << " " << copied_game->wrappers.size() << std::endl;
multispawnSolverSub(param, copied_game.get(), iter_callback, iter);
if (copied_game->isEnd()) {
//std::cerr << "ITER " << iter << " => " << copied_game->time << std::endl;
//std::cerr << "Command: " << copied_game->getCommand() << std::endl;
//std::cerr << iter << " " << copied_game->wrappers.size() << std::endl;
if (copied_game->time < best_time) {
best_time = copied_game->time;
best_game = std::move(copied_game);
}
}
}
if (best_game) {
*game_org = *best_game.get();
//std::cerr << "Command: " << game_org->getCommand() << std::endl;
//std::cerr << game_org->wrappers.size() << std::endl;
}
return game_org->getCommand();
}
REGISTER_SOLVER("multispawn2", multispawn2Solver);
| [
"nodchip@gmail.com"
] | nodchip@gmail.com |
9ef9d285c2d011f4a0b9bf6d347b784dd234596e | 759f805d25b1ff9df540b94cffa0d9266d120327 | /Lab5/Exceptions.cpp | bfbdde887865c1b5660a235fae686adc92ca8300 | [] | no_license | stefana-rosca/OOP_movie | a0630ad2853bcd69581f7f4227063331c443acda | e99687eb13e648f6b8f57ea05795bc359dfe8444 | refs/heads/main | 2023-03-18T21:07:20.217422 | 2021-03-15T13:39:25 | 2021-03-15T13:39:25 | 347,983,022 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 628 | cpp | #include "Exceptions.h"
FileException::FileException(const std::string& msg) : message(msg)
{
}
const char* FileException::what()
{
return message.c_str();
}
RepositoryException::RepositoryException() : exception{}, message{ "" }
{
}
RepositoryException::RepositoryException(const std::string& msg) : message{ msg }
{
}
const char* RepositoryException::what()
{
return this->message.c_str();
}
const char* DuplicateMovieException::what()
{
return "There is another moviee with the same title and genre!";
}
const char* InexistentMovieException::what()
{
return "There are no movies with the given title and genre!";
} | [
"stefanageorgia05@gmail.com"
] | stefanageorgia05@gmail.com |
e7d036866d1eda478a50d5998e8737339eec6561 | 25180e7cf630d03aab953e9d683ccc48e1bfcc94 | /src/Commands/OneStickTank.cpp | f5ebd519298e20906cdce4496cdad72b9733041d | [] | no_license | EMU4729/FRC-Library-Cpp | 8c0b11d227a2c3d0da4beb76fd1d096037787047 | 4eaeea40c3662f01bd928cf5afa08332162c109e | refs/heads/master | 2020-03-14T22:57:40.662823 | 2018-06-04T09:59:24 | 2018-06-04T09:59:24 | 131,833,047 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,310 | cpp | /*----------------------------------------------------------------------------*/
/* Copyright (c) 2017-2018 FIRST. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory of */
/* the project. */
/*----------------------------------------------------------------------------*/
#include "OneStickTank.h"
#include "../Robot.h"
OneStickTank::OneStickTank(Joystick *leftStick) : leftStick{leftStick} {
// Use Requires() here to declare subsystem dependencies
// eg. Requires(Robot::chassis.get());
}
// Called just before this Command runs the first time
void OneStickTank::Initialize() {
}
// Called repeatedly when this Command is scheduled to run
void OneStickTank::Execute() {
Robot::driveSubsystem.tank(leftStick->GetY(), leftStick->GetY());
}
// Make this return true when this Command no longer needs to run execute()
bool OneStickTank::IsFinished() {
return false;
}
// Called once after isFinished returns true
void OneStickTank::End() {
}
// Called when another command which requires one or more of the same
// subsystems is scheduled to run
void OneStickTank::Interrupted() {
}
| [
"unswfrc@gmail.com"
] | unswfrc@gmail.com |
ffc5ad0b6acd2885ede179463a09f3626ce3f0cf | cf8ddfc720bf6451c4ef4fa01684327431db1919 | /SDK/ARKSurvivalEvolved_PrimalItemArmor_DesertClothGloves_functions.cpp | 29bbf085aee10aa6e52bdd1e5806c2cdb4e09196 | [
"MIT"
] | permissive | git-Charlie/ARK-SDK | 75337684b11e7b9f668da1f15e8054052a3b600f | c38ca9925309516b2093ad8c3a70ed9489e1d573 | refs/heads/master | 2023-06-20T06:30:33.550123 | 2021-07-11T13:41:45 | 2021-07-11T13:41:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,192 | cpp | // ARKSurvivalEvolved (329.9) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "ARKSurvivalEvolved_PrimalItemArmor_DesertClothGloves_parameters.hpp"
namespace sdk
{
//---------------------------------------------------------------------------
//Functions
//---------------------------------------------------------------------------
// Function PrimalItemArmor_DesertClothGloves.PrimalItemArmor_DesertClothGloves_C.ExecuteUbergraph_PrimalItemArmor_DesertClothGloves
// ()
// Parameters:
// int EntryPoint (Parm, ZeroConstructor, IsPlainOldData)
void UPrimalItemArmor_DesertClothGloves_C::ExecuteUbergraph_PrimalItemArmor_DesertClothGloves(int EntryPoint)
{
static auto fn = UObject::FindObject<UFunction>("Function PrimalItemArmor_DesertClothGloves.PrimalItemArmor_DesertClothGloves_C.ExecuteUbergraph_PrimalItemArmor_DesertClothGloves");
UPrimalItemArmor_DesertClothGloves_C_ExecuteUbergraph_PrimalItemArmor_DesertClothGloves_Params params;
params.EntryPoint = EntryPoint;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"sergey.2bite@gmail.com"
] | sergey.2bite@gmail.com |
2b6bfa184a83b09f5a8af157017c6faa48302d58 | 7711d649865cbb05d86b5985e6a1ee99a38df3b3 | /thirdparty-cpp/boost_1_62_0/libs/fiber/performance/qthread/overhead_join.cpp | df0799578d9967c17e46f3c9b2088774839c6c20 | [
"Apache-2.0",
"BSL-1.0"
] | permissive | nxplatform/nx-mobile | 0ae4ba8b5b20cf06a9396d685a35b4651c0eab02 | 0dc174c893f2667377cb2ef7e5ffeb212fa8b3e5 | refs/heads/master | 2021-01-17T07:35:33.860681 | 2017-04-25T10:12:30 | 2017-04-25T10:12:30 | 83,760,335 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,501 | cpp |
// Copyright Oliver Kowalke 2009.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <cstdlib>
#include <iostream>
#include <stdexcept>
#include <string>
#include <boost/atomic.hpp>
#include <boost/chrono.hpp>
#include <boost/cstdint.hpp>
#include <boost/preprocessor.hpp>
#include <boost/program_options.hpp>
#include <qthread/qthread.h>
#include "../clock.hpp"
#ifndef JOBS
#define JOBS BOOST_PP_LIMIT_REPEAT
#endif
boost::atomic< boost::uint64_t > counter( 0);
extern "C" aligned_t worker( void *)
{
++counter;
return aligned_t();
}
duration_type measure( duration_type overhead)
{
time_point_type start( clock_type::now() );
for ( std::size_t i = 0; i < JOBS; ++i) {
qthread_fork( & worker, 0, 0);
}
do
{
qthread_yield();
} while ( counter != JOBS);
duration_type total = clock_type::now() - start;
total -= overhead_clock(); // overhead of measurement
total /= JOBS; // loops
return total;
}
int main( int argc, char * argv[])
{
try
{
boost::program_options::options_description desc("allowed options");
desc.add_options()
("help", "help message");
boost::program_options::variables_map vm;
boost::program_options::store(
boost::program_options::parse_command_line(
argc,
argv,
desc),
vm);
boost::program_options::notify( vm);
if ( vm.count("help") ) {
std::cout << desc << std::endl;
return EXIT_SUCCESS;
}
setenv("QT_NUM_SHEPHERDS", "1", 1);
setenv("QT_NUM_WORKERS_PER_SHEPHERD", "1", 1);
// Setup the qthreads environment.
if ( 0 != qthread_initialize() )
throw std::runtime_error("qthreads failed to initialize\n");
duration_type overhead = overhead_clock();
boost::uint64_t res = measure( overhead).count();
std::cout << JOBS << " jobs: average of " << res << " nano seconds" << std::endl;
return EXIT_SUCCESS;
}
catch ( std::exception const& e)
{ std::cerr << "exception: " << e.what() << std::endl; }
catch (...)
{ std::cerr << "unhandled exception" << std::endl; }
return EXIT_FAILURE;
}
| [
"narongrit@3dsinteractive.com"
] | narongrit@3dsinteractive.com |
70ddaf4147f567dc99e48f10678e3f13fce626a2 | 308cf795ddafc667910885c5149ac88df8afc0e3 | /ElectricMeter.cpp | 61be02a12276c831c7cd12f74b78fb3cbd7e4c5c | [
"MIT"
] | permissive | Dashark/dam0888socket | dda87be428eb03c5f853f15e4042e3f639a84443 | 4789b61b0374ba427640c98e0e0a625439298c7e | refs/heads/master | 2022-05-18T21:02:49.110670 | 2018-12-19T08:30:58 | 2018-12-19T08:30:58 | 150,042,839 | 3 | 7 | MIT | 2019-01-31T05:05:27 | 2018-09-24T01:53:18 | C++ | UTF-8 | C++ | false | false | 4,321 | cpp | #include <glib.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <modbus.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <fcntl.h>
#include <syslog.h>
#include "json.hpp"
using json = nlohmann::json;
#include "ElectricMeter.h"
ElectricMeter::ElectricMeter(int id,int fd,modbus_t *modbus_rtu_ctx)
{
this->id=id;
this->fd=fd;
this->modbus_rtu_ctx=modbus_rtu_ctx;
js_= R"({
"data": {
"Ua":0,
"Ub":0,
"Uc":0,
"Ia":0,
"Ib":0,
"Ic":0,
"Pa":0,
"Pb":0,
"Pc":0,
"Pt":0,
"ImpEp":0
},
"id": 0,
"electricMeterid": 0
})"_json;
}
ElectricMeter::~ElectricMeter()
{
}
//这是采集电表数据的方法;采集的数据会写入js_之中;
int ElectricMeter::pd666_callback ()
{
if (modbus_set_socket (modbus_rtu_ctx,fd) == -1) { //设置modbus的文件描述编号
fprintf (stderr, "modbus_set_socket falied @ fd = %d\n",fd);
return -1;
};
if (modbus_set_slave (modbus_rtu_ctx,id) == -1) { // PD666-3S4数显表设置的ID
fprintf (stderr, "modbus_set_slave falied @ ID = %d\n", id);
return -1;
}
int IrAt = 0, UrAt = 0; //电流互感器, 电压互感器变比
uint16_t parameter[2] = {0};
int rc = modbus_read_registers (modbus_rtu_ctx, 0x06, 2, parameter);
if (rc > 0) {
IrAt = parameter[0];
UrAt = parameter[1];
printf ("IrAt = %d UrAt = %d\n", IrAt, UrAt);
} else {
return -1;
}
uint16_t electricityData[20] = {0}; //二次测电量数据
rc = modbus_read_registers (modbus_rtu_ctx, 0x2006, 20, electricityData);
if (rc > 0) {
js_["Ua"] = modbus_get_float_dcba (&electricityData[0]) * UrAt * 0.1 * 0.1;
//float Ua = modbus_get_float_dcba (&electricityData[0]) * UrAt * 0.1 * 0.1;
js_["Ub"] = modbus_get_float_dcba (&electricityData[2]) * UrAt * 0.1 * 0.1;
//float Ub = modbus_get_float_dcba (&electricityData[2]) * UrAt * 0.1 * 0.1;
js_["Uc"] = modbus_get_float_dcba (&electricityData[4]) * UrAt * 0.1 * 0.1;
// float Uc = modbus_get_float_dcba (&electricityData[4]) * UrAt * 0.1 * 0.1;
// printf ("Ua = %f Ub = %f Uc = %f\n", Ua, Ub, Uc); //电压
js_["Ia"] = modbus_get_float_dcba (&electricityData[6]) * IrAt * 0.001;
// float Ia = modbus_get_float_dcba (&electricityData[6]) * IrAt * 0.001;
js_["Ib"] = modbus_get_float_dcba (&electricityData[8]) * IrAt * 0.001;
// float Ib = modbus_get_float_dcba (&electricityData[8]) * IrAt * 0.001;
js_["Ic"] = modbus_get_float_dcba (&electricityData[10]) * IrAt * 0.001;
// float Ic = modbus_get_float_dcba (&electricityData[10]) * IrAt * 0.001;
// printf ("Ia = %f Ib = %f Ic = %f\n", Ia, Ib, Ic); //电流
js_["Pt"] = modbus_get_float_dcba (&electricityData[12]) * UrAt * IrAt * 0.1 * 0.1;
js_["Pa"] = modbus_get_float_dcba (&electricityData[14]) * UrAt * IrAt * 0.1 * 0.1;
js_["Pb"] = modbus_get_float_dcba (&electricityData[16]) * UrAt * IrAt * 0.1 * 0.1;
js_["Pc"] = modbus_get_float_dcba (&electricityData[18]) * UrAt * IrAt * 0.1 * 0.1;
// printf ("Pt = %f, Pa = %f Pb = %f Pc = %f\n", Pt, Pa, Pb, Pc); //功率
} else {
return -1;
}
uint16_t energyData[2] = {0}; //正向有功总电能
rc = modbus_read_registers (modbus_rtu_ctx, 0x401E, 2, energyData);
if (rc > 0) {
js_["ImpEp"] = modbus_get_float_dcba (energyData) * UrAt * IrAt*0.1;
// printf ("ImpEp = %f\n\n\n\n\n", ImpEp);
} else {
printf("rc<=0----2");
return -1;
}
}
void ElectricMeter::creatElectricMeter(){
syslog(LOG_INFO, "现在开始查询电表数据");
//char* c_id=id;
syslog(LOG_INFO, "fd:%d",fd);
pd666_callback ();
std::string str_js_=js_.dump();
syslog(LOG_INFO, "json:%s",str_js_.c_str());
}
| [
"minweiilovyou@gmail.com"
] | minweiilovyou@gmail.com |
0dff8e230ea20a5cd175a7fe84ca87b2a9975327 | 998d4ce1054987f24562219bd6f79c37cbaa19c2 | /Fudan/0715/B.cpp | b0b7d6b6a36987c3d00a259d711a234f7c3d8a02 | [] | no_license | tankche1/ACM-NOI | 0cedccd7f5fa53070c03cbc1845d5de06385f52b | 1cb3d1fc08493e62c5cb4396e0352abef65b93f8 | refs/heads/master | 2022-12-13T03:22:18.971576 | 2022-12-05T15:56:34 | 2022-12-05T15:56:34 | 98,779,042 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,557 | cpp | # include<stdio.h>
# include<string.h>
# include<algorithm>
using namespace std;
int n,m;
int x1[110],y1[110],x2[110],y2[110];
int dp[17][17][17][17];
int p[4];
bool bad[17][17][17][17];
int mod=100000;
int main(){
int tcase,tnum=0;
scanf("%d",&tcase);
while(tcase--){
printf("Case %d: ",++tnum);
scanf("%d%d",&n,&m);
for(int i=1;i<=m;i++){
scanf("%d%d%d%d",&x1[i],&y1[i],&x2[i],&y2[i]);
x1[i]--;x2[i]--;//y1[i]--;y2[i]--;
}
memset(bad,false,sizeof(bad));
memset(dp,0,sizeof(dp));
dp[0][0][0][0]=1;
for(p[0]=0;p[0]<=n;p[0]++)
for(p[1]=0;p[1]<=n;p[1]++)
for(p[2]=0;p[2]<=n;p[2]++)
for(p[3]=0;p[3]<=n;p[3]++){
//dp[p[0]][p[1]][p[2]][p[3]]=1;
for(int j=1;j<=m;j++){
if((p[x1[j]]>=y1[j])^(p[x2[j]]>=y2[j])){
bad[p[0]][p[1]][p[2]][p[3]]=1;//,dp[p[0]][p[1]][p[2]][p[3]]=0;break;
}
}
}
for(int k=1;k<=256;k++){
for(int num=0;num<4;num++)
for(p[0]=0;p[0]<=n;p[0]++)
for(p[1]=0;p[1]<=n;p[1]++)
for(p[2]=0;p[2]<=n;p[2]++)
for(p[3]=0;p[3]<=n;p[3]++){
int &tmp=dp[p[0]][p[1]][p[2]][p[3]];
if(p[num]){
p[num]--;tmp+=dp[p[0]][p[1]][p[2]][p[3]];
if(tmp>=mod) tmp-=mod;
p[num]++;
}
}
for(p[0]=0;p[0]<=n;p[0]++)
for(p[1]=0;p[1]<=n;p[1]++)
for(p[2]=0;p[2]<=n;p[2]++)
for(p[3]=0;p[3]<=n;p[3]++){
if(bad[p[0]][p[1]][p[2]][p[3]]) dp[p[0]][p[1]][p[2]][p[3]]=0;
}
}
printf("%05d\n",dp[n][n][n][n]);
}
return 0;
}
| [
"15307130191@fudan.edu.cn"
] | 15307130191@fudan.edu.cn |
2d7084f2a90d0a3ff64392e877196f8ae2c1923f | 310a5db163b59cd83faa89464e412701fc9593ad | /CoinsServer/RobotManager.h | c9b8d7bdf3537a7fc78439ae9f95f9520b0fa549 | [] | no_license | chinabin/XTMJ | f97303818d408044a3c016e3f52d46d3a28d990e | 0dcc703b51dc869c3c041e145875f4b9f23a46b4 | refs/heads/master | 2021-10-09T15:20:23.322133 | 2018-12-30T12:07:51 | 2018-12-30T12:07:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 581 | h | #ifndef _ROBOTMANAGER_H
#define _ROBOTMANAGER_H
#include "LSingleton.h"
#include "Robot.h"
class RobotManager :public LSingleton<RobotManager>
{
public:
RobotManager(void);
~RobotManager(void);
virtual bool Init();
virtual bool Final();
void Tick();
RobotPtr CaptureRotot();
void ReleaseRotot( Lint id );
private:
boost::mutex m_mutex;
std::map<Lint,RobotPtr> m_RobotList;
std::queue<Lint> m_RobotFreeList; // 自由的AI
std::set<Lint> m_RobotUseList; // 正在使用的AI
};
#define gRobotManager RobotManager::Instance()
#endif
| [
"jlj0316@126.com"
] | jlj0316@126.com |
37e85dd8dfdc982c0920af8ec46f30717ec3d4e1 | 4d42762ddb5034b84585170ca320f9903024fa7f | /build/iOS/Debug/include/Uno.Text.StringBuilder.h | 2c7c0c1620b0d6907e6c12daf30f3028b502838b | [] | no_license | nikitph/omkareshwar-ios | 536def600f378946b95362e2e2f98f8f52b588e0 | 852a1d802b76dbc61c2c45164f180004b7d667e6 | refs/heads/master | 2021-01-01T18:58:16.397969 | 2017-08-01T18:53:20 | 2017-08-01T18:53:20 | 98,473,502 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,792 | h | // This file was generated based on '/Users/Omkareshwar/Library/Application Support/Fusetools/Packages/UnoCore/1.1.3/source/uno/text/$.uno'.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Uno.Object.h>
namespace g{namespace Uno{namespace Text{struct StringBuilder;}}}
namespace g{namespace Uno{namespace Text{struct StringBuilderElement;}}}
namespace g{
namespace Uno{
namespace Text{
// public sealed class StringBuilder :45
// {
uType* StringBuilder_typeof();
void StringBuilder__ctor__fn(StringBuilder* __this);
void StringBuilder__Append_fn(StringBuilder* __this, uChar* c, StringBuilder** __retval);
void StringBuilder__Append1_fn(StringBuilder* __this, uArray* chars, StringBuilder** __retval);
void StringBuilder__Append2_fn(StringBuilder* __this, uString* str, StringBuilder** __retval);
void StringBuilder__AppendLine_fn(StringBuilder* __this, uString* str, StringBuilder** __retval);
void StringBuilder__get_Length_fn(StringBuilder* __this, int* __retval);
void StringBuilder__set_Length_fn(StringBuilder* __this, int* value);
void StringBuilder__get_MaxCapacity_fn(StringBuilder* __this, int* __retval);
void StringBuilder__New1_fn(StringBuilder** __retval);
void StringBuilder__ToString_fn(StringBuilder* __this, uString** __retval);
struct StringBuilder : uObject
{
uStrong< ::g::Uno::Text::StringBuilderElement*> firstElement;
uStrong< ::g::Uno::Text::StringBuilderElement*> lastElement;
int _Length;
void ctor_();
StringBuilder* Append(uChar c);
StringBuilder* Append1(uArray* chars);
StringBuilder* Append2(uString* str);
StringBuilder* AppendLine(uString* str);
int Length();
void Length(int value);
int MaxCapacity();
static StringBuilder* New1();
};
// }
}}} // ::g::Uno::Text
| [
"nikitph@gmail.com"
] | nikitph@gmail.com |
3d8adc601cd807cd8fc648b3d3e8663648ab737a | b9f513613df111975088d95315ab2fb69f63bb0c | /perception_oru/ndt_map/src/ndt_map.cpp | a6a8048270f3bd73629e0de45da660af45d03298 | [] | no_license | waldt/slam | c1f700fc5401d55e0e129c6f88f693c3534918b5 | ec251030a938b1dbae611f35575e6a7e73a7624a | refs/heads/master | 2020-03-11T14:25:20.470099 | 2018-04-18T00:41:55 | 2018-04-18T00:41:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 62,407 | cpp | #include <Eigen/Eigen>
#include <pcl/point_cloud.h>
#include <pcl/features/feature.h>
#include <pcl/common/common.h>
#include <string>
#include <climits>
//#include <ndt_map/oc_tree.h>
#include <ndt_map/ndt_map.h>
#include <ndt_map/lazy_grid.h>
#include <ndt_map/cell_vector.h>
#include <cstring>
#include <cstdio>
namespace lslgeneric {
/**
* loadPointCloud - You can call this if you are only interested in dealing with one scan
* without need for fusing several ones or representing empty space and occupancy
*
* Otherwise you should always call addPointCloud (or if you don't want occupancy then addPointCloudSimple)
*
* \param pc the PointCloud that is to be loaded
* \note every subsequent call will destroy the previous map!
*/
void NDTMap::loadPointCloud(const pcl::PointCloud<pcl::PointXYZ> &pc, double range_limit) {
if (index_ != NULL) {
//std::cout<<"CLONE INDEX\n";
SpatialIndex *si = index_->clone();
//cout<<"allocating index\n";
if (!isFirstLoad_) {
//std::cout<<"deleting old index\n";
delete index_;
}
isFirstLoad_ = false;
index_ = si;
} else {
//NULL index in constructor, abort!
//ERR("constructor must specify a non-NULL spatial index\n");
return;
}
LazyGrid *lz = dynamic_cast<LazyGrid*>(index_);
if (lz == NULL) {
fprintf(stderr, "Unfortunately This works only with Lazygrid!\n");
exit(1);
}
if (index_ == NULL) {
//ERR("Problem creating index, unimplemented method\n");
return;
}
pcl::PointCloud<pcl::PointXYZ>::const_iterator it = pc.points.begin();
if (guess_size_) {
double maxDist = 0;//, distCeil = 200;
Eigen::Vector3d centroid(0, 0, 0);
int npts = 0;
while (it != pc.points.end()) {
Eigen::Vector3d d;
if (std::isnan(it->x) || std::isnan(it->y) || std::isnan(it->z)) {
it++;
continue;
}
d << it->x, it->y, it->z;
if (range_limit > 0) {
if (d.norm() > range_limit) {
it++;
continue;
}
}
centroid += d;
it++;
npts++;
}
centroid /= (double)npts;
double maxz = -1000, minz = 10000;
//Eigen::Vector4f centroid(0,0,0,0);
//pcl::compute3DCentroid(pc,centroid);
//compute distance to furthest point
it = pc.points.begin();
while (it != pc.points.end()) {
Eigen::Vector3d d;
if (std::isnan(it->x) || std::isnan(it->y) || std::isnan(it->z)) {
it++;
continue;
}
if (range_limit > 0) {
d << it->x, it->y, it->z;
if (d.norm() > range_limit) {
it++;
continue;
}
}
d << centroid(0) - it->x, centroid(1) - it->y, centroid(2) - it->z;
double dist = d.norm();
maxDist = (dist > maxDist) ? dist : maxDist;
maxz = ((centroid(2) - it->z) > maxz) ? (centroid(2) - it->z) : maxz;
minz = ((centroid(2) - it->z) < minz) ? (centroid(2) - it->z) : minz;
it++;
}
// cout<<"Points = " <<pc.points.size()<<" maxDist = "<<maxDist<<endl;
NDTCell *ptCell = new NDTCell();
index_->setCellType(ptCell);
delete ptCell;
index_->setCenter(centroid(0), centroid(1), centroid(2));
if (map_sizex > 0 && map_sizey > 0 && map_sizez > 0) {
index_->setSize(map_sizex, map_sizey, map_sizez);
} else {
index_->setSize(4 * maxDist, 4 * maxDist, 3 * (maxz - minz));
}
} else {
//set sizes
NDTCell *ptCell = new NDTCell();
index_->setCellType(ptCell);
delete ptCell;
index_->setCenter(centerx, centery, centerz);
if (map_sizex > 0 && map_sizey > 0 && map_sizez > 0) {
index_->setSize(map_sizex, map_sizey, map_sizez);
}
}
// ROS_INFO("centroid is %f,%f,%f", centroid(0),centroid(1),centroid(2));
// ROS_INFO("maxDist is %lf", maxDist);
it = pc.points.begin();
while (it != pc.points.end()) {
Eigen::Vector3d d;
if (std::isnan(it->x) || std::isnan(it->y) || std::isnan(it->z)) {
it++;
continue;
}
if (range_limit > 0) {
d << it->x, it->y, it->z;
if (d.norm() > range_limit) {
it++;
continue;
}
}
index_->addPoint(*it);
NDTCell *ptCell;
lz->getNDTCellAt(*it, ptCell);
#ifdef REFACTORED
if (ptCell != NULL) {
// std::cerr<<"adding to update set\n";
update_set.insert(ptCell);
}
#endif
it++;
}
isFirstLoad_ = false;
}
/**
* loadPointCloudCentroid - A special load function to enable the matching of centroids (create alligned maps)
* \param pc the PointCloud that is to be loaded
* \note every subsequent call will destroy the previous map!
*/
void NDTMap::loadPointCloudCentroid(const pcl::PointCloud<pcl::PointXYZ> &pc, const Eigen::Vector3d &origin,
const Eigen::Vector3d &old_centroid, const Eigen::Vector3d &map_size,
double range_limit) {
if (index_ != NULL) {
SpatialIndex *si = index_->clone();
if (!isFirstLoad_) delete index_;
isFirstLoad_ = false;
index_ = si;
} else {
return;
}
if (index_ == NULL) return; ///Should never happen!
NDTCell *ptCell = new NDTCell();
index_->setCellType(ptCell);
delete ptCell;
LazyGrid *lz = dynamic_cast<LazyGrid*>(index_);
if (lz == NULL) {
fprintf(stderr, "Unfortunately This works only with Lazygrid!\n");
exit(1);
}
Eigen::Vector3d diff = origin - old_centroid; //-origin;
double cx = 0, cy = 0, cz = 0;
lz->getCellSize(cx, cy, cz);
///How many cell to each direction is the new origin from old one
Eigen::Vector3d centroid;
centroid(0) = old_centroid(0) + floor(diff(0) / cx) * cx;
centroid(1) = old_centroid(1) + floor(diff(1) / cy) * cy;
centroid(2) = old_centroid(2) + floor(diff(2) / cz) * cz;
index_->setCenter(centroid(0), centroid(1), centroid(2));
//index_->setCenter(origin(0),origin(1),origin(2));
index_->setSize(map_size(0), map_size(1), map_size(2));
//lz->initializeAll();
fprintf(stderr, "centroid is %lf,%lf,%lf (origin: %lf %lf %lf) (map_size %lf %lf %lf) N=%d", centroid(0), centroid(1), centroid(2), origin(0), origin(1), origin(2), map_size(0), map_size(1), map_size(2), (int)pc.size());
// ROS_INFO("centroid is %f,%f,%f", centroid(0),centroid(1),centroid(2));
// ROS_INFO("maxDist is %lf", maxDist);
pcl::PointCloud<pcl::PointXYZ>::const_iterator it = pc.points.begin();
while (it != pc.points.end()) {
Eigen::Vector3d d;
if (std::isnan(it->x) || std::isnan(it->y) || std::isnan(it->z)) {
it++;
continue;
}
// std::cout << "centoroid add point [" << it->x << "," << it->y << "," <<it->z <<std::endl;
if (range_limit > 0) {
d << it->x, it->y, it->z;
d = d - origin;
if (d.norm() > range_limit) {
it++;
continue;
}
}
//fprintf(stderr,"HEP!");
index_->addPoint(*it);
NDTCell *ptCell = NULL;
lz->getNDTCellAt(*it, ptCell);
#ifdef REFACTORED
if (ptCell != NULL) {
update_set.insert(ptCell);
// std::cout << "insert" << std::endl;
}
// else {
// std::cout << "invalid cell..." << *it << std::endl;
// int indX, indY, indZ;
// lz->getIndexForPoint(*it, indX, indY, indZ);
// std::cout << "ind : " << indX << "," << indY << "," << indZ << std::endl;
// }
{
// int indX, indY, indZ;
// lz->getIndexForPoint(*it, indX, indY, indZ);
// // std::cout << "ind : " << indX << "," << indY << "," << indZ << std::endl;
// double dx,dy,dz;
// lz->getCenter(dx,dy,dz);
// // std::cout << "center : " << dx << "," << dy << "," << dz << std::endl;
// int indX, indY, indZ;
// lz->getGridSize(indX, indY, indZ);
// // std::cout << "gridsize : " << indX << "," << indY << "," << indZ << std::endl;
}
#endif
it++;
}
isFirstLoad_ = false;
}
/**
* Just adds the points, without raytracing and such
*/
void NDTMap::addPointCloudSimple(const pcl::PointCloud<pcl::PointXYZ> &pc, double maxz) {
if (isFirstLoad_) {
loadPointCloud( pc);
return;
}
pcl::PointCloud<pcl::PointXYZ>::const_iterator it = pc.points.begin();
it = pc.points.begin();
LazyGrid *lz = dynamic_cast<LazyGrid*>(index_);
if (lz == NULL) {
fprintf(stderr, "Unfortunately This works only with Lazygrid!\n");
exit(1);
}
while (it != pc.points.end()) {
if (std::isnan(it->x) || std::isnan(it->y) || std::isnan(it->z)) {
it++;
continue;
}
if (it->z > maxz) {
it++;
continue;
}
index_->addPoint(*it);
NDTCell *ptCell;
lz->getNDTCellAt(*it, ptCell);
#ifdef REFACTORED
if (ptCell != NULL) update_set.insert(ptCell);
#endif
it++;
}
}
/**
* Add a distribution to the map
*/
void NDTMap::addDistributionToCell(const Eigen::Matrix3d &ucov, const Eigen::Vector3d &umean, unsigned int numpointsindistribution,
float r, float g, float b, unsigned int maxnumpoints, float max_occupancy) {
pcl::PointXYZ pt;
pt.x = umean[0];
pt.y = umean[1];
pt.z = umean[2];
LazyGrid *lz = dynamic_cast<LazyGrid*>(index_);
if (lz == NULL) {
fprintf(stderr, "NOT LAZY GRID!!!\n");
exit(1);
}
NDTCell *ptCell = NULL;
// lz->getNDTCellAt(pt,ptCell);
lz->getCellAtAllocate(pt, ptCell);
if (ptCell != NULL) {
//std::cout<<"BEFORE\n";
//std::cout<<"had G "<<ptCell->hasGaussian_<<" occ "<<ptCell->getOccupancy()<<std::endl;
// std::cout<<umean.transpose()<<" "<<numpointsindistribution <<std::endl;
// std::cout<<ucov<<std::endl;
// std::cout<<ptCell->getMean().transpose()<<std::endl;
// std::cout<<ptCell->getCov()<<std::endl;
ptCell->updateSampleVariance(ucov, umean, numpointsindistribution, true, max_occupancy, maxnumpoints);
ptCell->setRGB(r, g, b);
// std::cout<<"AFTER\n";
// std::cout<<ptCell->getMean().transpose()<<std::endl;
// std::cout<<ptCell->getCov()<<std::endl;
} else {
// std::cerr << "addDistributionToCell: failed to get a cell to add the distribution to" << std::endl;
}
}
///Get the cell for which the point fall into (not the closest cell)
bool NDTMap::getCellAtPoint(const pcl::PointXYZ &refPoint, NDTCell *&cell) {
LazyGrid *lz = dynamic_cast<LazyGrid*>(index_);
if (lz == NULL) {
fprintf(stderr, "NOT LAZY GRID!!!\n");
exit(1);
}
lz->getNDTCellAt(refPoint, cell);
return (cell != NULL);
}
/**
* Adds a new cloud: NDT-OM update step
*/
void NDTMap::addPointCloud(const Eigen::Vector3d &origin, const pcl::PointCloud<pcl::PointXYZ> &pc, double classifierTh, double maxz,
double sensor_noise, double occupancy_limit) {
if (isFirstLoad_) {
loadPointCloud( pc);
return;
}
if (index_ == NULL) {
//ERR("Problem creating index, unimplemented method\n");
return;
}
pcl::PointCloud<pcl::PointXYZ>::const_iterator it = pc.points.begin();
LazyGrid *lz = dynamic_cast<LazyGrid*>(index_);
if (lz == NULL) {
fprintf(stderr, "NOT LAZY GRID!!!\n");
exit(1);
}
pcl::PointXYZ po, pt;
po.x = origin(0);
po.y = origin(1);
po.z = origin(2);
NDTCell* ptCell = NULL;
#ifdef REFACTORED
std::vector< NDTCell*> cells;
bool updatePositive = true;
double max_range = 200.;
while (it != pc.points.end()) {
if (std::isnan(it->x) || std::isnan(it->y) || std::isnan(it->z)) {
it++;
continue;
}
Eigen::Vector3d diff;
diff << it->x - origin(0), it->y - origin(1), it->z - origin(2);
double l = diff.norm();
if (l > max_range) {
fprintf(stderr, "Very long distance (%lf) :( \n", l);
it++;
continue;
}
cells.clear();
if (!lz->traceLine(origin, *it, diff, maxz, cells)) {
it++;
continue;
}
for (unsigned int i = 0; i < cells.size(); i++) {
ptCell = cells[i];
if (ptCell != NULL) {
double l2target = 0;
if (ptCell->hasGaussian_) {
Eigen::Vector3d out, pend, vpt;
pend << it->x, it->y, it->z;
double lik = ptCell->computeMaximumLikelihoodAlongLine(po, *it, out);
l2target = (out - pend).norm();
double dist = (origin - out).norm();
if (dist > l) continue; ///< don't accept points further than the measurement
l2target = (out - pend).norm(); ///<distance to endpoint
double sigma_dist = 0.5 * (dist / 30.0); ///test for distance based sensor noise
double snoise = sigma_dist + sensor_noise;
double thr = exp(-0.5 * (l2target * l2target) / (snoise * snoise)); ///This is the probability of max lik point being endpoint
lik *= (1.0 - thr);
if (lik < 0.3) continue;
lik = 0.1 * lik + 0.5; ///Evidence value for empty - alpha * p(x);
double logoddlik = log( (1.0 - lik) / (lik) );
//ptCell->updateEmpty(logoddlik,l2target);
//fprintf(stderr,"[E=%.2lf] ", logoddlik);
ptCell->updateOccupancy(logoddlik, occupancy_limit);
if (ptCell->getOccupancy() <= 0) ptCell->hasGaussian_ = false;
} else {
// ptCell->updateEmpty(-0.2,l2target); ///The cell does not have gaussian, so we mark that we saw it empty...
ptCell->updateOccupancy(-0.2, occupancy_limit);
if (ptCell->getOccupancy() <= 0) ptCell->hasGaussian_ = false;
}
}
//update_set.insert(ptCell);
}
if (updatePositive) {
ptCell = dynamic_cast<NDTCell*>(index_->addPoint(*it));
if (ptCell != NULL) {
update_set.insert(ptCell);
}
}
it++;
}
isFirstLoad_ = false;
#else
double centerX, centerY, centerZ;
lz->getCenter(centerX, centerY, centerZ);
double cellSizeX, cellSizeY, cellSizeZ;
lz->getCellSize(cellSizeX, cellSizeY, cellSizeZ);
int sizeX, sizeY, sizeZ;
lz->getGridSize(sizeX, sizeY, sizeZ);
NDTCell ****dataArray = lz->getDataArrayPtr();
double min1 = std::min(cellSizeX, cellSizeY);
double min2 = std::min(cellSizeZ, cellSizeY);
double resolution = std::min(min1, min2); ///Select the smallest resolution
while (it != pc.points.end()) {
if (std::isnan(it->x) || std::isnan(it->y) || std::isnan(it->z)) {
it++;
continue;
}
Eigen::Vector3d diff;
diff << it->x - origin(0), it->y - origin(1), it->z - origin(2);
double l = diff.norm();
int N = l / (resolution);
if (l > 200) {
fprintf(stderr, "Very long distance (%lf) :( \n", l);
it++;
continue;
}
if (resolution < 0.01) {
fprintf(stderr, "Resolution very very small (%lf) :( \n", resolution);
it++;
continue;
}
if (N <= 0) {
fprintf(stderr, "N=%d (r=%lf l=%lf) :( ", N, resolution, l);
it++;
continue;
}
diff = diff / (float)N;
bool updatePositive = true;
if (it->z > maxz) {
it++;
continue;
}
int idxo = 0, idyo = 0, idzo = 0;
for (int i = 0; i < N - 1; i++) {
pt.x = origin(0) + ((float)(i + 1)) * diff(0);
pt.y = origin(1) + ((float)(i + 1)) * diff(1);
pt.z = origin(2) + ((float)(i + 1)) * diff(2);
int idx, idy, idz;
idx = (int)(((pt.x - centerX) / cellSizeX + 0.5) + sizeX / 2);
idy = (int)(((pt.y - centerY) / cellSizeY + 0.5) + sizeY / 2);
idz = (int)(((pt.z - centerZ) / cellSizeZ + 0.5) + sizeZ / 2);
///We only want to check every cell once, so
///increase the index if we are still in the same cell
if (idx == idxo && idy == idyo && idz == idzo) {
continue;
} else {
idxo = idx;
idyo = idy, idzo = idz;
}
/// Check the validity of the index
if (idx < sizeX && idy < sizeY && idz < sizeZ && idx >= 0 && idy >= 0 && idz >= 0) {
//fprintf(stderr,"(in)");
ptCell = (dataArray[idx][idy][idz]);
} else {
//fprintf(stderr,"(out)");
continue;
}
if (ptCell != NULL) {
double l2target = 0;
if (ptCell->hasGaussian_) {
Eigen::Vector3d out, pend, vpt;
pend << it->x, it->y, it->z;
double lik = ptCell->computeMaximumLikelihoodAlongLine(po, pt, out);
l2target = (out - pend).norm();
double dist = (origin - out).norm();
if (dist > l) continue; ///< don't accept points further than the measurement
l2target = (out - pend).norm(); ///<distance to endpoint
double sigma_dist = 0.5 * (dist / 30.0); ///test for distance based sensor noise
double snoise = sigma_dist + sensor_noise;
double thr = exp(-0.5 * (l2target * l2target) / (snoise * snoise)); ///This is the probability of max lik point being endpoint
lik *= (1.0 - thr);
lik = 0.2 * lik + 0.5; ///Evidence value for empty - alpha * p(x);
double logoddlik = log( (1.0 - lik) / (lik) );
ptCell->updateEmpty(logoddlik, l2target);
} else {
ptCell->updateEmpty(-0.2, l2target); ///The cell does not have gaussian, so we mark that we saw it empty...
}
} else {
index_->addPoint(pt); ///Add fake point to initialize!
}
}
if (updatePositive) index_->addPoint(*it);
it++;
}
isFirstLoad_ = false;
#endif
}
/**
* Add new pointcloud to map - Updates the occupancy using the mean values of
* a local map generated from an observation
*
* Performs raytracing, updates conflicts and adds points to cells
* computeNDTCells must be called after calling this
*
* @param &origin is the position of the sensor, from where the scan has been taken from.
* @param &pc is the pointcloud to be added
* @param &localmapsize The dimensions of the local map used for computing the gaussians
* @param maxnumpoints Defines the forgetting factor (default 100000) the smaller the value the faster the adaptation
* @param occupancy_limit Clamping threshold for log-odds value
* @param maxz threshold for the maximum z-coordinate value for the measurement point_cloud
* @param sensor_noise The expected standard deviation of the sensor noise
*/
void NDTMap::addPointCloudMeanUpdate(const Eigen::Vector3d &origin,
const pcl::PointCloud<pcl::PointXYZ> &pc,
const Eigen::Vector3d &localmapsize,
unsigned int maxnumpoints, float occupancy_limit, double maxz, double sensor_noise) {
if (isFirstLoad_) {
//fprintf(stderr,"First load... ");
loadPointCloud(pc);
computeNDTCells();
//fprintf(stderr,"DONE!");
return;
}
if (index_ == NULL) {
return;
}
LazyGrid *lz = dynamic_cast<LazyGrid*>(index_);
if (lz == NULL) {
fprintf(stderr, "NOT LAZY GRID!!!\n");
exit(1);
}
///fprintf(stderr,"UPDATING\n");
double centerX, centerY, centerZ;
lz->getCenter(centerX, centerY, centerZ);
double cellSizeX, cellSizeY, cellSizeZ;
lz->getCellSize(cellSizeX, cellSizeY, cellSizeZ);
int sizeX, sizeY, sizeZ;
lz->getGridSize(sizeX, sizeY, sizeZ);
Eigen::Vector3d old_centroid;
old_centroid(0) = centerX;
old_centroid(1) = centerY;
old_centroid(2) = centerZ;
double min1 = std::min(cellSizeX, cellSizeY);
double min2 = std::min(cellSizeZ, cellSizeY);
double resolution = std::min(min1, min2); ///Select the smallest resolution
//fprintf(stderr,"1:");
///Lets first create a local ndmap (this really works only if we have lazy grid as well)
lslgeneric::NDTMap ndlocal(new lslgeneric::LazyGrid(resolution));
ndlocal.loadPointCloudCentroid(pc, origin, old_centroid, localmapsize, 70.0); ///FIXME:: fixed max length
///Use Student-T
//ndlocal.computeNDTCells(CELL_UPDATE_MODE_STUDENT_T);
/// Use Sample variance
ndlocal.computeNDTCells();
///TODO: This returns now copies --- should be pointers?
std::vector<lslgeneric::NDTCell*> ndts;
ndts = ndlocal.getAllCells();
//fprintf(stderr,"2(%u):",ndts.size());
NDTCell *ptCell = NULL;
pcl::PointXYZ pt;
pcl::PointXYZ po;
po.x = origin(0);
po.y = origin(1);
po.z = origin(2);
//fprintf(stderr,"NUM = %d\n",ndts.size());
int num_high = 0;
for (unsigned int it = 0; it < ndts.size(); it++) {
if (ndts[it] == NULL) {
fprintf(stderr, "NDTMap::addPointCloudMeanUpdate::GOT NULL FROM MAP -- SHOULD NEVER HAPPEN!!!\n");
continue;
}
if (!ndts[it]->hasGaussian_) {
fprintf(stderr, "NDTMap::addPointCloudMeanUpdate::NO GAUSSIAN!!!! -- SHOULD NEVER HAPPEN!!!\n");
continue;
}
int numpoints = ndts[it]->getN();
if (numpoints <= 0) {
fprintf(stderr, "addPointCloudMeanUpdate::Number of points in distribution<=0!!");
continue;
}
Eigen::Vector3d diff;
Eigen::Vector3d m = ndts[it]->getMean();
diff = m - origin;
double l = diff.norm();
int NN = l / (resolution);
if (l > 200) {
fprintf(stderr, "addPointCloudMeanUpdate::Very long distance (%lf) :( \n", l);
continue;
}
if (resolution < 0.01) {
fprintf(stderr, "addPointCloudMeanUpdate::Resolution very very small (%lf) :( \n", resolution);
continue;
}
if (NN < 0) {
fprintf(stderr, "addPointCloudMeanUpdate::N=%d (r=%lf l=%lf) :( ", NN, resolution, l);
continue;
}
bool updatePositive = true;
if (m(2) > maxz) {
num_high++;
updatePositive = false; ///Lets update negative even though the measurement was too high
}
//std::cout<<"c: "<<ndts[it]->getCov()<<std::endl;
diff = diff / (float)NN;
//fprintf(stderr,"3(%d):",NN);
int idxo = 0, idyo = 0, idzo = 0;
for (int i = 0; i < NN - 2; i++) {
pt.x = origin(0) + ((float)(i + 1)) * diff(0);
pt.y = origin(1) + ((float)(i + 1)) * diff(1);
pt.z = origin(2) + ((float)(i + 1)) * diff(2);
int idx, idy, idz;
idx = (int)(((pt.x - centerX) / cellSizeX + 0.5) + sizeX / 2.0);
idy = (int)(((pt.y - centerY) / cellSizeY + 0.5) + sizeY / 2.0);
idz = (int)(((pt.z - centerZ) / cellSizeZ + 0.5) + sizeZ / 2.0);
///We only want to check every cell once, so
///increase the index if we are still in the same cell
if (idx == idxo && idy == idyo && idz == idzo) {
continue;
} else {
idxo = idx;
idyo = idy;
idzo = idz;
}
ptCell = NULL;
/// Check the validity of the index
lz->getNDTCellAt(idx, idy, idz, ptCell);
/*
if(ptCell != NULL){
if(!ptCell->hasGaussian_){
ptCell->updateOccupancy(-0.85*numpoints,occupancy_limit);
}else{
ptCell->updateOccupancy(-0.2*numpoints,occupancy_limit);
ptCell = lz->getClosestNDTCell(pt);
}
}*/
if (ptCell != NULL) {
double l2target = 0;
if (ptCell->hasGaussian_) {
Eigen::Vector3d out, pend, vpt;
pend = m;
double lik = ptCell->computeMaximumLikelihoodAlongLine(po, pt, out);
l2target = (out - pend).norm();
double dist = (origin - out).norm();
if (dist > l) continue; ///< don't accept points further than the measurement
l2target = (out - pend).norm(); ///<distance to endpoint
double sigma_dist = 0.5 * (dist / 30.0); ///test for distance based sensor noise
//double sigma_dist = 0;
double snoise = sigma_dist + sensor_noise;
double thr = exp(-0.5 * (l2target * l2target) / (snoise * snoise)); ///This is the probability of max lik point being endpoint
lik *= (1.0 - thr);
//lik = 0.4*lik+0.5+0.05; ///Evidence value for empty - alpha * p(x);
lik = 0.2 * lik + 0.5; ///Evidence value for empty - alpha * p(x);
double logoddlik = log( (1.0 - lik) / (lik) );
//fprintf(stderr,"l=%lf ",numpoints*logoddlik);
ptCell->updateOccupancy(numpoints * logoddlik, occupancy_limit);
if (ptCell->getOccupancy() < 0) ptCell->hasGaussian_ = false;
} else {
ptCell->updateOccupancy(-0.85 * numpoints, occupancy_limit); ///The cell does not have gaussian, so we mark that we saw it empty...
//ptCell->updateEmpty(-0.2*numpoints,l2target); ///The cell does not have gaussian, so we mark that we saw it empty...
}
} else {
ptCell = dynamic_cast<NDTCell*>(index_->addPoint(pt)); ///Add fake point to initialize!
}
}
if (updatePositive) {
Eigen::Matrix3d ucov = ndts[it]->getCov();
float r, g, b;
ndts[it]->getRGB(r, g, b);
addDistributionToCell(ucov, m, numpoints, r, g, b, maxnumpoints, occupancy_limit); ///<FIXME:: local implementation can be faster?
}
}
//fprintf(stderr,"| Gaussians=%d Invalid=%d |", ndts.size(), num_high);
for (unsigned int i = 0; i < ndts.size(); i++) delete ndts[i];
isFirstLoad_ = false;
}
/**
* Adds one measurement to the map using NDT-OM update step
* @return true if an inconsistency was detected
*/
bool NDTMap::addMeasurement(const Eigen::Vector3d &origin, pcl::PointXYZ endpoint, double classifierTh,
double maxz, double sensor_noise) {
if (index_ == NULL) {
return false;
}
bool retval = false;
LazyGrid *lz = dynamic_cast<LazyGrid*>(index_);
double centerX, centerY, centerZ;
lz->getCenter(centerX, centerY, centerZ);
double cellSizeX, cellSizeY, cellSizeZ;
lz->getCellSize(cellSizeX, cellSizeY, cellSizeZ);
int sizeX, sizeY, sizeZ;
lz->getGridSize(sizeX, sizeY, sizeZ);
//Cell<PointT> ****dataArray = lz->getDataArrayPtr();
double min1 = std::min(cellSizeX, cellSizeY);
double min2 = std::min(cellSizeZ, cellSizeY);
double resolution = std::min(min1, min2); ///Select the smallest resolution
if (lz == NULL) {
fprintf(stderr, "NOT LAZY GRID!!!\n");
exit(1);
}
NDTCell *ptCell = NULL;
pcl::PointXYZ pt;
pcl::PointXYZ po;
po.x = origin(0), origin(1), origin(2);
Eigen::Vector3d diff;
diff << endpoint.x - origin(0), endpoint.y - origin(1), endpoint.z - origin(2);
double l = diff.norm();
if (l > 200) {
fprintf(stderr, "Very long distance (%lf) :( \n", l);
return false;
}
if (resolution < 0.01) {
fprintf(stderr, "Resolution very very small (%lf) :( \n", resolution);
return false;
}
int NN = l / (resolution);
if (NN <= 0) return false;
diff = diff / (float)NN;
//fprintf(stderr," (N=%d) ",NN);
bool updatePositive = true;
if (endpoint.z > maxz) {
return false;
}
int idxo = 0, idyo = 0, idzo = 0;
for (int i = 0; i < NN - 2; i++) {
pt.x = origin(0) + ((float)(i + 1)) * diff(0);
pt.y = origin(1) + ((float)(i + 1)) * diff(1);
pt.z = origin(2) + ((float)(i + 1)) * diff(2);
int idx, idy, idz;
idx = (int)(((pt.x - centerX) / cellSizeX + 0.5) + sizeX / 2);
idy = (int)(((pt.y - centerY) / cellSizeY + 0.5) + sizeY / 2);
idz = (int)(((pt.z - centerZ) / cellSizeZ + 0.5) + sizeZ / 2);
///We only want to check every cell once, so
///increase the index if we are still in the same cell
if (idx == idxo && idy == idyo && idz == idzo) {
continue;
} else {
idxo = idx;
idyo = idy, idzo = idz;
}
/// Check the validity of the index
//if(idx < sizeX && idy < sizeY && idz < sizeZ && idx >=0 && idy >=0 && idz >=0)
//{
// ptCell = dynamic_cast<NDTCell<PointT> *> (lz->getCellAt(idx,idy,idz)); //dataArray[idx][idy][idz]);
lz->getNDTCellAt(idx, idy, idz, ptCell);
//}
//else
//{
// continue;
//}
if (ptCell != NULL) {
double l2target = 0;
if (ptCell->hasGaussian_) {
Eigen::Vector3d out, pend, vpt;
pend << endpoint.x, endpoint.y, endpoint.z; ///< endpoint
double lik = ptCell->computeMaximumLikelihoodAlongLine(po, pt, out);
double dist = (origin - out).norm();
if (dist > l) continue; ///< don't accept points further than the measurement
l2target = (out - pend).norm(); ///<distance to endpoint
//double thr =exp(-0.5*(l2target*l2target)/(sensor_noise*sensor_noise)); ///This is the probability of max lik point being endpoint
//ptCell->updateEmpty(lik*(1-thr),l2target);
double sigma_dist = 0.5 * (dist / 30.0); ///test for distance based sensor noise
double snoise = sigma_dist + sensor_noise;
double thr = exp(-0.5 * (l2target * l2target) / (snoise * snoise)); ///This is the probability of max lik point being endpoint
lik *= (1.0 - thr);
lik = 0.2 * lik + 0.5; ///Evidence value for empty - alpha * p(x);
double logoddlik = log( (1.0 - lik) / (lik) );
ptCell->updateEmpty(logoddlik, l2target);
/*
if(lik>thr){
retval = true;
ptCell->updateEmpty(lik,l2target);
}*/
} else {
ptCell->updateEmpty(-0.1, l2target); ///The cell does not have gaussian, so we mark that we saw it empty...
}
} else {
index_->addPoint(pt); ///Add fake point to initialize!
}
}
if (updatePositive) index_->addPoint(endpoint);
isFirstLoad_ = false;
return retval;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// Get estimated depth
/// This goes through now the cells always to max depth and is not the most efficient solution
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
double NDTMap::getDepth(Eigen::Vector3d origin, Eigen::Vector3d dir, double maxDepth) {
Eigen::Vector3d ray_endpos = origin + dir * maxDepth;
std::vector< NDTCell*> cells;
Eigen::Vector3d diff = ray_endpos - origin;
pcl::PointXYZ endP;
endP.x = ray_endpos(0);
endP.y = ray_endpos(1);
endP.z = ray_endpos(2);
LazyGrid *lz = dynamic_cast<LazyGrid*>(index_);
if (lz == NULL) {
fprintf(stderr, "NOT LAZY GRID!!!\n");
exit(1);
}
if (!lz->traceLine(origin, endP, diff, 1000.0, cells)) {
return maxDepth + 1.0;
}
//fprintf(stderr,"Got trace with %d Cells (%lf)\n",cells.size(),(ray_endpos-origin).norm());
pcl::PointXYZ po;
po.x = origin(0);
po.y = origin(1);
po.z = origin(2);
Eigen::Vector3d out;
bool hasML = false;
for (unsigned int i = 0; i < cells.size(); i++) {
if (cells[i]->hasGaussian_) {
double lik = cells[i]->computeMaximumLikelihoodAlongLine(po, endP, out);
if (lik > 0.1) {
//fprintf(stderr,"Got ML %lf (%lf)\n",lik,(out-origin).norm());
hasML = true;
break;
}
}
}
if (hasML) return (out - origin).norm();
return (maxDepth + 1.0);
}
double NDTMap::getDepthSmooth(Eigen::Vector3d origin,
Eigen::Vector3d dir,
double maxDepth,
int n_neigh,
double weight,
double threshold,
Eigen::Vector3d *hit) {
Eigen::Vector3d ray_endpos = origin + dir * maxDepth;
std::vector< NDTCell*> cells, surr;
Eigen::Vector3d diff = ray_endpos - origin;
pcl::PointXYZ endP;
endP.x = ray_endpos(0);
endP.y = ray_endpos(1);
endP.z = ray_endpos(2);
LazyGrid *lz = dynamic_cast<LazyGrid*>(index_);
if (lz == NULL) {
fprintf(stderr, "NOT LAZY GRID!!!\n");
exit(1);
}
if (!lz->traceLine(origin, endP, diff, 1000.0, cells)) {
return maxDepth + 1.0;
}
pcl::PointXYZ startP, p;
startP.x = origin(0);
startP.y = origin(1);
startP.z = origin(2);
Eigen::Vector3d out;
bool hasML = false;
for (unsigned int i = 0; i < cells.size(); i++) {
if (cells[i]->hasGaussian_) {
surr = lz->getClosestNDTCells(cells[i]->getCenter(), n_neigh, true);
double like = cells[i]->computeMaximumLikelihoodAlongLine(startP, endP, out);
p.x = out(0);
p.y = out(1);
p.z = out(2);
for (unsigned int k = 1u; k < surr.size(); ++k) {
like += weight * surr[k]->getLikelihood(p);
}
if (like > threshold) {
hasML = true;
break;
}
}
}
if (hasML) {
if (hit != NULL) {
*hit = out;
}
return (out - origin).norm();
}
return (maxDepth + 1.0);
}
void NDTMap::loadPointCloud(const pcl::PointCloud<pcl::PointXYZ> &pc, const std::vector<std::vector<size_t> > &indices) {
// loadPointCloud(pc);
// Specific function related to CellVector
CellVector *cl = dynamic_cast<CellVector*>(index_);
if (cl != NULL) {
for (size_t i = 0; i < indices.size(); i++) {
cl->addCellPoints(pc, indices[i]);
}
} else {
//ERR("loading point clouds using indices are currently supported in CellVector index_.");
}
}
void NDTMap::loadDepthImage(const cv::Mat& depthImage, DepthCamera<pcl::PointXYZ> &cameraParams) {
pcl::PointCloud<pcl::PointXYZ> pc;
cameraParams.convertDepthImageToPointCloud(depthImage, pc);
this->loadPointCloud(pc);
}
pcl::PointCloud<pcl::PointXYZ> NDTMap::loadDepthImageFeatures(const cv::Mat& depthImage, std::vector<cv::KeyPoint> &keypoints,
size_t &supportSize, double maxVar, DepthCamera<pcl::PointXYZ> &cameraParams, bool estimateParamsDI, bool nonMean) {
std::vector<cv::KeyPoint> good_keypoints;
Eigen::Vector3d mean;
pcl::PointXYZ mn;
pcl::PointCloud<pcl::PointXYZ> cloudOut;
CellVector *cl = dynamic_cast<CellVector*>(index_);
if (cl == NULL) {
std::cerr << "wrong index type!\n";
return cloudOut;
}
for (size_t i = 0; i < keypoints.size(); i++) {
if (!estimateParamsDI) {
pcl::PointCloud<pcl::PointXYZ> points;
pcl::PointXYZ center;
cameraParams.computePointsAtIndex(depthImage, keypoints[i], supportSize, points, center);
NDTCell *ndcell = new NDTCell();
typename pcl::PointCloud<pcl::PointXYZ>::iterator it = points.points.begin();
while (it != points.points.end() ) {
if (std::isnan(it->x) || std::isnan(it->y) || std::isnan(it->z)) {
it++;
continue;
}
ndcell->addPoint(*it);
it++;
}
ndcell->computeGaussian();
if (ndcell->hasGaussian_) {
Eigen::Vector3d evals = ndcell->getEvals();
if (sqrt(evals(2)) < maxVar) {
if (nonMean) {
if (std::isnan(center.x) || std::isnan(center.y) || std::isnan(center.z)) {
continue;
}
mn = center;
} else {
mean = ndcell->getMean();
mn.x = mean(0);
mn.y = mean(1);
mn.z = mean(2);
}
cloudOut.points.push_back(mn);
ndcell->setCenter(mn);
cl->addCell(ndcell);
good_keypoints.push_back(keypoints[i]);
}
}
} else {
assert(nonMean = false); // Not implemented / used.
Eigen::Vector3d mean;
Eigen::Matrix3d cov;
cameraParams.computeParamsAtIndex(depthImage, keypoints[i], supportSize, mean, cov);
NDTCell *ndcell = new NDTCell();
ndcell->setMean(mean);
ndcell->setCov(cov);
if (ndcell->hasGaussian_) {
Eigen::Vector3d evals = ndcell->getEvals();
//std::cout<<evals.transpose()<<std::endl;
if (sqrt(evals(2)) < maxVar) {
mean = ndcell->getMean();
mn.x = mean(0);
mn.y = mean(1);
mn.z = mean(2);
cloudOut.points.push_back(mn);
ndcell->setCenter(mn);
cl->addCell(ndcell);
good_keypoints.push_back(keypoints[i]);
}
}
}
}
//TODO
keypoints = good_keypoints;
return cloudOut;
}
/** Helper function, computes the NDTCells
*/
void NDTMap::computeNDTCells(int cellupdatemode, unsigned int maxnumpoints, float occupancy_limit, Eigen::Vector3d origin, double sensor_noise) {
CellVector *cv = dynamic_cast<CellVector*>(index_);
conflictPoints.clear();
#ifdef REFACTORED
typename std::set<NDTCell*>::iterator it = update_set.begin();
while (it != update_set.end()) {
NDTCell *cell = *it;
if (cell != NULL) {
cell->computeGaussian(cellupdatemode, maxnumpoints, occupancy_limit, origin, sensor_noise);
///Process the conflict points
if (cell->points_.size() > 0) {
for (unsigned int i = 0; i < cell->points_.size(); i++) conflictPoints.push_back(cell->points_[i]);
cell->points_.clear();
}
if (cv != NULL) {
// Set the mean to the cell's centre.
Eigen::Vector3d mean = cell->getMean();
pcl::PointXYZ pt;
pt.x = mean[0];
pt.y = mean[1];
pt.z = mean[2];
cell->setCenter(pt);
}
} else {
}
it++;
}
update_set.clear();
CellVector *cl = dynamic_cast<CellVector*>(index_);
if (cl != NULL) {
cl->initKDTree();
}
#else
typename SpatialIndex::CellVectorItr it = index_->begin();
//typename std::set<NDTCell<PointT>*>::iterator it = update_set.begin();
while (it != index_->end())
//while (it != update_set.end())
{
NDTCell *cell = (*it);
//NDTCell<PointT> *cell = *it;
if (cell != NULL) {
cell->computeGaussian(cellupdatemode, maxnumpoints, occupancy_limit, origin, sensor_noise);
///Process the conflict points
if (cell->points_.size() > 0) {
for (unsigned int i = 0; i < cell->points_.size(); i++) conflictPoints.push_back(cell->points_[i]);
cell->points_.clear();
}
if (cv != NULL) {
// Set the mean to the cell's centre.
Eigen::Vector3d mean = cell->getMean();
pcl::PointXYZ pt;
pt.x = mean[0];
pt.y = mean[1];
pt.z = mean[2];
cell->setCenter(pt);
}
} else {
}
it++;
}
//update_set.clear();
CellVector *cl = dynamic_cast<CellVector*>(index_);
if (cl != NULL) {
cl->initKDTree();
}
#endif
}
/**
* Computes the normaldistribution parameters and leaves the points a
*/
void NDTMap::computeNDTCellsSimple() {
CellVector *cv = dynamic_cast<CellVector*>(index_);
conflictPoints.clear();
typename SpatialIndex::CellVectorItr it = index_->begin();
while (it != index_->end()) {
NDTCell *cell = (*it);
if (cell != NULL) {
cell->computeGaussianSimple();
if (cv != NULL) {
// Set the mean to the cell's centre.
Eigen::Vector3d mean = cell->getMean();
pcl::PointXYZ pt;
pt.x = mean[0];
pt.y = mean[1];
pt.z = mean[2];
cell->setCenter(pt);
}
} else {
}
it++;
}
CellVector *cl = dynamic_cast<CellVector*>(index_);
if (cl != NULL) {
cl->initKDTree();
}
}
/** output methods for saving the map in the jff format
*/
int NDTMap::writeToJFF(const char* filename) {
if (filename == NULL) {
//ERR("problem outputing to jff\n");
return -1;
}
FILE * jffout = fopen(filename, "w+b");
fwrite(_JFFVERSION_, sizeof(char), strlen(_JFFVERSION_), jffout);
switch (this->getMyIndexInt()) {
case 1:
writeCellVectorJFF(jffout);
break;
case 2:
//writeOctTreeJFF(jffout);
break;
case 3:
writeLazyGridJFF(jffout);
break;
default:
//ERR("unknown index type\n");
return -1;
}
fclose(jffout);
return 0;
}
int NDTMap::writeCellVectorJFF(FILE * jffout) {
int indexType[1] = {1};
fwrite(indexType, sizeof(int), 1, jffout);
// TODO: add CellVector specific stuff
typename SpatialIndex::CellVectorItr it = index_->begin();
while (it != index_->end()) {
NDTCell *cell = (*it);
if (cell != NULL) {
if (cell->hasGaussian_) {
// TODO: add index specific content smartly
if (cell->writeToJFF(jffout) < 0)
return -1;
}
} else {
// do nothing
}
it++;
}
return 0;
}
int NDTMap::writeOctTreeJFF(FILE * jffout) {
int indexType[1] = {2};
fwrite(indexType, sizeof(int), 1, jffout);
// TODO: add OctTree specific stuff
typename SpatialIndex::CellVectorItr it = index_->begin();
while (it != index_->end()) {
NDTCell *cell = (*it);
if (cell != NULL) {
if (cell->hasGaussian_) {
// TODO: add index specific content smartly
if (cell->writeToJFF(jffout) < 0)
return -1;
}
} else {
// do nothing
}
it++;
}
return 0;
}
int NDTMap::writeLazyGridJFF(FILE * jffout) {
int indexType[1] = {3};
fwrite(indexType, sizeof(int), 1, jffout);
// add LazyGrid specific stuff
double sizeXmeters, sizeYmeters, sizeZmeters;
double cellSizeX, cellSizeY, cellSizeZ;
double centerX, centerY, centerZ;
LazyGrid *ind = dynamic_cast<LazyGrid*>(index_);
ind->getGridSizeInMeters(sizeXmeters, sizeYmeters, sizeZmeters);
ind->getCellSize(cellSizeX, cellSizeY, cellSizeZ);
ind->getCenter(centerX, centerY, centerZ);
double lazyGridData[9] = { sizeXmeters, sizeYmeters, sizeZmeters,
cellSizeX, cellSizeY, cellSizeZ,
centerX, centerY, centerZ
};
fwrite(lazyGridData, sizeof(double), 9, jffout);
fwrite(ind->getProtoType(), sizeof(NDTCell), 1, jffout);
// loop through all active cells
typename SpatialIndex::CellVectorItr it = index_->begin();
while (it != index_->end()) {
if ((*it)->writeToJFF(jffout) < 0) return -1;
it++;
}
return 0;
}
/** method to load NDT maps from .jff files
USAGE: create NDTMap with desired index and PointType (index type is
checked, but Point type is NOT checked) via e.g.
lslgeneric::NDTMap<pcl::PointXYZ> nd1(
new lslgeneric::LazyGrid<pcl::PointXYZ>(0.4)); --> (*)
and then call
nd1.loadFromJFF("map0027.jff");
*) use this constructor so index is not initialized and attributes
can be set manually
*/
int NDTMap::loadFromJFF(const char* filename) {
FILE * jffin;
if (filename == NULL) {
JFFERR("problem outputing to jff");
}
jffin = fopen(filename, "r+b");
if (jffin == NULL) {
JFFERR("file not found");
std::cerr << "Failed to open : " << filename << std::endl;
return -5;
}
char versionBuf[16];
if (fread(&versionBuf, sizeof(char), strlen(_JFFVERSION_), jffin) <= 0) {
JFFERR("reading version failed");
}
versionBuf[strlen(_JFFVERSION_)] = '\0';
int indexType;
if (fread(&indexType, sizeof(int), 1, jffin) <= 0) {
JFFERR("reading version failed");
}
if (indexType != this->getMyIndexInt()) {
switch (indexType) {
case 1:
std::cerr << "Map uses CellVector\n";
return -1;
break;
case 2:
std::cerr << "Map uses OctTree\n";
return -2;
break;
case 3:
std::cerr << "Map uses LazyGrid\n";
return -3;
break;
}
}
switch (indexType) {
case 1: {
CellVector* cv = dynamic_cast<CellVector * >(index_);
if (cv->loadFromJFF(jffin) < 0) {
JFFERR("Error loading CellVector");
}
break;
}
#if 0
case 2: {
OctTree* tr = dynamic_cast<OctTree*>(index_);
if (tr->loadFromJFF(jffin) < 0) {
JFFERR("Error loading OctTree");
}
break;
}
#endif
case 3: {
std::cerr << "Map uses LazyGrid\n";
LazyGrid* gr = dynamic_cast<LazyGrid*>(index_);
if (gr->loadFromJFF(jffin) < 0) {
JFFERR("Error loading LazyGrid");
}
break;
}
default:
JFFERR("error casting index");
}
NDTCell *ptCell = new NDTCell();
index_->setCellType(ptCell);
delete ptCell;
fclose(jffin);
// std::cout << "map loaded successfully " << versionBuf << std::endl;
isFirstLoad_ = false;
return 0;
}
/** method to load NDT maps from .jff files
USAGE: create NDTMap with desired index and PointType (index type is
checked, but Point type is NOT checked) via e.g.
lslgeneric::NDTMap<pcl::PointXYZ> nd1(
new lslgeneric::LazyGrid<pcl::PointXYZ>(0.4)); --> (*)
and then call
nd1.loadFromJFF("map0027.jff");
*) use this constructor so index is not initialized and attributes
can be set manually
*/
int NDTMap::loadFromJFF(FILE * jffin) {
char versionBuf[16];
if (fread(&versionBuf, sizeof(char), strlen(_JFFVERSION_), jffin) <= 0) {
JFFERR("reading version failed");
}
versionBuf[strlen(_JFFVERSION_)] = '\0';
int indexType;
if (fread(&indexType, sizeof(int), 1, jffin) <= 0) {
JFFERR("reading version failed");
}
if (indexType != this->getMyIndexInt()) {
switch (indexType) {
case 1:
std::cerr << "Map uses CellVector\n";
return -1;
break;
case 2:
std::cerr << "Map uses OctTree\n";
return -2;
break;
case 3:
std::cerr << "Map uses LazyGrid\n";
return -3;
break;
}
}
switch (indexType) {
case 1: {
CellVector* cv = dynamic_cast<CellVector * >(index_);
if (cv->loadFromJFF(jffin) < 0) {
JFFERR("Error loading CellVector");
}
break;
}
#if 0
case 2: {
OctTree* tr = dynamic_cast<OctTree*>(index_);
if (tr->loadFromJFF(jffin) < 0) {
JFFERR("Error loading OctTree");
}
break;
}
#endif
case 3: {
std::cerr << "Map uses LazyGrid\n";
LazyGrid* gr = dynamic_cast<LazyGrid*>(index_);
if (gr->loadFromJFF(jffin) < 0) {
JFFERR("Error loading LazyGrid");
}
break;
}
default:
JFFERR("error casting index");
}
NDTCell *ptCell = new NDTCell();
index_->setCellType(ptCell);
delete ptCell;
// std::cout << "map loaded successfully " << versionBuf << std::endl;
isFirstLoad_ = false;
return 0;
}
/// returns the current spatial index as a string (debugging function)
std::string NDTMap::getMyIndexStr() const {
CellVector* cl = dynamic_cast<CellVector * >(index_);
if (cl != NULL) {
return std::string("CellVector");
}
#if 0
OctTree<PointT>* tr = dynamic_cast<OctTree<PointT>*>(index_);
if (tr != NULL) {
return std::string("OctTree");
}
#endif
LazyGrid *gr = dynamic_cast<LazyGrid*>(index_);
if (gr != NULL) {
return std::string("LazyGrid<PointT>");
}
return std::string("Unknown index type");
}
/// returns the current spatial index as an integer (debugging function)
int NDTMap::getMyIndexInt() const {
CellVector* cl = dynamic_cast<CellVector * >(index_);
if (cl != NULL) {
return 1;
}
#if 0
OctTree<PointT>* tr = dynamic_cast<OctTree<PointT>*>(index_);
if (tr != NULL) {
return 2;
}
#endif
LazyGrid *gr = dynamic_cast<LazyGrid*>(index_);
if (gr != NULL) {
return 3;
}
return -1;
}
//computes the *negative log likelihood* of a single observation
double NDTMap::getLikelihoodForPoint(pcl::PointXYZ pt) {
//assert(false);
double uniform = 0.00100;
NDTCell* ndCell = NULL;
#if 0
OctTree<PointT>* tr = dynamic_cast<OctTree<PointT>*>(index_);
if (tr == NULL) {
#endif
LazyGrid *gr = dynamic_cast<LazyGrid*>(index_);
if (gr == NULL) {
//cout<<"bad index - getLikelihoodForPoint\n";
return uniform;
}
ndCell = gr->getClosestNDTCell(pt);
#if 0
} else {
ndCell = tr->getClosestNDTCell(pt);
}
#endif
if (ndCell == NULL) return uniform;
double prob = ndCell->getLikelihood(pt);
prob = (prob < 0) ? 0 : prob; //uniform!! TSV
return prob;
}
/*
//use trilinear interpolation from available immediate neighbors
template<typename PointT>
double NDTMap<PointT>::getLikelihoodForPointWithInterpolation(PointT pt) {
//ATM only for grid map
// tll------tlr
// /| /|
// / | / |
// tul------tur | z
// | bll----|-blr ^ y
// | / | / | /
// |/ |/ |/
// bul------bur ---> x
double uniform=0;//0.00100;
Cell* cell = NULL;
NDTCell<PointT>* ndCell = NULL;
double cumProb = 0;
double weight = 0;
int evals = 1;
LazyGrid<PointT> *gr = dynamic_cast<LazyGrid<PointT>*>(index_);
if(gr==NULL) {
//cout<<"bad index - getLikelihoodForPointWithInterpolation\n";
return uniform;
}
cell = gr->getCellForPoint(pt);
if(cell == NULL) return uniform;
//get coordinates of cell
int indXn, indYn, indZn;
PointT centerGrid, sizeCell, centerCell;
int sizeGridX, sizeGridY,sizeGridZ;
centerCell = cell->getCenter();
gr->getCenter(centerGrid.x,centerGrid.y,centerGrid.z);
gr->getGridSize(sizeGridX,sizeGridY,sizeGridZ);
gr->getCellSize(sizeCell.x,sizeCell.y,sizeCell.z);
gr->getIndexForPoint(pt,indXn,indYn,indZn);
double x,y,z;
x = (pt.x - centerCell.x)/sizeCell.x;
y = (pt.y - centerCell.y)/sizeCell.y;
z = (pt.z - centerCell.z)/sizeCell.z;
if(x <0 ) x = 0;
if(y <0 ) y = 0;
if(z <0 ) z = 0;
if(x >1 ) x = 1;
if(y >1 ) y = 1;
if(z >1 ) z = 1;
//bul
double prob = 0;
ndCell = dynamic_cast<NDTCell<PointT>*> (cell);
if(ndCell != NULL) {
prob = ndCell->getLikelihood(pt);
prob = (prob<0) ? uniform : prob;
weight = (1 - x + 1 - y + 1 - z)/(3.0);
if(weight < 0) cerr<<weight<<endl;
cumProb += prob*weight;
//cout<<"\t"<<weight<<" "<<prob<<" --> "<<cumProb<<endl;
evals++;
}
//tul
Cell* c = gr->getCellAt(indXn,indYn,indZn+1);
if(c != NULL) {
ndCell = dynamic_cast<NDTCell<PointT>*> (c);
if(ndCell != NULL) {
prob = ndCell->getLikelihood(pt);
prob = (prob<0) ? uniform : prob;
weight = (1 - x + 1 - y + z)/(3.0);
if(weight < 0) cerr<<weight<<endl;
cumProb += prob*weight;
//cout<<"\t"<<weight<<" "<<prob<<" --> "<<cumProb<<endl;
evals++;
}
}
//tur
c = gr->getCellAt(indXn+1,indYn,indZn+1);
if(c != NULL) {
ndCell = dynamic_cast<NDTCell<PointT>*> (c);
if(ndCell != NULL) {
prob = ndCell->getLikelihood(pt);
prob = (prob<0) ? uniform : prob;
weight = (x + 1-y + z )/(3.0);
if(weight < 0) cerr<<weight<<endl;
cumProb += prob*weight;
//cout<<"\t"<<weight<<" "<<prob<<" --> "<<cumProb<<endl;
evals++;
}
}
//tll
c = gr->getCellAt(indXn,indYn+1,indZn+1);
if(c != NULL) {
ndCell = dynamic_cast<NDTCell<PointT>*> (c);
if(ndCell != NULL) {
prob = ndCell->getLikelihood(pt);
prob = (prob<0) ? uniform : prob;
weight = (1-x + y + z )/(3.0);
if(weight < 0) cerr<<weight<<endl;
cumProb += prob*weight;
//cout<<"\t"<<weight<<" "<<prob<<" --> "<<cumProb<<endl;
evals++;
}
}
//tlr
c = gr->getCellAt(indXn+1,indYn+1,indZn+1);
if(c != NULL) {
ndCell = dynamic_cast<NDTCell<PointT>*> (c);
if(ndCell != NULL) {
prob = ndCell->getLikelihood(pt);
prob = (prob<0) ? uniform : prob;
weight = (x + y + z )/(3.0);
if(weight < 0) cerr<<weight<<endl;
cumProb += prob*weight;
//cout<<"\t"<<weight<<" "<<prob<<" --> "<<cumProb<<endl;
evals++;
}
}
//bur
c = gr->getCellAt(indXn+1,indYn,indZn);
if(c != NULL) {
ndCell = dynamic_cast<NDTCell<PointT>*> (c);
if(ndCell != NULL) {
prob = ndCell->getLikelihood(pt);
prob = (prob<0) ? uniform : prob;
weight = (x + 1-y + 1-z )/(3.0);
if(weight < 0) cerr<<weight<<endl;
cumProb += prob*weight;
//cout<<"\t"<<weight<<" "<<prob<<" --> "<<cumProb<<endl;
evals++;
}
}
//bll
c = gr->getCellAt(indXn,indYn+1,indZn);
if(c != NULL) {
ndCell = dynamic_cast<NDTCell<PointT>*> (c);
if(ndCell != NULL) {
prob = ndCell->getLikelihood(pt);
prob = (prob<0) ? uniform : prob;
weight = (1-x + y + 1-z )/(3.0);
if(weight < 0) cerr<<weight<<endl;
cumProb += prob*weight;
//cout<<"\t"<<weight<<" "<<prob<<" --> "<<cumProb<<endl;
evals++;
}
}
//blr
c = gr->getCellAt(indXn+1,indYn+1,indZn);
if(c != NULL) {
ndCell = dynamic_cast<NDTCell<PointT>*> (c);
if(ndCell != NULL) {
prob = ndCell->getLikelihood(pt);
prob = (prob<0) ? uniform : prob;
weight = (x + y + 1-z )/(3.0);
if(weight < 0) cerr<<weight<<endl;
cumProb += prob*weight;
//cout<<"\t"<<weight<<" "<<prob<<" --> "<<cumProb<<endl;
evals++;
}
}
//cout<<"== "<<cumProb<<endl;
return cumProb;
}
*/
std::vector<NDTCell*> NDTMap::getInitializedCellsForPoint(const pcl::PointXYZ pt) const {
std::vector<NDTCell*> cells;
LazyGrid *gr = dynamic_cast<LazyGrid*>(index_);
if (gr == NULL) {
//cout<<"bad index - getCellsForPoint\n";
return cells;
}
cells = gr->getClosestCells(pt);
return cells;
}
std::vector<NDTCell*> NDTMap::getCellsForPoint(const pcl::PointXYZ pt, int n_neigh, bool checkForGaussian) const {
//assert(false);
std::vector<NDTCell*> cells;
LazyGrid *gr = dynamic_cast<LazyGrid*>(index_);
if (gr == NULL) {
//cout<<"bad index - getCellsForPoint\n";
return cells;
}
cells = gr->getClosestNDTCells(pt, n_neigh, checkForGaussian);
return cells;
//OctTree<PointT>* tr = dynamic_cast<OctTree<PointT>*>(index_);
//if(tr==NULL) {
//}
}
bool NDTMap::getCellForPoint(const pcl::PointXYZ &pt, NDTCell* &out_cell, bool checkForGaussian) const {
out_cell = NULL;
CellVector *cl = dynamic_cast<CellVector*>(index_);
if (cl != NULL) {
out_cell = cl->getClosestNDTCell(pt);
return true;
}
#if 0
OctTree<PointT>* tr = dynamic_cast<OctTree<PointT>*>(index_);
if (tr != NULL) {
out_cell = tr->getClosestNDTCell(pt);
return true;
}
#endif
LazyGrid *gr = dynamic_cast<LazyGrid*>(index_);
if (gr != NULL) {
out_cell = gr->getClosestNDTCell(pt, checkForGaussian);
return true;
}
//cout<<"bad index - getCellForPoint\n";
return false;
}
NDTMap* NDTMap::pseudoTransformNDTMap(Eigen::Transform<double, 3, Eigen::Affine, Eigen::ColMajor> T) {
NDTMap* map = new NDTMap(new CellVector(), true);
CellVector* idx = dynamic_cast<CellVector*> (map->getMyIndex());
typename SpatialIndex::CellVectorItr it = index_->begin();
while (it != index_->end()) {
NDTCell *cell = (*it);
if (cell->hasGaussian_) {
Eigen::Vector3d mean = cell->getMean();
Eigen::Matrix3d cov = cell->getCov();
mean = T * mean;
///NOTE: The rotation of the covariance fixed by Jari 6.11.2012
cov = T.rotation() * cov * T.rotation().transpose();
NDTCell* nd = (NDTCell*)cell->clone();
nd->setMean(mean);
nd->setCov(cov);
idx->addNDTCell(nd);
}
it++;
}
return map;
}
std::vector<NDTCell*> NDTMap::pseudoTransformNDT(Eigen::Transform<double, 3, Eigen::Affine, Eigen::ColMajor> T) const {
std::vector<NDTCell*> ret;
typename SpatialIndex::CellVectorConstItr it = index_->begin();
while (it != index_->end()) {
NDTCell *cell = (*it);
if (cell != NULL) {
if (cell->hasGaussian_) {
Eigen::Vector3d mean = cell->getMean();
Eigen::Matrix3d cov = cell->getCov();
mean = T * mean;
///NOTE: The rotation of the covariance fixed by Jari 6.11.2012
cov = T.rotation() * cov * T.rotation().transpose();
NDTCell* nd = (NDTCell*)cell->clone();
nd->setMean(mean);
nd->setCov(cov);
ret.push_back(nd);
}
} else {
//ERR("problem casting cell to NDT!\n");
}
it++;
}
return ret;
}
NDTCell* NDTMap::getCellIdx(unsigned int idx) const {
CellVector *cl = dynamic_cast<CellVector*>(index_);
if (cl != NULL) {
return cl->getCellIdx(idx);
}
return NULL;
}
/**
* Returns all computed cells from the map
* This method gives all the vectors that contain a gaussian within a cell (hasGaussian is true).
*/
std::vector<lslgeneric::NDTCell*> NDTMap::getAllCells() const {
std::vector<NDTCell*> ret;
typename SpatialIndex::CellVectorItr it = index_->begin();
while (it != index_->end()) {
NDTCell *cell = (*it);
if (cell->hasGaussian_) {
NDTCell* nd = cell->copy();
ret.push_back(nd);
}
it++;
}
return ret;
}
std::vector<lslgeneric::NDTCell*> NDTMap::getAllInitializedCells() {
std::vector<NDTCell*> ret;
typename SpatialIndex::CellVectorItr it = index_->begin();
while (it != index_->end()) {
NDTCell* nd = (*it)->copy();
ret.push_back(nd);
it++;
}
return ret;
}
int NDTMap::numberOfActiveCells() {
int ret = 0;
if (index_ == NULL) return ret;
typename SpatialIndex::CellVectorItr it = index_->begin();
while (it != index_->end()) {
if ((*it)->hasGaussian_) {
ret++;
}
it++;
}
return ret;
}
int NDTMap::numberOfActiveCells() const {
int ret = 0;
if (index_ == NULL) return ret;
typename SpatialIndex::CellVectorItr it = index_->begin();
while (it != index_->end()) {
if ((*it)->hasGaussian_) {
ret++;
}
it++;
}
return ret;
}
NDTCell* NDTMap::getCellAtID(int x, int y, int z) {
NDTCell* cell;
LazyGrid *lz = dynamic_cast<LazyGrid*>(index_);
lz->getCellAt(x, y, z, cell);
return cell;
}
bool NDTMap::insertCell(NDTCell cell) {
LazyGrid* gr = dynamic_cast<LazyGrid*>(index_);
gr->insertCell(*cell.copy());
}
}
| [
"j.z.feng@foxmail.com"
] | j.z.feng@foxmail.com |
4cfb7439c267e53c130dd3382834f0285871029d | 6ced41da926682548df646099662e79d7a6022c5 | /aws-cpp-sdk-lakeformation/include/aws/lakeformation/model/UpdateTableObjectsResult.h | 880c91a034580b2ca11203c6f6f28910b2e1304e | [
"Apache-2.0",
"MIT",
"JSON"
] | permissive | irods/aws-sdk-cpp | 139104843de529f615defa4f6b8e20bc95a6be05 | 2c7fb1a048c96713a28b730e1f48096bd231e932 | refs/heads/main | 2023-07-25T12:12:04.363757 | 2022-08-26T15:33:31 | 2022-08-26T15:33:31 | 141,315,346 | 0 | 1 | Apache-2.0 | 2022-08-26T17:45:09 | 2018-07-17T16:24:06 | C++ | UTF-8 | C++ | false | false | 798 | h | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/lakeformation/LakeFormation_EXPORTS.h>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace LakeFormation
{
namespace Model
{
class AWS_LAKEFORMATION_API UpdateTableObjectsResult
{
public:
UpdateTableObjectsResult();
UpdateTableObjectsResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
UpdateTableObjectsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
};
} // namespace Model
} // namespace LakeFormation
} // namespace Aws
| [
"aws-sdk-cpp-automation@github.com"
] | aws-sdk-cpp-automation@github.com |
61a0455e2a82e1c79c662d4f41feec5dddfc14d8 | f6439b5ed1614fd8db05fa963b47765eae225eb5 | /chrome/common/extensions/chrome_extension_messages.h | cd1b5cc11691effa6cf11006aaa23e3bf1339b18 | [
"BSD-3-Clause"
] | permissive | aranajhonny/chromium | b8a3c975211e1ea2f15b83647b4d8eb45252f1be | caf5bcb822f79b8997720e589334266551a50a13 | refs/heads/master | 2021-05-11T00:20:34.020261 | 2018-01-21T03:31:45 | 2018-01-21T03:31:45 | 118,301,142 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,392 | h | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Chrome-specific IPC messages for extensions.
// Extension-related messages that aren't specific to Chrome live in
// extensions/common/extension_messages.h.
//
// Multiply-included message file, hence no include guard.
#include <string>
#include "base/strings/string16.h"
#include "chrome/common/extensions/api/webstore/webstore_api_constants.h"
#include "chrome/common/web_application_info.h"
#include "extensions/common/stack_frame.h"
#include "ipc/ipc_message_macros.h"
#include "url/gurl.h"
#define IPC_MESSAGE_START ChromeExtensionMsgStart
IPC_ENUM_TRAITS_MAX_VALUE(extensions::api::webstore::InstallStage,
extensions::api::webstore::INSTALL_STAGE_INSTALLING)
IPC_STRUCT_TRAITS_BEGIN(extensions::StackFrame)
IPC_STRUCT_TRAITS_MEMBER(line_number)
IPC_STRUCT_TRAITS_MEMBER(column_number)
IPC_STRUCT_TRAITS_MEMBER(source)
IPC_STRUCT_TRAITS_MEMBER(function)
IPC_STRUCT_TRAITS_END()
IPC_STRUCT_TRAITS_BEGIN(WebApplicationInfo::IconInfo)
IPC_STRUCT_TRAITS_MEMBER(url)
IPC_STRUCT_TRAITS_MEMBER(width)
IPC_STRUCT_TRAITS_MEMBER(height)
IPC_STRUCT_TRAITS_MEMBER(data)
IPC_STRUCT_TRAITS_END()
IPC_STRUCT_TRAITS_BEGIN(WebApplicationInfo)
IPC_STRUCT_TRAITS_MEMBER(title)
IPC_STRUCT_TRAITS_MEMBER(description)
IPC_STRUCT_TRAITS_MEMBER(app_url)
IPC_STRUCT_TRAITS_MEMBER(icons)
IPC_STRUCT_TRAITS_END()
// Messages sent from the browser to the renderer.
// Requests application info for the page. The renderer responds back with
// ExtensionHostMsg_DidGetApplicationInfo.
IPC_MESSAGE_ROUTED0(ChromeExtensionMsg_GetApplicationInfo)
// Set the top-level frame to the provided name.
IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetName,
std::string /* frame_name */)
// Toggles visual muting of the render view area. This is on when a constrained
// window is showing.
IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized,
bool /* deemphazied */)
// Sent to the renderer if install stage updates were requested for an inline
// install.
IPC_MESSAGE_ROUTED1(ExtensionMsg_InlineInstallStageChanged,
extensions::api::webstore::InstallStage /* stage */)
// Sent to the renderer if download progress updates were requested for an
// inline install.
IPC_MESSAGE_ROUTED1(ExtensionMsg_InlineInstallDownloadProgress,
int /* percent_downloaded */)
// Send to renderer once the installation mentioned on
// ExtensionHostMsg_InlineWebstoreInstall is complete.
IPC_MESSAGE_ROUTED3(ExtensionMsg_InlineWebstoreInstallResponse,
int32 /* install id */,
bool /* whether the install was successful */,
std::string /* error */)
// Messages sent from the renderer to the browser.
// Informs the browser of updated frame names.
IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_UpdateFrameName,
bool /* is_top_level */,
std::string /* name */)
// Sent by the renderer to check if a URL has permission to trigger a clipboard
// read/write operation from the DOM.
IPC_SYNC_MESSAGE_CONTROL1_1(ChromeViewHostMsg_CanTriggerClipboardRead,
GURL /* origin */,
bool /* allowed */)
IPC_SYNC_MESSAGE_CONTROL1_1(ChromeViewHostMsg_CanTriggerClipboardWrite,
GURL /* origin */,
bool /* allowed */)
// Tells listeners that a detailed message was reported to the console by
// WebKit.
IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded,
base::string16 /* message */,
base::string16 /* source */,
extensions::StackTrace /* stack trace */,
int32 /* severity level */)
// Sent by the renderer to implement chrome.webstore.install().
IPC_MESSAGE_ROUTED5(ExtensionHostMsg_InlineWebstoreInstall,
int32 /* install id */,
int32 /* return route id */,
std::string /* Web Store item ID */,
GURL /* requestor URL */,
int /* listeners_mask */)
IPC_MESSAGE_ROUTED1(ChromeExtensionHostMsg_DidGetApplicationInfo,
WebApplicationInfo)
| [
"jhonnyjosearana@gmail.com"
] | jhonnyjosearana@gmail.com |
ab4d85af81f4c8a6952d0603d0a138f1503609b6 | 333cfc4c57f9ab33f5e7c1ee9730afcab2b9eee1 | /examples/readDC/readDC.ino | 8b58f00b0c6baaffbd56cc1e4dec433851397c32 | [
"MIT"
] | permissive | tremaru/iarduino_ACS712 | fc367db3cd5f00ce43480574bf698ea1520c80d4 | 98d380f3f8aade6607bacb3f851d67e1820a74e3 | refs/heads/master | 2020-05-25T15:19:28.215777 | 2019-10-17T15:43:24 | 2019-10-17T15:43:24 | 187,866,086 | 0 | 1 | null | 2019-10-17T15:43:26 | 2019-05-21T15:32:08 | C++ | UTF-8 | C++ | false | false | 4,433 | ino | // // Измерение постоянного тока:
#include <iarduino_ACS712.h> // Подключаем библиотеку для работы с Trema датчиками тока.
iarduino_ACS712 sensor(A0); // Объявляем объект sensor для работы с Trema датчиком тока,
// указывая что он подключён к выводу A0.
void setup(){ //
Serial.begin(9600); // Инициируем передачу данных в монитор на скорости 9600 бод.
float v=sensor.getZeroVDC(); // Считываем усреднённое напряжение с выхода модуля при отсутствии измеряемого тока (I = 0 A)
sensor.setZeroVDC(v); // Указываем чему равно напряжение на выходе модуля при отсутствии измеряемого тока (I = 0 A)
// В данном случае, при старте скетча, измеряемая цепь должна быть обесточена!
// Но можно сделать по другому:
// Однократно считать напряжение функцией getZeroVDC(), при отсутствии измеряемого тока и запомнить его.
// После чего исключить функцию getZeroVDC() из скетча.
// sensor.setZeroVDC(2.49); // А в качестве аргумента функции setZeroVDC() указать запомненное ранее значение, например, 2.49 В.
// Тогда, при старте, обесточивать измеряемую цепь не требуется.
// sensor.calibrationDC(511); // Если показания тока не соответствуют действительности, то ...
// их можно линейно уменьшить или увеличить, вызвав функцию calibrationDC() с параметром.
} // Параметр функции calibrationDC() - целое число от 0 до 1023 (по умолчанию 511).
// Чем выше значение параметра, тем выше показания тока и наоборот.
void loop(){ //
float i = sensor.readDC(); // Считываем силу постоянного тока в переменную i. Можно считывать силу тока от -5 A до +5 A.
// Функция readDC() автоматически сглаживает показания силы тока (чем чаще она вызывается, тем сильнее сглаживание).
// Но данную функцию можно вызвать с параметром в виде целого числа от 1 до 100, указав требуемое Вам сглаживание.
// Чем выше значение параметра, тем сильнее сглаживание показаний (тем плавнее будут изменяться считанные значения).
Serial.print(i); // Выводим считанную силу тока в монитор последовательного порта.
Serial.println(" A."); // Добавляем единицу измерений после выведенного значения.
delay(500); // Устанавливаем задержку в 500 мс (не обязательно).
} //
// В этом скетче описаны все функции для работы с постоянным током: getZeroVDC(), setZeroVDC(), calibrationDC(), readDC().
// Для работы с переменным током используются похожие функции: getZeroVAC(), setZeroVAC(), calibrationAC(), readAC().
| [
"39560516+TremaUser1@users.noreply.github.com"
] | 39560516+TremaUser1@users.noreply.github.com |
94505ab84ea77aff10cd196a5791be76fb512719 | d1f45e28292b7b819ee7f1bea879a88d7597af14 | /gaussian_weight.cpp | e007ae8921961bd908d26b6e2d5e7f38812048dd | [
"BSD-2-Clause"
] | permissive | willxie/GeneParmesan | 81f0f1f38ada2504e9aeb8d94042d5c92bc059f6 | 458fbf33003fe5573e69ea8faf1f3bc8df699396 | refs/heads/master | 2020-04-15T16:13:34.588548 | 2017-03-04T02:31:12 | 2017-03-04T02:31:12 | 41,637,610 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 759 | cpp | #include <iostream>
#include <math.h>
using namespace std;
// m = mean, s = stddev, x = target point
double calculateGaussianValue(double m, double s, double x) {
return ( 1 / ( s * sqrt(2*M_PI) ) ) * exp( -0.5 * pow( (x-m)/s, 2.0 ) );
}
int main(int argc, char *argv[]) {
double x = 0;
double m = 0;
double s = 10;
for (int x = 0; x < 30; ++x) {
double x1_gaussian = calculateGaussianValue(m, s, m);
double x2_gaussian = calculateGaussianValue(m, s, x);
double gaussian = (x1_gaussian - fabs(x1_gaussian - x2_gaussian)) / x1_gaussian;
double linear = (100 - fabs(x - m)) / 100;
cout << "gaussian: " << gaussian << endl;
cout << "linear: " << linear << endl;
}
}
| [
"williamgxie@gmail.com"
] | williamgxie@gmail.com |
8608f001ebbff3b6bfca24f430f52333081827c0 | fcddb939ac434d1397701a741df43662caebe392 | /c++/123.cpp | a5cd90a4122e45469c141bfc5d69f3b778580cb2 | [] | no_license | kjsr7/coding | f93cfe2a2bd6de0f06b94af3c0ac82af8d2ec668 | 35ce3bdf814cf5085023707301ce93d1c073032b | refs/heads/master | 2020-03-30T19:12:14.104667 | 2018-10-23T17:08:58 | 2018-10-23T17:08:58 | 149,289,730 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 146 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
cout<<std::fixed;
cout<<std::setprecision(2)<<endl;
float a = 12.1212;
cout<<a<<endl;
}
| [
"kommurujaishankarreddy@gmail.com"
] | kommurujaishankarreddy@gmail.com |
1db01502d8e10df20d1cd645590be20444fe0729 | 9160d5980d55c64c2bbc7933337e5e1f4987abb0 | /base/src/sgpp/base/operation/hash/OperationEvalGradientBsplineBoundaryNaive.cpp | 1571589a4b57d722324efe928e0364e97abb5faa | [
"LicenseRef-scancode-generic-exception",
"BSD-3-Clause"
] | permissive | SGpp/SGpp | 55e82ecd95ac98efb8760d6c168b76bc130a4309 | 52f2718e3bbca0208e5e08b3c82ec7c708b5ec06 | refs/heads/master | 2022-08-07T12:43:44.475068 | 2021-10-20T08:50:38 | 2021-10-20T08:50:38 | 123,916,844 | 68 | 44 | NOASSERTION | 2022-06-23T08:28:45 | 2018-03-05T12:33:52 | C++ | UTF-8 | C++ | false | false | 3,339 | cpp | // Copyright (C) 2008-today The SG++ project
// This file is part of the SG++ project. For conditions of distribution and
// use, please see the copyright notice provided with SG++ or at
// sgpp.sparsegrids.org
#include <sgpp/globaldef.hpp>
#include <sgpp/base/operation/hash/OperationEvalGradientBsplineBoundaryNaive.hpp>
namespace sgpp {
namespace base {
double OperationEvalGradientBsplineBoundaryNaive::evalGradient(const DataVector& alpha,
const DataVector& point,
DataVector& gradient) {
const size_t n = storage.getSize();
const size_t d = storage.getDimension();
double result = 0.0;
pointInUnitCube = point;
storage.getBoundingBox()->transformPointToUnitCube(pointInUnitCube);
for (size_t t = 0; t < d; t++) {
innerDerivative[t] = 1.0 / storage.getBoundingBox()->getIntervalWidth(t);
}
gradient.resize(storage.getDimension());
gradient.setAll(0.0);
DataVector curGradient(d);
for (size_t i = 0; i < n; i++) {
const GridPoint& gp = storage[i];
double curValue = 1.0;
curGradient.setAll(alpha[i]);
for (size_t t = 0; t < d; t++) {
const double val1d = base.eval(gp.getLevel(t), gp.getIndex(t), pointInUnitCube[t]);
const double dx1d = base.evalDx(gp.getLevel(t), gp.getIndex(t), pointInUnitCube[t]) *
innerDerivative[t];
curValue *= val1d;
for (size_t t2 = 0; t2 < d; t2++) {
if (t2 == t) {
curGradient[t2] *= dx1d;
} else {
curGradient[t2] *= val1d;
}
}
}
result += alpha[i] * curValue;
gradient.add(curGradient);
}
return result;
}
void OperationEvalGradientBsplineBoundaryNaive::evalGradient(const DataMatrix& alpha,
const DataVector& point,
DataVector& value,
DataMatrix& gradient) {
const size_t n = storage.getSize();
const size_t d = storage.getDimension();
const size_t m = alpha.getNcols();
pointInUnitCube = point;
storage.getBoundingBox()->transformPointToUnitCube(pointInUnitCube);
for (size_t t = 0; t < d; t++) {
innerDerivative[t] = 1.0 / storage.getBoundingBox()->getIntervalWidth(t);
}
value.resize(m);
value.setAll(0.0);
gradient.resize(m, d);
gradient.setAll(0.0);
DataVector curGradient(d);
for (size_t i = 0; i < n; i++) {
const GridPoint& gp = storage[i];
double curValue = 1.0;
curGradient.setAll(1.0);
for (size_t t = 0; t < d; t++) {
const double val1d = base.eval(gp.getLevel(t), gp.getIndex(t), pointInUnitCube[t]);
const double dx1d = base.evalDx(gp.getLevel(t), gp.getIndex(t), pointInUnitCube[t]) *
innerDerivative[t];
curValue *= val1d;
for (size_t t2 = 0; t2 < d; t2++) {
if (t2 == t) {
curGradient[t2] *= dx1d;
} else {
curGradient[t2] *= val1d;
}
}
}
for (size_t j = 0; j < m; j++) {
value[j] += alpha(i, j) * curValue;
for (size_t t = 0; t < d; t++) {
gradient(j, t) += alpha(i, j) * curGradient[t];
}
}
}
}
} // namespace base
} // namespace sgpp
| [
"julian.valentin@ipvs.uni-stuttgart.de"
] | julian.valentin@ipvs.uni-stuttgart.de |
962379cbe6c680fe897fcc2584df8f69b083dbf1 | 484ec4d1331b94fe9c19fd282009d6618e9a1eef | /Real-Time Corruptor/BizHawk_RTC/waterbox/libsnes/bsnes/snes/chip/armdsp/disassembler.cpp | ae6fc6438cb34e1a55243921bb567b2b031c70d4 | [
"MIT",
"GPL-1.0-or-later"
] | permissive | mguid65/RTC3 | a565303fdfd1807a2516be5752c7b30a8be3d909 | 4082eb302f8e6e20ba621ec70308dab94985fe7f | refs/heads/master | 2020-04-13T16:57:31.933643 | 2018-12-31T16:03:39 | 2018-12-31T16:03:39 | 161,684,492 | 0 | 0 | MIT | 2018-12-13T19:19:17 | 2018-12-13T19:19:17 | null | UTF-8 | C++ | false | false | 9,311 | cpp | #ifdef ARMDSP_CPP
string ArmDSP::disassemble_opcode(uint32 pc) {
static string conditions[] = { "eq", "ne", "cs", "cc", "mi" ,"pl", "vs", "vc", "hi", "ls", "ge", "lt", "gt", "le", "" /*al*/, "nv" };
static string opcodes[] = { "and", "eor", "sub", "rsb", "add", "adc", "sbc", "rsc", "tst", "teq", "cmp", "cmn", "orr", "mov", "bic", "mvn" };
static string registers[] = { "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10", "r11", "r12", "sp", "lr", "pc" };
static string indices[] = { "da", "ia", "db", "ib" };
static auto is_move = [](uint4 opcode) { return opcode == 13 || opcode == 15; };
static auto is_comp = [](uint4 opcode) { return opcode >= 8 && opcode <= 11; };
static auto is_math = [](uint4 opcode) { return opcode < 8 || opcode == 12 || opcode == 14; };
string output{hex<8>(pc), " "};
uint32 instruction = bus_readword(pc);
output.append(hex<8>(instruction), " ");
//multiply
//(mul,mla){condition}{s} rd,rm,rs,rn
if((instruction & 0x0fc000f0) == 0x00000090) {
uint4 condition = instruction >> 28;
uint1 accumulate = instruction >> 21;
uint1 save = instruction >> 20;
uint4 rd = instruction >> 16;
uint4 rn = instruction >> 12;
uint4 rs = instruction >> 8;
uint4 rm = instruction >> 0;
output.append(accumulate ? "mla" : "mul", condition[conditions], save ? "s " : " ");
output.append(registers[rd], ",", registers[rm], ",", registers[rs]);
if(accumulate) output.append(",", registers[rn]);
return output;
}
//move to register from status register
//mrs{condition} rd,(c,s)psr
if((instruction & 0x0fb000f0) == 0x01000000) {
uint4 condition = instruction >> 28;
uint1 psr = instruction >> 22;
uint4 rd = instruction >> 12;
output.append("mrs", condition[conditions], " ");
output.append(registers[rd], ",", psr ? "spsr" : "cpsr");
return output;
}
//move to status register from register
//msr{condition} (c,s)psr:{fields},rm
if((instruction & 0x0fb000f0) == 0x01200000) {
uint4 condition = instruction >> 28;
uint1 psr = instruction >> 22;
uint4 field = instruction >> 16;
output.append("msr", conditions[condition], " ");
output.append(psr ? "spsr:" : "cpsr:",
field & 1 ? "c" : "",
field & 2 ? "x" : "",
field & 4 ? "s" : "",
field & 8 ? "f" : "",
",", registers[(uint4)instruction]);
return output;
}
//data immediate shift
//{opcode}{condition}{s} rd,rm {shift} #immediate
//{opcode}{condition} rn,rm {shift} #immediate
//{opcode}{condition}{s} rd,rn,rm {shift} #immediate
if((instruction & 0x0e000010) == 0x00000000) {
uint4 condition = instruction >> 28;
uint4 opcode = instruction >> 21;
uint1 save = instruction >> 20;
uint4 rn = instruction >> 16;
uint4 rd = instruction >> 12;
uint5 shift = instruction >> 7;
uint2 op = instruction >> 5;
uint4 rm = instruction;
output.append(opcodes[opcode], conditions[condition]);
if(is_move(opcode)) output.append(save ? "s " : " ", registers[rd]);
if(is_comp(opcode)) output.append(" ", registers[rn]);
if(is_math(opcode)) output.append(save ? "s " : " ", registers[rd], ",", registers[rn]);
output.append(",", registers[rm]);
if(op == 0 && shift != 0) output.append(" lsl #", shift);
if(op == 1) output.append(" lsr #", shift == 0 ? 32u : (unsigned)shift);
if(op == 2) output.append(" asr #", shift == 0 ? 32u : (unsigned)shift);
if(op == 3 && shift != 0) output.append(" ror #", shift);
if(op == 3 && shift == 0) output.append(" rrx");
return output;
}
//data register shift
//{opcode}{condition}{s} rd,rm {shift} rs
//{opcode}{condition} rn,rm {shift} rs
//{opcode}{condition}{s} rd,rn,rm {shift} rs
if((instruction & 0x0e000090) == 0x00000010) {
uint4 condition = instruction >> 28;
uint4 opcode = instruction >> 21;
uint1 save = instruction >> 20;
uint4 rn = instruction >> 16;
uint4 rd = instruction >> 12;
uint4 rs = instruction >> 8;
uint2 mode = instruction >> 5;
uint4 rm = instruction;
output.append(opcodes[opcode], conditions[condition]);
if(is_move(opcode)) output.append(save ? "s " : " ", registers[rd], ",");
if(is_comp(opcode)) output.append(registers[rn], ",");
if(is_math(opcode)) output.append(save ? "s " : " ", registers[rd], ",", registers[rn], ",");
output.append(registers[rm]);
if(mode == 0) output.append(" lsl ");
if(mode == 1) output.append(" lsr ");
if(mode == 2) output.append(" asr ");
if(mode == 3) output.append(" ror ");
output.append(registers[rs]);
return output;
}
//data immediate
//{opcode}{condition}{s} rd,#immediate
//{opcode}{condition} rn,#immediate
//{opcode}{condition}{s} rd,rn,#immediate
if((instruction & 0x0e000000) == 0x02000000) {
uint4 condition = instruction >> 28;
uint4 opcode = instruction >> 21;
uint1 save = instruction >> 20;
uint4 rn = instruction >> 16;
uint4 rd = instruction >> 12;
uint4 rotate = instruction >> 8;
uint8 immediate = instruction;
uint32 shifter = (immediate >> (rotate << 1)) | (immediate << (32 - (rotate << 1)));
output.append(opcodes[opcode], conditions[condition]);
if(is_move(opcode)) output.append(save ? "s " : " ", registers[rd]);
if(is_comp(opcode)) output.append(" ", registers[rn]);
if(is_math(opcode)) output.append(save ? "s " : " ", registers[rd], ",", registers[rn]);
output.append(",#0x", hex<8>(shifter));
return output;
}
//move immediate offset
//(ldr,str){condition}{b} rd,[rn{,+/-offset}]{!}
//(ldr,str){condition}{b} rd,[rn]{,+/-offset}
if((instruction & 0x0e000000) == 0x04000000) {
uint4 condition = instruction >> 28;
uint1 p = instruction >> 24;
uint1 u = instruction >> 23;
uint1 b = instruction >> 22;
uint1 w = instruction >> 21;
uint1 load = instruction >> 20;
uint4 rn = instruction >> 16;
uint4 rd = instruction >> 12;
uint12 immediate = instruction;
output.append(load ? "ldr" : "str", conditions[condition], b ? "b " : " ");
output.append(registers[rd], ",[", registers[rn]);
if(p == 0) output.append("]");
if(immediate) output.append(",", u ? "+" : "-", "0x", hex<3>(immediate));
if(p == 1) output.append("]");
if(p == 1 && w == 1) output.append("!");
if(rn == 15) output.append(" =0x", hex<8>(bus_readword(pc + 8 + (u ? +immediate : -immediate))));
return output;
}
//move register offset
//(ldr)(str){condition}{b} rd,[rn,rm {mode} #immediate]{!}
//(ldr)(str){condition}{b} rd,[rn],rm {mode} #immediate
if((instruction & 0x0e000010) == 0x06000000) {
uint4 condition = instruction >> 28;
uint1 p = instruction >> 24;
uint1 u = instruction >> 23;
uint1 b = instruction >> 22;
uint1 w = instruction >> 21;
uint1 load = instruction >> 20;
uint4 rn = instruction >> 16;
uint4 rd = instruction >> 12;
uint5 shift = instruction >> 7;
uint2 mode = instruction >> 5;
uint4 rm = instruction;
output.append(load ? "ldr" : "str", conditions[condition], b ? "b " : " ");
output.append(registers[rd], ",[", registers[rn]);
if(p == 0) output.append("]");
output.append(",", u ? "+" : "-", registers[rm]);
if(mode == 0 && shift != 0) output.append(" lsl #", shift);
if(mode == 1) output.append(" lsr #", shift == 0 ? 32u : (unsigned)shift);
if(mode == 2) output.append(" asr #", shift == 0 ? 32u : (unsigned)shift);
if(mode == 3 && shift != 0) output.append(" ror #", shift);
if(mode == 3 && shift == 0) output.append(" rrx");
if(p == 1) output.append("]");
if(p == 1 && w == 1) output.append("!");
return output;
}
//move multiple
//(ldm,stm){condition}{mode} rn{!},{r...}
if((instruction & 0x0e000000) == 0x08000000) {
uint4 condition = instruction >> 28;
uint4 rn = instruction >> 16;
output.append(instruction & 0x00100000 ? "ldm" : "stm", conditions[condition], indices[(uint2)(instruction >> 23)]);
output.append(" ", registers[rn], instruction & 0x00200000 ? "!" : "", ",{");
for(unsigned n = 0; n < 16; n++) if(instruction & (1 << n)) output.append(registers[n], ",");
output.rtrim<1>(",");
output.append("}");
return output;
}
//branch
//b{l}{condition} address
if((instruction & 0x0e000000) == 0x0a000000) {
uint4 condition = instruction >> 28;
uint1 l = instruction >> 24;
output.append("b", l ? "l" : "", conditions[condition]);
output.append(" 0x", hex<8>(pc + 8 + (int24)instruction * 4));
return output;
}
output.append("???");
return output;
}
string ArmDSP::disassemble_registers() {
return {
"r0:", hex<8>(r[ 0]), " r1:", hex<8>(r[ 1]), " r2:", hex<8>(r[ 2]), " r3:", hex<8>(r[ 3]),
" r4:", hex<8>(r[ 4]), " r5:", hex<8>(r[ 5]), " r6:", hex<8>(r[ 6]), " r7:", hex<8>(r[ 7]), " ",
"cpsr:", cpsr.n ? "N" : "n", cpsr.z ? "Z" : "z", cpsr.c ? "C" : "c", cpsr.v ? "V" : "v", "\n",
"r8:", hex<8>(r[ 8]), " r9:", hex<8>(r[ 9]), " r10:", hex<8>(r[10]), " r11:", hex<8>(r[11]),
" r12:", hex<8>(r[12]), " r13:", hex<8>(r[13]), " r14:", hex<8>(r[14]), " r15:", hex<8>(r[15]), " ",
"spsr:", spsr.n ? "N" : "n", spsr.z ? "Z" : "z", spsr.c ? "C" : "c", spsr.v ? "V" : "v"
};
}
#endif
| [
"philtre@live.ca"
] | philtre@live.ca |
48d3017996d0856a0d13bcb58eb77106623451e2 | 16fd0cbc6a4712cd36f5ac9d33b0ceb1b8423876 | /ProtoBuffer/ThirdParty/include/google/protobuf/wire_format_lite.h | be984c4d5ca8db4c1fc0aa2b07d9e072df397bfc | [] | no_license | tangheng0510/Protobuffer_UE4 | 7720010ecca10421fa9edd2ffb0185b51dcaf961 | 23fd85258935c8fce0d3e1579ff0316871f2522d | refs/heads/master | 2021-09-05T07:13:08.474582 | 2018-01-25T04:06:09 | 2018-01-25T04:06:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 41,201 | h | // Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
//
// 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 Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL 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.
// Author: kenton@google.com (Kenton Varda)
// atenasio@google.com (Chris Atenasio) (ZigZag transform)
// wink@google.com (Wink Saville) (refactored from wire_format.h)
// Based on original Protocol Buffers design by
// Sanjay Ghemawat, Jeff Dean, and others.
//
// This header is logically internal, but is made public because it is used
// from protocol-compiler-generated code, which may reside in other components.
#ifndef GOOGLE_PROTOBUF_WIRE_FORMAT_LITE_H__
#define GOOGLE_PROTOBUF_WIRE_FORMAT_LITE_H__
#pragma warning(disable:4146)
#pragma warning(disable:4946)
#include <string>
#include <google/protobuf/stubs/common.h>
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/message_lite.h>
#include <google/protobuf/stubs/port.h>
#include <google/protobuf/repeated_field.h>
// Do UTF-8 validation on string type in Debug build only
#ifndef NDEBUG
#define GOOGLE_PROTOBUF_UTF8_VALIDATION_ENABLED
#endif
// Avoid conflict with iOS where <ConditionalMacros.h> #defines TYPE_BOOL.
//
// If some one needs the macro TYPE_BOOL in a file that includes this header, it's
// possible to bring it back using push/pop_macro as follows.
//
// #pragma push_macro("TYPE_BOOL")
// #include this header and/or all headers that need the macro to be undefined.
// #pragma pop_macro("TYPE_BOOL")
#undef TYPE_BOOL
namespace google {
namespace protobuf {
template <typename T> class RepeatedField; // repeated_field.h
}
namespace protobuf {
namespace internal {
class StringPieceField;
// This class is for internal use by the protocol buffer library and by
// protocol-complier-generated message classes. It must not be called
// directly by clients.
//
// This class contains helpers for implementing the binary protocol buffer
// wire format without the need for reflection. Use WireFormat when using
// reflection.
//
// This class is really a namespace that contains only static methods.
class LIBPROTOBUF_EXPORT WireFormatLite {
public:
// -----------------------------------------------------------------
// Helper constants and functions related to the format. These are
// mostly meant for internal and generated code to use.
// The wire format is composed of a sequence of tag/value pairs, each
// of which contains the value of one field (or one element of a repeated
// field). Each tag is encoded as a varint. The lower bits of the tag
// identify its wire type, which specifies the format of the data to follow.
// The rest of the bits contain the field number. Each type of field (as
// declared by FieldDescriptor::Type, in descriptor.h) maps to one of
// these wire types. Immediately following each tag is the field's value,
// encoded in the format specified by the wire type. Because the tag
// identifies the encoding of this data, it is possible to skip
// unrecognized fields for forwards compatibility.
enum WireType {
WIRETYPE_VARINT = 0,
WIRETYPE_FIXED64 = 1,
WIRETYPE_LENGTH_DELIMITED = 2,
WIRETYPE_START_GROUP = 3,
WIRETYPE_END_GROUP = 4,
WIRETYPE_FIXED32 = 5,
};
// Lite alternative to FieldDescriptor::Type. Must be kept in sync.
enum FieldType {
TYPE_DOUBLE = 1,
TYPE_FLOAT = 2,
TYPE_INT64 = 3,
TYPE_UINT64 = 4,
TYPE_INT32 = 5,
TYPE_FIXED64 = 6,
TYPE_FIXED32 = 7,
TYPE_BOOL = 8,
TYPE_STRING = 9,
TYPE_GROUP = 10,
TYPE_MESSAGE = 11,
TYPE_BYTES = 12,
TYPE_UINT32 = 13,
TYPE_ENUM = 14,
TYPE_SFIXED32 = 15,
TYPE_SFIXED64 = 16,
TYPE_SINT32 = 17,
TYPE_SINT64 = 18,
MAX_FIELD_TYPE = 18,
};
// Lite alternative to FieldDescriptor::CppType. Must be kept in sync.
enum CppType {
CPPTYPE_INT32 = 1,
CPPTYPE_INT64 = 2,
CPPTYPE_UINT32 = 3,
CPPTYPE_UINT64 = 4,
CPPTYPE_DOUBLE = 5,
CPPTYPE_FLOAT = 6,
CPPTYPE_BOOL = 7,
CPPTYPE_ENUM = 8,
CPPTYPE_STRING = 9,
CPPTYPE_MESSAGE = 10,
MAX_CPPTYPE = 10,
};
// Helper method to get the CppType for a particular Type.
static CppType FieldTypeToCppType(FieldType type);
// Given a FieldDescriptor::Type return its WireType
static inline WireFormatLite::WireType WireTypeForFieldType(
WireFormatLite::FieldType type) {
return kWireTypeForFieldType[type];
}
// Number of bits in a tag which identify the wire type.
static const int kTagTypeBits = 3;
// Mask for those bits.
static const uint32 kTagTypeMask = (1 << kTagTypeBits) - 1;
// Helper functions for encoding and decoding tags. (Inlined below and in
// _inl.h)
//
// This is different from MakeTag(field->number(), field->type()) in the case
// of packed repeated fields.
static uint32 MakeTag(int field_number, WireType type);
static WireType GetTagWireType(uint32 tag);
static int GetTagFieldNumber(uint32 tag);
// Compute the byte size of a tag. For groups, this includes both the start
// and end tags.
static inline size_t TagSize(int field_number,
WireFormatLite::FieldType type);
// Skips a field value with the given tag. The input should start
// positioned immediately after the tag. Skipped values are simply discarded,
// not recorded anywhere. See WireFormat::SkipField() for a version that
// records to an UnknownFieldSet.
static bool SkipField(io::CodedInputStream* input, uint32 tag);
// Skips a field value with the given tag. The input should start
// positioned immediately after the tag. Skipped values are recorded to a
// CodedOutputStream.
static bool SkipField(io::CodedInputStream* input, uint32 tag,
io::CodedOutputStream* output);
// Reads and ignores a message from the input. Skipped values are simply
// discarded, not recorded anywhere. See WireFormat::SkipMessage() for a
// version that records to an UnknownFieldSet.
static bool SkipMessage(io::CodedInputStream* input);
// Reads and ignores a message from the input. Skipped values are recorded
// to a CodedOutputStream.
static bool SkipMessage(io::CodedInputStream* input,
io::CodedOutputStream* output);
// This macro does the same thing as WireFormatLite::MakeTag(), but the
// result is usable as a compile-time constant, which makes it usable
// as a switch case or a template input. WireFormatLite::MakeTag() is more
// type-safe, though, so prefer it if possible.
#define GOOGLE_PROTOBUF_WIRE_FORMAT_MAKE_TAG(FIELD_NUMBER, TYPE) \
static_cast<uint32>( \
(static_cast<uint32>(FIELD_NUMBER) << ::google::protobuf::internal::WireFormatLite::kTagTypeBits) \
| (TYPE))
// These are the tags for the old MessageSet format, which was defined as:
// message MessageSet {
// repeated group Item = 1 {
// required int32 type_id = 2;
// required string message = 3;
// }
// }
static const int kMessageSetItemNumber = 1;
static const int kMessageSetTypeIdNumber = 2;
static const int kMessageSetMessageNumber = 3;
static const int kMessageSetItemStartTag =
GOOGLE_PROTOBUF_WIRE_FORMAT_MAKE_TAG(kMessageSetItemNumber,
WireFormatLite::WIRETYPE_START_GROUP);
static const int kMessageSetItemEndTag =
GOOGLE_PROTOBUF_WIRE_FORMAT_MAKE_TAG(kMessageSetItemNumber,
WireFormatLite::WIRETYPE_END_GROUP);
static const int kMessageSetTypeIdTag =
GOOGLE_PROTOBUF_WIRE_FORMAT_MAKE_TAG(kMessageSetTypeIdNumber,
WireFormatLite::WIRETYPE_VARINT);
static const int kMessageSetMessageTag =
GOOGLE_PROTOBUF_WIRE_FORMAT_MAKE_TAG(kMessageSetMessageNumber,
WireFormatLite::WIRETYPE_LENGTH_DELIMITED);
// Byte size of all tags of a MessageSet::Item combined.
static const size_t kMessageSetItemTagsSize;
// Helper functions for converting between floats/doubles and IEEE-754
// uint32s/uint64s so that they can be written. (Assumes your platform
// uses IEEE-754 floats.)
static uint32 EncodeFloat(float value);
static float DecodeFloat(uint32 value);
static uint64 EncodeDouble(double value);
static double DecodeDouble(uint64 value);
// Helper functions for mapping signed integers to unsigned integers in
// such a way that numbers with small magnitudes will encode to smaller
// varints. If you simply static_cast a negative number to an unsigned
// number and varint-encode it, it will always take 10 bytes, defeating
// the purpose of varint. So, for the "sint32" and "sint64" field types,
// we ZigZag-encode the values.
static uint32 ZigZagEncode32(int32 n);
static int32 ZigZagDecode32(uint32 n);
static uint64 ZigZagEncode64(int64 n);
static int64 ZigZagDecode64(uint64 n);
// =================================================================
// Methods for reading/writing individual field. The implementations
// of these methods are defined in wire_format_lite_inl.h; you must #include
// that file to use these.
#ifdef NDEBUG
#define INL GOOGLE_PROTOBUF_ATTRIBUTE_ALWAYS_INLINE
#else
// Avoid excessive inlining in non-optimized builds. Without other optimizations
// the inlining is not going to provide benefits anyway and the huge resulting
// functions, especially in the proto-generated serialization functions, produce
// stack frames so large that many tests run into stack overflows (b/32192897).
#define INL
#endif
// Read fields, not including tags. The assumption is that you already
// read the tag to determine what field to read.
// For primitive fields, we just use a templatized routine parameterized by
// the represented type and the FieldType. These are specialized with the
// appropriate definition for each declared type.
template <typename CType, enum FieldType DeclaredType>
INL static bool ReadPrimitive(io::CodedInputStream* input, CType* value);
// Reads repeated primitive values, with optimizations for repeats.
// tag_size and tag should both be compile-time constants provided by the
// protocol compiler.
template <typename CType, enum FieldType DeclaredType>
INL static bool ReadRepeatedPrimitive(int tag_size, uint32 tag,
io::CodedInputStream* input,
RepeatedField<CType>* value);
// Identical to ReadRepeatedPrimitive, except will not inline the
// implementation.
template <typename CType, enum FieldType DeclaredType>
static bool ReadRepeatedPrimitiveNoInline(int tag_size, uint32 tag,
io::CodedInputStream* input,
RepeatedField<CType>* value);
// Reads a primitive value directly from the provided buffer. It returns a
// pointer past the segment of data that was read.
//
// This is only implemented for the types with fixed wire size, e.g.
// float, double, and the (s)fixed* types.
template <typename CType, enum FieldType DeclaredType> INL
static const uint8* ReadPrimitiveFromArray(const uint8* buffer, CType* value);
// Reads a primitive packed field.
//
// This is only implemented for packable types.
template <typename CType, enum FieldType DeclaredType>
INL static bool ReadPackedPrimitive(io::CodedInputStream* input,
RepeatedField<CType>* value);
// Identical to ReadPackedPrimitive, except will not inline the
// implementation.
template <typename CType, enum FieldType DeclaredType>
static bool ReadPackedPrimitiveNoInline(io::CodedInputStream* input,
RepeatedField<CType>* value);
// Read a packed enum field. If the is_valid function is not NULL, values for
// which is_valid(value) returns false are silently dropped.
static bool ReadPackedEnumNoInline(io::CodedInputStream* input,
bool (*is_valid)(int),
RepeatedField<int>* values);
// Read a packed enum field. If the is_valid function is not NULL, values for
// which is_valid(value) returns false are appended to unknown_fields_stream.
static bool ReadPackedEnumPreserveUnknowns(
io::CodedInputStream* input, int field_number, bool (*is_valid)(int),
io::CodedOutputStream* unknown_fields_stream, RepeatedField<int>* values);
// Read a string. ReadString(..., string* value) requires an existing string.
static inline bool ReadString(io::CodedInputStream* input, string* value);
// ReadString(..., string** p) is internal-only, and should only be called
// from generated code. It starts by setting *p to "new string"
// if *p == &GetEmptyStringAlreadyInited(). It then invokes
// ReadString(io::CodedInputStream* input, *p). This is useful for reducing
// code size.
static inline bool ReadString(io::CodedInputStream* input, string** p);
// Analogous to ReadString().
static bool ReadBytes(io::CodedInputStream* input, string* value);
static bool ReadBytes(io::CodedInputStream* input, string** p);
enum Operation {
PARSE = 0,
SERIALIZE = 1,
};
// Returns true if the data is valid UTF-8.
static bool VerifyUtf8String(const char* data, int size,
Operation op,
const char* field_name);
static inline bool ReadGroup(int field_number, io::CodedInputStream* input,
MessageLite* value);
static inline bool ReadMessage(io::CodedInputStream* input,
MessageLite* value);
// Like above, but de-virtualize the call to MergePartialFromCodedStream().
// The pointer must point at an instance of MessageType, *not* a subclass (or
// the subclass must not override MergePartialFromCodedStream()).
template <typename MessageType>
static inline bool ReadGroupNoVirtual(int field_number,
io::CodedInputStream* input,
MessageType* value);
template<typename MessageType>
static inline bool ReadMessageNoVirtual(io::CodedInputStream* input,
MessageType* value);
// The same, but do not modify input's recursion depth. This is useful
// when reading a bunch of groups or messages in a loop, because then the
// recursion depth can be incremented before the loop and decremented after.
template<typename MessageType>
static inline bool ReadGroupNoVirtualNoRecursionDepth(
int field_number, io::CodedInputStream* input, MessageType* value);
template<typename MessageType>
static inline bool ReadMessageNoVirtualNoRecursionDepth(
io::CodedInputStream* input, MessageType* value);
// Write a tag. The Write*() functions typically include the tag, so
// normally there's no need to call this unless using the Write*NoTag()
// variants.
INL static void WriteTag(int field_number, WireType type,
io::CodedOutputStream* output);
// Write fields, without tags.
INL static void WriteInt32NoTag(int32 value, io::CodedOutputStream* output);
INL static void WriteInt64NoTag(int64 value, io::CodedOutputStream* output);
INL static void WriteUInt32NoTag(uint32 value, io::CodedOutputStream* output);
INL static void WriteUInt64NoTag(uint64 value, io::CodedOutputStream* output);
INL static void WriteSInt32NoTag(int32 value, io::CodedOutputStream* output);
INL static void WriteSInt64NoTag(int64 value, io::CodedOutputStream* output);
INL static void WriteFixed32NoTag(uint32 value,
io::CodedOutputStream* output);
INL static void WriteFixed64NoTag(uint64 value,
io::CodedOutputStream* output);
INL static void WriteSFixed32NoTag(int32 value,
io::CodedOutputStream* output);
INL static void WriteSFixed64NoTag(int64 value,
io::CodedOutputStream* output);
INL static void WriteFloatNoTag(float value, io::CodedOutputStream* output);
INL static void WriteDoubleNoTag(double value, io::CodedOutputStream* output);
INL static void WriteBoolNoTag(bool value, io::CodedOutputStream* output);
INL static void WriteEnumNoTag(int value, io::CodedOutputStream* output);
// Write array of primitive fields, without tags
static void WriteFloatArray(const float* a, int n,
io::CodedOutputStream* output);
static void WriteDoubleArray(const double* a, int n,
io::CodedOutputStream* output);
static void WriteFixed32Array(const uint32* a, int n,
io::CodedOutputStream* output);
static void WriteFixed64Array(const uint64* a, int n,
io::CodedOutputStream* output);
static void WriteSFixed32Array(const int32* a, int n,
io::CodedOutputStream* output);
static void WriteSFixed64Array(const int64* a, int n,
io::CodedOutputStream* output);
static void WriteBoolArray(const bool* a, int n,
io::CodedOutputStream* output);
// Write fields, including tags.
static void WriteInt32(int field_number, int32 value,
io::CodedOutputStream* output);
static void WriteInt64(int field_number, int64 value,
io::CodedOutputStream* output);
static void WriteUInt32(int field_number, uint32 value,
io::CodedOutputStream* output);
static void WriteUInt64(int field_number, uint64 value,
io::CodedOutputStream* output);
static void WriteSInt32(int field_number, int32 value,
io::CodedOutputStream* output);
static void WriteSInt64(int field_number, int64 value,
io::CodedOutputStream* output);
static void WriteFixed32(int field_number, uint32 value,
io::CodedOutputStream* output);
static void WriteFixed64(int field_number, uint64 value,
io::CodedOutputStream* output);
static void WriteSFixed32(int field_number, int32 value,
io::CodedOutputStream* output);
static void WriteSFixed64(int field_number, int64 value,
io::CodedOutputStream* output);
static void WriteFloat(int field_number, float value,
io::CodedOutputStream* output);
static void WriteDouble(int field_number, double value,
io::CodedOutputStream* output);
static void WriteBool(int field_number, bool value,
io::CodedOutputStream* output);
static void WriteEnum(int field_number, int value,
io::CodedOutputStream* output);
static void WriteString(int field_number, const string& value,
io::CodedOutputStream* output);
static void WriteBytes(int field_number, const string& value,
io::CodedOutputStream* output);
static void WriteStringMaybeAliased(int field_number, const string& value,
io::CodedOutputStream* output);
static void WriteBytesMaybeAliased(int field_number, const string& value,
io::CodedOutputStream* output);
static void WriteGroup(int field_number, const MessageLite& value,
io::CodedOutputStream* output);
static void WriteMessage(int field_number, const MessageLite& value,
io::CodedOutputStream* output);
// Like above, but these will check if the output stream has enough
// space to write directly to a flat array.
static void WriteGroupMaybeToArray(int field_number, const MessageLite& value,
io::CodedOutputStream* output);
static void WriteMessageMaybeToArray(int field_number,
const MessageLite& value,
io::CodedOutputStream* output);
// Like above, but de-virtualize the call to SerializeWithCachedSizes(). The
// pointer must point at an instance of MessageType, *not* a subclass (or
// the subclass must not override SerializeWithCachedSizes()).
template <typename MessageType>
static inline void WriteGroupNoVirtual(int field_number,
const MessageType& value,
io::CodedOutputStream* output);
template <typename MessageType>
static inline void WriteMessageNoVirtual(int field_number,
const MessageType& value,
io::CodedOutputStream* output);
// Like above, but use only *ToArray methods of CodedOutputStream.
INL static uint8* WriteTagToArray(int field_number, WireType type,
uint8* target);
// Write fields, without tags.
INL static uint8* WriteInt32NoTagToArray(int32 value, uint8* target);
INL static uint8* WriteInt64NoTagToArray(int64 value, uint8* target);
INL static uint8* WriteUInt32NoTagToArray(uint32 value, uint8* target);
INL static uint8* WriteUInt64NoTagToArray(uint64 value, uint8* target);
INL static uint8* WriteSInt32NoTagToArray(int32 value, uint8* target);
INL static uint8* WriteSInt64NoTagToArray(int64 value, uint8* target);
INL static uint8* WriteFixed32NoTagToArray(uint32 value, uint8* target);
INL static uint8* WriteFixed64NoTagToArray(uint64 value, uint8* target);
INL static uint8* WriteSFixed32NoTagToArray(int32 value, uint8* target);
INL static uint8* WriteSFixed64NoTagToArray(int64 value, uint8* target);
INL static uint8* WriteFloatNoTagToArray(float value, uint8* target);
INL static uint8* WriteDoubleNoTagToArray(double value, uint8* target);
INL static uint8* WriteBoolNoTagToArray(bool value, uint8* target);
INL static uint8* WriteEnumNoTagToArray(int value, uint8* target);
// Write fields, without tags. These require that value.size() > 0.
template<typename T>
INL static uint8* WritePrimitiveNoTagToArray(
const RepeatedField<T>& value,
uint8* (*Writer)(T, uint8*), uint8* target);
template<typename T>
INL static uint8* WriteFixedNoTagToArray(
const RepeatedField<T>& value,
uint8* (*Writer)(T, uint8*), uint8* target);
INL static uint8* WriteInt32NoTagToArray(
const RepeatedField< int32>& value, uint8* output);
INL static uint8* WriteInt64NoTagToArray(
const RepeatedField< int64>& value, uint8* output);
INL static uint8* WriteUInt32NoTagToArray(
const RepeatedField<uint32>& value, uint8* output);
INL static uint8* WriteUInt64NoTagToArray(
const RepeatedField<uint64>& value, uint8* output);
INL static uint8* WriteSInt32NoTagToArray(
const RepeatedField< int32>& value, uint8* output);
INL static uint8* WriteSInt64NoTagToArray(
const RepeatedField< int64>& value, uint8* output);
INL static uint8* WriteFixed32NoTagToArray(
const RepeatedField<uint32>& value, uint8* output);
INL static uint8* WriteFixed64NoTagToArray(
const RepeatedField<uint64>& value, uint8* output);
INL static uint8* WriteSFixed32NoTagToArray(
const RepeatedField< int32>& value, uint8* output);
INL static uint8* WriteSFixed64NoTagToArray(
const RepeatedField< int64>& value, uint8* output);
INL static uint8* WriteFloatNoTagToArray(
const RepeatedField< float>& value, uint8* output);
INL static uint8* WriteDoubleNoTagToArray(
const RepeatedField<double>& value, uint8* output);
INL static uint8* WriteBoolNoTagToArray(
const RepeatedField< bool>& value, uint8* output);
INL static uint8* WriteEnumNoTagToArray(
const RepeatedField< int>& value, uint8* output);
// Write fields, including tags.
INL static uint8* WriteInt32ToArray(int field_number, int32 value,
uint8* target);
INL static uint8* WriteInt64ToArray(int field_number, int64 value,
uint8* target);
INL static uint8* WriteUInt32ToArray(int field_number, uint32 value,
uint8* target);
INL static uint8* WriteUInt64ToArray(int field_number, uint64 value,
uint8* target);
INL static uint8* WriteSInt32ToArray(int field_number, int32 value,
uint8* target);
INL static uint8* WriteSInt64ToArray(int field_number, int64 value,
uint8* target);
INL static uint8* WriteFixed32ToArray(int field_number, uint32 value,
uint8* target);
INL static uint8* WriteFixed64ToArray(int field_number, uint64 value,
uint8* target);
INL static uint8* WriteSFixed32ToArray(int field_number, int32 value,
uint8* target);
INL static uint8* WriteSFixed64ToArray(int field_number, int64 value,
uint8* target);
INL static uint8* WriteFloatToArray(int field_number, float value,
uint8* target);
INL static uint8* WriteDoubleToArray(int field_number, double value,
uint8* target);
INL static uint8* WriteBoolToArray(int field_number, bool value,
uint8* target);
INL static uint8* WriteEnumToArray(int field_number, int value,
uint8* target);
template<typename T>
INL static uint8* WritePrimitiveToArray(
int field_number,
const RepeatedField<T>& value,
uint8* (*Writer)(int, T, uint8*), uint8* target);
INL static uint8* WriteInt32ToArray(
int field_number, const RepeatedField< int32>& value, uint8* output);
INL static uint8* WriteInt64ToArray(
int field_number, const RepeatedField< int64>& value, uint8* output);
INL static uint8* WriteUInt32ToArray(
int field_number, const RepeatedField<uint32>& value, uint8* output);
INL static uint8* WriteUInt64ToArray(
int field_number, const RepeatedField<uint64>& value, uint8* output);
INL static uint8* WriteSInt32ToArray(
int field_number, const RepeatedField< int32>& value, uint8* output);
INL static uint8* WriteSInt64ToArray(
int field_number, const RepeatedField< int64>& value, uint8* output);
INL static uint8* WriteFixed32ToArray(
int field_number, const RepeatedField<uint32>& value, uint8* output);
INL static uint8* WriteFixed64ToArray(
int field_number, const RepeatedField<uint64>& value, uint8* output);
INL static uint8* WriteSFixed32ToArray(
int field_number, const RepeatedField< int32>& value, uint8* output);
INL static uint8* WriteSFixed64ToArray(
int field_number, const RepeatedField< int64>& value, uint8* output);
INL static uint8* WriteFloatToArray(
int field_number, const RepeatedField< float>& value, uint8* output);
INL static uint8* WriteDoubleToArray(
int field_number, const RepeatedField<double>& value, uint8* output);
INL static uint8* WriteBoolToArray(
int field_number, const RepeatedField< bool>& value, uint8* output);
INL static uint8* WriteEnumToArray(
int field_number, const RepeatedField< int>& value, uint8* output);
INL static uint8* WriteStringToArray(int field_number, const string& value,
uint8* target);
INL static uint8* WriteBytesToArray(int field_number, const string& value,
uint8* target);
// Whether to serialize deterministically (e.g., map keys are
// sorted) is a property of a CodedOutputStream, and in the process
// of serialization, the "ToArray" variants may be invoked. But they don't
// have a CodedOutputStream available, so they get an additional parameter
// telling them whether to serialize deterministically.
INL static uint8* InternalWriteGroupToArray(int field_number,
const MessageLite& value,
bool deterministic,
uint8* target);
INL static uint8* InternalWriteMessageToArray(int field_number,
const MessageLite& value,
bool deterministic,
uint8* target);
// Like above, but de-virtualize the call to SerializeWithCachedSizes(). The
// pointer must point at an instance of MessageType, *not* a subclass (or
// the subclass must not override SerializeWithCachedSizes()).
template <typename MessageType>
INL static uint8* InternalWriteGroupNoVirtualToArray(int field_number,
const MessageType& value,
bool deterministic,
uint8* target);
template <typename MessageType>
INL static uint8* InternalWriteMessageNoVirtualToArray(
int field_number, const MessageType& value, bool deterministic,
uint8* target);
// For backward-compatibility, the last four methods also have versions
// that are non-deterministic always.
INL static uint8* WriteGroupToArray(int field_number,
const MessageLite& value, uint8* target) {
return InternalWriteGroupToArray(field_number, value, false, target);
}
INL static uint8* WriteMessageToArray(int field_number,
const MessageLite& value,
uint8* target) {
return InternalWriteMessageToArray(field_number, value, false, target);
}
template <typename MessageType>
INL static uint8* WriteGroupNoVirtualToArray(int field_number,
const MessageType& value,
uint8* target) {
return InternalWriteGroupNoVirtualToArray(field_number, value, false,
target);
}
template <typename MessageType>
INL static uint8* WriteMessageNoVirtualToArray(int field_number,
const MessageType& value,
uint8* target) {
return InternalWriteMessageNoVirtualToArray(field_number, value, false,
target);
}
#undef INL
// Compute the byte size of a field. The XxSize() functions do NOT include
// the tag, so you must also call TagSize(). (This is because, for repeated
// fields, you should only call TagSize() once and multiply it by the element
// count, but you may have to call XxSize() for each individual element.)
static inline size_t Int32Size ( int32 value);
static inline size_t Int64Size ( int64 value);
static inline size_t UInt32Size (uint32 value);
static inline size_t UInt64Size (uint64 value);
static inline size_t SInt32Size ( int32 value);
static inline size_t SInt64Size ( int64 value);
static inline size_t EnumSize ( int value);
static size_t Int32Size (const RepeatedField< int32>& value);
static inline size_t Int64Size (const RepeatedField< int64>& value);
static size_t UInt32Size(const RepeatedField<uint32>& value);
static inline size_t UInt64Size(const RepeatedField<uint64>& value);
static size_t SInt32Size(const RepeatedField< int32>& value);
static inline size_t SInt64Size(const RepeatedField< int64>& value);
static size_t EnumSize (const RepeatedField< int>& value);
// These types always have the same size.
static const size_t kFixed32Size = 4;
static const size_t kFixed64Size = 8;
static const size_t kSFixed32Size = 4;
static const size_t kSFixed64Size = 8;
static const size_t kFloatSize = 4;
static const size_t kDoubleSize = 8;
static const size_t kBoolSize = 1;
static inline size_t StringSize(const string& value);
static inline size_t BytesSize (const string& value);
static inline size_t GroupSize (const MessageLite& value);
static inline size_t MessageSize(const MessageLite& value);
// Like above, but de-virtualize the call to ByteSize(). The
// pointer must point at an instance of MessageType, *not* a subclass (or
// the subclass must not override ByteSize()).
template<typename MessageType>
static inline size_t GroupSizeNoVirtual (const MessageType& value);
template<typename MessageType>
static inline size_t MessageSizeNoVirtual(const MessageType& value);
// Given the length of data, calculate the byte size of the data on the
// wire if we encode the data as a length delimited field.
static inline size_t LengthDelimitedSize(size_t length);
private:
// A helper method for the repeated primitive reader. This method has
// optimizations for primitive types that have fixed size on the wire, and
// can be read using potentially faster paths.
template <typename CType, enum FieldType DeclaredType>
GOOGLE_PROTOBUF_ATTRIBUTE_ALWAYS_INLINE
static bool ReadRepeatedFixedSizePrimitive(
int tag_size,
uint32 tag,
google::protobuf::io::CodedInputStream* input,
RepeatedField<CType>* value);
// Like ReadRepeatedFixedSizePrimitive but for packed primitive fields.
template <typename CType, enum FieldType DeclaredType>
GOOGLE_PROTOBUF_ATTRIBUTE_ALWAYS_INLINE
static bool ReadPackedFixedSizePrimitive(
google::protobuf::io::CodedInputStream* input, RepeatedField<CType>* value);
static const CppType kFieldTypeToCppTypeMap[];
static const WireFormatLite::WireType kWireTypeForFieldType[];
GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(WireFormatLite);
};
// A class which deals with unknown values. The default implementation just
// discards them. WireFormat defines a subclass which writes to an
// UnknownFieldSet. This class is used by ExtensionSet::ParseField(), since
// ExtensionSet is part of the lite library but UnknownFieldSet is not.
class LIBPROTOBUF_EXPORT FieldSkipper {
public:
FieldSkipper() {}
virtual ~FieldSkipper() {}
// Skip a field whose tag has already been consumed.
virtual bool SkipField(io::CodedInputStream* input, uint32 tag);
// Skip an entire message or group, up to an end-group tag (which is consumed)
// or end-of-stream.
virtual bool SkipMessage(io::CodedInputStream* input);
// Deal with an already-parsed unrecognized enum value. The default
// implementation does nothing, but the UnknownFieldSet-based implementation
// saves it as an unknown varint.
virtual void SkipUnknownEnum(int field_number, int value);
};
// Subclass of FieldSkipper which saves skipped fields to a CodedOutputStream.
class LIBPROTOBUF_EXPORT CodedOutputStreamFieldSkipper : public FieldSkipper {
public:
explicit CodedOutputStreamFieldSkipper(io::CodedOutputStream* unknown_fields)
: unknown_fields_(unknown_fields) {}
virtual ~CodedOutputStreamFieldSkipper() {}
// implements FieldSkipper -----------------------------------------
virtual bool SkipField(io::CodedInputStream* input, uint32 tag);
virtual bool SkipMessage(io::CodedInputStream* input);
virtual void SkipUnknownEnum(int field_number, int value);
protected:
io::CodedOutputStream* unknown_fields_;
};
// inline methods ====================================================
inline WireFormatLite::CppType
WireFormatLite::FieldTypeToCppType(FieldType type) {
return kFieldTypeToCppTypeMap[type];
}
inline uint32 WireFormatLite::MakeTag(int field_number, WireType type) {
return GOOGLE_PROTOBUF_WIRE_FORMAT_MAKE_TAG(field_number, type);
}
inline WireFormatLite::WireType WireFormatLite::GetTagWireType(uint32 tag) {
return static_cast<WireType>(tag & kTagTypeMask);
}
inline int WireFormatLite::GetTagFieldNumber(uint32 tag) {
return static_cast<int>(tag >> kTagTypeBits);
}
inline size_t WireFormatLite::TagSize(int field_number,
WireFormatLite::FieldType type) {
size_t result = io::CodedOutputStream::VarintSize32(
static_cast<uint32>(field_number << kTagTypeBits));
if (type == TYPE_GROUP) {
// Groups have both a start and an end tag.
return result * 2;
} else {
return result;
}
}
inline uint32 WireFormatLite::EncodeFloat(float value) {
union {float f; uint32 i;};
f = value;
return i;
}
inline float WireFormatLite::DecodeFloat(uint32 value) {
union {float f; uint32 i;};
i = value;
return f;
}
inline uint64 WireFormatLite::EncodeDouble(double value) {
union {double f; uint64 i;};
f = value;
return i;
}
inline double WireFormatLite::DecodeDouble(uint64 value) {
union {double f; uint64 i;};
i = value;
return f;
}
// ZigZag Transform: Encodes signed integers so that they can be
// effectively used with varint encoding.
//
// varint operates on unsigned integers, encoding smaller numbers into
// fewer bytes. If you try to use it on a signed integer, it will treat
// this number as a very large unsigned integer, which means that even
// small signed numbers like -1 will take the maximum number of bytes
// (10) to encode. ZigZagEncode() maps signed integers to unsigned
// in such a way that those with a small absolute value will have smaller
// encoded values, making them appropriate for encoding using varint.
//
// int32 -> uint32
// -------------------------
// 0 -> 0
// -1 -> 1
// 1 -> 2
// -2 -> 3
// ... -> ...
// 2147483647 -> 4294967294
// -2147483648 -> 4294967295
//
// >> encode >>
// << decode <<
inline uint32 WireFormatLite::ZigZagEncode32(int32 n) {
// Note: the right-shift must be arithmetic
// Note: left shift must be unsigned because of overflow
return (static_cast<uint32>(n) << 1) ^ static_cast<uint32>(n >> 31);
}
inline int32 WireFormatLite::ZigZagDecode32(uint32 n) {
// Note: Using unsigned types prevent undefined behavior
return static_cast<int32>((n >> 1) ^ -(n & 1));
}
inline uint64 WireFormatLite::ZigZagEncode64(int64 n) {
// Note: the right-shift must be arithmetic
// Note: left shift must be unsigned because of overflow
return (static_cast<uint64>(n) << 1) ^ static_cast<uint64>(n >> 63);
}
inline int64 WireFormatLite::ZigZagDecode64(uint64 n) {
// Note: Using unsigned types prevent undefined behavior
return static_cast<int64>((n >> 1) ^ -(n & 1));
}
// String is for UTF-8 text only, but, even so, ReadString() can simply
// call ReadBytes().
inline bool WireFormatLite::ReadString(io::CodedInputStream* input,
string* value) {
return ReadBytes(input, value);
}
inline bool WireFormatLite::ReadString(io::CodedInputStream* input,
string** p) {
return ReadBytes(input, p);
}
} // namespace internal
} // namespace protobuf
} // namespace google
#endif // GOOGLE_PROTOBUF_WIRE_FORMAT_LITE_H__
| [
"731796991@qq.com"
] | 731796991@qq.com |
8a09515f6ccaecb0c5d3df7eec52335d7953007d | 57a80e640b2d38251b3bc648c0fc00246bb27dd4 | /src/linAlg/random.h | e841e1c645f225f08f1175f3890d3f8610c6f32c | [] | no_license | williammacke/GraphConvolutionalNetworks | eb7ec62cee27e8a54b0e33852e330912c8bad60b | 90d65d6a91e92bf2ec630ec9c9937a6d9438cc36 | refs/heads/master | 2023-01-25T01:14:29.328497 | 2020-12-10T19:25:44 | 2020-12-10T19:25:44 | 312,414,756 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 727 | h | #ifndef RANDOM_H_
#define RANDOM_H_
#include "curand.h"
#include "curand_kernel.h"
#include "linAlg/matrix.h"
__global__ void initCurand(curandState_t *state, unsigned long seed, size_t n);
template <class T>
__global__ void randomize_data(curandState_t *state, T* out, size_t n, float p) {
int idx = threadIdx.x + blockIdx.x * blockDim.x;
if (idx < n) {
if (curand_uniform(&state[idx]) < p) {
out[idx] = 0;
}
else {
out[idx] = 1;
}
}
}
template <class T>
void randomize_mat(curandState_t *state, Matrix<T>& out, float p) {
size_t n = out.getN()*out.getM();
randomize_data<<<(n+TPB-1)/TPB, TPB>>>(state, out.getData(), n, p);
auto err = cudaDeviceSynchronize();
if (err) {
throw err;
}
}
#endif
| [
"wm7633@tuxedo.ices.utexas.edu"
] | wm7633@tuxedo.ices.utexas.edu |
e4aaa83abe2c6b9840b469521cbe543307eb0284 | 1c011b50adafe6bb0123f815b229b6898702f360 | /src/test/bits7global.cpp | d44675f375d2f1de52b33a7e45d475565f147391 | [] | no_license | kellen/bitvector-masters | c5d50459e6a212cd4d65bbb75ebaddbf26b62260 | 089245f7ad019c7c4facc475e15b45ebf6577570 | refs/heads/master | 2021-01-21T19:35:05.181542 | 2015-03-11T16:18:52 | 2015-03-11T16:18:52 | 23,480,772 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 378 | cpp | #include "test.h"
#include "bitvec/branch.h"
#include "bitvec/propagator.h"
using TestSBox::TestBit;
using BV::BIT_VAR_NONE;
using BV::BIT_VAL_RND_BIT;
using namespace Gecode;
TestSBox::BitS7Global::BitS7Global() : TestBit() {
#include "model/setup.cpp"
#include "model/bitvec/s7global.cpp"
Rnd r(1U);
branch(*this, x, BIT_VAR_NONE(), BIT_VAL_RND_BIT(r));
}
| [
"kellen@cretin.net"
] | kellen@cretin.net |
9e8375949ed94f4fceb6fa5745a52f8fc8361e0b | 62ad66b61faf430f0df79822e4a34764ca9cf9d7 | /tensorflow/compiler/xla/service/while_loop_concat_code_motion_test.cc | 78b386ac6f5e2b52e1f68e7a3cea161cdffffb0a | [
"Apache-2.0",
"MIT",
"BSD-2-Clause"
] | permissive | sx-aurora-dev/tensorflow | 813b8d6b5dafef28d370ec69499fce878128095b | b7db2836866d9d066b53128e42ba315b1a196cc5 | refs/heads/r2.5-ve | 2023-04-07T13:25:08.296719 | 2021-08-29T23:39:57 | 2021-08-29T23:39:57 | 190,295,991 | 9 | 4 | Apache-2.0 | 2023-03-25T00:56:26 | 2019-06-04T23:57:04 | C++ | UTF-8 | C++ | false | false | 20,319 | cc | /* Copyright 2021 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/compiler/xla/service/while_loop_concat_code_motion.h"
#include <algorithm>
#include <iterator>
#include "absl/algorithm/container.h"
#include "absl/strings/string_view.h"
#include "tensorflow/compiler/xla/service/hlo_casting_utils.h"
#include "tensorflow/compiler/xla/service/hlo_instruction.h"
#include "tensorflow/compiler/xla/service/hlo_instructions.h"
#include "tensorflow/compiler/xla/service/hlo_matchers.h"
#include "tensorflow/compiler/xla/service/hlo_opcode.h"
#include "tensorflow/compiler/xla/service/hlo_verifier.h"
#include "tensorflow/compiler/xla/tests/hlo_test_base.h"
#include "tensorflow/compiler/xla/xla_data.pb.h"
#include "tensorflow/core/lib/core/status_test_util.h"
namespace xla {
namespace {
namespace op = ::xla::testing::opcode_matchers;
class WhileLoopConcatCodeMotionTest : public HloTestBase {};
TEST_F(WhileLoopConcatCodeMotionTest, SimpleMotion) {
constexpr absl::string_view kHloModule = R"(
HloModule test
%cond {
%param = (s32[], f32[1024,1024], f32[1024,1024]) parameter(0)
%gte.0 = s32[] get-tuple-element(%param), index=0
%constant = s32[] constant(5)
ROOT result = pred[] compare(%gte.0, %constant), direction=LT
}
%body {
%param = (s32[], f32[1024,1024], f32[1024,1024]) parameter(0)
%gte.0 = s32[] get-tuple-element(%param), index=0
%gte.1 = f32[1024,1024] get-tuple-element(%param), index=1
%gte.2 = f32[1024,1024] get-tuple-element(%param), index=2
%concat = f32[2048,1024] concatenate(%gte.1, %gte.2), dimensions={0}
%ccall = f32[2048,1024] custom-call(%concat), custom_call_target="test"
%slice.0 = f32[1024,1024] slice(%ccall), slice={[0:1024], [0:1024]}
%slice.1 = f32[1024,1024] slice(%ccall), slice={[1024:2048], [0:1024]}
%ccall2 = f32[1024,1024] custom-call(), custom_call_target="test2"
%add.0 = f32[1024,1024] add(%slice.0, %ccall2)
%add.1 = f32[1024,1024] add(%slice.1, %ccall2)
%t0 = token[] after-all()
%outfeed = token[] outfeed(%slice.1, %t0)
%constant = s32[] constant(1)
%increment_iteration = s32[] add(s32[] %gte.0, s32[] %constant)
ROOT %loop_result = (s32[], f32[1024,1024], f32[1024,1024])
tuple(%increment_iteration, %add.0, %add.1)
}
ENTRY test_main {
%param.0 = f32[1024,1024] parameter(0)
%param.1 = f32[1024,1024] parameter(1)
%constant.0 = s32[] constant(0)
%while_init = (s32[], f32[1024,1024], f32[1024,1024]) tuple(%constant.0, %param.0, %param.1)
ROOT %while = (s32[], f32[1024,1024], f32[1024,1024]) while(%while_init), condition=%cond, body=%body
}
)";
TF_ASSERT_OK_AND_ASSIGN(std::unique_ptr<HloModule> module,
ParseAndReturnVerifiedModule(kHloModule));
TF_ASSERT_OK_AND_ASSIGN(bool changed,
WhileLoopConcatCodeMotion(2).Run(module.get()));
ASSERT_TRUE(changed);
VLOG(1) << module->ToString();
auto loop = op::While(
op::Tuple(op::Constant(),
AllOf(op::Shape("f32[2048,1024]"),
op::Concatenate(op::Parameter(0), op::Parameter(1)))));
ASSERT_THAT(
module->entry_computation()->root_instruction(),
op::Tuple(op::GetTupleElement(loop), op::Slice(op::GetTupleElement(loop)),
op::Slice(op::GetTupleElement(loop))));
auto while_op =
module->entry_computation()->root_instruction()->operand(0)->operand(0);
EXPECT_THAT(while_op->while_body()->root_instruction(),
op::Tuple(op::Add(),
op::Add(op::CustomCall(),
op::Reshape(op::Broadcast(op::CustomCall())))));
}
TEST_F(WhileLoopConcatCodeMotionTest, NoMotionWithChangedElementOrder) {
constexpr absl::string_view kHloModule = R"(
HloModule test
%cond {
%param = (s32[], f32[1024,1024], f32[1024,1024]) parameter(0)
%gte.0 = s32[] get-tuple-element(%param), index=0
%constant = s32[] constant(5)
ROOT result = pred[] compare(%gte.0, %constant), direction=LT
}
%body {
%param = (s32[], f32[1024,1024], f32[1024,1024]) parameter(0)
%gte.0 = s32[] get-tuple-element(%param), index=0
%gte.1 = f32[1024,1024] get-tuple-element(%param), index=1
%gte.2 = f32[1024,1024] get-tuple-element(%param), index=2
%concat = f32[2048,1024] concatenate(%gte.1, %gte.2), dimensions={0}
%ccall = f32[2048,1024] custom-call(%concat), custom_call_target="test"
%slice.0 = f32[1024,1024] slice(%ccall), slice={[0:1024], [0:1024]}
%slice.1 = f32[1024,1024] slice(%ccall), slice={[1024:2048], [0:1024]}
%constant = s32[] constant(1)
%increment_iteration = s32[] add(s32[] %gte.0, s32[] %constant)
ROOT %loop_result = (s32[], f32[1024,1024], f32[1024,1024])
tuple(%increment_iteration, %slice.1, %slice.0)
}
ENTRY test_main {
%param.0 = f32[1024,1024] parameter(0)
%param.1 = f32[1024,1024] parameter(1)
%constant.0 = s32[] constant(0)
%while_init = (s32[], f32[1024,1024], f32[1024,1024]) tuple(%constant.0, %param.0, %param.1)
ROOT %while = (s32[], f32[1024,1024], f32[1024,1024]) while(%while_init), condition=%cond, body=%body
}
)";
TF_ASSERT_OK_AND_ASSIGN(std::unique_ptr<HloModule> module,
ParseAndReturnVerifiedModule(kHloModule));
TF_ASSERT_OK_AND_ASSIGN(bool changed,
WhileLoopConcatCodeMotion(2).Run(module.get()));
ASSERT_FALSE(changed);
}
TEST_F(WhileLoopConcatCodeMotionTest, CascadedConcats) {
constexpr absl::string_view kHloModule = R"(
HloModule test
%cond {
%param = (s32[], f32[1024,1024], f32[1024,1024], f32[1024,1024], f32[1024,1024]) parameter(0)
%gte.0 = s32[] get-tuple-element(%param), index=0
%constant = s32[] constant(5)
ROOT result = pred[] compare(%gte.0, %constant), direction=LT
}
%body {
%param = (s32[], f32[1024,1024], f32[1024,1024], f32[1024,1024], f32[1024,1024]) parameter(0)
%gte.0 = s32[] get-tuple-element(%param), index=0
%gte.1 = f32[1024,1024] get-tuple-element(%param), index=1
%gte.2 = f32[1024,1024] get-tuple-element(%param), index=2
%concat = f32[2048,1024] concatenate(%gte.1, %gte.2), dimensions={0}
%gte.3 = f32[1024,1024] get-tuple-element(%param), index=3
%gte.4 = f32[1024,1024] get-tuple-element(%param), index=4
%ccall = f32[2048,1024] custom-call(%concat), custom_call_target="test"
%slice.0 = f32[1024,1024] slice(%ccall), slice={[0:1024], [0:1024]}
%slice.1 = f32[1024,1024] slice(%ccall), slice={[1024:2048], [0:1024]}
%add.0 = f32[1024,1024] add(%slice.0, %gte.3)
%add.1 = f32[1024,1024] add(%slice.1, %gte.4)
%add.2 = f32[1024,1024] add(%gte.3, %gte.3)
%add.3 = f32[1024,1024] add(%gte.4, %gte.4)
%constant = s32[] constant(1)
%increment_iteration = s32[] add(s32[] %gte.0, s32[] %constant)
ROOT %loop_result = (s32[], f32[1024,1024], f32[1024,1024], f32[1024,1024], f32[1024,1024])
tuple(%increment_iteration, %add.0, %add.1, %add.2, %add.3)
}
ENTRY test_main {
%param.0 = f32[1024,1024] parameter(0)
%param.1 = f32[1024,1024] parameter(1)
%param.2 = f32[1024,1024] parameter(2)
%param.3 = f32[1024,1024] parameter(3)
%constant.0 = s32[] constant(0)
%while_init = (s32[], f32[1024,1024], f32[1024,1024], f32[1024,1024], f32[1024,1024])
tuple(%constant.0, %param.0, %param.1, %param.2, %param.3)
ROOT %while = (s32[], f32[1024,1024], f32[1024,1024], f32[1024,1024], f32[1024,1024])
while(%while_init), condition=%cond, body=%body
}
)";
TF_ASSERT_OK_AND_ASSIGN(std::unique_ptr<HloModule> module,
ParseAndReturnVerifiedModule(kHloModule));
TF_ASSERT_OK_AND_ASSIGN(bool changed,
WhileLoopConcatCodeMotion(2).Run(module.get()));
ASSERT_TRUE(changed);
VLOG(1) << module->ToString();
auto loop = op::While(
op::Tuple(op::Constant(),
AllOf(op::Shape("f32[2048,1024]"),
op::Concatenate(op::Parameter(0), op::Parameter(1))),
AllOf(op::Shape("f32[2048,1024]"),
op::Concatenate(op::Parameter(2), op::Parameter(3)))));
EXPECT_THAT(
module->entry_computation()->root_instruction(),
op::Tuple(op::GetTupleElement(loop), op::Slice(op::GetTupleElement(loop)),
op::Slice(op::GetTupleElement(loop)),
op::Slice(op::GetTupleElement(loop)),
op::Slice(op::GetTupleElement(loop))));
}
TEST_F(WhileLoopConcatCodeMotionTest, TwoConcatsSharedGroups) {
constexpr absl::string_view kHloModule = R"(
HloModule test
%cond {
%param = (s32[], f32[1024,1024], f32[1024,1024], f32[1024,1024], f32[1024,1024]) parameter(0)
%gte.0 = s32[] get-tuple-element(%param), index=0
%constant = s32[] constant(5)
ROOT result = pred[] compare(%gte.0, %constant), direction=LT
}
%body {
%param = (s32[], f32[1024,1024], f32[1024,1024], f32[1024,1024], f32[1024,1024]) parameter(0)
%gte.0 = s32[] get-tuple-element(%param), index=0
%gte.1 = f32[1024,1024] get-tuple-element(%param), index=1
%gte.2 = f32[1024,1024] get-tuple-element(%param), index=2
%concat = f32[2048,1024] concatenate(%gte.1, %gte.2), dimensions={0}
%ccall = f32[2048,1024] custom-call(%concat), custom_call_target="test"
%slice.0 = f32[1024,1024] slice(%ccall), slice={[0:1024], [0:1024]}
%slice.1 = f32[1024,1024] slice(%ccall), slice={[1024:2048], [0:1024]}
%gte.3 = f32[1024,1024] get-tuple-element(%param), index=3
%gte.4 = f32[1024,1024] get-tuple-element(%param), index=4
%concat.1 = f32[2048,1024] concatenate(%gte.3, %gte.4), dimensions={0}
%ccall.1 = f32[2048,1024] custom-call(%concat.1), custom_call_target="test"
%slice.2 = f32[1024,1024] slice(%ccall.1), slice={[0:1024], [0:1024]}
%slice.3 = f32[1024,1024] slice(%ccall.1), slice={[1024:2048], [0:1024]}
%add.0 = f32[1024,1024] add(%slice.0, %slice.2)
%add.1 = f32[1024,1024] add(%slice.1, %slice.3)
%sub.0 = f32[1024,1024] subtract(%slice.0, %slice.2)
%sub.1 = f32[1024,1024] subtract(%slice.1, %slice.3)
%constant = s32[] constant(1)
%increment_iteration = s32[] add(s32[] %gte.0, s32[] %constant)
ROOT %loop_result = (s32[], f32[1024,1024], f32[1024,1024], f32[1024,1024], f32[1024,1024])
tuple(%increment_iteration, %add.0, %add.1, %sub.0, %sub.1)
}
ENTRY test_main {
%param.0 = f32[1024,1024] parameter(0)
%param.1 = f32[1024,1024] parameter(1)
%param.2 = f32[1024,1024] parameter(2)
%param.3 = f32[1024,1024] parameter(3)
%constant.0 = s32[] constant(0)
%while_init = (s32[], f32[1024,1024], f32[1024,1024], f32[1024,1024], f32[1024,1024])
tuple(%constant.0, %param.0, %param.1, %param.2, %param.3)
ROOT %while = (s32[], f32[1024,1024], f32[1024,1024], f32[1024,1024], f32[1024,1024])
while(%while_init), condition=%cond, body=%body
}
)";
TF_ASSERT_OK_AND_ASSIGN(std::unique_ptr<HloModule> module,
ParseAndReturnVerifiedModule(kHloModule));
TF_ASSERT_OK_AND_ASSIGN(bool changed,
WhileLoopConcatCodeMotion(2).Run(module.get()));
ASSERT_TRUE(changed);
VLOG(1) << module->ToString();
auto loop = op::While(
op::Tuple(op::Constant(),
AllOf(op::Shape("f32[2048,1024]"),
op::Concatenate(op::Parameter(0), op::Parameter(1))),
AllOf(op::Shape("f32[2048,1024]"),
op::Concatenate(op::Parameter(2), op::Parameter(3)))));
EXPECT_THAT(
module->entry_computation()->root_instruction(),
op::Tuple(op::GetTupleElement(loop), op::Slice(op::GetTupleElement(loop)),
op::Slice(op::GetTupleElement(loop)),
op::Slice(op::GetTupleElement(loop)),
op::Slice(op::GetTupleElement(loop))));
}
// Two concats of the same shape and same element shapes. However, the updated
// value (at the end of the loop body) of one of them depends on elements
// concatenated in different orders. So we expect only the other concat to be
// optimized.
TEST_F(WhileLoopConcatCodeMotionTest, TwoConcatsDifferentOrders) {
constexpr absl::string_view kHloModule = R"(
HloModule test
%cond {
%param = (s32[], f32[1024,1024], f32[1024,1024], f32[1024,1024], f32[1024,1024]) parameter(0)
%gte.0 = s32[] get-tuple-element(%param), index=0
%constant = s32[] constant(5)
ROOT result = pred[] compare(%gte.0, %constant), direction=LT
}
%body {
%param = (s32[], f32[1024,1024], f32[1024,1024], f32[1024,1024], f32[1024,1024]) parameter(0)
%gte.0 = s32[] get-tuple-element(%param), index=0
%gte.1 = f32[1024,1024] get-tuple-element(%param), index=1
%gte.2 = f32[1024,1024] get-tuple-element(%param), index=2
%concat = f32[2048,1024] concatenate(%gte.1, %gte.2), dimensions={0}
%ccall = f32[2048,1024] custom-call(%concat), custom_call_target="test"
%slice.0 = f32[1024,1024] slice(%ccall), slice={[0:1024], [0:1024]}
%slice.1 = f32[1024,1024] slice(%ccall), slice={[1024:2048], [0:1024]}
%gte.3 = f32[1024,1024] get-tuple-element(%param), index=3
%gte.4 = f32[1024,1024] get-tuple-element(%param), index=4
%concat.1 = f32[2048,1024] concatenate(%gte.3, %gte.4), dimensions={0}
%ccall.1 = f32[2048,1024] custom-call(%concat.1), custom_call_target="test"
%slice.2 = f32[1024,1024] slice(%ccall.1), slice={[0:1024], [0:1024]}
%slice.3 = f32[1024,1024] slice(%ccall.1), slice={[1024:2048], [0:1024]}
%add.0 = f32[1024,1024] add(%slice.0, %slice.3)
%add.1 = f32[1024,1024] add(%slice.1, %slice.2)
%sub.0 = f32[1024,1024] subtract(%slice.0, %slice.2)
%sub.1 = f32[1024,1024] subtract(%slice.1, %slice.3)
%constant = s32[] constant(1)
%increment_iteration = s32[] add(s32[] %gte.0, s32[] %constant)
ROOT %loop_result = (s32[], f32[1024,1024], f32[1024,1024], f32[1024,1024], f32[1024,1024])
tuple(%increment_iteration, %add.0, %add.1, %sub.0, %sub.1)
}
ENTRY test_main {
%param.0 = f32[1024,1024] parameter(0)
%param.1 = f32[1024,1024] parameter(1)
%param.2 = f32[1024,1024] parameter(2)
%param.3 = f32[1024,1024] parameter(3)
%constant.0 = s32[] constant(0)
%while_init = (s32[], f32[1024,1024], f32[1024,1024], f32[1024,1024], f32[1024,1024])
tuple(%constant.0, %param.0, %param.1, %param.2, %param.3)
ROOT %while = (s32[], f32[1024,1024], f32[1024,1024], f32[1024,1024], f32[1024,1024])
while(%while_init), condition=%cond, body=%body
}
)";
TF_ASSERT_OK_AND_ASSIGN(std::unique_ptr<HloModule> module,
ParseAndReturnVerifiedModule(kHloModule));
TF_ASSERT_OK_AND_ASSIGN(bool changed,
WhileLoopConcatCodeMotion(2).Run(module.get()));
EXPECT_TRUE(changed);
VLOG(1) << module->ToString();
auto loop = op::While(
op::Tuple(op::Constant(), op::Parameter(0), op::Parameter(1),
AllOf(op::Shape("f32[2048,1024]"),
op::Concatenate(op::Parameter(2), op::Parameter(3)))));
EXPECT_THAT(
module->entry_computation()->root_instruction(),
op::Tuple(op::GetTupleElement(loop), op::GetTupleElement(loop),
op::GetTupleElement(loop), op::Slice(op::GetTupleElement(loop)),
op::Slice(op::GetTupleElement(loop))));
}
TEST_F(WhileLoopConcatCodeMotionTest, NonElementwiseOps) {
constexpr absl::string_view kHloModule = R"(
HloModule test
%cond {
%param = (s32[], f32[1024,1024], f32[1024,1024], f32[1024], f32[1024]) parameter(0)
%gte.0 = s32[] get-tuple-element(%param), index=0
%constant = s32[] constant(5)
ROOT result = pred[] compare(%gte.0, %constant), direction=LT
}
%sum {
%a = f32[] parameter(0)
%b = f32[] parameter(1)
ROOT %add = f32[] add(%a, %b)
}
%body {
%param = (s32[], f32[1024,1024], f32[1024,1024], f32[1024], f32[1024]) parameter(0)
%gte.0 = s32[] get-tuple-element(%param), index=0
%gte.1 = f32[1024,1024] get-tuple-element(%param), index=1
%gte.2 = f32[1024,1024] get-tuple-element(%param), index=2
%reshape.0 = f32[1,1024,1024] reshape(%gte.1)
%reshape.1 = f32[1,1024,1024] reshape(%gte.2)
%concat = f32[2,1024,1024] concatenate(%reshape.0, %reshape.1), dimensions={0}
%ccall = f32[2,1024,1024] custom-call(%concat), custom_call_target="test"
%slice.0 = f32[1,1024,1024] slice(%ccall), slice={[0:1], [0:1024], [0:1024]}
%slice.1 = f32[1,1024,1024] slice(%ccall), slice={[1:2], [0:1024], [0:1024]}
%reshape.2 = f32[1024,1024] reshape(%slice.0 )
%reshape.3 = f32[1024,1024] reshape(%slice.1)
%gte.3 = f32[1024] get-tuple-element(%param), index=3
%gte.4 = f32[1024] get-tuple-element(%param), index=4
%constant.0 = f32[] constant(0)
%reduce.0 = f32[1024] reduce(%reshape.0, %constant.0), to_apply=%sum, dimensions={0,1}
%reduce.1 = f32[1024] reduce(%reshape.1, %constant.0), to_apply=%sum, dimensions={0,1}
%add.0 = f32[1024] add(%reduce.0, %gte.3)
%add.1 = f32[1024] add(%reduce.1, %gte.4)
%br0 = f32[1024,1024] broadcast(%add.0), dimensions={1}
%br1 = f32[1024,1024] broadcast(%add.1), dimensions={1}
%sub.0 = f32[1024,1024] subtract(%reshape.2, %br0)
%sub.1 = f32[1024,1024] subtract(%reshape.3, %br1)
%constant = s32[] constant(1)
%increment_iteration = s32[] add(s32[] %gte.0, s32[] %constant)
ROOT %loop_result = (s32[], f32[1024,1024], f32[1024,1024], f32[1024], f32[1024])
tuple(%increment_iteration, %sub.0, %sub.1, %add.0, %add.1)
}
ENTRY test_main {
%param.0 = f32[1024,1024] parameter(0)
%param.1 = f32[1024,1024] parameter(1)
%param.2 = f32[1024] parameter(2)
%param.3 = f32[1024] parameter(3)
%constant.0 = s32[] constant(0)
%while_init = (s32[], f32[1024,1024], f32[1024,1024], f32[1024], f32[1024])
tuple(%constant.0, %param.0, %param.1, %param.2, %param.3)
ROOT %while = (s32[], f32[1024,1024], f32[1024,1024], f32[1024], f32[1024])
while(%while_init), condition=%cond, body=%body
}
)";
TF_ASSERT_OK_AND_ASSIGN(std::unique_ptr<HloModule> module,
ParseAndReturnVerifiedModule(kHloModule));
TF_ASSERT_OK_AND_ASSIGN(bool changed,
WhileLoopConcatCodeMotion(2).Run(module.get()));
ASSERT_TRUE(changed);
VLOG(1) << module->ToString();
auto loop = op::While(
op::Tuple(op::Constant(),
AllOf(op::Shape("f32[2,1024,1024]"),
op::Concatenate(op::Reshape(op::Parameter(0)),
op::Reshape(op::Parameter(1)))),
AllOf(op::Shape("f32[2,1024]"),
op::Concatenate(op::Reshape(op::Parameter(2)),
op::Reshape(op::Parameter(3))))));
EXPECT_THAT(module->entry_computation()->root_instruction(),
op::Tuple(op::GetTupleElement(loop),
op::Reshape(op::Slice(op::GetTupleElement(loop))),
op::Reshape(op::Slice(op::GetTupleElement(loop))),
op::Reshape(op::Slice(op::GetTupleElement(loop))),
op::Reshape(op::Slice(op::GetTupleElement(loop)))));
}
} // namespace
} // namespace xla
| [
"gardener@tensorflow.org"
] | gardener@tensorflow.org |
00add0cd934925cf0098cc1a3176862bd6751cc5 | 024a91f6f2739e8d9707359805350d513afdf6d9 | /src/rendering/renderTarget.hpp | 5a801c3dc2fe293f7c21e6a40f1753b6d0e2ed50 | [
"MIT"
] | permissive | cappah/CGFX5 | 09ff275f87f29bddd67618faf7d82e9ac2ed5439 | fb7c6a7bd6a984e7c38f60e3293c355505501b08 | refs/heads/master | 2020-03-07T03:14:55.166917 | 2018-03-29T00:48:09 | 2018-03-29T00:48:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,310 | hpp | #pragma once
#include "renderDevice.hpp"
#include "texture.hpp"
class RenderTarget
{
public:
RenderTarget(RenderDevice& deviceIn) :
device(&deviceIn),
deviceId(0) {}
// TODO: Ensure texture isn't compressed. Otherwise, render target creation fails.
FORCEINLINE RenderTarget(RenderDevice& deviceIn,
Texture& texture, uint32 width, uint32 height,
enum RenderDevice::FramebufferAttachment attachment
= RenderDevice::ATTACHMENT_COLOR,
uint32 attachmentNumber = 0, uint32 mipLevel = 0) :
device(&deviceIn),
deviceId(device->createRenderTarget(texture.getId(), width, height,
attachment, attachmentNumber, mipLevel)) {}
FORCEINLINE RenderTarget(RenderDevice& deviceIn,
Texture& texture,
enum RenderDevice::FramebufferAttachment attachment
= RenderDevice::ATTACHMENT_COLOR,
uint32 attachmentNumber = 0, uint32 mipLevel = 0) :
device(&deviceIn),
deviceId(device->createRenderTarget(texture.getId(),
texture.getWidth(), texture.getHeight(),
attachment, attachmentNumber, mipLevel)) {}
FORCEINLINE ~RenderTarget()
{
deviceId = device->releaseRenderTarget(deviceId);
}
FORCEINLINE uint32 getId();
private:
RenderDevice* device;
uint32 deviceId;
NULL_COPY_AND_ASSIGN(RenderTarget);
};
FORCEINLINE uint32 RenderTarget::getId()
{
return deviceId;
}
| [
"thebennybox@gmail.com"
] | thebennybox@gmail.com |
1a4da0bddf3de3bd6e2f9a7743a825fec18e12c5 | 5d0ed2cdd3c1e1225979ea9908f8dbf61808bfb5 | /BlockChain/Processors/BlockHeaderProcessor.cpp | 44c9d9c5e21ee009754bca4fa7c4326723e3db6d | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | emoji-king/GrinPlusPlus | 15b400a4306ab4eee42e103ca744a872f65998db | 4fe992626f9daf89528a92ed343d8af304113b4c | refs/heads/master | 2020-04-13T01:54:53.016676 | 2018-12-22T05:51:14 | 2018-12-22T05:51:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,377 | cpp | #include "BlockHeaderProcessor.h"
#include "../Validators/BlockHeaderValidator.h"
#include <Infrastructure/Logger.h>
#include <HeaderMMR.h>
#include <HexUtil.h>
#include <StringUtil.h>
BlockHeaderProcessor::BlockHeaderProcessor(ChainState& chainState)
: m_chainState(chainState)
{
}
EBlockChainStatus BlockHeaderProcessor::ProcessSingleHeader(const BlockHeader& header)
{
LoggerAPI::LogInfo("BlockHeaderProcessor::ProcessSingleHeader - Validating " + header.FormatHash());
LockedChainState lockedState = m_chainState.GetLocked();
Chain& candidateChain = lockedState.m_chainStore.GetCandidateChain();
// Check if header already processed
BlockIndex* pCandidateIndex = candidateChain.GetByHeight(header.GetHeight());
if (pCandidateIndex != nullptr && pCandidateIndex->GetHash() == header.GetHash())
{
LoggerAPI::LogInfo(StringUtil::Format("BlockHeaderProcessor::ProcessSingleHeader - Header %s already processed.", header.FormatHash().c_str()));
return EBlockChainStatus::ALREADY_EXISTS;
}
// If this is not the next header needed, process as an orphan.
BlockIndex* pLastIndex = candidateChain.GetTip();
if (pLastIndex->GetHash() != header.GetPreviousBlockHash())
{
LoggerAPI::LogInfo(StringUtil::Format("BlockHeaderProcessor::ProcessSingleHeader - Processing header %s as an orphan.", header.FormatHash().c_str()));
// TODO: Process as an orphan
return EBlockChainStatus::ORPHANED;
}
LoggerAPI::LogDebug("BlockHeaderProcessor::ProcessSingleHeader - Processing next candidate header " + header.FormatHash());
// Validate the header.
std::unique_ptr<BlockHeader> pPreviousHeaderPtr = lockedState.m_blockStore.GetBlockHeaderByHash(pLastIndex->GetHash());
if (!BlockHeaderValidator(lockedState.m_headerMMR).IsValidHeader(header, *pPreviousHeaderPtr))
{
LoggerAPI::LogDebug("BlockHeaderProcessor::ProcessSingleHeader - Header failed to validate.");
return EBlockChainStatus::INVALID;
}
lockedState.m_blockStore.AddHeader(header);
lockedState.m_headerMMR.AddHeader(header);
lockedState.m_headerMMR.Commit();
BlockIndex* pBlockIndex = lockedState.m_chainStore.GetOrCreateIndex(header.GetHash(), header.GetHeight(), pLastIndex);
lockedState.m_chainStore.GetSyncChain().AddBlock(pBlockIndex);
candidateChain.AddBlock(pBlockIndex);
LoggerAPI::LogInfo("BlockHeaderProcessor::ProcessSingleHeader - Successfully validated " + header.FormatHash());
return EBlockChainStatus::SUCCESS;
}
EBlockChainStatus BlockHeaderProcessor::ProcessSyncHeaders(const std::vector<BlockHeader>& headers)
{
if (headers.empty())
{
return EBlockChainStatus::SUCCESS;
}
const uint64_t height = headers.front().GetHeight();
if (height == 0)
{
LoggerAPI::LogError("BlockHeaderProcessor::ProcessSyncHeaders - Header with height 0 received.");
return EBlockChainStatus::INVALID;
}
const size_t size = headers.size();
size_t index = 0;
std::vector<BlockHeader> chunkedHeaders;
chunkedHeaders.reserve(32);
while (index < size)
{
chunkedHeaders.push_back(headers[index++]);
if (index % 32 == 0)
{
const EBlockChainStatus processChunkStatus = ProcessChunkedSyncHeaders(chunkedHeaders);
if (processChunkStatus != EBlockChainStatus::SUCCESS && processChunkStatus != EBlockChainStatus::ALREADY_EXISTS)
{
return processChunkStatus;
}
chunkedHeaders.clear();
}
}
if (!chunkedHeaders.empty())
{
return ProcessChunkedSyncHeaders(chunkedHeaders);
}
return EBlockChainStatus::SUCCESS;
}
EBlockChainStatus BlockHeaderProcessor::ProcessChunkedSyncHeaders(const std::vector<BlockHeader>& headers)
{
LoggerAPI::LogInfo("BlockHeaderProcessor::ProcessChunkedSyncHeaders - Processing " + std::to_string(headers.size()) + " headers."); // TODO: Log hashes
LockedChainState lockedState = m_chainState.GetLocked();
Chain& syncChain = lockedState.m_chainStore.GetSyncChain();
// Filter out headers that are already part of sync chain.
std::vector<BlockHeader> newHeaders;
for (size_t i = 0; i < headers.size(); i++)
{
const BlockHeader& header = headers[i];
BlockIndex* pSyncHeader = syncChain.GetByHeight(header.GetHeight());
if (pSyncHeader == nullptr || header.GetHash() != pSyncHeader->GetHash())
{
newHeaders.push_back(header);
}
}
if (newHeaders.empty())
{
LoggerAPI::LogDebug("BlockHeaderProcessor::ProcessChunkedSyncHeaders - Headers already processed.");
return EBlockChainStatus::ALREADY_EXISTS;
}
// Check if previous header exists and matches previous.
BlockIndex* pPrevIndex = syncChain.GetByHeight(newHeaders.front().GetHeight() - 1);
if (pPrevIndex == nullptr || pPrevIndex->GetHash() != newHeaders.front().GetPreviousBlockHash())
{
LoggerAPI::LogInfo("BlockHeaderProcessor::ProcessChunkedSyncHeaders - Previous header doesn't match. Still syncing?");
return EBlockChainStatus::UNKNOWN_ERROR;
}
// Rewind MMR
IHeaderMMR& headerMMR = lockedState.m_headerMMR;
// TODO: If previous sync header != previous candidate header, we'll have to rewind further and apply sync headers.
headerMMR.Rewind(newHeaders.front().GetHeight());
// Validate the headers.
std::unique_ptr<BlockHeader> pPreviousHeaderPtr = lockedState.m_blockStore.GetBlockHeaderByHash(pPrevIndex->GetHash());
const BlockHeader* pPreviousHeader = pPreviousHeaderPtr.get();
for (auto& header : newHeaders)
{
if (!BlockHeaderValidator(headerMMR).IsValidHeader(header, *pPreviousHeader))
{
headerMMR.Rollback();
return EBlockChainStatus::INVALID;
}
headerMMR.AddHeader(header);
pPreviousHeader = &header;
}
// Add the headers to the chain state.
const EBlockChainStatus addSyncHeadersStatus = AddSyncHeaders(lockedState, newHeaders);
if (addSyncHeadersStatus != EBlockChainStatus::SUCCESS)
{
LoggerAPI::LogError("BlockHeaderProcessor::ProcessChunkedSyncHeaders - Failed to add sync headers.");
headerMMR.Rollback();
// TODO: Copy header chain into sync chain
return addSyncHeadersStatus;
}
// If total difficulty increases, accept sync chain as new candidate chain.
if (CheckAndAcceptSyncChain(lockedState))
{
headerMMR.Commit();
}
else
{
headerMMR.Rollback();
}
return EBlockChainStatus::SUCCESS;
}
EBlockChainStatus BlockHeaderProcessor::AddSyncHeaders(LockedChainState& lockedState, const std::vector<BlockHeader>& headers) const
{
Chain& syncChain = lockedState.m_chainStore.GetSyncChain();
const uint64_t firstHeaderHeight = headers.begin()->GetHeight();
// Ensure chain is on correct fork.
BlockIndex* pPrevious = syncChain.GetByHeight(firstHeaderHeight - 1);
if (pPrevious == nullptr || pPrevious->GetHash() != headers.begin()->GetPreviousBlockHash())
{
return EBlockChainStatus::UNKNOWN_ERROR;
}
// Rewind chain if necessary.
if (syncChain.GetTip()->GetHash() != headers.begin()->GetPreviousBlockHash())
{
if (!syncChain.Rewind(firstHeaderHeight - 1))
{
return EBlockChainStatus::UNKNOWN_ERROR;
}
}
std::vector<BlockHeader*> blockHeadersToAdd;
for (auto& header : headers)
{
// Add to chain
BlockIndex* pBlockIndex = lockedState.m_chainStore.GetOrCreateIndex(header.GetHash(), header.GetHeight(), pPrevious);
syncChain.AddBlock(pBlockIndex);
pPrevious = pBlockIndex;
}
lockedState.m_blockStore.AddHeaders(headers);
return EBlockChainStatus::SUCCESS;
}
bool BlockHeaderProcessor::CheckAndAcceptSyncChain(LockedChainState& lockedState) const
{
Chain& syncChain = lockedState.m_chainStore.GetSyncChain();
Chain& candidateChain = lockedState.m_chainStore.GetCandidateChain();
const Hash syncHeadHash = syncChain.GetTip()->GetHash();
std::unique_ptr<BlockHeader> pSyncHead = lockedState.m_blockStore.GetBlockHeaderByHash(syncHeadHash);
const Hash candidateHeadHash = candidateChain.GetTip()->GetHash();
std::unique_ptr<BlockHeader> pCandidateHead = lockedState.m_blockStore.GetBlockHeaderByHash(candidateHeadHash);
if (pSyncHead == nullptr || pCandidateHead == nullptr)
{
return false;
}
if (pSyncHead->GetProofOfWork().GetTotalDifficulty() > pCandidateHead->GetProofOfWork().GetTotalDifficulty())
{
BlockIndex* pCommonIndex = lockedState.m_chainStore.FindCommonIndex(EChainType::SYNC, EChainType::CANDIDATE);
if (candidateChain.Rewind(pCommonIndex->GetHeight()))
{
uint64_t height = pCommonIndex->GetHeight() + 1;
while (height <= pSyncHead->GetHeight())
{
candidateChain.AddBlock(syncChain.GetByHeight(height));
height++;
}
return true;
}
}
return false;
} | [
"davidburkett38@gmail.com"
] | davidburkett38@gmail.com |
859e8c4a1764ac696375a1ed26d924ce9585c357 | fa050b66e529a5bd1a89c18626010bb7ce7f9710 | /USACO/1.2/ride/solve.cc | df04bb0d6f9370389df9c880109a7d18187ba41e | [] | no_license | lordidiot/CompetitiveProgramming | 3692911a89965e21a0a704bbfec518db2da2e151 | 560ba21d876b72326b92bcbf51d3a12a4312e616 | refs/heads/master | 2023-04-19T00:41:01.019786 | 2021-05-05T09:56:42 | 2021-05-05T09:56:42 | 361,330,201 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 774 | cc | /*
ID: 0xlordi1
TASK: ride
LANG: C++
*/
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define mp make_pair
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef pair<int,int> ii;
const int MAX_N = 1e5 + 1;
const ll MOD = 1e9 + 7;
const ll INF = 1e9;
const double EPS = 1e-9;
int f(string s){
int res = 1;
for(int i = 0; i < s.size(); i++){
res = (res * (s[i]-'A'+1)) % 47;
}
return res;
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
freopen("ride.in", "r", stdin);
freopen("ride.out", "w", stdout);
string c, g;
cin >> c >> g;
if(f(c) == f(g)){
cout << "GO" << '\n';
}
else{
cout << "STAY" << '\n';
}
return 0;
}
| [
"calvin@arthurfong.com"
] | calvin@arthurfong.com |
dc9456003f04a824665f9f55af4ba3f95be15dc6 | 1c407359a07a9c6e38ed4ec43f051e202ad8df93 | /Atividade-5/Estacao.X/LCD.cpp | 3229bde602e7f31c89d93691e7ef5e07500c943d | [] | no_license | luizaalves/STE29008 | 5624cd25de1ba9c4a4689c1a65fe8109ec45c2f2 | 5a44432423a78ed59c0522b90eeb7292d6968d0c | refs/heads/master | 2020-06-30T13:32:31.176014 | 2019-12-09T20:50:54 | 2019-12-09T20:50:54 | 200,841,353 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 129 | cpp | /*
* File: LCD.cpp
* Author: felipe
*
* Created on 30 de Novembro de 2019, 21:58
*/
#include "LCD.h"
LCD::LCD() {
}
| [
"felipepassoscardoso@gmail.com"
] | felipepassoscardoso@gmail.com |
99b4a157546735c2c6f6591b5296da2b784094ca | 03c7cf7a57a1a26bb21e0184642f0a5c8b0336ae | /Release/gen/webcore/bindings/V8DOMWindow.cpp | 909f2d61f195a6bdc5badaafe32f4a814af8cee8 | [] | no_license | sanyaade-embedded-systems/armhf-node-webkit | eb38a2a34e833310ee477592028905fd00a86e5a | 5bc4509c0e19cce1a64b7cab4f92f91edfa17944 | refs/heads/master | 2020-12-30T19:11:15.189923 | 2013-03-16T14:29:23 | 2013-03-16T14:29:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 351,744 | cpp | /*
This file is part of the WebKit open source project.
This file has been generated by generate-bindings.pl. DO NOT MODIFY!
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#include "config.h"
#include "V8DOMWindow.h"
#include "BindingState.h"
#include "ContextFeatures.h"
#include "DOMWindowFileSystem.h"
#include "DOMWindowIndexedDatabase.h"
#include "DOMWindowIntents.h"
#include "DOMWindowNotifications.h"
#include "DOMWindowPagePopup.h"
#include "DOMWindowQuota.h"
#include "DOMWindowWebDatabase.h"
#include "EventListener.h"
#include "ExceptionCode.h"
#include "FeatureObserver.h"
#include "Frame.h"
#include "RuntimeEnabledFeatures.h"
#include "StylePropertySet.h"
#include "V8AbstractEventListener.h"
#include "V8ArrayBuffer.h"
#include "V8ArrayBufferView.h"
#include "V8Attr.h"
#include "V8BarInfo.h"
#include "V8BeforeLoadEvent.h"
#include "V8Binding.h"
#include "V8Blob.h"
#include "V8CDATASection.h"
#include "V8CSSCharsetRule.h"
#include "V8CSSFontFaceRule.h"
#include "V8CSSImportRule.h"
#include "V8CSSMediaRule.h"
#include "V8CSSPageRule.h"
#include "V8CSSPrimitiveValue.h"
#include "V8CSSRule.h"
#include "V8CSSRuleList.h"
#include "V8CSSStyleDeclaration.h"
#include "V8CSSStyleRule.h"
#include "V8CSSStyleSheet.h"
#include "V8CSSValue.h"
#include "V8CSSValueList.h"
#include "V8CanvasGradient.h"
#include "V8CanvasPattern.h"
#include "V8CanvasRenderingContext2D.h"
#include "V8CharacterData.h"
#include "V8ClientRect.h"
#include "V8ClientRectList.h"
#include "V8Clipboard.h"
#include "V8Collection.h"
#include "V8Comment.h"
#include "V8CompositionEvent.h"
#include "V8Console.h"
#include "V8Counter.h"
#include "V8Crypto.h"
#include "V8CustomEvent.h"
#include "V8DOMApplicationCache.h"
#include "V8DOMCoreException.h"
#include "V8DOMFormData.h"
#include "V8DOMImplementation.h"
#include "V8DOMMimeType.h"
#include "V8DOMMimeTypeArray.h"
#include "V8DOMParser.h"
#include "V8DOMPlugin.h"
#include "V8DOMPluginArray.h"
#include "V8DOMSelection.h"
#include "V8DOMSettableTokenList.h"
#include "V8DOMStringList.h"
#include "V8DOMStringMap.h"
#include "V8DOMTokenList.h"
#include "V8DOMWrapper.h"
#include "V8DataView.h"
#include "V8Database.h"
#include "V8DatabaseCallback.h"
#include "V8DeliveredIntent.h"
#include "V8Document.h"
#include "V8DocumentFragment.h"
#include "V8DocumentType.h"
#include "V8Element.h"
#include "V8Entity.h"
#include "V8EntityReference.h"
#include "V8EntryCallback.h"
#include "V8ErrorCallback.h"
#include "V8ErrorEvent.h"
#include "V8Event.h"
#include "V8EventException.h"
#include "V8EventListenerList.h"
#include "V8EventSource.h"
#include "V8File.h"
#include "V8FileList.h"
#include "V8FileSystemCallback.h"
#include "V8Float32Array.h"
#include "V8Float64Array.h"
#include "V8HTMLAllCollection.h"
#include "V8HTMLAnchorElement.h"
#include "V8HTMLAppletElement.h"
#include "V8HTMLAreaElement.h"
#include "V8HTMLBRElement.h"
#include "V8HTMLBaseElement.h"
#include "V8HTMLBaseFontElement.h"
#include "V8HTMLBodyElement.h"
#include "V8HTMLButtonElement.h"
#include "V8HTMLCanvasElement.h"
#include "V8HTMLCollection.h"
#include "V8HTMLDListElement.h"
#include "V8HTMLDirectoryElement.h"
#include "V8HTMLDivElement.h"
#include "V8HTMLDocument.h"
#include "V8HTMLElement.h"
#include "V8HTMLEmbedElement.h"
#include "V8HTMLFieldSetElement.h"
#include "V8HTMLFontElement.h"
#include "V8HTMLFormControlsCollection.h"
#include "V8HTMLFormElement.h"
#include "V8HTMLFrameElement.h"
#include "V8HTMLFrameSetElement.h"
#include "V8HTMLHRElement.h"
#include "V8HTMLHeadElement.h"
#include "V8HTMLHeadingElement.h"
#include "V8HTMLHtmlElement.h"
#include "V8HTMLIFrameElement.h"
#include "V8HTMLImageElement.h"
#include "V8HTMLImageElementConstructor.h"
#include "V8HTMLInputElement.h"
#include "V8HTMLKeygenElement.h"
#include "V8HTMLLIElement.h"
#include "V8HTMLLabelElement.h"
#include "V8HTMLLegendElement.h"
#include "V8HTMLLinkElement.h"
#include "V8HTMLMapElement.h"
#include "V8HTMLMarqueeElement.h"
#include "V8HTMLMenuElement.h"
#include "V8HTMLMetaElement.h"
#include "V8HTMLMeterElement.h"
#include "V8HTMLModElement.h"
#include "V8HTMLOListElement.h"
#include "V8HTMLObjectElement.h"
#include "V8HTMLOptGroupElement.h"
#include "V8HTMLOptionElement.h"
#include "V8HTMLOptionsCollection.h"
#include "V8HTMLOutputElement.h"
#include "V8HTMLParagraphElement.h"
#include "V8HTMLParamElement.h"
#include "V8HTMLPreElement.h"
#include "V8HTMLProgressElement.h"
#include "V8HTMLQuoteElement.h"
#include "V8HTMLScriptElement.h"
#include "V8HTMLSelectElement.h"
#include "V8HTMLSpanElement.h"
#include "V8HTMLStyleElement.h"
#include "V8HTMLTableCaptionElement.h"
#include "V8HTMLTableCellElement.h"
#include "V8HTMLTableColElement.h"
#include "V8HTMLTableElement.h"
#include "V8HTMLTableRowElement.h"
#include "V8HTMLTableSectionElement.h"
#include "V8HTMLTextAreaElement.h"
#include "V8HTMLTitleElement.h"
#include "V8HTMLUListElement.h"
#include "V8HTMLUnknownElement.h"
#include "V8HashChangeEvent.h"
#include "V8History.h"
#include "V8IDBFactory.h"
#include "V8ImageData.h"
#include "V8Int16Array.h"
#include "V8Int32Array.h"
#include "V8Int8Array.h"
#include "V8KeyboardEvent.h"
#include "V8Location.h"
#include "V8MediaList.h"
#include "V8MediaQueryList.h"
#include "V8MessageChannel.h"
#include "V8MessageEvent.h"
#include "V8MessagePort.h"
#include "V8MouseEvent.h"
#include "V8MutationEvent.h"
#include "V8MutationObserver.h"
#include "V8NamedNodeMap.h"
#include "V8Navigator.h"
#include "V8Node.h"
#include "V8NodeFilter.h"
#include "V8NodeList.h"
#include "V8Notation.h"
#include "V8NotificationCenter.h"
#include "V8OverflowEvent.h"
#include "V8PagePopupController.h"
#include "V8PageTransitionEvent.h"
#include "V8Performance.h"
#include "V8PopStateEvent.h"
#include "V8ProcessingInstruction.h"
#include "V8ProgressEvent.h"
#include "V8RGBColor.h"
#include "V8Range.h"
#include "V8RangeException.h"
#include "V8Rect.h"
#include "V8RequestAnimationFrameCallback.h"
#include "V8SVGAElement.h"
#include "V8SVGAltGlyphDefElement.h"
#include "V8SVGAltGlyphElement.h"
#include "V8SVGAltGlyphItemElement.h"
#include "V8SVGAngle.h"
#include "V8SVGAnimateColorElement.h"
#include "V8SVGAnimateElement.h"
#include "V8SVGAnimateMotionElement.h"
#include "V8SVGAnimateTransformElement.h"
#include "V8SVGAnimatedAngle.h"
#include "V8SVGAnimatedBoolean.h"
#include "V8SVGAnimatedEnumeration.h"
#include "V8SVGAnimatedInteger.h"
#include "V8SVGAnimatedLength.h"
#include "V8SVGAnimatedLengthList.h"
#include "V8SVGAnimatedNumber.h"
#include "V8SVGAnimatedNumberList.h"
#include "V8SVGAnimatedPreserveAspectRatio.h"
#include "V8SVGAnimatedRect.h"
#include "V8SVGAnimatedString.h"
#include "V8SVGAnimatedTransformList.h"
#include "V8SVGCircleElement.h"
#include "V8SVGClipPathElement.h"
#include "V8SVGColor.h"
#include "V8SVGComponentTransferFunctionElement.h"
#include "V8SVGCursorElement.h"
#include "V8SVGDefsElement.h"
#include "V8SVGDescElement.h"
#include "V8SVGDocument.h"
#include "V8SVGElement.h"
#include "V8SVGElementInstance.h"
#include "V8SVGElementInstanceList.h"
#include "V8SVGEllipseElement.h"
#include "V8SVGException.h"
#include "V8SVGFEBlendElement.h"
#include "V8SVGFEColorMatrixElement.h"
#include "V8SVGFEComponentTransferElement.h"
#include "V8SVGFECompositeElement.h"
#include "V8SVGFEConvolveMatrixElement.h"
#include "V8SVGFEDiffuseLightingElement.h"
#include "V8SVGFEDisplacementMapElement.h"
#include "V8SVGFEDistantLightElement.h"
#include "V8SVGFEDropShadowElement.h"
#include "V8SVGFEFloodElement.h"
#include "V8SVGFEFuncAElement.h"
#include "V8SVGFEFuncBElement.h"
#include "V8SVGFEFuncGElement.h"
#include "V8SVGFEFuncRElement.h"
#include "V8SVGFEGaussianBlurElement.h"
#include "V8SVGFEImageElement.h"
#include "V8SVGFEMergeElement.h"
#include "V8SVGFEMergeNodeElement.h"
#include "V8SVGFEMorphologyElement.h"
#include "V8SVGFEOffsetElement.h"
#include "V8SVGFEPointLightElement.h"
#include "V8SVGFESpecularLightingElement.h"
#include "V8SVGFESpotLightElement.h"
#include "V8SVGFETileElement.h"
#include "V8SVGFETurbulenceElement.h"
#include "V8SVGFilterElement.h"
#include "V8SVGFontElement.h"
#include "V8SVGFontFaceElement.h"
#include "V8SVGFontFaceFormatElement.h"
#include "V8SVGFontFaceNameElement.h"
#include "V8SVGFontFaceSrcElement.h"
#include "V8SVGFontFaceUriElement.h"
#include "V8SVGForeignObjectElement.h"
#include "V8SVGGElement.h"
#include "V8SVGGlyphElement.h"
#include "V8SVGGlyphRefElement.h"
#include "V8SVGGradientElement.h"
#include "V8SVGHKernElement.h"
#include "V8SVGImageElement.h"
#include "V8SVGLength.h"
#include "V8SVGLengthList.h"
#include "V8SVGLineElement.h"
#include "V8SVGLinearGradientElement.h"
#include "V8SVGMPathElement.h"
#include "V8SVGMarkerElement.h"
#include "V8SVGMaskElement.h"
#include "V8SVGMatrix.h"
#include "V8SVGMetadataElement.h"
#include "V8SVGMissingGlyphElement.h"
#include "V8SVGNumber.h"
#include "V8SVGNumberList.h"
#include "V8SVGPaint.h"
#include "V8SVGPathElement.h"
#include "V8SVGPathSeg.h"
#include "V8SVGPathSegArcAbs.h"
#include "V8SVGPathSegArcRel.h"
#include "V8SVGPathSegClosePath.h"
#include "V8SVGPathSegCurvetoCubicAbs.h"
#include "V8SVGPathSegCurvetoCubicRel.h"
#include "V8SVGPathSegCurvetoCubicSmoothAbs.h"
#include "V8SVGPathSegCurvetoCubicSmoothRel.h"
#include "V8SVGPathSegCurvetoQuadraticAbs.h"
#include "V8SVGPathSegCurvetoQuadraticRel.h"
#include "V8SVGPathSegCurvetoQuadraticSmoothAbs.h"
#include "V8SVGPathSegCurvetoQuadraticSmoothRel.h"
#include "V8SVGPathSegLinetoAbs.h"
#include "V8SVGPathSegLinetoHorizontalAbs.h"
#include "V8SVGPathSegLinetoHorizontalRel.h"
#include "V8SVGPathSegLinetoRel.h"
#include "V8SVGPathSegLinetoVerticalAbs.h"
#include "V8SVGPathSegLinetoVerticalRel.h"
#include "V8SVGPathSegList.h"
#include "V8SVGPathSegMovetoAbs.h"
#include "V8SVGPathSegMovetoRel.h"
#include "V8SVGPatternElement.h"
#include "V8SVGPoint.h"
#include "V8SVGPointList.h"
#include "V8SVGPolygonElement.h"
#include "V8SVGPolylineElement.h"
#include "V8SVGPreserveAspectRatio.h"
#include "V8SVGRadialGradientElement.h"
#include "V8SVGRect.h"
#include "V8SVGRectElement.h"
#include "V8SVGRenderingIntent.h"
#include "V8SVGSVGElement.h"
#include "V8SVGScriptElement.h"
#include "V8SVGSetElement.h"
#include "V8SVGStopElement.h"
#include "V8SVGStringList.h"
#include "V8SVGStyleElement.h"
#include "V8SVGSwitchElement.h"
#include "V8SVGSymbolElement.h"
#include "V8SVGTRefElement.h"
#include "V8SVGTSpanElement.h"
#include "V8SVGTextContentElement.h"
#include "V8SVGTextElement.h"
#include "V8SVGTextPathElement.h"
#include "V8SVGTextPositioningElement.h"
#include "V8SVGTitleElement.h"
#include "V8SVGTransform.h"
#include "V8SVGTransformList.h"
#include "V8SVGUnitTypes.h"
#include "V8SVGUseElement.h"
#include "V8SVGVKernElement.h"
#include "V8SVGViewElement.h"
#include "V8SVGViewSpec.h"
#include "V8SVGZoomAndPan.h"
#include "V8Screen.h"
#include "V8Storage.h"
#include "V8StorageEvent.h"
#include "V8StorageInfo.h"
#include "V8StyleMedia.h"
#include "V8StyleSheet.h"
#include "V8StyleSheetList.h"
#include "V8Text.h"
#include "V8TextEvent.h"
#include "V8TextMetrics.h"
#include "V8UIEvent.h"
#include "V8Uint16Array.h"
#include "V8Uint32Array.h"
#include "V8Uint8Array.h"
#include "V8Uint8ClampedArray.h"
#include "V8WebKitAnimationEvent.h"
#include "V8WebKitCSSFilterValue.h"
#include "V8WebKitCSSKeyframeRule.h"
#include "V8WebKitCSSKeyframesRule.h"
#include "V8WebKitCSSMatrix.h"
#include "V8WebKitCSSMixFunctionValue.h"
#include "V8WebKitCSSTransformValue.h"
#include "V8WebKitPoint.h"
#include "V8WebKitTransitionEvent.h"
#include "V8WheelEvent.h"
#include "V8WindowErrorHandler.h"
#include "V8XMLHttpRequest.h"
#include "V8XMLHttpRequestException.h"
#include "V8XMLHttpRequestProgressEvent.h"
#include "V8XMLHttpRequestUpload.h"
#include "V8XMLSerializer.h"
#include "V8XPathEvaluator.h"
#include "V8XPathException.h"
#include "V8XPathResult.h"
#include <wtf/GetPtr.h>
#include <wtf/RefCounted.h>
#include <wtf/RefPtr.h>
#include <wtf/UnusedParam.h>
#if ENABLE(BLOB)
#include "V8DOMURL.h"
#include "V8FileReader.h"
#endif
#if ENABLE(BLOB) || ENABLE(FILE_SYSTEM)
#include "V8FileError.h"
#endif
#if ENABLE(CSS_REGIONS)
#include "V8WebKitCSSRegionRule.h"
#endif
#if ENABLE(DATALIST_ELEMENT)
#include "V8HTMLDataListElement.h"
#endif
#if ENABLE(DEVICE_ORIENTATION)
#include "V8DeviceMotionEvent.h"
#include "V8DeviceOrientationEvent.h"
#endif
#if ENABLE(DIALOG_ELEMENT)
#include "V8HTMLDialogElement.h"
#endif
#if ENABLE(ENCRYPTED_MEDIA)
#include "V8MediaKeyError.h"
#include "V8MediaKeyEvent.h"
#endif
#if ENABLE(INDEXED_DATABASE)
#include "V8IDBCursor.h"
#include "V8IDBCursorWithValue.h"
#include "V8IDBDatabase.h"
#include "V8IDBIndex.h"
#include "V8IDBKeyRange.h"
#include "V8IDBObjectStore.h"
#include "V8IDBOpenDBRequest.h"
#include "V8IDBRequest.h"
#include "V8IDBTransaction.h"
#include "V8IDBVersionChangeEvent.h"
#endif
#if ENABLE(INPUT_SPEECH)
#include "V8SpeechInputEvent.h"
#endif
#if ENABLE(MEDIA_SOURCE)
#include "V8MediaSource.h"
#include "V8SourceBuffer.h"
#include "V8SourceBufferList.h"
#endif
#if ENABLE(MEDIA_STREAM)
#include "V8MediaStream.h"
#include "V8MediaStreamEvent.h"
#include "V8RTCIceCandidate.h"
#include "V8RTCPeerConnection.h"
#include "V8RTCSessionDescription.h"
#endif
#if ENABLE(MICRODATA)
#include "V8HTMLPropertiesCollection.h"
#include "V8PropertyNodeList.h"
#endif
#if ENABLE(LEGACY_NOTIFICATIONS) || ENABLE(NOTIFICATIONS)
#include "V8Notification.h"
#endif
#if ENABLE(PROXIMITY_EVENTS)
#include "V8DeviceProximityEvent.h"
#endif
#if ENABLE(SCRIPTED_SPEECH)
#include "V8SpeechGrammar.h"
#include "V8SpeechGrammarList.h"
#include "V8SpeechRecognition.h"
#include "V8SpeechRecognitionError.h"
#include "V8SpeechRecognitionEvent.h"
#endif
#if ENABLE(SHADOW_DOM)
#include "V8HTMLContentElement.h"
#include "V8HTMLShadowElement.h"
#include "V8ShadowRoot.h"
#endif
#if ENABLE(SHARED_WORKERS)
#include "V8SharedWorker.h"
#endif
#if ENABLE(SQL_DATABASE)
#include "V8SQLException.h"
#endif
#if ENABLE(SVG)
#include "V8SVGZoomEvent.h"
#endif
#if ENABLE(TEMPLATE_ELEMENT)
#include "V8HTMLTemplateElement.h"
#endif
#if ENABLE(TOUCH_EVENTS)
#include "V8Touch.h"
#include "V8TouchEvent.h"
#include "V8TouchList.h"
#endif
#if ENABLE(VIDEO)
#include "V8HTMLAudioElement.h"
#include "V8HTMLMediaElement.h"
#include "V8HTMLSourceElement.h"
#include "V8HTMLVideoElement.h"
#include "V8MediaController.h"
#include "V8MediaError.h"
#include "V8TimeRanges.h"
#endif
#if ENABLE(VIDEO_TRACK)
#include "V8HTMLTrackElement.h"
#include "V8TextTrack.h"
#include "V8TextTrackCue.h"
#include "V8TextTrackCueList.h"
#include "V8TextTrackList.h"
#include "V8TrackEvent.h"
#endif
#if ENABLE(WEBGL)
#include "V8WebGLActiveInfo.h"
#include "V8WebGLBuffer.h"
#include "V8WebGLContextEvent.h"
#include "V8WebGLFramebuffer.h"
#include "V8WebGLProgram.h"
#include "V8WebGLRenderbuffer.h"
#include "V8WebGLRenderingContext.h"
#include "V8WebGLShader.h"
#include "V8WebGLShaderPrecisionFormat.h"
#include "V8WebGLTexture.h"
#include "V8WebGLUniformLocation.h"
#endif
#if ENABLE(WEB_AUDIO)
#include "V8AudioContext.h"
#include "V8AudioProcessingEvent.h"
#include "V8OfflineAudioCompletionEvent.h"
#include "V8OfflineAudioContext.h"
#include "V8PannerNode.h"
#endif
#if ENABLE(WEB_INTENTS)
#include "V8Intent.h"
#endif
#if ENABLE(WEB_INTENTS_TAG)
#include "V8HTMLIntentElement.h"
#endif
#if ENABLE(WEB_SOCKETS)
#include "V8CloseEvent.h"
#include "V8WebSocket.h"
#endif
#if ENABLE(WORKERS)
#include "V8Worker.h"
#endif
#if ENABLE(XSLT)
#include "V8XSLTProcessor.h"
#endif
namespace WebCore {
WrapperTypeInfo V8DOMWindow::info = { V8DOMWindow::GetTemplate, V8DOMWindow::derefObject, 0, 0, V8DOMWindow::installPerContextPrototypeProperties, 0, WrapperTypeObjectPrototype };
namespace DOMWindowV8Internal {
template <typename T> void V8_USE(T) { }
static v8::Handle<v8::Value> screenAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<Screen> result = imp->screen();
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "screen", wrapper);
}
return wrapper;
}
static v8::Handle<v8::Value> historyAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<History> result = imp->history();
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "history", wrapper);
}
return wrapper;
}
static v8::Handle<v8::Value> locationbarAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<BarInfo> result = imp->locationbar();
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "locationbar", wrapper);
}
return wrapper;
}
static v8::Handle<v8::Value> menubarAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<BarInfo> result = imp->menubar();
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "menubar", wrapper);
}
return wrapper;
}
static v8::Handle<v8::Value> personalbarAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<BarInfo> result = imp->personalbar();
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "personalbar", wrapper);
}
return wrapper;
}
static v8::Handle<v8::Value> scrollbarsAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<BarInfo> result = imp->scrollbars();
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "scrollbars", wrapper);
}
return wrapper;
}
static v8::Handle<v8::Value> statusbarAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<BarInfo> result = imp->statusbar();
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "statusbar", wrapper);
}
return wrapper;
}
static v8::Handle<v8::Value> toolbarAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<BarInfo> result = imp->toolbar();
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "toolbar", wrapper);
}
return wrapper;
}
static v8::Handle<v8::Value> navigatorAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<Navigator> result = imp->navigator();
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "navigator", wrapper);
}
return wrapper;
}
static v8::Handle<v8::Value> clientInformationAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<Navigator> result = imp->clientInformation();
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "clientInformation", wrapper);
}
return wrapper;
}
static v8::Handle<v8::Value> cryptoAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<Crypto> result = imp->crypto();
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "crypto", wrapper);
}
return wrapper;
}
static v8::Handle<v8::Value> locationAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
RefPtr<Location> result = imp->location();
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "location", wrapper);
}
return wrapper;
}
static v8::Handle<v8::Value> frameElementAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!BindingSecurity::shouldAllowAccessToNode(BindingState::instance(), imp->frameElement()))
return v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
return toV8Fast(imp->frameElement(), info, imp);
}
static v8::Handle<v8::Value> offscreenBufferingAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return v8Boolean(imp->offscreenBuffering(), info.GetIsolate());
}
static v8::Handle<v8::Value> outerHeightAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return v8Integer(imp->outerHeight(), info.GetIsolate());
}
static v8::Handle<v8::Value> outerWidthAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return v8Integer(imp->outerWidth(), info.GetIsolate());
}
static v8::Handle<v8::Value> innerHeightAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return v8Integer(imp->innerHeight(), info.GetIsolate());
}
static v8::Handle<v8::Value> innerWidthAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return v8Integer(imp->innerWidth(), info.GetIsolate());
}
static v8::Handle<v8::Value> screenXAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return v8Integer(imp->screenX(), info.GetIsolate());
}
static v8::Handle<v8::Value> screenYAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return v8Integer(imp->screenY(), info.GetIsolate());
}
static v8::Handle<v8::Value> screenLeftAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return v8Integer(imp->screenLeft(), info.GetIsolate());
}
static v8::Handle<v8::Value> screenTopAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return v8Integer(imp->screenTop(), info.GetIsolate());
}
static v8::Handle<v8::Value> scrollXAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return v8Integer(imp->scrollX(), info.GetIsolate());
}
static v8::Handle<v8::Value> scrollYAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return v8Integer(imp->scrollY(), info.GetIsolate());
}
static v8::Handle<v8::Value> pageXOffsetAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return v8Integer(imp->pageXOffset(), info.GetIsolate());
}
static v8::Handle<v8::Value> pageYOffsetAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return v8Integer(imp->pageYOffset(), info.GetIsolate());
}
static v8::Handle<v8::Value> closedAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return v8Boolean(imp->closed(), info.GetIsolate());
}
static v8::Handle<v8::Value> lengthAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return v8UnsignedInteger(imp->length(), info.GetIsolate());
}
static v8::Handle<v8::Value> nameAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return v8String(imp->name(), info.GetIsolate());
}
static void nameAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, v, value);
imp->setName(v);
return;
}
static v8::Handle<v8::Value> statusAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return v8String(imp->status(), info.GetIsolate());
}
static void statusAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, v, value);
imp->setStatus(v);
return;
}
static v8::Handle<v8::Value> defaultStatusAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return v8String(imp->defaultStatus(), info.GetIsolate());
}
static void defaultStatusAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, v, value);
imp->setDefaultStatus(v);
return;
}
static v8::Handle<v8::Value> defaultstatusAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return v8String(imp->defaultstatus(), info.GetIsolate());
}
static void defaultstatusAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, v, value);
imp->setDefaultstatus(v);
return;
}
static v8::Handle<v8::Value> selfAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return toV8Fast(imp->self(), info, imp);
}
static v8::Handle<v8::Value> windowAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
return toV8Fast(imp->window(), info, imp);
}
static v8::Handle<v8::Value> framesAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return toV8Fast(imp->frames(), info, imp);
}
static v8::Handle<v8::Value> openerAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return toV8Fast(imp->opener(), info, imp);
}
static v8::Handle<v8::Value> parentAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return toV8Fast(imp->parent(), info, imp);
}
static v8::Handle<v8::Value> topAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
return toV8Fast(imp->top(), info, imp);
}
static v8::Handle<v8::Value> documentAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return toV8Fast(imp->document(), info, imp);
}
static v8::Handle<v8::Value> styleMediaAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<StyleMedia> result = imp->styleMedia();
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "styleMedia", wrapper);
}
return wrapper;
}
static v8::Handle<v8::Value> devicePixelRatioAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
return v8::Number::New(imp->devicePixelRatio());
}
static v8::Handle<v8::Value> applicationCacheAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<DOMApplicationCache> result = imp->applicationCache();
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "applicationCache", wrapper);
}
return wrapper;
}
static v8::Handle<v8::Value> sessionStorageAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
ExceptionCode ec = 0;
RefPtr<Storage> v = imp->sessionStorage(ec);
if (UNLIKELY(ec))
return setDOMException(ec, info.GetIsolate());
RefPtr<Storage> result = imp->sessionStorage(ec);
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "sessionStorage", wrapper);
}
return wrapper;
}
static v8::Handle<v8::Value> localStorageAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
ExceptionCode ec = 0;
RefPtr<Storage> v = imp->localStorage(ec);
if (UNLIKELY(ec))
return setDOMException(ec, info.GetIsolate());
RefPtr<Storage> result = imp->localStorage(ec);
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "localStorage", wrapper);
}
return wrapper;
}
static v8::Handle<v8::Value> consoleAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<Console> result = imp->console();
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "console", wrapper);
}
return wrapper;
}
static v8::Handle<v8::Value> performanceAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<Performance> result = imp->performance();
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "performance", wrapper);
}
return wrapper;
}
static v8::Handle<v8::Value> onabortAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onabort() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onabort())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onabortAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onabort(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnabort(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onbeforeunloadAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onbeforeunload() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onbeforeunload())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onbeforeunloadAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onbeforeunload(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnbeforeunload(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onblurAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onblur() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onblur())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onblurAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onblur(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnblur(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> oncanplayAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->oncanplay() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->oncanplay())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void oncanplayAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->oncanplay(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOncanplay(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> oncanplaythroughAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->oncanplaythrough() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->oncanplaythrough())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void oncanplaythroughAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->oncanplaythrough(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOncanplaythrough(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onchangeAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onchange() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onchange())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onchangeAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onchange(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnchange(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onclickAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onclick() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onclick())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onclickAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onclick(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnclick(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> oncontextmenuAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->oncontextmenu() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->oncontextmenu())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void oncontextmenuAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->oncontextmenu(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOncontextmenu(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> ondblclickAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->ondblclick() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->ondblclick())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void ondblclickAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->ondblclick(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOndblclick(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> ondragAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->ondrag() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->ondrag())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void ondragAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->ondrag(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOndrag(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> ondragendAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->ondragend() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->ondragend())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void ondragendAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->ondragend(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOndragend(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> ondragenterAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->ondragenter() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->ondragenter())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void ondragenterAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->ondragenter(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOndragenter(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> ondragleaveAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->ondragleave() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->ondragleave())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void ondragleaveAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->ondragleave(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOndragleave(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> ondragoverAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->ondragover() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->ondragover())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void ondragoverAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->ondragover(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOndragover(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> ondragstartAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->ondragstart() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->ondragstart())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void ondragstartAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->ondragstart(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOndragstart(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> ondropAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->ondrop() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->ondrop())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void ondropAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->ondrop(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOndrop(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> ondurationchangeAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->ondurationchange() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->ondurationchange())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void ondurationchangeAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->ondurationchange(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOndurationchange(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onemptiedAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onemptied() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onemptied())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onemptiedAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onemptied(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnemptied(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onendedAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onended() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onended())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onendedAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onended(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnended(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onerrorAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onerror() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onerror())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onerrorAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onerror(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnerror(V8EventListenerList::findOrCreateWrapper<V8WindowErrorHandler>(value, true));
return;
}
static v8::Handle<v8::Value> onfocusAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onfocus() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onfocus())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onfocusAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onfocus(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnfocus(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onhashchangeAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onhashchange() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onhashchange())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onhashchangeAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onhashchange(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnhashchange(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> oninputAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->oninput() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->oninput())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void oninputAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->oninput(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOninput(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> oninvalidAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->oninvalid() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->oninvalid())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void oninvalidAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->oninvalid(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOninvalid(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onkeydownAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onkeydown() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onkeydown())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onkeydownAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onkeydown(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnkeydown(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onkeypressAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onkeypress() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onkeypress())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onkeypressAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onkeypress(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnkeypress(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onkeyupAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onkeyup() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onkeyup())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onkeyupAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onkeyup(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnkeyup(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onloadAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onload() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onload())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onloadAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onload(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnload(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onloadeddataAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onloadeddata() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onloadeddata())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onloadeddataAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onloadeddata(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnloadeddata(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onloadedmetadataAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onloadedmetadata() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onloadedmetadata())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onloadedmetadataAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onloadedmetadata(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnloadedmetadata(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onloadstartAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onloadstart() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onloadstart())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onloadstartAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onloadstart(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnloadstart(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onmessageAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onmessage() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onmessage())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onmessageAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onmessage(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnmessage(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onmousedownAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onmousedown() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onmousedown())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onmousedownAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onmousedown(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnmousedown(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onmousemoveAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onmousemove() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onmousemove())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onmousemoveAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onmousemove(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnmousemove(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onmouseoutAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onmouseout() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onmouseout())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onmouseoutAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onmouseout(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnmouseout(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onmouseoverAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onmouseover() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onmouseover())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onmouseoverAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onmouseover(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnmouseover(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onmouseupAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onmouseup() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onmouseup())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onmouseupAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onmouseup(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnmouseup(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onmousewheelAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onmousewheel() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onmousewheel())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onmousewheelAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onmousewheel(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnmousewheel(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onofflineAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onoffline() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onoffline())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onofflineAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onoffline(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnoffline(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> ononlineAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->ononline() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->ononline())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void ononlineAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->ononline(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnonline(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onpagehideAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onpagehide() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onpagehide())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onpagehideAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onpagehide(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnpagehide(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onpageshowAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onpageshow() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onpageshow())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onpageshowAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onpageshow(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnpageshow(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onpauseAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onpause() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onpause())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onpauseAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onpause(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnpause(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onplayAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onplay() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onplay())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onplayAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onplay(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnplay(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onplayingAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onplaying() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onplaying())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onplayingAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onplaying(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnplaying(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onpopstateAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onpopstate() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onpopstate())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onpopstateAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onpopstate(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnpopstate(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onprogressAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onprogress() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onprogress())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onprogressAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onprogress(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnprogress(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onratechangeAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onratechange() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onratechange())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onratechangeAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onratechange(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnratechange(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onresizeAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onresize() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onresize())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onresizeAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onresize(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnresize(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onscrollAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onscroll() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onscroll())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onscrollAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onscroll(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnscroll(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onseekedAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onseeked() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onseeked())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onseekedAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onseeked(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnseeked(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onseekingAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onseeking() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onseeking())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onseekingAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onseeking(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnseeking(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onselectAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onselect() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onselect())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onselectAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onselect(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnselect(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onstalledAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onstalled() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onstalled())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onstalledAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onstalled(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnstalled(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onstorageAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onstorage() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onstorage())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onstorageAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onstorage(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnstorage(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onsubmitAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onsubmit() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onsubmit())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onsubmitAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onsubmit(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnsubmit(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onsuspendAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onsuspend() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onsuspend())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onsuspendAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onsuspend(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnsuspend(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> ontimeupdateAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->ontimeupdate() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->ontimeupdate())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void ontimeupdateAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->ontimeupdate(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOntimeupdate(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onunloadAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onunload() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onunload())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onunloadAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onunload(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnunload(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onvolumechangeAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onvolumechange() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onvolumechange())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onvolumechangeAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onvolumechange(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnvolumechange(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onwaitingAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onwaiting() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onwaiting())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onwaitingAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onwaiting(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnwaiting(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onresetAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onreset() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onreset())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onresetAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onreset(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnreset(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onsearchAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onsearch() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onsearch())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onsearchAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onsearch(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnsearch(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onwebkitanimationendAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onwebkitanimationend() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onwebkitanimationend())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onwebkitanimationendAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onwebkitanimationend(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnwebkitanimationend(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onwebkitanimationiterationAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onwebkitanimationiteration() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onwebkitanimationiteration())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onwebkitanimationiterationAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onwebkitanimationiteration(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnwebkitanimationiteration(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onwebkitanimationstartAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onwebkitanimationstart() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onwebkitanimationstart())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onwebkitanimationstartAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onwebkitanimationstart(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnwebkitanimationstart(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
static v8::Handle<v8::Value> onwebkittransitionendAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onwebkittransitionend() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onwebkittransitionend())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
static void onwebkittransitionendAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onwebkittransitionend(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnwebkittransitionend(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
#if ENABLE(TOUCH_EVENTS)
static v8::Handle<v8::Value> ontouchstartAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->ontouchstart() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->ontouchstart())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
#endif // ENABLE(TOUCH_EVENTS)
#if ENABLE(TOUCH_EVENTS)
static void ontouchstartAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->ontouchstart(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOntouchstart(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
#endif // ENABLE(TOUCH_EVENTS)
#if ENABLE(TOUCH_EVENTS)
static v8::Handle<v8::Value> ontouchmoveAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->ontouchmove() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->ontouchmove())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
#endif // ENABLE(TOUCH_EVENTS)
#if ENABLE(TOUCH_EVENTS)
static void ontouchmoveAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->ontouchmove(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOntouchmove(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
#endif // ENABLE(TOUCH_EVENTS)
#if ENABLE(TOUCH_EVENTS)
static v8::Handle<v8::Value> ontouchendAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->ontouchend() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->ontouchend())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
#endif // ENABLE(TOUCH_EVENTS)
#if ENABLE(TOUCH_EVENTS)
static void ontouchendAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->ontouchend(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOntouchend(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
#endif // ENABLE(TOUCH_EVENTS)
#if ENABLE(TOUCH_EVENTS)
static v8::Handle<v8::Value> ontouchcancelAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->ontouchcancel() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->ontouchcancel())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
#endif // ENABLE(TOUCH_EVENTS)
#if ENABLE(TOUCH_EVENTS)
static void ontouchcancelAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->ontouchcancel(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOntouchcancel(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
#endif // ENABLE(TOUCH_EVENTS)
#if ENABLE(DEVICE_ORIENTATION)
static v8::Handle<v8::Value> ondevicemotionAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->ondevicemotion() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->ondevicemotion())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
#endif // ENABLE(DEVICE_ORIENTATION)
#if ENABLE(DEVICE_ORIENTATION)
static void ondevicemotionAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->ondevicemotion(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOndevicemotion(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
#endif // ENABLE(DEVICE_ORIENTATION)
#if ENABLE(DEVICE_ORIENTATION)
static v8::Handle<v8::Value> ondeviceorientationAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->ondeviceorientation() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->ondeviceorientation())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
#endif // ENABLE(DEVICE_ORIENTATION)
#if ENABLE(DEVICE_ORIENTATION)
static void ondeviceorientationAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->ondeviceorientation(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOndeviceorientation(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
#endif // ENABLE(DEVICE_ORIENTATION)
#if ENABLE(PROXIMITY_EVENTS)
static v8::Handle<v8::Value> onwebkitdeviceproximityAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.Holder();
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!imp->document())
return v8Undefined();
return imp->onwebkitdeviceproximity() ? v8::Handle<v8::Value>(static_cast<V8AbstractEventListener*>(imp->onwebkitdeviceproximity())->getListenerObject(imp->scriptExecutionContext())) : v8::Handle<v8::Value>(v8Null(info.GetIsolate()));
}
#endif // ENABLE(PROXIMITY_EVENTS)
#if ENABLE(PROXIMITY_EVENTS)
static void onwebkitdeviceproximityAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!imp->document())
return;
transferHiddenDependency(info.Holder(), imp->onwebkitdeviceproximity(), value, V8DOMWindow::eventListenerCacheIndex);
imp->setOnwebkitdeviceproximity(V8DOMWrapper::getEventListener(value, true, ListenerFindOrCreate));
return;
}
#endif // ENABLE(PROXIMITY_EVENTS)
#if ENABLE(LEGACY_NOTIFICATIONS) || ENABLE(NOTIFICATIONS)
static v8::Handle<v8::Value> webkitNotificationsAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
FeatureObserver::observe(activeDOMWindow(BindingState::instance()), FeatureObserver::LegacyNotifications);
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<NotificationCenter> result = DOMWindowNotifications::webkitNotifications(imp);
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "webkitNotifications", wrapper);
}
return wrapper;
}
#endif // ENABLE(LEGACY_NOTIFICATIONS) || ENABLE(NOTIFICATIONS)
#if ENABLE(QUOTA)
static v8::Handle<v8::Value> webkitStorageInfoAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<StorageInfo> result = DOMWindowQuota::webkitStorageInfo(imp);
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "webkitStorageInfo", wrapper);
}
return wrapper;
}
#endif // ENABLE(QUOTA)
#if ENABLE(PAGE_POPUP)
static v8::Handle<v8::Value> pagePopupControllerAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<PagePopupController> result = DOMWindowPagePopup::pagePopupController(imp);
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "pagePopupController", wrapper);
}
return wrapper;
}
#endif // ENABLE(PAGE_POPUP)
#if ENABLE(WEB_INTENTS)
static v8::Handle<v8::Value> webkitIntentAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<DeliveredIntent> result = DOMWindowIntents::webkitIntent(imp);
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "webkitIntent", wrapper);
}
return wrapper;
}
#endif // ENABLE(WEB_INTENTS)
#if ENABLE(INDEXED_DATABASE)
static v8::Handle<v8::Value> webkitIndexedDBAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
FeatureObserver::observe(activeDOMWindow(BindingState::instance()), FeatureObserver::PrefixedIndexedDB);
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<IDBFactory> result = DOMWindowIndexedDatabase::indexedDB(imp);
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "webkitIndexedDB", wrapper);
}
return wrapper;
}
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
static v8::Handle<v8::Value> indexedDBAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
FeatureObserver::observe(activeDOMWindow(BindingState::instance()), FeatureObserver::UnprefixedIndexedDB);
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
RefPtr<IDBFactory> result = DOMWindowIndexedDatabase::indexedDB(imp);
v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper(result.get(), info.GetIsolate())) : v8Undefined();
if (wrapper.IsEmpty()) {
wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
if (!wrapper.IsEmpty())
V8DOMWrapper::setNamedHiddenReference(info.Holder(), "indexedDB", wrapper);
}
return wrapper;
}
#endif // ENABLE(INDEXED_DATABASE)
static v8::Handle<v8::Value> DOMWindowConstructorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
v8::Handle<v8::Value> data = info.Data();
ASSERT(data->IsExternal());
V8PerContextData* perContextData = V8PerContextData::from(info.Holder()->CreationContext());
if (!perContextData)
return v8Undefined();
return perContextData->constructorForType(WrapperTypeInfo::unwrap(data));
}
static void DOMWindowReplaceableAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
DOMWindow* imp = V8DOMWindow::toNative(info.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return;
info.This()->ForceSet(name, value);
}
static v8::Handle<v8::Value> getSelectionCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
return toV8(imp->getSelection(), args.Holder(), args.GetIsolate());
}
static v8::Handle<v8::Value> focusCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
ScriptExecutionContext* scriptContext = getScriptExecutionContext();
imp->focus(scriptContext);
return v8Undefined();
}
static v8::Handle<v8::Value> focusAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
static v8::Persistent<v8::FunctionTemplate> privateTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(DOMWindowV8Internal::focusCallback, v8Undefined(), v8::Signature::New(V8DOMWindow::GetRawTemplate())));
v8::Handle<v8::Object> holder = info.This()->FindInstanceInPrototypeChain(V8DOMWindow::GetTemplate());
if (holder.IsEmpty()) {
// can only reach here by 'object.__proto__.func', and it should passed
// domain security check already
return privateTemplate->GetFunction();
}
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame(), DoNotReportSecurityError)) {
static v8::Persistent<v8::FunctionTemplate> sharedTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(DOMWindowV8Internal::focusCallback, v8Undefined(), v8::Signature::New(V8DOMWindow::GetRawTemplate())));
return sharedTemplate->GetFunction();
}
v8::Local<v8::Value> hiddenValue = info.This()->GetHiddenValue(name);
if (!hiddenValue.IsEmpty())
return hiddenValue;
return privateTemplate->GetFunction();
}
static v8::Handle<v8::Value> blurCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
imp->blur();
return v8Undefined();
}
static v8::Handle<v8::Value> blurAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
static v8::Persistent<v8::FunctionTemplate> privateTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(DOMWindowV8Internal::blurCallback, v8Undefined(), v8::Signature::New(V8DOMWindow::GetRawTemplate())));
v8::Handle<v8::Object> holder = info.This()->FindInstanceInPrototypeChain(V8DOMWindow::GetTemplate());
if (holder.IsEmpty()) {
// can only reach here by 'object.__proto__.func', and it should passed
// domain security check already
return privateTemplate->GetFunction();
}
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame(), DoNotReportSecurityError)) {
static v8::Persistent<v8::FunctionTemplate> sharedTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(DOMWindowV8Internal::blurCallback, v8Undefined(), v8::Signature::New(V8DOMWindow::GetRawTemplate())));
return sharedTemplate->GetFunction();
}
v8::Local<v8::Value> hiddenValue = info.This()->GetHiddenValue(name);
if (!hiddenValue.IsEmpty())
return hiddenValue;
return privateTemplate->GetFunction();
}
static v8::Handle<v8::Value> closeCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
ScriptExecutionContext* scriptContext = getScriptExecutionContext();
imp->close(scriptContext);
return v8Undefined();
}
static v8::Handle<v8::Value> closeAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
static v8::Persistent<v8::FunctionTemplate> privateTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(DOMWindowV8Internal::closeCallback, v8Undefined(), v8::Signature::New(V8DOMWindow::GetRawTemplate())));
v8::Handle<v8::Object> holder = info.This()->FindInstanceInPrototypeChain(V8DOMWindow::GetTemplate());
if (holder.IsEmpty()) {
// can only reach here by 'object.__proto__.func', and it should passed
// domain security check already
return privateTemplate->GetFunction();
}
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame(), DoNotReportSecurityError)) {
static v8::Persistent<v8::FunctionTemplate> sharedTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(DOMWindowV8Internal::closeCallback, v8Undefined(), v8::Signature::New(V8DOMWindow::GetRawTemplate())));
return sharedTemplate->GetFunction();
}
v8::Local<v8::Value> hiddenValue = info.This()->GetHiddenValue(name);
if (!hiddenValue.IsEmpty())
return hiddenValue;
return privateTemplate->GetFunction();
}
static v8::Handle<v8::Value> printCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
imp->print();
return v8Undefined();
}
static v8::Handle<v8::Value> stopCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
imp->stop();
return v8Undefined();
}
static v8::Handle<v8::Value> alertCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH_FOR_V8STRINGRESOURCE(V8StringResource<>, message, MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined));
imp->alert(message);
return v8Undefined();
}
static v8::Handle<v8::Value> confirmCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH_FOR_V8STRINGRESOURCE(V8StringResource<>, message, MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined));
return v8Boolean(imp->confirm(message), args.GetIsolate());
}
static v8::Handle<v8::Value> promptCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH_FOR_V8STRINGRESOURCE(V8StringResource<>, message, MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined));
V8TRYCATCH_FOR_V8STRINGRESOURCE(V8StringResource<WithUndefinedOrNullCheck>, defaultValue, MAYBE_MISSING_PARAMETER(args, 1, DefaultIsUndefined));
return v8StringOrNull(imp->prompt(message, defaultValue), args.GetIsolate());
}
static v8::Handle<v8::Value> findCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH_FOR_V8STRINGRESOURCE(V8StringResource<>, string, MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined));
V8TRYCATCH(bool, caseSensitive, MAYBE_MISSING_PARAMETER(args, 1, DefaultIsUndefined)->BooleanValue());
V8TRYCATCH(bool, backwards, MAYBE_MISSING_PARAMETER(args, 2, DefaultIsUndefined)->BooleanValue());
V8TRYCATCH(bool, wrap, MAYBE_MISSING_PARAMETER(args, 3, DefaultIsUndefined)->BooleanValue());
V8TRYCATCH(bool, wholeWord, MAYBE_MISSING_PARAMETER(args, 4, DefaultIsUndefined)->BooleanValue());
V8TRYCATCH(bool, searchInFrames, MAYBE_MISSING_PARAMETER(args, 5, DefaultIsUndefined)->BooleanValue());
V8TRYCATCH(bool, showDialog, MAYBE_MISSING_PARAMETER(args, 6, DefaultIsUndefined)->BooleanValue());
return v8Boolean(imp->find(string, caseSensitive, backwards, wrap, wholeWord, searchInFrames, showDialog), args.GetIsolate());
}
static v8::Handle<v8::Value> scrollByCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH(int, x, toInt32(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined)));
V8TRYCATCH(int, y, toInt32(MAYBE_MISSING_PARAMETER(args, 1, DefaultIsUndefined)));
imp->scrollBy(x, y);
return v8Undefined();
}
static v8::Handle<v8::Value> scrollToCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH(int, x, toInt32(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined)));
V8TRYCATCH(int, y, toInt32(MAYBE_MISSING_PARAMETER(args, 1, DefaultIsUndefined)));
imp->scrollTo(x, y);
return v8Undefined();
}
static v8::Handle<v8::Value> scrollCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH(int, x, toInt32(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined)));
V8TRYCATCH(int, y, toInt32(MAYBE_MISSING_PARAMETER(args, 1, DefaultIsUndefined)));
imp->scroll(x, y);
return v8Undefined();
}
static v8::Handle<v8::Value> moveByCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH(float, x, static_cast<float>(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined)->NumberValue()));
V8TRYCATCH(float, y, static_cast<float>(MAYBE_MISSING_PARAMETER(args, 1, DefaultIsUndefined)->NumberValue()));
imp->moveBy(x, y);
return v8Undefined();
}
static v8::Handle<v8::Value> moveToCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH(float, x, static_cast<float>(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined)->NumberValue()));
V8TRYCATCH(float, y, static_cast<float>(MAYBE_MISSING_PARAMETER(args, 1, DefaultIsUndefined)->NumberValue()));
imp->moveTo(x, y);
return v8Undefined();
}
static v8::Handle<v8::Value> resizeByCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH(float, x, static_cast<float>(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined)->NumberValue()));
V8TRYCATCH(float, y, static_cast<float>(MAYBE_MISSING_PARAMETER(args, 1, DefaultIsUndefined)->NumberValue()));
imp->resizeBy(x, y);
return v8Undefined();
}
static v8::Handle<v8::Value> resizeToCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH(float, width, static_cast<float>(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined)->NumberValue()));
V8TRYCATCH(float, height, static_cast<float>(MAYBE_MISSING_PARAMETER(args, 1, DefaultIsUndefined)->NumberValue()));
imp->resizeTo(width, height);
return v8Undefined();
}
static v8::Handle<v8::Value> matchMediaCallback(const v8::Arguments& args)
{
if (args.Length() < 1)
return throwNotEnoughArgumentsError(args.GetIsolate());
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH_FOR_V8STRINGRESOURCE(V8StringResource<>, query, MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined));
return toV8(imp->matchMedia(query), args.Holder(), args.GetIsolate());
}
static v8::Handle<v8::Value> getComputedStyleCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH(Element*, element, V8Element::HasInstance(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined)) ? V8Element::toNative(v8::Handle<v8::Object>::Cast(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined))) : 0);
V8TRYCATCH_FOR_V8STRINGRESOURCE(V8StringResource<WithUndefinedOrNullCheck>, pseudoElement, MAYBE_MISSING_PARAMETER(args, 1, DefaultIsUndefined));
return toV8(imp->getComputedStyle(element, pseudoElement), args.Holder(), args.GetIsolate());
}
static v8::Handle<v8::Value> getMatchedCSSRulesCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH(Element*, element, V8Element::HasInstance(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined)) ? V8Element::toNative(v8::Handle<v8::Object>::Cast(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined))) : 0);
V8TRYCATCH_FOR_V8STRINGRESOURCE(V8StringResource<WithUndefinedOrNullCheck>, pseudoElement, MAYBE_MISSING_PARAMETER(args, 1, DefaultIsUndefined));
return toV8(imp->getMatchedCSSRules(element, pseudoElement), args.Holder(), args.GetIsolate());
}
static v8::Handle<v8::Value> webkitConvertPointFromPageToNodeCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH(Node*, node, V8Node::HasInstance(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined)) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined))) : 0);
V8TRYCATCH(WebKitPoint*, p, V8WebKitPoint::HasInstance(MAYBE_MISSING_PARAMETER(args, 1, DefaultIsUndefined)) ? V8WebKitPoint::toNative(v8::Handle<v8::Object>::Cast(MAYBE_MISSING_PARAMETER(args, 1, DefaultIsUndefined))) : 0);
return toV8(imp->webkitConvertPointFromPageToNode(node, p), args.Holder(), args.GetIsolate());
}
static v8::Handle<v8::Value> webkitConvertPointFromNodeToPageCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH(Node*, node, V8Node::HasInstance(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined)) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined))) : 0);
V8TRYCATCH(WebKitPoint*, p, V8WebKitPoint::HasInstance(MAYBE_MISSING_PARAMETER(args, 1, DefaultIsUndefined)) ? V8WebKitPoint::toNative(v8::Handle<v8::Object>::Cast(MAYBE_MISSING_PARAMETER(args, 1, DefaultIsUndefined))) : 0);
return toV8(imp->webkitConvertPointFromNodeToPage(node, p), args.Holder(), args.GetIsolate());
}
static v8::Handle<v8::Value> postMessageAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
static v8::Persistent<v8::FunctionTemplate> privateTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(V8DOMWindow::postMessageCallback, v8Undefined(), v8::Signature::New(V8DOMWindow::GetRawTemplate())));
v8::Handle<v8::Object> holder = info.This()->FindInstanceInPrototypeChain(V8DOMWindow::GetTemplate());
if (holder.IsEmpty()) {
// can only reach here by 'object.__proto__.func', and it should passed
// domain security check already
return privateTemplate->GetFunction();
}
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame(), DoNotReportSecurityError)) {
static v8::Persistent<v8::FunctionTemplate> sharedTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(V8DOMWindow::postMessageCallback, v8Undefined(), v8::Signature::New(V8DOMWindow::GetRawTemplate())));
return sharedTemplate->GetFunction();
}
v8::Local<v8::Value> hiddenValue = info.This()->GetHiddenValue(name);
if (!hiddenValue.IsEmpty())
return hiddenValue;
return privateTemplate->GetFunction();
}
static v8::Handle<v8::Value> clearTimeoutCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH(int, handle, toInt32(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined)));
imp->clearTimeout(handle);
return v8Undefined();
}
static v8::Handle<v8::Value> clearIntervalCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH(int, handle, toInt32(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined)));
imp->clearInterval(handle);
return v8Undefined();
}
static v8::Handle<v8::Value> requestAnimationFrameCallback(const v8::Arguments& args)
{
FeatureObserver::observe(activeDOMWindow(BindingState::instance()), FeatureObserver::UnprefixedRequestAnimationFrame);
if (args.Length() < 1)
return throwNotEnoughArgumentsError(args.GetIsolate());
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
if (args.Length() <= 0 || !args[0]->IsFunction())
return throwTypeError(0, args.GetIsolate());
RefPtr<RequestAnimationFrameCallback> callback = V8RequestAnimationFrameCallback::create(args[0], getScriptExecutionContext());
return v8Integer(imp->requestAnimationFrame(callback), args.GetIsolate());
}
static v8::Handle<v8::Value> cancelAnimationFrameCallback(const v8::Arguments& args)
{
if (args.Length() < 1)
return throwNotEnoughArgumentsError(args.GetIsolate());
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH(int, id, toInt32(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined)));
imp->cancelAnimationFrame(id);
return v8Undefined();
}
static v8::Handle<v8::Value> webkitRequestAnimationFrameCallback(const v8::Arguments& args)
{
FeatureObserver::observe(activeDOMWindow(BindingState::instance()), FeatureObserver::PrefixedRequestAnimationFrame);
if (args.Length() < 1)
return throwNotEnoughArgumentsError(args.GetIsolate());
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
if (args.Length() <= 0 || !args[0]->IsFunction())
return throwTypeError(0, args.GetIsolate());
RefPtr<RequestAnimationFrameCallback> callback = V8RequestAnimationFrameCallback::create(args[0], getScriptExecutionContext());
return v8Integer(imp->requestAnimationFrame(callback), args.GetIsolate());
}
static v8::Handle<v8::Value> webkitCancelAnimationFrameCallback(const v8::Arguments& args)
{
if (args.Length() < 1)
return throwNotEnoughArgumentsError(args.GetIsolate());
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH(int, id, toInt32(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined)));
imp->cancelAnimationFrame(id);
return v8Undefined();
}
static v8::Handle<v8::Value> webkitCancelRequestAnimationFrameCallback(const v8::Arguments& args)
{
if (args.Length() < 1)
return throwNotEnoughArgumentsError(args.GetIsolate());
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH(int, id, toInt32(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined)));
imp->cancelAnimationFrame(id);
return v8Undefined();
}
static v8::Handle<v8::Value> atobCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
ExceptionCode ec = 0;
{
V8TRYCATCH_FOR_V8STRINGRESOURCE(V8StringResource<WithNullCheck>, string, MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined));
String result = imp->atob(string, ec);
if (UNLIKELY(ec))
goto fail;
return v8String(result, args.GetIsolate());
}
fail:
return setDOMException(ec, args.GetIsolate());
}
static v8::Handle<v8::Value> btoaCallback(const v8::Arguments& args)
{
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
ExceptionCode ec = 0;
{
V8TRYCATCH_FOR_V8STRINGRESOURCE(V8StringResource<WithNullCheck>, string, MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined));
String result = imp->btoa(string, ec);
if (UNLIKELY(ec))
goto fail;
return v8String(result, args.GetIsolate());
}
fail:
return setDOMException(ec, args.GetIsolate());
}
static v8::Handle<v8::Value> dispatchEventCallback(const v8::Arguments& args)
{
if (args.Length() < 1)
return throwNotEnoughArgumentsError(args.GetIsolate());
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
ExceptionCode ec = 0;
{
V8TRYCATCH(Event*, evt, V8Event::HasInstance(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined)) ? V8Event::toNative(v8::Handle<v8::Object>::Cast(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined))) : 0);
bool result = imp->dispatchEvent(evt, ec);
if (UNLIKELY(ec))
goto fail;
return v8Boolean(result, args.GetIsolate());
}
fail:
return setDOMException(ec, args.GetIsolate());
}
static v8::Handle<v8::Value> toStringAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
static v8::Persistent<v8::FunctionTemplate> privateTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(V8DOMWindow::toStringCallback, v8Undefined(), v8::Local<v8::Signature>()));
v8::Handle<v8::Object> holder = info.This()->FindInstanceInPrototypeChain(V8DOMWindow::GetTemplate());
if (holder.IsEmpty()) {
// can only reach here by 'object.__proto__.func', and it should passed
// domain security check already
return privateTemplate->GetFunction();
}
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame(), DoNotReportSecurityError)) {
static v8::Persistent<v8::FunctionTemplate> sharedTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(V8DOMWindow::toStringCallback, v8Undefined(), v8::Local<v8::Signature>()));
return sharedTemplate->GetFunction();
}
v8::Local<v8::Value> hiddenValue = info.This()->GetHiddenValue(name);
if (!hiddenValue.IsEmpty())
return hiddenValue;
return privateTemplate->GetFunction();
}
#if ENABLE(FILE_SYSTEM)
static v8::Handle<v8::Value> webkitRequestFileSystemCallback(const v8::Arguments& args)
{
if (args.Length() < 3)
return throwNotEnoughArgumentsError(args.GetIsolate());
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH(int, type, toUInt32(MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined)));
V8TRYCATCH(long long, size, toInt64(MAYBE_MISSING_PARAMETER(args, 1, DefaultIsUndefined)));
if (args.Length() <= 2 || !args[2]->IsFunction())
return throwTypeError(0, args.GetIsolate());
RefPtr<FileSystemCallback> successCallback = V8FileSystemCallback::create(args[2], getScriptExecutionContext());
RefPtr<ErrorCallback> errorCallback;
if (args.Length() > 3 && !args[3]->IsNull() && !args[3]->IsUndefined()) {
if (!args[3]->IsFunction())
return throwTypeError(0, args.GetIsolate());
errorCallback = V8ErrorCallback::create(args[3], getScriptExecutionContext());
}
DOMWindowFileSystem::webkitRequestFileSystem(imp, type, size, successCallback, errorCallback);
return v8Undefined();
}
#endif // ENABLE(FILE_SYSTEM)
#if ENABLE(FILE_SYSTEM)
static v8::Handle<v8::Value> webkitResolveLocalFileSystemURLCallback(const v8::Arguments& args)
{
if (args.Length() < 2)
return throwNotEnoughArgumentsError(args.GetIsolate());
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
V8TRYCATCH_FOR_V8STRINGRESOURCE(V8StringResource<>, url, MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined));
if (args.Length() <= 1 || !args[1]->IsFunction())
return throwTypeError(0, args.GetIsolate());
RefPtr<EntryCallback> successCallback = V8EntryCallback::create(args[1], getScriptExecutionContext());
RefPtr<ErrorCallback> errorCallback;
if (args.Length() > 2 && !args[2]->IsNull() && !args[2]->IsUndefined()) {
if (!args[2]->IsFunction())
return throwTypeError(0, args.GetIsolate());
errorCallback = V8ErrorCallback::create(args[2], getScriptExecutionContext());
}
DOMWindowFileSystem::webkitResolveLocalFileSystemURL(imp, url, successCallback, errorCallback);
return v8Undefined();
}
#endif // ENABLE(FILE_SYSTEM)
#if ENABLE(SQL_DATABASE)
static v8::Handle<v8::Value> openDatabaseCallback(const v8::Arguments& args)
{
FeatureObserver::observe(activeDOMWindow(BindingState::instance()), FeatureObserver::OpenWebDatabase);
if (args.Length() < 4)
return throwNotEnoughArgumentsError(args.GetIsolate());
DOMWindow* imp = V8DOMWindow::toNative(args.Holder());
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return v8Undefined();
ExceptionCode ec = 0;
{
V8TRYCATCH_FOR_V8STRINGRESOURCE(V8StringResource<>, name, MAYBE_MISSING_PARAMETER(args, 0, DefaultIsUndefined));
V8TRYCATCH_FOR_V8STRINGRESOURCE(V8StringResource<>, version, MAYBE_MISSING_PARAMETER(args, 1, DefaultIsUndefined));
V8TRYCATCH_FOR_V8STRINGRESOURCE(V8StringResource<>, displayName, MAYBE_MISSING_PARAMETER(args, 2, DefaultIsUndefined));
V8TRYCATCH(unsigned, estimatedSize, toUInt32(MAYBE_MISSING_PARAMETER(args, 3, DefaultIsUndefined)));
RefPtr<DatabaseCallback> creationCallback;
if (args.Length() > 4 && !args[4]->IsNull() && !args[4]->IsUndefined()) {
if (!args[4]->IsFunction())
return throwTypeError(0, args.GetIsolate());
creationCallback = V8DatabaseCallback::create(args[4], getScriptExecutionContext());
}
RefPtr<Database> result = DOMWindowWebDatabase::openDatabase(imp, name, version, displayName, estimatedSize, creationCallback, ec);
if (UNLIKELY(ec))
goto fail;
return toV8(result.release(), args.Holder(), args.GetIsolate());
}
fail:
return setDOMException(ec, args.GetIsolate());
}
#endif // ENABLE(SQL_DATABASE)
static void DOMWindowDomainSafeFunctionSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
{
v8::Handle<v8::Object> holder = info.This()->FindInstanceInPrototypeChain(V8DOMWindow::GetTemplate());
if (holder.IsEmpty())
return;
DOMWindow* imp = V8DOMWindow::toNative(holder);
if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame()))
return;
info.This()->SetHiddenValue(name, value);
}
} // namespace DOMWindowV8Internal
static const V8DOMConfiguration::BatchedAttribute shadowAttrs[] = {
// Attribute 'location' (Type: 'attribute' ExtAttr: 'DoNotCheckSecurity CustomSetter V8Unforgeable')
{"location", DOMWindowV8Internal::locationAttrGetter, V8DOMWindow::locationAccessorSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::ALL_CAN_READ | v8::ALL_CAN_WRITE | v8::PROHIBITS_OVERWRITING), static_cast<v8::PropertyAttribute>(v8::None | v8::DontDelete), 0 /* on instance */},
// Attribute 'window' (Type: 'readonly attribute' ExtAttr: 'DoNotCheckSecurity V8Unforgeable')
{"window", DOMWindowV8Internal::windowAttrGetter, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::ALL_CAN_READ | v8::PROHIBITS_OVERWRITING), static_cast<v8::PropertyAttribute>(v8::None | v8::DontDelete), 0 /* on instance */},
// Attribute 'top' (Type: 'readonly attribute' ExtAttr: 'DoNotCheckSecurityOnGetter V8Unforgeable')
{"top", DOMWindowV8Internal::topAttrGetter, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::ALL_CAN_READ | v8::PROHIBITS_OVERWRITING), static_cast<v8::PropertyAttribute>(v8::None | v8::DontDelete), 0 /* on instance */},
};
static const V8DOMConfiguration::BatchedAttribute V8DOMWindowAttrs[] = {
// Attribute 'screen' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"screen", DOMWindowV8Internal::screenAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'history' (Type: 'readonly attribute' ExtAttr: 'Replaceable DoNotCheckSecurityOnGetter')
{"history", DOMWindowV8Internal::historyAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::ALL_CAN_READ), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'locationbar' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"locationbar", DOMWindowV8Internal::locationbarAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'menubar' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"menubar", DOMWindowV8Internal::menubarAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'personalbar' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"personalbar", DOMWindowV8Internal::personalbarAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'scrollbars' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"scrollbars", DOMWindowV8Internal::scrollbarsAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'statusbar' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"statusbar", DOMWindowV8Internal::statusbarAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'toolbar' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"toolbar", DOMWindowV8Internal::toolbarAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'navigator' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"navigator", DOMWindowV8Internal::navigatorAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'clientInformation' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"clientInformation", DOMWindowV8Internal::clientInformationAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'crypto' (Type: 'readonly attribute' ExtAttr: '')
{"crypto", DOMWindowV8Internal::cryptoAttrGetter, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'event' (Type: 'readonly attribute' ExtAttr: 'Replaceable CustomGetter V8CustomSetter')
{"event", V8DOMWindow::eventAccessorGetter, V8DOMWindow::eventAccessorSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'frameElement' (Type: 'readonly attribute' ExtAttr: 'CheckSecurityForNode')
{"frameElement", DOMWindowV8Internal::frameElementAttrGetter, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'offscreenBuffering' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"offscreenBuffering", DOMWindowV8Internal::offscreenBufferingAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'outerHeight' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"outerHeight", DOMWindowV8Internal::outerHeightAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'outerWidth' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"outerWidth", DOMWindowV8Internal::outerWidthAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'innerHeight' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"innerHeight", DOMWindowV8Internal::innerHeightAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'innerWidth' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"innerWidth", DOMWindowV8Internal::innerWidthAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'screenX' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"screenX", DOMWindowV8Internal::screenXAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'screenY' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"screenY", DOMWindowV8Internal::screenYAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'screenLeft' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"screenLeft", DOMWindowV8Internal::screenLeftAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'screenTop' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"screenTop", DOMWindowV8Internal::screenTopAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'scrollX' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"scrollX", DOMWindowV8Internal::scrollXAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'scrollY' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"scrollY", DOMWindowV8Internal::scrollYAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'pageXOffset' (Type: 'readonly attribute' ExtAttr: '')
{"pageXOffset", DOMWindowV8Internal::pageXOffsetAttrGetter, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'pageYOffset' (Type: 'readonly attribute' ExtAttr: '')
{"pageYOffset", DOMWindowV8Internal::pageYOffsetAttrGetter, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'closed' (Type: 'readonly attribute' ExtAttr: 'DoNotCheckSecurity')
{"closed", DOMWindowV8Internal::closedAttrGetter, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::ALL_CAN_READ), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'length' (Type: 'readonly attribute' ExtAttr: 'Replaceable DoNotCheckSecurityOnGetter')
{"length", DOMWindowV8Internal::lengthAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::ALL_CAN_READ), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'name' (Type: 'attribute' ExtAttr: '')
{"name", DOMWindowV8Internal::nameAttrGetter, DOMWindowV8Internal::nameAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'status' (Type: 'attribute' ExtAttr: '')
{"status", DOMWindowV8Internal::statusAttrGetter, DOMWindowV8Internal::statusAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'defaultStatus' (Type: 'attribute' ExtAttr: '')
{"defaultStatus", DOMWindowV8Internal::defaultStatusAttrGetter, DOMWindowV8Internal::defaultStatusAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'defaultstatus' (Type: 'attribute' ExtAttr: '')
{"defaultstatus", DOMWindowV8Internal::defaultstatusAttrGetter, DOMWindowV8Internal::defaultstatusAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'self' (Type: 'readonly attribute' ExtAttr: 'Replaceable DoNotCheckSecurityOnGetter')
{"self", DOMWindowV8Internal::selfAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::ALL_CAN_READ), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'frames' (Type: 'readonly attribute' ExtAttr: 'Replaceable DoNotCheckSecurityOnGetter')
{"frames", DOMWindowV8Internal::framesAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::ALL_CAN_READ), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'opener' (Type: 'readonly attribute' ExtAttr: 'Replaceable DoNotCheckSecurityOnGetter V8CustomSetter')
{"opener", DOMWindowV8Internal::openerAttrGetter, V8DOMWindow::openerAccessorSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::ALL_CAN_READ), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'parent' (Type: 'readonly attribute' ExtAttr: 'Replaceable DoNotCheckSecurityOnGetter')
{"parent", DOMWindowV8Internal::parentAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::ALL_CAN_READ), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'document' (Type: 'readonly attribute' ExtAttr: '')
{"document", DOMWindowV8Internal::documentAttrGetter, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'styleMedia' (Type: 'readonly attribute' ExtAttr: '')
{"styleMedia", DOMWindowV8Internal::styleMediaAttrGetter, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'devicePixelRatio' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"devicePixelRatio", DOMWindowV8Internal::devicePixelRatioAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'console' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"console", DOMWindowV8Internal::consoleAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'performance' (Type: 'readonly attribute' ExtAttr: 'Replaceable')
{"performance", DOMWindowV8Internal::performanceAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'onabort' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onabort", DOMWindowV8Internal::onabortAttrGetter, DOMWindowV8Internal::onabortAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onbeforeunload' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onbeforeunload", DOMWindowV8Internal::onbeforeunloadAttrGetter, DOMWindowV8Internal::onbeforeunloadAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onblur' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onblur", DOMWindowV8Internal::onblurAttrGetter, DOMWindowV8Internal::onblurAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'oncanplay' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"oncanplay", DOMWindowV8Internal::oncanplayAttrGetter, DOMWindowV8Internal::oncanplayAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'oncanplaythrough' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"oncanplaythrough", DOMWindowV8Internal::oncanplaythroughAttrGetter, DOMWindowV8Internal::oncanplaythroughAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onchange' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onchange", DOMWindowV8Internal::onchangeAttrGetter, DOMWindowV8Internal::onchangeAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onclick' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onclick", DOMWindowV8Internal::onclickAttrGetter, DOMWindowV8Internal::onclickAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'oncontextmenu' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"oncontextmenu", DOMWindowV8Internal::oncontextmenuAttrGetter, DOMWindowV8Internal::oncontextmenuAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'ondblclick' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"ondblclick", DOMWindowV8Internal::ondblclickAttrGetter, DOMWindowV8Internal::ondblclickAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'ondrag' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"ondrag", DOMWindowV8Internal::ondragAttrGetter, DOMWindowV8Internal::ondragAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'ondragend' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"ondragend", DOMWindowV8Internal::ondragendAttrGetter, DOMWindowV8Internal::ondragendAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'ondragenter' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"ondragenter", DOMWindowV8Internal::ondragenterAttrGetter, DOMWindowV8Internal::ondragenterAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'ondragleave' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"ondragleave", DOMWindowV8Internal::ondragleaveAttrGetter, DOMWindowV8Internal::ondragleaveAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'ondragover' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"ondragover", DOMWindowV8Internal::ondragoverAttrGetter, DOMWindowV8Internal::ondragoverAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'ondragstart' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"ondragstart", DOMWindowV8Internal::ondragstartAttrGetter, DOMWindowV8Internal::ondragstartAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'ondrop' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"ondrop", DOMWindowV8Internal::ondropAttrGetter, DOMWindowV8Internal::ondropAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'ondurationchange' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"ondurationchange", DOMWindowV8Internal::ondurationchangeAttrGetter, DOMWindowV8Internal::ondurationchangeAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onemptied' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onemptied", DOMWindowV8Internal::onemptiedAttrGetter, DOMWindowV8Internal::onemptiedAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onended' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onended", DOMWindowV8Internal::onendedAttrGetter, DOMWindowV8Internal::onendedAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onerror' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onerror", DOMWindowV8Internal::onerrorAttrGetter, DOMWindowV8Internal::onerrorAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onfocus' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onfocus", DOMWindowV8Internal::onfocusAttrGetter, DOMWindowV8Internal::onfocusAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onhashchange' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onhashchange", DOMWindowV8Internal::onhashchangeAttrGetter, DOMWindowV8Internal::onhashchangeAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'oninput' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"oninput", DOMWindowV8Internal::oninputAttrGetter, DOMWindowV8Internal::oninputAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'oninvalid' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"oninvalid", DOMWindowV8Internal::oninvalidAttrGetter, DOMWindowV8Internal::oninvalidAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onkeydown' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onkeydown", DOMWindowV8Internal::onkeydownAttrGetter, DOMWindowV8Internal::onkeydownAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onkeypress' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onkeypress", DOMWindowV8Internal::onkeypressAttrGetter, DOMWindowV8Internal::onkeypressAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onkeyup' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onkeyup", DOMWindowV8Internal::onkeyupAttrGetter, DOMWindowV8Internal::onkeyupAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onload' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onload", DOMWindowV8Internal::onloadAttrGetter, DOMWindowV8Internal::onloadAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onloadeddata' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onloadeddata", DOMWindowV8Internal::onloadeddataAttrGetter, DOMWindowV8Internal::onloadeddataAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onloadedmetadata' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onloadedmetadata", DOMWindowV8Internal::onloadedmetadataAttrGetter, DOMWindowV8Internal::onloadedmetadataAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onloadstart' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onloadstart", DOMWindowV8Internal::onloadstartAttrGetter, DOMWindowV8Internal::onloadstartAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onmessage' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onmessage", DOMWindowV8Internal::onmessageAttrGetter, DOMWindowV8Internal::onmessageAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onmousedown' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onmousedown", DOMWindowV8Internal::onmousedownAttrGetter, DOMWindowV8Internal::onmousedownAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onmousemove' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onmousemove", DOMWindowV8Internal::onmousemoveAttrGetter, DOMWindowV8Internal::onmousemoveAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onmouseout' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onmouseout", DOMWindowV8Internal::onmouseoutAttrGetter, DOMWindowV8Internal::onmouseoutAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onmouseover' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onmouseover", DOMWindowV8Internal::onmouseoverAttrGetter, DOMWindowV8Internal::onmouseoverAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onmouseup' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onmouseup", DOMWindowV8Internal::onmouseupAttrGetter, DOMWindowV8Internal::onmouseupAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onmousewheel' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onmousewheel", DOMWindowV8Internal::onmousewheelAttrGetter, DOMWindowV8Internal::onmousewheelAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onoffline' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onoffline", DOMWindowV8Internal::onofflineAttrGetter, DOMWindowV8Internal::onofflineAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'ononline' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"ononline", DOMWindowV8Internal::ononlineAttrGetter, DOMWindowV8Internal::ononlineAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onpagehide' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onpagehide", DOMWindowV8Internal::onpagehideAttrGetter, DOMWindowV8Internal::onpagehideAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onpageshow' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onpageshow", DOMWindowV8Internal::onpageshowAttrGetter, DOMWindowV8Internal::onpageshowAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onpause' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onpause", DOMWindowV8Internal::onpauseAttrGetter, DOMWindowV8Internal::onpauseAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onplay' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onplay", DOMWindowV8Internal::onplayAttrGetter, DOMWindowV8Internal::onplayAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onplaying' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onplaying", DOMWindowV8Internal::onplayingAttrGetter, DOMWindowV8Internal::onplayingAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onpopstate' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onpopstate", DOMWindowV8Internal::onpopstateAttrGetter, DOMWindowV8Internal::onpopstateAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onprogress' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onprogress", DOMWindowV8Internal::onprogressAttrGetter, DOMWindowV8Internal::onprogressAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onratechange' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onratechange", DOMWindowV8Internal::onratechangeAttrGetter, DOMWindowV8Internal::onratechangeAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onresize' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onresize", DOMWindowV8Internal::onresizeAttrGetter, DOMWindowV8Internal::onresizeAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onscroll' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onscroll", DOMWindowV8Internal::onscrollAttrGetter, DOMWindowV8Internal::onscrollAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onseeked' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onseeked", DOMWindowV8Internal::onseekedAttrGetter, DOMWindowV8Internal::onseekedAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onseeking' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onseeking", DOMWindowV8Internal::onseekingAttrGetter, DOMWindowV8Internal::onseekingAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onselect' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onselect", DOMWindowV8Internal::onselectAttrGetter, DOMWindowV8Internal::onselectAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onstalled' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onstalled", DOMWindowV8Internal::onstalledAttrGetter, DOMWindowV8Internal::onstalledAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onstorage' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onstorage", DOMWindowV8Internal::onstorageAttrGetter, DOMWindowV8Internal::onstorageAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onsubmit' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onsubmit", DOMWindowV8Internal::onsubmitAttrGetter, DOMWindowV8Internal::onsubmitAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onsuspend' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onsuspend", DOMWindowV8Internal::onsuspendAttrGetter, DOMWindowV8Internal::onsuspendAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'ontimeupdate' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"ontimeupdate", DOMWindowV8Internal::ontimeupdateAttrGetter, DOMWindowV8Internal::ontimeupdateAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onunload' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onunload", DOMWindowV8Internal::onunloadAttrGetter, DOMWindowV8Internal::onunloadAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onvolumechange' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onvolumechange", DOMWindowV8Internal::onvolumechangeAttrGetter, DOMWindowV8Internal::onvolumechangeAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onwaiting' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onwaiting", DOMWindowV8Internal::onwaitingAttrGetter, DOMWindowV8Internal::onwaitingAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onreset' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onreset", DOMWindowV8Internal::onresetAttrGetter, DOMWindowV8Internal::onresetAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onsearch' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onsearch", DOMWindowV8Internal::onsearchAttrGetter, DOMWindowV8Internal::onsearchAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onwebkitanimationend' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onwebkitanimationend", DOMWindowV8Internal::onwebkitanimationendAttrGetter, DOMWindowV8Internal::onwebkitanimationendAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onwebkitanimationiteration' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onwebkitanimationiteration", DOMWindowV8Internal::onwebkitanimationiterationAttrGetter, DOMWindowV8Internal::onwebkitanimationiterationAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onwebkitanimationstart' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onwebkitanimationstart", DOMWindowV8Internal::onwebkitanimationstartAttrGetter, DOMWindowV8Internal::onwebkitanimationstartAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
// Attribute 'onwebkittransitionend' (Type: 'attribute' ExtAttr: 'V8OnProto')
{"onwebkittransitionend", DOMWindowV8Internal::onwebkittransitionendAttrGetter, DOMWindowV8Internal::onwebkittransitionendAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
#if ENABLE(PROXIMITY_EVENTS)
// Attribute 'onwebkitdeviceproximity' (Type: 'attribute' ExtAttr: 'V8OnProto Conditional')
{"onwebkitdeviceproximity", DOMWindowV8Internal::onwebkitdeviceproximityAttrGetter, DOMWindowV8Internal::onwebkitdeviceproximityAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */},
#endif // ENABLE(PROXIMITY_EVENTS)
// Attribute 'StyleSheet' (Type: 'attribute' ExtAttr: '')
{"StyleSheet", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8StyleSheet::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'CSSStyleSheet' (Type: 'attribute' ExtAttr: '')
{"CSSStyleSheet", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CSSStyleSheet::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'CSSValue' (Type: 'attribute' ExtAttr: '')
{"CSSValue", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CSSValue::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'CSSPrimitiveValue' (Type: 'attribute' ExtAttr: '')
{"CSSPrimitiveValue", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CSSPrimitiveValue::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'CSSValueList' (Type: 'attribute' ExtAttr: '')
{"CSSValueList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CSSValueList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'WebKitCSSTransformValue' (Type: 'attribute' ExtAttr: '')
{"WebKitCSSTransformValue", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebKitCSSTransformValue::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'WebKitCSSMixFunctionValue' (Type: 'attribute' ExtAttr: '')
{"WebKitCSSMixFunctionValue", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebKitCSSMixFunctionValue::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'WebKitCSSFilterValue' (Type: 'attribute' ExtAttr: '')
{"WebKitCSSFilterValue", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebKitCSSFilterValue::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'CSSRule' (Type: 'attribute' ExtAttr: '')
{"CSSRule", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CSSRule::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'CSSCharsetRule' (Type: 'attribute' ExtAttr: '')
{"CSSCharsetRule", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CSSCharsetRule::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'CSSFontFaceRule' (Type: 'attribute' ExtAttr: '')
{"CSSFontFaceRule", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CSSFontFaceRule::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'CSSImportRule' (Type: 'attribute' ExtAttr: '')
{"CSSImportRule", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CSSImportRule::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'CSSMediaRule' (Type: 'attribute' ExtAttr: '')
{"CSSMediaRule", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CSSMediaRule::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'CSSPageRule' (Type: 'attribute' ExtAttr: '')
{"CSSPageRule", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CSSPageRule::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'CSSStyleRule' (Type: 'attribute' ExtAttr: '')
{"CSSStyleRule", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CSSStyleRule::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'CSSStyleDeclaration' (Type: 'attribute' ExtAttr: '')
{"CSSStyleDeclaration", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CSSStyleDeclaration::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'MediaList' (Type: 'attribute' ExtAttr: '')
{"MediaList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8MediaList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Counter' (Type: 'attribute' ExtAttr: '')
{"Counter", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Counter::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'CSSRuleList' (Type: 'attribute' ExtAttr: '')
{"CSSRuleList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CSSRuleList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Rect' (Type: 'attribute' ExtAttr: '')
{"Rect", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Rect::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'RGBColor' (Type: 'attribute' ExtAttr: '')
{"RGBColor", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8RGBColor::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'StyleSheetList' (Type: 'attribute' ExtAttr: '')
{"StyleSheetList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8StyleSheetList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'DOMException' (Type: 'attribute' ExtAttr: '')
{"DOMException", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DOMCoreException::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'DOMStringList' (Type: 'attribute' ExtAttr: '')
{"DOMStringList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DOMStringList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'DOMImplementation' (Type: 'attribute' ExtAttr: '')
{"DOMImplementation", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DOMImplementation::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'DOMSettableTokenList' (Type: 'attribute' ExtAttr: '')
{"DOMSettableTokenList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DOMSettableTokenList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'DOMTokenList' (Type: 'attribute' ExtAttr: '')
{"DOMTokenList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DOMTokenList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'DocumentFragment' (Type: 'attribute' ExtAttr: '')
{"DocumentFragment", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DocumentFragment::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Document' (Type: 'attribute' ExtAttr: '')
{"Document", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Document::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Node' (Type: 'attribute' ExtAttr: '')
{"Node", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Node::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'NodeList' (Type: 'attribute' ExtAttr: '')
{"NodeList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8NodeList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#if ENABLE(MICRODATA)
// Attribute 'PropertyNodeList' (Type: 'attribute' ExtAttr: 'Conditional')
{"PropertyNodeList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8PropertyNodeList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(MICRODATA)
// Attribute 'NamedNodeMap' (Type: 'attribute' ExtAttr: '')
{"NamedNodeMap", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8NamedNodeMap::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'CharacterData' (Type: 'attribute' ExtAttr: '')
{"CharacterData", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CharacterData::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Attr' (Type: 'attribute' ExtAttr: '')
{"Attr", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Attr::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Element' (Type: 'attribute' ExtAttr: '')
{"Element", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Element::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Text' (Type: 'attribute' ExtAttr: '')
{"Text", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Text::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Comment' (Type: 'attribute' ExtAttr: '')
{"Comment", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Comment::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'CDATASection' (Type: 'attribute' ExtAttr: '')
{"CDATASection", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CDATASection::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'DocumentType' (Type: 'attribute' ExtAttr: '')
{"DocumentType", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DocumentType::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Notation' (Type: 'attribute' ExtAttr: '')
{"Notation", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Notation::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Entity' (Type: 'attribute' ExtAttr: '')
{"Entity", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Entity::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'EntityReference' (Type: 'attribute' ExtAttr: '')
{"EntityReference", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8EntityReference::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'ProcessingInstruction' (Type: 'attribute' ExtAttr: '')
{"ProcessingInstruction", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8ProcessingInstruction::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Selection' (Type: 'attribute' ExtAttr: '')
{"Selection", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DOMSelection::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Window' (Type: 'attribute' ExtAttr: '')
{"Window", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DOMWindow::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLDocument' (Type: 'attribute' ExtAttr: '')
{"HTMLDocument", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLDocument::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLElement' (Type: 'attribute' ExtAttr: '')
{"HTMLElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLAnchorElement' (Type: 'attribute' ExtAttr: '')
{"HTMLAnchorElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLAnchorElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLAppletElement' (Type: 'attribute' ExtAttr: '')
{"HTMLAppletElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLAppletElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLAreaElement' (Type: 'attribute' ExtAttr: '')
{"HTMLAreaElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLAreaElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLBRElement' (Type: 'attribute' ExtAttr: '')
{"HTMLBRElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLBRElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLBaseElement' (Type: 'attribute' ExtAttr: '')
{"HTMLBaseElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLBaseElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLBaseFontElement' (Type: 'attribute' ExtAttr: '')
{"HTMLBaseFontElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLBaseFontElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLBodyElement' (Type: 'attribute' ExtAttr: '')
{"HTMLBodyElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLBodyElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLButtonElement' (Type: 'attribute' ExtAttr: '')
{"HTMLButtonElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLButtonElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLCanvasElement' (Type: 'attribute' ExtAttr: '')
{"HTMLCanvasElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLCanvasElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLDListElement' (Type: 'attribute' ExtAttr: '')
{"HTMLDListElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLDListElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#if ENABLE(DATALIST_ELEMENT)
// Attribute 'HTMLDataListElement' (Type: 'attribute' ExtAttr: 'Conditional')
{"HTMLDataListElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLDataListElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(DATALIST_ELEMENT)
// Attribute 'HTMLDirectoryElement' (Type: 'attribute' ExtAttr: '')
{"HTMLDirectoryElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLDirectoryElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLDivElement' (Type: 'attribute' ExtAttr: '')
{"HTMLDivElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLDivElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLEmbedElement' (Type: 'attribute' ExtAttr: '')
{"HTMLEmbedElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLEmbedElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLFieldSetElement' (Type: 'attribute' ExtAttr: '')
{"HTMLFieldSetElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLFieldSetElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLFontElement' (Type: 'attribute' ExtAttr: '')
{"HTMLFontElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLFontElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLFormElement' (Type: 'attribute' ExtAttr: '')
{"HTMLFormElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLFormElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLFrameElement' (Type: 'attribute' ExtAttr: '')
{"HTMLFrameElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLFrameElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLFrameSetElement' (Type: 'attribute' ExtAttr: '')
{"HTMLFrameSetElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLFrameSetElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLHRElement' (Type: 'attribute' ExtAttr: '')
{"HTMLHRElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLHRElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLHeadElement' (Type: 'attribute' ExtAttr: '')
{"HTMLHeadElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLHeadElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLHeadingElement' (Type: 'attribute' ExtAttr: '')
{"HTMLHeadingElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLHeadingElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLHtmlElement' (Type: 'attribute' ExtAttr: '')
{"HTMLHtmlElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLHtmlElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLIFrameElement' (Type: 'attribute' ExtAttr: '')
{"HTMLIFrameElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLIFrameElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLImageElement' (Type: 'attribute' ExtAttr: '')
{"HTMLImageElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLImageElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLInputElement' (Type: 'attribute' ExtAttr: '')
{"HTMLInputElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLInputElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLKeygenElement' (Type: 'attribute' ExtAttr: '')
{"HTMLKeygenElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLKeygenElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLLIElement' (Type: 'attribute' ExtAttr: '')
{"HTMLLIElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLLIElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLLabelElement' (Type: 'attribute' ExtAttr: '')
{"HTMLLabelElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLLabelElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLLegendElement' (Type: 'attribute' ExtAttr: '')
{"HTMLLegendElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLLegendElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLLinkElement' (Type: 'attribute' ExtAttr: '')
{"HTMLLinkElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLLinkElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLMapElement' (Type: 'attribute' ExtAttr: '')
{"HTMLMapElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLMapElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLMarqueeElement' (Type: 'attribute' ExtAttr: '')
{"HTMLMarqueeElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLMarqueeElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLMenuElement' (Type: 'attribute' ExtAttr: '')
{"HTMLMenuElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLMenuElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLMetaElement' (Type: 'attribute' ExtAttr: '')
{"HTMLMetaElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLMetaElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLMeterElement' (Type: 'attribute' ExtAttr: '')
{"HTMLMeterElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLMeterElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLModElement' (Type: 'attribute' ExtAttr: '')
{"HTMLModElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLModElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLOListElement' (Type: 'attribute' ExtAttr: '')
{"HTMLOListElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLOListElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLObjectElement' (Type: 'attribute' ExtAttr: '')
{"HTMLObjectElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLObjectElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLOptGroupElement' (Type: 'attribute' ExtAttr: '')
{"HTMLOptGroupElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLOptGroupElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLOptionElement' (Type: 'attribute' ExtAttr: '')
{"HTMLOptionElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLOptionElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLOutputElement' (Type: 'attribute' ExtAttr: '')
{"HTMLOutputElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLOutputElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLParagraphElement' (Type: 'attribute' ExtAttr: '')
{"HTMLParagraphElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLParagraphElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLParamElement' (Type: 'attribute' ExtAttr: '')
{"HTMLParamElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLParamElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLPreElement' (Type: 'attribute' ExtAttr: '')
{"HTMLPreElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLPreElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLProgressElement' (Type: 'attribute' ExtAttr: '')
{"HTMLProgressElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLProgressElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLQuoteElement' (Type: 'attribute' ExtAttr: '')
{"HTMLQuoteElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLQuoteElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLScriptElement' (Type: 'attribute' ExtAttr: '')
{"HTMLScriptElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLScriptElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLSelectElement' (Type: 'attribute' ExtAttr: '')
{"HTMLSelectElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLSelectElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLSpanElement' (Type: 'attribute' ExtAttr: '')
{"HTMLSpanElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLSpanElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLStyleElement' (Type: 'attribute' ExtAttr: '')
{"HTMLStyleElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLStyleElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLTableCaptionElement' (Type: 'attribute' ExtAttr: '')
{"HTMLTableCaptionElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLTableCaptionElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLTableCellElement' (Type: 'attribute' ExtAttr: '')
{"HTMLTableCellElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLTableCellElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLTableColElement' (Type: 'attribute' ExtAttr: '')
{"HTMLTableColElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLTableColElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLTableElement' (Type: 'attribute' ExtAttr: '')
{"HTMLTableElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLTableElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLTableRowElement' (Type: 'attribute' ExtAttr: '')
{"HTMLTableRowElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLTableRowElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLTableSectionElement' (Type: 'attribute' ExtAttr: '')
{"HTMLTableSectionElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLTableSectionElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#if ENABLE(TEMPLATE_ELEMENT)
// Attribute 'HTMLTemplateElement' (Type: 'attribute' ExtAttr: 'Conditional')
{"HTMLTemplateElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLTemplateElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(TEMPLATE_ELEMENT)
// Attribute 'HTMLTextAreaElement' (Type: 'attribute' ExtAttr: '')
{"HTMLTextAreaElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLTextAreaElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLTitleElement' (Type: 'attribute' ExtAttr: '')
{"HTMLTitleElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLTitleElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLUListElement' (Type: 'attribute' ExtAttr: '')
{"HTMLUListElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLUListElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLCollection' (Type: 'attribute' ExtAttr: '')
{"HTMLCollection", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLCollection::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLAllCollection' (Type: 'attribute' ExtAttr: '')
{"HTMLAllCollection", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLAllCollection::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLFormControlsCollection' (Type: 'attribute' ExtAttr: '')
{"HTMLFormControlsCollection", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLFormControlsCollection::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HTMLOptionsCollection' (Type: 'attribute' ExtAttr: '')
{"HTMLOptionsCollection", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLOptionsCollection::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#if ENABLE(MICRODATA)
// Attribute 'HTMLPropertiesCollection' (Type: 'attribute' ExtAttr: 'Conditional')
{"HTMLPropertiesCollection", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLPropertiesCollection::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(MICRODATA)
// Attribute 'HTMLUnknownElement' (Type: 'attribute' ExtAttr: '')
{"HTMLUnknownElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLUnknownElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Image' (Type: 'attribute' ExtAttr: 'CustomConstructor JSCustomGetter')
{"Image", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLImageElementConstructor::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Option' (Type: 'attribute' ExtAttr: 'JSCustomGetter')
{"Option", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLOptionElementConstructor::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#if ENABLE(WEB_INTENTS_TAG)
// Attribute 'HTMLIntentElement' (Type: 'attribute' ExtAttr: 'Conditional')
{"HTMLIntentElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLIntentElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(WEB_INTENTS_TAG)
// Attribute 'CanvasPattern' (Type: 'attribute' ExtAttr: '')
{"CanvasPattern", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CanvasPattern::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'CanvasGradient' (Type: 'attribute' ExtAttr: '')
{"CanvasGradient", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CanvasGradient::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'CanvasRenderingContext2D' (Type: 'attribute' ExtAttr: '')
{"CanvasRenderingContext2D", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CanvasRenderingContext2D::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'ImageData' (Type: 'attribute' ExtAttr: '')
{"ImageData", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8ImageData::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'TextMetrics' (Type: 'attribute' ExtAttr: '')
{"TextMetrics", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8TextMetrics::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#if ENABLE(WEBGL)
// Attribute 'WebGLActiveInfo' (Type: 'attribute' ExtAttr: 'Conditional')
{"WebGLActiveInfo", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebGLActiveInfo::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(WEBGL)
#if ENABLE(WEBGL)
// Attribute 'WebGLBuffer' (Type: 'attribute' ExtAttr: 'Conditional')
{"WebGLBuffer", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebGLBuffer::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(WEBGL)
#if ENABLE(WEBGL)
// Attribute 'WebGLFramebuffer' (Type: 'attribute' ExtAttr: 'Conditional')
{"WebGLFramebuffer", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebGLFramebuffer::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(WEBGL)
#if ENABLE(WEBGL)
// Attribute 'WebGLProgram' (Type: 'attribute' ExtAttr: 'Conditional')
{"WebGLProgram", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebGLProgram::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(WEBGL)
#if ENABLE(WEBGL)
// Attribute 'WebGLRenderbuffer' (Type: 'attribute' ExtAttr: 'Conditional')
{"WebGLRenderbuffer", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebGLRenderbuffer::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(WEBGL)
#if ENABLE(WEBGL)
// Attribute 'WebGLRenderingContext' (Type: 'attribute' ExtAttr: 'Conditional')
{"WebGLRenderingContext", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebGLRenderingContext::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(WEBGL)
#if ENABLE(WEBGL)
// Attribute 'WebGLShader' (Type: 'attribute' ExtAttr: 'Conditional')
{"WebGLShader", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebGLShader::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(WEBGL)
#if ENABLE(WEBGL)
// Attribute 'WebGLShaderPrecisionFormat' (Type: 'attribute' ExtAttr: 'Conditional')
{"WebGLShaderPrecisionFormat", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebGLShaderPrecisionFormat::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(WEBGL)
#if ENABLE(WEBGL)
// Attribute 'WebGLTexture' (Type: 'attribute' ExtAttr: 'Conditional')
{"WebGLTexture", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebGLTexture::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(WEBGL)
#if ENABLE(WEBGL)
// Attribute 'WebGLUniformLocation' (Type: 'attribute' ExtAttr: 'Conditional')
{"WebGLUniformLocation", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebGLUniformLocation::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(WEBGL)
// Attribute 'DOMStringMap' (Type: 'attribute' ExtAttr: '')
{"DOMStringMap", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DOMStringMap::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'ArrayBuffer' (Type: 'attribute' ExtAttr: '')
{"ArrayBuffer", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8ArrayBuffer::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'ArrayBufferView' (Type: 'attribute' ExtAttr: '')
{"ArrayBufferView", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8ArrayBufferView::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Int8Array' (Type: 'attribute' ExtAttr: '')
{"Int8Array", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Int8Array::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Uint8Array' (Type: 'attribute' ExtAttr: '')
{"Uint8Array", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Uint8Array::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Uint8ClampedArray' (Type: 'attribute' ExtAttr: '')
{"Uint8ClampedArray", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Uint8ClampedArray::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Int16Array' (Type: 'attribute' ExtAttr: '')
{"Int16Array", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Int16Array::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Uint16Array' (Type: 'attribute' ExtAttr: '')
{"Uint16Array", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Uint16Array::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Int32Array' (Type: 'attribute' ExtAttr: '')
{"Int32Array", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Int32Array::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Uint32Array' (Type: 'attribute' ExtAttr: '')
{"Uint32Array", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Uint32Array::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Float32Array' (Type: 'attribute' ExtAttr: '')
{"Float32Array", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Float32Array::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Float64Array' (Type: 'attribute' ExtAttr: '')
{"Float64Array", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Float64Array::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'DataView' (Type: 'attribute' ExtAttr: '')
{"DataView", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DataView::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Event' (Type: 'attribute' ExtAttr: '')
{"Event", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Event::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'BeforeLoadEvent' (Type: 'attribute' ExtAttr: '')
{"BeforeLoadEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8BeforeLoadEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'CompositionEvent' (Type: 'attribute' ExtAttr: '')
{"CompositionEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CompositionEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'CustomEvent' (Type: 'attribute' ExtAttr: '')
{"CustomEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CustomEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'ErrorEvent' (Type: 'attribute' ExtAttr: '')
{"ErrorEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8ErrorEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'HashChangeEvent' (Type: 'attribute' ExtAttr: '')
{"HashChangeEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HashChangeEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'KeyboardEvent' (Type: 'attribute' ExtAttr: '')
{"KeyboardEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8KeyboardEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'MessageEvent' (Type: 'attribute' ExtAttr: '')
{"MessageEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8MessageEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'MouseEvent' (Type: 'attribute' ExtAttr: '')
{"MouseEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8MouseEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'MutationEvent' (Type: 'attribute' ExtAttr: '')
{"MutationEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8MutationEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'OverflowEvent' (Type: 'attribute' ExtAttr: '')
{"OverflowEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8OverflowEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'PopStateEvent' (Type: 'attribute' ExtAttr: '')
{"PopStateEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8PopStateEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'PageTransitionEvent' (Type: 'attribute' ExtAttr: '')
{"PageTransitionEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8PageTransitionEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'ProgressEvent' (Type: 'attribute' ExtAttr: '')
{"ProgressEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8ProgressEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'TextEvent' (Type: 'attribute' ExtAttr: '')
{"TextEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8TextEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'UIEvent' (Type: 'attribute' ExtAttr: '')
{"UIEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8UIEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'WebKitAnimationEvent' (Type: 'attribute' ExtAttr: '')
{"WebKitAnimationEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebKitAnimationEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'WebKitTransitionEvent' (Type: 'attribute' ExtAttr: '')
{"WebKitTransitionEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebKitTransitionEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'WheelEvent' (Type: 'attribute' ExtAttr: '')
{"WheelEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WheelEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'XMLHttpRequestProgressEvent' (Type: 'attribute' ExtAttr: '')
{"XMLHttpRequestProgressEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8XMLHttpRequestProgressEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'StorageEvent' (Type: 'attribute' ExtAttr: '')
{"StorageEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8StorageEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#if ENABLE(INPUT_SPEECH)
// Attribute 'SpeechInputEvent' (Type: 'attribute' ExtAttr: 'Conditional')
{"SpeechInputEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SpeechInputEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INPUT_SPEECH)
#if ENABLE(WEBGL)
// Attribute 'WebGLContextEvent' (Type: 'attribute' ExtAttr: 'Conditional')
{"WebGLContextEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebGLContextEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(WEBGL)
#if ENABLE(PROXIMITY_EVENTS)
// Attribute 'DeviceProximityEvent' (Type: 'attribute' ExtAttr: 'Conditional')
{"DeviceProximityEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DeviceProximityEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(PROXIMITY_EVENTS)
// Attribute 'EventException' (Type: 'attribute' ExtAttr: '')
{"EventException", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8EventException::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'WebKitCSSKeyframeRule' (Type: 'attribute' ExtAttr: '')
{"WebKitCSSKeyframeRule", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebKitCSSKeyframeRule::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'WebKitCSSKeyframesRule' (Type: 'attribute' ExtAttr: '')
{"WebKitCSSKeyframesRule", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebKitCSSKeyframesRule::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'WebKitCSSMatrix' (Type: 'attribute' ExtAttr: '')
{"WebKitCSSMatrix", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebKitCSSMatrix::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'WebKitPoint' (Type: 'attribute' ExtAttr: '')
{"WebKitPoint", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebKitPoint::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Clipboard' (Type: 'attribute' ExtAttr: '')
{"Clipboard", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Clipboard::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#if ENABLE(WORKERS)
// Attribute 'Worker' (Type: 'attribute' ExtAttr: 'Conditional')
{"Worker", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Worker::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(WORKERS)
// Attribute 'File' (Type: 'attribute' ExtAttr: '')
{"File", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8File::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'FileList' (Type: 'attribute' ExtAttr: '')
{"FileList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8FileList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Blob' (Type: 'attribute' ExtAttr: '')
{"Blob", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Blob::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'NodeFilter' (Type: 'attribute' ExtAttr: '')
{"NodeFilter", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8NodeFilter::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Range' (Type: 'attribute' ExtAttr: '')
{"Range", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Range::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'RangeException' (Type: 'attribute' ExtAttr: '')
{"RangeException", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8RangeException::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'EventSource' (Type: 'attribute' ExtAttr: '')
{"EventSource", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8EventSource::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'XMLDocument' (Type: 'attribute' ExtAttr: '')
{"XMLDocument", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Document::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'DOMParser' (Type: 'attribute' ExtAttr: '')
{"DOMParser", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DOMParser::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'XMLSerializer' (Type: 'attribute' ExtAttr: '')
{"XMLSerializer", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8XMLSerializer::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'XMLHttpRequest' (Type: 'attribute' ExtAttr: '')
{"XMLHttpRequest", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8XMLHttpRequest::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'XMLHttpRequestUpload' (Type: 'attribute' ExtAttr: '')
{"XMLHttpRequestUpload", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8XMLHttpRequestUpload::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'XMLHttpRequestException' (Type: 'attribute' ExtAttr: '')
{"XMLHttpRequestException", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8XMLHttpRequestException::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#if ENABLE(XSLT)
// Attribute 'XSLTProcessor' (Type: 'attribute' ExtAttr: 'Conditional')
{"XSLTProcessor", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8XSLTProcessor::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(XSLT)
// Attribute 'MessagePort' (Type: 'attribute' ExtAttr: '')
{"MessagePort", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8MessagePort::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'MessageChannel' (Type: 'attribute' ExtAttr: '')
{"MessageChannel", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8MessageChannel::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Plugin' (Type: 'attribute' ExtAttr: '')
{"Plugin", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DOMPlugin::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'PluginArray' (Type: 'attribute' ExtAttr: '')
{"PluginArray", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DOMPluginArray::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'MimeType' (Type: 'attribute' ExtAttr: '')
{"MimeType", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DOMMimeType::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'MimeTypeArray' (Type: 'attribute' ExtAttr: '')
{"MimeTypeArray", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DOMMimeTypeArray::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'ClientRect' (Type: 'attribute' ExtAttr: '')
{"ClientRect", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8ClientRect::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'ClientRectList' (Type: 'attribute' ExtAttr: '')
{"ClientRectList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8ClientRectList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'Storage' (Type: 'attribute' ExtAttr: '')
{"Storage", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Storage::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'XPathEvaluator' (Type: 'attribute' ExtAttr: '')
{"XPathEvaluator", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8XPathEvaluator::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'XPathResult' (Type: 'attribute' ExtAttr: '')
{"XPathResult", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8XPathResult::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'XPathException' (Type: 'attribute' ExtAttr: '')
{"XPathException", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8XPathException::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#if ENABLE(SVG)
// Attribute 'SVGZoomEvent' (Type: 'attribute' ExtAttr: 'Conditional')
{"SVGZoomEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGZoomEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(SVG)
// Attribute 'SVGAElement' (Type: 'attribute' ExtAttr: '')
{"SVGAElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGAngle' (Type: 'attribute' ExtAttr: '')
{"SVGAngle", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAngle::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGAnimatedAngle' (Type: 'attribute' ExtAttr: '')
{"SVGAnimatedAngle", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAnimatedAngle::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGAnimatedBoolean' (Type: 'attribute' ExtAttr: '')
{"SVGAnimatedBoolean", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAnimatedBoolean::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGAnimatedEnumeration' (Type: 'attribute' ExtAttr: '')
{"SVGAnimatedEnumeration", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAnimatedEnumeration::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGAnimatedInteger' (Type: 'attribute' ExtAttr: '')
{"SVGAnimatedInteger", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAnimatedInteger::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGAnimatedLength' (Type: 'attribute' ExtAttr: '')
{"SVGAnimatedLength", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAnimatedLength::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGAnimatedLengthList' (Type: 'attribute' ExtAttr: '')
{"SVGAnimatedLengthList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAnimatedLengthList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGAnimatedNumber' (Type: 'attribute' ExtAttr: '')
{"SVGAnimatedNumber", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAnimatedNumber::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGAnimatedNumberList' (Type: 'attribute' ExtAttr: '')
{"SVGAnimatedNumberList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAnimatedNumberList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGAnimatedPreserveAspectRatio' (Type: 'attribute' ExtAttr: '')
{"SVGAnimatedPreserveAspectRatio", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAnimatedPreserveAspectRatio::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGAnimatedRect' (Type: 'attribute' ExtAttr: '')
{"SVGAnimatedRect", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAnimatedRect::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGAnimatedString' (Type: 'attribute' ExtAttr: '')
{"SVGAnimatedString", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAnimatedString::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGAnimatedTransformList' (Type: 'attribute' ExtAttr: '')
{"SVGAnimatedTransformList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAnimatedTransformList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGCircleElement' (Type: 'attribute' ExtAttr: '')
{"SVGCircleElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGCircleElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGClipPathElement' (Type: 'attribute' ExtAttr: '')
{"SVGClipPathElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGClipPathElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGColor' (Type: 'attribute' ExtAttr: '')
{"SVGColor", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGColor::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGCursorElement' (Type: 'attribute' ExtAttr: '')
{"SVGCursorElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGCursorElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGDefsElement' (Type: 'attribute' ExtAttr: '')
{"SVGDefsElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGDefsElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGDescElement' (Type: 'attribute' ExtAttr: '')
{"SVGDescElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGDescElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGDocument' (Type: 'attribute' ExtAttr: '')
{"SVGDocument", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGDocument::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGElement' (Type: 'attribute' ExtAttr: '')
{"SVGElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGElementInstance' (Type: 'attribute' ExtAttr: '')
{"SVGElementInstance", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGElementInstance::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGElementInstanceList' (Type: 'attribute' ExtAttr: '')
{"SVGElementInstanceList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGElementInstanceList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGEllipseElement' (Type: 'attribute' ExtAttr: '')
{"SVGEllipseElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGEllipseElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGForeignObjectElement' (Type: 'attribute' ExtAttr: '')
{"SVGForeignObjectElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGForeignObjectElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGException' (Type: 'attribute' ExtAttr: '')
{"SVGException", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGException::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGGElement' (Type: 'attribute' ExtAttr: '')
{"SVGGElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGGElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGGradientElement' (Type: 'attribute' ExtAttr: '')
{"SVGGradientElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGGradientElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGImageElement' (Type: 'attribute' ExtAttr: '')
{"SVGImageElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGImageElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGLength' (Type: 'attribute' ExtAttr: '')
{"SVGLength", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGLength::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGLengthList' (Type: 'attribute' ExtAttr: '')
{"SVGLengthList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGLengthList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGLinearGradientElement' (Type: 'attribute' ExtAttr: '')
{"SVGLinearGradientElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGLinearGradientElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGLineElement' (Type: 'attribute' ExtAttr: '')
{"SVGLineElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGLineElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGMarkerElement' (Type: 'attribute' ExtAttr: '')
{"SVGMarkerElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGMarkerElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGMaskElement' (Type: 'attribute' ExtAttr: '')
{"SVGMaskElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGMaskElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGMatrix' (Type: 'attribute' ExtAttr: '')
{"SVGMatrix", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGMatrix::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGMetadataElement' (Type: 'attribute' ExtAttr: '')
{"SVGMetadataElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGMetadataElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGNumber' (Type: 'attribute' ExtAttr: '')
{"SVGNumber", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGNumber::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGNumberList' (Type: 'attribute' ExtAttr: '')
{"SVGNumberList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGNumberList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPaint' (Type: 'attribute' ExtAttr: '')
{"SVGPaint", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPaint::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathElement' (Type: 'attribute' ExtAttr: '')
{"SVGPathElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSeg' (Type: 'attribute' ExtAttr: '')
{"SVGPathSeg", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSeg::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSegArcAbs' (Type: 'attribute' ExtAttr: '')
{"SVGPathSegArcAbs", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSegArcAbs::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSegArcRel' (Type: 'attribute' ExtAttr: '')
{"SVGPathSegArcRel", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSegArcRel::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSegClosePath' (Type: 'attribute' ExtAttr: '')
{"SVGPathSegClosePath", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSegClosePath::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSegCurvetoCubicAbs' (Type: 'attribute' ExtAttr: '')
{"SVGPathSegCurvetoCubicAbs", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSegCurvetoCubicAbs::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSegCurvetoCubicRel' (Type: 'attribute' ExtAttr: '')
{"SVGPathSegCurvetoCubicRel", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSegCurvetoCubicRel::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSegCurvetoCubicSmoothAbs' (Type: 'attribute' ExtAttr: '')
{"SVGPathSegCurvetoCubicSmoothAbs", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSegCurvetoCubicSmoothAbs::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSegCurvetoCubicSmoothRel' (Type: 'attribute' ExtAttr: '')
{"SVGPathSegCurvetoCubicSmoothRel", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSegCurvetoCubicSmoothRel::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSegCurvetoQuadraticAbs' (Type: 'attribute' ExtAttr: '')
{"SVGPathSegCurvetoQuadraticAbs", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSegCurvetoQuadraticAbs::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSegCurvetoQuadraticRel' (Type: 'attribute' ExtAttr: '')
{"SVGPathSegCurvetoQuadraticRel", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSegCurvetoQuadraticRel::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSegCurvetoQuadraticSmoothAbs' (Type: 'attribute' ExtAttr: '')
{"SVGPathSegCurvetoQuadraticSmoothAbs", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSegCurvetoQuadraticSmoothAbs::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSegCurvetoQuadraticSmoothRel' (Type: 'attribute' ExtAttr: '')
{"SVGPathSegCurvetoQuadraticSmoothRel", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSegCurvetoQuadraticSmoothRel::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSegLinetoAbs' (Type: 'attribute' ExtAttr: '')
{"SVGPathSegLinetoAbs", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSegLinetoAbs::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSegLinetoHorizontalAbs' (Type: 'attribute' ExtAttr: '')
{"SVGPathSegLinetoHorizontalAbs", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSegLinetoHorizontalAbs::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSegLinetoHorizontalRel' (Type: 'attribute' ExtAttr: '')
{"SVGPathSegLinetoHorizontalRel", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSegLinetoHorizontalRel::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSegLinetoRel' (Type: 'attribute' ExtAttr: '')
{"SVGPathSegLinetoRel", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSegLinetoRel::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSegLinetoVerticalAbs' (Type: 'attribute' ExtAttr: '')
{"SVGPathSegLinetoVerticalAbs", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSegLinetoVerticalAbs::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSegLinetoVerticalRel' (Type: 'attribute' ExtAttr: '')
{"SVGPathSegLinetoVerticalRel", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSegLinetoVerticalRel::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSegList' (Type: 'attribute' ExtAttr: '')
{"SVGPathSegList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSegList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSegMovetoAbs' (Type: 'attribute' ExtAttr: '')
{"SVGPathSegMovetoAbs", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSegMovetoAbs::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPathSegMovetoRel' (Type: 'attribute' ExtAttr: '')
{"SVGPathSegMovetoRel", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPathSegMovetoRel::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPatternElement' (Type: 'attribute' ExtAttr: '')
{"SVGPatternElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPatternElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPoint' (Type: 'attribute' ExtAttr: '')
{"SVGPoint", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPoint::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPointList' (Type: 'attribute' ExtAttr: '')
{"SVGPointList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPointList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPolygonElement' (Type: 'attribute' ExtAttr: '')
{"SVGPolygonElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPolygonElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPolylineElement' (Type: 'attribute' ExtAttr: '')
{"SVGPolylineElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPolylineElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGPreserveAspectRatio' (Type: 'attribute' ExtAttr: '')
{"SVGPreserveAspectRatio", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGPreserveAspectRatio::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGRadialGradientElement' (Type: 'attribute' ExtAttr: '')
{"SVGRadialGradientElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGRadialGradientElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGRect' (Type: 'attribute' ExtAttr: '')
{"SVGRect", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGRect::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGRectElement' (Type: 'attribute' ExtAttr: '')
{"SVGRectElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGRectElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGRenderingIntent' (Type: 'attribute' ExtAttr: '')
{"SVGRenderingIntent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGRenderingIntent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGScriptElement' (Type: 'attribute' ExtAttr: '')
{"SVGScriptElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGScriptElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGStopElement' (Type: 'attribute' ExtAttr: '')
{"SVGStopElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGStopElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGStringList' (Type: 'attribute' ExtAttr: '')
{"SVGStringList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGStringList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGStyleElement' (Type: 'attribute' ExtAttr: '')
{"SVGStyleElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGStyleElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGSVGElement' (Type: 'attribute' ExtAttr: '')
{"SVGSVGElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGSVGElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGSwitchElement' (Type: 'attribute' ExtAttr: '')
{"SVGSwitchElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGSwitchElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGSymbolElement' (Type: 'attribute' ExtAttr: '')
{"SVGSymbolElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGSymbolElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGTextContentElement' (Type: 'attribute' ExtAttr: '')
{"SVGTextContentElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGTextContentElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGTextElement' (Type: 'attribute' ExtAttr: '')
{"SVGTextElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGTextElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGTextPathElement' (Type: 'attribute' ExtAttr: '')
{"SVGTextPathElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGTextPathElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGTextPositioningElement' (Type: 'attribute' ExtAttr: '')
{"SVGTextPositioningElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGTextPositioningElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGTitleElement' (Type: 'attribute' ExtAttr: '')
{"SVGTitleElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGTitleElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGTransform' (Type: 'attribute' ExtAttr: '')
{"SVGTransform", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGTransform::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGTransformList' (Type: 'attribute' ExtAttr: '')
{"SVGTransformList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGTransformList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGTRefElement' (Type: 'attribute' ExtAttr: '')
{"SVGTRefElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGTRefElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGTSpanElement' (Type: 'attribute' ExtAttr: '')
{"SVGTSpanElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGTSpanElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGUnitTypes' (Type: 'attribute' ExtAttr: '')
{"SVGUnitTypes", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGUnitTypes::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGUseElement' (Type: 'attribute' ExtAttr: '')
{"SVGUseElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGUseElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGViewElement' (Type: 'attribute' ExtAttr: '')
{"SVGViewElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGViewElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGViewSpec' (Type: 'attribute' ExtAttr: '')
{"SVGViewSpec", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGViewSpec::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGZoomAndPan' (Type: 'attribute' ExtAttr: '')
{"SVGZoomAndPan", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGZoomAndPan::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGAnimateColorElement' (Type: 'attribute' ExtAttr: '')
{"SVGAnimateColorElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAnimateColorElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGAnimateElement' (Type: 'attribute' ExtAttr: '')
{"SVGAnimateElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAnimateElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGAnimateMotionElement' (Type: 'attribute' ExtAttr: '')
{"SVGAnimateMotionElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAnimateMotionElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGAnimateTransformElement' (Type: 'attribute' ExtAttr: '')
{"SVGAnimateTransformElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAnimateTransformElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGMPathElement' (Type: 'attribute' ExtAttr: '')
{"SVGMPathElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGMPathElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGSetElement' (Type: 'attribute' ExtAttr: '')
{"SVGSetElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGSetElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGAltGlyphDefElement' (Type: 'attribute' ExtAttr: '')
{"SVGAltGlyphDefElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAltGlyphDefElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGAltGlyphElement' (Type: 'attribute' ExtAttr: '')
{"SVGAltGlyphElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAltGlyphElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGAltGlyphItemElement' (Type: 'attribute' ExtAttr: '')
{"SVGAltGlyphItemElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGAltGlyphItemElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFontElement' (Type: 'attribute' ExtAttr: '')
{"SVGFontElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFontElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFontFaceElement' (Type: 'attribute' ExtAttr: '')
{"SVGFontFaceElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFontFaceElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFontFaceFormatElement' (Type: 'attribute' ExtAttr: '')
{"SVGFontFaceFormatElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFontFaceFormatElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFontFaceNameElement' (Type: 'attribute' ExtAttr: '')
{"SVGFontFaceNameElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFontFaceNameElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFontFaceSrcElement' (Type: 'attribute' ExtAttr: '')
{"SVGFontFaceSrcElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFontFaceSrcElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFontFaceUriElement' (Type: 'attribute' ExtAttr: '')
{"SVGFontFaceUriElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFontFaceUriElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGGlyphElement' (Type: 'attribute' ExtAttr: '')
{"SVGGlyphElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGGlyphElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGGlyphRefElement' (Type: 'attribute' ExtAttr: '')
{"SVGGlyphRefElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGGlyphRefElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGHKernElement' (Type: 'attribute' ExtAttr: '')
{"SVGHKernElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGHKernElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGMissingGlyphElement' (Type: 'attribute' ExtAttr: '')
{"SVGMissingGlyphElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGMissingGlyphElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGVKernElement' (Type: 'attribute' ExtAttr: '')
{"SVGVKernElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGVKernElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGComponentTransferFunctionElement' (Type: 'attribute' ExtAttr: '')
{"SVGComponentTransferFunctionElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGComponentTransferFunctionElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFEBlendElement' (Type: 'attribute' ExtAttr: '')
{"SVGFEBlendElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFEBlendElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFEColorMatrixElement' (Type: 'attribute' ExtAttr: '')
{"SVGFEColorMatrixElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFEColorMatrixElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFEComponentTransferElement' (Type: 'attribute' ExtAttr: '')
{"SVGFEComponentTransferElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFEComponentTransferElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFECompositeElement' (Type: 'attribute' ExtAttr: '')
{"SVGFECompositeElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFECompositeElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFEConvolveMatrixElement' (Type: 'attribute' ExtAttr: '')
{"SVGFEConvolveMatrixElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFEConvolveMatrixElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFEDiffuseLightingElement' (Type: 'attribute' ExtAttr: '')
{"SVGFEDiffuseLightingElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFEDiffuseLightingElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFEDisplacementMapElement' (Type: 'attribute' ExtAttr: '')
{"SVGFEDisplacementMapElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFEDisplacementMapElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFEDistantLightElement' (Type: 'attribute' ExtAttr: '')
{"SVGFEDistantLightElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFEDistantLightElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFEDropShadowElement' (Type: 'attribute' ExtAttr: '')
{"SVGFEDropShadowElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFEDropShadowElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFEFloodElement' (Type: 'attribute' ExtAttr: '')
{"SVGFEFloodElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFEFloodElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFEFuncAElement' (Type: 'attribute' ExtAttr: '')
{"SVGFEFuncAElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFEFuncAElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFEFuncBElement' (Type: 'attribute' ExtAttr: '')
{"SVGFEFuncBElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFEFuncBElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFEFuncGElement' (Type: 'attribute' ExtAttr: '')
{"SVGFEFuncGElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFEFuncGElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFEFuncRElement' (Type: 'attribute' ExtAttr: '')
{"SVGFEFuncRElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFEFuncRElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFEGaussianBlurElement' (Type: 'attribute' ExtAttr: '')
{"SVGFEGaussianBlurElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFEGaussianBlurElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFEImageElement' (Type: 'attribute' ExtAttr: '')
{"SVGFEImageElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFEImageElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFEMergeElement' (Type: 'attribute' ExtAttr: '')
{"SVGFEMergeElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFEMergeElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFEMergeNodeElement' (Type: 'attribute' ExtAttr: '')
{"SVGFEMergeNodeElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFEMergeNodeElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFEMorphologyElement' (Type: 'attribute' ExtAttr: '')
{"SVGFEMorphologyElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFEMorphologyElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFEOffsetElement' (Type: 'attribute' ExtAttr: '')
{"SVGFEOffsetElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFEOffsetElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFEPointLightElement' (Type: 'attribute' ExtAttr: '')
{"SVGFEPointLightElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFEPointLightElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFESpecularLightingElement' (Type: 'attribute' ExtAttr: '')
{"SVGFESpecularLightingElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFESpecularLightingElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFESpotLightElement' (Type: 'attribute' ExtAttr: '')
{"SVGFESpotLightElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFESpotLightElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFETileElement' (Type: 'attribute' ExtAttr: '')
{"SVGFETileElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFETileElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFETurbulenceElement' (Type: 'attribute' ExtAttr: '')
{"SVGFETurbulenceElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFETurbulenceElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'SVGFilterElement' (Type: 'attribute' ExtAttr: '')
{"SVGFilterElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SVGFilterElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
// Attribute 'FormData' (Type: 'attribute' ExtAttr: '')
{"FormData", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DOMFormData::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#if ENABLE(BLOB) || ENABLE(FILE_SYSTEM)
// Attribute 'FileError' (Type: 'attribute' ExtAttr: 'Conditional')
{"FileError", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8FileError::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(BLOB) || ENABLE(FILE_SYSTEM)
#if ENABLE(BLOB)
// Attribute 'FileReader' (Type: 'attribute' ExtAttr: 'Conditional')
{"FileReader", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8FileReader::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(BLOB)
#if ENABLE(BLOB)
// Attribute 'URL' (Type: 'attribute' ExtAttr: 'Conditional')
{"URL", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DOMURL::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(BLOB)
#if ENABLE(BLOB)
// Attribute 'webkitURL' (Type: 'attribute' ExtAttr: 'Conditional')
{"webkitURL", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DOMURL::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(BLOB)
// Attribute 'WebKitMutationObserver' (Type: 'attribute' ExtAttr: '')
{"WebKitMutationObserver", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8MutationObserver::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#if ENABLE(LEGACY_NOTIFICATIONS) || ENABLE(NOTIFICATIONS)
// Attribute 'Notification' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"Notification", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Notification::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(LEGACY_NOTIFICATIONS) || ENABLE(NOTIFICATIONS)
#if ENABLE(QUOTA)
// Attribute 'webkitStorageInfo' (Type: 'readonly attribute' ExtAttr: 'Conditional ImplementedBy')
{"webkitStorageInfo", DOMWindowV8Internal::webkitStorageInfoAttrGetter, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(QUOTA)
#if ENABLE(WEB_SOCKETS)
// Attribute 'CloseEvent' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"CloseEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8CloseEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(WEB_SOCKETS)
#if ENABLE(WEB_AUDIO)
// Attribute 'webkitAudioPannerNode' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"webkitAudioPannerNode", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8PannerNode::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(WEB_AUDIO)
#if ENABLE(WEB_AUDIO)
// Attribute 'AudioProcessingEvent' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"AudioProcessingEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8AudioProcessingEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(WEB_AUDIO)
#if ENABLE(WEB_AUDIO)
// Attribute 'OfflineAudioCompletionEvent' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"OfflineAudioCompletionEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8OfflineAudioCompletionEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(WEB_AUDIO)
#if ENABLE(MEDIA_STREAM)
// Attribute 'RTCSessionDescription' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"RTCSessionDescription", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8RTCSessionDescription::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(MEDIA_STREAM)
#if ENABLE(MEDIA_STREAM)
// Attribute 'RTCIceCandidate' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"RTCIceCandidate", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8RTCIceCandidate::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(MEDIA_STREAM)
#if ENABLE(MEDIA_STREAM)
// Attribute 'MediaStreamEvent' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"MediaStreamEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8MediaStreamEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(MEDIA_STREAM)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'webkitIndexedDB' (Type: 'readonly attribute' ExtAttr: 'V8MeasureAs ImplementedAs Conditional ImplementedBy')
{"webkitIndexedDB", DOMWindowV8Internal::webkitIndexedDBAttrGetter, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'webkitIDBCursor' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"webkitIDBCursor", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8IDBCursor::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'webkitIDBDatabase' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"webkitIDBDatabase", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8IDBDatabase::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'webkitIDBFactory' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"webkitIDBFactory", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8IDBFactory::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'webkitIDBIndex' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"webkitIDBIndex", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8IDBIndex::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'webkitIDBKeyRange' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"webkitIDBKeyRange", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8IDBKeyRange::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'webkitIDBObjectStore' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"webkitIDBObjectStore", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8IDBObjectStore::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'webkitIDBRequest' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"webkitIDBRequest", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8IDBRequest::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'webkitIDBTransaction' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"webkitIDBTransaction", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8IDBTransaction::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'indexedDB' (Type: 'readonly attribute' ExtAttr: 'V8MeasureAs Conditional ImplementedBy')
{"indexedDB", DOMWindowV8Internal::indexedDBAttrGetter, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'IDBCursor' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"IDBCursor", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8IDBCursor::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'IDBCursorWithValue' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"IDBCursorWithValue", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8IDBCursorWithValue::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'IDBDatabase' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"IDBDatabase", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8IDBDatabase::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'IDBFactory' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"IDBFactory", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8IDBFactory::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'IDBIndex' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"IDBIndex", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8IDBIndex::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'IDBKeyRange' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"IDBKeyRange", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8IDBKeyRange::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'IDBObjectStore' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"IDBObjectStore", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8IDBObjectStore::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'IDBOpenDBRequest' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"IDBOpenDBRequest", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8IDBOpenDBRequest::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'IDBRequest' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"IDBRequest", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8IDBRequest::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'IDBTransaction' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"IDBTransaction", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8IDBTransaction::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(INDEXED_DATABASE)
// Attribute 'IDBVersionChangeEvent' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"IDBVersionChangeEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8IDBVersionChangeEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(INDEXED_DATABASE)
#if ENABLE(SQL_DATABASE)
// Attribute 'SQLException' (Type: 'attribute' ExtAttr: 'Conditional ImplementedBy')
{"SQLException", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SQLException::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
#endif // ENABLE(SQL_DATABASE)
};
static const V8DOMConfiguration::BatchedCallback V8DOMWindowCallbacks[] = {
{"getSelection", DOMWindowV8Internal::getSelectionCallback},
{"print", DOMWindowV8Internal::printCallback},
{"stop", DOMWindowV8Internal::stopCallback},
{"open", V8DOMWindow::openCallback},
{"showModalDialog", V8DOMWindow::showModalDialogCallback},
{"alert", DOMWindowV8Internal::alertCallback},
{"confirm", DOMWindowV8Internal::confirmCallback},
{"prompt", DOMWindowV8Internal::promptCallback},
{"find", DOMWindowV8Internal::findCallback},
{"scrollBy", DOMWindowV8Internal::scrollByCallback},
{"scrollTo", DOMWindowV8Internal::scrollToCallback},
{"scroll", DOMWindowV8Internal::scrollCallback},
{"moveBy", DOMWindowV8Internal::moveByCallback},
{"moveTo", DOMWindowV8Internal::moveToCallback},
{"resizeBy", DOMWindowV8Internal::resizeByCallback},
{"resizeTo", DOMWindowV8Internal::resizeToCallback},
{"matchMedia", DOMWindowV8Internal::matchMediaCallback},
{"setTimeout", V8DOMWindow::setTimeoutCallback},
{"clearTimeout", DOMWindowV8Internal::clearTimeoutCallback},
{"setInterval", V8DOMWindow::setIntervalCallback},
{"clearInterval", DOMWindowV8Internal::clearIntervalCallback},
{"requestAnimationFrame", DOMWindowV8Internal::requestAnimationFrameCallback},
{"cancelAnimationFrame", DOMWindowV8Internal::cancelAnimationFrameCallback},
{"webkitRequestAnimationFrame", DOMWindowV8Internal::webkitRequestAnimationFrameCallback},
{"webkitCancelAnimationFrame", DOMWindowV8Internal::webkitCancelAnimationFrameCallback},
{"webkitCancelRequestAnimationFrame", DOMWindowV8Internal::webkitCancelRequestAnimationFrameCallback},
{"atob", DOMWindowV8Internal::atobCallback},
{"btoa", DOMWindowV8Internal::btoaCallback},
{"addEventListener", V8DOMWindow::addEventListenerCallback},
{"removeEventListener", V8DOMWindow::removeEventListenerCallback},
{"captureEvents", V8DOMWindow::captureEventsCallback},
{"releaseEvents", V8DOMWindow::releaseEventsCallback},
};
static const V8DOMConfiguration::BatchedConstant V8DOMWindowConsts[] = {
#if ENABLE(FILE_SYSTEM)
{"TEMPORARY", static_cast<signed int>(0)},
#endif
#if ENABLE(FILE_SYSTEM)
{"PERSISTENT", static_cast<signed int>(1)},
#endif
};
#if ENABLE(FILE_SYSTEM)
COMPILE_ASSERT(0 == DOMWindowFileSystem::TEMPORARY, DOMWindowEnumTEMPORARYIsWrongUseDoNotCheckConstants);
#endif
#if ENABLE(FILE_SYSTEM)
COMPILE_ASSERT(1 == DOMWindowFileSystem::PERSISTENT, DOMWindowEnumPERSISTENTIsWrongUseDoNotCheckConstants);
#endif
static v8::Persistent<v8::ObjectTemplate> ConfigureShadowObjectTemplate(v8::Persistent<v8::ObjectTemplate> templ)
{
V8DOMConfiguration::batchConfigureAttributes(templ, v8::Handle<v8::ObjectTemplate>(), shadowAttrs, WTF_ARRAY_LENGTH(shadowAttrs));
// Install a security handler with V8.
templ->SetAccessCheckCallbacks(V8DOMWindow::namedSecurityCheck, V8DOMWindow::indexedSecurityCheck, v8::External::New(&V8DOMWindow::info));
templ->SetInternalFieldCount(V8DOMWindow::internalFieldCount);
return templ;
}
static v8::Persistent<v8::FunctionTemplate> ConfigureV8DOMWindowTemplate(v8::Persistent<v8::FunctionTemplate> desc)
{
desc->ReadOnlyPrototype();
v8::Local<v8::Signature> defaultSignature;
defaultSignature = V8DOMConfiguration::configureTemplate(desc, "Window", v8::Persistent<v8::FunctionTemplate>(), V8DOMWindow::internalFieldCount,
V8DOMWindowAttrs, WTF_ARRAY_LENGTH(V8DOMWindowAttrs),
V8DOMWindowCallbacks, WTF_ARRAY_LENGTH(V8DOMWindowCallbacks));
UNUSED_PARAM(defaultSignature); // In some cases, it will not be used.
v8::Local<v8::ObjectTemplate> instance = desc->InstanceTemplate();
v8::Local<v8::ObjectTemplate> proto = desc->PrototypeTemplate();
UNUSED_PARAM(instance); // In some cases, it will not be used.
UNUSED_PARAM(proto); // In some cases, it will not be used.
if (RuntimeEnabledFeatures::applicationCacheEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'applicationCache' (Type: 'readonly attribute' ExtAttr: 'V8EnabledAtRuntime')
{"applicationCache", DOMWindowV8Internal::applicationCacheAttrGetter, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
if (RuntimeEnabledFeatures::sessionStorageEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'sessionStorage' (Type: 'readonly attribute' ExtAttr: 'V8EnabledAtRuntime')
{"sessionStorage", DOMWindowV8Internal::sessionStorageAttrGetter, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
if (RuntimeEnabledFeatures::localStorageEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'localStorage' (Type: 'readonly attribute' ExtAttr: 'V8EnabledAtRuntime')
{"localStorage", DOMWindowV8Internal::localStorageAttrGetter, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#if ENABLE(TOUCH_EVENTS)
if (RuntimeEnabledFeatures::touchEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'ontouchstart' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime V8OnProto Conditional')
{"ontouchstart", DOMWindowV8Internal::ontouchstartAttrGetter, DOMWindowV8Internal::ontouchstartAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(TOUCH_EVENTS)
#if ENABLE(TOUCH_EVENTS)
if (RuntimeEnabledFeatures::touchEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'ontouchmove' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime V8OnProto Conditional')
{"ontouchmove", DOMWindowV8Internal::ontouchmoveAttrGetter, DOMWindowV8Internal::ontouchmoveAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(TOUCH_EVENTS)
#if ENABLE(TOUCH_EVENTS)
if (RuntimeEnabledFeatures::touchEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'ontouchend' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime V8OnProto Conditional')
{"ontouchend", DOMWindowV8Internal::ontouchendAttrGetter, DOMWindowV8Internal::ontouchendAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(TOUCH_EVENTS)
#if ENABLE(TOUCH_EVENTS)
if (RuntimeEnabledFeatures::touchEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'ontouchcancel' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime V8OnProto Conditional')
{"ontouchcancel", DOMWindowV8Internal::ontouchcancelAttrGetter, DOMWindowV8Internal::ontouchcancelAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(TOUCH_EVENTS)
#if ENABLE(DEVICE_ORIENTATION)
if (RuntimeEnabledFeatures::ondevicemotionEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'ondevicemotion' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime V8OnProto Conditional')
{"ondevicemotion", DOMWindowV8Internal::ondevicemotionAttrGetter, DOMWindowV8Internal::ondevicemotionAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(DEVICE_ORIENTATION)
#if ENABLE(DEVICE_ORIENTATION)
if (RuntimeEnabledFeatures::ondeviceorientationEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'ondeviceorientation' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime V8OnProto Conditional')
{"ondeviceorientation", DOMWindowV8Internal::ondeviceorientationAttrGetter, DOMWindowV8Internal::ondeviceorientationAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 1 /* on proto */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(DEVICE_ORIENTATION)
#if ENABLE(SHADOW_DOM)
if (RuntimeEnabledFeatures::shadowDOMEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'WebKitShadowRoot' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"WebKitShadowRoot", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8ShadowRoot::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(SHADOW_DOM)
#if ENABLE(SHADOW_DOM)
if (RuntimeEnabledFeatures::shadowDOMEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'HTMLContentElement' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"HTMLContentElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLContentElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(SHADOW_DOM)
#if ENABLE(SHADOW_DOM)
if (RuntimeEnabledFeatures::shadowDOMEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'HTMLShadowElement' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"HTMLShadowElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLShadowElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(SHADOW_DOM)
#if ENABLE(ENCRYPTED_MEDIA)
if (RuntimeEnabledFeatures::encryptedMediaEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'MediaKeyError' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"MediaKeyError", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8MediaKeyError::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(ENCRYPTED_MEDIA)
#if ENABLE(ENCRYPTED_MEDIA)
if (RuntimeEnabledFeatures::encryptedMediaEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'MediaKeyEvent' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"MediaKeyEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8MediaKeyEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(ENCRYPTED_MEDIA)
#if ENABLE(VIDEO_TRACK)
if (RuntimeEnabledFeatures::webkitVideoTrackEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'HTMLTrackElement' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"HTMLTrackElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLTrackElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(VIDEO_TRACK)
#if ENABLE(VIDEO_TRACK)
if (RuntimeEnabledFeatures::webkitVideoTrackEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'TextTrack' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"TextTrack", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8TextTrack::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(VIDEO_TRACK)
#if ENABLE(VIDEO_TRACK)
if (RuntimeEnabledFeatures::webkitVideoTrackEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'TextTrackCue' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"TextTrackCue", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8TextTrackCue::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(VIDEO_TRACK)
#if ENABLE(VIDEO_TRACK)
if (RuntimeEnabledFeatures::webkitVideoTrackEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'TextTrackCueList' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"TextTrackCueList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8TextTrackCueList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(VIDEO_TRACK)
#if ENABLE(VIDEO_TRACK)
if (RuntimeEnabledFeatures::webkitVideoTrackEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'TextTrackList' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"TextTrackList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8TextTrackList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(VIDEO_TRACK)
#if ENABLE(VIDEO_TRACK)
if (RuntimeEnabledFeatures::webkitVideoTrackEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'TrackEvent' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"TrackEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8TrackEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(VIDEO_TRACK)
#if ENABLE(VIDEO)
if (RuntimeEnabledFeatures::audioEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'Audio' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime JSCustomGetter Conditional')
{"Audio", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLAudioElementConstructor::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(VIDEO)
#if ENABLE(VIDEO)
if (RuntimeEnabledFeatures::htmlAudioElementEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'HTMLAudioElement' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"HTMLAudioElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLAudioElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(VIDEO)
#if ENABLE(VIDEO)
if (RuntimeEnabledFeatures::htmlMediaElementEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'HTMLMediaElement' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"HTMLMediaElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLMediaElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(VIDEO)
#if ENABLE(VIDEO)
if (RuntimeEnabledFeatures::htmlVideoElementEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'HTMLVideoElement' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"HTMLVideoElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLVideoElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(VIDEO)
#if ENABLE(VIDEO)
if (RuntimeEnabledFeatures::mediaErrorEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'MediaError' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"MediaError", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8MediaError::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(VIDEO)
#if ENABLE(VIDEO)
if (RuntimeEnabledFeatures::timeRangesEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'TimeRanges' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"TimeRanges", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8TimeRanges::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(VIDEO)
#if ENABLE(VIDEO)
if (RuntimeEnabledFeatures::htmlSourceElementEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'HTMLSourceElement' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"HTMLSourceElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLSourceElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(VIDEO)
#if ENABLE(VIDEO)
if (RuntimeEnabledFeatures::mediaControllerEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'MediaController' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"MediaController", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8MediaController::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(VIDEO)
#if ENABLE(DEVICE_ORIENTATION)
if (RuntimeEnabledFeatures::deviceMotionEventEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'DeviceMotionEvent' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"DeviceMotionEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DeviceMotionEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(DEVICE_ORIENTATION)
#if ENABLE(DEVICE_ORIENTATION)
if (RuntimeEnabledFeatures::deviceOrientationEventEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'DeviceOrientationEvent' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"DeviceOrientationEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8DeviceOrientationEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(DEVICE_ORIENTATION)
#if ENABLE(TOUCH_EVENTS)
if (RuntimeEnabledFeatures::touchEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'Touch' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"Touch", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Touch::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(TOUCH_EVENTS)
#if ENABLE(TOUCH_EVENTS)
if (RuntimeEnabledFeatures::touchEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'TouchEvent' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"TouchEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8TouchEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(TOUCH_EVENTS)
#if ENABLE(TOUCH_EVENTS)
if (RuntimeEnabledFeatures::touchEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'TouchList' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"TouchList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8TouchList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(TOUCH_EVENTS)
#if ENABLE(CSS_REGIONS)
if (RuntimeEnabledFeatures::cssRegionsEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'WebKitCSSRegionRule' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"WebKitCSSRegionRule", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebKitCSSRegionRule::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(CSS_REGIONS)
#if ENABLE(SHARED_WORKERS)
if (RuntimeEnabledFeatures::sharedWorkerEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'SharedWorker' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime JSCustomGetter Conditional')
{"SharedWorker", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SharedWorker::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(SHARED_WORKERS)
#if ENABLE(MEDIA_SOURCE)
if (RuntimeEnabledFeatures::mediaSourceEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'WebKitMediaSource' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"WebKitMediaSource", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8MediaSource::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(MEDIA_SOURCE)
#if ENABLE(MEDIA_SOURCE)
if (RuntimeEnabledFeatures::mediaSourceEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'WebKitSourceBuffer' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"WebKitSourceBuffer", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SourceBuffer::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(MEDIA_SOURCE)
#if ENABLE(MEDIA_SOURCE)
if (RuntimeEnabledFeatures::mediaSourceEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'WebKitSourceBufferList' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional')
{"WebKitSourceBufferList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SourceBufferList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(MEDIA_SOURCE)
#if ENABLE(LEGACY_NOTIFICATIONS) || ENABLE(NOTIFICATIONS)
if (RuntimeEnabledFeatures::webkitNotificationsEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'webkitNotifications' (Type: 'readonly attribute' ExtAttr: 'V8EnabledAtRuntime V8MeasureAs Conditional ImplementedBy')
{"webkitNotifications", DOMWindowV8Internal::webkitNotificationsAttrGetter, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(LEGACY_NOTIFICATIONS) || ENABLE(NOTIFICATIONS)
#if ENABLE(SCRIPTED_SPEECH)
if (RuntimeEnabledFeatures::webkitSpeechRecognitionEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'webkitSpeechRecognition' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional ImplementedBy')
{"webkitSpeechRecognition", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SpeechRecognition::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(SCRIPTED_SPEECH)
#if ENABLE(SCRIPTED_SPEECH)
if (RuntimeEnabledFeatures::webkitSpeechRecognitionErrorEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'webkitSpeechRecognitionError' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional ImplementedBy')
{"webkitSpeechRecognitionError", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SpeechRecognitionError::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(SCRIPTED_SPEECH)
#if ENABLE(SCRIPTED_SPEECH)
if (RuntimeEnabledFeatures::webkitSpeechRecognitionEventEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'webkitSpeechRecognitionEvent' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional ImplementedBy')
{"webkitSpeechRecognitionEvent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SpeechRecognitionEvent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(SCRIPTED_SPEECH)
#if ENABLE(SCRIPTED_SPEECH)
if (RuntimeEnabledFeatures::webkitSpeechGrammarEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'webkitSpeechGrammar' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional ImplementedBy')
{"webkitSpeechGrammar", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SpeechGrammar::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(SCRIPTED_SPEECH)
#if ENABLE(SCRIPTED_SPEECH)
if (RuntimeEnabledFeatures::webkitSpeechGrammarListEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'webkitSpeechGrammarList' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional ImplementedBy')
{"webkitSpeechGrammarList", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8SpeechGrammarList::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(SCRIPTED_SPEECH)
#if ENABLE(WEB_SOCKETS)
if (RuntimeEnabledFeatures::webSocketEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'WebSocket' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime JSCustomGetter Conditional ImplementedBy')
{"WebSocket", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8WebSocket::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(WEB_SOCKETS)
#if ENABLE(WEB_AUDIO)
if (RuntimeEnabledFeatures::webkitAudioContextEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'webkitAudioContext' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime JSCustomGetter Conditional ImplementedBy')
{"webkitAudioContext", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8AudioContext::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(WEB_AUDIO)
#if ENABLE(WEB_AUDIO)
if (RuntimeEnabledFeatures::webkitOfflineAudioContextEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'webkitOfflineAudioContext' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional ImplementedBy')
{"webkitOfflineAudioContext", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8OfflineAudioContext::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(WEB_AUDIO)
#if ENABLE(WEB_INTENTS)
if (RuntimeEnabledFeatures::webKitIntentEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'WebKitIntent' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional ImplementedBy')
{"WebKitIntent", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8Intent::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(WEB_INTENTS)
#if ENABLE(WEB_INTENTS)
if (RuntimeEnabledFeatures::webkitIntentEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'webkitIntent' (Type: 'readonly attribute' ExtAttr: 'V8EnabledAtRuntime Replaceable Conditional ImplementedBy')
{"webkitIntent", DOMWindowV8Internal::webkitIntentAttrGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(WEB_INTENTS)
#if ENABLE(MEDIA_STREAM)
if (RuntimeEnabledFeatures::webkitMediaStreamEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'webkitMediaStream' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional ImplementedBy')
{"webkitMediaStream", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8MediaStream::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(MEDIA_STREAM)
#if ENABLE(MEDIA_STREAM)
if (RuntimeEnabledFeatures::webkitRTCPeerConnectionEnabled()) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'webkitRTCPeerConnection' (Type: 'attribute' ExtAttr: 'V8EnabledAtRuntime Conditional ImplementedBy')
{"webkitRTCPeerConnection", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8RTCPeerConnection::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(MEDIA_STREAM)
desc->PrototypeTemplate()->SetIndexedPropertyHandler(V8DOMWindow::indexedPropertyGetter, 0, 0, 0);
desc->PrototypeTemplate()->SetNamedPropertyHandler(V8DOMWindow::namedPropertyGetter, 0, 0, 0, 0);
// Function 'focus' (ExtAttr: 'DoNotCheckSecurity CallWith')
proto->SetAccessor(v8::String::NewSymbol("focus"), DOMWindowV8Internal::focusAttrGetter, DOMWindowV8Internal::DOMWindowDomainSafeFunctionSetter, v8Undefined(), v8::ALL_CAN_READ, static_cast<v8::PropertyAttribute>(v8::DontDelete));
// Function 'blur' (ExtAttr: 'DoNotCheckSecurity')
proto->SetAccessor(v8::String::NewSymbol("blur"), DOMWindowV8Internal::blurAttrGetter, DOMWindowV8Internal::DOMWindowDomainSafeFunctionSetter, v8Undefined(), v8::ALL_CAN_READ, static_cast<v8::PropertyAttribute>(v8::DontDelete));
// Function 'close' (ExtAttr: 'DoNotCheckSecurity CallWith')
proto->SetAccessor(v8::String::NewSymbol("close"), DOMWindowV8Internal::closeAttrGetter, DOMWindowV8Internal::DOMWindowDomainSafeFunctionSetter, v8Undefined(), v8::ALL_CAN_READ, static_cast<v8::PropertyAttribute>(v8::DontDelete));
// Custom Signature 'getComputedStyle'
const int getComputedStyleArgc = 2;
v8::Handle<v8::FunctionTemplate> getComputedStyleArgv[getComputedStyleArgc] = { V8Element::GetRawTemplate(), v8::Handle<v8::FunctionTemplate>() };
v8::Handle<v8::Signature> getComputedStyleSignature = v8::Signature::New(desc, getComputedStyleArgc, getComputedStyleArgv);
proto->Set(v8::String::NewSymbol("getComputedStyle"), v8::FunctionTemplate::New(DOMWindowV8Internal::getComputedStyleCallback, v8Undefined(), getComputedStyleSignature));
// Custom Signature 'getMatchedCSSRules'
const int getMatchedCSSRulesArgc = 2;
v8::Handle<v8::FunctionTemplate> getMatchedCSSRulesArgv[getMatchedCSSRulesArgc] = { V8Element::GetRawTemplate(), v8::Handle<v8::FunctionTemplate>() };
v8::Handle<v8::Signature> getMatchedCSSRulesSignature = v8::Signature::New(desc, getMatchedCSSRulesArgc, getMatchedCSSRulesArgv);
proto->Set(v8::String::NewSymbol("getMatchedCSSRules"), v8::FunctionTemplate::New(DOMWindowV8Internal::getMatchedCSSRulesCallback, v8Undefined(), getMatchedCSSRulesSignature));
// Custom Signature 'webkitConvertPointFromPageToNode'
const int webkitConvertPointFromPageToNodeArgc = 2;
v8::Handle<v8::FunctionTemplate> webkitConvertPointFromPageToNodeArgv[webkitConvertPointFromPageToNodeArgc] = { V8Node::GetRawTemplate(), V8WebKitPoint::GetRawTemplate() };
v8::Handle<v8::Signature> webkitConvertPointFromPageToNodeSignature = v8::Signature::New(desc, webkitConvertPointFromPageToNodeArgc, webkitConvertPointFromPageToNodeArgv);
proto->Set(v8::String::NewSymbol("webkitConvertPointFromPageToNode"), v8::FunctionTemplate::New(DOMWindowV8Internal::webkitConvertPointFromPageToNodeCallback, v8Undefined(), webkitConvertPointFromPageToNodeSignature));
// Custom Signature 'webkitConvertPointFromNodeToPage'
const int webkitConvertPointFromNodeToPageArgc = 2;
v8::Handle<v8::FunctionTemplate> webkitConvertPointFromNodeToPageArgv[webkitConvertPointFromNodeToPageArgc] = { V8Node::GetRawTemplate(), V8WebKitPoint::GetRawTemplate() };
v8::Handle<v8::Signature> webkitConvertPointFromNodeToPageSignature = v8::Signature::New(desc, webkitConvertPointFromNodeToPageArgc, webkitConvertPointFromNodeToPageArgv);
proto->Set(v8::String::NewSymbol("webkitConvertPointFromNodeToPage"), v8::FunctionTemplate::New(DOMWindowV8Internal::webkitConvertPointFromNodeToPageCallback, v8Undefined(), webkitConvertPointFromNodeToPageSignature));
// Function 'postMessage' (ExtAttr: 'DoNotCheckSecurity Custom')
proto->SetAccessor(v8::String::NewSymbol("postMessage"), DOMWindowV8Internal::postMessageAttrGetter, DOMWindowV8Internal::DOMWindowDomainSafeFunctionSetter, v8Undefined(), v8::ALL_CAN_READ, static_cast<v8::PropertyAttribute>(v8::DontDelete));
// Custom Signature 'dispatchEvent'
const int dispatchEventArgc = 1;
v8::Handle<v8::FunctionTemplate> dispatchEventArgv[dispatchEventArgc] = { V8Event::GetRawTemplate() };
v8::Handle<v8::Signature> dispatchEventSignature = v8::Signature::New(desc, dispatchEventArgc, dispatchEventArgv);
proto->Set(v8::String::NewSymbol("dispatchEvent"), v8::FunctionTemplate::New(DOMWindowV8Internal::dispatchEventCallback, v8Undefined(), dispatchEventSignature));
// Function 'toString' (ExtAttr: 'DoNotCheckSecurity NotEnumerable Custom V8DoNotCheckSignature')
proto->SetAccessor(v8::String::NewSymbol("toString"), DOMWindowV8Internal::toStringAttrGetter, DOMWindowV8Internal::DOMWindowDomainSafeFunctionSetter, v8Undefined(), v8::ALL_CAN_READ, static_cast<v8::PropertyAttribute>(v8::DontDelete | v8::DontEnum));
#if ENABLE(FILE_SYSTEM)
if (RuntimeEnabledFeatures::fileSystemEnabled())
proto->Set(v8::String::NewSymbol("webkitRequestFileSystem"), v8::FunctionTemplate::New(DOMWindowV8Internal::webkitRequestFileSystemCallback, v8Undefined(), defaultSignature));
#endif // ENABLE(FILE_SYSTEM)
#if ENABLE(FILE_SYSTEM)
if (RuntimeEnabledFeatures::fileSystemEnabled())
proto->Set(v8::String::NewSymbol("webkitResolveLocalFileSystemURL"), v8::FunctionTemplate::New(DOMWindowV8Internal::webkitResolveLocalFileSystemURLCallback, v8Undefined(), defaultSignature));
#endif // ENABLE(FILE_SYSTEM)
#if ENABLE(SQL_DATABASE)
if (RuntimeEnabledFeatures::openDatabaseEnabled())
proto->Set(v8::String::NewSymbol("openDatabase"), v8::FunctionTemplate::New(DOMWindowV8Internal::openDatabaseCallback, v8Undefined(), defaultSignature));
#endif // ENABLE(SQL_DATABASE)
V8DOMConfiguration::batchConfigureConstants(desc, proto, V8DOMWindowConsts, WTF_ARRAY_LENGTH(V8DOMWindowConsts));
proto->SetInternalFieldCount(V8DOMWindow::internalFieldCount);
desc->SetHiddenPrototype(true);
instance->SetInternalFieldCount(V8DOMWindow::internalFieldCount);
// Set access check callbacks, but turned off initially.
// When a context is detached from a frame, turn on the access check.
// Turning on checks also invalidates inline caches of the object.
instance->SetAccessCheckCallbacks(V8DOMWindow::namedSecurityCheck, V8DOMWindow::indexedSecurityCheck, v8::External::New(&V8DOMWindow::info), false);
// Custom toString template
desc->Set(v8::String::NewSymbol("toString"), V8PerIsolateData::current()->toStringTemplate());
return desc;
}
v8::Persistent<v8::FunctionTemplate> V8DOMWindow::GetRawTemplate()
{
V8PerIsolateData* data = V8PerIsolateData::current();
V8PerIsolateData::TemplateMap::iterator result = data->rawTemplateMap().find(&info);
if (result != data->rawTemplateMap().end())
return result->value;
v8::HandleScope handleScope;
v8::Persistent<v8::FunctionTemplate> templ = createRawTemplate();
data->rawTemplateMap().add(&info, templ);
return templ;
}
v8::Persistent<v8::FunctionTemplate> V8DOMWindow::GetTemplate()
{
V8PerIsolateData* data = V8PerIsolateData::current();
V8PerIsolateData::TemplateMap::iterator result = data->templateMap().find(&info);
if (result != data->templateMap().end())
return result->value;
v8::HandleScope handleScope;
v8::Persistent<v8::FunctionTemplate> templ =
ConfigureV8DOMWindowTemplate(GetRawTemplate());
data->templateMap().add(&info, templ);
return templ;
}
bool V8DOMWindow::HasInstance(v8::Handle<v8::Value> value)
{
return GetRawTemplate()->HasInstance(value);
}
void V8DOMWindow::installPerContextProperties(v8::Handle<v8::Object> instance, DOMWindow* impl)
{
v8::Local<v8::Object> proto = v8::Local<v8::Object>::Cast(instance->GetPrototype());
// When building QtWebkit with V8 this variable is unused when none of the features are enabled.
UNUSED_PARAM(proto);
#if ENABLE(DIALOG_ELEMENT)
if (ContextFeatures::dialogElementEnabled(impl->document())) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'HTMLDialogElement' (Type: 'attribute' ExtAttr: 'V8EnabledPerContext Conditional')
{"HTMLDialogElement", DOMWindowV8Internal::DOMWindowConstructorGetter, DOMWindowV8Internal::DOMWindowReplaceableAttrSetter, &V8HTMLDialogElement::info, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(DIALOG_ELEMENT)
#if ENABLE(PAGE_POPUP)
if (ContextFeatures::pagePopupEnabled(impl->document())) {
static const V8DOMConfiguration::BatchedAttribute attrData =\
// Attribute 'pagePopupController' (Type: 'readonly attribute' ExtAttr: 'V8EnabledPerContext Conditional ImplementedBy')
{"pagePopupController", DOMWindowV8Internal::pagePopupControllerAttrGetter, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */};
V8DOMConfiguration::configureAttribute(instance, proto, attrData);
}
#endif // ENABLE(PAGE_POPUP)
}
v8::Persistent<v8::ObjectTemplate> V8DOMWindow::GetShadowObjectTemplate()
{
static v8::Persistent<v8::ObjectTemplate> V8DOMWindowShadowObjectCache;
if (V8DOMWindowShadowObjectCache.IsEmpty()) {
V8DOMWindowShadowObjectCache = v8::Persistent<v8::ObjectTemplate>::New(v8::ObjectTemplate::New());
ConfigureShadowObjectTemplate(V8DOMWindowShadowObjectCache);
}
return V8DOMWindowShadowObjectCache;
}
void V8DOMWindow::derefObject(void* object)
{
static_cast<DOMWindow*>(object)->deref();
}
} // namespace WebCore
| [
"marian.such@ackee.cz"
] | marian.such@ackee.cz |
2833fb6b024cb9381f902d54fb222de9dbe081cc | 92494691d9de19d64254d4a5e8c59c184773906f | /src/test/timedata_tests.cpp | e6ea2e6827e7ecdfce4b40b685c9bc08b0b3439f | [
"LicenseRef-scancode-proprietary-license",
"MIT"
] | permissive | xagau/Placeholders-X16R | ffaad0c6b0cb24872932c6663c2d7ee4cc6c3c97 | 5f96720e1d7f5bd6d5b574d9f3c12485c265ef33 | refs/heads/master | 2022-01-24T03:58:04.558002 | 2022-01-13T22:21:18 | 2022-01-13T22:21:18 | 162,598,084 | 23 | 10 | MIT | 2021-04-23T03:09:01 | 2018-12-20T15:31:28 | C++ | UTF-8 | C++ | false | false | 1,050 | cpp | // Copyright (c) 2011-2015 The Bitcoin Core developers
// Copyright (c) 2017 The Placeholder Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
//
#include "timedata.h"
#include "test/test_placeh.h"
#include <boost/test/unit_test.hpp>
BOOST_FIXTURE_TEST_SUITE(timedata_tests, BasicTestingSetup)
BOOST_AUTO_TEST_CASE(util_MedianFilter)
{
CMedianFilter<int> filter(5, 15);
BOOST_CHECK_EQUAL(filter.median(), 15);
filter.input(20); // [15 20]
BOOST_CHECK_EQUAL(filter.median(), 17);
filter.input(30); // [15 20 30]
BOOST_CHECK_EQUAL(filter.median(), 20);
filter.input(3); // [3 15 20 30]
BOOST_CHECK_EQUAL(filter.median(), 17);
filter.input(7); // [3 7 15 20 30]
BOOST_CHECK_EQUAL(filter.median(), 15);
filter.input(18); // [3 7 18 20 30]
BOOST_CHECK_EQUAL(filter.median(), 18);
filter.input(0); // [0 3 7 18 30]
BOOST_CHECK_EQUAL(filter.median(), 7);
}
BOOST_AUTO_TEST_SUITE_END()
| [
"seanbeecroft@gmail.com"
] | seanbeecroft@gmail.com |
c969a9996c499fe6ad2a18c2e0941f3052fa8146 | 7d855cc5a7320a0a60972e6baf546ca83ab51d62 | /cpp_04/ex03/srcs/Character.cpp | 21752e37bd2f7df273bea649ecc87a190671e46c | [] | no_license | bjacob-56/CPP | 1f6edc2b6f780424c886ca6e071c12d54d5f943e | 4c4987ea1fc8bdd0dc0416729f67316fec5a6cb7 | refs/heads/master | 2023-03-13T02:23:52.497609 | 2021-03-04T14:57:00 | 2021-03-04T14:57:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,385 | cpp | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Character.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: bjacob <bjacob@student.42lyon.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/02/23 12:08:04 by bjacob #+# #+# */
/* Updated: 2021/02/23 15:24:35 by bjacob ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include "../includes/Character.hpp"
Character::Character(std::string const name): _name(name)
{
_inventory[0] = NULL;
_inventory[1] = NULL;
_inventory[2] = NULL;
_inventory[3] = NULL;
return ;
}
Character::Character(Character const & src)
{
int i = -1;
while (++i < 4)
{
if (src.getInventoryMateria(i))
_inventory[i] = src.getInventoryMateria(i)->clone();
else
_inventory[i] = NULL;
}
_name = src.getName();
}
Character::~Character(void)
{
int i = -1;
while (++i < 4)
if (_inventory[i])
delete _inventory[i];
return ;
}
Character & Character::operator=(Character const & rhs)
{
int i = -1;
while (++i < 4)
if (_inventory[i])
delete _inventory[i];
i = -1;
while (++i < 4)
{
if (rhs.getInventoryMateria(i))
_inventory[i] = rhs.getInventoryMateria(i)->clone();
else
_inventory[i] = NULL;
}
_name = rhs.getName();
return (*this);
}
std::string const & Character::getName() const
{
return (_name);
}
AMateria* Character::getInventoryMateria(int n) const
{
if (n < 0 || n > 3)
return (NULL);
return (_inventory[n]);
}
void Character::equip(AMateria* m)
{
int i = -1;
while (++i < 4)
{
if (!_inventory[i])
{
_inventory[i] = m;
return ;
}
}
}
void Character::unequip(int idx)
{
if (idx < 0 || idx > 3)
return ;
if (_inventory[idx])
_inventory[idx] = NULL;
}
void Character::use(int idx, ICharacter& target)
{
if (idx < 0 || idx > 3)
return;
if (!_inventory[idx])
return ;
_inventory[idx]->use(target);
}
| [
"bjacob@z4r11p7.42lyon.fr"
] | bjacob@z4r11p7.42lyon.fr |
f583e29bdaf4b5bbf5a87cd4a0321c43aff3e728 | 57b96c6b71e76fb7b45f9cc66a64638c31c29c5e | /2_example/example27_env/example27_env.ino | f5c9b3b19312d1f5b41a017ae15f52e4d75c5ce5 | [
"MIT"
] | permissive | kghrlabo/esp | 04d3b945b8964c8ad40e0d6b94f92055508e2897 | 64c3f92c90198de3171a2a394231598b9f35f078 | refs/heads/master | 2020-04-03T11:43:34.139559 | 2018-10-08T07:49:16 | 2018-10-08T07:49:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,125 | ino | /*******************************************************************************
Example 27: 乾電池駆動が可能なCO2センサ AMS CCS811
※ 温湿度を測定するために BME280が必要
Copyright (c) 2017 Wataru KUNINO
CCS811の消費電流が4000μAほどと大きかったので、ディープスリープ時にCCS811をOFFし
実測で70μA程度(BME280、ESPモジュール、レギュレータ込)まで下げることが出来た。
これにより乾電池による駆動が可能となる。
(BME280はドライバbme280.ino内のbme280_stop関数により省エネ待機させている。)
ただし、起動後に適切なデータが得られるまでの時間を要する。
ディープスリープの間隔が約3.7分以上の場合に効果がある(起動延長10秒,90mA動作時)。
※ 4分以下の間隔で送信する場合は、CCS811の電源を入れっぱなしにした方が良い。
*******************************************************************************/
#include <ESP8266WiFi.h> // ESP8266用ライブラリ
#include <WiFiUdp.h> // UDP通信を行うライブラリ
#include <Wire.h>
#define PIN_LED 13 // IO 13(5番ピン)にLEDを接続する
#define PIN_CCS_EN_ 2 // IO 2(7番ピン)にCCS811のWAKを接続
#define PIN_CCS_RST 0 // IO 0(8番ピン)にCCS811のRSTを接続
#define SSID "1234ABCD" // 無線LANアクセスポイントのSSID
#define PASS "password" // パスワード
#define SENDTO "192.168.0.255" // 送信先のIPアドレス
#define PORT 1024 // 送信のポート番号
#define SLEEP_P 59*60*1000000 // スリープ時間 59分(uint32_t)
#define DEVICE "e_co2_1," // デバイス名(5文字+"_"+番号+",")
#define BME280_ADDR 0x76 // BME280:76(SDO=low), 77(SDO=high)
#define WAIT_MS 10000 // 起動待ち時間(最大)
#define MEAS_MS 10000 // 測定待ち時間(最大)
#define MEAS_TOLER 5 // 測定値の目標収束誤差(%)
float temp; // 温度値(℃)保持用変数
float hum; // 湿度値(%)保持用変数
float press; // 気圧値(Pa)保持用変数
unsigned long start_ms; // 起動した時のタイマー値
void setup(){
start_ms=millis(); // 初期化開始時のタイマー値を保存
pinMode(PIN_LED,OUTPUT); // LEDを接続したポートを出力に
pinMode(PIN_CCS_EN_,OUTPUT); // CCS811を接続したポートを出力に
pinMode(PIN_CCS_RST,OUTPUT); // CCS811を接続したポートを出力に
digitalWrite(PIN_LED,HIGH); // LED ON
digitalWrite(PIN_CCS_EN_,LOW); // WAKE UP CCS811
digitalWrite(PIN_CCS_RST,HIGH); // リセット解除
Serial.begin(9600); // 動作確認のためのシリアル出力開始
Serial.println("Example 04 LE"); // 「Example 04」をシリアル出力表示
Serial.print("initializing BME280.");
bme280_init(); // 温湿度・気圧センサを初期化
temp =bme280_getTemp(); // 温度値を取得
hum =bme280_getHum(); // 湿度値を取得
press=bme280_getPress(); // 気圧値を取得
bme280_stop(); // 温湿度・気圧センサの動作停止
Serial.println(" Done.");
bme280_print(temp,hum,press); // 取得したセンサ値をシリアル出力
Serial.print("initializing CCS811. "); // CO2センサの初期化(約1秒を要する)
ccs811_setup(temp,hum); // 温度と湿度値をCO2センサへ設定
Serial.println(" Done.");
Serial.print("Wi-Fi"); // Wi-Fi接続(約2.2秒)
WiFi.mode(WIFI_STA); // 無線LANをSTAモードに設定
WiFi.begin(SSID,PASS); // 無線LANアクセスポイントへ接続
while(WiFi.status() != WL_CONNECTED){ // 接続に成功するまで待つ
delay(200); // 待ち時間処理
digitalWrite(PIN_LED,!digitalRead(PIN_LED));// LEDの点滅
Serial.print('.'); // 進捗表示
if(millis()-start_ms > WAIT_MS) sleep(); // 待ち時間後スリープ
}
start_ms=millis(); // 測定開始時のタイマー値を保存
Serial.println(WiFi.localIP()); // 本機のIPアドレスをシリアル出力
digitalWrite(PIN_LED,HIGH);
}
void loop(){
WiFiUDP udp; // UDP通信用のインスタンスを定義
int co2 = ccs811_getCO2(); // CO2センサ値を取得
int prev= 9999; // 前回の値を保持する変数
while(co2<=400 || (abs(co2-prev)+1)*100/co2 > MEAS_TOLER){
if(co2<0){ // CO2センサのI2Cの通信異常時
Serial.println("I2C hardware is locked.");
digitalWrite(PIN_CCS_RST,LOW); // リセット実行
delay(1); // リセット待ち
digitalWrite(PIN_CCS_RST,HIGH); // リセット復帰
if(ccs811_setup(temp,hum)<0) sleep();
}
if(millis()-start_ms>MEAS_MS) break;// 最大測定待ち時間超過で終了
Serial.print("Too Low CO2 = ");
Serial.print(co2);
Serial.println(", Remeasuring...");
delay(1010); // CO2測定間隔が1秒なので1.01待ち
if(co2>400)prev=co2; // 前回値を保存
co2 = ccs811_getCO2(); // 再測定
}
Serial.print("CO2 =");
Serial.println(co2);
udp.beginPacket(SENDTO, PORT); // UDP送信先を設定
udp.print(DEVICE); // デバイス名を送信
udp.print(temp,2); // 変数tempの値を送信
Serial.print(temp,2); // シリアル出力表示
udp.print(", "); // 「,」カンマを送信
Serial.print(", "); // シリアル出力表示
udp.print(hum,2); // 変数humの値を送信
Serial.print(hum,2); // シリアル出力表示
udp.print(", "); // 「,」カンマを送信
Serial.print(", "); // シリアル出力表示
udp.print(press,2); // 変数press/100の値を送信
Serial.print(press,2); // シリアル出力表示
udp.print(", "); // 「,」カンマを送信
Serial.print(", "); // シリアル出力表示
udp.println(co2); // 変数co2の値を送信
Serial.println(co2); // シリアル出力表示
udp.endPacket(); // UDP送信の終了(実際に送信する)
delay(200); // 送信待ち時間
sleep(); // スリープへ
}
void sleep(){
ccs811_stop(); // 測定停止
delay(10); // 待ち時間
digitalWrite(PIN_CCS_EN_,HIGH); // DISABLE CCS811
digitalWrite(PIN_CCS_RST,HIGH); // リセット解除(元々HIGH)
ESP.deepSleep(SLEEP_P,WAKE_RF_DEFAULT); // スリープモードへ移行する
while(1){ // 繰り返し処理
delay(100); // 100msの待ち時間処理
} // 繰り返し中にスリープへ移行
}
| [
"xbee@dream.jp"
] | xbee@dream.jp |
1b964c00fa63774b3b0f95821fb8f28f6897fecf | 87fc4b0201c516d6fd8786562173004efa2e5178 | /CEF/wlog.cpp | 513d75919c48672075ebf395ed7a55416f5227d6 | [] | no_license | cj2013/c-c-- | fbc873837a2bb41014837f102385180d56ec5f98 | 96b4fcede0ae04879e3fbb45711a3130ede2c76a | refs/heads/master | 2020-03-17T20:34:59.911933 | 2018-07-27T02:43:14 | 2018-07-27T02:43:14 | 133,918,284 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 865 | cpp |
#include "wlog.h"
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include <time.h>
#include <stdio.h>
int g_fileID;
int wlog_open(const char* fileName)
{
g_fileID = open(fileName, O_CREAT | O_WRONLY | O_APPEND);
if (g_fileID < 0)
return -1;
return 1;
}
int wlog_write(const char* strtext)
{
if(g_fileID < 0)
{
return -1;
}
char strLog[256];
time_t timep;
struct tm *p;
time(&timep);
p = localtime(&timep);
sprintf(strLog, "%d-%d-%d %d:%d:%d %s\n", (1900 + p->tm_year), ( 1 + p->tm_mon), p->tm_mday,
(p->tm_hour), p->tm_min, p->tm_sec, strtext);
write(g_fileID, strLog, strlen(strLog));
return 1;
}
int wlog_close()
{
if(g_fileID > 0)
{
close(g_fileID);
}
return 1;
}
| [
"254642654@qq.com"
] | 254642654@qq.com |
00e7330666b5bad91c5723a28c6670ea4515a42c | be83adbbb1c153c2a1c4fe9a32217f6a0d05b344 | /subapp/parser/xhtml_parser/lexer.cpp | 2b1a7799024eb8cb42d94ec5f016db771f883864 | [
"Apache-2.0"
] | permissive | shuhaoc/logcc | a24f48891d8d257ee4b09d4e644474483fda6ed6 | 1a37cff193a567e723d89f3fd99b315b8c73eb57 | refs/heads/master | 2021-01-22T05:00:38.542911 | 2014-06-23T15:54:06 | 2014-06-23T15:54:06 | 16,105,593 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,401 | cpp | #include <cassert>
#include "Lexer.h"
using namespace std;
namespace logcc {
namespace filter_parser {
inline bool isSpaceChar(char c) {
static string spaces = " \t\r\n";
return spaces.find(c) != string::npos;
}
inline bool isOperator(char c) {
static string operators = "&|-()";
return operators.find(c) != string::npos;
}
void Lexer::skipSpaceChar() {
while (_is.good() && isSpaceChar((char)_is.peek())) {
if (_is.get() == '\n') _line++;
}
}
string Lexer::read() {
string ret;
if (!_peek.empty()) {
ret = _peek;
_peek.clear();
return ret;
}
skipSpaceChar();
istream::traits_type::int_type first;
while (_is.good() && (first = _is.peek()) != istream::traits_type::eof()) {
char c = istream::traits_type::to_char_type(first);
if (isSpaceChar(c) || isOperator(c)) {
if (ret.empty()) {
_is.get();
ret += c;
}
break;
} else {
_is.get();
if (c != '\\') {
ret += c;
} else {
first = _is.peek();
if (first != istream::traits_type::eof()) {
_is.get();
c = istream::traits_type::to_char_type(first);
switch (c) {
case 's': ret += ' '; break;
case 't': ret += '\t'; break;
case '&':
case '|':
case '-':
ret += c;
break;
}
}
}
}
}
return ret;
}
string Lexer::peek() {
if (_peek.empty()) _peek = read();
return _peek;
}
} // namespace filter_parser
} // namespace logcc | [
"shuhaoc@qq.com"
] | shuhaoc@qq.com |
c933c9658c53e986432e85411a7b568068e34218 | 5fc964feb7ee4256a0fd96b138363a6323be50c7 | /Teaching-ArenaSimulation/staff.cpp | 90735e7222c88af6214829439584e272e3a0eeab | [] | no_license | dhasl002/teaching_assistant_development | 5981da126c1f922d487ede8b3130d50cb99df08c | 54a683b3292765c7bb99f7b57a32bdaa7a68c869 | refs/heads/master | 2020-07-29T19:12:00.037305 | 2019-09-21T05:15:37 | 2019-09-21T05:15:37 | 209,927,512 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,185 | cpp | #include <iostream>
#include "staff.h"
using namespace std;
//default constructor for staff
staff::staff()
{
id = 0;
name = "";
job = "";
salary = 0;
}
//prints all staff
void printAllStaff(vector<staff> staffVector)
{
for(int i = 0; i < staffVector.size(); i++)
{
cout << "Id: " << staffVector[i].Getid() << endl;
cout << "Name: " << staffVector[i].Getname() << endl;
cout << "Job: " << staffVector[i].Getjob() << endl;
cout << "Salary: " << staffVector[i].Getsalary() << "\n" << endl;
}
}
//given an id the function will print the information of that staff member
void printStaffById(int selection, vector<staff> staffVector)
{
for(int i = 0; i < staffVector.size(); i++)
{
if(selection == staffVector[i].Getid())
{
cout << "Id: " << staffVector[i].Getid() << endl;
cout << "Name: " << staffVector[i].Getname() << endl;
cout << "Job: " << staffVector[i].Getjob() << endl;
cout << "Salary: " << staffVector[i].Getsalary() << "\n" << endl;
}
}
}
//given a job, the program will print all staff members of that job
void printStaffByJob(string str, vector<staff> staffVector)
{
cout << str << endl;
for(int i = 0; i < staffVector.size(); i++)
{
if(str == staffVector[i].Getjob())
{
cout << "Id: " << staffVector[i].Getid() << endl;
cout << "Name: " << staffVector[i].Getname() << endl;
cout << "Job: " << staffVector[i].Getjob() << endl;
cout << "Salary: " << staffVector[i].Getsalary() << "\n" << endl;
}
}
}
//fire a staff member based on their id
void fireSalesman(int selection, vector<staff> &staffVector)
{
for(int i = 0; i < staffVector.size(); i++)
{
if(selection == staffVector[i].Getid())
{
staffVector.erase(staffVector.begin()+i);
}
}
}
//main menu for staff
void staffMenu(int selection, vector<staff> &staffVector)
{
staff s;
string str = " ";
switch(selection)
{
case 1:
printAllStaff(staffVector);
break;
case 2:
cout << "Enter the id of staff member to print" << endl;
cin >> selection;
printStaffById(selection, staffVector);
break;
case 3:
cout << "Enter the job of staff member to print" << endl;
cin >> str;
printStaffByJob(str, staffVector);
break;
case 4:
cout << "Enter the id of the new staff member" << endl;
cin >> selection;
s.Setid(selection);
cout << "Enter the name of the new staff member" << endl;
cin >> str;
s.Setname(str);
cout << "Enter the job of the new staff member" << endl;
cin >> str;
s.Setjob(str);
cout << "Enter the salary of the new staff member" << endl;
cin >> selection;
s.Setsalary(selection);
staffVector.push_back(s);
break;
case 5:
cout << "Enter the id of staff member to fire" << endl;
cin >> selection;
fireSalesman(selection, staffVector);
break;
case 6:
break;
}
}
| [
"dhasl002@odu.edu"
] | dhasl002@odu.edu |
e8d76889ab92a00cbb54b05ec15f29fe8fa00ce5 | 7bae283d207cb0a057bae5ac418153a1f1dbdd4d | /src/Overlook/ExposureTester.cpp | 0d6993be6ea0236edd4a414a26c77590a3340013 | [
"BSD-3-Clause"
] | permissive | kanghua309/Overlook | 2c38954773cef76a1e284590ff91cc74ff138411 | d4c6e1e6692f12b448dce9fec1aa88be5054da36 | refs/heads/master | 2021-07-16T03:59:03.456906 | 2017-10-17T23:41:38 | 2017-10-17T23:41:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 902 | cpp | #include "Overlook.h"
namespace Overlook {
ExposureTester::ExposureTester() {
Add(hsplit.SizePos());
hsplit << expctrl << brokerctrl;
hsplit.SetPos(2000);
hsplit.Horz();
expctrl.Add(siglist.HSizePos().VSizePos());
siglist.AddColumn("Symbol");
siglist.AddColumn("Signal");
}
void ExposureTester::Init() {
broker.Init();
broker.Brokerage::operator=(GetMetaTrader());
brokerctrl.SetBroker(broker);
brokerctrl.Init();
for(int i = 0; i < broker.GetSymbolCount(); i++) {
siglist.Add(broker.GetSymbol(i).name, 0.0);
EditIntSpin& spin = edits.Add();
siglist.SetCtrl(i, 1, spin);
spin <<= THISBACK(Signal);
}
Signal();
}
void ExposureTester::Signal() {
for(int i = 0; i < broker.GetSymbolCount(); i++) {
broker.SetSignal(i, edits[i].GetData());
}
broker.SignalOrders();
broker.ForwardExposure();
brokerctrl.Data();
}
}
| [
"seppo.pakonen@yandex.com"
] | seppo.pakonen@yandex.com |
b55f06b65964cb67712e47c6e6907e65778fab91 | dc182283f6eed3b5aaa45c7da61bdc07b41ee161 | /ash/public/cpp/projector/projector_session.h | c43acb772789ab2a34dff7ab47ee175c9ad297db | [
"BSD-3-Clause"
] | permissive | KHJcode/chromium | c2bf1c71363e81aaa9e14de582cd139e46877e0a | 61f837c7b6768f2e74501dd614624f44e396f363 | refs/heads/master | 2023-06-19T07:25:15.090544 | 2021-07-08T12:38:31 | 2021-07-08T12:38:31 | 299,554,207 | 1 | 0 | BSD-3-Clause | 2020-09-29T08:33:13 | 2020-09-29T08:33:12 | null | UTF-8 | C++ | false | false | 1,748 | h | // Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_PUBLIC_CPP_PROJECTOR_PROJECTOR_SESSION_H_
#define ASH_PUBLIC_CPP_PROJECTOR_PROJECTOR_SESSION_H_
#include "ash/public/cpp/ash_public_export.h"
#include "base/observer_list_types.h"
namespace ash {
// The recording source type.
enum class SourceType { kUnset = 0, kFullscreen = 1, kTab = 2, kWindow = 3 };
// A checked observer which receives notification of changes to the
// |ProjectorSession|.
class ASH_PUBLIC_EXPORT ProjectorSessionObserver
: public base::CheckedObserver {
public:
// Invoked when the session active state is changed.
virtual void OnProjectorSessionActiveStateChanged(bool active) {}
};
// Interface to maintain projector session in ash.
class ASH_PUBLIC_EXPORT ProjectorSession {
public:
ProjectorSession();
ProjectorSession(const ProjectorSession&) = delete;
ProjectorSession& operator=(const ProjectorSession&) = delete;
virtual ~ProjectorSession();
static ProjectorSession* Get();
// Adds/removes the specified |observer|.
virtual void AddObserver(ProjectorSessionObserver* observer) = 0;
virtual void RemoveObserver(ProjectorSessionObserver* observer) = 0;
bool is_active() const { return active_; }
SourceType preset_source_type() const { return preset_source_type_; }
protected:
// Keep track of the session active state. Only one active session is allowed.
bool active_ = false;
// The preset recording source type for some entry points (i.e: share screen).
SourceType preset_source_type_ = SourceType::kUnset;
};
} // namespace ash
#endif // ASH_PUBLIC_CPP_PROJECTOR_PROJECTOR_SESSION_H_
| [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
108225c5dff725dc8a78e367264b465b6899f5b8 | 65d2b7c396c3f0658f5189b0d550e0e03c05b731 | /libraries/AutonomousDrive/AutonomousDrive.h | 1130c27117d2c5984f83a64d1697788dac36e519 | [] | no_license | MC3-NASA/autonomous_rover | b85d04e5edb0d0f2b8cde47ec636159e8cffa76d | 361ab2561770c3202cc3fd8dd50ea7ba3e9dfe56 | refs/heads/master | 2022-06-14T22:54:29.904556 | 2020-05-07T14:13:13 | 2020-05-07T14:13:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,723 | h | #pragma once
#include <DriveTrain.h> //Deals with spinning the wheels of the rover.
#include <kalmanFilter.h> //Gets IMU device for the rover
#include "coroutine.h"
#include <echo.h>
#include <save.h>
class AutonomousDrive {
public:
kalmanFilter kalman; //A common library for IMU devices.
DriveTrain drive;
coroutine driveCoroutine;
coroutine kalmanCoroutine;
coroutine avoid;
coroutine printData;
coroutine saveData;
enum Rover {
TRACK,
BACKUP,
AVOID,
SUCCESS,
TURNINPLACE,
};
Rover machine;
echo echosensorRight;
echo echosensorLeft;
save saveSD;
int LeftTrigPin = 7;
int LeftRecievePin = 8;
int RightTrigPin = 9;
int RightRecievePin = 10;
double tolerance = kalman.tolerance;//Let's play with different values.
double heading = kalman.orient.heading; //Kalman filters it for you.
double bearing = kalman.roverGPS.bearing; //But you can just call roverGPS (no filter).
double difference = abs(heading-bearing);
int wheelDirection = 0;
int detectionRange = 50; //Centimeters
bool objectDetection = true;
bool SDRecord = true;
bool SerializeDataEnabled = true;
void setup();
void setup(bool isManual);
void calibrate();
void loop();
void backup();
void avoidObstacle();
void followBearing();
void forwards(int speed);
void spin(int r, int motors);
void reset();
void haltRover();
void serializeData();
bool driveToMeter(float meter);
void turnInPlace();
};
| [
"WilliamsNoah1720@gmail.com"
] | WilliamsNoah1720@gmail.com |
59ff0e339cd3246c0d2394e42a0e2921e6d71d48 | 8578ae5be776b49559fa95ce30f6b45b6a82b73a | /src/test/util/transaction_utils.h | 397ec8060a45c3d8e120bc7ce3a29d98f88988ef | [
"MIT"
] | permissive | devcoin/core | 3f9f177bd9d5d2cc54ff95a981cfe88671206ae2 | f67e8b058b4316dd491615dc3f8799a45f396f4a | refs/heads/master | 2023-05-25T03:42:03.998451 | 2023-05-24T07:59:22 | 2023-05-24T08:02:14 | 21,529,485 | 16 | 13 | MIT | 2022-01-07T17:04:18 | 2014-07-05T22:42:13 | C | UTF-8 | C++ | false | false | 1,362 | h | // Copyright (c) 2019-2020 The Bitcoin Core and Devcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef DEVCOIN_TEST_UTIL_TRANSACTION_UTILS_H
#define DEVCOIN_TEST_UTIL_TRANSACTION_UTILS_H
#include <primitives/transaction.h>
#include <array>
class FillableSigningProvider;
class CCoinsViewCache;
// create crediting transaction
// [1 coinbase input => 1 output with given scriptPubkey and value]
CMutableTransaction BuildCreditingTransaction(const CScript& scriptPubKey, int nValue = 0);
// create spending transaction
// [1 input with referenced transaction outpoint, scriptSig, scriptWitness =>
// 1 output with empty scriptPubKey, full value of referenced transaction]
CMutableTransaction BuildSpendingTransaction(const CScript& scriptSig, const CScriptWitness& scriptWitness, const CTransaction& txCredit);
// Helper: create two dummy transactions, each with two outputs.
// The first has nValues[0] and nValues[1] outputs paid to a TxoutType::PUBKEY,
// the second nValues[2] and nValues[3] outputs paid to a TxoutType::PUBKEYHASH.
std::vector<CMutableTransaction> SetupDummyInputs(FillableSigningProvider& keystoreRet, CCoinsViewCache& coinsRet, const std::array<CAmount,4>& nValues);
#endif // DEVCOIN_TEST_UTIL_TRANSACTION_UTILS_H
| [
"fernando@develcuy.com"
] | fernando@develcuy.com |
178e3b65877ee0ab25132ee83a0a942987212610 | 1c67d0d6af7e5bc9a38f6df6fb23bdbf74ab4b5c | /CSES/Graph Algorithms/monsters.cpp | f2496cd56c34d14ea554eff12cc6aa4ce936440e | [
"MIT"
] | permissive | gnomegeek/cp-submissions | ed88306cb4653f356c5e3802299ae5fe8f5264fe | c046be42876794d7cc6216db4e44a23c1174742d | refs/heads/main | 2023-04-23T16:52:32.914265 | 2021-05-05T21:49:47 | 2021-05-05T21:49:47 | 348,818,897 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,179 | cpp | #include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
#define int long long
#define pb push_back
#define F first
#define S second
#define all(x) x.begin(), x.end()
#define pii pair<int, int>
typedef tree<int, null_type, less<int>, rb_tree_tag,
tree_order_statistics_node_update>
wowset;
const int maxn = 2e5 + 100;
const int linf = 1000000000000000000LL;
const int mod = 1000000007LL;
const int inf = INT_MAX;
const int modd = 998244353;
const string yess = "YES";
const string noo = "NO";
int dx[] = {0, 0, 1, -1};
int dy[] = {1, -1, 0, 0};
int gcd(int a, int b) { return b == 0 ? a : gcd(b, a % b); }
int lcm(int a, int b) { return (a / gcd(a, b)) * b; }
int fastexpo(int base, int exp) {
int res = 1;
while (exp > 0) {
if (exp % 2 == 1)
res = (res * base);
exp = exp >> 1;
base = (base * base);
}
return res;
}
int mod_div(int a, int b) { return a * fastexpo(b, mod - 2) % mod; }
bool cases = 0;
bool possible(int i, int j, int r, int c) {
return !(i < 1 || i > r || j < 1 || j > c);
}
bool isBoundary(int i, int j, int r, int c) {
return (i == 1 || i == r || j == 1 || j == c);
}
void letsGO(int test) {
int r, c;
cin >> r >> c;
char mat[r + 1][c + 1];
map<pii, char> mp;
mp[{0, 1}] = 'R';
mp[{0, -1}] = 'L';
mp[{1, 0}] = 'D';
mp[{-1, 0}] = 'U';
vector<vector<int> > mndis(r + 1, vector<int>(c + 1, inf));
queue<pii> Q;
pii start;
for (int i = 1; i <= r; i++) {
for (int j = 1; j <= c; j++) {
cin >> mat[i][j];
if (mat[i][j] == 'A') start = {i, j};
if (mat[i][j] == 'M') Q.push({i, j}), mndis[i][j] = 0;
}
}
int d = 1;
while (!Q.empty()) {
int sz = Q.size();
for (int i = 0; i < sz; i++) {
pii cur = Q.front();
Q.pop();
for (int k = 0; k < 4; k++) {
int x = cur.F + dx[k], y = cur.S + dy[k];
if (possible(x, y, r, c) and mndis[x][y] == inf and mat[x][y] != '#') {
mndis[x][y] = d;
Q.push({x, y});
}
}
}
d++;
}
for (int i = 0; i <= r; i++) {
for (int j = 0; j <= c; j++) {
if (mat[i][j] == '#') mndis[i][j] = 0;
}
}
Q.push(start);
vector<vector<int> > vis(r + 1, vector<int>(c + 1, 0));
vis[start.F][start.S] = 1;
d = 1;
vector<vector<pii> > parent(r + 1, vector<pii>(c + 1, {-1, -1}));
while (!Q.empty()) {
int sz = Q.size();
for (int i = 0; i < sz; i++) {
pii cur = Q.front();
Q.pop();
if (isBoundary(cur.F, cur.S, r, c)) {
pii curr = {cur.F, cur.S};
cout << yess << endl;
vector<pii> paths;
while (curr != start) {
paths.pb(curr);
curr = parent[curr.F][curr.S];
}
paths.pb(start);
cout << paths.size() - 1 << endl;
reverse(all(paths));
vector<char> res;
for (int a = 0; a < paths.size() - 1; a++)
res.pb(mp[{paths[a + 1].F - paths[a].F, paths[a + 1].S - paths[a].S}]);
for (char ch : res) cout << ch;
return;
}
for (int k = 0; k < 4; k++) {
int x = cur.F + dx[k], y = cur.S + dy[k];
if (possible(x, y, r, c) and mndis[x][y] > d and !vis[x][y]) {
vis[x][y] = 1;
Q.push({x, y});
parent[x][y] = cur;
}
}
}
d++;
}
cout << noo << endl;
return;
}
signed main() {
ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0);
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
cout << fixed << setprecision(6);
int TT = 1, cnt = 0;
if (cases) cin >> TT;
while (TT--) letsGO(++cnt);
} | [
"thevatsalagarwal@gmail.com"
] | thevatsalagarwal@gmail.com |
6ba18c76159957ac6ce0b0b999a0ce89713af6ad | dc34a54a225303e172525a9be07f7fb7f3bea3d4 | /string_manipulations/sherlock_and_the_valid_string/sherlock_valid_string.cpp | 1a72979b868bfb96d7830712777567f1c8c4b6e5 | [] | no_license | mcdaniel13/hackerrank | e57d0eda6f1066b1ec5e027534304dc49f7f7075 | d43cf257148b47c984f2b6a93291d21bfaa9e87b | refs/heads/master | 2020-04-22T09:14:19.826466 | 2019-03-05T02:09:22 | 2019-03-05T02:09:22 | 170,265,200 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,696 | cpp | // author: Moongee Cho
// date: 01/31/2019
#include <bits/stdc++.h>
using namespace std;
// Complete the isValid function below.
string isValid(string s) {
map<char,int> letterCount;
map<int, int> removableCount;
for (int i = 0; i < s.length(); ++i) {
letterCount[s[i]]++;
}
for (map<char, int>::iterator it = letterCount.begin(); it != letterCount.end(); it++) {
removableCount[it->second]++;
}
string res;
if (removableCount.size() > 2) {
res = "NO";
} else if (removableCount.size() == 2) {
map<int, int>::iterator it1 = removableCount.begin();
map<int, int>::iterator it2 = it1++;
int numOfLetterAppeared1 = it1->first;
int numOfLetterAppeared2 = it2->first;
int numOfAppearedCount1 = it1->second;
int numOfAppearedCount2 = it2->second;
if (abs(numOfLetterAppeared1-numOfLetterAppeared2) > 1) {
if (numOfLetterAppeared1 > numOfLetterAppeared2 && numOfAppearedCount2 == 1) {
res = "YES";
} else if (numOfLetterAppeared2 > numOfLetterAppeared1 && numOfAppearedCount1 == 1) {
res = "YES";
} else {
res = "NO";
}
} else {
if (numOfAppearedCount1 > 1 && numOfAppearedCount2 > 1) {
res = "NO";
} else {
res = "YES";
}
}
} else {
res = "YES";
}
cout << res << endl;
return res;
}
int main()
{
ofstream fout(getenv("OUTPUT_PATH"));
string s;
getline(cin, s);
string result = isValid(s);
fout << result << "\n";
fout.close();
return 0;
}
| [
"whansrl92@gmail.com"
] | whansrl92@gmail.com |
d7e18ad447c565cfa60ef9ef6f7ec5767d44064d | 8f19b63873145658bcc8066723cbb78323ce75c8 | /src/sysdesktop/DesktopEventDispatcher.cpp | 643bc1aca5b9366e7897a12f4585a669fd47e790 | [
"Apache-2.0"
] | permissive | 0of/WebOS-Magna | c9dfcd310b3e16c4b4e19f34244d4413a3bf3c89 | a0fe2c9708fd4dd07928c11fcb03fb29fdd2d511 | refs/heads/master | 2021-01-13T13:00:29.907133 | 2016-02-01T07:48:41 | 2016-02-01T07:48:41 | 50,822,587 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,301 | cpp | #include "DesktopEventDispatcher.h"
#include "inner/InnerPrivateDataNullPointerException.h"
using namespace Magna::Inner;
#include "DesktopWindow.h"
namespace Magna{
namespace SystemComponent{
namespace Desktop{
DesktopEventDispatcher::DesktopEventDispatcher( RunnableContext *context)
:m_context( context ){
}
DesktopEventDispatcher::~DesktopEventDispatcher(){
}
void DesktopEventDispatcher::postNewWindowRun( const SharedPtr<Window::WindowRoot>& wnd ){
if( !wnd.isNull() ){
auto& _desktop_wnd = DesktopWindow::getDesktopWindow();
assert( !_desktop_wnd.isNull() );
try{
if( !_desktop_wnd.isNull() ){
auto &_wnd_status_bar = _desktop_wnd->getWindowStatusBar();
if( !_wnd_status_bar.isNull() ){
_wnd_status_bar->openNewWindow( wnd );
}
else{
throw InnerPrivateDataNullPointerException();
}
}
else{
throw InnerPrivateDataNullPointerException();
}
}
catch( const InnerPrivateDataNullPointerException& _ex ){
abort();
}
}
}
}
}
}
| [
"Magnusbackyard@live.com"
] | Magnusbackyard@live.com |
2094e95c0cf1d40e8184d3df4404c7ff08646981 | 83f64300a69a9302b0d5e89e1cc5176c0bd5216a | /Mooball/Source/quickmodel.h | caf6f6c2c55a366c3ba40aaebffdf56885555f6a | [] | no_license | qpHalcy0n/Mooball | ac4a026bba0fe20772cd820c31b5720acb945ad3 | 2f660d8cc30377ff7955fb8de6b632519b1e5616 | refs/heads/master | 2021-01-20T22:28:53.632849 | 2014-03-16T01:37:09 | 2014-03-16T01:37:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 695 | h | #ifndef __QUICKMODEL_H_
#define __QUICKMODEL_H_
#include <string>
#include <vector>
#include "tiny_obj_loader.h"
#include "quickimage.h"
class CModelObject
{
public:
CModelObject() {}
~CModelObject() {}
// Return error string or null string
virtual std::string LoadModel(const char* fileName, const char* filePath = NULL) = 0;
protected:
std::vector<int> m_materialDiffuseTextures;
std::vector<int> m_materialSpecularTextures;
private:
};
class COBJModel : public CModelObject
{
public:
COBJModel() {}
~COBJModel() {}
std::string LoadModel(const char* fileName, const char* filePath = NULL);
private:
std::vector<tinyobj::shape_t> m_shapes;
};
#endif | [
"shawn.simonson@gmail.com"
] | shawn.simonson@gmail.com |
d4bd92ed78e168d245ac7a1fc914a61cd86320ea | afe730a0f68c678402b1a6145761c4eaf9206554 | /src/zmq/zmqconfig.h | 607905d9675b1412510afb027987a5ebdd01f91d | [
"MIT"
] | permissive | DEXBET/eliqa | dcbffd23408f10b40f2bcd5d3dea6a5da1a2a352 | 7fa23327a902b0422a07ebb670464445f93e597d | refs/heads/master | 2020-03-18T03:38:48.537663 | 2018-04-09T14:33:29 | 2018-04-09T14:33:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 536 | h | // Copyright (c) 2015 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_ZMQ_ZMQCONFIG_H
#define BITCOIN_ZMQ_ZMQCONFIG_H
#if defined(HAVE_CONFIG_H)
#include "config/eliqa-config.h"
#endif
#include <stdarg.h>
#include <string>
#if ENABLE_ZMQ
#include <zmq.h>
#endif
#include "primitives/block.h"
#include "primitives/transaction.h"
void zmqError(const char *str);
#endif // BITCOIN_ZMQ_ZMQCONFIG_H
| [
"worker@worker"
] | worker@worker |
57a07df9874f1b5fd4c240bfd696219ff961dec7 | 781f351347692832c17ebd43bb90accd1036572d | /Sources/Engine/Src/md5.cpp | 7c71bf991545d4268f855b8564f5adf06c109451 | [] | no_license | fcccode/Jx | 71f9a549c7c6bbd1d00df5ad3e074a7c1c665bd1 | 4b436851508d76dd626779522a080b35cf8edc14 | refs/heads/master | 2020-04-14T07:59:12.814607 | 2017-05-23T07:57:15 | 2017-05-23T07:57:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,169 | cpp | /*
Copyright (C) 1999 Aladdin Enterprises. All rights reserved.
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
L. Peter Deutsch
ghost@aladdin.com
*/
/*$Id: md5.c $ */
/*
Independent implementation of MD5 (RFC 1321).
This code implements the MD5 Algorithm defined in RFC 1321.
It is derived directly from the text of the RFC and not from the
reference implementation.
The original and principal author of md5.c is L. Peter Deutsch
<ghost@aladdin.com>. Other authors are noted in the change history
that follows (in reverse chronological order):
1999-11-04 lpd Edited comments slightly for automatic TOC extraction.
1999-10-18 lpd Fixed typo in header comment (ansi2knr rather than md5).
1999-05-03 lpd Original version.
*/
#include "KWin32.h"
#ifndef TEST
#include "stdio.h"
#include "md5.h"
#include "string.h"
#endif
#ifdef TEST
/*
* Compile with -DTEST to create a self-contained executable test program.
* The test program should print out the same values as given in section
* A.5 of RFC 1321, reproduced below.
*/
#include "stdio.h"
#include "md5.h"
int main(int argc, char *argv[])
{
static const char *const test[7] = {
"", /*d41d8cd98f00b204e9800998ecf8427e*/
"a", /*0cc175b9c0f1b6a831c399e269772661*/
"abc", /*900150983cd24fb0d6963f7d28e17f72*/
"message digest", /*f96b697d7cb7938d525a2f31aaf161d0*/
"abcdefghijklmnopqrstuvwxyz", /*c3fcd3d76192e4007dfb496cca67e13b*/
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
/*d174ab98d277d9f5a5611c2c9f419d9f*/
"12345678901234567890123456789012345678901234567890123456789012345678901234567890" /*57edf4a22be3c955ac49da2e2107b67a*/
};
if (argc > 1)
{
unsigned char ReadBuffer[65536];
size_t ReadBytes = 0;
md5_state_t state;
md5_byte_t digest[16];
md5_init(&state);
FILE *fp = fopen(argv[1], "rb");
if (!fp)
return -1;
while (true)
{
ReadBytes = fread(ReadBuffer, 1, 65536, fp);
if (ReadBytes > 0)
md5_append(&state, (const md5_byte_t *)ReadBuffer, ReadBytes);
if (feof(fp))
{
md5_finish(&state, digest);
break;
}
}
fclose(fp);
fp = NULL;
int i;
printf("File %s:\n", argv[1]);
printf("MD5 = ");
for (i = 0; i < 16; i++)
printf("%02X ", digest[i]);
printf("\n");
printf("MD5 = ");
for (i = 0; i < 16; i++)
printf("%02X", digest[i]);
printf("\n");
return 0;
}
int i;
for (i = 0; i < 7; ++i) {
md5_state_t state;
md5_byte_t digest[16];
int di;
md5_init(&state);
md5_append(&state, (const md5_byte_t *)test[i], strlen(test[i]));
md5_finish(&state, digest);
printf("MD5 (\"%s\") = ", test[i]);
for (di = 0; di < 16; ++di)
printf("%02x ", digest[di]);
printf("\n");
}
return 0;
}
#endif /* TEST */
/*
* For reference, here is the program that computed the T values.
*/
#if 0
#include <math.h>
main()
{
int i;
for (i = 1; i <= 64; ++i) {
unsigned long v = (unsigned long)(4294967296.0 * fabs(sin((double)i)));
printf("#define T%d 0x%08lx\n", i, v);
}
return 0;
}
#endif
/*
* End of T computation program.
*/
#define T1 0xd76aa478
#define T2 0xe8c7b756
#define T3 0x242070db
#define T4 0xc1bdceee
#define T5 0xf57c0faf
#define T6 0x4787c62a
#define T7 0xa8304613
#define T8 0xfd469501
#define T9 0x698098d8
#define T10 0x8b44f7af
#define T11 0xffff5bb1
#define T12 0x895cd7be
#define T13 0x6b901122
#define T14 0xfd987193
#define T15 0xa679438e
#define T16 0x49b40821
#define T17 0xf61e2562
#define T18 0xc040b340
#define T19 0x265e5a51
#define T20 0xe9b6c7aa
#define T21 0xd62f105d
#define T22 0x02441453
#define T23 0xd8a1e681
#define T24 0xe7d3fbc8
#define T25 0x21e1cde6
#define T26 0xc33707d6
#define T27 0xf4d50d87
#define T28 0x455a14ed
#define T29 0xa9e3e905
#define T30 0xfcefa3f8
#define T31 0x676f02d9
#define T32 0x8d2a4c8a
#define T33 0xfffa3942
#define T34 0x8771f681
#define T35 0x6d9d6122
#define T36 0xfde5380c
#define T37 0xa4beea44
#define T38 0x4bdecfa9
#define T39 0xf6bb4b60
#define T40 0xbebfbc70
#define T41 0x289b7ec6
#define T42 0xeaa127fa
#define T43 0xd4ef3085
#define T44 0x04881d05
#define T45 0xd9d4d039
#define T46 0xe6db99e5
#define T47 0x1fa27cf8
#define T48 0xc4ac5665
#define T49 0xf4292244
#define T50 0x432aff97
#define T51 0xab9423a7
#define T52 0xfc93a039
#define T53 0x655b59c3
#define T54 0x8f0ccc92
#define T55 0xffeff47d
#define T56 0x85845dd1
#define T57 0x6fa87e4f
#define T58 0xfe2ce6e0
#define T59 0xa3014314
#define T60 0x4e0811a1
#define T61 0xf7537e82
#define T62 0xbd3af235
#define T63 0x2ad7d2bb
#define T64 0xeb86d391
static void
md5_process(md5_state_t *pms, const md5_byte_t *data /*[64]*/)
{
md5_word_t
a = pms->abcd[0], b = pms->abcd[1],
c = pms->abcd[2], d = pms->abcd[3];
md5_word_t t;
#ifndef ARCH_IS_BIG_ENDIAN
# define ARCH_IS_BIG_ENDIAN 1 /* slower, default implementation */
#endif
#if ARCH_IS_BIG_ENDIAN
/*
* On big-endian machines, we must arrange the bytes in the right
* order. (This also works on machines of unknown byte order.)
*/
md5_word_t X[16];
const md5_byte_t *xp = data;
int i;
for (i = 0; i < 16; ++i, xp += 4)
X[i] = xp[0] + (xp[1] << 8) + (xp[2] << 16) + (xp[3] << 24);
#else /* !ARCH_IS_BIG_ENDIAN */
/*
* On little-endian machines, we can process properly aligned data
* without copying it.
*/
md5_word_t xbuf[16];
const md5_word_t *X;
if (!((data - (const md5_byte_t *)0) & 3)) {
/* data are properly aligned */
X = (const md5_word_t *)data;
} else {
/* not aligned */
memcpy(xbuf, data, 64);
X = xbuf;
}
#endif
#define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32 - (n))))
/* Round 1. */
/* Let [abcd k s i] denote the operation
a = b + ((a + F(b,c,d) + X[k] + T[i]) <<< s). */
#define F(x, y, z) (((x) & (y)) | (~(x) & (z)))
#define SET(a, b, c, d, k, s, Ti)\
t = a + F(b,c,d) + X[k] + Ti;\
a = ROTATE_LEFT(t, s) + b
/* Do the following 16 operations. */
SET(a, b, c, d, 0, 7, T1);
SET(d, a, b, c, 1, 12, T2);
SET(c, d, a, b, 2, 17, T3);
SET(b, c, d, a, 3, 22, T4);
SET(a, b, c, d, 4, 7, T5);
SET(d, a, b, c, 5, 12, T6);
SET(c, d, a, b, 6, 17, T7);
SET(b, c, d, a, 7, 22, T8);
SET(a, b, c, d, 8, 7, T9);
SET(d, a, b, c, 9, 12, T10);
SET(c, d, a, b, 10, 17, T11);
SET(b, c, d, a, 11, 22, T12);
SET(a, b, c, d, 12, 7, T13);
SET(d, a, b, c, 13, 12, T14);
SET(c, d, a, b, 14, 17, T15);
SET(b, c, d, a, 15, 22, T16);
#undef SET
/* Round 2. */
/* Let [abcd k s i] denote the operation
a = b + ((a + G(b,c,d) + X[k] + T[i]) <<< s). */
#define G(x, y, z) (((x) & (z)) | ((y) & ~(z)))
#define SET(a, b, c, d, k, s, Ti)\
t = a + G(b,c,d) + X[k] + Ti;\
a = ROTATE_LEFT(t, s) + b
/* Do the following 16 operations. */
SET(a, b, c, d, 1, 5, T17);
SET(d, a, b, c, 6, 9, T18);
SET(c, d, a, b, 11, 14, T19);
SET(b, c, d, a, 0, 20, T20);
SET(a, b, c, d, 5, 5, T21);
SET(d, a, b, c, 10, 9, T22);
SET(c, d, a, b, 15, 14, T23);
SET(b, c, d, a, 4, 20, T24);
SET(a, b, c, d, 9, 5, T25);
SET(d, a, b, c, 14, 9, T26);
SET(c, d, a, b, 3, 14, T27);
SET(b, c, d, a, 8, 20, T28);
SET(a, b, c, d, 13, 5, T29);
SET(d, a, b, c, 2, 9, T30);
SET(c, d, a, b, 7, 14, T31);
SET(b, c, d, a, 12, 20, T32);
#undef SET
/* Round 3. */
/* Let [abcd k s t] denote the operation
a = b + ((a + H(b,c,d) + X[k] + T[i]) <<< s). */
#define H(x, y, z) ((x) ^ (y) ^ (z))
#define SET(a, b, c, d, k, s, Ti)\
t = a + H(b,c,d) + X[k] + Ti;\
a = ROTATE_LEFT(t, s) + b
/* Do the following 16 operations. */
SET(a, b, c, d, 5, 4, T33);
SET(d, a, b, c, 8, 11, T34);
SET(c, d, a, b, 11, 16, T35);
SET(b, c, d, a, 14, 23, T36);
SET(a, b, c, d, 1, 4, T37);
SET(d, a, b, c, 4, 11, T38);
SET(c, d, a, b, 7, 16, T39);
SET(b, c, d, a, 10, 23, T40);
SET(a, b, c, d, 13, 4, T41);
SET(d, a, b, c, 0, 11, T42);
SET(c, d, a, b, 3, 16, T43);
SET(b, c, d, a, 6, 23, T44);
SET(a, b, c, d, 9, 4, T45);
SET(d, a, b, c, 12, 11, T46);
SET(c, d, a, b, 15, 16, T47);
SET(b, c, d, a, 2, 23, T48);
#undef SET
/* Round 4. */
/* Let [abcd k s t] denote the operation
a = b + ((a + I(b,c,d) + X[k] + T[i]) <<< s). */
#define I(x, y, z) ((y) ^ ((x) | ~(z)))
#define SET(a, b, c, d, k, s, Ti)\
t = a + I(b,c,d) + X[k] + Ti;\
a = ROTATE_LEFT(t, s) + b
/* Do the following 16 operations. */
SET(a, b, c, d, 0, 6, T49);
SET(d, a, b, c, 7, 10, T50);
SET(c, d, a, b, 14, 15, T51);
SET(b, c, d, a, 5, 21, T52);
SET(a, b, c, d, 12, 6, T53);
SET(d, a, b, c, 3, 10, T54);
SET(c, d, a, b, 10, 15, T55);
SET(b, c, d, a, 1, 21, T56);
SET(a, b, c, d, 8, 6, T57);
SET(d, a, b, c, 15, 10, T58);
SET(c, d, a, b, 6, 15, T59);
SET(b, c, d, a, 13, 21, T60);
SET(a, b, c, d, 4, 6, T61);
SET(d, a, b, c, 11, 10, T62);
SET(c, d, a, b, 2, 15, T63);
SET(b, c, d, a, 9, 21, T64);
#undef SET
/* Then perform the following additions. (That is increment each
of the four registers by the value it had before this block
was started.) */
pms->abcd[0] += a;
pms->abcd[1] += b;
pms->abcd[2] += c;
pms->abcd[3] += d;
}
void
md5_init(md5_state_t *pms)
{
pms->count[0] = pms->count[1] = 0;
pms->abcd[0] = 0x67452301;
pms->abcd[1] = 0xefcdab89;
pms->abcd[2] = 0x98badcfe;
pms->abcd[3] = 0x10325476;
}
void
md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes)
{
const md5_byte_t *p = data;
int left = nbytes;
int offset = (pms->count[0] >> 3) & 63;
md5_word_t nbits = (md5_word_t)(nbytes << 3);
if (nbytes <= 0)
return;
/* Update the message length. */
pms->count[1] += nbytes >> 29;
pms->count[0] += nbits;
if (pms->count[0] < nbits)
pms->count[1]++;
/* Process an initial partial block. */
if (offset) {
int copy = (offset + nbytes > 64 ? 64 - offset : nbytes);
memcpy(pms->buf + offset, p, copy);
if (offset + copy < 64)
return;
p += copy;
left -= copy;
md5_process(pms, pms->buf);
}
/* Process full blocks. */
for (; left >= 64; p += 64, left -= 64)
md5_process(pms, p);
/* Process a final partial block. */
if (left)
memcpy(pms->buf, p, left);
}
void
md5_finish(md5_state_t *pms, md5_byte_t digest[16])
{
static const md5_byte_t pad[64] = {
0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
};
md5_byte_t data[8];
int i;
/* Save the length before padding. */
for (i = 0; i < 8; ++i)
data[i] = (md5_byte_t)(pms->count[i >> 2] >> ((i & 3) << 3));
/* Pad to 56 bytes mod 64. */
md5_append(pms, pad, ((55 - (pms->count[0] >> 3)) & 63) + 1);
/* Append the length. */
md5_append(pms, data, 8);
for (i = 0; i < 16; ++i)
digest[i] = (md5_byte_t)(pms->abcd[i >> 2] >> ((i & 3) << 3));
}
| [
"tuan.n0s0und@gmail.com"
] | tuan.n0s0und@gmail.com |
6b67996c558d3f3c519cc8201d128807932328aa | 454a12594de22ba30dd2cb6c5762342fd49f1390 | /src/Helpers.h | f136588d5f7af18b15ed3bfcf00d5237ec345eac | [
"WTFPL",
"MIT"
] | permissive | AbdelghaniDr/ofxMightyUI | bdcb7e2375b196caa285b0831541300e64a7a075 | a89ea5b1bfeda5aada63380126c701bfd21e99d7 | refs/heads/master | 2020-04-05T23:33:21.895256 | 2016-03-08T11:11:56 | 2016-03-08T11:11:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,708 | h | /*
* Images.h
* iPhoneEmptyExample
*
* Created by hansi on 29.01.11.
* Copyright 2011 __MyCompanyName__. All rights reserved.
*
*/
#ifndef MUI_HELPERS
#define MUI_HELPERS
#include "MuiCore.h"
namespace mui{
class TextureAtlas;
class Container;
class Helpers{
public:
static void clearCaches();
static string muiPath( string path );
//static ofTexture * getTexture( string what );
//static ofImage * getImage( string what );
static void beginImages();
static void endImages();
static void drawImage( string name, float x, float y );
static void drawImage( string name, float x, float y, float w, float h );
static MUI_FONT_TYPE * getFont( int size ); // get a font for a specific pixel size
static MUI_FONT_TYPE * getFont( string customFont, int size ); // get a font for a specific pixel size
static void drawString( string s, float x = 0, float y = 0, int size = MUI_FONT_SIZE ); // draw retina friendly string
static void roundedRect(float x, float y, float w, float h, float r);
static void quadraticBezierVertex( float cpx, float cpy, float x, float y, float prevX, float prevY);
static void drawStringWithShadow( std::string s, int x, int y, int fontSize, int r, int g, int b );
static void orientedScissor( float x, float y, float w, float h );
static void pushScissor( Container * c = NULL, float x = 0, float y = 0, float w = -9999, float h = -9999 );
static void pushScissor( Container * c, ofRectangle rect );
static void popScissor();
static void disableMask();
static ofColor rgb( int r, int g, int b, int a = 255 );
static ofColor rgb( int rgb, int a = 255 );
static ofColor rgba( int rgba );
static ofColor grey( int g, int a = 255 );
static bool stringLtString( string a, string b );
static ofRectangle alignBox( Container * container, float width, float height, HorizontalAlign horizontalAlign, VerticalAlign verticalAlign );
static bool inside( Container * container, float x, float y );
static ofTouchEventArgs translateTouch( ofTouchEventArgs &touch, Container * src, Container * dest );
static ofPoint translateCoords( float x, float y, Container * src, Container * dest );
static ofPoint translateCoords( ofPoint pt, Container * src, Container * dest );
private:
static std::map<std::string, ofTexture*> textures;
static std::map<std::string, ofImage*> images;
static std::map<int, MUI_FONT_TYPE*> fonts;
static std::map<string, MUI_FONT_TYPE*> customFonts;
static std::stack<ofRectangle> scissorStack;
// todo: static names would be nice. neato if the compiler can check that an image is there
static mui::TextureAtlas atlas;
};
}
#endif
| [
"super@superduper.org"
] | super@superduper.org |
d0dacc234a99061e35a66c051d32c4fd819f7419 | 877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a | /app/src/main/cpp/dir35435/dir35536/dir35859/dir36113/dir36589/file36695.cpp | 9ddb21b17ea69e0dea00405fe71025fd9cb91121 | [] | no_license | tgeng/HugeProject | 829c3bdfb7cbaf57727c41263212d4a67e3eb93d | 4488d3b765e8827636ce5e878baacdf388710ef2 | refs/heads/master | 2022-08-21T16:58:54.161627 | 2020-05-28T01:54:03 | 2020-05-28T01:54:03 | 267,468,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 115 | cpp | #ifndef file36695
#error "macro file36695 must be defined"
#endif
static const char* file36695String = "file36695"; | [
"tgeng@google.com"
] | tgeng@google.com |
ee46a16732a2fc69bd6b354e662314b8867e5138 | 2e68b0ed8651350eeebd2fecc69129e445446f41 | /蓝桥杯/官网/历届试题/核桃的数量.cpp | d541fb5013bb4d8db7c9adb738152ef53ef00f3b | [] | no_license | Violet-Guo/ACM | 1dd7104172834ad75515d4b0ecba39ec2f90c201 | 7b5781349dc77cb904f522135cb06ad6872f7646 | refs/heads/master | 2021-01-21T04:40:27.151145 | 2016-06-23T01:39:17 | 2016-06-23T01:39:17 | 50,434,940 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 347 | cpp | #include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int main()
{
int a, b, c;
while(scanf("%d %d %d", &a, &b, &c)!=EOF){
int maxn = a;
if(b > maxn) maxn = b;
if(c > maxn) maxn = c;
while(1){
if(maxn%a==0 && maxn%b==0 && maxn%c==0){
printf("%d\n", maxn);
break;
}
maxn++;
}
}
return 0;
}
| [
"iamguojing@qq.com"
] | iamguojing@qq.com |
b42d9d8a1f855ee8547ba38bc81c984b6f66bda9 | 8f50c262f89d3dc4f15f2f67eb76e686b8f808f5 | /Trigger/TrigHypothesis/TrigHLTJetHypo/src/TrigHLTJetHypoUtils/FlowEdge.cxx | 395536ef3e35a7e736a3d480751c5d8d5d3c9b5f | [
"Apache-2.0"
] | permissive | strigazi/athena | 2d099e6aab4a94ab8b636ae681736da4e13ac5c9 | 354f92551294f7be678aebcd7b9d67d2c4448176 | refs/heads/master | 2022-12-09T02:05:30.632208 | 2020-09-03T14:03:18 | 2020-09-03T14:03:18 | 292,587,480 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,579 | cxx | /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
// ********************************************************************
//
// NAME: FlowEdge.cxx
// PACKAGE: Trigger/TrigHypothesis/TrigHLTJetHypo
//
// AUTHOR: P Sherwood
//
// ********************************************************************
//
#include <stdexcept>
#include <sstream>
#include <cmath>
#include "TrigHLTJetHypo/TrigHLTJetHypoUtils/FlowEdge.h"
FlowEdge::FlowEdge(): m_v{0}, m_w{0}, m_capacity(0.), m_flow(0.){}
FlowEdge::FlowEdge(int v, int w, double capacity):
m_v{v}, m_w{w}, m_capacity(capacity), m_flow(0.)
{
if (m_v < 0) {
throw std::out_of_range("FlowEdge: vertex label must be an int >= 0");
}
if (m_w < 0) {
throw std::out_of_range("FlowEdge: vertex label must be an int >= 0");
}
if (capacity < 0.) {
throw std::invalid_argument("FlowEdge: edge capacity must be >= 0.");
}
}
int FlowEdge::from() const noexcept {return m_v;}
int FlowEdge::to() const noexcept {return m_w;}
double FlowEdge::capacity() const noexcept {return m_capacity;}
double FlowEdge::flow() const noexcept {return m_flow;}
double FlowEdge::other(int vertex) const {
if (vertex == m_v){return m_w;}
if (vertex == m_w){return m_v;}
throw std::invalid_argument("FlowEdge: Illegal endpoint");
}
double FlowEdge::residualCapacityTo(int vertex) const {
if(vertex == m_v){return m_flow;}
if(vertex == m_w){return m_capacity - m_flow;}
throw std::invalid_argument("FlowEdge: Illegal endpoint");
}
void FlowEdge::addResidualFlowTo(int vertex, double delta){
if(vertex == m_v){
m_flow -= delta; // forward edge
} else if(vertex == m_w){
m_flow += delta; // backward edge
} else {
throw std::invalid_argument("FlowEdge: Illegal endpoint");
}
if(std::isnan(delta)){
throw std::invalid_argument("FlowEdge: Change in flow == NaN");
}
if(m_flow < 0.){throw std::invalid_argument("FlowEdge: flow < 0.");}
if(m_flow > m_capacity){
throw std::invalid_argument("FlowEdge: exceeds capacity");
}
}
////////////////////////////////////////////////////////////////////
std::ostream& operator << (std::ostream& out, const FlowEdge& e) {
return out << e.from()
<< "->"
<< e.to()
<< " "
<< e.flow()
<<"/"
<< e.capacity();
}
bool operator < (const FlowEdge& lhs, const FlowEdge& rhs){
if(lhs.from() > rhs.from()){return false;}
if(lhs.to() > rhs.to()){return false;}
return true;
}
| [
"graemes.cern@gmail.com"
] | graemes.cern@gmail.com |
ff1831ebf4a98e7571ab0978360e2cfd3b89eedc | 7f62f204ffde7fed9c1cb69e2bd44de9203f14c8 | /DboClient/Lib/NtlSimulation/NtlWareHouse.h | 261cc273aee021a8aea7374be5d2b02137cb418e | [] | no_license | 4l3dx/DBOGLOBAL | 9853c49f19882d3de10b5ca849ba53b44ab81a0c | c5828b24e99c649ae6a2953471ae57a653395ca2 | refs/heads/master | 2022-05-28T08:57:10.293378 | 2020-05-01T00:41:08 | 2020-05-01T00:41:08 | 259,094,679 | 3 | 3 | null | 2020-04-29T17:06:22 | 2020-04-26T17:43:08 | null | UHC | C++ | false | false | 1,957 | h | /*****************************************************************************
*
* File : NtlWareHouse.h
* Author : Hong SungBock
* Copyright : (주)NTL
* Date : 2006. 11. 20
* Abstract : Simulation Warehouse class
*****************************************************************************
* Desc :
*
*****************************************************************************/
#ifndef __NTL_WARE_HOUSE_H__
#define __NTL_WARE_HOUSE_H__
#include "NtlItem.h"
#include "ceventhandler.h"
#include "NtlSLDef.h"
class CNtlSobItem;
struct SNtlEventSobItemAdd;
class CNtlWarehouse : public RWS::CEventHandler
{
public:
CNtlWarehouse();
virtual ~CNtlWarehouse();
void Destroy(void);
SERIAL_HANDLE GetSlotSerailID(RwUInt8 bySlot); ///< 해당 슬롯의 핸들을 반환한다
RwUInt8 FindWarehouseSlot(SERIAL_HANDLE hSerial);///< 인자로 받은 핸들을 가지고 있는 슬롯을 찾는다
RwUInt32 GetZenny(); ///< 창고안의 제니를 반환한다
RwBool IsHaveCommonWarehouse(); ///< 공유 창고를 가지고 있는지 알아본다
RwBool IsRecieveData_from_Server(); ///< 서버로 부터 창고 데이터를 모두 받았는지 여부
virtual void HandleEvents(RWS::CMsg &pMsg);
protected:
CNtlSobItem* CreateItem(void *pParentSobItem, sITEM_PROFILE* pSobItemCreate);
CNtlSobItem* CreateItem(void *pParentSobItem, SNtlEventSobItemAdd *pSobItemAdd);
void CreateEventHandler(RWS::CMsg &pMsg);
void AddEventHandler(RWS::CMsg &pMsg);
void DeleteEventHandler(RWS::CMsg &pMsg);
void ItemMoveEventHandler(RWS::CMsg &pMsg);
void ItemStackMoveEventHandler(RWS::CMsg &msg);
protected:
SERIAL_HANDLE m_hWareHouseSlot[NTL_MAX_BANKSLOT_COUNT];///< 창고 슬롯
RwUInt32 m_uiZenny; ///< 제니
RwBool m_bHaveCommonWarehouse; ///< 공유창고 소유여부
RwBool m_bRecieveData_from_Server; ///< 서버로 부터 창고 데이터를 모두 받았는지 여부
};
#endif | [
"64261665+dboguser@users.noreply.github.com"
] | 64261665+dboguser@users.noreply.github.com |
03ffb5c3fa8cad2128a6e335c3229993389c3c6b | fb613ed947cd77c04bfc0c63f3d2b8363f584d6d | /naivebayes/naivebayes.cpp | f334cd5d66493d72789e52925e10184cbeb3e2a5 | [] | no_license | wenxiaoming/mlalgorithm | 357be6dd58c3709acac258fefd13b73f2cb84b25 | a7d7ee0614d9a4205b9e2b1b3ca26ef84c49f3a2 | refs/heads/master | 2021-05-07T01:49:19.204374 | 2018-07-14T09:53:41 | 2018-07-14T09:53:41 | 110,431,641 | 8 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,983 | cpp | #include "naivebayes.h"
naivebayes::naivebayes(int num)
{
mAttributeNum = num;
}
naivebayes::~naivebayes()
{
}
void naivebayes::loadPositiveSet(vector<string> trainSet)
{
for(auto iter = trainSet.begin(); iter < trainSet.end(); iter++) {
mTrainSet.push_back(*iter);
mLabelSet.push_back(1);
}
}
void naivebayes::loadNegetiveSet(vector<string> trainSet)
{
for(auto iter = trainSet.begin(); iter < trainSet.end(); iter++) {
mTrainSet.push_back(*iter);
mLabelSet.push_back(0);
}
}
vector<int> naivebayes::getAttribute(string dataStr)
{
const char* str = dataStr.c_str();
vector<int> attrVector;
int index = 0;
for (; index < dataStr.size(); ) {
//find the value of the specific attribute
if (isspace(*str)) {
index++;
str++;
continue;
}
int value = 0;
while(*str >= '0'&& *str <= '9') {
value *= 10;
value += (*str -'0');
str++;
index++;
}
attrVector.push_back(value);
}
return attrVector;
}
void naivebayes::splitSet(string dataStr, vector<vector<Attribute>>& attrArray)
{
vector<int> attribute = getAttribute(dataStr);
auto attriter = attrArray.begin();
bool empty = attrArray.empty();
auto dataiter = attribute.begin();
for(; dataiter != attribute.end(); dataiter++) {
int value = *dataiter;
bool found = false;
if(!empty) {
auto iter = (*attriter).begin();
for(; iter != (*attriter).end(); iter++) {
if(value == (*iter).attrvalue) {
(*iter).count++;
found = true;
}
}
}
if(!found) {
Attribute attr;
attr.attrvalue = value;
attr.count = 1;
if(empty) {
vector<Attribute> attriVec;
attriVec.push_back(attr);
attrArray.push_back(attriVec);
} else {
(*attriter).push_back(attr);
}
}
if (!empty)
attriter++;
}
}
void naivebayes::printDataSet(vector<vector<Attribute>> attrArray)
{
auto attriter = attrArray.begin();
int index = 0;
for(; attriter != attrArray.end(); attriter++) {
auto iter = (*attriter).begin();
printf("x%d:\n", index);
for(; iter != (*attriter).end(); iter++)
printf("value:%d count:%d \n", (*iter).attrvalue, (*iter).count);
index++;
}
}
void naivebayes::train()
{
int positivenum = 0;
int negitivenum = 0;
auto labeliter = mLabelSet.begin();
for(auto iter = mTrainSet.begin(); iter < mTrainSet.end(); iter++) {
if(*labeliter == 1) {
//positive type
splitSet(*iter, mPositiveAttrArray);
positivenum++;
} else {
//negetive type
splitSet(*iter, mNegitiveAttrArray);
negitivenum++;
}
labeliter++;
}
printf("*******positive dataset************\n");
printDataSet(mPositiveAttrArray);
printf("*******negetive dataset************\n");
printDataSet(mNegitiveAttrArray);
//calculate p0 and p1
mPositiveProb = (float)positivenum / (positivenum+negitivenum);
mNegetiveProb = 1- mPositiveProb;
printf("positiveProb:%f negetiveProb:%f \n", mPositiveProb, mNegetiveProb);
}
void naivebayes::classify(string testset)
{
vector<int> dataiter = getAttribute(testset);
//calculate the probability
float p0 = mPositiveProb;
float p1 = mNegetiveProb;
auto iter = dataiter.begin();
auto positiveiter = mPositiveAttrArray.begin();
auto negetiveiter = mNegitiveAttrArray.begin();
for(; iter != dataiter.end(); iter++) {
//multiply each attribute's condition probalility
int value = *iter;
int count = 0;
auto attriiter = (*positiveiter).begin();
for(; attriiter!= (*positiveiter).end(); attriiter++) {
if((*attriiter).attrvalue == value)
count = (*attriiter).count;
}
p0 *= (float)count/(*positiveiter).size();
positiveiter++;
attriiter = (*negetiveiter).begin();
for(; attriiter!= (*negetiveiter).end(); attriiter++) {
if((*attriiter).attrvalue == value)
count = (*attriiter).count;
}
p1 *= (float)count/(*negetiveiter).size();
negetiveiter++;
}
printf("for testset:%s p0:%f p1:%f \n", testset.c_str(), p0, p1);
if(p0 > p1)
printf("the class type is 1\n");
else
printf("the class type is 0\n");
}
void naivebayes_test()
{
/* we uses the following dataset to test the bayes classifier, each data includes five attributes(x0~x4),
the label's value(0, 1)'s the type of that data.
we uses the first 7 data set to train the bayes classifier, then we can use the trained classifier to check the type of the last data set.
********************************************************
x0 x1 x2 x3 x4 Label
1 2 4 5 2 0
2 3 7 6 3 1
2 4 5 6 8 0
4 2 6 7 4 1
5 3 4 7 5 1
6 7 9 10 5 1
5 2 7 8 4 0
2 2 7 6 4 ?
*/
naivebayes* bayes = new naivebayes(5);
//init positive dataset
vector<string> positiveset;
positiveset.push_back("2 3 7 6 3");
positiveset.push_back("4 2 6 7 4");
positiveset.push_back("5 3 4 7 5");
positiveset.push_back("6 7 9 10 5");
bayes->loadPositiveSet(positiveset);
//init negetive dataset
vector<string> negetiveset;
negetiveset.push_back("1 2 4 5 2");
negetiveset.push_back("2 4 5 6 8");
negetiveset.push_back("5 2 7 8 4");
bayes->loadNegetiveSet(negetiveset);
//train
bayes->train();
//classify
bayes->classify("2 2 7 6 4");
if(bayes)
delete bayes;
}
| [
"listream@126.com"
] | listream@126.com |
d42ccc74693cfb3e81c1e355a0725322915551c4 | f551ec254357a6f6b04f1b4bd00a93ebecdaf78c | /network/asio/detail/timer_queue.hpp | 419b7f5cbee074d5fc43dcab6478806da9716a4d | [] | no_license | mjssw/async_io | 41c9f7537da350a5aeaa37e5d2e6f666d5c598aa | 473aa3641b5b35bf06ed585b081313a40ac47940 | refs/heads/master | 2021-01-10T06:45:48.046262 | 2015-12-07T08:03:35 | 2015-12-07T08:03:35 | 47,536,902 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,311 | hpp | //
// detail/timer_queue.hpp
// ~~~~~~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef ASIO_DETAIL_TIMER_QUEUE_HPP
#define ASIO_DETAIL_TIMER_QUEUE_HPP
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
# pragma once
#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
#include "asio/detail/config.hpp"
#include <cstddef>
#include <vector>
#include "asio/detail/cstdint.hpp"
#include "asio/detail/limits.hpp"
#include "asio/detail/op_queue.hpp"
#include "asio/detail/timer_queue_base.hpp"
#include "asio/detail/wait_op.hpp"
#include "asio/error.hpp"
#include "asio/detail/push_options.hpp"
namespace asio {
namespace detail {
template <typename Time_Traits>
class timer_queue
: public timer_queue_base
{
public:
// The time type.
typedef typename Time_Traits::time_type time_type;
// The duration type.
typedef typename Time_Traits::duration_type duration_type;
// Per-timer data.
class per_timer_data
{
public:
per_timer_data() :
heap_index_((std::numeric_limits<std::size_t>::max)()),
next_(0), prev_(0)
{
}
private:
friend class timer_queue;
// The operations waiting on the timer.
op_queue<wait_op> op_queue_;
// The index of the timer in the heap.
std::size_t heap_index_;
// Pointers to adjacent timers in a linked list.
per_timer_data* next_;
per_timer_data* prev_;
};
// Constructor.
timer_queue()
: timers_(),
heap_()
{
}
// Add a new timer to the queue. Returns true if this is the timer that is
// earliest in the queue, in which case the reactor's event demultiplexing
// function call may need to be interrupted and restarted.
bool enqueue_timer(const time_type& time, per_timer_data& timer, wait_op* op)
{
// Enqueue the timer object.
if (timer.prev_ == 0 && &timer != timers_)
{
if (this->is_positive_infinity(time))
{
// No heap entry is required for timers that never expire.
timer.heap_index_ = (std::numeric_limits<std::size_t>::max)();
}
else
{
// Put the new timer at the correct position in the heap. This is done
// first since push_back() can throw due to allocation failure.
timer.heap_index_ = heap_.size();
heap_entry entry = { time, &timer };
heap_.push_back(entry);
up_heap(heap_.size() - 1);
}
// Insert the new timer into the linked list of active timers.
timer.next_ = timers_;
timer.prev_ = 0;
if (timers_)
timers_->prev_ = &timer;
timers_ = &timer;
}
// Enqueue the individual timer operation.
timer.op_queue_.push(op);
// Interrupt reactor only if newly added timer is first to expire.
return timer.heap_index_ == 0 && timer.op_queue_.front() == op;
}
// Whether there are no timers in the queue.
virtual bool empty() const
{
return timers_ == 0;
}
// Get the time for the timer that is earliest in the queue.
virtual long wait_duration_msec(long max_duration) const
{
if (heap_.empty())
return max_duration;
return this->to_msec(
Time_Traits::to_posix_duration(
Time_Traits::subtract(heap_[0].time_, Time_Traits::now())),
max_duration);
}
// Get the time for the timer that is earliest in the queue.
virtual long wait_duration_usec(long max_duration) const
{
if (heap_.empty())
return max_duration;
return this->to_usec(
Time_Traits::to_posix_duration(
Time_Traits::subtract(heap_[0].time_, Time_Traits::now())),
max_duration);
}
// Dequeue all timers not later than the current time.
virtual void get_ready_timers(op_queue<operation>& ops)
{
if (!heap_.empty())
{
const time_type now = Time_Traits::now();
while (!heap_.empty() && !Time_Traits::less_than(now, heap_[0].time_))
{
per_timer_data* timer = heap_[0].timer_;
ops.push(timer->op_queue_);
remove_timer(*timer);
}
}
}
// Dequeue all timers.
virtual void get_all_timers(op_queue<operation>& ops)
{
while (timers_)
{
per_timer_data* timer = timers_;
timers_ = timers_->next_;
ops.push(timer->op_queue_);
timer->next_ = 0;
timer->prev_ = 0;
}
heap_.clear();
}
// Cancel and dequeue operations for the given timer.
std::size_t cancel_timer(per_timer_data& timer, op_queue<operation>& ops,
std::size_t max_cancelled = (std::numeric_limits<std::size_t>::max)())
{
std::size_t num_cancelled = 0;
if (timer.prev_ != 0 || &timer == timers_)
{
while (wait_op* op = (num_cancelled != max_cancelled)
? timer.op_queue_.front() : 0)
{
op->ec_ = asio::error::operation_aborted;
timer.op_queue_.pop();
ops.push(op);
++num_cancelled;
}
if (timer.op_queue_.empty())
remove_timer(timer);
}
return num_cancelled;
}
// Move operations from one timer to another, empty timer.
void move_timer(per_timer_data& target, per_timer_data& source)
{
target.op_queue_.push(source.op_queue_);
target.heap_index_ = source.heap_index_;
source.heap_index_ = (std::numeric_limits<std::size_t>::max)();
if (target.heap_index_ < heap_.size())
heap_[target.heap_index_].timer_ = ⌖
if (timers_ == &source)
timers_ = ⌖
if (source.prev_)
source.prev_->next_ = ⌖
if (source.next_)
source.next_->prev_= ⌖
target.next_ = source.next_;
target.prev_ = source.prev_;
source.next_ = 0;
source.prev_ = 0;
}
private:
// Move the item at the given index up the heap to its correct position.
void up_heap(std::size_t index)
{
while (index > 0)
{
std::size_t parent = (index - 1) / 2;
if (!Time_Traits::less_than(heap_[index].time_, heap_[parent].time_))
break;
swap_heap(index, parent);
index = parent;
}
}
// Move the item at the given index down the heap to its correct position.
void down_heap(std::size_t index)
{
std::size_t child = index * 2 + 1;
while (child < heap_.size())
{
std::size_t min_child = (child + 1 == heap_.size()
|| Time_Traits::less_than(
heap_[child].time_, heap_[child + 1].time_))
? child : child + 1;
if (Time_Traits::less_than(heap_[index].time_, heap_[min_child].time_))
break;
swap_heap(index, min_child);
index = min_child;
child = index * 2 + 1;
}
}
// Swap two entries in the heap.
void swap_heap(std::size_t index1, std::size_t index2)
{
heap_entry tmp = heap_[index1];
heap_[index1] = heap_[index2];
heap_[index2] = tmp;
heap_[index1].timer_->heap_index_ = index1;
heap_[index2].timer_->heap_index_ = index2;
}
// Remove a timer from the heap and list of timers.
void remove_timer(per_timer_data& timer)
{
// Remove the timer from the heap.
std::size_t index = timer.heap_index_;
if (!heap_.empty() && index < heap_.size())
{
if (index == heap_.size() - 1)
{
heap_.pop_back();
}
else
{
swap_heap(index, heap_.size() - 1);
heap_.pop_back();
if (index > 0 && Time_Traits::less_than(
heap_[index].time_, heap_[(index - 1) / 2].time_))
up_heap(index);
else
down_heap(index);
}
}
// Remove the timer from the linked list of active timers.
if (timers_ == &timer)
timers_ = timer.next_;
if (timer.prev_)
timer.prev_->next_ = timer.next_;
if (timer.next_)
timer.next_->prev_= timer.prev_;
timer.next_ = 0;
timer.prev_ = 0;
}
// Determine if the specified absolute time is positive infinity.
template <typename Time_Type>
static bool is_positive_infinity(const Time_Type&)
{
return false;
}
// Helper function to convert a duration into milliseconds.
template <typename Duration>
long to_msec(const Duration& d, long max_duration) const
{
if (d.ticks() <= 0)
return 0;
int64_t msec = d.total_milliseconds();
if (msec == 0)
return 1;
if (msec > max_duration)
return max_duration;
return static_cast<long>(msec);
}
// Helper function to convert a duration into microseconds.
template <typename Duration>
long to_usec(const Duration& d, long max_duration) const
{
if (d.ticks() <= 0)
return 0;
int64_t usec = d.total_microseconds();
if (usec == 0)
return 1;
if (usec > max_duration)
return max_duration;
return static_cast<long>(usec);
}
// The head of a linked list of all active timers.
per_timer_data* timers_;
struct heap_entry
{
// The time when the timer should fire.
time_type time_;
// The associated timer with enqueued operations.
per_timer_data* timer_;
};
// The heap of timers, with the earliest timer at the front.
std::vector<heap_entry> heap_;
};
} // namespace detail
} // namespace asio
#include "asio/detail/pop_options.hpp"
#endif // ASIO_DETAIL_TIMER_QUEUE_HPP
| [
"mjssw@163.com"
] | mjssw@163.com |
5e9ab5e416f9744e7abce449e23b567d3507dd97 | f0654a3d2fc2305a00d906fc359b2195a473c21d | /iotchain/include/ChainTypes.h | d5b217c19545d087ddcbf0d8dfb6e4aed87d4bc0 | [] | no_license | echads/iotchain | 50ca4b05afcb3161a4a2e506563ad25b01df4e73 | fa3cb1227a5d55ddb2b2c52f7ecef3fa9e8b070f | refs/heads/master | 2021-09-15T23:41:25.858852 | 2018-06-12T21:47:27 | 2018-06-12T21:47:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,701 | h | #ifndef CHAIN_TYPES_H
#define CHAIN_TYPES_H
#define _CHAIN_THINGS_BEGIN namespace chainthings {
#define _CHAIN_THINGS_END }
#define MAIN_NETWORK_ID 4
#include <vector>
#include <utility>
#include "json.hpp"
#include "CryptoTypes.h"
namespace CryptoPP
{
class SHA256;
}
_CHAIN_THINGS_BEGIN
enum KeyType : uint8_t { account_public_key = 0, smart_contract_public_key = 87, account_private_key = 128, smart_contract_private_key = 28 };
enum KeyPairType : uint8_t { account_key, smart_contract_key };
struct TXInput
{
uint64_t amount_;
std::vector<uint8_t> data_;
};
struct TXOutput
{
uint64_t amount_;
Crypto::PublicKey to_;
};
struct TXPrefix
{
uint64_t time_;
std::vector<TXInput> inputs_;
std::vector<TXOutput> outputs_;
std::vector<uint8_t> extra_;
};
struct TX : public TXPrefix
{
Crypto::PublicKey from_;
Crypto::Signature signature_;
};
struct BlockHeader
{
uint32_t nonce_;
uint64_t timestamp_;
Crypto::Hash prev_block_hash_;
};
struct Block : public BlockHeader
{
TX coinbase_;
std::vector<TX> tx_list_;
};
struct TXHash : public Crypto::Hash
{
public:
TXHash(const TX& tx);
TXHash(const TX& tx, CryptoPP::SHA256& sha256);
};
struct BlockHash : public Crypto::Hash
{
public:
BlockHash(const Block& bl);
};
struct KeyPair : private std::pair<Crypto::SecretKey, Crypto::PublicKey>
{
KeyPair(Crypto::SecretKey secret, Crypto::PublicKey pub)
{
this->first = secret;
this->second = pub;
}
KeyPair(KeyPairType type = account_key);
const Crypto::SecretKey secret_key() const
{
return this->first;
}
const Crypto::PublicKey public_key() const
{
return this->second;
}
};
extern uint8_t g_network_id;
_CHAIN_THINGS_END
#endif //CHAIN_TYPES_H | [
"mail@sezercantanisman.com.tr"
] | mail@sezercantanisman.com.tr |
76f37aad5ca1a6016cc8950aa453a2e0297c7c2d | 247da8766eb8175241efe6588a6372e1ebd1a13a | /LeetCode/LeetCode/LeetCode/Nim Game.cpp | 76a93e2a974717b1eb8afd8acd425345c5e7ca05 | [] | no_license | Takechiyoo/C-Code | 6b0549e950fd9ffdd8c708a37673941d29e4bcd6 | bd3510968a0ae53642a6c7345cb71bf170ad5f47 | refs/heads/master | 2021-01-10T15:04:24.168996 | 2016-05-08T07:49:32 | 2016-05-08T07:49:32 | 48,311,694 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,326 | cpp | #include<iostream>
using namespace std;
/**
* You are playing the following Nim Game with your friend: There is a heap of stones on the table, each time one of you take turns to remove 1 to 3 stones.
* The one who removes the last stone will be the winner. You will take the first turn to remove the stones.
*
* Both of you are very clever and have optimal strategies for the game. Write a function to determine whether you can win the game given the number of stones in the heap.
*For example, if there are 4 stones in the heap, then you will never win the game: no matter 1, 2, or 3 stones you remove, the last stone will always be removed by your friend.
*
* 分析:随便举几个例子就可以发现当对方拿了石头之后,如果还剩4个那我必输无疑,否则我就会赢。
* 所以,如果 n - 4 返回true,那么 n 就返回true。采用递归这样的方法,会超时也不是最简单的办法。 事实上,通过举例子可以发现第一个不满足的就是n=4,也就是说只要是4的倍数,那么必输。
*
*/
class Solution {
public:
bool canWinNim(int n) {
if (n % 4 == 0)
return false;
else
return true;
}
/*
bool canWinNim(int n) {
if (n == 1 || n == 2 || n == 3)
return true;
if (n == 4)
return false;
return canWinNim(n - 4);
}
*/
};
| [
"731806744@qq.com"
] | 731806744@qq.com |
4b3480a7a3d21fa2796aaedb58a88c18aeba5229 | 642f12af5a370b5eda32a68732eafeb7298b6877 | /example/src/ofApp.cpp | f8ce9939a415f4e4e231cea928d5ff8de72d0bed | [
"MIT"
] | permissive | fred-dev/ofxBlobTracker | 4b506f655c38a326ff94eeec93f7fb0001a96981 | 4f879ec389e21c35a8f95cc04f16151f99dbb0be | refs/heads/master | 2021-12-14T04:24:11.706248 | 2021-12-05T15:25:54 | 2021-12-05T15:25:54 | 210,614,860 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,279 | cpp | #include "ofApp.h"
//--------------------------------------------------------------
void ofApp::setup(){
#ifdef _USE_LIVE_VIDEO
vidGrabber.setVerbose(true);
vidGrabber.initGrabber(width,height);
#else
vidPlayer.load("4 people slow-close-freestle.mov");
vidPlayer.play();
width= vidPlayer.getWidth();
height= vidPlayer.getHeight();
cout<<ofToString(width) + " " + ofToString(height)<<endl;
#endif
drawWidth = 400;
drawHeight = drawWidth / width * height;
cout<<ofToString(drawWidth) + " " + ofToString(drawHeight)<<endl;
colorImg.allocate(width,height);
grayImage.allocate(width,height);
threshold = 20;
ofAddListener(blobTracker.blobAdded, this, &ofApp::blobAdded);
ofAddListener(blobTracker.blobMoved, this, &ofApp::blobMoved);
ofAddListener(blobTracker.blobDeleted, this, &ofApp::blobDeleted);
panel.setup("Blob manager", "settings.xml", 10, 100);
panel.add(blobTracker.params);
panel.loadFromFile( "settings.xml");
}
//--------------------------------------------------------------
void ofApp::update(){
ofBackground(100,100,100);
bool bNewFrame = false;
#ifdef _USE_LIVE_VIDEO
vidGrabber.update();
bNewFrame = vidGrabber.isFrameNew();
#else
vidPlayer.update();
bNewFrame = vidPlayer.isFrameNew();
#endif
if (bNewFrame){
#ifdef _USE_LIVE_VIDEO
colorImg.setFromPixels(vidGrabber.getPixels().getData(), width,height);
#else
colorImg.setFromPixels(vidPlayer.getPixels().getData(), width,height);
#endif
grayImage = colorImg;
blobTracker.update(grayImage);
}
}
//--------------------------------------------------------------
void ofApp::draw(){
// draw the incoming, the grayscale, the bg and the thresholded difference
ofSetColor(255);
colorImg.draw(20,20, drawWidth, drawHeight);
grayImage.draw(drawWidth + 40 ,20,drawWidth, drawHeight );
// then draw the contours:
blobTracker.draw(20,20,drawWidth, drawHeight);
//
// // or, instead we can draw each blob individually,
// // this is how to get access to them:
ofPushView();
ofTranslate(drawWidth+40, 20);
ofPushStyle();
for (int i = 0; i < blobTracker.size(); i++){
ofFill();
ofSetColor(255,0,0);
ofDrawCircle((blobTracker[i].centroid.x) * drawWidth , (blobTracker[i].centroid.y) * drawHeight ,10);
ofSetColor(0);
ofDrawBitmapString(ofToString( blobTracker[i].id ),(blobTracker[i].centroid.x) * drawWidth , (blobTracker[i].centroid.y) * drawHeight);
}
ofPopStyle();
ofPopView();
panel.draw();
}
void ofApp::blobAdded(ofxBlob &_blob){
ofLog(OF_LOG_NOTICE, "Blob ID " + ofToString(_blob.id) + " added" );
}
void ofApp::blobMoved(ofxBlob &_blob){
ofLog(OF_LOG_NOTICE, "Blob ID " + ofToString(_blob.id) + " moved" );
}
void ofApp::blobDeleted(ofxBlob &_blob){
ofLog(OF_LOG_NOTICE, "Blob ID " + ofToString(_blob.id) + " deleted" );
}
//--------------------------------------------------------------
void ofApp::keyPressed(int key){
switch (key){
case ' ':
blobTracker.bUpdateBackground = true;
break;
case '+':
threshold ++;
if (threshold > 255) threshold = 255;
break;
case '-':
threshold --;
if (threshold < 0) threshold = 0;
break;
}
}
//--------------------------------------------------------------
void ofApp::keyReleased(int key){
}
//--------------------------------------------------------------
void ofApp::mouseMoved(int x, int y ){
}
//--------------------------------------------------------------
void ofApp::mouseDragged(int x, int y, int button){
}
//--------------------------------------------------------------
void ofApp::mousePressed(int x, int y, int button){
}
//--------------------------------------------------------------
void ofApp::mouseReleased(int x, int y, int button){
}
//--------------------------------------------------------------
void ofApp::windowResized(int w, int h){
}
//--------------------------------------------------------------
void ofApp::gotMessage(ofMessage msg){
}
//--------------------------------------------------------------
void ofApp::dragEvent(ofDragInfo dragInfo){
}
| [
"fredaudio@gmail.com"
] | fredaudio@gmail.com |
9b1cd83a00054199ec3a3771d5a705ae683c344a | 8aa5cd4de3323f6f3518834406ed51a27eed2c31 | /src/meta/lang.conv.h | 6aa9b5486a8700a83ee85aaeb8e2142da20f7ec7 | [
"Zlib"
] | permissive | raptoravis/two | c07b0583ee643c2375323a74802850c3449ac610 | 4366fcf8b3072d0233eb8e1e91ac1105194f60f5 | refs/heads/master | 2020-07-24T12:32:48.848094 | 2019-09-12T00:51:43 | 2019-09-12T00:51:43 | 207,928,784 | 0 | 0 | Zlib | 2019-09-12T00:09:58 | 2019-09-12T00:09:58 | null | UTF-8 | C++ | false | false | 476 | h | #pragma once
#include <lang/Types.h>
#if !defined TWO_MODULES || defined TWO_TYPE_LIB
#include <refl/Meta.h>
#include <refl/Enum.h>
#include <infra/StringOps.h>
#endif
namespace two
{
export_ template <> inline void to_value(const string& str, two::Language& val) { val = two::Language(enu<two::Language>().value(str.c_str())); };
export_ template <> inline void to_string(const two::Language& val, string& str) { str = enu<two::Language>().name(uint32_t(val)); };
}
| [
"hugo.amiard@laposte.net"
] | hugo.amiard@laposte.net |
ef0899f7949678bbbbf52f01db209d9f8b3725e2 | 8b55a537e29dba5ade3dce917e3f08fe57a576da | /autofocusprocessmanager.cpp | 205a515f0b551c3f7fceaa5c065368124395f2a9 | [] | no_license | relaxesemind/Atlant2018 | a5a1b19c569a3090386267ddb74a2da8b970b39c | dfbd6ca336683ee816302074e566572464d057f1 | refs/heads/master | 2021-04-27T00:28:06.182844 | 2018-07-03T13:48:54 | 2018-07-03T13:48:54 | 123,820,105 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,575 | cpp | #include "autofocusprocessmanager.h"
void AutoFocusProcessManager::setCore(Core *core)
{
corethis = core;
}
void AutoFocusProcessManager::getCurrentFrame()
{
currentFrame = *corethis->lastFrame.get();
}
int AutoFocusProcessManager::start()
{
lastCalculatedValue = AutoFocusMath::getInstance().valueOfDefocusingCurve(currentFrame);
// emit focusingValueWasChanged(static_cast<int> (lastCalculatedValue));
return static_cast<int> (lastCalculatedValue);
}
void AutoFocusProcessManager::stop()
{
}
qreal AutoFocusMath::getCurrentMaxFocusValue() const
{
return currentMaxFocusValue;
}
qreal AutoFocusMath::defocusingCurveLaplace(const QImage& currentFrameImage)
{
qreal Lk = 0;
for (qint32 y = 1; y < currentFrameImage.height() - 1; ++y)
for (qint32 x = 1; x < currentFrameImage.width() - 1; ++x)
{
qreal laplacian = (1/6) * (4 * brignessInPos(x,y,currentFrameImage) -
(brignessInPos(x - 1,y,currentFrameImage) + brignessInPos(x,y - 1,currentFrameImage)
+ brignessInPos(x + 1,y,currentFrameImage) + brignessInPos(x, y + 1,currentFrameImage)));
Lk += std::abs(laplacian);
}
return Lk;
}
qreal AutoFocusMath::defocusingCurveStandardDeviation(const QImage& currentFrameImage)
{
qreal Gk = 0;
qint64 averageBrightness = 0;
// qDebug() << currentFrameImage;
//
// for(qint32 y = 0; y < img.height(); ++y)
// for(qint32 x = 0; x < img.width(); ++x) {
// if ((!array[y][x]) and (isBlack(x,y,img))) {
// fill(img,array,x,y,L++);
// }
// }
for (qint32 y = 0; y < currentFrameImage.height(); ++y)
for (qint32 x = 0; x < currentFrameImage.width(); ++x)
{
averageBrightness += brignessInPos(x,y,currentFrameImage);
}
qint64 sizeOfImage = currentFrameImage.height() * currentFrameImage.width();
if (sizeOfImage == 0) sizeOfImage = 1;
averageBrightness /= sizeOfImage;
for (qint32 y = 0; y < currentFrameImage.height(); ++y)
for (qint32 x = 0; x < currentFrameImage.width(); ++x)
{
Gk += std::pow(brignessInPos(x,y,currentFrameImage) - averageBrightness, 2);
}
return Gk;
}
qreal AutoFocusMath::valueOfDefocusingCurve(const QImage& currentFrameImage)
{
qreal newValue = 0.5 * (defocusingCurveStandardDeviation(currentFrameImage)
+ defocusingCurveLaplace(currentFrameImage));
newValue /= 1000000;
//qDebug () << "newValue = " << newValue;
currentMaxFocusValue = std::max(currentMaxFocusValue,newValue);
// qDebug () << currentMaxFocusValue;
emit readyToGetNewFrame();
return newValue;
}
qint32 AutoFocusMath::brignessInPos(qint32 xPos, qint32 yPos, const QImage& currentFrameImage)
{
QRgb pixel = currentFrameImage.pixel(xPos,yPos);
return (qRed(pixel) + qBlue(pixel) + qGreen(pixel)) / 3;
}
AutoFocusRunnable::AutoFocusRunnable( QObject* parent)
{
m_stopped = false;
}
void AutoFocusRunnable::onStop()
{
m_stopped = true;
}
void AutoFocusRunnable::onStart()
{
m_stopped = false;
}
bool AutoFocusRunnable::isActive()
{
return !m_stopped;
}
/**
* Общий алгоритм движения камеры при автофокусировке:
* + 1) посчитать значение в текущем положении (усредненное 20 кадров)
* 2) Двигемся вверх и считаем усредненное значение "налету"
* 2.1) Если значение увеличивается то продолжаем движение
* 2.1.1) Если оно начало уменьшаться то останавливаемся - ТОЧКА НАЙДЕНА
* 2.2) Если значение уменьшается то возвращаемся в исходное положение
* 2.2.1) Двигаемся вниз и считаем усредненное значение "налету"
* 2.2.2) Если оно начало уменьшаться то мы значально в максимуме - ТОЧКА НАЙДЕНА
* 2.2.3) Если оно начало увеличиваться то продолжаемся движение до уменьшения - ТОЧКА
*
**/
void AutoFocusRunnable::run()
{
forever {
if( m_stopped ) {
break;
}
AutoFocusProcessManager::sharedManager().getCurrentFrame();
int value = AutoFocusProcessManager::sharedManager().start();
emit newValueFocus(value);
}
}
| [
"relaxesguitar@gmail.com"
] | relaxesguitar@gmail.com |
cff977cf769a414cf193306ff28ae8830d19f014 | c09719111455e219f0055f6e5f6780b34bf6e915 | /dbms/include/DB/DataStreams/EmptyBlockOutputStream.h | 238f82eb85253132da1c7d2ced469458e14a5480 | [
"Apache-2.0"
] | permissive | StarWix/ClickHouse | 0379ea22098977ebf781388f1bb513303c3188e7 | 6f106c748eed98ceb492768f0ca73cc51dc4da60 | refs/heads/master | 2021-01-21T06:59:56.012787 | 2017-02-27T07:01:52 | 2017-02-27T07:01:52 | 83,303,559 | 1 | 0 | null | 2017-02-27T11:35:36 | 2017-02-27T11:35:36 | null | UTF-8 | C++ | false | false | 748 | h | #pragma once
#include <DB/DataStreams/IBlockOutputStream.h>
namespace DB
{
namespace ErrorCodes
{
extern const int CANNOT_WRITE_TO_EMPTY_BLOCK_OUTPUT_STREAM;
}
/** При попытке записать в этот поток блоков, кидает исключение.
* Используется там, где, в общем случае, нужно передать поток блоков, но в некоторых случаях, он не должен быть использован.
*/
class EmptyBlockOutputStream : public IBlockOutputStream
{
public:
void write(const Block & block) override
{
throw Exception("Cannot write to EmptyBlockOutputStream", ErrorCodes::CANNOT_WRITE_TO_EMPTY_BLOCK_OUTPUT_STREAM);
}
};
}
| [
"milovidov@yandex-team.ru"
] | milovidov@yandex-team.ru |
09cb640c9cc35534fd428b49383c3fde3913df2f | da48b20669aa520a0822eac5d297abfa1474d6e5 | /05_00_00/sequences/game.cpp | f6f780978946c1b388f2ad5678fb0418de4059dc | [] | no_license | supercaracal/study-of-cpp-in-windows | 150eaa93c5ccb9d92a7477eac909555166364601 | 5237acca36dbaec3aaf61567501712c3a750e95d | refs/heads/master | 2021-07-11T09:43:29.748414 | 2020-05-16T14:12:00 | 2020-05-16T14:12:00 | 122,839,270 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,000 | cpp | #include "game.h"
namespace caracal {
namespace sequences {
game::game(const char* stage_file_name) :
m_loaded(false),
m_data_size(HEIGHT * WIDTH),
m_close_requested(false)
{
char* stg = load_stage(STAGE_DATA_DIR, stage_file_name);
if (stg == NULL) {
return;
}
std::map<char, image*> imgs = load_assets(ASSETS_DIR);
m_state = new state(stg, imgs);
m_store = new store(HEIGHT, WIDTH);
delete[] stg;
m_loaded = true;
}
game::~game() {
delete m_state;
delete m_store;
}
sequence* game::execute(char c) {
COMMAND cmd;
switch (c) {
case 'w':
cmd = COMMAND::UP;
break;
case 'z':
cmd = COMMAND::DOWN;
break;
case 's':
cmd = COMMAND::RIGHT;
break;
case 'a':
cmd = COMMAND::LEFT;
break;
case 'q':
m_close_requested = true;
cmd = COMMAND::NONE;
break;
default:
cmd = COMMAND::NONE;
break;
}
state::pos delta = convert_cmd_to_delta(cmd);
m_state->move(delta);
m_state->update_data(m_store);
if (is_goal()) {
return new you_win();
} else {
return this;
}
}
unsigned* game::data() const {
return m_store->data();
}
unsigned game::data_size() const {
return m_data_size;
}
bool game::is_goal() const {
return m_state->is_goal();
}
bool game::should_close() const {
return m_close_requested;
}
char* game::load_stage(const char* data_dir, const char* file_name) {
std::stringstream ss;
ss << repo_path << data_dir << '/' << file_name;
std::ifstream ifs(ss.str().data(), std::ifstream::in);
if (ifs.fail()) return NULL;
ifs.seekg(0, ifs.end);
int length = static_cast<int>(ifs.tellg()) + 1;
ifs.seekg(0, ifs.beg);
char* buffer = new char[length];
ifs.read(buffer, length);
buffer[length - 1] = '\0';
return buffer;
}
std::map<char, image*> game::load_assets(const char* assets_dir) {
std::map<char, image*> imgs;
imgs['o'] = load_image(assets_dir, "baggage.dds");
imgs['O'] = load_image(assets_dir, "baggage_on_the_goal.dds");
imgs['.'] = load_image(assets_dir, "goal.dds");
imgs[' '] = load_image(assets_dir, "grass.dds");
imgs['p'] = load_image(assets_dir, "player.dds");
imgs['P'] = load_image(assets_dir, "player_on_the_goal.dds");
imgs['#'] = load_image(assets_dir, "wall.dds");
return imgs;
}
image* game::load_image(const char* assets_dir, const char* file_name) {
std::stringstream ss;
ss << repo_path << assets_dir << '/' << file_name;
return new image(ss.str().data(), MAX_CELL_SIZE, MAX_CELL_SIZE);
}
bool game::load_failed() const {
return !m_loaded;
}
state::pos game::convert_cmd_to_delta(COMMAND cmd) const {
state::pos delta = { 0, 0 };
switch (cmd) {
case COMMAND::UP:
--delta.y;
break;
case COMMAND::DOWN:
++delta.y;
break;
case COMMAND::LEFT:
--delta.x;
break;
case COMMAND::RIGHT:
++delta.x;
break;
default:
break;
}
return delta;
}
}
} | [
"supercaracal@yahoo.com"
] | supercaracal@yahoo.com |
69c3a201cc8bb97bdfcac43ceac17c8bdd05b560 | 5ebd5cee801215bc3302fca26dbe534e6992c086 | /blazemark/src/blaze/TMat3TMat3Add.cpp | 5ceab0c2378854b9d2d27c25dbbc43629d341d08 | [
"BSD-3-Clause"
] | permissive | mhochsteger/blaze | c66d8cf179deeab4f5bd692001cc917fe23e1811 | fd397e60717c4870d942055496d5b484beac9f1a | refs/heads/master | 2020-09-17T01:56:48.483627 | 2019-11-20T05:40:29 | 2019-11-20T05:41:35 | 223,951,030 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,695 | cpp | //=================================================================================================
/*!
// \file src/blaze/TMat3TMat3Add.cpp
// \brief Source file for the Blaze 3D transpose matrix/transpose matrix addition kernel
//
// Copyright (C) 2012-2019 Klaus Iglberger - All Rights Reserved
//
// This file is part of the Blaze library. You can redistribute it and/or modify it under
// the terms of the New (Revised) BSD License. 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 names of the Blaze development group nor the names of its contributors
// may be used to endorse or promote products derived from this software without specific
// prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
// OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
// SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
// BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
// DAMAGE.
*/
//=================================================================================================
//*************************************************************************************************
// Includes
//*************************************************************************************************
#include <iostream>
#include <vector>
#include <blaze/math/StaticMatrix.h>
#include <blaze/util/AlignedAllocator.h>
#include <blaze/util/Timing.h>
#include <blazemark/blaze/init/StaticMatrix.h>
#include <blazemark/blaze/TMat3TMat3Add.h>
#include <blazemark/system/Config.h>
namespace blazemark {
namespace blaze {
//=================================================================================================
//
// KERNEL FUNCTIONS
//
//=================================================================================================
//*************************************************************************************************
/*!\brief Blaze 3-dimensional transpose matrix/transpose matrix addition kernel.
//
// \param N The number of 3x3 matrices to be computed.
// \param steps The number of iteration steps to perform.
// \return Minimum runtime of the kernel function.
//
// This kernel function implements the 3-dimensional transpose matrix/transpose matrix addition
// by means of the Blaze functionality.
*/
double tmat3tmat3add( size_t N, size_t steps )
{
using ::blazemark::element_t;
using ::blaze::columnMajor;
using MatrixType = ::blaze::StaticMatrix<element_t,3UL,3UL,columnMajor>;
using AllocatorType = ::blaze::AlignedAllocator<MatrixType>;
::blaze::setSeed( seed );
::std::vector< MatrixType, AllocatorType > A( N ), B( N ), C( N );
::blaze::timing::WcTimer timer;
for( size_t i=0UL; i<N; ++i ) {
init( A[i] );
init( B[i] );
}
for( size_t i=0UL; i<N; ++i ) {
C[i] = A[i] + B[i];
}
for( size_t rep=0UL; rep<reps; ++rep )
{
timer.start();
for( size_t step=0UL, i=0UL; step<steps; ++step, ++i ) {
if( i == N ) i = 0UL;
C[i] = A[i] + B[i];
}
timer.end();
for( size_t i=0UL; i<N; ++i )
if( C[i](0,0) < element_t(0) )
std::cerr << " Line " << __LINE__ << ": ERROR detected!!!\n";
if( timer.last() > maxtime )
break;
}
const double minTime( timer.min() );
const double avgTime( timer.average() );
if( minTime * ( 1.0 + deviation*0.01 ) < avgTime )
std::cerr << " Blaze kernel 'tmat3tmat3add': Time deviation too large!!!\n";
return minTime;
}
//*************************************************************************************************
} // namespace blaze
} // namespace blazemark
| [
"klaus.iglberger@gmail.com"
] | klaus.iglberger@gmail.com |
4f55427eb3c0820e5281048d3d121fa6ab4a3b38 | 5823c0dfec0a5a2eb755ff16bb04435ee54239fd | /samples/03-classes/Pimpl/Foo.cpp | 9f8d5b852b676e61afea1c10eef99cf8925a0d20 | [] | no_license | alexey-malov/oop | b76448452c8fcb2a5b063571cf7252cf45874e69 | 2f2d04fd5d78ab9accd6959bf7092def601c065f | refs/heads/master | 2023-08-11T03:44:58.310708 | 2023-07-29T20:23:30 | 2023-07-29T20:23:30 | 50,946,326 | 48 | 34 | null | 2023-07-29T20:26:19 | 2016-02-02T19:34:30 | C++ | UTF-8 | C++ | false | false | 345 | cpp | #include "Foo.h"
struct Foo::Impl
{
Impl(int size)
: m_size(size)
{
}
int DoSomething(int arg)
{
m_size += arg;
return m_size;
}
int m_size;
};
Foo::Foo(int size)
: m_impl(std::make_unique<Impl>(size))
{
}
Foo::~Foo() = default;
int Foo::DoSomething(int arg)
{
return m_impl->DoSomething(arg);
}
| [
"alexey.malov@ispringsolutions.com"
] | alexey.malov@ispringsolutions.com |
52cb9b5e6a77914f055cf3b559b5e0f01ac24c5f | c40b21b737c8906d104d6e1a63904884b8ec345d | /Operator/UTOP_ColorShading/stdafx.cpp | 7db9f8f6a6cd1f5610f6c4e7719a337e3a40a6fc | [] | no_license | liupengsyk/UTS_NEW | f4eac1f327126eda4dd0bfaae0a1372a77263175 | 0fa04109a0f0808dd973a6f86cc0133f068ea02d | refs/heads/master | 2020-06-03T02:30:18.394317 | 2019-01-30T02:32:32 | 2019-01-30T02:32:32 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 171 | cpp | // stdafx.cpp : 只包括标准包含文件的源文件
// UTOP_ColorShading.pch 将作为预编译头
// stdafx.obj 将包含预编译类型信息
#include "stdafx.h"
| [
"2411804080@qq.com"
] | 2411804080@qq.com |
619e93a6065fa2353e9977cae6cda66476170765 | 492c37318928c0a374bff097451d939deb6adc6b | /tensorflow/core/platform/build_test.cc | 520766718a43840cb1fd09fce5a9021cd5350ba4 | [
"Apache-2.0"
] | permissive | bono1567/tensorflow | 5747726e558f45904762105ef4fe72f0dc389ae3 | 5acf6bdd2ba4cf1640c983c3b8c3c991715048e9 | refs/heads/master | 2020-09-09T20:59:24.265000 | 2019-11-13T22:06:21 | 2019-11-13T22:11:03 | 173,253,227 | 1 | 0 | Apache-2.0 | 2019-03-01T07:11:40 | 2019-03-01T07:11:40 | null | UTF-8 | C++ | false | false | 2,919 | cc | /* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/core/platform/abi.h"
#include "tensorflow/core/platform/annotation.h"
#include "tensorflow/core/platform/byte_order.h"
#include "tensorflow/core/platform/cord.h"
#include "tensorflow/core/platform/cpu_feature_guard.h"
#include "tensorflow/core/platform/cpu_info.h"
#include "tensorflow/core/platform/demangle.h"
#include "tensorflow/core/platform/denormal.h"
#include "tensorflow/core/platform/dynamic_annotations.h"
#include "tensorflow/core/platform/env_time.h"
#include "tensorflow/core/platform/file_statistics.h"
#include "tensorflow/core/platform/fingerprint.h"
#include "tensorflow/core/platform/gif.h"
#include "tensorflow/core/platform/host_info.h"
#include "tensorflow/core/platform/init_main.h"
#include "tensorflow/core/platform/jpeg.h"
#include "tensorflow/core/platform/macros.h"
#include "tensorflow/core/platform/mem.h"
#include "tensorflow/core/platform/mutex.h"
#include "tensorflow/core/platform/net.h"
#include "tensorflow/core/platform/numa.h"
#include "tensorflow/core/platform/numbers.h"
#include "tensorflow/core/platform/platform.h"
#include "tensorflow/core/platform/platform_strings.h"
#include "tensorflow/core/platform/png.h"
#include "tensorflow/core/platform/prefetch.h"
#include "tensorflow/core/platform/protobuf.h"
#if !defined(__ANDROID__)
#include "tensorflow/core/platform/rocm_rocdl_path.h"
#endif
#include "tensorflow/core/platform/scanner.h"
#include "tensorflow/core/platform/setround.h"
#include "tensorflow/core/platform/snappy.h"
#include "tensorflow/core/platform/stacktrace.h"
#include "tensorflow/core/platform/stacktrace_handler.h"
#include "tensorflow/core/platform/str_util.h"
#include "tensorflow/core/platform/strcat.h"
#include "tensorflow/core/platform/stringpiece.h"
#include "tensorflow/core/platform/stringprintf.h"
#include "tensorflow/core/platform/subprocess.h"
#include "tensorflow/core/platform/tensor_coding.h"
#include "tensorflow/core/platform/test.h"
#include "tensorflow/core/platform/thread_annotations.h"
#include "tensorflow/core/platform/threadpool_interface.h"
#include "tensorflow/core/platform/threadpool_options.h"
#include "tensorflow/core/platform/tstring.h"
#include "tensorflow/core/platform/types.h"
int main(int argc, char *argv[]) { return 0; }
| [
"gardener@tensorflow.org"
] | gardener@tensorflow.org |
18ef730cf63c95ac7e41f7cf259d531344559bea | 2ba75070a8b00557d3414bd557d3571574867994 | /exception.h | 27195b4e3bb88f72e49c509f158df2e0e56e9782 | [] | no_license | vincent2496/myProject | f8ac8dab6c4201eb0b47ca6e3ad5476e61b9deb2 | e51c6ef526962da573f88ef9c1dca58440cd4435 | refs/heads/master | 2021-09-03T04:24:46.929702 | 2018-01-05T14:09:35 | 2018-01-05T14:09:35 | 103,931,691 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,330 | h | #ifndef EXCEPTION_H
#define EXCEPTION_H
#include "scanner.h"
#include "parser.h"
/**
*
* Here are some examples for exception handling,
* the actual testing way is base on your implementation.
*
*/
#include "exp.h"
#include <string>
TEST(Shell, exception_OnlyVariable) {
Scanner s("X."); // this is our wrong expression.
Parser p(s);
try {
p.buildExpression(); // according to your implementation.
FAIL() << "It should throw an exception: X does never get assignment"; // fail if not exception is thrown.
} catch (std::string &msg) {
ASSERT_EQ("X does never get assignment", msg); // it should throw an exception like this.
}
}
TEST(Shell, exceptionMissingPeriodToken) {
Scanner s("X=1");
Parser p(s);
try {
p.buildExpression();
FAIL() << "It should throw an exception: Missing token '.'";
} catch (std::string &msg) {
ASSERT_EQ("Missing token '.'", msg);
}
}
TEST(Shell, exception_UnexpectedDisjTokenBeforePeriod) {
Scanner s("X;.");
Parser p(s);
try {
p.buildExpression();
FAIL() << "It should throw an exception: Unexpected ';' before '.'";
} catch (std::string &msg) {
ASSERT_EQ("Unexpected ';' before '.'", msg);
}
}
TEST(Shell, exception_UnexpectedConjTokenBeforePeriod1) {
Scanner s("X,.");
Parser p(s);
try {
p.buildExpression();
FAIL() << "It should throw an exception: Unexpected ',' before '.'";
} catch (std::string &msg) {
ASSERT_EQ("Unexpected ',' before '.'", msg);
}
}
TEST(Shell, exception_UnexpectedConjTokenBeforePeriod2) {
Scanner s("X=1,.");
Parser p(s);
try {
p.buildExpression();
FAIL() << "It should throw an exception: Unbalanced operator";
} catch (std::string &msg) {
ASSERT_EQ("Unexpected ',' before '.'", msg);
}
}
TEST(Shell, exception_UnbalancedOperator1) {
Scanner s("X = match(tom, marry;)");
Parser p(s);
try {
p.buildExpression();
FAIL() << "It should throw an exception: Unbalanced operator";
} catch (std::string &msg) {
ASSERT_EQ("Unbalanced operator", msg);
}
}
TEST(Shell, exception_UnbalancedOperator2) {
Scanner s("X = [tom, marry ;]");
Parser p(s);
try {
p.buildExpression();
FAIL() << "It should throw an exception: Unbalanced operator";
} catch (std::string &msg) {
ASSERT_EQ("Unbalanced operator", msg);
}
}
#endif | [
"vincent24967013@gmail.com"
] | vincent24967013@gmail.com |
1f34f3dfd89067afe8904b439b8e1aadd543fe6e | b22588340d7925b614a735bbbde1b351ad657ffc | /athena/Simulation/FastShower/FastCaloSimAthenaPool/FastCaloSimAthenaPool/FastShowerInfo.h | 89e7518ab9ab83a1ee2f126e7495c1e73c9d21b8 | [] | no_license | rushioda/PIXELVALID_athena | 90befe12042c1249cbb3655dde1428bb9b9a42ce | 22df23187ef85e9c3120122c8375ea0e7d8ea440 | refs/heads/master | 2020-12-14T22:01:15.365949 | 2020-01-19T03:59:35 | 2020-01-19T03:59:35 | 234,836,993 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,554 | h | /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
#ifndef _FASTSHOWERINFO_H_
#define _FASTSHOWERINFO_H_
#include <vector>
// #include "FastCaloSim/FastCaloSim_CaloCell_ID.h"
// class ParticleEnergyShape;
// class ParticleEnergyParametrization;
// class TShape_Result;
/**
* @class FastShowerInfo
* @brief Class to store information about the Particles and the used shower shapes and parametrizations for these.
* Some ugly stuff is implemented here for several reasons:
* There must be no dependency on the Package FastCaloSim! Circular dependencies are evil !
* Therefore all vectors are first initialized when the method Initialize() is called. So when filling the vectors we have to be careful, as Initialize()
* might have not been called yet.
* And the second consequence is, that this info has to be filled by the classes in FastCaloSim.
*/
class FastShowerInfo
{
public:
/** @brief Constructor. Don't forget to set default values for all objects! */
FastShowerInfo();
~FastShowerInfo(){};
public:
// as we need a default constructor without arguments. But on the other hand we need to know the size of the arrays to store the information for each layer in it
void Initialize(const int& cellids);
// some information about the truth particle, the parametrization has been processed for
int m_part_pdgid;
int m_part_barcode;
float m_part_eta;
float m_part_phi;
float m_part_e;
float m_part_pt;
// calo surface information
float m_calosurf_eta;
float m_calosurf_phi;
float m_calosurf_d;
// particle energy shapes
float m_shape_Ecal;
float m_shape_dist_in;
float m_shape_dist000;
float m_shape_dist_rec;
float m_shape_E;
// float m_shape_E_layer[CaloCell_ID::Unknown];
std::vector<float> m_shape_E_layer;
float m_shape_fcal_tot;
// float m_shape_fcal_layer[CaloCell_ID::Unknown];
std::vector<float> m_shape_fcal_layer;
float m_shape_fcal_tot_uncor;
// ParticleEnergyParametrization
int m_pep_id;
float m_pep_e;
float m_pep_eta;
// some calo information (not documented)
std::vector<float> m_letacalo;
std::vector<float> m_lphicalo;
std::vector<float> m_fcx;
std::vector<float> m_fcy;
// float m_letacalo[CaloCell_ID::Unknown];
// float m_lphicalo[CaloCell_ID::Unknown];
// float m_fcx[CaloCell_ID::Unknown];
// float m_fcy[CaloCell_ID::Unknown];
// TShapeResults
std::vector<int> m_shaperes_calosample;
std::vector<int> m_shaperes_id;
std::vector<float> m_shaperes_e;
std::vector<float> m_shaperes_eta;
// int m_shaperes_calosample[CaloCell_ID::Unknown];
// int m_shaperes_id[CaloCell_ID::Unknown];
// float m_shaperes_e[CaloCell_ID::Unknown];
// float m_shaperes_eta[CaloCell_ID::Unknown];
// layer info
std::vector<float> m_layer_etot;
std::vector<float> m_layer_etot2;
std::vector<float> m_layer_etot3;
std::vector<float> m_layer_bestcell_eta;
std::vector<float> m_layer_bestcell_phi;
std::vector<int> m_layer_bestcell_hash;
// float m_layer_etot[CaloCell_ID::Unknown];
// float m_layer_etot2[CaloCell_ID::Unknown];
// float m_layer_etot3[CaloCell_ID::Unknown];
// float m_layer_bestcell_eta[CaloCell_ID::Unknown];
// float m_layer_bestcell_phi[CaloCell_ID::Unknown];
// int m_layer_bestcell_hash[CaloCell_ID::Unknown];
// calo cells
std::vector<int> m_cell_sample;
std::vector<int> m_cell_id;
std::vector<float> m_cell_subetot;
std::vector<float> m_cell_edeposition_errorcorrected;
std::vector<float> m_cell_edeposition_final;
public:
// All the methods to fill the variables
void AddCellSubETot(const int& sample, const double& subetot, int caloid);
void AddCellEErrorCorrected( const int& sample, const double& energy );
void AddCellEFinal( const int& sample, const double& energy = 0. /* if detelement not found */ );
void SetLayerInfo( const int& sample, const double& elayertot, const double& elayertot2, const double& elayertot3,
double eta = 0., // case, if ibestcell < 0
double phi = 0.,
unsigned int hash = 0
);
void SetPtEtaPhiE(const double& pt, const double& eta, const double& phi, const double& e);
void SetBarcodeAndPDGId(const int& barcode, const int& pdgid);
void SetCaloSurface(const double& eta,const double& phi,const double& d);
void SetCaloInfo( const int& sample, const double& fcx, const double& fcy, const double& letacalo, const double& letaphi);
};
#include "CLIDSvc/CLASS_DEF.h"
CLASS_DEF(FastShowerInfo, 666777, 1)
#endif
| [
"rushioda@lxplus754.cern.ch"
] | rushioda@lxplus754.cern.ch |
bfc4e7804fbb224422716d5df2cad5a207e89c57 | c71d78d12506c5345dbf82f2faf39a5584e07d7c | /src/dist/brutil.hh | 3db0d27ce90c2ac8828c07362d5cb9a90f774612 | [] | no_license | yuhonglin/bnc | a2236c447ced9255895296e4fdf4370ad10d3a90 | cdbb4e6f3626e402e90afda73ce542b8d6f20e56 | refs/heads/master | 2020-12-30T14:19:09.450413 | 2017-08-23T06:19:38 | 2017-08-23T06:19:38 | 91,302,620 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,430 | hh | #ifndef BRUTIL_H
#define BRUTIL_H
#include <type_traits>
#include <limits>
#include <cmath>
#include <cfloat>
#include <util/constant.hh>
#include <util/logger.hh>
#include <common/math.hh>
#include <dist/brconst.hh>
namespace bnc {
#define ML_POSINF INF
#define ML_NEGINF -INF
#define ML_NAN NaN
#define ML_ERR_return_NAN { LOG_WARNING("return NaN"); return ML_NAN; }
#define dup_no_copy(x) x
typedef enum { FALSE = 0, TRUE } Rboolean;
template <class RNGType>
inline double unif_rand(RNGType *rng)
{
return rng->uniform();
}
template <class RNGType>
inline double exp_rand(RNGType *rng)
{
return rng->exponential();
}
template <class RNGType>
inline double norm_rand(RNGType *rng)
{
return rng->normal();
}
inline bool R_FINITE(const double &x) {
return std::isfinite(x);
}
inline bool ISNAN(const double &x) {
return std::isnan(x);
}
template<class T>
inline T R_forceint(const T &x) {
return nearbyint(x);
}
static double myfmod(double x1, double x2)
{
double q = x1 / x2;
return x1 - floor(q) * x2;
}
double BR_pow(double x, double y) /* = x ^ y */
{
if(x == 1. || y == 0.)
return(1.);
if(x == 0.) {
if(y > 0.) return(0.);
/* y < 0 */return(ML_POSINF);
}
if (R_FINITE(x) && R_FINITE(y))
return(pow(x,y));
if (ISNAN(x) || ISNAN(y)) {
return(x + y);
}
if(!R_FINITE(x)) {
if(x > 0) /* Inf ^ y */
return((y < 0.)? 0. : ML_POSINF);
else { /* (-Inf) ^ y */
if(R_FINITE(y) && y == floor(y)) /* (-Inf) ^ n */
return((y < 0.) ? 0. : (myfmod(y,2.) ? x : -x));
}
}
if(!R_FINITE(y)) {
if(x >= 0) {
if(y > 0) /* y == +Inf */
return((x >= 1)? ML_POSINF : 0.);
else /* y == -Inf */
return((x < 1) ? ML_POSINF : 0.);
}
}
return(ML_NAN); /* all other cases: (-Inf)^{+-Inf,
non-int}; (neg)^{+-Inf} */
}
double BR_pow_di(double x, int n)
{
double pow = 1.0;
if (ISNAN(x)) return x;
if (n != 0) {
if (!R_FINITE(x)) return BR_pow(x, (double)n);
if (n < 0) { n = -n; x = 1/x; }
for(;;) {
if(n & 01) pow *= x;
if(n >>= 1) x *= x; else break;
}
}
return pow;
}
#define R_RFUNC_INTERFACE_2ARG(FUNC) \
template<class RNGType> \
Vector FUNC(const int&n, const double& a, const double& b, \
RNGType *rng) \
{ \
Vector ret(n); \
\
for (int i=0; i<n; i++) { \
ret(i) = FUNC(a, b, rng); \
} \
return ret; \
\
} \
\
template<class RNGType, class AType, class BType> \
typename std::enable_if<std::is_class<AType>::value&&std::is_class<BType>::value, \
Vector>::type \
FUNC(const int&n, const AType& a, const BType& b, \
RNGType *rng) \
{ \
Vector ret(n); \
int ai=0, bi=0; \
for (int i=0; i<n; i++) { \
ret(i) = FUNC(a(ai), b(bi), \
rng); \
if (++ai >= a.size()) ai = 0; \
if (++bi >= b.size()) bi = 0; \
} \
return ret; \
} \
\
template<class RNGType, class BType> \
typename std::enable_if<std::is_class<BType>::value,Vector>::type \
FUNC(const int&n, const double &a, const BType &b, \
RNGType *rng) \
{ \
Vector ret(n); \
int bi=0; \
for (int i=0; i<n; i++) { \
ret(i) = FUNC(a, b(bi), rng); \
if (++bi >= b.size()) bi = 0; \
} \
return ret; \
} \
\
template<class RNGType, class AType> \
typename std::enable_if<std::is_class<AType>::value,Vector>::type \
FUNC(const int&n, const AType &a, const double &b, \
RNGType *rng) \
{ \
Vector ret(n); \
int ai=0; \
for (int i=0; i<n; i++) { \
ret(i) = FUNC(a(ai), b, rng); \
if (++ai >= a.size()) ai = 0; \
} \
return ret; \
} \
#define R_RFUNC_INTERFACE_1ARG(FUNC) \
template<class RNGType> \
Vector FUNC(const int&n, const double& a, \
RNGType *rng) \
{ \
Vector ret(n); \
\
for (int i=0; i<n; i++) { \
ret(i) = FUNC(a, rng); \
} \
return ret; \
\
} \
\
template<class RNGType, class AType> \
Vector FUNC(const int&n, const AType& a, \
RNGType *rng) \
{ \
Vector ret(n); \
int ai=0; \
for (int i=0; i<n; i++) { \
ret(i) = FUNC(a(ai), \
rng); \
if (++ai >= a.size()) ai = 0; \
} \
return ret; \
} \
#define R_RFUNC_INTERFACE_3ARG(FUNC) \
template<class RNGType> \
Vector FUNC(const int&n, const double& a, const double& b, \
const double& c, RNGType *rng) \
{ \
Vector ret(n); \
\
for (int i=0; i<n; i++) { \
ret(i) = FUNC(a, b, c, rng); \
} \
return ret; \
\
} \
\
template<class RNGType, class AType, class BType, class CType> \
Vector FUNC(const int&n, const AType& a, const BType& b, \
const CType &c, RNGType *rng) \
{ \
Vector ret(n); \
int ai=0, bi=0, ci=0; \
for (int i=0; i<n; i++) { \
ret(i) = FUNC(a(ai), b(bi), \
c(ci), rng); \
if (++ai >= a.size()) ai = 0; \
if (++bi >= b.size()) bi = 0; \
if (++ci >= c.size()) ci = 0; \
} \
return ret; \
} \
\
template<class RNGType, class BType, class CType> \
Vector FUNC(const int&n, const double& a, const BType& b, \
const CType &c, RNGType *rng) \
{ \
Vector ret(n); \
int ai=0, bi=0, ci=0; \
for (int i=0; i<n; i++) { \
ret(i) = FUNC(a, b(bi), \
c(ci), rng); \
if (++bi >= b.size()) bi = 0; \
if (++ci >= c.size()) ci = 0; \
} \
return ret; \
} \
\
template<class RNGType, class AType, class CType> \
Vector FUNC(const int &n, const AType &a, const double &b, \
const CType &c, RNGType *rng) \
{ \
Vector ret(n); \
int ai=0, ci=0; \
for (int i=0; i<n; i++) { \
ret(i) = FUNC(a(ai), b, \
c(ci), rng); \
if (++ai >= a.size()) ai = 0; \
if (++ci >= c.size()) ci = 0; \
} \
return ret; \
} \
\
template<class RNGType, class AType, class BType> \
Vector FUNC(const int&n, const AType& a, const BType& b, \
const double &c, RNGType *rng) \
{ \
Vector ret(n); \
int ai=0, bi=0; \
for (int i=0; i<n; i++) { \
ret(i) = FUNC(a(ai), b(bi), \
c, rng); \
if (++ai >= a.size()) ai = 0; \
if (++bi >= b.size()) bi = 0; \
} \
return ret; \
} \
\
template<class RNGType, class AType> \
Vector FUNC(const int&n, const AType &a, const double &b, \
const double &c, RNGType *rng) \
{ \
Vector ret(n); \
int ai=0; \
for (int i=0; i<n; i++) { \
ret(i) = FUNC(a(ai), b, \
c, rng); \
if (++ai >= a.size()) ai = 0; \
} \
return ret; \
} \
\
template<class RNGType, class BType> \
Vector FUNC(const int&n, const double &a, const BType &b, \
const double &c, RNGType *rng) \
{ \
Vector ret(n); \
int bi=0; \
for (int i=0; i<n; i++) { \
ret(i) = FUNC(a, b(bi), \
c, rng); \
if (++bi >= b.size()) bi = 0; \
} \
return ret; \
} \
\
template<class RNGType, class CType> \
Vector FUNC(const int&n, const double& a, const double& b, \
const CType &c, RNGType *rng) \
{ \
Vector ret(n); \
int ci=0; \
for (int i=0; i<n; i++) { \
ret(i) = FUNC(a, b, \
c(ci), rng); \
if (++ci >= c.size()) ci = 0; \
} \
return ret; \
} \
\
// Get first value of a scalar or vector/matrix class safely
template<typename T>
typename std::enable_if<std::is_scalar<T>::value,T>::type& first(T &x) {
return x;
}
template<typename T>
const typename std::enable_if<std::is_class<T>::value,T>::type::Scalar& first(T& x) {
return x(0);
}
// Get nth value of a scalar or vector/matrix class safely
template<typename T>
const typename std::enable_if<std::is_scalar<T>::value,T>::type& nth(const T &x,
const int &n) {
return x;
}
template<typename T>
const typename std::enable_if<std::is_class<T>::value,T>::type::Scalar& nth(const T& x,
const int &n) {
return x(n);
}
// Check if length is beyond array's length
template<typename T>
bool isOut(const T &x, const typename std::enable_if<std::is_scalar<T>::value,int>::type &n) {
return false;
}
template<typename T>
bool isOut(const T& x, const typename std::enable_if<std::is_class<T>::value,int>::type &n) {
return n>=x.size();
}
// Check if a matrix is dynamic
template<class T>
struct matrix_is_dynamic {
static const bool value = false;
};
template<class D>
struct matrix_is_dynamic<Eigen::Matrix<D, Eigen::Dynamic, Eigen::Dynamic>> {
static const bool value = true;
};
template<class D, int M>
struct matrix_is_dynamic<Eigen::Matrix<D, M, Eigen::Dynamic>> {
static const bool value = true;
};
template<class D, int N>
struct matrix_is_dynamic<Eigen::Matrix<D, Eigen::Dynamic, N>> {
static const bool value = true;
};
// Duplicate a matrix without copy values
// TODO: may need to add Tensor support
template<class D>
Eigen::Matrix<D,Eigen::Dynamic,Eigen::Dynamic>
clone_no_copy(const Eigen::Matrix<D,Eigen::Dynamic,Eigen::Dynamic>& x) {
return Eigen::Matrix<D,Eigen::Dynamic,Eigen::Dynamic>(x.rows(),x.cols());
}
template<class D, int M>
Eigen::Matrix<D,M,Eigen::Dynamic>
clone_no_copy(const Eigen::Matrix<D,M,Eigen::Dynamic>& x) {
return Eigen::Matrix<D,M,Eigen::Dynamic>(x.cols());
}
template<class D, int M>
Eigen::Matrix<D,Eigen::Dynamic,M>
clone_no_copy(const Eigen::Matrix<D,Eigen::Dynamic,M>& x) {
return Eigen::Matrix<D,Eigen::Dynamic,M>(x.rows());
}
#define R_DFUNC_INTERFACE_3ARG(TF, BRFUNC) \
template<class X, class M, class L> \
typename std::enable_if<std::is_scalar<X>::value,X>::type \
TF(const X &x, const M &mu, \
const L &give_log) \
{ \
double ret; \
ret = BRFUNC(x, first(mu), \
static_cast<int>(first(give_log))); \
return ret; \
} \
\
template<class X, class M, class L> \
typename std::enable_if<!std::is_scalar<X>::value,X>::type \
TF(const X &x, const M &mu, const L &give_log) \
{ \
auto ret = dup_no_copy(x); \
int i1=0,i3=0; \
for (int i=0; i<x.size(); i++) \
{ \
ret(i) = BRFUNC(nth(x,i), nth(mu,i1), \
nth(give_log,i3)); \
if (isOut(mu,++i1)) i1=0; \
if (isOut(give_log,i3++)) i3=0; \
} \
return ret; \
} \
#define R_DFUNC_INTERFACE_4ARG(TF, BRFUNC) \
template<class X, class M, class S, class L> \
typename std::enable_if<std::is_scalar<X>::value,X>::type \
TF(const X &x, const M &mu, \
const S &sigma, const L &give_log) \
{ \
double ret; \
ret = BRFUNC(x, first(mu), first(sigma), \
static_cast<int>(first(give_log))); \
return ret; \
} \
\
template<class X, class M, class S, class L> \
typename std::enable_if<!std::is_scalar<X>::value,X>::type \
TF(const X &x, const M &mu, \
const S &sigma, const L &give_log) \
{ \
auto ret = dup_no_copy(x); \
int i1=0,i2=0,i3=0; \
for (int i=0; i<x.size(); i++) \
{ \
ret(i) = BRFUNC(nth(x,i), nth(mu,i1), \
nth(sigma,i2), \
nth(give_log,i3)); \
if (isOut(mu,++i1)) i1=0; \
if (isOut(sigma,++i2)) i2=0; \
if (isOut(give_log,++i3)) i3=0; \
} \
return ret; \
} \
#define R_DFUNC_INTERFACE_5ARG(TF, BRFUNC) \
template<class X, class M, class S, class K, class L> \
typename std::enable_if<std::is_scalar<X>::value,X>::type \
TF(const X &x, const M &mu, \
const S &sigma, const K &k, const L &give_log) \
{ \
double ret; \
ret = BRFUNC(x, first(mu), first(sigma), \
first(k), \
static_cast<int>(first(give_log))); \
return ret; \
} \
\
template<class X, class M, class S, class K, class L> \
typename std::enable_if<!std::is_scalar<X>::value,X>::type \
TF(const X &x, const M &mu, \
const S &sigma, const K& k, const L &give_log) \
{ \
auto ret = dup_no_copy(x); \
int i1=0,i2=0,i3=0,i4=0; \
for (int i=0; i<x.size(); i++) \
{ \
ret(i) = BRFUNC(nth(x,i), nth(mu,i1), \
nth(sigma,i2), \
nth(k,i3), \
nth(give_log,i4)); \
if (isOut(mu,++i1)) i1=0; \
if (isOut(sigma,++i2)) i2=0; \
if (isOut(k,++i3)) i3=0; \
if (isOut(give_log,++i4)) i4=0; \
} \
return ret; \
} \
#define R_PFUNC_INTERFACE_4ARG(TF, BRFUNC) \
template<class X, class M, class T, class L> \
typename std::enable_if<std::is_scalar<X>::value,X>::type \
TF(const X &x, const M &mu, \
const T& lower_tail, \
const L &give_log) \
{ \
X ret; \
ret = BRFUNC(x, first(mu), \
static_cast<int>(first(lower_tail)), \
static_cast<int>(first(give_log))); \
return ret; \
} \
\
template<class X, class M, class T, class L> \
typename std::enable_if<!std::is_scalar<X>::value,X>::type \
TF(const X &x, const M &mu, \
const T& lower_tail, \
const L &give_log) \
{ \
X ret = dup_no_copy(x); \
int i1=0,i3=0,i4=0; \
for (int i=0; i<x.size(); i++) \
{ \
ret(i) = BRFUNC(nth(x,i), \
nth(mu,i1), \
static_cast<int>(nth(lower_tail,i3)), \
static_cast<int>(nth(give_log,i4))); \
if (isOut(mu,++i1)) i1=0; \
if (isOut(lower_tail,++i3)) i3=0; \
if (isOut(give_log,++i4)) i4=0; \
} \
return ret; \
} \
#define R_PFUNC_INTERFACE_5ARG(TF, BRFUNC) \
template<class X, class M, class S, class T, class L> \
typename std::enable_if<std::is_scalar<X>::value,X>::type \
TF(const X &x, const M &mu, \
const S &sigma, const T& lower_tail, \
const L &give_log) \
{ \
X ret; \
ret = BRFUNC(x, first(mu), first(sigma), \
static_cast<int>(first(lower_tail)), \
static_cast<int>(first(give_log))); \
return ret; \
} \
\
template<class X, class M, class S, class T, class L> \
typename std::enable_if<!std::is_scalar<X>::value,X>::type \
TF(const X &x, const M &mu, \
const S &sigma, const T& lower_tail, \
const L &give_log) \
{ \
X ret = dup_no_copy(x); \
int i1=0,i2=0,i3=0,i4=0; \
for (int i=0; i<x.size(); i++) \
{ \
ret(i) = BRFUNC(nth(x,i), \
nth(mu,i1), \
nth(sigma,i2), \
static_cast<int>(nth(lower_tail,i3)), \
static_cast<int>(nth(give_log,i4))); \
if (isOut(mu,++i1)) i1=0; \
if (isOut(sigma,++i2)) i2=0; \
if (isOut(lower_tail,++i3)) i3=0; \
if (isOut(give_log,++i4)) i4=0; \
} \
return ret; \
} \
#define R_PFUNC_INTERFACE_6ARG(TF, BRFUNC) \
template<class X, class M, class S, class K, class T, class L> \
typename std::enable_if<std::is_scalar<X>::value,X>::type \
TF(const X &x, const M &mu, \
const S &sigma, const K& k, const T& lower_tail, \
const L &give_log) \
{ \
X ret; \
ret = BRFUNC(x, first(mu), first(sigma), first(k), \
static_cast<int>(first(lower_tail)), \
static_cast<int>(first(give_log))); \
return ret; \
} \
\
template<class X, class M, class S, class K, class T, class L> \
typename std::enable_if<!std::is_scalar<X>::value,X>::type \
TF(const X &x, const M &mu, \
const S &sigma, const K &k, const T &lower_tail, \
const L &give_log) \
{ \
X ret = dup_no_copy(x); \
int i1=0,i2=0,i3=0,i4=0,i5=0; \
for (int i=0; i<x.size(); i++) \
{ \
ret(i) = BRFUNC(nth(x,i), \
nth(mu,i1), \
nth(sigma,i2), \
nth(k,i3), \
static_cast<int>(nth(lower_tail,i4)), \
static_cast<int>(nth(give_log,i5))); \
if (isOut(mu,++i1)) i1=0; \
if (isOut(sigma,++i2)) i2=0; \
if (isOut(k,++i3)) i3=0; \
if (isOut(lower_tail,++i4)) i4=0; \
if (isOut(give_log,++i5)) i5=0; \
} \
return ret; \
} \
#define R_QFUNC_INTERFACE_4ARG(TF, BRFUNC) \
template<class X, class M, class T, class L> \
typename std::enable_if<std::is_scalar<X>::value,X>::type \
TF(const X &x, const M &mu, \
const T& lower_tail, \
const L &give_log) \
{ \
X ret; \
ret = BRFUNC(x, first(mu), \
static_cast<int>(first(lower_tail)), \
static_cast<int>(first(give_log))); \
return ret; \
} \
\
template<class X, class M, class T, class L> \
typename std::enable_if<!std::is_scalar<X>::value,X>::type \
TF(const X &x, const M &mu, \
const T& lower_tail, \
const L &give_log) \
{ \
X ret = dup_no_copy(x); \
int i1=0,i3=0,i4=0; \
for (int i=0; i<x.size(); i++) \
{ \
ret(i) = BRFUNC(nth(x,i), \
nth(mu,i1), \
static_cast<int>(nth(lower_tail,i3)), \
static_cast<int>(nth(give_log,i4))); \
if (isOut(mu,++i1)) i1=0; \
if (isOut(lower_tail,++i3)) i3=0; \
if (isOut(give_log,++i4)) i4=0; \
} \
return ret; \
} \
#define R_QFUNC_INTERFACE_5ARG(TF, BRFUNC) \
template<class X, class M, class S, class T, class L> \
typename std::enable_if<std::is_scalar<X>::value,X>::type \
TF(const X &x, const M &mu, \
const S &sigma, const T& lower_tail, \
const L &give_log) \
{ \
X ret; \
ret = BRFUNC(x, first(mu), first(sigma), \
static_cast<int>(first(lower_tail)), \
static_cast<int>(first(give_log))); \
return ret; \
} \
\
template<class X, class M, class S, class T, class L> \
typename std::enable_if<!std::is_scalar<X>::value,X>::type \
TF(const X &x, const M &mu, \
const S &sigma, const T& lower_tail, \
const L &give_log) \
{ \
X ret = dup_no_copy(x); \
int i1=0,i2=0,i3=0,i4=0; \
for (int i=0; i<x.size(); i++) \
{ \
ret(i) = BRFUNC(nth(x,i), \
nth(mu,i1), \
nth(sigma,i2), \
static_cast<int>(nth(lower_tail,i3)), \
static_cast<int>(nth(give_log,i4))); \
if (isOut(mu,++i1)) i1=0; \
if (isOut(sigma,++i2)) i2=0; \
if (isOut(lower_tail,++i3)) i3=0; \
if (isOut(give_log,++i4)) i4=0; \
} \
return ret; \
} \
#define R_QFUNC_INTERFACE_6ARG(TF, BRFUNC) \
template<class X, class M, class S, class T, class K, class L> \
typename std::enable_if<std::is_scalar<X>::value,X>::type \
TF(const X &x, const M &mu, \
const S &sigma, const K &k, const T& lower_tail, \
const L &give_log) \
{ \
X ret; \
ret = BRFUNC(x, first(mu), first(sigma), first(k), \
static_cast<int>(first(lower_tail)), \
static_cast<int>(first(give_log))); \
return ret; \
} \
\
template<class X, class M, class S, class K, class T, class L> \
typename std::enable_if<!std::is_scalar<X>::value,X>::type \
TF(const X &x, const M &mu, \
const S &sigma, const K& k, const T& lower_tail, \
const L &give_log) \
{ \
X ret = dup_no_copy(x); \
int i1=0,i2=0,i3=0,i4=0,i5=0; \
for (int i=0; i<x.size(); i++) \
{ \
ret(i) = BRFUNC(nth(x,i), \
nth(mu,i1), \
nth(sigma,i2), \
nth(k,i3), \
static_cast<int>(nth(lower_tail,i4)), \
static_cast<int>(nth(give_log,i5))); \
if (isOut(mu,++i1)) i1=0; \
if (isOut(sigma,++i2)) i2=0; \
if (isOut(k,++i3)) i3=0; \
if (isOut(lower_tail,++i4)) i4=0; \
if (isOut(give_log,++i5)) i5=0; \
} \
return ret; \
} \
} // namespace bnc
#endif /* BRUTIL_H */
| [
"yuhonglin1986@gmail.com"
] | yuhonglin1986@gmail.com |
a50d1ca0bb91b6d6eb2db8f0ec4b95c3a6777445 | 4442aee78a30d2a73bc212fe8b44777b630ed5a9 | /OOPinUnity/Temp/StagingArea/Data/il2cppOutput/Il2CppCompilerCalculateTypeValuesTable.cpp | 091ad12c9c3ad563a368fcf92672b5fa0fed59e2 | [] | no_license | jbumbalough/CIS497 | fb5a037730ed171950808e2d7ddfad2a046c42c2 | 8a26fd1ee0a2410d8722efa6de7ec441fa39f450 | refs/heads/master | 2023-01-20T09:32:27.343541 | 2020-12-01T02:07:13 | 2020-12-01T02:07:13 | 293,391,910 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 320,190 | cpp | #include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable4[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable5[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable6[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable7[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable8[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable9[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable12[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable14[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable15[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable16[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable17[18];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable18[13];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable19[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable20[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable21[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable22[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable23[12];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable26[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable27[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable28[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable29[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable30[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable31[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable32[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable33[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable34[19];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable35[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable36[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable37[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable38[13];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable39[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable40[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable41[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable42[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable43[22];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable46[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable47[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable48[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable49[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable50[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable51[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable53[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable55[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable57[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable65[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable66[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable67[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable68[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable69[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable72[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable73[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable74[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable75[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable76[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable77[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable78[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable79[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable80[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable81[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable82[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable83[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable98[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable100[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable105[17];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable106[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable107[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable108[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable109[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable111[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable113[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable114[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable115[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable117[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable118[17];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable119[145];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable120[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable121[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable122[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable125[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable126[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable127[45];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable128[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable129[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable130[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable131[18];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable133[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable134[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable137[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable138[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable140[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable141[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable142[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable145[17];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable146[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable151[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable152[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable153[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable155[22];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable156[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable157[40];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable158[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable159[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable160[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable161[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable162[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable163[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable164[16];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable165[16];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable166[33];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable167[14];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable168[16];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable169[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable170[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable171[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable183[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable184[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable185[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable190[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable194[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable195[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable202[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable203[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable204[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable205[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable209[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable211[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable213[11];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable214[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable215[19];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable216[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable217[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable219[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable221[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable223[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable224[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable225[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable226[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable227[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable231[29];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable232[47];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable233[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable234[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable235[15];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable236[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable237[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable238[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable239[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable240[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable241[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable243[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable244[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable245[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable246[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable247[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable248[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable249[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable251[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable253[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable254[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable255[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable256[23];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable258[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable259[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable260[48];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable261[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable263[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable265[23];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable266[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable267[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable269[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable270[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable273[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable274[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable275[11];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable276[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable277[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable278[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable279[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable280[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable281[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable282[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable283[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable284[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable285[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable286[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable288[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable290[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable291[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable292[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable293[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable294[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable296[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable297[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable299[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable300[26];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable301[14];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable303[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable304[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable305[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable307[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable308[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable309[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable310[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable311[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable312[44];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable313[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable314[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable315[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable316[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable317[35];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable318[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable319[396];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable320[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable321[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable322[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable323[19];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable329[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable331[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable332[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable333[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable334[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable335[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable337[20];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable338[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable340[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable341[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable342[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable343[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable344[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable345[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable346[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable348[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable349[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable351[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable352[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable353[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable356[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable357[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable358[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable359[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable360[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable361[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable362[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable363[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable364[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable367[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable368[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable369[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable370[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable371[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable372[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable373[16];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable374[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable375[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable376[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable377[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable379[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable380[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable381[11];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable382[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable383[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable384[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable385[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable386[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable387[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable388[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable389[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable391[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable392[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable393[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable394[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable395[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable396[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable397[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable398[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable399[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable400[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable403[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable404[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable405[18];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable407[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable408[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable409[14];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable410[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable411[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable412[22];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable413[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable414[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable415[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable418[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable419[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable420[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable421[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable422[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable423[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable424[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable425[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable426[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable427[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable428[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable429[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable430[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable431[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable432[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable434[21];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable435[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable436[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable437[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable438[20];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable439[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable442[23];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable445[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable446[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable447[25];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable449[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable450[17];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable452[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable453[12];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable454[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable455[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable456[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable457[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable461[33];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable464[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable466[16];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable467[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable468[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable469[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable471[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable472[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable473[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable475[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable477[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable478[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable479[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable482[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable484[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable487[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable488[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable490[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable492[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable497[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable498[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable500[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable504[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable506[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable515[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable521[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable524[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable525[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable527[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable531[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable532[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable534[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable535[12];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable537[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable538[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable540[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable541[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable542[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable544[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable545[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable546[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable548[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable549[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable550[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable551[17];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable553[13];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable554[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable555[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable557[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable558[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable559[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable561[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable562[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable563[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable565[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable567[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable568[17];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable569[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable570[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable571[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable572[17];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable575[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable576[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable577[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable578[27];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable579[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable580[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable581[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable582[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable583[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable585[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable586[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable587[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable589[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable590[21];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable591[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable592[25];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable593[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable594[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable595[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable596[84];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable597[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable598[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable599[25];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable600[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable601[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable602[11];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable603[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable604[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable605[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable606[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable607[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable608[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable609[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable610[12];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable611[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable612[20];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable613[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable614[36];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable615[18];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable617[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable618[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable619[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable620[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable621[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable622[31];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable623[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable624[21];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable625[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable626[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable627[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable628[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable629[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable630[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable631[38];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable632[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable633[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable634[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable636[11];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable637[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable638[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable639[13];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable640[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable641[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable642[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable643[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable644[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable646[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable647[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable648[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable649[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable650[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable652[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable653[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable655[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable658[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable661[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable662[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable663[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable664[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable665[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable673[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable676[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable677[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable679[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable680[15];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable681[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable687[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable688[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable689[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable690[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable691[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable692[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable694[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable697[11];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable699[11];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable704[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable705[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable706[39];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable707[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable709[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable712[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable713[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable714[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable715[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable717[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable718[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable720[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable721[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable722[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable723[22];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable724[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable726[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable727[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable728[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable729[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable731[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable732[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable733[16];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable734[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable737[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable738[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable740[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable741[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable742[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable743[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable744[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable745[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable746[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable747[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable748[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable749[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable750[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable752[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable754[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable755[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable756[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable757[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable760[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable761[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable765[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable769[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable770[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable771[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable772[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable776[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable777[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable785[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable786[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable787[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable788[14];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable789[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable790[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable791[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable792[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable793[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable794[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable795[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable797[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable798[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable804[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable805[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable806[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable807[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable808[15];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable809[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable810[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable811[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable812[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable813[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable814[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable815[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable816[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable817[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable820[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable821[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable822[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable823[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable824[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable825[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable826[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable827[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable828[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable829[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable830[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable831[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable832[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable833[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable834[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable835[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable836[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable838[11];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable839[20];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable840[47];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable841[24];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable842[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable843[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable844[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable845[14];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable846[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable847[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable848[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable849[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable850[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable851[20];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable852[16];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable853[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable854[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable855[21];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable856[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable857[17];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable858[18];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable859[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable860[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable861[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable862[24];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable863[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable864[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable865[21];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable866[25];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable867[41];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable868[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable869[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable870[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable871[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable872[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable873[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable874[13];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable875[12];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable876[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable877[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable878[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable879[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable883[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable884[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable885[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable886[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable887[13];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable888[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable889[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable890[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable893[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable894[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable895[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable896[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable899[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable900[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable901[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable902[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable903[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable904[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable905[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable906[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable908[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable910[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable911[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable912[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable915[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable917[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable918[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable919[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable920[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable921[15];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable922[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable923[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable926[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable937[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable938[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable939[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable940[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable941[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable943[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable951[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable952[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable953[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable955[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable960[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable961[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable962[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable964[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable966[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable967[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable968[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable969[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable970[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable971[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable972[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable973[17];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable974[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable975[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable976[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable977[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable978[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable979[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable980[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable981[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable982[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable983[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable985[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable986[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable996[11];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable997[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable998[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable999[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1000[15];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1001[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1002[15];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1003[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1007[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1008[13];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1010[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1011[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1012[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1015[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1017[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1018[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1019[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1020[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1021[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1022[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1023[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1024[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1025[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1026[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1031[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1032[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1033[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1034[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1035[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1036[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1037[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1038[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1039[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1040[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1041[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1042[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1045[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1046[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1048[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1049[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1052[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1056[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1057[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1060[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1061[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1062[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1063[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1064[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1065[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1066[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1067[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1068[45];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1069[39];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1071[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1076[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1077[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1078[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1079[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1080[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1081[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1082[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1084[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1088[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1089[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1090[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1091[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1092[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1093[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1109[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1110[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1111[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1112[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1114[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1115[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1116[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1117[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1120[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1121[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1122[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1123[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1124[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1126[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1138[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1139[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1140[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1141[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1142[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1144[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1145[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1147[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1148[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1150[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1151[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1152[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1153[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1154[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1155[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1156[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1160[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1163[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1164[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1165[14];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1166[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1167[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1168[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1169[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1170[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1171[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1176[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1177[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1182[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1203[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1204[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1208[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1209[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1210[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1211[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1212[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1213[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1214[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1215[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1216[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1217[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1219[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1220[101];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1271[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1278[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1283[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1288[29];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1289[56];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1290[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1291[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1292[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1293[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1295[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1296[18];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1297[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1298[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1299[15];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1300[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1301[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1302[26];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1303[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1309[30];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1310[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1312[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1313[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1315[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1317[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1321[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1322[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1323[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1330[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1332[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1333[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1335[12];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1336[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1337[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1338[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1340[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1341[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1342[11];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1343[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1345[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1346[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1347[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1348[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1349[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1350[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1351[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1352[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1355[17];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1356[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1357[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1358[32];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1359[48];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1360[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1386[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1387[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1388[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1389[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1390[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1391[15];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1392[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1393[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1396[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1400[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1403[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1404[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1405[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1406[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1407[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1408[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1409[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1410[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1414[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1415[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1416[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1417[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1419[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1421[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1422[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1423[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1425[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1432[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1433[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1434[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1435[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1451[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1452[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1453[37];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1454[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1455[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1456[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1457[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1458[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1459[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1462[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1463[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1464[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1466[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1467[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1469[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1470[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1472[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1474[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1475[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1476[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1477[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1478[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1479[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1480[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1481[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1483[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1486[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1492[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1493[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1495[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1496[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1497[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1498[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1499[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1500[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1501[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1502[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1503[68];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1504[29];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1505[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1506[11];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1507[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1508[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1509[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1512[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1513[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1520[14];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1521[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1523[327];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1526[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1527[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1528[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1529[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1530[18];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1531[15];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1532[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1533[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1534[12];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1535[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1536[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1540[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1541[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1542[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1543[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1544[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1546[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1547[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1549[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1550[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1555[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1561[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1568[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1572[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1573[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1574[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1577[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1579[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1582[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1583[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1585[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1586[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1587[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1588[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1589[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1592[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1593[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1602[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1605[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1606[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1607[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1608[14];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1609[26];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1611[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1612[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1615[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1617[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1621[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1622[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1624[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1625[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1626[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1627[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1629[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1631[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1632[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1633[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1634[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1635[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1636[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1637[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1638[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1639[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1640[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1641[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1643[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1645[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1647[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1649[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1651[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1652[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1654[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1655[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1656[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1658[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1659[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1660[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1661[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1662[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1663[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1664[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1792[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1793[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1794[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1795[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1796[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1797[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1800[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1801[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1802[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1803[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1804[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1806[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1807[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1808[13];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1809[15];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1810[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1811[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1812[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1813[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1814[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1816[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1817[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1818[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1820[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1821[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1822[25];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1823[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1824[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1825[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1826[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1827[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1828[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1830[11];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1831[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1832[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1836[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1839[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1841[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1842[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1843[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1844[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1845[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1846[15];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1848[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1849[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1850[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1851[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1852[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1853[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1854[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1855[13];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1856[11];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1857[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1858[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1859[16];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1861[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1863[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1864[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1865[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1866[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1867[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1870[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1871[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1872[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1873[15];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1874[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1875[132];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1880[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1881[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1882[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1883[14];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1886[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1887[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1889[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1890[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1894[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1895[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1896[18];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1897[11];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1898[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1899[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1900[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1901[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1902[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1903[11];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1904[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1909[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1911[11];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1912[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1913[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1914[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1916[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1918[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1919[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1920[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1923[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1924[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1925[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1926[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1927[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1928[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1929[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1930[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1931[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1932[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1933[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1934[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1936[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1937[39];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1938[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1939[12];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1941[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1943[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1944[15];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1945[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1946[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1947[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1948[29];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1950[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1951[16];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1952[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1953[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1955[11];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1956[21];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1957[12];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1960[16];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1961[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1963[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1964[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1965[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1966[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1974[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1975[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1985[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1986[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1987[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1988[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1991[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1993[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable1995[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2000[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2002[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2003[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2004[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2006[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2007[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2009[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2010[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2012[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2013[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2014[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2018[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2019[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2021[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2022[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2023[15];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2024[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2025[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2026[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2028[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2029[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2030[12];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2031[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2032[22];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2033[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2034[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2035[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2036[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2040[21];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2041[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2042[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2043[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2044[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2045[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2046[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2047[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2048[50];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2049[11];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2050[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2051[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2052[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2056[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2057[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2058[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2059[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2060[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2061[14];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2062[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2063[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2064[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2065[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2066[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2067[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2068[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2069[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2070[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2072[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2078[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2079[8];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2080[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2081[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2082[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2084[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2086[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2088[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2093[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2094[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2095[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2096[12];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2097[37];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2098[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2099[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2101[12];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2102[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2104[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2105[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2106[16];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2107[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2108[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2110[16];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2111[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2113[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2114[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2115[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2116[10];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2117[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2118[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2119[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2121[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2122[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2123[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2124[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2125[7];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2132[12];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2134[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2139[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2140[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2142[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2143[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2145[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2147[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2148[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2149[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2150[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2151[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2152[22];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2153[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2154[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2155[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2174[11];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2175[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2177[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2178[18];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2179[19];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2181[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2183[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2184[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2185[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2186[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2187[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2188[14];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2189[3];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2190[4];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2191[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2192[11];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2193[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2194[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2195[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2196[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2197[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2199[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2203[6];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2204[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2205[9];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2207[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2208[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2209[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2210[5];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2211[1];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2212[2];
IL2CPP_EXTERN_C_CONST int32_t g_FieldOffsetTable2213[1];
IL2CPP_EXTERN_C_CONST int32_t* g_FieldOffsetTable[2214] =
{
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable4,
g_FieldOffsetTable5,
g_FieldOffsetTable6,
g_FieldOffsetTable7,
g_FieldOffsetTable8,
g_FieldOffsetTable9,
NULL,
NULL,
g_FieldOffsetTable12,
NULL,
g_FieldOffsetTable14,
g_FieldOffsetTable15,
g_FieldOffsetTable16,
g_FieldOffsetTable17,
g_FieldOffsetTable18,
g_FieldOffsetTable19,
g_FieldOffsetTable20,
g_FieldOffsetTable21,
g_FieldOffsetTable22,
g_FieldOffsetTable23,
NULL,
NULL,
g_FieldOffsetTable26,
g_FieldOffsetTable27,
g_FieldOffsetTable28,
g_FieldOffsetTable29,
g_FieldOffsetTable30,
g_FieldOffsetTable31,
g_FieldOffsetTable32,
g_FieldOffsetTable33,
g_FieldOffsetTable34,
g_FieldOffsetTable35,
g_FieldOffsetTable36,
g_FieldOffsetTable37,
g_FieldOffsetTable38,
g_FieldOffsetTable39,
g_FieldOffsetTable40,
g_FieldOffsetTable41,
g_FieldOffsetTable42,
g_FieldOffsetTable43,
NULL,
NULL,
g_FieldOffsetTable46,
g_FieldOffsetTable47,
g_FieldOffsetTable48,
g_FieldOffsetTable49,
g_FieldOffsetTable50,
g_FieldOffsetTable51,
NULL,
g_FieldOffsetTable53,
NULL,
g_FieldOffsetTable55,
NULL,
g_FieldOffsetTable57,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable65,
g_FieldOffsetTable66,
g_FieldOffsetTable67,
g_FieldOffsetTable68,
g_FieldOffsetTable69,
NULL,
NULL,
g_FieldOffsetTable72,
g_FieldOffsetTable73,
g_FieldOffsetTable74,
g_FieldOffsetTable75,
g_FieldOffsetTable76,
g_FieldOffsetTable77,
g_FieldOffsetTable78,
g_FieldOffsetTable79,
g_FieldOffsetTable80,
g_FieldOffsetTable81,
g_FieldOffsetTable82,
g_FieldOffsetTable83,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable98,
NULL,
g_FieldOffsetTable100,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable105,
g_FieldOffsetTable106,
g_FieldOffsetTable107,
g_FieldOffsetTable108,
g_FieldOffsetTable109,
NULL,
g_FieldOffsetTable111,
NULL,
g_FieldOffsetTable113,
g_FieldOffsetTable114,
g_FieldOffsetTable115,
NULL,
g_FieldOffsetTable117,
g_FieldOffsetTable118,
g_FieldOffsetTable119,
g_FieldOffsetTable120,
g_FieldOffsetTable121,
g_FieldOffsetTable122,
NULL,
NULL,
g_FieldOffsetTable125,
g_FieldOffsetTable126,
g_FieldOffsetTable127,
g_FieldOffsetTable128,
g_FieldOffsetTable129,
g_FieldOffsetTable130,
g_FieldOffsetTable131,
NULL,
g_FieldOffsetTable133,
g_FieldOffsetTable134,
NULL,
NULL,
g_FieldOffsetTable137,
g_FieldOffsetTable138,
NULL,
g_FieldOffsetTable140,
g_FieldOffsetTable141,
g_FieldOffsetTable142,
NULL,
NULL,
g_FieldOffsetTable145,
g_FieldOffsetTable146,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable151,
g_FieldOffsetTable152,
g_FieldOffsetTable153,
NULL,
g_FieldOffsetTable155,
g_FieldOffsetTable156,
g_FieldOffsetTable157,
g_FieldOffsetTable158,
g_FieldOffsetTable159,
g_FieldOffsetTable160,
g_FieldOffsetTable161,
g_FieldOffsetTable162,
g_FieldOffsetTable163,
g_FieldOffsetTable164,
g_FieldOffsetTable165,
g_FieldOffsetTable166,
g_FieldOffsetTable167,
g_FieldOffsetTable168,
g_FieldOffsetTable169,
g_FieldOffsetTable170,
g_FieldOffsetTable171,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable183,
g_FieldOffsetTable184,
g_FieldOffsetTable185,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable190,
NULL,
NULL,
NULL,
g_FieldOffsetTable194,
g_FieldOffsetTable195,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable202,
g_FieldOffsetTable203,
g_FieldOffsetTable204,
g_FieldOffsetTable205,
NULL,
NULL,
NULL,
g_FieldOffsetTable209,
NULL,
g_FieldOffsetTable211,
NULL,
g_FieldOffsetTable213,
g_FieldOffsetTable214,
g_FieldOffsetTable215,
g_FieldOffsetTable216,
g_FieldOffsetTable217,
NULL,
g_FieldOffsetTable219,
NULL,
g_FieldOffsetTable221,
NULL,
g_FieldOffsetTable223,
g_FieldOffsetTable224,
g_FieldOffsetTable225,
g_FieldOffsetTable226,
g_FieldOffsetTable227,
NULL,
NULL,
NULL,
g_FieldOffsetTable231,
g_FieldOffsetTable232,
g_FieldOffsetTable233,
g_FieldOffsetTable234,
g_FieldOffsetTable235,
g_FieldOffsetTable236,
g_FieldOffsetTable237,
g_FieldOffsetTable238,
g_FieldOffsetTable239,
g_FieldOffsetTable240,
g_FieldOffsetTable241,
NULL,
g_FieldOffsetTable243,
g_FieldOffsetTable244,
g_FieldOffsetTable245,
g_FieldOffsetTable246,
g_FieldOffsetTable247,
g_FieldOffsetTable248,
g_FieldOffsetTable249,
NULL,
g_FieldOffsetTable251,
NULL,
g_FieldOffsetTable253,
g_FieldOffsetTable254,
g_FieldOffsetTable255,
g_FieldOffsetTable256,
NULL,
g_FieldOffsetTable258,
g_FieldOffsetTable259,
g_FieldOffsetTable260,
g_FieldOffsetTable261,
NULL,
g_FieldOffsetTable263,
NULL,
g_FieldOffsetTable265,
g_FieldOffsetTable266,
g_FieldOffsetTable267,
NULL,
g_FieldOffsetTable269,
g_FieldOffsetTable270,
NULL,
NULL,
g_FieldOffsetTable273,
g_FieldOffsetTable274,
g_FieldOffsetTable275,
g_FieldOffsetTable276,
g_FieldOffsetTable277,
g_FieldOffsetTable278,
g_FieldOffsetTable279,
g_FieldOffsetTable280,
g_FieldOffsetTable281,
g_FieldOffsetTable282,
g_FieldOffsetTable283,
g_FieldOffsetTable284,
g_FieldOffsetTable285,
g_FieldOffsetTable286,
NULL,
g_FieldOffsetTable288,
NULL,
g_FieldOffsetTable290,
g_FieldOffsetTable291,
g_FieldOffsetTable292,
g_FieldOffsetTable293,
g_FieldOffsetTable294,
NULL,
g_FieldOffsetTable296,
g_FieldOffsetTable297,
NULL,
g_FieldOffsetTable299,
g_FieldOffsetTable300,
g_FieldOffsetTable301,
NULL,
g_FieldOffsetTable303,
g_FieldOffsetTable304,
g_FieldOffsetTable305,
NULL,
g_FieldOffsetTable307,
g_FieldOffsetTable308,
g_FieldOffsetTable309,
g_FieldOffsetTable310,
g_FieldOffsetTable311,
g_FieldOffsetTable312,
g_FieldOffsetTable313,
g_FieldOffsetTable314,
g_FieldOffsetTable315,
g_FieldOffsetTable316,
g_FieldOffsetTable317,
g_FieldOffsetTable318,
g_FieldOffsetTable319,
g_FieldOffsetTable320,
g_FieldOffsetTable321,
g_FieldOffsetTable322,
g_FieldOffsetTable323,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable329,
NULL,
g_FieldOffsetTable331,
g_FieldOffsetTable332,
g_FieldOffsetTable333,
g_FieldOffsetTable334,
g_FieldOffsetTable335,
NULL,
g_FieldOffsetTable337,
g_FieldOffsetTable338,
NULL,
g_FieldOffsetTable340,
g_FieldOffsetTable341,
g_FieldOffsetTable342,
g_FieldOffsetTable343,
g_FieldOffsetTable344,
g_FieldOffsetTable345,
g_FieldOffsetTable346,
NULL,
g_FieldOffsetTable348,
g_FieldOffsetTable349,
NULL,
g_FieldOffsetTable351,
g_FieldOffsetTable352,
g_FieldOffsetTable353,
NULL,
NULL,
g_FieldOffsetTable356,
g_FieldOffsetTable357,
g_FieldOffsetTable358,
g_FieldOffsetTable359,
g_FieldOffsetTable360,
g_FieldOffsetTable361,
g_FieldOffsetTable362,
g_FieldOffsetTable363,
g_FieldOffsetTable364,
NULL,
NULL,
g_FieldOffsetTable367,
g_FieldOffsetTable368,
g_FieldOffsetTable369,
g_FieldOffsetTable370,
g_FieldOffsetTable371,
g_FieldOffsetTable372,
g_FieldOffsetTable373,
g_FieldOffsetTable374,
g_FieldOffsetTable375,
g_FieldOffsetTable376,
g_FieldOffsetTable377,
NULL,
g_FieldOffsetTable379,
g_FieldOffsetTable380,
g_FieldOffsetTable381,
g_FieldOffsetTable382,
g_FieldOffsetTable383,
g_FieldOffsetTable384,
g_FieldOffsetTable385,
g_FieldOffsetTable386,
g_FieldOffsetTable387,
g_FieldOffsetTable388,
g_FieldOffsetTable389,
NULL,
g_FieldOffsetTable391,
g_FieldOffsetTable392,
g_FieldOffsetTable393,
g_FieldOffsetTable394,
g_FieldOffsetTable395,
g_FieldOffsetTable396,
g_FieldOffsetTable397,
g_FieldOffsetTable398,
g_FieldOffsetTable399,
g_FieldOffsetTable400,
NULL,
NULL,
g_FieldOffsetTable403,
g_FieldOffsetTable404,
g_FieldOffsetTable405,
NULL,
g_FieldOffsetTable407,
g_FieldOffsetTable408,
g_FieldOffsetTable409,
g_FieldOffsetTable410,
g_FieldOffsetTable411,
g_FieldOffsetTable412,
g_FieldOffsetTable413,
g_FieldOffsetTable414,
g_FieldOffsetTable415,
NULL,
NULL,
g_FieldOffsetTable418,
g_FieldOffsetTable419,
g_FieldOffsetTable420,
g_FieldOffsetTable421,
g_FieldOffsetTable422,
g_FieldOffsetTable423,
g_FieldOffsetTable424,
g_FieldOffsetTable425,
g_FieldOffsetTable426,
g_FieldOffsetTable427,
g_FieldOffsetTable428,
g_FieldOffsetTable429,
g_FieldOffsetTable430,
g_FieldOffsetTable431,
g_FieldOffsetTable432,
NULL,
g_FieldOffsetTable434,
g_FieldOffsetTable435,
g_FieldOffsetTable436,
g_FieldOffsetTable437,
g_FieldOffsetTable438,
g_FieldOffsetTable439,
NULL,
NULL,
g_FieldOffsetTable442,
NULL,
NULL,
g_FieldOffsetTable445,
g_FieldOffsetTable446,
g_FieldOffsetTable447,
NULL,
g_FieldOffsetTable449,
g_FieldOffsetTable450,
NULL,
g_FieldOffsetTable452,
g_FieldOffsetTable453,
g_FieldOffsetTable454,
g_FieldOffsetTable455,
g_FieldOffsetTable456,
g_FieldOffsetTable457,
NULL,
NULL,
NULL,
g_FieldOffsetTable461,
NULL,
NULL,
g_FieldOffsetTable464,
NULL,
g_FieldOffsetTable466,
g_FieldOffsetTable467,
g_FieldOffsetTable468,
g_FieldOffsetTable469,
NULL,
g_FieldOffsetTable471,
g_FieldOffsetTable472,
g_FieldOffsetTable473,
NULL,
g_FieldOffsetTable475,
NULL,
g_FieldOffsetTable477,
g_FieldOffsetTable478,
g_FieldOffsetTable479,
NULL,
NULL,
g_FieldOffsetTable482,
NULL,
g_FieldOffsetTable484,
NULL,
NULL,
g_FieldOffsetTable487,
g_FieldOffsetTable488,
NULL,
g_FieldOffsetTable490,
NULL,
g_FieldOffsetTable492,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable497,
g_FieldOffsetTable498,
NULL,
g_FieldOffsetTable500,
NULL,
NULL,
NULL,
g_FieldOffsetTable504,
NULL,
g_FieldOffsetTable506,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable515,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable521,
NULL,
NULL,
g_FieldOffsetTable524,
g_FieldOffsetTable525,
NULL,
g_FieldOffsetTable527,
NULL,
NULL,
NULL,
g_FieldOffsetTable531,
g_FieldOffsetTable532,
NULL,
g_FieldOffsetTable534,
g_FieldOffsetTable535,
NULL,
g_FieldOffsetTable537,
g_FieldOffsetTable538,
NULL,
g_FieldOffsetTable540,
g_FieldOffsetTable541,
g_FieldOffsetTable542,
NULL,
g_FieldOffsetTable544,
g_FieldOffsetTable545,
g_FieldOffsetTable546,
NULL,
g_FieldOffsetTable548,
g_FieldOffsetTable549,
g_FieldOffsetTable550,
g_FieldOffsetTable551,
NULL,
g_FieldOffsetTable553,
g_FieldOffsetTable554,
g_FieldOffsetTable555,
NULL,
g_FieldOffsetTable557,
g_FieldOffsetTable558,
g_FieldOffsetTable559,
NULL,
g_FieldOffsetTable561,
g_FieldOffsetTable562,
g_FieldOffsetTable563,
NULL,
g_FieldOffsetTable565,
NULL,
g_FieldOffsetTable567,
g_FieldOffsetTable568,
g_FieldOffsetTable569,
g_FieldOffsetTable570,
g_FieldOffsetTable571,
g_FieldOffsetTable572,
NULL,
NULL,
g_FieldOffsetTable575,
g_FieldOffsetTable576,
g_FieldOffsetTable577,
g_FieldOffsetTable578,
g_FieldOffsetTable579,
g_FieldOffsetTable580,
g_FieldOffsetTable581,
g_FieldOffsetTable582,
g_FieldOffsetTable583,
NULL,
g_FieldOffsetTable585,
g_FieldOffsetTable586,
g_FieldOffsetTable587,
NULL,
g_FieldOffsetTable589,
g_FieldOffsetTable590,
g_FieldOffsetTable591,
g_FieldOffsetTable592,
g_FieldOffsetTable593,
g_FieldOffsetTable594,
g_FieldOffsetTable595,
g_FieldOffsetTable596,
g_FieldOffsetTable597,
g_FieldOffsetTable598,
g_FieldOffsetTable599,
g_FieldOffsetTable600,
g_FieldOffsetTable601,
g_FieldOffsetTable602,
g_FieldOffsetTable603,
g_FieldOffsetTable604,
g_FieldOffsetTable605,
g_FieldOffsetTable606,
g_FieldOffsetTable607,
g_FieldOffsetTable608,
g_FieldOffsetTable609,
g_FieldOffsetTable610,
g_FieldOffsetTable611,
g_FieldOffsetTable612,
g_FieldOffsetTable613,
g_FieldOffsetTable614,
g_FieldOffsetTable615,
NULL,
g_FieldOffsetTable617,
g_FieldOffsetTable618,
g_FieldOffsetTable619,
g_FieldOffsetTable620,
g_FieldOffsetTable621,
g_FieldOffsetTable622,
g_FieldOffsetTable623,
g_FieldOffsetTable624,
g_FieldOffsetTable625,
g_FieldOffsetTable626,
g_FieldOffsetTable627,
g_FieldOffsetTable628,
g_FieldOffsetTable629,
g_FieldOffsetTable630,
g_FieldOffsetTable631,
g_FieldOffsetTable632,
g_FieldOffsetTable633,
g_FieldOffsetTable634,
NULL,
g_FieldOffsetTable636,
g_FieldOffsetTable637,
g_FieldOffsetTable638,
g_FieldOffsetTable639,
g_FieldOffsetTable640,
g_FieldOffsetTable641,
g_FieldOffsetTable642,
g_FieldOffsetTable643,
g_FieldOffsetTable644,
NULL,
g_FieldOffsetTable646,
g_FieldOffsetTable647,
g_FieldOffsetTable648,
g_FieldOffsetTable649,
g_FieldOffsetTable650,
NULL,
g_FieldOffsetTable652,
g_FieldOffsetTable653,
NULL,
g_FieldOffsetTable655,
NULL,
NULL,
g_FieldOffsetTable658,
NULL,
NULL,
g_FieldOffsetTable661,
g_FieldOffsetTable662,
g_FieldOffsetTable663,
g_FieldOffsetTable664,
g_FieldOffsetTable665,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable673,
NULL,
NULL,
g_FieldOffsetTable676,
g_FieldOffsetTable677,
NULL,
g_FieldOffsetTable679,
g_FieldOffsetTable680,
g_FieldOffsetTable681,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable687,
g_FieldOffsetTable688,
g_FieldOffsetTable689,
g_FieldOffsetTable690,
g_FieldOffsetTable691,
g_FieldOffsetTable692,
NULL,
g_FieldOffsetTable694,
NULL,
NULL,
g_FieldOffsetTable697,
NULL,
g_FieldOffsetTable699,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable704,
g_FieldOffsetTable705,
g_FieldOffsetTable706,
g_FieldOffsetTable707,
NULL,
g_FieldOffsetTable709,
NULL,
NULL,
g_FieldOffsetTable712,
g_FieldOffsetTable713,
g_FieldOffsetTable714,
g_FieldOffsetTable715,
NULL,
g_FieldOffsetTable717,
g_FieldOffsetTable718,
NULL,
g_FieldOffsetTable720,
g_FieldOffsetTable721,
g_FieldOffsetTable722,
g_FieldOffsetTable723,
g_FieldOffsetTable724,
NULL,
g_FieldOffsetTable726,
g_FieldOffsetTable727,
g_FieldOffsetTable728,
g_FieldOffsetTable729,
NULL,
g_FieldOffsetTable731,
g_FieldOffsetTable732,
g_FieldOffsetTable733,
g_FieldOffsetTable734,
NULL,
NULL,
g_FieldOffsetTable737,
g_FieldOffsetTable738,
NULL,
g_FieldOffsetTable740,
g_FieldOffsetTable741,
g_FieldOffsetTable742,
g_FieldOffsetTable743,
g_FieldOffsetTable744,
g_FieldOffsetTable745,
g_FieldOffsetTable746,
g_FieldOffsetTable747,
g_FieldOffsetTable748,
g_FieldOffsetTable749,
g_FieldOffsetTable750,
NULL,
g_FieldOffsetTable752,
NULL,
g_FieldOffsetTable754,
g_FieldOffsetTable755,
g_FieldOffsetTable756,
g_FieldOffsetTable757,
NULL,
NULL,
g_FieldOffsetTable760,
g_FieldOffsetTable761,
NULL,
NULL,
NULL,
g_FieldOffsetTable765,
NULL,
NULL,
NULL,
g_FieldOffsetTable769,
g_FieldOffsetTable770,
g_FieldOffsetTable771,
g_FieldOffsetTable772,
NULL,
NULL,
NULL,
g_FieldOffsetTable776,
g_FieldOffsetTable777,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable785,
g_FieldOffsetTable786,
g_FieldOffsetTable787,
g_FieldOffsetTable788,
g_FieldOffsetTable789,
g_FieldOffsetTable790,
g_FieldOffsetTable791,
g_FieldOffsetTable792,
g_FieldOffsetTable793,
g_FieldOffsetTable794,
g_FieldOffsetTable795,
NULL,
g_FieldOffsetTable797,
g_FieldOffsetTable798,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable804,
g_FieldOffsetTable805,
g_FieldOffsetTable806,
g_FieldOffsetTable807,
g_FieldOffsetTable808,
g_FieldOffsetTable809,
g_FieldOffsetTable810,
g_FieldOffsetTable811,
g_FieldOffsetTable812,
g_FieldOffsetTable813,
g_FieldOffsetTable814,
g_FieldOffsetTable815,
g_FieldOffsetTable816,
g_FieldOffsetTable817,
NULL,
NULL,
g_FieldOffsetTable820,
g_FieldOffsetTable821,
g_FieldOffsetTable822,
g_FieldOffsetTable823,
g_FieldOffsetTable824,
g_FieldOffsetTable825,
g_FieldOffsetTable826,
g_FieldOffsetTable827,
g_FieldOffsetTable828,
g_FieldOffsetTable829,
g_FieldOffsetTable830,
g_FieldOffsetTable831,
g_FieldOffsetTable832,
g_FieldOffsetTable833,
g_FieldOffsetTable834,
g_FieldOffsetTable835,
g_FieldOffsetTable836,
NULL,
g_FieldOffsetTable838,
g_FieldOffsetTable839,
g_FieldOffsetTable840,
g_FieldOffsetTable841,
g_FieldOffsetTable842,
g_FieldOffsetTable843,
g_FieldOffsetTable844,
g_FieldOffsetTable845,
g_FieldOffsetTable846,
g_FieldOffsetTable847,
g_FieldOffsetTable848,
g_FieldOffsetTable849,
g_FieldOffsetTable850,
g_FieldOffsetTable851,
g_FieldOffsetTable852,
g_FieldOffsetTable853,
g_FieldOffsetTable854,
g_FieldOffsetTable855,
g_FieldOffsetTable856,
g_FieldOffsetTable857,
g_FieldOffsetTable858,
g_FieldOffsetTable859,
g_FieldOffsetTable860,
g_FieldOffsetTable861,
g_FieldOffsetTable862,
g_FieldOffsetTable863,
g_FieldOffsetTable864,
g_FieldOffsetTable865,
g_FieldOffsetTable866,
g_FieldOffsetTable867,
g_FieldOffsetTable868,
g_FieldOffsetTable869,
g_FieldOffsetTable870,
g_FieldOffsetTable871,
g_FieldOffsetTable872,
g_FieldOffsetTable873,
g_FieldOffsetTable874,
g_FieldOffsetTable875,
g_FieldOffsetTable876,
g_FieldOffsetTable877,
g_FieldOffsetTable878,
g_FieldOffsetTable879,
NULL,
NULL,
NULL,
g_FieldOffsetTable883,
g_FieldOffsetTable884,
g_FieldOffsetTable885,
g_FieldOffsetTable886,
g_FieldOffsetTable887,
g_FieldOffsetTable888,
g_FieldOffsetTable889,
g_FieldOffsetTable890,
NULL,
NULL,
g_FieldOffsetTable893,
g_FieldOffsetTable894,
g_FieldOffsetTable895,
g_FieldOffsetTable896,
NULL,
NULL,
g_FieldOffsetTable899,
g_FieldOffsetTable900,
g_FieldOffsetTable901,
g_FieldOffsetTable902,
g_FieldOffsetTable903,
g_FieldOffsetTable904,
g_FieldOffsetTable905,
g_FieldOffsetTable906,
NULL,
g_FieldOffsetTable908,
NULL,
g_FieldOffsetTable910,
g_FieldOffsetTable911,
g_FieldOffsetTable912,
NULL,
NULL,
g_FieldOffsetTable915,
NULL,
g_FieldOffsetTable917,
g_FieldOffsetTable918,
g_FieldOffsetTable919,
g_FieldOffsetTable920,
g_FieldOffsetTable921,
g_FieldOffsetTable922,
g_FieldOffsetTable923,
NULL,
NULL,
g_FieldOffsetTable926,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable937,
g_FieldOffsetTable938,
g_FieldOffsetTable939,
g_FieldOffsetTable940,
g_FieldOffsetTable941,
NULL,
g_FieldOffsetTable943,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable951,
g_FieldOffsetTable952,
g_FieldOffsetTable953,
NULL,
g_FieldOffsetTable955,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable960,
g_FieldOffsetTable961,
g_FieldOffsetTable962,
NULL,
g_FieldOffsetTable964,
NULL,
g_FieldOffsetTable966,
g_FieldOffsetTable967,
g_FieldOffsetTable968,
g_FieldOffsetTable969,
g_FieldOffsetTable970,
g_FieldOffsetTable971,
g_FieldOffsetTable972,
g_FieldOffsetTable973,
g_FieldOffsetTable974,
g_FieldOffsetTable975,
g_FieldOffsetTable976,
g_FieldOffsetTable977,
g_FieldOffsetTable978,
g_FieldOffsetTable979,
g_FieldOffsetTable980,
g_FieldOffsetTable981,
g_FieldOffsetTable982,
g_FieldOffsetTable983,
NULL,
g_FieldOffsetTable985,
g_FieldOffsetTable986,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable996,
g_FieldOffsetTable997,
g_FieldOffsetTable998,
g_FieldOffsetTable999,
g_FieldOffsetTable1000,
g_FieldOffsetTable1001,
g_FieldOffsetTable1002,
g_FieldOffsetTable1003,
NULL,
NULL,
NULL,
g_FieldOffsetTable1007,
g_FieldOffsetTable1008,
NULL,
g_FieldOffsetTable1010,
g_FieldOffsetTable1011,
g_FieldOffsetTable1012,
NULL,
NULL,
g_FieldOffsetTable1015,
NULL,
g_FieldOffsetTable1017,
g_FieldOffsetTable1018,
g_FieldOffsetTable1019,
g_FieldOffsetTable1020,
g_FieldOffsetTable1021,
g_FieldOffsetTable1022,
g_FieldOffsetTable1023,
g_FieldOffsetTable1024,
g_FieldOffsetTable1025,
g_FieldOffsetTable1026,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1031,
g_FieldOffsetTable1032,
g_FieldOffsetTable1033,
g_FieldOffsetTable1034,
g_FieldOffsetTable1035,
g_FieldOffsetTable1036,
g_FieldOffsetTable1037,
g_FieldOffsetTable1038,
g_FieldOffsetTable1039,
g_FieldOffsetTable1040,
g_FieldOffsetTable1041,
g_FieldOffsetTable1042,
NULL,
NULL,
g_FieldOffsetTable1045,
g_FieldOffsetTable1046,
NULL,
g_FieldOffsetTable1048,
g_FieldOffsetTable1049,
NULL,
NULL,
g_FieldOffsetTable1052,
NULL,
NULL,
NULL,
g_FieldOffsetTable1056,
g_FieldOffsetTable1057,
NULL,
NULL,
g_FieldOffsetTable1060,
g_FieldOffsetTable1061,
g_FieldOffsetTable1062,
g_FieldOffsetTable1063,
g_FieldOffsetTable1064,
g_FieldOffsetTable1065,
g_FieldOffsetTable1066,
g_FieldOffsetTable1067,
g_FieldOffsetTable1068,
g_FieldOffsetTable1069,
NULL,
g_FieldOffsetTable1071,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1076,
g_FieldOffsetTable1077,
g_FieldOffsetTable1078,
g_FieldOffsetTable1079,
g_FieldOffsetTable1080,
g_FieldOffsetTable1081,
g_FieldOffsetTable1082,
NULL,
g_FieldOffsetTable1084,
NULL,
NULL,
NULL,
g_FieldOffsetTable1088,
g_FieldOffsetTable1089,
g_FieldOffsetTable1090,
g_FieldOffsetTable1091,
g_FieldOffsetTable1092,
g_FieldOffsetTable1093,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1109,
g_FieldOffsetTable1110,
g_FieldOffsetTable1111,
g_FieldOffsetTable1112,
NULL,
g_FieldOffsetTable1114,
g_FieldOffsetTable1115,
g_FieldOffsetTable1116,
g_FieldOffsetTable1117,
NULL,
NULL,
g_FieldOffsetTable1120,
g_FieldOffsetTable1121,
g_FieldOffsetTable1122,
g_FieldOffsetTable1123,
g_FieldOffsetTable1124,
NULL,
g_FieldOffsetTable1126,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1138,
g_FieldOffsetTable1139,
g_FieldOffsetTable1140,
g_FieldOffsetTable1141,
g_FieldOffsetTable1142,
NULL,
g_FieldOffsetTable1144,
g_FieldOffsetTable1145,
NULL,
g_FieldOffsetTable1147,
g_FieldOffsetTable1148,
NULL,
g_FieldOffsetTable1150,
g_FieldOffsetTable1151,
g_FieldOffsetTable1152,
g_FieldOffsetTable1153,
g_FieldOffsetTable1154,
g_FieldOffsetTable1155,
g_FieldOffsetTable1156,
NULL,
NULL,
NULL,
g_FieldOffsetTable1160,
NULL,
NULL,
g_FieldOffsetTable1163,
g_FieldOffsetTable1164,
g_FieldOffsetTable1165,
g_FieldOffsetTable1166,
g_FieldOffsetTable1167,
g_FieldOffsetTable1168,
g_FieldOffsetTable1169,
g_FieldOffsetTable1170,
g_FieldOffsetTable1171,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1176,
g_FieldOffsetTable1177,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1182,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1203,
g_FieldOffsetTable1204,
NULL,
NULL,
NULL,
g_FieldOffsetTable1208,
g_FieldOffsetTable1209,
g_FieldOffsetTable1210,
g_FieldOffsetTable1211,
g_FieldOffsetTable1212,
g_FieldOffsetTable1213,
g_FieldOffsetTable1214,
g_FieldOffsetTable1215,
g_FieldOffsetTable1216,
g_FieldOffsetTable1217,
NULL,
g_FieldOffsetTable1219,
g_FieldOffsetTable1220,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1271,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1278,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1283,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1288,
g_FieldOffsetTable1289,
g_FieldOffsetTable1290,
g_FieldOffsetTable1291,
g_FieldOffsetTable1292,
g_FieldOffsetTable1293,
NULL,
g_FieldOffsetTable1295,
g_FieldOffsetTable1296,
g_FieldOffsetTable1297,
g_FieldOffsetTable1298,
g_FieldOffsetTable1299,
g_FieldOffsetTable1300,
g_FieldOffsetTable1301,
g_FieldOffsetTable1302,
g_FieldOffsetTable1303,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1309,
g_FieldOffsetTable1310,
NULL,
g_FieldOffsetTable1312,
g_FieldOffsetTable1313,
NULL,
g_FieldOffsetTable1315,
NULL,
g_FieldOffsetTable1317,
NULL,
NULL,
NULL,
g_FieldOffsetTable1321,
g_FieldOffsetTable1322,
g_FieldOffsetTable1323,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1330,
NULL,
g_FieldOffsetTable1332,
g_FieldOffsetTable1333,
NULL,
g_FieldOffsetTable1335,
g_FieldOffsetTable1336,
g_FieldOffsetTable1337,
g_FieldOffsetTable1338,
NULL,
g_FieldOffsetTable1340,
g_FieldOffsetTable1341,
g_FieldOffsetTable1342,
g_FieldOffsetTable1343,
NULL,
g_FieldOffsetTable1345,
g_FieldOffsetTable1346,
g_FieldOffsetTable1347,
g_FieldOffsetTable1348,
g_FieldOffsetTable1349,
g_FieldOffsetTable1350,
g_FieldOffsetTable1351,
g_FieldOffsetTable1352,
NULL,
NULL,
g_FieldOffsetTable1355,
g_FieldOffsetTable1356,
g_FieldOffsetTable1357,
g_FieldOffsetTable1358,
g_FieldOffsetTable1359,
g_FieldOffsetTable1360,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1386,
g_FieldOffsetTable1387,
g_FieldOffsetTable1388,
g_FieldOffsetTable1389,
g_FieldOffsetTable1390,
g_FieldOffsetTable1391,
g_FieldOffsetTable1392,
g_FieldOffsetTable1393,
NULL,
NULL,
g_FieldOffsetTable1396,
NULL,
NULL,
NULL,
g_FieldOffsetTable1400,
NULL,
NULL,
g_FieldOffsetTable1403,
g_FieldOffsetTable1404,
g_FieldOffsetTable1405,
g_FieldOffsetTable1406,
g_FieldOffsetTable1407,
g_FieldOffsetTable1408,
g_FieldOffsetTable1409,
g_FieldOffsetTable1410,
NULL,
NULL,
NULL,
g_FieldOffsetTable1414,
g_FieldOffsetTable1415,
g_FieldOffsetTable1416,
g_FieldOffsetTable1417,
NULL,
g_FieldOffsetTable1419,
NULL,
g_FieldOffsetTable1421,
g_FieldOffsetTable1422,
g_FieldOffsetTable1423,
NULL,
g_FieldOffsetTable1425,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1432,
g_FieldOffsetTable1433,
g_FieldOffsetTable1434,
g_FieldOffsetTable1435,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1451,
g_FieldOffsetTable1452,
g_FieldOffsetTable1453,
g_FieldOffsetTable1454,
g_FieldOffsetTable1455,
g_FieldOffsetTable1456,
g_FieldOffsetTable1457,
g_FieldOffsetTable1458,
g_FieldOffsetTable1459,
NULL,
NULL,
g_FieldOffsetTable1462,
g_FieldOffsetTable1463,
g_FieldOffsetTable1464,
NULL,
g_FieldOffsetTable1466,
g_FieldOffsetTable1467,
NULL,
g_FieldOffsetTable1469,
g_FieldOffsetTable1470,
NULL,
g_FieldOffsetTable1472,
NULL,
g_FieldOffsetTable1474,
g_FieldOffsetTable1475,
g_FieldOffsetTable1476,
g_FieldOffsetTable1477,
g_FieldOffsetTable1478,
g_FieldOffsetTable1479,
g_FieldOffsetTable1480,
g_FieldOffsetTable1481,
NULL,
g_FieldOffsetTable1483,
NULL,
NULL,
g_FieldOffsetTable1486,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1492,
g_FieldOffsetTable1493,
NULL,
g_FieldOffsetTable1495,
g_FieldOffsetTable1496,
g_FieldOffsetTable1497,
g_FieldOffsetTable1498,
g_FieldOffsetTable1499,
g_FieldOffsetTable1500,
g_FieldOffsetTable1501,
g_FieldOffsetTable1502,
g_FieldOffsetTable1503,
g_FieldOffsetTable1504,
g_FieldOffsetTable1505,
g_FieldOffsetTable1506,
g_FieldOffsetTable1507,
g_FieldOffsetTable1508,
g_FieldOffsetTable1509,
NULL,
NULL,
g_FieldOffsetTable1512,
g_FieldOffsetTable1513,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1520,
g_FieldOffsetTable1521,
NULL,
g_FieldOffsetTable1523,
NULL,
NULL,
g_FieldOffsetTable1526,
g_FieldOffsetTable1527,
g_FieldOffsetTable1528,
g_FieldOffsetTable1529,
g_FieldOffsetTable1530,
g_FieldOffsetTable1531,
g_FieldOffsetTable1532,
g_FieldOffsetTable1533,
g_FieldOffsetTable1534,
g_FieldOffsetTable1535,
g_FieldOffsetTable1536,
NULL,
NULL,
NULL,
g_FieldOffsetTable1540,
g_FieldOffsetTable1541,
g_FieldOffsetTable1542,
g_FieldOffsetTable1543,
g_FieldOffsetTable1544,
NULL,
g_FieldOffsetTable1546,
g_FieldOffsetTable1547,
NULL,
g_FieldOffsetTable1549,
g_FieldOffsetTable1550,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1555,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1561,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1568,
NULL,
NULL,
NULL,
g_FieldOffsetTable1572,
g_FieldOffsetTable1573,
g_FieldOffsetTable1574,
NULL,
NULL,
g_FieldOffsetTable1577,
NULL,
g_FieldOffsetTable1579,
NULL,
NULL,
g_FieldOffsetTable1582,
g_FieldOffsetTable1583,
NULL,
g_FieldOffsetTable1585,
g_FieldOffsetTable1586,
g_FieldOffsetTable1587,
g_FieldOffsetTable1588,
g_FieldOffsetTable1589,
NULL,
NULL,
g_FieldOffsetTable1592,
g_FieldOffsetTable1593,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1602,
NULL,
NULL,
g_FieldOffsetTable1605,
g_FieldOffsetTable1606,
g_FieldOffsetTable1607,
g_FieldOffsetTable1608,
g_FieldOffsetTable1609,
NULL,
g_FieldOffsetTable1611,
g_FieldOffsetTable1612,
NULL,
NULL,
g_FieldOffsetTable1615,
NULL,
g_FieldOffsetTable1617,
NULL,
NULL,
NULL,
g_FieldOffsetTable1621,
g_FieldOffsetTable1622,
NULL,
g_FieldOffsetTable1624,
g_FieldOffsetTable1625,
g_FieldOffsetTable1626,
g_FieldOffsetTable1627,
NULL,
g_FieldOffsetTable1629,
NULL,
g_FieldOffsetTable1631,
g_FieldOffsetTable1632,
g_FieldOffsetTable1633,
g_FieldOffsetTable1634,
g_FieldOffsetTable1635,
g_FieldOffsetTable1636,
g_FieldOffsetTable1637,
g_FieldOffsetTable1638,
g_FieldOffsetTable1639,
g_FieldOffsetTable1640,
g_FieldOffsetTable1641,
NULL,
g_FieldOffsetTable1643,
NULL,
g_FieldOffsetTable1645,
NULL,
g_FieldOffsetTable1647,
NULL,
g_FieldOffsetTable1649,
NULL,
g_FieldOffsetTable1651,
g_FieldOffsetTable1652,
NULL,
g_FieldOffsetTable1654,
g_FieldOffsetTable1655,
g_FieldOffsetTable1656,
NULL,
g_FieldOffsetTable1658,
g_FieldOffsetTable1659,
g_FieldOffsetTable1660,
g_FieldOffsetTable1661,
g_FieldOffsetTable1662,
g_FieldOffsetTable1663,
g_FieldOffsetTable1664,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1792,
g_FieldOffsetTable1793,
g_FieldOffsetTable1794,
g_FieldOffsetTable1795,
g_FieldOffsetTable1796,
g_FieldOffsetTable1797,
NULL,
NULL,
g_FieldOffsetTable1800,
g_FieldOffsetTable1801,
g_FieldOffsetTable1802,
g_FieldOffsetTable1803,
g_FieldOffsetTable1804,
NULL,
g_FieldOffsetTable1806,
g_FieldOffsetTable1807,
g_FieldOffsetTable1808,
g_FieldOffsetTable1809,
g_FieldOffsetTable1810,
g_FieldOffsetTable1811,
g_FieldOffsetTable1812,
g_FieldOffsetTable1813,
g_FieldOffsetTable1814,
NULL,
g_FieldOffsetTable1816,
g_FieldOffsetTable1817,
g_FieldOffsetTable1818,
NULL,
g_FieldOffsetTable1820,
g_FieldOffsetTable1821,
g_FieldOffsetTable1822,
g_FieldOffsetTable1823,
g_FieldOffsetTable1824,
g_FieldOffsetTable1825,
g_FieldOffsetTable1826,
g_FieldOffsetTable1827,
g_FieldOffsetTable1828,
NULL,
g_FieldOffsetTable1830,
g_FieldOffsetTable1831,
g_FieldOffsetTable1832,
NULL,
NULL,
NULL,
g_FieldOffsetTable1836,
NULL,
NULL,
g_FieldOffsetTable1839,
NULL,
g_FieldOffsetTable1841,
g_FieldOffsetTable1842,
g_FieldOffsetTable1843,
g_FieldOffsetTable1844,
g_FieldOffsetTable1845,
g_FieldOffsetTable1846,
NULL,
g_FieldOffsetTable1848,
g_FieldOffsetTable1849,
g_FieldOffsetTable1850,
g_FieldOffsetTable1851,
g_FieldOffsetTable1852,
g_FieldOffsetTable1853,
g_FieldOffsetTable1854,
g_FieldOffsetTable1855,
g_FieldOffsetTable1856,
g_FieldOffsetTable1857,
g_FieldOffsetTable1858,
g_FieldOffsetTable1859,
NULL,
g_FieldOffsetTable1861,
NULL,
g_FieldOffsetTable1863,
g_FieldOffsetTable1864,
g_FieldOffsetTable1865,
g_FieldOffsetTable1866,
g_FieldOffsetTable1867,
NULL,
NULL,
g_FieldOffsetTable1870,
g_FieldOffsetTable1871,
g_FieldOffsetTable1872,
g_FieldOffsetTable1873,
g_FieldOffsetTable1874,
g_FieldOffsetTable1875,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1880,
g_FieldOffsetTable1881,
g_FieldOffsetTable1882,
g_FieldOffsetTable1883,
NULL,
NULL,
g_FieldOffsetTable1886,
g_FieldOffsetTable1887,
NULL,
g_FieldOffsetTable1889,
g_FieldOffsetTable1890,
NULL,
NULL,
NULL,
g_FieldOffsetTable1894,
g_FieldOffsetTable1895,
g_FieldOffsetTable1896,
g_FieldOffsetTable1897,
g_FieldOffsetTable1898,
g_FieldOffsetTable1899,
g_FieldOffsetTable1900,
g_FieldOffsetTable1901,
g_FieldOffsetTable1902,
g_FieldOffsetTable1903,
g_FieldOffsetTable1904,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1909,
NULL,
g_FieldOffsetTable1911,
g_FieldOffsetTable1912,
g_FieldOffsetTable1913,
g_FieldOffsetTable1914,
NULL,
g_FieldOffsetTable1916,
NULL,
g_FieldOffsetTable1918,
g_FieldOffsetTable1919,
g_FieldOffsetTable1920,
NULL,
NULL,
g_FieldOffsetTable1923,
g_FieldOffsetTable1924,
g_FieldOffsetTable1925,
g_FieldOffsetTable1926,
g_FieldOffsetTable1927,
g_FieldOffsetTable1928,
g_FieldOffsetTable1929,
g_FieldOffsetTable1930,
g_FieldOffsetTable1931,
g_FieldOffsetTable1932,
g_FieldOffsetTable1933,
g_FieldOffsetTable1934,
NULL,
g_FieldOffsetTable1936,
g_FieldOffsetTable1937,
g_FieldOffsetTable1938,
g_FieldOffsetTable1939,
NULL,
g_FieldOffsetTable1941,
NULL,
g_FieldOffsetTable1943,
g_FieldOffsetTable1944,
g_FieldOffsetTable1945,
g_FieldOffsetTable1946,
g_FieldOffsetTable1947,
g_FieldOffsetTable1948,
NULL,
g_FieldOffsetTable1950,
g_FieldOffsetTable1951,
g_FieldOffsetTable1952,
g_FieldOffsetTable1953,
NULL,
g_FieldOffsetTable1955,
g_FieldOffsetTable1956,
g_FieldOffsetTable1957,
NULL,
NULL,
g_FieldOffsetTable1960,
g_FieldOffsetTable1961,
NULL,
g_FieldOffsetTable1963,
g_FieldOffsetTable1964,
g_FieldOffsetTable1965,
g_FieldOffsetTable1966,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1974,
g_FieldOffsetTable1975,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable1985,
g_FieldOffsetTable1986,
g_FieldOffsetTable1987,
g_FieldOffsetTable1988,
NULL,
NULL,
g_FieldOffsetTable1991,
NULL,
g_FieldOffsetTable1993,
NULL,
g_FieldOffsetTable1995,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable2000,
NULL,
g_FieldOffsetTable2002,
g_FieldOffsetTable2003,
g_FieldOffsetTable2004,
NULL,
g_FieldOffsetTable2006,
g_FieldOffsetTable2007,
NULL,
g_FieldOffsetTable2009,
g_FieldOffsetTable2010,
NULL,
g_FieldOffsetTable2012,
g_FieldOffsetTable2013,
g_FieldOffsetTable2014,
NULL,
NULL,
NULL,
g_FieldOffsetTable2018,
g_FieldOffsetTable2019,
NULL,
g_FieldOffsetTable2021,
g_FieldOffsetTable2022,
g_FieldOffsetTable2023,
g_FieldOffsetTable2024,
g_FieldOffsetTable2025,
g_FieldOffsetTable2026,
NULL,
g_FieldOffsetTable2028,
g_FieldOffsetTable2029,
g_FieldOffsetTable2030,
g_FieldOffsetTable2031,
g_FieldOffsetTable2032,
g_FieldOffsetTable2033,
g_FieldOffsetTable2034,
g_FieldOffsetTable2035,
g_FieldOffsetTable2036,
NULL,
NULL,
NULL,
g_FieldOffsetTable2040,
g_FieldOffsetTable2041,
g_FieldOffsetTable2042,
g_FieldOffsetTable2043,
g_FieldOffsetTable2044,
g_FieldOffsetTable2045,
g_FieldOffsetTable2046,
g_FieldOffsetTable2047,
g_FieldOffsetTable2048,
g_FieldOffsetTable2049,
g_FieldOffsetTable2050,
g_FieldOffsetTable2051,
g_FieldOffsetTable2052,
NULL,
NULL,
NULL,
g_FieldOffsetTable2056,
g_FieldOffsetTable2057,
g_FieldOffsetTable2058,
g_FieldOffsetTable2059,
g_FieldOffsetTable2060,
g_FieldOffsetTable2061,
g_FieldOffsetTable2062,
g_FieldOffsetTable2063,
g_FieldOffsetTable2064,
g_FieldOffsetTable2065,
g_FieldOffsetTable2066,
g_FieldOffsetTable2067,
g_FieldOffsetTable2068,
g_FieldOffsetTable2069,
g_FieldOffsetTable2070,
NULL,
g_FieldOffsetTable2072,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable2078,
g_FieldOffsetTable2079,
g_FieldOffsetTable2080,
g_FieldOffsetTable2081,
g_FieldOffsetTable2082,
NULL,
g_FieldOffsetTable2084,
NULL,
g_FieldOffsetTable2086,
NULL,
g_FieldOffsetTable2088,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable2093,
g_FieldOffsetTable2094,
g_FieldOffsetTable2095,
g_FieldOffsetTable2096,
g_FieldOffsetTable2097,
g_FieldOffsetTable2098,
g_FieldOffsetTable2099,
NULL,
g_FieldOffsetTable2101,
g_FieldOffsetTable2102,
NULL,
g_FieldOffsetTable2104,
g_FieldOffsetTable2105,
g_FieldOffsetTable2106,
g_FieldOffsetTable2107,
g_FieldOffsetTable2108,
NULL,
g_FieldOffsetTable2110,
g_FieldOffsetTable2111,
NULL,
g_FieldOffsetTable2113,
g_FieldOffsetTable2114,
g_FieldOffsetTable2115,
g_FieldOffsetTable2116,
g_FieldOffsetTable2117,
g_FieldOffsetTable2118,
g_FieldOffsetTable2119,
NULL,
g_FieldOffsetTable2121,
g_FieldOffsetTable2122,
g_FieldOffsetTable2123,
g_FieldOffsetTable2124,
g_FieldOffsetTable2125,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable2132,
NULL,
g_FieldOffsetTable2134,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable2139,
g_FieldOffsetTable2140,
NULL,
g_FieldOffsetTable2142,
g_FieldOffsetTable2143,
NULL,
g_FieldOffsetTable2145,
NULL,
g_FieldOffsetTable2147,
g_FieldOffsetTable2148,
g_FieldOffsetTable2149,
g_FieldOffsetTable2150,
g_FieldOffsetTable2151,
g_FieldOffsetTable2152,
g_FieldOffsetTable2153,
g_FieldOffsetTable2154,
g_FieldOffsetTable2155,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
g_FieldOffsetTable2174,
g_FieldOffsetTable2175,
NULL,
g_FieldOffsetTable2177,
g_FieldOffsetTable2178,
g_FieldOffsetTable2179,
NULL,
g_FieldOffsetTable2181,
NULL,
g_FieldOffsetTable2183,
g_FieldOffsetTable2184,
g_FieldOffsetTable2185,
g_FieldOffsetTable2186,
g_FieldOffsetTable2187,
g_FieldOffsetTable2188,
g_FieldOffsetTable2189,
g_FieldOffsetTable2190,
g_FieldOffsetTable2191,
g_FieldOffsetTable2192,
g_FieldOffsetTable2193,
g_FieldOffsetTable2194,
g_FieldOffsetTable2195,
g_FieldOffsetTable2196,
g_FieldOffsetTable2197,
NULL,
g_FieldOffsetTable2199,
NULL,
NULL,
NULL,
g_FieldOffsetTable2203,
g_FieldOffsetTable2204,
g_FieldOffsetTable2205,
NULL,
g_FieldOffsetTable2207,
g_FieldOffsetTable2208,
g_FieldOffsetTable2209,
g_FieldOffsetTable2210,
g_FieldOffsetTable2211,
g_FieldOffsetTable2212,
g_FieldOffsetTable2213,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize0;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize4;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize5;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize6;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize7;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize8;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize9;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize10;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize11;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize12;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize13;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize14;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize15;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize16;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize17;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize18;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize19;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize20;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize21;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize22;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize23;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize24;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize25;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize26;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize27;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize28;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize29;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize30;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize31;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize32;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize33;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize34;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize35;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize36;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize37;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize38;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize39;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize40;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize41;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize42;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize43;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize44;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize45;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize46;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize47;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize48;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize49;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize50;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize51;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize52;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize53;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize54;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize55;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize56;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize57;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize58;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize59;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize60;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize61;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize62;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize63;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize64;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize65;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize66;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize67;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize68;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize69;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize70;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize71;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize72;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize73;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize74;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize75;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize76;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize77;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize78;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize79;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize80;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize81;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize82;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize83;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize84;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize85;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize86;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize87;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize88;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize89;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize90;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize91;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize92;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize93;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize94;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize95;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize96;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize97;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize98;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize99;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize100;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize101;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize102;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize103;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize104;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize105;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize106;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize107;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize108;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize109;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize110;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize111;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize112;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize113;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize114;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize115;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize116;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize117;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize118;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize119;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize120;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize121;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize122;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize123;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize124;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize125;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize126;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize127;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize128;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize129;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize130;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize131;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize132;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize133;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize134;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize135;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize136;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize137;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize138;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize139;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize140;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize141;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize142;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize143;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize144;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize145;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize146;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize147;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize148;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize149;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize150;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize151;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize152;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize153;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize154;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize155;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize156;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize157;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize158;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize159;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize160;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize161;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize162;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize163;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize164;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize165;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize166;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize167;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize168;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize169;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize170;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize171;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize172;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize173;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize174;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize175;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize176;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize177;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize178;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize179;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize180;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize181;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize182;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize183;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize184;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize185;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize186;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize187;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize188;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize189;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize190;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize191;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize192;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize193;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize194;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize195;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize196;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize197;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize198;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize199;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize200;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize201;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize202;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize203;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize204;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize205;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize206;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize207;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize208;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize209;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize210;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize211;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize212;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize213;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize214;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize215;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize216;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize217;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize218;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize219;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize220;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize221;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize222;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize223;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize224;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize225;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize226;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize227;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize228;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize229;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize230;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize231;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize232;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize233;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize234;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize235;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize236;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize237;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize238;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize239;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize240;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize241;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize242;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize243;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize244;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize245;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize246;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize247;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize248;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize249;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize250;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize251;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize252;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize253;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize254;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize255;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize256;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize257;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize258;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize259;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize260;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize261;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize262;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize263;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize264;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize265;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize266;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize267;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize268;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize269;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize270;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize271;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize272;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize273;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize274;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize275;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize276;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize277;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize278;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize279;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize280;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize281;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize282;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize283;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize284;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize285;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize286;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize287;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize288;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize289;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize290;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize291;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize292;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize293;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize294;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize295;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize296;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize297;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize298;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize299;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize300;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize301;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize302;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize303;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize304;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize305;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize306;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize307;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize308;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize309;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize310;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize311;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize312;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize313;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize314;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize315;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize316;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize317;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize318;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize319;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize320;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize321;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize322;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize323;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize324;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize325;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize326;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize327;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize328;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize329;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize330;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize331;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize332;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize333;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize334;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize335;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize336;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize337;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize338;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize339;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize340;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize341;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize342;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize343;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize344;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize345;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize346;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize347;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize348;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize349;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize350;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize351;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize352;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize353;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize354;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize355;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize356;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize357;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize358;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize359;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize360;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize361;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize362;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize363;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize364;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize365;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize366;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize367;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize368;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize369;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize370;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize371;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize372;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize373;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize374;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize375;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize376;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize377;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize378;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize379;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize380;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize381;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize382;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize383;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize384;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize385;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize386;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize387;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize388;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize389;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize390;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize391;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize392;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize393;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize394;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize395;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize396;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize397;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize398;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize399;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize400;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize401;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize402;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize403;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize404;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize405;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize406;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize407;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize408;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize409;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize410;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize411;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize412;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize413;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize414;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize415;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize416;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize417;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize418;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize419;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize420;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize421;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize422;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize423;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize424;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize425;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize426;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize427;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize428;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize429;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize430;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize431;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize432;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize433;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize434;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize435;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize436;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize437;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize438;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize439;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize440;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize441;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize442;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize443;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize444;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize445;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize446;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize447;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize448;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize449;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize450;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize451;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize452;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize453;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize454;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize455;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize456;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize457;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize458;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize459;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize460;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize461;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize462;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize463;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize464;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize465;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize466;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize467;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize468;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize469;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize470;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize471;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize472;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize473;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize474;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize475;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize476;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize477;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize478;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize479;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize480;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize481;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize482;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize483;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize484;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize485;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize486;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize487;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize488;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize489;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize490;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize491;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize492;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize493;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize494;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize495;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize496;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize497;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize498;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize499;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize500;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize501;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize502;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize503;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize504;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize505;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize506;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize507;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize508;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize509;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize510;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize511;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize512;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize513;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize514;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize515;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize516;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize517;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize518;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize519;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize520;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize521;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize522;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize523;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize524;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize525;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize526;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize527;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize528;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize529;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize530;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize531;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize532;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize533;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize534;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize535;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize536;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize537;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize538;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize539;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize540;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize541;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize542;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize543;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize544;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize545;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize546;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize547;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize548;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize549;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize550;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize551;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize552;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize553;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize554;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize555;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize556;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize557;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize558;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize559;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize560;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize561;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize562;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize563;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize564;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize565;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize566;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize567;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize568;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize569;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize570;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize571;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize572;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize573;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize574;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize575;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize576;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize577;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize578;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize579;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize580;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize581;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize582;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize583;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize584;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize585;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize586;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize587;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize588;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize589;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize590;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize591;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize592;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize593;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize594;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize595;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize596;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize597;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize598;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize599;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize600;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize601;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize602;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize603;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize604;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize605;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize606;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize607;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize608;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize609;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize610;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize611;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize612;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize613;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize614;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize615;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize616;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize617;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize618;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize619;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize620;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize621;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize622;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize623;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize624;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize625;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize626;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize627;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize628;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize629;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize630;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize631;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize632;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize633;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize634;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize635;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize636;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize637;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize638;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize639;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize640;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize641;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize642;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize643;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize644;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize645;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize646;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize647;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize648;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize649;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize650;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize651;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize652;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize653;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize654;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize655;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize656;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize657;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize658;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize659;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize660;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize661;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize662;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize663;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize664;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize665;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize666;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize667;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize668;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize669;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize670;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize671;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize672;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize673;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize674;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize675;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize676;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize677;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize678;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize679;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize680;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize681;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize682;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize683;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize684;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize685;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize686;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize687;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize688;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize689;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize690;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize691;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize692;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize693;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize694;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize695;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize696;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize697;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize698;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize699;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize700;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize701;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize702;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize703;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize704;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize705;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize706;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize707;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize708;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize709;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize710;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize711;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize712;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize713;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize714;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize715;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize716;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize717;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize718;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize719;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize720;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize721;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize722;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize723;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize724;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize725;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize726;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize727;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize728;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize729;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize730;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize731;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize732;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize733;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize734;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize735;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize736;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize737;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize738;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize739;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize740;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize741;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize742;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize743;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize744;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize745;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize746;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize747;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize748;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize749;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize750;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize751;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize752;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize753;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize754;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize755;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize756;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize757;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize758;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize759;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize760;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize761;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize762;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize763;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize764;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize765;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize766;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize767;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize768;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize769;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize770;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize771;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize772;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize773;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize774;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize775;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize776;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize777;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize778;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize779;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize780;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize781;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize782;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize783;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize784;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize785;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize786;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize787;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize788;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize789;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize790;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize791;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize792;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize793;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize794;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize795;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize796;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize797;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize798;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize799;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize800;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize801;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize802;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize803;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize804;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize805;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize806;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize807;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize808;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize809;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize810;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize811;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize812;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize813;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize814;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize815;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize816;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize817;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize818;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize819;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize820;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize821;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize822;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize823;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize824;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize825;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize826;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize827;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize828;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize829;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize830;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize831;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize832;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize833;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize834;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize835;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize836;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize837;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize838;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize839;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize840;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize841;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize842;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize843;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize844;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize845;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize846;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize847;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize848;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize849;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize850;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize851;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize852;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize853;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize854;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize855;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize856;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize857;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize858;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize859;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize860;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize861;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize862;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize863;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize864;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize865;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize866;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize867;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize868;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize869;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize870;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize871;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize872;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize873;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize874;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize875;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize876;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize877;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize878;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize879;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize880;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize881;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize882;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize883;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize884;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize885;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize886;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize887;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize888;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize889;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize890;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize891;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize892;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize893;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize894;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize895;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize896;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize897;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize898;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize899;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize900;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize901;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize902;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize903;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize904;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize905;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize906;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize907;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize908;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize909;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize910;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize911;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize912;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize913;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize914;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize915;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize916;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize917;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize918;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize919;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize920;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize921;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize922;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize923;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize924;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize925;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize926;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize927;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize928;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize929;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize930;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize931;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize932;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize933;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize934;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize935;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize936;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize937;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize938;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize939;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize940;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize941;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize942;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize943;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize944;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize945;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize946;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize947;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize948;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize949;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize950;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize951;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize952;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize953;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize954;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize955;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize956;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize957;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize958;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize959;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize960;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize961;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize962;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize963;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize964;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize965;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize966;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize967;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize968;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize969;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize970;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize971;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize972;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize973;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize974;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize975;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize976;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize977;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize978;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize979;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize980;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize981;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize982;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize983;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize984;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize985;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize986;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize987;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize988;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize989;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize990;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize991;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize992;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize993;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize994;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize995;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize996;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize997;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize998;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize999;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1000;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1001;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1002;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1003;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1004;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1005;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1006;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1007;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1008;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1009;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1010;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1011;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1012;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1013;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1014;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1015;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1016;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1017;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1018;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1019;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1020;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1021;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1022;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1023;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1024;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1025;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1026;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1027;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1028;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1029;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1030;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1031;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1032;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1033;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1034;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1035;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1036;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1037;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1038;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1039;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1040;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1041;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1042;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1043;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1044;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1045;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1046;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1047;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1048;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1049;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1050;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1051;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1052;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1053;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1054;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1055;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1056;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1057;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1058;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1059;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1060;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1061;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1062;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1063;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1064;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1065;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1066;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1067;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1068;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1069;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1070;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1071;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1072;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1073;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1074;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1075;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1076;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1077;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1078;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1079;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1080;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1081;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1082;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1083;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1084;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1085;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1086;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1087;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1088;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1089;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1090;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1091;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1092;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1093;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1094;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1095;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1096;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1097;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1098;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1099;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1100;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1101;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1102;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1103;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1104;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1105;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1106;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1107;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1108;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1109;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1110;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1111;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1112;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1113;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1114;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1115;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1116;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1117;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1118;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1119;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1120;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1121;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1122;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1123;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1124;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1125;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1126;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1127;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1128;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1129;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1130;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1131;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1132;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1133;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1134;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1135;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1136;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1137;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1138;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1139;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1140;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1141;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1142;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1143;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1144;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1145;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1146;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1147;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1148;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1149;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1150;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1151;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1152;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1153;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1154;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1155;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1156;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1157;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1158;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1159;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1160;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1161;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1162;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1163;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1164;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1165;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1166;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1167;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1168;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1169;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1170;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1171;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1172;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1173;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1174;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1175;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1176;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1177;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1178;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1179;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1180;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1181;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1182;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1183;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1184;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1185;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1186;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1187;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1188;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1189;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1190;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1191;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1192;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1193;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1194;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1195;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1196;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1197;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1198;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1199;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1200;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1201;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1202;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1203;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1204;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1205;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1206;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1207;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1208;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1209;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1210;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1211;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1212;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1213;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1214;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1215;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1216;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1217;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1218;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1219;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1220;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1221;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1222;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1223;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1224;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1225;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1226;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1227;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1228;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1229;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1230;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1231;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1232;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1233;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1234;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1235;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1236;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1237;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1238;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1239;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1240;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1241;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1242;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1243;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1244;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1245;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1246;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1247;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1248;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1249;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1250;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1251;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1252;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1253;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1254;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1255;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1256;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1257;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1258;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1259;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1260;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1261;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1262;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1263;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1264;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1265;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1266;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1267;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1268;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1269;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1270;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1271;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1272;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1273;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1274;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1275;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1276;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1277;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1278;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1279;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1280;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1281;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1282;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1283;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1284;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1285;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1286;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1287;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1288;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1289;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1290;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1291;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1292;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1293;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1294;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1295;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1296;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1297;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1298;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1299;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1300;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1301;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1302;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1303;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1304;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1305;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1306;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1307;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1308;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1309;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1310;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1311;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1312;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1313;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1314;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1315;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1316;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1317;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1318;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1319;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1320;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1321;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1322;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1323;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1324;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1325;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1326;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1327;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1328;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1329;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1330;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1331;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1332;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1333;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1334;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1335;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1336;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1337;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1338;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1339;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1340;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1341;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1342;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1343;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1344;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1345;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1346;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1347;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1348;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1349;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1350;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1351;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1352;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1353;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1354;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1355;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1356;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1357;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1358;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1359;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1360;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1361;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1362;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1363;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1364;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1365;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1366;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1367;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1368;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1369;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1370;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1371;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1372;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1373;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1374;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1375;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1376;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1377;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1378;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1379;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1380;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1381;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1382;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1383;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1384;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1385;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1386;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1387;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1388;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1389;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1390;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1391;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1392;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1393;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1394;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1395;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1396;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1397;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1398;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1399;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1400;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1401;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1402;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1403;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1404;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1405;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1406;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1407;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1408;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1409;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1410;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1411;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1412;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1413;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1414;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1415;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1416;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1417;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1418;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1419;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1420;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1421;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1422;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1423;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1424;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1425;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1426;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1427;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1428;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1429;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1430;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1431;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1432;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1433;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1434;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1435;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1436;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1437;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1438;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1439;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1440;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1441;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1442;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1443;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1444;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1445;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1446;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1447;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1448;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1449;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1450;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1451;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1452;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1453;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1454;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1455;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1456;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1457;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1458;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1459;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1460;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1461;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1462;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1463;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1464;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1465;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1466;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1467;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1468;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1469;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1470;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1471;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1472;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1473;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1474;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1475;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1476;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1477;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1478;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1479;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1480;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1481;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1482;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1483;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1484;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1485;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1486;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1487;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1488;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1489;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1490;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1491;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1492;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1493;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1494;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1495;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1496;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1497;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1498;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1499;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1500;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1501;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1502;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1503;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1504;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1505;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1506;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1507;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1508;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1509;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1510;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1511;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1512;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1513;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1514;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1515;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1516;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1517;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1518;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1519;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1520;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1521;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1522;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1523;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1524;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1525;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1526;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1527;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1528;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1529;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1530;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1531;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1532;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1533;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1534;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1535;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1536;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1537;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1538;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1539;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1540;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1541;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1542;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1543;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1544;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1545;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1546;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1547;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1548;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1549;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1550;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1551;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1552;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1553;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1554;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1555;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1556;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1557;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1558;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1559;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1560;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1561;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1562;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1563;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1564;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1565;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1566;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1567;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1568;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1569;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1570;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1571;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1572;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1573;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1574;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1575;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1576;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1577;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1578;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1579;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1580;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1581;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1582;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1583;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1584;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1585;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1586;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1587;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1588;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1589;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1590;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1591;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1592;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1593;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1594;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1595;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1596;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1597;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1598;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1599;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1600;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1601;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1602;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1603;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1604;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1605;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1606;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1607;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1608;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1609;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1610;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1611;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1612;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1613;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1614;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1615;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1616;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1617;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1618;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1619;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1620;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1621;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1622;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1623;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1624;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1625;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1626;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1627;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1628;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1629;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1630;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1631;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1632;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1633;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1634;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1635;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1636;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1637;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1638;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1639;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1640;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1641;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1642;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1643;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1644;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1645;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1646;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1647;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1648;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1649;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1650;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1651;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1652;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1653;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1654;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1655;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1656;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1657;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1658;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1659;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1660;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1661;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1662;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1663;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1664;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1665;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1666;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1667;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1668;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1669;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1670;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1671;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1672;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1673;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1674;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1675;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1676;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1677;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1678;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1679;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1680;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1681;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1682;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1683;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1684;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1685;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1686;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1687;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1688;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1689;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1690;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1691;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1692;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1693;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1694;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1695;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1696;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1697;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1698;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1699;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1700;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1701;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1702;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1703;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1704;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1705;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1706;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1707;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1708;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1709;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1710;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1711;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1712;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1713;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1714;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1715;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1716;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1717;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1718;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1719;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1720;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1721;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1722;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1723;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1724;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1725;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1726;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1727;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1728;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1729;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1730;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1731;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1732;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1733;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1734;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1735;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1736;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1737;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1738;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1739;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1740;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1741;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1742;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1743;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1744;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1745;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1746;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1747;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1748;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1749;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1750;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1751;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1752;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1753;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1754;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1755;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1756;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1757;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1758;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1759;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1760;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1761;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1762;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1763;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1764;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1765;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1766;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1767;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1768;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1769;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1770;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1771;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1772;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1773;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1774;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1775;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1776;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1777;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1778;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1779;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1780;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1781;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1782;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1783;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1784;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1785;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1786;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1787;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1788;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1789;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1790;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1791;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1792;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1793;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1794;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1795;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1796;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1797;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1798;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1799;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1800;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1801;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1802;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1803;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1804;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1805;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1806;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1807;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1808;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1809;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1810;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1811;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1812;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1813;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1814;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1815;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1816;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1817;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1818;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1819;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1820;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1821;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1822;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1823;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1824;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1825;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1826;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1827;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1828;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1829;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1830;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1831;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1832;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1833;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1834;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1835;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1836;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1837;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1838;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1839;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1840;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1841;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1842;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1843;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1844;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1845;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1846;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1847;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1848;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1849;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1850;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1851;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1852;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1853;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1854;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1855;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1856;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1857;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1858;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1859;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1860;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1861;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1862;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1863;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1864;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1865;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1866;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1867;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1868;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1869;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1870;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1871;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1872;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1873;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1874;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1875;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1876;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1877;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1878;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1879;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1880;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1881;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1882;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1883;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1884;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1885;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1886;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1887;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1888;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1889;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1890;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1891;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1892;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1893;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1894;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1895;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1896;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1897;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1898;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1899;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1900;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1901;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1902;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1903;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1904;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1905;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1906;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1907;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1908;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1909;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1910;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1911;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1912;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1913;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1914;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1915;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1916;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1917;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1918;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1919;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1920;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1921;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1922;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1923;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1924;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1925;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1926;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1927;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1928;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1929;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1930;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1931;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1932;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1933;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1934;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1935;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1936;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1937;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1938;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1939;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1940;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1941;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1942;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1943;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1944;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1945;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1946;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1947;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1948;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1949;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1950;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1951;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1952;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1953;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1954;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1955;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1956;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1957;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1958;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1959;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1960;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1961;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1962;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1963;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1964;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1965;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1966;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1967;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1968;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1969;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1970;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1971;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1972;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1973;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1974;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1975;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1976;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1977;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1978;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1979;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1980;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1981;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1982;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1983;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1984;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1985;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1986;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1987;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1988;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1989;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1990;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1991;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1992;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1993;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1994;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1995;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1996;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1997;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1998;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1999;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2000;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2001;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2002;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2003;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2004;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2005;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2006;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2007;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2008;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2009;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2010;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2011;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2012;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2013;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2014;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2015;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2016;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2017;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2018;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2019;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2020;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2021;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2022;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2023;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2024;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2025;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2026;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2027;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2028;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2029;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2030;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2031;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2032;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2033;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2034;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2035;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2036;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2037;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2038;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2039;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2040;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2041;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2042;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2043;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2044;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2045;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2046;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2047;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2048;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2049;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2050;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2051;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2052;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2053;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2054;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2055;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2056;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2057;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2058;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2059;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2060;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2061;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2062;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2063;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2064;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2065;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2066;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2067;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2068;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2069;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2070;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2071;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2072;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2073;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2074;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2075;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2076;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2077;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2078;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2079;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2080;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2081;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2082;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2083;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2084;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2085;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2086;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2087;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2088;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2089;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2090;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2091;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2092;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2093;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2094;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2095;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2096;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2097;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2098;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2099;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2100;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2101;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2102;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2103;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2104;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2105;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2106;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2107;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2108;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2109;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2110;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2111;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2112;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2113;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2114;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2115;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2116;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2117;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2118;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2119;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2120;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2121;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2122;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2123;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2124;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2125;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2126;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2127;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2128;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2129;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2130;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2131;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2132;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2133;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2134;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2135;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2136;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2137;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2138;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2139;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2140;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2141;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2142;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2143;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2144;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2145;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2146;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2147;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2148;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2149;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2150;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2151;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2152;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2153;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2154;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2155;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2156;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2157;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2158;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2159;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2160;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2161;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2162;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2163;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2164;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2165;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2166;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2167;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2168;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2169;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2170;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2171;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2172;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2173;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2174;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2175;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2176;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2177;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2178;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2179;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2180;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2181;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2182;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2183;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2184;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2185;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2186;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2187;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2188;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2189;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2190;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2191;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2192;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2193;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2194;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2195;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2196;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2197;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2198;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2199;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2200;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2201;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2202;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2203;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2204;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2205;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2206;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2207;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2208;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2209;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2210;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2211;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2212;
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2213;
IL2CPP_EXTERN_C_CONST Il2CppTypeDefinitionSizes* g_Il2CppTypeDefinitionSizesTable[2214] =
{
(&g_typeDefinitionSize0),
(&g_typeDefinitionSize1),
(&g_typeDefinitionSize2),
(&g_typeDefinitionSize3),
(&g_typeDefinitionSize4),
(&g_typeDefinitionSize5),
(&g_typeDefinitionSize6),
(&g_typeDefinitionSize7),
(&g_typeDefinitionSize8),
(&g_typeDefinitionSize9),
(&g_typeDefinitionSize10),
(&g_typeDefinitionSize11),
(&g_typeDefinitionSize12),
(&g_typeDefinitionSize13),
(&g_typeDefinitionSize14),
(&g_typeDefinitionSize15),
(&g_typeDefinitionSize16),
(&g_typeDefinitionSize17),
(&g_typeDefinitionSize18),
(&g_typeDefinitionSize19),
(&g_typeDefinitionSize20),
(&g_typeDefinitionSize21),
(&g_typeDefinitionSize22),
(&g_typeDefinitionSize23),
(&g_typeDefinitionSize24),
(&g_typeDefinitionSize25),
(&g_typeDefinitionSize26),
(&g_typeDefinitionSize27),
(&g_typeDefinitionSize28),
(&g_typeDefinitionSize29),
(&g_typeDefinitionSize30),
(&g_typeDefinitionSize31),
(&g_typeDefinitionSize32),
(&g_typeDefinitionSize33),
(&g_typeDefinitionSize34),
(&g_typeDefinitionSize35),
(&g_typeDefinitionSize36),
(&g_typeDefinitionSize37),
(&g_typeDefinitionSize38),
(&g_typeDefinitionSize39),
(&g_typeDefinitionSize40),
(&g_typeDefinitionSize41),
(&g_typeDefinitionSize42),
(&g_typeDefinitionSize43),
(&g_typeDefinitionSize44),
(&g_typeDefinitionSize45),
(&g_typeDefinitionSize46),
(&g_typeDefinitionSize47),
(&g_typeDefinitionSize48),
(&g_typeDefinitionSize49),
(&g_typeDefinitionSize50),
(&g_typeDefinitionSize51),
(&g_typeDefinitionSize52),
(&g_typeDefinitionSize53),
(&g_typeDefinitionSize54),
(&g_typeDefinitionSize55),
(&g_typeDefinitionSize56),
(&g_typeDefinitionSize57),
(&g_typeDefinitionSize58),
(&g_typeDefinitionSize59),
(&g_typeDefinitionSize60),
(&g_typeDefinitionSize61),
(&g_typeDefinitionSize62),
(&g_typeDefinitionSize63),
(&g_typeDefinitionSize64),
(&g_typeDefinitionSize65),
(&g_typeDefinitionSize66),
(&g_typeDefinitionSize67),
(&g_typeDefinitionSize68),
(&g_typeDefinitionSize69),
(&g_typeDefinitionSize70),
(&g_typeDefinitionSize71),
(&g_typeDefinitionSize72),
(&g_typeDefinitionSize73),
(&g_typeDefinitionSize74),
(&g_typeDefinitionSize75),
(&g_typeDefinitionSize76),
(&g_typeDefinitionSize77),
(&g_typeDefinitionSize78),
(&g_typeDefinitionSize79),
(&g_typeDefinitionSize80),
(&g_typeDefinitionSize81),
(&g_typeDefinitionSize82),
(&g_typeDefinitionSize83),
(&g_typeDefinitionSize84),
(&g_typeDefinitionSize85),
(&g_typeDefinitionSize86),
(&g_typeDefinitionSize87),
(&g_typeDefinitionSize88),
(&g_typeDefinitionSize89),
(&g_typeDefinitionSize90),
(&g_typeDefinitionSize91),
(&g_typeDefinitionSize92),
(&g_typeDefinitionSize93),
(&g_typeDefinitionSize94),
(&g_typeDefinitionSize95),
(&g_typeDefinitionSize96),
(&g_typeDefinitionSize97),
(&g_typeDefinitionSize98),
(&g_typeDefinitionSize99),
(&g_typeDefinitionSize100),
(&g_typeDefinitionSize101),
(&g_typeDefinitionSize102),
(&g_typeDefinitionSize103),
(&g_typeDefinitionSize104),
(&g_typeDefinitionSize105),
(&g_typeDefinitionSize106),
(&g_typeDefinitionSize107),
(&g_typeDefinitionSize108),
(&g_typeDefinitionSize109),
(&g_typeDefinitionSize110),
(&g_typeDefinitionSize111),
(&g_typeDefinitionSize112),
(&g_typeDefinitionSize113),
(&g_typeDefinitionSize114),
(&g_typeDefinitionSize115),
(&g_typeDefinitionSize116),
(&g_typeDefinitionSize117),
(&g_typeDefinitionSize118),
(&g_typeDefinitionSize119),
(&g_typeDefinitionSize120),
(&g_typeDefinitionSize121),
(&g_typeDefinitionSize122),
(&g_typeDefinitionSize123),
(&g_typeDefinitionSize124),
(&g_typeDefinitionSize125),
(&g_typeDefinitionSize126),
(&g_typeDefinitionSize127),
(&g_typeDefinitionSize128),
(&g_typeDefinitionSize129),
(&g_typeDefinitionSize130),
(&g_typeDefinitionSize131),
(&g_typeDefinitionSize132),
(&g_typeDefinitionSize133),
(&g_typeDefinitionSize134),
(&g_typeDefinitionSize135),
(&g_typeDefinitionSize136),
(&g_typeDefinitionSize137),
(&g_typeDefinitionSize138),
(&g_typeDefinitionSize139),
(&g_typeDefinitionSize140),
(&g_typeDefinitionSize141),
(&g_typeDefinitionSize142),
(&g_typeDefinitionSize143),
(&g_typeDefinitionSize144),
(&g_typeDefinitionSize145),
(&g_typeDefinitionSize146),
(&g_typeDefinitionSize147),
(&g_typeDefinitionSize148),
(&g_typeDefinitionSize149),
(&g_typeDefinitionSize150),
(&g_typeDefinitionSize151),
(&g_typeDefinitionSize152),
(&g_typeDefinitionSize153),
(&g_typeDefinitionSize154),
(&g_typeDefinitionSize155),
(&g_typeDefinitionSize156),
(&g_typeDefinitionSize157),
(&g_typeDefinitionSize158),
(&g_typeDefinitionSize159),
(&g_typeDefinitionSize160),
(&g_typeDefinitionSize161),
(&g_typeDefinitionSize162),
(&g_typeDefinitionSize163),
(&g_typeDefinitionSize164),
(&g_typeDefinitionSize165),
(&g_typeDefinitionSize166),
(&g_typeDefinitionSize167),
(&g_typeDefinitionSize168),
(&g_typeDefinitionSize169),
(&g_typeDefinitionSize170),
(&g_typeDefinitionSize171),
(&g_typeDefinitionSize172),
(&g_typeDefinitionSize173),
(&g_typeDefinitionSize174),
(&g_typeDefinitionSize175),
(&g_typeDefinitionSize176),
(&g_typeDefinitionSize177),
(&g_typeDefinitionSize178),
(&g_typeDefinitionSize179),
(&g_typeDefinitionSize180),
(&g_typeDefinitionSize181),
(&g_typeDefinitionSize182),
(&g_typeDefinitionSize183),
(&g_typeDefinitionSize184),
(&g_typeDefinitionSize185),
(&g_typeDefinitionSize186),
(&g_typeDefinitionSize187),
(&g_typeDefinitionSize188),
(&g_typeDefinitionSize189),
(&g_typeDefinitionSize190),
(&g_typeDefinitionSize191),
(&g_typeDefinitionSize192),
(&g_typeDefinitionSize193),
(&g_typeDefinitionSize194),
(&g_typeDefinitionSize195),
(&g_typeDefinitionSize196),
(&g_typeDefinitionSize197),
(&g_typeDefinitionSize198),
(&g_typeDefinitionSize199),
(&g_typeDefinitionSize200),
(&g_typeDefinitionSize201),
(&g_typeDefinitionSize202),
(&g_typeDefinitionSize203),
(&g_typeDefinitionSize204),
(&g_typeDefinitionSize205),
(&g_typeDefinitionSize206),
(&g_typeDefinitionSize207),
(&g_typeDefinitionSize208),
(&g_typeDefinitionSize209),
(&g_typeDefinitionSize210),
(&g_typeDefinitionSize211),
(&g_typeDefinitionSize212),
(&g_typeDefinitionSize213),
(&g_typeDefinitionSize214),
(&g_typeDefinitionSize215),
(&g_typeDefinitionSize216),
(&g_typeDefinitionSize217),
(&g_typeDefinitionSize218),
(&g_typeDefinitionSize219),
(&g_typeDefinitionSize220),
(&g_typeDefinitionSize221),
(&g_typeDefinitionSize222),
(&g_typeDefinitionSize223),
(&g_typeDefinitionSize224),
(&g_typeDefinitionSize225),
(&g_typeDefinitionSize226),
(&g_typeDefinitionSize227),
(&g_typeDefinitionSize228),
(&g_typeDefinitionSize229),
(&g_typeDefinitionSize230),
(&g_typeDefinitionSize231),
(&g_typeDefinitionSize232),
(&g_typeDefinitionSize233),
(&g_typeDefinitionSize234),
(&g_typeDefinitionSize235),
(&g_typeDefinitionSize236),
(&g_typeDefinitionSize237),
(&g_typeDefinitionSize238),
(&g_typeDefinitionSize239),
(&g_typeDefinitionSize240),
(&g_typeDefinitionSize241),
(&g_typeDefinitionSize242),
(&g_typeDefinitionSize243),
(&g_typeDefinitionSize244),
(&g_typeDefinitionSize245),
(&g_typeDefinitionSize246),
(&g_typeDefinitionSize247),
(&g_typeDefinitionSize248),
(&g_typeDefinitionSize249),
(&g_typeDefinitionSize250),
(&g_typeDefinitionSize251),
(&g_typeDefinitionSize252),
(&g_typeDefinitionSize253),
(&g_typeDefinitionSize254),
(&g_typeDefinitionSize255),
(&g_typeDefinitionSize256),
(&g_typeDefinitionSize257),
(&g_typeDefinitionSize258),
(&g_typeDefinitionSize259),
(&g_typeDefinitionSize260),
(&g_typeDefinitionSize261),
(&g_typeDefinitionSize262),
(&g_typeDefinitionSize263),
(&g_typeDefinitionSize264),
(&g_typeDefinitionSize265),
(&g_typeDefinitionSize266),
(&g_typeDefinitionSize267),
(&g_typeDefinitionSize268),
(&g_typeDefinitionSize269),
(&g_typeDefinitionSize270),
(&g_typeDefinitionSize271),
(&g_typeDefinitionSize272),
(&g_typeDefinitionSize273),
(&g_typeDefinitionSize274),
(&g_typeDefinitionSize275),
(&g_typeDefinitionSize276),
(&g_typeDefinitionSize277),
(&g_typeDefinitionSize278),
(&g_typeDefinitionSize279),
(&g_typeDefinitionSize280),
(&g_typeDefinitionSize281),
(&g_typeDefinitionSize282),
(&g_typeDefinitionSize283),
(&g_typeDefinitionSize284),
(&g_typeDefinitionSize285),
(&g_typeDefinitionSize286),
(&g_typeDefinitionSize287),
(&g_typeDefinitionSize288),
(&g_typeDefinitionSize289),
(&g_typeDefinitionSize290),
(&g_typeDefinitionSize291),
(&g_typeDefinitionSize292),
(&g_typeDefinitionSize293),
(&g_typeDefinitionSize294),
(&g_typeDefinitionSize295),
(&g_typeDefinitionSize296),
(&g_typeDefinitionSize297),
(&g_typeDefinitionSize298),
(&g_typeDefinitionSize299),
(&g_typeDefinitionSize300),
(&g_typeDefinitionSize301),
(&g_typeDefinitionSize302),
(&g_typeDefinitionSize303),
(&g_typeDefinitionSize304),
(&g_typeDefinitionSize305),
(&g_typeDefinitionSize306),
(&g_typeDefinitionSize307),
(&g_typeDefinitionSize308),
(&g_typeDefinitionSize309),
(&g_typeDefinitionSize310),
(&g_typeDefinitionSize311),
(&g_typeDefinitionSize312),
(&g_typeDefinitionSize313),
(&g_typeDefinitionSize314),
(&g_typeDefinitionSize315),
(&g_typeDefinitionSize316),
(&g_typeDefinitionSize317),
(&g_typeDefinitionSize318),
(&g_typeDefinitionSize319),
(&g_typeDefinitionSize320),
(&g_typeDefinitionSize321),
(&g_typeDefinitionSize322),
(&g_typeDefinitionSize323),
(&g_typeDefinitionSize324),
(&g_typeDefinitionSize325),
(&g_typeDefinitionSize326),
(&g_typeDefinitionSize327),
(&g_typeDefinitionSize328),
(&g_typeDefinitionSize329),
(&g_typeDefinitionSize330),
(&g_typeDefinitionSize331),
(&g_typeDefinitionSize332),
(&g_typeDefinitionSize333),
(&g_typeDefinitionSize334),
(&g_typeDefinitionSize335),
(&g_typeDefinitionSize336),
(&g_typeDefinitionSize337),
(&g_typeDefinitionSize338),
(&g_typeDefinitionSize339),
(&g_typeDefinitionSize340),
(&g_typeDefinitionSize341),
(&g_typeDefinitionSize342),
(&g_typeDefinitionSize343),
(&g_typeDefinitionSize344),
(&g_typeDefinitionSize345),
(&g_typeDefinitionSize346),
(&g_typeDefinitionSize347),
(&g_typeDefinitionSize348),
(&g_typeDefinitionSize349),
(&g_typeDefinitionSize350),
(&g_typeDefinitionSize351),
(&g_typeDefinitionSize352),
(&g_typeDefinitionSize353),
(&g_typeDefinitionSize354),
(&g_typeDefinitionSize355),
(&g_typeDefinitionSize356),
(&g_typeDefinitionSize357),
(&g_typeDefinitionSize358),
(&g_typeDefinitionSize359),
(&g_typeDefinitionSize360),
(&g_typeDefinitionSize361),
(&g_typeDefinitionSize362),
(&g_typeDefinitionSize363),
(&g_typeDefinitionSize364),
(&g_typeDefinitionSize365),
(&g_typeDefinitionSize366),
(&g_typeDefinitionSize367),
(&g_typeDefinitionSize368),
(&g_typeDefinitionSize369),
(&g_typeDefinitionSize370),
(&g_typeDefinitionSize371),
(&g_typeDefinitionSize372),
(&g_typeDefinitionSize373),
(&g_typeDefinitionSize374),
(&g_typeDefinitionSize375),
(&g_typeDefinitionSize376),
(&g_typeDefinitionSize377),
(&g_typeDefinitionSize378),
(&g_typeDefinitionSize379),
(&g_typeDefinitionSize380),
(&g_typeDefinitionSize381),
(&g_typeDefinitionSize382),
(&g_typeDefinitionSize383),
(&g_typeDefinitionSize384),
(&g_typeDefinitionSize385),
(&g_typeDefinitionSize386),
(&g_typeDefinitionSize387),
(&g_typeDefinitionSize388),
(&g_typeDefinitionSize389),
(&g_typeDefinitionSize390),
(&g_typeDefinitionSize391),
(&g_typeDefinitionSize392),
(&g_typeDefinitionSize393),
(&g_typeDefinitionSize394),
(&g_typeDefinitionSize395),
(&g_typeDefinitionSize396),
(&g_typeDefinitionSize397),
(&g_typeDefinitionSize398),
(&g_typeDefinitionSize399),
(&g_typeDefinitionSize400),
(&g_typeDefinitionSize401),
(&g_typeDefinitionSize402),
(&g_typeDefinitionSize403),
(&g_typeDefinitionSize404),
(&g_typeDefinitionSize405),
(&g_typeDefinitionSize406),
(&g_typeDefinitionSize407),
(&g_typeDefinitionSize408),
(&g_typeDefinitionSize409),
(&g_typeDefinitionSize410),
(&g_typeDefinitionSize411),
(&g_typeDefinitionSize412),
(&g_typeDefinitionSize413),
(&g_typeDefinitionSize414),
(&g_typeDefinitionSize415),
(&g_typeDefinitionSize416),
(&g_typeDefinitionSize417),
(&g_typeDefinitionSize418),
(&g_typeDefinitionSize419),
(&g_typeDefinitionSize420),
(&g_typeDefinitionSize421),
(&g_typeDefinitionSize422),
(&g_typeDefinitionSize423),
(&g_typeDefinitionSize424),
(&g_typeDefinitionSize425),
(&g_typeDefinitionSize426),
(&g_typeDefinitionSize427),
(&g_typeDefinitionSize428),
(&g_typeDefinitionSize429),
(&g_typeDefinitionSize430),
(&g_typeDefinitionSize431),
(&g_typeDefinitionSize432),
(&g_typeDefinitionSize433),
(&g_typeDefinitionSize434),
(&g_typeDefinitionSize435),
(&g_typeDefinitionSize436),
(&g_typeDefinitionSize437),
(&g_typeDefinitionSize438),
(&g_typeDefinitionSize439),
(&g_typeDefinitionSize440),
(&g_typeDefinitionSize441),
(&g_typeDefinitionSize442),
(&g_typeDefinitionSize443),
(&g_typeDefinitionSize444),
(&g_typeDefinitionSize445),
(&g_typeDefinitionSize446),
(&g_typeDefinitionSize447),
(&g_typeDefinitionSize448),
(&g_typeDefinitionSize449),
(&g_typeDefinitionSize450),
(&g_typeDefinitionSize451),
(&g_typeDefinitionSize452),
(&g_typeDefinitionSize453),
(&g_typeDefinitionSize454),
(&g_typeDefinitionSize455),
(&g_typeDefinitionSize456),
(&g_typeDefinitionSize457),
(&g_typeDefinitionSize458),
(&g_typeDefinitionSize459),
(&g_typeDefinitionSize460),
(&g_typeDefinitionSize461),
(&g_typeDefinitionSize462),
(&g_typeDefinitionSize463),
(&g_typeDefinitionSize464),
(&g_typeDefinitionSize465),
(&g_typeDefinitionSize466),
(&g_typeDefinitionSize467),
(&g_typeDefinitionSize468),
(&g_typeDefinitionSize469),
(&g_typeDefinitionSize470),
(&g_typeDefinitionSize471),
(&g_typeDefinitionSize472),
(&g_typeDefinitionSize473),
(&g_typeDefinitionSize474),
(&g_typeDefinitionSize475),
(&g_typeDefinitionSize476),
(&g_typeDefinitionSize477),
(&g_typeDefinitionSize478),
(&g_typeDefinitionSize479),
(&g_typeDefinitionSize480),
(&g_typeDefinitionSize481),
(&g_typeDefinitionSize482),
(&g_typeDefinitionSize483),
(&g_typeDefinitionSize484),
(&g_typeDefinitionSize485),
(&g_typeDefinitionSize486),
(&g_typeDefinitionSize487),
(&g_typeDefinitionSize488),
(&g_typeDefinitionSize489),
(&g_typeDefinitionSize490),
(&g_typeDefinitionSize491),
(&g_typeDefinitionSize492),
(&g_typeDefinitionSize493),
(&g_typeDefinitionSize494),
(&g_typeDefinitionSize495),
(&g_typeDefinitionSize496),
(&g_typeDefinitionSize497),
(&g_typeDefinitionSize498),
(&g_typeDefinitionSize499),
(&g_typeDefinitionSize500),
(&g_typeDefinitionSize501),
(&g_typeDefinitionSize502),
(&g_typeDefinitionSize503),
(&g_typeDefinitionSize504),
(&g_typeDefinitionSize505),
(&g_typeDefinitionSize506),
(&g_typeDefinitionSize507),
(&g_typeDefinitionSize508),
(&g_typeDefinitionSize509),
(&g_typeDefinitionSize510),
(&g_typeDefinitionSize511),
(&g_typeDefinitionSize512),
(&g_typeDefinitionSize513),
(&g_typeDefinitionSize514),
(&g_typeDefinitionSize515),
(&g_typeDefinitionSize516),
(&g_typeDefinitionSize517),
(&g_typeDefinitionSize518),
(&g_typeDefinitionSize519),
(&g_typeDefinitionSize520),
(&g_typeDefinitionSize521),
(&g_typeDefinitionSize522),
(&g_typeDefinitionSize523),
(&g_typeDefinitionSize524),
(&g_typeDefinitionSize525),
(&g_typeDefinitionSize526),
(&g_typeDefinitionSize527),
(&g_typeDefinitionSize528),
(&g_typeDefinitionSize529),
(&g_typeDefinitionSize530),
(&g_typeDefinitionSize531),
(&g_typeDefinitionSize532),
(&g_typeDefinitionSize533),
(&g_typeDefinitionSize534),
(&g_typeDefinitionSize535),
(&g_typeDefinitionSize536),
(&g_typeDefinitionSize537),
(&g_typeDefinitionSize538),
(&g_typeDefinitionSize539),
(&g_typeDefinitionSize540),
(&g_typeDefinitionSize541),
(&g_typeDefinitionSize542),
(&g_typeDefinitionSize543),
(&g_typeDefinitionSize544),
(&g_typeDefinitionSize545),
(&g_typeDefinitionSize546),
(&g_typeDefinitionSize547),
(&g_typeDefinitionSize548),
(&g_typeDefinitionSize549),
(&g_typeDefinitionSize550),
(&g_typeDefinitionSize551),
(&g_typeDefinitionSize552),
(&g_typeDefinitionSize553),
(&g_typeDefinitionSize554),
(&g_typeDefinitionSize555),
(&g_typeDefinitionSize556),
(&g_typeDefinitionSize557),
(&g_typeDefinitionSize558),
(&g_typeDefinitionSize559),
(&g_typeDefinitionSize560),
(&g_typeDefinitionSize561),
(&g_typeDefinitionSize562),
(&g_typeDefinitionSize563),
(&g_typeDefinitionSize564),
(&g_typeDefinitionSize565),
(&g_typeDefinitionSize566),
(&g_typeDefinitionSize567),
(&g_typeDefinitionSize568),
(&g_typeDefinitionSize569),
(&g_typeDefinitionSize570),
(&g_typeDefinitionSize571),
(&g_typeDefinitionSize572),
(&g_typeDefinitionSize573),
(&g_typeDefinitionSize574),
(&g_typeDefinitionSize575),
(&g_typeDefinitionSize576),
(&g_typeDefinitionSize577),
(&g_typeDefinitionSize578),
(&g_typeDefinitionSize579),
(&g_typeDefinitionSize580),
(&g_typeDefinitionSize581),
(&g_typeDefinitionSize582),
(&g_typeDefinitionSize583),
(&g_typeDefinitionSize584),
(&g_typeDefinitionSize585),
(&g_typeDefinitionSize586),
(&g_typeDefinitionSize587),
(&g_typeDefinitionSize588),
(&g_typeDefinitionSize589),
(&g_typeDefinitionSize590),
(&g_typeDefinitionSize591),
(&g_typeDefinitionSize592),
(&g_typeDefinitionSize593),
(&g_typeDefinitionSize594),
(&g_typeDefinitionSize595),
(&g_typeDefinitionSize596),
(&g_typeDefinitionSize597),
(&g_typeDefinitionSize598),
(&g_typeDefinitionSize599),
(&g_typeDefinitionSize600),
(&g_typeDefinitionSize601),
(&g_typeDefinitionSize602),
(&g_typeDefinitionSize603),
(&g_typeDefinitionSize604),
(&g_typeDefinitionSize605),
(&g_typeDefinitionSize606),
(&g_typeDefinitionSize607),
(&g_typeDefinitionSize608),
(&g_typeDefinitionSize609),
(&g_typeDefinitionSize610),
(&g_typeDefinitionSize611),
(&g_typeDefinitionSize612),
(&g_typeDefinitionSize613),
(&g_typeDefinitionSize614),
(&g_typeDefinitionSize615),
(&g_typeDefinitionSize616),
(&g_typeDefinitionSize617),
(&g_typeDefinitionSize618),
(&g_typeDefinitionSize619),
(&g_typeDefinitionSize620),
(&g_typeDefinitionSize621),
(&g_typeDefinitionSize622),
(&g_typeDefinitionSize623),
(&g_typeDefinitionSize624),
(&g_typeDefinitionSize625),
(&g_typeDefinitionSize626),
(&g_typeDefinitionSize627),
(&g_typeDefinitionSize628),
(&g_typeDefinitionSize629),
(&g_typeDefinitionSize630),
(&g_typeDefinitionSize631),
(&g_typeDefinitionSize632),
(&g_typeDefinitionSize633),
(&g_typeDefinitionSize634),
(&g_typeDefinitionSize635),
(&g_typeDefinitionSize636),
(&g_typeDefinitionSize637),
(&g_typeDefinitionSize638),
(&g_typeDefinitionSize639),
(&g_typeDefinitionSize640),
(&g_typeDefinitionSize641),
(&g_typeDefinitionSize642),
(&g_typeDefinitionSize643),
(&g_typeDefinitionSize644),
(&g_typeDefinitionSize645),
(&g_typeDefinitionSize646),
(&g_typeDefinitionSize647),
(&g_typeDefinitionSize648),
(&g_typeDefinitionSize649),
(&g_typeDefinitionSize650),
(&g_typeDefinitionSize651),
(&g_typeDefinitionSize652),
(&g_typeDefinitionSize653),
(&g_typeDefinitionSize654),
(&g_typeDefinitionSize655),
(&g_typeDefinitionSize656),
(&g_typeDefinitionSize657),
(&g_typeDefinitionSize658),
(&g_typeDefinitionSize659),
(&g_typeDefinitionSize660),
(&g_typeDefinitionSize661),
(&g_typeDefinitionSize662),
(&g_typeDefinitionSize663),
(&g_typeDefinitionSize664),
(&g_typeDefinitionSize665),
(&g_typeDefinitionSize666),
(&g_typeDefinitionSize667),
(&g_typeDefinitionSize668),
(&g_typeDefinitionSize669),
(&g_typeDefinitionSize670),
(&g_typeDefinitionSize671),
(&g_typeDefinitionSize672),
(&g_typeDefinitionSize673),
(&g_typeDefinitionSize674),
(&g_typeDefinitionSize675),
(&g_typeDefinitionSize676),
(&g_typeDefinitionSize677),
(&g_typeDefinitionSize678),
(&g_typeDefinitionSize679),
(&g_typeDefinitionSize680),
(&g_typeDefinitionSize681),
(&g_typeDefinitionSize682),
(&g_typeDefinitionSize683),
(&g_typeDefinitionSize684),
(&g_typeDefinitionSize685),
(&g_typeDefinitionSize686),
(&g_typeDefinitionSize687),
(&g_typeDefinitionSize688),
(&g_typeDefinitionSize689),
(&g_typeDefinitionSize690),
(&g_typeDefinitionSize691),
(&g_typeDefinitionSize692),
(&g_typeDefinitionSize693),
(&g_typeDefinitionSize694),
(&g_typeDefinitionSize695),
(&g_typeDefinitionSize696),
(&g_typeDefinitionSize697),
(&g_typeDefinitionSize698),
(&g_typeDefinitionSize699),
(&g_typeDefinitionSize700),
(&g_typeDefinitionSize701),
(&g_typeDefinitionSize702),
(&g_typeDefinitionSize703),
(&g_typeDefinitionSize704),
(&g_typeDefinitionSize705),
(&g_typeDefinitionSize706),
(&g_typeDefinitionSize707),
(&g_typeDefinitionSize708),
(&g_typeDefinitionSize709),
(&g_typeDefinitionSize710),
(&g_typeDefinitionSize711),
(&g_typeDefinitionSize712),
(&g_typeDefinitionSize713),
(&g_typeDefinitionSize714),
(&g_typeDefinitionSize715),
(&g_typeDefinitionSize716),
(&g_typeDefinitionSize717),
(&g_typeDefinitionSize718),
(&g_typeDefinitionSize719),
(&g_typeDefinitionSize720),
(&g_typeDefinitionSize721),
(&g_typeDefinitionSize722),
(&g_typeDefinitionSize723),
(&g_typeDefinitionSize724),
(&g_typeDefinitionSize725),
(&g_typeDefinitionSize726),
(&g_typeDefinitionSize727),
(&g_typeDefinitionSize728),
(&g_typeDefinitionSize729),
(&g_typeDefinitionSize730),
(&g_typeDefinitionSize731),
(&g_typeDefinitionSize732),
(&g_typeDefinitionSize733),
(&g_typeDefinitionSize734),
(&g_typeDefinitionSize735),
(&g_typeDefinitionSize736),
(&g_typeDefinitionSize737),
(&g_typeDefinitionSize738),
(&g_typeDefinitionSize739),
(&g_typeDefinitionSize740),
(&g_typeDefinitionSize741),
(&g_typeDefinitionSize742),
(&g_typeDefinitionSize743),
(&g_typeDefinitionSize744),
(&g_typeDefinitionSize745),
(&g_typeDefinitionSize746),
(&g_typeDefinitionSize747),
(&g_typeDefinitionSize748),
(&g_typeDefinitionSize749),
(&g_typeDefinitionSize750),
(&g_typeDefinitionSize751),
(&g_typeDefinitionSize752),
(&g_typeDefinitionSize753),
(&g_typeDefinitionSize754),
(&g_typeDefinitionSize755),
(&g_typeDefinitionSize756),
(&g_typeDefinitionSize757),
(&g_typeDefinitionSize758),
(&g_typeDefinitionSize759),
(&g_typeDefinitionSize760),
(&g_typeDefinitionSize761),
(&g_typeDefinitionSize762),
(&g_typeDefinitionSize763),
(&g_typeDefinitionSize764),
(&g_typeDefinitionSize765),
(&g_typeDefinitionSize766),
(&g_typeDefinitionSize767),
(&g_typeDefinitionSize768),
(&g_typeDefinitionSize769),
(&g_typeDefinitionSize770),
(&g_typeDefinitionSize771),
(&g_typeDefinitionSize772),
(&g_typeDefinitionSize773),
(&g_typeDefinitionSize774),
(&g_typeDefinitionSize775),
(&g_typeDefinitionSize776),
(&g_typeDefinitionSize777),
(&g_typeDefinitionSize778),
(&g_typeDefinitionSize779),
(&g_typeDefinitionSize780),
(&g_typeDefinitionSize781),
(&g_typeDefinitionSize782),
(&g_typeDefinitionSize783),
(&g_typeDefinitionSize784),
(&g_typeDefinitionSize785),
(&g_typeDefinitionSize786),
(&g_typeDefinitionSize787),
(&g_typeDefinitionSize788),
(&g_typeDefinitionSize789),
(&g_typeDefinitionSize790),
(&g_typeDefinitionSize791),
(&g_typeDefinitionSize792),
(&g_typeDefinitionSize793),
(&g_typeDefinitionSize794),
(&g_typeDefinitionSize795),
(&g_typeDefinitionSize796),
(&g_typeDefinitionSize797),
(&g_typeDefinitionSize798),
(&g_typeDefinitionSize799),
(&g_typeDefinitionSize800),
(&g_typeDefinitionSize801),
(&g_typeDefinitionSize802),
(&g_typeDefinitionSize803),
(&g_typeDefinitionSize804),
(&g_typeDefinitionSize805),
(&g_typeDefinitionSize806),
(&g_typeDefinitionSize807),
(&g_typeDefinitionSize808),
(&g_typeDefinitionSize809),
(&g_typeDefinitionSize810),
(&g_typeDefinitionSize811),
(&g_typeDefinitionSize812),
(&g_typeDefinitionSize813),
(&g_typeDefinitionSize814),
(&g_typeDefinitionSize815),
(&g_typeDefinitionSize816),
(&g_typeDefinitionSize817),
(&g_typeDefinitionSize818),
(&g_typeDefinitionSize819),
(&g_typeDefinitionSize820),
(&g_typeDefinitionSize821),
(&g_typeDefinitionSize822),
(&g_typeDefinitionSize823),
(&g_typeDefinitionSize824),
(&g_typeDefinitionSize825),
(&g_typeDefinitionSize826),
(&g_typeDefinitionSize827),
(&g_typeDefinitionSize828),
(&g_typeDefinitionSize829),
(&g_typeDefinitionSize830),
(&g_typeDefinitionSize831),
(&g_typeDefinitionSize832),
(&g_typeDefinitionSize833),
(&g_typeDefinitionSize834),
(&g_typeDefinitionSize835),
(&g_typeDefinitionSize836),
(&g_typeDefinitionSize837),
(&g_typeDefinitionSize838),
(&g_typeDefinitionSize839),
(&g_typeDefinitionSize840),
(&g_typeDefinitionSize841),
(&g_typeDefinitionSize842),
(&g_typeDefinitionSize843),
(&g_typeDefinitionSize844),
(&g_typeDefinitionSize845),
(&g_typeDefinitionSize846),
(&g_typeDefinitionSize847),
(&g_typeDefinitionSize848),
(&g_typeDefinitionSize849),
(&g_typeDefinitionSize850),
(&g_typeDefinitionSize851),
(&g_typeDefinitionSize852),
(&g_typeDefinitionSize853),
(&g_typeDefinitionSize854),
(&g_typeDefinitionSize855),
(&g_typeDefinitionSize856),
(&g_typeDefinitionSize857),
(&g_typeDefinitionSize858),
(&g_typeDefinitionSize859),
(&g_typeDefinitionSize860),
(&g_typeDefinitionSize861),
(&g_typeDefinitionSize862),
(&g_typeDefinitionSize863),
(&g_typeDefinitionSize864),
(&g_typeDefinitionSize865),
(&g_typeDefinitionSize866),
(&g_typeDefinitionSize867),
(&g_typeDefinitionSize868),
(&g_typeDefinitionSize869),
(&g_typeDefinitionSize870),
(&g_typeDefinitionSize871),
(&g_typeDefinitionSize872),
(&g_typeDefinitionSize873),
(&g_typeDefinitionSize874),
(&g_typeDefinitionSize875),
(&g_typeDefinitionSize876),
(&g_typeDefinitionSize877),
(&g_typeDefinitionSize878),
(&g_typeDefinitionSize879),
(&g_typeDefinitionSize880),
(&g_typeDefinitionSize881),
(&g_typeDefinitionSize882),
(&g_typeDefinitionSize883),
(&g_typeDefinitionSize884),
(&g_typeDefinitionSize885),
(&g_typeDefinitionSize886),
(&g_typeDefinitionSize887),
(&g_typeDefinitionSize888),
(&g_typeDefinitionSize889),
(&g_typeDefinitionSize890),
(&g_typeDefinitionSize891),
(&g_typeDefinitionSize892),
(&g_typeDefinitionSize893),
(&g_typeDefinitionSize894),
(&g_typeDefinitionSize895),
(&g_typeDefinitionSize896),
(&g_typeDefinitionSize897),
(&g_typeDefinitionSize898),
(&g_typeDefinitionSize899),
(&g_typeDefinitionSize900),
(&g_typeDefinitionSize901),
(&g_typeDefinitionSize902),
(&g_typeDefinitionSize903),
(&g_typeDefinitionSize904),
(&g_typeDefinitionSize905),
(&g_typeDefinitionSize906),
(&g_typeDefinitionSize907),
(&g_typeDefinitionSize908),
(&g_typeDefinitionSize909),
(&g_typeDefinitionSize910),
(&g_typeDefinitionSize911),
(&g_typeDefinitionSize912),
(&g_typeDefinitionSize913),
(&g_typeDefinitionSize914),
(&g_typeDefinitionSize915),
(&g_typeDefinitionSize916),
(&g_typeDefinitionSize917),
(&g_typeDefinitionSize918),
(&g_typeDefinitionSize919),
(&g_typeDefinitionSize920),
(&g_typeDefinitionSize921),
(&g_typeDefinitionSize922),
(&g_typeDefinitionSize923),
(&g_typeDefinitionSize924),
(&g_typeDefinitionSize925),
(&g_typeDefinitionSize926),
(&g_typeDefinitionSize927),
(&g_typeDefinitionSize928),
(&g_typeDefinitionSize929),
(&g_typeDefinitionSize930),
(&g_typeDefinitionSize931),
(&g_typeDefinitionSize932),
(&g_typeDefinitionSize933),
(&g_typeDefinitionSize934),
(&g_typeDefinitionSize935),
(&g_typeDefinitionSize936),
(&g_typeDefinitionSize937),
(&g_typeDefinitionSize938),
(&g_typeDefinitionSize939),
(&g_typeDefinitionSize940),
(&g_typeDefinitionSize941),
(&g_typeDefinitionSize942),
(&g_typeDefinitionSize943),
(&g_typeDefinitionSize944),
(&g_typeDefinitionSize945),
(&g_typeDefinitionSize946),
(&g_typeDefinitionSize947),
(&g_typeDefinitionSize948),
(&g_typeDefinitionSize949),
(&g_typeDefinitionSize950),
(&g_typeDefinitionSize951),
(&g_typeDefinitionSize952),
(&g_typeDefinitionSize953),
(&g_typeDefinitionSize954),
(&g_typeDefinitionSize955),
(&g_typeDefinitionSize956),
(&g_typeDefinitionSize957),
(&g_typeDefinitionSize958),
(&g_typeDefinitionSize959),
(&g_typeDefinitionSize960),
(&g_typeDefinitionSize961),
(&g_typeDefinitionSize962),
(&g_typeDefinitionSize963),
(&g_typeDefinitionSize964),
(&g_typeDefinitionSize965),
(&g_typeDefinitionSize966),
(&g_typeDefinitionSize967),
(&g_typeDefinitionSize968),
(&g_typeDefinitionSize969),
(&g_typeDefinitionSize970),
(&g_typeDefinitionSize971),
(&g_typeDefinitionSize972),
(&g_typeDefinitionSize973),
(&g_typeDefinitionSize974),
(&g_typeDefinitionSize975),
(&g_typeDefinitionSize976),
(&g_typeDefinitionSize977),
(&g_typeDefinitionSize978),
(&g_typeDefinitionSize979),
(&g_typeDefinitionSize980),
(&g_typeDefinitionSize981),
(&g_typeDefinitionSize982),
(&g_typeDefinitionSize983),
(&g_typeDefinitionSize984),
(&g_typeDefinitionSize985),
(&g_typeDefinitionSize986),
(&g_typeDefinitionSize987),
(&g_typeDefinitionSize988),
(&g_typeDefinitionSize989),
(&g_typeDefinitionSize990),
(&g_typeDefinitionSize991),
(&g_typeDefinitionSize992),
(&g_typeDefinitionSize993),
(&g_typeDefinitionSize994),
(&g_typeDefinitionSize995),
(&g_typeDefinitionSize996),
(&g_typeDefinitionSize997),
(&g_typeDefinitionSize998),
(&g_typeDefinitionSize999),
(&g_typeDefinitionSize1000),
(&g_typeDefinitionSize1001),
(&g_typeDefinitionSize1002),
(&g_typeDefinitionSize1003),
(&g_typeDefinitionSize1004),
(&g_typeDefinitionSize1005),
(&g_typeDefinitionSize1006),
(&g_typeDefinitionSize1007),
(&g_typeDefinitionSize1008),
(&g_typeDefinitionSize1009),
(&g_typeDefinitionSize1010),
(&g_typeDefinitionSize1011),
(&g_typeDefinitionSize1012),
(&g_typeDefinitionSize1013),
(&g_typeDefinitionSize1014),
(&g_typeDefinitionSize1015),
(&g_typeDefinitionSize1016),
(&g_typeDefinitionSize1017),
(&g_typeDefinitionSize1018),
(&g_typeDefinitionSize1019),
(&g_typeDefinitionSize1020),
(&g_typeDefinitionSize1021),
(&g_typeDefinitionSize1022),
(&g_typeDefinitionSize1023),
(&g_typeDefinitionSize1024),
(&g_typeDefinitionSize1025),
(&g_typeDefinitionSize1026),
(&g_typeDefinitionSize1027),
(&g_typeDefinitionSize1028),
(&g_typeDefinitionSize1029),
(&g_typeDefinitionSize1030),
(&g_typeDefinitionSize1031),
(&g_typeDefinitionSize1032),
(&g_typeDefinitionSize1033),
(&g_typeDefinitionSize1034),
(&g_typeDefinitionSize1035),
(&g_typeDefinitionSize1036),
(&g_typeDefinitionSize1037),
(&g_typeDefinitionSize1038),
(&g_typeDefinitionSize1039),
(&g_typeDefinitionSize1040),
(&g_typeDefinitionSize1041),
(&g_typeDefinitionSize1042),
(&g_typeDefinitionSize1043),
(&g_typeDefinitionSize1044),
(&g_typeDefinitionSize1045),
(&g_typeDefinitionSize1046),
(&g_typeDefinitionSize1047),
(&g_typeDefinitionSize1048),
(&g_typeDefinitionSize1049),
(&g_typeDefinitionSize1050),
(&g_typeDefinitionSize1051),
(&g_typeDefinitionSize1052),
(&g_typeDefinitionSize1053),
(&g_typeDefinitionSize1054),
(&g_typeDefinitionSize1055),
(&g_typeDefinitionSize1056),
(&g_typeDefinitionSize1057),
(&g_typeDefinitionSize1058),
(&g_typeDefinitionSize1059),
(&g_typeDefinitionSize1060),
(&g_typeDefinitionSize1061),
(&g_typeDefinitionSize1062),
(&g_typeDefinitionSize1063),
(&g_typeDefinitionSize1064),
(&g_typeDefinitionSize1065),
(&g_typeDefinitionSize1066),
(&g_typeDefinitionSize1067),
(&g_typeDefinitionSize1068),
(&g_typeDefinitionSize1069),
(&g_typeDefinitionSize1070),
(&g_typeDefinitionSize1071),
(&g_typeDefinitionSize1072),
(&g_typeDefinitionSize1073),
(&g_typeDefinitionSize1074),
(&g_typeDefinitionSize1075),
(&g_typeDefinitionSize1076),
(&g_typeDefinitionSize1077),
(&g_typeDefinitionSize1078),
(&g_typeDefinitionSize1079),
(&g_typeDefinitionSize1080),
(&g_typeDefinitionSize1081),
(&g_typeDefinitionSize1082),
(&g_typeDefinitionSize1083),
(&g_typeDefinitionSize1084),
(&g_typeDefinitionSize1085),
(&g_typeDefinitionSize1086),
(&g_typeDefinitionSize1087),
(&g_typeDefinitionSize1088),
(&g_typeDefinitionSize1089),
(&g_typeDefinitionSize1090),
(&g_typeDefinitionSize1091),
(&g_typeDefinitionSize1092),
(&g_typeDefinitionSize1093),
(&g_typeDefinitionSize1094),
(&g_typeDefinitionSize1095),
(&g_typeDefinitionSize1096),
(&g_typeDefinitionSize1097),
(&g_typeDefinitionSize1098),
(&g_typeDefinitionSize1099),
(&g_typeDefinitionSize1100),
(&g_typeDefinitionSize1101),
(&g_typeDefinitionSize1102),
(&g_typeDefinitionSize1103),
(&g_typeDefinitionSize1104),
(&g_typeDefinitionSize1105),
(&g_typeDefinitionSize1106),
(&g_typeDefinitionSize1107),
(&g_typeDefinitionSize1108),
(&g_typeDefinitionSize1109),
(&g_typeDefinitionSize1110),
(&g_typeDefinitionSize1111),
(&g_typeDefinitionSize1112),
(&g_typeDefinitionSize1113),
(&g_typeDefinitionSize1114),
(&g_typeDefinitionSize1115),
(&g_typeDefinitionSize1116),
(&g_typeDefinitionSize1117),
(&g_typeDefinitionSize1118),
(&g_typeDefinitionSize1119),
(&g_typeDefinitionSize1120),
(&g_typeDefinitionSize1121),
(&g_typeDefinitionSize1122),
(&g_typeDefinitionSize1123),
(&g_typeDefinitionSize1124),
(&g_typeDefinitionSize1125),
(&g_typeDefinitionSize1126),
(&g_typeDefinitionSize1127),
(&g_typeDefinitionSize1128),
(&g_typeDefinitionSize1129),
(&g_typeDefinitionSize1130),
(&g_typeDefinitionSize1131),
(&g_typeDefinitionSize1132),
(&g_typeDefinitionSize1133),
(&g_typeDefinitionSize1134),
(&g_typeDefinitionSize1135),
(&g_typeDefinitionSize1136),
(&g_typeDefinitionSize1137),
(&g_typeDefinitionSize1138),
(&g_typeDefinitionSize1139),
(&g_typeDefinitionSize1140),
(&g_typeDefinitionSize1141),
(&g_typeDefinitionSize1142),
(&g_typeDefinitionSize1143),
(&g_typeDefinitionSize1144),
(&g_typeDefinitionSize1145),
(&g_typeDefinitionSize1146),
(&g_typeDefinitionSize1147),
(&g_typeDefinitionSize1148),
(&g_typeDefinitionSize1149),
(&g_typeDefinitionSize1150),
(&g_typeDefinitionSize1151),
(&g_typeDefinitionSize1152),
(&g_typeDefinitionSize1153),
(&g_typeDefinitionSize1154),
(&g_typeDefinitionSize1155),
(&g_typeDefinitionSize1156),
(&g_typeDefinitionSize1157),
(&g_typeDefinitionSize1158),
(&g_typeDefinitionSize1159),
(&g_typeDefinitionSize1160),
(&g_typeDefinitionSize1161),
(&g_typeDefinitionSize1162),
(&g_typeDefinitionSize1163),
(&g_typeDefinitionSize1164),
(&g_typeDefinitionSize1165),
(&g_typeDefinitionSize1166),
(&g_typeDefinitionSize1167),
(&g_typeDefinitionSize1168),
(&g_typeDefinitionSize1169),
(&g_typeDefinitionSize1170),
(&g_typeDefinitionSize1171),
(&g_typeDefinitionSize1172),
(&g_typeDefinitionSize1173),
(&g_typeDefinitionSize1174),
(&g_typeDefinitionSize1175),
(&g_typeDefinitionSize1176),
(&g_typeDefinitionSize1177),
(&g_typeDefinitionSize1178),
(&g_typeDefinitionSize1179),
(&g_typeDefinitionSize1180),
(&g_typeDefinitionSize1181),
(&g_typeDefinitionSize1182),
(&g_typeDefinitionSize1183),
(&g_typeDefinitionSize1184),
(&g_typeDefinitionSize1185),
(&g_typeDefinitionSize1186),
(&g_typeDefinitionSize1187),
(&g_typeDefinitionSize1188),
(&g_typeDefinitionSize1189),
(&g_typeDefinitionSize1190),
(&g_typeDefinitionSize1191),
(&g_typeDefinitionSize1192),
(&g_typeDefinitionSize1193),
(&g_typeDefinitionSize1194),
(&g_typeDefinitionSize1195),
(&g_typeDefinitionSize1196),
(&g_typeDefinitionSize1197),
(&g_typeDefinitionSize1198),
(&g_typeDefinitionSize1199),
(&g_typeDefinitionSize1200),
(&g_typeDefinitionSize1201),
(&g_typeDefinitionSize1202),
(&g_typeDefinitionSize1203),
(&g_typeDefinitionSize1204),
(&g_typeDefinitionSize1205),
(&g_typeDefinitionSize1206),
(&g_typeDefinitionSize1207),
(&g_typeDefinitionSize1208),
(&g_typeDefinitionSize1209),
(&g_typeDefinitionSize1210),
(&g_typeDefinitionSize1211),
(&g_typeDefinitionSize1212),
(&g_typeDefinitionSize1213),
(&g_typeDefinitionSize1214),
(&g_typeDefinitionSize1215),
(&g_typeDefinitionSize1216),
(&g_typeDefinitionSize1217),
(&g_typeDefinitionSize1218),
(&g_typeDefinitionSize1219),
(&g_typeDefinitionSize1220),
(&g_typeDefinitionSize1221),
(&g_typeDefinitionSize1222),
(&g_typeDefinitionSize1223),
(&g_typeDefinitionSize1224),
(&g_typeDefinitionSize1225),
(&g_typeDefinitionSize1226),
(&g_typeDefinitionSize1227),
(&g_typeDefinitionSize1228),
(&g_typeDefinitionSize1229),
(&g_typeDefinitionSize1230),
(&g_typeDefinitionSize1231),
(&g_typeDefinitionSize1232),
(&g_typeDefinitionSize1233),
(&g_typeDefinitionSize1234),
(&g_typeDefinitionSize1235),
(&g_typeDefinitionSize1236),
(&g_typeDefinitionSize1237),
(&g_typeDefinitionSize1238),
(&g_typeDefinitionSize1239),
(&g_typeDefinitionSize1240),
(&g_typeDefinitionSize1241),
(&g_typeDefinitionSize1242),
(&g_typeDefinitionSize1243),
(&g_typeDefinitionSize1244),
(&g_typeDefinitionSize1245),
(&g_typeDefinitionSize1246),
(&g_typeDefinitionSize1247),
(&g_typeDefinitionSize1248),
(&g_typeDefinitionSize1249),
(&g_typeDefinitionSize1250),
(&g_typeDefinitionSize1251),
(&g_typeDefinitionSize1252),
(&g_typeDefinitionSize1253),
(&g_typeDefinitionSize1254),
(&g_typeDefinitionSize1255),
(&g_typeDefinitionSize1256),
(&g_typeDefinitionSize1257),
(&g_typeDefinitionSize1258),
(&g_typeDefinitionSize1259),
(&g_typeDefinitionSize1260),
(&g_typeDefinitionSize1261),
(&g_typeDefinitionSize1262),
(&g_typeDefinitionSize1263),
(&g_typeDefinitionSize1264),
(&g_typeDefinitionSize1265),
(&g_typeDefinitionSize1266),
(&g_typeDefinitionSize1267),
(&g_typeDefinitionSize1268),
(&g_typeDefinitionSize1269),
(&g_typeDefinitionSize1270),
(&g_typeDefinitionSize1271),
(&g_typeDefinitionSize1272),
(&g_typeDefinitionSize1273),
(&g_typeDefinitionSize1274),
(&g_typeDefinitionSize1275),
(&g_typeDefinitionSize1276),
(&g_typeDefinitionSize1277),
(&g_typeDefinitionSize1278),
(&g_typeDefinitionSize1279),
(&g_typeDefinitionSize1280),
(&g_typeDefinitionSize1281),
(&g_typeDefinitionSize1282),
(&g_typeDefinitionSize1283),
(&g_typeDefinitionSize1284),
(&g_typeDefinitionSize1285),
(&g_typeDefinitionSize1286),
(&g_typeDefinitionSize1287),
(&g_typeDefinitionSize1288),
(&g_typeDefinitionSize1289),
(&g_typeDefinitionSize1290),
(&g_typeDefinitionSize1291),
(&g_typeDefinitionSize1292),
(&g_typeDefinitionSize1293),
(&g_typeDefinitionSize1294),
(&g_typeDefinitionSize1295),
(&g_typeDefinitionSize1296),
(&g_typeDefinitionSize1297),
(&g_typeDefinitionSize1298),
(&g_typeDefinitionSize1299),
(&g_typeDefinitionSize1300),
(&g_typeDefinitionSize1301),
(&g_typeDefinitionSize1302),
(&g_typeDefinitionSize1303),
(&g_typeDefinitionSize1304),
(&g_typeDefinitionSize1305),
(&g_typeDefinitionSize1306),
(&g_typeDefinitionSize1307),
(&g_typeDefinitionSize1308),
(&g_typeDefinitionSize1309),
(&g_typeDefinitionSize1310),
(&g_typeDefinitionSize1311),
(&g_typeDefinitionSize1312),
(&g_typeDefinitionSize1313),
(&g_typeDefinitionSize1314),
(&g_typeDefinitionSize1315),
(&g_typeDefinitionSize1316),
(&g_typeDefinitionSize1317),
(&g_typeDefinitionSize1318),
(&g_typeDefinitionSize1319),
(&g_typeDefinitionSize1320),
(&g_typeDefinitionSize1321),
(&g_typeDefinitionSize1322),
(&g_typeDefinitionSize1323),
(&g_typeDefinitionSize1324),
(&g_typeDefinitionSize1325),
(&g_typeDefinitionSize1326),
(&g_typeDefinitionSize1327),
(&g_typeDefinitionSize1328),
(&g_typeDefinitionSize1329),
(&g_typeDefinitionSize1330),
(&g_typeDefinitionSize1331),
(&g_typeDefinitionSize1332),
(&g_typeDefinitionSize1333),
(&g_typeDefinitionSize1334),
(&g_typeDefinitionSize1335),
(&g_typeDefinitionSize1336),
(&g_typeDefinitionSize1337),
(&g_typeDefinitionSize1338),
(&g_typeDefinitionSize1339),
(&g_typeDefinitionSize1340),
(&g_typeDefinitionSize1341),
(&g_typeDefinitionSize1342),
(&g_typeDefinitionSize1343),
(&g_typeDefinitionSize1344),
(&g_typeDefinitionSize1345),
(&g_typeDefinitionSize1346),
(&g_typeDefinitionSize1347),
(&g_typeDefinitionSize1348),
(&g_typeDefinitionSize1349),
(&g_typeDefinitionSize1350),
(&g_typeDefinitionSize1351),
(&g_typeDefinitionSize1352),
(&g_typeDefinitionSize1353),
(&g_typeDefinitionSize1354),
(&g_typeDefinitionSize1355),
(&g_typeDefinitionSize1356),
(&g_typeDefinitionSize1357),
(&g_typeDefinitionSize1358),
(&g_typeDefinitionSize1359),
(&g_typeDefinitionSize1360),
(&g_typeDefinitionSize1361),
(&g_typeDefinitionSize1362),
(&g_typeDefinitionSize1363),
(&g_typeDefinitionSize1364),
(&g_typeDefinitionSize1365),
(&g_typeDefinitionSize1366),
(&g_typeDefinitionSize1367),
(&g_typeDefinitionSize1368),
(&g_typeDefinitionSize1369),
(&g_typeDefinitionSize1370),
(&g_typeDefinitionSize1371),
(&g_typeDefinitionSize1372),
(&g_typeDefinitionSize1373),
(&g_typeDefinitionSize1374),
(&g_typeDefinitionSize1375),
(&g_typeDefinitionSize1376),
(&g_typeDefinitionSize1377),
(&g_typeDefinitionSize1378),
(&g_typeDefinitionSize1379),
(&g_typeDefinitionSize1380),
(&g_typeDefinitionSize1381),
(&g_typeDefinitionSize1382),
(&g_typeDefinitionSize1383),
(&g_typeDefinitionSize1384),
(&g_typeDefinitionSize1385),
(&g_typeDefinitionSize1386),
(&g_typeDefinitionSize1387),
(&g_typeDefinitionSize1388),
(&g_typeDefinitionSize1389),
(&g_typeDefinitionSize1390),
(&g_typeDefinitionSize1391),
(&g_typeDefinitionSize1392),
(&g_typeDefinitionSize1393),
(&g_typeDefinitionSize1394),
(&g_typeDefinitionSize1395),
(&g_typeDefinitionSize1396),
(&g_typeDefinitionSize1397),
(&g_typeDefinitionSize1398),
(&g_typeDefinitionSize1399),
(&g_typeDefinitionSize1400),
(&g_typeDefinitionSize1401),
(&g_typeDefinitionSize1402),
(&g_typeDefinitionSize1403),
(&g_typeDefinitionSize1404),
(&g_typeDefinitionSize1405),
(&g_typeDefinitionSize1406),
(&g_typeDefinitionSize1407),
(&g_typeDefinitionSize1408),
(&g_typeDefinitionSize1409),
(&g_typeDefinitionSize1410),
(&g_typeDefinitionSize1411),
(&g_typeDefinitionSize1412),
(&g_typeDefinitionSize1413),
(&g_typeDefinitionSize1414),
(&g_typeDefinitionSize1415),
(&g_typeDefinitionSize1416),
(&g_typeDefinitionSize1417),
(&g_typeDefinitionSize1418),
(&g_typeDefinitionSize1419),
(&g_typeDefinitionSize1420),
(&g_typeDefinitionSize1421),
(&g_typeDefinitionSize1422),
(&g_typeDefinitionSize1423),
(&g_typeDefinitionSize1424),
(&g_typeDefinitionSize1425),
(&g_typeDefinitionSize1426),
(&g_typeDefinitionSize1427),
(&g_typeDefinitionSize1428),
(&g_typeDefinitionSize1429),
(&g_typeDefinitionSize1430),
(&g_typeDefinitionSize1431),
(&g_typeDefinitionSize1432),
(&g_typeDefinitionSize1433),
(&g_typeDefinitionSize1434),
(&g_typeDefinitionSize1435),
(&g_typeDefinitionSize1436),
(&g_typeDefinitionSize1437),
(&g_typeDefinitionSize1438),
(&g_typeDefinitionSize1439),
(&g_typeDefinitionSize1440),
(&g_typeDefinitionSize1441),
(&g_typeDefinitionSize1442),
(&g_typeDefinitionSize1443),
(&g_typeDefinitionSize1444),
(&g_typeDefinitionSize1445),
(&g_typeDefinitionSize1446),
(&g_typeDefinitionSize1447),
(&g_typeDefinitionSize1448),
(&g_typeDefinitionSize1449),
(&g_typeDefinitionSize1450),
(&g_typeDefinitionSize1451),
(&g_typeDefinitionSize1452),
(&g_typeDefinitionSize1453),
(&g_typeDefinitionSize1454),
(&g_typeDefinitionSize1455),
(&g_typeDefinitionSize1456),
(&g_typeDefinitionSize1457),
(&g_typeDefinitionSize1458),
(&g_typeDefinitionSize1459),
(&g_typeDefinitionSize1460),
(&g_typeDefinitionSize1461),
(&g_typeDefinitionSize1462),
(&g_typeDefinitionSize1463),
(&g_typeDefinitionSize1464),
(&g_typeDefinitionSize1465),
(&g_typeDefinitionSize1466),
(&g_typeDefinitionSize1467),
(&g_typeDefinitionSize1468),
(&g_typeDefinitionSize1469),
(&g_typeDefinitionSize1470),
(&g_typeDefinitionSize1471),
(&g_typeDefinitionSize1472),
(&g_typeDefinitionSize1473),
(&g_typeDefinitionSize1474),
(&g_typeDefinitionSize1475),
(&g_typeDefinitionSize1476),
(&g_typeDefinitionSize1477),
(&g_typeDefinitionSize1478),
(&g_typeDefinitionSize1479),
(&g_typeDefinitionSize1480),
(&g_typeDefinitionSize1481),
(&g_typeDefinitionSize1482),
(&g_typeDefinitionSize1483),
(&g_typeDefinitionSize1484),
(&g_typeDefinitionSize1485),
(&g_typeDefinitionSize1486),
(&g_typeDefinitionSize1487),
(&g_typeDefinitionSize1488),
(&g_typeDefinitionSize1489),
(&g_typeDefinitionSize1490),
(&g_typeDefinitionSize1491),
(&g_typeDefinitionSize1492),
(&g_typeDefinitionSize1493),
(&g_typeDefinitionSize1494),
(&g_typeDefinitionSize1495),
(&g_typeDefinitionSize1496),
(&g_typeDefinitionSize1497),
(&g_typeDefinitionSize1498),
(&g_typeDefinitionSize1499),
(&g_typeDefinitionSize1500),
(&g_typeDefinitionSize1501),
(&g_typeDefinitionSize1502),
(&g_typeDefinitionSize1503),
(&g_typeDefinitionSize1504),
(&g_typeDefinitionSize1505),
(&g_typeDefinitionSize1506),
(&g_typeDefinitionSize1507),
(&g_typeDefinitionSize1508),
(&g_typeDefinitionSize1509),
(&g_typeDefinitionSize1510),
(&g_typeDefinitionSize1511),
(&g_typeDefinitionSize1512),
(&g_typeDefinitionSize1513),
(&g_typeDefinitionSize1514),
(&g_typeDefinitionSize1515),
(&g_typeDefinitionSize1516),
(&g_typeDefinitionSize1517),
(&g_typeDefinitionSize1518),
(&g_typeDefinitionSize1519),
(&g_typeDefinitionSize1520),
(&g_typeDefinitionSize1521),
(&g_typeDefinitionSize1522),
(&g_typeDefinitionSize1523),
(&g_typeDefinitionSize1524),
(&g_typeDefinitionSize1525),
(&g_typeDefinitionSize1526),
(&g_typeDefinitionSize1527),
(&g_typeDefinitionSize1528),
(&g_typeDefinitionSize1529),
(&g_typeDefinitionSize1530),
(&g_typeDefinitionSize1531),
(&g_typeDefinitionSize1532),
(&g_typeDefinitionSize1533),
(&g_typeDefinitionSize1534),
(&g_typeDefinitionSize1535),
(&g_typeDefinitionSize1536),
(&g_typeDefinitionSize1537),
(&g_typeDefinitionSize1538),
(&g_typeDefinitionSize1539),
(&g_typeDefinitionSize1540),
(&g_typeDefinitionSize1541),
(&g_typeDefinitionSize1542),
(&g_typeDefinitionSize1543),
(&g_typeDefinitionSize1544),
(&g_typeDefinitionSize1545),
(&g_typeDefinitionSize1546),
(&g_typeDefinitionSize1547),
(&g_typeDefinitionSize1548),
(&g_typeDefinitionSize1549),
(&g_typeDefinitionSize1550),
(&g_typeDefinitionSize1551),
(&g_typeDefinitionSize1552),
(&g_typeDefinitionSize1553),
(&g_typeDefinitionSize1554),
(&g_typeDefinitionSize1555),
(&g_typeDefinitionSize1556),
(&g_typeDefinitionSize1557),
(&g_typeDefinitionSize1558),
(&g_typeDefinitionSize1559),
(&g_typeDefinitionSize1560),
(&g_typeDefinitionSize1561),
(&g_typeDefinitionSize1562),
(&g_typeDefinitionSize1563),
(&g_typeDefinitionSize1564),
(&g_typeDefinitionSize1565),
(&g_typeDefinitionSize1566),
(&g_typeDefinitionSize1567),
(&g_typeDefinitionSize1568),
(&g_typeDefinitionSize1569),
(&g_typeDefinitionSize1570),
(&g_typeDefinitionSize1571),
(&g_typeDefinitionSize1572),
(&g_typeDefinitionSize1573),
(&g_typeDefinitionSize1574),
(&g_typeDefinitionSize1575),
(&g_typeDefinitionSize1576),
(&g_typeDefinitionSize1577),
(&g_typeDefinitionSize1578),
(&g_typeDefinitionSize1579),
(&g_typeDefinitionSize1580),
(&g_typeDefinitionSize1581),
(&g_typeDefinitionSize1582),
(&g_typeDefinitionSize1583),
(&g_typeDefinitionSize1584),
(&g_typeDefinitionSize1585),
(&g_typeDefinitionSize1586),
(&g_typeDefinitionSize1587),
(&g_typeDefinitionSize1588),
(&g_typeDefinitionSize1589),
(&g_typeDefinitionSize1590),
(&g_typeDefinitionSize1591),
(&g_typeDefinitionSize1592),
(&g_typeDefinitionSize1593),
(&g_typeDefinitionSize1594),
(&g_typeDefinitionSize1595),
(&g_typeDefinitionSize1596),
(&g_typeDefinitionSize1597),
(&g_typeDefinitionSize1598),
(&g_typeDefinitionSize1599),
(&g_typeDefinitionSize1600),
(&g_typeDefinitionSize1601),
(&g_typeDefinitionSize1602),
(&g_typeDefinitionSize1603),
(&g_typeDefinitionSize1604),
(&g_typeDefinitionSize1605),
(&g_typeDefinitionSize1606),
(&g_typeDefinitionSize1607),
(&g_typeDefinitionSize1608),
(&g_typeDefinitionSize1609),
(&g_typeDefinitionSize1610),
(&g_typeDefinitionSize1611),
(&g_typeDefinitionSize1612),
(&g_typeDefinitionSize1613),
(&g_typeDefinitionSize1614),
(&g_typeDefinitionSize1615),
(&g_typeDefinitionSize1616),
(&g_typeDefinitionSize1617),
(&g_typeDefinitionSize1618),
(&g_typeDefinitionSize1619),
(&g_typeDefinitionSize1620),
(&g_typeDefinitionSize1621),
(&g_typeDefinitionSize1622),
(&g_typeDefinitionSize1623),
(&g_typeDefinitionSize1624),
(&g_typeDefinitionSize1625),
(&g_typeDefinitionSize1626),
(&g_typeDefinitionSize1627),
(&g_typeDefinitionSize1628),
(&g_typeDefinitionSize1629),
(&g_typeDefinitionSize1630),
(&g_typeDefinitionSize1631),
(&g_typeDefinitionSize1632),
(&g_typeDefinitionSize1633),
(&g_typeDefinitionSize1634),
(&g_typeDefinitionSize1635),
(&g_typeDefinitionSize1636),
(&g_typeDefinitionSize1637),
(&g_typeDefinitionSize1638),
(&g_typeDefinitionSize1639),
(&g_typeDefinitionSize1640),
(&g_typeDefinitionSize1641),
(&g_typeDefinitionSize1642),
(&g_typeDefinitionSize1643),
(&g_typeDefinitionSize1644),
(&g_typeDefinitionSize1645),
(&g_typeDefinitionSize1646),
(&g_typeDefinitionSize1647),
(&g_typeDefinitionSize1648),
(&g_typeDefinitionSize1649),
(&g_typeDefinitionSize1650),
(&g_typeDefinitionSize1651),
(&g_typeDefinitionSize1652),
(&g_typeDefinitionSize1653),
(&g_typeDefinitionSize1654),
(&g_typeDefinitionSize1655),
(&g_typeDefinitionSize1656),
(&g_typeDefinitionSize1657),
(&g_typeDefinitionSize1658),
(&g_typeDefinitionSize1659),
(&g_typeDefinitionSize1660),
(&g_typeDefinitionSize1661),
(&g_typeDefinitionSize1662),
(&g_typeDefinitionSize1663),
(&g_typeDefinitionSize1664),
(&g_typeDefinitionSize1665),
(&g_typeDefinitionSize1666),
(&g_typeDefinitionSize1667),
(&g_typeDefinitionSize1668),
(&g_typeDefinitionSize1669),
(&g_typeDefinitionSize1670),
(&g_typeDefinitionSize1671),
(&g_typeDefinitionSize1672),
(&g_typeDefinitionSize1673),
(&g_typeDefinitionSize1674),
(&g_typeDefinitionSize1675),
(&g_typeDefinitionSize1676),
(&g_typeDefinitionSize1677),
(&g_typeDefinitionSize1678),
(&g_typeDefinitionSize1679),
(&g_typeDefinitionSize1680),
(&g_typeDefinitionSize1681),
(&g_typeDefinitionSize1682),
(&g_typeDefinitionSize1683),
(&g_typeDefinitionSize1684),
(&g_typeDefinitionSize1685),
(&g_typeDefinitionSize1686),
(&g_typeDefinitionSize1687),
(&g_typeDefinitionSize1688),
(&g_typeDefinitionSize1689),
(&g_typeDefinitionSize1690),
(&g_typeDefinitionSize1691),
(&g_typeDefinitionSize1692),
(&g_typeDefinitionSize1693),
(&g_typeDefinitionSize1694),
(&g_typeDefinitionSize1695),
(&g_typeDefinitionSize1696),
(&g_typeDefinitionSize1697),
(&g_typeDefinitionSize1698),
(&g_typeDefinitionSize1699),
(&g_typeDefinitionSize1700),
(&g_typeDefinitionSize1701),
(&g_typeDefinitionSize1702),
(&g_typeDefinitionSize1703),
(&g_typeDefinitionSize1704),
(&g_typeDefinitionSize1705),
(&g_typeDefinitionSize1706),
(&g_typeDefinitionSize1707),
(&g_typeDefinitionSize1708),
(&g_typeDefinitionSize1709),
(&g_typeDefinitionSize1710),
(&g_typeDefinitionSize1711),
(&g_typeDefinitionSize1712),
(&g_typeDefinitionSize1713),
(&g_typeDefinitionSize1714),
(&g_typeDefinitionSize1715),
(&g_typeDefinitionSize1716),
(&g_typeDefinitionSize1717),
(&g_typeDefinitionSize1718),
(&g_typeDefinitionSize1719),
(&g_typeDefinitionSize1720),
(&g_typeDefinitionSize1721),
(&g_typeDefinitionSize1722),
(&g_typeDefinitionSize1723),
(&g_typeDefinitionSize1724),
(&g_typeDefinitionSize1725),
(&g_typeDefinitionSize1726),
(&g_typeDefinitionSize1727),
(&g_typeDefinitionSize1728),
(&g_typeDefinitionSize1729),
(&g_typeDefinitionSize1730),
(&g_typeDefinitionSize1731),
(&g_typeDefinitionSize1732),
(&g_typeDefinitionSize1733),
(&g_typeDefinitionSize1734),
(&g_typeDefinitionSize1735),
(&g_typeDefinitionSize1736),
(&g_typeDefinitionSize1737),
(&g_typeDefinitionSize1738),
(&g_typeDefinitionSize1739),
(&g_typeDefinitionSize1740),
(&g_typeDefinitionSize1741),
(&g_typeDefinitionSize1742),
(&g_typeDefinitionSize1743),
(&g_typeDefinitionSize1744),
(&g_typeDefinitionSize1745),
(&g_typeDefinitionSize1746),
(&g_typeDefinitionSize1747),
(&g_typeDefinitionSize1748),
(&g_typeDefinitionSize1749),
(&g_typeDefinitionSize1750),
(&g_typeDefinitionSize1751),
(&g_typeDefinitionSize1752),
(&g_typeDefinitionSize1753),
(&g_typeDefinitionSize1754),
(&g_typeDefinitionSize1755),
(&g_typeDefinitionSize1756),
(&g_typeDefinitionSize1757),
(&g_typeDefinitionSize1758),
(&g_typeDefinitionSize1759),
(&g_typeDefinitionSize1760),
(&g_typeDefinitionSize1761),
(&g_typeDefinitionSize1762),
(&g_typeDefinitionSize1763),
(&g_typeDefinitionSize1764),
(&g_typeDefinitionSize1765),
(&g_typeDefinitionSize1766),
(&g_typeDefinitionSize1767),
(&g_typeDefinitionSize1768),
(&g_typeDefinitionSize1769),
(&g_typeDefinitionSize1770),
(&g_typeDefinitionSize1771),
(&g_typeDefinitionSize1772),
(&g_typeDefinitionSize1773),
(&g_typeDefinitionSize1774),
(&g_typeDefinitionSize1775),
(&g_typeDefinitionSize1776),
(&g_typeDefinitionSize1777),
(&g_typeDefinitionSize1778),
(&g_typeDefinitionSize1779),
(&g_typeDefinitionSize1780),
(&g_typeDefinitionSize1781),
(&g_typeDefinitionSize1782),
(&g_typeDefinitionSize1783),
(&g_typeDefinitionSize1784),
(&g_typeDefinitionSize1785),
(&g_typeDefinitionSize1786),
(&g_typeDefinitionSize1787),
(&g_typeDefinitionSize1788),
(&g_typeDefinitionSize1789),
(&g_typeDefinitionSize1790),
(&g_typeDefinitionSize1791),
(&g_typeDefinitionSize1792),
(&g_typeDefinitionSize1793),
(&g_typeDefinitionSize1794),
(&g_typeDefinitionSize1795),
(&g_typeDefinitionSize1796),
(&g_typeDefinitionSize1797),
(&g_typeDefinitionSize1798),
(&g_typeDefinitionSize1799),
(&g_typeDefinitionSize1800),
(&g_typeDefinitionSize1801),
(&g_typeDefinitionSize1802),
(&g_typeDefinitionSize1803),
(&g_typeDefinitionSize1804),
(&g_typeDefinitionSize1805),
(&g_typeDefinitionSize1806),
(&g_typeDefinitionSize1807),
(&g_typeDefinitionSize1808),
(&g_typeDefinitionSize1809),
(&g_typeDefinitionSize1810),
(&g_typeDefinitionSize1811),
(&g_typeDefinitionSize1812),
(&g_typeDefinitionSize1813),
(&g_typeDefinitionSize1814),
(&g_typeDefinitionSize1815),
(&g_typeDefinitionSize1816),
(&g_typeDefinitionSize1817),
(&g_typeDefinitionSize1818),
(&g_typeDefinitionSize1819),
(&g_typeDefinitionSize1820),
(&g_typeDefinitionSize1821),
(&g_typeDefinitionSize1822),
(&g_typeDefinitionSize1823),
(&g_typeDefinitionSize1824),
(&g_typeDefinitionSize1825),
(&g_typeDefinitionSize1826),
(&g_typeDefinitionSize1827),
(&g_typeDefinitionSize1828),
(&g_typeDefinitionSize1829),
(&g_typeDefinitionSize1830),
(&g_typeDefinitionSize1831),
(&g_typeDefinitionSize1832),
(&g_typeDefinitionSize1833),
(&g_typeDefinitionSize1834),
(&g_typeDefinitionSize1835),
(&g_typeDefinitionSize1836),
(&g_typeDefinitionSize1837),
(&g_typeDefinitionSize1838),
(&g_typeDefinitionSize1839),
(&g_typeDefinitionSize1840),
(&g_typeDefinitionSize1841),
(&g_typeDefinitionSize1842),
(&g_typeDefinitionSize1843),
(&g_typeDefinitionSize1844),
(&g_typeDefinitionSize1845),
(&g_typeDefinitionSize1846),
(&g_typeDefinitionSize1847),
(&g_typeDefinitionSize1848),
(&g_typeDefinitionSize1849),
(&g_typeDefinitionSize1850),
(&g_typeDefinitionSize1851),
(&g_typeDefinitionSize1852),
(&g_typeDefinitionSize1853),
(&g_typeDefinitionSize1854),
(&g_typeDefinitionSize1855),
(&g_typeDefinitionSize1856),
(&g_typeDefinitionSize1857),
(&g_typeDefinitionSize1858),
(&g_typeDefinitionSize1859),
(&g_typeDefinitionSize1860),
(&g_typeDefinitionSize1861),
(&g_typeDefinitionSize1862),
(&g_typeDefinitionSize1863),
(&g_typeDefinitionSize1864),
(&g_typeDefinitionSize1865),
(&g_typeDefinitionSize1866),
(&g_typeDefinitionSize1867),
(&g_typeDefinitionSize1868),
(&g_typeDefinitionSize1869),
(&g_typeDefinitionSize1870),
(&g_typeDefinitionSize1871),
(&g_typeDefinitionSize1872),
(&g_typeDefinitionSize1873),
(&g_typeDefinitionSize1874),
(&g_typeDefinitionSize1875),
(&g_typeDefinitionSize1876),
(&g_typeDefinitionSize1877),
(&g_typeDefinitionSize1878),
(&g_typeDefinitionSize1879),
(&g_typeDefinitionSize1880),
(&g_typeDefinitionSize1881),
(&g_typeDefinitionSize1882),
(&g_typeDefinitionSize1883),
(&g_typeDefinitionSize1884),
(&g_typeDefinitionSize1885),
(&g_typeDefinitionSize1886),
(&g_typeDefinitionSize1887),
(&g_typeDefinitionSize1888),
(&g_typeDefinitionSize1889),
(&g_typeDefinitionSize1890),
(&g_typeDefinitionSize1891),
(&g_typeDefinitionSize1892),
(&g_typeDefinitionSize1893),
(&g_typeDefinitionSize1894),
(&g_typeDefinitionSize1895),
(&g_typeDefinitionSize1896),
(&g_typeDefinitionSize1897),
(&g_typeDefinitionSize1898),
(&g_typeDefinitionSize1899),
(&g_typeDefinitionSize1900),
(&g_typeDefinitionSize1901),
(&g_typeDefinitionSize1902),
(&g_typeDefinitionSize1903),
(&g_typeDefinitionSize1904),
(&g_typeDefinitionSize1905),
(&g_typeDefinitionSize1906),
(&g_typeDefinitionSize1907),
(&g_typeDefinitionSize1908),
(&g_typeDefinitionSize1909),
(&g_typeDefinitionSize1910),
(&g_typeDefinitionSize1911),
(&g_typeDefinitionSize1912),
(&g_typeDefinitionSize1913),
(&g_typeDefinitionSize1914),
(&g_typeDefinitionSize1915),
(&g_typeDefinitionSize1916),
(&g_typeDefinitionSize1917),
(&g_typeDefinitionSize1918),
(&g_typeDefinitionSize1919),
(&g_typeDefinitionSize1920),
(&g_typeDefinitionSize1921),
(&g_typeDefinitionSize1922),
(&g_typeDefinitionSize1923),
(&g_typeDefinitionSize1924),
(&g_typeDefinitionSize1925),
(&g_typeDefinitionSize1926),
(&g_typeDefinitionSize1927),
(&g_typeDefinitionSize1928),
(&g_typeDefinitionSize1929),
(&g_typeDefinitionSize1930),
(&g_typeDefinitionSize1931),
(&g_typeDefinitionSize1932),
(&g_typeDefinitionSize1933),
(&g_typeDefinitionSize1934),
(&g_typeDefinitionSize1935),
(&g_typeDefinitionSize1936),
(&g_typeDefinitionSize1937),
(&g_typeDefinitionSize1938),
(&g_typeDefinitionSize1939),
(&g_typeDefinitionSize1940),
(&g_typeDefinitionSize1941),
(&g_typeDefinitionSize1942),
(&g_typeDefinitionSize1943),
(&g_typeDefinitionSize1944),
(&g_typeDefinitionSize1945),
(&g_typeDefinitionSize1946),
(&g_typeDefinitionSize1947),
(&g_typeDefinitionSize1948),
(&g_typeDefinitionSize1949),
(&g_typeDefinitionSize1950),
(&g_typeDefinitionSize1951),
(&g_typeDefinitionSize1952),
(&g_typeDefinitionSize1953),
(&g_typeDefinitionSize1954),
(&g_typeDefinitionSize1955),
(&g_typeDefinitionSize1956),
(&g_typeDefinitionSize1957),
(&g_typeDefinitionSize1958),
(&g_typeDefinitionSize1959),
(&g_typeDefinitionSize1960),
(&g_typeDefinitionSize1961),
(&g_typeDefinitionSize1962),
(&g_typeDefinitionSize1963),
(&g_typeDefinitionSize1964),
(&g_typeDefinitionSize1965),
(&g_typeDefinitionSize1966),
(&g_typeDefinitionSize1967),
(&g_typeDefinitionSize1968),
(&g_typeDefinitionSize1969),
(&g_typeDefinitionSize1970),
(&g_typeDefinitionSize1971),
(&g_typeDefinitionSize1972),
(&g_typeDefinitionSize1973),
(&g_typeDefinitionSize1974),
(&g_typeDefinitionSize1975),
(&g_typeDefinitionSize1976),
(&g_typeDefinitionSize1977),
(&g_typeDefinitionSize1978),
(&g_typeDefinitionSize1979),
(&g_typeDefinitionSize1980),
(&g_typeDefinitionSize1981),
(&g_typeDefinitionSize1982),
(&g_typeDefinitionSize1983),
(&g_typeDefinitionSize1984),
(&g_typeDefinitionSize1985),
(&g_typeDefinitionSize1986),
(&g_typeDefinitionSize1987),
(&g_typeDefinitionSize1988),
(&g_typeDefinitionSize1989),
(&g_typeDefinitionSize1990),
(&g_typeDefinitionSize1991),
(&g_typeDefinitionSize1992),
(&g_typeDefinitionSize1993),
(&g_typeDefinitionSize1994),
(&g_typeDefinitionSize1995),
(&g_typeDefinitionSize1996),
(&g_typeDefinitionSize1997),
(&g_typeDefinitionSize1998),
(&g_typeDefinitionSize1999),
(&g_typeDefinitionSize2000),
(&g_typeDefinitionSize2001),
(&g_typeDefinitionSize2002),
(&g_typeDefinitionSize2003),
(&g_typeDefinitionSize2004),
(&g_typeDefinitionSize2005),
(&g_typeDefinitionSize2006),
(&g_typeDefinitionSize2007),
(&g_typeDefinitionSize2008),
(&g_typeDefinitionSize2009),
(&g_typeDefinitionSize2010),
(&g_typeDefinitionSize2011),
(&g_typeDefinitionSize2012),
(&g_typeDefinitionSize2013),
(&g_typeDefinitionSize2014),
(&g_typeDefinitionSize2015),
(&g_typeDefinitionSize2016),
(&g_typeDefinitionSize2017),
(&g_typeDefinitionSize2018),
(&g_typeDefinitionSize2019),
(&g_typeDefinitionSize2020),
(&g_typeDefinitionSize2021),
(&g_typeDefinitionSize2022),
(&g_typeDefinitionSize2023),
(&g_typeDefinitionSize2024),
(&g_typeDefinitionSize2025),
(&g_typeDefinitionSize2026),
(&g_typeDefinitionSize2027),
(&g_typeDefinitionSize2028),
(&g_typeDefinitionSize2029),
(&g_typeDefinitionSize2030),
(&g_typeDefinitionSize2031),
(&g_typeDefinitionSize2032),
(&g_typeDefinitionSize2033),
(&g_typeDefinitionSize2034),
(&g_typeDefinitionSize2035),
(&g_typeDefinitionSize2036),
(&g_typeDefinitionSize2037),
(&g_typeDefinitionSize2038),
(&g_typeDefinitionSize2039),
(&g_typeDefinitionSize2040),
(&g_typeDefinitionSize2041),
(&g_typeDefinitionSize2042),
(&g_typeDefinitionSize2043),
(&g_typeDefinitionSize2044),
(&g_typeDefinitionSize2045),
(&g_typeDefinitionSize2046),
(&g_typeDefinitionSize2047),
(&g_typeDefinitionSize2048),
(&g_typeDefinitionSize2049),
(&g_typeDefinitionSize2050),
(&g_typeDefinitionSize2051),
(&g_typeDefinitionSize2052),
(&g_typeDefinitionSize2053),
(&g_typeDefinitionSize2054),
(&g_typeDefinitionSize2055),
(&g_typeDefinitionSize2056),
(&g_typeDefinitionSize2057),
(&g_typeDefinitionSize2058),
(&g_typeDefinitionSize2059),
(&g_typeDefinitionSize2060),
(&g_typeDefinitionSize2061),
(&g_typeDefinitionSize2062),
(&g_typeDefinitionSize2063),
(&g_typeDefinitionSize2064),
(&g_typeDefinitionSize2065),
(&g_typeDefinitionSize2066),
(&g_typeDefinitionSize2067),
(&g_typeDefinitionSize2068),
(&g_typeDefinitionSize2069),
(&g_typeDefinitionSize2070),
(&g_typeDefinitionSize2071),
(&g_typeDefinitionSize2072),
(&g_typeDefinitionSize2073),
(&g_typeDefinitionSize2074),
(&g_typeDefinitionSize2075),
(&g_typeDefinitionSize2076),
(&g_typeDefinitionSize2077),
(&g_typeDefinitionSize2078),
(&g_typeDefinitionSize2079),
(&g_typeDefinitionSize2080),
(&g_typeDefinitionSize2081),
(&g_typeDefinitionSize2082),
(&g_typeDefinitionSize2083),
(&g_typeDefinitionSize2084),
(&g_typeDefinitionSize2085),
(&g_typeDefinitionSize2086),
(&g_typeDefinitionSize2087),
(&g_typeDefinitionSize2088),
(&g_typeDefinitionSize2089),
(&g_typeDefinitionSize2090),
(&g_typeDefinitionSize2091),
(&g_typeDefinitionSize2092),
(&g_typeDefinitionSize2093),
(&g_typeDefinitionSize2094),
(&g_typeDefinitionSize2095),
(&g_typeDefinitionSize2096),
(&g_typeDefinitionSize2097),
(&g_typeDefinitionSize2098),
(&g_typeDefinitionSize2099),
(&g_typeDefinitionSize2100),
(&g_typeDefinitionSize2101),
(&g_typeDefinitionSize2102),
(&g_typeDefinitionSize2103),
(&g_typeDefinitionSize2104),
(&g_typeDefinitionSize2105),
(&g_typeDefinitionSize2106),
(&g_typeDefinitionSize2107),
(&g_typeDefinitionSize2108),
(&g_typeDefinitionSize2109),
(&g_typeDefinitionSize2110),
(&g_typeDefinitionSize2111),
(&g_typeDefinitionSize2112),
(&g_typeDefinitionSize2113),
(&g_typeDefinitionSize2114),
(&g_typeDefinitionSize2115),
(&g_typeDefinitionSize2116),
(&g_typeDefinitionSize2117),
(&g_typeDefinitionSize2118),
(&g_typeDefinitionSize2119),
(&g_typeDefinitionSize2120),
(&g_typeDefinitionSize2121),
(&g_typeDefinitionSize2122),
(&g_typeDefinitionSize2123),
(&g_typeDefinitionSize2124),
(&g_typeDefinitionSize2125),
(&g_typeDefinitionSize2126),
(&g_typeDefinitionSize2127),
(&g_typeDefinitionSize2128),
(&g_typeDefinitionSize2129),
(&g_typeDefinitionSize2130),
(&g_typeDefinitionSize2131),
(&g_typeDefinitionSize2132),
(&g_typeDefinitionSize2133),
(&g_typeDefinitionSize2134),
(&g_typeDefinitionSize2135),
(&g_typeDefinitionSize2136),
(&g_typeDefinitionSize2137),
(&g_typeDefinitionSize2138),
(&g_typeDefinitionSize2139),
(&g_typeDefinitionSize2140),
(&g_typeDefinitionSize2141),
(&g_typeDefinitionSize2142),
(&g_typeDefinitionSize2143),
(&g_typeDefinitionSize2144),
(&g_typeDefinitionSize2145),
(&g_typeDefinitionSize2146),
(&g_typeDefinitionSize2147),
(&g_typeDefinitionSize2148),
(&g_typeDefinitionSize2149),
(&g_typeDefinitionSize2150),
(&g_typeDefinitionSize2151),
(&g_typeDefinitionSize2152),
(&g_typeDefinitionSize2153),
(&g_typeDefinitionSize2154),
(&g_typeDefinitionSize2155),
(&g_typeDefinitionSize2156),
(&g_typeDefinitionSize2157),
(&g_typeDefinitionSize2158),
(&g_typeDefinitionSize2159),
(&g_typeDefinitionSize2160),
(&g_typeDefinitionSize2161),
(&g_typeDefinitionSize2162),
(&g_typeDefinitionSize2163),
(&g_typeDefinitionSize2164),
(&g_typeDefinitionSize2165),
(&g_typeDefinitionSize2166),
(&g_typeDefinitionSize2167),
(&g_typeDefinitionSize2168),
(&g_typeDefinitionSize2169),
(&g_typeDefinitionSize2170),
(&g_typeDefinitionSize2171),
(&g_typeDefinitionSize2172),
(&g_typeDefinitionSize2173),
(&g_typeDefinitionSize2174),
(&g_typeDefinitionSize2175),
(&g_typeDefinitionSize2176),
(&g_typeDefinitionSize2177),
(&g_typeDefinitionSize2178),
(&g_typeDefinitionSize2179),
(&g_typeDefinitionSize2180),
(&g_typeDefinitionSize2181),
(&g_typeDefinitionSize2182),
(&g_typeDefinitionSize2183),
(&g_typeDefinitionSize2184),
(&g_typeDefinitionSize2185),
(&g_typeDefinitionSize2186),
(&g_typeDefinitionSize2187),
(&g_typeDefinitionSize2188),
(&g_typeDefinitionSize2189),
(&g_typeDefinitionSize2190),
(&g_typeDefinitionSize2191),
(&g_typeDefinitionSize2192),
(&g_typeDefinitionSize2193),
(&g_typeDefinitionSize2194),
(&g_typeDefinitionSize2195),
(&g_typeDefinitionSize2196),
(&g_typeDefinitionSize2197),
(&g_typeDefinitionSize2198),
(&g_typeDefinitionSize2199),
(&g_typeDefinitionSize2200),
(&g_typeDefinitionSize2201),
(&g_typeDefinitionSize2202),
(&g_typeDefinitionSize2203),
(&g_typeDefinitionSize2204),
(&g_typeDefinitionSize2205),
(&g_typeDefinitionSize2206),
(&g_typeDefinitionSize2207),
(&g_typeDefinitionSize2208),
(&g_typeDefinitionSize2209),
(&g_typeDefinitionSize2210),
(&g_typeDefinitionSize2211),
(&g_typeDefinitionSize2212),
(&g_typeDefinitionSize2213),
};
| [
"jbumbalough@mail.bradley.edu"
] | jbumbalough@mail.bradley.edu |
2aa1bed0c41ceafbd4810623002036787802d538 | 637c4892287929583bdadd8630d5353dd78dc82c | /vendor/cubelib/src/tools/tools/0031.ReMap2/ReMapParser.cc | 2376f807d283f01fa48a2f901541411339713d1b | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | readex-eu/readex-scorep | 6819f074bba6b4fe9d6de07cf7037d2829cbbccf | 38d7b84145f229b44670656d59f84faa51007ced | refs/heads/master | 2020-03-27T01:04:12.730561 | 2018-08-22T14:42:37 | 2018-08-22T14:42:37 | 145,679,275 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 64,808 | cc | /* A Bison parser, made by GNU Bison 2.7. */
/* Skeleton implementation for Bison LALR(1) parsers in C++
Copyright (C) 2002-2012 Free Software Foundation, Inc.
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 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
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, see <http://www.gnu.org/licenses/>. */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
// Take the name prefix into account.
#define yylex remapparserlex
/* First part of user declarations. */
/* Line 279 of lalr1.cc */
#line 40 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.cc"
#include "ReMapParser.hh"
/* User implementation prologue. */
/* Line 285 of lalr1.cc */
#line 144 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
#include "ReMapDriver.h"
#include "ReMapScanner.h"
#include <cassert>
#include <cstdlib>
#include <cstring>
#include <stdlib.h>
using namespace std;
using namespace cube;
#include "CubeMetric.h"
#include "CubeCnode.h"
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <utility>
#include <string>
#include <vector>
#include "CubeServices.h"
#include "ReMapParseContext.h"
#include "CubeMetric.h"
#include "Cube.h"
#include "CubeCartesian.h"
remapparser::ReMapParser::location_type remapparserlloc;
/* this "connects" the bison parser in the driver to the flex scanner class
* object. it defines the yylex() function call to pull the next token from the
* current lexer object of the driver context. */
#undef yylex
#define yylex ReMapLexer.lex
// Workaround for Sun Studio C++ compilers on Solaris
#if defined( __SVR4 ) && defined( __SUNPRO_CC )
#include <ieeefp.h>
#define isinf( x ) ( fpclass( x ) == FP_NINF || fpclass( x ) == FP_PINF )
#define isnan( x ) isnand( x )
#endif
/* Line 285 of lalr1.cc */
#line 97 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.cc"
# ifndef YY_NULL
# if defined __cplusplus && 201103L <= __cplusplus
# define YY_NULL nullptr
# else
# define YY_NULL 0
# endif
# endif
#ifndef YY_
# if defined YYENABLE_NLS && YYENABLE_NLS
# if ENABLE_NLS
# include <libintl.h> /* FIXME: INFRINGES ON USER NAME SPACE */
# define YY_( msgid ) dgettext( "bison-runtime", msgid )
# endif
# endif
# ifndef YY_
# define YY_( msgid ) msgid
# endif
#endif
#define YYRHSLOC( Rhs, K ) ( ( Rhs )[ K ] )
/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
If N is 0, then set CURRENT to the empty location which ends
the previous symbol: RHS[0] (always defined). */
# ifndef YYLLOC_DEFAULT
# define YYLLOC_DEFAULT( Current, Rhs, N ) \
do { \
if ( N ) \
{ \
( Current ).begin = YYRHSLOC( Rhs, 1 ).begin; \
( Current ).end = YYRHSLOC( Rhs, N ).end; \
} \
else \
{ \
( Current ).begin = ( Current ).end = YYRHSLOC( Rhs, 0 ).end; \
} } \
while ( /*CONSTCOND*/ false )
# endif
/* Suppress unused-variable warnings by "using" E. */
#define YYUSE( e ) ( ( void )( e ) )
/* Enable debugging if requested. */
#if REMAPPARSERDEBUG
/* A pseudo ostream that takes yydebug_ into account. */
# define YYCDEBUG if ( yydebug_ ) ( *yycdebug_ )
# define YY_SYMBOL_PRINT( Title, Type, Value, Location ) \
do { \
if ( yydebug_ ) \
{ \
*yycdebug_ << Title << ' '; \
yy_symbol_print_( ( Type ), ( Value ), ( Location ) ); \
*yycdebug_ << std::endl; \
} \
} while ( false )
# define YY_REDUCE_PRINT( Rule ) \
do { \
if ( yydebug_ ) { \
yy_reduce_print_( Rule ); } \
} while ( false )
# define YY_STACK_PRINT() \
do { \
if ( yydebug_ ) { \
yystack_print_(); } \
} while ( false )
#else /* !REMAPPARSERDEBUG */
# define YYCDEBUG if ( false ) std::cerr
# define YY_SYMBOL_PRINT( Title, Type, Value, Location ) YYUSE( Type )
# define YY_REDUCE_PRINT( Rule ) static_cast<void>( 0 )
# define YY_STACK_PRINT() static_cast<void>( 0 )
#endif /* !REMAPPARSERDEBUG */
#define yyerrok ( yyerrstatus_ = 0 )
#define yyclearin ( yychar = yyempty_ )
#define YYACCEPT goto yyacceptlab
#define YYABORT goto yyabortlab
#define YYERROR goto yyerrorlab
#define YYRECOVERING() ( !!yyerrstatus_ )
namespace remapparser
{
/* Line 353 of lalr1.cc */
#line 192 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.cc"
/* Return YYSTR after stripping away unnecessary quotes and
backslashes, so that it's suitable for yyerror. The heuristic is
that double-quoting is unnecessary unless the string contains an
apostrophe, a comma, or backslash (other than backslash-backslash).
YYSTR is taken from yytname. */
std::string
ReMapParser::yytnamerr_( const char* yystr )
{
if ( *yystr == '"' )
{
std::string yyr = "";
char const* yyp = yystr;
for (;; )
{
switch ( *++yyp )
{
case '\'':
case ',':
goto do_not_strip_quotes;
case '\\':
if ( *++yyp != '\\' )
{
goto do_not_strip_quotes;
}
/* Fall through. */
default:
yyr += *yyp;
break;
case '"':
return yyr;
}
}
do_not_strip_quotes:;
}
return yystr;
}
/// Build a parser object.
ReMapParser::ReMapParser ( class ReMapDriver& driver_yyarg, class ReMapParseContext& parseContext_yyarg, class ReMapScanner& ReMapLexer_yyarg, class cube::Cube& cube_yyarg )
:
#if REMAPPARSERDEBUG
yydebug_( false ),
yycdebug_( &std::cerr ),
#endif
driver( driver_yyarg ),
parseContext( parseContext_yyarg ),
ReMapLexer( ReMapLexer_yyarg ),
cube( cube_yyarg )
{
}
ReMapParser::~ReMapParser ()
{
}
#if REMAPPARSERDEBUG
/*--------------------------------.
| Print this symbol on YYOUTPUT. |
`--------------------------------*/
inline void
ReMapParser::yy_symbol_value_print_( int yytype,
const semantic_type* yyvaluep, const location_type* yylocationp )
{
YYUSE( yylocationp );
YYUSE( yyvaluep );
std::ostream& yyo = debug_stream();
std::ostream& yyoutput = yyo;
YYUSE( yyoutput );
switch ( yytype )
{
default:
break;
}
}
void
ReMapParser::yy_symbol_print_( int yytype,
const semantic_type* yyvaluep, const location_type* yylocationp )
{
*yycdebug_ << ( yytype < yyntokens_ ? "token" : "nterm" )
<< ' ' << yytname_[ yytype ] << " ("
<< *yylocationp << ": ";
yy_symbol_value_print_( yytype, yyvaluep, yylocationp );
*yycdebug_ << ')';
}
#endif
void
ReMapParser::yydestruct_( const char* yymsg,
int yytype, semantic_type* yyvaluep, location_type* yylocationp )
{
YYUSE( yylocationp );
YYUSE( yymsg );
YYUSE( yyvaluep );
if ( yymsg )
{
YY_SYMBOL_PRINT( yymsg, yytype, yyvaluep, yylocationp );
}
switch ( yytype )
{
default:
break;
}
}
void
ReMapParser::yypop_( unsigned int n )
{
yystate_stack_.pop( n );
yysemantic_stack_.pop( n );
yylocation_stack_.pop( n );
}
#if REMAPPARSERDEBUG
std::ostream&
ReMapParser::debug_stream() const
{
return *yycdebug_;
}
void
ReMapParser::set_debug_stream( std::ostream& o )
{
yycdebug_ = &o;
}
ReMapParser::debug_level_type
ReMapParser::debug_level() const
{
return yydebug_;
}
void
ReMapParser::set_debug_level( debug_level_type l )
{
yydebug_ = l;
}
#endif
inline bool
ReMapParser::yy_pact_value_is_default_( int yyvalue )
{
return yyvalue == yypact_ninf_;
}
inline bool
ReMapParser::yy_table_value_is_error_( int yyvalue )
{
return yyvalue == yytable_ninf_;
}
int
ReMapParser::parse()
{
/// Lookahead and lookahead in internal form.
int yychar = yyempty_;
int yytoken = 0;
// State.
int yyn;
int yylen = 0;
int yystate = 0;
// Error handling.
int yynerrs_ = 0;
int yyerrstatus_ = 0;
/// Semantic value of the lookahead.
static semantic_type yyval_default;
semantic_type yylval = yyval_default;
/// Location of the lookahead.
location_type yylloc;
/// The locations where the error started and ended.
location_type yyerror_range[ 3 ];
/// $$.
semantic_type yyval;
/// @$.
location_type yyloc;
int yyresult;
// FIXME: This shoud be completely indented. It is not yet to
// avoid gratuitous conflicts when merging into the master branch.
try
{
YYCDEBUG << "Starting parse" << std::endl;
/* User initialization code. */
/* Line 545 of lalr1.cc */
#line 66 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
// initialize the initial location object
yylloc.begin.filename = yylloc.end.filename = &driver.streamname;
}
/* Line 545 of lalr1.cc */
#line 396 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.cc"
/* Initialize the stacks. The initial state will be pushed in
yynewstate, since the latter expects the semantical and the
location values to have been already stored, initialize these
stacks with a primary value. */
yystate_stack_ = state_stack_type( 0 );
yysemantic_stack_ = semantic_stack_type( 0 );
yylocation_stack_ = location_stack_type( 0 );
yysemantic_stack_.push( yylval );
yylocation_stack_.push( yylloc );
/* New state. */
yynewstate:
yystate_stack_.push( yystate );
YYCDEBUG << "Entering state " << yystate << std::endl;
/* Accept? */
if ( yystate == yyfinal_ )
{
goto yyacceptlab;
}
goto yybackup;
/* Backup. */
yybackup:
/* Try to take a decision without lookahead. */
yyn = yypact_[ yystate ];
if ( yy_pact_value_is_default_( yyn ) )
{
goto yydefault;
}
/* Read a lookahead token. */
if ( yychar == yyempty_ )
{
YYCDEBUG << "Reading a token: ";
yychar = yylex( &yylval, &yylloc );
}
/* Convert token to internal form. */
if ( yychar <= yyeof_ )
{
yychar = yytoken = yyeof_;
YYCDEBUG << "Now at end of input." << std::endl;
}
else
{
yytoken = yytranslate_( yychar );
YY_SYMBOL_PRINT( "Next token is", yytoken, &yylval, &yylloc );
}
/* If the proper action on seeing token YYTOKEN is to reduce or to
detect an error, take that action. */
yyn += yytoken;
if ( yyn < 0 || yylast_ < yyn || yycheck_[ yyn ] != yytoken )
{
goto yydefault;
}
/* Reduce or error. */
yyn = yytable_[ yyn ];
if ( yyn <= 0 )
{
if ( yy_table_value_is_error_( yyn ) )
{
goto yyerrlab;
}
yyn = -yyn;
goto yyreduce;
}
/* Shift the lookahead token. */
YY_SYMBOL_PRINT( "Shifting", yytoken, &yylval, &yylloc );
/* Discard the token being shifted. */
yychar = yyempty_;
yysemantic_stack_.push( yylval );
yylocation_stack_.push( yylloc );
/* Count tokens shifted since error; after three, turn off error
status. */
if ( yyerrstatus_ )
{
--yyerrstatus_;
}
yystate = yyn;
goto yynewstate;
/*-----------------------------------------------------------.
| yydefault -- do the default action for the current state. |
`-----------------------------------------------------------*/
yydefault:
yyn = yydefact_[ yystate ];
if ( yyn == 0 )
{
goto yyerrlab;
}
goto yyreduce;
/*-----------------------------.
| yyreduce -- Do a reduction. |
`-----------------------------*/
yyreduce:
yylen = yyr2_[ yyn ];
/* If YYLEN is nonzero, implement the default value of the action:
`$$ = $1'. Otherwise, use the top of the stack.
Otherwise, the following line sets YYVAL to garbage.
This behavior is undocumented and Bison
users should not rely upon it. */
if ( yylen )
{
yyval = yysemantic_stack_[ yylen - 1 ];
}
else
{
yyval = yysemantic_stack_[ 0 ];
}
// Compute the default @$.
{
slice<location_type, location_stack_type> slice( yylocation_stack_, yylen );
YYLLOC_DEFAULT( yyloc, slice, yylen );
}
// Perform the reduction.
YY_REDUCE_PRINT( yyn );
switch ( yyn )
{
case 2:
/* Line 670 of lalr1.cc */
#line 201 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.metricTypeSeen )
{
error( remapparserlloc, "Multiple metric type attributes defines!" );
}
else
{
parseContext.metricTypeSeen = true;
}
parseContext.metricType = parseContext.str.str();
}
break;
case 3:
/* Line 670 of lalr1.cc */
#line 209 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.metricVizTypeSeen )
{
error( remapparserlloc, "Multiple metric visibilty type attributes defines!" );
}
else
{
parseContext.metricVizTypeSeen = true;
}
parseContext.metricVizType = parseContext.str.str();
}
break;
case 4:
/* Line 670 of lalr1.cc */
#line 217 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.metricConvertibleSeen )
{
error( remapparserlloc, "Multiple metric convertible type attributes defines!" );
}
else
{
parseContext.metricConvertibleSeen = true;
}
parseContext.metricConvertible = true;
}
break;
case 5:
/* Line 670 of lalr1.cc */
#line 223 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.metricConvertibleSeen )
{
error( remapparserlloc, "Multiple metric convertible type attributes defines!" );
}
else
{
parseContext.metricConvertibleSeen = true;
}
parseContext.metricConvertible = false;
}
break;
case 6:
/* Line 670 of lalr1.cc */
#line 233 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.metricCacheableSeen )
{
error( remapparserlloc, "Multiple metric cacheable type attributes defines!" );
}
else
{
parseContext.metricCacheableSeen = true;
}
parseContext.metricCacheable = true;
}
break;
case 7:
/* Line 670 of lalr1.cc */
#line 239 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.metricCacheableSeen )
{
error( remapparserlloc, "Multiple metric cacheable type attributes defines!" );
}
else
{
parseContext.metricCacheableSeen = true;
}
parseContext.metricCacheable = false;
}
break;
case 9:
/* Line 670 of lalr1.cc */
#line 250 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.metricsTitleSeen )
{
error( remapparserlloc, "Multiple metrics titles defined!" );
}
else
{
parseContext.metricsTitleSeen = true;
}
parseContext.metricsTitle = parseContext.str.str();
}
break;
case 11:
/* Line 670 of lalr1.cc */
#line 261 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.cubeplTypeSeen )
{
error( remapparserlloc, "Multiple cubepl type attributes defines!" );
}
else
{
parseContext.cubeplTypeSeen = true;
}
parseContext.rowwise = false;
}
break;
case 15:
/* Line 670 of lalr1.cc */
#line 280 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.expressionAggrPlusSeen )
{
error( remapparserlloc, "Multiple cubepl plus-aggregation attributes defines!" );
}
else
{
parseContext.expressionAggrPlusSeen = true;
}
parseContext.cubeplAggrType = ReMapParseContext::CUBEPL_AGGR_PLUS;
}
break;
case 16:
/* Line 670 of lalr1.cc */
#line 289 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.expressionAggrMinusSeen )
{
error( remapparserlloc, "Multiple cubepl minus-aggregation attributes defines!" );
}
else
{
parseContext.expressionAggrMinusSeen = true;
}
parseContext.cubeplAggrType = ReMapParseContext::CUBEPL_AGGR_MINUS;
}
break;
case 17:
/* Line 670 of lalr1.cc */
#line 299 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.expressionAggrAggrSeen )
{
error( remapparserlloc, "Multiple cubepl aggr-aggregation attributes defines!" );
}
else
{
parseContext.expressionAggrAggrSeen = true;
}
parseContext.cubeplAggrType = ReMapParseContext::CUBEPL_AGGR_AGGR;
}
break;
case 18:
/* Line 670 of lalr1.cc */
#line 312 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.murlSeen )
{
error( remapparserlloc, "Multiple murl tags defined!" );
}
else
{
parseContext.murlSeen = true;
}
parseContext.murl = parseContext.str.str();
}
break;
case 19:
/* Line 670 of lalr1.cc */
#line 321 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.dispnameSeen )
{
error( remapparserlloc, "Multiple disp_name tags defined!" );
}
else
{
parseContext.dispnameSeen = true;
}
parseContext.disp_name = parseContext.str.str();
}
break;
case 20:
/* Line 670 of lalr1.cc */
#line 328 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.uniqnameSeen )
{
error( remapparserlloc, "Multiple uniq_name tags defined!" );
}
else
{
parseContext.uniqnameSeen = true;
}
parseContext.uniq_name = parseContext.str.str();
}
break;
case 21:
/* Line 670 of lalr1.cc */
#line 334 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.dtypeSeen )
{
error( remapparserlloc, "Multiple dtype tags defined!" );
}
else
{
parseContext.dtypeSeen = true;
}
parseContext.dtype = parseContext.str.str();
}
break;
case 22:
/* Line 670 of lalr1.cc */
#line 341 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.uomSeen )
{
error( remapparserlloc, "Multiple uom tags defined!" );
}
else
{
parseContext.uomSeen = true;
}
parseContext.uom = parseContext.str.str();
}
break;
case 23:
/* Line 670 of lalr1.cc */
#line 348 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.valSeen )
{
error( remapparserlloc, "Multiple val tags defined!" );
}
else
{
parseContext.valSeen = true;
}
parseContext.val = parseContext.str.str();
}
break;
case 24:
/* Line 670 of lalr1.cc */
#line 355 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.urlSeen )
{
error( remapparserlloc, "Multiple url tags defined!" );
}
else
{
parseContext.urlSeen = true;
}
parseContext.url = parseContext.str.str();
}
break;
case 25:
/* Line 670 of lalr1.cc */
#line 365 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.expressionSeen )
{
error( remapparserlloc, "Multiple expressions defined!" );
}
else
{
parseContext.expressionSeen = true;
}
parseContext.expression = services::escapeFromXML( parseContext.str.str() );
}
break;
case 26:
/* Line 670 of lalr1.cc */
#line 373 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.expressionInitSeen )
{
error( remapparserlloc, "Multiple expression initializations defined!" );
}
else
{
parseContext.expressionInitSeen = true;
}
parseContext.expressionInit = services::escapeFromXML( parseContext.str.str() );
}
break;
case 27:
/* Line 670 of lalr1.cc */
#line 381 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.cubeplAggrType == ReMapParseContext::CUBEPL_AGGR_PLUS )
{
parseContext.expressionAggrPlus = services::escapeFromXML( parseContext.str.str() );
}
else
if ( parseContext.cubeplAggrType == ReMapParseContext::CUBEPL_AGGR_MINUS )
{
parseContext.expressionAggrMinus = services::escapeFromXML( parseContext.str.str() );
}
else
if ( parseContext.cubeplAggrType == ReMapParseContext::CUBEPL_AGGR_AGGR )
{
parseContext.expressionAggrAggr = services::escapeFromXML( parseContext.str.str() );
}
}
break;
case 28:
/* Line 670 of lalr1.cc */
#line 392 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.descrSeen )
{
error( remapparserlloc, "Multiple descr tags defined!" );
}
else
{
parseContext.descrSeen = true;
}
parseContext.descr = parseContext.str.str();
}
break;
case 37:
/* Line 670 of lalr1.cc */
#line 428 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{ parseContext.murlSeen = false;
cube.def_mirror( services::escapeFromXML( parseContext.murl ) );
}
break;
case 38:
/* Line 670 of lalr1.cc */
#line 429 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{ parseContext.murlSeen = false;
cube.def_mirror( services::escapeFromXML( parseContext.murl ) );
}
break;
case 39:
/* Line 670 of lalr1.cc */
#line 436 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.metricsTitle != "" )
{
cube.set_metrics_title( services::escapeFromXML( parseContext.metricsTitle ) );
}
}
break;
case 43:
/* Line 670 of lalr1.cc */
#line 452 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
//check for attributes
parseContext.idSeen = false;
//check for tags
if ( parseContext.metricTypeSeen )
{
parseContext.metricTypeSeen = false;
}
else
{
parseContext.metricType = "";
}
if ( parseContext.metricVizTypeSeen )
{
parseContext.metricVizTypeSeen = false;
}
else
{
parseContext.metricVizType = "";
}
if ( parseContext.dispnameSeen )
{
parseContext.dispnameSeen = false;
}
else
{
parseContext.disp_name = "";
}
if ( parseContext.uniqnameSeen )
{
parseContext.uniqnameSeen = false;
}
else
{
parseContext.uniq_name = "";
}
if ( parseContext.dtypeSeen )
{
parseContext.dtypeSeen = false;
}
else
{
parseContext.dtype = "";
}
if ( parseContext.uomSeen )
{
parseContext.uomSeen = false;
}
else
{
parseContext.uom = "";
}
if ( parseContext.valSeen )
{
parseContext.valSeen = false;
}
else
{
parseContext.val = "";
}
if ( parseContext.urlSeen )
{
parseContext.urlSeen = false;
}
else
{
parseContext.url = "";
}
if ( parseContext.descrSeen )
{
parseContext.descrSeen = false;
}
else
{
parseContext.descr = "";
}
if ( parseContext.expressionSeen )
{
parseContext.expressionSeen = false;
}
else
{
parseContext.expression = "";
}
if ( parseContext.expressionInitSeen )
{
parseContext.expressionInitSeen = false;
}
else
{
parseContext.expressionInit = "";
}
if ( parseContext.expressionAggrPlusSeen )
{
parseContext.expressionAggrPlusSeen = false;
}
else
{
parseContext.expressionAggrPlus = "";
}
if ( parseContext.expressionAggrMinusSeen )
{
parseContext.expressionAggrMinusSeen = false;
}
else
{
parseContext.expressionAggrMinus = "";
}
if ( parseContext.expressionAggrAggrSeen )
{
parseContext.expressionAggrAggrSeen = false;
}
else
{
parseContext.expressionAggrAggr = "";
}
if ( parseContext.metricConvertibleSeen )
{
parseContext.metricConvertibleSeen = false;
}
else
{
parseContext.metricConvertible = true;
}
if ( parseContext.metricCacheableSeen )
{
parseContext.metricCacheableSeen = false;
}
else
{
parseContext.metricCacheable = true;
}
if ( parseContext.cubeplTypeSeen )
{
parseContext.cubeplTypeSeen = false;
}
else
{
parseContext.rowwise = true;
}
/* while ((int)parseContext.metricVec.size()<=parseContext.id) */
/* parseContext.metricVec.push_back(NULL); */
/* if (parseContext.metricVec[parseContext.id]!=NULL) */
/* error(remapparserlloc,"Re-declared metric!"); */
parseContext.currentMetric =
cube.def_met(
services::escapeFromXML( parseContext.disp_name ),
services::escapeFromXML( parseContext.uniq_name ),
services::escapeFromXML( parseContext.dtype ),
services::escapeFromXML( parseContext.uom ),
services::escapeFromXML( parseContext.val ),
services::escapeFromXML( parseContext.url ),
services::escapeFromXML( parseContext.descr ),
parseContext.currentMetric,
cube::Metric::get_type_of_metric( parseContext.metricType ),
services::escapeFromXML( parseContext.expression ),
services::escapeFromXML( parseContext.expressionInit ),
services::escapeFromXML( parseContext.expressionAggrPlus ),
services::escapeFromXML( parseContext.expressionAggrMinus ),
services::escapeFromXML( parseContext.expressionAggrAggr ),
parseContext.rowwise,
cube::Metric::get_viz_type_of_metric( parseContext.metricVizType ) );
parseContext.currentMetric->setConvertible( parseContext.metricConvertible );
parseContext.currentMetric->setCacheable( parseContext.metricCacheable );
parseContext.metricVec.push_back( parseContext.currentMetric );
}
break;
case 64:
/* Line 670 of lalr1.cc */
#line 554 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
{
if ( parseContext.currentMetric == NULL )
{
error( remapparserlloc, "Metric definitions are not correctly nested!" );
}
parseContext.currentMetric =
( parseContext.currentMetric )->get_parent();
}
break;
/* Line 670 of lalr1.cc */
#line 855 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.cc"
default:
break;
}
/* User semantic actions sometimes alter yychar, and that requires
that yytoken be updated with the new translation. We take the
approach of translating immediately before every use of yytoken.
One alternative is translating here after every semantic action,
but that translation would be missed if the semantic action
invokes YYABORT, YYACCEPT, or YYERROR immediately after altering
yychar. In the case of YYABORT or YYACCEPT, an incorrect
destructor might then be invoked immediately. In the case of
YYERROR, subsequent parser actions might lead to an incorrect
destructor call or verbose syntax error message before the
lookahead is translated. */
YY_SYMBOL_PRINT( "-> $$ =", yyr1_[ yyn ], &yyval, &yyloc );
yypop_( yylen );
yylen = 0;
YY_STACK_PRINT();
yysemantic_stack_.push( yyval );
yylocation_stack_.push( yyloc );
/* Shift the result of the reduction. */
yyn = yyr1_[ yyn ];
yystate = yypgoto_[ yyn - yyntokens_ ] + yystate_stack_[ 0 ];
if ( 0 <= yystate && yystate <= yylast_
&& yycheck_[ yystate ] == yystate_stack_[ 0 ] )
{
yystate = yytable_[ yystate ];
}
else
{
yystate = yydefgoto_[ yyn - yyntokens_ ];
}
goto yynewstate;
/*------------------------------------.
| yyerrlab -- here on detecting error |
`------------------------------------*/
yyerrlab:
/* Make sure we have latest lookahead translation. See comments at
user semantic actions for why this is necessary. */
yytoken = yytranslate_( yychar );
/* If not already recovering from an error, report this error. */
if ( !yyerrstatus_ )
{
++yynerrs_;
if ( yychar == yyempty_ )
{
yytoken = yyempty_;
}
error( yylloc, yysyntax_error_( yystate, yytoken ) );
}
yyerror_range[ 1 ] = yylloc;
if ( yyerrstatus_ == 3 )
{
/* If just tried and failed to reuse lookahead token after an
error, discard it. */
if ( yychar <= yyeof_ )
{
/* Return failure if at end of input. */
if ( yychar == yyeof_ )
{
YYABORT;
}
}
else
{
yydestruct_( "Error: discarding", yytoken, &yylval, &yylloc );
yychar = yyempty_;
}
}
/* Else will try to reuse lookahead token after shifting the error
token. */
goto yyerrlab1;
/*---------------------------------------------------.
| yyerrorlab -- error raised explicitly by YYERROR. |
`---------------------------------------------------*/
yyerrorlab:
/* Pacify compilers like GCC when the user code never invokes
YYERROR and the label yyerrorlab therefore never appears in user
code. */
if ( false )
{
goto yyerrorlab;
}
yyerror_range[ 1 ] = yylocation_stack_[ yylen - 1 ];
/* Do not reclaim the symbols of the rule which action triggered
this YYERROR. */
yypop_( yylen );
yylen = 0;
yystate = yystate_stack_[ 0 ];
goto yyerrlab1;
/*-------------------------------------------------------------.
| yyerrlab1 -- common code for both syntax error and YYERROR. |
`-------------------------------------------------------------*/
yyerrlab1:
yyerrstatus_ = 3; /* Each real token shifted decrements this. */
for (;; )
{
yyn = yypact_[ yystate ];
if ( !yy_pact_value_is_default_( yyn ) )
{
yyn += yyterror_;
if ( 0 <= yyn && yyn <= yylast_ && yycheck_[ yyn ] == yyterror_ )
{
yyn = yytable_[ yyn ];
if ( 0 < yyn )
{
break;
}
}
}
/* Pop the current state because it cannot handle the error token. */
if ( yystate_stack_.height() == 1 )
{
YYABORT;
}
yyerror_range[ 1 ] = yylocation_stack_[ 0 ];
yydestruct_( "Error: popping",
yystos_[ yystate ],
&yysemantic_stack_[ 0 ], &yylocation_stack_[ 0 ] );
yypop_();
yystate = yystate_stack_[ 0 ];
YY_STACK_PRINT();
}
yyerror_range[ 2 ] = yylloc;
// Using YYLLOC is tempting, but would change the location of
// the lookahead. YYLOC is available though.
YYLLOC_DEFAULT( yyloc, yyerror_range, 2 );
yysemantic_stack_.push( yylval );
yylocation_stack_.push( yyloc );
/* Shift the error token. */
YY_SYMBOL_PRINT( "Shifting", yystos_[ yyn ],
&yysemantic_stack_[ 0 ], &yylocation_stack_[ 0 ] );
yystate = yyn;
goto yynewstate;
/* Accept. */
yyacceptlab:
yyresult = 0;
goto yyreturn;
/* Abort. */
yyabortlab:
yyresult = 1;
goto yyreturn;
yyreturn:
if ( yychar != yyempty_ )
{
/* Make sure we have latest lookahead translation. See comments
at user semantic actions for why this is necessary. */
yytoken = yytranslate_( yychar );
yydestruct_( "Cleanup: discarding lookahead", yytoken, &yylval,
&yylloc );
}
/* Do not reclaim the symbols of the rule which action triggered
this YYABORT or YYACCEPT. */
yypop_( yylen );
while ( 1 < yystate_stack_.height() )
{
yydestruct_( "Cleanup: popping",
yystos_[ yystate_stack_[ 0 ] ],
&yysemantic_stack_[ 0 ],
&yylocation_stack_[ 0 ] );
yypop_();
}
return yyresult;
}
catch ( ... )
{
YYCDEBUG << "Exception caught: cleaning lookahead and stack"
<< std::endl;
// Do not try to display the values of the reclaimed symbols,
// as their printer might throw an exception.
if ( yychar != yyempty_ )
{
/* Make sure we have latest lookahead translation. See
comments at user semantic actions for why this is
necessary. */
yytoken = yytranslate_( yychar );
yydestruct_( YY_NULL, yytoken, &yylval, &yylloc );
}
while ( 1 < yystate_stack_.height() )
{
yydestruct_( YY_NULL,
yystos_[ yystate_stack_[ 0 ] ],
&yysemantic_stack_[ 0 ],
&yylocation_stack_[ 0 ] );
yypop_();
}
throw;
}
}
// Generate an error message.
std::string
ReMapParser::yysyntax_error_( int yystate, int yytoken )
{
std::string yyres;
// Number of reported tokens (one for the "unexpected", one per
// "expected").
size_t yycount = 0;
// Its maximum.
enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
// Arguments of yyformat.
char const* yyarg[ YYERROR_VERBOSE_ARGS_MAXIMUM ];
/* There are many possibilities here to consider:
- If this state is a consistent state with a default action, then
the only way this function was invoked is if the default action
is an error action. In that case, don't check for expected
tokens because there are none.
- The only way there can be no lookahead present (in yytoken) is
if this state is a consistent state with a default action.
Thus, detecting the absence of a lookahead is sufficient to
determine that there is no unexpected or expected token to
report. In that case, just report a simple "syntax error".
- Don't assume there isn't a lookahead just because this state is
a consistent state with a default action. There might have
been a previous inconsistent state, consistent state with a
non-default action, or user semantic action that manipulated
yychar.
- Of course, the expected token list depends on states to have
correct lookahead information, and it depends on the parser not
to perform extra reductions after fetching a lookahead from the
scanner and before detecting a syntax error. Thus, state
merging (from LALR or IELR) and default reductions corrupt the
expected token list. However, the list is correct for
canonical LR with one exception: it will still contain any
token that will not be accepted due to an error action in a
later state.
*/
if ( yytoken != yyempty_ )
{
yyarg[ yycount++ ] = yytname_[ yytoken ];
int yyn = yypact_[ yystate ];
if ( !yy_pact_value_is_default_( yyn ) )
{
/* Start YYX at -YYN if negative to avoid negative indexes in
YYCHECK. In other words, skip the first -YYN actions for
this state because they are default actions. */
int yyxbegin = yyn < 0 ? -yyn : 0;
/* Stay within bounds of both yycheck and yytname. */
int yychecklim = yylast_ - yyn + 1;
int yyxend = yychecklim < yyntokens_ ? yychecklim : yyntokens_;
for ( int yyx = yyxbegin; yyx < yyxend; ++yyx )
{
if ( yycheck_[ yyx + yyn ] == yyx && yyx != yyterror_
&& !yy_table_value_is_error_( yytable_[ yyx + yyn ] ) )
{
if ( yycount == YYERROR_VERBOSE_ARGS_MAXIMUM )
{
yycount = 1;
break;
}
else
{
yyarg[ yycount++ ] = yytname_[ yyx ];
}
}
}
}
}
char const* yyformat = YY_NULL;
switch ( yycount )
{
#define YYCASE_( N, S ) \
case N: \
yyformat = S; \
break
YYCASE_( 0, YY_( "syntax error" ) );
YYCASE_( 1, YY_( "syntax error, unexpected %s" ) );
YYCASE_( 2, YY_( "syntax error, unexpected %s, expecting %s" ) );
YYCASE_( 3, YY_( "syntax error, unexpected %s, expecting %s or %s" ) );
YYCASE_( 4, YY_( "syntax error, unexpected %s, expecting %s or %s or %s" ) );
YYCASE_( 5, YY_( "syntax error, unexpected %s, expecting %s or %s or %s or %s" ) );
#undef YYCASE_
}
// Argument number.
size_t yyi = 0;
for ( char const* yyp = yyformat; *yyp; ++yyp )
{
if ( yyp[ 0 ] == '%' && yyp[ 1 ] == 's' && yyi < yycount )
{
yyres += yytnamerr_( yyarg[ yyi++ ] );
++yyp;
}
else
{
yyres += *yyp;
}
}
return yyres;
}
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
STATE-NUM. */
const signed char ReMapParser::yypact_ninf_ = -44;
const signed char
ReMapParser::yypact_[] =
{
-19, -43, -37, 9, -9, -44, 8, 7, -25, -8,
-44, -44, -44, -44, 22, -10, -44, -7, -25, -44,
-26, -6, -44, -44, -44, -44, 32, 33, 26, 28,
-44, -44, -44, -44, 29, -26, -44, -44, -44, -44,
-44, -44, -44, -44, -44, -44, -14, -44, -12, 24,
-11, 20, 21, 17, 16, 18, 14, 13, -44, -44,
-44, -44, -44, -44, -44, -44, -44, -44, -44, -14,
-44, 47, 41, -44, 19, 42, -44, -44, -44, -44,
-44, -44, -44, -44, -44, -44, -44, -44, 38, -44,
-44, -44, 35, -44, -44
};
/* YYDEFACT[S] -- default reduction number in state S. Performed when
YYTABLE doesn't specify something else to do. Zero means the
default is an error. */
const unsigned char
ReMapParser::yydefact_[] =
{
0, 8, 32, 0, 0, 30, 0, 0, 35, 0,
33, 1, 29, 9, 0, 0, 37, 0, 36, 31,
44, 0, 40, 18, 34, 38, 0, 0, 0, 0,
46, 47, 48, 49, 0, 44, 64, 39, 41, 42,
2, 3, 5, 4, 7, 6, 50, 45, 10, 0,
0, 0, 0, 0, 0, 0, 0, 0, 54, 55,
56, 57, 58, 59, 61, 62, 63, 60, 43, 51,
52, 0, 0, 26, 0, 0, 12, 13, 14, 19,
20, 21, 22, 23, 24, 28, 53, 11, 0, 15,
16, 17, 0, 25, 27
};
/* YYPGOTO[NTERM-NUM]. */
const signed char
ReMapParser::yypgoto_[] =
{
-44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
-44, 37, -44, -44, -44, -44, -44, -44, -44, -44,
-44, -44, -44, -44, -44, -44, -44, -44, 52, -44,
36, 23, -44, -44, -44, -5, -44
};
/* YYDEFGOTO[NTERM-NUM]. */
const signed char
ReMapParser::yydefgoto_[] =
{
-1, 30, 31, 32, 33, 7, 72, 75, 76, 77,
78, 16, 58, 59, 60, 61, 62, 63, 64, 65,
66, 67, 3, 4, 9, 10, 17, 18, 5, 21,
22, 34, 35, 68, 69, 70, 39
};
/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
positive, shift that token. If negative, reduce the rule which
number is the opposite. If YYTABLE_NINF_, syntax error. */
const signed char ReMapParser::yytable_ninf_ = -1;
const unsigned char
ReMapParser::yytable_[] =
{
48, 1, 49, 6, 50, 8, 20, 36, 51, 11,
52, 1, 53, 13, 54, 37, 55, 14, 56, 15,
57, 2, 26, 27, 28, 29, 89, 90, 91, 42,
43, 44, 45, 19, 20, 23, 24, 40, 41, 46,
71, 73, 74, 79, 81, 82, 80, 84, 85, 83,
87, 88, 92, 93, 94, 25, 12, 38, 47, 0,
0, 0, 0, 0, 86
};
/* YYCHECK. */
const signed char
ReMapParser::yycheck_[] =
{
14, 20, 16, 46, 18, 42, 12, 13, 22, 0,
24, 20, 26, 5, 28, 21, 30, 10, 32, 44,
34, 40, 48, 49, 50, 51, 7, 8, 9, 3,
4, 3, 4, 41, 12, 45, 43, 5, 5, 10,
52, 17, 53, 23, 27, 29, 25, 33, 35, 31,
3, 10, 10, 15, 19, 18, 4, 21, 35, -1,
-1, -1, -1, -1, 69
};
/* STOS_[STATE-NUM] -- The (internal number of the) accessing
symbol of state STATE-NUM. */
const unsigned char
ReMapParser::yystos_[] =
{
0, 20, 40, 76, 77, 82, 46, 59, 42, 78,
79, 0, 82, 5, 10, 44, 65, 80, 81, 41,
12, 83, 84, 45, 43, 65, 48, 49, 50, 51,
55, 56, 57, 58, 85, 86, 13, 21, 84, 90,
5, 5, 3, 4, 3, 4, 10, 85, 14, 16,
18, 22, 24, 26, 28, 30, 32, 34, 66, 67,
68, 69, 70, 71, 72, 73, 74, 75, 87, 88,
89, 52, 60, 17, 53, 61, 62, 63, 64, 23,
25, 27, 29, 31, 33, 35, 89, 3, 10, 7,
8, 9, 10, 15, 19
};
#if REMAPPARSERDEBUG
/* TOKEN_NUMBER_[YYLEX-NUM] -- Internal symbol number corresponding
to YYLEX-NUM. */
const unsigned short int
ReMapParser::yytoken_number_[] =
{
0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
295, 296, 297, 298, 299, 300, 301, 302, 303, 304,
305, 306, 307, 308
};
#endif
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
const unsigned char
ReMapParser::yyr1_[] =
{
0, 54, 55, 56, 57, 57, 58, 58, 59, 59,
60, 60, 61, 61, 61, 62, 63, 64, 65, 66,
67, 68, 69, 70, 71, 72, 73, 74, 75, 76,
76, 77, 78, 78, 79, 80, 80, 81, 81, 82,
83, 83, 83, 84, 85, 85, 86, 86, 86, 86,
87, 87, 88, 88, 89, 89, 89, 89, 89, 89,
89, 89, 89, 89, 90
};
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
const unsigned char
ReMapParser::yyr2_[] =
{
0, 2, 2, 2, 2, 2, 2, 2, 0, 2,
0, 2, 1, 1, 1, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 4, 2, 4, 2, 2,
1, 3, 0, 1, 3, 0, 1, 1, 2, 5,
1, 2, 2, 4, 0, 2, 1, 1, 1, 1,
0, 1, 1, 2, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1
};
/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
First, the terminals, then, starting at \a yyntokens_, nonterminals. */
const char*
const ReMapParser::yytname_[] =
{
"\"end of file\"", "error", "$undefined", "\"false\"", "\"true\"",
"\"attribute value\"", "\"error\"", "\"plus\"", "\"minus\"", "\"aggr\"",
"\">\"", "\"/>\"", "\"<metric\"", "\"</metric>\"", "\"<cubepl\"",
"\"</cubepl>\"", "\"<cubeplinit>\"", "\"</cubeplinit>\"",
"\"<cubeplaggr\"", "\"</cubeplaggr>\"", "\"<metrics\"", "\"</metrics>\"",
"\"<disp_name>\"", "\"</disp_name>\"", "\"<uniq_name>\"",
"\"</uniq_name>\"", "\"<dtype>\"", "\"</dtype>\"", "\"<uom>\"",
"\"</uom>\"", "\"<val>\"", "\"</val>\"", "\"<url>\"", "\"</url>\"",
"\"<descr>\"", "\"</descr>\"", "\"<program\"", "\"</program>\"",
"\"<name>\"", "\"</name>\"", "\"<doc>\"", "\"</doc>\"", "\"<mirrors>\"",
"\"</mirrors>\"", "\"<murl>\"", "\"</murl>\"",
"\"attribute name title\"", "\"attribute name metricId\"",
"\"attribute name type\"", "\"attribute name viztype\"",
"\"attribute name convertible\"", "\"attribute name cacheable\"",
"\"attribute name rowwise\"", "\"attribute name cubeplaggrtype\"",
"$accept", "metric_type_attr", "metric_viz_type_attr",
"metric_convertible_attr", "metric_cacheable_attr", "metrics_title_attr",
"expression_attr", "expression_aggr_attr", "expression_aggr_attr_plus",
"expression_aggr_attr_minus", "expression_aggr_attr_aggr", "murl_tag",
"disp_name_tag", "uniq_name_tag", "dtype_tag", "uom_tag", "val_tag",
"url_tag", "expression_tag", "expression_init_tag",
"expression_aggr_tag", "descr_tag", "document", "doc_tag",
"mirrors_tag_opt", "mirrors_tag", "murl_tags_opt", "murl_tags",
"metrics_tag", "metric_tag", "metric_begin", "metric_attrs",
"metric_attr", "tags_of_metric_opt", "tags_of_metric", "tag_of_metric",
"metric_end", YY_NULL
};
#if REMAPPARSERDEBUG
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
const ReMapParser::rhs_number_type
ReMapParser::yyrhs_[] =
{
76, 0, -1, 48, 5, -1, 49, 5, -1, 50,
4, -1, 50, 3, -1, 51, 4, -1, 51, 3,
-1, -1, 46, 5, -1, -1, 52, 3, -1, 62,
-1, 63, -1, 64, -1, 53, 7, -1, 53, 8,
-1, 53, 9, -1, 44, 45, -1, 22, 23, -1,
24, 25, -1, 26, 27, -1, 28, 29, -1, 30,
31, -1, 32, 33, -1, 14, 60, 10, 15, -1,
16, 17, -1, 18, 61, 10, 19, -1, 34, 35,
-1, 77, 82, -1, 82, -1, 40, 78, 41, -1,
-1, 79, -1, 42, 80, 43, -1, -1, 81, -1,
65, -1, 81, 65, -1, 20, 59, 10, 83, 21,
-1, 84, -1, 83, 84, -1, 83, 90, -1, 12,
85, 10, 87, -1, -1, 86, 85, -1, 55, -1,
56, -1, 57, -1, 58, -1, -1, 88, -1, 89,
-1, 88, 89, -1, 66, -1, 67, -1, 68, -1,
69, -1, 70, -1, 71, -1, 75, -1, 72, -1,
73, -1, 74, -1, 13, -1
};
/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
YYRHS. */
const unsigned char
ReMapParser::yyprhs_[] =
{
0, 0, 3, 6, 9, 12, 15, 18, 21, 22,
25, 26, 29, 31, 33, 35, 38, 41, 44, 47,
50, 53, 56, 59, 62, 65, 70, 73, 78, 81,
84, 86, 90, 91, 93, 97, 98, 100, 102, 105,
111, 113, 116, 119, 124, 125, 128, 130, 132, 134,
136, 137, 139, 141, 144, 146, 148, 150, 152, 154,
156, 158, 160, 162, 164
};
/* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
const unsigned short int
ReMapParser::yyrline_[] =
{
0, 201, 201, 209, 217, 223, 233, 239, 248, 250,
259, 261, 272, 274, 276, 280, 289, 299, 312, 321,
328, 334, 341, 348, 355, 365, 373, 381, 392, 405,
407, 413, 415, 416, 420, 423, 424, 428, 429, 435,
444, 445, 446, 452, 521, 522, 525, 526, 527, 528,
531, 532, 536, 537, 541, 542, 543, 544, 545, 546,
547, 548, 549, 550, 554
};
// Print the state stack on the debug stream.
void
ReMapParser::yystack_print_()
{
*yycdebug_ << "Stack now";
for ( state_stack_type::const_iterator i = yystate_stack_.begin();
i != yystate_stack_.end(); ++i )
{
*yycdebug_ << ' ' << *i;
}
*yycdebug_ << std::endl;
}
// Report on the debug stream that the rule \a yyrule is going to be reduced.
void
ReMapParser::yy_reduce_print_( int yyrule )
{
unsigned int yylno = yyrline_[ yyrule ];
int yynrhs = yyr2_[ yyrule ];
/* Print the symbols being reduced, and their result. */
*yycdebug_ << "Reducing stack by rule " << yyrule - 1
<< " (line " << yylno << "):" << std::endl;
/* The symbols being reduced. */
for ( int yyi = 0; yyi < yynrhs; yyi++ )
{
YY_SYMBOL_PRINT( " $" << yyi + 1 << " =",
yyrhs_[ yyprhs_[ yyrule ] + yyi ],
&( yysemantic_stack_[ ( yynrhs ) - ( yyi + 1 ) ] ),
&( yylocation_stack_[ ( yynrhs ) - ( yyi + 1 ) ] ) );
}
}
#endif // REMAPPARSERDEBUG
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
ReMapParser::token_number_type
ReMapParser::yytranslate_( int t )
{
static
const token_number_type
translate_table[] =
{
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
45, 46, 47, 48, 49, 50, 51, 52, 53
};
if ( ( unsigned int )t <= yyuser_token_number_max_ )
{
return translate_table[ t ];
}
else
{
return yyundef_token_;
}
}
const int ReMapParser::yyeof_ = 0;
const int ReMapParser::yylast_ = 64;
const int ReMapParser::yynnts_ = 37;
const int ReMapParser::yyempty_ = -2;
const int ReMapParser::yyfinal_ = 11;
const int ReMapParser::yyterror_ = 1;
const int ReMapParser::yyerrcode_ = 256;
const int ReMapParser::yyntokens_ = 54;
const unsigned int ReMapParser::yyuser_token_number_max_ = 308;
const ReMapParser::token_number_type ReMapParser::yyundef_token_ = 2;
} // remapparser
/* Line 1141 of lalr1.cc */
#line 1471 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.cc"
/* Line 1142 of lalr1.cc */
#line 563 "../../build-frontend/../src/tools/tools/0031.ReMap2/ReMapParser.yy"
/*** Additional Code ***/
void
remapparser::ReMapParser::error( const ReMapParser::location_type& l,
const std::string& m )
{
if ( strstr( m.c_str(), "expecting <?xml" ) != NULL )
{
driver.error_just_message( "The cube file is probably empty or filled with wrong content. The file has ended before the header of cube started. \n" );
}
if ( strstr( m.c_str(), " expecting <metric" ) != NULL )
{
driver.error_just_message( "The cube file doesn't contain any information about metric dimension." );
}
driver.error( l, m );
}
| [
"robert.schoene@tu-dresden.de"
] | robert.schoene@tu-dresden.de |
7c00da8bd8299e401e65e616a202d04e1cfd6b0d | dd5b5e5ee5476d1eeffc4987e1aeec94e047e6dd | /testCase/cavity/0.0955/U | 371e219954d9e6963efd6f705f9b664c1ed7f72f | [] | no_license | Cxb1993/IBM-3D | 5d4feca0321090d570089259a558585a67a512ec | 2fceceb2abf1fc9e80cb2c449cc14a8d54e41b89 | refs/heads/master | 2020-05-24T01:14:02.684839 | 2018-10-23T13:15:20 | 2018-10-23T13:15:20 | 186,721,487 | 1 | 0 | null | 2019-05-15T00:39:55 | 2019-05-15T00:39:55 | null | UTF-8 | C++ | false | false | 1,957,690 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1806 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "0.0955";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField nonuniform List<vector>
64000
(
(-0.0103928 -0.0123348 -0.00860728)
(0.0159261 -0.0119496 -0.00612281)
(0.022555 -0.00408299 0.000206986)
(0.027477 -0.00336761 0.00104782)
(0.0288668 -0.00237101 0.00138067)
(0.0294026 -0.0028103 0.0019181)
(0.0291366 -0.00379955 0.00206673)
(0.0262269 -0.00423617 0.00255176)
(0.0251298 -0.00518015 0.00384751)
(0.0186854 -0.00508794 0.00381253)
(0.0127808 -0.00541783 0.0047606)
(0.00150926 -0.00744313 0.00725464)
(-0.0147253 -0.0124232 0.00572542)
(-0.0395866 -0.0172999 0.00376756)
(-0.0665977 -0.0179475 0.00453161)
(-0.102954 -0.0173961 0.00235992)
(-0.129235 -7.40718e-05 0.00120764)
(-0.174555 -0.00447945 -0.00306289)
(-0.171259 -0.0093849 0.00441378)
(-0.233131 -0.0268929 -0.0141944)
(-0.203915 -0.0201147 -0.0201979)
(-0.100972 -0.0223064 -0.0379677)
(-0.108726 -0.00680606 -0.024742)
(-0.10768 -0.0023093 -0.0371276)
(-0.126659 0.00374742 -0.048208)
(-0.121026 0.0118553 -0.0579941)
(-0.109721 0.0220204 -0.0625833)
(-0.0731714 0.032584 -0.0591086)
(-0.0388615 0.0398305 -0.0544146)
(0.00484482 0.0508882 -0.0406567)
(0.0492293 0.0489574 -0.0321476)
(0.0862571 0.0388248 -0.0253082)
(0.102451 0.0286414 -0.0127875)
(0.0997054 0.0148594 -0.00546771)
(0.0861278 0.00619781 0.000799878)
(0.0680781 -0.00176944 0.00339276)
(0.0494044 -0.0058597 0.00430416)
(0.0295469 -0.00534337 0.00511487)
(0.015749 -0.00393628 0.00549583)
(0.00210869 -0.00255237 0.00351197)
(-0.00743935 0.00255368 -0.00502682)
(0.00908339 -0.0166025 -0.00472481)
(0.0248009 -0.0107023 -0.00211313)
(0.0356931 -0.00701986 -0.00103803)
(0.0415429 -0.00243621 -0.00151905)
(0.0418795 -0.000624472 -0.00182863)
(0.0408301 0.00327569 -0.00340614)
(0.0340714 0.00482841 -0.00295277)
(0.0269509 0.00987075 -0.00753188)
(0.0101952 0.0160566 -0.00379532)
(-0.0126915 0.0244915 -0.00842947)
(-0.0496506 0.0326596 0.000866652)
(-0.0955588 0.0422538 -0.00408145)
(-0.147989 0.0619144 -0.00682041)
(-0.205659 0.075309 -0.0115169)
(-0.263239 0.0842764 -0.0181366)
(-0.339093 0.0928802 -0.0442882)
(-0.444894 0.094878 -0.0591519)
(-0.489335 0.101313 -0.0767649)
(-0.576552 0.1012 -0.0974626)
(-0.528866 0.129468 -0.0934041)
(-0.397183 0.144566 -0.125437)
(-0.38658 0.190577 -0.134606)
(-0.372034 0.213878 -0.145223)
(-0.36436 0.238237 -0.157163)
(-0.325568 0.259496 -0.163519)
(-0.278024 0.280438 -0.164983)
(-0.205565 0.295583 -0.153363)
(-0.130898 0.301867 -0.133663)
(-0.0573725 0.305369 -0.110012)
(0.0059668 0.290649 -0.0771036)
(0.0692514 0.259812 -0.0466131)
(0.107191 0.212325 -0.0391303)
(0.119676 0.160259 -0.0262325)
(0.114861 0.109982 -0.0129758)
(0.0964941 0.0702657 -0.00547448)
(0.0773878 0.0417953 -0.00114637)
(0.0531946 0.0268937 -0.000179701)
(0.0317829 0.0170324 0.00121272)
(0.00768037 0.00862055 0.00122543)
(-0.000395121 -0.00452188 0.00149357)
(0.0156296 -0.0223384 -0.00210277)
(0.032858 -0.01719 -0.00314786)
(0.0439002 -0.00513575 -0.00446694)
(0.0462594 0.00424748 -0.00606787)
(0.0444184 0.0153176 -0.00737929)
(0.0375294 0.0302217 -0.00842167)
(0.0232495 0.0442657 -0.0100008)
(0.00805258 0.068436 -0.00168908)
(-0.021605 0.089807 -0.00496386)
(-0.0592555 0.11625 -0.008214)
(-0.111769 0.148572 -0.0131911)
(-0.165584 0.18224 -0.0177762)
(-0.24357 0.211275 -0.0326512)
(-0.338283 0.231646 -0.036144)
(-0.434547 0.2456 -0.0426532)
(-0.517082 0.250587 -0.0595714)
(-0.605373 0.270111 -0.0785728)
(-0.644831 0.301153 -0.0964286)
(-0.717162 0.336595 -0.11597)
(-0.655163 0.374706 -0.103969)
(-0.496764 0.405674 -0.124047)
(-0.462917 0.462604 -0.124724)
(-0.437133 0.49267 -0.12338)
(-0.42046 0.524713 -0.126662)
(-0.377311 0.545921 -0.125291)
(-0.329277 0.560365 -0.120638)
(-0.262829 0.56316 -0.10524)
(-0.197498 0.553067 -0.0829195)
(-0.131154 0.53255 -0.0595725)
(-0.0761799 0.500357 -0.040038)
(-0.0311583 0.452712 -0.027988)
(0.00194177 0.380228 -0.0176147)
(0.0243272 0.307398 -0.00891575)
(0.0382709 0.228146 -0.010695)
(0.0447715 0.163547 -0.0110025)
(0.0456317 0.116359 -0.00741114)
(0.0370404 0.0795442 -0.00523254)
(0.0264666 0.0534038 -0.00164155)
(0.00765878 0.0272872 0.00104052)
(0.000972536 -0.0086373 0.00188426)
(0.0179845 -0.0234911 -0.00136303)
(0.0389915 -0.0108834 -0.00397572)
(0.0467572 0.00587687 -0.00720224)
(0.0449328 0.0297864 -0.00792899)
(0.041217 0.054019 -0.00938405)
(0.0286524 0.0891867 -0.00922493)
(0.0106503 0.121981 -0.00589366)
(-0.0157883 0.166835 -0.0106616)
(-0.0613619 0.206635 -0.0130303)
(-0.106972 0.25065 -0.0174883)
(-0.171215 0.288388 -0.0250764)
(-0.253474 0.317605 -0.027853)
(-0.343838 0.334538 -0.0294721)
(-0.428995 0.356093 -0.0323586)
(-0.508127 0.379397 -0.0368441)
(-0.575101 0.410262 -0.0522954)
(-0.650298 0.439262 -0.0625345)
(-0.675949 0.48221 -0.0723008)
(-0.73503 0.528271 -0.0781398)
(-0.661939 0.561111 -0.0454329)
(-0.482395 0.583421 -0.0456833)
(-0.434664 0.625181 -0.039446)
(-0.408903 0.630995 -0.0295005)
(-0.393183 0.644181 -0.0276877)
(-0.359056 0.64416 -0.0228388)
(-0.32272 0.636812 -0.0193783)
(-0.272896 0.617628 -0.0115899)
(-0.225186 0.59172 0.000401241)
(-0.179306 0.558458 0.00764213)
(-0.148566 0.517053 0.0124556)
(-0.122762 0.471889 0.0111835)
(-0.0987893 0.411968 0.00524942)
(-0.0760618 0.349888 -0.00267117)
(-0.0522939 0.270514 -0.00615345)
(-0.0220217 0.203176 -0.0108277)
(-0.00101888 0.148662 -0.0111036)
(0.00782443 0.112527 -0.00832325)
(0.0161055 0.0795456 -0.00380954)
(0.00604988 0.039987 0.000778264)
(0.00112121 -0.00908086 0.000536334)
(0.0237225 -0.0127074 -0.00409961)
(0.0462702 0.00408049 -0.00803299)
(0.0552565 0.037963 -0.00896403)
(0.0528198 0.0750635 -0.00872356)
(0.0471457 0.120616 -0.0158253)
(0.029503 0.175125 -0.0138757)
(0.00184048 0.23465 -0.00666713)
(-0.0307188 0.290798 -0.00819142)
(-0.083489 0.338344 -0.0104246)
(-0.142592 0.376323 -0.0133562)
(-0.220297 0.397007 -0.01599)
(-0.294091 0.419752 -0.0165646)
(-0.368365 0.44446 -0.0217687)
(-0.439704 0.474863 -0.0215512)
(-0.507632 0.507772 -0.0221283)
(-0.561899 0.536711 -0.0265431)
(-0.618604 0.571265 -0.0246302)
(-0.624573 0.620498 -0.0185901)
(-0.66873 0.668098 -0.0263841)
(-0.596939 0.695324 0.00646277)
(-0.411141 0.701906 0.0170188)
(-0.359277 0.714244 0.0288616)
(-0.34301 0.686227 0.0365987)
(-0.339429 0.669648 0.0364389)
(-0.324532 0.642957 0.0421931)
(-0.30805 0.611192 0.043286)
(-0.276849 0.573974 0.0471834)
(-0.249836 0.532645 0.0403428)
(-0.223967 0.492421 0.0319032)
(-0.204528 0.446947 0.0216787)
(-0.194214 0.413403 0.0146246)
(-0.185133 0.375089 0.00720394)
(-0.177338 0.344046 -0.00481875)
(-0.153989 0.280165 -0.0142846)
(-0.104522 0.210825 -0.0150872)
(-0.0529955 0.162939 -0.0142355)
(-0.0174561 0.132622 -0.0120265)
(0.00254076 0.0986463 -0.00656209)
(0.00316705 0.050242 0.000777341)
(0.00586088 -0.00341374 -0.000138849)
(0.028631 0.00247581 -0.00690877)
(0.0599787 0.0291647 -0.00672675)
(0.0718482 0.0805447 -0.0102672)
(0.0666058 0.138206 -0.0153022)
(0.0633027 0.201525 -0.0191458)
(0.0471634 0.276305 -0.0144507)
(0.0140269 0.331281 -0.00607125)
(-0.0377057 0.376572 -0.00610147)
(-0.106928 0.411169 -0.00838337)
(-0.175834 0.441294 -0.0105047)
(-0.240925 0.468801 -0.0106487)
(-0.299321 0.502618 -0.00897296)
(-0.357578 0.530936 -0.00586655)
(-0.406545 0.561096 -0.000347)
(-0.45904 0.589837 0.00548897)
(-0.491106 0.620226 0.00891814)
(-0.524809 0.651272 0.00859766)
(-0.524233 0.700614 0.00973863)
(-0.555878 0.736899 0.00951798)
(-0.487511 0.760295 0.0406398)
(-0.319499 0.712815 0.0538039)
(-0.284617 0.694923 0.0647131)
(-0.290218 0.635817 0.075591)
(-0.301228 0.59603 0.077026)
(-0.305421 0.552914 0.0762267)
(-0.3049 0.510525 0.0734448)
(-0.29384 0.468023 0.0667955)
(-0.280058 0.420915 0.0646741)
(-0.268277 0.381896 0.043104)
(-0.258788 0.338016 0.0314619)
(-0.247607 0.307142 0.0160427)
(-0.23327 0.280573 0.00559764)
(-0.239022 0.268723 -0.00612511)
(-0.241498 0.244249 -0.0176708)
(-0.176005 0.195322 -0.0151957)
(-0.0936324 0.164064 -0.0158653)
(-0.0409903 0.138371 -0.0124127)
(-0.00511582 0.106769 -0.00735571)
(0.00222383 0.0541556 0.00129676)
(0.00623497 0.00235482 -0.00134024)
(0.0378278 0.0161326 -0.0102501)
(0.0807399 0.0566217 -0.0106747)
(0.105135 0.111647 -0.01289)
(0.100611 0.177888 -0.0182054)
(0.0977188 0.250261 -0.020916)
(0.0608029 0.319077 -0.0147442)
(-0.00214825 0.346873 0.000492436)
(-0.0534447 0.390979 -0.00450812)
(-0.11013 0.428673 -0.00513292)
(-0.158118 0.473393 -0.00510688)
(-0.208396 0.516159 -0.00312295)
(-0.254255 0.556718 0.000470319)
(-0.301103 0.590451 0.00529166)
(-0.340324 0.624001 0.0136946)
(-0.375501 0.64905 0.0189153)
(-0.396939 0.677341 0.0254076)
(-0.415984 0.689708 0.0286584)
(-0.402137 0.715278 0.0275508)
(-0.42286 0.727845 0.0177077)
(-0.415387 0.747986 0.0365884)
(-0.280367 0.639958 0.0570609)
(-0.232537 0.593689 0.0620168)
(-0.255762 0.530278 0.0731354)
(-0.277589 0.489011 0.0726241)
(-0.29889 0.450389 0.0714688)
(-0.314453 0.415592 0.0673482)
(-0.320168 0.380649 0.0596712)
(-0.319464 0.343532 0.0461264)
(-0.319914 0.308889 0.0298046)
(-0.316803 0.275536 0.0162998)
(-0.308652 0.247215 0.00320973)
(-0.293589 0.22644 -0.00460648)
(-0.287321 0.210882 -0.0121067)
(-0.28997 0.221105 -0.0204053)
(-0.228042 0.196056 -0.0217507)
(-0.128327 0.170329 -0.0225571)
(-0.0563032 0.149762 -0.017446)
(-0.0103066 0.11638 -0.0112761)
(0.00219413 0.0596243 -0.000446006)
(0.0071481 0.0086989 -0.00397606)
(0.0454325 0.0349789 -0.0140103)
(0.0992496 0.0838819 -0.01404)
(0.125546 0.139988 -0.0120156)
(0.128214 0.199419 -0.013)
(0.118286 0.272267 -0.0145821)
(0.0581327 0.306123 -0.00467906)
(0.00725851 0.351927 0.00373113)
(-0.0228421 0.398145 -0.000718845)
(-0.0724839 0.452694 0.000931368)
(-0.113804 0.497821 0.00139294)
(-0.156228 0.536421 0.00792392)
(-0.19236 0.570604 0.013559)
(-0.22428 0.598151 0.0220023)
(-0.250512 0.624998 0.0264054)
(-0.279529 0.640414 0.0309653)
(-0.296763 0.653223 0.0340732)
(-0.314846 0.650888 0.0334481)
(-0.311189 0.648254 0.0307435)
(-0.323815 0.621161 0.0152611)
(-0.364392 0.628659 0.0180144)
(-0.281696 0.543239 0.037631)
(-0.217506 0.466412 0.0403107)
(-0.243039 0.424575 0.0514081)
(-0.27288 0.390067 0.0543617)
(-0.30483 0.364618 0.0552546)
(-0.330683 0.339347 0.0558853)
(-0.34812 0.312848 0.0480601)
(-0.358841 0.285307 0.0379714)
(-0.365775 0.254768 0.0155058)
(-0.367039 0.223072 0.00608969)
(-0.357198 0.19797 -0.0033861)
(-0.3418 0.185061 -0.0106884)
(-0.322433 0.174865 -0.0144796)
(-0.328593 0.195778 -0.0239436)
(-0.277952 0.199866 -0.0216727)
(-0.162597 0.176105 -0.0231891)
(-0.0749608 0.159381 -0.017965)
(-0.0154912 0.123938 -0.0108576)
(0.00314027 0.0638111 0.000362423)
(0.00569832 0.0227967 -0.00683151)
(0.0538815 0.0668545 -0.0180271)
(0.11967 0.123077 -0.0195735)
(0.152173 0.179152 -0.0140865)
(0.160733 0.240102 -0.0145372)
(0.132105 0.294228 -0.0148378)
(0.0774954 0.326965 -0.00495727)
(0.0369547 0.386423 0.00273794)
(0.0109704 0.42411 0.00908835)
(-0.0223454 0.465746 0.00842222)
(-0.0615669 0.502155 0.0128216)
(-0.0929512 0.53097 0.0180137)
(-0.11881 0.553987 0.025948)
(-0.14334 0.568175 0.0321871)
(-0.166419 0.573931 0.0346229)
(-0.191997 0.570652 0.0352061)
(-0.213324 0.565351 0.0340203)
(-0.239661 0.548316 0.0293961)
(-0.26005 0.53475 0.0233109)
(-0.274078 0.4991 0.00961879)
(-0.325412 0.490383 -0.000755276)
(-0.304548 0.457602 0.0121327)
(-0.235008 0.362412 0.0208813)
(-0.241258 0.345179 0.0276982)
(-0.276681 0.320794 0.0351814)
(-0.313088 0.305584 0.0391224)
(-0.348449 0.288031 0.0440862)
(-0.373554 0.266078 0.0393632)
(-0.394333 0.242743 0.0232473)
(-0.411243 0.209356 0.00687968)
(-0.412967 0.184061 -0.00277495)
(-0.399635 0.160816 -0.00942388)
(-0.383813 0.147352 -0.0140608)
(-0.354517 0.14736 -0.0234026)
(-0.343188 0.160091 -0.026621)
(-0.308195 0.195564 -0.030592)
(-0.198429 0.179629 -0.0268682)
(-0.0903499 0.169499 -0.0251701)
(-0.0206284 0.134687 -0.0140611)
(0.00406274 0.0708053 -0.0018556)
(0.00776147 0.038845 -0.00940087)
(0.0630341 0.104709 -0.0256657)
(0.138481 0.165128 -0.0246023)
(0.177669 0.219187 -0.0152624)
(0.181256 0.274072 -0.0161177)
(0.151233 0.307902 -0.0157565)
(0.108949 0.353701 -0.00617646)
(0.0768344 0.401288 0.00531551)
(0.0472485 0.440886 0.0124093)
(0.0220484 0.467415 0.0231876)
(-0.0028925 0.491585 0.0211724)
(-0.0320212 0.505217 0.0310345)
(-0.0556506 0.512531 0.0365536)
(-0.0783749 0.5055 0.0421637)
(-0.100969 0.491152 0.0424519)
(-0.127954 0.468415 0.0392776)
(-0.154982 0.446036 0.0338674)
(-0.185656 0.419609 0.0262392)
(-0.216957 0.402447 0.0175279)
(-0.245646 0.383147 0.00393576)
(-0.298078 0.367231 -0.00941039)
(-0.328915 0.366582 -0.0061886)
(-0.265116 0.299192 0.010061)
(-0.238213 0.291827 0.0125566)
(-0.277559 0.274175 0.0238352)
(-0.314797 0.26603 0.0303669)
(-0.355909 0.247372 0.0397752)
(-0.388845 0.231069 0.0327588)
(-0.418334 0.201243 0.0239414)
(-0.433141 0.174308 0.00746274)
(-0.438309 0.145989 0.00838224)
(-0.43209 0.123297 0.0156862)
(-0.412082 0.104056 0.0118)
(-0.385045 0.105036 0.00809574)
(-0.364023 0.118015 -0.0155082)
(-0.331546 0.165844 -0.0261971)
(-0.228946 0.176845 -0.0261412)
(-0.108631 0.169719 -0.0219066)
(-0.0265799 0.142474 -0.0133165)
(0.00493577 0.0753191 -0.00071647)
(0.00881456 0.0628671 -0.0120426)
(0.0721754 0.148978 -0.0319367)
(0.15659 0.212848 -0.0311739)
(0.202254 0.262503 -0.0194353)
(0.201356 0.301893 -0.0121586)
(0.175971 0.335129 -0.0159617)
(0.149282 0.375624 -0.00531756)
(0.11882 0.413874 0.00196736)
(0.0943101 0.443421 0.00985387)
(0.0667585 0.465464 0.0256782)
(0.0392724 0.47292 0.0348415)
(0.020239 0.473375 0.0450343)
(-0.00122871 0.462247 0.0473816)
(-0.0282734 0.438805 0.0487003)
(-0.0560269 0.412275 0.0475565)
(-0.0873036 0.379985 0.0411255)
(-0.11998 0.351232 0.0325233)
(-0.155885 0.323861 0.0232049)
(-0.190084 0.306098 0.0145105)
(-0.227464 0.294456 0.00168088)
(-0.277539 0.282938 -0.00864102)
(-0.323227 0.287297 -0.0108772)
(-0.269446 0.267509 0.00325637)
(-0.23129 0.256598 0.00441488)
(-0.266275 0.24387 0.0170908)
(-0.306289 0.231874 0.0251312)
(-0.352871 0.217088 0.0340421)
(-0.390073 0.194521 0.0310964)
(-0.423426 0.168812 0.0191102)
(-0.446445 0.138428 0.028331)
(-0.460225 0.10337 0.0301184)
(-0.460496 0.074633 0.0160441)
(-0.445346 0.0578309 0.011538)
(-0.410632 0.0549313 0.00251776)
(-0.371838 0.0688647 -0.00234336)
(-0.340271 0.117977 -0.0248809)
(-0.25358 0.156715 -0.0292384)
(-0.125998 0.167175 -0.0241822)
(-0.029922 0.147455 -0.0153345)
(0.00427296 0.0811708 -0.00239142)
(0.0100866 0.081738 -0.012765)
(0.0782026 0.188705 -0.035943)
(0.170675 0.255447 -0.0345355)
(0.216098 0.29464 -0.0185781)
(0.220444 0.322871 -0.0109855)
(0.205441 0.355796 -0.00852245)
(0.184082 0.388212 -0.00743339)
(0.158848 0.413093 0.00495898)
(0.132711 0.434209 0.0105968)
(0.108738 0.443435 0.0216993)
(0.0865902 0.447836 0.0327306)
(0.0588615 0.437663 0.0497631)
(0.0317036 0.41512 0.0540502)
(0.00890395 0.380471 0.0551961)
(-0.0205919 0.34695 0.0480662)
(-0.0567114 0.31514 0.0394694)
(-0.0933522 0.289544 0.0280304)
(-0.13145 0.267097 0.0182202)
(-0.167555 0.257029 0.0100235)
(-0.21013 0.247461 -0.00142466)
(-0.258372 0.242454 -0.00829242)
(-0.300597 0.243271 -0.0112952)
(-0.253634 0.24519 0.000296605)
(-0.213302 0.230889 -0.000336921)
(-0.246683 0.215342 0.0121786)
(-0.284166 0.199708 0.0209629)
(-0.333534 0.183375 0.0288553)
(-0.374323 0.160013 0.0225066)
(-0.412122 0.132411 0.0370972)
(-0.4445 0.0968515 0.0438196)
(-0.465526 0.0613886 0.0365381)
(-0.467907 0.0346333 0.0467132)
(-0.459766 0.0129902 0.0378176)
(-0.438497 0.00903889 0.035391)
(-0.398394 0.0176707 0.024547)
(-0.354738 0.0633708 0.00227585)
(-0.266914 0.119357 -0.0262473)
(-0.140203 0.154359 -0.0258436)
(-0.0362233 0.145812 -0.014929)
(0.00536552 0.0839479 -0.00233999)
(0.0106765 0.103749 -0.0117693)
(0.0834447 0.230281 -0.0381942)
(0.1772 0.298024 -0.0374069)
(0.228069 0.327634 -0.0194108)
(0.243112 0.350484 -0.0065737)
(0.236364 0.374581 -0.00105945)
(0.216925 0.39794 0.00295117)
(0.193154 0.413081 0.00382634)
(0.172854 0.42336 0.0128392)
(0.150078 0.426064 0.0240039)
(0.124218 0.417705 0.0330995)
(0.0977982 0.399499 0.0402184)
(0.0657875 0.372422 0.0524653)
(0.032711 0.338445 0.0539539)
(0.00470768 0.298092 0.0490326)
(-0.0297203 0.269596 0.0355052)
(-0.0702707 0.247666 0.0226941)
(-0.107791 0.231057 0.0135919)
(-0.144994 0.225935 0.00532259)
(-0.188774 0.217074 -0.00193462)
(-0.231795 0.217035 -0.00741485)
(-0.264981 0.214214 -0.00896443)
(-0.221653 0.231376 -0.00100706)
(-0.189663 0.209595 -0.00298877)
(-0.217128 0.188762 0.00857199)
(-0.253306 0.167928 0.0165752)
(-0.301511 0.145123 0.0211669)
(-0.345242 0.122459 0.0319659)
(-0.390504 0.0898862 0.0447227)
(-0.429606 0.0550734 0.0451711)
(-0.452732 0.0241127 0.0660029)
(-0.474184 -0.0135122 0.048039)
(-0.479712 -0.0518307 0.0337328)
(-0.463427 -0.0726181 0.0112518)
(-0.421623 -0.0610822 0.0038774)
(-0.373985 -0.0152645 0.00709431)
(-0.287613 0.0684314 -0.00357366)
(-0.155768 0.125966 -0.0317222)
(-0.0413065 0.140165 -0.0147993)
(0.00518163 0.0877662 -0.00391008)
(0.0104077 0.110358 -0.0109761)
(0.0822268 0.253354 -0.0405836)
(0.177785 0.324109 -0.0413155)
(0.234429 0.351125 -0.0224468)
(0.260257 0.365728 -0.00430723)
(0.261084 0.378439 0.00528342)
(0.244129 0.390938 0.0113495)
(0.222191 0.399909 0.0144494)
(0.202611 0.405629 0.0175122)
(0.180619 0.4008 0.0217323)
(0.157704 0.38687 0.0265682)
(0.126796 0.363645 0.0381788)
(0.0932035 0.332454 0.0394568)
(0.0564852 0.300429 0.0469257)
(0.0236257 0.26788 0.0457421)
(-0.00649439 0.236228 0.0309288)
(-0.0464376 0.220216 0.0178027)
(-0.081254 0.206234 0.00990631)
(-0.11839 0.201965 0.00242368)
(-0.158831 0.195507 -0.00177395)
(-0.197424 0.194359 -0.00570212)
(-0.212798 0.195126 -0.00439529)
(-0.178169 0.222159 -0.000745237)
(-0.163833 0.190974 -0.0015673)
(-0.187411 0.163331 0.00480518)
(-0.219301 0.133784 0.0124432)
(-0.262559 0.110854 0.0154239)
(-0.305992 0.081763 0.0336532)
(-0.354238 0.0509886 0.0404126)
(-0.390653 0.0219756 0.0631661)
(-0.436298 -0.0187149 0.0467718)
(-0.478286 -0.0715037 0.0382768)
(-0.494686 -0.117109 0.023319)
(-0.481214 -0.149784 0.0120489)
(-0.439474 -0.152152 -0.00853394)
(-0.378814 -0.112573 -0.00735415)
(-0.294504 -0.0125596 -0.00096251)
(-0.173047 0.0824522 -0.0176429)
(-0.0462465 0.124449 -0.0205687)
(0.00662008 0.0869598 -0.00244705)
(0.00931423 0.120703 -0.00857512)
(0.0816067 0.277871 -0.0396293)
(0.178446 0.353441 -0.0424816)
(0.241462 0.377821 -0.0232026)
(0.274425 0.384778 -0.00274747)
(0.280782 0.384708 0.0112896)
(0.269756 0.387444 0.0209256)
(0.253082 0.390208 0.0235247)
(0.23556 0.389931 0.0260327)
(0.212713 0.3805 0.0282415)
(0.187051 0.363705 0.0296833)
(0.156666 0.33574 0.0283945)
(0.12077 0.306338 0.0282658)
(0.0832441 0.270967 0.0301523)
(0.0439641 0.24524 0.0351308)
(0.0130125 0.215569 0.0258781)
(-0.02011 0.196752 0.0124039)
(-0.0548769 0.187026 0.0070456)
(-0.0872882 0.181635 0.000489339)
(-0.124977 0.174327 -0.00154183)
(-0.153209 0.172193 -0.00273996)
(-0.149947 0.191555 0.00203577)
(-0.131992 0.199044 0.000323291)
(-0.144731 0.167267 0.000667173)
(-0.162168 0.135972 0.00437215)
(-0.184917 0.102265 0.00849099)
(-0.222561 0.0757148 0.0209325)
(-0.264784 0.04477 0.0291187)
(-0.303185 0.018663 0.0485194)
(-0.35433 -0.0181444 0.0420634)
(-0.412617 -0.0712907 0.0393215)
(-0.460295 -0.122904 0.0290333)
(-0.490209 -0.174748 0.0178266)
(-0.492373 -0.216049 0.00199359)
(-0.457406 -0.235174 -0.0139626)
(-0.390206 -0.205677 -0.0214444)
(-0.30055 -0.116459 -0.0189648)
(-0.183762 0.0263832 0.00135318)
(-0.0549444 0.103944 -0.0272983)
(0.00541209 0.0897467 -0.00379)
(0.00700899 0.10165 -0.00923252)
(0.0754305 0.272269 -0.040061)
(0.172669 0.353929 -0.0420154)
(0.240411 0.379173 -0.0227708)
(0.280536 0.38105 0.000659726)
(0.294971 0.376972 0.0150037)
(0.291447 0.374946 0.0213293)
(0.276673 0.370005 0.0250573)
(0.25883 0.362094 0.0272185)
(0.2376 0.350235 0.0279528)
(0.212203 0.33097 0.0273082)
(0.179867 0.307415 0.0245979)
(0.141916 0.27712 0.0201131)
(0.103718 0.247835 0.0130448)
(0.0662892 0.22113 0.017793)
(0.0314226 0.204181 0.0145557)
(0.00344714 0.183516 0.00883928)
(-0.0218904 0.174407 0.00321257)
(-0.0555755 0.163185 -0.00187373)
(-0.0873134 0.160872 -0.000737365)
(-0.0924984 0.169518 0.00252885)
(-0.0932151 0.180875 0.00371525)
(-0.103702 0.167037 0.00370655)
(-0.121974 0.139767 0.004035)
(-0.140699 0.114777 0.00417581)
(-0.158941 0.0778726 0.00722944)
(-0.188644 0.0493027 0.0146724)
(-0.219582 0.0183038 0.0314103)
(-0.262756 -0.0131902 0.0324629)
(-0.317953 -0.0616069 0.0351145)
(-0.373725 -0.110237 0.0309452)
(-0.426945 -0.167537 0.0262581)
(-0.465348 -0.226347 0.0157631)
(-0.481327 -0.281645 0.00206194)
(-0.459166 -0.314992 -0.0155932)
(-0.399383 -0.304701 -0.0280914)
(-0.294491 -0.226208 -0.0317121)
(-0.184637 -0.072849 -0.0190935)
(-0.0633571 0.0589926 -0.0194799)
(0.00686474 0.0794704 -0.00763555)
(0.00809336 0.107715 -0.00304835)
(0.0753709 0.28498 -0.0336087)
(0.171391 0.370447 -0.0385692)
(0.245333 0.393141 -0.0182163)
(0.294993 0.389121 0.00677896)
(0.318428 0.376064 0.0153825)
(0.317076 0.366719 0.0235104)
(0.302824 0.356006 0.0251786)
(0.287616 0.347177 0.024211)
(0.266432 0.332089 0.0215001)
(0.242228 0.311714 0.0183369)
(0.209986 0.285121 0.0137129)
(0.170389 0.257038 0.00972664)
(0.130832 0.227956 0.00625294)
(0.0943253 0.20562 0.00369209)
(0.0603247 0.189969 0.0048345)
(0.0292464 0.179362 0.00150388)
(0.00297805 0.173686 -0.000427631)
(-0.0198309 0.165865 -0.000461597)
(-0.0335331 0.167759 0.00111372)
(-0.0443121 0.17054 0.00387302)
(-0.0603825 0.156275 0.00620575)
(-0.0778396 0.138894 0.0069597)
(-0.0983854 0.115247 0.00667023)
(-0.120636 0.093596 0.00797058)
(-0.138876 0.0612496 0.00694531)
(-0.160043 0.0279232 0.016697)
(-0.192392 -0.0044475 0.0187998)
(-0.233399 -0.0464713 0.022791)
(-0.283614 -0.0887211 0.0237043)
(-0.337953 -0.136837 0.0250538)
(-0.390663 -0.193638 0.022573)
(-0.433561 -0.25614 0.0164074)
(-0.458839 -0.322026 0.00415022)
(-0.449034 -0.371694 -0.012504)
(-0.399249 -0.385819 -0.0294916)
(-0.304848 -0.322441 -0.0424177)
(-0.189543 -0.176157 -0.0319368)
(-0.0609071 0.0142256 -0.00947032)
(0.00632752 0.0754616 -0.0129292)
(-0.00207253 0.0802912 -0.015095)
(0.0543549 0.26563 -0.0404322)
(0.152102 0.361686 -0.0463538)
(0.233854 0.387046 -0.0260358)
(0.293216 0.385638 -0.00387129)
(0.328574 0.366069 0.00978389)
(0.339078 0.349538 0.0157367)
(0.329348 0.330838 0.0163345)
(0.312864 0.317632 0.0145099)
(0.289316 0.308053 0.0108455)
(0.262026 0.297577 0.00771645)
(0.228513 0.282477 0.00483828)
(0.188729 0.26284 0.00210217)
(0.151099 0.242662 0.000655447)
(0.119283 0.222486 0.000518092)
(0.0893574 0.21203 0.00348)
(0.0677842 0.208673 -0.00239742)
(0.045281 0.205365 -0.00291595)
(0.0209673 0.196602 -0.00126755)
(0.00194167 0.185772 0.00243555)
(-0.0178248 0.163444 0.00598103)
(-0.0376631 0.141195 0.00854432)
(-0.0570993 0.118527 0.00893761)
(-0.0779339 0.0958408 0.00973314)
(-0.10178 0.0741162 0.0096382)
(-0.125305 0.0507886 0.00678952)
(-0.145197 0.0158507 0.00529971)
(-0.172074 -0.0193797 0.00776469)
(-0.207464 -0.0605108 0.0104246)
(-0.248373 -0.108114 0.0138954)
(-0.295489 -0.160089 0.0155226)
(-0.34538 -0.223738 0.0153716)
(-0.390459 -0.294102 0.0111674)
(-0.422588 -0.372374 0.00176279)
(-0.425866 -0.438218 -0.0134998)
(-0.386405 -0.471159 -0.030234)
(-0.296863 -0.427353 -0.0551667)
(-0.184844 -0.296373 -0.0487833)
(-0.0579016 -0.0671359 -0.0152604)
(0.00517471 0.0562313 -0.00312287)
(-0.00252977 0.146649 -0.0049071)
(0.050783 0.347448 -0.0195137)
(0.142438 0.446486 -0.0307639)
(0.227737 0.467835 -0.011274)
(0.295933 0.456124 -0.0039811)
(0.336823 0.423471 0.0123239)
(0.351877 0.387093 0.0154586)
(0.347068 0.373283 0.0181417)
(0.345263 0.382595 0.014942)
(0.332624 0.388607 0.0105066)
(0.308729 0.385886 0.00473097)
(0.271838 0.37239 0.000214614)
(0.228521 0.348047 -0.00315375)
(0.184915 0.320527 -0.00409888)
(0.152142 0.291928 -0.00270301)
(0.130012 0.267986 0.000363584)
(0.103569 0.250145 0.000859227)
(0.0712905 0.230634 -0.00688541)
(0.0418694 0.211442 -0.00322329)
(0.0150869 0.185391 -0.00177055)
(-0.00759037 0.1591 0.00592154)
(-0.0248817 0.129969 0.00794941)
(-0.0432429 0.106033 0.00933359)
(-0.0621279 0.0815277 0.010757)
(-0.0822905 0.0594618 0.00755322)
(-0.108599 0.0376815 0.00508576)
(-0.133112 0.0107743 0.00298039)
(-0.159234 -0.0248155 -0.00266644)
(-0.19576 -0.0627959 -0.0020676)
(-0.234584 -0.105939 0.000992656)
(-0.27707 -0.151427 0.00601901)
(-0.32049 -0.211407 0.0097149)
(-0.362099 -0.281304 0.0107233)
(-0.39508 -0.366544 0.00493004)
(-0.401427 -0.448976 -0.00871353)
(-0.37132 -0.516277 -0.0301606)
(-0.303894 -0.517069 -0.0618094)
(-0.190615 -0.391314 -0.0591226)
(-0.0513207 -0.175879 -0.0345963)
(0.00776425 0.0239766 -0.00420744)
(-0.0180069 0.230216 -0.0242027)
(0.0197704 0.469947 -0.042217)
(0.11038 0.579403 -0.0505648)
(0.196133 0.617979 -0.0351663)
(0.268287 0.608007 -0.0238541)
(0.317157 0.57694 -0.00660877)
(0.362281 0.531198 0.00243576)
(0.403158 0.505857 0.00296513)
(0.408982 0.499306 -0.00401706)
(0.376998 0.483348 -0.00872842)
(0.334709 0.45969 -0.0111741)
(0.283081 0.428185 -0.0119501)
(0.230683 0.390224 -0.0115689)
(0.187215 0.350422 -0.0100357)
(0.154857 0.314735 -0.00764132)
(0.131144 0.278302 -0.00316868)
(0.111762 0.246126 0.00128005)
(0.0867792 0.217609 0.00268649)
(0.054554 0.198618 -0.0026178)
(0.0274876 0.171166 0.000246622)
(0.00296827 0.148274 0.00370489)
(-0.0161458 0.117311 0.00781373)
(-0.031744 0.0930012 0.00896363)
(-0.0503879 0.0683433 0.010919)
(-0.0692324 0.0432389 0.00535558)
(-0.0931217 0.0178269 0.00768546)
(-0.11957 -0.00239632 0.00666011)
(-0.146084 -0.0291599 0.00354749)
(-0.172414 -0.0596363 -0.00141361)
(-0.198031 -0.105429 -0.00647879)
(-0.23334 -0.160701 -0.0111126)
(-0.273167 -0.2352 -0.0140823)
(-0.312771 -0.318202 -0.0163739)
(-0.349828 -0.421133 -0.0200444)
(-0.37695 -0.519533 -0.0284991)
(-0.376165 -0.618352 -0.0457155)
(-0.305437 -0.645785 -0.0686993)
(-0.225255 -0.54208 -0.0831629)
(-0.0878602 -0.257852 -0.040953)
(0.0144099 0.0123868 -0.00297307)
(0.000526453 0.204711 0.000535986)
(0.039194 0.448985 -0.0368875)
(0.114607 0.574548 -0.0495436)
(0.200737 0.6319 -0.0455875)
(0.272455 0.637509 -0.0370913)
(0.322631 0.61927 -0.026093)
(0.362693 0.583433 -0.0193189)
(0.398422 0.539537 -0.00916532)
(0.406462 0.4978 -0.0108577)
(0.37781 0.462329 -0.0100394)
(0.339854 0.429022 -0.00956243)
(0.290977 0.396387 -0.00746971)
(0.240567 0.359543 -0.00543014)
(0.198661 0.326304 -0.00259927)
(0.167228 0.293864 -0.00132308)
(0.145673 0.262655 0.00145756)
(0.124088 0.230584 0.0039286)
(0.102873 0.199847 0.00703885)
(0.0723339 0.179211 0.00824095)
(0.0390693 0.15813 0.0015656)
(0.0107799 0.133809 0.00450793)
(-0.0096029 0.106486 0.00794656)
(-0.0225937 0.0813107 0.00957654)
(-0.0420184 0.0542034 0.00959924)
(-0.0610138 0.0298152 0.00703444)
(-0.0788073 0.00422145 0.009958)
(-0.0984041 -0.0139601 0.0104752)
(-0.125063 -0.0337036 0.006603)
(-0.165733 -0.0524166 0.0033015)
(-0.207064 -0.0877022 0.00417658)
(-0.247787 -0.134103 0.00665181)
(-0.28201 -0.203948 0.00715496)
(-0.311415 -0.293901 0.00484131)
(-0.328039 -0.430002 -0.00473579)
(-0.341608 -0.57856 -0.0146132)
(-0.337913 -0.719737 -0.0259639)
(-0.284388 -0.793177 -0.0494617)
(-0.173567 -0.760111 -0.0642377)
(-0.0528384 -0.468478 -0.0684417)
(0.000914927 -0.101644 0.00740297)
(0.000604459 0.218825 -0.00200701)
(0.0375029 0.438156 -0.032952)
(0.105942 0.561832 -0.0439448)
(0.184977 0.618291 -0.0420965)
(0.255279 0.624877 -0.0271721)
(0.309019 0.603455 -0.0214715)
(0.354404 0.566194 -0.0125319)
(0.39511 0.524914 -0.00502948)
(0.409289 0.481334 -0.00528665)
(0.386112 0.448326 -0.00422839)
(0.347565 0.416854 -0.00334507)
(0.295281 0.381541 -0.00162023)
(0.245087 0.345338 0.000550157)
(0.207316 0.311804 0.00206331)
(0.176566 0.280677 0.00317791)
(0.151866 0.248158 0.0051793)
(0.130598 0.215033 0.00768535)
(0.114152 0.179659 0.0110678)
(0.0884072 0.153902 0.0116923)
(0.0546729 0.134034 0.0119825)
(0.0213056 0.115085 0.00682646)
(-0.000498983 0.090143 0.0083959)
(-0.0166872 0.0633779 0.0110583)
(-0.0342918 0.0383092 0.00974852)
(-0.0501345 0.0154305 0.00879729)
(-0.0648023 -0.00704232 0.010913)
(-0.0801241 -0.0274848 0.011145)
(-0.0987857 -0.0505089 0.0106787)
(-0.127874 -0.0670691 0.00765813)
(-0.161711 -0.0848736 0.0051048)
(-0.202567 -0.103868 0.00483648)
(-0.247405 -0.146905 0.00584783)
(-0.309796 -0.206877 0.00931402)
(-0.363667 -0.315215 0.0148616)
(-0.380445 -0.447516 0.013718)
(-0.372389 -0.608065 0.00761806)
(-0.327647 -0.729171 -0.00705207)
(-0.227571 -0.756481 -0.0304377)
(-0.062702 -0.542838 -0.0428242)
(0.0231244 -0.112273 -0.0188964)
(0.00681969 0.195936 -0.00249617)
(0.0457021 0.394952 -0.0266867)
(0.107771 0.526804 -0.036556)
(0.18352 0.588601 -0.0358198)
(0.250924 0.605813 -0.0238595)
(0.303074 0.588995 -0.015585)
(0.349787 0.553288 -0.00679534)
(0.388043 0.510536 -0.000316903)
(0.40539 0.459655 -0.000533443)
(0.389769 0.420935 -0.00014649)
(0.350253 0.383826 0.000603592)
(0.298922 0.346117 0.00345717)
(0.253096 0.312834 0.00533534)
(0.218261 0.281565 0.0067057)
(0.188419 0.251789 0.00695863)
(0.164294 0.221351 0.00819831)
(0.1381 0.19133 0.00992531)
(0.121337 0.156388 0.0137638)
(0.102708 0.124526 0.0177551)
(0.0725995 0.10443 0.0166057)
(0.0362449 0.0916103 0.0155614)
(0.00617543 0.0700423 0.0124763)
(-0.00784566 0.0465872 0.0149693)
(-0.0231266 0.0234221 0.0119101)
(-0.0382529 0.00281347 0.0113319)
(-0.0512686 -0.0171385 0.0110027)
(-0.067325 -0.0368911 0.0106897)
(-0.0831587 -0.0615463 0.0106341)
(-0.107012 -0.0819312 0.0105124)
(-0.132891 -0.107194 0.0102258)
(-0.171032 -0.128538 0.0106423)
(-0.206391 -0.168186 0.0131451)
(-0.251646 -0.212327 0.0177927)
(-0.290247 -0.284383 0.0224402)
(-0.324075 -0.374007 0.0241925)
(-0.350216 -0.524174 0.0232076)
(-0.344662 -0.647723 0.0106889)
(-0.272996 -0.709372 -0.0111444)
(-0.102436 -0.513731 -0.0380191)
(0.0064515 -0.0784211 -0.0228757)
(0.00229111 0.187316 -0.00152608)
(0.0497413 0.36099 -0.0141258)
(0.112522 0.494013 -0.0303199)
(0.177882 0.556799 -0.029965)
(0.245894 0.57854 -0.0221205)
(0.295405 0.56529 -0.0125092)
(0.343197 0.531084 -0.00387239)
(0.379156 0.485665 0.00153794)
(0.397914 0.433611 0.00261236)
(0.387539 0.390066 0.00315491)
(0.34967 0.350632 0.00499799)
(0.30244 0.313628 0.00794861)
(0.261089 0.281013 0.00984326)
(0.22917 0.24989 0.0106812)
(0.200601 0.221182 0.0107052)
(0.175792 0.190776 0.0114538)
(0.149052 0.161726 0.0131203)
(0.12843 0.12924 0.0163163)
(0.113968 0.0969114 0.0208791)
(0.0957449 0.0642804 0.0207677)
(0.0576582 0.0596611 0.01716)
(0.0227708 0.0449578 0.0170574)
(0.00399792 0.0271303 0.0157422)
(-0.0107846 0.00818168 0.00995036)
(-0.0225222 -0.00884211 0.0127713)
(-0.0345438 -0.0291549 0.0104398)
(-0.0513665 -0.0465026 0.0109539)
(-0.0651744 -0.0699455 0.00951434)
(-0.0852182 -0.089509 0.0103218)
(-0.10386 -0.116911 0.0105475)
(-0.133271 -0.13961 0.0134106)
(-0.162606 -0.179446 0.0173059)
(-0.20367 -0.225855 0.0261848)
(-0.241719 -0.310002 0.0373188)
(-0.285522 -0.417439 0.0501912)
(-0.3249 -0.579847 0.0543074)
(-0.339283 -0.711555 0.0446465)
(-0.305888 -0.788369 0.0133503)
(-0.163426 -0.607639 -0.0119156)
(-0.0287216 -0.138904 -0.013799)
(-5.46584e-05 0.166165 0.000324467)
(0.0521757 0.320302 -0.0057012)
(0.115688 0.443785 -0.0232773)
(0.173309 0.511751 -0.022792)
(0.240533 0.537213 -0.0183094)
(0.28832 0.531262 -0.00661869)
(0.333644 0.497582 -0.00135205)
(0.36738 0.453812 0.00606643)
(0.388825 0.403394 0.00827225)
(0.384326 0.353481 0.00822597)
(0.350089 0.309011 0.00850068)
(0.305858 0.270932 0.0111997)
(0.267687 0.239995 0.0136337)
(0.239291 0.210067 0.0145803)
(0.212221 0.1832 0.01435)
(0.188785 0.153764 0.0155933)
(0.16014 0.126339 0.0181196)
(0.138995 0.0940895 0.0218451)
(0.117361 0.066201 0.024056)
(0.111226 0.0224873 0.0248698)
(0.0901517 0.0223909 0.0148392)
(0.0442872 0.0129466 0.0182569)
(0.0243202 0.00197443 0.0204511)
(0.00957885 -0.00774281 0.0158448)
(-0.00654038 -0.0193767 0.0149957)
(-0.0187004 -0.0387944 0.0105272)
(-0.0354834 -0.0559949 0.00998473)
(-0.0492893 -0.0795631 0.00972861)
(-0.0692056 -0.0982417 0.00879277)
(-0.0846558 -0.12835 0.00889103)
(-0.111882 -0.153145 0.0114208)
(-0.135205 -0.19895 0.0166028)
(-0.172487 -0.247914 0.0291252)
(-0.20852 -0.344092 0.0447469)
(-0.259625 -0.463454 0.0646325)
(-0.305856 -0.648535 0.0730483)
(-0.327509 -0.798366 0.0655843)
(-0.302428 -0.903173 0.0325233)
(-0.180715 -0.734005 -0.00161705)
(-0.0497854 -0.231546 -0.0139032)
(-0.00587213 0.150778 0.000342775)
(0.048778 0.288509 -0.00143006)
(0.117093 0.39644 -0.0171515)
(0.168532 0.471069 -0.0163967)
(0.235578 0.498897 -0.0139538)
(0.280341 0.498079 -0.00872948)
(0.322747 0.467869 -0.000272164)
(0.358969 0.428462 0.00638613)
(0.376872 0.379541 0.0100486)
(0.371716 0.325335 0.0121934)
(0.344089 0.275324 0.0143489)
(0.30983 0.233946 0.0169863)
(0.277599 0.201547 0.0172842)
(0.251615 0.170695 0.0172606)
(0.225538 0.143478 0.0172505)
(0.20185 0.114356 0.0192491)
(0.172622 0.0896215 0.0225681)
(0.151534 0.0601907 0.0258784)
(0.123989 0.0302206 0.0255026)
(0.130047 -0.00142889 0.0219935)
(0.123819 -0.00451292 0.00579443)
(0.0754012 -0.00949712 0.00974967)
(0.0543418 -0.0159534 0.018233)
(0.0383594 -0.0259983 0.0189366)
(0.016949 -0.0329137 0.0155968)
(-0.000136054 -0.0493438 0.011757)
(-0.0195141 -0.0609455 0.0112092)
(-0.0317127 -0.0859686 0.0059206)
(-0.0522198 -0.100743 0.00853108)
(-0.0658667 -0.128777 0.00662084)
(-0.0907169 -0.1494 0.0117566)
(-0.110853 -0.196641 0.0166538)
(-0.149579 -0.251339 0.0339448)
(-0.190237 -0.363488 0.0538422)
(-0.254122 -0.505039 0.0809017)
(-0.313571 -0.724643 0.0924036)
(-0.346201 -0.906128 0.0873077)
(-0.332946 -1.04778 0.0508581)
(-0.225412 -0.881521 0.0172998)
(-0.078678 -0.305911 -0.00642516)
(-0.00579782 0.127291 0.00224316)
(0.0435139 0.252875 0.000508692)
(0.114017 0.337206 -0.0133025)
(0.165247 0.420827 -0.0130803)
(0.225205 0.451532 -0.0111251)
(0.270717 0.452216 -0.00607683)
(0.313238 0.430409 0.000821438)
(0.34825 0.390796 0.00720355)
(0.364063 0.343851 0.0122468)
(0.359874 0.290777 0.0157977)
(0.337023 0.2426 0.0185671)
(0.308946 0.20053 0.0203672)
(0.281074 0.165881 0.0209013)
(0.259086 0.133462 0.0215848)
(0.23562 0.104756 0.0223142)
(0.216156 0.0741723 0.0245913)
(0.188333 0.0490475 0.0258417)
(0.16302 0.0199237 0.0267363)
(0.138565 -0.00320592 0.0231596)
(0.156918 -0.0301165 0.0108751)
(0.160493 -0.0378468 -0.00512323)
(0.10829 -0.0382168 0.00441537)
(0.0811326 -0.0398996 0.0140378)
(0.0649747 -0.0500099 0.0180061)
(0.042191 -0.0554487 0.0200946)
(0.0255904 -0.070085 0.0133779)
(0.00115364 -0.0774027 0.0089643)
(-0.0135278 -0.105467 0.00985372)
(-0.0310984 -0.124329 0.00492569)
(-0.0420903 -0.166908 0.00706279)
(-0.0681765 -0.209839 0.0111005)
(-0.0898274 -0.288372 0.018261)
(-0.131339 -0.371741 0.037065)
(-0.172191 -0.520444 0.058641)
(-0.245637 -0.697196 0.0881281)
(-0.315804 -0.971657 0.100476)
(-0.365671 -1.2014 0.0949789)
(-0.352841 -1.39923 0.0589533)
(-0.239447 -1.22487 0.0134667)
(-0.0875035 -0.53267 -0.00830968)
(-0.00470891 0.113724 0.00326809)
(0.0316964 0.224039 0.00100045)
(0.106084 0.294877 -0.00588713)
(0.165721 0.372653 -0.012126)
(0.213801 0.411543 -0.00953656)
(0.259952 0.412535 -0.0072811)
(0.30057 0.397636 0.000187268)
(0.334382 0.360049 0.00715175)
(0.351522 0.314242 0.0123899)
(0.349938 0.262674 0.0164747)
(0.333877 0.215729 0.0188008)
(0.312042 0.17358 0.0203332)
(0.288145 0.138428 0.0209596)
(0.267857 0.104474 0.0217091)
(0.244129 0.0744937 0.0227236)
(0.225985 0.042464 0.0247944)
(0.199283 0.0137034 0.025944)
(0.18161 -0.0136037 0.024264)
(0.156866 -0.0303318 0.0122913)
(0.176404 -0.0624745 0.0028247)
(0.195382 -0.0739996 -0.00287606)
(0.150496 -0.075233 0.0011517)
(0.117602 -0.0711336 0.00861471)
(0.096927 -0.0797639 0.0138041)
(0.0703296 -0.0829152 0.0174423)
(0.0512918 -0.099141 0.0158488)
(0.0191086 -0.106705 0.0142708)
(-0.00300887 -0.13477 0.00931426)
(-0.0337598 -0.161551 0.00741783)
(-0.0627935 -0.218634 0.00705428)
(-0.104487 -0.272852 0.0205098)
(-0.128588 -0.37039 0.0296484)
(-0.169796 -0.470061 0.0540395)
(-0.203539 -0.652007 0.0776413)
(-0.280353 -0.878501 0.110911)
(-0.354953 -1.22993 0.122524)
(-0.416473 -1.54588 0.113908)
(-0.397216 -1.82862 0.0666757)
(-0.255311 -1.68444 0.0170529)
(-0.0906768 -0.93266 -0.015657)
(-0.00288204 0.0935756 0.00408563)
(0.0247807 0.186594 0.00179129)
(0.0917813 0.253605 -0.00212184)
(0.158249 0.312836 -0.0092747)
(0.20075 0.358736 -0.0073609)
(0.244075 0.362008 -0.00365294)
(0.288376 0.35154 0.000141297)
(0.317694 0.31813 0.00433012)
(0.334629 0.275696 0.0111373)
(0.337156 0.226061 0.0154017)
(0.326703 0.181216 0.0187117)
(0.310954 0.138733 0.0207516)
(0.290837 0.103445 0.0218705)
(0.273546 0.0680415 0.0229239)
(0.251403 0.0383662 0.0234606)
(0.233974 0.00509052 0.0243826)
(0.212108 -0.0172927 0.0239486)
(0.199788 -0.0420567 0.0176099)
(0.171642 -0.064484 0.00251422)
(0.193075 -0.0934563 0.00568931)
(0.227073 -0.108107 -0.0024236)
(0.188774 -0.107246 -0.0011481)
(0.152519 -0.105414 0.00516269)
(0.128654 -0.110627 0.00961803)
(0.0974857 -0.113693 0.0145497)
(0.0762119 -0.128598 0.0141627)
(0.0397416 -0.132662 0.0134075)
(0.00677338 -0.158458 0.0151825)
(-0.0362115 -0.182321 0.0113187)
(-0.0665402 -0.237019 0.00686587)
(-0.114463 -0.274243 0.0163617)
(-0.14316 -0.360301 0.0273632)
(-0.193731 -0.447408 0.0521165)
(-0.240591 -0.643541 0.0783601)
(-0.339555 -0.900703 0.117076)
(-0.437289 -1.34003 0.13177)
(-0.529175 -1.75446 0.123432)
(-0.515905 -2.15209 0.0625535)
(-0.347134 -2.05749 0.0251237)
(-0.125392 -1.26901 -0.0151462)
(-0.00261499 0.0849992 0.00452933)
(0.017457 0.164729 0.00140657)
(0.073258 0.224649 0.000165934)
(0.144664 0.271451 -0.00800513)
(0.188777 0.3145 -0.00699532)
(0.226684 0.327654 -0.00348033)
(0.270509 0.316155 -0.000723171)
(0.300588 0.284848 0.00388941)
(0.318888 0.245158 0.00671383)
(0.325194 0.19805 0.0129417)
(0.321471 0.15427 0.0167598)
(0.3114 0.112589 0.0202258)
(0.29529 0.076396 0.0220247)
(0.281048 0.0421568 0.0239555)
(0.26019 0.0098864 0.0241101)
(0.24901 -0.0165101 0.0259708)
(0.230814 -0.0356006 0.0190308)
(0.21459 -0.0635013 0.0119252)
(0.185657 -0.0879792 0.00288904)
(0.211101 -0.116319 0.00714649)
(0.260062 -0.133309 -0.000433708)
(0.230634 -0.130267 -0.00320661)
(0.190351 -0.128637 0.00287679)
(0.164551 -0.131782 0.00609475)
(0.127685 -0.128706 0.0139824)
(0.107972 -0.140727 0.0139989)
(0.0643302 -0.139068 0.0152849)
(0.0232579 -0.156616 0.0166837)
(-0.0335336 -0.185727 0.0137933)
(-0.0682139 -0.234776 0.00597675)
(-0.12307 -0.257606 0.0175133)
(-0.153942 -0.338426 0.0221716)
(-0.21579 -0.417346 0.0443692)
(-0.265229 -0.622159 0.0764159)
(-0.391817 -0.905478 0.12002)
(-0.515745 -1.41105 0.140607)
(-0.638828 -1.91857 0.137563)
(-0.640429 -2.42438 0.0630515)
(-0.438884 -2.37835 0.0236381)
(-0.160117 -1.59713 -0.0340787)
(-0.00106564 0.0661395 0.00490001)
(0.0121504 0.129825 0.00195503)
(0.0517389 0.186276 0.00170756)
(0.121541 0.219074 -0.00212773)
(0.173892 0.250334 -0.00539982)
(0.2078 0.271304 -0.00164756)
(0.245646 0.263664 -0.000291139)
(0.275978 0.234338 0.00244986)
(0.296921 0.199431 0.00711908)
(0.30754 0.156227 0.0107922)
(0.310032 0.116846 0.0163426)
(0.305858 0.0755615 0.0204605)
(0.295249 0.0432096 0.0241271)
(0.283689 0.00644687 0.0265028)
(0.269831 -0.0168375 0.0295933)
(0.265649 -0.0388668 0.0264879)
(0.242806 -0.0606453 0.0167409)
(0.225671 -0.0878266 0.0102906)
(0.197495 -0.112695 0.00474168)
(0.224327 -0.139766 0.00776083)
(0.290252 -0.160141 0.000334314)
(0.27012 -0.154346 -0.00604011)
(0.226448 -0.150803 0.00180591)
(0.204026 -0.151534 0.00486315)
(0.163768 -0.138021 0.0134465)
(0.142316 -0.146941 0.015801)
(0.100563 -0.130701 0.024992)
(0.0377174 -0.140514 0.0227368)
(-0.0336877 -0.179421 0.0146376)
(-0.0509758 -0.224144 0.00269266)
(-0.113852 -0.247077 0.00103768)
(-0.155774 -0.315631 0.0199096)
(-0.229461 -0.37862 0.0424923)
(-0.291117 -0.57892 0.0694042)
(-0.432008 -0.87016 0.123042)
(-0.579742 -1.44181 0.153171)
(-0.748045 -2.0343 0.154573)
(-0.769543 -2.66523 0.0696884)
(-0.569238 -2.70247 0.0218201)
(-0.218218 -2.01614 -0.045186)
(-0.00394808 0.0645571 0.00508337)
(0.00653521 0.121688 0.00238152)
(0.0294896 0.168981 0.00102048)
(0.0858942 0.202969 -0.00010902)
(0.151008 0.214836 -0.00256518)
(0.191305 0.233097 -0.00224655)
(0.220642 0.229146 -0.000723631)
(0.252661 0.199914 0.00100545)
(0.278403 0.167147 0.00515909)
(0.294519 0.126115 0.0100589)
(0.30159 0.0886141 0.0134725)
(0.304484 0.0502793 0.0208233)
(0.297243 0.015046 0.0241863)
(0.293732 -0.0126937 0.0314387)
(0.288499 -0.0337306 0.0310705)
(0.280381 -0.0596073 0.0281604)
(0.258381 -0.0821915 0.017108)
(0.239284 -0.106433 0.0132552)
(0.211445 -0.133481 0.00735013)
(0.23899 -0.15553 0.00888761)
(0.321927 -0.182232 -0.000895106)
(0.315898 -0.170351 -0.00875234)
(0.267664 -0.165912 0.000262793)
(0.252112 -0.163231 0.00451644)
(0.207121 -0.14355 0.0128525)
(0.192633 -0.147521 0.0210583)
(0.149604 -0.115944 0.0312467)
(0.0548913 -0.12142 0.0295117)
(-0.0327957 -0.147142 0.0199612)
(-0.0449724 -0.204414 0.00423427)
(-0.10861 -0.22528 -0.00404237)
(-0.138817 -0.304229 0.00983939)
(-0.231945 -0.347824 0.0294184)
(-0.296869 -0.531313 0.0728715)
(-0.473919 -0.805166 0.120646)
(-0.634173 -1.40793 0.160884)
(-0.837759 -2.09141 0.17409)
(-0.893527 -2.86095 0.0761759)
(-0.709112 -3.02023 0.0136777)
(-0.294508 -2.49517 -0.0804765)
(-0.00121417 0.0471744 0.00558402)
(2.53917e-05 0.0935625 0.00390841)
(0.0117705 0.135083 0.00164878)
(0.0503742 0.161179 0.00115636)
(0.110352 0.168621 -0.000478289)
(0.164318 0.165411 -0.000932917)
(0.188305 0.172134 -5.1508e-05)
(0.217886 0.141954 0.00195689)
(0.249046 0.113666 0.00457895)
(0.270638 0.076764 0.0106938)
(0.286941 0.0421896 0.0165091)
(0.293557 0.00647281 0.0216689)
(0.29694 -0.0176678 0.0296843)
(0.302826 -0.0399925 0.0313352)
(0.293934 -0.0631205 0.0267554)
(0.290366 -0.0872035 0.0218415)
(0.270497 -0.108443 0.0139321)
(0.250658 -0.131525 0.0151019)
(0.225468 -0.157307 0.00761767)
(0.251111 -0.177255 0.00819098)
(0.352565 -0.206737 -0.00122516)
(0.363168 -0.192747 -0.011638)
(0.308564 -0.186072 -0.000651879)
(0.302251 -0.178823 0.00499055)
(0.255425 -0.153744 0.0135803)
(0.249815 -0.146853 0.0264906)
(0.209649 -0.112343 0.0347919)
(0.0917106 -0.10012 0.0320784)
(-0.0253045 -0.119474 0.0306089)
(-0.0301722 -0.165693 0.00963072)
(-0.102266 -0.194042 -0.000850129)
(-0.128617 -0.279878 -0.00115774)
(-0.21018 -0.320907 0.0278484)
(-0.281412 -0.502053 0.0449876)
(-0.474431 -0.737858 0.123375)
(-0.671149 -1.3395 0.166007)
(-0.927443 -2.07091 0.185378)
(-1.00967 -3.00866 0.0858035)
(-0.882027 -3.33219 -0.00696549)
(-0.382311 -3.06349 -0.149107)
(-0.00841055 0.0550267 0.00542861)
(-0.00976989 0.106809 0.00508764)
(-0.0136841 0.136215 0.00478114)
(0.00911494 0.159974 -0.00513936)
(0.0616648 0.163857 0.000397762)
(0.130412 0.136772 -0.00296776)
(0.164118 0.138626 -0.00022277)
(0.18749 0.107215 0.00134699)
(0.228747 0.0792771 0.00443221)
(0.255911 0.0388292 0.00901387)
(0.277179 0.00912438 0.018396)
(0.298281 -0.0184496 0.0263576)
(0.311062 -0.0376748 0.0251737)
(0.314801 -0.0619921 0.0193715)
(0.311061 -0.0807544 0.0221374)
(0.307655 -0.103813 0.0213063)
(0.289485 -0.125007 0.0187755)
(0.269246 -0.145408 0.0170234)
(0.246832 -0.171476 0.00965286)
(0.270327 -0.190753 0.00708096)
(0.389392 -0.220186 -0.00122015)
(0.419587 -0.208141 -0.0148528)
(0.362758 -0.198152 -0.00200756)
(0.367356 -0.189319 0.00517154)
(0.322259 -0.159647 0.0130869)
(0.32229 -0.143327 0.0313078)
(0.289277 -0.101915 0.0372818)
(0.143859 -0.0815541 0.0330101)
(0.00558704 -0.0827843 0.0417392)
(-0.00461824 -0.133902 0.0131404)
(-0.0958129 -0.153548 0.00477488)
(-0.10526 -0.236246 0.00127882)
(-0.204741 -0.267743 0.0139895)
(-0.247343 -0.457627 0.0415437)
(-0.45626 -0.658138 0.0930203)
(-0.663869 -1.22953 0.158673)
(-1.00946 -1.97112 0.199316)
(-1.13256 -3.0498 0.0865637)
(-1.08073 -3.61166 -0.0530598)
(-0.507381 -3.68976 -0.262832)
(-0.00166307 0.0553629 0.00509)
(-0.0204008 0.0867327 0.00811507)
(-0.0380861 0.115191 0.0079239)
(-0.0246306 0.114779 0.00552454)
(-0.00269277 0.123505 -0.00852769)
(0.0721606 0.0836269 0.00120085)
(0.121116 0.0730479 -4.92228e-05)
(0.146392 0.0436759 0.00414157)
(0.191251 0.0151161 0.00580207)
(0.228562 -0.0137191 0.0137304)
(0.270581 -0.03474 0.0202991)
(0.298374 -0.0566004 0.0217092)
(0.31523 -0.0764867 0.0196447)
(0.328419 -0.0945103 0.021277)
(0.32585 -0.109627 0.0212765)
(0.325164 -0.126505 0.0209475)
(0.312724 -0.146753 0.0238141)
(0.29516 -0.164625 0.0210796)
(0.276243 -0.191528 0.0126067)
(0.299768 -0.212201 0.00759563)
(0.436242 -0.240894 -0.00114219)
(0.488346 -0.234883 -0.0198338)
(0.428565 -0.219611 -0.00335104)
(0.444729 -0.207011 0.00569252)
(0.405329 -0.168887 0.0138248)
(0.417464 -0.139796 0.0340039)
(0.386969 -0.086628 0.0370019)
(0.231116 -0.0694552 0.0300201)
(0.0517128 -0.0479207 0.0449518)
(0.0443841 -0.10693 0.0312617)
(-0.0471947 -0.113581 0.02118)
(-0.0507385 -0.213036 0.00653017)
(-0.16766 -0.220154 0.018797)
(-0.198077 -0.400977 0.0349215)
(-0.378606 -0.594542 0.0800903)
(-0.587283 -1.1269 0.114242)
(-1.02289 -1.84457 0.177521)
(-1.24021 -3.03727 0.106464)
(-1.33678 -3.83134 -0.111515)
(-0.626602 -4.36444 -0.426099)
(-0.0353973 0.0771593 -0.000674535)
(-0.0558699 0.151119 0.00928836)
(-0.0824006 0.143355 0.00801188)
(-0.0771529 0.144849 0.00259498)
(-0.0512605 0.115137 5.51268e-05)
(0.0188974 0.0905359 -0.0135299)
(0.0890878 0.042168 -0.00332326)
(0.121393 0.0136167 -0.000311807)
(0.185631 -0.0145303 0.00691564)
(0.240522 -0.0389222 0.00713184)
(0.286115 -0.063416 0.00916547)
(0.324411 -0.0877862 0.00631925)
(0.352603 -0.105193 0.00922499)
(0.371384 -0.122719 0.0106773)
(0.377791 -0.13496 0.0162647)
(0.378675 -0.145575 0.0209454)
(0.367485 -0.15894 0.0277399)
(0.353601 -0.174286 0.0212874)
(0.338301 -0.198286 0.018417)
(0.364206 -0.225912 0.0100344)
(0.517064 -0.249788 0.00431063)
(0.597108 -0.256255 -0.0224378)
(0.544026 -0.23291 -0.00535319)
(0.575465 -0.218956 0.00406453)
(0.545821 -0.172178 0.01377)
(0.567597 -0.132677 0.0288983)
(0.529038 -0.0699386 0.0330237)
(0.358528 -0.0623163 0.023331)
(0.152686 -0.0254219 0.0452334)
(0.137788 -0.0660279 0.0346024)
(0.0175138 -0.0680385 0.0370882)
(0.0453126 -0.162152 0.0282427)
(-0.0728368 -0.180218 0.0220563)
(-0.117319 -0.342204 0.0323838)
(-0.308744 -0.454459 0.0887956)
(-0.449952 -0.981338 0.0900957)
(-0.978185 -1.60961 0.135645)
(-1.25712 -2.88337 0.0655348)
(-1.58804 -3.94375 -0.141655)
(-0.753566 -4.95341 -0.660978)
(0.00520309 0.227228 -0.00624404)
(-0.0653441 0.184019 0.00498875)
(-0.134351 0.185985 0.00605134)
(-0.132704 0.101596 0.00481707)
(-0.118781 0.0786882 -0.00209585)
(-0.0368797 0.0347153 -0.0172577)
(0.0359764 -0.00671832 -0.010573)
(0.110923 -0.0265271 -0.00719957)
(0.18769 -0.0499394 -0.00800845)
(0.255469 -0.0768391 -0.00698391)
(0.321416 -0.097733 -0.00827353)
(0.377607 -0.117036 -0.0039763)
(0.420608 -0.132371 -0.00038533)
(0.456416 -0.145074 0.00447775)
(0.475884 -0.154049 0.0100431)
(0.489874 -0.161028 0.0161638)
(0.488141 -0.166067 0.0219703)
(0.482363 -0.174329 0.026468)
(0.471832 -0.201892 0.022242)
(0.50638 -0.234575 0.0188982)
(0.677354 -0.24962 0.0153435)
(0.790158 -0.276566 -0.0168714)
(0.746299 -0.248556 -0.00518769)
(0.790963 -0.22706 0.0054196)
(0.771912 -0.171608 0.0106072)
(0.80697 -0.121898 0.0228705)
(0.749889 -0.0503012 0.0251016)
(0.579202 -0.0575158 0.0150975)
(0.356879 -0.00635851 0.0380321)
(0.345572 -0.0426412 0.0321331)
(0.21251 -0.0346905 0.0380904)
(0.235261 -0.102212 0.0391882)
(0.101088 -0.147482 0.0425932)
(0.137382 -0.286901 0.0584879)
(-0.0808612 -0.378551 0.0747968)
(-0.158871 -0.843953 0.101043)
(-0.698152 -1.40475 0.0953299)
(-1.06879 -2.67335 0.0277251)
(-1.71612 -3.96876 -0.267971)
(-0.743599 -5.44528 -0.958235)
(-0.202986 0.0904579 -0.0236882)
(-0.270243 0.307728 -0.0292531)
(-0.238227 0.273116 -0.0338081)
(-0.218368 0.225759 -0.033943)
(-0.111611 0.0941246 -0.0432083)
(-0.0145604 0.0605637 -0.0528844)
(0.125489 0.00757049 -0.0554702)
(0.218995 -0.0230692 -0.0605888)
(0.318134 -0.0487642 -0.0558969)
(0.414867 -0.0729271 -0.0552605)
(0.505708 -0.0938625 -0.0475635)
(0.586962 -0.112566 -0.0417832)
(0.654367 -0.124816 -0.0325922)
(0.711622 -0.137204 -0.0227241)
(0.751418 -0.144938 -0.0111755)
(0.782853 -0.150459 0.00206358)
(0.798102 -0.15042 0.00893658)
(0.801948 -0.152915 0.0190064)
(0.800759 -0.167066 0.0302131)
(0.867865 -0.212943 0.0194355)
(1.0522 -0.213597 0.0178892)
(1.20585 -0.257091 -0.00656168)
(1.1915 -0.23725 -0.00622357)
(1.25384 -0.213121 -0.00891249)
(1.2325 -0.154174 0.000495116)
(1.27618 -0.108942 0.00149027)
(1.18015 -0.0414383 0.00463895)
(1.01236 -0.0604671 -0.00179029)
(0.771358 -0.0050161 0.025205)
(0.774401 -0.0313232 0.0224949)
(0.625345 -0.0191622 0.0370869)
(0.66933 -0.0628727 0.0280463)
(0.488164 -0.0691046 0.0461628)
(0.552823 -0.157486 0.0599087)
(0.256829 -0.235294 0.087073)
(0.276142 -0.499127 0.13227)
(-0.223367 -0.938381 0.0959346)
(-0.432728 -2.25127 0.0179023)
(-1.55312 -3.77139 -0.419148)
(-0.610185 -5.44806 -1.34725)
(-0.404848 0.742552 -0.131211)
(-0.20766 0.226708 -0.0860248)
(-0.201717 0.272719 -0.0772138)
(-0.0406161 0.213321 -0.065202)
(0.108523 0.134533 -0.0242531)
(0.380509 0.0931258 -0.0836819)
(0.551057 0.0528127 -0.075147)
(0.72279 0.0217182 -0.0804567)
(0.875701 0.000479851 -0.086357)
(1.01651 -0.017639 -0.0884612)
(1.14787 -0.0322277 -0.0832804)
(1.27332 -0.0460806 -0.072119)
(1.37572 -0.0578815 -0.0602873)
(1.47023 -0.0688777 -0.0501289)
(1.54001 -0.0776817 -0.0373706)
(1.60381 -0.0832583 -0.0237114)
(1.64353 -0.0770344 -0.0089192)
(1.68618 -0.0738609 0.00263422)
(1.72045 -0.09096 0.0117626)
(1.82667 -0.144787 0.0230901)
(2.04166 -0.145676 0.027206)
(2.24526 -0.19686 0.00625527)
(2.23514 -0.194685 -0.0105955)
(2.30348 -0.171516 -0.018331)
(2.2361 -0.11214 -0.0129678)
(2.26836 -0.0662646 -0.0149075)
(2.12484 -0.0062937 -0.0138529)
(1.99515 -0.0209524 -0.0217225)
(1.73383 0.0277069 0.00373637)
(1.80703 -0.00133691 0.00700993)
(1.63822 0.00423571 0.0160732)
(1.76766 -0.0374393 0.0118207)
(1.53345 -0.029425 0.0180597)
(1.67818 -0.0635318 0.0171482)
(1.29883 -0.108885 0.024117)
(1.52581 -0.263022 0.0595071)
(0.852961 -0.557907 0.015005)
(1.10804 -1.65287 0.0680369)
(-0.215833 -3.21485 -0.349812)
(0.0879853 -5.0466 -1.70319)
(1.15002 1.15815 -0.0996631)
(1.63937 0.487271 -0.0933021)
(2.34303 0.410181 -0.0920507)
(2.66586 0.229845 -0.0799271)
(2.93461 0.196368 -0.0615152)
(3.18913 0.111672 -0.0550745)
(3.41321 0.077925 -0.0545852)
(3.57729 0.050354 -0.0569632)
(3.71525 0.0313433 -0.0587057)
(3.85292 0.0153053 -0.0606925)
(3.98057 0.00935566 -0.0621903)
(4.10669 0.00126699 -0.0629719)
(4.20688 -0.00478713 -0.0609023)
(4.30817 -0.0110738 -0.0567885)
(4.38027 -0.0164526 -0.0493354)
(4.45511 -0.0213775 -0.0391186)
(4.49389 -0.0258779 -0.033206)
(4.55736 -0.0186332 -0.0228184)
(4.63027 -0.0236105 -6.36211e-05)
(4.80333 -0.0488887 0.00526528)
(5.01274 -0.0512018 0.0195775)
(5.237 -0.0755287 0.0188552)
(5.19165 -0.0853329 0.00118961)
(5.2233 -0.0765691 -0.0169295)
(5.05142 -0.0563026 -0.0183792)
(5.01041 -0.0391179 -0.0241782)
(4.79112 -0.00539288 -0.0199265)
(4.73428 -0.00377769 -0.0325477)
(4.45645 0.0217387 -0.0169093)
(4.64637 0.0124895 -0.0110259)
(4.4881 0.012935 0.00478864)
(4.7393 -0.00381935 0.00622048)
(4.43252 -0.0165717 0.00372866)
(4.66829 -0.0286687 0.0126571)
(4.12408 -0.0464752 -0.0117083)
(4.41551 -0.137412 0.0320465)
(3.49101 -0.228296 -0.0637949)
(3.90784 -0.583739 0.0100918)
(1.97145 -1.1962 -0.24103)
(1.25596 -2.24652 -1.6273)
(-0.00643599 -0.00983355 0.00975034)
(0.00892548 -0.0119103 -0.00540681)
(0.0244499 -0.00657697 -0.00293009)
(0.036696 -0.00438586 -0.00314634)
(0.0435963 -0.00273577 -0.00217612)
(0.0459522 -0.00272838 -0.00157253)
(0.0452412 -0.0040246 -0.000367657)
(0.0403274 -0.00286708 -0.000118815)
(0.0334674 -0.00820319 0.000827344)
(0.017631 -0.00219504 0.0037811)
(0.0022324 -0.00647422 0.00668338)
(-0.0283967 0.000226999 0.00672465)
(-0.0701995 -0.00552277 0.00593479)
(-0.117213 -0.00708851 0.00514433)
(-0.170672 -0.00690465 0.00129637)
(-0.234432 -0.000826903 -0.00238803)
(-0.286692 0.00594434 -0.00885548)
(-0.346094 0.00245758 -0.0347628)
(-0.380625 -0.0131941 -0.0660718)
(-0.481438 -0.0134458 -0.114798)
(-0.442228 0.021644 -0.148488)
(-0.301116 0.0254807 -0.174041)
(-0.308932 0.0355702 -0.201635)
(-0.32578 0.053343 -0.240929)
(-0.336917 0.0664962 -0.285911)
(-0.312757 0.0788093 -0.323526)
(-0.271147 0.0858866 -0.34144)
(-0.202857 0.0922801 -0.342653)
(-0.133128 0.0981159 -0.3256)
(-0.0585552 0.104096 -0.2926)
(0.0109877 0.107947 -0.238487)
(0.082699 0.107768 -0.195377)
(0.126009 0.0775946 -0.141899)
(0.134469 0.0526517 -0.0841931)
(0.123428 0.0355606 -0.0411806)
(0.0995222 0.0194707 -0.0150434)
(0.0733563 0.00931292 -0.00344154)
(0.0444993 0.003635 -0.000823294)
(0.0211019 0.000359877 0.00207183)
(0.00193082 -0.00252089 0.00401243)
(-0.00287867 -0.0136913 -0.0026419)
(0.0172748 -0.0283221 -0.0149978)
(0.0429055 -0.020343 -0.0159135)
(0.0625916 -0.0112339 -0.0169452)
(0.0728294 -0.00157203 -0.0156946)
(0.0715049 0.00471736 -0.0179901)
(0.0650055 0.0142532 -0.0184953)
(0.0412525 0.0206163 -0.0208703)
(0.0154685 0.0402791 -0.0188919)
(-0.0336388 0.0523366 -0.0133915)
(-0.0943242 0.0658325 -0.0220427)
(-0.189203 0.0782615 -0.0303851)
(-0.313933 0.0988627 -0.0364867)
(-0.439505 0.124922 -0.0476698)
(-0.577257 0.152645 -0.0663842)
(-0.728926 0.17707 -0.0997448)
(-0.882957 0.18857 -0.168442)
(-1.03951 0.193116 -0.234095)
(-1.14081 0.192183 -0.312807)
(-1.24484 0.209747 -0.389239)
(-1.18425 0.262797 -0.436485)
(-1.02453 0.271204 -0.509194)
(-0.976778 0.296875 -0.549874)
(-0.930326 0.31634 -0.583706)
(-0.888016 0.32701 -0.622003)
(-0.802939 0.332726 -0.644383)
(-0.696444 0.333483 -0.642027)
(-0.558039 0.334068 -0.614094)
(-0.419188 0.338715 -0.559767)
(-0.277028 0.34629 -0.487626)
(-0.14204 0.353062 -0.397385)
(-0.0295696 0.346394 -0.311474)
(0.0591451 0.308476 -0.223956)
(0.13355 0.263117 -0.168549)
(0.159759 0.198312 -0.107758)
(0.146368 0.140093 -0.0691533)
(0.119064 0.0966517 -0.0432407)
(0.0797534 0.0672247 -0.0295061)
(0.0431108 0.0437579 -0.0168853)
(0.00889752 0.0188997 -0.00356618)
(0.00262952 -0.0216592 -0.00363161)
(0.0273266 -0.0394431 -0.0203824)
(0.0555365 -0.0271126 -0.027066)
(0.0730625 -0.00506102 -0.0300248)
(0.0753238 0.018393 -0.0339786)
(0.0656327 0.0430546 -0.0365423)
(0.0394713 0.0753393 -0.0345844)
(0.00200726 0.108561 -0.0365351)
(-0.0618338 0.152516 -0.0394306)
(-0.168627 0.188067 -0.0459151)
(-0.289288 0.236384 -0.0520817)
(-0.439337 0.276379 -0.0625607)
(-0.604672 0.335338 -0.0760787)
(-0.786757 0.38247 -0.105553)
(-0.973056 0.417043 -0.132634)
(-1.16314 0.438171 -0.182433)
(-1.31978 0.449451 -0.248922)
(-1.45593 0.466889 -0.319404)
(-1.53678 0.49169 -0.392143)
(-1.60201 0.516194 -0.450308)
(-1.49612 0.548357 -0.470394)
(-1.29176 0.563085 -0.507841)
(-1.20291 0.58781 -0.522242)
(-1.12717 0.587929 -0.519237)
(-1.06684 0.585456 -0.527809)
(-0.973443 0.575797 -0.525785)
(-0.864007 0.562389 -0.505631)
(-0.726905 0.545929 -0.464853)
(-0.591022 0.534207 -0.408692)
(-0.456211 0.525036 -0.341328)
(-0.332746 0.517677 -0.263502)
(-0.214786 0.49908 -0.210818)
(-0.106644 0.473563 -0.159112)
(-0.0286505 0.426791 -0.128912)
(0.0239906 0.350131 -0.101025)
(0.0619488 0.273819 -0.0820611)
(0.0729513 0.210788 -0.0632359)
(0.0578107 0.157262 -0.0479458)
(0.0361528 0.110282 -0.0290093)
(0.00879704 0.0529038 -0.00676422)
(0.00629648 -0.0245215 -0.00945789)
(0.0329167 -0.038132 -0.030239)
(0.0589505 -0.0126987 -0.0416023)
(0.0679291 0.0248088 -0.0485874)
(0.058585 0.0738405 -0.049448)
(0.0346342 0.117537 -0.0507666)
(-0.0109948 0.183421 -0.0521282)
(-0.0900526 0.253354 -0.0506493)
(-0.198325 0.319291 -0.0564506)
(-0.339443 0.389926 -0.061429)
(-0.497192 0.462394 -0.0694936)
(-0.675235 0.523336 -0.0841373)
(-0.863674 0.57008 -0.0939916)
(-1.05186 0.599194 -0.110838)
(-1.22085 0.622057 -0.137448)
(-1.37387 0.641225 -0.182723)
(-1.49115 0.665698 -0.232549)
(-1.59021 0.690408 -0.277102)
(-1.63762 0.724853 -0.316206)
(-1.66859 0.740075 -0.337187)
(-1.53988 0.750511 -0.311247)
(-1.31086 0.746343 -0.312737)
(-1.20132 0.747692 -0.295032)
(-1.1174 0.714768 -0.268066)
(-1.0556 0.691268 -0.256435)
(-0.97349 0.663951 -0.242498)
(-0.88294 0.63228 -0.221889)
(-0.768996 0.599129 -0.193006)
(-0.66015 0.562878 -0.156571)
(-0.551103 0.533518 -0.12912)
(-0.455309 0.514334 -0.103352)
(-0.365624 0.508606 -0.0822325)
(-0.276145 0.490237 -0.0703046)
(-0.189548 0.45601 -0.0763821)
(-0.11557 0.397258 -0.0857828)
(-0.0494423 0.33686 -0.0836949)
(-0.0047758 0.271933 -0.0788577)
(0.0112277 0.219047 -0.0608033)
(0.0182612 0.159453 -0.0392204)
(0.00566061 0.0762224 -0.0102393)
(0.00739983 -0.0185216 -0.0211795)
(0.0379038 -0.0153883 -0.0473316)
(0.0609149 0.0268341 -0.0599569)
(0.0635785 0.0900683 -0.0661692)
(0.034285 0.156732 -0.0672073)
(-0.00605222 0.235612 -0.0650924)
(-0.0674216 0.334154 -0.0644947)
(-0.176136 0.438074 -0.0544347)
(-0.313334 0.53457 -0.0554376)
(-0.477492 0.612923 -0.0568825)
(-0.65075 0.675891 -0.0601626)
(-0.835213 0.715622 -0.0648718)
(-1.00527 0.746526 -0.0721165)
(-1.15737 0.771202 -0.087945)
(-1.28865 0.80082 -0.10411)
(-1.40702 0.827048 -0.12968)
(-1.49098 0.85267 -0.150586)
(-1.55752 0.875105 -0.162199)
(-1.58684 0.903875 -0.164878)
(-1.59844 0.909214 -0.152276)
(-1.4442 0.900343 -0.0949905)
(-1.19479 0.878874 -0.0734923)
(-1.08362 0.852914 -0.0482824)
(-1.01133 0.790991 -0.0176504)
(-0.96029 0.744197 -0.0040159)
(-0.907555 0.691596 -0.000112995)
(-0.8482 0.637563 0.000752925)
(-0.775637 0.582101 0.0047852)
(-0.701703 0.531074 0.00137183)
(-0.620824 0.481142 -0.00859172)
(-0.540028 0.448737 -0.020152)
(-0.469283 0.44018 -0.0358823)
(-0.407013 0.441792 -0.0493942)
(-0.348584 0.449458 -0.0695664)
(-0.268504 0.40596 -0.0909487)
(-0.170867 0.356354 -0.0929484)
(-0.0889692 0.306868 -0.0857301)
(-0.0348325 0.263293 -0.0709417)
(-0.00374209 0.198752 -0.0451031)
(0.00189949 0.0956963 -0.0106569)
(0.012924 -0.00357088 -0.0344408)
(0.0441747 0.0216719 -0.0682527)
(0.0645758 0.0847585 -0.0839265)
(0.0497265 0.174632 -0.0829831)
(0.0109529 0.269801 -0.0779289)
(-0.0316832 0.381585 -0.0694428)
(-0.107588 0.507593 -0.0619109)
(-0.236833 0.612536 -0.0487723)
(-0.403158 0.688502 -0.0429904)
(-0.583253 0.751372 -0.0431973)
(-0.752594 0.8023 -0.0454168)
(-0.905675 0.843259 -0.0463632)
(-1.03761 0.882867 -0.0451235)
(-1.15359 0.914842 -0.0433492)
(-1.24891 0.945126 -0.0408813)
(-1.3335 0.9642 -0.0449257)
(-1.38428 0.986738 -0.0318041)
(-1.42379 1.00339 -0.0336684)
(-1.42351 1.0285 -0.0234031)
(-1.41511 1.03819 -0.0050967)
(-1.26988 1.0311 0.0398489)
(-1.04304 0.96358 0.0644079)
(-0.948815 0.900262 0.0912277)
(-0.904377 0.809927 0.119986)
(-0.88507 0.736585 0.131147)
(-0.860885 0.657275 0.135196)
(-0.829734 0.582001 0.125914)
(-0.780504 0.507254 0.122867)
(-0.743291 0.438948 0.0977629)
(-0.690267 0.381582 0.0656966)
(-0.626947 0.335692 0.0341942)
(-0.562198 0.311983 -0.00290364)
(-0.493754 0.313342 -0.0327756)
(-0.457358 0.346197 -0.0726905)
(-0.403127 0.360117 -0.0999023)
(-0.281445 0.336033 -0.10481)
(-0.159705 0.313441 -0.101101)
(-0.0777462 0.281672 -0.0824313)
(-0.0208238 0.218881 -0.0528535)
(-0.000704936 0.103607 -0.0139487)
(0.0137631 0.0118364 -0.0458065)
(0.0487125 0.0625373 -0.093345)
(0.071389 0.147484 -0.100512)
(0.0590705 0.254906 -0.0914765)
(0.0115317 0.373476 -0.0817406)
(-0.0373447 0.496572 -0.0634796)
(-0.13938 0.618725 -0.0532511)
(-0.306907 0.684936 -0.0289331)
(-0.46909 0.756829 -0.0326141)
(-0.616274 0.825652 -0.030632)
(-0.749088 0.892557 -0.0276733)
(-0.871468 0.951696 -0.0203397)
(-0.975241 0.997603 -0.0104795)
(-1.06324 1.03351 0.00279158)
(-1.13258 1.06053 0.0167029)
(-1.18634 1.07819 0.0247253)
(-1.21245 1.0994 0.039682)
(-1.22972 1.1071 0.0560667)
(-1.21633 1.12558 0.065387)
(-1.20667 1.11501 0.0727327)
(-1.12162 1.09676 0.106014)
(-0.93046 0.963682 0.143178)
(-0.843288 0.8669 0.158863)
(-0.827651 0.758382 0.182361)
(-0.832575 0.67486 0.186456)
(-0.838108 0.595441 0.183622)
(-0.837903 0.519808 0.167549)
(-0.824969 0.439466 0.152314)
(-0.7997 0.354746 0.124389)
(-0.762149 0.286711 0.0815064)
(-0.711095 0.234758 0.0520129)
(-0.651039 0.208362 0.0213962)
(-0.581899 0.20735 -0.0149376)
(-0.534941 0.23844 -0.0451552)
(-0.490045 0.302489 -0.104209)
(-0.371234 0.320889 -0.11234)
(-0.218399 0.319923 -0.114619)
(-0.107114 0.301784 -0.0925581)
(-0.0322633 0.239332 -0.0605635)
(-0.0016783 0.113791 -0.0160275)
(0.0161527 0.0307455 -0.0607548)
(0.0526231 0.114397 -0.115333)
(0.0780226 0.217946 -0.115895)
(0.0622569 0.333101 -0.0904766)
(0.0153141 0.446014 -0.0630798)
(-0.0455806 0.570399 -0.0399455)
(-0.177683 0.653185 -0.0307018)
(-0.325718 0.73092 -0.0154308)
(-0.447055 0.82267 -0.0192954)
(-0.573285 0.906529 -0.0114897)
(-0.681662 0.975426 -0.00388644)
(-0.780452 1.0283 0.00954004)
(-0.859179 1.06972 0.0299233)
(-0.922813 1.09879 0.0485651)
(-0.969017 1.11748 0.0662979)
(-1.00262 1.1258 0.0834394)
(-1.01601 1.12813 0.100459)
(-1.02191 1.11434 0.109094)
(-1.01425 1.10342 0.113672)
(-1.01177 1.06196 0.105163)
(-0.996836 1.02812 0.116178)
(-0.867051 0.898449 0.147088)
(-0.783683 0.778532 0.157691)
(-0.787423 0.681605 0.174688)
(-0.814598 0.60251 0.179091)
(-0.84323 0.529157 0.17558)
(-0.866518 0.454318 0.16758)
(-0.873911 0.370469 0.160634)
(-0.866554 0.280799 0.125807)
(-0.834806 0.200119 0.100069)
(-0.792401 0.139225 0.0692168)
(-0.730739 0.104654 0.0363363)
(-0.658744 0.103788 0.00032037)
(-0.594196 0.129378 -0.0313334)
(-0.555172 0.21903 -0.0739423)
(-0.445789 0.287341 -0.124027)
(-0.274009 0.31369 -0.125426)
(-0.138893 0.308476 -0.107641)
(-0.0442787 0.252147 -0.0690625)
(-0.00276255 0.120027 -0.0204226)
(0.0165034 0.0613484 -0.0750138)
(0.0570864 0.180628 -0.136672)
(0.0867028 0.303453 -0.133614)
(0.0731968 0.420815 -0.0955805)
(0.0297339 0.529393 -0.0599453)
(-0.0496324 0.634376 -0.036971)
(-0.168561 0.710539 -0.0225455)
(-0.284545 0.815892 -0.00816827)
(-0.389658 0.901492 0.000347252)
(-0.491957 0.976368 0.0124628)
(-0.58283 1.02825 0.0299164)
(-0.654845 1.06812 0.0514957)
(-0.710133 1.09318 0.0743541)
(-0.756974 1.10303 0.0932737)
(-0.789059 1.09979 0.108)
(-0.811342 1.08212 0.12049)
(-0.823118 1.05918 0.129028)
(-0.837203 1.02255 0.130634)
(-0.850896 0.987898 0.125573)
(-0.865007 0.934764 0.109559)
(-0.895402 0.892021 0.0979122)
(-0.843377 0.809181 0.115519)
(-0.774884 0.67987 0.133254)
(-0.78304 0.60466 0.143438)
(-0.82322 0.531185 0.153708)
(-0.86521 0.460989 0.152871)
(-0.903048 0.383618 0.166315)
(-0.927493 0.289839 0.158249)
(-0.928436 0.19845 0.153375)
(-0.908257 0.111461 0.115391)
(-0.867703 0.055737 0.0744435)
(-0.805027 0.025435 0.0429559)
(-0.733943 0.0166619 0.0116794)
(-0.646678 0.051061 -0.0143629)
(-0.585908 0.116011 -0.0518562)
(-0.497296 0.229191 -0.0894067)
(-0.325465 0.285207 -0.125572)
(-0.164595 0.311245 -0.10933)
(-0.0513731 0.262993 -0.0740914)
(-0.00324117 0.129095 -0.0216094)
(0.0173613 0.0957209 -0.0845997)
(0.0646795 0.256345 -0.155961)
(0.103027 0.392741 -0.149061)
(0.0904755 0.508511 -0.101428)
(0.0406911 0.617055 -0.0588115)
(-0.031639 0.691533 -0.0327921)
(-0.122424 0.784247 -0.0149779)
(-0.217598 0.87838 0.00327212)
(-0.307505 0.953321 0.022465)
(-0.393453 1.01748 0.0443472)
(-0.461852 1.05395 0.06201)
(-0.516323 1.07719 0.0874295)
(-0.561671 1.07649 0.112216)
(-0.595028 1.0565 0.130572)
(-0.621814 1.02523 0.140327)
(-0.643014 0.97709 0.144515)
(-0.66098 0.925761 0.143432)
(-0.685143 0.869849 0.135585)
(-0.720262 0.825604 0.121628)
(-0.763264 0.781449 0.0981699)
(-0.823966 0.742809 0.0758664)
(-0.845131 0.699338 0.0793532)
(-0.793552 0.593227 0.108928)
(-0.786661 0.532675 0.115443)
(-0.832962 0.460257 0.134661)
(-0.87779 0.390026 0.139253)
(-0.927636 0.301013 0.165146)
(-0.959453 0.208122 0.181182)
(-0.974319 0.10736 0.166855)
(-0.949899 0.039776 0.136291)
(-0.914369 -0.0321383 0.09515)
(-0.875899 -0.0953955 0.0514329)
(-0.806683 -0.120246 0.0141602)
(-0.731251 -0.0886884 -0.017443)
(-0.649573 -0.00947789 -0.0358201)
(-0.542499 0.124145 -0.0730227)
(-0.36969 0.230575 -0.108081)
(-0.190458 0.291194 -0.111779)
(-0.063416 0.26568 -0.0757013)
(-0.00292026 0.133921 -0.0237785)
(0.0190121 0.140306 -0.0906072)
(0.0738215 0.344841 -0.171741)
(0.120736 0.489956 -0.163663)
(0.122649 0.601987 -0.107645)
(0.0662579 0.694673 -0.0622457)
(0.00305352 0.768518 -0.0299054)
(-0.059098 0.849668 -0.00771123)
(-0.140058 0.92463 0.0181421)
(-0.201544 0.98042 0.0424655)
(-0.27176 1.03181 0.0657533)
(-0.338163 1.0582 0.0946811)
(-0.383061 1.06095 0.122147)
(-0.422143 1.03419 0.142631)
(-0.452227 0.988709 0.157646)
(-0.480567 0.929945 0.159946)
(-0.510727 0.861578 0.154565)
(-0.540694 0.793397 0.143614)
(-0.578979 0.729865 0.129759)
(-0.628803 0.682055 0.112872)
(-0.691617 0.644557 0.0907184)
(-0.768718 0.614929 0.0697017)
(-0.827482 0.587432 0.0667268)
(-0.792788 0.52441 0.0916229)
(-0.777351 0.461949 0.102207)
(-0.820151 0.389618 0.125535)
(-0.870366 0.31051 0.151522)
(-0.928514 0.217416 0.17413)
(-0.973931 0.115264 0.19537)
(-0.977796 0.0326875 0.187657)
(-0.986894 -0.054468 0.163794)
(-0.98441 -0.166506 0.131475)
(-0.937994 -0.238006 0.086531)
(-0.86441 -0.275594 0.0390675)
(-0.770192 -0.255821 -0.00536941)
(-0.680937 -0.164579 -0.0298466)
(-0.581106 -0.0137397 -0.0506204)
(-0.408448 0.132934 -0.0739471)
(-0.212187 0.243726 -0.110557)
(-0.0678997 0.256509 -0.0728759)
(-0.00400679 0.13684 -0.0237109)
(0.0210595 0.181214 -0.0936319)
(0.0835459 0.428715 -0.184648)
(0.143315 0.584003 -0.177484)
(0.145889 0.684422 -0.114615)
(0.104293 0.758575 -0.0648258)
(0.0534345 0.837771 -0.0269341)
(0.00860857 0.900198 0.00279851)
(-0.049404 0.959451 0.0326021)
(-0.112741 1.00154 0.059255)
(-0.161867 1.02144 0.0891022)
(-0.201922 1.0309 0.116019)
(-0.252739 1.01742 0.142014)
(-0.299205 0.979108 0.163453)
(-0.329834 0.913734 0.173299)
(-0.365339 0.83989 0.165374)
(-0.404873 0.760881 0.150474)
(-0.449314 0.691078 0.131995)
(-0.499843 0.631386 0.114794)
(-0.56207 0.589157 0.0984087)
(-0.635345 0.55487 0.0795489)
(-0.715763 0.527249 0.0658979)
(-0.779836 0.5011 0.0642132)
(-0.756098 0.461342 0.0856095)
(-0.737464 0.394956 0.0962825)
(-0.778146 0.318663 0.126228)
(-0.829917 0.232962 0.153083)
(-0.899442 0.135226 0.193255)
(-0.930242 0.0426668 0.20179)
(-0.966944 -0.0507088 0.197431)
(-0.99941 -0.185964 0.182682)
(-0.987958 -0.284134 0.153569)
(-0.9727 -0.387669 0.116137)
(-0.927074 -0.462452 0.0647904)
(-0.849064 -0.475101 0.0106347)
(-0.753063 -0.404321 -0.0297689)
(-0.644282 -0.20653 -0.0414921)
(-0.456949 0.00890073 -0.0577162)
(-0.232772 0.163824 -0.0772788)
(-0.072972 0.232484 -0.0696848)
(-0.00263575 0.135167 -0.0207413)
(0.0221735 0.222566 -0.094097)
(0.0933869 0.511714 -0.193598)
(0.160181 0.674115 -0.189656)
(0.177263 0.76074 -0.123475)
(0.156241 0.830845 -0.0680213)
(0.122073 0.894249 -0.0222956)
(0.0756218 0.951559 0.0131034)
(0.0305724 0.981914 0.0458811)
(-0.00613298 1.01265 0.0766662)
(-0.0519291 1.02228 0.105099)
(-0.0987632 1.00405 0.131189)
(-0.131181 0.963383 0.15377)
(-0.174049 0.911851 0.168304)
(-0.224232 0.843627 0.173963)
(-0.268808 0.76214 0.161062)
(-0.320496 0.681429 0.138058)
(-0.374892 0.614857 0.115436)
(-0.434155 0.562703 0.0992626)
(-0.50114 0.524978 0.0847913)
(-0.576046 0.491234 0.0737027)
(-0.648978 0.462602 0.0661267)
(-0.70162 0.432827 0.0681182)
(-0.681821 0.407824 0.0866708)
(-0.667908 0.337943 0.0939254)
(-0.704555 0.254224 0.120001)
(-0.76198 0.164551 0.153996)
(-0.817996 0.0600018 0.178604)
(-0.868472 -0.0254108 0.189968)
(-0.924171 -0.163846 0.192233)
(-0.946488 -0.283756 0.182084)
(-0.994368 -0.435523 0.162685)
(-1.01142 -0.587511 0.121369)
(-0.978983 -0.701793 0.0791572)
(-0.897324 -0.752904 0.0320342)
(-0.769532 -0.706334 -0.0170838)
(-0.660201 -0.515815 -0.0404413)
(-0.513043 -0.190465 -0.0456418)
(-0.273845 0.0565713 -0.0546152)
(-0.0732396 0.182981 -0.0656283)
(-0.00362697 0.131965 -0.0194997)
(0.0215482 0.245443 -0.0958438)
(0.0966773 0.573648 -0.203403)
(0.173688 0.74605 -0.207763)
(0.207685 0.82936 -0.140646)
(0.20884 0.884525 -0.0729686)
(0.189229 0.929173 -0.0170108)
(0.152775 0.97134 0.0238137)
(0.110764 0.998795 0.0594552)
(0.0746461 1.01246 0.0910312)
(0.0376802 1.00307 0.11804)
(0.0094368 0.973129 0.140209)
(-0.0328184 0.924226 0.155907)
(-0.0754627 0.842709 0.165018)
(-0.121579 0.772076 0.161348)
(-0.186524 0.696983 0.147941)
(-0.246798 0.618211 0.121749)
(-0.307279 0.5589 0.099688)
(-0.367755 0.511383 0.0856411)
(-0.43404 0.474501 0.0743455)
(-0.501352 0.439116 0.0692837)
(-0.561207 0.40737 0.0673757)
(-0.590583 0.381028 0.0749564)
(-0.577331 0.363398 0.089887)
(-0.581041 0.289803 0.0964503)
(-0.616615 0.201943 0.116307)
(-0.669585 0.105727 0.139898)
(-0.716829 0.0162435 0.156663)
(-0.771535 -0.103153 0.168257)
(-0.821395 -0.227089 0.17272)
(-0.893658 -0.380777 0.169617)
(-0.952039 -0.567617 0.143784)
(-0.977706 -0.73536 0.119762)
(-0.973266 -0.884509 0.0874026)
(-0.929467 -0.976467 0.0489909)
(-0.818511 -0.978427 0.00634712)
(-0.665503 -0.843375 -0.034522)
(-0.518166 -0.516074 -0.0442468)
(-0.31334 -0.0884311 -0.0459615)
(-0.0888356 0.102393 -0.0518561)
(0.00669895 0.118544 -0.0195765)
(0.0205799 0.266963 -0.0901772)
(0.101759 0.634101 -0.204587)
(0.189423 0.823965 -0.214129)
(0.239398 0.904516 -0.152739)
(0.258115 0.944563 -0.0765045)
(0.25445 0.966168 -0.0137485)
(0.229992 0.986568 0.031395)
(0.197785 1.00183 0.0668148)
(0.1682 1.00748 0.10187)
(0.131769 0.992048 0.126155)
(0.0927584 0.954652 0.14285)
(0.052129 0.884401 0.152436)
(0.011263 0.806541 0.150584)
(-0.0331732 0.709029 0.140671)
(-0.10357 0.6403 0.123611)
(-0.177921 0.567911 0.105911)
(-0.238293 0.513785 0.083798)
(-0.298309 0.469428 0.0743739)
(-0.356873 0.430406 0.0654852)
(-0.413612 0.392592 0.0647249)
(-0.45246 0.3612 0.0688004)
(-0.463542 0.345366 0.0829252)
(-0.465808 0.311775 0.0858782)
(-0.493176 0.239946 0.0947481)
(-0.527465 0.155405 0.0969443)
(-0.560911 0.060393 0.110785)
(-0.611383 -0.0298553 0.123568)
(-0.660352 -0.144919 0.136795)
(-0.729646 -0.277911 0.145801)
(-0.805867 -0.454164 0.137891)
(-0.869837 -0.630996 0.130357)
(-0.920449 -0.826908 0.115376)
(-0.940276 -1.01704 0.0928407)
(-0.923723 -1.17405 0.061402)
(-0.845229 -1.23646 0.0223286)
(-0.703595 -1.15176 -0.0128705)
(-0.508326 -0.86488 -0.0423072)
(-0.332564 -0.360604 -0.0368213)
(-0.117524 0.0148544 -0.0259024)
(0.012146 0.0967391 -0.0166865)
(0.0183975 0.260017 -0.0867608)
(0.104372 0.661523 -0.201542)
(0.202691 0.86711 -0.215205)
(0.264899 0.951444 -0.152556)
(0.297125 0.982987 -0.0781991)
(0.303625 0.985293 -0.012104)
(0.295811 0.990138 0.0299128)
(0.276917 0.991107 0.0680565)
(0.250269 0.981223 0.0941243)
(0.217396 0.95704 0.113752)
(0.178948 0.913104 0.132589)
(0.132282 0.851888 0.135657)
(0.0767294 0.771322 0.127726)
(0.0301326 0.679327 0.112929)
(-0.0288551 0.59443 0.0976706)
(-0.104584 0.536505 0.084496)
(-0.166248 0.483101 0.0724708)
(-0.221109 0.439041 0.0631296)
(-0.273213 0.397168 0.0571172)
(-0.314887 0.361103 0.0611731)
(-0.332564 0.336332 0.0738716)
(-0.34736 0.307121 0.0777957)
(-0.372315 0.257372 0.0816749)
(-0.408953 0.190375 0.0816788)
(-0.445065 0.120829 0.081779)
(-0.473911 0.0277505 0.0820204)
(-0.507757 -0.0641541 0.092293)
(-0.563683 -0.177067 0.104818)
(-0.63412 -0.31846 0.10847)
(-0.706784 -0.476835 0.11328)
(-0.777022 -0.663396 0.112556)
(-0.835373 -0.874395 0.106768)
(-0.876013 -1.09963 0.0923909)
(-0.885292 -1.30994 0.0678024)
(-0.839448 -1.45062 0.0342223)
(-0.726197 -1.44706 -0.00284285)
(-0.530482 -1.21097 -0.0325864)
(-0.325804 -0.715941 -0.043)
(-0.113668 -0.122734 -0.0221658)
(0.00342518 0.053537 -0.0085224)
(0.0192033 0.26432 -0.0706273)
(0.108935 0.698293 -0.187943)
(0.217993 0.918756 -0.205682)
(0.296534 1.00338 -0.146093)
(0.338044 1.02434 -0.0646317)
(0.359003 1.01018 0.00037197)
(0.36694 1.00516 0.0402806)
(0.351415 0.992306 0.0671419)
(0.331559 0.976202 0.0839411)
(0.301951 0.943408 0.0957574)
(0.265834 0.893211 0.098158)
(0.219343 0.825212 0.104487)
(0.162631 0.747519 0.100047)
(0.100928 0.667302 0.0855936)
(0.0390832 0.582932 0.0725384)
(-0.0278662 0.521648 0.0631848)
(-0.0934533 0.467916 0.0563833)
(-0.143445 0.427221 0.0526483)
(-0.183946 0.387093 0.054371)
(-0.210536 0.352439 0.0611337)
(-0.232282 0.315983 0.0702552)
(-0.261113 0.263747 0.0731559)
(-0.293309 0.208771 0.0754123)
(-0.330107 0.147838 0.0730655)
(-0.372827 0.0866081 0.0691143)
(-0.399376 0.00348516 0.0640898)
(-0.435456 -0.0934514 0.0638691)
(-0.491563 -0.207705 0.071196)
(-0.551839 -0.334458 0.0790925)
(-0.620579 -0.486489 0.0875601)
(-0.688879 -0.667784 0.094042)
(-0.754633 -0.888941 0.0957079)
(-0.805943 -1.13641 0.089337)
(-0.834435 -1.39421 0.0722053)
(-0.815192 -1.60418 0.043622)
(-0.733737 -1.69145 0.00769426)
(-0.558124 -1.53956 -0.0242415)
(-0.325777 -1.06068 -0.0349453)
(-0.110515 -0.335381 -0.0229315)
(-0.0114952 0.0283924 -0.00316088)
(0.0128834 0.24695 -0.0815997)
(0.0969174 0.715496 -0.194445)
(0.213875 0.954692 -0.218408)
(0.306019 1.04812 -0.162184)
(0.365763 1.05432 -0.0795342)
(0.404874 1.03918 -0.0137289)
(0.426953 1.01578 0.0278659)
(0.424719 0.992575 0.0521628)
(0.409199 0.967948 0.0648945)
(0.380336 0.938013 0.0721311)
(0.342885 0.8927 0.0753381)
(0.292644 0.831728 0.0751537)
(0.231428 0.757723 0.0761481)
(0.168704 0.681721 0.0646272)
(0.108676 0.609452 0.0584879)
(0.0393701 0.546439 0.0519069)
(-0.0149776 0.499117 0.0487255)
(-0.055212 0.448195 0.0466927)
(-0.0955022 0.401376 0.0525108)
(-0.128273 0.34926 0.0595241)
(-0.161577 0.291289 0.067552)
(-0.195625 0.229956 0.0691968)
(-0.228796 0.170875 0.0716557)
(-0.2654 0.113268 0.0679175)
(-0.309673 0.0494243 0.0648788)
(-0.352283 -0.0159961 0.0592514)
(-0.385179 -0.111467 0.0504033)
(-0.426403 -0.214523 0.0484355)
(-0.480777 -0.335982 0.0546739)
(-0.54174 -0.481622 0.0640522)
(-0.608266 -0.661311 0.0725883)
(-0.674329 -0.888107 0.078278)
(-0.733551 -1.15492 0.0777544)
(-0.774935 -1.4512 0.0669665)
(-0.778162 -1.72406 0.0446457)
(-0.728396 -1.89771 0.0116281)
(-0.572181 -1.83797 -0.0211471)
(-0.332745 -1.42415 -0.037467)
(-0.0927932 -0.643045 -0.0267394)
(0.00403057 -0.0307058 0.0102455)
(0.0190819 0.326508 -0.0665286)
(0.101472 0.817855 -0.161739)
(0.213847 1.07327 -0.191405)
(0.30958 1.16837 -0.144622)
(0.38293 1.16277 -0.0666847)
(0.445951 1.13274 -0.00973078)
(0.479337 1.08916 0.0309845)
(0.491199 1.06161 0.0534459)
(0.492611 1.05074 0.0628674)
(0.473443 1.03083 0.0638031)
(0.435195 0.990593 0.0604156)
(0.379013 0.92734 0.0575403)
(0.311822 0.845715 0.0553947)
(0.241808 0.758605 0.0573979)
(0.179808 0.673583 0.0506317)
(0.123626 0.598066 0.0424564)
(0.0560246 0.538853 0.0410999)
(0.00304865 0.473735 0.0407108)
(-0.0366947 0.404008 0.0473203)
(-0.0759101 0.335401 0.0517067)
(-0.111199 0.269627 0.0624404)
(-0.146476 0.204163 0.063624)
(-0.177455 0.145048 0.0672541)
(-0.215719 0.0859883 0.0639749)
(-0.25501 0.0219273 0.0628569)
(-0.297808 -0.0332195 0.0570671)
(-0.343074 -0.103337 0.0488595)
(-0.384717 -0.197871 0.0377945)
(-0.432916 -0.311318 0.0358562)
(-0.48932 -0.452891 0.0425023)
(-0.552846 -0.625177 0.0535872)
(-0.616735 -0.85019 0.0654216)
(-0.677119 -1.1273 0.0744344)
(-0.725962 -1.45679 0.0739461)
(-0.742455 -1.78797 0.0582708)
(-0.714527 -2.05665 0.0243866)
(-0.593112 -2.09802 -0.0163487)
(-0.373098 -1.77056 -0.0351727)
(-0.0992939 -0.96009 -0.0261734)
(0.0238589 -0.117241 0.0207446)
(-0.00185149 0.442272 -0.0916254)
(0.0709922 0.957693 -0.180188)
(0.191384 1.23994 -0.211624)
(0.294285 1.34976 -0.172498)
(0.379588 1.36149 -0.0986032)
(0.456468 1.32587 -0.0394521)
(0.522321 1.26493 0.00909906)
(0.578435 1.2227 0.0286064)
(0.592442 1.1889 0.0308755)
(0.559534 1.13922 0.0307445)
(0.504089 1.07354 0.0312841)
(0.430749 0.99083 0.0337403)
(0.351302 0.894172 0.0369694)
(0.277953 0.792973 0.0414867)
(0.215837 0.695674 0.0485703)
(0.162564 0.603235 0.0517693)
(0.111917 0.523369 0.0459683)
(0.0526504 0.456891 0.0461741)
(0.00242626 0.390793 0.0481469)
(-0.0322123 0.314404 0.0520108)
(-0.0701882 0.248782 0.0580335)
(-0.104438 0.182914 0.0614208)
(-0.134632 0.123457 0.0643082)
(-0.174336 0.0626386 0.0621335)
(-0.207498 0.00283789 0.063065)
(-0.243002 -0.0540619 0.0618152)
(-0.291481 -0.112382 0.0548235)
(-0.34053 -0.185305 0.0473434)
(-0.390147 -0.279416 0.0413089)
(-0.438963 -0.406395 0.0363314)
(-0.498053 -0.571958 0.0335203)
(-0.560755 -0.80034 0.0351057)
(-0.621304 -1.08981 0.0391563)
(-0.672324 -1.45574 0.0453919)
(-0.710274 -1.84367 0.0437238)
(-0.707997 -2.19592 0.0243388)
(-0.604808 -2.33666 -0.00744522)
(-0.413174 -2.10849 -0.0465022)
(-0.133283 -1.27332 -0.0115443)
(0.0354483 -0.170832 0.0442267)
(-0.00643457 0.423502 -0.0522034)
(0.0652916 0.953703 -0.15506)
(0.194212 1.26287 -0.195612)
(0.306119 1.40155 -0.177544)
(0.400072 1.44031 -0.118202)
(0.479169 1.41149 -0.0668093)
(0.554409 1.35196 -0.0192791)
(0.61515 1.2821 0.00945193)
(0.62834 1.20558 0.0202977)
(0.596927 1.12776 0.0290164)
(0.543881 1.04596 0.034521)
(0.472444 0.959239 0.0403614)
(0.393865 0.863196 0.0461445)
(0.3194 0.767351 0.051841)
(0.255569 0.672733 0.0552433)
(0.205091 0.582928 0.0598473)
(0.156373 0.497234 0.0657195)
(0.110591 0.42138 0.0631345)
(0.0500256 0.36402 0.0566754)
(0.000648966 0.299597 0.0555731)
(-0.0328033 0.23015 0.0589204)
(-0.0690056 0.16519 0.0615966)
(-0.0986563 0.107504 0.0641107)
(-0.135851 0.0428742 0.0615106)
(-0.166561 -0.0108352 0.0637747)
(-0.196204 -0.0721508 0.0661995)
(-0.23794 -0.127795 0.0626918)
(-0.285833 -0.189444 0.0532755)
(-0.34316 -0.259573 0.0482907)
(-0.404394 -0.362053 0.0519775)
(-0.476049 -0.499345 0.0612607)
(-0.548341 -0.701458 0.0712479)
(-0.620217 -0.975961 0.0778634)
(-0.664573 -1.35342 0.0720669)
(-0.683179 -1.79233 0.0632306)
(-0.679375 -2.22876 0.0482011)
(-0.602794 -2.49272 0.00871226)
(-0.422581 -2.40725 -0.032919)
(-0.129295 -1.63466 -0.058315)
(0.0561291 -0.362354 0.0265025)
(-0.00318364 0.401636 -0.0448816)
(0.0694382 0.924064 -0.132358)
(0.19424 1.24065 -0.174207)
(0.311193 1.39382 -0.164336)
(0.406414 1.44298 -0.114105)
(0.48389 1.41559 -0.0639727)
(0.566791 1.35531 -0.0180781)
(0.630881 1.27262 0.012053)
(0.654371 1.18449 0.0251181)
(0.629725 1.10166 0.0357137)
(0.577195 1.01851 0.0436325)
(0.503221 0.928938 0.0516638)
(0.424964 0.833829 0.0595883)
(0.35572 0.739045 0.0641738)
(0.294433 0.648106 0.0674986)
(0.241313 0.558195 0.0698159)
(0.194829 0.471715 0.0743934)
(0.153991 0.389308 0.0798525)
(0.104902 0.323295 0.0799551)
(0.0472183 0.270896 0.0661355)
(-0.00209945 0.211862 0.0653658)
(-0.0315142 0.146536 0.065739)
(-0.0648786 0.0877023 0.0669791)
(-0.09998 0.0267503 0.0651504)
(-0.126264 -0.0276979 0.0659826)
(-0.154163 -0.087564 0.0683728)
(-0.186946 -0.146176 0.066793)
(-0.225536 -0.20788 0.0633456)
(-0.277097 -0.271316 0.0564341)
(-0.3332 -0.35336 0.0550853)
(-0.401643 -0.45843 0.0603509)
(-0.478437 -0.620015 0.0728566)
(-0.57455 -0.844462 0.0928618)
(-0.662272 -1.17585 0.116555)
(-0.704286 -1.58937 0.120999)
(-0.69945 -2.05968 0.106771)
(-0.643493 -2.41631 0.0683289)
(-0.499521 -2.48921 0.00835648)
(-0.222642 -1.83239 -0.0315947)
(0.018333 -0.436574 -0.0143869)
(0.0082783 0.366804 -0.0247318)
(0.0848001 0.862282 -0.103058)
(0.202534 1.18416 -0.143332)
(0.319323 1.352 -0.141722)
(0.418341 1.40866 -0.101006)
(0.496608 1.39308 -0.0525124)
(0.577908 1.33229 -0.00913342)
(0.639484 1.24771 0.0197181)
(0.668035 1.14895 0.0334895)
(0.653253 1.05812 0.0440445)
(0.603503 0.968792 0.0527604)
(0.532116 0.877059 0.0629666)
(0.459226 0.786477 0.0714499)
(0.394651 0.69674 0.0766978)
(0.335205 0.608715 0.079715)
(0.283821 0.52205 0.0825893)
(0.233786 0.439411 0.0866839)
(0.197298 0.356078 0.0933153)
(0.154184 0.284781 0.0974196)
(0.100102 0.226248 0.0923097)
(0.043967 0.181246 0.0791975)
(0.000270954 0.125474 0.073642)
(-0.0284231 0.0663004 0.0745617)
(-0.061145 0.00698509 0.0713122)
(-0.0877956 -0.0421213 0.0704055)
(-0.114604 -0.0999346 0.0696487)
(-0.145813 -0.155308 0.0678488)
(-0.178098 -0.221267 0.0663077)
(-0.222601 -0.284492 0.0652797)
(-0.272787 -0.365327 0.0651325)
(-0.340353 -0.4595 0.0701993)
(-0.409064 -0.60413 0.0840327)
(-0.493241 -0.79518 0.106072)
(-0.568805 -1.07718 0.130141)
(-0.628473 -1.42767 0.141295)
(-0.660964 -1.88351 0.133389)
(-0.647145 -2.27941 0.094594)
(-0.547862 -2.47781 0.0254063)
(-0.292829 -1.94333 -0.0277123)
(-0.015942 -0.457913 -0.0325358)
(0.0119955 0.347548 -0.014685)
(0.0928342 0.801585 -0.0739438)
(0.206488 1.12379 -0.11915)
(0.320941 1.30234 -0.122093)
(0.424683 1.36911 -0.0919018)
(0.504745 1.36187 -0.0438945)
(0.584715 1.30031 -0.00630839)
(0.645302 1.21554 0.0221309)
(0.677399 1.11366 0.0381589)
(0.670052 1.01513 0.0489387)
(0.624367 0.920026 0.0598486)
(0.558744 0.827591 0.0718091)
(0.492498 0.739793 0.081831)
(0.433065 0.651998 0.0881531)
(0.377128 0.567001 0.0918865)
(0.32702 0.482848 0.0950987)
(0.277428 0.4037 0.10076)
(0.237905 0.323718 0.108183)
(0.201016 0.245418 0.114348)
(0.157416 0.175534 0.108548)
(0.100543 0.130132 0.0956403)
(0.0494195 0.0918134 0.0894547)
(0.00890775 0.0432626 0.0810021)
(-0.0168584 -0.00712999 0.0764766)
(-0.0394782 -0.0548182 0.0753541)
(-0.0685627 -0.111711 0.0730547)
(-0.100349 -0.164129 0.0697677)
(-0.131007 -0.22641 0.0686931)
(-0.170021 -0.290292 0.0668083)
(-0.21131 -0.370728 0.0686484)
(-0.269138 -0.459102 0.0757612)
(-0.330471 -0.591799 0.0915102)
(-0.408252 -0.764724 0.118805)
(-0.481125 -1.03133 0.150992)
(-0.557478 -1.3703 0.177038)
(-0.61386 -1.82298 0.173514)
(-0.635261 -2.24016 0.135008)
(-0.57533 -2.5304 0.0555273)
(-0.36595 -2.13358 0.00152043)
(-0.0739713 -0.634943 -0.0162861)
(0.0127346 0.310329 -0.00763067)
(0.0975117 0.718861 -0.0483301)
(0.211419 1.03837 -0.0937477)
(0.321486 1.22991 -0.100861)
(0.429624 1.30938 -0.0801366)
(0.510523 1.31165 -0.0408406)
(0.586309 1.2542 -0.00426881)
(0.648565 1.17155 0.0258872)
(0.68164 1.06995 0.045112)
(0.679826 0.964644 0.0558729)
(0.640977 0.863647 0.0658519)
(0.583707 0.769674 0.0785785)
(0.524193 0.682317 0.0909986)
(0.470701 0.59689 0.0996569)
(0.419609 0.515947 0.104649)
(0.374547 0.435538 0.110435)
(0.32496 0.360149 0.11776)
(0.282393 0.281356 0.126117)
(0.238468 0.204663 0.128269)
(0.205077 0.117652 0.12636)
(0.170746 0.0741929 0.102656)
(0.116135 0.0402717 0.0971)
(0.0701467 0.0103107 0.0892368)
(0.036796 -0.02091 0.0875649)
(0.00457037 -0.0671024 0.0822204)
(-0.0236444 -0.118374 0.0782342)
(-0.0536572 -0.169609 0.0726032)
(-0.0859628 -0.234323 0.0698222)
(-0.127338 -0.29205 0.0686681)
(-0.164623 -0.373604 0.0685574)
(-0.219798 -0.457392 0.074527)
(-0.271752 -0.588456 0.0892652)
(-0.343629 -0.750141 0.119489)
(-0.410915 -1.01424 0.156869)
(-0.494181 -1.34867 0.192136)
(-0.56038 -1.81149 0.194696)
(-0.599487 -2.25511 0.15873)
(-0.569248 -2.63271 0.0734529)
(-0.397202 -2.3584 0.00391266)
(-0.105021 -0.876249 -0.0178328)
(0.00788839 0.27958 -0.00285274)
(0.0959887 0.642925 -0.0298738)
(0.215884 0.945955 -0.0698385)
(0.320802 1.15049 -0.0793838)
(0.426535 1.2434 -0.0678079)
(0.509883 1.25628 -0.0404529)
(0.587673 1.20884 -0.0053202)
(0.650311 1.1302 0.0235558)
(0.683462 1.03038 0.045534)
(0.684329 0.921294 0.0600594)
(0.653614 0.815144 0.0733583)
(0.606018 0.716172 0.087484)
(0.554795 0.627009 0.0996991)
(0.509521 0.542541 0.107983)
(0.464758 0.464302 0.113752)
(0.423335 0.385573 0.121465)
(0.374341 0.311279 0.130278)
(0.330136 0.23324 0.137822)
(0.277833 0.155247 0.13661)
(0.256295 0.0723903 0.128243)
(0.242984 0.0331315 0.091669)
(0.196945 0.00518476 0.087619)
(0.153429 -0.0205327 0.0899202)
(0.108157 -0.0495223 0.0893282)
(0.0643965 -0.080668 0.0895316)
(0.0318268 -0.127781 0.0845882)
(-0.00876517 -0.174165 0.0798261)
(-0.0374194 -0.232976 0.0767799)
(-0.0774114 -0.292438 0.0683837)
(-0.114637 -0.36805 0.0689859)
(-0.166751 -0.447108 0.0742779)
(-0.214084 -0.57569 0.0899946)
(-0.283937 -0.737761 0.123602)
(-0.351229 -1.00962 0.164836)
(-0.443705 -1.35511 0.209631)
(-0.519844 -1.84527 0.21721)
(-0.578035 -2.32949 0.184305)
(-0.571311 -2.79399 0.0844944)
(-0.437653 -2.63888 0.0121955)
(-0.138646 -1.15394 -0.00855938)
(0.00544424 0.240867 -0.00125214)
(0.0872039 0.564728 -0.0216946)
(0.212627 0.837865 -0.0534718)
(0.319585 1.0507 -0.0603556)
(0.421694 1.15619 -0.0532355)
(0.506807 1.18325 -0.034016)
(0.583859 1.14815 -0.00511715)
(0.647723 1.07472 0.0211882)
(0.681231 0.977941 0.0454504)
(0.684632 0.868443 0.0635472)
(0.660059 0.760673 0.0795712)
(0.622734 0.65948 0.094612)
(0.582237 0.569669 0.10584)
(0.546049 0.484998 0.114365)
(0.50673 0.406328 0.121799)
(0.470206 0.326912 0.130812)
(0.423048 0.252796 0.137037)
(0.376606 0.174238 0.141274)
(0.324118 0.0993936 0.133904)
(0.320439 0.0292857 0.114881)
(0.333207 0.0022195 0.0692545)
(0.283994 -0.0257662 0.0672368)
(0.229906 -0.0543823 0.0772987)
(0.186738 -0.0862757 0.0868011)
(0.133488 -0.111024 0.0872613)
(0.089852 -0.151443 0.0867563)
(0.049499 -0.18779 0.0874198)
(0.0105672 -0.250761 0.0792798)
(-0.0329915 -0.312498 0.0765127)
(-0.0645198 -0.403819 0.0699924)
(-0.122559 -0.496409 0.0720233)
(-0.168968 -0.649077 0.0858714)
(-0.240434 -0.827471 0.11901)
(-0.29987 -1.12126 0.161669)
(-0.393026 -1.48207 0.206647)
(-0.469323 -2.01165 0.217615)
(-0.540854 -2.54569 0.183001)
(-0.551117 -3.115 0.0792031)
(-0.437039 -3.08298 -0.000740571)
(-0.137358 -1.64427 -0.015071)
(0.00404172 0.211079 0.00253565)
(0.0744857 0.497476 -0.0164099)
(0.201406 0.745247 -0.0381226)
(0.316348 0.954937 -0.0514827)
(0.411729 1.07501 -0.0453026)
(0.498544 1.11096 -0.0308813)
(0.577828 1.09008 -0.00527667)
(0.640765 1.02177 0.0169418)
(0.676402 0.929691 0.0425345)
(0.683833 0.821688 0.0629306)
(0.668529 0.715256 0.0796829)
(0.642212 0.614381 0.0926772)
(0.610584 0.523116 0.102398)
(0.580991 0.435471 0.110941)
(0.546403 0.353922 0.119211)
(0.514264 0.271959 0.128304)
(0.46904 0.19639 0.133914)
(0.42686 0.119056 0.132796)
(0.38258 0.0525628 0.115655)
(0.401301 -0.00149233 0.0965758)
(0.425114 -0.0336171 0.0536204)
(0.370776 -0.0695649 0.0543691)
(0.315011 -0.0933004 0.0657081)
(0.268904 -0.125955 0.077633)
(0.213172 -0.150771 0.08284)
(0.165982 -0.187257 0.083424)
(0.102856 -0.218496 0.0814634)
(0.0519225 -0.278629 0.0835363)
(-0.00557321 -0.337514 0.0812481)
(-0.0510788 -0.445342 0.0728203)
(-0.122483 -0.543959 0.071303)
(-0.175606 -0.706699 0.0881703)
(-0.24744 -0.887831 0.12384)
(-0.296358 -1.19463 0.163274)
(-0.3857 -1.57597 0.211035)
(-0.454427 -2.15443 0.216282)
(-0.5363 -2.75614 0.176161)
(-0.542839 -3.44989 0.074629)
(-0.44278 -3.57079 -0.0206445)
(-0.146606 -2.25916 -0.0459452)
(0.00438068 0.175494 0.00492041)
(0.0640478 0.42132 -0.011652)
(0.182324 0.647273 -0.0277567)
(0.305714 0.839954 -0.0425811)
(0.400231 0.973203 -0.0376881)
(0.482985 1.02002 -0.0257027)
(0.562071 1.01043 -0.00734424)
(0.625121 0.952166 0.0125769)
(0.665315 0.864976 0.0378823)
(0.678662 0.763186 0.0582369)
(0.672869 0.660918 0.0743558)
(0.656496 0.561199 0.0865277)
(0.632719 0.469768 0.0957273)
(0.609833 0.38054 0.104057)
(0.579591 0.298356 0.111608)
(0.552854 0.216154 0.119153)
(0.513063 0.141533 0.121945)
(0.47954 0.0705788 0.1155)
(0.452041 0.0135179 0.0944783)
(0.477809 -0.037488 0.079811)
(0.506765 -0.0813983 0.0435968)
(0.459401 -0.111569 0.0480205)
(0.400384 -0.133681 0.0580365)
(0.351468 -0.162723 0.0710638)
(0.290617 -0.183375 0.0803695)
(0.238353 -0.220071 0.0830117)
(0.172458 -0.246028 0.0827482)
(0.105383 -0.296171 0.0811675)
(0.021069 -0.350634 0.0778578)
(-0.0302745 -0.45145 0.0686514)
(-0.104576 -0.530749 0.0692019)
(-0.158837 -0.678859 0.0743855)
(-0.238709 -0.839432 0.10682)
(-0.288794 -1.13443 0.1505)
(-0.384623 -1.50882 0.198764)
(-0.45026 -2.12403 0.212013)
(-0.552599 -2.78145 0.176914)
(-0.546251 -3.6066 0.071441)
(-0.471861 -3.93546 -0.043727)
(-0.177274 -2.81956 -0.0763141)
(0.00237331 0.154956 0.00596764)
(0.0522616 0.366148 -0.00970286)
(0.156025 0.568558 -0.0215349)
(0.284809 0.746828 -0.0382903)
(0.385211 0.879415 -0.0348448)
(0.463774 0.942221 -0.0250899)
(0.544699 0.941569 -0.0114407)
(0.60658 0.89379 0.00355499)
(0.650289 0.813966 0.0260081)
(0.67442 0.715613 0.046099)
(0.678227 0.616434 0.0624311)
(0.672013 0.517763 0.0749153)
(0.656195 0.425962 0.0839945)
(0.639959 0.337427 0.0924003)
(0.61585 0.255361 0.0981706)
(0.59429 0.176346 0.105007)
(0.561941 0.104391 0.101174)
(0.541163 0.0357985 0.0932957)
(0.517623 -0.0156005 0.0751526)
(0.548458 -0.0783531 0.0657877)
(0.591164 -0.120974 0.039215)
(0.554308 -0.146891 0.0418339)
(0.491947 -0.162924 0.0529128)
(0.443173 -0.186095 0.0653237)
(0.376199 -0.19676 0.079662)
(0.322948 -0.225839 0.0861219)
(0.244796 -0.234183 0.0879123)
(0.165664 -0.285093 0.0890337)
(0.0628684 -0.345006 0.0768836)
(0.00721905 -0.433481 0.0616244)
(-0.0798491 -0.504244 0.0543995)
(-0.143068 -0.622253 0.0573258)
(-0.225274 -0.755145 0.087124)
(-0.264725 -1.03745 0.124628)
(-0.374951 -1.39184 0.183737)
(-0.430707 -2.01116 0.206345)
(-0.547416 -2.69687 0.186101)
(-0.545752 -3.62459 0.0787394)
(-0.503638 -4.15195 -0.0598859)
(-0.207209 -3.29348 -0.125086)
(0.00274307 0.124182 0.00738775)
(0.0419993 0.299788 -0.00557065)
(0.128697 0.48033 -0.0155473)
(0.252314 0.637084 -0.0283989)
(0.360724 0.760188 -0.0308579)
(0.439082 0.833494 -0.0221698)
(0.512694 0.844857 -0.0132046)
(0.578602 0.804444 -0.00132001)
(0.625166 0.738753 0.0155173)
(0.655977 0.648246 0.0337251)
(0.672974 0.554124 0.0496191)
(0.677215 0.459046 0.0623286)
(0.671628 0.37104 0.0729098)
(0.664213 0.283678 0.0807478)
(0.647294 0.20807 0.0888706)
(0.633491 0.133483 0.0887003)
(0.605617 0.0651777 0.0807888)
(0.594301 3.43375e-05 0.0761751)
(0.576456 -0.0564566 0.0612123)
(0.607452 -0.11977 0.0573241)
(0.672177 -0.166489 0.0393597)
(0.648924 -0.183869 0.0367321)
(0.586298 -0.193023 0.048115)
(0.539934 -0.207466 0.0613283)
(0.470285 -0.206357 0.0774692)
(0.422579 -0.222601 0.087932)
(0.335707 -0.212067 0.0973902)
(0.216806 -0.250247 0.0938537)
(0.0988806 -0.319892 0.0799858)
(0.0528528 -0.40228 0.0577178)
(-0.0240458 -0.472891 0.0369991)
(-0.0847726 -0.573688 0.0341558)
(-0.202651 -0.674158 0.0558832)
(-0.244505 -0.914419 0.106125)
(-0.34451 -1.23362 0.155838)
(-0.389311 -1.85272 0.200716)
(-0.522978 -2.53822 0.192019)
(-0.517841 -3.5575 0.0892294)
(-0.534148 -4.27942 -0.0788143)
(-0.233919 -3.75311 -0.167443)
(-0.00212225 0.115958 0.00783194)
(0.0292097 0.271368 -0.00308104)
(0.095425 0.425987 -0.015167)
(0.205972 0.571909 -0.0238848)
(0.325655 0.674454 -0.0291265)
(0.411855 0.749404 -0.0240217)
(0.479588 0.769171 -0.0173633)
(0.546073 0.735414 -0.00855173)
(0.602533 0.674702 0.00432528)
(0.639169 0.594056 0.0171478)
(0.666171 0.505617 0.0325111)
(0.685079 0.41338 0.0473163)
(0.68883 0.325715 0.0578023)
(0.692566 0.242825 0.0721647)
(0.685827 0.163345 0.0755366)
(0.675412 0.0880842 0.0749637)
(0.65368 0.0240948 0.0674351)
(0.645072 -0.0321637 0.0653277)
(0.629335 -0.0957314 0.0534337)
(0.664355 -0.151882 0.0495544)
(0.754184 -0.202867 0.0374567)
(0.752709 -0.210072 0.0290271)
(0.688585 -0.214699 0.0416944)
(0.64864 -0.220763 0.0555047)
(0.578126 -0.209664 0.0714982)
(0.539561 -0.214324 0.0881513)
(0.443567 -0.192398 0.0958321)
(0.284829 -0.218149 0.0966537)
(0.143826 -0.255946 0.0883073)
(0.101386 -0.351292 0.0577122)
(0.0205417 -0.402277 0.0378247)
(-0.0207405 -0.537697 0.0190005)
(-0.138281 -0.594172 0.0344343)
(-0.18589 -0.824695 0.060763)
(-0.330607 -1.06127 0.135768)
(-0.334565 -1.64764 0.183246)
(-0.471691 -2.33158 0.197151)
(-0.462071 -3.42514 0.102482)
(-0.544841 -4.33416 -0.0991149)
(-0.260434 -4.21266 -0.228975)
(0.000116036 0.0923982 0.0102525)
(0.0159448 0.22554 0.0016927)
(0.0649031 0.363237 -0.00992095)
(0.154609 0.477633 -0.0208042)
(0.268345 0.573796 -0.0252932)
(0.3697 0.626058 -0.0245835)
(0.431795 0.661243 -0.0188649)
(0.494848 0.630808 -0.0125239)
(0.55891 0.580446 -0.0042477)
(0.60798 0.506239 0.00887432)
(0.645566 0.431534 0.0208849)
(0.671517 0.344141 0.0324367)
(0.69013 0.262939 0.049811)
(0.703596 0.176392 0.0582076)
(0.698483 0.106797 0.0640418)
(0.701447 0.0380555 0.0656281)
(0.695268 -0.0160983 0.0603761)
(0.692304 -0.0749653 0.0606309)
(0.678279 -0.135153 0.0491589)
(0.719819 -0.18864 0.0449588)
(0.83365 -0.237193 0.0349849)
(0.857283 -0.241196 0.0207586)
(0.792073 -0.239862 0.0337972)
(0.76218 -0.237927 0.049405)
(0.693349 -0.217898 0.0665071)
(0.664656 -0.208179 0.0864809)
(0.563114 -0.180714 0.0969067)
(0.388407 -0.185833 0.100157)
(0.210996 -0.200717 0.0972836)
(0.168647 -0.284827 0.067221)
(0.0726042 -0.332059 0.0392001)
(0.0488141 -0.463888 0.0213195)
(-0.068285 -0.52889 0.0250923)
(-0.0975109 -0.737438 0.0329859)
(-0.233934 -0.93374 0.0871837)
(-0.27311 -1.45905 0.149756)
(-0.419109 -2.07721 0.194827)
(-0.372603 -3.24919 0.11945)
(-0.551041 -4.34482 -0.115927)
(-0.264974 -4.70582 -0.311623)
(-0.00926323 0.101312 0.0104147)
(0.000283054 0.238802 0.00449998)
(0.0162755 0.353771 -0.0129733)
(0.0895046 0.461862 -0.0259422)
(0.202115 0.526855 -0.0309893)
(0.315821 0.562585 -0.0325355)
(0.390876 0.589334 -0.0267464)
(0.446281 0.560875 -0.0211795)
(0.519618 0.512869 -0.0141682)
(0.581437 0.440977 -0.00549284)
(0.631108 0.369193 0.00923683)
(0.668051 0.290005 0.0243712)
(0.689556 0.212264 0.0325931)
(0.711023 0.138085 0.0411849)
(0.731312 0.0776796 0.0490904)
(0.741322 0.0152637 0.0548626)
(0.737897 -0.0348934 0.0536424)
(0.735003 -0.0954725 0.0551365)
(0.73394 -0.154128 0.0441035)
(0.781197 -0.206657 0.0399554)
(0.921299 -0.254274 0.0296613)
(0.974286 -0.260542 0.0104126)
(0.913768 -0.251655 0.0227442)
(0.896282 -0.24536 0.0406114)
(0.834638 -0.217332 0.0571932)
(0.813891 -0.197759 0.0800567)
(0.711166 -0.159941 0.0943572)
(0.518756 -0.153864 0.0940081)
(0.313746 -0.14927 0.106813)
(0.262868 -0.213343 0.0705593)
(0.152988 -0.246918 0.0490082)
(0.13724 -0.369293 0.0234304)
(0.0111715 -0.422388 0.0252566)
(0.00757598 -0.625724 0.0244104)
(-0.142656 -0.789071 0.0545984)
(-0.118399 -1.27025 0.100984)
(-0.354919 -1.82704 0.156789)
(-0.286649 -2.97984 0.131057)
(-0.531624 -4.27388 -0.134331)
(-0.246962 -5.20696 -0.418107)
(-0.000250209 0.101428 0.0127866)
(-0.015347 0.21819 0.00856272)
(-0.0172265 0.3207 -0.00149042)
(0.0214984 0.395599 -0.024613)
(0.101608 0.460561 -0.0373848)
(0.236899 0.455146 -0.0361898)
(0.31807 0.478068 -0.0333969)
(0.376535 0.45057 -0.0267731)
(0.455497 0.410187 -0.0239378)
(0.528586 0.348127 -0.0125074)
(0.596546 0.282984 -0.00243934)
(0.64471 0.208713 0.00639654)
(0.685223 0.147826 0.0183866)
(0.72911 0.0937307 0.0256261)
(0.748956 0.0395554 0.0330524)
(0.773017 -0.0122644 0.044239)
(0.781107 -0.0606416 0.0467159)
(0.782138 -0.117169 0.0477201)
(0.792535 -0.169698 0.0393438)
(0.850306 -0.222833 0.0327313)
(1.01701 -0.266371 0.022374)
(1.10763 -0.282102 -0.000714136)
(1.05596 -0.267189 0.014392)
(1.05268 -0.256482 0.0313605)
(0.999874 -0.214759 0.0489656)
(0.994353 -0.190394 0.0742205)
(0.890103 -0.134691 0.090349)
(0.696266 -0.12932 0.0859403)
(0.466386 -0.100909 0.105828)
(0.42276 -0.160163 0.0845535)
(0.288734 -0.165092 0.0661816)
(0.292274 -0.292706 0.0358188)
(0.149643 -0.317402 0.0291045)
(0.157182 -0.520745 0.0323494)
(-0.000329111 -0.639913 0.0475686)
(0.059389 -1.09666 0.0593112)
(-0.160188 -1.58251 0.106688)
(-0.126454 -2.76412 0.127283)
(-0.532372 -4.12493 -0.13168)
(-0.162227 -5.72233 -0.537125)
(-0.0364395 0.129934 0.000283872)
(-0.0642706 0.305468 0.00498168)
(-0.090061 0.362787 -0.00635874)
(-0.0517771 0.43413 -0.0264253)
(0.010857 0.464849 -0.0627824)
(0.137937 0.449527 -0.0636626)
(0.265068 0.429696 -0.0606454)
(0.324234 0.398481 -0.0510877)
(0.419048 0.352021 -0.044361)
(0.503916 0.295472 -0.0404107)
(0.578863 0.229148 -0.0335666)
(0.64798 0.16833 -0.0245613)
(0.713794 0.117471 -0.0175817)
(0.769299 0.0632075 -0.00975779)
(0.808999 0.0170427 -0.000996154)
(0.844872 -0.0241488 0.00857335)
(0.854202 -0.0698549 0.0207849)
(0.864942 -0.109064 0.0274507)
(0.891295 -0.157111 0.0215456)
(0.962054 -0.210135 0.0170791)
(1.15594 -0.24559 0.00819333)
(1.28811 -0.274032 -0.0200572)
(1.26036 -0.258749 -0.00447411)
(1.28385 -0.247136 0.0113309)
(1.24262 -0.201178 0.0290277)
(1.25317 -0.170782 0.0560624)
(1.14636 -0.104376 0.0702173)
(0.949043 -0.105342 0.0659982)
(0.696565 -0.0622459 0.0896833)
(0.666602 -0.109384 0.0807408)
(0.512505 -0.0994045 0.0748717)
(0.537193 -0.199229 0.0610295)
(0.379366 -0.220195 0.0366154)
(0.420648 -0.387237 0.03146)
(0.197438 -0.456422 0.0600646)
(0.302913 -0.865565 0.0482598)
(-0.00170296 -1.26824 0.0588384)
(0.19975 -2.38137 0.116486)
(-0.401583 -3.94998 -0.124302)
(-0.0340558 -6.17285 -0.687241)
(0.0162382 0.306485 -0.00617639)
(-0.0637885 0.323703 -0.0052409)
(-0.156634 0.390273 -0.0115545)
(-0.135798 0.359688 -0.034479)
(-0.106215 0.383851 -0.0588668)
(0.0298423 0.369784 -0.107474)
(0.156471 0.331971 -0.0951548)
(0.256512 0.302475 -0.0908999)
(0.365634 0.263017 -0.0917033)
(0.468957 0.213536 -0.0885966)
(0.573149 0.1683 -0.0812765)
(0.675129 0.125821 -0.0737183)
(0.758903 0.0823931 -0.0638303)
(0.837546 0.043031 -0.0542111)
(0.897999 0.00529138 -0.0434298)
(0.955649 -0.0266534 -0.0322504)
(0.991425 -0.0637485 -0.0202057)
(1.03489 -0.0834025 -0.0105185)
(1.06816 -0.124077 -0.00589559)
(1.16939 -0.187097 -0.0104981)
(1.39283 -0.215997 -0.014664)
(1.57409 -0.250708 -0.0409278)
(1.57655 -0.24159 -0.0282062)
(1.62953 -0.236772 -0.0161985)
(1.60275 -0.18172 0.000531885)
(1.64623 -0.149717 0.0184997)
(1.52987 -0.0750385 0.0289128)
(1.35102 -0.0849413 0.0326127)
(1.08803 -0.0278848 0.0588217)
(1.08904 -0.066302 0.0620719)
(0.930431 -0.0449781 0.0604772)
(0.992459 -0.12901 0.0620185)
(0.808493 -0.145815 0.0558306)
(0.923581 -0.289792 0.0700032)
(0.650685 -0.345306 0.0506497)
(0.805611 -0.684971 0.0684077)
(0.396164 -1.03907 0.0132738)
(0.65829 -2.04283 0.075661)
(-0.118409 -3.72404 -0.117758)
(0.365753 -6.55676 -0.893619)
(-0.224811 0.097075 -0.0259627)
(-0.318094 0.534093 -0.0530001)
(-0.297075 0.548818 -0.0940354)
(-0.289526 0.537612 -0.133558)
(-0.164109 0.448675 -0.173723)
(-0.0342529 0.38476 -0.20818)
(0.147151 0.333196 -0.214194)
(0.279195 0.282882 -0.21859)
(0.421861 0.23588 -0.211441)
(0.563996 0.18849 -0.20398)
(0.708431 0.15074 -0.193206)
(0.84242 0.113122 -0.179618)
(0.965728 0.0816833 -0.164096)
(1.08184 0.0473532 -0.148229)
(1.18128 0.0193802 -0.131451)
(1.27342 -0.00648658 -0.117266)
(1.34445 -0.0237887 -0.103418)
(1.42846 -0.0441079 -0.093033)
(1.49314 -0.0695684 -0.0792776)
(1.64046 -0.129603 -0.0729754)
(1.91941 -0.145129 -0.0609735)
(2.17778 -0.191581 -0.0854888)
(2.212 -0.202847 -0.0815917)
(2.31803 -0.201523 -0.0777646)
(2.29779 -0.145801 -0.0591435)
(2.36345 -0.122865 -0.0445372)
(2.22525 -0.0530965 -0.033625)
(2.08185 -0.0745517 -0.0298802)
(1.7951 -0.0134924 0.00683286)
(1.86343 -0.0382927 0.0106774)
(1.67827 -0.0181027 0.0197201)
(1.81688 -0.0772381 0.0268747)
(1.5767 -0.0729586 0.0348161)
(1.77662 -0.185045 0.0543893)
(1.40855 -0.235327 0.0403422)
(1.64846 -0.45741 0.117196)
(1.08412 -0.691199 0.0037617)
(1.42426 -1.53512 0.0259877)
(0.475518 -3.30747 -0.183171)
(0.930762 -6.42809 -1.17791)
(-0.692842 0.819134 -0.227296)
(-0.477337 0.352068 -0.231)
(-0.548366 0.453715 -0.253706)
(-0.27247 0.402494 -0.263629)
(-0.126601 0.345622 -0.257826)
(0.193218 0.30658 -0.299405)
(0.474208 0.260938 -0.316683)
(0.699128 0.221458 -0.313699)
(0.921676 0.187201 -0.312305)
(1.14018 0.158509 -0.302642)
(1.35681 0.126195 -0.28588)
(1.57154 0.0969988 -0.269475)
(1.75752 0.0715555 -0.250981)
(1.93986 0.0506707 -0.233867)
(2.09397 0.0340908 -0.21669)
(2.25265 0.0168065 -0.204007)
(2.38609 0.0105943 -0.199283)
(2.53669 0.0089678 -0.192094)
(2.67644 -0.00976227 -0.178988)
(2.92237 -0.0777264 -0.151945)
(3.24892 -0.0884872 -0.124058)
(3.59513 -0.143695 -0.121156)
(3.65039 -0.171266 -0.115637)
(3.81461 -0.165745 -0.126155)
(3.74559 -0.118923 -0.116786)
(3.83029 -0.089931 -0.11407)
(3.62286 -0.0185033 -0.0938597)
(3.56557 -0.0298587 -0.0934967)
(3.21085 0.0278261 -0.0474004)
(3.41275 0.00918962 -0.0388932)
(3.18163 0.0221398 -0.0180081)
(3.49818 -0.0229662 -0.0160665)
(3.14305 -0.0316177 -0.0138432)
(3.49484 -0.0793039 0.00787616)
(2.94388 -0.137426 -0.0273183)
(3.39411 -0.299059 0.0319274)
(2.60235 -0.522463 -0.0695226)
(3.09577 -1.17267 -0.0780584)
(2.00114 -2.80609 -0.175906)
(1.87518 -5.5364 -1.49828)
(1.16442 1.45115 -0.155804)
(1.75753 0.731279 -0.177489)
(2.54362 0.614622 -0.195399)
(2.98478 0.413412 -0.190058)
(3.32519 0.320739 -0.17925)
(3.64866 0.249732 -0.180326)
(3.95073 0.194003 -0.190245)
(4.19581 0.150984 -0.19817)
(4.4078 0.124231 -0.20313)
(4.6224 0.0998164 -0.205293)
(4.82415 0.0839079 -0.206164)
(5.03275 0.0632635 -0.204359)
(5.20525 0.0465932 -0.199087)
(5.38504 0.033411 -0.195392)
(5.52255 0.0240299 -0.191856)
(5.68246 0.019272 -0.193755)
(5.80172 0.003971 -0.205748)
(5.95962 0.00304925 -0.210537)
(6.14362 0.016066 -0.192771)
(6.45736 -0.0169561 -0.164323)
(6.75078 -0.0267754 -0.125822)
(7.14374 -0.0495786 -0.101698)
(7.14256 -0.0688355 -0.0847473)
(7.28459 -0.0736923 -0.104324)
(7.09166 -0.0578744 -0.107514)
(7.11056 -0.0582563 -0.115621)
(6.75186 -0.0231919 -0.100443)
(6.77217 -0.0180048 -0.105231)
(6.33356 0.0142535 -0.0772804)
(6.6594 0.0139798 -0.0667547)
(6.38401 0.0251045 -0.0459942)
(6.85172 0.0144877 -0.0313262)
(6.454 -0.00260296 -0.0471594)
(6.86605 -0.0221527 -0.00816357)
(6.23782 -0.0364024 -0.0484477)
(6.59201 -0.138867 -0.00905052)
(5.66661 -0.231886 -0.0830632)
(5.89532 -0.556799 -0.202147)
(4.42472 -1.03265 -0.237255)
(3.33591 -2.37539 -1.57241)
(0.000995757 -0.00165676 0.00755908)
(0.0151845 -0.00748265 -0.00708493)
(0.0298085 -0.005643 -0.00766038)
(0.0422849 -0.00538752 -0.00717305)
(0.0482954 -0.00250525 -0.00558481)
(0.0487362 -0.00385605 -0.00368721)
(0.0440606 -0.00405356 -0.00256304)
(0.0320428 -0.00401223 -0.00118625)
(0.020364 -0.000871656 0.00104616)
(-0.0029765 0.00520585 0.00452559)
(-0.0352151 -0.00243395 0.00703689)
(-0.0796293 -0.00564759 0.0046528)
(-0.130429 -0.00670141 0.0057242)
(-0.194055 -0.00704079 6.04248e-05)
(-0.258266 0.000393672 -0.00216912)
(-0.330288 0.00428347 -0.0277322)
(-0.412922 0.0024062 -0.060688)
(-0.512882 0.00399556 -0.110163)
(-0.567738 0.00571127 -0.185379)
(-0.679038 0.0142774 -0.262712)
(-0.633746 0.0547871 -0.322463)
(-0.52452 0.0469104 -0.408291)
(-0.552938 0.0729898 -0.475641)
(-0.559897 0.0839515 -0.534908)
(-0.563416 0.0864307 -0.589178)
(-0.510574 0.0815746 -0.618196)
(-0.441776 0.0725986 -0.632809)
(-0.343248 0.068292 -0.636305)
(-0.243136 0.0699921 -0.618833)
(-0.128588 0.0849036 -0.587813)
(-0.032135 0.092681 -0.509291)
(0.0609259 0.114924 -0.430876)
(0.144639 0.118775 -0.303885)
(0.17686 0.0793569 -0.204522)
(0.161411 0.0585024 -0.116565)
(0.125318 0.0313414 -0.0578634)
(0.0829927 0.0162871 -0.0254286)
(0.0457137 0.0100375 -0.0119822)
(0.0221747 0.0044833 -0.00495709)
(0.00265855 -0.00171197 0.00185124)
(0.00193397 -0.011858 -0.00561642)
(0.0247552 -0.0277337 -0.0260099)
(0.0504857 -0.0221661 -0.0310132)
(0.0701176 -0.0115165 -0.0318847)
(0.0750754 -0.00184959 -0.0300348)
(0.0646397 0.00685018 -0.0294917)
(0.043385 0.02276 -0.0307956)
(0.00400431 0.0342499 -0.0228692)
(-0.0451763 0.0499879 -0.0203991)
(-0.141266 0.0629508 -0.0294134)
(-0.260212 0.0815788 -0.0342799)
(-0.392634 0.104914 -0.0587049)
(-0.549265 0.136738 -0.070289)
(-0.723313 0.172931 -0.0984695)
(-0.906605 0.210423 -0.140752)
(-1.10896 0.221744 -0.215655)
(-1.30199 0.215602 -0.318057)
(-1.48508 0.21466 -0.426813)
(-1.60678 0.21228 -0.549724)
(-1.71741 0.217211 -0.665368)
(-1.6401 0.246848 -0.764988)
(-1.46854 0.212729 -0.861442)
(-1.40631 0.215371 -0.916489)
(-1.33775 0.193298 -0.940599)
(-1.27671 0.161049 -0.95431)
(-1.15874 0.121331 -0.942909)
(-1.0222 0.0841034 -0.924573)
(-0.853269 0.0633174 -0.891825)
(-0.67946 0.0621387 -0.841243)
(-0.503247 0.0942411 -0.776652)
(-0.333571 0.147526 -0.684625)
(-0.157193 0.212434 -0.598129)
(-0.0233878 0.25388 -0.460659)
(0.0907214 0.248515 -0.330296)
(0.164032 0.215136 -0.238055)
(0.163598 0.164011 -0.160364)
(0.137761 0.119943 -0.107069)
(0.0905178 0.0890646 -0.0735823)
(0.0472639 0.0594491 -0.0447653)
(0.00975417 0.0246276 -0.0110472)
(0.00497858 -0.0277078 -0.0134661)
(0.0308131 -0.0459073 -0.0417454)
(0.0574379 -0.032359 -0.054074)
(0.0669945 -0.00470585 -0.0552449)
(0.0564715 0.0246222 -0.0589499)
(0.0324397 0.0598533 -0.0567092)
(-0.0240848 0.0995274 -0.0587974)
(-0.11992 0.145014 -0.0584057)
(-0.243277 0.193182 -0.069729)
(-0.407693 0.239444 -0.0776017)
(-0.597262 0.306019 -0.0883254)
(-0.809412 0.370508 -0.109319)
(-1.02538 0.432431 -0.139373)
(-1.24614 0.473451 -0.188253)
(-1.46931 0.48808 -0.256218)
(-1.67917 0.47089 -0.35327)
(-1.84097 0.454495 -0.450078)
(-1.97677 0.439264 -0.546604)
(-2.05394 0.429208 -0.643925)
(-2.10444 0.411507 -0.721851)
(-1.97061 0.39776 -0.773775)
(-1.74944 0.348942 -0.814331)
(-1.64396 0.310461 -0.813037)
(-1.54314 0.251976 -0.787375)
(-1.4786 0.194078 -0.770398)
(-1.37141 0.132644 -0.735038)
(-1.25216 0.0785304 -0.688014)
(-1.10335 0.0420309 -0.633105)
(-0.942697 0.0330089 -0.570903)
(-0.77045 0.0506189 -0.508621)
(-0.619077 0.106331 -0.438064)
(-0.457496 0.187252 -0.390435)
(-0.294514 0.260033 -0.338122)
(-0.148006 0.321854 -0.294051)
(-0.0299191 0.30951 -0.227218)
(0.0445129 0.27961 -0.181308)
(0.0743262 0.232503 -0.143092)
(0.0617117 0.18659 -0.109302)
(0.0372344 0.133591 -0.0698517)
(0.00862948 0.0628212 -0.0193094)
(0.00632389 -0.0356221 -0.0257894)
(0.0280194 -0.0471708 -0.0649304)
(0.0425001 -0.012818 -0.0822644)
(0.0368876 0.0331448 -0.0866592)
(0.00537377 0.0963906 -0.0869397)
(-0.0571039 0.164039 -0.08527)
(-0.158947 0.241079 -0.0875149)
(-0.308306 0.330641 -0.0860307)
(-0.497315 0.42271 -0.0886076)
(-0.71754 0.507797 -0.0981191)
(-0.940422 0.585121 -0.112827)
(-1.15977 0.639727 -0.138153)
(-1.36954 0.665191 -0.167252)
(-1.56919 0.662642 -0.213337)
(-1.74698 0.644332 -0.280343)
(-1.88989 0.619293 -0.351958)
(-1.98687 0.603907 -0.413749)
(-2.06789 0.582521 -0.46624)
(-2.09963 0.566635 -0.512861)
(-2.10904 0.533567 -0.535616)
(-1.95313 0.493648 -0.536373)
(-1.71308 0.416978 -0.519913)
(-1.59511 0.354042 -0.49128)
(-1.50931 0.272525 -0.445028)
(-1.4591 0.205481 -0.411971)
(-1.38138 0.129832 -0.367924)
(-1.29205 0.06101 -0.320824)
(-1.17297 0.00975839 -0.277344)
(-1.05438 -0.0197807 -0.243424)
(-0.918766 -0.0226317 -0.211821)
(-0.780011 0.00705598 -0.184799)
(-0.644479 0.0885025 -0.17298)
(-0.509296 0.179838 -0.1787)
(-0.369988 0.270829 -0.205638)
(-0.223576 0.301831 -0.191264)
(-0.0987735 0.311904 -0.182544)
(-0.022418 0.285818 -0.161308)
(0.00728689 0.248747 -0.129457)
(0.0146635 0.18788 -0.0850558)
(0.00495481 0.0894618 -0.0240998)
(0.00737716 -0.0330131 -0.0474172)
(0.0256339 -0.0205923 -0.0982985)
(0.0185527 0.033441 -0.119861)
(-0.0116389 0.122514 -0.117444)
(-0.0696507 0.217507 -0.117259)
(-0.166519 0.327867 -0.10421)
(-0.306787 0.448279 -0.102609)
(-0.495745 0.572409 -0.093179)
(-0.714591 0.681377 -0.0910256)
(-0.942736 0.757969 -0.0940657)
(-1.15585 0.803394 -0.103346)
(-1.35468 0.813711 -0.120438)
(-1.52214 0.804511 -0.146044)
(-1.66468 0.785942 -0.182663)
(-1.78608 0.768068 -0.226397)
(-1.88017 0.747537 -0.263152)
(-1.93759 0.733736 -0.285607)
(-1.98774 0.702959 -0.299174)
(-1.99914 0.6803 -0.302512)
(-2.0009 0.63197 -0.278008)
(-1.85031 0.562822 -0.230612)
(-1.60633 0.478028 -0.190463)
(-1.49461 0.397776 -0.150259)
(-1.42231 0.302367 -0.115555)
(-1.39481 0.220872 -0.0935555)
(-1.3448 0.138381 -0.0753713)
(-1.27781 0.0572461 -0.0546108)
(-1.19192 -0.000467051 -0.0471967)
(-1.10553 -0.0616407 -0.0464001)
(-0.999573 -0.0828438 -0.0538576)
(-0.884056 -0.0747669 -0.0615524)
(-0.764893 -0.0229783 -0.0810524)
(-0.650574 0.0708308 -0.105253)
(-0.542076 0.189542 -0.169715)
(-0.395642 0.266833 -0.209233)
(-0.23625 0.301752 -0.200903)
(-0.119303 0.308258 -0.184165)
(-0.0492744 0.287388 -0.149075)
(-0.0102126 0.228021 -0.0969825)
(0.000307645 0.10917 -0.0279971)
(0.0117044 -0.0118064 -0.0785403)
(0.0111009 0.0263134 -0.142441)
(-0.0113148 0.117915 -0.159055)
(-0.060398 0.248315 -0.147035)
(-0.149653 0.382179 -0.128005)
(-0.267523 0.52701 -0.10747)
(-0.428131 0.671406 -0.0959363)
(-0.63361 0.785636 -0.0810763)
(-0.868212 0.852872 -0.0699711)
(-1.09312 0.893365 -0.071849)
(-1.27685 0.909378 -0.0818108)
(-1.42175 0.908999 -0.0941124)
(-1.53589 0.904124 -0.104196)
(-1.63542 0.892441 -0.117431)
(-1.7185 0.874302 -0.130386)
(-1.77626 0.850892 -0.132287)
(-1.81555 0.831086 -0.118076)
(-1.84447 0.800649 -0.0920709)
(-1.84348 0.779845 -0.0686944)
(-1.83943 0.723063 -0.0310199)
(-1.67913 0.65269 0.0177701)
(-1.44533 0.54319 0.0562165)
(-1.3504 0.446291 0.0774836)
(-1.30579 0.331503 0.0950154)
(-1.29486 0.231914 0.107914)
(-1.28 0.138374 0.117591)
(-1.2393 0.0451942 0.120515)
(-1.19853 -0.0376369 0.112998)
(-1.14434 -0.116604 0.076967)
(-1.06347 -0.171825 0.0476672)
(-0.968372 -0.188024 0.00967502)
(-0.853842 -0.152775 -0.0248171)
(-0.747942 -0.0816564 -0.064056)
(-0.665631 0.052861 -0.131911)
(-0.546978 0.163866 -0.20144)
(-0.364713 0.250505 -0.215963)
(-0.200028 0.294923 -0.203498)
(-0.0956949 0.301045 -0.165892)
(-0.0281747 0.246927 -0.107006)
(-0.0025496 0.117758 -0.0319934)
(0.00445868 0.0120974 -0.106848)
(0.000594484 0.0878014 -0.184458)
(-0.0320341 0.223005 -0.189144)
(-0.100635 0.378272 -0.160146)
(-0.205899 0.538929 -0.130018)
(-0.335826 0.693278 -0.0950516)
(-0.523262 0.815716 -0.0775001)
(-0.756721 0.874654 -0.0536101)
(-0.968794 0.920204 -0.0520376)
(-1.13642 0.958954 -0.0529605)
(-1.26765 0.988556 -0.0540453)
(-1.3736 1.00252 -0.0518568)
(-1.45699 1.00672 -0.0453081)
(-1.52955 0.995719 -0.038592)
(-1.58693 0.978294 -0.0262278)
(-1.62415 0.960385 -0.0037277)
(-1.63626 0.937257 0.0223914)
(-1.65163 0.914362 0.0520128)
(-1.64735 0.895346 0.0811008)
(-1.64021 0.841005 0.108285)
(-1.53714 0.786517 0.135278)
(-1.33769 0.628558 0.190831)
(-1.25112 0.501613 0.208306)
(-1.2327 0.369917 0.219982)
(-1.24355 0.255873 0.218808)
(-1.25267 0.139338 0.21614)
(-1.23667 0.0319767 0.207605)
(-1.21639 -0.0805101 0.186657)
(-1.18369 -0.191496 0.152776)
(-1.12073 -0.268188 0.100411)
(-1.03782 -0.319789 0.0604023)
(-0.953076 -0.31957 0.00842917)
(-0.84039 -0.263002 -0.0312356)
(-0.768564 -0.134617 -0.0865808)
(-0.664069 0.0469318 -0.173976)
(-0.467208 0.162588 -0.220434)
(-0.270077 0.265731 -0.235536)
(-0.129842 0.30097 -0.191492)
(-0.0418834 0.260359 -0.123839)
(-0.00331508 0.125852 -0.039661)
(0.0040091 0.039288 -0.132355)
(-0.00946677 0.166336 -0.219505)
(-0.0515697 0.323816 -0.20817)
(-0.129861 0.491215 -0.153252)
(-0.244369 0.649088 -0.102231)
(-0.398578 0.789077 -0.0605434)
(-0.608606 0.865071 -0.0493867)
(-0.802718 0.925044 -0.0339071)
(-0.957339 0.990709 -0.03092)
(-1.08831 1.04538 -0.0236223)
(-1.18866 1.07489 -0.0145583)
(-1.26498 1.08723 -0.00328989)
(-1.32749 1.09037 0.0162934)
(-1.37894 1.07618 0.0308187)
(-1.41274 1.06107 0.0597375)
(-1.4365 1.0436 0.0930273)
(-1.44596 1.02034 0.125463)
(-1.45291 0.98154 0.151465)
(-1.4497 0.947866 0.169658)
(-1.45317 0.878422 0.182844)
(-1.42368 0.814028 0.19312)
(-1.27736 0.652304 0.221939)
(-1.19304 0.501465 0.251186)
(-1.19329 0.366982 0.260776)
(-1.2199 0.242826 0.263738)
(-1.24005 0.114101 0.262145)
(-1.2402 0.000206795 0.255383)
(-1.25225 -0.141358 0.242629)
(-1.22792 -0.263022 0.209287)
(-1.20063 -0.397607 0.168032)
(-1.14737 -0.511588 0.102103)
(-1.05242 -0.550883 0.0551235)
(-0.932667 -0.5027 -0.00447651)
(-0.826089 -0.38314 -0.0481571)
(-0.764751 -0.147069 -0.129885)
(-0.580436 0.0630581 -0.195378)
(-0.330808 0.198931 -0.21962)
(-0.164007 0.285848 -0.200109)
(-0.0505716 0.263244 -0.133826)
(-0.00437862 0.130906 -0.0434941)
(0.00227715 0.0847109 -0.157011)
(-0.0174107 0.26034 -0.253811)
(-0.0672472 0.437637 -0.231149)
(-0.14965 0.602707 -0.156445)
(-0.267836 0.750172 -0.0923557)
(-0.434611 0.862031 -0.0521993)
(-0.618055 0.936511 -0.0357749)
(-0.771356 1.0215 -0.0176487)
(-0.890669 1.08329 -0.006061)
(-0.988417 1.12748 0.00860843)
(-1.06595 1.14613 0.0306864)
(-1.12253 1.15247 0.0577293)
(-1.17016 1.14417 0.0824351)
(-1.20742 1.12378 0.1073)
(-1.22917 1.09328 0.135716)
(-1.24106 1.05382 0.164161)
(-1.2458 1.01169 0.186811)
(-1.25745 0.961216 0.200778)
(-1.27417 0.911473 0.20638)
(-1.29604 0.83855 0.203275)
(-1.32165 0.767215 0.199708)
(-1.25121 0.644199 0.2112)
(-1.17877 0.477429 0.254526)
(-1.18249 0.346097 0.266914)
(-1.21744 0.211492 0.27978)
(-1.23303 0.0682212 0.282867)
(-1.25702 -0.0675054 0.285432)
(-1.2628 -0.22312 0.27923)
(-1.29508 -0.387564 0.265245)
(-1.29466 -0.56613 0.226831)
(-1.22562 -0.701868 0.172534)
(-1.12758 -0.785643 0.101992)
(-1.01197 -0.776487 0.0487347)
(-0.881955 -0.663717 -0.00854074)
(-0.787959 -0.437032 -0.0628392)
(-0.662538 -0.115136 -0.155851)
(-0.415403 0.0962809 -0.200603)
(-0.192371 0.244434 -0.214843)
(-0.0641607 0.258584 -0.144533)
(-0.00418098 0.136076 -0.049664)
(0.00252122 0.136394 -0.172638)
(-0.0202925 0.363775 -0.278623)
(-0.0718132 0.55525 -0.250071)
(-0.15292 0.716965 -0.163034)
(-0.277633 0.852546 -0.0873626)
(-0.431894 0.943208 -0.0435997)
(-0.578474 1.0305 -0.0197208)
(-0.695128 1.10647 0.000533694)
(-0.789998 1.15829 0.0288745)
(-0.865791 1.18071 0.0539628)
(-0.922064 1.18891 0.0846672)
(-0.96553 1.18005 0.113664)
(-1.00157 1.15702 0.143376)
(-1.03078 1.1185 0.16701)
(-1.04752 1.06714 0.189638)
(-1.05672 1.003 0.207705)
(-1.06583 0.937379 0.218661)
(-1.08755 0.869172 0.220561)
(-1.12763 0.811581 0.21455)
(-1.18017 0.749733 0.200245)
(-1.24098 0.681227 0.189874)
(-1.23943 0.591103 0.192304)
(-1.17835 0.430948 0.242341)
(-1.16403 0.303506 0.267038)
(-1.19748 0.157747 0.286996)
(-1.20609 0.0215467 0.296115)
(-1.22463 -0.156928 0.305035)
(-1.27759 -0.322831 0.311139)
(-1.32085 -0.537433 0.300639)
(-1.31233 -0.711055 0.278246)
(-1.27611 -0.864972 0.219648)
(-1.19505 -0.984298 0.151672)
(-1.07868 -1.03482 0.0803286)
(-0.941555 -0.975911 0.0190908)
(-0.826474 -0.768872 -0.0276916)
(-0.704621 -0.412191 -0.0856031)
(-0.474359 -0.0500914 -0.156482)
(-0.230113 0.147625 -0.171854)
(-0.071179 0.236047 -0.139645)
(-0.00518969 0.13371 -0.0474135)
(0.00370291 0.19443 -0.181476)
(-0.0160487 0.472908 -0.297881)
(-0.0629124 0.673993 -0.265784)
(-0.140691 0.830387 -0.168186)
(-0.263518 0.944657 -0.0942243)
(-0.391279 1.03499 -0.0349287)
(-0.498945 1.118 -0.00644142)
(-0.59134 1.17843 0.0337448)
(-0.668097 1.20897 0.0649082)
(-0.726607 1.22065 0.0906256)
(-0.77176 1.214 0.12641)
(-0.806648 1.18778 0.161119)
(-0.836594 1.14422 0.190827)
(-0.864312 1.0847 0.21194)
(-0.885165 1.01086 0.223563)
(-0.901938 0.927177 0.229909)
(-0.922391 0.845184 0.229544)
(-0.9581 0.767939 0.223437)
(-1.01238 0.704712 0.213367)
(-1.08506 0.647778 0.1994)
(-1.16329 0.586422 0.1895)
(-1.19999 0.510262 0.190093)
(-1.14607 0.380825 0.233176)
(-1.11565 0.249285 0.267599)
(-1.12954 0.104193 0.285807)
(-1.15514 -0.044029 0.299946)
(-1.18649 -0.217764 0.312711)
(-1.24334 -0.436267 0.322044)
(-1.2823 -0.638203 0.320992)
(-1.28837 -0.834261 0.28449)
(-1.2708 -1.0182 0.250213)
(-1.22979 -1.16685 0.205998)
(-1.14738 -1.25824 0.146384)
(-1.00722 -1.25286 0.0779375)
(-0.856197 -1.12338 0.0115059)
(-0.721679 -0.768144 -0.0355479)
(-0.541961 -0.314619 -0.0979654)
(-0.272426 0.0455301 -0.139137)
(-0.069547 0.18914 -0.129791)
(-0.00644305 0.131764 -0.047663)
(0.00615645 0.245255 -0.185916)
(-0.00733724 0.574707 -0.312942)
(-0.0433588 0.784335 -0.281149)
(-0.11946 0.925459 -0.179349)
(-0.225357 1.0238 -0.0961429)
(-0.319625 1.11529 -0.0325279)
(-0.403746 1.18871 0.0149652)
(-0.478984 1.22925 0.0564239)
(-0.540176 1.24681 0.0980046)
(-0.586742 1.24314 0.134294)
(-0.624358 1.21894 0.16654)
(-0.655911 1.17507 0.192883)
(-0.684135 1.11274 0.222693)
(-0.713404 1.03334 0.235891)
(-0.742423 0.944787 0.238245)
(-0.771168 0.852008 0.232898)
(-0.807 0.767584 0.224938)
(-0.856346 0.690924 0.215042)
(-0.920668 0.627556 0.205119)
(-0.996194 0.565863 0.194761)
(-1.07027 0.504633 0.192408)
(-1.11095 0.431475 0.194479)
(-1.0642 0.332443 0.229404)
(-1.02172 0.197448 0.251641)
(-1.03276 0.0513164 0.272083)
(-1.04619 -0.107603 0.288593)
(-1.11208 -0.291418 0.305465)
(-1.16704 -0.504146 0.317456)
(-1.19636 -0.710599 0.296531)
(-1.21123 -0.921791 0.279033)
(-1.21475 -1.13485 0.249376)
(-1.20192 -1.33006 0.19955)
(-1.16414 -1.47953 0.14778)
(-1.0781 -1.52731 0.0887018)
(-0.915213 -1.4468 0.033252)
(-0.759657 -1.16738 -0.00871988)
(-0.553416 -0.668621 -0.0408153)
(-0.303215 -0.131402 -0.0997345)
(-0.0944167 0.108773 -0.0964289)
(0.000644362 0.117341 -0.0413956)
(0.0105419 0.292863 -0.184829)
(0.00808407 0.67344 -0.323544)
(-0.0219291 0.887533 -0.295795)
(-0.0844368 1.01059 -0.188525)
(-0.163007 1.10626 -0.100549)
(-0.229942 1.18654 -0.0276285)
(-0.297803 1.2446 0.0293886)
(-0.3577 1.27122 0.0852302)
(-0.407267 1.27975 0.125305)
(-0.449223 1.26094 0.161775)
(-0.483038 1.21903 0.195619)
(-0.512023 1.15472 0.225675)
(-0.542432 1.07388 0.235595)
(-0.57763 0.978641 0.242264)
(-0.616231 0.880791 0.234895)
(-0.657813 0.787952 0.223701)
(-0.706385 0.706162 0.211583)
(-0.764092 0.633541 0.202059)
(-0.829053 0.569246 0.194204)
(-0.89676 0.502974 0.188963)
(-0.954313 0.439033 0.190738)
(-0.979999 0.367987 0.19795)
(-0.939743 0.295324 0.228802)
(-0.904758 0.166298 0.227032)
(-0.903024 0.0179053 0.244419)
(-0.938095 -0.143375 0.259333)
(-0.997333 -0.344324 0.277396)
(-1.04258 -0.534301 0.275489)
(-1.08027 -0.741311 0.269081)
(-1.10899 -0.964573 0.254591)
(-1.13417 -1.20385 0.217459)
(-1.1458 -1.44333 0.19461)
(-1.13195 -1.65423 0.163208)
(-1.08423 -1.78455 0.125422)
(-0.967282 -1.76902 0.0747415)
(-0.798396 -1.56475 0.0108171)
(-0.594164 -1.06947 -0.0154266)
(-0.341105 -0.430291 -0.0448953)
(-0.105524 0.00838101 -0.0589465)
(0.00488367 0.0915296 -0.0355126)
(0.0135094 0.325703 -0.185276)
(0.0177822 0.750749 -0.333506)
(0.000779359 0.975757 -0.31062)
(-0.0354598 1.08953 -0.205252)
(-0.0845325 1.17339 -0.106637)
(-0.133531 1.23324 -0.0248602)
(-0.189825 1.27648 0.0396419)
(-0.23901 1.29271 0.0974781)
(-0.28153 1.29394 0.145015)
(-0.319682 1.26387 0.185444)
(-0.352265 1.21042 0.217743)
(-0.383794 1.13291 0.23497)
(-0.416415 1.03256 0.246687)
(-0.456341 0.925353 0.234281)
(-0.502086 0.824759 0.221498)
(-0.552773 0.735117 0.207016)
(-0.608984 0.65766 0.195079)
(-0.666546 0.585934 0.186538)
(-0.725184 0.518358 0.180596)
(-0.776701 0.448271 0.179766)
(-0.813247 0.383298 0.183648)
(-0.816058 0.324089 0.197104)
(-0.785977 0.260902 0.208911)
(-0.77451 0.144211 0.205857)
(-0.783199 -0.00778676 0.208409)
(-0.819833 -0.176893 0.22088)
(-0.868451 -0.348577 0.236245)
(-0.909695 -0.532941 0.234298)
(-0.951662 -0.736319 0.232546)
(-0.996236 -0.967507 0.211482)
(-1.03966 -1.22632 0.205499)
(-1.07356 -1.50198 0.187857)
(-1.08274 -1.76437 0.162463)
(-1.05649 -1.97302 0.127463)
(-0.981953 -2.05524 0.0912402)
(-0.830101 -1.9273 0.0474752)
(-0.619027 -1.51033 -0.0026913)
(-0.36619 -0.779933 -0.0220685)
(-0.109191 -0.121234 -0.0335105)
(0.00164622 0.0560767 -0.0225471)
(0.0147554 0.359326 -0.178933)
(0.0344907 0.833762 -0.337686)
(0.0298928 1.07728 -0.326281)
(0.0153287 1.18523 -0.220323)
(-0.00806747 1.24828 -0.112785)
(-0.0424893 1.27941 -0.0198368)
(-0.0823758 1.29818 0.0506425)
(-0.113 1.30202 0.109335)
(-0.147636 1.29399 0.153796)
(-0.192045 1.25791 0.191125)
(-0.226854 1.20017 0.218554)
(-0.262705 1.1104 0.237651)
(-0.301618 1.00076 0.240025)
(-0.343168 0.882726 0.22552)
(-0.392993 0.781438 0.200525)
(-0.449379 0.692832 0.188917)
(-0.507972 0.617023 0.176282)
(-0.561319 0.544598 0.169479)
(-0.607533 0.473208 0.164406)
(-0.642184 0.402298 0.166199)
(-0.654749 0.343239 0.174101)
(-0.649583 0.291146 0.187658)
(-0.638254 0.217852 0.182032)
(-0.660758 0.10442 0.176054)
(-0.6795 -0.0310822 0.172055)
(-0.69975 -0.189754 0.176474)
(-0.738588 -0.343647 0.181357)
(-0.778365 -0.515788 0.188793)
(-0.827639 -0.713129 0.18428)
(-0.882897 -0.945913 0.187169)
(-0.938453 -1.21472 0.184021)
(-0.984963 -1.51015 0.176325)
(-1.01402 -1.81518 0.158498)
(-1.01424 -2.08878 0.13113)
(-0.960487 -2.26881 0.0959586)
(-0.848606 -2.24802 0.0572142)
(-0.641918 -1.91593 0.0257493)
(-0.375414 -1.1875 -0.0124393)
(-0.12049 -0.332966 -0.0115737)
(-0.012531 0.0208444 -0.012905)
(0.0167133 0.3651 -0.178758)
(0.051041 0.885358 -0.349637)
(0.0669421 1.15015 -0.344396)
(0.0623785 1.26292 -0.245132)
(0.0514938 1.30865 -0.128486)
(0.0339315 1.32193 -0.0235626)
(0.0151183 1.31805 0.0536418)
(-0.00643187 1.30912 0.111047)
(-0.0390522 1.2742 0.152918)
(-0.064594 1.22781 0.18429)
(-0.101159 1.1632 0.205985)
(-0.150009 1.07895 0.217418)
(-0.194242 0.971785 0.217012)
(-0.237445 0.85535 0.209155)
(-0.286739 0.751394 0.184049)
(-0.345082 0.665626 0.16972)
(-0.401509 0.5884 0.15886)
(-0.44757 0.514436 0.151364)
(-0.482642 0.442333 0.147365)
(-0.498445 0.376928 0.153201)
(-0.499711 0.322282 0.16618)
(-0.505377 0.255847 0.166172)
(-0.5225 0.17545 0.157391)
(-0.552127 0.0689506 0.150715)
(-0.582749 -0.0352156 0.144506)
(-0.602953 -0.178342 0.137363)
(-0.627552 -0.324527 0.139795)
(-0.668275 -0.48935 0.141299)
(-0.719551 -0.679741 0.148937)
(-0.778549 -0.908785 0.157052)
(-0.83827 -1.1772 0.162647)
(-0.893899 -1.48727 0.160518)
(-0.936084 -1.82042 0.148904)
(-0.955091 -2.15106 0.125981)
(-0.927502 -2.41152 0.0934968)
(-0.837499 -2.51155 0.0577496)
(-0.65503 -2.28868 0.0261048)
(-0.400605 -1.61876 0.00649865)
(-0.113191 -0.630095 -0.00419778)
(0.00135094 -0.0425111 -0.000290315)
(0.0165371 0.375335 -0.160704)
(0.0686369 0.940039 -0.342675)
(0.106725 1.2251 -0.355877)
(0.123081 1.33517 -0.258508)
(0.125895 1.3734 -0.135079)
(0.115758 1.37004 -0.0185084)
(0.101612 1.35868 0.0558929)
(0.086069 1.33069 0.112531)
(0.0682856 1.2951 0.149522)
(0.0411141 1.23983 0.17454)
(0.0192443 1.15696 0.187247)
(-0.0130815 1.06698 0.19275)
(-0.069755 0.962256 0.18789)
(-0.124247 0.846081 0.177473)
(-0.176985 0.745944 0.163947)
(-0.235598 0.655796 0.148638)
(-0.29171 0.578534 0.13969)
(-0.330453 0.506737 0.134538)
(-0.352787 0.438978 0.134875)
(-0.360647 0.373909 0.142902)
(-0.373176 0.304443 0.149066)
(-0.395457 0.222703 0.144439)
(-0.422744 0.140917 0.137544)
(-0.458102 0.0500254 0.132386)
(-0.496138 -0.0410701 0.122744)
(-0.525682 -0.155896 0.112939)
(-0.546014 -0.300264 0.0973066)
(-0.580762 -0.45965 0.105032)
(-0.630746 -0.642653 0.114952)
(-0.688751 -0.859891 0.128235)
(-0.750722 -1.12257 0.13832)
(-0.811574 -1.43671 0.143767)
(-0.863065 -1.78996 0.13941)
(-0.8959 -2.16224 0.122481)
(-0.888226 -2.49588 0.0923083)
(-0.82125 -2.7016 0.0559962)
(-0.664428 -2.6057 0.0251353)
(-0.426499 -2.02749 0.0143439)
(-0.121781 -0.945444 -0.00228088)
(0.0128501 -0.100078 0.0203827)
(0.00959268 0.355866 -0.161489)
(0.0653296 0.972801 -0.347293)
(0.127155 1.28534 -0.375041)
(0.166175 1.4008 -0.284771)
(0.182345 1.43375 -0.160276)
(0.188663 1.41104 -0.0404551)
(0.192709 1.3929 0.0386565)
(0.1876 1.35804 0.0935769)
(0.177323 1.31803 0.134403)
(0.158242 1.26538 0.153026)
(0.131858 1.19584 0.160258)
(0.0980176 1.09927 0.160874)
(0.0418095 0.98839 0.157172)
(-0.0165581 0.884053 0.150499)
(-0.0692778 0.7792 0.140152)
(-0.128702 0.686097 0.129673)
(-0.174652 0.610247 0.128022)
(-0.207385 0.534345 0.123904)
(-0.232375 0.457068 0.127031)
(-0.253186 0.373876 0.130153)
(-0.280025 0.286235 0.133321)
(-0.308145 0.199076 0.128217)
(-0.339164 0.11709 0.124778)
(-0.37389 0.0331335 0.120902)
(-0.413184 -0.0477562 0.113232)
(-0.459086 -0.141605 0.104122)
(-0.489508 -0.265245 0.0903845)
(-0.515473 -0.417811 0.0823096)
(-0.555067 -0.593524 0.0888093)
(-0.608043 -0.804052 0.10141)
(-0.669225 -1.05806 0.114105)
(-0.731308 -1.37322 0.123897)
(-0.789341 -1.74148 0.12594)
(-0.831768 -2.15198 0.115284)
(-0.841163 -2.54831 0.0893575)
(-0.79533 -2.85288 0.0530558)
(-0.663715 -2.8819 0.0230538)
(-0.445225 -2.42352 0.00806885)
(-0.128865 -1.30938 0.00635972)
(0.0355061 -0.17655 0.0372965)
(0.0185807 0.428202 -0.14042)
(0.0866839 1.08334 -0.319664)
(0.151642 1.41577 -0.359521)
(0.210185 1.53392 -0.286654)
(0.23798 1.56017 -0.158195)
(0.255236 1.52102 -0.0465235)
(0.278558 1.48246 0.0357244)
(0.285907 1.4445 0.0886132)
(0.294135 1.41695 0.115534)
(0.285154 1.37614 0.128892)
(0.261858 1.31123 0.131571)
(0.221449 1.21852 0.132524)
(0.169048 1.10109 0.130298)
(0.0982087 0.981979 0.12756)
(0.0268215 0.862849 0.12306)
(-0.0207678 0.758944 0.117563)
(-0.0681241 0.657253 0.112668)
(-0.111771 0.562652 0.117216)
(-0.147677 0.464876 0.117547)
(-0.17786 0.366174 0.117919)
(-0.209121 0.273282 0.121487)
(-0.23897 0.184438 0.116591)
(-0.269085 0.102393 0.116737)
(-0.301729 0.0213189 0.11422)
(-0.338221 -0.0568246 0.112383)
(-0.387008 -0.13843 0.101258)
(-0.431345 -0.235606 0.0890905)
(-0.467323 -0.363556 0.0806284)
(-0.504626 -0.521959 0.0753957)
(-0.550715 -0.71981 0.080144)
(-0.608292 -0.962231 0.0915699)
(-0.667553 -1.27116 0.106123)
(-0.724652 -1.64757 0.11766)
(-0.772219 -2.08908 0.116936)
(-0.792377 -2.54458 0.0965552)
(-0.765719 -2.94528 0.05646)
(-0.664618 -3.10277 0.0233333)
(-0.469218 -2.77727 0.00410073)
(-0.151848 -1.67649 0.0118488)
(0.0504922 -0.251427 0.0399039)
(0.00211715 0.554798 -0.155853)
(0.0679783 1.24412 -0.321031)
(0.148854 1.60452 -0.370352)
(0.219675 1.73921 -0.310595)
(0.263917 1.7674 -0.190677)
(0.298925 1.7299 -0.0787826)
(0.354682 1.67605 0.0102437)
(0.40328 1.62568 0.0542771)
(0.426864 1.58016 0.0746731)
(0.409146 1.51278 0.0905221)
(0.370187 1.42195 0.102664)
(0.312048 1.3076 0.112974)
(0.243641 1.17482 0.11568)
(0.178103 1.03142 0.117008)
(0.113251 0.905348 0.120839)
(0.0457641 0.782578 0.121456)
(-0.00168566 0.670757 0.116793)
(-0.0387417 0.562337 0.112376)
(-0.0814286 0.457402 0.116757)
(-0.114588 0.356735 0.115042)
(-0.148596 0.263673 0.117375)
(-0.17916 0.174909 0.112783)
(-0.208865 0.0921619 0.113094)
(-0.239898 0.0120738 0.11246)
(-0.270737 -0.0674726 0.115816)
(-0.316175 -0.144716 0.104911)
(-0.362792 -0.226274 0.0918877)
(-0.405491 -0.328327 0.0849418)
(-0.450312 -0.455662 0.0827639)
(-0.496943 -0.624789 0.0826671)
(-0.55322 -0.842042 0.083818)
(-0.612793 -1.13852 0.088573)
(-0.666028 -1.51489 0.0926755)
(-0.704399 -1.98654 0.0972293)
(-0.732344 -2.49355 0.0898665)
(-0.726194 -2.97854 0.0594073)
(-0.647669 -3.25983 0.0286961)
(-0.486427 -3.0941 -0.00190643)
(-0.189244 -2.05599 0.0164147)
(0.0571873 -0.349767 0.0705652)
(-0.00483204 0.546133 -0.119501)
(0.0643337 1.25507 -0.274543)
(0.164757 1.6509 -0.336946)
(0.24912 1.81864 -0.299467)
(0.308778 1.86493 -0.19835)
(0.355261 1.84305 -0.0936185)
(0.420357 1.78755 -0.00499259)
(0.475654 1.71221 0.042229)
(0.503535 1.62567 0.0689354)
(0.485942 1.52826 0.0877904)
(0.445253 1.41888 0.0995687)
(0.38588 1.29897 0.1123)
(0.315867 1.16525 0.121045)
(0.245273 1.02742 0.131955)
(0.181446 0.890512 0.137207)
(0.131738 0.764834 0.137473)
(0.0766745 0.656189 0.135609)
(0.0234812 0.547939 0.130126)
(-0.0209607 0.454058 0.122289)
(-0.0581497 0.349484 0.122428)
(-0.0946616 0.258077 0.122527)
(-0.127096 0.169969 0.116161)
(-0.155337 0.0875364 0.115503)
(-0.185692 0.00589158 0.114799)
(-0.212027 -0.0736936 0.117756)
(-0.248146 -0.152861 0.11257)
(-0.292773 -0.22765 0.099396)
(-0.336783 -0.313124 0.089983)
(-0.385897 -0.414716 0.0866474)
(-0.440649 -0.549566 0.0908808)
(-0.509462 -0.724112 0.102252)
(-0.582825 -0.972914 0.117651)
(-0.658631 -1.30834 0.129548)
(-0.697357 -1.76425 0.123387)
(-0.695325 -2.30059 0.102889)
(-0.677103 -2.86176 0.0727671)
(-0.615788 -3.26759 0.0299392)
(-0.482792 -3.30623 -0.0155063)
(-0.213588 -2.42383 -0.0232561)
(0.0526414 -0.581067 0.0133785)
(-0.00133122 0.524539 -0.101639)
(0.0725816 1.22173 -0.237589)
(0.179196 1.63322 -0.305737)
(0.269214 1.8214 -0.283336)
(0.339524 1.87597 -0.202029)
(0.395851 1.86027 -0.100737)
(0.464775 1.80064 -0.0154013)
(0.526292 1.71476 0.0364034)
(0.561918 1.61424 0.065829)
(0.552344 1.51115 0.0881233)
(0.513193 1.4011 0.103346)
(0.450235 1.28008 0.118491)
(0.376852 1.14802 0.131941)
(0.308163 1.01256 0.143798)
(0.244649 0.881011 0.151527)
(0.190764 0.752344 0.158177)
(0.146188 0.629548 0.163729)
(0.104716 0.523238 0.161601)
(0.0423383 0.435437 0.150603)
(-0.00722711 0.345571 0.135657)
(-0.0409266 0.251372 0.136126)
(-0.0745666 0.162546 0.128028)
(-0.10478 0.080341 0.121708)
(-0.134277 0.00146274 0.122426)
(-0.157371 -0.07833 0.120669)
(-0.186357 -0.158615 0.118646)
(-0.220334 -0.236356 0.111836)
(-0.2599 -0.317126 0.101766)
(-0.307793 -0.404577 0.0946905)
(-0.357129 -0.516491 0.0949295)
(-0.420412 -0.654725 0.102925)
(-0.490645 -0.851954 0.119448)
(-0.577357 -1.11528 0.142843)
(-0.657427 -1.4923 0.164516)
(-0.689036 -1.97078 0.154444)
(-0.671275 -2.54261 0.117769)
(-0.629448 -3.03784 0.0593045)
(-0.530553 -3.26001 0.00449401)
(-0.310373 -2.58956 -0.0216647)
(-0.0106487 -0.681331 -0.00702668)
(0.00259611 0.48741 -0.0661173)
(0.0846819 1.15561 -0.188898)
(0.198917 1.58053 -0.259332)
(0.294696 1.78794 -0.252129)
(0.373252 1.85523 -0.186015)
(0.433627 1.84672 -0.0935778)
(0.501542 1.78356 -0.0140732)
(0.562153 1.69613 0.040374)
(0.603325 1.58649 0.0716844)
(0.604537 1.47662 0.0947962)
(0.569017 1.36187 0.112235)
(0.508231 1.23915 0.131375)
(0.439171 1.11183 0.14704)
(0.374188 0.982933 0.161707)
(0.312577 0.854731 0.171348)
(0.259456 0.730562 0.181669)
(0.209873 0.612792 0.192028)
(0.171904 0.498242 0.19969)
(0.123622 0.398934 0.196892)
(0.0592451 0.322222 0.171456)
(0.00633265 0.239574 0.154474)
(-0.0252629 0.156675 0.144091)
(-0.0499083 0.0716798 0.13427)
(-0.079592 -0.005641 0.132284)
(-0.103949 -0.0799468 0.127914)
(-0.12933 -0.157785 0.124533)
(-0.159407 -0.235439 0.11996)
(-0.189843 -0.319126 0.114428)
(-0.233635 -0.402965 0.109063)
(-0.281788 -0.506274 0.105724)
(-0.34462 -0.625317 0.111471)
(-0.406512 -0.795013 0.126457)
(-0.48079 -1.01165 0.149595)
(-0.543253 -1.3227 0.170031)
(-0.584637 -1.70569 0.168023)
(-0.598926 -2.22549 0.137095)
(-0.602248 -2.74063 0.0786807)
(-0.543863 -3.09924 0.0138799)
(-0.361733 -2.64246 -0.0180446)
(-0.063896 -0.746117 -0.0165034)
(0.00507798 0.448647 -0.0463402)
(0.0940256 1.08349 -0.150868)
(0.214516 1.51686 -0.222175)
(0.314234 1.74343 -0.226547)
(0.403785 1.82315 -0.174233)
(0.466594 1.82041 -0.0932619)
(0.530696 1.75683 -0.0175647)
(0.594496 1.66952 0.0381026)
(0.638012 1.55895 0.0737625)
(0.647375 1.44244 0.097551)
(0.618173 1.32298 0.117336)
(0.563768 1.20056 0.138604)
(0.50113 1.07793 0.158082)
(0.440426 0.95279 0.177062)
(0.381294 0.828105 0.192084)
(0.32965 0.70622 0.207644)
(0.280133 0.591448 0.22299)
(0.237792 0.478401 0.233018)
(0.191804 0.368759 0.2316)
(0.138439 0.273029 0.212702)
(0.0823598 0.201631 0.186754)
(0.0346667 0.134987 0.161978)
(0.00310686 0.0576809 0.146637)
(-0.0173804 -0.00896101 0.145818)
(-0.0389204 -0.0794691 0.136768)
(-0.0652361 -0.154368 0.133168)
(-0.0944008 -0.229794 0.127805)
(-0.122585 -0.312629 0.123192)
(-0.161231 -0.395357 0.118873)
(-0.199237 -0.494891 0.116178)
(-0.253903 -0.60171 0.119563)
(-0.30774 -0.751262 0.130788)
(-0.374831 -0.935736 0.152675)
(-0.429378 -1.20963 0.173756)
(-0.484288 -1.55483 0.179145)
(-0.520914 -2.04295 0.151773)
(-0.554145 -2.55777 0.0948098)
(-0.534561 -3.01001 0.0267838)
(-0.398503 -2.75597 -0.00429325)
(-0.116708 -0.966236 0.00315194)
(0.0105641 0.401951 -0.028373)
(0.105447 0.99101 -0.112056)
(0.227669 1.42979 -0.182208)
(0.329697 1.6774 -0.197335)
(0.422952 1.77368 -0.159043)
(0.492966 1.77605 -0.0923185)
(0.561243 1.71964 -0.019604)
(0.623393 1.63257 0.0361415)
(0.667097 1.52268 0.0752999)
(0.680683 1.40144 0.100688)
(0.659469 1.27767 0.121754)
(0.61535 1.15508 0.145033)
(0.561104 1.03472 0.168474)
(0.50623 0.911776 0.192567)
(0.451825 0.790665 0.211836)
(0.404263 0.672071 0.230021)
(0.352617 0.559084 0.246132)
(0.304126 0.444692 0.257886)
(0.253301 0.333376 0.256675)
(0.207177 0.218871 0.243443)
(0.167613 0.139441 0.212197)
(0.117996 0.0817895 0.18467)
(0.0852197 0.0321026 0.161364)
(0.0598212 -0.0209998 0.155109)
(0.0275116 -0.0778973 0.147954)
(0.00128127 -0.14861 0.146059)
(-0.0296155 -0.218041 0.139928)
(-0.0553893 -0.298834 0.131449)
(-0.095472 -0.383057 0.127317)
(-0.132753 -0.480511 0.122566)
(-0.18583 -0.581996 0.123904)
(-0.231376 -0.723593 0.131699)
(-0.291208 -0.88958 0.149715)
(-0.337367 -1.14839 0.167114)
(-0.396591 -1.47261 0.175363)
(-0.438964 -1.9472 0.147829)
(-0.487518 -2.46575 0.0940718)
(-0.495937 -3.00016 0.01277)
(-0.398681 -2.91169 -0.0146562)
(-0.134516 -1.23845 0.00329529)
(0.00909151 0.360563 -0.0155421)
(0.110848 0.895409 -0.0791492)
(0.241332 1.32951 -0.14388)
(0.340583 1.6024 -0.168387)
(0.435636 1.71885 -0.144852)
(0.510858 1.73636 -0.0904351)
(0.584222 1.68543 -0.0253545)
(0.648778 1.59966 0.0287405)
(0.692382 1.48996 0.0706441)
(0.708031 1.36658 0.0994452)
(0.695299 1.24003 0.123551)
(0.662519 1.11479 0.149382)
(0.616897 0.991514 0.177062)
(0.569501 0.868191 0.205006)
(0.522849 0.750371 0.225062)
(0.47977 0.632628 0.243578)
(0.427552 0.519043 0.259168)
(0.37616 0.403464 0.270025)
(0.315231 0.288597 0.26881)
(0.275308 0.1722 0.257632)
(0.260236 0.0908759 0.21605)
(0.229603 0.0371252 0.191804)
(0.193341 0.000574056 0.172166)
(0.160016 -0.0451639 0.158025)
(0.119153 -0.0918653 0.157664)
(0.0815377 -0.152074 0.155522)
(0.0460043 -0.204143 0.150835)
(0.0116525 -0.288454 0.146582)
(-0.0292741 -0.360605 0.139911)
(-0.0586207 -0.458645 0.133595)
(-0.110521 -0.555771 0.129585)
(-0.150583 -0.693052 0.129901)
(-0.212586 -0.854591 0.146671)
(-0.256619 -1.11135 0.162143)
(-0.322686 -1.43578 0.173655)
(-0.370407 -1.92009 0.148543)
(-0.438901 -2.46285 0.0940736)
(-0.464745 -3.08316 0.00476519)
(-0.39911 -3.13029 -0.0225157)
(-0.148813 -1.53017 0.011799)
(0.00894159 0.31408 -0.00340327)
(0.109616 0.794238 -0.0546928)
(0.252719 1.20244 -0.105976)
(0.356665 1.49595 -0.133162)
(0.446025 1.63618 -0.122629)
(0.522824 1.67314 -0.0837504)
(0.599053 1.63588 -0.0286933)
(0.667419 1.55201 0.0210528)
(0.71254 1.44527 0.0645358)
(0.730218 1.32152 0.0968954)
(0.723261 1.19377 0.125094)
(0.698582 1.06453 0.154652)
(0.662817 0.938823 0.184419)
(0.628516 0.816926 0.211362)
(0.590594 0.700536 0.230461)
(0.5528 0.582746 0.248847)
(0.50165 0.468256 0.261596)
(0.44613 0.348767 0.270067)
(0.385137 0.235577 0.264942)
(0.358011 0.130285 0.252436)
(0.366794 0.0582905 0.20226)
(0.3483 0.00998571 0.176674)
(0.311436 -0.0304637 0.161974)
(0.268694 -0.0741461 0.158427)
(0.218118 -0.119169 0.153428)
(0.184049 -0.173898 0.156009)
(0.13031 -0.224638 0.157559)
(0.0890871 -0.299624 0.155502)
(0.0436922 -0.36602 0.154458)
(0.00374672 -0.478816 0.140417)
(-0.0472184 -0.594447 0.135691)
(-0.0864979 -0.751907 0.133331)
(-0.148034 -0.924604 0.13829)
(-0.186764 -1.19674 0.147686)
(-0.251645 -1.52298 0.154473)
(-0.292934 -2.02888 0.122255)
(-0.369442 -2.60197 0.0669935)
(-0.398083 -3.30765 -0.0248154)
(-0.364594 -3.53014 -0.0532543)
(-0.141746 -2.02763 -0.00490302)
(0.00579162 0.280934 0.000161271)
(0.0961186 0.710776 -0.041064)
(0.247776 1.08998 -0.0821997)
(0.366771 1.38591 -0.105334)
(0.455456 1.54938 -0.100688)
(0.535701 1.6055 -0.0741349)
(0.610138 1.58608 -0.031714)
(0.679277 1.51038 0.0106861)
(0.73013 1.40656 0.0553883)
(0.749666 1.2822 0.0914276)
(0.747217 1.15206 0.123508)
(0.73081 1.02054 0.153989)
(0.707269 0.895009 0.181609)
(0.684158 0.77227 0.205238)
(0.654205 0.653766 0.224097)
(0.622264 0.533264 0.241477)
(0.572167 0.417482 0.25191)
(0.521657 0.299124 0.25596)
(0.469992 0.195407 0.249035)
(0.459829 0.0976713 0.2371)
(0.489876 0.0370874 0.17925)
(0.477763 -0.00982433 0.162287)
(0.433355 -0.05298 0.154015)
(0.386451 -0.102829 0.153015)
(0.328165 -0.14045 0.154171)
(0.281313 -0.197401 0.152472)
(0.224142 -0.24986 0.151192)
(0.17416 -0.320231 0.152679)
(0.0992633 -0.397175 0.151262)
(0.0344824 -0.513273 0.14277)
(-0.0300885 -0.62195 0.134068)
(-0.0659788 -0.795412 0.121881)
(-0.136106 -0.966736 0.129441)
(-0.164466 -1.24138 0.128246)
(-0.229249 -1.57446 0.136241)
(-0.261492 -2.10335 0.0982616)
(-0.321065 -2.71929 0.0419998)
(-0.338457 -3.54323 -0.0522869)
(-0.341602 -3.96984 -0.104532)
(-0.148042 -2.64536 -0.0467663)
(0.00562096 0.236907 0.00274074)
(0.084764 0.61552 -0.029904)
(0.231847 0.96995 -0.063816)
(0.367392 1.2553 -0.0854712)
(0.459822 1.43946 -0.0818535)
(0.536877 1.50944 -0.0617848)
(0.615664 1.50596 -0.0274589)
(0.685838 1.44381 0.0068362)
(0.737311 1.34629 0.0487262)
(0.759884 1.22441 0.085262)
(0.763962 1.09748 0.117549)
(0.757538 0.968507 0.145727)
(0.743484 0.844885 0.168941)
(0.729728 0.720983 0.189157)
(0.706594 0.601315 0.205699)
(0.682247 0.479918 0.221432)
(0.640104 0.366102 0.22834)
(0.602219 0.256972 0.233041)
(0.562258 0.160892 0.226685)
(0.568481 0.0706413 0.208717)
(0.618679 0.0144569 0.158194)
(0.605707 -0.0334353 0.148367)
(0.554021 -0.077926 0.146558)
(0.507265 -0.125304 0.151348)
(0.44202 -0.159884 0.157248)
(0.388332 -0.209945 0.160011)
(0.317183 -0.251293 0.159856)
(0.250765 -0.324285 0.154179)
(0.162589 -0.402185 0.149804)
(0.0972617 -0.513062 0.134993)
(0.0122385 -0.604043 0.115555)
(-0.0357446 -0.759009 0.111041)
(-0.10008 -0.903341 0.115044)
(-0.133878 -1.16254 0.120024)
(-0.205158 -1.46402 0.120635)
(-0.225961 -1.99722 0.0954059)
(-0.292592 -2.63064 0.038642)
(-0.308321 -3.58904 -0.0545288)
(-0.344572 -4.24333 -0.152678)
(-0.168508 -3.17701 -0.0879416)
(0.00332379 0.209639 0.00516979)
(0.0717131 0.542657 -0.0237606)
(0.205939 0.868987 -0.0520428)
(0.354592 1.14531 -0.0746203)
(0.460369 1.33787 -0.0715389)
(0.534866 1.43006 -0.0578542)
(0.613548 1.4398 -0.0311563)
(0.685333 1.38877 -0.0011274)
(0.741969 1.29669 0.0377584)
(0.771271 1.18061 0.0715074)
(0.783778 1.05654 0.101812)
(0.785926 0.930201 0.126295)
(0.7798 0.807016 0.145502)
(0.772666 0.683777 0.161956)
(0.756264 0.564441 0.17493)
(0.740679 0.445125 0.187436)
(0.710641 0.334893 0.19557)
(0.68678 0.232369 0.201086)
(0.659936 0.141964 0.193465)
(0.683213 0.0544596 0.178958)
(0.748407 -0.00174766 0.136681)
(0.738594 -0.0539226 0.132966)
(0.682043 -0.0945196 0.137895)
(0.635904 -0.137438 0.148354)
(0.56634 -0.16363 0.159179)
(0.509095 -0.204821 0.168398)
(0.425841 -0.229374 0.171102)
(0.338142 -0.293338 0.167798)
(0.227183 -0.373944 0.147992)
(0.158045 -0.480644 0.130563)
(0.0653408 -0.564053 0.103167)
(0.0189041 -0.69715 0.0887113)
(-0.0673574 -0.823079 0.0908758)
(-0.0880985 -1.04834 0.105357)
(-0.166722 -1.3254 0.11353)
(-0.177604 -1.82689 0.0862799)
(-0.246565 -2.45381 0.0372474)
(-0.265167 -3.48973 -0.0606011)
(-0.343327 -4.3626 -0.186255)
(-0.193313 -3.60971 -0.118865)
(0.00460935 0.172314 0.00686467)
(0.0609267 0.457645 -0.0159942)
(0.177555 0.753383 -0.0412199)
(0.32712 1.01245 -0.0621477)
(0.448676 1.20186 -0.0627203)
(0.526703 1.31292 -0.0513892)
(0.600386 1.34007 -0.0326367)
(0.671031 1.30278 -0.00810314)
(0.730358 1.22309 0.0213222)
(0.769955 1.114 0.0545064)
(0.79204 0.998483 0.0808761)
(0.804163 0.875663 0.102352)
(0.806177 0.757666 0.118504)
(0.807136 0.6383 0.130979)
(0.797077 0.525595 0.140637)
(0.79103 0.412643 0.149399)
(0.773899 0.309226 0.157084)
(0.765925 0.211867 0.166657)
(0.751408 0.123079 0.157513)
(0.787765 0.0323128 0.150246)
(0.86804 -0.029298 0.117829)
(0.865951 -0.0794588 0.119013)
(0.809581 -0.114839 0.127229)
(0.76799 -0.15056 0.142911)
(0.695067 -0.166664 0.155742)
(0.640235 -0.197197 0.168975)
(0.545868 -0.204393 0.172821)
(0.42394 -0.255117 0.168981)
(0.297419 -0.328285 0.15207)
(0.2376 -0.431666 0.130502)
(0.137332 -0.500079 0.102255)
(0.0836629 -0.628676 0.0663291)
(-0.00117149 -0.720966 0.0616231)
(-0.0393199 -0.945973 0.0690445)
(-0.125284 -1.15426 0.0871577)
(-0.11195 -1.64182 0.0836726)
(-0.197864 -2.22918 0.0264483)
(-0.205349 -3.32572 -0.0666777)
(-0.332574 -4.39475 -0.221639)
(-0.203993 -4.00077 -0.151048)
(0.000187415 0.160206 0.00673632)
(0.0461057 0.41291 -0.0131154)
(0.142813 0.676111 -0.0373765)
(0.283496 0.922238 -0.0572083)
(0.423629 1.10013 -0.0623873)
(0.516549 1.21973 -0.0530102)
(0.585467 1.26264 -0.0392505)
(0.657142 1.23605 -0.0199834)
(0.719611 1.16808 0.00235647)
(0.766177 1.06754 0.0284282)
(0.802202 0.956394 0.0540118)
(0.824939 0.837146 0.073243)
(0.836878 0.72214 0.0878386)
(0.845934 0.607064 0.100943)
(0.844215 0.498498 0.107143)
(0.845754 0.392379 0.11371)
(0.838868 0.29456 0.120922)
(0.840292 0.200398 0.129296)
(0.832948 0.107949 0.123564)
(0.879667 0.0173531 0.121436)
(0.984537 -0.0541023 0.100977)
(0.997511 -0.0959883 0.101807)
(0.942403 -0.127144 0.111733)
(0.906726 -0.155051 0.130479)
(0.832686 -0.161474 0.144145)
(0.781154 -0.182798 0.16186)
(0.679152 -0.171659 0.16266)
(0.530135 -0.205667 0.166061)
(0.374699 -0.253657 0.156732)
(0.323223 -0.360511 0.129607)
(0.214447 -0.418169 0.107953)
(0.171567 -0.547803 0.0630397)
(0.0534235 -0.616315 0.0486111)
(0.0383362 -0.826603 0.0347771)
(-0.0676866 -1.00231 0.0489523)
(-0.0580788 -1.44779 0.0653329)
(-0.136985 -1.98718 0.0193605)
(-0.141666 -3.12136 -0.0770284)
(-0.308888 -4.37905 -0.257998)
(-0.211351 -4.39056 -0.192162)
(0.0026366 0.132528 0.00856397)
(0.033372 0.352137 -0.00689819)
(0.109614 0.583066 -0.0306514)
(0.232696 0.801355 -0.0514882)
(0.373602 0.970431 -0.0598408)
(0.487254 1.07739 -0.0545449)
(0.554313 1.14108 -0.0424438)
(0.620682 1.12416 -0.0280875)
(0.690168 1.07049 -0.0105406)
(0.745842 0.985374 0.00982142)
(0.786133 0.884677 0.0278412)
(0.822936 0.774271 0.046035)
(0.848582 0.666565 0.0618923)
(0.869619 0.556747 0.0726005)
(0.877392 0.456136 0.0857534)
(0.889056 0.357781 0.0970393)
(0.889955 0.266637 0.102847)
(0.898057 0.175051 0.105994)
(0.900878 0.0836115 0.101616)
(0.955465 -0.0017505 0.100065)
(1.08766 -0.0795799 0.0860659)
(1.12336 -0.115452 0.0841011)
(1.06945 -0.142863 0.0940489)
(1.04598 -0.161316 0.113058)
(0.970785 -0.158783 0.127699)
(0.930479 -0.16843 0.146809)
(0.827657 -0.141925 0.148522)
(0.654094 -0.159718 0.153887)
(0.46729 -0.186512 0.148848)
(0.416744 -0.276426 0.129561)
(0.307175 -0.333538 0.102981)
(0.269745 -0.458628 0.0741187)
(0.147224 -0.519262 0.0426359)
(0.117589 -0.707483 0.0302568)
(0.00321026 -0.862634 0.0182825)
(0.0364277 -1.26893 0.0186071)
(-0.0795374 -1.76104 0.0135862)
(-0.0633767 -2.91468 -0.0951173)
(-0.293766 -4.33665 -0.294696)
(-0.211279 -4.80845 -0.241208)
(-0.00577247 0.140573 0.00721506)
(0.0106132 0.355724 -0.00985038)
(0.0605876 0.56024 -0.0364244)
(0.170368 0.758976 -0.0555276)
(0.310005 0.909794 -0.0705787)
(0.4474 0.998481 -0.0696416)
(0.529254 1.06143 -0.0569026)
(0.588158 1.05017 -0.0451043)
(0.664406 1.00318 -0.0307207)
(0.730161 0.921602 -0.0150056)
(0.784384 0.830702 -4.15933e-05)
(0.828043 0.729403 0.016526)
(0.861783 0.629501 0.0306586)
(0.894292 0.526228 0.0515718)
(0.916831 0.430635 0.0611992)
(0.935867 0.339442 0.0728113)
(0.941864 0.251877 0.0776501)
(0.952741 0.163262 0.0837071)
(0.967636 0.077424 0.0786279)
(1.03089 -0.00585563 0.0767849)
(1.18697 -0.0841102 0.0642193)
(1.25293 -0.116964 0.0603313)
(1.20534 -0.135601 0.0689939)
(1.19593 -0.152627 0.0881936)
(1.12392 -0.142776 0.103231)
(1.09633 -0.141078 0.123831)
(0.994742 -0.104951 0.129635)
(0.799387 -0.115293 0.138545)
(0.586036 -0.117831 0.13822)
(0.533326 -0.194416 0.123167)
(0.407532 -0.227289 0.101636)
(0.395813 -0.354088 0.0721946)
(0.253138 -0.395731 0.0540484)
(0.240338 -0.581807 0.0278799)
(0.0865791 -0.688185 0.0169152)
(0.131902 -1.08111 -0.0009272)
(-0.0183446 -1.51564 -0.0383308)
(0.0239998 -2.66847 -0.0863523)
(-0.271564 -4.25135 -0.319405)
(-0.210209 -5.25841 -0.287102)
(0.00178642 0.133791 0.00770274)
(0.00147453 0.323664 -0.00506159)
(0.0187113 0.517826 -0.0349198)
(0.1003 0.67166 -0.0599887)
(0.217759 0.803154 -0.0740236)
(0.369571 0.869797 -0.0824383)
(0.467268 0.925958 -0.0722935)
(0.526044 0.92259 -0.0608986)
(0.606395 0.88573 -0.0516084)
(0.682153 0.819677 -0.0384632)
(0.752053 0.739765 -0.0264854)
(0.813659 0.651578 -0.0139582)
(0.863209 0.563826 0.00266544)
(0.907883 0.474346 0.0145028)
(0.93984 0.386601 0.0253718)
(0.971457 0.301374 0.0416055)
(0.980659 0.22342 0.0480222)
(0.998969 0.146178 0.0559585)
(1.02638 0.0661947 0.0520914)
(1.09894 -0.0134142 0.0490562)
(1.28348 -0.0872127 0.0374686)
(1.38869 -0.123599 0.0337561)
(1.34314 -0.133458 0.0399455)
(1.34721 -0.147777 0.0582936)
(1.28611 -0.126835 0.070845)
(1.27787 -0.111345 0.0897165)
(1.17651 -0.067945 0.0928325)
(0.975886 -0.0746578 0.105129)
(0.735071 -0.0610764 0.109457)
(0.693607 -0.123229 0.109021)
(0.557524 -0.134195 0.0915794)
(0.557313 -0.252763 0.0722812)
(0.415654 -0.285457 0.0510405)
(0.420297 -0.462589 0.0398062)
(0.243819 -0.548564 0.024683)
(0.295107 -0.915109 0.00529157)
(0.0892283 -1.30635 -0.044355)
(0.148927 -2.44647 -0.116579)
(-0.255622 -4.14331 -0.329003)
(-0.163299 -5.77638 -0.326476)
(-0.0291435 0.160155 -0.0016033)
(-0.0410421 0.407829 -0.0189127)
(-0.0432192 0.55245 -0.0415681)
(0.00473927 0.720363 -0.0842254)
(0.119202 0.810237 -0.119707)
(0.287549 0.843408 -0.119922)
(0.415441 0.868429 -0.11719)
(0.479556 0.857027 -0.102622)
(0.568559 0.816288 -0.0952313)
(0.65663 0.757227 -0.0860946)
(0.73895 0.685124 -0.0756826)
(0.812424 0.604594 -0.058171)
(0.875089 0.523209 -0.0475994)
(0.932104 0.441448 -0.0354185)
(0.973831 0.363415 -0.0274807)
(1.01536 0.285137 -0.0165888)
(1.03942 0.214979 -0.00922165)
(1.06361 0.149417 0.00532651)
(1.09815 0.0848259 0.00201815)
(1.18382 0.00254862 -0.00265842)
(1.39252 -0.0604338 -0.0136753)
(1.5412 -0.102411 -0.0133321)
(1.5132 -0.108518 -0.00781945)
(1.53902 -0.123175 0.00692154)
(1.49704 -0.0958055 0.0198641)
(1.50735 -0.0819124 0.0409476)
(1.39518 -0.0346747 0.0513679)
(1.19693 -0.0389478 0.0646123)
(0.943753 -0.011471 0.0712419)
(0.919863 -0.0539458 0.0749962)
(0.767841 -0.053317 0.0717721)
(0.796281 -0.148305 0.0640578)
(0.635121 -0.163696 0.0509514)
(0.683084 -0.323262 0.0397563)
(0.459815 -0.369599 0.0325341)
(0.547912 -0.714087 0.0228503)
(0.251278 -1.02902 -0.0313167)
(0.368082 -2.12536 -0.0737531)
(-0.164452 -3.96833 -0.352699)
(-0.042207 -6.28746 -0.375295)
(0.0236416 0.338679 -0.0090152)
(-0.0303339 0.411228 -0.0315343)
(-0.102868 0.544879 -0.0598543)
(-0.0599411 0.594413 -0.0915907)
(-0.0240702 0.715389 -0.141697)
(0.143521 0.719903 -0.180555)
(0.305897 0.736478 -0.174059)
(0.393384 0.719838 -0.16362)
(0.495467 0.689344 -0.160331)
(0.600322 0.641666 -0.153762)
(0.701757 0.585755 -0.14056)
(0.795052 0.523186 -0.131127)
(0.873708 0.460105 -0.119829)
(0.946957 0.396355 -0.110086)
(1.00415 0.334007 -0.101035)
(1.06126 0.271552 -0.0916157)
(1.10047 0.208976 -0.0833296)
(1.15007 0.153033 -0.0775871)
(1.19767 0.0962052 -0.0772316)
(1.29801 0.0181105 -0.0773496)
(1.54178 -0.0229834 -0.0858498)
(1.74185 -0.0810006 -0.0763411)
(1.73638 -0.0924707 -0.0702769)
(1.78877 -0.106278 -0.056774)
(1.75733 -0.0696856 -0.0382851)
(1.79125 -0.0514026 -0.0232133)
(1.69175 0.00743897 -0.0086069)
(1.52116 -0.0085681 0.00913744)
(1.26144 0.0419278 0.0223331)
(1.28686 -0.00407671 0.0277812)
(1.13299 0.00702847 0.0232093)
(1.20891 -0.0665532 0.0392298)
(1.03042 -0.083103 0.0336349)
(1.15387 -0.223251 0.0387037)
(0.884919 -0.274985 0.030251)
(1.03298 -0.56226 0.0356111)
(0.652863 -0.862195 -0.0196852)
(0.792513 -1.79292 -0.0280251)
(0.106091 -3.7652 -0.325473)
(0.2833 -6.73304 -0.430545)
(-0.206859 0.099 -0.0214326)
(-0.268218 0.622949 -0.0712225)
(-0.23202 0.703848 -0.13881)
(-0.222233 0.760524 -0.210019)
(-0.106344 0.725269 -0.254756)
(0.0292049 0.730217 -0.311849)
(0.214294 0.683495 -0.307397)
(0.326121 0.648835 -0.304182)
(0.452396 0.607526 -0.295685)
(0.576368 0.563529 -0.28579)
(0.700796 0.515802 -0.275292)
(0.817222 0.463964 -0.260915)
(0.922123 0.414398 -0.247019)
(1.02177 0.363257 -0.234039)
(1.10492 0.31446 -0.222983)
(1.18846 0.262983 -0.218173)
(1.25905 0.209924 -0.211687)
(1.3404 0.164313 -0.214295)
(1.42258 0.116411 -0.218688)
(1.59465 0.0484156 -0.215045)
(1.88532 0.0280694 -0.213315)
(2.14461 -0.0305099 -0.199195)
(2.1937 -0.0527062 -0.184684)
(2.30757 -0.0753569 -0.163173)
(2.30076 -0.0426668 -0.137636)
(2.37383 -0.0296654 -0.121532)
(2.25269 0.0412738 -0.0967901)
(2.12502 0.0101648 -0.0694133)
(1.85276 0.0815735 -0.047205)
(1.93695 0.0440613 -0.0396917)
(1.78609 0.0667394 -0.0251626)
(1.95882 -0.00305336 -0.0224533)
(1.73346 -0.00473137 -0.00794559)
(1.93369 -0.116984 0.0045215)
(1.60735 -0.177444 -0.00395418)
(1.81324 -0.382074 0.0298508)
(1.33341 -0.601109 -0.0361013)
(1.52225 -1.30694 -0.00696545)
(0.715277 -3.28599 -0.274514)
(0.821684 -6.63916 -0.515331)
(-0.72254 0.821066 -0.211621)
(-0.535059 0.404185 -0.307763)
(-0.633532 0.541795 -0.3565)
(-0.37474 0.520749 -0.390306)
(-0.239911 0.493844 -0.42919)
(0.0477164 0.499728 -0.425011)
(0.287801 0.466914 -0.460598)
(0.50098 0.438244 -0.44399)
(0.699537 0.411001 -0.433046)
(0.899632 0.383724 -0.41531)
(1.09474 0.352143 -0.396038)
(1.28682 0.318878 -0.381049)
(1.45874 0.287456 -0.364335)
(1.62684 0.258759 -0.349406)
(1.76954 0.233007 -0.338967)
(1.91762 0.200769 -0.337633)
(2.04972 0.166538 -0.351499)
(2.22001 0.144642 -0.360007)
(2.39592 0.110376 -0.359939)
(2.67167 0.0359402 -0.346908)
(3.0428 0.0123911 -0.329994)
(3.42292 -0.0429936 -0.296358)
(3.50639 -0.070826 -0.260818)
(3.67898 -0.0937145 -0.23508)
(3.63442 -0.0628197 -0.22372)
(3.73965 -0.0417703 -0.214271)
(3.57279 0.0344054 -0.179376)
(3.53643 0.0258442 -0.151648)
(3.20975 0.0970386 -0.106984)
(3.42731 0.0831634 -0.101332)
(3.23481 0.108823 -0.0740676)
(3.5774 0.040893 -0.0711565)
(3.28776 0.0143387 -0.0619411)
(3.63551 -0.030279 -0.0364642)
(3.1615 -0.104552 -0.0568426)
(3.49478 -0.253943 -0.0189009)
(2.85911 -0.53028 -0.0943867)
(3.08659 -1.03994 -0.0553117)
(2.22473 -2.79126 -0.190381)
(1.71909 -5.66339 -0.576944)
(1.15048 1.46801 -0.120155)
(1.73113 0.745832 -0.173774)
(2.50477 0.622027 -0.207948)
(2.93399 0.412497 -0.221598)
(3.24601 0.328325 -0.22906)
(3.53278 0.253127 -0.24237)
(3.80827 0.213865 -0.258188)
(4.0395 0.176599 -0.269648)
(4.24218 0.156901 -0.276826)
(4.45105 0.137932 -0.279955)
(4.65075 0.12397 -0.28082)
(4.8585 0.108802 -0.278879)
(5.03351 0.0961103 -0.275067)
(5.2098 0.0835569 -0.274896)
(5.34224 0.0754751 -0.278842)
(5.49667 0.0663523 -0.295462)
(5.62745 0.0445236 -0.3267)
(5.82119 0.039308 -0.346584)
(6.04966 0.0454858 -0.349359)
(6.41742 0.0188178 -0.327553)
(6.75871 0.00967133 -0.303007)
(7.17229 -0.0173176 -0.259237)
(7.20175 -0.0384173 -0.211685)
(7.3345 -0.054916 -0.203955)
(7.16923 -0.0504205 -0.198727)
(7.1756 -0.0520987 -0.19596)
(6.83666 -0.018791 -0.169599)
(6.85177 -0.00877485 -0.150294)
(6.43035 0.0259879 -0.116412)
(6.73981 0.0350835 -0.10496)
(6.50647 0.0491181 -0.0891384)
(6.96929 0.0402237 -0.0782502)
(6.65678 0.0104168 -0.0875833)
(7.03325 -0.00633804 -0.0578758)
(6.52034 -0.0355732 -0.0790749)
(6.7178 -0.115346 -0.040004)
(5.95642 -0.246229 -0.118654)
(5.85412 -0.542697 -0.157696)
(4.556 -1.05572 -0.219708)
(3.15596 -2.38356 -0.609952)
(0.00194962 -0.00104875 0.00390057)
(0.0160846 -0.00559885 -0.00903955)
(0.0315853 -0.00508871 -0.0102216)
(0.0421565 -0.00435227 -0.00947474)
(0.046882 -0.00216832 -0.00705441)
(0.0436233 -0.00266369 -0.00481545)
(0.0345268 -0.00451816 -0.00216775)
(0.0191821 0.00556539 -0.00175893)
(-0.00039006 0.00315383 0.00507203)
(-0.0331236 0.00103424 0.00428437)
(-0.0733589 -0.00374566 0.00495643)
(-0.125005 -0.00659058 0.00308116)
(-0.187758 -0.00619001 -0.000756577)
(-0.252106 -0.00105854 -0.00662335)
(-0.339477 -0.000872425 -0.028641)
(-0.443818 0.0107819 -0.0670101)
(-0.537714 0.00848779 -0.121216)
(-0.661273 0.00968604 -0.182811)
(-0.75822 0.0115223 -0.26398)
(-0.887825 0.0257482 -0.349048)
(-0.878808 0.0519738 -0.431994)
(-0.767011 0.0487725 -0.519725)
(-0.767488 0.0466617 -0.563588)
(-0.75549 0.0471814 -0.594553)
(-0.720938 0.0379805 -0.623062)
(-0.649179 0.0183717 -0.646791)
(-0.577308 -0.0116265 -0.679264)
(-0.470326 -0.0289908 -0.703762)
(-0.355998 -0.0352773 -0.71594)
(-0.204053 -0.0189502 -0.709341)
(-0.0774956 -0.00855969 -0.668498)
(0.0744002 0.0400087 -0.586624)
(0.193981 0.0579714 -0.459236)
(0.218402 0.0836079 -0.319893)
(0.211304 0.0702757 -0.197459)
(0.162826 0.047009 -0.108747)
(0.10558 0.0264585 -0.0565847)
(0.0526006 0.0138358 -0.0298974)
(0.0180565 0.00600446 -0.016151)
(-0.000844588 -0.000670236 -0.00314188)
(0.00450137 -0.0140354 -0.00958355)
(0.0274719 -0.0283871 -0.0326124)
(0.050881 -0.0240188 -0.0391703)
(0.0638212 -0.0103473 -0.0396788)
(0.0614381 -0.000665394 -0.0366841)
(0.0374365 0.0120919 -0.0351992)
(0.00895309 0.0267422 -0.027078)
(-0.052436 0.042235 -0.0248499)
(-0.146726 0.0602086 -0.0251331)
(-0.263256 0.0769155 -0.0390316)
(-0.403077 0.1019 -0.0453638)
(-0.566785 0.131855 -0.0660025)
(-0.751713 0.169571 -0.091826)
(-0.954796 0.20573 -0.133955)
(-1.17764 0.220521 -0.200224)
(-1.41224 0.217581 -0.293469)
(-1.61907 0.192846 -0.401378)
(-1.81343 0.164764 -0.510167)
(-1.95283 0.136502 -0.63079)
(-2.0628 0.116217 -0.741809)
(-1.97703 0.104974 -0.831954)
(-1.77285 0.0457472 -0.883755)
(-1.67185 0.00199009 -0.892097)
(-1.56599 -0.0538884 -0.901693)
(-1.49092 -0.13529 -0.911555)
(-1.38076 -0.222969 -0.903935)
(-1.25344 -0.295247 -0.897429)
(-1.08718 -0.33686 -0.885214)
(-0.910491 -0.34149 -0.863963)
(-0.71281 -0.293971 -0.83287)
(-0.521123 -0.2171 -0.776217)
(-0.290018 -0.0859802 -0.706893)
(-0.0716952 0.00605507 -0.616469)
(0.077988 0.115444 -0.47488)
(0.167802 0.171065 -0.344007)
(0.190984 0.1616 -0.240857)
(0.160309 0.130958 -0.166289)
(0.101152 0.098976 -0.11832)
(0.0471187 0.0667549 -0.0765697)
(0.0077053 0.0284309 -0.025075)
(0.00579694 -0.0335463 -0.0193249)
(0.0274663 -0.0521078 -0.0533566)
(0.0468032 -0.0354833 -0.067484)
(0.0424205 -0.00257037 -0.0690151)
(0.0160405 0.0323911 -0.0680831)
(-0.0349037 0.0734759 -0.0645636)
(-0.125517 0.121901 -0.0680423)
(-0.256125 0.169243 -0.0677277)
(-0.42797 0.233082 -0.0729107)
(-0.636896 0.297369 -0.0856708)
(-0.861855 0.366772 -0.106113)
(-1.09663 0.427435 -0.13975)
(-1.32645 0.472656 -0.186824)
(-1.55934 0.480863 -0.251791)
(-1.79138 0.442233 -0.342426)
(-1.99413 0.389202 -0.436841)
(-2.14123 0.337437 -0.524684)
(-2.26826 0.281128 -0.607877)
(-2.34201 0.223683 -0.694293)
(-2.37712 0.15817 -0.756027)
(-2.22374 0.092841 -0.796317)
(-1.9756 0.00213886 -0.784957)
(-1.8426 -0.0986515 -0.784625)
(-1.7461 -0.212463 -0.758103)
(-1.67741 -0.339134 -0.728408)
(-1.583 -0.46026 -0.685851)
(-1.48671 -0.553806 -0.65108)
(-1.35971 -0.614793 -0.613304)
(-1.21724 -0.63052 -0.572784)
(-1.05012 -0.583509 -0.533572)
(-0.892243 -0.472805 -0.494382)
(-0.704674 -0.29559 -0.466296)
(-0.482934 -0.129083 -0.441027)
(-0.253621 0.0295859 -0.40637)
(-0.0739849 0.172432 -0.347389)
(0.0290647 0.222768 -0.266432)
(0.0767292 0.223332 -0.213245)
(0.0642102 0.194462 -0.165501)
(0.034318 0.145044 -0.110858)
(0.00584491 0.0692323 -0.0361019)
(0.00526404 -0.0474829 -0.0346384)
(0.0162527 -0.0585797 -0.0821255)
(0.0109031 -0.0179202 -0.0969765)
(-0.020342 0.0446554 -0.100036)
(-0.0822708 0.120573 -0.0973905)
(-0.185224 0.20013 -0.0947284)
(-0.334761 0.295625 -0.0938163)
(-0.536572 0.399864 -0.093324)
(-0.775279 0.499992 -0.098434)
(-1.02288 0.583266 -0.11671)
(-1.25292 0.643433 -0.143417)
(-1.46302 0.666672 -0.181727)
(-1.6601 0.647859 -0.226974)
(-1.85378 0.592158 -0.295239)
(-2.00795 0.51756 -0.368922)
(-2.12054 0.45523 -0.426056)
(-2.19236 0.392427 -0.476072)
(-2.25667 0.320484 -0.516689)
(-2.28052 0.247775 -0.554296)
(-2.2778 0.154465 -0.567623)
(-2.11306 0.0652534 -0.552244)
(-1.87704 -0.0500605 -0.533397)
(-1.76193 -0.173843 -0.501421)
(-1.68625 -0.31241 -0.457759)
(-1.64509 -0.435899 -0.418373)
(-1.58756 -0.563687 -0.36791)
(-1.53083 -0.675814 -0.328395)
(-1.44536 -0.76244 -0.296353)
(-1.34182 -0.809788 -0.275177)
(-1.20847 -0.795873 -0.25048)
(-1.06994 -0.711587 -0.231925)
(-0.932165 -0.532399 -0.229216)
(-0.775891 -0.309955 -0.259413)
(-0.542799 -0.0974406 -0.293079)
(-0.317996 0.0551708 -0.297028)
(-0.151444 0.195503 -0.265322)
(-0.0403105 0.239211 -0.233021)
(-0.00309908 0.239694 -0.190593)
(0.00698118 0.191505 -0.12922)
(0.00109844 0.0928045 -0.0416889)
(0.00323697 -0.0526143 -0.0581217)
(-0.00429078 -0.0346258 -0.119974)
(-0.0421607 0.0426813 -0.142491)
(-0.110913 0.154511 -0.131332)
(-0.219061 0.27236 -0.125957)
(-0.366011 0.401452 -0.116345)
(-0.55642 0.53681 -0.111905)
(-0.785445 0.664565 -0.105007)
(-1.02897 0.764745 -0.108513)
(-1.25702 0.813961 -0.120645)
(-1.45266 0.815879 -0.141333)
(-1.62414 0.775038 -0.17241)
(-1.76573 0.710916 -0.215259)
(-1.88514 0.636429 -0.266467)
(-1.97229 0.571784 -0.308951)
(-2.03443 0.507178 -0.331443)
(-2.07229 0.438709 -0.344702)
(-2.11412 0.36538 -0.349205)
(-2.13087 0.282316 -0.349919)
(-2.12757 0.176371 -0.33702)
(-1.9827 0.0781621 -0.311443)
(-1.76551 -0.0505723 -0.26648)
(-1.67874 -0.184169 -0.228831)
(-1.62551 -0.32561 -0.189322)
(-1.59959 -0.450629 -0.16434)
(-1.56191 -0.585277 -0.122693)
(-1.52765 -0.712967 -0.0950478)
(-1.47119 -0.821857 -0.083969)
(-1.39646 -0.908137 -0.0827174)
(-1.29036 -0.941488 -0.0874622)
(-1.16332 -0.905593 -0.0952736)
(-1.03456 -0.774056 -0.112454)
(-0.929315 -0.54915 -0.144044)
(-0.782551 -0.262536 -0.231233)
(-0.524276 -0.0579095 -0.272941)
(-0.292038 0.131914 -0.28416)
(-0.14546 0.231911 -0.255838)
(-0.0596047 0.263555 -0.211439)
(-0.0177789 0.224949 -0.140982)
(-0.00262401 0.110536 -0.0447924)
(0.00478155 -0.032429 -0.0921124)
(-0.0284915 0.024396 -0.168781)
(-0.107173 0.15277 -0.177185)
(-0.214702 0.311814 -0.159221)
(-0.357068 0.472691 -0.140411)
(-0.524089 0.632228 -0.121777)
(-0.721763 0.778656 -0.108614)
(-0.948139 0.878892 -0.0969617)
(-1.18513 0.90799 -0.091394)
(-1.39176 0.898531 -0.102291)
(-1.54047 0.85882 -0.123893)
(-1.64487 0.802643 -0.146913)
(-1.72746 0.744956 -0.169476)
(-1.80255 0.67991 -0.192349)
(-1.85633 0.61995 -0.203022)
(-1.89835 0.55482 -0.194361)
(-1.92355 0.487452 -0.18227)
(-1.96705 0.412884 -0.153815)
(-1.98492 0.338759 -0.116317)
(-1.98311 0.235355 -0.0796755)
(-1.85538 0.130462 -0.0354214)
(-1.665 -0.000772568 0.000158585)
(-1.57889 -0.140826 0.0256867)
(-1.53621 -0.277772 0.0505641)
(-1.52669 -0.417611 0.0676781)
(-1.51325 -0.563474 0.0848814)
(-1.49611 -0.713256 0.100251)
(-1.47331 -0.859743 0.0835768)
(-1.42433 -0.984639 0.0690427)
(-1.34587 -1.07796 0.0412175)
(-1.23604 -1.09581 0.00901875)
(-1.10571 -1.02632 -0.0279932)
(-0.995063 -0.850887 -0.0713113)
(-0.908499 -0.548258 -0.154114)
(-0.712973 -0.23891 -0.24884)
(-0.440571 0.00176998 -0.288077)
(-0.232239 0.165858 -0.282155)
(-0.110077 0.246947 -0.233987)
(-0.0366304 0.228989 -0.155023)
(-0.00543774 0.112267 -0.0510296)
(-0.00336224 0.00331781 -0.133097)
(-0.0580618 0.109974 -0.21253)
(-0.16666 0.286971 -0.212302)
(-0.301076 0.483794 -0.175789)
(-0.459346 0.665549 -0.14524)
(-0.627766 0.82101 -0.114848)
(-0.837278 0.923286 -0.0938805)
(-1.07731 0.942719 -0.0715211)
(-1.2755 0.933926 -0.0762247)
(-1.40724 0.918519 -0.0842853)
(-1.4977 0.894077 -0.0933774)
(-1.56608 0.855019 -0.0979012)
(-1.62622 0.804433 -0.100962)
(-1.67992 0.741227 -0.0989814)
(-1.72036 0.689458 -0.0834043)
(-1.75619 0.630766 -0.0480093)
(-1.78223 0.572226 -0.01105)
(-1.81502 0.500438 0.0227535)
(-1.83451 0.442938 0.0612311)
(-1.8451 0.347397 0.100885)
(-1.74025 0.250228 0.121397)
(-1.57601 0.0710658 0.159583)
(-1.50725 -0.066671 0.177065)
(-1.48668 -0.218371 0.193111)
(-1.48515 -0.374043 0.201304)
(-1.48022 -0.542067 0.211629)
(-1.47407 -0.714474 0.216288)
(-1.45918 -0.889366 0.200038)
(-1.43426 -1.05145 0.177068)
(-1.36755 -1.18873 0.142453)
(-1.28278 -1.28678 0.0920417)
(-1.16739 -1.27489 0.0377795)
(-1.04349 -1.16878 -0.0162631)
(-0.975821 -0.909817 -0.0801612)
(-0.842851 -0.533005 -0.180343)
(-0.584521 -0.194813 -0.263603)
(-0.311319 0.0825432 -0.283499)
(-0.132347 0.21925 -0.25491)
(-0.0424228 0.228998 -0.170128)
(-0.00424898 0.117962 -0.0580711)
(-0.00806845 0.0421876 -0.156475)
(-0.0838838 0.207464 -0.245236)
(-0.211389 0.412796 -0.225035)
(-0.360314 0.619949 -0.166939)
(-0.528673 0.789875 -0.120764)
(-0.716624 0.912287 -0.08256)
(-0.937682 0.950775 -0.0642752)
(-1.12058 0.961098 -0.0539398)
(-1.24782 0.978349 -0.0534627)
(-1.34061 0.976331 -0.0498436)
(-1.40226 0.953727 -0.0453199)
(-1.45146 0.915543 -0.0341451)
(-1.50123 0.866733 -0.0249491)
(-1.53963 0.812283 -0.00234132)
(-1.57027 0.765047 0.0280634)
(-1.60365 0.711328 0.0678038)
(-1.63093 0.660697 0.107586)
(-1.66105 0.600064 0.1442)
(-1.68384 0.54206 0.171681)
(-1.70252 0.449952 0.195991)
(-1.66571 0.3556 0.213762)
(-1.51148 0.150904 0.243791)
(-1.43502 -0.0126241 0.268746)
(-1.42703 -0.182691 0.281821)
(-1.43428 -0.348382 0.28952)
(-1.43934 -0.531764 0.295938)
(-1.43746 -0.722513 0.291009)
(-1.43687 -0.91682 0.271074)
(-1.42723 -1.10836 0.253572)
(-1.40394 -1.28381 0.209853)
(-1.32501 -1.43481 0.164618)
(-1.22941 -1.51549 0.110519)
(-1.1002 -1.46391 0.0504923)
(-0.998214 -1.29007 -0.0157533)
(-0.917256 -0.899015 -0.109786)
(-0.679853 -0.470927 -0.195054)
(-0.389145 -0.0783774 -0.270065)
(-0.184433 0.13905 -0.26493)
(-0.0558177 0.20936 -0.182684)
(-0.00498883 0.115689 -0.0657296)
(-0.0128482 0.0981708 -0.182596)
(-0.106299 0.318132 -0.277726)
(-0.2482 0.538785 -0.244618)
(-0.399736 0.731894 -0.16645)
(-0.571813 0.878269 -0.1092)
(-0.764821 0.962333 -0.0723197)
(-0.946037 1.00011 -0.0537808)
(-1.0782 1.04015 -0.0354725)
(-1.17088 1.05528 -0.0226501)
(-1.22882 1.04503 -0.0105501)
(-1.27258 1.01625 0.00454086)
(-1.31558 0.978523 0.0272922)
(-1.35912 0.929575 0.0496845)
(-1.39788 0.882054 0.0822507)
(-1.4267 0.825841 0.119567)
(-1.45155 0.763776 0.157271)
(-1.47405 0.705819 0.189504)
(-1.50329 0.642276 0.213989)
(-1.53868 0.581858 0.231257)
(-1.56999 0.490428 0.241345)
(-1.57802 0.389214 0.253159)
(-1.46652 0.22038 0.265771)
(-1.3852 0.0189601 0.305571)
(-1.3743 -0.155525 0.320144)
(-1.3802 -0.340403 0.330939)
(-1.38626 -0.534931 0.336766)
(-1.38595 -0.738532 0.319226)
(-1.38787 -0.951036 0.305622)
(-1.39804 -1.16555 0.272045)
(-1.39812 -1.37585 0.259904)
(-1.37041 -1.55308 0.234521)
(-1.27909 -1.68722 0.182981)
(-1.16883 -1.72337 0.118766)
(-1.03213 -1.61109 0.0555847)
(-0.944636 -1.31787 -0.0207068)
(-0.778404 -0.809323 -0.125614)
(-0.480305 -0.337488 -0.200312)
(-0.214243 0.0478459 -0.220352)
(-0.050742 0.172891 -0.183577)
(-0.00387472 0.115215 -0.0675096)
(-0.014973 0.162563 -0.198805)
(-0.118532 0.438111 -0.302783)
(-0.266678 0.668722 -0.26213)
(-0.416716 0.849068 -0.173035)
(-0.592897 0.974017 -0.107464)
(-0.764094 1.03642 -0.06571)
(-0.902619 1.08653 -0.0376571)
(-0.991364 1.1191 -0.011912)
(-1.05523 1.12401 0.0100734)
(-1.10361 1.10378 0.0394556)
(-1.13948 1.06577 0.0657445)
(-1.1784 1.02159 0.0943352)
(-1.2201 0.969497 0.121586)
(-1.25466 0.909346 0.154452)
(-1.27961 0.84376 0.188222)
(-1.30027 0.769867 0.217332)
(-1.32121 0.698886 0.237977)
(-1.35252 0.62565 0.250371)
(-1.40051 0.558524 0.256724)
(-1.44833 0.477556 0.256429)
(-1.48288 0.378028 0.258118)
(-1.42028 0.238504 0.272069)
(-1.32376 0.0280661 0.315233)
(-1.29678 -0.142056 0.33434)
(-1.29835 -0.340113 0.344865)
(-1.30122 -0.533816 0.350034)
(-1.30506 -0.745185 0.329634)
(-1.31608 -0.964424 0.301071)
(-1.3337 -1.19943 0.291923)
(-1.34775 -1.43013 0.281532)
(-1.34136 -1.64783 0.260408)
(-1.30661 -1.81841 0.229146)
(-1.21642 -1.92667 0.177011)
(-1.09229 -1.89533 0.111582)
(-0.961559 -1.69378 0.0440543)
(-0.820796 -1.22494 -0.0302801)
(-0.539157 -0.63403 -0.125287)
(-0.254167 -0.11372 -0.189092)
(-0.0846377 0.112094 -0.165646)
(-0.00192233 0.104371 -0.0688833)
(-0.0136898 0.230605 -0.209168)
(-0.117713 0.56011 -0.322157)
(-0.264217 0.796822 -0.278828)
(-0.411803 0.964652 -0.181171)
(-0.581642 1.06525 -0.110762)
(-0.721647 1.1269 -0.0575817)
(-0.814248 1.16944 -0.0211268)
(-0.880764 1.19157 0.0152063)
(-0.929595 1.17341 0.0513228)
(-0.966217 1.1424 0.0852111)
(-1.00139 1.1003 0.119498)
(-1.03855 1.04999 0.152005)
(-1.08001 0.98811 0.180146)
(-1.11503 0.91732 0.208816)
(-1.14092 0.83762 0.235212)
(-1.16411 0.752267 0.255402)
(-1.18927 0.668752 0.266541)
(-1.22407 0.58596 0.270667)
(-1.27244 0.51005 0.269466)
(-1.3269 0.431143 0.266971)
(-1.36899 0.339738 0.257899)
(-1.33793 0.220401 0.274936)
(-1.23433 0.0400385 0.30707)
(-1.19189 -0.145508 0.324814)
(-1.19143 -0.333321 0.334162)
(-1.18976 -0.525981 0.324726)
(-1.20261 -0.734189 0.315689)
(-1.22368 -0.959404 0.293361)
(-1.24665 -1.1994 0.287557)
(-1.2638 -1.44816 0.276047)
(-1.27389 -1.6919 0.257868)
(-1.26504 -1.91296 0.232335)
(-1.22883 -2.07567 0.20038)
(-1.1385 -2.13348 0.158617)
(-0.998794 -2.01295 0.0945962)
(-0.846605 -1.64528 0.0318609)
(-0.608034 -1.01773 -0.0475241)
(-0.303207 -0.374937 -0.114451)
(-0.0886991 0.0290608 -0.12511)
(-0.00200644 0.0839659 -0.0605375)
(-0.0093479 0.29175 -0.213979)
(-0.105728 0.67293 -0.336579)
(-0.244918 0.913784 -0.293332)
(-0.391162 1.06383 -0.191631)
(-0.539601 1.14939 -0.112652)
(-0.644772 1.20987 -0.0498752)
(-0.711369 1.24303 -0.00360403)
(-0.760338 1.24128 0.0462749)
(-0.801523 1.216 0.0865398)
(-0.834224 1.17479 0.127213)
(-0.866713 1.1248 0.164942)
(-0.904877 1.0618 0.197701)
(-0.946296 0.988813 0.224295)
(-0.981066 0.904555 0.245779)
(-1.01083 0.816227 0.263079)
(-1.03903 0.724442 0.27406)
(-1.07121 0.6369 0.277747)
(-1.10842 0.550378 0.276741)
(-1.15283 0.46817 0.272052)
(-1.19513 0.383938 0.269419)
(-1.22925 0.295295 0.264927)
(-1.20898 0.194183 0.27619)
(-1.12383 0.0559564 0.296525)
(-1.06353 -0.14102 0.299391)
(-1.05327 -0.31376 0.304162)
(-1.05694 -0.500711 0.29875)
(-1.08053 -0.703508 0.278681)
(-1.10685 -0.923676 0.278983)
(-1.13474 -1.16379 0.273425)
(-1.16129 -1.42154 0.262388)
(-1.179 -1.68689 0.243483)
(-1.18837 -1.94718 0.217732)
(-1.17619 -2.17482 0.185169)
(-1.13261 -2.31243 0.152627)
(-1.03153 -2.29753 0.120828)
(-0.879044 -2.02978 0.0648484)
(-0.655746 -1.43689 0.0221401)
(-0.335939 -0.662022 -0.065977)
(-0.0953179 -0.0810884 -0.0674095)
(-0.00913262 0.0560039 -0.0503615)
(-0.00311053 0.3462 -0.210806)
(-0.0849908 0.778418 -0.345195)
(-0.215867 1.02368 -0.305468)
(-0.349129 1.15282 -0.198542)
(-0.469861 1.23484 -0.11246)
(-0.544891 1.28395 -0.0398813)
(-0.598668 1.30557 0.0162803)
(-0.640201 1.28808 0.0733125)
(-0.67347 1.25469 0.117781)
(-0.705266 1.2055 0.160798)
(-0.739156 1.14398 0.198857)
(-0.775218 1.06788 0.230424)
(-0.815679 0.979726 0.250706)
(-0.852383 0.885268 0.265446)
(-0.885873 0.789929 0.273808)
(-0.921071 0.696726 0.277565)
(-0.957247 0.607916 0.275495)
(-0.993264 0.520061 0.271307)
(-1.02747 0.433074 0.264956)
(-1.0545 0.346123 0.261824)
(-1.06802 0.257637 0.261036)
(-1.04174 0.174344 0.268169)
(-0.98679 0.0604919 0.278036)
(-0.937962 -0.104761 0.266473)
(-0.911822 -0.282739 0.26698)
(-0.922147 -0.463204 0.255048)
(-0.94853 -0.660223 0.255873)
(-0.979249 -0.870856 0.255558)
(-1.01322 -1.10816 0.25303)
(-1.04464 -1.36536 0.244174)
(-1.07955 -1.65002 0.229267)
(-1.10822 -1.94416 0.206055)
(-1.11581 -2.22157 0.177417)
(-1.09179 -2.43872 0.142641)
(-1.02337 -2.52259 0.112913)
(-0.892007 -2.37256 0.0789829)
(-0.683885 -1.87296 0.049447)
(-0.378212 -1.02737 -0.00860005)
(-0.10993 -0.261652 -0.0364256)
(-0.0208389 0.0227921 -0.0312455)
(0.00338762 0.383211 -0.207941)
(-0.0615341 0.864101 -0.35296)
(-0.18059 1.11346 -0.314652)
(-0.293401 1.23331 -0.207878)
(-0.383502 1.30544 -0.114818)
(-0.440176 1.33861 -0.0351229)
(-0.485165 1.34437 0.030659)
(-0.521256 1.32046 0.0907212)
(-0.552672 1.28145 0.138136)
(-0.585369 1.22451 0.181559)
(-0.617736 1.15365 0.218649)
(-0.654947 1.06548 0.246842)
(-0.693208 0.965018 0.26395)
(-0.728562 0.862616 0.271493)
(-0.765597 0.764183 0.273358)
(-0.803314 0.670671 0.270098)
(-0.83946 0.581478 0.263563)
(-0.868531 0.491247 0.256097)
(-0.889684 0.401146 0.248562)
(-0.899351 0.313734 0.245654)
(-0.89349 0.232796 0.247629)
(-0.869588 0.1623 0.25001)
(-0.83107 0.0582808 0.244922)
(-0.808589 -0.0723365 0.227982)
(-0.79294 -0.242598 0.217276)
(-0.796501 -0.420816 0.213936)
(-0.820767 -0.605223 0.220038)
(-0.851044 -0.808463 0.224913)
(-0.886166 -1.03394 0.224689)
(-0.928166 -1.2925 0.220647)
(-0.972976 -1.58333 0.209814)
(-1.01218 -1.89654 0.193343)
(-1.0385 -2.21591 0.166816)
(-1.03871 -2.49782 0.134542)
(-0.989689 -2.67966 0.0987438)
(-0.88765 -2.64525 0.0770792)
(-0.701767 -2.26737 0.0521588)
(-0.417387 -1.43188 0.0296892)
(-0.108913 -0.490129 -0.0156502)
(-0.00307795 -0.0266825 -0.0179611)
(0.00884409 0.413672 -0.199564)
(-0.0375043 0.941705 -0.353858)
(-0.135331 1.20597 -0.327342)
(-0.222765 1.31814 -0.216844)
(-0.290374 1.37698 -0.116237)
(-0.332767 1.39362 -0.0246551)
(-0.371887 1.38549 0.047666)
(-0.405121 1.35033 0.110077)
(-0.434842 1.30443 0.148943)
(-0.467774 1.24006 0.188944)
(-0.501263 1.16054 0.22208)
(-0.536345 1.06157 0.247865)
(-0.571961 0.955265 0.262857)
(-0.605871 0.84471 0.267948)
(-0.643373 0.743538 0.263079)
(-0.682234 0.647684 0.254883)
(-0.715177 0.556697 0.243421)
(-0.736249 0.464623 0.233623)
(-0.743361 0.373797 0.225652)
(-0.737804 0.290701 0.223868)
(-0.718188 0.22253 0.231503)
(-0.703781 0.151601 0.222651)
(-0.690961 0.0573436 0.209386)
(-0.690859 -0.0601896 0.18805)
(-0.691083 -0.204517 0.184099)
(-0.6892 -0.378526 0.177946)
(-0.706382 -0.551713 0.184079)
(-0.734045 -0.743345 0.189328)
(-0.773456 -0.960064 0.193267)
(-0.82023 -1.21328 0.193334)
(-0.869082 -1.50125 0.189537)
(-0.917624 -1.82611 0.1778)
(-0.955331 -2.17136 0.157248)
(-0.974129 -2.51061 0.126822)
(-0.948189 -2.77542 0.0921876)
(-0.863791 -2.86439 0.0605157)
(-0.698552 -2.61317 0.0495981)
(-0.454483 -1.84827 0.0399786)
(-0.125286 -0.744009 -0.000687424)
(0.00657416 -0.089187 -0.00304157)
(0.00938115 0.426925 -0.202445)
(-0.0090779 0.99509 -0.368661)
(-0.0837162 1.27955 -0.357802)
(-0.156362 1.3907 -0.250141)
(-0.200085 1.43543 -0.132834)
(-0.235105 1.43576 -0.0270413)
(-0.267864 1.41137 0.0561996)
(-0.296164 1.37163 0.115637)
(-0.326023 1.31736 0.15971)
(-0.357747 1.24686 0.195528)
(-0.389401 1.16011 0.216653)
(-0.421779 1.0596 0.239538)
(-0.453901 0.948699 0.253038)
(-0.485042 0.836492 0.257168)
(-0.520472 0.730384 0.248357)
(-0.557765 0.634642 0.23565)
(-0.585825 0.541003 0.22089)
(-0.598464 0.449091 0.208434)
(-0.59411 0.362971 0.200984)
(-0.57449 0.287679 0.204137)
(-0.559031 0.22101 0.210342)
(-0.563724 0.137229 0.192316)
(-0.569307 0.0510159 0.179424)
(-0.584337 -0.0523469 0.165589)
(-0.605184 -0.171059 0.156412)
(-0.606791 -0.327046 0.14724)
(-0.609917 -0.497793 0.147102)
(-0.635886 -0.679746 0.153611)
(-0.674572 -0.886962 0.159037)
(-0.721492 -1.12786 0.165486)
(-0.773773 -1.41164 0.166558)
(-0.825008 -1.73862 0.161373)
(-0.870224 -2.101 0.145024)
(-0.901188 -2.4793 0.11844)
(-0.895168 -2.81945 0.0826999)
(-0.835378 -3.01772 0.0506452)
(-0.685545 -2.90426 0.0289736)
(-0.46073 -2.2567 0.0373785)
(-0.134436 -1.05828 0.0218218)
(0.0179902 -0.155671 0.0107082)
(0.0100688 0.441158 -0.190134)
(0.00827028 1.06127 -0.369614)
(-0.0316946 1.35598 -0.370098)
(-0.0750262 1.46699 -0.270606)
(-0.109219 1.49579 -0.150672)
(-0.142682 1.48826 -0.0359962)
(-0.170862 1.45205 0.0536446)
(-0.195068 1.4063 0.121267)
(-0.220679 1.35674 0.166296)
(-0.248042 1.28236 0.199707)
(-0.271702 1.18975 0.223944)
(-0.295017 1.07976 0.231658)
(-0.322859 0.964347 0.234712)
(-0.354818 0.848111 0.23607)
(-0.391027 0.738496 0.226922)
(-0.427359 0.638068 0.211425)
(-0.453644 0.544754 0.194657)
(-0.458386 0.458452 0.183384)
(-0.446367 0.379199 0.179995)
(-0.430184 0.300658 0.184168)
(-0.433242 0.217738 0.182063)
(-0.450441 0.126569 0.165949)
(-0.463622 0.0441927 0.15744)
(-0.487902 -0.0482707 0.147936)
(-0.521785 -0.148022 0.137809)
(-0.542113 -0.27437 0.126684)
(-0.543718 -0.435916 0.114146)
(-0.556731 -0.616903 0.118128)
(-0.591571 -0.812652 0.126498)
(-0.63752 -1.04127 0.135925)
(-0.688427 -1.31184 0.142599)
(-0.74222 -1.63845 0.143893)
(-0.79185 -2.01117 0.134763)
(-0.831523 -2.42171 0.112007)
(-0.839967 -2.82049 0.0775144)
(-0.802711 -3.12221 0.0396349)
(-0.675091 -3.13809 0.015309)
(-0.46705 -2.61824 0.0195865)
(-0.149188 -1.39596 0.0343606)
(0.0325641 -0.200915 0.031718)
(0.00405548 0.432938 -0.196907)
(0.0133649 1.11824 -0.386532)
(0.00581748 1.44532 -0.405533)
(-0.0155114 1.55437 -0.300277)
(-0.0358318 1.56604 -0.179207)
(-0.0554169 1.54081 -0.0528169)
(-0.0742686 1.50064 0.0382568)
(-0.081579 1.45251 0.10735)
(-0.101867 1.40198 0.15241)
(-0.131307 1.32846 0.183262)
(-0.149624 1.23836 0.201237)
(-0.168038 1.13283 0.211493)
(-0.192699 1.01474 0.209699)
(-0.227005 0.898662 0.213804)
(-0.264201 0.787423 0.202088)
(-0.297691 0.686779 0.189532)
(-0.315957 0.593845 0.176225)
(-0.318069 0.50302 0.168787)
(-0.317098 0.412253 0.165539)
(-0.31965 0.314046 0.16286)
(-0.336864 0.218799 0.159584)
(-0.357989 0.124551 0.1474)
(-0.373606 0.0416003 0.143098)
(-0.401628 -0.0452516 0.136711)
(-0.440066 -0.134138 0.1254)
(-0.477501 -0.236841 0.113104)
(-0.496172 -0.369853 0.103013)
(-0.502876 -0.535343 0.0944237)
(-0.52114 -0.726548 0.097322)
(-0.558877 -0.947463 0.108452)
(-0.608549 -1.20793 0.118188)
(-0.659997 -1.52658 0.124313)
(-0.71225 -1.9058 0.120709)
(-0.756649 -2.34399 0.103205)
(-0.777671 -2.79711 0.0709727)
(-0.759511 -3.19233 0.0308248)
(-0.657135 -3.33647 0.00373123)
(-0.464547 -2.95918 0.00476717)
(-0.151031 -1.75762 0.0312749)
(0.0547455 -0.28532 0.0471366)
(0.0142488 0.494384 -0.169333)
(0.0405231 1.23095 -0.370673)
(0.0447704 1.58371 -0.403178)
(0.0445914 1.69126 -0.318154)
(0.0361591 1.69684 -0.195087)
(0.0284004 1.65245 -0.0614332)
(0.0252857 1.60709 0.0373628)
(0.0190656 1.55453 0.105007)
(0.0171165 1.50341 0.14154)
(0.00868563 1.45143 0.162039)
(-0.00416739 1.37588 0.171)
(-0.0244858 1.27565 0.178088)
(-0.0545343 1.1478 0.181011)
(-0.0919058 1.01356 0.177416)
(-0.131989 0.888836 0.179294)
(-0.166368 0.773219 0.17726)
(-0.195637 0.661802 0.166029)
(-0.212311 0.549194 0.158334)
(-0.227396 0.437088 0.15204)
(-0.239076 0.326507 0.147503)
(-0.26023 0.226254 0.145666)
(-0.28279 0.12953 0.135581)
(-0.29748 0.0443443 0.134933)
(-0.325881 -0.0416909 0.129801)
(-0.363617 -0.124779 0.118548)
(-0.405207 -0.213535 0.104572)
(-0.436267 -0.317894 0.0952244)
(-0.459174 -0.450289 0.0913687)
(-0.481573 -0.615531 0.0861672)
(-0.507683 -0.820183 0.086817)
(-0.54606 -1.06734 0.0940595)
(-0.58948 -1.38012 0.104763)
(-0.635782 -1.76176 0.110278)
(-0.681757 -2.22122 0.101152)
(-0.712486 -2.7208 0.0719475)
(-0.708065 -3.20865 0.0286594)
(-0.638162 -3.48449 -0.00662926)
(-0.479726 -3.26208 -0.0153059)
(-0.183198 -2.10598 0.0116677)
(0.0588454 -0.351283 0.0348895)
(0.00156214 0.627026 -0.191003)
(0.0370343 1.40587 -0.382621)
(0.0606612 1.78962 -0.432958)
(0.0758451 1.91019 -0.358406)
(0.0822227 1.91544 -0.236749)
(0.091211 1.86804 -0.0987528)
(0.109046 1.80931 0.00353197)
(0.135476 1.74654 0.0740886)
(0.162235 1.69266 0.0979091)
(0.160834 1.62335 0.118404)
(0.138029 1.52839 0.137636)
(0.0938563 1.40132 0.153699)
(0.0428237 1.25611 0.164449)
(0.00207492 1.105 0.171108)
(-0.0355884 0.961957 0.170991)
(-0.0748516 0.821549 0.168724)
(-0.108204 0.69318 0.16862)
(-0.13227 0.571573 0.160339)
(-0.154921 0.455398 0.154682)
(-0.171254 0.341193 0.147924)
(-0.195965 0.238562 0.145407)
(-0.218519 0.14003 0.132377)
(-0.232754 0.0504922 0.131625)
(-0.258522 -0.0371721 0.129209)
(-0.291843 -0.120437 0.119389)
(-0.332153 -0.200434 0.104457)
(-0.365022 -0.289993 0.0939497)
(-0.391943 -0.396365 0.0909486)
(-0.42374 -0.523419 0.0898548)
(-0.458486 -0.688971 0.0909325)
(-0.501043 -0.898722 0.0902282)
(-0.543804 -1.18489 0.0905702)
(-0.57746 -1.55438 0.0859292)
(-0.597922 -2.03486 0.0799518)
(-0.628332 -2.58248 0.0619149)
(-0.638967 -3.1498 0.0250336)
(-0.598577 -3.5565 -0.0111251)
(-0.481727 -3.51852 -0.0310922)
(-0.205232 -2.4692 0.00291932)
(0.0685171 -0.466248 0.0537027)
(-0.00963033 0.634354 -0.148579)
(0.0336598 1.43959 -0.3317)
(0.0863622 1.8617 -0.396245)
(0.119636 2.01582 -0.346889)
(0.142427 2.04065 -0.240242)
(0.160338 2.0037 -0.111102)
(0.191134 1.94342 -0.00732976)
(0.22875 1.8681 0.0613187)
(0.258532 1.78309 0.0954131)
(0.255202 1.68055 0.121607)
(0.233931 1.55756 0.136945)
(0.194766 1.42133 0.150626)
(0.146902 1.27787 0.163861)
(0.0969302 1.12935 0.176534)
(0.0455465 0.975067 0.184677)
(0.00880604 0.834676 0.187159)
(-0.0235545 0.707965 0.182499)
(-0.0535783 0.5879 0.181618)
(-0.0890729 0.472978 0.177875)
(-0.112945 0.359387 0.166219)
(-0.138891 0.25422 0.159097)
(-0.163792 0.1543 0.13953)
(-0.176981 0.0610112 0.135652)
(-0.200525 -0.0298319 0.133181)
(-0.225502 -0.115635 0.126066)
(-0.26019 -0.195188 0.112776)
(-0.294075 -0.271875 0.0986376)
(-0.320045 -0.364363 0.0938332)
(-0.352728 -0.467233 0.091828)
(-0.389211 -0.597057 0.0949447)
(-0.43981 -0.755439 0.103062)
(-0.496633 -0.9798 0.114909)
(-0.562588 -1.28631 0.122686)
(-0.593936 -1.72603 0.107596)
(-0.580762 -2.28039 0.0699849)
(-0.568835 -2.91899 0.0295765)
(-0.552891 -3.46514 -0.0142442)
(-0.475961 -3.644 -0.0529487)
(-0.244875 -2.80073 -0.0390842)
(0.0429306 -0.719828 0.00179633)
(-0.00514722 0.60099 -0.131075)
(0.0491673 1.40142 -0.295717)
(0.115667 1.84608 -0.368732)
(0.160992 2.02736 -0.336836)
(0.193763 2.06649 -0.243)
(0.219649 2.03726 -0.124439)
(0.257817 1.97495 -0.0229183)
(0.301211 1.89267 0.0471224)
(0.339251 1.79269 0.0853741)
(0.342976 1.68525 0.113609)
(0.320917 1.56362 0.134629)
(0.278857 1.42699 0.154182)
(0.227521 1.27939 0.173204)
(0.177718 1.12552 0.191583)
(0.131985 0.977478 0.206918)
(0.0952054 0.841246 0.219995)
(0.058876 0.711453 0.226967)
(0.0207108 0.593407 0.227042)
(-0.0231899 0.490257 0.216475)
(-0.0548495 0.374788 0.203039)
(-0.0856032 0.265666 0.185297)
(-0.111326 0.165482 0.159398)
(-0.125808 0.0684527 0.147618)
(-0.146596 -0.0209831 0.143877)
(-0.16508 -0.108611 0.135576)
(-0.186676 -0.192075 0.128518)
(-0.215431 -0.267488 0.114735)
(-0.241858 -0.35029 0.104542)
(-0.271576 -0.438891 0.0987637)
(-0.302702 -0.548928 0.0979331)
(-0.346028 -0.675387 0.101887)
(-0.393582 -0.849304 0.111906)
(-0.456033 -1.07687 0.126093)
(-0.525122 -1.41591 0.135569)
(-0.557648 -1.88298 0.112451)
(-0.554721 -2.51005 0.0590558)
(-0.546684 -3.13224 0.012457)
(-0.507968 -3.50662 -0.0408653)
(-0.34363 -2.91077 -0.0410729)
(-0.0308545 -0.817989 -0.0113995)
(0.000524146 0.562509 -0.0979233)
(0.0688233 1.336 -0.243708)
(0.148942 1.79743 -0.32254)
(0.203653 2.00125 -0.308431)
(0.246524 2.05367 -0.229741)
(0.275738 2.03156 -0.124861)
(0.315298 1.9695 -0.0263044)
(0.358649 1.88701 0.0458288)
(0.398885 1.78192 0.0882035)
(0.412647 1.6678 0.118105)
(0.39676 1.5437 0.141263)
(0.35654 1.40683 0.16384)
(0.307456 1.26229 0.187851)
(0.260145 1.11533 0.211216)
(0.215288 0.970856 0.234681)
(0.180985 0.832922 0.258881)
(0.144577 0.704279 0.28114)
(0.111517 0.583925 0.295835)
(0.0507281 0.478492 0.280346)
(-0.00418965 0.376142 0.246869)
(-0.0337832 0.27098 0.219234)
(-0.0607287 0.167441 0.187055)
(-0.0722558 0.0710524 0.166804)
(-0.0898614 -0.016302 0.157673)
(-0.106916 -0.0976542 0.1474)
(-0.121874 -0.18136 0.140833)
(-0.142295 -0.259013 0.13295)
(-0.16215 -0.34223 0.124712)
(-0.192643 -0.42308 0.115418)
(-0.221817 -0.52271 0.109238)
(-0.26297 -0.629139 0.10952)
(-0.30215 -0.777047 0.115093)
(-0.354587 -0.958154 0.124844)
(-0.402327 -1.23237 0.129612)
(-0.438454 -1.58957 0.109506)
(-0.465158 -2.13772 0.0642091)
(-0.499531 -2.75684 0.0151767)
(-0.504061 -3.2642 -0.0322582)
(-0.385893 -2.90312 -0.0423647)
(-0.0872834 -0.893253 -0.0123031)
(0.00439841 0.519508 -0.076089)
(0.0841106 1.26048 -0.202542)
(0.176387 1.73616 -0.285763)
(0.240285 1.96306 -0.286052)
(0.291181 2.02902 -0.221746)
(0.325893 2.01213 -0.130987)
(0.368289 1.95194 -0.0336334)
(0.412413 1.86998 0.039)
(0.453729 1.7671 0.0875996)
(0.47306 1.64975 0.118522)
(0.463425 1.52284 0.14349)
(0.430152 1.38578 0.169513)
(0.388596 1.24653 0.197174)
(0.346225 1.10306 0.227352)
(0.303898 0.961879 0.260557)
(0.268462 0.822957 0.29577)
(0.227176 0.691698 0.327028)
(0.185172 0.563583 0.345175)
(0.133111 0.44052 0.336894)
(0.0772257 0.342704 0.300811)
(0.0252103 0.247663 0.250583)
(-0.00566112 0.160217 0.209071)
(-0.0128731 0.0698842 0.187433)
(-0.0222918 -0.0113035 0.176407)
(-0.0367259 -0.0857155 0.162523)
(-0.0495117 -0.164347 0.155007)
(-0.0683959 -0.240693 0.14736)
(-0.0836575 -0.327186 0.140061)
(-0.107922 -0.407786 0.132044)
(-0.130937 -0.501981 0.123795)
(-0.167311 -0.596808 0.117965)
(-0.199585 -0.725241 0.117064)
(-0.244119 -0.875624 0.120043)
(-0.28148 -1.10939 0.118203)
(-0.328501 -1.41942 0.101634)
(-0.375389 -1.92184 0.0611501)
(-0.43881 -2.52338 0.0180164)
(-0.476043 -3.13141 -0.0278875)
(-0.405357 -2.97052 -0.0312055)
(-0.137691 -1.11694 0.00123373)
(0.0099038 0.469173 -0.051231)
(0.0990906 1.16589 -0.159833)
(0.200194 1.65448 -0.244647)
(0.271338 1.90697 -0.258413)
(0.330617 1.99094 -0.209216)
(0.370966 1.98274 -0.127554)
(0.416234 1.92453 -0.0381276)
(0.461342 1.84283 0.0343804)
(0.501571 1.74112 0.0856624)
(0.523611 1.62332 0.11962)
(0.521744 1.49557 0.14616)
(0.499844 1.3611 0.173091)
(0.467539 1.22485 0.202937)
(0.430228 1.08377 0.239174)
(0.388992 0.941098 0.279998)
(0.353419 0.798923 0.319774)
(0.30897 0.663192 0.352872)
(0.261003 0.530211 0.373305)
(0.205074 0.404624 0.367875)
(0.153821 0.283156 0.337736)
(0.115717 0.186996 0.288461)
(0.0795053 0.121182 0.239717)
(0.0642383 0.0575468 0.204568)
(0.0579841 -0.0134152 0.188806)
(0.0419735 -0.0752181 0.176394)
(0.027846 -0.147963 0.169774)
(0.00571622 -0.219783 0.164527)
(-0.00948032 -0.304198 0.15683)
(-0.033296 -0.380388 0.148924)
(-0.0537088 -0.475906 0.138014)
(-0.0892216 -0.567316 0.126649)
(-0.115996 -0.693575 0.117411)
(-0.159167 -0.823887 0.111737)
(-0.187845 -1.04055 0.101171)
(-0.239487 -1.3251 0.0811397)
(-0.288357 -1.80379 0.040771)
(-0.371187 -2.40259 -0.0012759)
(-0.42786 -3.08623 -0.0425578)
(-0.388286 -3.09353 -0.0369637)
(-0.147527 -1.37046 -0.00419335)
(0.0105873 0.426826 -0.0360467)
(0.110528 1.06697 -0.121855)
(0.22249 1.56115 -0.20673)
(0.295418 1.84344 -0.233143)
(0.360682 1.94986 -0.199421)
(0.408183 1.95521 -0.129132)
(0.458581 1.90095 -0.0469224)
(0.506593 1.81882 0.0241922)
(0.546702 1.71791 0.0768705)
(0.569882 1.60087 0.114127)
(0.575285 1.47487 0.143382)
(0.564848 1.34189 0.172214)
(0.542572 1.20624 0.204315)
(0.509941 1.06293 0.244737)
(0.470893 0.91853 0.288413)
(0.436585 0.773811 0.326136)
(0.390257 0.633455 0.356753)
(0.339828 0.494867 0.375926)
(0.277875 0.361325 0.374261)
(0.228363 0.233668 0.356163)
(0.213032 0.135712 0.305095)
(0.200694 0.075626 0.263808)
(0.177797 0.0277378 0.228303)
(0.162943 -0.0259037 0.203071)
(0.143262 -0.0802133 0.187178)
(0.12066 -0.146131 0.180784)
(0.0927603 -0.206552 0.174401)
(0.0768408 -0.278462 0.16619)
(0.0494131 -0.351102 0.161849)
(0.0268954 -0.447418 0.149977)
(-0.0119878 -0.532171 0.137505)
(-0.0311048 -0.651239 0.125839)
(-0.071139 -0.783167 0.114446)
(-0.0991398 -0.996842 0.0931729)
(-0.156222 -1.27791 0.070823)
(-0.209528 -1.7607 0.0343826)
(-0.309765 -2.38052 -0.00471671)
(-0.384088 -3.15149 -0.0402819)
(-0.382499 -3.30262 -0.0335765)
(-0.159416 -1.65541 0.00137182)
(0.00732411 0.373023 -0.0166941)
(0.112523 0.955706 -0.086779)
(0.245621 1.43633 -0.160521)
(0.321318 1.74998 -0.200288)
(0.384339 1.88386 -0.183057)
(0.436986 1.90787 -0.126869)
(0.492022 1.86351 -0.0542585)
(0.544963 1.78157 0.0138531)
(0.586413 1.68265 0.066684)
(0.610904 1.56701 0.10618)
(0.621435 1.44369 0.138218)
(0.619865 1.31211 0.169706)
(0.604862 1.1755 0.205326)
(0.579358 1.02983 0.247527)
(0.547377 0.887149 0.288071)
(0.516886 0.74208 0.321217)
(0.470399 0.599166 0.345604)
(0.416615 0.45466 0.36184)
(0.355549 0.319865 0.360543)
(0.3202 0.200451 0.346739)
(0.331228 0.113685 0.30123)
(0.329885 0.0555653 0.26679)
(0.308319 0.00451333 0.235037)
(0.286484 -0.0437878 0.209751)
(0.252639 -0.0934525 0.196206)
(0.229544 -0.156739 0.186203)
(0.199057 -0.212679 0.176425)
(0.173284 -0.289308 0.177635)
(0.131884 -0.364831 0.170806)
(0.108758 -0.469529 0.165045)
(0.0679921 -0.565606 0.147893)
(0.0359046 -0.713918 0.130147)
(-0.0142645 -0.852004 0.112921)
(-0.033663 -1.08502 0.0977154)
(-0.0945269 -1.3605 0.0574203)
(-0.134855 -1.8517 0.0160541)
(-0.228764 -2.49326 -0.0266014)
(-0.311914 -3.37535 -0.067204)
(-0.341611 -3.70272 -0.0623726)
(-0.149126 -2.16398 -0.0157437)
(0.00624392 0.326523 -0.00603104)
(0.105423 0.859115 -0.0632919)
(0.257856 1.31402 -0.123174)
(0.35244 1.64549 -0.16244)
(0.408537 1.81254 -0.161008)
(0.460936 1.85986 -0.122364)
(0.517687 1.83201 -0.0648908)
(0.576809 1.75365 0.000794681)
(0.624296 1.65675 0.0519295)
(0.650443 1.54066 0.0939831)
(0.664818 1.41725 0.129534)
(0.667799 1.28442 0.165345)
(0.658498 1.14539 0.202761)
(0.643705 1.00066 0.242411)
(0.621562 0.858931 0.277071)
(0.595546 0.712866 0.304511)
(0.54915 0.568628 0.322382)
(0.500822 0.426183 0.334593)
(0.454062 0.301551 0.334397)
(0.436893 0.190054 0.329091)
(0.466678 0.110445 0.28954)
(0.474785 0.0494327 0.26233)
(0.445936 0.000964883 0.234986)
(0.420519 -0.0552267 0.214708)
(0.377619 -0.0976165 0.20266)
(0.342833 -0.159385 0.194242)
(0.297399 -0.21504 0.185291)
(0.261735 -0.299723 0.176155)
(0.206548 -0.381032 0.165548)
(0.16633 -0.502804 0.156323)
(0.0968943 -0.620464 0.145519)
(0.0629269 -0.769257 0.130961)
(0.0053142 -0.903391 0.103115)
(-0.0106354 -1.12567 0.0835545)
(-0.0686096 -1.40364 0.0541265)
(-0.0965602 -1.8963 0.00690859)
(-0.1832 -2.57991 -0.0263231)
(-0.268538 -3.58469 -0.0894249)
(-0.320849 -4.13415 -0.100677)
(-0.153226 -2.79391 -0.0571971)
(0.00782837 0.281496 -1.77911e-05)
(0.0980678 0.755614 -0.0451116)
(0.252005 1.18727 -0.0959444)
(0.372102 1.50979 -0.128127)
(0.435958 1.70577 -0.131382)
(0.485133 1.77476 -0.106586)
(0.539613 1.76984 -0.0616117)
(0.597665 1.70412 -0.00910626)
(0.651349 1.61054 0.0398412)
(0.680069 1.49535 0.0828223)
(0.697058 1.3725 0.121237)
(0.703419 1.23976 0.158112)
(0.701073 1.1038 0.193552)
(0.6971 0.962948 0.227378)
(0.683881 0.822899 0.25429)
(0.665388 0.678601 0.27719)
(0.629214 0.540769 0.290742)
(0.596095 0.41034 0.305099)
(0.561807 0.293195 0.30786)
(0.55962 0.184126 0.308482)
(0.60767 0.10559 0.272053)
(0.623385 0.0442508 0.250345)
(0.589993 -0.00505084 0.231874)
(0.560318 -0.0573673 0.219922)
(0.51001 -0.0986272 0.210177)
(0.466513 -0.151595 0.206283)
(0.407161 -0.198444 0.200623)
(0.351688 -0.275891 0.193129)
(0.271379 -0.36907 0.178255)
(0.217503 -0.493911 0.15607)
(0.156702 -0.598513 0.127422)
(0.126639 -0.737674 0.109775)
(0.0546162 -0.863255 0.0949327)
(0.0249293 -1.05046 0.0802292)
(-0.0390093 -1.28556 0.0517766)
(-0.0509802 -1.772 0.00754403)
(-0.147255 -2.45739 -0.0235678)
(-0.24366 -3.59512 -0.0904175)
(-0.338643 -4.39378 -0.11867)
(-0.179325 -3.31559 -0.0813837)
(0.00406208 0.25227 0.00212747)
(0.0846869 0.675578 -0.0352313)
(0.231313 1.08133 -0.0779647)
(0.373875 1.40155 -0.109555)
(0.456452 1.6091 -0.111191)
(0.502685 1.70216 -0.0946381)
(0.562779 1.71134 -0.0595435)
(0.620489 1.66275 -0.0193524)
(0.674039 1.57277 0.0265852)
(0.707659 1.46099 0.0688805)
(0.728293 1.3383 0.106552)
(0.739819 1.20843 0.141323)
(0.744126 1.0766 0.171445)
(0.747488 0.939936 0.198074)
(0.742292 0.802912 0.218938)
(0.736193 0.663633 0.239123)
(0.715666 0.534952 0.254641)
(0.696186 0.412156 0.271784)
(0.67313 0.297952 0.277882)
(0.685689 0.187837 0.280485)
(0.753225 0.110683 0.246972)
(0.778381 0.0480581 0.232566)
(0.74181 -0.000943453 0.221979)
(0.71021 -0.0503928 0.218142)
(0.653179 -0.086486 0.212393)
(0.605164 -0.133399 0.214093)
(0.53015 -0.163618 0.212229)
(0.444777 -0.236426 0.206101)
(0.341868 -0.331019 0.179433)
(0.293089 -0.44601 0.157077)
(0.212524 -0.532358 0.12976)
(0.177584 -0.677717 0.1019)
(0.112332 -0.78183 0.0757893)
(0.0949195 -0.977973 0.0582959)
(-0.00846363 -1.16663 0.0530703)
(-0.00793578 -1.6016 0.00633645)
(-0.105217 -2.26913 -0.0199403)
(-0.207898 -3.48659 -0.0848566)
(-0.337593 -4.50473 -0.125615)
(-0.203846 -3.74138 -0.0888665)
(0.00618767 0.210045 0.00336685)
(0.0741121 0.580733 -0.0266809)
(0.206797 0.957109 -0.0632297)
(0.357918 1.26679 -0.0926094)
(0.46379 1.47726 -0.0961422)
(0.515831 1.59285 -0.0842663)
(0.569014 1.62025 -0.0578013)
(0.62739 1.58309 -0.022238)
(0.683558 1.50545 0.0163889)
(0.723956 1.40064 0.0540036)
(0.749185 1.28558 0.0882155)
(0.767432 1.1623 0.117549)
(0.777954 1.03899 0.141698)
(0.788037 0.9101 0.162193)
(0.789793 0.782821 0.179093)
(0.796188 0.652841 0.198202)
(0.790825 0.530129 0.215973)
(0.78576 0.411818 0.235805)
(0.774587 0.29965 0.2417)
(0.804306 0.189732 0.246323)
(0.893886 0.111063 0.214241)
(0.928368 0.0487156 0.20927)
(0.891139 -0.000954972 0.205739)
(0.8601 -0.0462474 0.208275)
(0.797166 -0.0768037 0.206634)
(0.751111 -0.113564 0.213541)
(0.662363 -0.131014 0.215041)
(0.539633 -0.188167 0.210194)
(0.418313 -0.270653 0.182791)
(0.378818 -0.38413 0.15816)
(0.289785 -0.461841 0.128484)
(0.251606 -0.592093 0.0973212)
(0.161205 -0.682595 0.0692319)
(0.145235 -0.876655 0.0352891)
(0.0638333 -1.03938 0.0294968)
(0.0501724 -1.44409 0.0135729)
(-0.0710173 -2.04241 -0.0207808)
(-0.15724 -3.31675 -0.0727084)
(-0.337837 -4.5391 -0.126988)
(-0.221637 -4.13206 -0.0966185)
(0.00159523 0.194555 0.00246493)
(0.0589549 0.527887 -0.0246042)
(0.172877 0.869265 -0.0572153)
(0.322014 1.17593 -0.0856844)
(0.45578 1.38011 -0.0931996)
(0.527633 1.51133 -0.0833983)
(0.576882 1.55634 -0.0642887)
(0.634869 1.53194 -0.036075)
(0.694137 1.46533 -0.00500932)
(0.741246 1.36646 0.0309414)
(0.775841 1.25535 0.0600861)
(0.801798 1.13775 0.0868541)
(0.818918 1.01906 0.106642)
(0.835303 0.898007 0.124962)
(0.843573 0.778991 0.139013)
(0.855635 0.659049 0.156597)
(0.859111 0.542064 0.171973)
(0.866132 0.427249 0.19076)
(0.869424 0.314884 0.197018)
(0.91582 0.205849 0.204738)
(1.02911 0.119986 0.176534)
(1.07726 0.0591607 0.178122)
(1.04031 0.00878393 0.179489)
(1.0132 -0.0349417 0.187674)
(0.948593 -0.0586852 0.188792)
(0.90535 -0.0879139 0.200802)
(0.806955 -0.0940559 0.204666)
(0.655214 -0.13804 0.204873)
(0.497683 -0.188611 0.179615)
(0.463707 -0.30385 0.154996)
(0.369294 -0.369965 0.125486)
(0.3337 -0.50293 0.0935511)
(0.228177 -0.572771 0.058397)
(0.206547 -0.75867 0.0363051)
(0.10195 -0.893207 0.00608413)
(0.119752 -1.28465 0.0104365)
(-0.0251167 -1.82033 -0.0182705)
(-0.107188 -3.12693 -0.0590551)
(-0.330725 -4.531 -0.122168)
(-0.249136 -4.52915 -0.109643)
(0.00653129 0.162973 0.00222805)
(0.0463817 0.453592 -0.0202479)
(0.140312 0.764569 -0.0521739)
(0.2768 1.04248 -0.0783186)
(0.418458 1.2496 -0.0912518)
(0.520528 1.37038 -0.0841078)
(0.568898 1.44295 -0.0681113)
(0.622613 1.42908 -0.0464715)
(0.685392 1.37959 -0.0196606)
(0.738278 1.29373 0.00683867)
(0.780907 1.19434 0.0325563)
(0.818473 1.08425 0.0575198)
(0.845425 0.974582 0.0749581)
(0.871029 0.860954 0.0907075)
(0.886346 0.753006 0.104284)
(0.90524 0.643929 0.119907)
(0.913861 0.53874 0.132231)
(0.928149 0.430044 0.147872)
(0.945011 0.321116 0.153155)
(1.00642 0.211557 0.159962)
(1.14569 0.119479 0.135853)
(1.21426 0.0608723 0.140598)
(1.17685 0.0125625 0.147114)
(1.15778 -0.0268274 0.157979)
(1.09296 -0.0435683 0.161171)
(1.05742 -0.0629542 0.17506)
(0.952804 -0.057883 0.175003)
(0.783284 -0.0853005 0.184036)
(0.594833 -0.116473 0.168589)
(0.553269 -0.211725 0.144644)
(0.454485 -0.276984 0.117593)
(0.427315 -0.405436 0.0878643)
(0.305948 -0.465501 0.0519347)
(0.287993 -0.650535 0.0258412)
(0.156817 -0.757384 0.00684631)
(0.188258 -1.13438 -0.0046204)
(0.0116506 -1.63268 -0.0108282)
(-0.0513135 -2.93258 -0.046184)
(-0.338372 -4.50432 -0.116605)
(-0.275509 -4.95986 -0.126249)
(-0.00385431 0.167521 -0.000936664)
(0.0260757 0.452072 -0.0276875)
(0.0910781 0.726214 -0.0559343)
(0.21608 0.998997 -0.0863583)
(0.365641 1.18716 -0.10079)
(0.499232 1.29936 -0.101494)
(0.570314 1.37224 -0.0838608)
(0.614066 1.3672 -0.0663327)
(0.682959 1.32183 -0.0441792)
(0.743853 1.24287 -0.0204259)
(0.796264 1.15214 -0.000283757)
(0.840601 1.04771 0.0206764)
(0.87558 0.942095 0.0350676)
(0.911659 0.834905 0.0529923)
(0.937025 0.73175 0.0642709)
(0.96061 0.62981 0.0778679)
(0.971395 0.534425 0.0881373)
(0.986926 0.434626 0.102444)
(1.01244 0.331971 0.105389)
(1.08465 0.224546 0.107635)
(1.25036 0.130018 0.0872554)
(1.34655 0.0744771 0.0938556)
(1.31397 0.0311396 0.102928)
(1.30443 -0.00492891 0.115033)
(1.24484 -0.0184853 0.119513)
(1.21779 -0.0326706 0.134844)
(1.10598 -0.0225785 0.133455)
(0.923611 -0.0390727 0.141044)
(0.703762 -0.050964 0.13238)
(0.653946 -0.119501 0.127358)
(0.537005 -0.163599 0.0988)
(0.530798 -0.291238 0.0792169)
(0.389241 -0.33586 0.0463727)
(0.38484 -0.515253 0.0223275)
(0.222187 -0.604506 0.00342823)
(0.260738 -0.964144 -0.00223496)
(0.0517294 -1.42023 0.00265034)
(0.0188747 -2.71981 -0.0152207)
(-0.359969 -4.44742 -0.0998445)
(-0.304095 -5.44003 -0.131125)
(0.0113335 0.158128 -0.00435756)
(0.0154294 0.409874 -0.0268874)
(0.0516827 0.670359 -0.0642428)
(0.152073 0.885903 -0.086881)
(0.275329 1.06982 -0.111738)
(0.435733 1.15903 -0.116502)
(0.527427 1.23184 -0.103266)
(0.57409 1.23607 -0.0862787)
(0.644274 1.20193 -0.0694771)
(0.716252 1.13685 -0.0498849)
(0.782062 1.05816 -0.0314752)
(0.83782 0.96704 -0.0157062)
(0.884885 0.875487 -0.00553802)
(0.930812 0.780136 0.00611854)
(0.964353 0.685449 0.0163076)
(0.998757 0.590359 0.0261079)
(1.01638 0.501648 0.038152)
(1.0323 0.412054 0.0527946)
(1.06471 0.322297 0.0526523)
(1.14601 0.216953 0.0527215)
(1.33835 0.128206 0.0374573)
(1.46738 0.0733273 0.0423223)
(1.43844 0.0374163 0.0492696)
(1.43804 0.00265066 0.0641794)
(1.38076 0.0021213 0.0706871)
(1.36346 -0.00746886 0.0879093)
(1.25455 0.0229511 0.085953)
(1.06713 0.00301568 0.096437)
(0.833186 0.0105148 0.0896409)
(0.795515 -0.0520584 0.0931755)
(0.649418 -0.0600701 0.0763456)
(0.655869 -0.182695 0.0605181)
(0.507913 -0.210223 0.0360239)
(0.518138 -0.390837 0.0197149)
(0.330658 -0.460186 0.00175034)
(0.379203 -0.822204 -0.000377696)
(0.134779 -1.22726 0.00604709)
(0.116555 -2.525 0.0237639)
(-0.372381 -4.36636 -0.0773163)
(-0.285504 -6.01339 -0.130996)
(-0.0212099 0.180675 -0.0129433)
(-0.0193131 0.485899 -0.0469296)
(-0.0205746 0.701946 -0.0792263)
(0.0499687 0.933282 -0.12453)
(0.186526 1.0667 -0.144115)
(0.35985 1.12601 -0.160653)
(0.493005 1.16779 -0.14911)
(0.544282 1.16435 -0.13167)
(0.620448 1.12298 -0.117405)
(0.701813 1.06419 -0.103024)
(0.779656 0.990308 -0.0884621)
(0.848411 0.908165 -0.0735246)
(0.907174 0.825595 -0.0616174)
(0.961274 0.738286 -0.0501991)
(1.00232 0.651923 -0.0415902)
(1.04235 0.563991 -0.0309635)
(1.06406 0.477819 -0.0247577)
(1.0874 0.397904 -0.0162424)
(1.12194 0.320718 -0.0172043)
(1.20706 0.224767 -0.0215793)
(1.42586 0.14844 -0.0358806)
(1.58916 0.0946746 -0.0258273)
(1.56982 0.0629751 -0.0207942)
(1.58875 0.0298774 -0.00487847)
(1.54157 0.0411514 0.000301685)
(1.54507 0.0334992 0.0193514)
(1.4318 0.0813894 0.0206766)
(1.23861 0.057367 0.039741)
(0.982029 0.0807027 0.0370472)
(0.961903 0.018343 0.0430288)
(0.810168 0.0192746 0.0319239)
(0.830043 -0.063781 0.0399827)
(0.660655 -0.082763 0.0352056)
(0.706806 -0.237445 0.0159838)
(0.475445 -0.278261 0.0164308)
(0.558955 -0.617864 0.0110653)
(0.234841 -0.965131 0.0219654)
(0.324488 -2.2072 0.07365)
(-0.314011 -4.25112 -0.0489243)
(-0.205786 -6.57895 -0.129756)
(0.0379365 0.346018 -0.028701)
(-0.00398093 0.462369 -0.0658022)
(-0.0654168 0.650786 -0.107505)
(-0.0212981 0.773995 -0.14153)
(0.0205448 0.942365 -0.188218)
(0.215213 0.961344 -0.210513)
(0.387698 1.0045 -0.209081)
(0.464049 0.989904 -0.192211)
(0.552105 0.959842 -0.183132)
(0.652091 0.913504 -0.172038)
(0.74726 0.857498 -0.159553)
(0.833039 0.792997 -0.147628)
(0.904003 0.726576 -0.136568)
(0.969721 0.657936 -0.127246)
(1.02066 0.588271 -0.120111)
(1.07023 0.514621 -0.112752)
(1.10234 0.438112 -0.109791)
(1.1381 0.369079 -0.107676)
(1.18202 0.298448 -0.116927)
(1.28328 0.20354 -0.117411)
(1.52503 0.145726 -0.122839)
(1.72215 0.0890701 -0.111809)
(1.71428 0.0601036 -0.106092)
(1.75734 0.0326382 -0.0860826)
(1.71916 0.0607421 -0.0741357)
(1.74628 0.0572025 -0.0501807)
(1.63476 0.119078 -0.0405572)
(1.4631 0.100733 -0.0220628)
(1.20146 0.145317 -0.0156215)
(1.20647 0.0943512 -0.0157051)
(1.05959 0.108708 -0.00829972)
(1.13992 0.0171026 -0.00513642)
(0.947034 0.00915568 -0.00360674)
(1.06898 -0.126661 0.00140125)
(0.799643 -0.175557 0.00225678)
(0.941156 -0.469028 0.0149782)
(0.557325 -0.798965 0.0248667)
(0.692059 -1.86721 0.0730827)
(-0.0615697 -4.03807 -0.0010634)
(0.122991 -7.08607 -0.113515)
(-0.19731 0.0947007 -0.045234)
(-0.233655 0.667324 -0.11275)
(-0.191846 0.797581 -0.178623)
(-0.170454 0.899413 -0.243816)
(-0.069966 0.92428 -0.284252)
(0.0744518 0.938495 -0.322257)
(0.281506 0.901414 -0.322132)
(0.374857 0.866523 -0.31106)
(0.488204 0.825445 -0.298447)
(0.60079 0.782929 -0.287663)
(0.713195 0.73587 -0.274545)
(0.815035 0.683123 -0.261146)
(0.904533 0.631498 -0.248457)
(0.985997 0.576937 -0.237773)
(1.04996 0.523889 -0.230548)
(1.11192 0.464309 -0.226666)
(1.16175 0.397696 -0.229726)
(1.22354 0.341676 -0.233736)
(1.28445 0.291781 -0.243987)
(1.43316 0.204806 -0.254109)
(1.72921 0.171661 -0.264611)
(1.98711 0.109757 -0.238158)
(2.02547 0.0794279 -0.224621)
(2.13305 0.0543658 -0.20058)
(2.11804 0.0661466 -0.182152)
(2.18175 0.0622085 -0.155821)
(2.06872 0.135631 -0.131621)
(1.93397 0.114414 -0.101416)
(1.65307 0.188816 -0.0788581)
(1.7313 0.152672 -0.0708104)
(1.57695 0.186318 -0.0509307)
(1.73264 0.0907272 -0.0535675)
(1.53207 0.0911438 -0.038043)
(1.73167 -0.0304958 -0.0233289)
(1.40703 -0.0936262 -0.0217012)
(1.61992 -0.303329 0.00432113)
(1.13502 -0.536644 0.00278888)
(1.3524 -1.34538 0.071216)
(0.509588 -3.5526 0.023055)
(0.599323 -6.95235 -0.142353)
(-0.706539 0.81442 -0.226866)
(-0.524706 0.418969 -0.32659)
(-0.639245 0.577297 -0.365542)
(-0.386713 0.586336 -0.392853)
(-0.262699 0.577139 -0.422234)
(0.00389272 0.620083 -0.422456)
(0.234712 0.590319 -0.445229)
(0.438936 0.565418 -0.424957)
(0.617908 0.539258 -0.412832)
(0.801473 0.513851 -0.39669)
(0.978245 0.482434 -0.380098)
(1.15007 0.449896 -0.364605)
(1.30053 0.419392 -0.349952)
(1.44352 0.393478 -0.339231)
(1.55866 0.372323 -0.334573)
(1.67795 0.337791 -0.335957)
(1.79118 0.292056 -0.349988)
(1.94989 0.265001 -0.362154)
(2.11386 0.220885 -0.369397)
(2.38247 0.130784 -0.367933)
(2.75766 0.104342 -0.361561)
(3.13137 0.0432255 -0.329412)
(3.21696 0.00822817 -0.303605)
(3.38595 -0.0212681 -0.269243)
(3.34683 -0.00595266 -0.245338)
(3.46921 0.010902 -0.236341)
(3.31381 0.091974 -0.203116)
(3.27044 0.0865992 -0.178301)
(2.94362 0.172715 -0.141769)
(3.14149 0.165703 -0.135401)
(2.95584 0.183103 -0.111218)
(3.29232 0.116415 -0.105231)
(3.01271 0.0752968 -0.0944415)
(3.38094 0.00782264 -0.0812854)
(2.89937 -0.0690969 -0.0756413)
(3.27514 -0.224276 -0.0456278)
(2.5984 -0.510824 -0.0671015)
(2.92855 -1.06451 -0.018591)
(1.98349 -2.94787 0.0302155)
(1.45709 -5.9094 -0.196118)
(1.16065 1.46204 -0.122082)
(1.73861 0.728138 -0.170125)
(2.50247 0.597799 -0.199261)
(2.92237 0.385939 -0.212547)
(3.21753 0.309153 -0.21935)
(3.47409 0.235753 -0.231539)
(3.72736 0.214939 -0.245207)
(3.94282 0.182804 -0.255939)
(4.13145 0.170298 -0.263887)
(4.32738 0.156312 -0.268671)
(4.51474 0.146168 -0.270323)
(4.70982 0.13423 -0.270374)
(4.87229 0.124687 -0.268714)
(5.03266 0.115241 -0.26878)
(5.14393 0.11268 -0.275019)
(5.28474 0.106378 -0.288403)
(5.4174 0.0805886 -0.317476)
(5.63812 0.0749687 -0.338389)
(5.90073 0.0849887 -0.341561)
(6.2945 0.0483272 -0.335232)
(6.64735 0.0311992 -0.322154)
(7.0728 0.00715424 -0.277412)
(7.08877 -0.0130133 -0.243215)
(7.19294 -0.0432965 -0.219912)
(7.01883 -0.0387122 -0.208373)
(7.03462 -0.0464868 -0.199761)
(6.71494 -0.0086349 -0.173897)
(6.7159 0.00234929 -0.15376)
(6.28529 0.0439414 -0.12731)
(6.58073 0.0581276 -0.11937)
(6.34346 0.0749187 -0.109644)
(6.82082 0.0639726 -0.0997032)
(6.5061 0.0309812 -0.0950716)
(6.91291 0.00131142 -0.0859349)
(6.37808 -0.0270605 -0.0839854)
(6.60303 -0.109588 -0.0726124)
(5.76289 -0.250476 -0.0917076)
(5.73096 -0.564459 -0.136799)
(4.35166 -1.08381 -0.0640294)
(2.90198 -2.45979 -0.27672)
(0.00289008 -0.000381313 -0.000635554)
(0.0180165 -0.00539682 -0.0111225)
(0.0333339 -0.00501575 -0.0122749)
(0.0425967 -0.00515209 -0.01011)
(0.0445261 -0.00188955 -0.00737216)
(0.0392169 -0.0040573 -0.00396288)
(0.024982 0.0020053 -0.0015938)
(0.00756421 0.00633446 -0.000935722)
(-0.0161197 0.00453596 0.00390834)
(-0.0569409 0.00340747 0.00105413)
(-0.10112 -0.00136657 0.000782691)
(-0.15956 -0.00571826 -0.00404968)
(-0.220663 -0.00278711 -0.00999208)
(-0.307817 -0.0031187 -0.0218757)
(-0.40955 0.00830163 -0.0556842)
(-0.522999 0.0124972 -0.0832727)
(-0.64335 0.010378 -0.132251)
(-0.790899 0.01084 -0.185439)
(-0.904148 0.0100165 -0.261399)
(-1.05881 0.010398 -0.319461)
(-1.02932 0.0363431 -0.397245)
(-0.892185 0.0228362 -0.42783)
(-0.876287 0.0311647 -0.45213)
(-0.851436 -0.00135245 -0.463617)
(-0.83063 -0.0408795 -0.490137)
(-0.76721 -0.0796702 -0.528425)
(-0.690899 -0.114455 -0.572792)
(-0.572265 -0.137205 -0.610092)
(-0.440446 -0.147146 -0.638603)
(-0.264825 -0.132755 -0.650037)
(-0.102503 -0.120195 -0.642912)
(0.0880701 -0.05481 -0.587339)
(0.261719 -0.0173041 -0.511171)
(0.321071 0.0329637 -0.379487)
(0.302742 0.0645669 -0.240011)
(0.229866 0.0508476 -0.14)
(0.141498 0.0330567 -0.0785325)
(0.0668682 0.0177652 -0.0486669)
(0.0204878 0.00734242 -0.0312936)
(-0.00138271 -0.00172278 -0.00964701)
(0.00523419 -0.0159157 -0.0117608)
(0.0287506 -0.0309328 -0.0347783)
(0.0487283 -0.026506 -0.0419356)
(0.0571196 -0.0121806 -0.0409967)
(0.0456211 -0.000772553 -0.0375581)
(0.0195638 0.013189 -0.0328115)
(-0.0270909 0.029049 -0.0256625)
(-0.107554 0.0492247 -0.0294777)
(-0.210678 0.0652786 -0.0268222)
(-0.34891 0.0875677 -0.036731)
(-0.507275 0.116761 -0.0488381)
(-0.685673 0.151164 -0.0747047)
(-0.884261 0.186796 -0.104978)
(-1.11277 0.208351 -0.153109)
(-1.35534 0.211788 -0.219174)
(-1.6014 0.18452 -0.299137)
(-1.8154 0.146437 -0.384082)
(-2.01813 0.105571 -0.470413)
(-2.16315 0.0613367 -0.569701)
(-2.26318 0.0268718 -0.639289)
(-2.13057 0.00654701 -0.716319)
(-1.89725 -0.0581344 -0.713766)
(-1.80768 -0.153016 -0.72261)
(-1.70098 -0.260026 -0.723034)
(-1.61192 -0.37364 -0.740179)
(-1.49027 -0.480018 -0.755445)
(-1.36503 -0.571455 -0.767723)
(-1.1999 -0.634321 -0.772759)
(-1.023 -0.658045 -0.769622)
(-0.820339 -0.622974 -0.757694)
(-0.614072 -0.544868 -0.728836)
(-0.370869 -0.39274 -0.686792)
(-0.109604 -0.245372 -0.631826)
(0.115788 -0.0709232 -0.530539)
(0.237035 0.0628363 -0.408763)
(0.250213 0.131961 -0.288165)
(0.206348 0.129999 -0.206261)
(0.125265 0.107253 -0.153012)
(0.0535297 0.0737565 -0.105866)
(0.00721638 0.0307822 -0.0392116)
(0.0056984 -0.0402702 -0.0212309)
(0.0237323 -0.0609464 -0.0554761)
(0.0337126 -0.0394612 -0.0692979)
(0.0183344 -0.00329673 -0.0711255)
(-0.0226977 0.0357293 -0.0682015)
(-0.0921384 0.0835903 -0.065604)
(-0.20396 0.130288 -0.0666251)
(-0.360401 0.193059 -0.0687854)
(-0.556593 0.261867 -0.0780251)
(-0.78439 0.331244 -0.0950285)
(-1.02202 0.398053 -0.121118)
(-1.26405 0.447452 -0.159749)
(-1.50042 0.468479 -0.210503)
(-1.74701 0.435592 -0.276487)
(-1.97643 0.368819 -0.358006)
(-2.16639 0.29604 -0.427412)
(-2.30535 0.225664 -0.494776)
(-2.42959 0.14799 -0.558308)
(-2.49212 0.0716882 -0.627816)
(-2.5139 -0.0113232 -0.662842)
(-2.31109 -0.0854752 -0.679662)
(-2.08009 -0.239809 -0.669874)
(-1.94726 -0.395039 -0.65628)
(-1.83029 -0.536454 -0.630943)
(-1.75835 -0.683865 -0.6084)
(-1.66904 -0.829088 -0.585607)
(-1.58261 -0.955707 -0.571708)
(-1.46284 -1.05369 -0.552054)
(-1.32762 -1.10294 -0.528793)
(-1.1676 -1.07944 -0.502138)
(-1.01801 -0.977178 -0.47689)
(-0.8437 -0.777264 -0.462627)
(-0.607846 -0.539274 -0.457605)
(-0.332504 -0.271623 -0.442137)
(-0.0760463 -0.0359549 -0.388665)
(0.0666978 0.134086 -0.320937)
(0.101823 0.191106 -0.258639)
(0.0811785 0.192399 -0.208081)
(0.0374915 0.150573 -0.146793)
(0.00450625 0.0731277 -0.0535746)
(0.00253798 -0.0596482 -0.0333696)
(0.00560619 -0.0724902 -0.07902)
(-0.0196189 -0.0258847 -0.0958379)
(-0.0733522 0.0495436 -0.0975542)
(-0.156769 0.134594 -0.0942775)
(-0.28605 0.227086 -0.0928407)
(-0.463647 0.331435 -0.0945258)
(-0.687709 0.444424 -0.100446)
(-0.940459 0.544829 -0.110402)
(-1.19312 0.617512 -0.135063)
(-1.41878 0.656012 -0.167745)
(-1.62264 0.647408 -0.211125)
(-1.82282 0.587968 -0.263123)
(-2.00633 0.490223 -0.331242)
(-2.13841 0.399212 -0.380762)
(-2.23186 0.314836 -0.419624)
(-2.29201 0.229713 -0.453038)
(-2.34816 0.134096 -0.481653)
(-2.35964 0.0398821 -0.502755)
(-2.34215 -0.0824971 -0.494198)
(-2.17789 -0.201305 -0.504713)
(-1.93654 -0.384097 -0.467927)
(-1.82551 -0.525406 -0.432579)
(-1.75129 -0.677381 -0.393621)
(-1.71364 -0.833907 -0.359596)
(-1.66685 -0.99592 -0.330375)
(-1.61965 -1.1449 -0.311562)
(-1.54432 -1.27332 -0.293819)
(-1.44811 -1.36134 -0.276934)
(-1.32172 -1.37852 -0.25862)
(-1.18955 -1.30985 -0.245463)
(-1.07664 -1.12321 -0.243159)
(-0.933873 -0.835821 -0.279061)
(-0.68348 -0.513279 -0.313031)
(-0.384785 -0.197512 -0.34202)
(-0.158166 0.044768 -0.315926)
(-0.0377458 0.1802 -0.278922)
(0.00368912 0.221847 -0.23328)
(0.00574921 0.191625 -0.165589)
(-0.000789396 0.0953516 -0.058389)
(-0.00215333 -0.0699453 -0.0532176)
(-0.0321174 -0.0498239 -0.11406)
(-0.0988904 0.0383159 -0.134018)
(-0.196766 0.172946 -0.127645)
(-0.334059 0.306561 -0.122801)
(-0.508537 0.450588 -0.118108)
(-0.717896 0.589741 -0.120275)
(-0.952721 0.713948 -0.122117)
(-1.19302 0.797685 -0.133011)
(-1.40962 0.81862 -0.151095)
(-1.59392 0.781958 -0.177236)
(-1.75638 0.701481 -0.215157)
(-1.88788 0.597618 -0.263502)
(-1.98286 0.498092 -0.301924)
(-2.04456 0.41165 -0.323341)
(-2.08912 0.319634 -0.332752)
(-2.11739 0.226754 -0.336765)
(-2.15264 0.122667 -0.335922)
(-2.16385 0.0265396 -0.330972)
(-2.16393 -0.10963 -0.313033)
(-2.01405 -0.254475 -0.301428)
(-1.80259 -0.417889 -0.254149)
(-1.7226 -0.579552 -0.220671)
(-1.67937 -0.739034 -0.176671)
(-1.66283 -0.897833 -0.148062)
(-1.6377 -1.07123 -0.118606)
(-1.61457 -1.23359 -0.106461)
(-1.5679 -1.38879 -0.098067)
(-1.50385 -1.5182 -0.0954192)
(-1.40387 -1.58918 -0.096218)
(-1.28356 -1.57514 -0.102603)
(-1.16137 -1.44777 -0.119193)
(-1.08385 -1.18343 -0.151613)
(-0.928273 -0.800245 -0.23224)
(-0.630698 -0.427548 -0.279206)
(-0.337592 -0.090908 -0.318205)
(-0.150278 0.125438 -0.301072)
(-0.0613228 0.218361 -0.255018)
(-0.0200058 0.21021 -0.175685)
(-0.00510039 0.105847 -0.0610138)
(-0.00468214 -0.0569113 -0.0774487)
(-0.0728811 0.0135155 -0.153036)
(-0.191319 0.165336 -0.168663)
(-0.331872 0.349758 -0.153487)
(-0.501898 0.527365 -0.141138)
(-0.687005 0.694718 -0.130753)
(-0.88891 0.833694 -0.126621)
(-1.10597 0.91588 -0.124265)
(-1.33124 0.907914 -0.12338)
(-1.52379 0.855961 -0.138626)
(-1.65213 0.772719 -0.164116)
(-1.73636 0.680471 -0.190667)
(-1.80052 0.590309 -0.214443)
(-1.85243 0.501869 -0.22593)
(-1.88686 0.41272 -0.221012)
(-1.91871 0.321439 -0.207764)
(-1.94688 0.230954 -0.189626)
(-1.98066 0.131399 -0.167728)
(-2.00952 0.0347699 -0.132348)
(-2.02832 -0.0906918 -0.0982014)
(-1.90248 -0.222752 -0.0777113)
(-1.70368 -0.404906 -0.034657)
(-1.62226 -0.565148 0.00572313)
(-1.59323 -0.729241 0.0368686)
(-1.58809 -0.888723 0.0526265)
(-1.57379 -1.06606 0.0669579)
(-1.56857 -1.24401 0.0735251)
(-1.54702 -1.41902 0.0628682)
(-1.51095 -1.58352 0.0544781)
(-1.44553 -1.71202 0.038291)
(-1.34996 -1.77217 0.0126049)
(-1.22607 -1.7157 -0.0195911)
(-1.12904 -1.54655 -0.058456)
(-1.06102 -1.17578 -0.138032)
(-0.836516 -0.741661 -0.230833)
(-0.502652 -0.310302 -0.300332)
(-0.244708 0.0177425 -0.305168)
(-0.104192 0.177998 -0.271263)
(-0.0337002 0.201793 -0.187629)
(-0.00598871 0.103615 -0.0663327)
(-0.011679 -0.0116489 -0.117857)
(-0.111892 0.115386 -0.196419)
(-0.272467 0.324232 -0.202607)
(-0.438763 0.545263 -0.17453)
(-0.616184 0.737918 -0.153744)
(-0.791372 0.889804 -0.133311)
(-0.995918 0.967601 -0.121158)
(-1.22519 0.948129 -0.10343)
(-1.40601 0.89052 -0.110802)
(-1.51064 0.833173 -0.120673)
(-1.57473 0.770337 -0.13055)
(-1.62312 0.696745 -0.136223)
(-1.66624 0.610412 -0.139184)
(-1.70568 0.526572 -0.126839)
(-1.73649 0.442699 -0.106925)
(-1.77191 0.359001 -0.0705213)
(-1.80773 0.276037 -0.0322844)
(-1.84914 0.187427 0.0098317)
(-1.87742 0.0907578 0.0454353)
(-1.91111 -0.0307406 0.0792155)
(-1.81942 -0.142315 0.0987235)
(-1.62657 -0.339042 0.120615)
(-1.53937 -0.507856 0.144222)
(-1.513 -0.677734 0.164133)
(-1.51035 -0.848423 0.176733)
(-1.50506 -1.03308 0.182633)
(-1.50254 -1.22604 0.17938)
(-1.49583 -1.42051 0.174565)
(-1.48179 -1.61323 0.164909)
(-1.44775 -1.78718 0.154009)
(-1.38246 -1.91445 0.110436)
(-1.28745 -1.94693 0.0711682)
(-1.16351 -1.85374 0.0160482)
(-1.10467 -1.59956 -0.0452229)
(-0.974588 -1.12819 -0.145705)
(-0.648539 -0.628125 -0.246533)
(-0.331699 -0.166417 -0.29768)
(-0.138363 0.0975241 -0.290982)
(-0.0384612 0.180372 -0.199331)
(-0.00417084 0.100419 -0.0745556)
(-0.0227021 0.0408318 -0.134782)
(-0.147936 0.227857 -0.222607)
(-0.327684 0.466013 -0.21495)
(-0.505402 0.693338 -0.174486)
(-0.685588 0.865357 -0.140709)
(-0.880023 0.9673 -0.109003)
(-1.0962 0.965629 -0.0923125)
(-1.25811 0.929444 -0.0873189)
(-1.35722 0.904553 -0.0861511)
(-1.42124 0.86358 -0.0818835)
(-1.45879 0.798343 -0.0762213)
(-1.49508 0.723288 -0.0659786)
(-1.53103 0.641861 -0.0548416)
(-1.57065 0.564622 -0.0208811)
(-1.60646 0.4896 0.0134249)
(-1.64619 0.411228 0.0515012)
(-1.68394 0.336996 0.0920793)
(-1.72755 0.257607 0.13367)
(-1.75873 0.176522 0.168486)
(-1.7803 0.0539053 0.19132)
(-1.73783 -0.0454029 0.20292)
(-1.56311 -0.250718 0.230942)
(-1.45827 -0.434179 0.246245)
(-1.42733 -0.611674 0.257911)
(-1.4222 -0.788159 0.261468)
(-1.4208 -0.979167 0.259581)
(-1.42052 -1.17884 0.250498)
(-1.42329 -1.38953 0.236677)
(-1.42555 -1.60463 0.223886)
(-1.41706 -1.81551 0.208141)
(-1.38839 -2.00003 0.18941)
(-1.32245 -2.1159 0.137925)
(-1.21938 -2.11181 0.0878024)
(-1.11867 -1.95823 0.023335)
(-1.03959 -1.56143 -0.0586206)
(-0.788998 -0.999027 -0.157184)
(-0.424573 -0.434281 -0.263336)
(-0.167265 0.000662614 -0.257841)
(-0.0364865 0.136585 -0.209058)
(-0.00328025 0.095189 -0.0803992)
(-0.0284726 0.101766 -0.157172)
(-0.173676 0.345807 -0.250349)
(-0.364878 0.590022 -0.230512)
(-0.540472 0.794139 -0.173199)
(-0.727358 0.932271 -0.129226)
(-0.92612 0.984941 -0.0969812)
(-1.09445 0.984558 -0.0830578)
(-1.20108 0.985079 -0.0655911)
(-1.26445 0.95453 -0.0515597)
(-1.29795 0.904331 -0.0326792)
(-1.32382 0.835585 -0.0165735)
(-1.35972 0.763012 0.00304609)
(-1.40439 0.68859 0.0298187)
(-1.44908 0.614349 0.0663937)
(-1.48963 0.540364 0.106377)
(-1.52742 0.463868 0.146227)
(-1.56056 0.391958 0.18236)
(-1.59691 0.316705 0.212581)
(-1.63221 0.244379 0.238187)
(-1.64781 0.137419 0.253483)
(-1.64387 0.0185298 0.262691)
(-1.50162 -0.155633 0.274509)
(-1.37061 -0.361475 0.29218)
(-1.33222 -0.543895 0.300565)
(-1.32137 -0.726383 0.300761)
(-1.31997 -0.918895 0.295166)
(-1.32394 -1.12316 0.282118)
(-1.33198 -1.34122 0.267541)
(-1.34516 -1.57238 0.251368)
(-1.3595 -1.80932 0.237562)
(-1.35835 -2.03401 0.219069)
(-1.32876 -2.2107 0.194586)
(-1.24922 -2.294 0.139439)
(-1.14128 -2.23751 0.0881405)
(-1.0532 -1.96177 0.0162709)
(-0.875592 -1.41154 -0.0658709)
(-0.510346 -0.759685 -0.169281)
(-0.211719 -0.18359 -0.221106)
(-0.0669983 0.0765217 -0.197148)
(0.00100944 0.0843754 -0.0834212)
(-0.0320549 0.175683 -0.171511)
(-0.188143 0.473174 -0.2735)
(-0.383016 0.718993 -0.249115)
(-0.553201 0.900467 -0.183764)
(-0.743652 1.00838 -0.130077)
(-0.917542 1.04074 -0.0914286)
(-1.04121 1.05603 -0.064349)
(-1.10794 1.04355 -0.0366017)
(-1.13838 1.00555 -0.0133051)
(-1.16346 0.944694 0.014904)
(-1.19674 0.877869 0.0433738)
(-1.24145 0.802542 0.0695315)
(-1.29108 0.729093 0.103075)
(-1.3372 0.652713 0.143383)
(-1.37646 0.575668 0.182894)
(-1.40868 0.495496 0.216528)
(-1.43539 0.419077 0.241857)
(-1.46305 0.340854 0.258871)
(-1.49756 0.265348 0.27004)
(-1.52056 0.175815 0.280307)
(-1.51548 0.0516212 0.28764)
(-1.41427 -0.0797584 0.292268)
(-1.27773 -0.294495 0.312678)
(-1.21734 -0.474508 0.313706)
(-1.2021 -0.659935 0.314047)
(-1.20038 -0.846092 0.306828)
(-1.20689 -1.0527 0.293305)
(-1.22491 -1.27054 0.278624)
(-1.24864 -1.51273 0.262157)
(-1.27126 -1.76388 0.24473)
(-1.28943 -2.0182 0.224276)
(-1.29028 -2.24744 0.198054)
(-1.25572 -2.40504 0.167149)
(-1.16405 -2.44049 0.116262)
(-1.05579 -2.28944 0.0687351)
(-0.921494 -1.8345 -0.00198023)
(-0.622006 -1.13118 -0.078938)
(-0.258737 -0.444293 -0.180901)
(-0.0678702 -0.00680597 -0.161009)
(-0.00468086 0.0632559 -0.082015)
(-0.030224 0.249371 -0.181339)
(-0.185828 0.599214 -0.292383)
(-0.376899 0.845458 -0.267125)
(-0.545983 1.01007 -0.193712)
(-0.727978 1.08794 -0.133491)
(-0.866088 1.11931 -0.0822114)
(-0.946492 1.12489 -0.0429948)
(-0.982475 1.10364 -0.00642613)
(-1.00984 1.05054 0.0320594)
(-1.03687 0.981504 0.0652497)
(-1.07672 0.912247 0.0986494)
(-1.12949 0.837458 0.129157)
(-1.18199 0.761585 0.164459)
(-1.22784 0.681618 0.203855)
(-1.26441 0.598929 0.238731)
(-1.29262 0.513448 0.265287)
(-1.31401 0.429904 0.281167)
(-1.33454 0.345502 0.287572)
(-1.35603 0.263643 0.28933)
(-1.38284 0.181116 0.285964)
(-1.36797 0.079834 0.291912)
(-1.29646 -0.038128 0.295846)
(-1.17061 -0.224081 0.306494)
(-1.08881 -0.409396 0.300079)
(-1.07 -0.589372 0.304823)
(-1.06863 -0.773367 0.296398)
(-1.08253 -0.972168 0.286575)
(-1.1046 -1.19249 0.274367)
(-1.13663 -1.43243 0.261958)
(-1.16862 -1.69351 0.243995)
(-1.19724 -1.967 0.221876)
(-1.21451 -2.23283 0.196142)
(-1.20912 -2.46017 0.164025)
(-1.16421 -2.58367 0.134337)
(-1.06063 -2.53833 0.0950014)
(-0.926056 -2.21609 0.0534551)
(-0.693199 -1.54775 -0.00619784)
(-0.31833 -0.713221 -0.0934761)
(-0.0781026 -0.113616 -0.100987)
(-0.0126093 0.0419687 -0.0676852)
(-0.0245282 0.316583 -0.187546)
(-0.170406 0.715909 -0.308405)
(-0.352815 0.962458 -0.284769)
(-0.521405 1.10496 -0.205728)
(-0.680604 1.16608 -0.136758)
(-0.781079 1.1937 -0.0736334)
(-0.830883 1.18638 -0.0201764)
(-0.859644 1.14902 0.0294796)
(-0.887401 1.08368 0.0715301)
(-0.917856 1.01501 0.113582)
(-0.967711 0.942248 0.148035)
(-1.0241 0.864508 0.179395)
(-1.07675 0.783775 0.214491)
(-1.11931 0.69761 0.248681)
(-1.15256 0.609839 0.27679)
(-1.17696 0.519961 0.294069)
(-1.19373 0.432077 0.301195)
(-1.20508 0.342723 0.299944)
(-1.2124 0.257821 0.295054)
(-1.21971 0.172267 0.290393)
(-1.2014 0.0936315 0.289571)
(-1.1517 -0.0137955 0.290035)
(-1.05122 -0.154501 0.292638)
(-0.961774 -0.338958 0.282393)
(-0.934013 -0.515071 0.282)
(-0.933031 -0.695001 0.275142)
(-0.951553 -0.888716 0.267267)
(-0.98067 -1.10102 0.26029)
(-1.01403 -1.33631 0.248604)
(-1.05201 -1.59654 0.234368)
(-1.09047 -1.88178 0.213819)
(-1.12308 -2.17799 0.185084)
(-1.13807 -2.45823 0.153098)
(-1.1195 -2.6696 0.116897)
(-1.05381 -2.7338 0.0912486)
(-0.930211 -2.53621 0.0610865)
(-0.722417 -1.96605 0.0413994)
(-0.369097 -1.06177 -0.0276289)
(-0.0925912 -0.29186 -0.0696097)
(-0.0259429 0.00824126 -0.0488565)
(-0.0160913 0.374446 -0.1866)
(-0.143974 0.822692 -0.317457)
(-0.317897 1.07032 -0.297401)
(-0.475748 1.19009 -0.2132)
(-0.606666 1.24659 -0.137781)
(-0.676812 1.26275 -0.062188)
(-0.714006 1.24383 -0.00185717)
(-0.739161 1.18884 0.0591772)
(-0.770035 1.12184 0.108321)
(-0.81007 1.04726 0.1517)
(-0.862935 0.969622 0.18729)
(-0.92001 0.885836 0.220079)
(-0.97001 0.798633 0.250389)
(-1.00867 0.706224 0.278859)
(-1.03829 0.613751 0.296985)
(-1.05906 0.521334 0.305614)
(-1.0697 0.43005 0.3041)
(-1.07067 0.337691 0.296803)
(-1.06364 0.250076 0.287735)
(-1.05188 0.164259 0.280424)
(-1.02835 0.0920855 0.280307)
(-0.987742 0.00131267 0.273025)
(-0.917919 -0.104413 0.26347)
(-0.848126 -0.26452 0.257693)
(-0.81002 -0.441433 0.250426)
(-0.808746 -0.6168 0.243727)
(-0.828829 -0.805749 0.240279)
(-0.855985 -1.00687 0.235195)
(-0.891197 -1.2329 0.228237)
(-0.930288 -1.48715 0.21795)
(-0.974524 -1.77497 0.199433)
(-1.01904 -2.08953 0.177629)
(-1.0527 -2.41383 0.147014)
(-1.05998 -2.69814 0.113928)
(-1.01645 -2.86901 0.0803823)
(-0.917074 -2.80371 0.0641858)
(-0.740384 -2.35424 0.0490648)
(-0.43504 -1.44442 0.0203971)
(-0.104672 -0.501901 -0.0418732)
(-0.00739442 -0.0397438 -0.0296533)
(-0.00654693 0.415148 -0.18646)
(-0.113555 0.911441 -0.327163)
(-0.275433 1.15972 -0.310818)
(-0.415056 1.26532 -0.224431)
(-0.516425 1.31583 -0.140499)
(-0.567248 1.31661 -0.0555635)
(-0.60075 1.28406 0.0152234)
(-0.628849 1.22161 0.081258)
(-0.66527 1.15029 0.13296)
(-0.710559 1.07187 0.177932)
(-0.764352 0.987686 0.214927)
(-0.818071 0.898678 0.246571)
(-0.862711 0.805045 0.275223)
(-0.896649 0.708161 0.294924)
(-0.921537 0.612703 0.304315)
(-0.936806 0.51815 0.302802)
(-0.939876 0.424191 0.293411)
(-0.929163 0.32946 0.280949)
(-0.909556 0.24107 0.269326)
(-0.882145 0.15867 0.262762)
(-0.857395 0.0949697 0.26338)
(-0.822507 0.0166332 0.248787)
(-0.778392 -0.0722788 0.236131)
(-0.742514 -0.205061 0.221565)
(-0.710811 -0.370059 0.213302)
(-0.701517 -0.545349 0.208495)
(-0.717007 -0.72254 0.207561)
(-0.742294 -0.91378 0.205391)
(-0.774815 -1.12694 0.201711)
(-0.814009 -1.37245 0.193287)
(-0.859897 -1.65593 0.182829)
(-0.910253 -1.9792 0.164116)
(-0.956862 -2.33114 0.138032)
(-0.986038 -2.67824 0.104044)
(-0.969987 -2.94459 0.0715778)
(-0.88999 -3.00483 0.0457216)
(-0.728742 -2.69769 0.044952)
(-0.471507 -1.84697 0.0421673)
(-0.122035 -0.724803 -0.0099648)
(0.00486909 -0.100955 -0.0206551)
(0.00331914 0.446589 -0.177654)
(-0.0816073 0.990356 -0.32656)
(-0.225317 1.24512 -0.317162)
(-0.341285 1.34527 -0.231398)
(-0.42016 1.38224 -0.13944)
(-0.46174 1.36738 -0.0453264)
(-0.49296 1.32147 0.0293246)
(-0.524851 1.2549 0.0990088)
(-0.566488 1.17972 0.149587)
(-0.61507 1.09668 0.194242)
(-0.665476 1.00795 0.230862)
(-0.712501 0.911825 0.263154)
(-0.751239 0.812293 0.286881)
(-0.779391 0.710323 0.300469)
(-0.799309 0.611786 0.299439)
(-0.808963 0.514133 0.289486)
(-0.805104 0.417895 0.272349)
(-0.784762 0.322739 0.256292)
(-0.754141 0.235851 0.244074)
(-0.715237 0.162059 0.240452)
(-0.692568 0.103322 0.240892)
(-0.674378 0.0301826 0.218808)
(-0.65385 -0.0527198 0.205248)
(-0.64721 -0.166531 0.188234)
(-0.631997 -0.30682 0.179433)
(-0.617327 -0.478679 0.172457)
(-0.621985 -0.647483 0.171516)
(-0.641131 -0.827143 0.172479)
(-0.671321 -1.02794 0.170698)
(-0.709429 -1.2612 0.169602)
(-0.755062 -1.53679 0.16288)
(-0.806676 -1.85944 0.150818)
(-0.858738 -2.22706 0.128488)
(-0.902879 -2.61714 0.0982907)
(-0.909896 -2.96731 0.0635186)
(-0.858402 -3.14968 0.0357186)
(-0.712887 -2.98153 0.023911)
(-0.485781 -2.23821 0.0395756)
(-0.143468 -1.0047 0.0254207)
(0.00975651 -0.151875 -0.00380865)
(0.00897209 0.461126 -0.179318)
(-0.0524246 1.05119 -0.333778)
(-0.170099 1.32075 -0.340729)
(-0.264573 1.41821 -0.252959)
(-0.325766 1.44112 -0.150424)
(-0.362088 1.41124 -0.0485951)
(-0.395214 1.35571 0.0345481)
(-0.431064 1.28292 0.105308)
(-0.476137 1.20421 0.157165)
(-0.522996 1.11922 0.202581)
(-0.569379 1.02606 0.23946)
(-0.608915 0.926503 0.270231)
(-0.638323 0.820494 0.289101)
(-0.658901 0.715138 0.296251)
(-0.672651 0.613341 0.287046)
(-0.677718 0.514888 0.269603)
(-0.668147 0.417551 0.246586)
(-0.640468 0.325795 0.228132)
(-0.601084 0.246341 0.217712)
(-0.557895 0.180458 0.220709)
(-0.547303 0.112828 0.213986)
(-0.54791 0.038046 0.190912)
(-0.544941 -0.0402356 0.177895)
(-0.557172 -0.137508 0.161566)
(-0.56578 -0.251939 0.150631)
(-0.556899 -0.404705 0.141363)
(-0.545065 -0.574169 0.137277)
(-0.556913 -0.7452 0.13872)
(-0.581824 -0.934015 0.140685)
(-0.616833 -1.15504 0.143462)
(-0.661061 -1.41941 0.142853)
(-0.712224 -1.73836 0.135296)
(-0.7662 -2.11172 0.117422)
(-0.817471 -2.53384 0.0887612)
(-0.84117 -2.94924 0.0549855)
(-0.816238 -3.24784 0.0243981)
(-0.690334 -3.21719 0.0131221)
(-0.482212 -2.60848 0.025504)
(-0.151958 -1.32991 0.0408828)
(0.0268618 -0.213332 0.0168634)
(0.011736 0.4719 -0.17208)
(-0.0178966 1.10902 -0.331633)
(-0.110674 1.40769 -0.3482)
(-0.189408 1.50001 -0.264653)
(-0.235182 1.50291 -0.159715)
(-0.270438 1.46072 -0.0496378)
(-0.305897 1.39712 0.0407054)
(-0.345083 1.32291 0.113463)
(-0.387997 1.24704 0.16599)
(-0.431094 1.16313 0.211608)
(-0.466329 1.06903 0.246838)
(-0.492708 0.962467 0.271106)
(-0.51245 0.850276 0.281237)
(-0.526291 0.738577 0.280679)
(-0.537813 0.633062 0.266932)
(-0.541689 0.531995 0.244397)
(-0.529581 0.439809 0.218906)
(-0.495647 0.358273 0.200999)
(-0.45407 0.284821 0.193917)
(-0.425055 0.208398 0.192736)
(-0.431899 0.125716 0.185613)
(-0.442015 0.046873 0.167277)
(-0.448347 -0.0295978 0.155135)
(-0.472595 -0.115915 0.140869)
(-0.496871 -0.211716 0.128008)
(-0.51124 -0.332462 0.11901)
(-0.496774 -0.488054 0.105387)
(-0.488033 -0.661895 0.107165)
(-0.506596 -0.844041 0.111619)
(-0.538 -1.05087 0.118396)
(-0.578033 -1.29949 0.121507)
(-0.626115 -1.60945 0.119987)
(-0.680977 -1.98538 0.107873)
(-0.737437 -2.42967 0.083215)
(-0.77494 -2.89912 0.0488898)
(-0.768653 -3.30027 0.017771)
(-0.674147 -3.40597 0.0015082)
(-0.4825 -2.93374 0.00842353)
(-0.16069 -1.65569 0.0390562)
(0.0427796 -0.260472 0.0344888)
(0.00564521 0.474925 -0.184745)
(-0.0129806 1.17156 -0.361627)
(-0.0567504 1.49484 -0.37461)
(-0.112735 1.59589 -0.299667)
(-0.157635 1.58715 -0.181687)
(-0.186178 1.53354 -0.0652015)
(-0.219611 1.46394 0.0316138)
(-0.252621 1.38727 0.105836)
(-0.288804 1.30928 0.152161)
(-0.322827 1.22545 0.198528)
(-0.349808 1.13194 0.232162)
(-0.367999 1.0275 0.254955)
(-0.38102 0.915661 0.258709)
(-0.392893 0.803364 0.25617)
(-0.402735 0.696386 0.239876)
(-0.402277 0.599462 0.219927)
(-0.383776 0.511372 0.198789)
(-0.354646 0.424878 0.183539)
(-0.334322 0.335761 0.169196)
(-0.326053 0.238457 0.162126)
(-0.341142 0.146263 0.160351)
(-0.353848 0.0604507 0.146963)
(-0.365184 -0.0174522 0.137967)
(-0.394776 -0.100258 0.12536)
(-0.424951 -0.184458 0.111156)
(-0.45308 -0.28221 0.102175)
(-0.46119 -0.402659 0.0943829)
(-0.451975 -0.558524 0.0869575)
(-0.446576 -0.737628 0.0854594)
(-0.464653 -0.942716 0.0942786)
(-0.500296 -1.18086 0.101275)
(-0.542574 -1.4768 0.104084)
(-0.594838 -1.84764 0.0964275)
(-0.651123 -2.31037 0.0757867)
(-0.699226 -2.83021 0.0426982)
(-0.709887 -3.32852 0.0107704)
(-0.643203 -3.57758 -0.0122755)
(-0.482338 -3.25446 -0.0106346)
(-0.169639 -2.00387 0.0212397)
(0.0618674 -0.347174 0.0364213)
(0.00566162 0.525354 -0.160509)
(0.0122013 1.28489 -0.354036)
(-0.012534 1.63659 -0.388377)
(-0.0428755 1.72235 -0.313548)
(-0.0693482 1.70913 -0.18813)
(-0.0937994 1.6392 -0.0681002)
(-0.12414 1.5734 0.0286105)
(-0.160491 1.5013 0.100318)
(-0.18353 1.43155 0.148198)
(-0.203377 1.36229 0.181988)
(-0.213964 1.28401 0.204145)
(-0.221896 1.18655 0.218921)
(-0.23483 1.06946 0.226296)
(-0.248751 0.944559 0.226245)
(-0.25939 0.823689 0.216998)
(-0.262387 0.709581 0.206739)
(-0.260872 0.600756 0.18771)
(-0.253321 0.49113 0.167827)
(-0.250917 0.381718 0.148581)
(-0.251491 0.272895 0.138365)
(-0.269215 0.174902 0.142928)
(-0.282615 0.0794035 0.132605)
(-0.294341 -0.00366203 0.127866)
(-0.325415 -0.0842663 0.114931)
(-0.355976 -0.163353 0.0997126)
(-0.386928 -0.247805 0.0901298)
(-0.402901 -0.343555 0.0836513)
(-0.413036 -0.460178 0.0829397)
(-0.42103 -0.609506 0.0788434)
(-0.426656 -0.795433 0.0772347)
(-0.44275 -1.02012 0.0796225)
(-0.468859 -1.30967 0.0862008)
(-0.508926 -1.67839 0.0863567)
(-0.563729 -2.1493 0.0725258)
(-0.619366 -2.70783 0.0407791)
(-0.650573 -3.30127 0.00563734)
(-0.620392 -3.6942 -0.0277923)
(-0.489385 -3.5352 -0.0345333)
(-0.201646 -2.33717 0.0031077)
(0.060236 -0.399509 0.0278616)
(-2.93786e-05 0.667012 -0.195691)
(0.0127757 1.48595 -0.387475)
(0.00767601 1.86415 -0.430663)
(0.00122598 1.9637 -0.363162)
(-0.0129619 1.93867 -0.240903)
(-0.0287796 1.85895 -0.110194)
(-0.0342485 1.77884 0.000939312)
(-0.0465964 1.7106 0.0719473)
(-0.0548456 1.64191 0.106594)
(-0.0546302 1.5679 0.130271)
(-0.0656981 1.47321 0.157267)
(-0.0896083 1.34844 0.184163)
(-0.116395 1.2061 0.203082)
(-0.139123 1.06043 0.217189)
(-0.158387 0.920497 0.211416)
(-0.16977 0.785718 0.204905)
(-0.173382 0.661176 0.19013)
(-0.174591 0.543028 0.172361)
(-0.183845 0.429865 0.152423)
(-0.19021 0.314531 0.140494)
(-0.212344 0.209157 0.14304)
(-0.226636 0.104205 0.131771)
(-0.232834 0.0129361 0.126079)
(-0.260457 -0.0684431 0.112593)
(-0.289781 -0.146371 0.0966902)
(-0.319837 -0.22311 0.0857477)
(-0.336152 -0.306701 0.0793937)
(-0.347616 -0.402395 0.0794478)
(-0.363491 -0.5121 0.0794219)
(-0.38222 -0.654578 0.0819619)
(-0.408451 -0.835337 0.0820721)
(-0.435726 -1.08954 0.0801981)
(-0.455046 -1.43378 0.0701626)
(-0.469875 -1.91832 0.0562058)
(-0.515842 -2.51967 0.0321695)
(-0.567072 -3.19701 -0.00092967)
(-0.573098 -3.7337 -0.0374608)
(-0.479104 -3.77137 -0.0491866)
(-0.216416 -2.70447 -0.0110506)
(0.0663021 -0.533817 0.0376303)
(-0.0123967 0.694283 -0.155021)
(0.0118734 1.54711 -0.344102)
(0.0349331 1.97102 -0.403409)
(0.0443703 2.10069 -0.354955)
(0.0469261 2.09042 -0.24373)
(0.0424863 2.01904 -0.115888)
(0.0446426 1.93848 -0.00833548)
(0.0475137 1.84926 0.0743526)
(0.0558178 1.76502 0.107358)
(0.047323 1.66741 0.135154)
(0.0284472 1.54155 0.160788)
(0.0078046 1.40182 0.183121)
(-0.014839 1.25278 0.198897)
(-0.0368917 1.10324 0.211365)
(-0.0589526 0.959662 0.214894)
(-0.0730529 0.827253 0.223831)
(-0.0854439 0.706516 0.221815)
(-0.0987247 0.593392 0.213413)
(-0.123943 0.481449 0.195985)
(-0.141576 0.360379 0.172342)
(-0.168179 0.244954 0.167284)
(-0.183094 0.135983 0.142535)
(-0.181865 0.0364221 0.1314)
(-0.203074 -0.0508431 0.118119)
(-0.226597 -0.131326 0.103824)
(-0.253434 -0.202823 0.0903211)
(-0.270055 -0.277742 0.0821574)
(-0.27943 -0.362851 0.0809047)
(-0.295144 -0.454118 0.0801158)
(-0.311611 -0.565118 0.0826684)
(-0.340905 -0.69477 0.0883143)
(-0.378533 -0.880618 0.0969441)
(-0.438174 -1.14717 0.101908)
(-0.479433 -1.57384 0.0855115)
(-0.479062 -2.16396 0.0387484)
(-0.494052 -2.91142 -0.00139937)
(-0.527479 -3.58752 -0.0476454)
(-0.478577 -3.86383 -0.0732613)
(-0.261428 -3.02359 -0.0490181)
(0.0342505 -0.808346 -0.000792456)
(-0.00748208 0.655278 -0.143623)
(0.0293543 1.50689 -0.313296)
(0.0692089 1.95535 -0.383445)
(0.0911478 2.11761 -0.349791)
(0.103157 2.12607 -0.251613)
(0.105669 2.06465 -0.131458)
(0.114359 1.98363 -0.0254491)
(0.126304 1.89321 0.0535701)
(0.142927 1.79171 0.0990613)
(0.144514 1.68285 0.12949)
(0.13074 1.56316 0.152015)
(0.105301 1.42825 0.177491)
(0.0769168 1.27975 0.197874)
(0.0535888 1.12901 0.223296)
(0.0332935 0.987016 0.24107)
(0.0187483 0.857911 0.265096)
(0.00424046 0.74216 0.280249)
(-0.0197328 0.634201 0.287963)
(-0.0665372 0.520604 0.279717)
(-0.10072 0.399126 0.239614)
(-0.12949 0.273898 0.210997)
(-0.142879 0.162908 0.166692)
(-0.13848 0.0569903 0.146217)
(-0.151866 -0.0333733 0.132474)
(-0.164636 -0.118736 0.11875)
(-0.182707 -0.192319 0.107617)
(-0.199681 -0.260782 0.09429)
(-0.207214 -0.337351 0.0898096)
(-0.219051 -0.417672 0.0862093)
(-0.229816 -0.514126 0.0856478)
(-0.251478 -0.619832 0.0870998)
(-0.276289 -0.764455 0.0918108)
(-0.321022 -0.957175 0.098462)
(-0.392303 -1.2695 0.101586)
(-0.454719 -1.75268 0.0747277)
(-0.475455 -2.46936 0.0173109)
(-0.520315 -3.21481 -0.0236655)
(-0.519881 -3.68796 -0.0690065)
(-0.358685 -3.10259 -0.0545202)
(-0.0457117 -0.902581 -0.0114995)
(-0.00195941 0.617633 -0.110989)
(0.0517697 1.44359 -0.265135)
(0.106518 1.91136 -0.342662)
(0.137855 2.09787 -0.325374)
(0.156937 2.12328 -0.241812)
(0.164855 2.07196 -0.133547)
(0.178884 1.99447 -0.0300135)
(0.19101 1.90518 0.0498193)
(0.211431 1.80171 0.0990134)
(0.220997 1.68701 0.131098)
(0.211675 1.56111 0.156462)
(0.190678 1.42178 0.18366)
(0.166193 1.2755 0.208065)
(0.146563 1.12996 0.240701)
(0.131487 0.991634 0.273883)
(0.120916 0.864389 0.320407)
(0.101647 0.748041 0.36239)
(0.0601001 0.632936 0.389276)
(-0.00751026 0.520446 0.379297)
(-0.0612398 0.408175 0.333691)
(-0.0955015 0.281816 0.271596)
(-0.105361 0.173261 0.205893)
(-0.0945151 0.0708124 0.17261)
(-0.101231 -0.0193149 0.151835)
(-0.108622 -0.10144 0.137774)
(-0.114334 -0.179431 0.128113)
(-0.125015 -0.247773 0.11792)
(-0.13182 -0.321718 0.109032)
(-0.145548 -0.39475 0.101218)
(-0.153877 -0.482465 0.0961157)
(-0.173801 -0.573039 0.0938003)
(-0.192378 -0.696731 0.093092)
(-0.228577 -0.852193 0.0933956)
(-0.27787 -1.11131 0.0883717)
(-0.336484 -1.48248 0.0643212)
(-0.388426 -2.09721 0.0150123)
(-0.469966 -2.83268 -0.0206861)
(-0.511146 -3.43087 -0.0640514)
(-0.396491 -3.07488 -0.0548752)
(-0.0987943 -0.974595 -0.0113851)
(0.00180624 0.567881 -0.0903249)
(0.0700085 1.36425 -0.228124)
(0.140077 1.84977 -0.310885)
(0.180737 2.06197 -0.307558)
(0.208177 2.10424 -0.237687)
(0.220007 2.06241 -0.139295)
(0.236981 1.98719 -0.0395256)
(0.25345 1.89941 0.0398721)
(0.274595 1.79918 0.0940363)
(0.2876 1.68365 0.129787)
(0.286471 1.55554 0.155503)
(0.272349 1.41587 0.18311)
(0.255125 1.27065 0.21143)
(0.24261 1.1266 0.251748)
(0.230537 0.987619 0.300505)
(0.216874 0.852534 0.363726)
(0.187224 0.723433 0.423364)
(0.138251 0.595158 0.464409)
(0.0660419 0.478041 0.465742)
(-0.00660778 0.370616 0.408509)
(-0.0496335 0.265026 0.318701)
(-0.053102 0.170502 0.239528)
(-0.0406299 0.070557 0.200021)
(-0.0399575 -0.00923496 0.175305)
(-0.0426956 -0.0841194 0.157213)
(-0.0446893 -0.158681 0.147306)
(-0.0513333 -0.228265 0.137044)
(-0.0532209 -0.303705 0.129951)
(-0.0632604 -0.372972 0.120462)
(-0.0677206 -0.456676 0.111306)
(-0.0837554 -0.540989 0.101774)
(-0.0965557 -0.652952 0.0936027)
(-0.130017 -0.784059 0.0841593)
(-0.166063 -1.00667 0.0717227)
(-0.229906 -1.32918 0.0462057)
(-0.300906 -1.89374 0.0082783)
(-0.409727 -2.6107 -0.0251727)
(-0.47876 -3.2901 -0.0637941)
(-0.406548 -3.13206 -0.0542319)
(-0.140509 -1.19283 -0.00394791)
(0.00693482 0.513459 -0.066166)
(0.0872217 1.27068 -0.188039)
(0.169652 1.77255 -0.274571)
(0.218729 2.01216 -0.284553)
(0.25438 2.07349 -0.228715)
(0.271276 2.0418 -0.139769)
(0.291968 1.96965 -0.0452733)
(0.310832 1.88319 0.0333042)
(0.332273 1.78375 0.0888399)
(0.347387 1.67102 0.127847)
(0.35125 1.54422 0.155907)
(0.34653 1.40589 0.183514)
(0.340144 1.26168 0.210725)
(0.335219 1.11522 0.252137)
(0.322518 0.970073 0.309546)
(0.303639 0.822301 0.381039)
(0.266486 0.680743 0.4443)
(0.210123 0.543343 0.485971)
(0.136368 0.418348 0.488226)
(0.0698542 0.305186 0.442226)
(0.0307838 0.210461 0.353412)
(0.0125148 0.140501 0.264755)
(0.0274868 0.0670257 0.22266)
(0.0395947 -0.00663669 0.194334)
(0.033601 -0.0695087 0.175857)
(0.0334293 -0.139437 0.164175)
(0.024743 -0.205678 0.155442)
(0.0242895 -0.281456 0.149032)
(0.0120151 -0.351698 0.140296)
(0.00379835 -0.436001 0.128638)
(-0.0162032 -0.514629 0.11553)
(-0.0253493 -0.618498 0.0980289)
(-0.0565981 -0.732649 0.075953)
(-0.0851513 -0.943504 0.050893)
(-0.150453 -1.2437 0.0234242)
(-0.2236 -1.78355 -0.0101397)
(-0.340594 -2.50077 -0.0417473)
(-0.424435 -3.26202 -0.0666392)
(-0.389345 -3.26345 -0.0570172)
(-0.144704 -1.44312 -0.0087013)
(0.0110363 0.465151 -0.0494687)
(0.102784 1.17033 -0.151533)
(0.195322 1.68499 -0.241777)
(0.249469 1.95657 -0.264891)
(0.293073 2.04151 -0.223159)
(0.316838 2.02326 -0.144224)
(0.342565 1.95412 -0.055426)
(0.365387 1.86891 0.0219925)
(0.387287 1.77055 0.078013)
(0.403934 1.65985 0.119461)
(0.413523 1.53719 0.149888)
(0.417769 1.403 0.177578)
(0.419475 1.26011 0.203361)
(0.419284 1.10972 0.24176)
(0.404392 0.955616 0.300545)
(0.38071 0.796281 0.371117)
(0.340242 0.642232 0.427272)
(0.284402 0.494404 0.462115)
(0.212936 0.36001 0.465528)
(0.147707 0.240426 0.434894)
(0.129642 0.146389 0.363075)
(0.133766 0.0942016 0.29125)
(0.131354 0.0496824 0.237401)
(0.134751 -0.0130311 0.214284)
(0.130713 -0.0666191 0.190888)
(0.123157 -0.131984 0.178508)
(0.110699 -0.188869 0.168513)
(0.106821 -0.260257 0.161165)
(0.0926542 -0.323989 0.14917)
(0.0885047 -0.404323 0.137162)
(0.0694274 -0.482303 0.122451)
(0.0604164 -0.586469 0.107741)
(0.01503 -0.698177 0.0828329)
(-0.0127992 -0.88801 0.0574207)
(-0.0736164 -1.18617 0.0121592)
(-0.146739 -1.73002 -0.0127926)
(-0.279853 -2.48069 -0.0437568)
(-0.381825 -3.34619 -0.0638037)
(-0.386014 -3.49555 -0.0560264)
(-0.153295 -1.73233 -0.00979296)
(0.00962026 0.413728 -0.0357639)
(0.1129 1.05574 -0.116655)
(0.223976 1.5682 -0.201967)
(0.278798 1.87464 -0.240356)
(0.324801 1.98714 -0.21366)
(0.354456 1.98732 -0.146352)
(0.386571 1.92639 -0.0645247)
(0.414618 1.84215 0.0111323)
(0.437395 1.74497 0.0660742)
(0.455678 1.63701 0.108615)
(0.469399 1.51959 0.14038)
(0.480343 1.39031 0.168355)
(0.488607 1.25094 0.193472)
(0.49182 1.09932 0.229841)
(0.475759 0.939099 0.281673)
(0.450289 0.774479 0.343632)
(0.409377 0.612797 0.386189)
(0.353915 0.455564 0.411593)
(0.288127 0.31639 0.415145)
(0.240653 0.200812 0.395661)
(0.250176 0.120812 0.341005)
(0.267215 0.07145 0.288392)
(0.26029 0.0263367 0.254002)
(0.253755 -0.0225418 0.224111)
(0.239311 -0.071637 0.207341)
(0.231165 -0.132909 0.193683)
(0.21361 -0.187563 0.181738)
(0.204144 -0.262662 0.169752)
(0.183917 -0.332347 0.159895)
(0.168037 -0.435117 0.151033)
(0.136193 -0.533538 0.133769)
(0.123951 -0.656423 0.108894)
(0.08744 -0.788432 0.0841622)
(0.0459243 -0.991101 0.0631557)
(-0.0297299 -1.26964 0.0124557)
(-0.0836307 -1.82629 -0.0187311)
(-0.22374 -2.60219 -0.0530914)
(-0.322215 -3.5957 -0.0824422)
(-0.343438 -3.93027 -0.0767636)
(-0.138167 -2.2666 -0.0219475)
(0.00602113 0.366336 -0.018978)
(0.109204 0.954914 -0.0880643)
(0.247599 1.44666 -0.160004)
(0.313084 1.78338 -0.210599)
(0.35109 1.93103 -0.202583)
(0.385506 1.95459 -0.149934)
(0.423476 1.90635 -0.0799942)
(0.459629 1.8248 -0.00280736)
(0.486093 1.72855 0.0501202)
(0.506974 1.6212 0.0934266)
(0.524169 1.50657 0.126382)
(0.539523 1.38052 0.15579)
(0.550959 1.24363 0.18336)
(0.555062 1.09029 0.219031)
(0.540795 0.927312 0.261596)
(0.518205 0.762638 0.30965)
(0.477877 0.601556 0.34024)
(0.432858 0.448401 0.360782)
(0.387894 0.318044 0.3678)
(0.362629 0.207992 0.361637)
(0.392403 0.132733 0.322459)
(0.415981 0.0792751 0.288811)
(0.400216 0.0324052 0.259252)
(0.388279 -0.0176573 0.239343)
(0.363561 -0.0620383 0.219425)
(0.343571 -0.121065 0.208175)
(0.311799 -0.175038 0.194183)
(0.290153 -0.257415 0.182407)
(0.247003 -0.342618 0.166552)
(0.215345 -0.47112 0.148521)
(0.175429 -0.583565 0.12091)
(0.150449 -0.73389 0.107538)
(0.0930187 -0.854823 0.0773689)
(0.0781135 -1.05611 0.0527859)
(-0.00590571 -1.31625 0.0123964)
(-0.054356 -1.87285 -0.0232061)
(-0.193362 -2.68871 -0.0550894)
(-0.299654 -3.82553 -0.0978247)
(-0.335157 -4.38598 -0.105707)
(-0.146466 -2.91171 -0.0633494)
(0.00741142 0.312186 -0.0080034)
(0.103255 0.844747 -0.0645534)
(0.255419 1.31259 -0.126964)
(0.350274 1.64989 -0.169234)
(0.384789 1.83838 -0.179169)
(0.412466 1.88664 -0.14423)
(0.451803 1.86158 -0.0876801)
(0.491866 1.7825 -0.0175976)
(0.526194 1.69229 0.0345311)
(0.549777 1.58577 0.0782849)
(0.569754 1.47423 0.11262)
(0.587398 1.35071 0.144457)
(0.598981 1.21636 0.175109)
(0.604431 1.06538 0.209286)
(0.59668 0.908782 0.243216)
(0.583442 0.751242 0.277198)
(0.555939 0.602318 0.299016)
(0.528816 0.464834 0.32054)
(0.498537 0.34222 0.329716)
(0.490315 0.229773 0.331417)
(0.539265 0.151188 0.303103)
(0.569103 0.0923249 0.283246)
(0.548973 0.0430237 0.261383)
(0.531537 -0.0058666 0.246916)
(0.495766 -0.0483471 0.229519)
(0.470139 -0.0998275 0.220618)
(0.42236 -0.143993 0.210464)
(0.377173 -0.221202 0.199824)
(0.307151 -0.321484 0.181152)
(0.26343 -0.448861 0.157389)
(0.213777 -0.552495 0.126662)
(0.203373 -0.705322 0.0905682)
(0.154979 -0.80953 0.0602992)
(0.117557 -1.00818 0.0486277)
(0.0155855 -1.21323 0.0109854)
(-0.0236588 -1.74687 -0.0259695)
(-0.170105 -2.56988 -0.0521941)
(-0.285929 -3.83864 -0.105086)
(-0.359632 -4.64956 -0.120941)
(-0.174484 -3.43145 -0.0803266)
(0.00479227 0.27847 -0.00286856)
(0.0922288 0.760221 -0.0504336)
(0.241489 1.20574 -0.104379)
(0.368101 1.53784 -0.142122)
(0.422958 1.74505 -0.152027)
(0.442832 1.82494 -0.132948)
(0.47859 1.82031 -0.0887771)
(0.521027 1.75778 -0.0345633)
(0.565786 1.66886 0.0174007)
(0.592078 1.56304 0.0608917)
(0.614496 1.45054 0.0970154)
(0.632406 1.32795 0.13093)
(0.644039 1.19639 0.162363)
(0.653332 1.05366 0.193888)
(0.655393 0.909288 0.220575)
(0.657625 0.764343 0.24554)
(0.646345 0.630016 0.265453)
(0.63243 0.500793 0.286873)
(0.614079 0.380274 0.298216)
(0.622306 0.26405 0.304896)
(0.691197 0.179826 0.284153)
(0.729226 0.116037 0.274093)
(0.705452 0.0641731 0.256967)
(0.684849 0.0133039 0.248283)
(0.640911 -0.0238198 0.231215)
(0.610918 -0.0693818 0.227424)
(0.54672 -0.100671 0.219228)
(0.463612 -0.173054 0.212556)
(0.36955 -0.276151 0.183126)
(0.336698 -0.39356 0.161151)
(0.268997 -0.482285 0.129434)
(0.248997 -0.625271 0.0986896)
(0.180517 -0.736268 0.0633721)
(0.178743 -0.927928 0.0206369)
(0.0606563 -1.12173 0.0137629)
(0.00505911 -1.58336 -0.0251527)
(-0.139107 -2.38516 -0.0450336)
(-0.262479 -3.73928 -0.0980418)
(-0.369395 -4.76459 -0.127706)
(-0.198045 -3.85173 -0.0899951)
(0.00753037 0.235024 -0.00188575)
(0.0830098 0.661181 -0.0398502)
(0.220866 1.07979 -0.0862012)
(0.363709 1.40484 -0.122198)
(0.445578 1.61262 -0.129387)
(0.469653 1.71812 -0.117918)
(0.50256 1.73314 -0.0838464)
(0.544074 1.69255 -0.040436)
(0.586598 1.61092 0.00630798)
(0.619852 1.50998 0.0464386)
(0.64519 1.40232 0.0819617)
(0.666129 1.28546 0.114016)
(0.681544 1.1648 0.142822)
(0.698313 1.0371 0.169242)
(0.70971 0.909399 0.191601)
(0.72572 0.778762 0.215091)
(0.729312 0.653432 0.234503)
(0.727194 0.530198 0.25649)
(0.719393 0.410274 0.26788)
(0.743374 0.291033 0.278069)
(0.8354 0.20067 0.259911)
(0.885493 0.134761 0.257483)
(0.859147 0.0807285 0.243883)
(0.839378 0.0304424 0.237734)
(0.789727 -0.00272202 0.225196)
(0.758071 -0.0424743 0.221535)
(0.679443 -0.0616697 0.219074)
(0.555572 -0.121427 0.214237)
(0.439447 -0.206552 0.184558)
(0.414736 -0.324335 0.162179)
(0.338302 -0.405301 0.129534)
(0.30909 -0.541135 0.0976359)
(0.227154 -0.634843 0.060141)
(0.206026 -0.822467 0.0280871)
(0.109011 -1.00073 -0.000265271)
(0.0591285 -1.43434 -0.0254668)
(-0.119072 -2.17071 -0.0382696)
(-0.224904 -3.57979 -0.0870022)
(-0.382358 -4.8005 -0.129722)
(-0.214957 -4.23637 -0.0980005)
(0.00286894 0.218729 -0.00202747)
(0.0664904 0.605219 -0.0369923)
(0.188427 0.991576 -0.0778875)
(0.334519 1.31855 -0.112295)
(0.451853 1.52167 -0.12267)
(0.49772 1.64447 -0.113573)
(0.524109 1.67788 -0.088615)
(0.566196 1.64556 -0.0518659)
(0.612705 1.57577 -0.0112489)
(0.652456 1.47978 0.02674)
(0.683664 1.37476 0.0587659)
(0.70954 1.26528 0.0882362)
(0.73084 1.15349 0.112593)
(0.753846 1.03788 0.136155)
(0.771264 0.922399 0.155848)
(0.792293 0.802751 0.178189)
(0.803831 0.683378 0.197044)
(0.812486 0.564252 0.219028)
(0.816193 0.44509 0.230607)
(0.85554 0.324064 0.241467)
(0.9736 0.226787 0.224657)
(1.04145 0.161277 0.228259)
(1.01412 0.105899 0.218049)
(0.995838 0.0560568 0.215012)
(0.942882 0.0261362 0.203849)
(0.912349 -0.0125232 0.198539)
(0.821915 -0.0247076 0.195604)
(0.669501 -0.0637528 0.206284)
(0.513128 -0.117076 0.177267)
(0.492076 -0.238459 0.157751)
(0.405915 -0.309195 0.12598)
(0.378707 -0.44727 0.0942299)
(0.273336 -0.524004 0.0567797)
(0.253262 -0.711706 0.0210038)
(0.138251 -0.855609 6.45509e-05)
(0.0935662 -1.29016 -0.0184729)
(-0.090322 -1.95204 -0.0326698)
(-0.191269 -3.39778 -0.0696154)
(-0.391296 -4.78844 -0.128489)
(-0.241279 -4.61692 -0.103786)
(0.00835106 0.185278 -0.00288482)
(0.0535897 0.525238 -0.034235)
(0.154576 0.880732 -0.0715135)
(0.292902 1.18655 -0.104263)
(0.425208 1.39477 -0.118827)
(0.506905 1.50936 -0.112031)
(0.533064 1.57277 -0.0923263)
(0.570467 1.55165 -0.0634738)
(0.620183 1.49893 -0.028746)
(0.663634 1.41398 0.00220728)
(0.704402 1.3192 0.0323587)
(0.740894 1.21751 0.0577637)
(0.76914 1.11477 0.0793273)
(0.799739 1.00975 0.0990474)
(0.821961 0.905061 0.11623)
(0.846691 0.79611 0.135657)
(0.861487 0.687913 0.15125)
(0.876979 0.577341 0.172232)
(0.892722 0.463015 0.183709)
(0.945841 0.342525 0.193986)
(1.09217 0.241034 0.177256)
(1.18473 0.177483 0.185638)
(1.15646 0.121313 0.179512)
(1.14328 0.0742802 0.180339)
(1.08528 0.0486594 0.172196)
(1.05764 0.0144879 0.17045)
(0.968857 0.0112836 0.16535)
(0.802312 -0.0221354 0.174093)
(0.602711 -0.0534523 0.158723)
(0.565943 -0.141566 0.141121)
(0.477536 -0.216762 0.114328)
(0.450226 -0.345204 0.0869894)
(0.332285 -0.412256 0.0492168)
(0.305354 -0.597532 0.0194723)
(0.164498 -0.722902 -0.00793276)
(0.13902 -1.14289 -0.0138157)
(-0.0672162 -1.75422 -0.0283186)
(-0.157736 -3.21085 -0.0477137)
(-0.420323 -4.75715 -0.122182)
(-0.270807 -5.03035 -0.102832)
(-0.00228122 0.188221 -0.00708579)
(0.0297395 0.517849 -0.0410782)
(0.103595 0.837944 -0.0776451)
(0.233201 1.14273 -0.108604)
(0.378645 1.34052 -0.127666)
(0.501555 1.44501 -0.12579)
(0.553734 1.51146 -0.10721)
(0.580112 1.49829 -0.0836569)
(0.637001 1.4478 -0.0547781)
(0.687639 1.37021 -0.0253304)
(0.734473 1.28273 -0.00245543)
(0.77692 1.18587 0.020881)
(0.814049 1.08719 0.0375922)
(0.85311 0.986241 0.0573343)
(0.88006 0.886728 0.069469)
(0.907493 0.784584 0.0843989)
(0.923565 0.687198 0.0956162)
(0.938751 0.586996 0.115074)
(0.960809 0.482012 0.125324)
(1.02472 0.366268 0.134019)
(1.20071 0.268473 0.117039)
(1.32012 0.206024 0.128425)
(1.29443 0.150612 0.125733)
(1.28913 0.104177 0.129205)
(1.23061 0.0839194 0.124108)
(1.20783 0.058825 0.1247)
(1.11394 0.0669279 0.117063)
(0.925476 0.0322474 0.131001)
(0.714373 0.0138219 0.113903)
(0.662837 -0.0555196 0.118645)
(0.539602 -0.0996786 0.0909495)
(0.536909 -0.231339 0.0729388)
(0.388059 -0.277668 0.0409299)
(0.371349 -0.458686 0.015157)
(0.193286 -0.561477 -0.00574917)
(0.182185 -0.961233 -0.0168614)
(-0.0516566 -1.5416 -0.00274411)
(-0.120189 -2.97808 -0.0268445)
(-0.455078 -4.70189 -0.112853)
(-0.305965 -5.5128 -0.0963689)
(0.0126713 0.172929 -0.0121641)
(0.0191035 0.465788 -0.0480434)
(0.0597622 0.770705 -0.0835166)
(0.168622 1.02125 -0.115461)
(0.291269 1.21834 -0.136931)
(0.44638 1.30525 -0.14208)
(0.528224 1.37008 -0.125023)
(0.55787 1.3685 -0.105411)
(0.616424 1.32759 -0.0813794)
(0.679815 1.26174 -0.0574392)
(0.739722 1.18647 -0.0347153)
(0.791893 1.1022 -0.0167664)
(0.834977 1.01718 -0.00246942)
(0.880951 0.925465 0.0103178)
(0.916248 0.835106 0.0181795)
(0.949375 0.740747 0.0289916)
(0.971313 0.65161 0.0360933)
(0.987683 0.561373 0.0522376)
(1.0146 0.468056 0.0596289)
(1.09051 0.360665 0.0649009)
(1.29377 0.268218 0.0491657)
(1.4386 0.209905 0.0619855)
(1.41424 0.159551 0.0611465)
(1.42113 0.116549 0.0680871)
(1.36727 0.104378 0.0699689)
(1.35573 0.0938906 0.0756499)
(1.2557 0.112944 0.0781656)
(1.06049 0.0921457 0.0899707)
(0.819496 0.0846594 0.0725976)
(0.782345 0.0136039 0.0720226)
(0.634096 -0.00415065 0.0577203)
(0.625407 -0.114192 0.0502337)
(0.475684 -0.140841 0.0351072)
(0.463789 -0.324813 0.0118621)
(0.265063 -0.404626 -0.00200184)
(0.254698 -0.796085 -0.00807086)
(0.00597949 -1.32718 0.00728161)
(-0.0439873 -2.74617 -0.00173979)
(-0.505434 -4.63637 -0.102767)
(-0.302715 -6.0962 -0.0946073)
(-0.01831 0.188868 -0.0236475)
(-0.0166978 0.531233 -0.07176)
(-0.0149369 0.791627 -0.108215)
(0.0595637 1.05971 -0.140182)
(0.201385 1.20842 -0.169554)
(0.376956 1.26578 -0.178748)
(0.505531 1.29921 -0.166834)
(0.544751 1.28932 -0.147155)
(0.608237 1.24029 -0.127606)
(0.683034 1.17971 -0.107193)
(0.755771 1.10759 -0.0880117)
(0.819942 1.02885 -0.0684683)
(0.873621 0.951553 -0.0550554)
(0.92449 0.869894 -0.0425026)
(0.964948 0.787209 -0.0359358)
(1.00306 0.701504 -0.0281944)
(1.02728 0.614991 -0.025368)
(1.04522 0.529798 -0.0174591)
(1.07855 0.451149 -0.0164565)
(1.15964 0.350098 -0.0113287)
(1.38529 0.273137 -0.0241757)
(1.56032 0.216911 -0.0102706)
(1.54209 0.17527 -0.0116259)
(1.56225 0.135004 -0.00431103)
(1.51711 0.134118 -0.00194496)
(1.51952 0.127115 0.0110325)
(1.40625 0.159121 0.0149741)
(1.20637 0.141246 0.0331827)
(0.937596 0.154798 0.0230697)
(0.903944 0.0921642 0.02348)
(0.751222 0.0924984 0.0161826)
(0.775445 -0.00226642 0.0197304)
(0.58789 -0.0157715 0.0166706)
(0.599339 -0.169612 0.00439494)
(0.370966 -0.220326 0.00180612)
(0.380889 -0.580565 0.0103901)
(0.0963525 -1.01779 0.00589379)
(0.111234 -2.42502 0.0747628)
(-0.494099 -4.48655 -0.113633)
(-0.22909 -6.66835 -0.0831125)
(0.0407431 0.348032 -0.0452628)
(0.000269567 0.492585 -0.0995796)
(-0.064887 0.71575 -0.141333)
(-0.016971 0.871957 -0.176932)
(0.0266003 1.06303 -0.205193)
(0.226133 1.07594 -0.222209)
(0.406726 1.11608 -0.219301)
(0.475329 1.09261 -0.202144)
(0.553248 1.05574 -0.185552)
(0.64948 1.00711 -0.169119)
(0.739404 0.950858 -0.151396)
(0.819766 0.886896 -0.136368)
(0.88577 0.823662 -0.123379)
(0.946406 0.75844 -0.113172)
(0.993474 0.69167 -0.107552)
(1.03809 0.618435 -0.102003)
(1.06633 0.540382 -0.101721)
(1.09707 0.467733 -0.100292)
(1.13891 0.400202 -0.105145)
(1.23522 0.300137 -0.107861)
(1.48427 0.241748 -0.116359)
(1.67998 0.182222 -0.0993686)
(1.66927 0.146047 -0.0988061)
(1.70992 0.111392 -0.0842793)
(1.67326 0.130562 -0.076997)
(1.69211 0.132604 -0.055522)
(1.57586 0.193077 -0.0447958)
(1.3878 0.174496 -0.0225786)
(1.10918 0.227581 -0.0211469)
(1.11049 0.173538 -0.0169093)
(0.953586 0.193084 -0.0114275)
(0.998699 0.0924308 -0.0197607)
(0.818506 0.0716552 -0.0176217)
(0.901901 -0.0524999 -0.0107135)
(0.632852 -0.120953 -0.0176747)
(0.73333 -0.414969 0.00252803)
(0.357725 -0.807781 0.0163711)
(0.472265 -2.035 0.039953)
(-0.220913 -4.26144 -0.0314408)
(0.045706 -7.1744 -0.0748764)
(-0.200898 0.0913789 -0.0612793)
(-0.240526 0.688313 -0.144449)
(-0.203624 0.839434 -0.204153)
(-0.177224 0.96305 -0.255539)
(-0.0728108 0.99936 -0.293788)
(0.0796753 1.02232 -0.303844)
(0.296931 0.971908 -0.309529)
(0.388961 0.934752 -0.29424)
(0.495768 0.888206 -0.276568)
(0.605006 0.845634 -0.260969)
(0.712887 0.798163 -0.244576)
(0.80934 0.746253 -0.228678)
(0.891769 0.696244 -0.215248)
(0.965207 0.644358 -0.20448)
(1.02065 0.592561 -0.199021)
(1.07236 0.533777 -0.19557)
(1.11571 0.463911 -0.198373)
(1.16901 0.407908 -0.20207)
(1.22794 0.363119 -0.209837)
(1.36699 0.278405 -0.212414)
(1.66473 0.244583 -0.223167)
(1.91885 0.182133 -0.203988)
(1.94807 0.144991 -0.198723)
(2.04321 0.111316 -0.182291)
(2.02998 0.127844 -0.172661)
(2.08998 0.110133 -0.138705)
(1.96252 0.195058 -0.122489)
(1.81247 0.167881 -0.0985672)
(1.52136 0.260019 -0.0806356)
(1.57074 0.225825 -0.0741839)
(1.4128 0.252895 -0.0663225)
(1.54523 0.16756 -0.0581134)
(1.34378 0.156684 -0.0555374)
(1.51695 0.0293115 -0.043799)
(1.19541 -0.0278004 -0.0530247)
(1.37825 -0.241409 -0.0190773)
(0.922461 -0.505364 -0.0161643)
(1.11777 -1.41574 0.0471913)
(0.335677 -3.77299 -0.0333088)
(0.512017 -7.06513 -0.0627499)
(-0.713061 0.807769 -0.232226)
(-0.543838 0.416512 -0.334756)
(-0.663569 0.584951 -0.358302)
(-0.407103 0.605444 -0.380019)
(-0.272275 0.60463 -0.40267)
(-0.0065121 0.65846 -0.39756)
(0.227934 0.628078 -0.406319)
(0.442227 0.601304 -0.385732)
(0.613673 0.574319 -0.369077)
(0.795768 0.548593 -0.35094)
(0.96649 0.518146 -0.333137)
(1.13186 0.485855 -0.317419)
(1.27397 0.457374 -0.303289)
(1.40509 0.433787 -0.292395)
(1.50671 0.416098 -0.289041)
(1.60868 0.383633 -0.29006)
(1.71294 0.332007 -0.298937)
(1.86549 0.304772 -0.311744)
(2.02986 0.265477 -0.32104)
(2.29805 0.171877 -0.318436)
(2.68299 0.144146 -0.316073)
(3.05909 0.0737448 -0.286812)
(3.13554 0.0336219 -0.269354)
(3.29795 0.000802545 -0.249064)
(3.25783 0.016861 -0.221055)
(3.36634 0.0235692 -0.207441)
(3.21057 0.115895 -0.180943)
(3.14555 0.114308 -0.162983)
(2.80422 0.211764 -0.13691)
(2.96904 0.208881 -0.130132)
(2.77758 0.23139 -0.117327)
(3.09053 0.158594 -0.11003)
(2.82048 0.118262 -0.106261)
(3.16608 0.033979 -0.0954734)
(2.70604 -0.0349735 -0.0929199)
(3.05845 -0.196602 -0.0706019)
(2.41277 -0.486539 -0.0834551)
(2.7583 -1.0892 -0.0163354)
(1.83445 -3.07742 -0.0292112)
(1.35242 -5.99996 -0.090683)
(1.15993 1.46259 -0.112887)
(1.73201 0.721698 -0.157876)
(2.49121 0.583856 -0.181989)
(2.90713 0.369899 -0.193659)
(3.19722 0.301015 -0.202247)
(3.44616 0.226683 -0.211018)
(3.69386 0.218565 -0.221633)
(3.90841 0.186745 -0.230152)
(4.09473 0.177056 -0.23577)
(4.28958 0.164723 -0.23839)
(4.47505 0.155728 -0.238023)
(4.66819 0.144843 -0.236374)
(4.82477 0.136794 -0.234721)
(4.97752 0.128698 -0.233061)
(5.07768 0.127221 -0.238185)
(5.20557 0.123234 -0.247931)
(5.34224 0.0940747 -0.26464)
(5.57214 0.0863353 -0.286824)
(5.8606 0.0998761 -0.299572)
(6.28458 0.0658913 -0.288847)
(6.66221 0.0479215 -0.277871)
(7.10236 0.0193495 -0.243074)
(7.11319 -0.00814688 -0.216825)
(7.19871 -0.0375363 -0.195417)
(7.00924 -0.0483234 -0.18013)
(7.01364 -0.052895 -0.161268)
(6.68244 -0.015169 -0.14795)
(6.65611 0.00261644 -0.130198)
(6.21111 0.0475193 -0.114666)
(6.47359 0.0687305 -0.107339)
(6.24551 0.0880696 -0.10441)
(6.70536 0.0784118 -0.0953169)
(6.40865 0.0465347 -0.0955156)
(6.811 0.0153127 -0.0841694)
(6.28608 -0.0211104 -0.0940716)
(6.494 -0.0994006 -0.0744795)
(5.64877 -0.252588 -0.106763)
(5.64466 -0.569166 -0.0871774)
(4.25109 -1.10308 -0.0902701)
(2.8116 -2.48736 -0.146575)
(0.00309713 -0.00045186 -0.000710153)
(0.0191754 -0.00482528 -0.00981625)
(0.0361876 -0.00475654 -0.0114086)
(0.0439942 -0.00408495 -0.00859172)
(0.0452194 -0.00162294 -0.005751)
(0.0374539 -0.00146764 -0.00171019)
(0.02097 0.00259453 -0.000740524)
(0.00317391 0.0100813 0.000506532)
(-0.0251936 0.00862351 0.000411976)
(-0.0679319 0.00654043 -0.00147201)
(-0.114364 0.0013857 -0.00466099)
(-0.174924 -0.00432573 -0.0108611)
(-0.245318 -0.00277932 -0.0205937)
(-0.339402 0.000540651 -0.0407073)
(-0.443456 0.0103924 -0.0568472)
(-0.570888 0.0101577 -0.0749545)
(-0.699161 0.00845747 -0.108138)
(-0.860596 0.00530319 -0.140053)
(-0.978074 0.00213475 -0.188624)
(-1.13883 0.0110232 -0.222485)
(-1.09458 0.0297922 -0.273751)
(-0.930908 0.0286508 -0.291536)
(-0.899888 0.0132724 -0.304172)
(-0.874839 -0.0255008 -0.319224)
(-0.857354 -0.0659282 -0.344056)
(-0.798488 -0.104197 -0.369705)
(-0.723526 -0.140108 -0.398124)
(-0.60454 -0.165828 -0.423296)
(-0.469349 -0.180256 -0.446358)
(-0.283119 -0.175081 -0.458575)
(-0.105585 -0.17208 -0.461357)
(0.107164 -0.114745 -0.441576)
(0.312291 -0.0773996 -0.397446)
(0.409023 -0.00290737 -0.317892)
(0.395941 0.0336364 -0.21414)
(0.294344 0.0489476 -0.134276)
(0.179884 0.0359582 -0.0818848)
(0.0811036 0.0213912 -0.0571435)
(0.0223737 0.00922539 -0.0403174)
(-0.00187042 -0.00164386 -0.0151918)
(0.00635169 -0.0172795 -0.0101388)
(0.0303134 -0.0321624 -0.0304892)
(0.0505696 -0.0280919 -0.0378035)
(0.0546612 -0.0132615 -0.0352881)
(0.0413299 -0.0013808 -0.0331194)
(0.00821864 0.0133817 -0.0265249)
(-0.0434775 0.0302794 -0.0261659)
(-0.126418 0.0518531 -0.0239171)
(-0.243895 0.0701144 -0.0260969)
(-0.389403 0.0950569 -0.036244)
(-0.555752 0.124768 -0.0507065)
(-0.742164 0.157481 -0.0746484)
(-0.951431 0.18697 -0.107466)
(-1.19018 0.202014 -0.149197)
(-1.44149 0.191193 -0.19687)
(-1.69227 0.156865 -0.250478)
(-1.90497 0.116419 -0.307799)
(-2.11499 0.0691502 -0.363768)
(-2.25006 0.0254531 -0.429968)
(-2.35173 -0.00982235 -0.467753)
(-2.17569 -0.013296 -0.523683)
(-1.93919 -0.116283 -0.521727)
(-1.82465 -0.213503 -0.540369)
(-1.71459 -0.32425 -0.53998)
(-1.62724 -0.439701 -0.551121)
(-1.50905 -0.549074 -0.559279)
(-1.38489 -0.647117 -0.569283)
(-1.21994 -0.720119 -0.57382)
(-1.04491 -0.75771 -0.577147)
(-0.838436 -0.740905 -0.57904)
(-0.629104 -0.687956 -0.569525)
(-0.381486 -0.558784 -0.554543)
(-0.0935536 -0.415909 -0.522563)
(0.160701 -0.215087 -0.463429)
(0.3092 -0.0219592 -0.379408)
(0.331258 0.0916202 -0.280468)
(0.259291 0.121614 -0.211464)
(0.153781 0.110068 -0.167247)
(0.0617898 0.0785612 -0.122528)
(0.00777759 0.032237 -0.0489951)
(0.00642356 -0.0428699 -0.0169331)
(0.0223445 -0.0635366 -0.0471021)
(0.0279034 -0.0431321 -0.0596094)
(0.00585768 -0.0045945 -0.060002)
(-0.0410643 0.0379147 -0.0593852)
(-0.118912 0.0856085 -0.0576128)
(-0.239088 0.138865 -0.061922)
(-0.40254 0.202369 -0.0659894)
(-0.609763 0.275715 -0.0772606)
(-0.846634 0.346068 -0.0962618)
(-1.09355 0.406509 -0.123912)
(-1.34462 0.445362 -0.16165)
(-1.59391 0.447437 -0.209307)
(-1.84808 0.395887 -0.263108)
(-2.07348 0.321174 -0.317405)
(-2.25829 0.247003 -0.360945)
(-2.39443 0.172638 -0.40525)
(-2.52047 0.0909651 -0.445983)
(-2.57215 0.0185794 -0.491438)
(-2.57273 -0.0669777 -0.513422)
(-2.37666 -0.164451 -0.524265)
(-2.10411 -0.333787 -0.528647)
(-1.96309 -0.482444 -0.507407)
(-1.84459 -0.630804 -0.48295)
(-1.776 -0.783995 -0.470412)
(-1.68645 -0.937639 -0.456693)
(-1.60013 -1.07917 -0.447345)
(-1.47877 -1.19716 -0.432595)
(-1.34352 -1.27166 -0.417503)
(-1.18555 -1.27366 -0.401983)
(-1.04313 -1.20046 -0.394254)
(-0.88067 -1.0252 -0.397178)
(-0.642032 -0.795621 -0.403421)
(-0.327692 -0.504214 -0.405164)
(-0.0466638 -0.188621 -0.356207)
(0.102683 0.0477885 -0.322868)
(0.143097 0.163735 -0.267408)
(0.105313 0.190903 -0.226446)
(0.0454385 0.157412 -0.167316)
(0.00443648 0.0784098 -0.0656777)
(0.00369503 -0.065978 -0.0236689)
(-0.00145212 -0.081679 -0.0622156)
(-0.0370469 -0.0326401 -0.0815865)
(-0.098802 0.0498456 -0.0811968)
(-0.192141 0.14116 -0.0816013)
(-0.330555 0.238837 -0.0834333)
(-0.516212 0.349209 -0.090683)
(-0.746312 0.464888 -0.101048)
(-1.00804 0.563027 -0.115999)
(-1.2679 0.627545 -0.142557)
(-1.50169 0.652082 -0.176457)
(-1.71834 0.623488 -0.218483)
(-1.92798 0.539913 -0.267238)
(-2.10477 0.4356 -0.311711)
(-2.22298 0.34172 -0.339374)
(-2.30909 0.252178 -0.3596)
(-2.36289 0.161325 -0.378612)
(-2.40946 0.0599236 -0.39115)
(-2.40763 -0.0356383 -0.402882)
(-2.40382 -0.170408 -0.389523)
(-2.20369 -0.308761 -0.408051)
(-1.94761 -0.472277 -0.365633)
(-1.82904 -0.626812 -0.339646)
(-1.75111 -0.791231 -0.308564)
(-1.71721 -0.957319 -0.288503)
(-1.6718 -1.13107 -0.270649)
(-1.63004 -1.29949 -0.259895)
(-1.5585 -1.4553 -0.245978)
(-1.46539 -1.57593 -0.234779)
(-1.34041 -1.6273 -0.222474)
(-1.21399 -1.59011 -0.214654)
(-1.12369 -1.43148 -0.220155)
(-0.995318 -1.1454 -0.257217)
(-0.729258 -0.803355 -0.294074)
(-0.400666 -0.42748 -0.318457)
(-0.143175 -0.0797035 -0.317885)
(-0.0127943 0.118434 -0.284069)
(0.0165458 0.203277 -0.253375)
(0.0082273 0.191292 -0.185575)
(-0.00166424 0.0976625 -0.0706189)
(-0.00491669 -0.0794637 -0.0354093)
(-0.0477654 -0.0641923 -0.0870894)
(-0.127855 0.0316955 -0.104827)
(-0.237527 0.176187 -0.10711)
(-0.385612 0.319406 -0.108869)
(-0.567441 0.469626 -0.113702)
(-0.780414 0.611434 -0.124434)
(-1.01628 0.731355 -0.133529)
(-1.26169 0.807187 -0.148708)
(-1.48518 0.811862 -0.169498)
(-1.68235 0.753511 -0.196484)
(-1.85625 0.652629 -0.232041)
(-1.97996 0.53529 -0.267831)
(-2.05779 0.434408 -0.282887)
(-2.10258 0.337517 -0.287595)
(-2.13487 0.237368 -0.285698)
(-2.15416 0.136019 -0.28258)
(-2.17627 0.0306812 -0.275437)
(-2.17867 -0.0791205 -0.268037)
(-2.17339 -0.236495 -0.250913)
(-2.00797 -0.359493 -0.239703)
(-1.78448 -0.534209 -0.196624)
(-1.6973 -0.69975 -0.169466)
(-1.65217 -0.870277 -0.142858)
(-1.64072 -1.04408 -0.122727)
(-1.62222 -1.23085 -0.106314)
(-1.60777 -1.41219 -0.0989956)
(-1.57198 -1.59888 -0.0926567)
(-1.51809 -1.76301 -0.0918991)
(-1.42784 -1.87339 -0.0942145)
(-1.31515 -1.89683 -0.0997199)
(-1.20216 -1.8016 -0.112039)
(-1.15147 -1.54673 -0.14109)
(-0.997816 -1.14107 -0.210016)
(-0.670939 -0.709464 -0.261509)
(-0.349994 -0.265771 -0.30441)
(-0.140002 0.0476232 -0.300684)
(-0.0448506 0.187369 -0.266005)
(-0.0150791 0.203203 -0.192312)
(-0.00586558 0.104859 -0.0705092)
(-0.011381 -0.0740931 -0.0496514)
(-0.098374 -0.00115853 -0.113872)
(-0.232928 0.162001 -0.136226)
(-0.384275 0.359185 -0.133082)
(-0.562242 0.546244 -0.133687)
(-0.749966 0.717242 -0.136807)
(-0.950948 0.853261 -0.142271)
(-1.16731 0.928378 -0.147372)
(-1.40031 0.898877 -0.149114)
(-1.60345 0.822542 -0.163187)
(-1.73533 0.718491 -0.184129)
(-1.81488 0.612281 -0.204253)
(-1.8617 0.51463 -0.214741)
(-1.89217 0.414794 -0.208524)
(-1.90785 0.310911 -0.195173)
(-1.9282 0.212005 -0.177142)
(-1.94086 0.114041 -0.162165)
(-1.9681 0.0139055 -0.135973)
(-1.98414 -0.0938282 -0.117753)
(-1.99673 -0.236669 -0.0864831)
(-1.86022 -0.36384 -0.0671312)
(-1.6523 -0.551263 -0.012275)
(-1.57869 -0.71522 0.00935519)
(-1.5456 -0.877068 0.0268319)
(-1.5408 -1.04299 0.0353474)
(-1.53323 -1.23087 0.0481513)
(-1.54085 -1.42397 0.0442233)
(-1.53268 -1.61867 0.0413298)
(-1.50974 -1.80997 0.0329435)
(-1.46227 -1.9711 0.0160151)
(-1.38046 -2.07464 -0.00287673)
(-1.26694 -2.05876 -0.0264584)
(-1.187 -1.91839 -0.0559302)
(-1.1349 -1.5508 -0.121592)
(-0.895713 -1.07548 -0.199034)
(-0.515847 -0.553706 -0.270717)
(-0.237002 -0.113126 -0.300273)
(-0.10064 0.111983 -0.27594)
(-0.0312781 0.179704 -0.199297)
(-0.00671904 0.093137 -0.0736757)
(-0.016454 -0.0247456 -0.0762985)
(-0.138231 0.108443 -0.150277)
(-0.318877 0.331321 -0.16709)
(-0.494144 0.564513 -0.159298)
(-0.675614 0.76389 -0.156034)
(-0.850216 0.915936 -0.15164)
(-1.05324 0.98486 -0.149284)
(-1.28982 0.941432 -0.133006)
(-1.47815 0.854534 -0.137445)
(-1.57826 0.775641 -0.14403)
(-1.63488 0.696725 -0.147128)
(-1.67049 0.607292 -0.146556)
(-1.69284 0.505267 -0.136852)
(-1.71403 0.406683 -0.11571)
(-1.72809 0.309737 -0.0884655)
(-1.75249 0.212774 -0.0614264)
(-1.7777 0.123525 -0.0335386)
(-1.81684 0.0274476 0.00121196)
(-1.84324 -0.0689424 0.0279152)
(-1.85747 -0.204774 0.0517317)
(-1.74665 -0.323357 0.0748686)
(-1.54933 -0.523331 0.114578)
(-1.4618 -0.686709 0.1309)
(-1.43386 -0.845768 0.141075)
(-1.43158 -1.00768 0.144111)
(-1.43259 -1.1932 0.146713)
(-1.44093 -1.39481 0.141624)
(-1.44713 -1.60343 0.135841)
(-1.44779 -1.817 0.125509)
(-1.44352 -2.01916 0.104377)
(-1.40153 -2.17352 0.0768928)
(-1.32419 -2.25172 0.045716)
(-1.22061 -2.19987 0.00559993)
(-1.17832 -1.96528 -0.0436552)
(-1.04518 -1.49166 -0.121959)
(-0.695518 -0.918734 -0.210005)
(-0.332573 -0.356831 -0.282813)
(-0.114837 0.0317181 -0.279505)
(-0.0196809 0.141725 -0.209151)
(-0.00487299 0.0877596 -0.0816043)
(-0.0300943 0.0362821 -0.088772)
(-0.177185 0.229537 -0.170153)
(-0.375687 0.482378 -0.184532)
(-0.558863 0.720819 -0.171325)
(-0.740017 0.895539 -0.158329)
(-0.937527 0.988627 -0.140145)
(-1.163 0.963022 -0.121683)
(-1.32663 0.896041 -0.117828)
(-1.41771 0.849316 -0.111802)
(-1.47052 0.786466 -0.101941)
(-1.49479 0.701414 -0.0879908)
(-1.51751 0.604209 -0.073453)
(-1.53372 0.506168 -0.0486667)
(-1.55796 0.41064 -0.0174672)
(-1.5899 0.32297 0.0133863)
(-1.62342 0.228978 0.0451713)
(-1.64958 0.147008 0.0761992)
(-1.68455 0.0583996 0.111628)
(-1.71626 -0.0188776 0.139458)
(-1.72989 -0.133543 0.16406)
(-1.65087 -0.242201 0.169457)
(-1.45916 -0.445273 0.206152)
(-1.35072 -0.613723 0.222168)
(-1.31859 -0.775216 0.224891)
(-1.31342 -0.935053 0.22096)
(-1.31925 -1.11728 0.216215)
(-1.33167 -1.31576 0.204369)
(-1.34696 -1.53341 0.190355)
(-1.36068 -1.76515 0.175926)
(-1.37025 -2.00008 0.157742)
(-1.37132 -2.2098 0.139323)
(-1.33566 -2.3605 0.100549)
(-1.25629 -2.40067 0.0616087)
(-1.18366 -2.29135 0.0161859)
(-1.10932 -1.91147 -0.049465)
(-0.839133 -1.33061 -0.12296)
(-0.41706 -0.661435 -0.219665)
(-0.148935 -0.125321 -0.233834)
(-0.0445814 0.0811925 -0.210909)
(0.00127033 0.0742438 -0.0844658)
(-0.0348186 0.0965865 -0.104587)
(-0.198863 0.345524 -0.192437)
(-0.404973 0.60015 -0.198274)
(-0.586605 0.811381 -0.172844)
(-0.781971 0.94698 -0.149724)
(-0.991159 0.981246 -0.126438)
(-1.16106 0.955665 -0.114233)
(-1.25897 0.934595 -0.0946304)
(-1.31128 0.880647 -0.0733019)
(-1.32825 0.802884 -0.0486789)
(-1.34359 0.711285 -0.0228485)
(-1.36782 0.614773 0.000980127)
(-1.40166 0.524797 0.0309984)
(-1.44144 0.432753 0.0644325)
(-1.47818 0.345917 0.0991907)
(-1.51157 0.261686 0.132485)
(-1.53794 0.184742 0.161642)
(-1.56239 0.103345 0.190281)
(-1.58837 0.0296078 0.208897)
(-1.59494 -0.0615085 0.227217)
(-1.55133 -0.161188 0.22561)
(-1.37448 -0.342379 0.250492)
(-1.23748 -0.529551 0.268279)
(-1.19907 -0.693673 0.266699)
(-1.18865 -0.854798 0.258133)
(-1.19685 -1.03212 0.247942)
(-1.21262 -1.22894 0.232237)
(-1.23475 -1.44764 0.217349)
(-1.26012 -1.68642 0.198589)
(-1.28402 -1.93917 0.181281)
(-1.30259 -2.18885 0.161805)
(-1.30173 -2.40299 0.138091)
(-1.26723 -2.53397 0.102267)
(-1.18795 -2.51972 0.0596763)
(-1.12335 -2.28571 0.0107007)
(-0.942123 -1.74578 -0.0542549)
(-0.552832 -1.02941 -0.136407)
(-0.195514 -0.363021 -0.217213)
(-0.0425964 0.0116998 -0.18929)
(0.000731247 0.0579888 -0.0880121)
(-0.038485 0.174343 -0.117966)
(-0.212024 0.473392 -0.215066)
(-0.419886 0.722952 -0.21985)
(-0.595023 0.905498 -0.188731)
(-0.797501 1.00645 -0.154831)
(-0.979651 1.02089 -0.123569)
(-1.10111 1.01566 -0.0948685)
(-1.15487 0.976959 -0.061969)
(-1.17193 0.909236 -0.0257348)
(-1.18355 0.821059 0.00545748)
(-1.20916 0.727448 0.0359312)
(-1.24936 0.633207 0.0656125)
(-1.29525 0.544801 0.10128)
(-1.34038 0.458343 0.13838)
(-1.37839 0.375643 0.173143)
(-1.40661 0.292571 0.202122)
(-1.42365 0.215873 0.222933)
(-1.43555 0.138337 0.239053)
(-1.4438 0.0655113 0.248113)
(-1.442 -0.0171531 0.258197)
(-1.41984 -0.103594 0.265114)
(-1.27958 -0.239751 0.264182)
(-1.12521 -0.43782 0.285277)
(-1.07037 -0.601099 0.28136)
(-1.05617 -0.763876 0.270814)
(-1.06352 -0.93277 0.257885)
(-1.08118 -1.12305 0.241434)
(-1.10773 -1.33494 0.2249)
(-1.14105 -1.57551 0.209117)
(-1.17865 -1.83984 0.191446)
(-1.21314 -2.12018 0.170162)
(-1.23591 -2.38563 0.144262)
(-1.23079 -2.59632 0.11731)
(-1.18477 -2.68017 0.0843668)
(-1.10835 -2.57047 0.0444811)
(-0.976178 -2.13846 -0.000864016)
(-0.663474 -1.42038 -0.058811)
(-0.251568 -0.611122 -0.142594)
(-0.0534584 -0.0785263 -0.152931)
(-0.00886862 0.0392773 -0.0809673)
(-0.0359609 0.249771 -0.128456)
(-0.207759 0.59938 -0.234535)
(-0.410284 0.847341 -0.239771)
(-0.586277 1.01129 -0.201337)
(-0.781683 1.07854 -0.157248)
(-0.925297 1.09044 -0.113521)
(-0.999137 1.07142 -0.0707152)
(-1.02001 1.01927 -0.0238904)
(-1.03229 0.934777 0.0184422)
(-1.05167 0.842407 0.0583217)
(-1.09314 0.747955 0.0891546)
(-1.14616 0.658977 0.123474)
(-1.19992 0.573479 0.161429)
(-1.2465 0.488344 0.198656)
(-1.28008 0.40449 0.230237)
(-1.29996 0.320975 0.252085)
(-1.30691 0.241797 0.263824)
(-1.30439 0.163058 0.268108)
(-1.30145 0.0909144 0.268513)
(-1.28397 0.0147533 0.267291)
(-1.25845 -0.0627713 0.278694)
(-1.16571 -0.165536 0.266259)
(-1.02024 -0.340137 0.279798)
(-0.944167 -0.51151 0.272634)
(-0.927018 -0.671764 0.262704)
(-0.93149 -0.836512 0.24696)
(-0.949828 -1.01758 0.233704)
(-0.976498 -1.22078 0.219233)
(-1.01301 -1.45349 0.207094)
(-1.05743 -1.71874 0.192396)
(-1.10617 -2.01407 0.172381)
(-1.1476 -2.32072 0.146921)
(-1.16817 -2.59899 0.117095)
(-1.1503 -2.78348 0.0870285)
(-1.08585 -2.78774 0.0610077)
(-0.976742 -2.49827 0.0277957)
(-0.736709 -1.82573 -0.00505742)
(-0.322689 -0.926301 -0.0692824)
(-0.0704113 -0.227789 -0.0991463)
(-0.0241358 0.0143825 -0.0650495)
(-0.0296426 0.320353 -0.138149)
(-0.190062 0.71784 -0.253333)
(-0.383736 0.964509 -0.26003)
(-0.561582 1.1058 -0.214789)
(-0.733244 1.15202 -0.160288)
(-0.83474 1.159 -0.102873)
(-0.876094 1.12226 -0.0434739)
(-0.889547 1.05235 0.0100993)
(-0.904746 0.957856 0.0619238)
(-0.938042 0.864995 0.102537)
(-0.995516 0.771988 0.135907)
(-1.05519 0.684525 0.172547)
(-1.11045 0.599017 0.211564)
(-1.15209 0.512574 0.245824)
(-1.17886 0.427186 0.27073)
(-1.18919 0.341711 0.283364)
(-1.18466 0.25942 0.284863)
(-1.16816 0.178931 0.280014)
(-1.14766 0.105003 0.272254)
(-1.11923 0.0386677 0.266717)
(-1.09509 -0.0319826 0.269111)
(-1.02858 -0.11562 0.25519)
(-0.91608 -0.248957 0.26295)
(-0.833576 -0.417677 0.251861)
(-0.803993 -0.577129 0.241232)
(-0.80666 -0.737863 0.227925)
(-0.82308 -0.91017 0.214354)
(-0.849167 -1.1023 0.205627)
(-0.884679 -1.32399 0.196056)
(-0.930809 -1.58216 0.184719)
(-0.984353 -1.88077 0.167222)
(-1.04009 -2.21058 0.142993)
(-1.08333 -2.54486 0.112497)
(-1.09319 -2.81837 0.0804346)
(-1.05287 -2.94359 0.0519756)
(-0.949458 -2.78763 0.031381)
(-0.760833 -2.2327 0.0222772)
(-0.40455 -1.28043 -0.0194216)
(-0.0823544 -0.413631 -0.0743668)
(-0.0144753 -0.0241189 -0.0487365)
(-0.0203341 0.379583 -0.141036)
(-0.161452 0.824604 -0.264951)
(-0.345786 1.07233 -0.273896)
(-0.515546 1.18798 -0.221143)
(-0.657236 1.22896 -0.159225)
(-0.726887 1.22123 -0.0866069)
(-0.752837 1.16725 -0.0182215)
(-0.76357 1.08142 0.0449594)
(-0.791608 0.987022 0.0984891)
(-0.841232 0.889379 0.139756)
(-0.905529 0.798383 0.174871)
(-0.96685 0.709974 0.212949)
(-1.01828 0.622104 0.249737)
(-1.0534 0.532926 0.278193)
(-1.0719 0.444794 0.294062)
(-1.07319 0.357168 0.295997)
(-1.05774 0.27157 0.28818)
(-1.02867 0.189174 0.275666)
(-0.994664 0.114059 0.26302)
(-0.955857 0.0490283 0.25598)
(-0.930374 -0.0122042 0.253174)
(-0.885353 -0.0799875 0.236468)
(-0.807787 -0.183587 0.234417)
(-0.740356 -0.328097 0.223713)
(-0.701697 -0.49027 0.212876)
(-0.697004 -0.646203 0.200177)
(-0.709776 -0.811978 0.19233)
(-0.732536 -0.992021 0.185574)
(-0.765322 -1.20136 0.179546)
(-0.807954 -1.44649 0.171048)
(-0.862394 -1.73965 0.156925)
(-0.924893 -2.07946 0.135871)
(-0.983881 -2.45027 0.10827)
(-1.02087 -2.80051 0.0759648)
(-1.00427 -3.03689 0.0464302)
(-0.921023 -3.01895 0.0257188)
(-0.756826 -2.60282 0.0207229)
(-0.464953 -1.67183 0.0169466)
(-0.109179 -0.623241 -0.0307846)
(-0.00631966 -0.0782578 -0.0341224)
(-0.0100575 0.423363 -0.145838)
(-0.127902 0.915717 -0.278137)
(-0.301948 1.16266 -0.288606)
(-0.454358 1.26204 -0.232111)
(-0.564456 1.29657 -0.159908)
(-0.613501 1.27225 -0.0754525)
(-0.636444 1.20549 -0.000141298)
(-0.656055 1.1104 0.0716346)
(-0.696219 1.01033 0.124762)
(-0.7552 0.912928 0.168041)
(-0.821281 0.820822 0.20614)
(-0.879679 0.730074 0.244763)
(-0.924091 0.63836 0.277638)
(-0.950613 0.546728 0.298302)
(-0.960618 0.456599 0.303458)
(-0.95248 0.367015 0.294524)
(-0.926306 0.278897 0.276602)
(-0.886341 0.19523 0.258533)
(-0.841431 0.12093 0.243334)
(-0.79609 0.0608481 0.23875)
(-0.772048 0.00551418 0.234059)
(-0.745342 -0.0530098 0.214119)
(-0.698946 -0.137518 0.203221)
(-0.659433 -0.257432 0.1899)
(-0.622925 -0.40737 0.179317)
(-0.606125 -0.564052 0.17094)
(-0.612588 -0.721603 0.165086)
(-0.630245 -0.891599 0.162206)
(-0.657877 -1.08543 0.157884)
(-0.695901 -1.31683 0.152634)
(-0.746631 -1.59775 0.141641)
(-0.808673 -1.93552 0.124768)
(-0.875667 -2.32582 0.0994675)
(-0.932348 -2.73228 0.0692325)
(-0.945187 -3.0699 0.0380485)
(-0.886996 -3.19001 0.0172173)
(-0.736824 -2.92002 0.00996041)
(-0.494964 -2.0689 0.0213179)
(-0.131273 -0.866859 -0.0019737)
(0.00961051 -0.1374 -0.0210568)
(0.00105215 0.451917 -0.140166)
(-0.0943201 0.993212 -0.280379)
(-0.250997 1.24326 -0.294776)
(-0.380177 1.33469 -0.236598)
(-0.465221 1.35813 -0.155808)
(-0.504501 1.31586 -0.0601972)
(-0.529884 1.23637 0.0211645)
(-0.560169 1.13783 0.0944281)
(-0.611413 1.038 0.146447)
(-0.673962 0.940113 0.192039)
(-0.737463 0.846253 0.232317)
(-0.78882 0.750191 0.269132)
(-0.824252 0.65411 0.295615)
(-0.841263 0.558888 0.306196)
(-0.842531 0.466109 0.299755)
(-0.82673 0.374307 0.278786)
(-0.793452 0.284522 0.252963)
(-0.745673 0.201445 0.231185)
(-0.691933 0.130844 0.216696)
(-0.64539 0.0791274 0.217884)
(-0.62682 0.0258487 0.211028)
(-0.618963 -0.0327807 0.186456)
(-0.598638 -0.107336 0.172621)
(-0.584092 -0.207483 0.158035)
(-0.563362 -0.334659 0.148999)
(-0.540282 -0.49139 0.140969)
(-0.533623 -0.643767 0.137626)
(-0.543613 -0.803661 0.136273)
(-0.565855 -0.984192 0.134595)
(-0.599081 -1.19931 0.132129)
(-0.644348 -1.4646 0.125479)
(-0.70305 -1.79391 0.112564)
(-0.770974 -2.19067 0.0912158)
(-0.838998 -2.63612 0.0625921)
(-0.874532 -3.05414 0.0315219)
(-0.847998 -3.3031 0.0100548)
(-0.714782 -3.17529 0.00193974)
(-0.497708 -2.44657 0.0115365)
(-0.153757 -1.1503 0.0210251)
(0.0153163 -0.187831 -0.00430143)
(0.0095369 0.467596 -0.14549)
(-0.0634397 1.05671 -0.290994)
(-0.198015 1.31808 -0.312179)
(-0.302255 1.40871 -0.253624)
(-0.367628 1.41502 -0.161282)
(-0.404325 1.35781 -0.0583186)
(-0.434557 1.26843 0.0299993)
(-0.474204 1.1655 0.104043)
(-0.53246 1.06501 0.159335)
(-0.596368 0.967921 0.208862)
(-0.655441 0.870705 0.251545)
(-0.698685 0.770816 0.287219)
(-0.722003 0.669261 0.306173)
(-0.727806 0.571421 0.306369)
(-0.720496 0.476879 0.287784)
(-0.699587 0.38573 0.257386)
(-0.661238 0.297152 0.223782)
(-0.606943 0.218326 0.198061)
(-0.545267 0.155629 0.185546)
(-0.50284 0.102037 0.191846)
(-0.502505 0.0459751 0.184381)
(-0.51019 -0.0180051 0.160263)
(-0.50654 -0.0864001 0.145258)
(-0.511432 -0.170773 0.132145)
(-0.514756 -0.275087 0.121699)
(-0.497182 -0.413078 0.114418)
(-0.472999 -0.571924 0.10898)
(-0.473063 -0.724447 0.110194)
(-0.487837 -0.892501 0.10936)
(-0.513872 -1.09179 0.110892)
(-0.554053 -1.34041 0.107806)
(-0.607716 -1.65697 0.0997748)
(-0.674421 -2.0519 0.0815999)
(-0.746767 -2.52206 0.0552509)
(-0.797286 -3.00643 0.0232455)
(-0.795496 -3.37218 0.000815419)
(-0.690514 -3.3926 -0.010559)
(-0.490494 -2.79592 -0.00153719)
(-0.15999 -1.47668 0.0256962)
(0.0320307 -0.244597 0.0115669)
(0.0174783 0.472694 -0.136082)
(-0.0296071 1.10708 -0.286599)
(-0.140655 1.39843 -0.321119)
(-0.224323 1.48102 -0.258228)
(-0.276274 1.4737 -0.161688)
(-0.311865 1.39917 -0.0503614)
(-0.35025 1.3043 0.041339)
(-0.398736 1.19932 0.117822)
(-0.458769 1.10373 0.175082)
(-0.519121 1.00803 0.226736)
(-0.569383 0.911195 0.26938)
(-0.599133 0.80738 0.298031)
(-0.608064 0.700644 0.307423)
(-0.602099 0.599237 0.294947)
(-0.589571 0.502528 0.266068)
(-0.567069 0.413473 0.226447)
(-0.527822 0.333764 0.185838)
(-0.46981 0.264879 0.162257)
(-0.414377 0.198705 0.15505)
(-0.383922 0.126828 0.155966)
(-0.397071 0.0629483 0.159958)
(-0.416622 -0.00602685 0.136306)
(-0.421668 -0.0711366 0.121218)
(-0.439569 -0.146287 0.109442)
(-0.458689 -0.232832 0.0989448)
(-0.467822 -0.340422 0.0933343)
(-0.44251 -0.482582 0.082883)
(-0.41693 -0.642813 0.083538)
(-0.422924 -0.806963 0.085762)
(-0.44355 -0.990987 0.0895439)
(-0.475849 -1.21872 0.0901554)
(-0.521884 -1.51888 0.0862505)
(-0.58513 -1.9084 0.0736544)
(-0.661298 -2.39588 0.0499466)
(-0.722093 -2.9339 0.0182442)
(-0.744349 -3.40979 -0.00858993)
(-0.66896 -3.57188 -0.0277463)
(-0.491425 -3.11971 -0.0173829)
(-0.172015 -1.80081 0.0145632)
(0.0482955 -0.291197 0.0203481)
(0.00719601 0.488738 -0.155572)
(-0.00937583 1.17419 -0.317967)
(-0.0845271 1.49874 -0.342264)
(-0.156082 1.58126 -0.293503)
(-0.194259 1.55982 -0.182571)
(-0.22896 1.47272 -0.0657954)
(-0.268137 1.36831 0.0334708)
(-0.317085 1.26261 0.112782)
(-0.372838 1.16465 0.171864)
(-0.42637 1.06921 0.22387)
(-0.465333 0.970372 0.264359)
(-0.485854 0.868872 0.290623)
(-0.484509 0.766579 0.292144)
(-0.472839 0.668903 0.2729)
(-0.455827 0.575317 0.238836)
(-0.427506 0.496605 0.200687)
(-0.387615 0.420418 0.168593)
(-0.345913 0.340911 0.145729)
(-0.314776 0.253276 0.123613)
(-0.292947 0.160558 0.12642)
(-0.310316 0.0880446 0.141499)
(-0.334865 0.0112407 0.118764)
(-0.344911 -0.0536149 0.101559)
(-0.371628 -0.127891 0.0915431)
(-0.397759 -0.205063 0.0794048)
(-0.417409 -0.291261 0.0755585)
(-0.418661 -0.396161 0.0692502)
(-0.398565 -0.536168 0.0658985)
(-0.375904 -0.699028 0.0622173)
(-0.377204 -0.885242 0.0690521)
(-0.402945 -1.10341 0.0730694)
(-0.440703 -1.38283 0.0736419)
(-0.497206 -1.75599 0.0642707)
(-0.570596 -2.25402 0.0434708)
(-0.639321 -2.84138 0.0130047)
(-0.685222 -3.42472 -0.018735)
(-0.640264 -3.72969 -0.0472677)
(-0.483368 -3.43023 -0.0404355)
(-0.178436 -2.14282 -0.000232856)
(0.065017 -0.380955 0.0222973)
(0.00482149 0.52905 -0.140584)
(-0.00121823 1.2848 -0.310479)
(-0.0376167 1.62513 -0.358673)
(-0.0716883 1.70919 -0.291955)
(-0.108746 1.68163 -0.189867)
(-0.149483 1.57931 -0.0658965)
(-0.185844 1.47812 0.0256877)
(-0.235523 1.37356 0.106)
(-0.282154 1.28225 0.162195)
(-0.323198 1.19822 0.208306)
(-0.345754 1.1194 0.239721)
(-0.34814 1.03296 0.252909)
(-0.338721 0.932473 0.250168)
(-0.325297 0.825329 0.233839)
(-0.306647 0.71908 0.214467)
(-0.288455 0.622967 0.187771)
(-0.278458 0.52651 0.155456)
(-0.262294 0.423888 0.126942)
(-0.248044 0.320083 0.104465)
(-0.224523 0.21707 0.106743)
(-0.239043 0.13009 0.128088)
(-0.266237 0.0424157 0.10412)
(-0.27818 -0.0310536 0.0878031)
(-0.311381 -0.108523 0.0783957)
(-0.337835 -0.181631 0.0652252)
(-0.359741 -0.257002 0.0623663)
(-0.366586 -0.340116 0.0572737)
(-0.366658 -0.439192 0.0588923)
(-0.365236 -0.568798 0.0563691)
(-0.356208 -0.735358 0.0544948)
(-0.354791 -0.938353 0.0539308)
(-0.368463 -1.2116 0.0573691)
(-0.408716 -1.57944 0.0552063)
(-0.478246 -2.0767 0.0398515)
(-0.556054 -2.69551 0.0110536)
(-0.621548 -3.37986 -0.0264046)
(-0.615995 -3.83538 -0.0612465)
(-0.487449 -3.70416 -0.0614206)
(-0.210106 -2.47489 -0.0233033)
(0.0558543 -0.428441 0.0122114)
(-0.00084478 0.674896 -0.177113)
(0.00973283 1.4966 -0.358765)
(-0.00750554 1.87574 -0.403504)
(-0.0293241 1.95763 -0.348676)
(-0.048855 1.90618 -0.235529)
(-0.0666065 1.79853 -0.102922)
(-0.101335 1.69745 -7.69325e-05)
(-0.147255 1.60018 0.066988)
(-0.172472 1.51033 0.113188)
(-0.184888 1.42736 0.144357)
(-0.190666 1.33918 0.173284)
(-0.205783 1.23101 0.199514)
(-0.213813 1.10143 0.210817)
(-0.214561 0.969137 0.209366)
(-0.20771 0.838652 0.198912)
(-0.197476 0.720168 0.182808)
(-0.196266 0.614828 0.159575)
(-0.19414 0.514966 0.140244)
(-0.1914 0.412483 0.120734)
(-0.172454 0.295431 0.109582)
(-0.189023 0.190322 0.130738)
(-0.214351 0.0824415 0.102569)
(-0.225289 -0.00710901 0.0858682)
(-0.256035 -0.08706 0.0730485)
(-0.27965 -0.159357 0.0583297)
(-0.299844 -0.229663 0.055973)
(-0.306813 -0.30278 0.0514825)
(-0.307137 -0.385468 0.0540117)
(-0.311518 -0.47722 0.0541896)
(-0.317317 -0.597163 0.0575154)
(-0.332542 -0.752358 0.0583385)
(-0.351742 -0.982822 0.0557787)
(-0.367293 -1.31503 0.0455036)
(-0.386263 -1.8174 0.0271784)
(-0.450714 -2.4807 0.00514179)
(-0.533441 -3.24757 -0.0343939)
(-0.562011 -3.85532 -0.0700497)
(-0.476013 -3.92765 -0.0759869)
(-0.219761 -2.84065 -0.0429723)
(0.0638641 -0.575307 0.015221)
(-0.0190699 0.729369 -0.146783)
(-0.00225202 1.59881 -0.329453)
(0.0141504 2.01634 -0.389194)
(0.01234 2.12808 -0.345651)
(0.0107572 2.09026 -0.238517)
(-0.00446964 1.98189 -0.10988)
(-0.0186721 1.8657 -0.00664342)
(-0.0527087 1.76854 0.0770985)
(-0.0792089 1.67302 0.111132)
(-0.0857603 1.57141 0.136834)
(-0.0942218 1.44752 0.168705)
(-0.108263 1.3107 0.194692)
(-0.114765 1.16624 0.206724)
(-0.116038 1.02916 0.208527)
(-0.10921 0.902697 0.207066)
(-0.0969616 0.793209 0.20745)
(-0.103187 0.699356 0.208325)
(-0.11731 0.612283 0.210196)
(-0.146916 0.518024 0.194466)
(-0.144121 0.384866 0.1598)
(-0.162338 0.254067 0.15924)
(-0.186862 0.124651 0.117412)
(-0.183149 0.021245 0.0947625)
(-0.204671 -0.0628676 0.077501)
(-0.223267 -0.137281 0.0617816)
(-0.24152 -0.204497 0.0575135)
(-0.24844 -0.27145 0.0524582)
(-0.246946 -0.346443 0.0538774)
(-0.250626 -0.423609 0.0532212)
(-0.25137 -0.51794 0.0557163)
(-0.264042 -0.62521 0.0599686)
(-0.288108 -0.784787 0.0667079)
(-0.346673 -1.02808 0.0705677)
(-0.410145 -1.45759 0.0593338)
(-0.429832 -2.09594 0.0132798)
(-0.468822 -2.93344 -0.0311173)
(-0.522912 -3.68485 -0.0762567)
(-0.477489 -3.9977 -0.0926514)
(-0.268339 -3.14831 -0.0728153)
(0.0282606 -0.861843 -0.013708)
(-0.00974189 0.682631 -0.141251)
(0.0175698 1.56258 -0.307121)
(0.0468869 2.00858 -0.375439)
(0.0598591 2.15657 -0.344729)
(0.0646897 2.13852 -0.247341)
(0.0561206 2.03992 -0.126882)
(0.0454011 1.92838 -0.0224182)
(0.0290955 1.81266 0.0553353)
(0.0188267 1.71502 0.109309)
(0.00425164 1.60843 0.130812)
(-0.0043002 1.47969 0.155484)
(-0.0139468 1.34405 0.179977)
(-0.0171889 1.20256 0.198715)
(-0.0138244 1.06719 0.218293)
(-0.00407975 0.948225 0.238274)
(0.00840973 0.84853 0.265822)
(-0.00150816 0.767475 0.300561)
(-0.0312797 0.689655 0.334326)
(-0.100539 0.599924 0.336487)
(-0.136505 0.468376 0.267996)
(-0.161033 0.306097 0.217255)
(-0.170892 0.167232 0.1457)
(-0.149037 0.0512432 0.109835)
(-0.157738 -0.0397863 0.0926156)
(-0.167438 -0.118531 0.0751994)
(-0.178695 -0.186108 0.0686148)
(-0.185925 -0.247648 0.0613672)
(-0.182234 -0.317591 0.060397)
(-0.182524 -0.386931 0.0581446)
(-0.178871 -0.470273 0.0581543)
(-0.185071 -0.560002 0.0589173)
(-0.195105 -0.688008 0.0606146)
(-0.228521 -0.86643 0.0641624)
(-0.311455 -1.18101 0.0639749)
(-0.409527 -1.6905 0.046944)
(-0.463959 -2.48376 -0.0110261)
(-0.521779 -3.29439 -0.0576149)
(-0.522666 -3.79523 -0.0881836)
(-0.36762 -3.20036 -0.0775151)
(-0.0524661 -0.946448 -0.0219949)
(-0.00347771 0.651236 -0.115098)
(0.0407564 1.50271 -0.267167)
(0.0839743 1.96935 -0.341887)
(0.105608 2.1427 -0.323981)
(0.116833 2.14418 -0.23951)
(0.112235 2.06038 -0.126297)
(0.107422 1.95548 -0.0258131)
(0.0930042 1.84402 0.0525901)
(0.0853999 1.73339 0.102899)
(0.0806107 1.61649 0.13686)
(0.0775181 1.49069 0.161652)
(0.0685047 1.35455 0.186416)
(0.0698369 1.21068 0.207522)
(0.0841289 1.07385 0.235028)
(0.107261 0.9584 0.278153)
(0.131002 0.859211 0.344667)
(0.116082 0.776417 0.421527)
(0.0632068 0.691403 0.496724)
(-0.0460857 0.598399 0.522102)
(-0.135301 0.483575 0.429978)
(-0.172738 0.31965 0.308331)
(-0.162221 0.1823 0.194777)
(-0.122691 0.0690222 0.142997)
(-0.115177 -0.0242642 0.118308)
(-0.114643 -0.101586 0.0996946)
(-0.115893 -0.17245 0.0900697)
(-0.120767 -0.231741 0.0796827)
(-0.117511 -0.298329 0.0739333)
(-0.117939 -0.360908 0.0686894)
(-0.111034 -0.438444 0.065529)
(-0.115663 -0.516521 0.0632587)
(-0.120901 -0.62979 0.0613557)
(-0.150659 -0.77955 0.0594559)
(-0.207202 -1.04967 0.0513899)
(-0.295757 -1.45625 0.034226)
(-0.374936 -2.12934 -0.0125036)
(-0.471628 -2.92215 -0.0554389)
(-0.514456 -3.53514 -0.0931026)
(-0.40257 -3.16188 -0.0804663)
(-0.107128 -1.01109 -0.0228775)
(0.000820153 0.59918 -0.0974899)
(0.0603491 1.42315 -0.235964)
(0.118079 1.90881 -0.315389)
(0.14866 2.10891 -0.310035)
(0.165581 2.12962 -0.237352)
(0.16525 2.05701 -0.134457)
(0.164755 1.95751 -0.0348686)
(0.155501 1.84933 0.0431157)
(0.152012 1.74137 0.0974052)
(0.148039 1.6241 0.132977)
(0.146729 1.49446 0.157241)
(0.146008 1.35182 0.18014)
(0.159069 1.20812 0.20594)
(0.186151 1.06752 0.244973)
(0.217075 0.945435 0.313414)
(0.238923 0.8274 0.412593)
(0.215398 0.715758 0.521157)
(0.147579 0.602302 0.615911)
(0.0226335 0.49237 0.645764)
(-0.105022 0.395799 0.553685)
(-0.164751 0.275521 0.385248)
(-0.135418 0.165377 0.238159)
(-0.0808502 0.0691469 0.17592)
(-0.0623321 -0.0157624 0.148058)
(-0.054883 -0.0864595 0.126262)
(-0.0499363 -0.156022 0.114243)
(-0.0507439 -0.215993 0.102588)
(-0.0440964 -0.281559 0.094034)
(-0.043682 -0.340889 0.0858836)
(-0.0356327 -0.414553 0.0781237)
(-0.0388411 -0.48625 0.070326)
(-0.0406795 -0.590124 0.0607051)
(-0.0651975 -0.723083 0.0511794)
(-0.107329 -0.960451 0.040175)
(-0.192286 -1.31949 0.0208784)
(-0.290459 -1.94083 -0.0124891)
(-0.416788 -2.70767 -0.0521834)
(-0.48094 -3.40092 -0.0872017)
(-0.404324 -3.20953 -0.080588)
(-0.141219 -1.22361 -0.0195292)
(0.00540006 0.544908 -0.0750511)
(0.0778024 1.33191 -0.19987)
(0.148842 1.83562 -0.284131)
(0.187674 2.06367 -0.290622)
(0.212229 2.10486 -0.230724)
(0.215989 2.04542 -0.136269)
(0.218495 1.94916 -0.040966)
(0.212484 1.84473 0.0368246)
(0.210644 1.73663 0.0909588)
(0.209835 1.6209 0.129734)
(0.211254 1.49391 0.156296)
(0.215508 1.35283 0.17824)
(0.235079 1.20521 0.198469)
(0.272601 1.05252 0.236908)
(0.307674 0.910981 0.311981)
(0.321138 0.769279 0.428384)
(0.284929 0.625916 0.553264)
(0.208132 0.484666 0.649745)
(0.0911211 0.360044 0.665354)
(-0.0302667 0.265337 0.596769)
(-0.095626 0.187473 0.422568)
(-0.0726397 0.12857 0.271655)
(-0.0188972 0.0528297 0.217532)
(0.00558962 -0.0128084 0.180837)
(0.015275 -0.0732382 0.15584)
(0.0216115 -0.138336 0.138553)
(0.0202887 -0.195944 0.124273)
(0.0267055 -0.263916 0.113416)
(0.0246969 -0.322983 0.101594)
(0.0313314 -0.398668 0.0909173)
(0.0224758 -0.46661 0.0814358)
(0.0165742 -0.565376 0.0666752)
(-0.013247 -0.676596 0.0482394)
(-0.0391264 -0.887905 0.0269203)
(-0.116267 -1.23373 0.00875345)
(-0.215363 -1.83797 -0.0192397)
(-0.349473 -2.6042 -0.0525924)
(-0.426488 -3.37396 -0.0873178)
(-0.385773 -3.33717 -0.0822827)
(-0.141566 -1.46766 -0.0274325)
(0.00913031 0.492276 -0.0572653)
(0.0924891 1.23292 -0.168342)
(0.174258 1.75324 -0.256494)
(0.220229 2.01329 -0.275182)
(0.252657 2.07828 -0.227816)
(0.262639 2.03365 -0.142495)
(0.270379 1.94198 -0.0514256)
(0.26856 1.83997 0.0257262)
(0.268236 1.73267 0.0799318)
(0.26952 1.61911 0.119633)
(0.27397 1.49616 0.147389)
(0.282414 1.35879 0.169057)
(0.304223 1.21183 0.185544)
(0.343928 1.05101 0.212707)
(0.378516 0.888549 0.27614)
(0.381305 0.724201 0.388208)
(0.335084 0.555976 0.504758)
(0.263078 0.397074 0.58586)
(0.162693 0.262691 0.60354)
(0.06041 0.160331 0.541064)
(0.0207385 0.0954321 0.42295)
(0.0400918 0.0706548 0.304878)
(0.0765794 0.0304126 0.238466)
(0.102245 -0.0206742 0.208047)
(0.10334 -0.0681073 0.177082)
(0.106746 -0.127275 0.158452)
(0.100258 -0.178843 0.142774)
(0.104633 -0.243276 0.129154)
(0.099509 -0.299841 0.11662)
(0.105419 -0.3728 0.10243)
(0.0964807 -0.438284 0.0880999)
(0.0964979 -0.537341 0.0704128)
(0.0657888 -0.639911 0.0521487)
(0.0233155 -0.840576 0.038464)
(-0.0513744 -1.16846 0.00936362)
(-0.139688 -1.78757 -0.0102749)
(-0.292987 -2.59394 -0.0440278)
(-0.385541 -3.47634 -0.0774745)
(-0.385547 -3.58461 -0.0750341)
(-0.151913 -1.762 -0.0194929)
(0.0108643 0.43861 -0.0435062)
(0.107136 1.1177 -0.133565)
(0.202428 1.64422 -0.224011)
(0.249368 1.93871 -0.25589)
(0.287224 2.03208 -0.222258)
(0.30362 2.00569 -0.147103)
(0.316979 1.9195 -0.060585)
(0.320139 1.82247 0.0147655)
(0.321247 1.71633 0.0680722)
(0.325019 1.606 0.107921)
(0.33184 1.48877 0.135748)
(0.343375 1.3578 0.156274)
(0.364778 1.21577 0.16946)
(0.39961 1.05521 0.187715)
(0.42943 0.882657 0.229626)
(0.424658 0.701581 0.316368)
(0.373897 0.52182 0.40523)
(0.31019 0.355107 0.463113)
(0.230756 0.219029 0.485627)
(0.160079 0.121285 0.456679)
(0.156308 0.0653806 0.38027)
(0.191331 0.0453497 0.29988)
(0.207256 0.019127 0.256824)
(0.214289 -0.0235485 0.226735)
(0.209628 -0.0657131 0.200854)
(0.206166 -0.121078 0.181031)
(0.19505 -0.171895 0.16186)
(0.193529 -0.241729 0.145458)
(0.182549 -0.307778 0.127297)
(0.183789 -0.404189 0.110587)
(0.160088 -0.497203 0.0982501)
(0.148724 -0.621321 0.078478)
(0.119155 -0.736802 0.0547396)
(0.0758463 -0.956267 0.0340496)
(-0.0157991 -1.25639 0.0067162)
(-0.0919612 -1.8846 -0.0159114)
(-0.241212 -2.72595 -0.0495619)
(-0.332791 -3.74301 -0.0875648)
(-0.343083 -4.0381 -0.0961656)
(-0.134115 -2.32183 -0.0394052)
(0.00657473 0.391497 -0.0311681)
(0.108765 1.01407 -0.106707)
(0.228452 1.52688 -0.186743)
(0.279855 1.85879 -0.236161)
(0.314861 1.98551 -0.217212)
(0.335813 1.98385 -0.154362)
(0.359843 1.91051 -0.0741941)
(0.372661 1.81325 3.67443e-05)
(0.374634 1.70907 0.0526643)
(0.381425 1.60056 0.0926997)
(0.390678 1.48751 0.120407)
(0.404373 1.36209 0.140748)
(0.424319 1.22577 0.153191)
(0.452412 1.07012 0.167502)
(0.472938 0.898315 0.195535)
(0.464708 0.710638 0.252066)
(0.419313 0.532653 0.312558)
(0.373926 0.375433 0.356788)
(0.325778 0.248193 0.378866)
(0.285358 0.152648 0.375435)
(0.306641 0.095619 0.332268)
(0.342554 0.0660165 0.287422)
(0.345123 0.0299305 0.254212)
(0.344067 -0.0104012 0.236674)
(0.32461 -0.0506732 0.212367)
(0.312035 -0.103623 0.194881)
(0.285036 -0.151769 0.176267)
(0.270866 -0.228006 0.15884)
(0.237344 -0.31076 0.139694)
(0.216437 -0.438192 0.122352)
(0.182373 -0.555283 0.100174)
(0.174553 -0.701924 0.0747867)
(0.122481 -0.824503 0.0555888)
(0.0951509 -1.02234 0.0299194)
(0.0016268 -1.3078 0.00402825)
(-0.0709601 -1.92309 -0.01268)
(-0.221379 -2.81087 -0.0492372)
(-0.321131 -3.97888 -0.0928359)
(-0.347731 -4.49703 -0.116633)
(-0.14872 -2.96682 -0.0763824)
(0.00824277 0.335868 -0.017903)
(0.105785 0.899887 -0.0818754)
(0.24778 1.38894 -0.151218)
(0.318687 1.73429 -0.202362)
(0.34264 1.90504 -0.2068)
(0.365349 1.92832 -0.157769)
(0.391349 1.87756 -0.0912035)
(0.411938 1.78253 -0.0149892)
(0.4225 1.6825 0.0371848)
(0.431341 1.57541 0.0777416)
(0.442824 1.46712 0.106045)
(0.4583 1.34743 0.127176)
(0.4768 1.21841 0.141641)
(0.49858 1.07075 0.157789)
(0.510084 0.907508 0.180952)
(0.504604 0.729689 0.220447)
(0.480498 0.569297 0.260633)
(0.458174 0.428668 0.295027)
(0.428234 0.305168 0.314749)
(0.410614 0.200144 0.319364)
(0.455477 0.132894 0.292344)
(0.497117 0.0913236 0.269557)
(0.488468 0.0516948 0.249202)
(0.480888 0.00864435 0.234044)
(0.451105 -0.0297195 0.217969)
(0.432721 -0.0743222 0.204637)
(0.391416 -0.113454 0.188962)
(0.350841 -0.18211 0.175916)
(0.285376 -0.285777 0.155012)
(0.251396 -0.411165 0.132347)
(0.211226 -0.516036 0.107276)
(0.208978 -0.664761 0.0783771)
(0.174719 -0.776857 0.0462337)
(0.134753 -0.977185 0.0309284)
(0.0148419 -1.20018 0.00210671)
(-0.0420384 -1.79605 -0.00689629)
(-0.206412 -2.68832 -0.040454)
(-0.316815 -3.98978 -0.0932728)
(-0.373562 -4.74679 -0.125226)
(-0.177905 -3.47255 -0.0861968)
(0.00396854 0.297644 -0.0109344)
(0.0947202 0.812113 -0.0653973)
(0.242523 1.27801 -0.126741)
(0.349829 1.61923 -0.168548)
(0.382808 1.82361 -0.187299)
(0.392267 1.88126 -0.157471)
(0.421528 1.85155 -0.101379)
(0.44768 1.76783 -0.0323)
(0.469902 1.66924 0.0201842)
(0.482407 1.56252 0.0617824)
(0.497286 1.45463 0.091755)
(0.513762 1.33797 0.116234)
(0.530487 1.21372 0.135666)
(0.547221 1.0739 0.156919)
(0.55589 0.925 0.179537)
(0.563912 0.770914 0.208606)
(0.560583 0.631484 0.232201)
(0.551965 0.499107 0.257284)
(0.536041 0.37585 0.271612)
(0.53781 0.262816 0.280611)
(0.60568 0.185148 0.262292)
(0.654571 0.132916 0.25396)
(0.639689 0.0860494 0.240989)
(0.62713 0.0399379 0.234294)
(0.591119 0.00445465 0.218987)
(0.568022 -0.0394169 0.208716)
(0.511663 -0.064629 0.195287)
(0.42651 -0.131714 0.186529)
(0.335506 -0.237869 0.158289)
(0.316549 -0.352796 0.13812)
(0.258474 -0.441443 0.112173)
(0.248229 -0.583326 0.0866348)
(0.18434 -0.692626 0.0587175)
(0.185471 -0.898424 0.0282505)
(0.0519237 -1.10403 0.00919747)
(-0.0238719 -1.63454 -0.00370923)
(-0.183006 -2.50459 -0.0248269)
(-0.304261 -3.89056 -0.0861772)
(-0.386876 -4.85497 -0.128471)
(-0.202475 -3.88362 -0.0963675)
(0.00859095 0.250207 -0.00659459)
(0.087958 0.709589 -0.0529691)
(0.226048 1.15029 -0.106009)
(0.357811 1.48053 -0.145657)
(0.418381 1.6881 -0.158429)
(0.424618 1.78075 -0.146009)
(0.444737 1.77613 -0.102503)
(0.473078 1.7135 -0.0514003)
(0.501657 1.62195 0.00546672)
(0.521367 1.51847 0.0465201)
(0.539272 1.4135 0.0803099)
(0.55763 1.30208 0.107422)
(0.5741 1.18663 0.131503)
(0.592468 1.0612 0.154907)
(0.60815 0.933872 0.175013)
(0.628479 0.803872 0.196591)
(0.638374 0.677808 0.212871)
(0.639997 0.553014 0.232456)
(0.635698 0.431333 0.242227)
(0.655856 0.313761 0.253223)
(0.747957 0.226446 0.238893)
(0.807507 0.167575 0.239917)
(0.787403 0.11498 0.229926)
(0.775966 0.0669349 0.22582)
(0.733412 0.0335034 0.212616)
(0.709497 -0.0111737 0.201447)
(0.640652 -0.0292783 0.192635)
(0.511913 -0.0748288 0.187544)
(0.396077 -0.161181 0.158615)
(0.384554 -0.277737 0.139727)
(0.315984 -0.36226 0.11241)
(0.297916 -0.499029 0.0862647)
(0.219455 -0.596428 0.0597766)
(0.203569 -0.787891 0.0326791)
(0.0876148 -0.990734 0.01996)
(0.0215822 -1.47607 -0.00454791)
(-0.168553 -2.28938 -0.00796548)
(-0.275232 -3.72811 -0.0755854)
(-0.40468 -4.88002 -0.125114)
(-0.223767 -4.25717 -0.102991)
(0.00267352 0.233527 -0.00612164)
(0.0704582 0.651704 -0.0485209)
(0.1952 1.06156 -0.0949057)
(0.335057 1.39606 -0.132885)
(0.435526 1.59351 -0.144656)
(0.461244 1.70706 -0.13732)
(0.474669 1.7233 -0.104236)
(0.504804 1.67672 -0.0580698)
(0.538179 1.59484 -0.0102775)
(0.564667 1.4935 0.0315768)
(0.587723 1.38959 0.0644533)
(0.609564 1.2826 0.0925379)
(0.629784 1.17528 0.115799)
(0.653221 1.06414 0.137027)
(0.673864 0.95249 0.153884)
(0.697935 0.836668 0.172117)
(0.713645 0.719643 0.185188)
(0.723515 0.60253 0.202064)
(0.730887 0.48471 0.210366)
(0.767423 0.365763 0.22308)
(0.886073 0.269164 0.212352)
(0.961599 0.207443 0.219628)
(0.938787 0.15101 0.210501)
(0.927393 0.102373 0.208047)
(0.878281 0.0701325 0.195)
(0.854019 0.0317081 0.182644)
(0.788832 0.0135966 0.170824)
(0.63254 -0.0269247 0.180009)
(0.461909 -0.0731922 0.152164)
(0.450954 -0.192022 0.136283)
(0.371686 -0.264494 0.109113)
(0.353099 -0.40465 0.0843985)
(0.252633 -0.485678 0.0569968)
(0.234767 -0.678846 0.032653)
(0.106346 -0.844156 0.0200297)
(0.0571663 -1.32201 0.0072104)
(-0.147494 -2.06885 0.00959714)
(-0.248409 -3.54306 -0.0568531)
(-0.419315 -4.85903 -0.117229)
(-0.254878 -4.62416 -0.105337)
(0.00915918 0.197486 -0.00718073)
(0.0566688 0.568106 -0.0463385)
(0.161428 0.94908 -0.0877417)
(0.296346 1.2643 -0.123224)
(0.417522 1.46697 -0.138286)
(0.481816 1.57158 -0.131175)
(0.491554 1.62136 -0.107227)
(0.517918 1.58468 -0.0703393)
(0.555672 1.52128 -0.0272104)
(0.588298 1.42992 0.0074409)
(0.620965 1.33375 0.0441828)
(0.651286 1.23515 0.0683511)
(0.677619 1.13675 0.0905634)
(0.706609 1.03754 0.108336)
(0.731256 0.937568 0.122461)
(0.757802 0.83322 0.137741)
(0.776335 0.728569 0.148117)
(0.792217 0.622031 0.164599)
(0.810062 0.512149 0.172806)
(0.860428 0.394182 0.187265)
(1.00747 0.29178 0.178127)
(1.10664 0.230239 0.189117)
(1.08146 0.173416 0.180176)
(1.07428 0.125941 0.178913)
(1.02237 0.0991866 0.166917)
(1.00055 0.0719648 0.160326)
(0.917584 0.0588615 0.146618)
(0.754411 0.0215103 0.147899)
(0.557191 -0.0119938 0.130436)
(0.521318 -0.0955211 0.119798)
(0.433971 -0.172129 0.0972538)
(0.413921 -0.302881 0.0763313)
(0.297223 -0.375597 0.0522785)
(0.272642 -0.565619 0.030757)
(0.124481 -0.706543 0.0204279)
(0.089615 -1.1732 0.0249541)
(-0.131638 -1.85708 0.0170055)
(-0.213708 -3.34746 -0.0385907)
(-0.451077 -4.82645 -0.106031)
(-0.287915 -5.03417 -0.101963)
(-0.00207298 0.198287 -0.0124194)
(0.0313919 0.557151 -0.0529347)
(0.107675 0.903346 -0.091943)
(0.236711 1.22324 -0.125477)
(0.37569 1.41579 -0.143161)
(0.486845 1.50895 -0.139565)
(0.524298 1.56372 -0.118904)
(0.537834 1.53539 -0.0889985)
(0.585465 1.47365 -0.0523044)
(0.624516 1.39027 -0.0171116)
(0.663148 1.30039 0.0112753)
(0.699365 1.20283 0.0325176)
(0.735059 1.10946 0.0550217)
(0.771467 1.01451 0.0697279)
(0.798968 0.919152 0.0804239)
(0.827057 0.822368 0.0924047)
(0.846058 0.728643 0.0997586)
(0.861587 0.632369 0.114722)
(0.884759 0.531607 0.123202)
(0.943914 0.417031 0.137889)
(1.11994 0.316032 0.128455)
(1.24801 0.257104 0.141279)
(1.22435 0.202246 0.134233)
(1.22314 0.156488 0.134402)
(1.17301 0.135024 0.12522)
(1.15046 0.112677 0.125012)
(1.06541 0.11412 0.111698)
(0.882459 0.0859513 0.122758)
(0.659743 0.0546598 0.0998481)
(0.615855 -0.0117901 0.097748)
(0.486848 -0.0622111 0.0794946)
(0.484209 -0.187144 0.0626632)
(0.337548 -0.231734 0.0421193)
(0.324132 -0.424445 0.0265955)
(0.137268 -0.538083 0.0222151)
(0.128866 -0.985132 0.0284395)
(-0.114406 -1.62372 0.0421198)
(-0.185715 -3.1155 -0.0163564)
(-0.496775 -4.77532 -0.0946521)
(-0.32778 -5.52559 -0.0985941)
(0.0145243 0.179726 -0.0201931)
(0.0198704 0.497556 -0.06394)
(0.0616107 0.829381 -0.0982648)
(0.170177 1.09756 -0.131787)
(0.288761 1.29227 -0.151961)
(0.439835 1.36769 -0.15292)
(0.510087 1.4212 -0.132974)
(0.527547 1.40548 -0.110177)
(0.577322 1.35317 -0.0783363)
(0.632368 1.27933 -0.0489023)
(0.68475 1.20414 -0.0207906)
(0.726476 1.11847 -0.00289717)
(0.76928 1.03929 0.0154408)
(0.810696 0.953476 0.0255243)
(0.842994 0.867305 0.0348289)
(0.880659 0.7798 0.0448381)
(0.904346 0.694245 0.0479743)
(0.920236 0.603997 0.060228)
(0.946901 0.514792 0.0660862)
(1.01335 0.405787 0.07806)
(1.2182 0.316349 0.0659274)
(1.37532 0.259476 0.0812762)
(1.35323 0.208938 0.0768993)
(1.36264 0.163193 0.0805692)
(1.31358 0.152273 0.074346)
(1.30109 0.139439 0.0774972)
(1.20535 0.165532 0.070357)
(1.00865 0.133859 0.0812106)
(0.761118 0.129556 0.0611495)
(0.723969 0.0496493 0.060705)
(0.579149 0.0410335 0.0454266)
(0.578139 -0.0772834 0.0441547)
(0.414648 -0.101516 0.0387617)
(0.395067 -0.288787 0.0191909)
(0.193406 -0.379478 0.0262315)
(0.190267 -0.799514 0.0269625)
(-0.0713489 -1.41018 0.0657455)
(-0.119898 -2.85285 -0.0104512)
(-0.552532 -4.72142 -0.0864532)
(-0.334005 -6.12271 -0.0992599)
(-0.0177333 0.190267 -0.0311878)
(-0.0175435 0.555197 -0.088616)
(-0.0163566 0.841136 -0.122763)
(0.0548849 1.12936 -0.151896)
(0.195293 1.27578 -0.176394)
(0.374529 1.32461 -0.183351)
(0.497039 1.34451 -0.166328)
(0.52577 1.32149 -0.147148)
(0.581999 1.26044 -0.119954)
(0.649885 1.19218 -0.0948111)
(0.718061 1.11616 -0.0697214)
(0.776345 1.03813 -0.0492351)
(0.827537 0.965571 -0.0328428)
(0.875121 0.889118 -0.0234596)
(0.910841 0.812681 -0.0177008)
(0.946756 0.731165 -0.013522)
(0.966795 0.648069 -0.0121123)
(0.984978 0.56378 -0.00253348)
(1.02002 0.486579 -0.00155067)
(1.09847 0.385277 0.00408635)
(1.32966 0.313455 -0.00464776)
(1.50967 0.261224 0.00829085)
(1.48914 0.215737 0.00578633)
(1.51163 0.176226 0.0121039)
(1.47188 0.175247 0.0122577)
(1.47253 0.169003 0.0182498)
(1.36395 0.211205 0.0184502)
(1.15214 0.185115 0.0305688)
(0.877451 0.209408 0.0239095)
(0.849747 0.141784 0.0213738)
(0.692038 0.143033 0.0223091)
(0.699991 0.0429134 0.0130046)
(0.512947 0.0181829 0.00995796)
(0.517397 -0.125128 0.00963894)
(0.289237 -0.193132 0.0153474)
(0.293124 -0.565515 0.0347569)
(0.0360638 -1.07784 0.0417281)
(0.0324603 -2.5416 0.0388299)
(-0.568349 -4.55601 -0.0888118)
(-0.260618 -6.70423 -0.0975234)
(0.0433729 0.343233 -0.0573168)
(-0.00115814 0.505872 -0.119757)
(-0.0711224 0.749197 -0.158204)
(-0.0231971 0.920758 -0.188932)
(0.0178628 1.1189 -0.205742)
(0.221183 1.12098 -0.216129)
(0.402935 1.1501 -0.20797)
(0.466127 1.11341 -0.192716)
(0.538589 1.06656 -0.169294)
(0.630907 1.01073 -0.148632)
(0.716761 0.950933 -0.126309)
(0.792319 0.884788 -0.107929)
(0.855218 0.823433 -0.0915711)
(0.911588 0.760993 -0.0793836)
(0.955826 0.698906 -0.0717538)
(0.997681 0.630499 -0.0657633)
(1.02414 0.557603 -0.0649021)
(1.05173 0.48729 -0.0594954)
(1.09332 0.421748 -0.0655201)
(1.18698 0.320722 -0.0594259)
(1.44521 0.261659 -0.0706758)
(1.64592 0.208055 -0.0533621)
(1.63036 0.170119 -0.0569652)
(1.67274 0.138209 -0.0481101)
(1.63728 0.157461 -0.0460808)
(1.65851 0.163483 -0.03394)
(1.53817 0.227132 -0.0274007)
(1.34246 0.208493 -0.0188775)
(1.05523 0.268738 -0.0148238)
(1.04258 0.218773 -0.0132499)
(0.882091 0.23387 -0.0134194)
(0.921573 0.136018 -0.011385)
(0.730819 0.113448 -0.012246)
(0.809162 -0.0136309 -0.00863712)
(0.535742 -0.0874045 -0.00429139)
(0.644822 -0.394705 0.0136015)
(0.275932 -0.823597 0.0361452)
(0.412129 -2.12368 0.0122984)
(-0.288667 -4.38915 -0.0522787)
(-0.0243647 -7.20527 -0.105198)
(-0.206368 0.0893949 -0.0735735)
(-0.254276 0.699097 -0.163466)
(-0.224941 0.860406 -0.212178)
(-0.193208 0.990183 -0.249426)
(-0.0846483 1.02793 -0.278122)
(0.0736826 1.04701 -0.276228)
(0.295337 0.987108 -0.276798)
(0.387229 0.942205 -0.263733)
(0.493031 0.888872 -0.241353)
(0.600599 0.841826 -0.223422)
(0.707289 0.791749 -0.203019)
(0.801222 0.738867 -0.185116)
(0.881644 0.689463 -0.169162)
(0.951174 0.639182 -0.156478)
(1.00337 0.590122 -0.14826)
(1.05111 0.533494 -0.141704)
(1.08988 0.467923 -0.140073)
(1.1399 0.410854 -0.137634)
(1.19944 0.37059 -0.146642)
(1.33634 0.286615 -0.149309)
(1.64445 0.25589 -0.158164)
(1.90524 0.194622 -0.141072)
(1.92852 0.15878 -0.139118)
(2.02494 0.124699 -0.126299)
(2.01243 0.142065 -0.11647)
(2.06976 0.121686 -0.102561)
(1.93043 0.209126 -0.0910394)
(1.77458 0.184318 -0.0784821)
(1.46947 0.281888 -0.0677304)
(1.50948 0.250469 -0.0637422)
(1.34053 0.285832 -0.05524)
(1.46519 0.195218 -0.0546281)
(1.26114 0.188218 -0.0490032)
(1.42863 0.0562592 -0.0452842)
(1.10553 0.00317496 -0.043731)
(1.30045 -0.219069 -0.0223399)
(0.845697 -0.494869 -0.00642381)
(1.06682 -1.46986 0.00489607)
(0.276186 -3.87099 -0.0680121)
(0.461719 -7.13575 -0.106542)
(-0.717666 0.801529 -0.228082)
(-0.559003 0.410796 -0.322626)
(-0.68223 0.583791 -0.332771)
(-0.4171 0.609616 -0.345507)
(-0.277221 0.611222 -0.357378)
(-0.004214 0.6669 -0.355186)
(0.23646 0.634822 -0.347636)
(0.455041 0.605377 -0.335091)
(0.627682 0.575235 -0.316017)
(0.812012 0.547449 -0.299088)
(0.984481 0.515221 -0.280279)
(1.14994 0.482126 -0.263627)
(1.29167 0.453266 -0.248096)
(1.41961 0.43056 -0.235504)
(1.51822 0.412959 -0.228001)
(1.61493 0.382854 -0.222925)
(1.71256 0.333818 -0.223338)
(1.8611 0.301363 -0.225412)
(2.02906 0.26661 -0.237418)
(2.29915 0.173842 -0.237732)
(2.69679 0.147002 -0.239771)
(3.08235 0.0769089 -0.214081)
(3.15477 0.032897 -0.202172)
(3.31677 -0.00301634 -0.17942)
(3.27064 0.0153911 -0.168978)
(3.37404 0.0195735 -0.155132)
(3.20794 0.112958 -0.142537)
(3.13635 0.116648 -0.128634)
(2.77885 0.220879 -0.115646)
(2.93255 0.224008 -0.111644)
(2.73192 0.248374 -0.10147)
(3.04083 0.175105 -0.0978347)
(2.76316 0.134414 -0.0924401)
(3.11222 0.0448047 -0.0891781)
(2.64292 -0.0174153 -0.0857911)
(3.01262 -0.191115 -0.0777477)
(2.35822 -0.477531 -0.0685371)
(2.74816 -1.1167 -0.0507495)
(1.79742 -3.14806 -0.0722372)
(1.28955 -6.05291 -0.122007)
(1.16015 1.46248 -0.108913)
(1.73002 0.716459 -0.149538)
(2.48472 0.573497 -0.166676)
(2.90177 0.358325 -0.175127)
(3.18909 0.292861 -0.179296)
(3.43647 0.220313 -0.185602)
(3.68342 0.217265 -0.190859)
(3.8985 0.185732 -0.199579)
(4.08627 0.176826 -0.203404)
(4.28372 0.164738 -0.205436)
(4.47238 0.155716 -0.203885)
(4.66663 0.144972 -0.201461)
(4.82527 0.136547 -0.198795)
(4.97425 0.12939 -0.195613)
(5.07686 0.127699 -0.196036)
(5.19613 0.123766 -0.19678)
(5.33046 0.0966558 -0.202278)
(5.55812 0.0841449 -0.211985)
(5.85577 0.0991464 -0.22936)
(6.29661 0.0669321 -0.228058)
(6.69408 0.0491562 -0.224268)
(7.1501 0.0217032 -0.190399)
(7.16148 -0.00613259 -0.165825)
(7.24435 -0.0414117 -0.147657)
(7.04612 -0.0524025 -0.128457)
(7.04042 -0.0569511 -0.112262)
(6.69119 -0.0220952 -0.106578)
(6.65643 -0.00270771 -0.0961466)
(6.1943 0.0443812 -0.0930525)
(6.44937 0.0685039 -0.0908435)
(6.21465 0.0925121 -0.0866986)
(6.67892 0.0820033 -0.0822844)
(6.37329 0.0513684 -0.081142)
(6.78924 0.0154249 -0.079346)
(6.2431 -0.019589 -0.0801628)
(6.47827 -0.0991394 -0.0814831)
(5.5989 -0.257262 -0.0840817)
(5.64362 -0.579344 -0.0831458)
(4.22857 -1.12431 -0.0873172)
(2.7627 -2.51522 -0.135815)
(0.00306018 -0.000644719 -0.000368215)
(0.0202798 -0.00489353 -0.0076523)
(0.0394368 -0.00444495 -0.00946309)
(0.0483196 -0.00347524 -0.00754281)
(0.0489289 -0.00126457 -0.00458389)
(0.0404928 -0.00130761 -0.0015977)
(0.0226742 0.00546416 0.000122827)
(0.00359659 0.0132268 -0.00138227)
(-0.0240282 0.0134924 -0.00210893)
(-0.0685323 0.0105705 -0.00532385)
(-0.117188 0.0043232 -0.0100431)
(-0.182332 -0.00286538 -0.0194011)
(-0.257009 -0.00156619 -0.0299867)
(-0.347861 0.00373952 -0.0481195)
(-0.448877 0.0118376 -0.0480529)
(-0.580284 0.00826029 -0.0580945)
(-0.715267 0.0061791 -0.0705856)
(-0.878467 0.00269175 -0.0873072)
(-0.994672 -0.00100649 -0.107978)
(-1.16185 0.0078628 -0.123964)
(-1.09814 0.0292282 -0.159287)
(-0.914318 0.0281191 -0.162664)
(-0.886051 0.0150348 -0.184043)
(-0.86652 -0.0227828 -0.200492)
(-0.853645 -0.0620537 -0.223899)
(-0.798558 -0.100141 -0.241123)
(-0.727574 -0.133308 -0.260068)
(-0.608408 -0.156432 -0.275246)
(-0.46685 -0.16929 -0.288545)
(-0.272125 -0.171166 -0.293021)
(-0.0869916 -0.173732 -0.294222)
(0.137614 -0.118783 -0.287251)
(0.360196 -0.0888942 -0.245921)
(0.468947 -0.0215116 -0.206535)
(0.457133 0.0229322 -0.151165)
(0.344102 0.0452573 -0.107188)
(0.209388 0.0369777 -0.0740915)
(0.0942567 0.0225848 -0.0591667)
(0.0265158 0.00943337 -0.0444701)
(-0.00152012 -0.00296717 -0.0186366)
(0.0068771 -0.0177869 -0.00695994)
(0.0329212 -0.0328823 -0.0243288)
(0.0556067 -0.0281151 -0.0308152)
(0.0602565 -0.0126212 -0.0300689)
(0.0460253 -0.00162886 -0.0269468)
(0.0154968 0.0129125 -0.0237866)
(-0.0370956 0.029246 -0.0226429)
(-0.122153 0.0531089 -0.0243869)
(-0.240152 0.0714836 -0.0255971)
(-0.391245 0.0953748 -0.0362299)
(-0.562096 0.124 -0.0499617)
(-0.754482 0.154438 -0.0722512)
(-0.966074 0.18245 -0.101336)
(-1.20461 0.19692 -0.130509)
(-1.45645 0.180792 -0.156027)
(-1.70858 0.14508 -0.184422)
(-1.92348 0.106193 -0.214954)
(-2.13588 0.0623797 -0.247138)
(-2.27207 0.0204512 -0.285456)
(-2.3728 -0.00923361 -0.31858)
(-2.17035 -0.00711661 -0.354204)
(-1.91825 -0.10297 -0.36618)
(-1.80605 -0.196162 -0.370829)
(-1.69912 -0.304324 -0.379429)
(-1.61604 -0.415711 -0.398098)
(-1.49688 -0.522959 -0.407539)
(-1.37033 -0.618598 -0.418028)
(-1.20121 -0.68955 -0.423268)
(-1.02374 -0.72749 -0.433812)
(-0.807925 -0.717048 -0.441486)
(-0.586436 -0.679368 -0.437162)
(-0.328293 -0.569552 -0.423853)
(-0.0343436 -0.451362 -0.391961)
(0.23362 -0.264417 -0.36237)
(0.388373 -0.0549672 -0.302783)
(0.400408 0.0715002 -0.244015)
(0.309338 0.118571 -0.196599)
(0.182646 0.113737 -0.166835)
(0.0736821 0.082692 -0.128679)
(0.00942993 0.0333092 -0.0548126)
(0.00731171 -0.0435335 -0.011018)
(0.0255747 -0.0658125 -0.0358551)
(0.0329712 -0.0464889 -0.0461481)
(0.0101774 -0.00666765 -0.0453319)
(-0.0371539 0.0362131 -0.0505387)
(-0.113493 0.0849678 -0.0515593)
(-0.230754 0.136358 -0.0575857)
(-0.393298 0.201555 -0.0642217)
(-0.602836 0.274664 -0.0771673)
(-0.845271 0.343257 -0.095654)
(-1.10172 0.401561 -0.120561)
(-1.36605 0.436028 -0.152864)
(-1.62482 0.433773 -0.19056)
(-1.8853 0.379901 -0.225573)
(-2.11168 0.307157 -0.255111)
(-2.29734 0.23554 -0.280998)
(-2.43881 0.164879 -0.306634)
(-2.57173 0.0882193 -0.331552)
(-2.62721 0.0207735 -0.359765)
(-2.62821 -0.0601698 -0.379325)
(-2.40413 -0.143182 -0.41252)
(-2.12203 -0.309315 -0.381734)
(-1.97752 -0.453926 -0.378071)
(-1.85643 -0.598919 -0.370772)
(-1.78564 -0.749116 -0.37175)
(-1.69104 -0.903853 -0.364736)
(-1.59731 -1.04861 -0.357744)
(-1.46455 -1.17042 -0.345369)
(-1.32048 -1.25049 -0.335152)
(-1.15789 -1.25966 -0.331281)
(-1.01059 -1.20034 -0.337735)
(-0.843532 -1.04889 -0.341983)
(-0.598058 -0.851622 -0.33905)
(-0.26175 -0.570499 -0.346206)
(0.022268 -0.259758 -0.320503)
(0.159141 0.0062557 -0.297123)
(0.191514 0.153168 -0.256458)
(0.134959 0.190336 -0.227658)
(0.0581972 0.16325 -0.17526)
(0.00607197 0.0815941 -0.0730036)
(0.00450205 -0.0679037 -0.0127802)
(0.000219483 -0.0870999 -0.0456487)
(-0.0332454 -0.0375644 -0.061591)
(-0.0934006 0.0432904 -0.0661259)
(-0.185394 0.136893 -0.0691224)
(-0.31999 0.236837 -0.0763477)
(-0.503683 0.348 -0.0869819)
(-0.735049 0.464998 -0.102444)
(-1.00541 0.563696 -0.118477)
(-1.28097 0.626436 -0.144573)
(-1.53365 0.647685 -0.174739)
(-1.77114 0.612764 -0.210859)
(-1.99188 0.526922 -0.244432)
(-2.17138 0.425761 -0.269038)
(-2.2895 0.337832 -0.283875)
(-2.377 0.249912 -0.29282)
(-2.43274 0.164304 -0.300271)
(-2.48328 0.0694997 -0.304606)
(-2.4814 -0.0169255 -0.319096)
(-2.4685 -0.143849 -0.323577)
(-2.24596 -0.270224 -0.303575)
(-1.97654 -0.435506 -0.273451)
(-1.85262 -0.588062 -0.257667)
(-1.76953 -0.750338 -0.241063)
(-1.73261 -0.916336 -0.235257)
(-1.68323 -1.09552 -0.224637)
(-1.63589 -1.27287 -0.218364)
(-1.55445 -1.43945 -0.208088)
(-1.4524 -1.57157 -0.200485)
(-1.32069 -1.63715 -0.192888)
(-1.19278 -1.61441 -0.189857)
(-1.11141 -1.47548 -0.203845)
(-0.982284 -1.20781 -0.234279)
(-0.702495 -0.887053 -0.264628)
(-0.363204 -0.514176 -0.290453)
(-0.095654 -0.135503 -0.290183)
(0.0225035 0.0978082 -0.282525)
(0.0353147 0.203279 -0.257192)
(0.0184929 0.199356 -0.196362)
(-0.00155259 0.103624 -0.0798243)
(-0.00446387 -0.0840253 -0.0169954)
(-0.0443984 -0.0739833 -0.058369)
(-0.125385 0.0184174 -0.073645)
(-0.234121 0.164961 -0.0874606)
(-0.376216 0.311398 -0.0961158)
(-0.556611 0.465082 -0.109753)
(-0.770362 0.608668 -0.127704)
(-1.01299 0.730472 -0.14248)
(-1.27507 0.808065 -0.159918)
(-1.52115 0.81057 -0.181065)
(-1.74469 0.747837 -0.204101)
(-1.93662 0.643875 -0.22592)
(-2.06329 0.531023 -0.241577)
(-2.13612 0.434616 -0.246772)
(-2.17517 0.339708 -0.241892)
(-2.2014 0.241662 -0.232694)
(-2.21363 0.144465 -0.222553)
(-2.22928 0.0450689 -0.209016)
(-2.22154 -0.0543732 -0.205051)
(-2.20466 -0.199693 -0.17938)
(-2.01598 -0.316316 -0.169918)
(-1.77945 -0.486616 -0.129841)
(-1.68791 -0.654506 -0.116316)
(-1.63858 -0.825508 -0.0991105)
(-1.62858 -1.00238 -0.0924134)
(-1.61131 -1.19332 -0.0857828)
(-1.60132 -1.39283 -0.085836)
(-1.56611 -1.5952 -0.084868)
(-1.5127 -1.77747 -0.0873885)
(-1.42128 -1.91043 -0.0914295)
(-1.30798 -1.95148 -0.0975674)
(-1.19961 -1.87574 -0.109298)
(-1.16163 -1.63203 -0.139148)
(-0.999954 -1.23868 -0.19245)
(-0.65778 -0.808615 -0.234468)
(-0.322083 -0.339224 -0.278184)
(-0.110949 -0.000244658 -0.281803)
(-0.0297251 0.17537 -0.260658)
(-0.0104388 0.203477 -0.197792)
(-0.0063827 0.10618 -0.0761962)
(-0.0109148 -0.0843107 -0.022804)
(-0.0995815 -0.019616 -0.0727939)
(-0.230095 0.140262 -0.104121)
(-0.375267 0.344043 -0.114151)
(-0.551407 0.535954 -0.126793)
(-0.740722 0.712989 -0.142048)
(-0.948431 0.852536 -0.155456)
(-1.17722 0.934532 -0.167728)
(-1.43501 0.900796 -0.170829)
(-1.66602 0.818032 -0.179346)
(-1.81657 0.71052 -0.188617)
(-1.90037 0.605844 -0.194609)
(-1.93845 0.512323 -0.190141)
(-1.95516 0.412186 -0.177535)
(-1.95639 0.311272 -0.157501)
(-1.96349 0.209127 -0.13673)
(-1.95963 0.11452 -0.116945)
(-1.97187 0.0198676 -0.0977989)
(-1.97399 -0.0786664 -0.0832477)
(-1.97473 -0.210556 -0.0490963)
(-1.81511 -0.330883 -0.0334695)
(-1.60557 -0.518723 0.00816078)
(-1.52875 -0.676649 0.0179692)
(-1.49584 -0.838688 0.0327259)
(-1.49396 -1.00526 0.0394228)
(-1.49597 -1.19612 0.0422194)
(-1.50899 -1.39545 0.0287403)
(-1.50716 -1.60856 0.0237878)
(-1.49621 -1.81836 0.00973532)
(-1.45418 -2.00732 -0.00389752)
(-1.37892 -2.13274 -0.0166498)
(-1.2741 -2.13834 -0.0373521)
(-1.20639 -2.02161 -0.0620868)
(-1.16153 -1.65357 -0.119619)
(-0.905377 -1.18303 -0.179946)
(-0.509402 -0.638794 -0.241101)
(-0.216754 -0.169318 -0.284125)
(-0.0789372 0.0925804 -0.266126)
(-0.0224018 0.170858 -0.203146)
(-0.00639681 0.0895358 -0.0790427)
(-0.0169496 -0.0353542 -0.0340972)
(-0.136746 0.0897986 -0.102825)
(-0.311552 0.313377 -0.130954)
(-0.483342 0.550701 -0.144461)
(-0.664722 0.757827 -0.15735)
(-0.845674 0.918971 -0.166526)
(-1.05901 0.995483 -0.175169)
(-1.32087 0.946789 -0.160212)
(-1.53718 0.847739 -0.157799)
(-1.65128 0.764095 -0.157305)
(-1.71221 0.684555 -0.149992)
(-1.73779 0.593212 -0.135533)
(-1.7416 0.493402 -0.115278)
(-1.73926 0.390604 -0.0887809)
(-1.73984 0.287792 -0.0585314)
(-1.7478 0.188577 -0.0389952)
(-1.75097 0.10219 -0.0129401)
(-1.77225 0.0116814 0.00758783)
(-1.78225 -0.0806299 0.0329521)
(-1.7888 -0.206276 0.0664622)
(-1.6664 -0.316481 0.081308)
(-1.45891 -0.5117 0.117601)
(-1.37108 -0.662301 0.125945)
(-1.3435 -0.814085 0.134928)
(-1.34831 -0.97129 0.134708)
(-1.35944 -1.1598 0.132374)
(-1.38123 -1.36272 0.12216)
(-1.39759 -1.58553 0.110209)
(-1.42056 -1.8178 0.0926185)
(-1.42248 -2.0354 0.0653792)
(-1.39289 -2.21714 0.0460191)
(-1.33557 -2.32239 0.0176517)
(-1.23921 -2.29053 -0.0116889)
(-1.20479 -2.07597 -0.0485075)
(-1.07244 -1.59883 -0.112251)
(-0.699499 -1.01485 -0.181282)
(-0.310393 -0.421076 -0.246331)
(-0.0964433 0.00274186 -0.250045)
(-0.014954 0.12151 -0.203284)
(-0.00234915 0.0784308 -0.0803479)
(-0.0290565 0.027223 -0.0459368)
(-0.174404 0.214527 -0.119267)
(-0.368383 0.469211 -0.154867)
(-0.547186 0.715584 -0.168132)
(-0.729272 0.900247 -0.17423)
(-0.938487 1.00053 -0.170109)
(-1.19307 0.970443 -0.150352)
(-1.38113 0.888337 -0.143958)
(-1.48271 0.835615 -0.132572)
(-1.53649 0.76865 -0.113552)
(-1.55274 0.676602 -0.0879921)
(-1.55263 0.573254 -0.0618601)
(-1.54811 0.468468 -0.0273145)
(-1.55623 0.364314 0.00120772)
(-1.56824 0.267543 0.0265684)
(-1.58263 0.176324 0.0507964)
(-1.58945 0.0967559 0.0738903)
(-1.60821 0.0151267 0.0953627)
(-1.62073 -0.0609869 0.119222)
(-1.62606 -0.169296 0.152021)
(-1.53557 -0.26711 0.163445)
(-1.33656 -0.45164 0.200518)
(-1.23019 -0.600627 0.209737)
(-1.19967 -0.747242 0.209698)
(-1.2031 -0.897614 0.202167)
(-1.21837 -1.07538 0.193715)
(-1.2435 -1.27501 0.178319)
(-1.27033 -1.50305 0.162475)
(-1.30111 -1.75301 0.142646)
(-1.32599 -2.005 0.120089)
(-1.35221 -2.24273 0.0920743)
(-1.33689 -2.41418 0.0614543)
(-1.27667 -2.48085 0.0312371)
(-1.2123 -2.38785 -0.00689906)
(-1.1386 -2.02226 -0.0527903)
(-0.863624 -1.43056 -0.114298)
(-0.407394 -0.73749 -0.194977)
(-0.128654 -0.170246 -0.233999)
(-0.0361366 0.0615531 -0.202462)
(0.00627019 0.064473 -0.0868858)
(-0.0329257 0.0849055 -0.0542332)
(-0.191363 0.32518 -0.137108)
(-0.391879 0.582766 -0.168531)
(-0.574065 0.802817 -0.174481)
(-0.779891 0.948137 -0.170005)
(-1.01492 0.981824 -0.153213)
(-1.20757 0.945102 -0.142328)
(-1.31636 0.919835 -0.120358)
(-1.36992 0.857501 -0.0912649)
(-1.37714 0.768878 -0.0554509)
(-1.37597 0.66439 -0.0201844)
(-1.37872 0.558423 0.0125577)
(-1.39122 0.454914 0.0444286)
(-1.41059 0.35516 0.0749448)
(-1.43117 0.267296 0.10317)
(-1.44978 0.183876 0.126231)
(-1.45764 0.110864 0.146989)
(-1.47126 0.036461 0.164656)
(-1.47713 -0.0262695 0.180761)
(-1.47392 -0.114101 0.19998)
(-1.41581 -0.196514 0.206038)
(-1.22883 -0.364139 0.241805)
(-1.09687 -0.52394 0.256079)
(-1.06195 -0.668622 0.25065)
(-1.06116 -0.814296 0.237144)
(-1.07803 -0.982462 0.223619)
(-1.10548 -1.17402 0.206454)
(-1.1405 -1.39707 0.189297)
(-1.18207 -1.651 0.169268)
(-1.22278 -1.92545 0.147319)
(-1.25804 -2.20729 0.121161)
(-1.28605 -2.44585 0.0970596)
(-1.26693 -2.5959 0.0579961)
(-1.20894 -2.60855 0.0277879)
(-1.1486 -2.3822 -0.00946908)
(-0.964513 -1.84842 -0.0512316)
(-0.560386 -1.11147 -0.119703)
(-0.176043 -0.421652 -0.178448)
(-0.0336897 -0.0101561 -0.179245)
(0.00242844 0.0466049 -0.0819798)
(-0.0370096 0.161943 -0.0690415)
(-0.205391 0.45044 -0.160729)
(-0.408479 0.699558 -0.194104)
(-0.584984 0.888546 -0.195269)
(-0.803565 0.99773 -0.178808)
(-1.01164 1.01021 -0.152556)
(-1.15067 1.00198 -0.123777)
(-1.208 0.953348 -0.0850422)
(-1.2164 0.871913 -0.0397295)
(-1.21247 0.767505 0.00421628)
(-1.21875 0.657465 0.0416557)
(-1.23839 0.551514 0.0776075)
(-1.26673 0.454859 0.11216)
(-1.29767 0.363404 0.142792)
(-1.32205 0.279527 0.168891)
(-1.33656 0.19885 0.187558)
(-1.33776 0.127908 0.200954)
(-1.33471 0.0570188 0.209516)
(-1.32906 0.00108417 0.217335)
(-1.31477 -0.0664347 0.224606)
(-1.27865 -0.136637 0.232064)
(-1.12817 -0.260468 0.249845)
(-0.978187 -0.433608 0.274943)
(-0.929824 -0.576228 0.265935)
(-0.923657 -0.72009 0.250043)
(-0.938307 -0.876091 0.232267)
(-0.964715 -1.05685 0.213121)
(-1.00306 -1.26796 0.194832)
(-1.05179 -1.51772 0.175122)
(-1.10561 -1.80067 0.154481)
(-1.16003 -2.10774 0.130941)
(-1.20043 -2.40654 0.102871)
(-1.22022 -2.6454 0.075869)
(-1.18957 -2.75642 0.0399042)
(-1.12587 -2.66404 0.00841784)
(-1.00084 -2.24099 -0.0146794)
(-0.686961 -1.50879 -0.0598713)
(-0.245478 -0.675013 -0.130012)
(-0.0409943 -0.106526 -0.148196)
(-0.00811574 0.0286491 -0.0791655)
(-0.0348586 0.236671 -0.0804448)
(-0.202392 0.575563 -0.181211)
(-0.401143 0.823571 -0.21594)
(-0.581227 0.995816 -0.210784)
(-0.796639 1.06858 -0.181232)
(-0.96299 1.07692 -0.142647)
(-1.04616 1.05085 -0.0971335)
(-1.06194 0.981999 -0.0413441)
(-1.0595 0.881527 0.012384)
(-1.06441 0.769445 0.0596687)
(-1.08903 0.659543 0.0976752)
(-1.12528 0.559796 0.13462)
(-1.1657 0.467459 0.168874)
(-1.19982 0.379746 0.198545)
(-1.22146 0.297654 0.22054)
(-1.2283 0.218596 0.232436)
(-1.21941 0.147018 0.236668)
(-1.20224 0.0785697 0.236239)
(-1.18235 0.0205502 0.234163)
(-1.15724 -0.0333373 0.239799)
(-1.12509 -0.0945161 0.237011)
(-1.0228 -0.181558 0.244722)
(-0.883197 -0.336977 0.267959)
(-0.812246 -0.487674 0.260246)
(-0.799972 -0.628424 0.244527)
(-0.808863 -0.777358 0.224754)
(-0.832252 -0.945682 0.205905)
(-0.867359 -1.14352 0.188462)
(-0.915518 -1.37941 0.17161)
(-0.973753 -1.65704 0.153841)
(-1.03926 -1.97612 0.132148)
(-1.10136 -2.3134 0.107746)
(-1.14158 -2.62838 0.0771225)
(-1.14266 -2.84163 0.049932)
(-1.09193 -2.87221 0.0177709)
(-0.986402 -2.59428 -5.02051e-05)
(-0.754159 -1.91968 -0.0144397)
(-0.327059 -0.989629 -0.0663535)
(-0.0599426 -0.257009 -0.106286)
(-0.0237178 0.00589851 -0.0630027)
(-0.0291122 0.309159 -0.094799)
(-0.186968 0.695964 -0.203887)
(-0.377673 0.943766 -0.240056)
(-0.562787 1.09402 -0.226803)
(-0.754282 1.14112 -0.185038)
(-0.870975 1.14231 -0.131638)
(-0.916114 1.09357 -0.0660181)
(-0.916185 1.00199 -0.00270832)
(-0.917365 0.889387 0.0610927)
(-0.93986 0.77405 0.104749)
(-0.983318 0.668987 0.144836)
(-1.03114 0.573219 0.182076)
(-1.07609 0.48396 0.216735)
(-1.10793 0.397382 0.242352)
(-1.12306 0.315274 0.257937)
(-1.11998 0.235228 0.259922)
(-1.09913 0.162345 0.254504)
(-1.06778 0.0940115 0.24495)
(-1.03243 0.0364651 0.235254)
(-0.998597 -0.0119268 0.23367)
(-0.971307 -0.0605874 0.229013)
(-0.901221 -0.130928 0.22785)
(-0.79617 -0.248545 0.241855)
(-0.71978 -0.39811 0.239529)
(-0.691608 -0.53913 0.224388)
(-0.695137 -0.682502 0.206284)
(-0.712779 -0.840539 0.187948)
(-0.743561 -1.02344 0.173274)
(-0.785955 -1.24273 0.158996)
(-0.841064 -1.50603 0.145181)
(-0.908617 -1.82073 0.127328)
(-0.982047 -2.17841 0.103956)
(-1.04687 -2.54869 0.0761585)
(-1.07707 -2.86106 0.0452401)
(-1.05075 -3.01228 0.0172501)
(-0.953072 -2.87553 -0.000920755)
(-0.768367 -2.32885 -0.00327719)
(-0.416359 -1.35683 -0.0249988)
(-0.0783698 -0.454972 -0.066457)
(-0.0153453 -0.0353275 -0.0519026)
(-0.0204366 0.36988 -0.102589)
(-0.160083 0.804513 -0.219236)
(-0.342827 1.05438 -0.256163)
(-0.523096 1.17842 -0.233833)
(-0.681616 1.21712 -0.184023)
(-0.758657 1.20136 -0.1132)
(-0.782255 1.12741 -0.0345841)
(-0.778506 1.02148 0.0392513)
(-0.796025 0.901953 0.098938)
(-0.837827 0.786593 0.14345)
(-0.891942 0.685614 0.183417)
(-0.945436 0.592002 0.221429)
(-0.989242 0.502776 0.253067)
(-1.01511 0.415368 0.273343)
(-1.02224 0.331301 0.279119)
(-1.009 0.24997 0.271006)
(-0.976337 0.174166 0.255312)
(-0.933006 0.105241 0.238623)
(-0.885279 0.0488243 0.224993)
(-0.845225 0.00377724 0.222633)
(-0.824675 -0.035939 0.215205)
(-0.780577 -0.0966653 0.205083)
(-0.708076 -0.187636 0.209814)
(-0.646889 -0.31696 0.20237)
(-0.608217 -0.461084 0.194119)
(-0.60131 -0.599732 0.178814)
(-0.612506 -0.750243 0.164495)
(-0.635308 -0.918056 0.152984)
(-0.670084 -1.11974 0.142702)
(-0.717449 -1.36401 0.133116)
(-0.780132 -1.66557 0.118882)
(-0.85564 -2.0255 0.100339)
(-0.933054 -2.42902 0.0746221)
(-0.990943 -2.81663 0.046055)
(-0.993449 -3.08932 0.0173912)
(-0.92195 -3.09312 -0.00279159)
(-0.759084 -2.69036 -0.00683002)
(-0.474885 -1.75417 -0.00115733)
(-0.10945 -0.667466 -0.0334616)
(-0.00215712 -0.0902157 -0.0343798)
(-0.0104345 0.417673 -0.112963)
(-0.127973 0.900042 -0.236878)
(-0.302392 1.1507 -0.273719)
(-0.466164 1.25437 -0.24499)
(-0.588715 1.28669 -0.184742)
(-0.641389 1.2493 -0.0985285)
(-0.653785 1.15603 -0.0115593)
(-0.659775 1.0381 0.0698889)
(-0.695993 0.913043 0.126938)
(-0.749382 0.802162 0.172777)
(-0.810181 0.70283 0.214305)
(-0.863705 0.609336 0.251744)
(-0.902396 0.518143 0.280218)
(-0.920914 0.428507 0.291745)
(-0.919143 0.342435 0.287473)
(-0.896599 0.258472 0.267074)
(-0.853772 0.180435 0.242423)
(-0.798935 0.11134 0.221354)
(-0.741338 0.05705 0.206272)
(-0.695407 0.0175225 0.208915)
(-0.687744 -0.0170124 0.201945)
(-0.665827 -0.0737255 0.18129)
(-0.619629 -0.146278 0.178278)
(-0.58481 -0.25473 0.166241)
(-0.547025 -0.389416 0.157396)
(-0.52789 -0.530179 0.147859)
(-0.530435 -0.672276 0.137332)
(-0.545252 -0.827589 0.129859)
(-0.571288 -1.01022 0.122732)
(-0.609249 -1.23461 0.116209)
(-0.66401 -1.51736 0.10619)
(-0.735546 -1.86988 0.0907838)
(-0.81759 -2.28819 0.0687979)
(-0.89238 -2.73075 0.0413951)
(-0.922143 -3.10249 0.0138124)
(-0.881553 -3.2502 -0.0050315)
(-0.739198 -2.99327 -0.0168182)
(-0.499762 -2.154 -0.00368623)
(-0.135018 -0.916085 -0.00687135)
(0.0105388 -0.149331 -0.0252501)
(0.000192752 0.446811 -0.112578)
(-0.0954894 0.979312 -0.243035)
(-0.255995 1.23151 -0.280204)
(-0.396233 1.32753 -0.24927)
(-0.48837 1.34771 -0.178693)
(-0.526648 1.28813 -0.0809828)
(-0.540727 1.18171 0.0111226)
(-0.560456 1.05297 0.0932166)
(-0.60926 0.930794 0.150064)
(-0.669496 0.822553 0.197812)
(-0.731654 0.724406 0.24018)
(-0.781226 0.628588 0.276538)
(-0.813467 0.534254 0.298371)
(-0.823116 0.441579 0.300247)
(-0.81331 0.352862 0.282542)
(-0.782823 0.266884 0.250504)
(-0.731447 0.187373 0.21747)
(-0.667783 0.117354 0.191858)
(-0.600329 0.0657423 0.179328)
(-0.553868 0.0323033 0.189684)
(-0.563319 -0.00319237 0.184221)
(-0.562476 -0.0569118 0.155825)
(-0.536056 -0.120728 0.148815)
(-0.526156 -0.210638 0.13584)
(-0.502879 -0.325808 0.124749)
(-0.477061 -0.469315 0.118383)
(-0.465653 -0.607978 0.11049)
(-0.470712 -0.751962 0.10683)
(-0.488251 -0.918455 0.102011)
(-0.517938 -1.12151 0.0992418)
(-0.563478 -1.38292 0.0924268)
(-0.627697 -1.7201 0.0816822)
(-0.707449 -2.14034 0.0631733)
(-0.791934 -2.61823 0.0382071)
(-0.840427 -3.07185 0.0111026)
(-0.830596 -3.3509 -0.00977484)
(-0.718887 -3.24349 -0.0247126)
(-0.504437 -2.52256 -0.0124774)
(-0.154918 -1.2103 0.00620887)
(0.0172281 -0.193132 -0.00906964)
(0.00994069 0.46611 -0.120475)
(-0.0657219 1.04602 -0.256628)
(-0.205278 1.30894 -0.296579)
(-0.3186 1.40397 -0.261694)
(-0.388715 1.40536 -0.180905)
(-0.420829 1.3267 -0.0741437)
(-0.441346 1.20668 0.0235831)
(-0.473571 1.07308 0.104319)
(-0.530262 0.952061 0.162572)
(-0.593835 0.84471 0.213562)
(-0.654887 0.744245 0.258583)
(-0.699759 0.645761 0.294638)
(-0.722972 0.547905 0.310141)
(-0.722913 0.452688 0.300107)
(-0.704624 0.362285 0.268567)
(-0.669262 0.276967 0.225669)
(-0.614217 0.19565 0.184239)
(-0.542643 0.132694 0.159474)
(-0.466817 0.0894918 0.158454)
(-0.42185 0.0485717 0.169416)
(-0.450655 0.0113082 0.170835)
(-0.467939 -0.0441569 0.134437)
(-0.457485 -0.104736 0.122764)
(-0.466425 -0.179839 0.110093)
(-0.467364 -0.273763 0.0984589)
(-0.447846 -0.399862 0.092291)
(-0.417868 -0.548085 0.0856274)
(-0.411679 -0.68553 0.0841504)
(-0.42007 -0.837476 0.0810599)
(-0.440005 -1.02247 0.0808846)
(-0.477644 -1.26248 0.0776784)
(-0.534111 -1.58193 0.0708129)
(-0.609811 -1.99489 0.0561342)
(-0.69685 -2.49608 0.0325912)
(-0.758214 -3.01352 0.00623979)
(-0.773614 -3.41617 -0.0214329)
(-0.684962 -3.45471 -0.0389005)
(-0.496911 -2.87523 -0.0287078)
(-0.164627 -1.54351 0.00412549)
(0.0382057 -0.252767 0.0024809)
(0.0169359 0.464871 -0.111052)
(-0.0338891 1.0904 -0.25475)
(-0.150441 1.38345 -0.299217)
(-0.242857 1.4736 -0.26129)
(-0.297452 1.4592 -0.174258)
(-0.32749 1.36199 -0.0605633)
(-0.357272 1.23321 0.0379226)
(-0.399963 1.0987 0.11998)
(-0.461104 0.981514 0.179402)
(-0.524611 0.875363 0.2324)
(-0.579597 0.775362 0.278007)
(-0.613001 0.675174 0.309999)
(-0.624817 0.574704 0.315715)
(-0.614814 0.476729 0.292505)
(-0.59124 0.387575 0.247835)
(-0.555825 0.308363 0.192155)
(-0.494206 0.246266 0.147094)
(-0.412622 0.19543 0.124181)
(-0.345428 0.138044 0.114302)
(-0.310083 0.0797968 0.132876)
(-0.350162 0.0346114 0.154609)
(-0.386209 -0.0289795 0.114341)
(-0.383522 -0.0922958 0.0993678)
(-0.404548 -0.159949 0.0875655)
(-0.420951 -0.238674 0.0755077)
(-0.430058 -0.334412 0.0711516)
(-0.400081 -0.465349 0.0614928)
(-0.365402 -0.612847 0.0618156)
(-0.364121 -0.763592 0.0610077)
(-0.377716 -0.931204 0.0632982)
(-0.40582 -1.14713 0.0627875)
(-0.45099 -1.4441 0.0597485)
(-0.5208 -1.84604 0.0500518)
(-0.60982 -2.36208 0.0291839)
(-0.684923 -2.93204 0.00316767)
(-0.721971 -3.44523 -0.0324705)
(-0.658616 -3.62902 -0.0531266)
(-0.490743 -3.19177 -0.0484441)
(-0.178802 -1.86318 -0.00376691)
(0.052249 -0.300154 0.00793468)
(0.0103717 0.478508 -0.12874)
(-0.00789873 1.15679 -0.277227)
(-0.0917369 1.4835 -0.323636)
(-0.173977 1.57395 -0.282848)
(-0.212343 1.54073 -0.186909)
(-0.242048 1.43247 -0.0655904)
(-0.275623 1.2932 0.0373741)
(-0.322997 1.15743 0.121211)
(-0.383601 1.03687 0.17988)
(-0.441759 0.927557 0.233339)
(-0.486798 0.823264 0.276441)
(-0.511636 0.720277 0.304711)
(-0.516038 0.622695 0.301827)
(-0.499508 0.53575 0.270556)
(-0.46734 0.465404 0.214844)
(-0.418788 0.406989 0.164394)
(-0.358115 0.352955 0.118325)
(-0.308121 0.286644 0.0781966)
(-0.260854 0.205528 0.050789)
(-0.220175 0.128487 0.0815788)
(-0.267619 0.0655898 0.131325)
(-0.317426 -0.0103871 0.0980156)
(-0.31883 -0.0772776 0.0768929)
(-0.345161 -0.145232 0.0681385)
(-0.368076 -0.216621 0.055275)
(-0.386152 -0.292424 0.0534543)
(-0.385444 -0.384884 0.0460224)
(-0.360768 -0.511796 0.0445654)
(-0.328609 -0.661616 0.0403565)
(-0.319095 -0.83517 0.0451199)
(-0.339236 -1.04198 0.0481256)
(-0.375067 -1.31464 0.0493884)
(-0.435949 -1.69232 0.0431307)
(-0.518001 -2.21312 0.0244601)
(-0.603887 -2.83411 -0.00019166)
(-0.663142 -3.45303 -0.0421891)
(-0.624074 -3.78639 -0.0656584)
(-0.476847 -3.50527 -0.0672181)
(-0.184248 -2.21389 -0.01943)
(0.0632369 -0.394458 0.0104228)
(0.00838512 0.517428 -0.12709)
(-0.00212158 1.26053 -0.279124)
(-0.0403945 1.6006 -0.335504)
(-0.0903977 1.69512 -0.28451)
(-0.128385 1.6526 -0.19792)
(-0.158231 1.53343 -0.0647375)
(-0.19769 1.39319 0.0361772)
(-0.249025 1.25669 0.12119)
(-0.306329 1.13699 0.177449)
(-0.355629 1.03042 0.226015)
(-0.387839 0.941034 0.263427)
(-0.394103 0.856416 0.280737)
(-0.380274 0.771151 0.264261)
(-0.347447 0.689265 0.231253)
(-0.311234 0.615056 0.185157)
(-0.284685 0.545573 0.143126)
(-0.260154 0.468861 0.0802528)
(-0.232127 0.386253 0.0186277)
(-0.196618 0.301101 -0.0250432)
(-0.156041 0.195157 0.0221855)
(-0.205867 0.112912 0.109806)
(-0.25995 0.0191176 0.0824563)
(-0.259896 -0.0539886 0.0585224)
(-0.290472 -0.127235 0.0519884)
(-0.314298 -0.196293 0.0394704)
(-0.334009 -0.262546 0.0399832)
(-0.338532 -0.335826 0.0337288)
(-0.334325 -0.421211 0.0359523)
(-0.329793 -0.536189 0.0335505)
(-0.313704 -0.689461 0.0327673)
(-0.302268 -0.879411 0.0318343)
(-0.307888 -1.14507 0.0350508)
(-0.34973 -1.51713 0.0353727)
(-0.426517 -2.03235 0.0221202)
(-0.521843 -2.68081 -0.00101857)
(-0.601487 -3.39932 -0.0470897)
(-0.598899 -3.88517 -0.0775991)
(-0.48247 -3.77637 -0.0877094)
(-0.216924 -2.54521 -0.0453085)
(0.0523452 -0.442404 0.00199081)
(-0.0016593 0.674584 -0.164796)
(0.0082162 1.48596 -0.330751)
(-0.0120354 1.86529 -0.383368)
(-0.0386876 1.94186 -0.34038)
(-0.0527074 1.88654 -0.231227)
(-0.0796625 1.75466 -0.09363)
(-0.121727 1.61517 0.00351336)
(-0.173992 1.49059 0.0844411)
(-0.220207 1.37459 0.13061)
(-0.241129 1.27078 0.16292)
(-0.24384 1.17645 0.183725)
(-0.248056 1.07737 0.198671)
(-0.246258 0.966784 0.194875)
(-0.229605 0.85765 0.185119)
(-0.208283 0.752751 0.152521)
(-0.191321 0.664347 0.120086)
(-0.173905 0.594056 0.0728376)
(-0.159332 0.527856 0.0132051)
(-0.155186 0.441273 -0.0429753)
(-0.120799 0.304423 0.00503766)
(-0.164821 0.185273 0.0902971)
(-0.218408 0.0673884 0.0699436)
(-0.212057 -0.0231832 0.0441028)
(-0.241138 -0.10403 0.0417229)
(-0.261124 -0.173959 0.0296852)
(-0.27901 -0.237634 0.0313766)
(-0.284787 -0.302648 0.0265648)
(-0.280988 -0.375255 0.0294744)
(-0.28088 -0.45494 0.0289986)
(-0.279795 -0.559947 0.0324436)
(-0.29027 -0.699617 0.0352805)
(-0.306301 -0.918035 0.0358999)
(-0.322819 -1.24664 0.0315686)
(-0.341544 -1.76093 0.0141832)
(-0.417838 -2.45993 -0.00425139)
(-0.513973 -3.25809 -0.0505645)
(-0.541845 -3.8954 -0.0843348)
(-0.467327 -3.99489 -0.100811)
(-0.222164 -2.91284 -0.0630554)
(0.0617213 -0.60252 0.00278866)
(-0.0217063 0.747289 -0.142491)
(-0.00736463 1.62369 -0.310702)
(0.00708392 2.04136 -0.376264)
(0.00149003 2.14663 -0.338234)
(0.00120427 2.09107 -0.23403)
(-0.0168104 1.94902 -0.102573)
(-0.0374763 1.80283 0.00436587)
(-0.0890954 1.67777 0.085091)
(-0.138354 1.57064 0.126881)
(-0.151204 1.45562 0.151774)
(-0.156134 1.33419 0.171284)
(-0.161027 1.20091 0.18515)
(-0.155413 1.06559 0.181035)
(-0.13353 0.946926 0.175424)
(-0.10437 0.846295 0.152458)
(-0.0754902 0.773328 0.146938)
(-0.0609235 0.729377 0.133681)
(-0.0757952 0.688487 0.115905)
(-0.129375 0.615915 0.0575466)
(-0.127876 0.451383 0.0383979)
(-0.165235 0.271633 0.106577)
(-0.201998 0.122545 0.0731748)
(-0.179056 0.00907894 0.0481032)
(-0.197196 -0.075538 0.0395346)
(-0.210143 -0.149371 0.0277102)
(-0.225899 -0.212286 0.0299458)
(-0.232546 -0.273155 0.0257613)
(-0.228168 -0.340578 0.0279345)
(-0.228332 -0.408646 0.0273951)
(-0.221149 -0.492579 0.0298986)
(-0.225154 -0.588057 0.0336819)
(-0.24211 -0.735382 0.0399598)
(-0.300697 -0.968823 0.0457721)
(-0.381973 -1.40339 0.0434116)
(-0.420276 -2.06288 0.00640202)
(-0.457785 -2.93157 -0.0459499)
(-0.506283 -3.70835 -0.0892156)
(-0.473332 -4.05267 -0.120847)
(-0.275181 -3.21182 -0.0894769)
(0.0249687 -0.899983 -0.0223926)
(-0.0118037 0.701313 -0.137771)
(0.0107014 1.59607 -0.298926)
(0.0368156 2.04267 -0.36572)
(0.0472214 2.1841 -0.340031)
(0.0523814 2.14739 -0.243054)
(0.0415936 2.01801 -0.116498)
(0.0227254 1.87161 -0.00950639)
(-0.00368292 1.73016 0.0689811)
(-0.0436309 1.62296 0.119463)
(-0.0709454 1.5075 0.135364)
(-0.0680676 1.37976 0.154296)
(-0.0691509 1.24696 0.171689)
(-0.0554007 1.11668 0.174435)
(-0.0239897 0.999757 0.18677)
(0.0138832 0.912343 0.180148)
(0.0547148 0.862378 0.224097)
(0.0739778 0.838747 0.285375)
(0.0352123 0.820221 0.34717)
(-0.102318 0.762933 0.313934)
(-0.181715 0.597275 0.194203)
(-0.214858 0.357681 0.175323)
(-0.211776 0.17763 0.103943)
(-0.155431 0.0465629 0.060741)
(-0.15433 -0.0451321 0.0474249)
(-0.159851 -0.124822 0.0342054)
(-0.168702 -0.191586 0.034725)
(-0.177134 -0.249692 0.0308344)
(-0.171522 -0.31386 0.0318639)
(-0.168765 -0.375455 0.0302657)
(-0.158275 -0.450499 0.0309243)
(-0.157702 -0.532647 0.0322697)
(-0.160005 -0.65552 0.0348575)
(-0.190433 -0.832891 0.0398687)
(-0.273991 -1.15585 0.0378816)
(-0.39749 -1.67634 0.0346255)
(-0.462632 -2.48888 -0.0270264)
(-0.512341 -3.32181 -0.0787993)
(-0.52239 -3.84338 -0.121038)
(-0.375428 -3.25407 -0.0984833)
(-0.0600428 -0.981977 -0.0314475)
(-0.00479698 0.675067 -0.116537)
(0.0338388 1.54134 -0.264091)
(0.0722697 2.00854 -0.337276)
(0.0909168 2.1757 -0.321267)
(0.101623 2.1603 -0.236047)
(0.0942321 2.04753 -0.116826)
(0.0800883 1.91109 -0.0127773)
(0.0507302 1.77207 0.0630632)
(0.026958 1.64139 0.109282)
(0.0105197 1.52949 0.145049)
(0.00178957 1.40066 0.157735)
(0.00612145 1.25881 0.175777)
(0.0287417 1.12453 0.18069)
(0.0801058 1.00624 0.20148)
(0.151601 0.926375 0.232013)
(0.214839 0.882844 0.343054)
(0.233598 0.85351 0.484918)
(0.160614 0.812614 0.646437)
(-0.0594359 0.739576 0.701395)
(-0.249417 0.616085 0.530126)
(-0.302675 0.379612 0.322422)
(-0.24059 0.198322 0.156715)
(-0.142412 0.0723354 0.0895172)
(-0.11947 -0.0229857 0.0666618)
(-0.115842 -0.101648 0.0534166)
(-0.11523 -0.173448 0.0499774)
(-0.120151 -0.230885 0.0425279)
(-0.114603 -0.293603 0.0398834)
(-0.112729 -0.350667 0.0361814)
(-0.10019 -0.421655 0.0338699)
(-0.0986022 -0.494311 0.0327462)
(-0.097829 -0.604212 0.0330145)
(-0.126459 -0.757298 0.034408)
(-0.186501 -1.03963 0.0302951)
(-0.290487 -1.47112 0.0189654)
(-0.379605 -2.1533 -0.0284404)
(-0.471058 -2.95184 -0.0834849)
(-0.507297 -3.56752 -0.127935)
(-0.397733 -3.20443 -0.113441)
(-0.110443 -1.0434 -0.0370444)
(-0.000456897 0.621919 -0.101439)
(0.0534952 1.46234 -0.238017)
(0.105849 1.94852 -0.314187)
(0.132679 2.1424 -0.308453)
(0.147589 2.14747 -0.234004)
(0.144448 2.04841 -0.123136)
(0.134943 1.92055 -0.0210673)
(0.110912 1.78497 0.0554211)
(0.0889018 1.65986 0.105093)
(0.0706991 1.53139 0.136957)
(0.0662395 1.3991 0.154259)
(0.0787134 1.25765 0.170586)
(0.116344 1.11603 0.179315)
(0.192802 0.987058 0.212537)
(0.286875 0.888018 0.281095)
(0.352296 0.812574 0.438201)
(0.34823 0.741671 0.636034)
(0.242613 0.646545 0.846857)
(0.00104968 0.529612 0.949548)
(-0.256043 0.455519 0.808652)
(-0.348894 0.304321 0.472617)
(-0.243001 0.175666 0.21364)
(-0.111925 0.0762458 0.119678)
(-0.073639 -0.0106925 0.0962032)
(-0.0641775 -0.0842073 0.0818983)
(-0.0583303 -0.155431 0.0740272)
(-0.0601989 -0.214243 0.0625852)
(-0.0520665 -0.27703 0.0549273)
(-0.0488762 -0.332093 0.0463057)
(-0.0354525 -0.400874 0.0409222)
(-0.0333757 -0.468803 0.036198)
(-0.0295818 -0.571356 0.0323583)
(-0.0520692 -0.706957 0.0317617)
(-0.0962232 -0.957729 0.0265475)
(-0.191884 -1.33898 0.0159194)
(-0.294971 -1.9743 -0.0227556)
(-0.415012 -2.73973 -0.072065)
(-0.473939 -3.428 -0.118061)
(-0.397255 -3.24811 -0.112263)
(-0.139189 -1.25367 -0.036199)
(0.0038394 0.567914 -0.0809144)
(0.0706643 1.37317 -0.205976)
(0.135958 1.87782 -0.286497)
(0.17089 2.09941 -0.291276)
(0.191978 2.1255 -0.228022)
(0.191605 2.04092 -0.126768)
(0.185806 1.91879 -0.0271031)
(0.164518 1.78761 0.0490296)
(0.145466 1.66116 0.0997562)
(0.131068 1.53533 0.133707)
(0.124866 1.40246 0.151515)
(0.134998 1.25872 0.164297)
(0.179981 1.10562 0.167707)
(0.2725 0.951668 0.200744)
(0.380859 0.807906 0.275999)
(0.449507 0.680113 0.444761)
(0.422257 0.554493 0.655362)
(0.279896 0.412117 0.850278)
(0.0603474 0.283337 0.936562)
(-0.180698 0.208068 0.843109)
(-0.294669 0.169979 0.516954)
(-0.188079 0.132463 0.243652)
(-0.0570868 0.059519 0.154487)
(-0.0177595 -0.0122268 0.130196)
(-0.00681513 -0.0764013 0.117118)
(0.0018277 -0.142293 0.105126)
(0.00104265 -0.198603 0.0898334)
(0.00929637 -0.26252 0.0754928)
(0.0092443 -0.318018 0.0625118)
(0.0204317 -0.388333 0.051104)
(0.0159534 -0.452593 0.0412553)
(0.015539 -0.547791 0.0319877)
(-0.0115699 -0.66341 0.0278164)
(-0.0392637 -0.888538 0.0223432)
(-0.123208 -1.25395 0.00966071)
(-0.222541 -1.87418 -0.024454)
(-0.350183 -2.64285 -0.0727134)
(-0.419578 -3.40639 -0.123384)
(-0.378194 -3.37297 -0.1239)
(-0.139466 -1.49111 -0.0527837)
(0.00657904 0.512508 -0.0652975)
(0.0838017 1.27607 -0.178788)
(0.160784 1.79812 -0.262561)
(0.20316 2.05136 -0.277856)
(0.2319 2.10178 -0.226352)
(0.236583 2.03327 -0.133886)
(0.235156 1.91611 -0.0382771)
(0.218156 1.78916 0.0380435)
(0.200184 1.66367 0.0894235)
(0.1878 1.53803 0.12354)
(0.183655 1.40712 0.142055)
(0.193337 1.26596 0.153559)
(0.230215 1.11358 0.15248)
(0.314833 0.942853 0.170422)
(0.424538 0.757559 0.224492)
(0.490223 0.573073 0.361119)
(0.448504 0.389824 0.535875)
(0.317233 0.211363 0.678227)
(0.122302 0.0915813 0.743918)
(-0.062102 0.0183921 0.686544)
(-0.125887 0.0279391 0.452852)
(-0.0634427 0.0500601 0.252759)
(0.0241658 0.0205515 0.17789)
(0.0628678 -0.0296728 0.160697)
(0.0697019 -0.0767776 0.146664)
(0.0769192 -0.134124 0.134713)
(0.0717433 -0.182684 0.114384)
(0.0774517 -0.243955 0.0969175)
(0.074666 -0.298088 0.0786239)
(0.0853219 -0.367193 0.0646874)
(0.0818736 -0.42953 0.0510858)
(0.0871333 -0.522805 0.0409271)
(0.0559968 -0.628675 0.0319167)
(0.0166687 -0.838693 0.0203908)
(-0.0611496 -1.19114 0.0174154)
(-0.149561 -1.82624 -0.0152424)
(-0.293839 -2.63752 -0.0634982)
(-0.376479 -3.51368 -0.118445)
(-0.373871 -3.62983 -0.124473)
(-0.14652 -1.79853 -0.0479737)
(0.0112545 0.455973 -0.0505967)
(0.0993627 1.16214 -0.147194)
(0.185735 1.69518 -0.235541)
(0.232029 1.98128 -0.261879)
(0.266466 2.05997 -0.22286)
(0.277023 2.01059 -0.14078)
(0.280566 1.90124 -0.0495487)
(0.267851 1.77884 0.0261947)
(0.251594 1.65458 0.0777782)
(0.241344 1.53212 0.111889)
(0.237826 1.40618 0.130065)
(0.24631 1.27013 0.139221)
(0.275861 1.12281 0.135209)
(0.339394 0.955132 0.140167)
(0.426633 0.757779 0.159626)
(0.481814 0.538428 0.236596)
(0.441349 0.324877 0.347736)
(0.343243 0.137048 0.441292)
(0.211383 0.0102623 0.498525)
(0.0818576 -0.0395256 0.461371)
(0.051097 -0.0387743 0.350578)
(0.109363 -0.0101854 0.232803)
(0.157842 -0.0185188 0.1903)
(0.170334 -0.048035 0.187478)
(0.166122 -0.0832692 0.176232)
(0.16644 -0.133248 0.163256)
(0.155889 -0.178857 0.140616)
(0.154351 -0.244221 0.115365)
(0.145854 -0.306106 0.0913822)
(0.152576 -0.3974 0.0719622)
(0.13712 -0.488885 0.0554228)
(0.131118 -0.610821 0.0441373)
(0.102853 -0.734028 0.0310063)
(0.0544578 -0.959489 0.0200997)
(-0.0355455 -1.28441 0.00801544)
(-0.106969 -1.93057 -0.0138786)
(-0.253186 -2.78013 -0.0673353)
(-0.332118 -3.79058 -0.129737)
(-0.337204 -4.09367 -0.148497)
(-0.130418 -2.37618 -0.0751645)
(0.00781197 0.409686 -0.0408959)
(0.105997 1.05557 -0.121277)
(0.211085 1.58395 -0.205142)
(0.258153 1.90859 -0.246682)
(0.294794 2.01968 -0.221047)
(0.312129 1.99482 -0.149957)
(0.324156 1.8951 -0.0617446)
(0.318287 1.77776 0.0108845)
(0.305008 1.655 0.0629858)
(0.297525 1.53473 0.0976674)
(0.295421 1.41346 0.115959)
(0.303452 1.28344 0.124312)
(0.325901 1.14387 0.11948)
(0.370119 0.984612 0.117123)
(0.427026 0.800114 0.11895)
(0.465796 0.586117 0.155025)
(0.439925 0.376965 0.218808)
(0.379089 0.203436 0.289112)
(0.306781 0.0762311 0.321858)
(0.234016 0.00724078 0.308573)
(0.235161 -0.0117401 0.260588)
(0.278394 -0.00149638 0.212955)
(0.297793 -0.0200795 0.198397)
(0.298364 -0.050029 0.2031)
(0.276747 -0.0766193 0.191248)
(0.265792 -0.120529 0.177012)
(0.239005 -0.160691 0.153285)
(0.224761 -0.228444 0.131551)
(0.194482 -0.305057 0.106051)
(0.176451 -0.428762 0.089122)
(0.147174 -0.543744 0.0689586)
(0.141837 -0.693107 0.052337)
(0.0940943 -0.821805 0.0289259)
(0.0674344 -1.02982 0.0238698)
(-0.0228174 -1.33327 0.00644527)
(-0.0929245 -1.97152 -0.00599438)
(-0.241015 -2.8674 -0.0637415)
(-0.326309 -4.02699 -0.131862)
(-0.350291 -4.55523 -0.163856)
(-0.150254 -3.02367 -0.100959)
(0.00801768 0.35216 -0.027676)
(0.105126 0.938829 -0.0980513)
(0.233912 1.44462 -0.17086)
(0.292104 1.79407 -0.223694)
(0.318897 1.94612 -0.215328)
(0.338087 1.94811 -0.157311)
(0.358128 1.86754 -0.0788377)
(0.364168 1.75321 -0.00339186)
(0.353962 1.63667 0.0481422)
(0.349865 1.51921 0.0840238)
(0.349471 1.40394 0.103805)
(0.357586 1.28149 0.112828)
(0.375506 1.15227 0.109657)
(0.40725 1.00628 0.105361)
(0.445047 0.842543 0.10371)
(0.472516 0.65596 0.126532)
(0.4627 0.46974 0.166659)
(0.434829 0.313957 0.210538)
(0.394523 0.18747 0.24228)
(0.357273 0.0937445 0.244801)
(0.392046 0.0463652 0.217584)
(0.439969 0.0303721 0.198626)
(0.437176 0.00720274 0.195664)
(0.431644 -0.0254075 0.203995)
(0.402207 -0.051957 0.197367)
(0.381406 -0.0887204 0.184143)
(0.340801 -0.120246 0.162579)
(0.298928 -0.179549 0.143826)
(0.23178 -0.280481 0.119847)
(0.200213 -0.403288 0.0978932)
(0.164132 -0.504935 0.0772117)
(0.164794 -0.654986 0.057939)
(0.137666 -0.764987 0.0378539)
(0.0972069 -0.982384 0.0234872)
(-0.015295 -1.22537 0.0106318)
(-0.0704475 -1.84861 0.000117608)
(-0.232487 -2.74479 -0.0579403)
(-0.323466 -4.03318 -0.134354)
(-0.375364 -4.79236 -0.175401)
(-0.178223 -3.51553 -0.113067)
(0.00513075 0.31133 -0.0219927)
(0.0961927 0.847205 -0.0815113)
(0.23872 1.32914 -0.146383)
(0.325705 1.6818 -0.191813)
(0.350497 1.87644 -0.208179)
(0.365466 1.91059 -0.16392)
(0.388928 1.85666 -0.0975807)
(0.403396 1.74542 -0.0227533)
(0.407629 1.63355 0.030766)
(0.406135 1.51492 0.0702385)
(0.409497 1.40257 0.0931599)
(0.418552 1.28519 0.106161)
(0.43405 1.16487 0.108061)
(0.458556 1.03137 0.108479)
(0.484407 0.88579 0.112053)
(0.505127 0.724032 0.13377)
(0.507817 0.566343 0.159136)
(0.501573 0.42389 0.182917)
(0.484879 0.295779 0.201378)
(0.476721 0.189663 0.211011)
(0.540795 0.122699 0.196275)
(0.596916 0.0885606 0.19454)
(0.586388 0.0523857 0.197847)
(0.573293 0.017884 0.204958)
(0.534369 -0.0123193 0.197276)
(0.509701 -0.0489685 0.183601)
(0.455808 -0.0689952 0.16394)
(0.366523 -0.127268 0.150554)
(0.272455 -0.232443 0.122517)
(0.258234 -0.342473 0.104533)
(0.203709 -0.430566 0.0822539)
(0.198347 -0.570479 0.0657108)
(0.134909 -0.681414 0.0485387)
(0.133075 -0.898343 0.0330784)
(0.013463 -1.12312 0.0124432)
(-0.0565441 -1.68851 0.0098403)
(-0.212656 -2.56161 -0.0466639)
(-0.315929 -3.9309 -0.128756)
(-0.389651 -4.89725 -0.182409)
(-0.202001 -3.9233 -0.127759)
(0.00817712 0.26307 -0.0135792)
(0.0894794 0.742207 -0.0673013)
(0.225864 1.19829 -0.12422)
(0.345294 1.53526 -0.165412)
(0.388279 1.7476 -0.183585)
(0.389849 1.82081 -0.163133)
(0.40804 1.79274 -0.107478)
(0.431692 1.70406 -0.0419009)
(0.449069 1.5953 0.0158037)
(0.452464 1.48062 0.0573181)
(0.461137 1.37083 0.0856388)
(0.472723 1.25906 0.103965)
(0.488605 1.14726 0.114201)
(0.509228 1.02581 0.123186)
(0.529709 0.898578 0.131943)
(0.553915 0.762597 0.147504)
(0.568255 0.63086 0.159095)
(0.571542 0.502256 0.174684)
(0.569693 0.378692 0.184524)
(0.583854 0.265426 0.19621)
(0.676641 0.185452 0.185831)
(0.744737 0.139801 0.194472)
(0.726807 0.0938841 0.196788)
(0.714544 0.052246 0.203247)
(0.670743 0.0235638 0.191224)
(0.646208 -0.0152361 0.18058)
(0.58081 -0.029935 0.161194)
(0.447121 -0.0706415 0.150888)
(0.326231 -0.152201 0.12408)
(0.317662 -0.265023 0.107536)
(0.251913 -0.349528 0.0851705)
(0.237828 -0.487687 0.0671027)
(0.162666 -0.588464 0.0505773)
(0.147111 -0.786236 0.0391832)
(0.0331498 -1.00628 0.0273795)
(-0.0200869 -1.5237 0.0102182)
(-0.197702 -2.34733 -0.0315719)
(-0.288172 -3.76336 -0.124128)
(-0.407351 -4.91289 -0.18471)
(-0.222291 -4.2856 -0.138532)
(0.00248202 0.2431 -0.0121741)
(0.0718206 0.681688 -0.060377)
(0.196848 1.10765 -0.110797)
(0.330016 1.44711 -0.149549)
(0.414729 1.64584 -0.163174)
(0.429385 1.75136 -0.155449)
(0.440869 1.74826 -0.113175)
(0.464524 1.68135 -0.0580533)
(0.487715 1.57549 -0.00196003)
(0.504822 1.46036 0.0421702)
(0.518594 1.35221 0.0748734)
(0.534066 1.24141 0.0988845)
(0.550999 1.13507 0.114589)
(0.572615 1.02373 0.12734)
(0.594601 0.912899 0.135161)
(0.619852 0.79695 0.145626)
(0.638131 0.680308 0.152153)
(0.64774 0.563628 0.163874)
(0.657137 0.447046 0.169355)
(0.689857 0.332329 0.18083)
(0.81091 0.24248 0.173615)
(0.894007 0.190599 0.187248)
(0.871915 0.138879 0.1877)
(0.86083 0.0947099 0.191788)
(0.811306 0.0666047 0.180251)
(0.787408 0.0315925 0.171722)
(0.724343 0.0146518 0.155679)
(0.565027 -0.0190299 0.145502)
(0.390609 -0.0636748 0.118889)
(0.380035 -0.178192 0.106314)
(0.300168 -0.250626 0.0845948)
(0.285088 -0.391009 0.0677174)
(0.186265 -0.477228 0.0519704)
(0.170045 -0.67587 0.0408848)
(0.0464184 -0.861055 0.0369978)
(0.00902768 -1.35412 0.0216003)
(-0.177233 -2.12227 -0.0204211)
(-0.261196 -3.57169 -0.111671)
(-0.423066 -4.88467 -0.18424)
(-0.251255 -4.64204 -0.145132)
(0.00883516 0.205069 -0.0121669)
(0.0577024 0.595365 -0.0580342)
(0.162786 0.991719 -0.101688)
(0.293695 1.31378 -0.138994)
(0.404844 1.51219 -0.152385)
(0.455821 1.6122 -0.145858)
(0.458362 1.6452 -0.116107)
(0.481518 1.58945 -0.0700578)
(0.509856 1.50848 -0.0197045)
(0.535843 1.4013 0.0229277)
(0.563622 1.2981 0.0589676)
(0.584319 1.19075 0.0840938)
(0.606997 1.0942 0.102029)
(0.632696 0.993921 0.115337)
(0.657666 0.896329 0.122908)
(0.683788 0.794257 0.131494)
(0.704173 0.692442 0.135819)
(0.717776 0.589091 0.145957)
(0.736456 0.482369 0.149813)
(0.782818 0.369062 0.161442)
(0.932219 0.272267 0.154755)
(1.03729 0.217985 0.170419)
(1.01179 0.164556 0.167893)
(1.00601 0.12108 0.170875)
(0.954046 0.0978792 0.159287)
(0.930565 0.0732033 0.15186)
(0.855154 0.0652895 0.136387)
(0.689821 0.0302405 0.133705)
(0.483719 -0.00203725 0.108873)
(0.449208 -0.0819897 0.0979659)
(0.359812 -0.157113 0.0786019)
(0.339474 -0.28814 0.0641477)
(0.225733 -0.364066 0.0491781)
(0.199389 -0.558803 0.0418229)
(0.065755 -0.716721 0.0368092)
(0.0360771 -1.20117 0.0364303)
(-0.165857 -1.8942 -0.0177529)
(-0.225401 -3.37169 -0.101117)
(-0.456526 -4.8459 -0.182574)
(-0.283371 -5.04522 -0.150259)
(-0.00147212 0.203165 -0.0167747)
(0.0303937 0.57898 -0.0624462)
(0.106929 0.943655 -0.104935)
(0.234315 1.26967 -0.137831)
(0.367256 1.45953 -0.154426)
(0.468751 1.54352 -0.147525)
(0.496177 1.5876 -0.126037)
(0.505529 1.54092 -0.0894486)
(0.548652 1.46353 -0.0458311)
(0.579826 1.36727 -0.00759891)
(0.610147 1.26671 0.0253238)
(0.644123 1.16208 0.0550648)
(0.677521 1.06778 0.075172)
(0.706698 0.969811 0.0886741)
(0.734056 0.878809 0.0957834)
(0.760742 0.785292 0.104171)
(0.78172 0.694483 0.106525)
(0.79512 0.602098 0.115781)
(0.818135 0.505662 0.118719)
(0.873112 0.39581 0.130215)
(1.05133 0.299992 0.123615)
(1.18331 0.247029 0.139446)
(1.1584 0.195516 0.135005)
(1.15934 0.153328 0.136956)
(1.1087 0.13559 0.126887)
(1.08706 0.116834 0.120406)
(1.00708 0.1268 0.10959)
(0.817955 0.0958702 0.108196)
(0.591867 0.0668929 0.0883428)
(0.54824 0.000663383 0.0822173)
(0.416285 -0.0483812 0.0668078)
(0.410009 -0.171345 0.0554566)
(0.263943 -0.217247 0.0442244)
(0.247707 -0.414271 0.0379562)
(0.0752121 -0.537777 0.0393393)
(0.077282 -1.00847 0.0363866)
(-0.146889 -1.64772 -0.00245375)
(-0.203492 -3.13888 -0.0943678)
(-0.503814 -4.79649 -0.178903)
(-0.324034 -5.53928 -0.155941)
(0.0139366 0.181624 -0.0250301)
(0.019922 0.512901 -0.0763378)
(0.0577403 0.864229 -0.108975)
(0.164851 1.14134 -0.145741)
(0.281882 1.33284 -0.160573)
(0.4277 1.39825 -0.159333)
(0.489859 1.44189 -0.136455)
(0.500644 1.40963 -0.111137)
(0.548252 1.34335 -0.0727556)
(0.598539 1.25701 -0.0381058)
(0.642422 1.17171 -0.00847349)
(0.683223 1.08473 0.0175599)
(0.720645 0.998628 0.0356569)
(0.758128 0.909224 0.053006)
(0.796315 0.825921 0.0618034)
(0.82853 0.738588 0.069359)
(0.852231 0.656391 0.0691867)
(0.866287 0.573117 0.0765812)
(0.893526 0.4855 0.0790461)
(0.956242 0.378081 0.088504)
(1.16255 0.29149 0.0815015)
(1.32296 0.240001 0.0973294)
(1.29794 0.193452 0.0929704)
(1.30853 0.155595 0.0958086)
(1.25913 0.148818 0.0871693)
(1.2483 0.141082 0.0846593)
(1.15556 0.168883 0.0777038)
(0.950476 0.144095 0.080053)
(0.699824 0.143244 0.0652655)
(0.661082 0.0657274 0.0598586)
(0.515266 0.0537451 0.0480735)
(0.511024 -0.060019 0.0407667)
(0.344945 -0.0876841 0.0332553)
(0.322463 -0.271793 0.0304914)
(0.129993 -0.373802 0.0300034)
(0.149018 -0.80822 0.0338862)
(-0.10092 -1.43958 -0.00805455)
(-0.145059 -2.8648 -0.0836417)
(-0.559485 -4.74698 -0.179463)
(-0.330404 -6.14523 -0.163064)
(-0.018544 0.185675 -0.0350327)
(-0.0210982 0.562798 -0.0991103)
(-0.0213628 0.865119 -0.133042)
(0.0454758 1.16463 -0.161371)
(0.184579 1.31093 -0.178652)
(0.366227 1.349 -0.183317)
(0.482734 1.35872 -0.163395)
(0.506279 1.32149 -0.144579)
(0.561681 1.24848 -0.111558)
(0.62705 1.1697 -0.0818609)
(0.690974 1.08519 -0.0523381)
(0.747443 1.00529 -0.0271138)
(0.791404 0.927447 -0.0120786)
(0.831749 0.852222 0.0023074)
(0.86885 0.775791 0.00756998)
(0.901775 0.694912 0.0171916)
(0.929459 0.616152 0.0190063)
(0.946054 0.536823 0.0298127)
(0.975327 0.459691 0.0295048)
(1.04935 0.361537 0.0341227)
(1.28511 0.292156 0.0237224)
(1.47038 0.244793 0.0401093)
(1.45107 0.202616 0.0375093)
(1.47608 0.166568 0.0453525)
(1.43413 0.170133 0.0405655)
(1.43155 0.168722 0.0406845)
(1.32502 0.210659 0.0349535)
(1.11274 0.187187 0.0401078)
(0.831588 0.2173 0.033416)
(0.798753 0.152972 0.0337071)
(0.637966 0.157731 0.0238765)
(0.642374 0.0565036 0.0227546)
(0.454117 0.0327573 0.0164589)
(0.455553 -0.109566 0.0188067)
(0.236407 -0.183982 0.0206109)
(0.245986 -0.564499 0.0233589)
(0.0190653 -1.10131 -0.00777004)
(0.0175109 -2.5602 -0.0889424)
(-0.585377 -4.58097 -0.172643)
(-0.256938 -6.73254 -0.174304)
(0.0424423 0.335587 -0.0623532)
(-0.0045595 0.509556 -0.13107)
(-0.0821632 0.7646 -0.166454)
(-0.0309694 0.943663 -0.195891)
(0.00840168 1.14333 -0.204276)
(0.210992 1.13893 -0.211284)
(0.39444 1.15697 -0.197131)
(0.454242 1.10869 -0.184914)
(0.528452 1.05234 -0.155767)
(0.619475 0.988168 -0.131468)
(0.703278 0.920943 -0.104719)
(0.77722 0.851157 -0.0817601)
(0.838551 0.786735 -0.0624694)
(0.892845 0.727032 -0.0460132)
(0.937188 0.667515 -0.0366139)
(0.977292 0.602975 -0.0295122)
(1.00486 0.532295 -0.0278121)
(1.0288 0.46173 -0.0195527)
(1.069 0.394776 -0.0169065)
(1.16531 0.294912 -0.0135812)
(1.42711 0.241068 -0.021659)
(1.63431 0.190964 -0.00790855)
(1.61625 0.155728 -0.00837219)
(1.65993 0.124281 -0.00224826)
(1.62259 0.147211 -0.00950004)
(1.64073 0.154123 -0.00570854)
(1.51777 0.223253 -0.00957579)
(1.31757 0.204243 -0.000389876)
(1.02441 0.270369 -0.00145241)
(1.01137 0.223057 -0.00105305)
(0.848539 0.243473 -0.00365377)
(0.884538 0.148057 -0.00697793)
(0.694976 0.125997 -0.00832887)
(0.767741 9.82711e-05 -0.00792881)
(0.503062 -0.0797761 -0.00973733)
(0.616761 -0.387489 -0.00101293)
(0.265146 -0.832195 -0.0295502)
(0.404265 -2.14072 -0.0804534)
(-0.292196 -4.41705 -0.189816)
(-0.0220464 -7.2406 -0.180495)
(-0.212725 0.0857845 -0.0774299)
(-0.270531 0.703425 -0.170708)
(-0.246748 0.868058 -0.212521)
(-0.212351 1.00207 -0.240797)
(-0.0962255 1.03203 -0.263782)
(0.0688848 1.05105 -0.256618)
(0.289289 0.983698 -0.252023)
(0.384208 0.93354 -0.241283)
(0.493549 0.874242 -0.216177)
(0.601958 0.822376 -0.19615)
(0.709069 0.767884 -0.172793)
(0.802788 0.712223 -0.152097)
(0.88277 0.660047 -0.133672)
(0.951859 0.608606 -0.117404)
(1.00485 0.558667 -0.105689)
(1.05308 0.503054 -0.0937325)
(1.09469 0.438215 -0.0868265)
(1.14173 0.382945 -0.073901)
(1.199 0.340964 -0.0732507)
(1.33999 0.251155 -0.0741692)
(1.65922 0.225371 -0.0840636)
(1.92769 0.167095 -0.0668245)
(1.94995 0.133858 -0.0651719)
(2.05032 0.106443 -0.0558464)
(2.03406 0.122827 -0.0534695)
(2.08973 0.103127 -0.0604762)
(1.95231 0.193853 -0.0529855)
(1.79418 0.173121 -0.0432179)
(1.48195 0.276167 -0.0422674)
(1.51702 0.248973 -0.0398929)
(1.34645 0.286774 -0.0391807)
(1.46616 0.200134 -0.0385836)
(1.26114 0.192322 -0.0392245)
(1.4217 0.0627214 -0.0374178)
(1.10562 0.00731605 -0.0444361)
(1.29873 -0.212762 -0.0362854)
(0.860481 -0.500491 -0.0584254)
(1.07733 -1.4853 -0.0885772)
(0.27595 -3.90437 -0.17915)
(0.468031 -7.16933 -0.19786)
(-0.72461 0.797791 -0.218389)
(-0.575533 0.406144 -0.308566)
(-0.702251 0.581715 -0.31086)
(-0.429051 0.608629 -0.319492)
(-0.283557 0.612474 -0.325924)
(-0.00022079 0.66491 -0.32334)
(0.245853 0.632754 -0.3088)
(0.467214 0.601987 -0.301727)
(0.645451 0.569646 -0.281312)
(0.834006 0.539621 -0.264954)
(1.01007 0.505469 -0.244984)
(1.17856 0.470652 -0.22737)
(1.32314 0.440211 -0.210518)
(1.45346 0.415684 -0.195458)
(1.55529 0.396705 -0.184615)
(1.65338 0.36564 -0.173227)
(1.75172 0.318084 -0.167166)
(1.89594 0.288877 -0.159393)
(2.0658 0.248445 -0.161103)
(2.34411 0.152312 -0.161407)
(2.75453 0.13026 -0.167829)
(3.15293 0.0636455 -0.142827)
(3.22194 0.0209881 -0.129555)
(3.38424 -0.0167924 -0.110067)
(3.32954 0.00301783 -0.111737)
(3.42777 0.00841918 -0.106268)
(3.26452 0.101314 -0.105426)
(3.19247 0.103353 -0.0890008)
(2.82527 0.206804 -0.0879291)
(2.97422 0.215604 -0.0855818)
(2.77212 0.245333 -0.0813795)
(3.07486 0.174141 -0.0788506)
(2.79651 0.133713 -0.079364)
(3.13638 0.0453812 -0.0782827)
(2.67272 -0.0171466 -0.0872703)
(3.0336 -0.195615 -0.0795942)
(2.38786 -0.481507 -0.0951758)
(2.76957 -1.13141 -0.110362)
(1.81427 -3.1651 -0.162482)
(1.30178 -6.08032 -0.192405)
(1.15886 1.46626 -0.100973)
(1.7257 0.718146 -0.139377)
(2.47688 0.569901 -0.153049)
(2.89382 0.354787 -0.15997)
(3.18145 0.289133 -0.163328)
(3.43021 0.219751 -0.16804)
(3.67764 0.217062 -0.170464)
(3.89399 0.186341 -0.180223)
(4.08581 0.17741 -0.182923)
(4.28831 0.165154 -0.18427)
(4.4816 0.155725 -0.181466)
(4.67957 0.144606 -0.178048)
(4.84107 0.135675 -0.174062)
(4.9939 0.127177 -0.169066)
(5.09843 0.124522 -0.166341)
(5.221 0.11995 -0.159825)
(5.35015 0.0914861 -0.157037)
(5.56747 0.0795458 -0.155674)
(5.86305 0.0931787 -0.166037)
(6.31812 0.0590273 -0.167418)
(6.72928 0.0418656 -0.17252)
(7.19984 0.0163515 -0.142864)
(7.21346 -0.00927798 -0.117971)
(7.29259 -0.0479647 -0.101416)
(7.09974 -0.055224 -0.085938)
(7.07957 -0.060343 -0.0778537)
(6.73038 -0.0254796 -0.0790108)
(6.69494 -0.00784756 -0.0665895)
(6.22849 0.0360116 -0.0725723)
(6.47443 0.0634976 -0.0712469)
(6.24001 0.0893714 -0.0714001)
(6.69455 0.0820779 -0.0663006)
(6.39616 0.0511104 -0.0712252)
(6.79751 0.0168594 -0.0654963)
(6.26161 -0.0189105 -0.0751161)
(6.48567 -0.100709 -0.0764456)
(5.61513 -0.260097 -0.0884347)
(5.65705 -0.580685 -0.0958555)
(4.24186 -1.13231 -0.120742)
(2.77137 -2.52597 -0.163508)
(0.00300339 -0.000226587 0.00143836)
(0.0213071 -0.0044659 -0.00403944)
(0.0428246 -0.00363776 -0.00618386)
(0.052943 -0.00232224 -0.00515078)
(0.0549815 0.000461987 -0.0033245)
(0.0473644 0.00100419 -0.000821325)
(0.0285885 0.00622357 -0.000940869)
(0.0107681 0.0167737 -0.00187906)
(-0.0171224 0.0185039 -0.00662448)
(-0.0618941 0.0140892 -0.0089201)
(-0.112345 0.00682982 -0.0150346)
(-0.177227 -0.00122328 -0.0226608)
(-0.256159 -0.0033606 -0.031547)
(-0.335925 0.00710355 -0.0371834)
(-0.431502 0.0078069 -0.0442042)
(-0.566168 0.00698272 -0.0354648)
(-0.695496 0.00374825 -0.037073)
(-0.856212 0.00171553 -0.0348157)
(-0.964846 -0.00389094 -0.0357689)
(-1.1338 0.00242515 -0.0346056)
(-1.06516 0.0304861 -0.0560453)
(-0.884995 0.0261964 -0.0502887)
(-0.857376 0.0301411 -0.0557656)
(-0.837175 -0.00227571 -0.0585496)
(-0.822448 -0.0353211 -0.0638672)
(-0.764634 -0.0658404 -0.0655007)
(-0.690905 -0.0922075 -0.0689939)
(-0.568991 -0.109753 -0.0715113)
(-0.424472 -0.12472 -0.0756867)
(-0.22721 -0.133398 -0.0776309)
(-0.0449293 -0.136069 -0.0873854)
(0.197366 -0.0790098 -0.0978956)
(0.420643 -0.0688594 -0.0939341)
(0.507157 -0.0121972 -0.0858662)
(0.487169 0.0230478 -0.0794749)
(0.36476 0.047245 -0.0697461)
(0.226231 0.0374854 -0.0598733)
(0.102068 0.0233507 -0.0529641)
(0.028835 0.0091432 -0.0433709)
(-0.00168446 -0.0039082 -0.0194527)
(0.00722952 -0.0169374 -0.00281447)
(0.0360914 -0.0320697 -0.0159407)
(0.063199 -0.0268058 -0.0227097)
(0.0710848 -0.00871048 -0.0230872)
(0.0610181 -0.0028349 -0.021665)
(0.0320334 0.0112326 -0.0208383)
(-0.0161641 0.026012 -0.0220548)
(-0.0930599 0.0507626 -0.0255645)
(-0.212666 0.0670015 -0.0296353)
(-0.363734 0.0897986 -0.0360023)
(-0.53405 0.115824 -0.0481149)
(-0.727812 0.145523 -0.062711)
(-0.936408 0.172176 -0.0827774)
(-1.16654 0.193782 -0.0981388)
(-1.41421 0.172368 -0.110332)
(-1.66507 0.142573 -0.115836)
(-1.87803 0.105556 -0.12692)
(-2.09191 0.0662726 -0.136645)
(-2.23197 0.0283946 -0.151511)
(-2.33721 0.0029566 -0.169374)
(-2.13211 0.00279576 -0.203491)
(-1.86815 -0.0733098 -0.217865)
(-1.76409 -0.147337 -0.22724)
(-1.66006 -0.247152 -0.229471)
(-1.57572 -0.345252 -0.244225)
(-1.44847 -0.439088 -0.251453)
(-1.31498 -0.51812 -0.261246)
(-1.14254 -0.574319 -0.267817)
(-0.959725 -0.601357 -0.281408)
(-0.727057 -0.593383 -0.287865)
(-0.487772 -0.568848 -0.29288)
(-0.213143 -0.471135 -0.277935)
(0.0735089 -0.389794 -0.274663)
(0.320592 -0.231515 -0.245978)
(0.461268 -0.0381922 -0.223696)
(0.455036 0.0759847 -0.191319)
(0.348884 0.122309 -0.169287)
(0.206693 0.11609 -0.151326)
(0.0835959 0.0841979 -0.123775)
(0.0110413 0.0326764 -0.0546938)
(0.00855095 -0.0409393 -0.00438391)
(0.0317815 -0.0649139 -0.0231146)
(0.0477677 -0.047185 -0.0329238)
(0.0245836 -0.00990191 -0.0356513)
(-0.0185609 0.032125 -0.0396936)
(-0.0830199 0.0777014 -0.0444942)
(-0.19161 0.129197 -0.0527707)
(-0.345273 0.189419 -0.0574072)
(-0.55051 0.259193 -0.0709101)
(-0.792954 0.327224 -0.087869)
(-1.05667 0.385491 -0.10821)
(-1.33065 0.423192 -0.13185)
(-1.59666 0.427052 -0.155798)
(-1.8606 0.379845 -0.174237)
(-2.09272 0.309217 -0.186909)
(-2.28647 0.243542 -0.200001)
(-2.43456 0.177431 -0.215141)
(-2.57998 0.107395 -0.22937)
(-2.65263 0.0418028 -0.246267)
(-2.66979 -0.034154 -0.270296)
(-2.41706 -0.0939794 -0.298438)
(-2.13286 -0.24517 -0.274568)
(-1.98895 -0.382286 -0.272363)
(-1.87098 -0.518064 -0.273992)
(-1.7914 -0.658201 -0.280367)
(-1.68123 -0.80223 -0.279883)
(-1.57015 -0.934895 -0.278594)
(-1.42281 -1.04497 -0.273158)
(-1.27285 -1.11209 -0.272819)
(-1.10445 -1.11182 -0.284226)
(-0.934474 -1.05185 -0.300012)
(-0.738832 -0.920886 -0.299938)
(-0.49175 -0.764723 -0.283837)
(-0.15655 -0.514699 -0.273698)
(0.114197 -0.23637 -0.288568)
(0.222314 0.0213239 -0.259101)
(0.241547 0.157072 -0.234053)
(0.165047 0.197081 -0.213915)
(0.0721221 0.169026 -0.171452)
(0.00814246 0.0845338 -0.0743835)
(0.00593802 -0.0652165 -0.00379515)
(0.00882433 -0.0885629 -0.0265297)
(-0.0160364 -0.0410364 -0.0419676)
(-0.0671185 0.0303662 -0.0493655)
(-0.148124 0.126573 -0.0575442)
(-0.271045 0.22309 -0.0674229)
(-0.444504 0.33209 -0.0810491)
(-0.671059 0.448509 -0.0968785)
(-0.948732 0.549847 -0.113518)
(-1.24087 0.616048 -0.136435)
(-1.51391 0.641784 -0.161798)
(-1.77088 0.614706 -0.187494)
(-2.00653 0.536415 -0.203978)
(-2.19833 0.44023 -0.212287)
(-2.32749 0.355642 -0.222956)
(-2.42558 0.274936 -0.229449)
(-2.49001 0.194909 -0.234472)
(-2.55782 0.109104 -0.236578)
(-2.56614 0.0251593 -0.245995)
(-2.53734 -0.083371 -0.251262)
(-2.30545 -0.189968 -0.246633)
(-2.02907 -0.352201 -0.212044)
(-1.90358 -0.49778 -0.204897)
(-1.81498 -0.65271 -0.196627)
(-1.76854 -0.813953 -0.198709)
(-1.70465 -0.990834 -0.194887)
(-1.641 -1.1669 -0.19101)
(-1.54184 -1.33103 -0.181967)
(-1.42452 -1.45941 -0.175806)
(-1.27966 -1.51852 -0.170747)
(-1.14849 -1.48999 -0.177395)
(-1.06017 -1.35509 -0.205539)
(-0.916585 -1.10985 -0.218597)
(-0.626479 -0.817475 -0.234658)
(-0.280887 -0.483104 -0.263565)
(-0.0363296 -0.123787 -0.253541)
(0.05979 0.101732 -0.271827)
(0.0639064 0.2135 -0.243441)
(0.029382 0.208391 -0.194756)
(0.000276788 0.108976 -0.0816077)
(-0.0016589 -0.0829085 -0.00252047)
(-0.0282646 -0.0786064 -0.0319074)
(-0.0994428 0.00142433 -0.0486155)
(-0.198617 0.144143 -0.0687834)
(-0.325079 0.287935 -0.0828997)
(-0.496915 0.441085 -0.101694)
(-0.708203 0.587488 -0.124529)
(-0.958494 0.714104 -0.141945)
(-1.24182 0.80063 -0.159852)
(-1.51595 0.812615 -0.180401)
(-1.76785 0.757716 -0.198268)
(-1.98364 0.662412 -0.203929)
(-2.12885 0.555253 -0.203245)
(-2.21199 0.463286 -0.202458)
(-2.25641 0.37539 -0.1977)
(-2.28612 0.284516 -0.188738)
(-2.29967 0.195667 -0.178351)
(-2.32437 0.103471 -0.16564)
(-2.30526 0.0141432 -0.157322)
(-2.28117 -0.107541 -0.13802)
(-2.06797 -0.228759 -0.122184)
(-1.82404 -0.391817 -0.0882882)
(-1.73111 -0.553703 -0.0794531)
(-1.67329 -0.719663 -0.0712886)
(-1.65803 -0.89135 -0.0737398)
(-1.63493 -1.08925 -0.0749213)
(-1.61667 -1.29749 -0.0790209)
(-1.57056 -1.50641 -0.0803367)
(-1.50505 -1.69455 -0.0849902)
(-1.40143 -1.82471 -0.0883232)
(-1.2782 -1.86371 -0.0949611)
(-1.16815 -1.78677 -0.10636)
(-1.13336 -1.54297 -0.138294)
(-0.956386 -1.16394 -0.177381)
(-0.604636 -0.760682 -0.214633)
(-0.277711 -0.323169 -0.251897)
(-0.0762655 0.0139739 -0.26291)
(-0.00785184 0.188444 -0.248602)
(-0.00367726 0.21399 -0.196888)
(-0.00548613 0.111629 -0.0784033)
(-0.00513621 -0.0856738 -0.0021455)
(-0.083826 -0.0375263 -0.0399867)
(-0.197874 0.109772 -0.0729547)
(-0.325626 0.311606 -0.0945319)
(-0.494182 0.504734 -0.116657)
(-0.682867 0.688566 -0.141827)
(-0.900248 0.836064 -0.161903)
(-1.14721 0.934463 -0.178009)
(-1.43591 0.91058 -0.182543)
(-1.70324 0.833577 -0.18378)
(-1.8826 0.732396 -0.181219)
(-1.9854 0.633943 -0.175333)
(-2.03155 0.544162 -0.16069)
(-2.04621 0.452307 -0.14519)
(-2.04126 0.357888 -0.126252)
(-2.04061 0.260604 -0.105129)
(-2.02953 0.175605 -0.0832975)
(-2.03558 0.0837406 -0.0671263)
(-2.01577 0.0017158 -0.0531985)
(-2.00132 -0.126051 -0.028423)
(-1.82292 -0.233175 -0.0071014)
(-1.60307 -0.411278 0.0254282)
(-1.52576 -0.563428 0.0346786)
(-1.48972 -0.721815 0.0468479)
(-1.49243 -0.888877 0.0431316)
(-1.50308 -1.08708 0.0315041)
(-1.51693 -1.29888 0.0197312)
(-1.51618 -1.52547 0.00672)
(-1.49933 -1.74776 -0.00689506)
(-1.44987 -1.94715 -0.0172524)
(-1.37369 -2.07619 -0.0294564)
(-1.25906 -2.08073 -0.0496169)
(-1.19697 -1.95598 -0.0697069)
(-1.14724 -1.57889 -0.120611)
(-0.873342 -1.12398 -0.166081)
(-0.472325 -0.601529 -0.211356)
(-0.187795 -0.152172 -0.252169)
(-0.0655693 0.102624 -0.242166)
(-0.0203811 0.177078 -0.194372)
(-0.00612582 0.0907959 -0.0770622)
(-0.0160473 -0.0437837 -0.0032335)
(-0.11705 0.0643533 -0.0562963)
(-0.269325 0.279257 -0.0970783)
(-0.431725 0.513777 -0.126908)
(-0.610306 0.728445 -0.154901)
(-0.801184 0.903279 -0.175943)
(-1.02789 0.999848 -0.192387)
(-1.32191 0.961432 -0.178474)
(-1.58005 0.862657 -0.16663)
(-1.72333 0.782929 -0.160918)
(-1.80014 0.709051 -0.145041)
(-1.83107 0.622866 -0.120217)
(-1.82678 0.527293 -0.0918787)
(-1.81222 0.42974 -0.0653482)
(-1.79681 0.329288 -0.0374158)
(-1.78593 0.233365 -0.0153633)
(-1.77848 0.152743 0.00504908)
(-1.78258 0.0675844 0.0209853)
(-1.77261 -0.00480539 0.04073)
(-1.76401 -0.125468 0.0688558)
(-1.61932 -0.224037 0.0890271)
(-1.40691 -0.402823 0.133852)
(-1.32681 -0.542201 0.14105)
(-1.30456 -0.694093 0.1436)
(-1.32024 -0.857373 0.133269)
(-1.34039 -1.05197 0.122135)
(-1.36973 -1.26442 0.103589)
(-1.39341 -1.50184 0.0865927)
(-1.42107 -1.74664 0.0570494)
(-1.42326 -1.97966 0.0390693)
(-1.40018 -2.18057 0.0167449)
(-1.33264 -2.27946 -0.00702337)
(-1.23596 -2.25009 -0.0245229)
(-1.2078 -2.01792 -0.060032)
(-1.06367 -1.53712 -0.11006)
(-0.677796 -0.96452 -0.163031)
(-0.285471 -0.396212 -0.216712)
(-0.0809771 0.0140916 -0.230038)
(-0.0103457 0.125897 -0.189063)
(-0.0013018 0.0771809 -0.0759985)
(-0.0223034 0.0168205 -0.0128255)
(-0.150355 0.19083 -0.0741402)
(-0.327419 0.436534 -0.124557)
(-0.498094 0.687386 -0.15972)
(-0.68281 0.885932 -0.182868)
(-0.903363 1.00524 -0.192306)
(-1.19422 0.986548 -0.17127)
(-1.42371 0.900202 -0.159027)
(-1.55222 0.850773 -0.144757)
(-1.62164 0.789692 -0.118879)
(-1.63948 0.701282 -0.0835943)
(-1.62829 0.597289 -0.0470378)
(-1.60634 0.494506 -0.0100773)
(-1.59232 0.389883 0.0162769)
(-1.58168 0.29455 0.0420202)
(-1.57655 0.207325 0.0619586)
(-1.56764 0.130895 0.0793308)
(-1.56713 0.0569851 0.0937502)
(-1.56191 -0.00306521 0.113083)
(-1.55845 -0.104181 0.143173)
(-1.44573 -0.189537 0.159722)
(-1.23949 -0.357311 0.212201)
(-1.14921 -0.486932 0.216878)
(-1.1336 -0.633756 0.211192)
(-1.15011 -0.78656 0.195643)
(-1.1757 -0.970223 0.179979)
(-1.2098 -1.17882 0.159144)
(-1.24595 -1.41881 0.137795)
(-1.28603 -1.6827 0.111156)
(-1.32602 -1.9502 0.0869206)
(-1.35156 -2.199 0.0499819)
(-1.33848 -2.37827 0.0302607)
(-1.27807 -2.44694 0.00121364)
(-1.21775 -2.34866 -0.0211961)
(-1.14315 -1.9679 -0.0626483)
(-0.85461 -1.37656 -0.109384)
(-0.384513 -0.696569 -0.173004)
(-0.110567 -0.151589 -0.214106)
(-0.0309635 0.0652003 -0.181764)
(0.0079106 0.0622293 -0.0790516)
(-0.0274968 0.0707543 -0.015809)
(-0.165958 0.293452 -0.0882606)
(-0.349929 0.547587 -0.139753)
(-0.531075 0.776981 -0.17042)
(-0.745766 0.939927 -0.182875)
(-1.01272 0.988347 -0.171745)
(-1.24281 0.949687 -0.160589)
(-1.3786 0.93107 -0.138825)
(-1.44917 0.874027 -0.103511)
(-1.45627 0.785635 -0.0596541)
(-1.44374 0.678125 -0.0131716)
(-1.42418 0.568738 0.0256142)
(-1.4108 0.462695 0.0616242)
(-1.40594 0.363331 0.0896315)
(-1.40563 0.276971 0.11211)
(-1.40521 0.196796 0.127104)
(-1.39932 0.129309 0.138819)
(-1.39353 0.0623787 0.14721)
(-1.38951 0.0084862 0.1606)
(-1.38271 -0.0701454 0.187559)
(-1.29728 -0.134465 0.194482)
(-1.09979 -0.294494 0.256494)
(-0.993273 -0.427821 0.262247)
(-0.980887 -0.5686 0.250772)
(-0.994451 -0.713051 0.2306)
(-1.02117 -0.884792 0.212578)
(-1.05581 -1.0825 0.190755)
(-1.09689 -1.31506 0.169876)
(-1.14526 -1.57943 0.144406)
(-1.19751 -1.86828 0.118286)
(-1.24533 -2.15967 0.0900153)
(-1.28474 -2.41481 0.0546463)
(-1.27459 -2.56828 0.0295424)
(-1.21359 -2.5795 -0.000766181)
(-1.15511 -2.34938 -0.0228519)
(-0.971242 -1.80314 -0.060088)
(-0.547675 -1.06731 -0.11285)
(-0.161691 -0.403475 -0.15962)
(-0.0268875 -0.000111016 -0.169748)
(0.00606151 0.0451533 -0.0754595)
(-0.0310267 0.142366 -0.0285268)
(-0.181931 0.41403 -0.111638)
(-0.372524 0.659331 -0.166731)
(-0.550199 0.858823 -0.193736)
(-0.786136 0.986435 -0.193743)
(-1.02983 1.00877 -0.17256)
(-1.20229 1.00885 -0.145819)
(-1.27846 0.965247 -0.103822)
(-1.28923 0.881938 -0.0498028)
(-1.27403 0.771952 0.00483112)
(-1.25707 0.654277 0.0528286)
(-1.2495 0.544609 0.0936292)
(-1.25248 0.444551 0.127363)
(-1.2608 0.352655 0.151561)
(-1.26728 0.270709 0.168865)
(-1.26678 0.19487 0.177215)
(-1.25609 0.129581 0.181372)
(-1.24063 0.0692041 0.18245)
(-1.226 0.0186092 0.186209)
(-1.20437 -0.0341386 0.200485)
(-1.15632 -0.0864523 0.213524)
(-0.98792 -0.210653 0.261294)
(-0.859849 -0.361412 0.280594)
(-0.843954 -0.4938 0.265251)
(-0.851857 -0.632139 0.243542)
(-0.876275 -0.788137 0.222377)
(-0.907839 -0.971038 0.199635)
(-0.948988 -1.18739 0.178006)
(-1.00108 -1.44471 0.154491)
(-1.06172 -1.73937 0.131454)
(-1.12589 -2.05895 0.103754)
(-1.17992 -2.37319 0.0766481)
(-1.21778 -2.62601 0.0413564)
(-1.19919 -2.7325 0.0125349)
(-1.12676 -2.63901 -0.0132397)
(-1.00295 -2.21375 -0.0283784)
(-0.690422 -1.47003 -0.0655135)
(-0.231426 -0.649245 -0.115532)
(-0.0311159 -0.0939906 -0.137652)
(-0.00863204 0.0292381 -0.0705902)
(-0.0303224 0.215791 -0.0405569)
(-0.183412 0.537898 -0.132541)
(-0.372597 0.785082 -0.189666)
(-0.556873 0.970747 -0.211343)
(-0.797004 1.06202 -0.196386)
(-0.999222 1.07804 -0.164539)
(-1.10663 1.05888 -0.119743)
(-1.12912 0.987534 -0.0583115)
(-1.11699 0.880159 0.00576101)
(-1.10051 0.757001 0.0638916)
(-1.09813 0.639709 0.112179)
(-1.1079 0.534052 0.150743)
(-1.12558 0.439286 0.181345)
(-1.14164 0.352115 0.201658)
(-1.14954 0.273523 0.213243)
(-1.14487 0.199828 0.213197)
(-1.12666 0.136175 0.2095)
(-1.10065 0.0788614 0.202659)
(-1.0715 0.0310917 0.198317)
(-1.04366 -0.010842 0.206369)
(-1.00947 -0.0582208 0.213621)
(-0.890708 -0.142878 0.243108)
(-0.763968 -0.294017 0.274661)
(-0.727685 -0.426664 0.26006)
(-0.730784 -0.559164 0.239627)
(-0.748341 -0.702671 0.216518)
(-0.773696 -0.868387 0.194154)
(-0.808651 -1.06467 0.17308)
(-0.857181 -1.30299 0.151932)
(-0.920484 -1.58801 0.130908)
(-0.994451 -1.91903 0.107844)
(-1.06806 -2.27016 0.0818321)
(-1.12051 -2.59815 0.0544353)
(-1.14201 -2.8264 0.0220095)
(-1.0951 -2.8499 -0.00396886)
(-0.983537 -2.57639 -0.0191204)
(-0.757728 -1.89646 -0.0297371)
(-0.326696 -0.962613 -0.0696827)
(-0.0538032 -0.244535 -0.11073)
(-0.0223234 0.00811312 -0.0622947)
(-0.0259048 0.288528 -0.0575204)
(-0.172999 0.660035 -0.157573)
(-0.356941 0.909454 -0.215636)
(-0.550341 1.0768 -0.229489)
(-0.769694 1.13712 -0.200714)
(-0.915372 1.14615 -0.155011)
(-0.975698 1.09849 -0.0878531)
(-0.969446 0.997877 -0.0136368)
(-0.954415 0.873707 0.0590976)
(-0.952873 0.745589 0.114235)
(-0.968448 0.631571 0.161031)
(-0.993188 0.531051 0.197342)
(-1.02028 0.440405 0.225118)
(-1.03852 0.356191 0.240579)
(-1.04405 0.278138 0.244157)
(-1.03258 0.204849 0.235188)
(-1.00375 0.140317 0.22132)
(-0.966453 0.0840387 0.207817)
(-0.924956 0.0393715 0.198249)
(-0.889444 0.00369376 0.202924)
(-0.867866 -0.0344633 0.202188)
(-0.792892 -0.102853 0.217221)
(-0.688242 -0.225415 0.242341)
(-0.637686 -0.365477 0.239685)
(-0.628654 -0.491244 0.220697)
(-0.639329 -0.624793 0.199499)
(-0.656882 -0.774056 0.176873)
(-0.684016 -0.949874 0.157933)
(-0.724671 -1.16635 0.138491)
(-0.782248 -1.433 0.120484)
(-0.857133 -1.75703 0.0997685)
(-0.941069 -2.1278 0.0776204)
(-1.01755 -2.51019 0.0513755)
(-1.06016 -2.83261 0.0242712)
(-1.04554 -2.99243 -0.00375104)
(-0.949113 -2.8625 -0.0186617)
(-0.768362 -2.31795 -0.0207429)
(-0.418876 -1.34064 -0.0343175)
(-0.0758811 -0.439303 -0.0645274)
(-0.0154339 -0.0306935 -0.049061)
(-0.0186402 0.350761 -0.0691632)
(-0.150984 0.77097 -0.175896)
(-0.328731 1.0254 -0.233827)
(-0.522718 1.1667 -0.23689)
(-0.707323 1.21557 -0.2007)
(-0.805151 1.20594 -0.136271)
(-0.833548 1.12658 -0.0537755)
(-0.818632 1.00818 0.0308577)
(-0.815591 0.868898 0.0999319)
(-0.830258 0.742014 0.155353)
(-0.86092 0.632662 0.198944)
(-0.895334 0.535842 0.233287)
(-0.925817 0.447284 0.25761)
(-0.942595 0.363059 0.26627)
(-0.943446 0.284118 0.26209)
(-0.924346 0.209241 0.240776)
(-0.88606 0.142917 0.220157)
(-0.836996 0.0878465 0.200116)
(-0.784354 0.0446072 0.189304)
(-0.745302 0.0174666 0.197401)
(-0.738116 -0.0164767 0.192276)
(-0.696482 -0.0764172 0.190093)
(-0.626843 -0.172439 0.203232)
(-0.575521 -0.302486 0.201733)
(-0.54762 -0.434581 0.191323)
(-0.550147 -0.559231 0.173216)
(-0.559259 -0.696605 0.153935)
(-0.578131 -0.853399 0.137274)
(-0.609292 -1.04828 0.120905)
(-0.657561 -1.29212 0.106098)
(-0.725518 -1.59976 0.0900451)
(-0.80917 -1.96913 0.0720843)
(-0.896645 -2.38336 0.0503693)
(-0.96492 -2.7807 0.0235184)
(-0.978317 -3.0589 -0.000961352)
(-0.915103 -3.0752 -0.0230104)
(-0.75403 -2.68711 -0.0240873)
(-0.477169 -1.75263 -0.0157713)
(-0.109514 -0.658216 -0.0347909)
(-0.00218931 -0.0872582 -0.0344258)
(-0.00997181 0.402296 -0.0838888)
(-0.122258 0.871429 -0.197264)
(-0.295385 1.12858 -0.252914)
(-0.474985 1.24694 -0.248683)
(-0.619208 1.28942 -0.201526)
(-0.684429 1.25342 -0.120516)
(-0.693616 1.14522 -0.0245042)
(-0.685843 1.01028 0.0634054)
(-0.699499 0.866984 0.131048)
(-0.727587 0.743843 0.184164)
(-0.768787 0.637793 0.226085)
(-0.807509 0.543133 0.258888)
(-0.837812 0.453918 0.278987)
(-0.850898 0.368576 0.281466)
(-0.846413 0.287257 0.265762)
(-0.820204 0.21017 0.234992)
(-0.769946 0.142171 0.20198)
(-0.710633 0.0857271 0.179438)
(-0.645114 0.0454934 0.167667)
(-0.604889 0.0256073 0.185969)
(-0.619328 -0.00540392 0.18269)
(-0.60476 -0.0611293 0.16506)
(-0.561506 -0.137256 0.166172)
(-0.533346 -0.242906 0.155538)
(-0.495691 -0.374573 0.152917)
(-0.480025 -0.500996 0.141142)
(-0.481518 -0.630851 0.125745)
(-0.491989 -0.773452 0.112991)
(-0.514899 -0.948028 0.099326)
(-0.552252 -1.16927 0.0888109)
(-0.609951 -1.4542 0.0771468)
(-0.686422 -1.8123 0.0643098)
(-0.775362 -2.23772 0.0456124)
(-0.857992 -2.68738 0.0203397)
(-0.895706 -3.06565 -0.00418671)
(-0.871407 -3.22731 -0.0297026)
(-0.736718 -2.99172 -0.0367173)
(-0.498765 -2.16347 -0.0212221)
(-0.13621 -0.920794 -0.0137364)
(0.00939244 -0.145981 -0.0258055)
(-0.000105029 0.432858 -0.0886817)
(-0.093047 0.952883 -0.207568)
(-0.255933 1.21219 -0.261342)
(-0.412088 1.32112 -0.253005)
(-0.520533 1.35171 -0.195516)
(-0.566504 1.28796 -0.100774)
(-0.571955 1.16154 0.000379677)
(-0.572813 1.01067 0.089484)
(-0.600368 0.870905 0.154817)
(-0.639048 0.750998 0.205348)
(-0.685357 0.648057 0.245176)
(-0.724402 0.553598 0.275132)
(-0.75188 0.46263 0.290552)
(-0.760201 0.374939 0.282419)
(-0.750572 0.289701 0.257224)
(-0.717166 0.211674 0.210519)
(-0.66044 0.140759 0.174835)
(-0.589536 0.0866089 0.148429)
(-0.51128 0.0581965 0.145489)
(-0.47229 0.0366744 0.166473)
(-0.509888 0.00795131 0.175086)
(-0.518147 -0.0510049 0.141487)
(-0.492695 -0.118122 0.134084)
(-0.488841 -0.203183 0.120543)
(-0.463997 -0.315484 0.108423)
(-0.436762 -0.449438 0.107533)
(-0.423661 -0.577194 0.0958431)
(-0.4246 -0.710016 0.0880854)
(-0.439379 -0.868393 0.0779155)
(-0.467405 -1.06628 0.0717647)
(-0.513662 -1.32607 0.0648173)
(-0.58003 -1.665 0.0559991)
(-0.664623 -2.08942 0.0411443)
(-0.752855 -2.57273 0.0173106)
(-0.809679 -3.02894 -0.00730005)
(-0.815575 -3.32098 -0.0360288)
(-0.710682 -3.23821 -0.051339)
(-0.500702 -2.54181 -0.0312099)
(-0.156222 -1.2251 -0.00808585)
(0.0220435 -0.19041 -0.0132416)
(0.00924767 0.457224 -0.100412)
(-0.0656274 1.02562 -0.224944)
(-0.210236 1.29301 -0.278261)
(-0.337892 1.40248 -0.265355)
(-0.419776 1.41169 -0.196594)
(-0.454704 1.32456 -0.0917754)
(-0.464034 1.18121 0.0120919)
(-0.476719 1.02344 0.102941)
(-0.513077 0.883313 0.166143)
(-0.558561 0.764947 0.214296)
(-0.60627 0.661429 0.25284)
(-0.644071 0.565283 0.281585)
(-0.667537 0.471272 0.291475)
(-0.671501 0.381603 0.274609)
(-0.655863 0.296234 0.235443)
(-0.618017 0.216839 0.179036)
(-0.550763 0.149201 0.127271)
(-0.460357 0.102431 0.0879086)
(-0.378066 0.0664649 0.0774392)
(-0.348271 0.038308 0.132243)
(-0.41173 0.0203725 0.170345)
(-0.445198 -0.0447298 0.120093)
(-0.426673 -0.108638 0.105617)
(-0.437724 -0.179616 0.093193)
(-0.437823 -0.270203 0.0781734)
(-0.415531 -0.389692 0.0751939)
(-0.383988 -0.531199 0.0672357)
(-0.374779 -0.658587 0.0634604)
(-0.380359 -0.802003 0.0566593)
(-0.397174 -0.979675 0.0546023)
(-0.433686 -1.21487 0.0513827)
(-0.489743 -1.53203 0.0466825)
(-0.56868 -1.94551 0.0352827)
(-0.65627 -2.44864 0.0138586)
(-0.72817 -2.97063 -0.0119389)
(-0.754796 -3.38028 -0.0450232)
(-0.674553 -3.44223 -0.0660767)
(-0.490341 -2.89392 -0.0523366)
(-0.163647 -1.56018 -0.0126159)
(0.04259 -0.25121 -0.005495)
(0.0158405 0.453931 -0.0959017)
(-0.0376807 1.06721 -0.226771)
(-0.159174 1.36526 -0.282218)
(-0.263512 1.46968 -0.264393)
(-0.327338 1.46128 -0.188416)
(-0.357342 1.35195 -0.0753301)
(-0.373702 1.19789 0.0305647)
(-0.396377 1.03775 0.120456)
(-0.440273 0.899625 0.179652)
(-0.487528 0.781804 0.224838)
(-0.532579 0.678119 0.261354)
(-0.564193 0.580675 0.28561)
(-0.580042 0.484248 0.286356)
(-0.576156 0.396598 0.253959)
(-0.558141 0.31112 0.19791)
(-0.51387 0.247731 0.120354)
(-0.436489 0.193765 0.0415485)
(-0.352129 0.136422 0.00131822)
(-0.267949 0.0657468 -0.00219992)
(-0.223389 0.0261687 0.0898862)
(-0.30896 0.0176198 0.16271)
(-0.376094 -0.0414499 0.0959972)
(-0.360735 -0.106874 0.0771002)
(-0.381697 -0.168867 0.0686289)
(-0.397152 -0.244787 0.0536355)
(-0.405204 -0.333713 0.0516021)
(-0.373973 -0.4601 0.0427992)
(-0.335396 -0.600157 0.0424599)
(-0.332525 -0.743789 0.0382742)
(-0.34299 -0.90243 0.0389773)
(-0.36905 -1.11053 0.0383255)
(-0.411581 -1.40173 0.0367162)
(-0.48209 -1.8007 0.0299994)
(-0.569819 -2.31543 0.0116887)
(-0.653401 -2.88872 -0.0147755)
(-0.698355 -3.40335 -0.0530491)
(-0.644696 -3.6109 -0.0782524)
(-0.481979 -3.20928 -0.0733549)
(-0.177283 -1.89022 -0.0234683)
(0.0511239 -0.298357 -0.00271272)
(0.0102343 0.467403 -0.10859)
(-0.00907847 1.13567 -0.245012)
(-0.102268 1.46666 -0.30301)
(-0.197128 1.57083 -0.280442)
(-0.240578 1.54083 -0.195219)
(-0.267429 1.41919 -0.074982)
(-0.287607 1.2528 0.0359678)
(-0.31878 1.09042 0.124496)
(-0.365198 0.94764 0.180001)
(-0.410763 0.825398 0.220858)
(-0.448482 0.716827 0.252868)
(-0.474892 0.617074 0.271195)
(-0.48334 0.520284 0.261822)
(-0.475907 0.443849 0.213105)
(-0.44267 0.380806 0.142252)
(-0.386288 0.345584 0.0469274)
(-0.33263 0.279752 -0.0383562)
(-0.276726 0.187514 -0.101819)
(-0.188579 0.0882981 -0.0820895)
(-0.107584 0.0322637 0.0481228)
(-0.199665 0.0280084 0.153236)
(-0.305273 -0.0324827 0.0727787)
(-0.298724 -0.100254 0.0476872)
(-0.323203 -0.162387 0.0458829)
(-0.34697 -0.230937 0.031315)
(-0.364016 -0.299882 0.0341779)
(-0.365403 -0.387038 0.024729)
(-0.339367 -0.507234 0.0247008)
(-0.305092 -0.650522 0.0204184)
(-0.290707 -0.817255 0.0229138)
(-0.308381 -1.01728 0.0247061)
(-0.341763 -1.28281 0.0272358)
(-0.402599 -1.6531 0.0240098)
(-0.481861 -2.16817 0.00895654)
(-0.571969 -2.78817 -0.0189842)
(-0.634892 -3.40595 -0.0605837)
(-0.607519 -3.76226 -0.0919051)
(-0.469279 -3.51785 -0.0950476)
(-0.182157 -2.24472 -0.0417267)
(0.0617695 -0.396424 -0.00212588)
(0.0100752 0.490049 -0.106957)
(-0.00664043 1.2248 -0.245542)
(-0.050711 1.57049 -0.310048)
(-0.112926 1.68431 -0.282855)
(-0.155105 1.64241 -0.199425)
(-0.178278 1.51326 -0.0715704)
(-0.206544 1.3415 0.0384581)
(-0.244009 1.17586 0.127761)
(-0.293082 1.03089 0.179802)
(-0.332491 0.905242 0.216671)
(-0.360181 0.803359 0.243269)
(-0.375884 0.717 0.250014)
(-0.366593 0.638562 0.220983)
(-0.335272 0.580211 0.155919)
(-0.292434 0.525808 0.0868072)
(-0.272478 0.474319 -0.0131746)
(-0.274465 0.402642 -0.117458)
(-0.240418 0.308312 -0.184106)
(-0.13246 0.200716 -0.179442)
(0.00234791 0.120197 0.00864031)
(-0.0931488 0.0659666 0.134844)
(-0.240329 -0.00910512 0.0540165)
(-0.239651 -0.0839608 0.0192696)
(-0.267986 -0.150153 0.0244365)
(-0.293078 -0.215729 0.0131349)
(-0.313122 -0.277223 0.0201215)
(-0.320937 -0.344917 0.0130864)
(-0.316662 -0.423611 0.0151302)
(-0.314611 -0.530778 0.0123063)
(-0.297172 -0.677282 0.0122429)
(-0.281702 -0.859098 0.0120823)
(-0.280826 -1.11809 0.0145696)
(-0.320994 -1.484 0.0165813)
(-0.394158 -1.99311 0.00738898)
(-0.491254 -2.63348 -0.0188684)
(-0.570257 -3.34604 -0.0657473)
(-0.579365 -3.85307 -0.1032)
(-0.473954 -3.77922 -0.117648)
(-0.214255 -2.57488 -0.0657488)
(0.0497392 -0.445945 -0.011758)
(0.00153944 0.660288 -0.153223)
(0.0123179 1.45879 -0.301942)
(-0.0163336 1.8407 -0.358797)
(-0.0520467 1.92768 -0.329994)
(-0.0666738 1.87536 -0.227597)
(-0.0951566 1.73207 -0.0979954)
(-0.13282 1.56209 0.0115355)
(-0.178444 1.40852 0.0977455)
(-0.223182 1.26688 0.143799)
(-0.242205 1.13962 0.170173)
(-0.239581 1.0307 0.175764)
(-0.238862 0.931966 0.165137)
(-0.222457 0.836811 0.131021)
(-0.206571 0.755819 0.0867412)
(-0.189478 0.673098 0.028783)
(-0.173788 0.614531 -0.0588902)
(-0.18876 0.582468 -0.131513)
(-0.190065 0.553985 -0.192812)
(-0.0930961 0.464024 -0.212589)
(0.0425792 0.286566 -0.029708)
(-0.0456101 0.157642 0.126393)
(-0.186865 0.0396518 0.036587)
(-0.187951 -0.0503386 -0.000313763)
(-0.212174 -0.12906 0.00862604)
(-0.238837 -0.195723 0.000713483)
(-0.258133 -0.255958 0.010689)
(-0.268657 -0.315679 0.00616358)
(-0.266405 -0.383728 0.00969315)
(-0.268679 -0.456258 0.00827868)
(-0.266141 -0.553421 0.0105578)
(-0.276148 -0.684382 0.0123381)
(-0.291007 -0.895305 0.0144265)
(-0.308819 -1.21525 0.0152603)
(-0.321292 -1.71598 0.00318751)
(-0.391067 -2.4074 -0.0217373)
(-0.480446 -3.19608 -0.0658575)
(-0.517074 -3.85732 -0.112398)
(-0.455621 -3.9893 -0.131917)
(-0.219324 -2.94279 -0.0847974)
(0.0598425 -0.619376 -0.0145039)
(-0.0226979 0.762538 -0.133686)
(-0.0129247 1.6351 -0.291383)
(-0.00133727 2.05242 -0.361089)
(-0.0113636 2.16254 -0.333438)
(-0.014186 2.10027 -0.23782)
(-0.030031 1.93891 -0.100967)
(-0.0466174 1.76605 0.0111416)
(-0.0977448 1.61473 0.0946758)
(-0.152762 1.48714 0.1381)
(-0.166632 1.35755 0.156038)
(-0.162491 1.22908 0.154163)
(-0.161835 1.10161 0.142197)
(-0.14086 0.975174 0.105418)
(-0.116656 0.875464 0.0673202)
(-0.0766283 0.794872 0.023856)
(-0.0323027 0.781389 -0.0226535)
(-0.0372229 0.816601 -0.0399429)
(-0.0875471 0.874471 8.51365e-05)
(-0.124879 0.829325 -0.0609426)
(-0.0208516 0.539459 -0.0262812)
(-0.0567356 0.30258 0.116198)
(-0.172847 0.116508 0.0181147)
(-0.15255 -0.00615854 -0.0158599)
(-0.168709 -0.0994036 0.00070711)
(-0.18518 -0.171364 -0.00321067)
(-0.204204 -0.23294 0.00770578)
(-0.218133 -0.289043 0.00472104)
(-0.217025 -0.35239 0.00707877)
(-0.220732 -0.41461 0.00316274)
(-0.213802 -0.49366 0.00360125)
(-0.21635 -0.58412 0.00632866)
(-0.229566 -0.725175 0.0126348)
(-0.283135 -0.948658 0.0215369)
(-0.368819 -1.36966 0.0255626)
(-0.411218 -2.00999 -0.00367311)
(-0.434185 -2.86717 -0.0647458)
(-0.488972 -3.66179 -0.117382)
(-0.458918 -4.0304 -0.151813)
(-0.271056 -3.2378 -0.109377)
(0.0172768 -0.92619 -0.0346146)
(-0.0158832 0.713217 -0.131788)
(0.00410112 1.61632 -0.28821)
(0.0282577 2.06811 -0.353957)
(0.0334442 2.20961 -0.335495)
(0.0400764 2.16538 -0.242369)
(0.0306036 2.01664 -0.109458)
(0.0132898 1.84097 0.00259484)
(-0.0164635 1.67192 0.0854674)
(-0.0638906 1.54499 0.126779)
(-0.0947977 1.4248 0.144939)
(-0.0824312 1.28762 0.140908)
(-0.0757832 1.16111 0.136141)
(-0.0413737 1.03576 0.105978)
(-0.00435501 0.937071 0.085339)
(0.0702351 0.889538 0.0745884)
(0.17473 0.923684 0.104035)
(0.197708 1.01477 0.209732)
(0.0808427 1.13295 0.412662)
(-0.167512 1.17661 0.392522)
(-0.206732 0.909354 0.195894)
(-0.189447 0.477541 0.144711)
(-0.215036 0.19981 0.0327028)
(-0.142177 0.0391943 -0.0154553)
(-0.128996 -0.0657011 0.00223523)
(-0.134874 -0.143461 -0.000205564)
(-0.147156 -0.210747 0.0117119)
(-0.162966 -0.266566 0.00786636)
(-0.163203 -0.328842 0.00710904)
(-0.16617 -0.386395 0.00221281)
(-0.15785 -0.458007 0.00128171)
(-0.157199 -0.536131 0.00260974)
(-0.156725 -0.656515 0.00608434)
(-0.184688 -0.829457 0.0113837)
(-0.257525 -1.14626 0.0104385)
(-0.385893 -1.64572 0.0105069)
(-0.454227 -2.43582 -0.0498195)
(-0.496433 -3.26078 -0.11478)
(-0.503842 -3.80179 -0.153666)
(-0.368589 -3.27101 -0.123342)
(-0.0691113 -1.00518 -0.0436705)
(-0.00621108 0.692424 -0.116184)
(0.0270846 1.57109 -0.25776)
(0.0615296 2.03911 -0.330464)
(0.0767137 2.2069 -0.318341)
(0.088118 2.18253 -0.236203)
(0.0815641 2.04938 -0.110444)
(0.0662182 1.88519 -0.00101752)
(0.0328739 1.7187 0.0798818)
(0.00774096 1.57155 0.122909)
(-0.018351 1.45228 0.149456)
(-0.0213264 1.31626 0.147519)
(-0.00778633 1.17396 0.147741)
(0.0341463 1.04496 0.124123)
(0.114361 0.941519 0.110449)
(0.261652 0.918261 0.17261)
(0.421736 0.948397 0.324229)
(0.474121 1.01713 0.548014)
(0.340913 1.09431 0.874911)
(-0.0976345 1.14998 1.00195)
(-0.450528 1.02798 0.678231)
(-0.490246 0.55966 0.299844)
(-0.329872 0.231132 0.0771862)
(-0.151102 0.0653147 0.0159807)
(-0.0981151 -0.0377666 0.0243233)
(-0.0890664 -0.114137 0.018375)
(-0.0962391 -0.1883 0.0218506)
(-0.111166 -0.246534 0.0162648)
(-0.112286 -0.309817 0.012586)
(-0.116384 -0.365155 0.0044086)
(-0.106608 -0.43335 0.000419989)
(-0.104958 -0.502397 -6.12542e-05)
(-0.102218 -0.610355 0.00272116)
(-0.128842 -0.759985 0.00852456)
(-0.183334 -1.03726 0.00961656)
(-0.286276 -1.4601 0.00386244)
(-0.368009 -2.10908 -0.0450096)
(-0.449077 -2.88877 -0.108627)
(-0.488349 -3.51647 -0.151034)
(-0.388911 -3.20216 -0.132141)
(-0.114359 -1.06226 -0.0467904)
(-0.00176502 0.640756 -0.102369)
(0.0472848 1.49293 -0.235495)
(0.0951625 1.98112 -0.309295)
(0.118084 2.17382 -0.3054)
(0.132932 2.16995 -0.232162)
(0.12972 2.05146 -0.11439)
(0.118204 1.89771 -0.00645019)
(0.0903348 1.73763 0.0744718)
(0.0636453 1.59406 0.120672)
(0.0386404 1.44987 0.147748)
(0.0361585 1.31602 0.152862)
(0.0518623 1.16781 0.153943)
(0.117696 1.02631 0.136409)
(0.244064 0.906136 0.14231)
(0.432532 0.84346 0.259968)
(0.60895 0.799082 0.503854)
(0.657172 0.770483 0.819422)
(0.503994 0.702784 1.16831)
(0.0276962 0.637028 1.35535)
(-0.532138 0.628107 1.07353)
(-0.711446 0.397115 0.486074)
(-0.431208 0.181054 0.116388)
(-0.141756 0.0625571 0.0557443)
(-0.0520129 -0.0227031 0.0537033)
(-0.0401151 -0.0910916 0.0463628)
(-0.0446774 -0.164362 0.0424453)
(-0.0570715 -0.224151 0.0304905)
(-0.0569836 -0.290076 0.0206029)
(-0.0595397 -0.345144 0.0109017)
(-0.0483849 -0.413243 0.00321802)
(-0.0472244 -0.479406 0.000488679)
(-0.0405834 -0.581668 0.00132601)
(-0.0607672 -0.715462 0.00788706)
(-0.100662 -0.960356 0.00935506)
(-0.190669 -1.33145 0.00418573)
(-0.282221 -1.93503 -0.0380195)
(-0.390573 -2.67712 -0.0976997)
(-0.451215 -3.37495 -0.144174)
(-0.385742 -3.24047 -0.133026)
(-0.140331 -1.27531 -0.0474882)
(0.00225107 0.587484 -0.0848328)
(0.0638734 1.40652 -0.207239)
(0.124727 1.91267 -0.284242)
(0.156227 2.13196 -0.288901)
(0.175664 2.14915 -0.225447)
(0.175061 2.04603 -0.117655)
(0.166351 1.89958 -0.0110037)
(0.13968 1.74412 0.0684801)
(0.115402 1.59848 0.117823)
(0.0922226 1.45659 0.145026)
(0.0846063 1.31491 0.151897)
(0.0961681 1.16337 0.14849)
(0.167374 1.00971 0.130272)
(0.312655 0.849608 0.134165)
(0.518234 0.705665 0.231556)
(0.693735 0.557764 0.510501)
(0.702038 0.40493 0.877808)
(0.515312 0.207347 1.24229)
(0.117963 0.0530185 1.40803)
(-0.410327 0.0511091 1.12091)
(-0.652814 0.0833754 0.555078)
(-0.387158 0.0874934 0.177437)
(-0.0854868 0.0322674 0.109628)
(0.00723872 -0.0259776 0.113072)
(0.0186089 -0.0831083 0.0974818)
(0.0104372 -0.14683 0.0832429)
(-0.00495404 -0.205359 0.0611785)
(-0.0058894 -0.272699 0.0406694)
(-0.0107886 -0.328943 0.0222596)
(-0.00249535 -0.399354 0.00983783)
(-0.0071847 -0.462401 0.00236949)
(-0.00412854 -0.557452 0.000133594)
(-0.0258882 -0.672942 0.00673173)
(-0.0502131 -0.898343 0.0104032)
(-0.127873 -1.24836 0.00307376)
(-0.212076 -1.83954 -0.0355871)
(-0.3274 -2.58276 -0.0976256)
(-0.397207 -3.35274 -0.151352)
(-0.366839 -3.36427 -0.1476)
(-0.139977 -1.51248 -0.064502)
(0.00453465 0.530202 -0.0704565)
(0.0763892 1.3108 -0.182763)
(0.149112 1.8348 -0.262482)
(0.188778 2.08495 -0.276129)
(0.21517 2.12635 -0.223222)
(0.218415 2.04044 -0.125352)
(0.213778 1.90213 -0.0224042)
(0.190236 1.74932 0.0568204)
(0.16582 1.60383 0.107904)
(0.143744 1.46115 0.135286)
(0.135193 1.31986 0.14137)
(0.141596 1.16882 0.133516)
(0.197073 1.0127 0.106149)
(0.324949 0.827897 0.0993406)
(0.511634 0.619068 0.148961)
(0.662615 0.375221 0.342062)
(0.6431 0.12108 0.639877)
(0.477163 -0.12717 0.986911)
(0.18929 -0.283029 1.17343)
(-0.202555 -0.321394 0.968498)
(-0.383723 -0.162902 0.511795)
(-0.200996 -0.0276805 0.216026)
(0.0172662 -0.01818 0.162224)
(0.0965092 -0.0457287 0.161059)
(0.0935656 -0.0877727 0.142585)
(0.0793681 -0.141836 0.120427)
(0.0564302 -0.192077 0.0915382)
(0.0536555 -0.256444 0.0637372)
(0.0464046 -0.312425 0.0405115)
(0.055163 -0.380989 0.0236441)
(0.0516681 -0.441249 0.0131733)
(0.0588939 -0.532985 0.00736884)
(0.0294461 -0.641643 0.0100412)
(0.00192649 -0.851883 0.0112597)
(-0.0658594 -1.19392 0.0141812)
(-0.142955 -1.79657 -0.0258786)
(-0.272071 -2.57832 -0.0910008)
(-0.354026 -3.45687 -0.152056)
(-0.361888 -3.62085 -0.155806)
(-0.146087 -1.82187 -0.0707229)
(0.0099195 0.471322 -0.0552246)
(0.0908691 1.19869 -0.155725)
(0.172023 1.73592 -0.238389)
(0.217477 2.0173 -0.261681)
(0.249662 2.08661 -0.220296)
(0.257805 2.02016 -0.133185)
(0.257205 1.89028 -0.0352216)
(0.237414 1.74369 0.0431753)
(0.213332 1.59928 0.0953744)
(0.192557 1.45931 0.122862)
(0.181784 1.32145 0.128324)
(0.184426 1.17477 0.118188)
(0.223731 1.02355 0.0869834)
(0.310585 0.842677 0.0703139)
(0.442771 0.622601 0.0781708)
(0.556392 0.348893 0.145897)
(0.544855 0.0685417 0.269707)
(0.445263 -0.159276 0.49545)
(0.247291 -0.315927 0.686246)
(0.0190678 -0.359896 0.617142)
(-0.0606506 -0.222417 0.406963)
(0.0452958 -0.0856277 0.248754)
(0.174717 -0.0483458 0.193463)
(0.20924 -0.0646588 0.198707)
(0.185688 -0.100379 0.174141)
(0.161537 -0.151317 0.14779)
(0.128641 -0.196609 0.115373)
(0.117524 -0.260132 0.0816821)
(0.107167 -0.321725 0.0518575)
(0.114175 -0.409328 0.0306028)
(0.100523 -0.498433 0.0179949)
(0.0950484 -0.618801 0.00958155)
(0.0677593 -0.749091 0.0101906)
(0.0310333 -0.970021 0.00839987)
(-0.0445994 -1.29269 0.0127304)
(-0.102547 -1.90817 -0.0230822)
(-0.233955 -2.72279 -0.0931762)
(-0.31064 -3.73078 -0.161914)
(-0.327009 -4.08462 -0.176105)
(-0.131711 -2.40124 -0.0933675)
(0.00896657 0.423252 -0.0458489)
(0.1006 1.09051 -0.130128)
(0.194826 1.63028 -0.214069)
(0.241575 1.9492 -0.248614)
(0.278473 2.0504 -0.219753)
(0.29311 2.00824 -0.143769)
(0.299907 1.88992 -0.0512566)
(0.285959 1.74905 0.0262199)
(0.264379 1.60634 0.0797376)
(0.245802 1.46833 0.10881)
(0.234582 1.33498 0.115334)
(0.234567 1.19502 0.105288)
(0.26039 1.0518 0.0757456)
(0.317859 0.883536 0.053428)
(0.402467 0.691399 0.0441195)
(0.480162 0.453484 0.0692862)
(0.490651 0.212658 0.112873)
(0.432908 0.015726 0.179259)
(0.315956 -0.125792 0.250454)
(0.20582 -0.170585 0.255867)
(0.198738 -0.135185 0.212885)
(0.271443 -0.0590248 0.182742)
(0.326969 -0.0504122 0.182516)
(0.32504 -0.0745402 0.194286)
(0.280197 -0.104287 0.177637)
(0.248843 -0.150337 0.156721)
(0.20663 -0.188517 0.127709)
(0.183618 -0.248122 0.0977167)
(0.150937 -0.320175 0.0668092)
(0.134224 -0.439613 0.0478137)
(0.10229 -0.551529 0.0338676)
(0.0928534 -0.699344 0.0168452)
(0.0536271 -0.82712 0.0145894)
(0.0361154 -1.04041 0.0179574)
(-0.0396382 -1.34071 0.0146025)
(-0.0894651 -1.95276 -0.0103126)
(-0.222672 -2.8088 -0.0884384)
(-0.303693 -3.96018 -0.162854)
(-0.33988 -4.53924 -0.187601)
(-0.15237 -3.04802 -0.109119)
(0.00828426 0.365607 -0.0374717)
(0.103201 0.970331 -0.110024)
(0.218838 1.49265 -0.18311)
(0.271099 1.84256 -0.231367)
(0.302103 1.9814 -0.216021)
(0.321819 1.96669 -0.152535)
(0.336046 1.86702 -0.0648146)
(0.330135 1.73154 0.00974806)
(0.312215 1.595 0.0645127)
(0.297458 1.46115 0.0960292)
(0.287118 1.33456 0.105669)
(0.286039 1.20421 0.0982338)
(0.302593 1.07275 0.0731229)
(0.342097 0.922333 0.0486419)
(0.400087 0.758947 0.0338195)
(0.456389 0.568441 0.0435363)
(0.472713 0.37572 0.0622752)
(0.458822 0.19679 0.0933356)
(0.402897 0.069792 0.123274)
(0.339077 -0.000121153 0.123293)
(0.369896 -0.0241494 0.1069)
(0.440674 -0.0116891 0.105766)
(0.461379 -0.0264425 0.130279)
(0.448172 -0.0615449 0.171061)
(0.394945 -0.0883883 0.169826)
(0.354346 -0.124792 0.156105)
(0.302299 -0.152137 0.130333)
(0.253989 -0.203033 0.104978)
(0.181736 -0.299718 0.0786307)
(0.149728 -0.417564 0.0583262)
(0.114359 -0.517051 0.0424111)
(0.115407 -0.660644 0.0293122)
(0.0869856 -0.765466 0.0274902)
(0.0558668 -0.98696 0.0182633)
(-0.0353316 -1.23169 0.0209563)
(-0.0699428 -1.8321 -0.00397283)
(-0.21404 -2.68796 -0.0825988)
(-0.299804 -3.96047 -0.165903)
(-0.362628 -4.76806 -0.199297)
(-0.17973 -3.53277 -0.122984)
(0.00538472 0.324337 -0.0281525)
(0.0961539 0.87726 -0.0931634)
(0.230376 1.374 -0.158386)
(0.302734 1.73684 -0.20626)
(0.327698 1.91958 -0.212716)
(0.34677 1.93668 -0.1616)
(0.368528 1.86043 -0.0877468)
(0.374813 1.73193 -0.00707534)
(0.367222 1.59927 0.047394)
(0.35659 1.46649 0.0842094)
(0.349926 1.3438 0.0992807)
(0.349827 1.22069 0.098114)
(0.361195 1.10042 0.0802333)
(0.390204 0.968434 0.0572349)
(0.433836 0.8283 0.0412067)
(0.47866 0.668182 0.0441015)
(0.492866 0.504657 0.0538075)
(0.491182 0.350709 0.0668933)
(0.476 0.215285 0.0825757)
(0.458041 0.12339 0.098782)
(0.522658 0.0728292 0.0949906)
(0.596197 0.0574125 0.0985816)
(0.593637 0.0237117 0.118733)
(0.570609 -0.0171069 0.152807)
(0.512968 -0.0513284 0.162417)
(0.47401 -0.0841759 0.151617)
(0.413744 -0.100606 0.130515)
(0.317391 -0.151306 0.110586)
(0.218296 -0.252078 0.0846782)
(0.204266 -0.355472 0.0670653)
(0.15014 -0.440205 0.0507787)
(0.145937 -0.576537 0.0403684)
(0.085209 -0.684296 0.0351648)
(0.0835533 -0.898013 0.0360732)
(-0.0138607 -1.1205 0.0230741)
(-0.0559777 -1.67288 0.0106987)
(-0.195561 -2.50491 -0.0750813)
(-0.290103 -3.85467 -0.161267)
(-0.376448 -4.86804 -0.205859)
(-0.203451 -3.93837 -0.136881)
(0.00769569 0.275138 -0.0197889)
(0.0889428 0.770245 -0.0778484)
(0.222805 1.23977 -0.136468)
(0.327699 1.58718 -0.177404)
(0.361004 1.80015 -0.1982)
(0.368146 1.85418 -0.165506)
(0.39062 1.80742 -0.101188)
(0.406027 1.69531 -0.0255284)
(0.411584 1.56999 0.0311269)
(0.408041 1.44009 0.0736139)
(0.407784 1.32129 0.0958498)
(0.41181 1.20515 0.103406)
(0.423634 1.09456 0.0963172)
(0.447264 0.977369 0.0827012)
(0.478513 0.854022 0.0688485)
(0.511463 0.714913 0.070977)
(0.531673 0.574023 0.0727102)
(0.541574 0.443278 0.0757451)
(0.546059 0.317131 0.0818978)
(0.558734 0.212151 0.0996025)
(0.655522 0.142117 0.0956443)
(0.735775 0.108252 0.108461)
(0.719051 0.0612912 0.133554)
(0.695196 0.0182778 0.156287)
(0.637597 -0.0125224 0.155094)
(0.604368 -0.0447333 0.148846)
(0.533233 -0.05301 0.12796)
(0.395273 -0.0899224 0.111924)
(0.270588 -0.168275 0.0887406)
(0.261784 -0.275035 0.0728519)
(0.194825 -0.35678 0.0569669)
(0.183028 -0.492195 0.0457535)
(0.111382 -0.590334 0.0416607)
(0.0999956 -0.787591 0.0420382)
(0.001794 -0.998057 0.0373904)
(-0.022074 -1.50448 0.0142295)
(-0.179497 -2.29089 -0.0620779)
(-0.262872 -3.68607 -0.160209)
(-0.391652 -4.87922 -0.209519)
(-0.224393 -4.29569 -0.14912)
(0.00210762 0.251282 -0.0163294)
(0.0717815 0.705505 -0.069231)
(0.195475 1.14568 -0.121465)
(0.321553 1.4921 -0.159768)
(0.391569 1.69758 -0.175346)
(0.401976 1.79255 -0.164278)
(0.417976 1.77011 -0.113815)
(0.441294 1.67959 -0.0513627)
(0.459397 1.55812 0.0123831)
(0.466682 1.42838 0.0590873)
(0.474565 1.30818 0.0901507)
(0.483429 1.19202 0.107201)
(0.496166 1.08382 0.11162)
(0.51607 0.973973 0.109991)
(0.540367 0.862599 0.103107)
(0.569479 0.744056 0.100441)
(0.593063 0.625901 0.0949902)
(0.607259 0.509614 0.0958938)
(0.623185 0.393395 0.0980596)
(0.657858 0.283934 0.112652)
(0.784467 0.199879 0.106241)
(0.876283 0.154817 0.124314)
(0.851684 0.102342 0.142138)
(0.831758 0.0585401 0.160124)
(0.773459 0.0335608 0.155446)
(0.743999 0.00347332 0.150972)
(0.675964 -0.00512233 0.135507)
(0.508114 -0.0342151 0.114421)
(0.333443 -0.0755234 0.0902239)
(0.324384 -0.185654 0.0776095)
(0.242926 -0.255604 0.0614368)
(0.23028 -0.393354 0.0516815)
(0.135235 -0.477611 0.0463404)
(0.12682 -0.675712 0.0479395)
(0.0157616 -0.854918 0.0474901)
(0.00578011 -1.33442 0.0229238)
(-0.160098 -2.07367 -0.0530813)
(-0.234302 -3.495 -0.153069)
(-0.406377 -4.85152 -0.210278)
(-0.252459 -4.6504 -0.157145)
(0.00861404 0.210612 -0.0155285)
(0.0579737 0.6157 -0.0663605)
(0.162553 1.02505 -0.111255)
(0.289097 1.35426 -0.147856)
(0.390347 1.55371 -0.160103)
(0.431572 1.65254 -0.15348)
(0.434744 1.6691 -0.117975)
(0.458923 1.59544 -0.0631632)
(0.485017 1.49275 -0.00803801)
(0.504745 1.36915 0.0449396)
(0.525518 1.25206 0.0784803)
(0.541406 1.14178 0.102587)
(0.559778 1.0384 0.114586)
(0.582526 0.937385 0.119679)
(0.60733 0.839287 0.117454)
(0.635097 0.738592 0.116461)
(0.6593 0.637622 0.111728)
(0.675677 0.535669 0.113715)
(0.699577 0.430823 0.111124)
(0.747349 0.321692 0.11956)
(0.901598 0.228135 0.110206)
(1.01298 0.17826 0.128677)
(0.984724 0.125165 0.139538)
(0.973184 0.0836441 0.152839)
(0.915037 0.0645672 0.145918)
(0.888299 0.0440362 0.139839)
(0.809921 0.0395402 0.128566)
(0.637148 0.0137154 0.118156)
(0.428801 -0.0122408 0.0936406)
(0.395888 -0.0890067 0.0797095)
(0.305116 -0.161674 0.0638194)
(0.287822 -0.289847 0.0528312)
(0.177829 -0.365101 0.0487689)
(0.159458 -0.559279 0.047796)
(0.0393561 -0.714232 0.0514959)
(0.0319063 -1.18577 0.0223551)
(-0.147267 -1.84881 -0.0440061)
(-0.194758 -3.30164 -0.14883)
(-0.438102 -4.81518 -0.21)
(-0.283556 -5.05563 -0.164478)
(-0.00063194 0.205469 -0.0191103)
(0.0298122 0.593448 -0.0689)
(0.105131 0.973111 -0.112721)
(0.231063 1.30494 -0.14469)
(0.358529 1.49473 -0.158803)
(0.45039 1.57527 -0.149772)
(0.471866 1.60991 -0.127107)
(0.483325 1.54479 -0.0840819)
(0.523443 1.45179 -0.0340035)
(0.550442 1.33751 0.00832846)
(0.584381 1.22099 0.0501211)
(0.614836 1.1108 0.0821908)
(0.638754 1.00715 0.0986629)
(0.665543 0.911505 0.109303)
(0.691759 0.818289 0.111505)
(0.719027 0.725893 0.113395)
(0.742086 0.635936 0.109098)
(0.757424 0.545085 0.111032)
(0.784667 0.451265 0.108075)
(0.839533 0.343303 0.114946)
(1.02116 0.250302 0.105509)
(1.15808 0.201005 0.122511)
(1.13013 0.152109 0.12699)
(1.12813 0.113539 0.135301)
(1.07339 0.100211 0.128161)
(1.04795 0.0867908 0.12255)
(0.968147 0.0994548 0.112187)
(0.775292 0.077636 0.102924)
(0.544941 0.0560154 0.0836071)
(0.500884 -0.00569422 0.0753274)
(0.36848 -0.0528208 0.0592511)
(0.365264 -0.174137 0.0521047)
(0.222494 -0.219229 0.0464239)
(0.216798 -0.415212 0.0466078)
(0.0524769 -0.540554 0.0497809)
(0.0800816 -0.996731 0.0235499)
(-0.126552 -1.61973 -0.0443946)
(-0.173051 -3.06969 -0.149568)
(-0.483877 -4.77063 -0.21036)
(-0.323538 -5.55176 -0.173577)
(0.0141134 0.182033 -0.0274239)
(0.0210443 0.521176 -0.0829623)
(0.0547009 0.888749 -0.11557)
(0.159719 1.17207 -0.151407)
(0.275831 1.36391 -0.163282)
(0.416524 1.422 -0.158373)
(0.47122 1.46106 -0.134689)
(0.48011 1.4122 -0.105905)
(0.529791 1.33359 -0.0621126)
(0.575218 1.23586 -0.0228801)
(0.619908 1.13869 0.0122307)
(0.65786 1.03673 0.041993)
(0.696008 0.94073 0.0661779)
(0.734281 0.850731 0.0841781)
(0.764788 0.763752 0.0902239)
(0.79643 0.679521 0.0943573)
(0.821144 0.5985 0.0911767)
(0.837702 0.516298 0.0936813)
(0.867774 0.431797 0.0910603)
(0.929983 0.324733 0.0957327)
(1.14063 0.239047 0.0864633)
(1.30573 0.191784 0.102773)
(1.27805 0.149425 0.103385)
(1.28572 0.1156 0.109986)
(1.23326 0.113998 0.10189)
(1.21888 0.111183 0.0985522)
(1.12731 0.14513 0.0873306)
(0.921892 0.121448 0.0844503)
(0.66505 0.129128 0.0728831)
(0.626211 0.0554325 0.0636467)
(0.477799 0.0479522 0.0538491)
(0.477591 -0.0640363 0.0418273)
(0.316503 -0.0906323 0.0353909)
(0.300552 -0.275015 0.0381678)
(0.120716 -0.376534 0.0333056)
(0.147216 -0.803374 0.0230609)
(-0.0698723 -1.40697 -0.0694312)
(-0.103844 -2.82638 -0.140031)
(-0.544009 -4.72546 -0.217355)
(-0.325492 -6.16127 -0.185769)
(-0.0193046 0.180158 -0.0353936)
(-0.0232668 0.565375 -0.10289)
(-0.0256452 0.879451 -0.136953)
(0.0391406 1.18856 -0.164113)
(0.17677 1.33702 -0.176115)
(0.35899 1.36658 -0.178407)
(0.469395 1.37154 -0.155889)
(0.489735 1.32058 -0.137148)
(0.549368 1.2382 -0.0994778)
(0.612465 1.14836 -0.0665486)
(0.678272 1.05738 -0.033163)
(0.72809 0.965728 -0.00706486)
(0.772877 0.883849 0.0145312)
(0.815278 0.798958 0.032618)
(0.850797 0.719404 0.0457258)
(0.889166 0.637479 0.05645)
(0.914837 0.559202 0.0574127)
(0.931644 0.48021 0.0629893)
(0.962253 0.408955 0.0639623)
(1.03226 0.307037 0.0686922)
(1.27292 0.239372 0.0590074)
(1.46641 0.19333 0.0747188)
(1.44288 0.156808 0.0735485)
(1.46609 0.12593 0.0779007)
(1.42117 0.129746 0.0718768)
(1.41832 0.132848 0.0692895)
(1.31104 0.180471 0.0594722)
(1.09758 0.163251 0.0579956)
(0.814578 0.200577 0.049664)
(0.781591 0.13978 0.0482933)
(0.620666 0.147244 0.0359584)
(0.630038 0.048802 0.0345384)
(0.444439 0.0256437 0.026614)
(0.458014 -0.117177 0.024835)
(0.241079 -0.190748 0.0234361)
(0.270712 -0.566607 0.00190873)
(0.0416788 -1.07781 -0.0476704)
(0.0594293 -2.51539 -0.177635)
(-0.549822 -4.57805 -0.203002)
(-0.251665 -6.75183 -0.202631)
(0.0431681 0.327101 -0.0616065)
(-0.00590266 0.509271 -0.131532)
(-0.0892835 0.773306 -0.166366)
(-0.0361183 0.95962 -0.191542)
(0.00152489 1.16077 -0.199051)
(0.206119 1.15093 -0.200788)
(0.386645 1.1635 -0.183059)
(0.443471 1.10566 -0.172746)
(0.523609 1.04205 -0.140098)
(0.61338 0.969581 -0.114003)
(0.698297 0.89608 -0.0842334)
(0.770655 0.818508 -0.0591731)
(0.832582 0.75377 -0.037255)
(0.886902 0.688119 -0.0190299)
(0.926434 0.627695 -0.0084268)
(0.964471 0.558299 0.000912161)
(0.992829 0.488334 0.00676609)
(1.02152 0.420236 0.0194131)
(1.06394 0.359143 0.0267819)
(1.15305 0.255922 0.0294834)
(1.42665 0.201385 0.0222814)
(1.64494 0.154244 0.0367193)
(1.6281 0.122057 0.0367888)
(1.66551 0.0934597 0.0425613)
(1.62683 0.119423 0.0306504)
(1.6483 0.118964 0.0290977)
(1.5276 0.196738 0.0208775)
(1.33697 0.183861 0.0257314)
(1.03914 0.252087 0.0194993)
(1.02539 0.20665 0.0193157)
(0.860324 0.231621 0.0121296)
(0.902198 0.13551 0.00716487)
(0.714299 0.11712 0.00299403)
(0.79548 -0.0106643 -0.00215732)
(0.536454 -0.0914352 -0.00728869)
(0.657893 -0.395949 -0.015026)
(0.312756 -0.832584 -0.0721516)
(0.447486 -2.11696 -0.139874)
(-0.253181 -4.38567 -0.243572)
(0.0123558 -7.27297 -0.213384)
(-0.217076 0.0830125 -0.0756796)
(-0.280877 0.70534 -0.168497)
(-0.261299 0.873363 -0.204618)
(-0.223608 1.01044 -0.227374)
(-0.1038 1.03725 -0.243767)
(0.0682436 1.05344 -0.2374)
(0.286389 0.983937 -0.227209)
(0.381121 0.929291 -0.219427)
(0.496737 0.865595 -0.193116)
(0.605682 0.808833 -0.173188)
(0.714896 0.750505 -0.148458)
(0.80867 0.690503 -0.126915)
(0.890671 0.635931 -0.106405)
(0.961103 0.581157 -0.0879804)
(1.01714 0.530729 -0.0736196)
(1.06842 0.476186 -0.0589154)
(1.11469 0.413695 -0.0488306)
(1.1667 0.358177 -0.0330687)
(1.22635 0.31619 -0.0223684)
(1.36192 0.224934 -0.0154056)
(1.69252 0.193878 -0.0207705)
(1.9806 0.142275 -0.00657251)
(1.99814 0.111086 -0.00734431)
(2.09539 0.0849302 -0.00523151)
(2.06935 0.10078 -0.00717477)
(2.12734 0.0782047 -0.0203058)
(2.00524 0.170962 -0.0221253)
(1.85168 0.151345 -0.0149623)
(1.53293 0.251637 -0.0184658)
(1.57653 0.225972 -0.0177737)
(1.40368 0.270362 -0.0171352)
(1.52862 0.185327 -0.0201266)
(1.32048 0.179577 -0.0219516)
(1.48735 0.0478269 -0.0266625)
(1.16784 -0.00830853 -0.0323048)
(1.36173 -0.231706 -0.0457161)
(0.922787 -0.510358 -0.0811098)
(1.13208 -1.48065 -0.14825)
(0.325745 -3.89276 -0.228614)
(0.485575 -7.17886 -0.231226)
(-0.72832 0.795692 -0.201964)
(-0.58609 0.403291 -0.286795)
(-0.71617 0.580944 -0.284702)
(-0.436505 0.609174 -0.289827)
(-0.289095 0.614462 -0.292852)
(0.00424812 0.666152 -0.290213)
(0.252402 0.633003 -0.273144)
(0.472165 0.602518 -0.270991)
(0.657727 0.568091 -0.250935)
(0.849074 0.536202 -0.236866)
(1.02953 0.499994 -0.217396)
(1.20053 0.46314 -0.200517)
(1.34942 0.430573 -0.183678)
(1.48354 0.402896 -0.167988)
(1.59066 0.381531 -0.155011)
(1.69405 0.349484 -0.140615)
(1.7963 0.300951 -0.129273)
(1.94226 0.270154 -0.117299)
(2.11318 0.235963 -0.109177)
(2.3921 0.132208 -0.0997393)
(2.81342 0.105633 -0.104052)
(3.23142 0.0466532 -0.0828738)
(3.3002 0.00547115 -0.0723794)
(3.45038 -0.0310605 -0.0611935)
(3.39068 -0.011541 -0.0688609)
(3.49263 -0.00493549 -0.06315)
(3.33497 0.0839092 -0.0670772)
(3.274 0.0856997 -0.0547681)
(2.89847 0.183766 -0.0628379)
(3.05488 0.19565 -0.0624832)
(2.85014 0.230516 -0.0597576)
(3.15551 0.16191 -0.0599672)
(2.87318 0.122378 -0.0598738)
(3.21248 0.0353243 -0.0633774)
(2.74527 -0.0296945 -0.0730541)
(3.10318 -0.21025 -0.0762261)
(2.44996 -0.496627 -0.0971505)
(2.82138 -1.13759 -0.133316)
(1.85356 -3.15847 -0.193684)
(1.32007 -6.08527 -0.213158)
(1.15843 1.46908 -0.091929)
(1.72378 0.719506 -0.128222)
(2.47125 0.567882 -0.138974)
(2.88867 0.352628 -0.144771)
(3.17558 0.286129 -0.146066)
(3.42497 0.220779 -0.150298)
(3.6714 0.216607 -0.150068)
(3.8866 0.187581 -0.161228)
(4.08253 0.178526 -0.163231)
(4.28929 0.166277 -0.164766)
(4.48723 0.156513 -0.161711)
(4.6881 0.14493 -0.158273)
(4.8543 0.135215 -0.154301)
(5.01096 0.125649 -0.14839)
(5.12199 0.121041 -0.143807)
(5.24513 0.116793 -0.135131)
(5.37657 0.0895429 -0.127307)
(5.58705 0.0744384 -0.121347)
(5.87002 0.091343 -0.122778)
(6.33229 0.0586802 -0.116189)
(6.75244 0.0375404 -0.120273)
(7.23781 0.0152751 -0.10039)
(7.25197 -0.00877336 -0.0822062)
(7.31826 -0.0511583 -0.0715312)
(7.12896 -0.0497134 -0.0629417)
(7.11784 -0.0591364 -0.054265)
(6.76848 -0.0259601 -0.0574859)
(6.74112 -0.0106808 -0.0476956)
(6.27199 0.0298527 -0.0571608)
(6.52247 0.0564486 -0.0596024)
(6.28269 0.0841893 -0.0582609)
(6.73554 0.0778436 -0.0563506)
(6.43193 0.048117 -0.0580126)
(6.8323 0.0144274 -0.0561784)
(6.29197 -0.0190406 -0.0620831)
(6.51617 -0.104821 -0.0699528)
(5.64163 -0.263562 -0.0810751)
(5.67692 -0.583758 -0.0987613)
(4.25721 -1.13962 -0.126849)
(2.77962 -2.52699 -0.162414)
(0.00272102 -0.000309436 0.00215987)
(0.0218827 -0.00401658 -0.00253837)
(0.0459885 -0.00330656 -0.00424959)
(0.0584442 -0.00142447 -0.00521081)
(0.0620063 0.0012999 -0.00237497)
(0.0547299 0.000665686 -0.00274463)
(0.0375349 0.00863349 -0.00233086)
(0.0181828 0.0172122 -0.00364795)
(-0.00657427 0.0214471 -0.0100587)
(-0.0486301 0.0175728 -0.0115941)
(-0.0987018 0.00908134 -0.0171148)
(-0.163318 0.000314912 -0.0235961)
(-0.234899 -0.00208982 -0.0289979)
(-0.322405 0.00298249 -0.0284413)
(-0.402866 0.0150171 -0.0358007)
(-0.523574 0.00539486 -0.0310057)
(-0.653311 0.00468068 -0.0110175)
(-0.802249 0.00102717 0.00147557)
(-0.902918 -0.00326607 0.0177005)
(-1.07559 0.00322646 0.0342313)
(-1.00536 0.0274273 0.0256881)
(-0.816412 0.0214127 0.0215588)
(-0.803527 0.0166071 0.0273167)
(-0.786067 -0.0129968 0.0336162)
(-0.775017 -0.0486519 0.0446748)
(-0.719285 -0.0811266 0.057729)
(-0.649801 -0.108319 0.0678862)
(-0.530184 -0.125014 0.076983)
(-0.386531 -0.138824 0.0805013)
(-0.195373 -0.141759 0.0819548)
(-0.0191244 -0.136587 0.0630082)
(0.210181 -0.0599407 0.0411891)
(0.433291 -0.0531834 0.0156653)
(0.513814 0.000614575 -0.0105686)
(0.481795 0.0295713 -0.0323447)
(0.366605 0.0497185 -0.0439091)
(0.230942 0.037302 -0.0488398)
(0.10716 0.0224998 -0.0477648)
(0.0296213 0.00759154 -0.0407473)
(-0.00180424 -0.00549248 -0.0194733)
(0.00784304 -0.0159095 -0.000908549)
(0.0391547 -0.030781 -0.0112229)
(0.0714997 -0.0254981 -0.0172772)
(0.0847243 -0.00902465 -0.0206211)
(0.0779053 -0.00133774 -0.0195817)
(0.0562694 0.00996969 -0.0235604)
(0.0141943 0.0233033 -0.0230925)
(-0.0581814 0.0499851 -0.0347926)
(-0.165175 0.0663462 -0.0352496)
(-0.311564 0.0830853 -0.0396139)
(-0.477539 0.107115 -0.0448975)
(-0.665765 0.133689 -0.0527754)
(-0.866967 0.162813 -0.0621425)
(-1.09009 0.185738 -0.0686559)
(-1.32629 0.184112 -0.0715875)
(-1.57259 0.146416 -0.0637225)
(-1.78377 0.116865 -0.0576629)
(-1.99263 0.0784244 -0.0494042)
(-2.13633 0.0458995 -0.0448524)
(-2.26281 0.016639 -0.0451033)
(-2.05656 0.0285254 -0.065197)
(-1.77875 -0.0296652 -0.0981419)
(-1.67233 -0.098529 -0.111436)
(-1.57178 -0.195198 -0.0979449)
(-1.48913 -0.28982 -0.100385)
(-1.35867 -0.377347 -0.0969781)
(-1.22105 -0.448324 -0.0994153)
(-1.04531 -0.494011 -0.101597)
(-0.856843 -0.51354 -0.11153)
(-0.624163 -0.508171 -0.11984)
(-0.372782 -0.482804 -0.131661)
(-0.109747 -0.385115 -0.159124)
(0.175137 -0.288329 -0.165832)
(0.413139 -0.154489 -0.163163)
(0.519041 -0.00794817 -0.154094)
(0.498228 0.0947752 -0.150777)
(0.378425 0.131247 -0.142802)
(0.226729 0.119043 -0.135468)
(0.091277 0.0845774 -0.114922)
(0.012664 0.0316255 -0.0527522)
(0.00985151 -0.0391024 -0.000840513)
(0.0388829 -0.0625677 -0.0154305)
(0.0619775 -0.0474411 -0.0245662)
(0.0493918 -0.0116935 -0.0347704)
(0.0145073 0.0263158 -0.0303337)
(-0.0421341 0.0710396 -0.0438322)
(-0.131809 0.117111 -0.0497317)
(-0.272912 0.176092 -0.0560889)
(-0.470575 0.242605 -0.0660133)
(-0.704183 0.304735 -0.0808461)
(-0.964972 0.365773 -0.0941242)
(-1.24133 0.408342 -0.108018)
(-1.5092 0.427003 -0.118974)
(-1.77809 0.394224 -0.126374)
(-2.01846 0.332684 -0.123991)
(-2.2242 0.266149 -0.130798)
(-2.38276 0.205141 -0.13838)
(-2.53515 0.13838 -0.146627)
(-2.63038 0.0793165 -0.15731)
(-2.65998 0.0108945 -0.172828)
(-2.39661 -0.0347443 -0.209223)
(-2.11103 -0.155485 -0.208362)
(-1.96924 -0.281711 -0.194176)
(-1.85572 -0.415141 -0.194406)
(-1.77084 -0.54677 -0.20041)
(-1.64788 -0.679606 -0.201997)
(-1.52191 -0.795266 -0.206107)
(-1.35941 -0.884808 -0.208551)
(-1.20189 -0.931491 -0.216432)
(-1.01998 -0.917502 -0.233964)
(-0.82236 -0.85381 -0.247721)
(-0.59362 -0.750067 -0.256677)
(-0.331295 -0.602322 -0.244692)
(-0.0412524 -0.401774 -0.234627)
(0.200318 -0.161614 -0.251877)
(0.305829 0.070175 -0.225452)
(0.291505 0.171771 -0.208537)
(0.19622 0.20643 -0.194834)
(0.0853564 0.172912 -0.160472)
(0.0109227 0.0857411 -0.0720231)
(0.010296 -0.062154 0.00167781)
(0.0223615 -0.087862 -0.0153539)
(0.0103827 -0.0449033 -0.0279797)
(-0.0290341 0.0189827 -0.0395529)
(-0.0957764 0.108031 -0.0514016)
(-0.199541 0.202031 -0.0654966)
(-0.35559 0.306039 -0.0794217)
(-0.570603 0.418494 -0.0983332)
(-0.848431 0.525097 -0.11256)
(-1.1509 0.598157 -0.129964)
(-1.43827 0.6346 -0.145324)
(-1.70871 0.624077 -0.159438)
(-1.96051 0.56294 -0.163987)
(-2.17722 0.474012 -0.160309)
(-2.33129 0.392465 -0.166949)
(-2.44721 0.313154 -0.175399)
(-2.52804 0.239293 -0.183039)
(-2.61071 0.158021 -0.188557)
(-2.639 0.0842936 -0.1935)
(-2.62168 -0.0108905 -0.197866)
(-2.35526 -0.0990806 -0.205306)
(-2.07382 -0.258456 -0.177675)
(-1.95196 -0.400387 -0.16761)
(-1.86299 -0.550103 -0.163318)
(-1.8096 -0.705983 -0.168673)
(-1.72801 -0.874957 -0.1692)
(-1.64305 -1.03851 -0.170789)
(-1.52171 -1.18552 -0.167428)
(-1.38675 -1.29482 -0.166976)
(-1.23494 -1.33052 -0.171556)
(-1.10008 -1.28173 -0.191802)
(-0.975592 -1.13736 -0.230259)
(-0.799026 -0.92362 -0.223679)
(-0.516564 -0.679087 -0.228139)
(-0.175718 -0.369032 -0.237402)
(0.0380636 -0.0713331 -0.251905)
(0.0981207 0.131872 -0.250664)
(0.0981027 0.232107 -0.23021)
(0.0412135 0.219057 -0.187065)
(0.00337608 0.115248 -0.081569)
(0.0039311 -0.0799155 0.00763679)
(-0.00549882 -0.0852891 -0.0148649)
(-0.0612138 -0.0162749 -0.0358205)
(-0.143782 0.115473 -0.0596853)
(-0.24915 0.254422 -0.0760836)
(-0.406533 0.402621 -0.0999402)
(-0.608457 0.550186 -0.125765)
(-0.861058 0.684172 -0.146627)
(-1.16253 0.785222 -0.162363)
(-1.46161 0.814578 -0.177405)
(-1.737 0.777858 -0.186196)
(-1.97847 0.695334 -0.1804)
(-2.15467 0.596658 -0.170115)
(-2.26745 0.505516 -0.165657)
(-2.33227 0.42304 -0.16067)
(-2.37465 0.339001 -0.157095)
(-2.39875 0.259458 -0.151743)
(-2.42979 0.172226 -0.144851)
(-2.42045 0.0917731 -0.134464)
(-2.38098 -0.0247551 -0.121269)
(-2.14687 -0.11906 -0.108135)
(-1.89598 -0.286461 -0.0688899)
(-1.79934 -0.443025 -0.0619113)
(-1.73761 -0.602787 -0.0579084)
(-1.71804 -0.775574 -0.0651441)
(-1.68271 -0.975026 -0.0709527)
(-1.649 -1.17884 -0.0788608)
(-1.58328 -1.38311 -0.0826664)
(-1.49829 -1.55654 -0.0870525)
(-1.37376 -1.6708 -0.0909916)
(-1.23714 -1.68936 -0.0979023)
(-1.12541 -1.5955 -0.11391)
(-1.07855 -1.35009 -0.155344)
(-0.883481 -1.00012 -0.175433)
(-0.530199 -0.630261 -0.201169)
(-0.216555 -0.257826 -0.230173)
(-0.0351021 0.057153 -0.232978)
(0.011838 0.213103 -0.234837)
(0.00350393 0.229307 -0.18652)
(-0.00271902 0.118906 -0.0775488)
(0.00195418 -0.0850278 0.0115513)
(-0.0552174 -0.0505924 -0.0215127)
(-0.144894 0.0753451 -0.049972)
(-0.253627 0.268652 -0.0840183)
(-0.40857 0.456221 -0.112363)
(-0.591432 0.644427 -0.146372)
(-0.812396 0.803851 -0.171034)
(-1.07376 0.925831 -0.192075)
(-1.39178 0.92443 -0.193403)
(-1.69547 0.860594 -0.183201)
(-1.91224 0.770999 -0.169549)
(-2.04527 0.677789 -0.157911)
(-2.11646 0.593379 -0.139986)
(-2.14967 0.504576 -0.121369)
(-2.15075 0.419551 -0.104266)
(-2.14925 0.329933 -0.0893254)
(-2.13952 0.24941 -0.0703854)
(-2.14125 0.16511 -0.056855)
(-2.11419 0.0868786 -0.0381612)
(-2.07451 -0.0264112 -0.0230115)
(-1.87479 -0.127842 0.0019886)
(-1.65009 -0.292468 0.0421046)
(-1.57094 -0.443849 0.0471971)
(-1.53449 -0.605589 0.0485441)
(-1.54587 -0.778257 0.0319032)
(-1.54677 -0.980485 0.0194161)
(-1.55483 -1.19835 0.00583648)
(-1.54107 -1.42574 -0.00620528)
(-1.51443 -1.65382 -0.0158323)
(-1.45342 -1.84079 -0.0281843)
(-1.35974 -1.94999 -0.0397655)
(-1.23273 -1.93708 -0.0600016)
(-1.17149 -1.79641 -0.0775084)
(-1.11052 -1.40743 -0.128675)
(-0.815641 -0.97478 -0.160505)
(-0.422837 -0.495167 -0.198027)
(-0.1583 -0.0952654 -0.241411)
(-0.0518132 0.133102 -0.231257)
(-0.0189927 0.195192 -0.186339)
(-0.00550871 0.097467 -0.0763166)
(-0.00510335 -0.0494357 0.0165975)
(-0.0836495 0.0398138 -0.0240932)
(-0.211201 0.234843 -0.0746877)
(-0.356636 0.460313 -0.117245)
(-0.528512 0.67942 -0.156155)
(-0.722176 0.871028 -0.186593)
(-0.956222 0.99807 -0.211252)
(-1.28068 0.983095 -0.196374)
(-1.58734 0.891219 -0.168833)
(-1.77251 0.817777 -0.158061)
(-1.87773 0.751687 -0.138442)
(-1.92758 0.673773 -0.110271)
(-1.93671 0.585124 -0.0771485)
(-1.92099 0.490423 -0.0509165)
(-1.89886 0.398535 -0.0229856)
(-1.88043 0.307149 -0.00197918)
(-1.85879 0.229973 0.0123717)
(-1.85032 0.153249 0.0277741)
(-1.82124 0.0836486 0.0461268)
(-1.78989 -0.0193463 0.0681956)
(-1.61929 -0.115458 0.0945415)
(-1.4093 -0.274264 0.147999)
(-1.34124 -0.4172 0.144052)
(-1.32288 -0.579242 0.135621)
(-1.34271 -0.747138 0.117425)
(-1.36344 -0.943704 0.101575)
(-1.39266 -1.1642 0.0803759)
(-1.42119 -1.40582 0.0588871)
(-1.44115 -1.6569 0.0348985)
(-1.43957 -1.89555 0.0183615)
(-1.40522 -2.08917 -0.00121938)
(-1.32825 -2.17187 -0.0163694)
(-1.22312 -2.12805 -0.037606)
(-1.19246 -1.86937 -0.0672495)
(-1.03236 -1.38268 -0.109717)
(-0.635459 -0.839772 -0.149258)
(-0.259174 -0.322114 -0.189597)
(-0.0717766 0.0463312 -0.202817)
(-0.00949231 0.143794 -0.171186)
(-0.000698389 0.0805258 -0.0681145)
(-0.0104606 0.00658396 0.00581395)
(-0.112123 0.157387 -0.0458898)
(-0.266627 0.390494 -0.105168)
(-0.426199 0.641919 -0.157514)
(-0.608633 0.857581 -0.193032)
(-0.832555 1.00544 -0.217032)
(-1.15654 1.0101 -0.190245)
(-1.43592 0.923992 -0.165146)
(-1.60561 0.879613 -0.149879)
(-1.70374 0.830739 -0.1205)
(-1.73875 0.751333 -0.0808811)
(-1.73182 0.652454 -0.0379181)
(-1.7062 0.553126 -0.000197878)
(-1.67887 0.453417 0.0300059)
(-1.65007 0.36098 0.0557867)
(-1.62849 0.276903 0.0725586)
(-1.60473 0.207104 0.086295)
(-1.591 0.138793 0.0961817)
(-1.56289 0.079846 0.111002)
(-1.53913 -0.00623747 0.13118)
(-1.39438 -0.0936242 0.162633)
(-1.2002 -0.239204 0.220224)
(-1.13336 -0.373661 0.206927)
(-1.12279 -0.524577 0.191626)
(-1.14536 -0.681833 0.169729)
(-1.1734 -0.870174 0.151495)
(-1.21252 -1.08376 0.129079)
(-1.25444 -1.33202 0.106776)
(-1.29917 -1.59743 0.082735)
(-1.34284 -1.87222 0.0547188)
(-1.36442 -2.11693 0.030956)
(-1.34878 -2.30037 0.00859248)
(-1.27824 -2.3487 -0.0129346)
(-1.2125 -2.23552 -0.0358846)
(-1.13199 -1.83099 -0.0710948)
(-0.830172 -1.2396 -0.112489)
(-0.358679 -0.600332 -0.162832)
(-0.0960328 -0.0957665 -0.213873)
(-0.0255342 0.0823884 -0.168182)
(0.00769356 0.0658037 -0.0753646)
(-0.0157739 0.0572894 0.00711356)
(-0.126854 0.255939 -0.0569131)
(-0.289634 0.501208 -0.12208)
(-0.465858 0.739776 -0.171278)
(-0.683327 0.925767 -0.196201)
(-0.97783 0.999551 -0.184565)
(-1.25207 0.963125 -0.168698)
(-1.42711 0.954365 -0.148729)
(-1.52942 0.911451 -0.111048)
(-1.55245 0.831477 -0.0625706)
(-1.54109 0.727704 -0.00968177)
(-1.50884 0.620168 0.0363069)
(-1.47675 0.515429 0.0762132)
(-1.45107 0.419772 0.104404)
(-1.43122 0.335518 0.124307)
(-1.41503 0.258012 0.133911)
(-1.39357 0.194258 0.139039)
(-1.37776 0.13206 0.142599)
(-1.34839 0.0822705 0.148944)
(-1.33147 0.00633032 0.16923)
(-1.21204 -0.0527684 0.193409)
(-1.02728 -0.20101 0.262102)
(-0.957971 -0.326592 0.243392)
(-0.949763 -0.469099 0.224492)
(-0.968727 -0.615311 0.200436)
(-0.998096 -0.789911 0.182006)
(-1.03869 -0.991195 0.160386)
(-1.08649 -1.22821 0.139522)
(-1.14372 -1.49762 0.114751)
(-1.20099 -1.79321 0.0885271)
(-1.26113 -2.08597 0.0613027)
(-1.29206 -2.33438 0.0292476)
(-1.28005 -2.49281 0.00747742)
(-1.21235 -2.48843 -0.0141843)
(-1.15034 -2.23996 -0.0376091)
(-0.959085 -1.67904 -0.0648328)
(-0.520457 -0.956491 -0.109204)
(-0.150752 -0.337536 -0.136161)
(-0.0271001 0.0256572 -0.15184)
(0.0116658 0.0510997 -0.0647027)
(-0.022344 0.122513 -0.00617077)
(-0.148276 0.370767 -0.0800278)
(-0.320124 0.609934 -0.147817)
(-0.495522 0.819991 -0.19108)
(-0.741902 0.971749 -0.202167)
(-1.02327 1.01069 -0.183022)
(-1.23948 1.02504 -0.158889)
(-1.35001 0.997086 -0.11619)
(-1.37897 0.921493 -0.059256)
(-1.36247 0.814437 0.00323365)
(-1.33098 0.69704 0.0614028)
(-1.30003 0.58814 0.108476)
(-1.27913 0.487848 0.144035)
(-1.26617 0.396355 0.165468)
(-1.25513 0.31661 0.17745)
(-1.24158 0.24254 0.177216)
(-1.21913 0.182832 0.175128)
(-1.19549 0.126057 0.170329)
(-1.16687 0.0837634 0.171162)
(-1.13333 0.0259216 0.182365)
(-1.05279 -0.0165855 0.203019)
(-0.897249 -0.150481 0.270936)
(-0.811363 -0.277346 0.257722)
(-0.803412 -0.409645 0.235275)
(-0.814972 -0.545783 0.210248)
(-0.84147 -0.704189 0.190791)
(-0.878186 -0.888893 0.17045)
(-0.926208 -1.10969 0.151715)
(-0.985854 -1.37075 0.130181)
(-1.05442 -1.66813 0.107163)
(-1.12642 -1.99102 0.0797237)
(-1.19215 -2.30041 0.0509938)
(-1.22567 -2.54509 0.0175559)
(-1.19839 -2.65615 -0.00626362)
(-1.12297 -2.55284 -0.0249549)
(-1.00112 -2.11444 -0.0423363)
(-0.680819 -1.36636 -0.0738826)
(-0.218819 -0.587016 -0.109549)
(-0.0274716 -0.0636542 -0.135018)
(-0.00679684 0.0340959 -0.0659486)
(-0.0232007 0.19108 -0.0170898)
(-0.155101 0.492539 -0.0999425)
(-0.329638 0.737154 -0.16963)
(-0.51394 0.93739 -0.20816)
(-0.775612 1.05421 -0.203959)
(-1.01984 1.08462 -0.176504)
(-1.16482 1.08236 -0.134696)
(-1.21017 1.02133 -0.0723243)
(-1.1993 0.915916 -0.00164589)
(-1.16701 0.790478 0.0682568)
(-1.1399 0.670974 0.1256)
(-1.12233 0.563348 0.168996)
(-1.11642 0.467716 0.198601)
(-1.11405 0.382011 0.213488)
(-1.11 0.305213 0.21649)
(-1.09654 0.234565 0.207321)
(-1.06949 0.174788 0.195594)
(-1.03866 0.123154 0.184387)
(-0.999868 0.0830343 0.179718)
(-0.966633 0.0466908 0.188321)
(-0.914285 -0.00376961 0.198924)
(-0.792653 -0.104349 0.251592)
(-0.703589 -0.235567 0.256487)
(-0.686092 -0.359652 0.232254)
(-0.69002 -0.487799 0.208287)
(-0.709297 -0.630985 0.188143)
(-0.738312 -0.797792 0.169088)
(-0.779293 -0.997056 0.152111)
(-0.8344 -1.23888 0.133165)
(-0.902173 -1.52673 0.113295)
(-0.981398 -1.85659 0.0907306)
(-1.05933 -2.20559 0.0640061)
(-1.1241 -2.52812 0.0354599)
(-1.1432 -2.74672 0.00155635)
(-1.09096 -2.7753 -0.016693)
(-0.979254 -2.49662 -0.0317679)
(-0.756743 -1.81197 -0.0424545)
(-0.325357 -0.890516 -0.0733461)
(-0.0508627 -0.201196 -0.111209)
(-0.0174901 0.0180227 -0.0562326)
(-0.021007 0.263361 -0.0350198)
(-0.151627 0.615971 -0.12582)
(-0.324159 0.866135 -0.195754)
(-0.522176 1.05255 -0.226594)
(-0.769904 1.13417 -0.208605)
(-0.954438 1.15895 -0.169746)
(-1.04164 1.12509 -0.105922)
(-1.04453 1.02736 -0.025361)
(-1.01893 0.89995 0.0556906)
(-0.992114 0.766058 0.124018)
(-0.97776 0.647518 0.1789)
(-0.975977 0.544386 0.216895)
(-0.983017 0.454089 0.241896)
(-0.989365 0.370814 0.248762)
(-0.988504 0.29616 0.244664)
(-0.973226 0.223681 0.223159)
(-0.93904 0.165335 0.204484)
(-0.896756 0.114805 0.185966)
(-0.847023 0.0792042 0.178587)
(-0.814858 0.0544846 0.189856)
(-0.7871 0.0124951 0.193037)
(-0.703185 -0.0735789 0.224299)
(-0.622823 -0.195047 0.236856)
(-0.595187 -0.31875 0.218792)
(-0.590418 -0.439048 0.195816)
(-0.602313 -0.569312 0.176045)
(-0.622636 -0.719025 0.157151)
(-0.654679 -0.896109 0.141526)
(-0.700258 -1.11416 0.124024)
(-0.760546 -1.38014 0.106754)
(-0.837229 -1.70145 0.0861641)
(-0.922747 -2.06568 0.0636125)
(-1.00222 -2.44118 0.0375892)
(-1.05262 -2.75776 0.00696737)
(-1.04188 -2.91879 -0.0180329)
(-0.942826 -2.79261 -0.0337627)
(-0.764918 -2.2551 -0.035832)
(-0.413258 -1.27745 -0.0451419)
(-0.0740749 -0.392414 -0.0648669)
(-0.0187293 -0.0163269 -0.0503637)
(-0.0157305 0.326354 -0.0484606)
(-0.136069 0.729358 -0.145579)
(-0.304931 0.987758 -0.214614)
(-0.510813 1.15035 -0.234791)
(-0.725022 1.21655 -0.209887)
(-0.853548 1.22306 -0.153921)
(-0.899749 1.15082 -0.0716004)
(-0.881907 1.02716 0.0200073)
(-0.857419 0.880386 0.101898)
(-0.841613 0.74646 0.16897)
(-0.843258 0.631518 0.218556)
(-0.854091 0.53318 0.252603)
(-0.870992 0.445426 0.271676)
(-0.880838 0.364268 0.272879)
(-0.882526 0.287184 0.257654)
(-0.862584 0.214673 0.226989)
(-0.818037 0.151025 0.195938)
(-0.766064 0.102157 0.173576)
(-0.700401 0.068259 0.16601)
(-0.670606 0.0549069 0.190682)
(-0.67561 0.0260341 0.190721)
(-0.629293 -0.0557316 0.196421)
(-0.564411 -0.159651 0.202809)
(-0.531337 -0.286503 0.197956)
(-0.514204 -0.404018 0.176965)
(-0.518489 -0.524008 0.159804)
(-0.530272 -0.659343 0.140469)
(-0.552227 -0.815064 0.126057)
(-0.586559 -1.00848 0.109784)
(-0.634307 -1.24729 0.0947491)
(-0.700929 -1.54749 0.0773844)
(-0.783802 -1.90921 0.0582405)
(-0.873486 -2.31383 0.0355361)
(-0.944182 -2.70388 0.00908296)
(-0.96758 -2.9831 -0.0175799)
(-0.908301 -3.00853 -0.036284)
(-0.747588 -2.63454 -0.0380544)
(-0.474831 -1.70864 -0.0280115)
(-0.109384 -0.622356 -0.0380965)
(-0.00344837 -0.0753107 -0.0336544)
(-0.00879352 0.381621 -0.0654885)
(-0.112395 0.834928 -0.168964)
(-0.280711 1.09908 -0.23496)
(-0.476195 1.23609 -0.247304)
(-0.647609 1.29667 -0.212648)
(-0.735452 1.2732 -0.139959)
(-0.753418 1.1652 -0.0425946)
(-0.732929 1.01931 0.0533201)
(-0.718776 0.864892 0.136639)
(-0.715896 0.731815 0.199035)
(-0.73004 0.620113 0.244445)
(-0.750192 0.524075 0.273698)
(-0.771584 0.43729 0.289689)
(-0.785352 0.353483 0.282023)
(-0.786549 0.274877 0.260688)
(-0.764429 0.196402 0.212786)
(-0.710756 0.133463 0.17702)
(-0.64256 0.0842009 0.150743)
(-0.560575 0.0578188 0.146778)
(-0.525165 0.0441384 0.189252)
(-0.569566 0.0312284 0.195466)
(-0.560301 -0.0497572 0.172299)
(-0.516825 -0.134601 0.165669)
(-0.490249 -0.247492 0.159094)
(-0.457713 -0.375157 0.151545)
(-0.454027 -0.489572 0.137111)
(-0.458007 -0.614758 0.119435)
(-0.471297 -0.752094 0.105809)
(-0.494935 -0.92145 0.0906716)
(-0.529211 -1.13325 0.0780575)
(-0.583483 -1.40812 0.0636393)
(-0.657965 -1.75621 0.0486592)
(-0.748014 -2.17038 0.030403)
(-0.829827 -2.6084 0.00604608)
(-0.879336 -2.9867 -0.0203388)
(-0.861127 -3.15683 -0.0484006)
(-0.726471 -2.94334 -0.0497386)
(-0.493565 -2.13653 -0.035643)
(-0.134526 -0.894472 -0.0218209)
(0.00700529 -0.13504 -0.0282268)
(-0.000439437 0.41454 -0.0739277)
(-0.0875021 0.920183 -0.182438)
(-0.250777 1.18681 -0.244986)
(-0.424504 1.31366 -0.253236)
(-0.555157 1.36212 -0.208063)
(-0.617006 1.30636 -0.12152)
(-0.622633 1.16937 -0.0181527)
(-0.604629 1.00814 0.0832036)
(-0.602158 0.853316 0.16186)
(-0.611136 0.721866 0.218148)
(-0.634032 0.613006 0.257364)
(-0.658032 0.518275 0.282523)
(-0.683825 0.430647 0.291904)
(-0.69702 0.344477 0.278177)
(-0.700353 0.261867 0.242466)
(-0.670514 0.180982 0.185135)
(-0.602114 0.110675 0.135781)
(-0.518946 0.047038 0.0975099)
(-0.426318 0.0136964 0.107154)
(-0.387073 0.0247042 0.187793)
(-0.467038 0.0326569 0.207874)
(-0.497804 -0.0503179 0.151765)
(-0.460234 -0.123908 0.132125)
(-0.461859 -0.210712 0.118349)
(-0.42889 -0.331167 0.10956)
(-0.405739 -0.457997 0.109795)
(-0.40255 -0.580008 0.0938905)
(-0.405701 -0.704278 0.0843612)
(-0.420845 -0.853701 0.070516)
(-0.444705 -1.03989 0.0613609)
(-0.487724 -1.28824 0.0502161)
(-0.551274 -1.6155 0.0406891)
(-0.634765 -2.0254 0.0264908)
(-0.721038 -2.49194 0.00576789)
(-0.783688 -2.94626 -0.0224096)
(-0.800204 -3.24337 -0.0536317)
(-0.70036 -3.1884 -0.0610196)
(-0.495143 -2.5202 -0.0458479)
(-0.153541 -1.21442 -0.0166525)
(0.0224928 -0.17791 -0.017762)
(0.00869248 0.444141 -0.0873935)
(-0.0638253 0.999343 -0.201163)
(-0.211825 1.27323 -0.263078)
(-0.356297 1.40118 -0.264991)
(-0.456931 1.42666 -0.209361)
(-0.504292 1.34238 -0.110793)
(-0.504325 1.18482 -0.000127628)
(-0.492374 1.01212 0.100937)
(-0.502758 0.853557 0.173139)
(-0.520731 0.72143 0.221655)
(-0.547055 0.611609 0.254288)
(-0.573301 0.51576 0.273693)
(-0.599434 0.42437 0.278283)
(-0.614769 0.33366 0.255055)
(-0.616241 0.243285 0.21176)
(-0.588312 0.156718 0.13783)
(-0.522451 0.0593411 0.0717679)
(-0.426805 0.00972008 0.0702266)
(-0.280589 -0.0144912 0.0850232)
(-0.21244 0.0105599 0.208632)
(-0.355424 0.0303374 0.251846)
(-0.440519 -0.0581439 0.144164)
(-0.398849 -0.126386 0.10446)
(-0.415265 -0.193391 0.0902667)
(-0.412092 -0.285515 0.069772)
(-0.388723 -0.405906 0.0747075)
(-0.362333 -0.543049 0.0660192)
(-0.356115 -0.662373 0.0601283)
(-0.362559 -0.796695 0.0496123)
(-0.376591 -0.963451 0.0433048)
(-0.410908 -1.18802 0.0358263)
(-0.463992 -1.49235 0.0311914)
(-0.539445 -1.88848 0.0199975)
(-0.623651 -2.37031 0.00281152)
(-0.694558 -2.88136 -0.0286899)
(-0.732429 -3.29563 -0.0593893)
(-0.663514 -3.39135 -0.0772472)
(-0.482381 -2.87725 -0.0630891)
(-0.161511 -1.56447 -0.0240951)
(0.0468531 -0.243821 -0.0114537)
(0.0136647 0.441976 -0.0879278)
(-0.0404864 1.04218 -0.207411)
(-0.166051 1.34624 -0.267968)
(-0.286161 1.46996 -0.265886)
(-0.365594 1.47564 -0.201421)
(-0.402031 1.36599 -0.0949926)
(-0.40591 1.19735 0.0188417)
(-0.40479 1.0159 0.117822)
(-0.424821 0.856995 0.181884)
(-0.446372 0.723873 0.220634)
(-0.471602 0.613666 0.244019)
(-0.494817 0.515503 0.25592)
(-0.522515 0.421292 0.251943)
(-0.539779 0.323643 0.215741)
(-0.545529 0.23401 0.16201)
(-0.528996 0.144448 0.0615793)
(-0.431403 0.0845755 0.00697374)
(-0.289188 0.0517727 -0.0482373)
(-0.135977 0.0487335 -0.0246301)
(-0.0551825 0.0379349 0.171645)
(-0.247341 0.0355265 0.284879)
(-0.390143 -0.0629046 0.141318)
(-0.332479 -0.134695 0.0757726)
(-0.35563 -0.189786 0.0657287)
(-0.371989 -0.265202 0.0428826)
(-0.380311 -0.350007 0.0441328)
(-0.353408 -0.475977 0.0363716)
(-0.317683 -0.610045 0.0371054)
(-0.31738 -0.746565 0.0293081)
(-0.326548 -0.896637 0.0264468)
(-0.351809 -1.09516 0.0222567)
(-0.390413 -1.37218 0.0213865)
(-0.455606 -1.75105 0.0152248)
(-0.538285 -2.2409 0.000935195)
(-0.618932 -2.79654 -0.0315279)
(-0.671777 -3.31459 -0.0660872)
(-0.630326 -3.55272 -0.09206)
(-0.473718 -3.19021 -0.0833862)
(-0.176233 -1.89905 -0.0391321)
(0.0553182 -0.293263 -0.0117939)
(0.0104527 0.456642 -0.0988231)
(-0.0104931 1.11295 -0.223813)
(-0.111165 1.44901 -0.2875)
(-0.221621 1.57132 -0.277748)
(-0.278297 1.55414 -0.204973)
(-0.307624 1.42895 -0.0899985)
(-0.313994 1.2459 0.0275845)
(-0.323338 1.06113 0.12355)
(-0.349328 0.896686 0.178919)
(-0.370976 0.758054 0.206889)
(-0.390697 0.641053 0.217686)
(-0.412385 0.535209 0.219328)
(-0.44407 0.434276 0.199513)
(-0.461166 0.345782 0.151886)
(-0.461491 0.291293 0.0654897)
(-0.419023 0.242656 -0.00703103)
(-0.315609 0.213062 -0.143404)
(-0.166211 0.183422 -0.274909)
(-0.00623008 0.147099 -0.297907)
(0.0582673 0.109121 0.0149004)
(-0.170803 0.0489257 0.276701)
(-0.349177 -0.0544416 0.133828)
(-0.269852 -0.136395 0.0441752)
(-0.291098 -0.189437 0.041469)
(-0.316544 -0.255987 0.0183814)
(-0.336617 -0.318726 0.0263205)
(-0.346188 -0.40483 0.0142881)
(-0.322373 -0.521416 0.0145911)
(-0.292622 -0.659361 0.00938245)
(-0.279062 -0.820378 0.00881868)
(-0.296145 -1.0122 0.00911985)
(-0.325785 -1.26548 0.0126684)
(-0.380612 -1.61444 0.0103081)
(-0.453738 -2.09963 -0.00209837)
(-0.53814 -2.69451 -0.0353639)
(-0.604731 -3.30902 -0.0734065)
(-0.588339 -3.6954 -0.108298)
(-0.455536 -3.49665 -0.10422)
(-0.179932 -2.26009 -0.054546)
(0.0626269 -0.397782 -0.0113343)
(0.00978904 0.468295 -0.0933751)
(-0.0129646 1.19241 -0.223256)
(-0.0640128 1.54517 -0.287679)
(-0.141394 1.68058 -0.282008)
(-0.193231 1.65039 -0.204751)
(-0.212805 1.51542 -0.0858484)
(-0.227224 1.3234 0.0324722)
(-0.245804 1.13595 0.125501)
(-0.279838 0.969353 0.174545)
(-0.300135 0.827298 0.193396)
(-0.317999 0.709583 0.192408)
(-0.336838 0.608396 0.174716)
(-0.355118 0.519266 0.131559)
(-0.334736 0.467793 0.0632161)
(-0.31765 0.433704 -0.0187304)
(-0.304417 0.406524 -0.106584)
(-0.213783 0.402793 -0.305256)
(-0.0544274 0.404217 -0.566391)
(0.106216 0.338896 -0.671038)
(0.12849 0.205635 -0.225735)
(-0.132453 0.0943991 0.238806)
(-0.307149 -0.0313577 0.118457)
(-0.211802 -0.116846 0.0040328)
(-0.224318 -0.178614 0.0175353)
(-0.254477 -0.241422 2.87149e-05)
(-0.278758 -0.297819 0.0116593)
(-0.298127 -0.362491 0.00328305)
(-0.298838 -0.437889 0.00427559)
(-0.304303 -0.541387 -0.0018807)
(-0.290651 -0.683124 -0.00332501)
(-0.277085 -0.858893 -0.0044549)
(-0.272388 -1.10774 0.000227057)
(-0.303795 -1.4542 0.00423555)
(-0.369568 -1.93427 -0.00394633)
(-0.460779 -2.54213 -0.0354276)
(-0.539487 -3.24025 -0.080902)
(-0.557665 -3.7753 -0.123785)
(-0.460105 -3.75151 -0.128163)
(-0.212993 -2.59395 -0.0797428)
(0.047404 -0.450606 -0.0226201)
(0.00431756 0.641331 -0.135415)
(0.0140084 1.42422 -0.271705)
(-0.0232355 1.81151 -0.333302)
(-0.0680584 1.91531 -0.315256)
(-0.0934358 1.87991 -0.226904)
(-0.127156 1.73212 -0.107397)
(-0.148765 1.54137 0.0105471)
(-0.178448 1.36434 0.102859)
(-0.214314 1.20188 0.147388)
(-0.224976 1.0565 0.158738)
(-0.223182 0.931673 0.139717)
(-0.225456 0.823611 0.0990794)
(-0.219487 0.725647 0.0452769)
(-0.199435 0.667103 -0.0242335)
(-0.200614 0.612286 -0.121213)
(-0.162227 0.609229 -0.207247)
(-0.0637659 0.682849 -0.386012)
(0.0592645 0.799787 -0.733483)
(0.166623 0.720733 -0.957992)
(0.140208 0.368779 -0.490246)
(-0.112317 0.168824 0.169901)
(-0.278604 0.00893507 0.0914671)
(-0.157324 -0.0837962 -0.0486558)
(-0.163004 -0.153145 -0.00669919)
(-0.191331 -0.217466 -0.0187164)
(-0.216724 -0.276105 -9.94996e-05)
(-0.241251 -0.334335 -0.00601509)
(-0.24648 -0.401016 -0.00320063)
(-0.258636 -0.474364 -0.00970831)
(-0.262719 -0.568784 -0.00959224)
(-0.277431 -0.693708 -0.00791868)
(-0.290153 -0.892946 -0.00288873)
(-0.301985 -1.19348 0.00232922)
(-0.307634 -1.6636 -0.00951353)
(-0.36229 -2.31853 -0.0370495)
(-0.450275 -3.09356 -0.0833654)
(-0.492411 -3.76738 -0.13532)
(-0.436579 -3.95474 -0.144944)
(-0.215627 -2.96381 -0.098001)
(0.0570675 -0.631302 -0.0262793)
(-0.0254873 0.771865 -0.132421)
(-0.0191258 1.63603 -0.277518)
(-0.0113038 2.05661 -0.345794)
(-0.0304509 2.17512 -0.329188)
(-0.0346846 2.11579 -0.242073)
(-0.0507056 1.95108 -0.105517)
(-0.0635071 1.75899 0.0115897)
(-0.101152 1.58366 0.0964025)
(-0.150879 1.43757 0.140559)
(-0.164028 1.29222 0.143536)
(-0.160177 1.15714 0.117205)
(-0.160387 1.03448 0.0734864)
(-0.144448 0.915834 0.0157596)
(-0.101601 0.837245 -0.0500024)
(-0.0569813 0.801822 -0.179616)
(0.0398423 0.868225 -0.22841)
(0.195745 1.04001 -0.265953)
(0.202519 1.30302 -0.460576)
(0.0672143 1.28232 -0.871568)
(-0.029802 0.745242 -0.679654)
(-0.166416 0.279579 0.0343653)
(-0.264214 0.0904265 0.0384304)
(-0.109243 -0.0397743 -0.104735)
(-0.101385 -0.116683 -0.0346849)
(-0.130424 -0.188215 -0.0371335)
(-0.158184 -0.249414 -0.00302058)
(-0.188134 -0.308098 -0.0119148)
(-0.199746 -0.374954 -0.00938307)
(-0.215698 -0.439815 -0.016926)
(-0.213124 -0.517862 -0.0179125)
(-0.218252 -0.60305 -0.0161763)
(-0.228832 -0.735767 -0.00972252)
(-0.274849 -0.944725 0.000427762)
(-0.355946 -1.3387 0.00377344)
(-0.400834 -1.9335 -0.0181787)
(-0.413598 -2.76031 -0.0899027)
(-0.45935 -3.56132 -0.14272)
(-0.441165 -3.98442 -0.163239)
(-0.266999 -3.2523 -0.123711)
(0.0143048 -0.945733 -0.0431407)
(-0.0217976 0.720478 -0.126809)
(-0.00437439 1.6305 -0.276372)
(0.0195227 2.08884 -0.342259)
(0.0175342 2.23651 -0.330378)
(0.0241357 2.19375 -0.244312)
(0.0133657 2.03156 -0.110245)
(0.000115144 1.83675 0.0056164)
(-0.0213521 1.64748 0.0918994)
(-0.0647072 1.50356 0.131569)
(-0.0957049 1.37595 0.137613)
(-0.0827482 1.2394 0.112783)
(-0.0754922 1.12008 0.0790305)
(-0.0426064 1.00823 0.025122)
(0.0364282 0.926809 -0.0175015)
(0.146599 0.958219 -0.149603)
(0.330029 1.11487 -0.0971286)
(0.540622 1.34712 0.0760861)
(0.43079 1.61675 0.296558)
(-0.040898 1.73202 0.0139502)
(-0.397784 1.25695 -0.349811)
(-0.409634 0.506423 -0.0301856)
(-0.295056 0.200874 -0.00447413)
(-0.0941352 0.0386816 -0.122596)
(-0.0504589 -0.0642058 -0.0514466)
(-0.0727825 -0.150259 -0.0357305)
(-0.0977292 -0.226048 -0.00721421)
(-0.135752 -0.286174 -0.00838518)
(-0.148837 -0.35244 -0.0102233)
(-0.162732 -0.412037 -0.0191532)
(-0.159867 -0.483102 -0.0224003)
(-0.16454 -0.558518 -0.0219257)
(-0.165766 -0.673879 -0.0175867)
(-0.190205 -0.837271 -0.00958792)
(-0.243147 -1.13255 -0.00865161)
(-0.364003 -1.58533 -0.00901553)
(-0.432116 -2.32798 -0.0629189)
(-0.466434 -3.15498 -0.136696)
(-0.485136 -3.74222 -0.162158)
(-0.363601 -3.26906 -0.134978)
(-0.0717296 -1.02461 -0.0496582)
(-0.00799652 0.706568 -0.115684)
(0.0197853 1.59658 -0.251195)
(0.0507108 2.06718 -0.322535)
(0.0612143 2.23948 -0.315232)
(0.072442 2.21239 -0.23846)
(0.0660011 2.06599 -0.111796)
(0.0540311 1.88293 0.00221722)
(0.0279777 1.69727 0.0895408)
(0.00551712 1.53431 0.133431)
(-0.0180446 1.40733 0.142147)
(-0.0215352 1.27364 0.128038)
(-0.00743597 1.13494 0.0995448)
(0.0326472 1.02077 0.0514869)
(0.19743 0.939511 0.0284938)
(0.452809 0.998249 0.00398445)
(0.680927 1.17094 0.162605)
(0.839909 1.35676 0.454004)
(0.744426 1.44976 1.14349)
(0.186071 1.51094 1.49252)
(-0.521143 1.31861 0.857074)
(-0.761074 0.641396 0.080422)
(-0.428008 0.236892 -0.11615)
(-0.0971203 0.0968572 -0.125583)
(-0.0247192 -0.0220725 -0.0476166)
(-0.0375839 -0.110259 -0.00765904)
(-0.0525008 -0.199946 0.0111297)
(-0.0830266 -0.265239 0.0011457)
(-0.0997404 -0.334152 -0.00556794)
(-0.116701 -0.390146 -0.0183789)
(-0.112434 -0.459716 -0.0255932)
(-0.115968 -0.526766 -0.0272045)
(-0.114542 -0.628628 -0.0235163)
(-0.138058 -0.767553 -0.0138389)
(-0.177603 -1.02433 -0.0104139)
(-0.268057 -1.41395 -0.0139517)
(-0.343788 -2.01762 -0.0594722)
(-0.418528 -2.78336 -0.131265)
(-0.465622 -3.45075 -0.164795)
(-0.379605 -3.19326 -0.140387)
(-0.115436 -1.07929 -0.0531657)
(-0.0041433 0.657182 -0.103272)
(0.0401221 1.51957 -0.231197)
(0.0848708 2.01146 -0.302533)
(0.103485 2.2064 -0.301357)
(0.118138 2.19971 -0.231883)
(0.115588 2.06873 -0.112885)
(0.105799 1.89731 0.000641172)
(0.0830303 1.71628 0.0881574)
(0.0604966 1.55649 0.133955)
(0.0365646 1.40157 0.150051)
(0.0331421 1.26331 0.138506)
(0.052096 1.11402 0.118031)
(0.125873 0.977461 0.0612548)
(0.364361 0.878124 0.0551702)
(0.71512 0.825892 0.126598)
(0.978335 0.885161 0.40826)
(1.04519 0.95885 0.803488)
(0.90081 0.881592 1.6314)
(0.415124 0.727092 2.4205)
(-0.449621 0.665989 1.97179)
(-0.967033 0.432777 0.46799)
(-0.559201 0.214178 -0.225874)
(-0.0743996 0.115671 -0.171171)
(0.00955065 0.0197931 -0.0248566)
(0.00492382 -0.0679379 0.0294831)
(-0.0101321 -0.158718 0.0434478)
(-0.0370404 -0.234019 0.0249725)
(-0.0472976 -0.310677 0.00593151)
(-0.0617535 -0.370029 -0.0125028)
(-0.0587591 -0.439116 -0.0244556)
(-0.0616838 -0.504552 -0.0283346)
(-0.056385 -0.602715 -0.025486)
(-0.0744906 -0.726178 -0.0155623)
(-0.101094 -0.953916 -0.0108974)
(-0.176106 -1.29299 -0.0160781)
(-0.254745 -1.85484 -0.0601537)
(-0.355355 -2.57699 -0.123903)
(-0.425768 -3.30868 -0.161518)
(-0.373033 -3.23242 -0.143642)
(-0.138628 -1.29608 -0.0550347)
(0.00114372 0.604171 -0.0874993)
(0.0580451 1.4358 -0.205934)
(0.114778 1.94435 -0.279175)
(0.142436 2.16449 -0.284799)
(0.160507 2.17769 -0.223805)
(0.160775 2.06318 -0.113746)
(0.152561 1.89787 -0.00181114)
(0.129243 1.7219 0.0850494)
(0.10778 1.55795 0.134162)
(0.0853474 1.40037 0.153152)
(0.0743962 1.2495 0.141861)
(0.084934 1.08959 0.116624)
(0.165311 0.927177 0.0485014)
(0.400433 0.769271 0.0211954)
(0.805734 0.569056 0.109507)
(1.15424 0.402138 0.456356)
(1.21758 0.252945 0.880168)
(0.92742 0.0917811 1.49256)
(0.226236 -0.0723213 2.20724)
(-0.60214 -0.0755195 1.87428)
(-0.962473 0.078703 0.639541)
(-0.529662 0.158946 -0.137535)
(-0.0284089 0.103266 -0.127822)
(0.0566558 0.0283686 -0.000160971)
(0.0386001 -0.051539 0.0869352)
(0.0250472 -0.136744 0.0949092)
(-0.000734987 -0.208772 0.0606099)
(-0.00927089 -0.287639 0.0286891)
(-0.0212948 -0.350654 -0.000452399)
(-0.0172289 -0.421906 -0.0194854)
(-0.0260723 -0.484302 -0.0283775)
(-0.0220376 -0.57683 -0.0279406)
(-0.041881 -0.685116 -0.0177185)
(-0.0578199 -0.896224 -0.0126159)
(-0.118572 -1.2126 -0.0201949)
(-0.186821 -1.76308 -0.0643827)
(-0.293579 -2.48525 -0.127806)
(-0.371448 -3.28746 -0.172664)
(-0.353748 -3.35937 -0.159366)
(-0.137694 -1.53498 -0.0713161)
(0.00293545 0.547129 -0.0738118)
(0.0700408 1.34108 -0.183265)
(0.139036 1.86782 -0.258617)
(0.175665 2.11722 -0.271516)
(0.199776 2.15417 -0.219977)
(0.202937 2.05682 -0.119854)
(0.197878 1.8992 -0.0105602)
(0.176054 1.72657 0.0747063)
(0.152548 1.56161 0.126696)
(0.127852 1.40127 0.147151)
(0.112678 1.24533 0.135564)
(0.11221 1.08447 0.104644)
(0.176032 0.91598 0.0271398)
(0.363619 0.729793 -0.023931)
(0.695867 0.466928 -0.000214326)
(1.02457 0.0876455 0.279235)
(1.14922 -0.330487 0.599782)
(0.927644 -0.652712 0.973517)
(0.210364 -0.753831 1.3752)
(-0.597369 -0.577995 1.20068)
(-0.771897 -0.197634 0.451643)
(-0.327618 0.0431547 -0.0058738)
(0.0510899 0.0304713 -0.0544749)
(0.117994 -0.0211413 0.0693682)
(0.0952539 -0.0799413 0.144072)
(0.077901 -0.149433 0.148303)
(0.0494735 -0.206082 0.100199)
(0.0411007 -0.275579 0.0555134)
(0.0297901 -0.33428 0.0175073)
(0.0352709 -0.403945 -0.00635313)
(0.0279168 -0.46222 -0.0198159)
(0.0352443 -0.553234 -0.0227663)
(0.0096961 -0.657821 -0.0164103)
(-0.00582587 -0.854278 -0.00600758)
(-0.0591012 -1.16399 -0.0136873)
(-0.120312 -1.72435 -0.0581833)
(-0.237721 -2.47988 -0.125919)
(-0.326785 -3.38764 -0.176786)
(-0.34747 -3.61835 -0.168888)
(-0.143729 -1.85012 -0.0764516)
(0.00783559 0.486301 -0.0586563)
(0.0834326 1.2309 -0.159205)
(0.161117 1.77112 -0.236225)
(0.20478 2.0508 -0.257571)
(0.234473 2.11458 -0.216307)
(0.241484 2.03687 -0.12725)
(0.239419 1.89064 -0.0235009)
(0.219178 1.72296 0.0603602)
(0.194555 1.55887 0.114616)
(0.168755 1.40098 0.136405)
(0.149963 1.24843 0.125926)
(0.142286 1.09292 0.0933566)
(0.188125 0.935669 0.0175517)
(0.314833 0.752344 -0.0453069)
(0.509597 0.504431 -0.0950912)
(0.6976 0.129195 0.0285756)
(0.823825 -0.320775 0.185399)
(0.80117 -0.7718 0.286764)
(0.386133 -1.00808 0.572462)
(-0.135464 -0.837952 0.490725)
(-0.251173 -0.421869 0.169799)
(-0.034068 -0.132079 -0.00429667)
(0.176416 -0.0858137 0.00281807)
(0.213662 -0.101659 0.121266)
(0.170013 -0.134872 0.17706)
(0.149558 -0.182038 0.169884)
(0.115357 -0.224375 0.125485)
(0.0981024 -0.286276 0.0719174)
(0.0835997 -0.347952 0.0283488)
(0.0901778 -0.432257 0.000510234)
(0.0729008 -0.517463 -0.0167014)
(0.0690606 -0.640754 -0.0240826)
(0.0441936 -0.763963 -0.0169984)
(0.0199471 -0.974545 -0.0135514)
(-0.0396976 -1.27113 -0.00817562)
(-0.0833214 -1.83897 -0.0588055)
(-0.202198 -2.62495 -0.130274)
(-0.284676 -3.65646 -0.191201)
(-0.313927 -4.0816 -0.191853)
(-0.130344 -2.43761 -0.0995354)
(0.00923345 0.43355 -0.0494143)
(0.0936972 1.12178 -0.135723)
(0.180996 1.66995 -0.215751)
(0.22815 1.98498 -0.245302)
(0.263732 2.07985 -0.215791)
(0.276796 2.02605 -0.137676)
(0.280709 1.89244 -0.0405828)
(0.264783 1.73201 0.0419173)
(0.241438 1.57029 0.0981635)
(0.216805 1.41495 0.123096)
(0.196693 1.26777 0.115852)
(0.186599 1.1198 0.0846677)
(0.216047 0.974711 0.017634)
(0.301427 0.802948 -0.046398)
(0.427161 0.599056 -0.118735)
(0.537431 0.334351 -0.0901068)
(0.566472 0.0321906 -0.0519722)
(0.543701 -0.317565 -0.0350339)
(0.422148 -0.595667 0.0790963)
(0.246355 -0.59307 0.0700523)
(0.214578 -0.414245 -0.00407893)
(0.302748 -0.243664 -0.0157458)
(0.363182 -0.178851 0.0673861)
(0.343216 -0.169886 0.162611)
(0.279615 -0.171176 0.187004)
(0.245057 -0.19943 0.169727)
(0.194738 -0.22842 0.12497)
(0.162167 -0.281654 0.0778727)
(0.126429 -0.346895 0.03363)
(0.109393 -0.460347 0.0117725)
(0.0682339 -0.568953 -0.0047763)
(0.0626211 -0.714937 -0.0166057)
(0.0304424 -0.837566 -0.010735)
(0.0199032 -1.04554 -0.00485665)
(-0.0345117 -1.32229 -0.0034532)
(-0.0709976 -1.8857 -0.04721)
(-0.193063 -2.70554 -0.128707)
(-0.276578 -3.87569 -0.195208)
(-0.327778 -4.52854 -0.205741)
(-0.15178 -3.08151 -0.116353)
(0.0101496 0.377047 -0.04204)
(0.102605 0.99887 -0.116321)
(0.205397 1.53601 -0.188168)
(0.253701 1.88418 -0.230657)
(0.287735 2.01378 -0.2129)
(0.306284 1.98721 -0.147118)
(0.316787 1.87176 -0.0569582)
(0.307148 1.72144 0.0232587)
(0.286855 1.5658 0.0818367)
(0.265807 1.41593 0.110932)
(0.246765 1.27683 0.109602)
(0.236089 1.13968 0.0832622)
(0.252756 1.00701 0.0266289)
(0.31184 0.852076 -0.031828)
(0.401689 0.680247 -0.102204)
(0.479378 0.473939 -0.116623)
(0.505542 0.261127 -0.127339)
(0.501943 0.0639694 -0.136035)
(0.443443 -0.10481 -0.0881493)
(0.369598 -0.178124 -0.0806337)
(0.407107 -0.179771 -0.0727042)
(0.499624 -0.156373 -0.0265748)
(0.538284 -0.15443 0.0583537)
(0.501715 -0.16109 0.164029)
(0.41169 -0.157031 0.181224)
(0.355854 -0.179117 0.157282)
(0.29183 -0.197795 0.113576)
(0.235778 -0.240599 0.0737778)
(0.159164 -0.328647 0.0413384)
(0.12334 -0.441737 0.0227696)
(0.0813304 -0.536876 0.00624752)
(0.0847806 -0.671446 -0.00457754)
(0.0560784 -0.777263 -0.00242128)
(0.0343478 -0.988183 -0.00385496)
(-0.0310914 -1.21767 0.00434852)
(-0.0522261 -1.77141 -0.043656)
(-0.18432 -2.58505 -0.126395)
(-0.270693 -3.87011 -0.201782)
(-0.349475 -4.75185 -0.219282)
(-0.17895 -3.56394 -0.132178)
(0.00550469 0.338316 -0.0323921)
(0.0951531 0.905393 -0.099515)
(0.220223 1.41564 -0.163741)
(0.282212 1.7858 -0.210782)
(0.309644 1.9568 -0.210437)
(0.331394 1.9616 -0.156841)
(0.352438 1.86907 -0.0774189)
(0.353671 1.72475 0.00489905)
(0.340163 1.57672 0.0643324)
(0.325561 1.42975 0.0999889)
(0.310923 1.29637 0.107448)
(0.301691 1.16798 0.0911202)
(0.308447 1.0481 0.0481237)
(0.348201 0.914692 -0.00272699)
(0.413818 0.765309 -0.0564793)
(0.473751 0.595406 -0.0874084)
(0.499967 0.425206 -0.105653)
(0.511551 0.262864 -0.102666)
(0.510566 0.122198 -0.0816764)
(0.494849 0.0463398 -0.067652)
(0.55143 0.000323742 -0.0483736)
(0.636465 -0.0122119 -0.0040823)
(0.656606 -0.0413498 0.0685835)
(0.628469 -0.088686 0.149233)
(0.540392 -0.112702 0.160374)
(0.475921 -0.135344 0.136218)
(0.403448 -0.145282 0.101181)
(0.299705 -0.187396 0.0750127)
(0.195147 -0.281694 0.052199)
(0.177863 -0.38036 0.0335068)
(0.119528 -0.460493 0.0149318)
(0.113634 -0.589792 0.00673681)
(0.0559503 -0.696062 0.00513719)
(0.0588613 -0.898344 0.00857131)
(-0.0138781 -1.10504 0.00798009)
(-0.038668 -1.61805 -0.0280568)
(-0.166209 -2.40224 -0.123006)
(-0.258298 -3.76036 -0.199185)
(-0.362304 -4.84703 -0.22716)
(-0.201813 -3.96804 -0.145451)
(0.00748836 0.286098 -0.0242647)
(0.0878766 0.795722 -0.0849859)
(0.218054 1.27779 -0.142712)
(0.308388 1.63656 -0.183467)
(0.336878 1.8458 -0.201427)
(0.351829 1.88466 -0.162424)
(0.374661 1.82283 -0.0938431)
(0.386998 1.69016 -0.0151762)
(0.388491 1.55354 0.0468696)
(0.380683 1.41118 0.0897296)
(0.373821 1.28348 0.107738)
(0.370334 1.16266 0.104403)
(0.376618 1.05392 0.0788681)
(0.401314 0.94151 0.0394857)
(0.448538 0.817196 -0.00141178)
(0.498857 0.67364 -0.0267873)
(0.524443 0.528757 -0.0413209)
(0.541496 0.393177 -0.0393396)
(0.566161 0.265227 -0.0267971)
(0.582772 0.162578 -0.00483079)
(0.674858 0.0885026 0.00571845)
(0.77848 0.0663221 0.0443416)
(0.772157 0.0260733 0.0972515)
(0.731528 -0.0244104 0.138756)
(0.653985 -0.0610045 0.141796)
(0.605089 -0.0854748 0.123429)
(0.522073 -0.0885499 0.0965285)
(0.378645 -0.12404 0.0821221)
(0.248322 -0.196435 0.0619185)
(0.235838 -0.298299 0.0445239)
(0.16571 -0.376216 0.0270165)
(0.153047 -0.506565 0.0153181)
(0.0830801 -0.600422 0.0128554)
(0.0772448 -0.792 0.0152622)
(-0.00203117 -0.984802 0.00936744)
(-0.00711774 -1.4591 -0.0234417)
(-0.148398 -2.19417 -0.116835)
(-0.229204 -3.59284 -0.20202)
(-0.375378 -4.85666 -0.232802)
(-0.222455 -4.32382 -0.157847)
(0.00189579 0.259192 -0.019857)
(0.0708679 0.726281 -0.0754251)
(0.192708 1.18002 -0.128012)
(0.310364 1.53384 -0.164324)
(0.367896 1.74786 -0.182058)
(0.378947 1.82986 -0.165195)
(0.400408 1.7923 -0.109315)
(0.424482 1.68343 -0.0401756)
(0.44204 1.54698 0.0258278)
(0.444604 1.40629 0.0746937)
(0.447354 1.27667 0.104155)
(0.450982 1.15513 0.114139)
(0.460696 1.04757 0.10655)
(0.480586 0.941226 0.0874747)
(0.510463 0.834517 0.0613723)
(0.545058 0.71241 0.0402447)
(0.574505 0.590294 0.024703)
(0.598359 0.475988 0.0187032)
(0.63189 0.357909 0.0215191)
(0.668685 0.245019 0.0416124)
(0.796139 0.15769 0.0435666)
(0.910668 0.120833 0.0765183)
(0.89181 0.0638748 0.115876)
(0.857264 0.0186173 0.143926)
(0.783333 -0.00766208 0.137922)
(0.742102 -0.0352103 0.129542)
(0.657562 -0.0353459 0.108366)
(0.484888 -0.0575148 0.088963)
(0.312742 -0.0972086 0.0708442)
(0.300913 -0.204306 0.0543128)
(0.216689 -0.272123 0.0387135)
(0.203288 -0.406654 0.0278848)
(0.109972 -0.487498 0.0215407)
(0.107117 -0.681705 0.0226292)
(0.011622 -0.845508 0.0161959)
(0.0194217 -1.29838 -0.0219362)
(-0.12708 -1.97962 -0.113345)
(-0.198033 -3.40393 -0.199258)
(-0.388362 -4.82936 -0.235702)
(-0.249108 -4.67926 -0.165754)
(0.00814795 0.215418 -0.0181091)
(0.0579636 0.632966 -0.0724304)
(0.161132 1.05368 -0.117202)
(0.283342 1.39075 -0.152528)
(0.374288 1.59482 -0.163373)
(0.408072 1.69327 -0.157572)
(0.416115 1.6943 -0.11679)
(0.442375 1.6065 -0.0578094)
(0.469922 1.486 0.00345062)
(0.489752 1.34848 0.0579213)
(0.504063 1.22423 0.0944811)
(0.517284 1.1041 0.116535)
(0.532868 0.998308 0.123651)
(0.554013 0.895329 0.119811)
(0.581227 0.798053 0.107364)
(0.611831 0.696728 0.0945415)
(0.641713 0.596716 0.0808405)
(0.661662 0.496573 0.0757729)
(0.695171 0.389971 0.0709008)
(0.746195 0.27807 0.0788453)
(0.907086 0.185275 0.0705472)
(1.0395 0.138822 0.0965353)
(1.01392 0.0814007 0.121593)
(0.990484 0.0370554 0.143636)
(0.919136 0.0195787 0.137231)
(0.8848 0.000590621 0.13448)
(0.804319 0.00463275 0.119801)
(0.620385 -0.0125832 0.108492)
(0.405725 -0.0349966 0.0801357)
(0.37322 -0.106194 0.0673561)
(0.281876 -0.177736 0.0482579)
(0.265834 -0.302023 0.036486)
(0.156898 -0.374143 0.0279947)
(0.146186 -0.565194 0.0233833)
(0.034109 -0.709014 0.0176818)
(0.0518843 -1.15222 -0.0284268)
(-0.108496 -1.77364 -0.107813)
(-0.160986 -3.2211 -0.199892)
(-0.417124 -4.79578 -0.236743)
(-0.27935 -5.08698 -0.172678)
(0.000612857 0.206709 -0.0205043)
(0.0289274 0.603964 -0.0731092)
(0.102881 0.997297 -0.117706)
(0.227575 1.33407 -0.14763)
(0.34972 1.52662 -0.160363)
(0.431836 1.60773 -0.150187)
(0.450207 1.63387 -0.126931)
(0.468076 1.55311 -0.078952)
(0.508067 1.44824 -0.0240783)
(0.540026 1.31689 0.0259991)
(0.572426 1.19131 0.0727999)
(0.596119 1.06885 0.0995283)
(0.619021 0.964134 0.117165)
(0.643679 0.862066 0.124067)
(0.671406 0.76881 0.122237)
(0.69944 0.675166 0.11772)
(0.726836 0.585057 0.107979)
(0.744791 0.494014 0.104091)
(0.77966 0.400772 0.0976635)
(0.837783 0.29399 0.1018)
(1.02594 0.204031 0.0907336)
(1.17865 0.156984 0.109621)
(1.15143 0.104361 0.123344)
(1.14187 0.0641581 0.137598)
(1.07827 0.0532975 0.132597)
(1.04892 0.0441797 0.128055)
(0.963445 0.0601885 0.115365)
(0.760662 0.0417123 0.10313)
(0.532459 0.0309534 0.0869145)
(0.486818 -0.0272577 0.0699162)
(0.35274 -0.0672795 0.0533322)
(0.353914 -0.188082 0.0428099)
(0.21157 -0.233138 0.0342157)
(0.212075 -0.421486 0.0271534)
(0.0562833 -0.543647 0.0147699)
(0.101414 -0.967274 -0.0224953)
(-0.0890381 -1.56569 -0.117792)
(-0.129644 -2.99412 -0.202304)
(-0.456424 -4.75381 -0.23681)
(-0.3164 -5.58317 -0.178673)
(0.0137854 0.181635 -0.0280634)
(0.0228682 0.525808 -0.0865147)
(0.0515969 0.908009 -0.119257)
(0.154684 1.19672 -0.153679)
(0.27117 1.39001 -0.163327)
(0.40522 1.44462 -0.156068)
(0.453516 1.48199 -0.133609)
(0.464216 1.41813 -0.101868)
(0.518326 1.32981 -0.0547547)
(0.564805 1.2202 -0.0121815)
(0.609352 1.10808 0.0285105)
(0.649968 0.993911 0.0645215)
(0.688269 0.894423 0.0918371)
(0.719994 0.796933 0.105051)
(0.752761 0.711144 0.111903)
(0.783228 0.623698 0.114077)
(0.811623 0.542308 0.109057)
(0.829375 0.460529 0.108243)
(0.865828 0.377366 0.102679)
(0.931388 0.272137 0.104631)
(1.14921 0.189421 0.0929847)
(1.32629 0.143107 0.109369)
(1.29762 0.0984204 0.115785)
(1.30015 0.0640041 0.126173)
(1.24162 0.0653666 0.119564)
(1.22373 0.0666374 0.114656)
(1.12805 0.100355 0.102039)
(0.922566 0.088023 0.0947487)
(0.660205 0.102074 0.0815509)
(0.623162 0.0352321 0.0720799)
(0.473532 0.0295893 0.0597916)
(0.472619 -0.075559 0.0398077)
(0.319471 -0.102525 0.0242692)
(0.310886 -0.283686 0.0216496)
(0.139829 -0.380863 0.00316719)
(0.173033 -0.789638 -0.0264943)
(-0.025592 -1.35465 -0.126751)
(-0.0521664 -2.77777 -0.203713)
(-0.513486 -4.70419 -0.243345)
(-0.31323 -6.19047 -0.18978)
(-0.0199476 0.173757 -0.0343263)
(-0.0252783 0.564905 -0.103053)
(-0.0288317 0.888329 -0.138144)
(0.0339855 1.20695 -0.162999)
(0.170682 1.35844 -0.173573)
(0.352942 1.38205 -0.172351)
(0.456175 1.38613 -0.150835)
(0.47583 1.32325 -0.131038)
(0.541699 1.23425 -0.0913327)
(0.605416 1.1351 -0.0561077)
(0.66998 1.03492 -0.0199467)
(0.72256 0.935461 0.00864815)
(0.769876 0.841291 0.037131)
(0.811974 0.752185 0.0589695)
(0.852 0.667805 0.0738501)
(0.884725 0.583182 0.0821488)
(0.914961 0.506078 0.0832669)
(0.933042 0.430076 0.0889347)
(0.968434 0.35961 0.08954)
(1.04164 0.260145 0.0947888)
(1.2876 0.193419 0.0863434)
(1.48992 0.148504 0.0999494)
(1.46483 0.110629 0.100588)
(1.48593 0.0790608 0.105729)
(1.43772 0.0837783 0.0998978)
(1.4304 0.0887644 0.0926405)
(1.32459 0.138256 0.0824476)
(1.11514 0.125814 0.0798482)
(0.829807 0.164121 0.0696443)
(0.795541 0.112425 0.0634034)
(0.636256 0.12212 0.0447888)
(0.652733 0.0308953 0.0426212)
(0.465559 0.012534 0.0258355)
(0.488806 -0.133138 0.015229)
(0.273495 -0.1991 -0.00205985)
(0.32013 -0.566586 -0.0415836)
(0.0775464 -1.04115 -0.108645)
(0.119931 -2.45913 -0.236939)
(-0.498851 -4.57933 -0.224349)
(-0.244263 -6.78138 -0.205418)
(0.0438511 0.318743 -0.0582467)
(-0.00602619 0.507079 -0.128274)
(-0.0946881 0.778679 -0.16276)
(-0.0397986 0.97191 -0.185868)
(-0.00324379 1.17544 -0.192835)
(0.203176 1.16178 -0.191548)
(0.379321 1.17198 -0.173537)
(0.433979 1.10707 -0.163679)
(0.521975 1.03822 -0.13008)
(0.611971 0.959461 -0.103399)
(0.698168 0.87975 -0.0721076)
(0.771014 0.799476 -0.0456179)
(0.834658 0.726434 -0.0215597)
(0.884979 0.657456 -0.00271633)
(0.927903 0.589077 0.0123713)
(0.968829 0.51829 0.0274415)
(1.00664 0.448173 0.0373513)
(1.03519 0.379623 0.0516148)
(1.07842 0.319149 0.0572745)
(1.17005 0.218023 0.0661912)
(1.44712 0.166188 0.0611766)
(1.67531 0.116306 0.0758057)
(1.6567 0.0818153 0.0744088)
(1.69252 0.0501202 0.0783489)
(1.65281 0.0776146 0.0687613)
(1.67547 0.0741606 0.0598547)
(1.55871 0.15245 0.0544457)
(1.36957 0.142615 0.0548295)
(1.06993 0.214607 0.0447649)
(1.06463 0.172172 0.0425336)
(0.900876 0.207271 0.0279429)
(0.949778 0.112254 0.0179378)
(0.762658 0.0989205 0.00776013)
(0.849489 -0.0268682 -0.00745048)
(0.596178 -0.10596 -0.0218247)
(0.718011 -0.403349 -0.0466152)
(0.375344 -0.82436 -0.117409)
(0.508424 -2.07697 -0.191373)
(-0.210032 -4.36521 -0.262469)
(0.041463 -7.30342 -0.2227)
(-0.220236 0.0801564 -0.0710965)
(-0.288313 0.706045 -0.161763)
(-0.271768 0.876917 -0.194682)
(-0.231856 1.01783 -0.213893)
(-0.109315 1.04249 -0.227494)
(0.0692356 1.05745 -0.220898)
(0.283809 0.986998 -0.210124)
(0.378084 0.929887 -0.203634)
(0.500786 0.862898 -0.178284)
(0.610825 0.802712 -0.159202)
(0.722028 0.740801 -0.134823)
(0.816949 0.678306 -0.113378)
(0.901183 0.620333 -0.0924221)
(0.972897 0.56378 -0.0732987)
(1.032 0.512543 -0.0578243)
(1.08505 0.457198 -0.0425919)
(1.13753 0.392527 -0.0311274)
(1.19131 0.331648 -0.0156195)
(1.25361 0.289683 -0.00478582)
(1.39721 0.200184 0.00926321)
(1.73264 0.171873 0.0115617)
(2.02652 0.118865 0.0239114)
(2.04487 0.0865694 0.0211559)
(2.14667 0.0584377 0.0218101)
(2.12339 0.0708032 0.019482)
(2.18009 0.0502105 0.0130688)
(2.06514 0.14252 0.00482886)
(1.91786 0.123772 0.00931976)
(1.59572 0.221418 0.00215354)
(1.64867 0.197138 0.00262426)
(1.47765 0.246018 -0.00280476)
(1.61021 0.164353 -0.00743245)
(1.40016 0.159935 -0.0140479)
(1.57141 0.0309962 -0.0197264)
(1.24758 -0.028319 -0.0371196)
(1.43857 -0.250829 -0.0617991)
(0.995963 -0.520526 -0.109606)
(1.19795 -1.46802 -0.186362)
(0.377953 -3.87208 -0.250189)
(0.506635 -7.19082 -0.232392)
(-0.7314 0.794656 -0.184634)
(-0.594665 0.401634 -0.264775)
(-0.728342 0.581178 -0.260743)
(-0.443987 0.610391 -0.264422)
(-0.295096 0.617266 -0.266451)
(0.00644012 0.669211 -0.263477)
(0.254525 0.634939 -0.248191)
(0.472037 0.605477 -0.248742)
(0.665002 0.569516 -0.230542)
(0.85859 0.536297 -0.218888)
(1.04255 0.498443 -0.20119)
(1.21561 0.460317 -0.186055)
(1.36828 0.425404 -0.170201)
(1.5061 0.395543 -0.154854)
(1.61915 0.372553 -0.140923)
(1.7265 0.340445 -0.125883)
(1.83417 0.291778 -0.113415)
(1.98364 0.257775 -0.0995653)
(2.15769 0.225414 -0.0917182)
(2.44267 0.126788 -0.0752099)
(2.86671 0.0991796 -0.0713465)
(3.2887 0.0430962 -0.0552435)
(3.35695 0.00229275 -0.0484196)
(3.50232 -0.0335387 -0.0398392)
(3.4428 -0.0149163 -0.0446512)
(3.55631 -0.0108843 -0.0377155)
(3.39906 0.0751732 -0.0400768)
(3.34461 0.0723647 -0.0325151)
(2.96895 0.161828 -0.0447505)
(3.1364 0.174005 -0.0442354)
(2.93209 0.213867 -0.0461362)
(3.23941 0.148389 -0.0478438)
(2.9561 0.109635 -0.0511218)
(3.29185 0.0255054 -0.0544526)
(2.81959 -0.0427981 -0.0696675)
(3.17041 -0.221719 -0.0787246)
(2.5088 -0.508918 -0.107566)
(2.87145 -1.13625 -0.149622)
(1.89159 -3.14639 -0.207344)
(1.34141 -6.08495 -0.208115)
(1.15814 1.47276 -0.0821593)
(1.7221 0.722324 -0.116249)
(2.46631 0.567754 -0.125396)
(2.88335 0.352431 -0.130207)
(3.16955 0.284466 -0.131246)
(3.41893 0.223165 -0.134854)
(3.66332 0.216864 -0.134309)
(3.8766 0.18976 -0.146293)
(4.07688 0.180383 -0.148205)
(4.2876 0.168267 -0.150184)
(4.48942 0.157984 -0.147673)
(4.69296 0.146168 -0.145009)
(4.86324 0.135487 -0.14137)
(5.0242 0.124945 -0.135451)
(5.14022 0.119291 -0.129912)
(5.26617 0.114333 -0.12123)
(5.3971 0.0877597 -0.114407)
(5.60823 0.0700272 -0.105808)
(5.88335 0.0855119 -0.106605)
(6.34598 0.0550539 -0.0956854)
(6.76922 0.0342951 -0.0930193)
(7.25201 0.0123996 -0.0827933)
(7.26608 -0.0100612 -0.0727491)
(7.33372 -0.0536048 -0.0622559)
(7.14757 -0.045651 -0.0557897)
(7.14768 -0.0572434 -0.0442304)
(6.80536 -0.0264447 -0.0455576)
(6.7823 -0.0132417 -0.0360997)
(6.31437 0.0237474 -0.0457855)
(6.56774 0.0484401 -0.0494865)
(6.32789 0.0773714 -0.0519054)
(6.77443 0.0736766 -0.0504308)
(6.47035 0.045388 -0.0538996)
(6.86497 0.0126454 -0.0506243)
(6.323 -0.0184433 -0.0596018)
(6.54358 -0.106874 -0.0679239)
(5.66738 -0.26262 -0.0825205)
(5.6957 -0.582886 -0.10166)
(4.27455 -1.13912 -0.129567)
(2.79072 -2.52613 -0.155633)
(0.00195184 -0.000248318 0.00252371)
(0.0224289 -0.00355048 -0.00131222)
(0.0481604 -0.00267433 -0.00364171)
(0.0638001 -0.000842056 -0.00476114)
(0.0688275 0.00161491 -0.00424463)
(0.0626608 0.000715386 -0.00306995)
(0.0477984 0.00863306 -0.00793007)
(0.0285791 0.0118919 -0.00943229)
(0.00588791 0.0226901 -0.0199341)
(-0.0327706 0.0167189 -0.0192404)
(-0.0826235 0.010599 -0.0228795)
(-0.142163 0.00241144 -0.0258153)
(-0.210714 -0.00246331 -0.0263033)
(-0.291875 0.00286724 -0.0269565)
(-0.375625 0.0119002 -0.0231862)
(-0.47407 0.0161188 -0.0236997)
(-0.584681 0.00241279 -0.00618503)
(-0.731812 0.0035608 0.022473)
(-0.814846 -0.00302807 0.045574)
(-0.989241 0.00124236 0.0709028)
(-0.938367 0.0379146 0.0788248)
(-0.746858 0.0306223 0.0742333)
(-0.730571 0.0319956 0.0708712)
(-0.708964 0.0231058 0.0742829)
(-0.692359 -0.00383012 0.0818873)
(-0.637368 -0.0249938 0.0979745)
(-0.56893 -0.0439815 0.110282)
(-0.452575 -0.0543553 0.124638)
(-0.314647 -0.0662794 0.132082)
(-0.13986 -0.0739973 0.138903)
(0.021413 -0.0583873 0.115083)
(0.24658 -0.0192224 0.0976815)
(0.44328 -0.0187156 0.0745782)
(0.502403 0.0231315 0.032844)
(0.471992 0.0445016 -0.00623997)
(0.358333 0.0511067 -0.0283632)
(0.231742 0.0369843 -0.0407219)
(0.11007 0.0209161 -0.043261)
(0.0304089 0.00575494 -0.0359658)
(-0.00259972 -0.00684868 -0.0177143)
(0.00755423 -0.0146505 0.000255479)
(0.0420822 -0.0292007 -0.00805138)
(0.0784918 -0.0243002 -0.0148227)
(0.0977736 -0.0103542 -0.0183631)
(0.0956818 0.00055295 -0.0212054)
(0.0798811 0.00612448 -0.0244768)
(0.0413731 0.0192191 -0.0343376)
(-0.0171407 0.0436177 -0.0482119)
(-0.110172 0.0604769 -0.0546044)
(-0.248217 0.0724513 -0.0465414)
(-0.403091 0.0943527 -0.0482202)
(-0.582801 0.12161 -0.0464463)
(-0.772238 0.150218 -0.0467155)
(-0.983634 0.179452 -0.0479277)
(-1.20734 0.18958 -0.0442521)
(-1.44343 0.168008 -0.0280671)
(-1.64824 0.127474 -0.016521)
(-1.85589 0.0957058 0.00151911)
(-1.99678 0.0622569 0.0141657)
(-2.13377 0.0407995 0.0250789)
(-1.96702 0.0461782 0.0255344)
(-1.68421 0.0139261 -0.000728725)
(-1.55931 -0.0211136 -0.021466)
(-1.46635 -0.100303 -0.0174863)
(-1.38627 -0.184364 -0.00852645)
(-1.25632 -0.261272 -0.00368818)
(-1.11738 -0.32178 -0.0018782)
(-0.940594 -0.35972 -0.00225602)
(-0.752169 -0.373923 -0.00920843)
(-0.515207 -0.373728 -0.0214056)
(-0.288209 -0.345343 -0.0329218)
(-0.0126715 -0.251232 -0.082032)
(0.276635 -0.181677 -0.0788749)
(0.485751 -0.0694583 -0.105045)
(0.570483 0.0402538 -0.104133)
(0.523591 0.119587 -0.119656)
(0.402945 0.142348 -0.119638)
(0.241682 0.121569 -0.11888)
(0.0977826 0.0838338 -0.101986)
(0.0134077 0.0298578 -0.047369)
(0.0101288 -0.0347245 0.000824994)
(0.0452793 -0.0596534 -0.0107427)
(0.0746558 -0.0452641 -0.0217221)
(0.0758273 -0.0137777 -0.0316674)
(0.047493 0.0192728 -0.0352898)
(-0.000334615 0.0595326 -0.0380363)
(-0.0693766 0.101196 -0.0552066)
(-0.1941 0.15646 -0.0641746)
(-0.375546 0.213839 -0.0739983)
(-0.592094 0.274023 -0.0801561)
(-0.838698 0.336289 -0.0842597)
(-1.10816 0.389561 -0.0879013)
(-1.37538 0.422771 -0.0891294)
(-1.64277 0.411013 -0.0905654)
(-1.89536 0.360795 -0.079768)
(-2.11669 0.299154 -0.0800186)
(-2.28388 0.238921 -0.0839246)
(-2.44662 0.173798 -0.0856577)
(-2.5454 0.119159 -0.0906195)
(-2.61121 0.0551213 -0.093086)
(-2.35357 0.0191907 -0.120354)
(-2.04612 -0.0573925 -0.155058)
(-1.91119 -0.163611 -0.149313)
(-1.79449 -0.297004 -0.134231)
(-1.7089 -0.421933 -0.140627)
(-1.57561 -0.547194 -0.14277)
(-1.43732 -0.651669 -0.14757)
(-1.26317 -0.72838 -0.151292)
(-1.09845 -0.761047 -0.160731)
(-0.904865 -0.739274 -0.175982)
(-0.700145 -0.684216 -0.187891)
(-0.450535 -0.570969 -0.203813)
(-0.184485 -0.446017 -0.203011)
(0.0854786 -0.268346 -0.213128)
(0.29874 -0.0726468 -0.206457)
(0.376869 0.111451 -0.196251)
(0.338719 0.193402 -0.183168)
(0.223368 0.214802 -0.173472)
(0.097177 0.175329 -0.144429)
(0.0126253 0.0855708 -0.0658125)
(0.0108737 -0.0548068 0.00561793)
(0.0353669 -0.0846381 -0.00916082)
(0.0366419 -0.0501646 -0.0243804)
(0.00745667 0.00617425 -0.0310792)
(-0.0441231 0.0841267 -0.0521771)
(-0.127113 0.174783 -0.0661607)
(-0.262157 0.267149 -0.0831333)
(-0.455342 0.374047 -0.101431)
(-0.71668 0.482173 -0.114248)
(-1.01523 0.567207 -0.121905)
(-1.30661 0.619327 -0.127718)
(-1.58849 0.631346 -0.131804)
(-1.85462 0.58898 -0.13112)
(-2.09767 0.512128 -0.123523)
(-2.28249 0.43159 -0.126236)
(-2.42535 0.358811 -0.133152)
(-2.52619 0.286619 -0.142817)
(-2.62664 0.209419 -0.149772)
(-2.67141 0.139668 -0.157157)
(-2.66564 0.0509838 -0.162723)
(-2.39699 -0.0118704 -0.165749)
(-2.10446 -0.139885 -0.156926)
(-1.97527 -0.288104 -0.140501)
(-1.88916 -0.432508 -0.134446)
(-1.82846 -0.582513 -0.139387)
(-1.73232 -0.742274 -0.14233)
(-1.62982 -0.892349 -0.147024)
(-1.48816 -1.02138 -0.150002)
(-1.33838 -1.10918 -0.156496)
(-1.17628 -1.12271 -0.16904)
(-1.03026 -1.05671 -0.191631)
(-0.86423 -0.904194 -0.222691)
(-0.658457 -0.728577 -0.214895)
(-0.377219 -0.512316 -0.224567)
(-0.0756931 -0.252685 -0.218343)
(0.105142 0.000129839 -0.246243)
(0.156767 0.175318 -0.224708)
(0.128785 0.248774 -0.210255)
(0.0547996 0.229557 -0.17128)
(0.00570074 0.119461 -0.0759607)
(0.00564511 -0.073085 0.0119853)
(0.0110251 -0.088547 -0.00486676)
(-0.0248771 -0.0323244 -0.0338233)
(-0.086754 0.083871 -0.0550428)
(-0.171863 0.212902 -0.0760148)
(-0.310918 0.351947 -0.0978976)
(-0.493474 0.496493 -0.123665)
(-0.733722 0.636521 -0.144114)
(-1.03568 0.755378 -0.157603)
(-1.34914 0.812897 -0.166756)
(-1.64449 0.798623 -0.16859)
(-1.91464 0.731536 -0.156348)
(-2.12767 0.639427 -0.142935)
(-2.27643 0.551073 -0.139383)
(-2.37368 0.473645 -0.135579)
(-2.44247 0.392998 -0.134645)
(-2.48325 0.31892 -0.134932)
(-2.52933 0.235998 -0.131984)
(-2.52571 0.160975 -0.12603)
(-2.48753 0.0524497 -0.11484)
(-2.22667 -0.0357834 -0.103719)
(-1.97047 -0.183795 -0.0733298)
(-1.87176 -0.341174 -0.052483)
(-1.81242 -0.500782 -0.0519007)
(-1.78594 -0.672167 -0.0600092)
(-1.73695 -0.863628 -0.0669491)
(-1.68459 -1.05736 -0.0760307)
(-1.59634 -1.24475 -0.0820767)
(-1.4884 -1.39776 -0.0879378)
(-1.34468 -1.48805 -0.0951183)
(-1.19812 -1.48194 -0.104903)
(-1.08551 -1.36467 -0.132954)
(-1.00639 -1.11866 -0.175646)
(-0.782171 -0.80757 -0.181109)
(-0.439002 -0.493272 -0.194455)
(-0.147572 -0.160818 -0.212143)
(0.00231289 0.098225 -0.213923)
(0.0252096 0.237997 -0.218528)
(0.0127404 0.243849 -0.171147)
(-0.00291232 0.125838 -0.0732037)
(0.00367702 -0.0798151 0.0204851)
(-0.0289391 -0.0603071 -0.00965427)
(-0.094053 0.0439001 -0.035756)
(-0.184368 0.220877 -0.0779874)
(-0.319108 0.39613 -0.108422)
(-0.486949 0.586014 -0.142023)
(-0.700402 0.752567 -0.166713)
(-0.958953 0.903913 -0.188514)
(-1.29005 0.940454 -0.193725)
(-1.62922 0.895653 -0.175387)
(-1.89056 0.816038 -0.153419)
(-2.06473 0.725956 -0.139536)
(-2.1696 0.64437 -0.124283)
(-2.23192 0.561103 -0.108281)
(-2.25592 0.479655 -0.0927666)
(-2.26592 0.395395 -0.0826775)
(-2.26222 0.319241 -0.0715125)
(-2.26626 0.237609 -0.0561273)
(-2.23507 0.16522 -0.0391583)
(-2.17744 0.0500844 -0.0238299)
(-1.94391 -0.0359622 -0.00103272)
(-1.71633 -0.192319 0.0417671)
(-1.6437 -0.347911 0.0460332)
(-1.61331 -0.511936 0.0355216)
(-1.61564 -0.685926 0.0235165)
(-1.60894 -0.888146 0.0124385)
(-1.60678 -1.1037 -0.00161048)
(-1.57988 -1.32926 -0.0109617)
(-1.53737 -1.54204 -0.0232781)
(-1.45243 -1.70847 -0.0349038)
(-1.3414 -1.79499 -0.0461497)
(-1.19954 -1.75924 -0.0658386)
(-1.14094 -1.59401 -0.0849382)
(-1.06091 -1.2015 -0.136663)
(-0.748493 -0.804432 -0.156599)
(-0.378132 -0.376438 -0.189521)
(-0.130411 -0.033823 -0.231837)
(-0.0328375 0.175805 -0.216099)
(-0.0139754 0.215394 -0.17363)
(-0.00479527 0.107315 -0.0714385)
(-0.000504957 -0.0566815 0.0259436)
(-0.0565522 0.0156211 -0.0107753)
(-0.15531 0.183861 -0.0637204)
(-0.280311 0.396362 -0.110084)
(-0.437337 0.614702 -0.150365)
(-0.627019 0.817975 -0.181067)
(-0.84984 0.982681 -0.208324)
(-1.18576 1.01216 -0.206462)
(-1.54264 0.93163 -0.162773)
(-1.7803 0.860307 -0.145777)
(-1.92461 0.798338 -0.126525)
(-2.00646 0.729419 -0.100085)
(-2.04093 0.644588 -0.0697897)
(-2.03841 0.554527 -0.0425646)
(-2.02065 0.466579 -0.0197874)
(-2.00107 0.37974 -0.000413783)
(-1.97445 0.304674 0.0139075)
(-1.95689 0.228762 0.0264097)
(-1.91489 0.163442 0.0450352)
(-1.85495 0.0573124 0.0593655)
(-1.64693 -0.0232225 0.0871403)
(-1.44463 -0.176498 0.142165)
(-1.39091 -0.326442 0.131625)
(-1.37506 -0.491092 0.119645)
(-1.39548 -0.660236 0.101859)
(-1.41386 -0.86139 0.0847352)
(-1.4431 -1.08236 0.0636494)
(-1.4619 -1.32562 0.0416752)
(-1.47469 -1.57424 0.0245976)
(-1.46181 -1.8053 0.00753459)
(-1.41183 -1.98009 -0.00839329)
(-1.31758 -2.03774 -0.0234506)
(-1.20315 -1.97357 -0.0438421)
(-1.16758 -1.68779 -0.0704151)
(-0.990404 -1.20455 -0.106897)
(-0.586775 -0.697672 -0.138388)
(-0.233207 -0.232066 -0.166892)
(-0.0680011 0.0766337 -0.181999)
(-0.0143962 0.166023 -0.152802)
(-0.00146562 0.0851875 -0.0605059)
(-0.00128705 -0.00487431 0.0151721)
(-0.0764271 0.122885 -0.0314772)
(-0.207088 0.337727 -0.0932883)
(-0.350512 0.583673 -0.151074)
(-0.52547 0.812353 -0.189176)
(-0.731253 0.995283 -0.220465)
(-1.06873 1.04141 -0.204282)
(-1.40451 0.959762 -0.158657)
(-1.62376 0.912161 -0.143126)
(-1.76174 0.87627 -0.113995)
(-1.82765 0.808172 -0.0753663)
(-1.84269 0.716163 -0.0333431)
(-1.82428 0.620491 0.00380498)
(-1.79223 0.524893 0.0356492)
(-1.75663 0.433646 0.0606376)
(-1.72314 0.349992 0.0746099)
(-1.6875 0.281875 0.0858536)
(-1.65968 0.214058 0.0926394)
(-1.61706 0.157956 0.108027)
(-1.55682 0.0668823 0.116852)
(-1.37831 -0.00746091 0.149702)
(-1.20066 -0.15102 0.203747)
(-1.15242 -0.287915 0.186252)
(-1.14639 -0.443363 0.169762)
(-1.17137 -0.604895 0.148538)
(-1.20064 -0.796045 0.129439)
(-1.24313 -1.01168 0.107078)
(-1.28536 -1.25717 0.0855765)
(-1.33384 -1.52387 0.0625149)
(-1.36904 -1.79239 0.0369385)
(-1.38549 -2.03508 0.0185648)
(-1.35659 -2.20047 -0.00275869)
(-1.27458 -2.23069 -0.0181866)
(-1.20445 -2.09338 -0.042316)
(-1.11445 -1.6688 -0.0729652)
(-0.800516 -1.08519 -0.109529)
(-0.345097 -0.496236 -0.151197)
(-0.0859404 -0.0326356 -0.195597)
(-0.0111996 0.10547 -0.153052)
(0.00551261 0.0720572 -0.0676867)
(-0.00841862 0.0427984 0.0176924)
(-0.0927681 0.217479 -0.0422717)
(-0.230917 0.45055 -0.114987)
(-0.395929 0.697202 -0.172177)
(-0.598717 0.906869 -0.204768)
(-0.907185 1.02 -0.196892)
(-1.22686 0.984258 -0.164555)
(-1.44513 0.978477 -0.146303)
(-1.5888 0.95351 -0.108402)
(-1.64333 0.885723 -0.0608909)
(-1.64723 0.790059 -0.00728482)
(-1.61796 0.686387 0.0440974)
(-1.57827 0.586753 0.0852376)
(-1.53999 0.491225 0.113737)
(-1.50571 0.406802 0.131549)
(-1.47468 0.328102 0.136115)
(-1.43996 0.264817 0.138536)
(-1.40842 0.203092 0.136158)
(-1.36787 0.153462 0.146207)
(-1.31512 0.0793366 0.149479)
(-1.15707 0.0156197 0.186214)
(-0.998685 -0.124984 0.240363)
(-0.95408 -0.250385 0.219118)
(-0.95033 -0.396494 0.200207)
(-0.972608 -0.546285 0.176431)
(-1.00368 -0.72373 0.156692)
(-1.04747 -0.92576 0.134256)
(-1.09835 -1.16164 0.113255)
(-1.15959 -1.43017 0.089935)
(-1.22178 -1.71807 0.0675399)
(-1.27875 -2.00822 0.040381)
(-1.30741 -2.25035 0.020478)
(-1.28616 -2.39665 -0.0026284)
(-1.2111 -2.37515 -0.0202207)
(-1.14307 -2.10993 -0.0427989)
(-0.942648 -1.53564 -0.0685658)
(-0.483284 -0.834617 -0.103586)
(-0.140427 -0.249901 -0.131274)
(-0.033825 0.0533525 -0.129101)
(0.0146683 0.0595547 -0.0556842)
(-0.0129755 0.0994654 0.00192606)
(-0.112918 0.325916 -0.0643417)
(-0.264238 0.558419 -0.137903)
(-0.432293 0.780866 -0.189059)
(-0.678083 0.958201 -0.20632)
(-0.989188 1.01387 -0.183361)
(-1.24902 1.03949 -0.158942)
(-1.4028 1.03269 -0.117206)
(-1.46529 0.97036 -0.0616245)
(-1.46111 0.872107 0.00278867)
(-1.42855 0.759046 0.0676535)
(-1.3864 0.652884 0.119122)
(-1.34993 0.553264 0.157244)
(-1.31948 0.462265 0.177929)
(-1.29473 0.381053 0.185597)
(-1.26757 0.30664 0.178681)
(-1.23249 0.245724 0.170498)
(-1.19618 0.19105 0.160756)
(-1.15416 0.147778 0.164346)
(-1.10004 0.0962519 0.171624)
(-0.980555 0.0399489 0.195196)
(-0.847602 -0.0935703 0.253524)
(-0.794278 -0.213907 0.231761)
(-0.791277 -0.349047 0.210435)
(-0.805272 -0.487943 0.184922)
(-0.832903 -0.648312 0.164243)
(-0.871661 -0.83321 0.1424)
(-0.921874 -1.05131 0.123196)
(-0.985804 -1.3084 0.102579)
(-1.05881 -1.59989 0.0812257)
(-1.13519 -1.91555 0.0580796)
(-1.20262 -2.22113 0.0317751)
(-1.23284 -2.45977 0.00871064)
(-1.20353 -2.56296 -0.0112812)
(-1.12265 -2.44772 -0.0332221)
(-0.995834 -2.00064 -0.0482294)
(-0.667691 -1.25176 -0.0774079)
(-0.208354 -0.522456 -0.103021)
(-0.0264855 -0.0332109 -0.131127)
(-0.00340483 0.0414032 -0.0602787)
(-0.0159307 0.166723 -0.00714644)
(-0.124921 0.445766 -0.0825066)
(-0.282365 0.686412 -0.156412)
(-0.461351 0.9 -0.202055)
(-0.734586 1.0428 -0.204359)
(-1.01724 1.08941 -0.177065)
(-1.20557 1.10691 -0.137621)
(-1.28619 1.06285 -0.0786766)
(-1.28993 0.966729 -0.00479572)
(-1.25492 0.845842 0.0712367)
(-1.21383 0.727295 0.136013)
(-1.17622 0.619651 0.185244)
(-1.1515 0.525422 0.21717)
(-1.13416 0.438739 0.22892)
(-1.11977 0.362807 0.227215)
(-1.09715 0.289024 0.206693)
(-1.06069 0.230392 0.190538)
(-1.01767 0.179417 0.172333)
(-0.967088 0.140202 0.173129)
(-0.922703 0.108831 0.183656)
(-0.840163 0.0514819 0.202417)
(-0.732372 -0.0665595 0.24692)
(-0.676932 -0.187382 0.234151)
(-0.668451 -0.312874 0.20974)
(-0.674037 -0.44224 0.183799)
(-0.693706 -0.586459 0.162232)
(-0.723455 -0.752504 0.140675)
(-0.765635 -0.948218 0.123144)
(-0.823664 -1.185 0.104737)
(-0.895351 -1.46484 0.0877893)
(-0.979083 -1.7862 0.0672611)
(-1.06205 -2.12586 0.045295)
(-1.13052 -2.44295 0.0177387)
(-1.14467 -2.65916 -0.00557662)
(-1.09103 -2.68294 -0.0241567)
(-0.976039 -2.40352 -0.0386422)
(-0.752712 -1.71575 -0.0482952)
(-0.321676 -0.810077 -0.0747909)
(-0.0464468 -0.152969 -0.0955165)
(-0.00952848 0.0269606 -0.047606)
(-0.0154992 0.236692 -0.0242855)
(-0.127459 0.569145 -0.106943)
(-0.286278 0.818507 -0.1794)
(-0.483784 1.02275 -0.21751)
(-0.754188 1.12746 -0.206913)
(-0.978391 1.17056 -0.172779)
(-1.10087 1.15631 -0.114294)
(-1.12555 1.07137 -0.0347649)
(-1.10062 0.946785 0.0517253)
(-1.05837 0.812629 0.130169)
(-1.02095 0.692886 0.194186)
(-0.995851 0.589677 0.238329)
(-0.98644 0.499664 0.264229)
(-0.981441 0.418006 0.269388)
(-0.97755 0.341477 0.256044)
(-0.957616 0.268561 0.224926)
(-0.914227 0.205983 0.195157)
(-0.86381 0.157151 0.172642)
(-0.799016 0.123886 0.173075)
(-0.759949 0.111415 0.196831)
(-0.722969 0.0655524 0.212351)
(-0.648243 -0.0489848 0.231492)
(-0.591989 -0.16785 0.225427)
(-0.577552 -0.287077 0.200798)
(-0.573312 -0.407822 0.173832)
(-0.585058 -0.536927 0.152253)
(-0.604694 -0.685577 0.130357)
(-0.636652 -0.858061 0.114266)
(-0.684001 -1.07049 0.0978391)
(-0.74699 -1.32849 0.0839112)
(-0.827063 -1.6406 0.0675686)
(-0.914645 -1.99377 0.0481193)
(-1.00036 -2.35976 0.024404)
(-1.05325 -2.67123 -0.00369524)
(-1.04052 -2.83528 -0.0253324)
(-0.942173 -2.71428 -0.0399982)
(-0.762277 -2.1811 -0.0444675)
(-0.405063 -1.20495 -0.0514662)
(-0.0753676 -0.337574 -0.0747309)
(-0.0248634 -0.00357067 -0.0511039)
(-0.0122292 0.300275 -0.0378279)
(-0.118631 0.68458 -0.126285)
(-0.27639 0.945436 -0.197076)
(-0.49002 1.12784 -0.225474)
(-0.731189 1.21376 -0.209261)
(-0.894127 1.24086 -0.161411)
(-0.96685 1.18372 -0.0850185)
(-0.958141 1.06338 0.00770161)
(-0.922179 0.916678 0.100428)
(-0.881099 0.779702 0.178533)
(-0.856013 0.662112 0.237854)
(-0.844531 0.562826 0.277146)
(-0.847893 0.477389 0.299435)
(-0.855016 0.396056 0.296022)
(-0.859249 0.320622 0.277265)
(-0.841485 0.241148 0.22498)
(-0.792251 0.178212 0.192841)
(-0.725263 0.132098 0.162016)
(-0.637906 0.103593 0.168589)
(-0.604951 0.110691 0.216842)
(-0.625515 0.0772921 0.233664)
(-0.590169 -0.0386014 0.214645)
(-0.532362 -0.153421 0.206412)
(-0.511977 -0.272287 0.187016)
(-0.498342 -0.387334 0.159804)
(-0.501798 -0.504165 0.13946)
(-0.51279 -0.637504 0.117047)
(-0.533499 -0.788578 0.10248)
(-0.569156 -0.976236 0.0872578)
(-0.619113 -1.2074 0.0761917)
(-0.688207 -1.49759 0.0622662)
(-0.771058 -1.84473 0.0460691)
(-0.859773 -2.23477 0.0240549)
(-0.934057 -2.61249 -0.00156088)
(-0.960547 -2.89665 -0.0267919)
(-0.903447 -2.93664 -0.0424821)
(-0.743121 -2.57569 -0.0431854)
(-0.468354 -1.65548 -0.0360609)
(-0.107438 -0.580641 -0.0380496)
(-0.00555654 -0.0602036 -0.0320822)
(-0.00717983 0.357948 -0.0548611)
(-0.100261 0.794193 -0.149333)
(-0.262231 1.06365 -0.216575)
(-0.471147 1.21913 -0.23887)
(-0.669387 1.30069 -0.213829)
(-0.785767 1.29588 -0.15227)
(-0.82246 1.19452 -0.0616732)
(-0.79743 1.04841 0.0422158)
(-0.761508 0.890052 0.137391)
(-0.730103 0.750247 0.211355)
(-0.717518 0.633937 0.265497)
(-0.71646 0.537234 0.301794)
(-0.731635 0.451584 0.319439)
(-0.746531 0.370171 0.314562)
(-0.761271 0.289289 0.27952)
(-0.743581 0.20758 0.218198)
(-0.675876 0.141677 0.161489)
(-0.596289 0.0874876 0.144433)
(-0.481378 0.0739729 0.162439)
(-0.449248 0.105292 0.254064)
(-0.538668 0.0846122 0.272418)
(-0.549307 -0.0376516 0.201393)
(-0.491332 -0.14028 0.173565)
(-0.467557 -0.256215 0.165702)
(-0.44226 -0.375654 0.139807)
(-0.438742 -0.48236 0.123771)
(-0.442339 -0.605155 0.10087)
(-0.454373 -0.737308 0.0874033)
(-0.479509 -0.901823 0.0728513)
(-0.516116 -1.10599 0.0631714)
(-0.571364 -1.36926 0.0507984)
(-0.641477 -1.69823 0.0368996)
(-0.727395 -2.09334 0.0174274)
(-0.810978 -2.51633 -0.00403584)
(-0.867534 -2.89586 -0.0338544)
(-0.853104 -3.08421 -0.0519826)
(-0.723379 -2.89294 -0.055323)
(-0.487769 -2.10093 -0.0423011)
(-0.132019 -0.863692 -0.0287098)
(0.0033509 -0.124118 -0.0297949)
(-0.000247322 0.393557 -0.0653133)
(-0.0802367 0.883498 -0.164116)
(-0.24278 1.15601 -0.22873)
(-0.432434 1.30091 -0.246176)
(-0.587273 1.37123 -0.21136)
(-0.675003 1.33106 -0.137038)
(-0.685838 1.19689 -0.0348775)
(-0.652796 1.03043 0.0736037)
(-0.626919 0.864602 0.163857)
(-0.606117 0.723053 0.230163)
(-0.602368 0.606943 0.277586)
(-0.609399 0.510301 0.307695)
(-0.631153 0.423107 0.324433)
(-0.655478 0.339794 0.308737)
(-0.675705 0.254602 0.27368)
(-0.655215 0.174978 0.181462)
(-0.584091 0.104944 0.163066)
(-0.47015 0.110485 0.133239)
(-0.314318 0.119788 0.120181)
(-0.300818 0.150458 0.259082)
(-0.471191 0.125998 0.327564)
(-0.518811 -0.0328622 0.194995)
(-0.449977 -0.133588 0.138739)
(-0.439083 -0.228128 0.125768)
(-0.403531 -0.3538 0.11326)
(-0.388558 -0.467749 0.105318)
(-0.388633 -0.5833 0.084035)
(-0.391127 -0.70203 0.0727612)
(-0.409304 -0.846858 0.0578275)
(-0.435062 -1.02501 0.0493323)
(-0.476408 -1.25929 0.0384347)
(-0.532879 -1.5639 0.027739)
(-0.609322 -1.95206 0.0124743)
(-0.694234 -2.39811 -0.00699198)
(-0.765662 -2.84763 -0.0345956)
(-0.788601 -3.16672 -0.0616859)
(-0.692835 -3.13894 -0.0653057)
(-0.490185 -2.49666 -0.0517895)
(-0.148861 -1.19835 -0.0248047)
(0.0234828 -0.167305 -0.021357)
(0.00829621 0.42749 -0.0787658)
(-0.0609926 0.968359 -0.182796)
(-0.212012 1.24802 -0.247284)
(-0.372361 1.39494 -0.257499)
(-0.494634 1.44163 -0.212614)
(-0.558511 1.36852 -0.126395)
(-0.55996 1.2102 -0.0124286)
(-0.532445 1.02598 0.0928302)
(-0.515131 0.852521 0.176128)
(-0.503878 0.70688 0.232632)
(-0.505773 0.587011 0.270137)
(-0.515863 0.486904 0.294655)
(-0.542624 0.396523 0.30653)
(-0.57171 0.306419 0.293717)
(-0.597279 0.228151 0.253566)
(-0.574305 0.146911 0.164954)
(-0.420665 0.147421 0.0566971)
(-0.271649 0.192659 -0.0939176)
(-0.20809 0.234778 -0.119253)
(-0.276769 0.236132 0.18787)
(-0.502816 0.18461 0.414541)
(-0.52907 -0.0298423 0.199767)
(-0.405423 -0.139171 0.100677)
(-0.403353 -0.207734 0.0957781)
(-0.388368 -0.314078 0.0663974)
(-0.358491 -0.431562 0.080487)
(-0.344392 -0.563798 0.0638666)
(-0.342437 -0.675171 0.0553275)
(-0.353553 -0.803508 0.0409642)
(-0.369697 -0.960966 0.0334782)
(-0.400375 -1.16903 0.0243985)
(-0.446149 -1.45012 0.0173213)
(-0.51299 -1.82019 0.00650368)
(-0.594551 -2.27919 -0.0118851)
(-0.671086 -2.78073 -0.0402209)
(-0.714937 -3.21027 -0.0720371)
(-0.653449 -3.33726 -0.080891)
(-0.478206 -2.85963 -0.0680414)
(-0.157752 -1.56008 -0.03207)
(0.0499248 -0.237263 -0.0187025)
(0.0117029 0.428475 -0.083243)
(-0.0425363 1.01472 -0.192615)
(-0.172503 1.3253 -0.253883)
(-0.307668 1.46747 -0.259546)
(-0.406588 1.49214 -0.205796)
(-0.456329 1.38955 -0.110578)
(-0.455102 1.21286 0.0057354)
(-0.435284 1.01901 0.108708)
(-0.430279 0.842417 0.181872)
(-0.425422 0.693363 0.224963)
(-0.427317 0.56814 0.248711)
(-0.435108 0.464171 0.260534)
(-0.464941 0.36325 0.266451)
(-0.491831 0.277205 0.24482)
(-0.522714 0.184324 0.187118)
(-0.433632 0.204715 0.0260048)
(-0.238831 0.259136 -0.251879)
(-0.0621287 0.317763 -0.523851)
(-0.0892003 0.338798 -0.463615)
(-0.321126 0.293295 0.104358)
(-0.571114 0.193028 0.502644)
(-0.532262 -0.043587 0.184358)
(-0.355277 -0.157514 0.0487381)
(-0.342011 -0.20795 0.0659512)
(-0.352314 -0.289541 0.0345786)
(-0.35122 -0.37576 0.0441085)
(-0.327781 -0.504581 0.0382392)
(-0.297786 -0.634467 0.0367321)
(-0.306811 -0.765076 0.0229542)
(-0.318901 -0.904609 0.0157342)
(-0.341847 -1.0852 0.00883137)
(-0.373314 -1.33905 0.0070023)
(-0.429101 -1.6881 0.000842754)
(-0.507579 -2.1517 -0.0157728)
(-0.588695 -2.68882 -0.0441839)
(-0.64811 -3.21721 -0.0794439)
(-0.617547 -3.49151 -0.0957091)
(-0.468573 -3.17334 -0.086222)
(-0.174859 -1.90303 -0.0443201)
(0.0574054 -0.28743 -0.0195536)
(0.00977169 0.447052 -0.0920228)
(-0.0114045 1.08793 -0.207303)
(-0.120315 1.4311 -0.270839)
(-0.246706 1.56965 -0.269021)
(-0.321078 1.57113 -0.207592)
(-0.360624 1.45021 -0.104209)
(-0.3595 1.25795 0.01403)
(-0.350623 1.05668 0.113873)
(-0.353982 0.872871 0.17592)
(-0.354118 0.716209 0.203665)
(-0.352629 0.582899 0.206066)
(-0.362518 0.466186 0.197781)
(-0.389139 0.353043 0.181415)
(-0.42682 0.273942 0.110108)
(-0.37779 0.236005 0.0457608)
(-0.250904 0.356962 -0.207664)
(-0.037558 0.445457 -0.648377)
(0.226466 0.530112 -0.864251)
(0.0800699 0.490548 -0.669415)
(-0.37015 0.360021 0.0890288)
(-0.616396 0.195581 0.540135)
(-0.489043 -0.0589356 0.121986)
(-0.299043 -0.173899 -0.0380402)
(-0.269062 -0.211308 0.0276354)
(-0.288714 -0.278612 0.00300796)
(-0.30281 -0.338555 0.0234744)
(-0.322003 -0.427693 0.00855608)
(-0.300077 -0.544851 0.00908309)
(-0.278349 -0.680449 0.00195937)
(-0.267779 -0.8343 -0.00264771)
(-0.284149 -1.01301 -0.00552672)
(-0.310355 -1.2444 -0.00394157)
(-0.358129 -1.56041 -0.00502101)
(-0.425149 -2.01443 -0.0203315)
(-0.504043 -2.58279 -0.050406)
(-0.576061 -3.20362 -0.0881459)
(-0.571691 -3.62477 -0.112717)
(-0.448609 -3.47767 -0.105793)
(-0.179463 -2.27043 -0.0608612)
(0.0635699 -0.395691 -0.0199902)
(0.00612933 0.4497 -0.087714)
(-0.0189537 1.16282 -0.208571)
(-0.0805139 1.52379 -0.269783)
(-0.173644 1.67638 -0.27374)
(-0.237207 1.66284 -0.205628)
(-0.263546 1.5284 -0.0996129)
(-0.268201 1.32763 0.0190621)
(-0.269989 1.12252 0.11366)
(-0.285681 0.936425 0.165673)
(-0.290302 0.777793 0.17774)
(-0.292857 0.643744 0.155245)
(-0.305137 0.524769 0.12027)
(-0.315117 0.432131 0.0460115)
(-0.292877 0.38352 -0.057803)
(-0.185626 0.387408 -0.190922)
(-0.0543017 0.502135 -0.503621)
(0.174093 0.724492 -0.956809)
(0.504554 0.838972 -1.21191)
(0.274675 0.766326 -0.872776)
(-0.363073 0.483784 0.00442786)
(-0.611597 0.214224 0.529408)
(-0.422126 -0.0617147 0.0332054)
(-0.233318 -0.186415 -0.158081)
(-0.182227 -0.206115 -0.0190517)
(-0.215526 -0.265692 -0.032228)
(-0.235948 -0.318687 0.00545635)
(-0.267015 -0.382663 -0.00415119)
(-0.274975 -0.458377 -0.0041681)
(-0.290832 -0.563666 -0.016428)
(-0.281866 -0.70076 -0.0202427)
(-0.26772 -0.865566 -0.0225065)
(-0.256404 -1.09595 -0.018383)
(-0.283363 -1.41178 -0.015724)
(-0.343462 -1.85938 -0.026681)
(-0.426732 -2.43016 -0.0524022)
(-0.508615 -3.12693 -0.0976129)
(-0.536589 -3.69293 -0.128401)
(-0.451275 -3.72561 -0.127484)
(-0.212855 -2.60431 -0.0826063)
(0.0470474 -0.450928 -0.0286786)
(0.00667027 0.611187 -0.118239)
(0.0133316 1.38425 -0.242552)
(-0.0317745 1.7753 -0.306541)
(-0.0907636 1.90235 -0.291637)
(-0.134312 1.88766 -0.227139)
(-0.172713 1.74607 -0.116064)
(-0.183505 1.54279 0.00461537)
(-0.19961 1.34688 0.0963415)
(-0.222075 1.16762 0.141131)
(-0.225438 1.00839 0.143181)
(-0.217341 0.871003 0.0926375)
(-0.207723 0.752927 0.0369165)
(-0.188188 0.659808 -0.0856699)
(-0.174502 0.611549 -0.254878)
(-0.050359 0.549349 -0.444404)
(0.194125 0.675491 -0.783374)
(0.414106 1.04501 -1.14539)
(0.640075 1.36682 -1.40596)
(0.494691 1.28198 -1.17775)
(-0.152668 0.693961 -0.245526)
(-0.498639 0.244774 0.477653)
(-0.345858 -0.0424406 -0.0790618)
(-0.159372 -0.173127 -0.307115)
(-0.0810787 -0.193927 -0.0880823)
(-0.136993 -0.251486 -0.076212)
(-0.161347 -0.292856 -0.0158926)
(-0.202226 -0.356036 -0.0223292)
(-0.218093 -0.422988 -0.0175789)
(-0.241928 -0.495315 -0.0255248)
(-0.24879 -0.585945 -0.0274604)
(-0.266161 -0.702 -0.0269158)
(-0.277419 -0.888429 -0.0211508)
(-0.290298 -1.1633 -0.0159581)
(-0.286946 -1.59274 -0.0335163)
(-0.328004 -2.20394 -0.0621844)
(-0.414538 -2.9707 -0.104712)
(-0.464314 -3.6732 -0.141899)
(-0.423706 -3.92146 -0.143675)
(-0.213352 -2.97506 -0.0998665)
(0.05564 -0.639907 -0.032188)
(-0.0239501 0.772759 -0.135956)
(-0.0196102 1.62542 -0.265189)
(-0.0214958 2.04917 -0.329868)
(-0.0515229 2.17837 -0.318379)
(-0.0628472 2.13145 -0.23845)
(-0.0852112 1.97634 -0.116736)
(-0.0993552 1.77139 0.00375045)
(-0.122585 1.57878 0.0901745)
(-0.160766 1.41457 0.133955)
(-0.17107 1.25927 0.129149)
(-0.159614 1.12152 0.0657925)
(-0.148568 1.00266 0.000246695)
(-0.11875 0.886358 -0.157878)
(-0.123886 0.834211 -0.330791)
(0.0488513 0.768347 -0.592561)
(0.396765 0.91771 -0.940402)
(0.576678 1.33473 -1.01078)
(0.540264 1.93168 -0.860694)
(0.422302 1.965 -0.959509)
(-0.238095 1.1338 -0.671969)
(-0.573513 0.373425 0.122528)
(-0.312147 0.0425001 -0.219134)
(-0.0858471 -0.0956935 -0.461872)
(0.012461 -0.159629 -0.150642)
(-0.0460137 -0.210991 -0.0954454)
(-0.0840971 -0.267825 -0.0273844)
(-0.146181 -0.323865 -0.0281404)
(-0.164014 -0.39289 -0.0224674)
(-0.193191 -0.456862 -0.0316132)
(-0.198111 -0.534531 -0.0353545)
(-0.209467 -0.616297 -0.0358418)
(-0.219375 -0.739523 -0.0306383)
(-0.258987 -0.923177 -0.0203996)
(-0.32818 -1.27152 -0.017878)
(-0.377965 -1.82076 -0.032254)
(-0.386192 -2.61638 -0.105314)
(-0.428659 -3.45343 -0.146692)
(-0.4273 -3.93625 -0.159868)
(-0.263044 -3.25645 -0.119965)
(0.0111629 -0.960274 -0.0469154)
(-0.0274806 0.731323 -0.121813)
(-0.012673 1.64059 -0.260516)
(0.00940515 2.10446 -0.327464)
(-0.00182674 2.26045 -0.31771)
(0.00131675 2.22185 -0.24153)
(-0.0156893 2.05684 -0.118939)
(-0.0294806 1.85068 0.00207388)
(-0.0414284 1.65042 0.0932304)
(-0.0768094 1.49229 0.13102)
(-0.102194 1.35736 0.136369)
(-0.0814598 1.22341 0.0786422)
(-0.0668454 1.11031 0.0302712)
(-0.0118656 0.995403 -0.108467)
(-0.0197695 0.950111 -0.249505)
(0.198386 1.03013 -0.465701)
(0.382461 1.16166 -0.637642)
(0.303682 1.35906 -0.392331)
(0.214592 1.94261 0.535429)
(0.274759 2.08846 0.71458)
(-0.449644 1.44619 -0.203234)
(-0.874668 0.379995 -0.229678)
(-0.400947 0.0771407 -0.412137)
(-0.0515065 0.00335246 -0.571433)
(0.0819686 -0.0963068 -0.205975)
(0.0272078 -0.139664 -0.0943795)
(-0.0153125 -0.22802 -0.0238003)
(-0.0794225 -0.291371 -0.0257521)
(-0.109936 -0.365988 -0.0256829)
(-0.138816 -0.428935 -0.0325789)
(-0.145209 -0.502524 -0.0402408)
(-0.156892 -0.575619 -0.0427412)
(-0.158455 -0.683461 -0.0386493)
(-0.178473 -0.826347 -0.0293766)
(-0.214237 -1.08737 -0.0262232)
(-0.324879 -1.49565 -0.0267741)
(-0.408305 -2.19445 -0.0634223)
(-0.446126 -3.04111 -0.140772)
(-0.468539 -3.68258 -0.156006)
(-0.359737 -3.26521 -0.127279)
(-0.0745812 -1.03849 -0.0505309)
(-0.0101805 0.717384 -0.115409)
(0.0121265 1.61755 -0.244036)
(0.0389483 2.09145 -0.311648)
(0.0430752 2.27086 -0.307916)
(0.0508731 2.24449 -0.236873)
(0.0401115 2.09261 -0.117826)
(0.0289561 1.89671 0.0025965)
(0.0131406 1.7006 0.0981968)
(-0.00563696 1.52845 0.14541)
(-0.025562 1.39598 0.156735)
(-0.018349 1.26191 0.12091)
(-0.00441076 1.12856 0.0905206)
(0.0684023 0.996694 -0.0327999)
(0.192581 0.933488 -0.135494)
(0.466597 1.11939 -0.0845023)
(0.344531 1.27217 0.131011)
(-0.102194 1.27089 0.52251)
(-0.0495065 1.38713 1.78587)
(0.822947 1.36449 3.22579)
(0.498513 1.17371 2.30726)
(-0.483422 0.238473 0.222382)
(-0.294917 -0.0231833 -0.73262)
(0.0518669 0.00647876 -0.627616)
(0.141858 -0.0334083 -0.195168)
(0.0933767 -0.0793572 -0.0549927)
(0.0239705 -0.17488 -0.0033578)
(-0.035289 -0.256459 -0.00506854)
(-0.0628458 -0.340081 -0.019221)
(-0.0935484 -0.405728 -0.0351769)
(-0.0989139 -0.479676 -0.0466418)
(-0.109136 -0.545511 -0.0500258)
(-0.108401 -0.640866 -0.0469581)
(-0.128568 -0.762552 -0.0359749)
(-0.154821 -0.989058 -0.0316704)
(-0.231737 -1.34488 -0.0341342)
(-0.314009 -1.91353 -0.0691052)
(-0.392852 -2.67296 -0.133909)
(-0.445193 -3.38853 -0.159394)
(-0.371371 -3.18335 -0.130855)
(-0.11711 -1.09274 -0.0528707)
(-0.00560463 0.672254 -0.102805)
(0.0338326 1.54311 -0.223997)
(0.0740066 2.03901 -0.29192)
(0.0870666 2.23894 -0.292729)
(0.0985725 2.2333 -0.227938)
(0.0926828 2.0975 -0.113795)
(0.0833949 1.91357 0.00457195)
(0.0671449 1.72009 0.103395)
(0.050348 1.5478 0.155771)
(0.0294992 1.39053 0.17941)
(0.0331979 1.24483 0.163084)
(0.0371992 1.09069 0.137006)
(0.143804 0.929382 -0.00535493)
(0.412177 0.808004 -0.169483)
(0.812635 0.87396 0.0612104)
(0.800128 1.0701 0.681513)
(0.138377 1.18241 1.41579)
(0.0356314 0.79202 2.53416)
(1.34975 0.512302 4.25954)
(1.46403 0.441318 4.04668)
(0.0742014 0.207737 1.14414)
(-0.212768 0.0473031 -0.966017)
(0.217418 0.0547476 -0.628125)
(0.263482 -0.00487253 -0.112465)
(0.153468 -0.0334893 -0.000497539)
(0.0651317 -0.124146 0.024537)
(0.00111394 -0.214669 0.018378)
(-0.0225602 -0.308925 -0.00338806)
(-0.0447925 -0.380896 -0.0283239)
(-0.0465871 -0.457337 -0.0458737)
(-0.0552577 -0.522914 -0.0524118)
(-0.0510042 -0.616061 -0.0509917)
(-0.0666058 -0.725909 -0.0410278)
(-0.0834669 -0.926943 -0.0347866)
(-0.146373 -1.2346 -0.0409098)
(-0.22048 -1.76265 -0.0772538)
(-0.321283 -2.47468 -0.13288)
(-0.401656 -3.2474 -0.158639)
(-0.361881 -3.22457 -0.13542)
(-0.137728 -1.31352 -0.0576646)
(-2.20078e-05 0.620569 -0.0873614)
(0.0522376 1.46215 -0.200884)
(0.104629 1.97352 -0.269651)
(0.127462 2.19689 -0.275902)
(0.142516 2.2104 -0.218262)
(0.140149 2.0908 -0.110848)
(0.131681 1.91447 0.00593647)
(0.112245 1.72399 0.104252)
(0.0959434 1.5476 0.162711)
(0.0721948 1.38126 0.18795)
(0.0628092 1.22274 0.175913)
(0.0488617 1.05185 0.136925)
(0.143523 0.873948 -0.0277783)
(0.460845 0.674212 -0.270953)
(1.01836 0.505898 -0.133686)
(1.2909 0.522147 0.575906)
(0.615704 0.763686 1.68561)
(-0.0693309 0.618794 3.07177)
(0.301225 0.397715 4.07835)
(0.356533 0.340486 3.36818)
(-0.422174 0.373483 0.967145)
(-0.40013 0.260074 -0.805547)
(0.21069 0.142571 -0.421956)
(0.340186 0.0322706 0.0856959)
(0.238828 -0.0156722 0.13606)
(0.097576 -0.0949838 0.0913486)
(0.0241536 -0.188107 0.0568683)
(0.00545312 -0.282276 0.0165367)
(-0.0127703 -0.357201 -0.0170015)
(-0.0118156 -0.436133 -0.0420058)
(-0.0226336 -0.501321 -0.0523716)
(-0.0188626 -0.589983 -0.0535229)
(-0.0365109 -0.68741 -0.0455298)
(-0.0440187 -0.870581 -0.0420634)
(-0.0934051 -1.15639 -0.0514448)
(-0.150278 -1.6691 -0.0929325)
(-0.254952 -2.38433 -0.1443)
(-0.345022 -3.22562 -0.17297)
(-0.340705 -3.35197 -0.150041)
(-0.136372 -1.55238 -0.0709906)
(0.00194655 0.563141 -0.0743014)
(0.0645814 1.36843 -0.179359)
(0.129407 1.89807 -0.249669)
(0.162199 2.14898 -0.261795)
(0.182828 2.18525 -0.21258)
(0.184366 2.08207 -0.113794)
(0.177345 1.91293 0.000250911)
(0.156876 1.72566 0.0951246)
(0.137747 1.5476 0.155677)
(0.109342 1.37503 0.179405)
(0.0910282 1.21225 0.162652)
(0.0625938 1.04046 0.106573)
(0.123537 0.871709 -0.0666181)
(0.371034 0.654485 -0.3345)
(0.887431 0.327161 -0.47882)
(1.23161 -0.00641663 0.0125652)
(0.802762 0.0357892 0.877625)
(-0.174764 0.173772 2.32026)
(-0.804047 0.34945 3.26002)
(-1.05449 0.339281 2.22637)
(-1.02313 0.208865 0.483413)
(-0.449979 0.132392 -0.340161)
(0.207038 0.0780975 -0.044473)
(0.416556 0.029998 0.235978)
(0.295979 -0.0533755 0.226762)
(0.145368 -0.129243 0.159839)
(0.0562683 -0.19391 0.101518)
(0.0422913 -0.281139 0.0453469)
(0.0305859 -0.347728 0.000403671)
(0.0372118 -0.419728 -0.0317796)
(0.0290484 -0.48071 -0.04787)
(0.0360148 -0.568846 -0.0524211)
(0.0161972 -0.661759 -0.0446017)
(0.00610262 -0.836668 -0.0354834)
(-0.0378279 -1.10556 -0.0445268)
(-0.0823148 -1.62747 -0.0958481)
(-0.196434 -2.37544 -0.14787)
(-0.296639 -3.3205 -0.180221)
(-0.331045 -3.61055 -0.159238)
(-0.140418 -1.87141 -0.0742325)
(0.00608258 0.500359 -0.0589902)
(0.0769598 1.25942 -0.156666)
(0.151198 1.8025 -0.228253)
(0.19211 2.08257 -0.247657)
(0.218427 2.14435 -0.20784)
(0.222956 2.06027 -0.119593)
(0.218413 1.90169 -0.011781)
(0.198483 1.72049 0.0793113)
(0.176199 1.54284 0.140164)
(0.145217 1.37199 0.163232)
(0.120371 1.21176 0.142883)
(0.0878393 1.04695 0.0836424)
(0.12151 0.897468 -0.0709799)
(0.255029 0.702256 -0.286055)
(0.58475 0.396826 -0.550223)
(0.87156 -0.0756179 -0.371598)
(0.638185 -0.353047 -0.198288)
(0.157606 -0.351138 0.372796)
(-0.448398 -0.276712 1.25537)
(-0.8101 -0.321358 1.07356)
(-0.512008 -0.280479 0.369772)
(-0.0165217 -0.124988 0.0742063)
(0.400544 0.0100283 0.192648)
(0.49904 -0.0299536 0.301087)
(0.349614 -0.122026 0.239899)
(0.213119 -0.201332 0.170949)
(0.118277 -0.246219 0.116974)
(0.0882919 -0.311153 0.0586125)
(0.0805073 -0.374914 0.00777955)
(0.0887036 -0.454091 -0.0274366)
(0.0705532 -0.536999 -0.0490439)
(0.0691275 -0.654002 -0.0575573)
(0.0462661 -0.768533 -0.0515882)
(0.0360618 -0.959556 -0.0498912)
(-0.0170603 -1.21924 -0.040765)
(-0.0500068 -1.7438 -0.103011)
(-0.16045 -2.51672 -0.157533)
(-0.255435 -3.58205 -0.197246)
(-0.297712 -4.06989 -0.18177)
(-0.127902 -2.46054 -0.0955593)
(0.00942813 0.445116 -0.050568)
(0.0877811 1.15056 -0.136216)
(0.169402 1.70491 -0.209799)
(0.215983 2.01806 -0.235928)
(0.248727 2.10994 -0.206596)
(0.259011 2.0491 -0.129227)
(0.259459 1.90488 -0.0295733)
(0.242346 1.73068 0.058525)
(0.220056 1.5559 0.120064)
(0.18958 1.38784 0.145093)
(0.161418 1.23317 0.128191)
(0.130721 1.07749 0.0735093)
(0.147248 0.940529 -0.0511686)
(0.219476 0.771102 -0.225093)
(0.41329 0.561999 -0.444915)
(0.604987 0.199679 -0.469043)
(0.562217 -0.137661 -0.550818)
(0.437756 -0.255015 -0.648396)
(0.208858 -0.486071 -0.306769)
(0.0356098 -0.524952 -0.0763314)
(0.174306 -0.370699 0.0480582)
(0.441132 -0.156324 0.120856)
(0.6093 -0.0678908 0.195647)
(0.551608 -0.102835 0.237515)
(0.390013 -0.176116 0.189806)
(0.280197 -0.242714 0.143633)
(0.195309 -0.280975 0.10489)
(0.1556 -0.324781 0.0568437)
(0.127511 -0.380749 0.0104321)
(0.115644 -0.483609 -0.0204109)
(0.0704262 -0.58481 -0.0403264)
(0.0629051 -0.72383 -0.0455203)
(0.0329192 -0.840223 -0.0445039)
(0.0350536 -1.02961 -0.0422958)
(-0.0136281 -1.27428 -0.0396103)
(-0.0378587 -1.79254 -0.0944816)
(-0.150201 -2.58979 -0.159008)
(-0.245996 -3.79081 -0.201776)
(-0.31243 -4.50936 -0.194062)
(-0.150036 -3.10109 -0.109195)
(0.0110455 0.388658 -0.0406365)
(0.099813 1.02611 -0.115573)
(0.192859 1.57507 -0.1856)
(0.238843 1.9205 -0.222243)
(0.273658 2.04503 -0.203733)
(0.290016 2.01101 -0.13837)
(0.296302 1.88476 -0.0469568)
(0.283969 1.72282 0.0376277)
(0.263664 1.55539 0.100384)
(0.236877 1.39413 0.129651)
(0.208966 1.24884 0.119732)
(0.180764 1.10767 0.0737535)
(0.187598 0.98341 -0.0232815)
(0.232331 0.836553 -0.161022)
(0.351172 0.690012 -0.337711)
(0.479797 0.442767 -0.390254)
(0.501501 0.205717 -0.489983)
(0.520547 0.0413746 -0.640478)
(0.477325 -0.157586 -0.591364)
(0.41069 -0.213022 -0.447859)
(0.505901 -0.159482 -0.247328)
(0.66391 -0.0913982 -0.0827729)
(0.746801 -0.111909 0.0284413)
(0.664796 -0.160009 0.128766)
(0.47718 -0.200902 0.148674)
(0.368511 -0.243996 0.118663)
(0.290202 -0.260339 0.0840429)
(0.239107 -0.287246 0.0467858)
(0.17058 -0.356878 0.0131253)
(0.134513 -0.463906 -0.00443079)
(0.0857128 -0.55538 -0.0244511)
(0.0860858 -0.683172 -0.036761)
(0.0572449 -0.77955 -0.0427046)
(0.0530625 -0.97673 -0.0370837)
(-0.0108259 -1.17486 -0.0339287)
(-0.0211798 -1.68013 -0.0908528)
(-0.138951 -2.46708 -0.159161)
(-0.238538 -3.77769 -0.208425)
(-0.332602 -4.7255 -0.205291)
(-0.177496 -3.57921 -0.121779)
(0.00611703 0.350137 -0.0333268)
(0.0944222 0.930787 -0.100107)
(0.209238 1.4539 -0.161524)
(0.263962 1.82838 -0.206588)
(0.294178 1.99046 -0.201258)
(0.316294 1.98787 -0.14775)
(0.333949 1.88405 -0.0652269)
(0.332317 1.73118 0.0164582)
(0.3174 1.57131 0.0812529)
(0.298056 1.41489 0.117625)
(0.275783 1.27665 0.119024)
(0.252838 1.14806 0.0875495)
(0.251197 1.03843 0.0160757)
(0.287132 0.911746 -0.082584)
(0.366052 0.794111 -0.208736)
(0.459301 0.620472 -0.282236)
(0.514781 0.455165 -0.346441)
(0.550672 0.316074 -0.42264)
(0.553916 0.151723 -0.404203)
(0.553635 0.0833293 -0.356269)
(0.658229 0.0429818 -0.288692)
(0.79273 0.025743 -0.177906)
(0.829364 -0.0351596 -0.035397)
(0.74125 -0.137391 0.112024)
(0.576634 -0.182488 0.12639)
(0.483803 -0.206403 0.0987831)
(0.413621 -0.203176 0.0682406)
(0.319658 -0.224099 0.0449995)
(0.213311 -0.306297 0.0296985)
(0.187144 -0.401435 0.00571315)
(0.125574 -0.477108 -0.0127639)
(0.120492 -0.601911 -0.0232373)
(0.0614466 -0.698714 -0.0288435)
(0.0784128 -0.886947 -0.0284176)
(0.0120154 -1.07469 -0.0356099)
(-0.00771795 -1.53406 -0.0717047)
(-0.122107 -2.28681 -0.15807)
(-0.223391 -3.66552 -0.204835)
(-0.346032 -4.81699 -0.210243)
(-0.199807 -3.98143 -0.130218)
(0.0073744 0.296574 -0.0252786)
(0.0868006 0.818855 -0.0867622)
(0.212331 1.3118 -0.14176)
(0.290099 1.68188 -0.182365)
(0.31664 1.88539 -0.194687)
(0.337628 1.91376 -0.153916)
(0.360194 1.84123 -0.083888)
(0.368803 1.69807 -0.00161965)
(0.366901 1.55169 0.0623498)
(0.356802 1.40057 0.106571)
(0.344601 1.26939 0.121258)
(0.332086 1.14932 0.108847)
(0.328713 1.05042 0.0658137)
(0.353641 0.947677 -0.00136361)
(0.412783 0.840775 -0.0804303)
(0.483685 0.705104 -0.144554)
(0.540426 0.565129 -0.19479)
(0.583308 0.426898 -0.229659)
(0.617302 0.287596 -0.221501)
(0.641652 0.197207 -0.18916)
(0.760939 0.117157 -0.149967)
(0.892444 0.0786317 -0.0766213)
(0.882149 0.00459662 0.0255847)
(0.806117 -0.0864538 0.103221)
(0.685546 -0.12911 0.108106)
(0.617152 -0.139515 0.0819521)
(0.542654 -0.129171 0.0574374)
(0.405624 -0.15388 0.0524761)
(0.267119 -0.220511 0.0405839)
(0.248426 -0.318564 0.0190078)
(0.173183 -0.388007 0.00126126)
(0.161108 -0.51433 -0.0107061)
(0.0940594 -0.602275 -0.0166334)
(0.0941664 -0.781926 -0.0193993)
(0.0269099 -0.957698 -0.0340864)
(0.0314056 -1.39077 -0.0682645)
(-0.105769 -2.08565 -0.15407)
(-0.193068 -3.50219 -0.208754)
(-0.356988 -4.82585 -0.213751)
(-0.22112 -4.33647 -0.13889)
(0.00214755 0.26671 -0.0208155)
(0.070041 0.744835 -0.0772652)
(0.189709 1.21031 -0.128235)
(0.298102 1.57252 -0.161834)
(0.345804 1.79347 -0.180769)
(0.360269 1.86298 -0.158046)
(0.386355 1.81484 -0.100576)
(0.408763 1.69113 -0.0256305)
(0.42459 1.54836 0.0394792)
(0.425262 1.39942 0.0902254)
(0.425636 1.26569 0.117732)
(0.423888 1.14471 0.123387)
(0.428362 1.04348 0.105655)
(0.446224 0.94911 0.0698821)
(0.482031 0.852204 0.0204896)
(0.532599 0.737142 -0.0260466)
(0.580423 0.61525 -0.062679)
(0.620354 0.490689 -0.0834005)
(0.673711 0.360547 -0.0866826)
(0.721357 0.244319 -0.0669226)
(0.864083 0.146425 -0.0494743)
(1.00272 0.0951732 0.00407498)
(0.976672 0.0217234 0.0777775)
(0.910313 -0.0352443 0.125403)
(0.811971 -0.0635146 0.112138)
(0.763108 -0.0705826 0.0924041)
(0.679863 -0.0607064 0.0717211)
(0.508756 -0.0801574 0.0696039)
(0.332088 -0.122646 0.0570936)
(0.31681 -0.221397 0.0368927)
(0.231184 -0.284791 0.0193314)
(0.215929 -0.412007 0.00580261)
(0.124732 -0.488498 -0.00354589)
(0.129669 -0.675531 -0.00808744)
(0.0398354 -0.820004 -0.0264355)
(0.0581781 -1.24482 -0.070316)
(-0.0824515 -1.88693 -0.146191)
(-0.160039 -3.31985 -0.206089)
(-0.369123 -4.80134 -0.214435)
(-0.246728 -4.69294 -0.143029)
(0.00787863 0.22032 -0.0187025)
(0.0579985 0.648058 -0.074284)
(0.159933 1.07863 -0.117974)
(0.277953 1.42318 -0.150665)
(0.35791 1.63458 -0.160855)
(0.386331 1.73121 -0.155454)
(0.400215 1.71901 -0.112415)
(0.429342 1.61942 -0.0521046)
(0.457519 1.48879 0.0137356)
(0.475767 1.34452 0.0680177)
(0.489339 1.21451 0.105532)
(0.500287 1.0919 0.126495)
(0.513403 0.98764 0.129316)
(0.533135 0.890609 0.119199)
(0.562198 0.799875 0.0977121)
(0.599206 0.70387 0.0723447)
(0.640149 0.601754 0.0439825)
(0.672197 0.497925 0.0230686)
(0.721329 0.384693 0.0101399)
(0.780539 0.264884 0.0166674)
(0.955709 0.161927 0.0153006)
(1.1101 0.103554 0.0514078)
(1.08262 0.0319714 0.0987751)
(1.03869 -0.0165468 0.131649)
(0.954359 -0.0274422 0.119779)
(0.913903 -0.037097 0.11263)
(0.82344 -0.0261524 0.0963526)
(0.637405 -0.0378138 0.0909547)
(0.421864 -0.0545784 0.0691691)
(0.393981 -0.125534 0.0584996)
(0.29883 -0.191612 0.0358505)
(0.284489 -0.310417 0.021716)
(0.175677 -0.375344 0.00760795)
(0.17333 -0.561787 -0.00200799)
(0.0655425 -0.693175 -0.0211544)
(0.0923908 -1.10644 -0.0696501)
(-0.0625015 -1.69853 -0.146546)
(-0.120358 -3.15015 -0.208143)
(-0.394534 -4.77118 -0.215278)
(-0.275988 -5.103 -0.147497)
(0.00200876 0.207904 -0.0201967)
(0.0283787 0.612702 -0.0740438)
(0.101207 1.01749 -0.117592)
(0.224915 1.35937 -0.14524)
(0.341238 1.55577 -0.156372)
(0.413644 1.64106 -0.146633)
(0.430557 1.65838 -0.123013)
(0.455738 1.56622 -0.0726022)
(0.498148 1.45053 -0.0178765)
(0.530282 1.30755 0.040214)
(0.563187 1.17526 0.0827976)
(0.584292 1.0521 0.113083)
(0.606926 0.942941 0.129442)
(0.630852 0.841816 0.135504)
(0.659713 0.74954 0.129504)
(0.690826 0.658184 0.118883)
(0.724256 0.56755 0.100784)
(0.750066 0.474177 0.088116)
(0.797491 0.376809 0.0775019)
(0.862619 0.264989 0.0788268)
(1.06114 0.170153 0.0678281)
(1.23296 0.115308 0.0874965)
(1.20631 0.0543616 0.110617)
(1.18548 0.010724 0.127654)
(1.11201 0.00453487 0.120597)
(1.07372 -0.00448721 0.119662)
(0.985921 0.0172457 0.108199)
(0.785572 0.00549049 0.106806)
(0.550388 0.006529 0.0918994)
(0.504234 -0.0464946 0.0660226)
(0.377774 -0.0795971 0.0512726)
(0.381784 -0.201601 0.0344072)
(0.240318 -0.242964 0.0203787)
(0.244466 -0.423149 0.00560426)
(0.0960602 -0.536506 -0.0189503)
(0.14116 -0.934679 -0.0615024)
(-0.0453069 -1.50527 -0.153095)
(-0.0811221 -2.93499 -0.206626)
(-0.428047 -4.73353 -0.214337)
(-0.310877 -5.59952 -0.149608)
(0.0138813 0.181538 -0.0268886)
(0.0250313 0.529 -0.0856342)
(0.0500242 0.923672 -0.118761)
(0.151219 1.2171 -0.149607)
(0.268144 1.41315 -0.158544)
(0.394331 1.4678 -0.148972)
(0.436067 1.50478 -0.130144)
(0.450493 1.42851 -0.0957069)
(0.508648 1.33321 -0.0473783)
(0.55426 1.2119 -0.00246164)
(0.606405 1.09021 0.0436932)
(0.64761 0.971595 0.0816822)
(0.681004 0.866832 0.104283)
(0.713039 0.770249 0.120812)
(0.745839 0.680881 0.125818)
(0.778318 0.593713 0.126448)
(0.810704 0.511531 0.117453)
(0.834201 0.428868 0.111379)
(0.879336 0.344621 0.102905)
(0.950769 0.237034 0.101579)
(1.1784 0.15272 0.0867584)
(1.37206 0.101695 0.101204)
(1.34536 0.0509232 0.114137)
(1.3403 0.0130807 0.126252)
(1.27372 0.0166818 0.121131)
(1.24945 0.0164842 0.119108)
(1.15544 0.0586448 0.105719)
(0.950542 0.0491787 0.101896)
(0.688713 0.0690295 0.0883945)
(0.655464 0.010942 0.0835746)
(0.499055 0.00774165 0.0631886)
(0.500632 -0.0896298 0.0411032)
(0.356 -0.11522 0.0191493)
(0.356891 -0.292752 0.00659597)
(0.187001 -0.379804 -0.0196895)
(0.219697 -0.777492 -0.0641739)
(0.0222349 -1.30236 -0.14566)
(-0.00103368 -2.73749 -0.215059)
(-0.478964 -4.67677 -0.216989)
(-0.30521 -6.20429 -0.157127)
(-0.0202674 0.168469 -0.0315598)
(-0.0265138 0.564234 -0.0992306)
(-0.0305353 0.895082 -0.134678)
(0.0311442 1.22285 -0.156896)
(0.167176 1.37645 -0.166538)
(0.347959 1.39713 -0.16231)
(0.443149 1.40352 -0.14394)
(0.463221 1.33064 -0.123279)
(0.535466 1.23779 -0.0838247)
(0.598884 1.13174 -0.0471984)
(0.66642 1.02582 -0.0105223)
(0.720466 0.914498 0.0239797)
(0.771042 0.815744 0.0532626)
(0.813252 0.721274 0.0777484)
(0.850162 0.635302 0.0885838)
(0.885629 0.550349 0.0980394)
(0.918527 0.47322 0.0979014)
(0.941364 0.396386 0.101245)
(0.983136 0.326249 0.101611)
(1.06063 0.226226 0.105688)
(1.31309 0.160493 0.0957714)
(1.52767 0.11163 0.105879)
(1.50391 0.0686887 0.110813)
(1.52229 0.0337217 0.117541)
(1.46797 0.0376934 0.112798)
(1.45911 0.0394654 0.103973)
(1.35753 0.0974139 0.0959701)
(1.15166 0.090227 0.0928928)
(0.863719 0.134057 0.0835943)
(0.830732 0.0839691 0.072243)
(0.678225 0.0930082 0.0566898)
(0.703705 0.00908911 0.0455627)
(0.513165 -0.00271985 0.0258823)
(0.547732 -0.151413 0.00685129)
(0.326759 -0.208527 -0.0193054)
(0.382055 -0.565448 -0.0669638)
(0.115341 -1.01075 -0.133088)
(0.180775 -2.41254 -0.227119)
(-0.44659 -4.57579 -0.206184)
(-0.244138 -6.79652 -0.166566)
(0.0453763 0.311429 -0.0523941)
(-0.00505015 0.50443 -0.120028)
(-0.0975337 0.782658 -0.154272)
(-0.0415168 0.982372 -0.174621)
(-0.00593089 1.18858 -0.182219)
(0.202264 1.17231 -0.178101)
(0.372242 1.18331 -0.162572)
(0.425066 1.11305 -0.152872)
(0.520518 1.04113 -0.120678)
(0.609974 0.957479 -0.0946481)
(0.698771 0.874209 -0.0640276)
(0.771829 0.788478 -0.0373119)
(0.835034 0.711541 -0.0136542)
(0.887365 0.634683 0.00829597)
(0.933602 0.56576 0.0258463)
(0.976623 0.492591 0.0425321)
(1.01553 0.422513 0.0507367)
(1.04813 0.35289 0.0612488)
(1.09573 0.292393 0.0680837)
(1.19152 0.191318 0.0764144)
(1.47387 0.139394 0.0729078)
(1.71122 0.0880486 0.0838142)
(1.69533 0.0493805 0.0856983)
(1.72907 0.0146089 0.0920504)
(1.68371 0.0414498 0.0838774)
(1.71033 0.0388239 0.0741541)
(1.60401 0.117287 0.0707132)
(1.42153 0.109372 0.0715776)
(1.11869 0.179364 0.0654963)
(1.11512 0.141642 0.0610319)
(0.95124 0.18082 0.0428493)
(1.0113 0.0833933 0.0312748)
(0.826482 0.0776351 0.0137139)
(0.919088 -0.0440259 -0.00681418)
(0.667526 -0.12307 -0.0284563)
(0.784801 -0.413469 -0.061963)
(0.438128 -0.82041 -0.128681)
(0.560876 -2.03694 -0.191076)
(-0.173881 -4.35799 -0.229849)
(0.061093 -7.31855 -0.179873)
(-0.222051 0.0782557 -0.064304)
(-0.292552 0.706254 -0.150598)
(-0.278279 0.880105 -0.180679)
(-0.236527 1.02431 -0.196938)
(-0.112776 1.04887 -0.208674)
(0.0711103 1.06262 -0.201878)
(0.281423 0.99323 -0.192847)
(0.374353 0.934306 -0.187838)
(0.50355 0.86544 -0.165298)
(0.613686 0.802535 -0.148444)
(0.727059 0.73835 -0.126572)
(0.822462 0.672894 -0.106842)
(0.908959 0.613344 -0.0868472)
(0.981797 0.555698 -0.0673403)
(1.04257 0.50272 -0.0514719)
(1.09751 0.44455 -0.0356344)
(1.15223 0.379716 -0.0241143)
(1.21117 0.31739 -0.00998318)
(1.27938 0.274638 0.000871123)
(1.42582 0.18499 0.0149553)
(1.76538 0.155888 0.0168128)
(2.06611 0.102634 0.0301389)
(2.08428 0.0686914 0.0320189)
(2.18767 0.038518 0.036755)
(2.1649 0.0489184 0.0339574)
(2.22366 0.031007 0.028553)
(2.11419 0.119933 0.0241344)
(1.97698 0.0985086 0.0262222)
(1.65327 0.189591 0.0188476)
(1.7157 0.166583 0.0179015)
(1.54641 0.22143 0.00870294)
(1.68807 0.142695 -3.14701e-05)
(1.4791 0.139967 -0.00815328)
(1.65151 0.0145637 -0.0164515)
(1.31967 -0.0478399 -0.0368063)
(1.5082 -0.270388 -0.0665845)
(1.05853 -0.530711 -0.112196)
(1.25194 -1.45943 -0.178892)
(0.417563 -3.85209 -0.21819)
(0.517121 -7.19357 -0.183995)
(-0.732783 0.794232 -0.164382)
(-0.599984 0.400547 -0.238754)
(-0.73671 0.581581 -0.233853)
(-0.449039 0.611707 -0.236296)
(-0.299945 0.62012 -0.238246)
(0.00820566 0.673333 -0.23537)
(0.254101 0.637949 -0.223135)
(0.468341 0.609869 -0.226201)
(0.667635 0.57279 -0.211528)
(0.861691 0.538544 -0.203489)
(1.04817 0.499307 -0.189668)
(1.22214 0.459695 -0.177651)
(1.37756 0.423541 -0.163885)
(1.51823 0.391891 -0.148683)
(1.63482 0.368354 -0.135193)
(1.74552 0.33607 -0.12085)
(1.85593 0.287768 -0.109041)
(2.01003 0.251774 -0.0968063)
(2.1875 0.220226 -0.0897009)
(2.47348 0.121286 -0.0745165)
(2.8978 0.0936046 -0.0705076)
(3.32439 0.0399058 -0.056531)
(3.3948 -0.000514931 -0.0475464)
(3.53893 -0.0369488 -0.036657)
(3.47626 -0.0192952 -0.0358187)
(3.5995 -0.018258 -0.0322736)
(3.44514 0.0669065 -0.0330312)
(3.39678 0.0635772 -0.025986)
(3.02005 0.146646 -0.0326463)
(3.19722 0.156372 -0.0324386)
(2.99241 0.200177 -0.0363393)
(3.30498 0.136617 -0.0401419)
(3.02107 0.0986401 -0.0445699)
(3.35415 0.0149943 -0.0496613)
(2.8759 -0.0540262 -0.063352)
(3.22028 -0.231001 -0.0757103)
(2.55101 -0.519042 -0.101202)
(2.90492 -1.13377 -0.137267)
(1.91495 -3.13754 -0.178681)
(1.35135 -6.07744 -0.162544)
(1.15821 1.47542 -0.0713202)
(1.72151 0.724216 -0.102568)
(2.46285 0.567681 -0.110196)
(2.87967 0.35195 -0.113788)
(3.16427 0.282825 -0.114393)
(3.41305 0.225326 -0.117282)
(3.65424 0.21671 -0.117043)
(3.86475 0.191571 -0.129477)
(4.06832 0.18193 -0.132249)
(4.28137 0.169897 -0.135747)
(4.48594 0.159191 -0.135856)
(4.69144 0.146856 -0.13535)
(4.86518 0.135684 -0.132675)
(5.02973 0.124722 -0.125861)
(5.14966 0.118501 -0.119758)
(5.27803 0.113362 -0.111629)
(5.40972 0.0877383 -0.105266)
(5.62138 0.0684057 -0.0973247)
(5.89455 0.0836344 -0.0983533)
(6.35425 0.054663 -0.0891819)
(6.77398 0.0329118 -0.0878912)
(7.25397 0.0121332 -0.0817469)
(7.2688 -0.00910897 -0.0719658)
(7.33884 -0.0541419 -0.0610107)
(7.15543 -0.0420422 -0.0528604)
(7.1625 -0.0548412 -0.0422149)
(6.82089 -0.0267212 -0.0430953)
(6.80418 -0.0129275 -0.0329099)
(6.33814 0.0226213 -0.0357912)
(6.59692 0.0433181 -0.0395525)
(6.35651 0.072602 -0.0445393)
(6.80291 0.0698233 -0.0463583)
(6.49587 0.0426346 -0.0494667)
(6.88773 0.0111648 -0.048831)
(6.34126 -0.0178811 -0.0566683)
(6.55999 -0.107876 -0.0644617)
(5.68045 -0.26143 -0.0771013)
(5.70367 -0.582323 -0.0909492)
(4.28079 -1.13751 -0.112879)
(2.7918 -2.52269 -0.122669)
(0.00163854 -0.000379782 0.0015825)
(0.0220146 -0.00310322 -0.00213122)
(0.0502448 -0.00264832 -0.00453644)
(0.0670801 7.02006e-05 -0.00659612)
(0.0755775 0.00181454 -0.00633605)
(0.0667293 -0.000437886 -0.00678405)
(0.0516325 0.00625201 -0.0137357)
(0.0320763 0.00534863 -0.0191898)
(0.015018 0.0174658 -0.0245168)
(-0.0142611 0.0203356 -0.0291738)
(-0.0616264 0.0126235 -0.0264132)
(-0.11633 0.00612988 -0.0271874)
(-0.180161 0.000967106 -0.0261422)
(-0.26004 0.00276406 -0.0235201)
(-0.33712 0.0122809 -0.0214989)
(-0.433563 0.0186865 -0.0143938)
(-0.520766 0.01101 -0.00914405)
(-0.648989 -0.00106219 0.0152063)
(-0.729098 -0.00877875 0.0445582)
(-0.895476 -0.00707342 0.0674934)
(-0.850087 0.0273925 0.0803717)
(-0.662051 0.0300805 0.0897399)
(-0.652146 0.0340213 0.0903774)
(-0.634685 0.0274496 0.0942375)
(-0.613767 0.0185457 0.100487)
(-0.557592 -0.00116719 0.111943)
(-0.49218 -0.014678 0.125045)
(-0.380159 -0.0244044 0.139137)
(-0.249207 -0.0338132 0.146251)
(-0.0974631 -0.0451081 0.152511)
(0.0508634 -0.0180622 0.125721)
(0.265046 0.00360045 0.109664)
(0.441482 0.00234028 0.080581)
(0.478961 0.0264951 0.0391939)
(0.442907 0.0530197 -0.0014315)
(0.34643 0.0495547 -0.0237668)
(0.227383 0.035883 -0.0375322)
(0.113255 0.0195827 -0.0412919)
(0.0316366 0.00376073 -0.0319314)
(-0.00335583 -0.00802876 -0.0157941)
(0.00786191 -0.0137226 -0.000767148)
(0.0431703 -0.027764 -0.00900371)
(0.0850392 -0.0246006 -0.0158298)
(0.107949 -0.011487 -0.0212782)
(0.110234 -0.00328146 -0.0238545)
(0.09448 0.00902912 -0.0306314)
(0.0583801 0.0155895 -0.0441283)
(0.00852831 0.0383005 -0.0580377)
(-0.0551535 0.0581748 -0.0652808)
(-0.176401 0.0661026 -0.063424)
(-0.325601 0.0882375 -0.0501268)
(-0.488807 0.112534 -0.0462317)
(-0.669929 0.141695 -0.0398682)
(-0.869536 0.170643 -0.0376792)
(-1.0759 0.192614 -0.0324503)
(-1.30529 0.177862 -0.0149408)
(-1.50108 0.147978 -0.00193884)
(-1.69533 0.106647 0.0142828)
(-1.8261 0.0799493 0.0287101)
(-1.96917 0.0624569 0.0416435)
(-1.82131 0.0829806 0.0436454)
(-1.56016 0.0482269 0.038881)
(-1.44469 0.0297927 0.0218394)
(-1.33336 -0.0174223 0.00585994)
(-1.25628 -0.0857326 0.00616112)
(-1.12736 -0.154099 0.0139692)
(-0.990946 -0.205667 0.0136866)
(-0.816753 -0.238199 0.0118548)
(-0.631773 -0.250458 0.00838841)
(-0.401763 -0.256129 -0.000405163)
(-0.188989 -0.224516 -0.00565195)
(0.0785398 -0.147199 -0.0509542)
(0.354276 -0.0963309 -0.0517239)
(0.536171 -0.0162306 -0.0719653)
(0.601195 0.079584 -0.0937376)
(0.54066 0.137845 -0.101108)
(0.419009 0.150446 -0.107032)
(0.253754 0.123702 -0.106056)
(0.102574 0.0823136 -0.0900701)
(0.0139719 0.0283022 -0.0416051)
(0.0108056 -0.0311662 -0.000389466)
(0.0484834 -0.0567548 -0.0117113)
(0.0859684 -0.0472089 -0.0228698)
(0.0931989 -0.0119907 -0.0337753)
(0.0828866 0.011025 -0.0410821)
(0.0374491 0.0488919 -0.0447227)
(-0.0268348 0.0901276 -0.0585116)
(-0.126095 0.144215 -0.0729447)
(-0.28473 0.200977 -0.0778697)
(-0.474818 0.247298 -0.0792844)
(-0.702054 0.313141 -0.0764637)
(-0.958862 0.368608 -0.0743562)
(-1.22059 0.414383 -0.0715643)
(-1.48519 0.420578 -0.069792)
(-1.7426 0.385062 -0.0611432)
(-1.97716 0.327058 -0.0552314)
(-2.15339 0.276332 -0.0564823)
(-2.31933 0.215997 -0.0549219)
(-2.42268 0.170121 -0.0535448)
(-2.50086 0.114325 -0.0559385)
(-2.27989 0.0877038 -0.0590822)
(-1.96719 0.0280777 -0.0886912)
(-1.81196 -0.0465518 -0.115343)
(-1.70037 -0.161283 -0.106166)
(-1.61398 -0.28281 -0.0955867)
(-1.47892 -0.397987 -0.101366)
(-1.33551 -0.493656 -0.10772)
(-1.15673 -0.56098 -0.113045)
(-0.989499 -0.587688 -0.124124)
(-0.790314 -0.565086 -0.139092)
(-0.580843 -0.519352 -0.152253)
(-0.324797 -0.416956 -0.166986)
(-0.0621481 -0.308467 -0.174692)
(0.19042 -0.157254 -0.184242)
(0.380554 0.000639918 -0.167459)
(0.434726 0.148027 -0.171418)
(0.377345 0.21257 -0.162293)
(0.247017 0.222217 -0.154093)
(0.106618 0.17612 -0.127569)
(0.0143015 0.0847009 -0.0578863)
(0.0123181 -0.0500538 0.00219914)
(0.0415926 -0.080425 -0.0112675)
(0.0636177 -0.0566216 -0.0278536)
(0.0404338 -0.0059358 -0.039212)
(-0.00481297 0.0661954 -0.0499573)
(-0.0651524 0.14246 -0.0733554)
(-0.180294 0.237233 -0.0852932)
(-0.347875 0.337892 -0.099507)
(-0.583626 0.449024 -0.10661)
(-0.866008 0.537234 -0.108793)
(-1.15346 0.60104 -0.107191)
(-1.43786 0.633112 -0.1077)
(-1.71467 0.611717 -0.105809)
(-1.97978 0.54736 -0.0980989)
(-2.19178 0.472652 -0.0985356)
(-2.36106 0.404195 -0.104595)
(-2.48399 0.338888 -0.112812)
(-2.59813 0.264059 -0.119416)
(-2.65598 0.201808 -0.124432)
(-2.66617 0.116514 -0.128065)
(-2.40339 0.0622936 -0.131587)
(-2.10583 -0.034408 -0.137321)
(-1.96968 -0.160113 -0.128784)
(-1.87705 -0.31576 -0.107347)
(-1.81673 -0.458639 -0.11127)
(-1.71217 -0.610668 -0.115709)
(-1.59607 -0.749436 -0.121725)
(-1.44018 -0.865078 -0.127296)
(-1.27818 -0.937717 -0.135802)
(-1.10834 -0.937865 -0.149824)
(-0.95193 -0.864665 -0.16961)
(-0.760922 -0.722874 -0.193879)
(-0.540264 -0.570978 -0.195046)
(-0.263647 -0.37227 -0.205854)
(0.0143107 -0.151204 -0.21544)
(0.170211 0.0640269 -0.215712)
(0.207772 0.210897 -0.20392)
(0.156252 0.263222 -0.187733)
(0.0657778 0.237686 -0.153198)
(0.00807117 0.122998 -0.0679537)
(0.0104592 -0.0658708 0.00672955)
(0.0227082 -0.0909622 -0.00867276)
(0.0051794 -0.0400143 -0.0333965)
(-0.0369597 0.050422 -0.0572688)
(-0.10433 0.177449 -0.0781911)
(-0.222448 0.306659 -0.0968829)
(-0.385459 0.450604 -0.11407)
(-0.606933 0.59359 -0.128914)
(-0.89985 0.723255 -0.135642)
(-1.21342 0.8026 -0.141404)
(-1.51672 0.815679 -0.141851)
(-1.8093 0.765368 -0.13047)
(-2.05815 0.683659 -0.116815)
(-2.24369 0.597597 -0.114204)
(-2.37434 0.526483 -0.113582)
(-2.47375 0.44891 -0.115913)
(-2.53489 0.377322 -0.116644)
(-2.59311 0.299926 -0.115663)
(-2.60222 0.230937 -0.111347)
(-2.56306 0.12417 -0.105287)
(-2.29308 0.0511311 -0.0864369)
(-2.02009 -0.0832699 -0.0745257)
(-1.92155 -0.243735 -0.0512228)
(-1.86732 -0.408469 -0.0429041)
(-1.83844 -0.573226 -0.0485393)
(-1.77746 -0.757873 -0.0547525)
(-1.71012 -0.939495 -0.0642921)
(-1.60231 -1.11011 -0.0717594)
(-1.4759 -1.24371 -0.0794722)
(-1.31516 -1.31403 -0.0897405)
(-1.16598 -1.2895 -0.103353)
(-1.04274 -1.15657 -0.138115)
(-0.928314 -0.916841 -0.170522)
(-0.684336 -0.64408 -0.17475)
(-0.351658 -0.370184 -0.186334)
(-0.0858375 -0.0772257 -0.196115)
(0.0355388 0.131474 -0.207083)
(0.0428232 0.259612 -0.196696)
(0.0214167 0.255483 -0.154707)
(-0.00215348 0.131744 -0.0654622)
(0.00465739 -0.0748723 0.0142343)
(-0.00646065 -0.07038 -0.0108455)
(-0.0506689 0.017987 -0.0376278)
(-0.125743 0.176462 -0.0797295)
(-0.236917 0.343058 -0.104837)
(-0.387187 0.52995 -0.130844)
(-0.588765 0.704259 -0.148091)
(-0.840845 0.868137 -0.161336)
(-1.16748 0.94624 -0.168582)
(-1.52367 0.927654 -0.153873)
(-1.82581 0.862373 -0.129451)
(-2.04236 0.775371 -0.114502)
(-2.18468 0.696309 -0.103235)
(-2.28143 0.618607 -0.0915724)
(-2.33429 0.539986 -0.0805371)
(-2.36332 0.457495 -0.075734)
(-2.36822 0.384134 -0.0639207)
(-2.37693 0.303868 -0.0533863)
(-2.35127 0.232001 -0.0373403)
(-2.27722 0.117992 -0.025358)
(-2.01748 0.0369371 0.000858142)
(-1.78817 -0.0994778 0.0305136)
(-1.71883 -0.27242 0.0420419)
(-1.69186 -0.4379 0.0305419)
(-1.69011 -0.611841 0.021224)
(-1.67699 -0.811507 0.0112664)
(-1.66091 -1.02177 -0.00124529)
(-1.61838 -1.23687 -0.0109097)
(-1.55602 -1.43437 -0.0223134)
(-1.4514 -1.57975 -0.0339234)
(-1.32499 -1.64452 -0.0455077)
(-1.17416 -1.58449 -0.0634213)
(-1.11693 -1.40214 -0.088436)
(-1.0119 -1.01224 -0.135252)
(-0.683679 -0.652955 -0.152029)
(-0.341419 -0.274735 -0.179156)
(-0.105249 0.0303386 -0.210571)
(-0.0120192 0.213449 -0.19701)
(-0.0101651 0.236016 -0.157833)
(-0.00292633 0.116784 -0.0651127)
(0.00423652 -0.0623172 0.0160778)
(-0.0339059 -0.00644981 -0.0163997)
(-0.105901 0.13588 -0.065634)
(-0.209828 0.336643 -0.107199)
(-0.351192 0.553295 -0.139183)
(-0.531952 0.763738 -0.162397)
(-0.749066 0.949661 -0.178268)
(-1.06975 1.02707 -0.188325)
(-1.45614 0.972626 -0.142757)
(-1.748 0.904778 -0.12106)
(-1.93429 0.846221 -0.104169)
(-2.05323 0.783887 -0.0821682)
(-2.11865 0.705304 -0.056973)
(-2.14046 0.617459 -0.0338029)
(-2.1344 0.530792 -0.0147589)
(-2.12039 0.444338 0.000394956)
(-2.09305 0.370508 0.0128019)
(-2.06891 0.291037 0.0238383)
(-2.019 0.223506 0.0420616)
(-1.93235 0.117183 0.053067)
(-1.68753 0.0376456 0.0821362)
(-1.49685 -0.104018 0.120262)
(-1.45365 -0.260824 0.119981)
(-1.44277 -0.423796 0.108716)
(-1.46182 -0.597667 0.092927)
(-1.47723 -0.796857 0.0763062)
(-1.5013 -1.01705 0.0566802)
(-1.5121 -1.25638 0.0371151)
(-1.51358 -1.49905 0.0208551)
(-1.48316 -1.7157 0.00454175)
(-1.41676 -1.87276 -0.00784043)
(-1.30672 -1.90705 -0.023984)
(-1.18405 -1.82774 -0.0430114)
(-1.14346 -1.51963 -0.0677425)
(-0.950111 -1.0451 -0.10159)
(-0.538807 -0.574586 -0.129913)
(-0.212964 -0.148373 -0.159037)
(-0.070138 0.112565 -0.169577)
(-0.018417 0.186922 -0.138085)
(-0.00343678 0.0912319 -0.0543978)
(0.00477287 -0.0137663 0.00824856)
(-0.0478359 0.0911257 -0.0365924)
(-0.154044 0.285921 -0.0929783)
(-0.280634 0.522634 -0.142814)
(-0.446088 0.757829 -0.172747)
(-0.639494 0.963303 -0.193854)
(-0.960565 1.05672 -0.194824)
(-1.33389 1.00012 -0.139002)
(-1.60724 0.944256 -0.121625)
(-1.78405 0.91883 -0.0947825)
(-1.89001 0.862993 -0.0612398)
(-1.93348 0.780119 -0.0212889)
(-1.93255 0.687097 0.0127927)
(-1.90907 0.591509 0.0413759)
(-1.87241 0.500506 0.0626534)
(-1.83338 0.411862 0.0722082)
(-1.78761 0.342303 0.0814674)
(-1.74678 0.271983 0.0863087)
(-1.69022 0.213689 0.101819)
(-1.60142 0.12151 0.108508)
(-1.38318 0.04959 0.139541)
(-1.21776 -0.0920508 0.181784)
(-1.19052 -0.232333 0.170582)
(-1.18805 -0.388338 0.154767)
(-1.21553 -0.5522 0.135093)
(-1.24509 -0.743032 0.116405)
(-1.28753 -0.956917 0.0953044)
(-1.3297 -1.20007 0.0756561)
(-1.37394 -1.46197 0.0532499)
(-1.4035 -1.72513 0.0344613)
(-1.40935 -1.95813 0.0149379)
(-1.36727 -2.10786 -0.00357557)
(-1.27235 -2.11871 -0.0205016)
(-1.19551 -1.96631 -0.0420396)
(-1.09648 -1.52661 -0.0694902)
(-0.773225 -0.955269 -0.101599)
(-0.328624 -0.414243 -0.139116)
(-0.0802586 0.0111227 -0.167682)
(-0.00873777 0.129426 -0.138777)
(0.00482749 0.0778693 -0.0597677)
(-0.00295927 0.0284519 0.00932687)
(-0.0671968 0.181411 -0.0488889)
(-0.181008 0.398918 -0.118052)
(-0.332771 0.646351 -0.168467)
(-0.520126 0.871709 -0.195139)
(-0.814454 1.0254 -0.196412)
(-1.16686 1.01217 -0.150006)
(-1.43075 0.997405 -0.128929)
(-1.61472 0.991539 -0.0924008)
(-1.71121 0.938942 -0.0484902)
(-1.73845 0.853368 -9.83111e-05)
(-1.72313 0.755171 0.0527743)
(-1.68845 0.656573 0.0934965)
(-1.64632 0.560421 0.119943)
(-1.60449 0.471624 0.134136)
(-1.56144 0.388275 0.134067)
(-1.51226 0.320596 0.132381)
(-1.4644 0.256782 0.128603)
(-1.40556 0.205743 0.139597)
(-1.3233 0.132056 0.144462)
(-1.13228 0.0674462 0.183272)
(-0.990336 -0.0738387 0.217444)
(-0.970103 -0.20108 0.201602)
(-0.969847 -0.3482 0.183207)
(-0.994917 -0.50006 0.160772)
(-1.0264 -0.67683 0.140801)
(-1.07187 -0.877054 0.119039)
(-1.12456 -1.10959 0.0991475)
(-1.18765 -1.37308 0.0778188)
(-1.25037 -1.65688 0.0572348)
(-1.30371 -1.93963 0.0346367)
(-1.32619 -2.17628 0.0147854)
(-1.29597 -2.31019 -0.00460828)
(-1.21194 -2.2746 -0.0221586)
(-1.13732 -1.9955 -0.0424823)
(-0.926119 -1.41234 -0.0664384)
(-0.459937 -0.731162 -0.0975227)
(-0.129129 -0.180569 -0.131828)
(-0.0317732 0.0731443 -0.113456)
(0.0119062 0.0657345 -0.0496683)
(-0.00610517 0.0793088 -0.00296928)
(-0.0854058 0.285391 -0.0690224)
(-0.218025 0.51181 -0.140247)
(-0.375152 0.741343 -0.186891)
(-0.604863 0.942527 -0.204331)
(-0.931293 1.02326 -0.177995)
(-1.22913 1.04908 -0.146084)
(-1.42449 1.06312 -0.104281)
(-1.52895 1.01877 -0.0524393)
(-1.5469 0.931875 0.00797693)
(-1.5258 0.826437 0.0758789)
(-1.48433 0.721185 0.129948)
(-1.44155 0.622899 0.169815)
(-1.40329 0.529044 0.188388)
(-1.36869 0.445334 0.192759)
(-1.32936 0.362528 0.177091)
(-1.27871 0.299944 0.164533)
(-1.22296 0.241472 0.150796)
(-1.16098 0.19962 0.157578)
(-1.08467 0.15041 0.167603)
(-0.935669 0.0903459 0.203791)
(-0.819619 -0.0540727 0.23278)
(-0.795589 -0.171851 0.214673)
(-0.796157 -0.310463 0.193613)
(-0.812748 -0.449984 0.169217)
(-0.840333 -0.610345 0.148302)
(-0.88033 -0.79263 0.126508)
(-0.931861 -1.00614 0.107858)
(-0.998254 -1.25651 0.0879436)
(-1.07344 -1.54137 0.0687179)
(-1.15334 -1.84949 0.0474725)
(-1.21782 -2.14788 0.0246791)
(-1.24564 -2.3849 0.00321645)
(-1.21201 -2.48125 -0.0149597)
(-1.12461 -2.35737 -0.033354)
(-0.994166 -1.90334 -0.0481846)
(-0.65235 -1.15313 -0.0749322)
(-0.204027 -0.458028 -0.0945217)
(-0.0288583 -0.0025779 -0.121851)
(0.00387282 0.0490867 -0.0544163)
(-0.0100822 0.144891 -0.0124283)
(-0.0999733 0.403324 -0.0856736)
(-0.241468 0.64115 -0.156347)
(-0.410976 0.865851 -0.198421)
(-0.682183 1.03207 -0.20316)
(-0.99036 1.09078 -0.17103)
(-1.21914 1.12611 -0.128633)
(-1.33863 1.10149 -0.072688)
(-1.36775 1.01981 -0.00259607)
(-1.34292 0.906987 0.0771413)
(-1.2991 0.791213 0.146755)
(-1.25138 0.686306 0.20141)
(-1.21724 0.591887 0.236385)
(-1.18987 0.505774 0.247699)
(-1.17035 0.423565 0.23909)
(-1.13679 0.344599 0.210321)
(-1.08361 0.277568 0.183894)
(-1.02252 0.225573 0.163316)
(-0.947594 0.190145 0.170211)
(-0.88583 0.169297 0.191881)
(-0.791234 0.106895 0.227477)
(-0.700404 -0.0371295 0.238451)
(-0.667983 -0.154084 0.221399)
(-0.666758 -0.283096 0.19621)
(-0.672742 -0.413426 0.170337)
(-0.692454 -0.556839 0.148433)
(-0.722411 -0.72074 0.126099)
(-0.765048 -0.910951 0.108268)
(-0.824127 -1.14013 0.0897421)
(-0.897243 -1.41006 0.0732688)
(-0.983254 -1.72207 0.0540018)
(-1.06932 -2.05398 0.034115)
(-1.13641 -2.36627 0.0111524)
(-1.15124 -2.58438 -0.00811773)
(-1.09667 -2.60724 -0.0251659)
(-0.976534 -2.32685 -0.0382369)
(-0.751264 -1.63451 -0.0473598)
(-0.310791 -0.744233 -0.0720778)
(-0.0413258 -0.116124 -0.0790096)
(-0.0109744 0.0341935 -0.0418337)
(-0.0109746 0.21239 -0.0281478)
(-0.106405 0.526296 -0.107271)
(-0.252194 0.775047 -0.174874)
(-0.444579 0.993205 -0.210778)
(-0.725768 1.11808 -0.204859)
(-0.980816 1.17659 -0.169433)
(-1.13835 1.18188 -0.113285)
(-1.19221 1.11321 -0.0363913)
(-1.17848 0.997381 0.0519122)
(-1.13247 0.867907 0.136843)
(-1.08196 0.750774 0.209662)
(-1.04292 0.648927 0.261466)
(-1.02145 0.562318 0.294849)
(-1.01303 0.478481 0.297589)
(-1.00916 0.401672 0.282608)
(-0.984781 0.31201 0.232852)
(-0.92756 0.250749 0.200268)
(-0.849194 0.197776 0.165459)
(-0.754336 0.174129 0.173248)
(-0.706313 0.1833 0.221112)
(-0.683012 0.130146 0.254346)
(-0.622984 -0.0262342 0.234659)
(-0.578286 -0.146284 0.21751)
(-0.572756 -0.267507 0.191217)
(-0.568388 -0.389594 0.163094)
(-0.579533 -0.517271 0.14167)
(-0.599283 -0.663946 0.11812)
(-0.63058 -0.830504 0.100866)
(-0.678155 -1.03439 0.0828346)
(-0.740786 -1.28065 0.0680911)
(-0.822263 -1.57955 0.0513949)
(-0.912112 -1.92222 0.0335198)
(-1.00094 -2.28265 0.010784)
(-1.05495 -2.59582 -0.00899545)
(-1.04617 -2.76664 -0.0282315)
(-0.946568 -2.65158 -0.039696)
(-0.763224 -2.12025 -0.0456635)
(-0.405791 -1.1411 -0.0530172)
(-0.0770278 -0.295507 -0.0807771)
(-0.0225547 0.00715376 -0.0480124)
(-0.00908437 0.275801 -0.040832)
(-0.102687 0.642884 -0.12444)
(-0.250242 0.905289 -0.189242)
(-0.467123 1.10245 -0.218586)
(-0.725749 1.20638 -0.20775)
(-0.917723 1.25247 -0.163987)
(-1.02076 1.21187 -0.0923349)
(-1.02652 1.10337 0.00271068)
(-0.988396 0.962008 0.100232)
(-0.934383 0.826324 0.187426)
(-0.890471 0.70906 0.258508)
(-0.860474 0.613589 0.309896)
(-0.857224 0.530174 0.340571)
(-0.862991 0.453167 0.342508)
(-0.883325 0.367939 0.31072)
(-0.861661 0.279697 0.249736)
(-0.788656 0.202554 0.185482)
(-0.699221 0.173422 0.150657)
(-0.566969 0.165494 0.162494)
(-0.536837 0.20826 0.264207)
(-0.607991 0.161772 0.304422)
(-0.590541 -0.0212747 0.230921)
(-0.519194 -0.150453 0.206638)
(-0.506637 -0.263953 0.182524)
(-0.491611 -0.381144 0.15256)
(-0.494492 -0.493962 0.132603)
(-0.505289 -0.626055 0.107929)
(-0.52486 -0.770757 0.0912326)
(-0.559836 -0.949758 0.0731875)
(-0.607908 -1.16751 0.0601884)
(-0.67656 -1.44288 0.0460624)
(-0.759344 -1.77542 0.0316906)
(-0.851447 -2.15652 0.013083)
(-0.929325 -2.53501 -0.00908941)
(-0.960163 -2.82915 -0.0276787)
(-0.906642 -2.88215 -0.0416269)
(-0.743062 -2.5286 -0.0408236)
(-0.461953 -1.61091 -0.0379646)
(-0.105044 -0.535272 -0.0361731)
(-0.00896331 -0.0455144 -0.0299232)
(-0.00554563 0.335208 -0.0563504)
(-0.0888069 0.755764 -0.144969)
(-0.24593 1.02828 -0.206504)
(-0.463765 1.19835 -0.233288)
(-0.681428 1.30007 -0.212905)
(-0.825633 1.3143 -0.158797)
(-0.880096 1.22885 -0.0740896)
(-0.857523 1.08723 0.0356862)
(-0.812867 0.927016 0.136913)
(-0.760976 0.784223 0.221979)
(-0.723557 0.667354 0.291612)
(-0.705687 0.571858 0.341308)
(-0.713532 0.491831 0.377276)
(-0.743747 0.409166 0.370904)
(-0.781394 0.329679 0.338155)
(-0.770454 0.234476 0.226462)
(-0.657234 0.230875 0.168937)
(-0.515688 0.252055 0.0607925)
(-0.38181 0.246862 0.0744784)
(-0.397749 0.266041 0.277848)
(-0.583735 0.214409 0.371963)
(-0.596158 -0.0222995 0.221275)
(-0.481445 -0.157539 0.171124)
(-0.456603 -0.267823 0.165838)
(-0.43352 -0.382492 0.134072)
(-0.428199 -0.482908 0.120221)
(-0.434001 -0.60306 0.0939266)
(-0.444201 -0.72878 0.0781153)
(-0.468796 -0.884881 0.0594895)
(-0.502657 -1.07567 0.0475892)
(-0.55689 -1.32299 0.0352018)
(-0.627115 -1.63603 0.023679)
(-0.711653 -2.01672 0.00545275)
(-0.800314 -2.4361 -0.0151012)
(-0.861523 -2.82345 -0.0388461)
(-0.851135 -3.0305 -0.0514301)
(-0.724314 -2.85688 -0.0529078)
(-0.484773 -2.07136 -0.0421663)
(-0.1299 -0.838016 -0.0325079)
(1.1931e-05 -0.115267 -0.0298319)
(0.000267578 0.37321 -0.0668117)
(-0.0737925 0.848747 -0.158603)
(-0.236547 1.12399 -0.220408)
(-0.437362 1.28588 -0.240223)
(-0.611569 1.37751 -0.210034)
(-0.719753 1.35487 -0.145554)
(-0.743009 1.23304 -0.041408)
(-0.708488 1.06237 0.0645445)
(-0.664702 0.890557 0.163142)
(-0.617324 0.742593 0.241728)
(-0.58802 0.622642 0.305864)
(-0.574819 0.525851 0.355477)
(-0.599685 0.444592 0.388833)
(-0.637 0.366676 0.384974)
(-0.695382 0.308654 0.313283)
(-0.595137 0.295327 0.192702)
(-0.376414 0.386147 -0.0168668)
(-0.278959 0.416642 -0.180224)
(-0.309752 0.374643 -0.14478)
(-0.467956 0.370139 0.281233)
(-0.663592 0.309639 0.466003)
(-0.614214 -0.0217829 0.184901)
(-0.455513 -0.16651 0.10771)
(-0.419406 -0.253423 0.129226)
(-0.38473 -0.381022 0.109001)
(-0.37291 -0.477315 0.103742)
(-0.376258 -0.589747 0.079671)
(-0.37881 -0.701656 0.0651539)
(-0.397306 -0.838675 0.0458278)
(-0.420091 -1.00387 0.0348352)
(-0.46135 -1.22211 0.0242335)
(-0.515891 -1.50801 0.0144406)
(-0.588826 -1.87345 -2.68497e-05)
(-0.674471 -2.31382 -0.0197207)
(-0.752585 -2.76687 -0.0442187)
(-0.781074 -3.10713 -0.0605796)
(-0.691436 -3.10558 -0.0613551)
(-0.487291 -2.47936 -0.0493305)
(-0.145023 -1.18324 -0.0273681)
(0.0236624 -0.158209 -0.022848)
(0.00835807 0.410492 -0.0786169)
(-0.0594164 0.937701 -0.175775)
(-0.213095 1.22187 -0.238515)
(-0.384447 1.38731 -0.248666)
(-0.526647 1.45465 -0.210395)
(-0.606856 1.39661 -0.13538)
(-0.614721 1.24123 -0.0258485)
(-0.58028 1.0505 0.0808942)
(-0.540632 0.866805 0.173218)
(-0.50154 0.710586 0.241439)
(-0.474957 0.582103 0.296503)
(-0.465065 0.47794 0.339525)
(-0.488784 0.390322 0.376316)
(-0.527009 0.320004 0.367594)
(-0.526383 0.30666 0.299302)
(-0.357198 0.461548 -0.0151158)
(-0.121881 0.601018 -0.346837)
(-0.0967475 0.62885 -0.47571)
(-0.450576 0.53531 -0.227577)
(-0.794689 0.465507 0.442236)
(-0.805263 0.346441 0.580863)
(-0.598798 -0.0537438 0.117088)
(-0.418015 -0.196281 0.0261872)
(-0.378738 -0.236153 0.0805987)
(-0.357621 -0.351304 0.0628743)
(-0.326103 -0.455697 0.0837113)
(-0.328542 -0.577113 0.0609185)
(-0.326371 -0.680407 0.0492736)
(-0.339553 -0.802945 0.0296681)
(-0.353574 -0.950577 0.0193968)
(-0.385314 -1.14366 0.0099631)
(-0.426623 -1.40116 0.00305173)
(-0.489572 -1.74492 -0.00758952)
(-0.569212 -2.18991 -0.0268497)
(-0.651127 -2.69053 -0.0512604)
(-0.704087 -3.14456 -0.0731622)
(-0.648602 -3.30424 -0.0771625)
(-0.476058 -2.85102 -0.0630814)
(-0.155356 -1.55879 -0.0338349)
(0.0521414 -0.232992 -0.0219321)
(0.00979807 0.415574 -0.0849563)
(-0.0449601 0.988881 -0.187663)
(-0.17812 1.30565 -0.244314)
(-0.325579 1.46516 -0.249945)
(-0.442893 1.5082 -0.203156)
(-0.50638 1.4171 -0.120454)
(-0.508945 1.23746 -0.00704491)
(-0.479346 1.03528 0.0930746)
(-0.451082 0.845398 0.174381)
(-0.41785 0.681558 0.227502)
(-0.392318 0.540001 0.265926)
(-0.376748 0.419702 0.294991)
(-0.400636 0.316603 0.326918)
(-0.422513 0.21967 0.303765)
(-0.330363 0.345284 0.159191)
(-0.0871209 0.658499 -0.340649)
(0.142826 0.872903 -0.728108)
(0.089625 0.951666 -0.615629)
(-0.547782 0.721448 -0.0131533)
(-1.02937 0.437416 0.652196)
(-0.792983 0.234884 0.615798)
(-0.486944 -0.131673 0.0139568)
(-0.345404 -0.258035 -0.0641663)
(-0.290924 -0.246155 0.0371667)
(-0.31609 -0.323408 0.0223484)
(-0.302812 -0.403066 0.0474351)
(-0.294264 -0.528482 0.0437705)
(-0.276643 -0.651074 0.0357364)
(-0.292716 -0.772266 0.015379)
(-0.303417 -0.903613 0.00468394)
(-0.324757 -1.06984 -0.00337608)
(-0.35123 -1.29908 -0.00858508)
(-0.405154 -1.61928 -0.0168543)
(-0.479411 -2.06065 -0.0343589)
(-0.564205 -2.59357 -0.0570822)
(-0.63238 -3.14138 -0.0841822)
(-0.609243 -3.45202 -0.0913018)
(-0.466009 -3.16722 -0.0797058)
(-0.173479 -1.90844 -0.0438826)
(0.0591634 -0.283646 -0.0228999)
(0.00911956 0.436896 -0.0911011)
(-0.0133121 1.06487 -0.198632)
(-0.12799 1.41335 -0.258072)
(-0.267928 1.56943 -0.25563)
(-0.361165 1.58699 -0.203)
(-0.41414 1.47494 -0.113085)
(-0.413529 1.27771 0.000257547)
(-0.392116 1.06646 0.0954046)
(-0.37367 0.86679 0.162538)
(-0.349663 0.690149 0.194893)
(-0.327688 0.529988 0.201888)
(-0.315311 0.389699 0.198796)
(-0.364123 0.236803 0.173786)
(-0.289993 0.179402 0.0847837)
(-0.0265169 0.436451 -0.1772)
(0.26399 0.889512 -0.638531)
(0.500187 1.14959 -1.061)
(0.505293 1.22783 -0.706744)
(-0.276825 0.946179 0.107957)
(-0.959806 0.424519 0.675263)
(-0.577178 0.111629 0.503586)
(-0.265916 -0.199097 -0.107134)
(-0.227563 -0.327625 -0.19637)
(-0.159199 -0.263349 -0.0147543)
(-0.229119 -0.320207 -0.0115512)
(-0.245953 -0.358171 0.0232506)
(-0.284232 -0.451225 0.0104611)
(-0.264186 -0.564506 0.0112695)
(-0.253856 -0.696085 -0.000236198)
(-0.248957 -0.841684 -0.0094219)
(-0.265824 -1.00577 -0.0166931)
(-0.286269 -1.2156 -0.0201581)
(-0.332206 -1.50394 -0.0260647)
(-0.396677 -1.92755 -0.0417256)
(-0.476679 -2.48163 -0.0663586)
(-0.55517 -3.1172 -0.095691)
(-0.55941 -3.57779 -0.108174)
(-0.444278 -3.47134 -0.0973005)
(-0.178409 -2.28298 -0.0577089)
(0.0646688 -0.395484 -0.0234622)
(0.00383447 0.437547 -0.0908018)
(-0.0237858 1.14075 -0.202564)
(-0.0933441 1.50666 -0.258062)
(-0.201976 1.67617 -0.260267)
(-0.281597 1.67658 -0.200467)
(-0.318112 1.54848 -0.109983)
(-0.321452 1.34534 0.0045053)
(-0.311184 1.12706 0.0906398)
(-0.30981 0.923054 0.14381)
(-0.302019 0.7457 0.151795)
(-0.291218 0.574623 0.119912)
(-0.308243 0.43601 0.0649299)
(-0.331182 0.278326 -0.0148418)
(-0.128331 0.288154 -0.290844)
(0.294971 0.542694 -0.609265)
(0.595341 0.976048 -0.860689)
(0.766039 1.3138 -1.31001)
(1.0411 1.4919 -1.10896)
(0.216201 1.35564 -0.262672)
(-0.810807 0.611213 0.506421)
(-0.322287 0.110936 0.379705)
(0.0197459 -0.243841 -0.263368)
(-0.0751474 -0.364704 -0.322129)
(0.00630317 -0.280591 -0.0721857)
(-0.121595 -0.317284 -0.0521622)
(-0.150782 -0.33897 0.00557262)
(-0.218579 -0.400502 -0.00147733)
(-0.2366 -0.47337 -0.00508961)
(-0.263223 -0.575665 -0.0213955)
(-0.256446 -0.705274 -0.0269235)
(-0.246084 -0.858558 -0.0314811)
(-0.2343 -1.06947 -0.0341386)
(-0.25746 -1.35761 -0.0383219)
(-0.309181 -1.77762 -0.0522598)
(-0.395328 -2.3325 -0.072401)
(-0.483543 -3.02774 -0.107335)
(-0.520005 -3.63492 -0.123553)
(-0.446362 -3.71382 -0.116819)
(-0.212389 -2.61857 -0.0761194)
(0.0459567 -0.452725 -0.031188)
(0.008614 0.583095 -0.104953)
(0.00958089 1.34761 -0.21969)
(-0.0390118 1.74219 -0.281741)
(-0.116651 1.89281 -0.267752)
(-0.180441 1.89418 -0.217366)
(-0.220029 1.7612 -0.121969)
(-0.231266 1.55866 -0.00701425)
(-0.239115 1.34967 0.0768877)
(-0.249066 1.15828 0.12168)
(-0.25669 0.98562 0.106492)
(-0.23985 0.815328 0.0389402)
(-0.260865 0.681975 -0.071135)
(-0.287906 0.539948 -0.268422)
(-0.0265368 0.549832 -0.667363)
(0.418976 0.643169 -1.11668)
(0.621493 0.862754 -1.25064)
(0.726715 1.3993 -1.35287)
(1.02813 1.84977 -1.48659)
(0.49781 1.84373 -0.889581)
(-0.432805 0.916905 0.139926)
(-0.0353705 0.153366 0.357883)
(0.354842 -0.249578 -0.417271)
(0.117371 -0.354785 -0.497959)
(0.188164 -0.264803 -0.146361)
(0.00656564 -0.274065 -0.0843316)
(-0.0476065 -0.31042 -0.016942)
(-0.13944 -0.366675 -0.0197002)
(-0.163361 -0.430754 -0.0158086)
(-0.202504 -0.501819 -0.0269588)
(-0.218988 -0.590699 -0.0327086)
(-0.242196 -0.699388 -0.0364717)
(-0.253809 -0.868988 -0.0354677)
(-0.270047 -1.11338 -0.0337044)
(-0.266592 -1.50447 -0.0519794)
(-0.295361 -2.08562 -0.0840138)
(-0.380995 -2.85863 -0.114497)
(-0.442594 -3.60042 -0.138017)
(-0.413721 -3.90203 -0.13094)
(-0.211198 -2.99054 -0.0906193)
(0.0550235 -0.648691 -0.0334858)
(-0.020487 0.767935 -0.134643)
(-0.0179783 1.61009 -0.253108)
(-0.0297311 2.03598 -0.31062)
(-0.0688332 2.17547 -0.300961)
(-0.0951211 2.14707 -0.225224)
(-0.128093 2.00558 -0.131839)
(-0.143517 1.79563 -0.0112823)
(-0.159598 1.59219 0.0704349)
(-0.187036 1.41785 0.110015)
(-0.213543 1.26336 0.0873409)
(-0.20111 1.11491 0.004153)
(-0.244632 0.997823 -0.115348)
(-0.26731 0.88398 -0.329116)
(-0.0614447 0.886177 -0.680481)
(0.211424 0.855127 -1.35708)
(0.0590415 0.772523 -1.5068)
(-0.0302947 1.31147 -0.860114)
(0.130015 2.10304 -0.642071)
(0.339886 2.06588 -0.572889)
(-0.386435 1.13301 -0.208286)
(-0.0388238 0.313392 0.0756394)
(0.720636 -0.145175 -0.689144)
(0.343677 -0.257643 -0.778701)
(0.387207 -0.202 -0.246496)
(0.130966 -0.194976 -0.100198)
(0.038753 -0.256157 -0.0170108)
(-0.0660402 -0.321044 -0.0273206)
(-0.105114 -0.397801 -0.0255953)
(-0.153157 -0.463668 -0.0388431)
(-0.1661 -0.543918 -0.0449978)
(-0.182776 -0.621453 -0.0489883)
(-0.191643 -0.732773 -0.0468608)
(-0.226555 -0.892678 -0.0385314)
(-0.289134 -1.19868 -0.0350704)
(-0.355971 -1.70687 -0.043939)
(-0.370304 -2.48184 -0.107219)
(-0.40749 -3.36258 -0.140405)
(-0.418934 -3.90266 -0.14293)
(-0.261403 -3.26559 -0.107082)
(0.00902771 -0.972947 -0.0466624)
(-0.0307931 0.74251 -0.115821)
(-0.0209284 1.64838 -0.243397)
(-0.000295282 2.11678 -0.307454)
(-0.0190818 2.28063 -0.299001)
(-0.0285365 2.24818 -0.232027)
(-0.0499192 2.09199 -0.127405)
(-0.0619006 1.8798 -0.00839565)
(-0.0744031 1.67894 0.0770726)
(-0.0959768 1.51415 0.108394)
(-0.132349 1.38639 0.0933965)
(-0.110208 1.27272 0.0207322)
(-0.137616 1.17612 -0.0614037)
(-0.148878 1.09843 -0.183129)
(0.0882951 1.07152 -0.403512)
(0.3668 1.16709 -1.00277)
(-0.664402 1.02915 -0.976127)
(-1.60414 1.09 -0.0418976)
(-1.35339 1.66908 1.14176)
(0.152461 1.53021 1.84539)
(0.00338203 0.955627 0.945857)
(-0.149296 0.231678 0.0512271)
(0.71876 -0.0575267 -0.854874)
(0.472982 -0.060074 -0.968707)
(0.497752 -0.0622929 -0.334662)
(0.24362 -0.0884408 -0.0862509)
(0.112011 -0.200708 0.00551651)
(-0.0089913 -0.272615 -0.00653868)
(-0.0467515 -0.365891 -0.0259851)
(-0.0926075 -0.437054 -0.044172)
(-0.112009 -0.513955 -0.0537499)
(-0.129061 -0.583821 -0.0587767)
(-0.132429 -0.682599 -0.0577783)
(-0.15007 -0.807784 -0.0511987)
(-0.172851 -1.03912 -0.0485123)
(-0.274638 -1.41096 -0.0480539)
(-0.385685 -2.07488 -0.0665056)
(-0.438174 -2.94449 -0.12862)
(-0.45978 -3.64099 -0.135778)
(-0.359561 -3.26709 -0.109772)
(-0.0763683 -1.04985 -0.0474714)
(-0.0122066 0.726413 -0.113338)
(0.00578323 1.63347 -0.236596)
(0.028778 2.11362 -0.296974)
(0.0268633 2.29797 -0.29595)
(0.0281857 2.27729 -0.229027)
(0.0145886 2.12952 -0.123574)
(0.00625657 1.92514 -0.00201668)
(-0.00708091 1.72772 0.0871021)
(-0.013862 1.55991 0.132349)
(-0.0364036 1.4305 0.120966)
(-0.0196096 1.33068 0.075975)
(-0.051071 1.20196 -0.0138586)
(-0.0446107 1.08079 -0.0924749)
(0.422997 0.94543 -0.211896)
(0.644247 1.15506 -0.159239)
(-1.02202 1.35392 0.441843)
(-2.57761 1.12096 1.01657)
(-2.25558 0.952435 1.76338)
(0.531706 0.786457 4.03368)
(1.74141 0.553847 4.15936)
(0.907523 -0.0292572 1.43101)
(0.774204 0.0565331 -0.744641)
(0.54927 0.214626 -0.765858)
(0.51094 0.10523 -0.223855)
(0.318994 -0.000644775 -0.0426932)
(0.150443 -0.153833 0.032254)
(0.0376462 -0.235144 0.0170952)
(-0.0125532 -0.333166 -0.0142904)
(-0.0514611 -0.410723 -0.0430562)
(-0.0625594 -0.489117 -0.0596434)
(-0.0781531 -0.553955 -0.068044)
(-0.0800596 -0.642507 -0.0687752)
(-0.0995476 -0.748194 -0.0610878)
(-0.116885 -0.948274 -0.0578083)
(-0.185789 -1.27493 -0.0583711)
(-0.282534 -1.82675 -0.0801455)
(-0.378066 -2.58741 -0.121169)
(-0.436517 -3.34872 -0.138098)
(-0.366436 -3.18325 -0.11146)
(-0.117673 -1.10737 -0.0493831)
(-0.00725173 0.687648 -0.0994481)
(0.0277746 1.56584 -0.214146)
(0.0642213 2.06573 -0.277167)
(0.0729097 2.27163 -0.278932)
(0.0803661 2.26985 -0.218839)
(0.0717075 2.13452 -0.115851)
(0.0656322 1.94166 0.00290092)
(0.0547575 1.74152 0.100523)
(0.052142 1.57032 0.159283)
(0.0405171 1.4111 0.16757)
(0.0460277 1.28498 0.149166)
(-0.0214458 1.11192 0.064035)
(-0.0545975 0.933219 -0.160319)
(0.437057 0.707298 -0.450246)
(0.532303 0.806208 0.204595)
(-0.897009 1.47463 1.58168)
(-2.46632 1.72387 2.31565)
(-2.13643 1.04202 1.80954)
(0.486318 0.742734 3.65393)
(2.50743 0.738097 5.65726)
(1.72963 0.479088 2.7748)
(0.817956 0.578485 -0.800537)
(0.731192 0.620763 -0.734895)
(0.535912 0.357296 -0.025003)
(0.341593 0.126168 0.0762373)
(0.169373 -0.0730797 0.0702138)
(0.0759639 -0.191559 0.0425391)
(0.028877 -0.302061 0.00119862)
(-0.00565234 -0.38315 -0.0347207)
(-0.0125441 -0.464939 -0.0574539)
(-0.024445 -0.531003 -0.069056)
(-0.0229527 -0.618405 -0.0724442)
(-0.0373714 -0.714308 -0.0670993)
(-0.0479283 -0.895043 -0.0663947)
(-0.104651 -1.17656 -0.0699461)
(-0.184755 -1.68979 -0.0911733)
(-0.298221 -2.40659 -0.124956)
(-0.389242 -3.21264 -0.136644)
(-0.357006 -3.22841 -0.114719)
(-0.1376 -1.33179 -0.0554235)
(-0.00107625 0.63546 -0.0854013)
(0.0473515 1.48595 -0.193129)
(0.0962168 2.00083 -0.256122)
(0.115256 2.22869 -0.262041)
(0.127265 2.24487 -0.207949)
(0.123067 2.12347 -0.107816)
(0.11635 1.93965 0.00853277)
(0.103357 1.73794 0.11326)
(0.0976308 1.55546 0.179509)
(0.0830227 1.37603 0.206786)
(0.0660676 1.21039 0.184688)
(-0.0369975 1.00867 0.106816)
(-0.129971 0.809402 -0.28808)
(0.244858 0.603778 -0.874007)
(0.446752 0.404052 -0.448768)
(-0.848867 1.27173 1.51392)
(-2.78998 2.58034 3.58598)
(-2.5776 2.17697 3.06855)
(-0.657951 1.5898 2.84545)
(0.772517 2.05527 4.10262)
(0.365713 1.73115 1.88089)
(0.117103 1.14347 -1.15135)
(0.632652 0.825211 -1.03206)
(0.481218 0.437496 -0.0512546)
(0.175232 0.165941 0.232209)
(0.0939967 -0.0230391 0.225772)
(0.0656495 -0.155604 0.120511)
(0.0425096 -0.274785 0.0366729)
(0.0227932 -0.358918 -0.0233203)
(0.0226546 -0.442985 -0.0570737)
(0.00937998 -0.508365 -0.0751897)
(0.00965408 -0.593587 -0.0794522)
(-0.00995982 -0.677463 -0.0744131)
(-0.0146841 -0.84105 -0.0704614)
(-0.0575372 -1.09391 -0.0839428)
(-0.114645 -1.59628 -0.112718)
(-0.225212 -2.31753 -0.141695)
(-0.327204 -3.19488 -0.152089)
(-0.332224 -3.35741 -0.126089)
(-0.134832 -1.56859 -0.0660431)
(0.00132119 0.578624 -0.072191)
(0.060405 1.39338 -0.171913)
(0.121816 1.92607 -0.236299)
(0.151489 2.17965 -0.246783)
(0.169228 2.2172 -0.200266)
(0.16927 2.11061 -0.106217)
(0.161625 1.93301 0.00690848)
(0.145032 1.73245 0.110366)
(0.132019 1.54174 0.181614)
(0.105078 1.35366 0.211311)
(0.0674238 1.17066 0.189384)
(-0.0498403 0.975034 0.0990566)
(-0.165226 0.809531 -0.305218)
(0.0194095 0.6887 -0.961387)
(0.353891 0.310158 -1.09195)
(-0.84338 0.780886 0.572371)
(-3.02362 2.61871 3.03878)
(-3.49694 3.3649 3.82106)
(-2.47203 3.25085 3.46511)
(-1.42655 3.46775 2.89852)
(-1.01238 2.29653 0.445913)
(-0.45794 1.00328 -1.42013)
(0.182739 0.486242 -0.968817)
(0.213899 0.15222 -0.0201535)
(0.0845394 -0.0141075 0.406712)
(0.0893909 -0.105951 0.375651)
(0.0746634 -0.186941 0.228074)
(0.0665909 -0.27916 0.0936757)
(0.0584738 -0.356198 0.00269806)
(0.0672644 -0.433465 -0.048084)
(0.059687 -0.493455 -0.0725095)
(0.0680144 -0.579111 -0.0818666)
(0.0489307 -0.658933 -0.0761033)
(0.042413 -0.811406 -0.0719936)
(-0.00887642 -1.04759 -0.0716923)
(-0.0510069 -1.54766 -0.121282)
(-0.161451 -2.30475 -0.152606)
(-0.275339 -3.28817 -0.164334)
(-0.31919 -3.61989 -0.136813)
(-0.137485 -1.89285 -0.0700185)
(0.00458412 0.513687 -0.0570996)
(0.0718126 1.28454 -0.150211)
(0.143498 1.8306 -0.215619)
(0.18222 2.11212 -0.232227)
(0.205718 2.17377 -0.19395)
(0.208492 2.08537 -0.108838)
(0.200743 1.91722 -0.000488599)
(0.181122 1.72348 0.096475)
(0.162142 1.5325 0.166977)
(0.126269 1.34798 0.195481)
(0.0812282 1.17311 0.170921)
(-0.0210307 1.00126 0.0942504)
(-0.101879 0.88234 -0.223357)
(-0.0670775 0.795937 -0.741225)
(0.279792 0.565764 -1.2078)
(-0.463406 0.412766 -0.552763)
(-2.15754 1.61286 0.828141)
(-2.81734 3.00993 2.11656)
(-2.56437 3.65579 2.74572)
(-1.72285 3.22 1.83765)
(-0.747044 1.43524 -0.151058)
(-0.157153 0.260837 -0.97042)
(0.206324 -0.0631784 -0.356325)
(0.218248 -0.204182 0.241019)
(0.13438 -0.229423 0.449393)
(0.165707 -0.248119 0.401848)
(0.140969 -0.273478 0.268307)
(0.115028 -0.329389 0.120833)
(0.105154 -0.391564 0.0185288)
(0.117654 -0.470096 -0.0488555)
(0.100737 -0.550271 -0.0806334)
(0.10137 -0.662585 -0.093819)
(0.0766356 -0.76648 -0.0915966)
(0.0785462 -0.940853 -0.0933319)
(0.015434 -1.17072 -0.0883201)
(-0.0223946 -1.66142 -0.12969)
(-0.124909 -2.44074 -0.174188)
(-0.233835 -3.5441 -0.185501)
(-0.285846 -4.07883 -0.160924)
(-0.124698 -2.48601 -0.088677)
(0.00943297 0.456077 -0.0489662)
(0.0833814 1.17619 -0.131783)
(0.160918 1.73469 -0.198177)
(0.20662 2.04749 -0.220549)
(0.236842 2.13808 -0.191695)
(0.244335 2.07235 -0.116484)
(0.240341 1.91877 -0.0168138)
(0.221601 1.73384 0.0751402)
(0.199832 1.54744 0.143696)
(0.163246 1.36881 0.173147)
(0.118018 1.20671 0.151914)
(0.0399235 1.05165 0.0836723)
(-0.0210524 0.950151 -0.132346)
(-0.009207 0.84964 -0.546289)
(0.223694 0.745816 -0.990113)
(0.0452868 0.427346 -0.915183)
(-0.820038 0.767465 -0.725231)
(-1.30582 1.67775 -0.181522)
(-1.11131 2.0879 0.366903)
(-0.448291 1.44184 -0.0439965)
(0.214529 0.116108 -0.625518)
(0.454339 -0.425975 -0.495144)
(0.553715 -0.447514 0.00523256)
(0.460727 -0.419253 0.370324)
(0.324071 -0.327162 0.396986)
(0.300436 -0.314008 0.319331)
(0.242772 -0.324184 0.206873)
(0.191971 -0.35674 0.0907047)
(0.157588 -0.402641 0.0104873)
(0.146694 -0.493307 -0.0483105)
(0.107247 -0.591067 -0.077153)
(0.100112 -0.725425 -0.0884893)
(0.0641379 -0.839906 -0.0838121)
(0.0736266 -1.00411 -0.0869767)
(0.022328 -1.23034 -0.0948888)
(-0.00767789 -1.70513 -0.123258)
(-0.115569 -2.5043 -0.180289)
(-0.223502 -3.74111 -0.191315)
(-0.301733 -4.51041 -0.172245)
(-0.147125 -3.12312 -0.0990484)
(0.0120569 0.399779 -0.0381428)
(0.0966759 1.05124 -0.110776)
(0.18213 1.60883 -0.177225)
(0.227666 1.9513 -0.207728)
(0.262357 2.07347 -0.188724)
(0.275907 2.03443 -0.124831)
(0.276982 1.90074 -0.0346176)
(0.261348 1.72938 0.052864)
(0.240084 1.55263 0.120927)
(0.206947 1.3842 0.153885)
(0.164938 1.23564 0.140078)
(0.106708 1.09843 0.0758513)
(0.0606342 1.00212 -0.075193)
(0.0612046 0.911171 -0.388458)
(0.232274 0.82802 -0.739102)
(0.257909 0.580723 -0.826473)
(-0.0539633 0.50949 -0.875311)
(-0.277748 0.799452 -0.845622)
(-0.155292 0.750353 -0.837431)
(0.29895 0.277726 -0.95959)
(0.696282 -0.322085 -0.78891)
(0.824261 -0.495885 -0.401049)
(0.861355 -0.443139 0.0625494)
(0.758317 -0.350791 0.346093)
(0.538894 -0.290275 0.36814)
(0.425073 -0.294697 0.229623)
(0.348771 -0.305555 0.11949)
(0.285263 -0.322832 0.0492525)
(0.215507 -0.376199 0.00419244)
(0.177103 -0.476247 -0.0266561)
(0.119977 -0.559729 -0.0544367)
(0.117481 -0.686591 -0.0739096)
(0.0938037 -0.778029 -0.084793)
(0.0972226 -0.954361 -0.0876782)
(0.0253082 -1.14104 -0.085361)
(0.0110098 -1.59648 -0.122882)
(-0.105872 -2.38068 -0.180868)
(-0.214733 -3.72219 -0.197598)
(-0.322005 -4.72149 -0.180818)
(-0.174597 -3.59845 -0.107724)
(0.0070711 0.360074 -0.0316258)
(0.0940658 0.952198 -0.0963131)
(0.198752 1.48761 -0.154658)
(0.248922 1.86315 -0.194761)
(0.282913 2.01988 -0.186428)
(0.304676 2.01202 -0.133696)
(0.316581 1.90007 -0.0518358)
(0.309674 1.74184 0.0305401)
(0.293749 1.57383 0.0994427)
(0.269258 1.41316 0.139555)
(0.235978 1.27552 0.138968)
(0.19274 1.1548 0.0939159)
(0.161468 1.06849 -0.0149178)
(0.168006 0.990293 -0.21638)
(0.26697 0.926854 -0.468257)
(0.360834 0.733048 -0.620623)
(0.305453 0.616112 -0.659688)
(0.225646 0.608642 -0.663258)
(0.307427 0.448235 -0.690268)
(0.539997 0.245601 -0.727663)
(0.803185 0.0265115 -0.595939)
(0.997002 -0.0804711 -0.306414)
(1.06478 -0.120589 0.0731955)
(0.915777 -0.192175 0.322349)
(0.653285 -0.232039 0.267508)
(0.541114 -0.250446 0.120018)
(0.469862 -0.249455 0.0476676)
(0.376462 -0.257377 0.0149945)
(0.261151 -0.325099 0.00629465)
(0.228681 -0.421171 -0.0183931)
(0.167628 -0.488516 -0.0379746)
(0.157434 -0.603652 -0.0542695)
(0.0990932 -0.69052 -0.0675185)
(0.113285 -0.872645 -0.0690059)
(0.0564526 -1.03935 -0.0988317)
(0.0301021 -1.46577 -0.0989743)
(-0.0918233 -2.20203 -0.184012)
(-0.197421 -3.60829 -0.193273)
(-0.336009 -4.80878 -0.183173)
(-0.196441 -3.99856 -0.111585)
(0.00759622 0.305482 -0.0242313)
(0.0865266 0.837933 -0.0844911)
(0.206092 1.34026 -0.135565)
(0.274073 1.72109 -0.175288)
(0.301267 1.91776 -0.181586)
(0.32563 1.93975 -0.14103)
(0.346782 1.85744 -0.071962)
(0.35053 1.71061 0.00974665)
(0.344596 1.5571 0.0782345)
(0.33261 1.40362 0.126161)
(0.313891 1.2738 0.142345)
(0.289921 1.16254 0.124571)
(0.270253 1.08385 0.0639448)
(0.280606 1.01514 -0.0454521)
(0.345493 0.952793 -0.200594)
(0.429988 0.824613 -0.333165)
(0.469653 0.704606 -0.400507)
(0.479782 0.623862 -0.403151)
(0.559627 0.461885 -0.37595)
(0.693901 0.330705 -0.308509)
(0.884518 0.22454 -0.182698)
(1.06539 0.153492 -0.0240748)
(1.0682 0.047837 0.155185)
(0.929357 -0.101195 0.26595)
(0.749049 -0.163206 0.157568)
(0.666537 -0.176638 0.0573983)
(0.60228 -0.167028 0.0189189)
(0.471004 -0.177833 0.0161481)
(0.317129 -0.241527 0.0128881)
(0.291686 -0.333336 -0.00525361)
(0.219527 -0.399782 -0.0209247)
(0.205 -0.519576 -0.0347023)
(0.134205 -0.598246 -0.0472954)
(0.131313 -0.769557 -0.0595973)
(0.0694289 -0.926997 -0.0808637)
(0.066258 -1.34009 -0.113013)
(-0.0738334 -2.00599 -0.172479)
(-0.166171 -3.44823 -0.198273)
(-0.345414 -4.817 -0.182684)
(-0.218265 -4.35213 -0.115518)
(0.00264405 0.272853 -0.0199488)
(0.0696528 0.7596 -0.075855)
(0.187576 1.23464 -0.12373)
(0.285817 1.60633 -0.15419)
(0.327061 1.83167 -0.173482)
(0.346175 1.89026 -0.146259)
(0.375225 1.83385 -0.0899496)
(0.394017 1.69971 -0.0136458)
(0.405899 1.55355 0.0525449)
(0.406107 1.4016 0.107042)
(0.402961 1.26914 0.136885)
(0.396169 1.1538 0.142612)
(0.392628 1.06666 0.119535)
(0.4027 0.995275 0.0672082)
(0.438664 0.928748 -0.00991094)
(0.498418 0.832311 -0.0997349)
(0.560463 0.72449 -0.176253)
(0.611773 0.620931 -0.20677)
(0.692842 0.48004 -0.192646)
(0.778216 0.341819 -0.115551)
(0.956705 0.217357 -0.0120974)
(1.14008 0.145772 0.0725465)
(1.11946 0.0373224 0.177634)
(0.99839 -0.0502641 0.21498)
(0.854784 -0.0895705 0.139438)
(0.803978 -0.0932014 0.0643424)
(0.736482 -0.0800796 0.0349664)
(0.57072 -0.0977568 0.042266)
(0.379024 -0.140869 0.0394389)
(0.359206 -0.230359 0.0188907)
(0.275585 -0.293579 0.00160108)
(0.261339 -0.417505 -0.0132658)
(0.169111 -0.488419 -0.0275748)
(0.168925 -0.666898 -0.0423235)
(0.0773444 -0.795706 -0.0726894)
(0.0981108 -1.20101 -0.110484)
(-0.0458899 -1.82001 -0.166068)
(-0.134744 -3.27117 -0.193797)
(-0.356929 -4.79323 -0.181079)
(-0.243552 -4.70763 -0.115105)
(0.00781893 0.223993 -0.0178207)
(0.0584628 0.659683 -0.0730798)
(0.159286 1.098 -0.114729)
(0.273071 1.44957 -0.144226)
(0.342086 1.67045 -0.154805)
(0.366191 1.76344 -0.148736)
(0.385777 1.74048 -0.105232)
(0.416655 1.63044 -0.0448722)
(0.445271 1.4933 0.0231728)
(0.461897 1.34831 0.0783478)
(0.474022 1.21691 0.118859)
(0.483495 1.09681 0.140311)
(0.494775 1.00032 0.143172)
(0.513385 0.915886 0.127221)
(0.542743 0.8421 0.097945)
(0.579764 0.760447 0.0580638)
(0.624682 0.666875 0.0167648)
(0.668411 0.566396 -0.0124068)
(0.743042 0.448677 -0.0278332)
(0.823293 0.318365 0.000705603)
(1.02217 0.197686 0.0335901)
(1.21538 0.117869 0.0829842)
(1.19202 0.0129645 0.146071)
(1.10926 -0.0588635 0.178684)
(0.996382 -0.0659121 0.137284)
(0.955082 -0.0603649 0.0918887)
(0.874767 -0.0414576 0.0629486)
(0.690261 -0.0520796 0.0685402)
(0.467784 -0.0697441 0.0621673)
(0.437187 -0.14043 0.0490549)
(0.340883 -0.199996 0.0245024)
(0.330216 -0.31679 0.00725628)
(0.221343 -0.377211 -0.0106908)
(0.218017 -0.558822 -0.0289029)
(0.105021 -0.67537 -0.0605938)
(0.131023 -1.06799 -0.106256)
(-0.0268382 -1.64792 -0.162899)
(-0.092751 -3.10767 -0.193361)
(-0.38019 -4.76517 -0.178341)
(-0.272481 -5.11774 -0.115303)
(0.00350541 0.208214 -0.0185903)
(0.0282361 0.618471 -0.0722719)
(0.100451 1.03231 -0.113975)
(0.223348 1.37885 -0.138973)
(0.333506 1.58054 -0.148895)
(0.396455 1.67246 -0.140999)
(0.413413 1.6814 -0.118788)
(0.443008 1.58199 -0.0688885)
(0.489473 1.45855 -0.0128061)
(0.524452 1.31058 0.045033)
(0.552538 1.17878 0.0886109)
(0.574409 1.0525 0.120796)
(0.596727 0.945352 0.139842)
(0.619638 0.847566 0.146039)
(0.647952 0.760063 0.140956)
(0.677829 0.674217 0.127167)
(0.715132 0.589092 0.104551)
(0.749784 0.500845 0.0847077)
(0.814067 0.404258 0.0754283)
(0.890586 0.286499 0.0922836)
(1.10417 0.180927 0.0976367)
(1.30408 0.111063 0.111813)
(1.2814 0.0261426 0.134575)
(1.24218 -0.0321844 0.141943)
(1.16047 -0.0321015 0.121604)
(1.12401 -0.0312276 0.102908)
(1.03614 -0.00740686 0.0900423)
(0.834116 -0.0186319 0.0972302)
(0.585306 -0.0141307 0.0869678)
(0.542064 -0.0610238 0.0634272)
(0.421649 -0.0905916 0.0465337)
(0.42746 -0.210541 0.0245511)
(0.287954 -0.24992 0.00444571)
(0.291713 -0.424772 -0.0162009)
(0.141492 -0.52744 -0.0520661)
(0.178516 -0.907619 -0.096233)
(-0.00786737 -1.45884 -0.163604)
(-0.048687 -2.90463 -0.185918)
(-0.412 -4.72835 -0.175264)
(-0.305294 -5.61393 -0.113375)
(0.0141118 0.180961 -0.0243986)
(0.0274289 0.530131 -0.0820194)
(0.0494879 0.93452 -0.11505)
(0.148985 1.23217 -0.142103)
(0.266709 1.43088 -0.150717)
(0.383298 1.48938 -0.139892)
(0.419251 1.52571 -0.127072)
(0.439963 1.43981 -0.092603)
(0.500954 1.34201 -0.0462057)
(0.551434 1.20945 0.00149257)
(0.603501 1.08426 0.0504345)
(0.64041 0.962964 0.0842656)
(0.674846 0.858943 0.111962)
(0.706096 0.7609 0.129662)
(0.739079 0.673008 0.138534)
(0.770156 0.587875 0.138743)
(0.804587 0.508879 0.128044)
(0.832666 0.428955 0.117186)
(0.889332 0.34549 0.108103)
(0.968292 0.236295 0.113002)
(1.20808 0.148711 0.105101)
(1.42639 0.0891701 0.112733)
(1.4043 0.0262823 0.125027)
(1.39021 -0.0174964 0.129057)
(1.31957 -0.0112671 0.116366)
(1.29097 -0.0153048 0.108459)
(1.19555 0.0256155 0.093215)
(0.993545 0.0143858 0.100897)
(0.729071 0.039533 0.0902593)
(0.697363 -0.0091005 0.0834615)
(0.538306 -0.00868708 0.0593635)
(0.544601 -0.101804 0.0387122)
(0.403365 -0.123934 0.0123581)
(0.410442 -0.298425 -0.00795938)
(0.235095 -0.378047 -0.0432991)
(0.264596 -0.763184 -0.090164)
(0.0558504 -1.2655 -0.147819)
(0.029112 -2.71213 -0.191797)
(-0.455187 -4.66961 -0.173181)
(-0.299308 -6.21735 -0.115357)
(-0.0202889 0.163349 -0.0278617)
(-0.0275259 0.562259 -0.0930164)
(-0.0310311 0.898393 -0.128323)
(0.0293382 1.23442 -0.147495)
(0.165295 1.38938 -0.157744)
(0.343263 1.40949 -0.150561)
(0.429632 1.42028 -0.138275)
(0.451785 1.33852 -0.11801)
(0.52981 1.24293 -0.0822585)
(0.59366 1.13137 -0.0469838)
(0.662969 1.01583 -0.00841811)
(0.720018 0.901263 0.0282177)
(0.769894 0.799506 0.0606127)
(0.809242 0.705245 0.0826359)
(0.846993 0.619206 0.0987306)
(0.881117 0.535621 0.107542)
(0.916745 0.461052 0.106682)
(0.943638 0.386949 0.107241)
(0.993539 0.31909 0.108187)
(1.07601 0.220247 0.115833)
(1.33427 0.15602 0.10957)
(1.56588 0.102132 0.112583)
(1.54835 0.050159 0.116611)
(1.56332 0.0111222 0.115857)
(1.50464 0.0120002 0.108092)
(1.49274 0.00859997 0.101329)
(1.39567 0.0684252 0.0893908)
(1.1931 0.0598007 0.0942767)
(0.902 0.107094 0.0856105)
(0.872682 0.0574024 0.0752891)
(0.722096 0.0717464 0.060435)
(0.752742 -0.00557185 0.0415933)
(0.56367 -0.0146382 0.018789)
(0.602296 -0.16335 -0.00355525)
(0.376556 -0.215006 -0.0377113)
(0.43072 -0.560862 -0.0816223)
(0.150136 -0.991526 -0.137307)
(0.214645 -2.38487 -0.184158)
(-0.421093 -4.57089 -0.170908)
(-0.238461 -6.81005 -0.118254)
(0.0471424 0.304667 -0.045874)
(-0.00352087 0.50081 -0.110188)
(-0.0991363 0.784244 -0.143511)
(-0.0425194 0.989228 -0.161601)
(-0.00734877 1.19801 -0.170082)
(0.201395 1.18052 -0.163886)
(0.364091 1.19394 -0.153454)
(0.416105 1.11951 -0.144955)
(0.518291 1.04534 -0.117053)
(0.607588 0.957436 -0.0943836)
(0.697538 0.870528 -0.0657591)
(0.7705 0.780122 -0.0400706)
(0.835619 0.697437 -0.013096)
(0.889234 0.620885 0.0110967)
(0.935274 0.551248 0.0313926)
(0.977333 0.4788 0.0459543)
(1.01847 0.410596 0.0538209)
(1.05327 0.341954 0.062582)
(1.10625 0.282607 0.0688169)
(1.20554 0.183032 0.0787777)
(1.49155 0.133325 0.0762878)
(1.74066 0.0813029 0.0830786)
(1.73061 0.0370592 0.0849242)
(1.76214 -0.00190468 0.0885256)
(1.71411 0.0210421 0.0802735)
(1.74114 0.0148482 0.0723461)
(1.64122 0.092378 0.0651182)
(1.46396 0.0827943 0.069587)
(1.15887 0.152315 0.064817)
(1.15834 0.118856 0.0603052)
(0.997525 0.158221 0.044688)
(1.06414 0.0644722 0.0343169)
(0.877555 0.0619069 0.0114646)
(0.974152 -0.0552587 -0.00893259)
(0.720079 -0.132022 -0.0364896)
(0.83288 -0.417939 -0.0705085)
(0.479931 -0.813077 -0.122708)
(0.592078 -2.0169 -0.163514)
(-0.155058 -4.35292 -0.174074)
(0.0701557 -7.33006 -0.125621)
(-0.223126 0.0767966 -0.0569339)
(-0.295568 0.705779 -0.137727)
(-0.283053 0.881762 -0.165497)
(-0.240539 1.02863 -0.179049)
(-0.115481 1.05336 -0.190866)
(0.0720717 1.06675 -0.182892)
(0.27673 0.999128 -0.178806)
(0.368702 0.93918 -0.17566)
(0.503644 0.868599 -0.158178)
(0.613845 0.803205 -0.145782)
(0.728621 0.73611 -0.127605)
(0.82537 0.668724 -0.109505)
(0.914183 0.607992 -0.0893192)
(0.987522 0.54907 -0.0700532)
(1.04839 0.495667 -0.0531677)
(1.10227 0.43775 -0.0376526)
(1.15814 0.374347 -0.0260313)
(1.2195 0.312238 -0.0139638)
(1.29278 0.270507 -0.00459611)
(1.44223 0.181927 0.00883496)
(1.78336 0.153814 0.0115694)
(2.09088 0.101111 0.0212352)
(2.11213 0.063869 0.0251457)
(2.21427 0.0297469 0.0298885)
(2.19082 0.0375545 0.026034)
(2.2517 0.0170409 0.0184519)
(2.14599 0.104625 0.013521)
(2.01437 0.0820703 0.0216872)
(1.68847 0.16985 0.0171552)
(1.75534 0.147956 0.0174803)
(1.58834 0.205608 0.00846713)
(1.73644 0.1268 -0.000642595)
(1.52848 0.12796 -0.0107468)
(1.70014 0.00507077 -0.0218314)
(1.36554 -0.0572185 -0.0413967)
(1.55083 -0.279119 -0.0676178)
(1.09489 -0.532262 -0.104319)
(1.28125 -1.45312 -0.147929)
(0.435984 -3.84288 -0.165273)
(0.522041 -7.19789 -0.124708)
(-0.733541 0.794168 -0.144326)
(-0.603695 0.399404 -0.212455)
(-0.743158 0.581342 -0.207342)
(-0.453292 0.611744 -0.209075)
(-0.304231 0.621883 -0.21196)
(0.00883812 0.676071 -0.209402)
(0.250992 0.640155 -0.202017)
(0.461791 0.613671 -0.207809)
(0.666393 0.575626 -0.198678)
(0.860495 0.540194 -0.196263)
(1.04895 0.498794 -0.186945)
(1.22437 0.457461 -0.176978)
(1.38321 0.420022 -0.163503)
(1.52554 0.388389 -0.148746)
(1.64379 0.365171 -0.135001)
(1.75484 0.333792 -0.121648)
(1.86685 0.286984 -0.110266)
(2.0219 0.250736 -0.0991491)
(2.20103 0.220859 -0.0936278)
(2.48828 0.123453 -0.0790046)
(2.91087 0.095108 -0.0754683)
(3.33939 0.0430402 -0.0643814)
(3.41254 0.00217502 -0.056009)
(3.55591 -0.0365238 -0.045849)
(3.49366 -0.0197889 -0.0432439)
(3.62073 -0.0225706 -0.0415138)
(3.467 0.061327 -0.042986)
(3.42174 0.0588374 -0.0328172)
(3.04347 0.138837 -0.0347952)
(3.22355 0.147875 -0.0338935)
(3.01974 0.193908 -0.0376753)
(3.33682 0.13255 -0.0407532)
(3.05254 0.0951513 -0.0461989)
(3.38431 0.0115776 -0.0514458)
(2.90288 -0.0574789 -0.0627798)
(3.24474 -0.23323 -0.0736849)
(2.57081 -0.520143 -0.0920877)
(2.92181 -1.12986 -0.11553)
(1.92579 -3.13277 -0.135603)
(1.35621 -6.07549 -0.111545)
(1.15856 1.47797 -0.060605)
(1.72155 0.726103 -0.0886357)
(2.46073 0.567948 -0.0950669)
(2.87712 0.351661 -0.0971802)
(3.16003 0.28142 -0.0981205)
(3.4078 0.227298 -0.0999384)
(3.64465 0.216256 -0.101656)
(3.85157 0.193115 -0.114603)
(4.05802 0.182995 -0.120127)
(4.27321 0.170928 -0.128675)
(4.48083 0.15911 -0.132137)
(4.68964 0.145865 -0.131977)
(4.86787 0.134198 -0.128011)
(5.03462 0.123499 -0.12029)
(5.15683 0.117438 -0.113319)
(5.2856 0.112278 -0.105499)
(5.41833 0.0877177 -0.0992049)
(5.63042 0.0671778 -0.0913318)
(5.90115 0.0819109 -0.0941859)
(6.36032 0.0544704 -0.0872408)
(6.77891 0.0325177 -0.0861642)
(7.25556 0.0120654 -0.0830193)
(7.27318 -0.00776344 -0.0742945)
(7.34184 -0.0538453 -0.0642726)
(7.16114 -0.0394858 -0.0573074)
(7.17427 -0.05355 -0.0484812)
(6.83024 -0.0279458 -0.050228)
(6.81437 -0.0133862 -0.0376529)
(6.34775 0.0216936 -0.0369901)
(6.60654 0.0411738 -0.0380738)
(6.36575 0.0704155 -0.0431344)
(6.81329 0.0683086 -0.0448924)
(6.5059 0.0425843 -0.0480477)
(6.89623 0.0112653 -0.0496465)
(6.3472 -0.0164079 -0.0567023)
(6.56718 -0.107305 -0.0616716)
(5.68561 -0.258987 -0.0709465)
(5.70983 -0.580572 -0.077096)
(4.28655 -1.13537 -0.090358)
(2.79432 -2.52202 -0.0906389)
(0.000907287 -0.000417218 0.000395711)
(0.0222172 -0.00307996 -0.00335925)
(0.0507464 -0.00254159 -0.00595862)
(0.0705025 -0.000393509 -0.00876019)
(0.0794787 0.00222232 -0.00875232)
(0.0692277 -0.00128038 -0.0114596)
(0.0531971 0.00463692 -0.0175432)
(0.0400068 0.00267229 -0.0223718)
(0.0227569 0.0144004 -0.024498)
(-0.00262509 0.0147191 -0.0330173)
(-0.0428572 0.0157723 -0.0273937)
(-0.0975308 0.00842165 -0.0279887)
(-0.156288 0.00369013 -0.0255721)
(-0.231693 0.00378476 -0.0244583)
(-0.306985 0.0106782 -0.0212577)
(-0.39709 0.0219663 -0.0177519)
(-0.476324 0.0147473 -0.00720989)
(-0.586354 0.00625686 -0.00157379)
(-0.649597 -0.0122981 0.0256906)
(-0.81911 -0.0125087 0.0438867)
(-0.777198 0.0242506 0.0525618)
(-0.588885 0.0250599 0.0596923)
(-0.58503 0.0353839 0.0604686)
(-0.573391 0.0307449 0.0610994)
(-0.556028 0.0203194 0.0658915)
(-0.495778 0.0178714 0.0697518)
(-0.428074 0.00663362 0.0774119)
(-0.320408 -0.00169238 0.0857426)
(-0.197297 -0.00927845 0.0896051)
(-0.0620867 -0.021713 0.0885297)
(0.0716233 0.0182628 0.0736173)
(0.279371 0.00939168 0.0587081)
(0.430793 0.0114323 0.038742)
(0.457558 0.0379624 0.00600756)
(0.428963 0.0477909 -0.0104404)
(0.335466 0.0478928 -0.0275383)
(0.223934 0.0329667 -0.0354041)
(0.115932 0.0191515 -0.0384564)
(0.0343773 0.00203567 -0.0279717)
(-0.00414734 -0.00878552 -0.0128014)
(0.00714113 -0.0129244 -0.00210148)
(0.0445294 -0.0271172 -0.0114391)
(0.0878124 -0.0245224 -0.0184313)
(0.116611 -0.0133544 -0.0258667)
(0.120666 -0.00454574 -0.0286981)
(0.104051 0.00420548 -0.0370368)
(0.0712238 0.0165299 -0.0484368)
(0.0337627 0.0355647 -0.0571355)
(-0.025 0.0537216 -0.0654701)
(-0.123091 0.0654086 -0.0729109)
(-0.255419 0.0822795 -0.0559149)
(-0.417483 0.107045 -0.0501605)
(-0.585032 0.133365 -0.042609)
(-0.774508 0.162087 -0.0399016)
(-0.96609 0.187032 -0.0346984)
(-1.18535 0.182231 -0.0245774)
(-1.37359 0.155387 -0.0114415)
(-1.56155 0.121269 0.000259049)
(-1.6784 0.0889867 0.0172166)
(-1.82105 0.0763159 0.0265835)
(-1.68916 0.104857 0.030029)
(-1.43803 0.085405 0.0236267)
(-1.33968 0.0664398 0.0135661)
(-1.22914 0.0309944 0.00569231)
(-1.1371 -0.00714405 -0.00556207)
(-1.01231 -0.063358 0.000706653)
(-0.883099 -0.11078 0.00160718)
(-0.71249 -0.141268 -0.00247347)
(-0.534046 -0.154986 -0.00797774)
(-0.305594 -0.167858 -0.021462)
(-0.12676 -0.137544 -0.0304538)
(0.133794 -0.0725266 -0.0698333)
(0.418624 -0.0401247 -0.0663178)
(0.563939 0.0266378 -0.0710178)
(0.613581 0.115724 -0.0942939)
(0.555823 0.150529 -0.0946827)
(0.429097 0.156159 -0.0984714)
(0.263218 0.125706 -0.0953718)
(0.106614 0.0810919 -0.0775612)
(0.0142063 0.0272032 -0.0345037)
(0.0101769 -0.0294937 -0.00253023)
(0.0515832 -0.0556237 -0.0151279)
(0.0926157 -0.047706 -0.026465)
(0.108368 -0.0185367 -0.0380923)
(0.101119 0.00947857 -0.0441763)
(0.0654968 0.0369869 -0.0576348)
(0.0098772 0.0811509 -0.0669993)
(-0.077412 0.134381 -0.0751787)
(-0.214759 0.186619 -0.0802179)
(-0.387276 0.237344 -0.0806149)
(-0.594139 0.290485 -0.0744108)
(-0.836275 0.351284 -0.0701144)
(-1.08941 0.400691 -0.0657515)
(-1.34786 0.421839 -0.0644187)
(-1.60547 0.397335 -0.0590019)
(-1.84673 0.345512 -0.0552829)
(-2.02736 0.299006 -0.0522279)
(-2.19682 0.245766 -0.0506549)
(-2.29899 0.208326 -0.044329)
(-2.38833 0.160649 -0.0436606)
(-2.18584 0.145927 -0.0448239)
(-1.89854 0.0981628 -0.0517141)
(-1.73921 0.0352982 -0.0751331)
(-1.60151 -0.0445684 -0.0891958)
(-1.52178 -0.152091 -0.080843)
(-1.39017 -0.268239 -0.0784861)
(-1.24557 -0.358759 -0.0855396)
(-1.06606 -0.423361 -0.0913104)
(-0.899548 -0.450418 -0.103453)
(-0.697067 -0.43321 -0.118281)
(-0.489742 -0.405017 -0.131167)
(-0.232127 -0.296069 -0.144761)
(0.0263675 -0.211374 -0.1551)
(0.277127 -0.0822121 -0.162049)
(0.442358 0.0528132 -0.140267)
(0.462379 0.176578 -0.151739)
(0.402884 0.226201 -0.143876)
(0.262251 0.227416 -0.136033)
(0.113449 0.176012 -0.109482)
(0.0148897 0.0835999 -0.0482284)
(0.0123698 -0.0467885 -0.00175126)
(0.0487305 -0.0795701 -0.0171787)
(0.0749875 -0.0583904 -0.0326473)
(0.0694463 -0.0158005 -0.0533568)
(0.0264299 0.0488368 -0.0566007)
(-0.0283916 0.123538 -0.0799014)
(-0.118444 0.209653 -0.0889615)
(-0.267635 0.311397 -0.0985553)
(-0.480687 0.419473 -0.100766)
(-0.744351 0.512097 -0.0994897)
(-1.02125 0.581546 -0.0925314)
(-1.30531 0.628439 -0.0905583)
(-1.58451 0.62434 -0.0888339)
(-1.86375 0.573378 -0.0846537)
(-2.09687 0.505199 -0.0846747)
(-2.28539 0.441273 -0.0877117)
(-2.42177 0.381977 -0.0901338)
(-2.54773 0.313088 -0.0914502)
(-2.61189 0.253398 -0.0907592)
(-2.63192 0.174286 -0.092975)
(-2.38646 0.132078 -0.0902663)
(-2.09179 0.0455104 -0.0962764)
(-1.93797 -0.0546851 -0.104967)
(-1.84843 -0.195469 -0.0877104)
(-1.78575 -0.34894 -0.0769311)
(-1.67913 -0.492962 -0.0816493)
(-1.55581 -0.626176 -0.0870363)
(-1.39059 -0.734961 -0.0929278)
(-1.22364 -0.798897 -0.101319)
(-1.04993 -0.79353 -0.117972)
(-0.889994 -0.721368 -0.140875)
(-0.682796 -0.590862 -0.164437)
(-0.449746 -0.457981 -0.169909)
(-0.185829 -0.273106 -0.176909)
(0.080839 -0.0893698 -0.192213)
(0.221601 0.1124 -0.186331)
(0.241068 0.231531 -0.180266)
(0.176659 0.274419 -0.164566)
(0.0737197 0.242391 -0.131462)
(0.00958578 0.12501 -0.0570428)
(0.0107274 -0.0614192 0.000444698)
(0.0352549 -0.0908051 -0.0186595)
(0.0270598 -0.0491812 -0.0403088)
(-0.00632977 0.0311102 -0.0618862)
(-0.0584997 0.141878 -0.0846422)
(-0.159793 0.274846 -0.0997206)
(-0.30332 0.412375 -0.111224)
(-0.506219 0.559181 -0.116685)
(-0.785101 0.693674 -0.115583)
(-1.09436 0.78937 -0.11381)
(-1.39774 0.822022 -0.111062)
(-1.70329 0.791551 -0.103771)
(-1.97895 0.719491 -0.0923199)
(-2.19507 0.639193 -0.090715)
(-2.35399 0.572818 -0.0913342)
(-2.47431 0.4969 -0.093452)
(-2.55037 0.432929 -0.092728)
(-2.62355 0.356239 -0.0893137)
(-2.63954 0.290061 -0.0761877)
(-2.60329 0.186134 -0.0710945)
(-2.33579 0.120539 -0.0545325)
(-2.05777 0.00406385 -0.0379302)
(-1.94828 -0.1453 -0.0343745)
(-1.89283 -0.327283 -0.0209506)
(-1.86844 -0.490039 -0.0274499)
(-1.80232 -0.667428 -0.034095)
(-1.72357 -0.841236 -0.0408182)
(-1.60026 -1.0003 -0.0483617)
(-1.45937 -1.12148 -0.0571178)
(-1.28951 -1.17919 -0.0668858)
(-1.13983 -1.14344 -0.0811153)
(-1.00674 -0.99943 -0.111941)
(-0.867236 -0.77284 -0.140027)
(-0.610609 -0.530533 -0.149024)
(-0.287069 -0.277936 -0.165754)
(-0.0463615 -0.0193887 -0.176281)
(0.0578753 0.162022 -0.190479)
(0.0595525 0.274975 -0.172421)
(0.0272303 0.263461 -0.134763)
(-0.00168825 0.135374 -0.0557951)
(0.00692852 -0.0730251 0.00285725)
(0.00992004 -0.0773598 -0.0206802)
(-0.023611 -0.00765347 -0.0531015)
(-0.0846449 0.142256 -0.0881555)
(-0.178294 0.300492 -0.108166)
(-0.313383 0.486181 -0.12616)
(-0.498648 0.663496 -0.133039)
(-0.740866 0.836019 -0.13456)
(-1.05883 0.942828 -0.13007)
(-1.41968 0.948776 -0.118135)
(-1.74732 0.898484 -0.0976884)
(-2.00064 0.818215 -0.0850646)
(-2.17634 0.742314 -0.0751789)
(-2.30221 0.669905 -0.0680121)
(-2.38273 0.593898 -0.0646417)
(-2.42394 0.512729 -0.0565575)
(-2.44393 0.439835 -0.0432679)
(-2.46137 0.357905 -0.0355001)
(-2.43819 0.289228 -0.0174485)
(-2.35638 0.172445 -0.00780102)
(-2.08357 0.0964249 0.0115777)
(-1.84235 -0.0326079 0.0279138)
(-1.77635 -0.201774 0.0520871)
(-1.75128 -0.374867 0.0439846)
(-1.74885 -0.549535 0.0329302)
(-1.72935 -0.747875 0.0204985)
(-1.70564 -0.953738 0.00708243)
(-1.64979 -1.16382 -0.00372656)
(-1.57211 -1.34805 -0.0130354)
(-1.44985 -1.47943 -0.0231091)
(-1.31204 -1.52849 -0.0351904)
(-1.1589 -1.45325 -0.0509006)
(-1.10065 -1.2597 -0.075712)
(-0.97437 -0.876432 -0.113429)
(-0.635362 -0.54988 -0.135225)
(-0.310915 -0.205939 -0.162816)
(-0.0884681 0.0737479 -0.179627)
(-0.00236754 0.23904 -0.175243)
(-0.00725094 0.249884 -0.137385)
(-0.0022908 0.123379 -0.0564479)
(0.00708394 -0.0680366 0.00101269)
(-0.0177952 -0.0275357 -0.0354633)
(-0.072026 0.0972891 -0.0775519)
(-0.15976 0.29088 -0.112084)
(-0.287628 0.502523 -0.134902)
(-0.456565 0.720069 -0.146596)
(-0.665752 0.915921 -0.14883)
(-0.966582 1.03076 -0.146416)
(-1.36579 1.00018 -0.109485)
(-1.69854 0.942106 -0.0877681)
(-1.92056 0.885426 -0.0728585)
(-2.0732 0.832959 -0.0548815)
(-2.16906 0.758672 -0.0347645)
(-2.214 0.673241 -0.0176844)
(-2.22494 0.58552 -0.002618)
(-2.21794 0.497742 0.00503562)
(-2.1927 0.417188 0.0159852)
(-2.16582 0.335751 0.0242127)
(-2.11213 0.268796 0.0439093)
(-2.00426 0.157924 0.0528195)
(-1.73841 0.0866572 0.0824832)
(-1.54086 -0.049474 0.106751)
(-1.50335 -0.212486 0.114812)
(-1.50004 -0.373321 0.10649)
(-1.52108 -0.546065 0.0921216)
(-1.53463 -0.747918 0.0769189)
(-1.55594 -0.966702 0.05942)
(-1.5555 -1.20422 0.0417224)
(-1.5465 -1.44222 0.0235614)
(-1.50198 -1.64856 0.00964034)
(-1.42079 -1.79244 -0.00557569)
(-1.29899 -1.81147 -0.0181971)
(-1.17087 -1.72052 -0.0356068)
(-1.12808 -1.39767 -0.0574577)
(-0.922262 -0.932728 -0.0907145)
(-0.51208 -0.490804 -0.120611)
(-0.200482 -0.094128 -0.158445)
(-0.0674454 0.138125 -0.157117)
(-0.0209061 0.201427 -0.125082)
(-0.00440832 0.0955679 -0.0486856)
(0.00818519 -0.0205309 -0.00769062)
(-0.0279816 0.064563 -0.0541702)
(-0.116115 0.243574 -0.103336)
(-0.229804 0.472791 -0.14148)
(-0.384646 0.711324 -0.158827)
(-0.56974 0.92887 -0.165085)
(-0.866209 1.05645 -0.159917)
(-1.25891 1.02893 -0.111459)
(-1.57251 0.968547 -0.0889819)
(-1.78283 0.952343 -0.064889)
(-1.92344 0.908897 -0.0346948)
(-1.99807 0.836886 -0.00700356)
(-2.01849 0.745489 0.028123)
(-2.00608 0.649331 0.0503125)
(-1.9765 0.552538 0.0643645)
(-1.93433 0.457839 0.0687049)
(-1.88146 0.382407 0.0749437)
(-1.82978 0.308642 0.0780066)
(-1.7615 0.250844 0.0964012)
(-1.64309 0.156564 0.101309)
(-1.40127 0.0966324 0.138156)
(-1.2426 -0.0464195 0.159207)
(-1.22609 -0.192089 0.159986)
(-1.22893 -0.348815 0.146609)
(-1.25756 -0.512817 0.129861)
(-1.28778 -0.703069 0.111568)
(-1.33068 -0.915932 0.0920737)
(-1.37139 -1.15501 0.0727431)
(-1.41233 -1.41687 0.0530803)
(-1.43546 -1.67611 0.0320044)
(-1.43103 -1.90336 0.0150308)
(-1.37739 -2.04143 -0.0023739)
(-1.2725 -2.04048 -0.0162991)
(-1.19099 -1.87781 -0.0347555)
(-1.08517 -1.42871 -0.058652)
(-0.754451 -0.867506 -0.0898384)
(-0.319449 -0.355027 -0.124834)
(-0.078911 0.0408832 -0.148604)
(-0.00821088 0.146197 -0.123301)
(0.00368737 0.0820715 -0.0521372)
(-0.00143233 0.0194214 -0.0136427)
(-0.0515673 0.152716 -0.0716734)
(-0.146611 0.35551 -0.129138)
(-0.286242 0.601833 -0.164505)
(-0.464818 0.833845 -0.175429)
(-0.73796 1.01317 -0.172406)
(-1.10201 1.03036 -0.12925)
(-1.39948 1.00948 -0.0994302)
(-1.61544 1.01935 -0.0643587)
(-1.75284 0.981617 -0.0256691)
(-1.80389 0.909024 0.0176711)
(-1.80675 0.815183 0.0668996)
(-1.78415 0.718912 0.104012)
(-1.74711 0.617957 0.1249)
(-1.7036 0.523772 0.132905)
(-1.65215 0.430203 0.124565)
(-1.58976 0.356751 0.119572)
(-1.52194 0.288545 0.112391)
(-1.44647 0.23809 0.129167)
(-1.32815 0.168567 0.133851)
(-1.12276 0.111788 0.186319)
(-0.997774 -0.040138 0.194068)
(-0.987423 -0.16881 0.187509)
(-0.992317 -0.316267 0.170622)
(-1.0189 -0.467362 0.151561)
(-1.05182 -0.643143 0.132076)
(-1.09853 -0.841232 0.111548)
(-1.15179 -1.07082 0.092357)
(-1.21566 -1.33129 0.0717652)
(-1.27779 -1.61239 0.0524009)
(-1.32886 -1.89412 0.0317986)
(-1.34542 -2.12547 0.0137592)
(-1.30753 -2.25383 -0.00377357)
(-1.21686 -2.20798 -0.0184766)
(-1.13657 -1.92068 -0.0357554)
(-0.917103 -1.32901 -0.0577273)
(-0.445475 -0.663646 -0.0889152)
(-0.122279 -0.13213 -0.121238)
(-0.0303876 0.0867875 -0.103516)
(0.0102048 0.0700147 -0.0444089)
(-0.0049537 0.0633351 -0.0228932)
(-0.0718749 0.253382 -0.0906865)
(-0.188392 0.472394 -0.150087)
(-0.338055 0.704814 -0.181124)
(-0.55203 0.916589 -0.187312)
(-0.873815 1.0247 -0.163897)
(-1.19306 1.05307 -0.123031)
(-1.42287 1.08381 -0.0790717)
(-1.56758 1.05499 -0.0312064)
(-1.6079 0.98319 0.0283503)
(-1.60159 0.888889 0.0908742)
(-1.5703 0.784772 0.142427)
(-1.53221 0.685454 0.180343)
(-1.49237 0.589505 0.195285)
(-1.4555 0.496599 0.191039)
(-1.40505 0.405958 0.165846)
(-1.33559 0.332565 0.144675)
(-1.25707 0.272984 0.127732)
(-1.16964 0.233022 0.143302)
(-1.05957 0.196607 0.163125)
(-0.908186 0.134262 0.217759)
(-0.815773 -0.0242866 0.21382)
(-0.800013 -0.144796 0.201473)
(-0.806333 -0.284863 0.180962)
(-0.823371 -0.424349 0.159456)
(-0.852057 -0.582506 0.138799)
(-0.892882 -0.762227 0.1175)
(-0.945121 -0.97078 0.0986799)
(-1.01295 -1.217 0.079251)
(-1.08952 -1.49714 0.0604006)
(-1.17047 -1.80368 0.0405179)
(-1.23555 -2.10146 0.0213648)
(-1.26016 -2.33715 0.00221797)
(-1.2237 -2.43155 -0.0130418)
(-1.13101 -2.30228 -0.0284368)
(-0.995381 -1.84203 -0.0410656)
(-0.641368 -1.08735 -0.065294)
(-0.20155 -0.414198 -0.0847657)
(-0.0327467 0.0188012 -0.104619)
(0.00849043 0.0540519 -0.0471192)
(-0.00886596 0.125538 -0.0330998)
(-0.0880956 0.369939 -0.106823)
(-0.218256 0.605504 -0.165433)
(-0.381011 0.835171 -0.191934)
(-0.640088 1.01574 -0.190646)
(-0.953999 1.08834 -0.157526)
(-1.21128 1.13515 -0.110711)
(-1.36802 1.1287 -0.054494)
(-1.42077 1.06352 0.0158525)
(-1.40918 0.964321 0.090076)
(-1.37291 0.851851 0.159929)
(-1.32516 0.748916 0.216486)
(-1.28997 0.658786 0.25398)
(-1.26293 0.568181 0.262284)
(-1.24164 0.484367 0.247861)
(-1.1992 0.388032 0.201187)
(-1.12646 0.319913 0.168067)
(-1.03171 0.257791 0.135914)
(-0.926134 0.226205 0.156344)
(-0.838103 0.228239 0.20063)
(-0.759998 0.159586 0.257549)
(-0.695955 -0.0130541 0.228919)
(-0.666636 -0.133641 0.210797)
(-0.670254 -0.264173 0.185783)
(-0.675714 -0.395017 0.161163)
(-0.695446 -0.535349 0.139735)
(-0.725556 -0.69625 0.117056)
(-0.767871 -0.880616 0.0986631)
(-0.827433 -1.1034 0.0796474)
(-0.901167 -1.36616 0.0629796)
(-0.989057 -1.6734 0.0445257)
(-1.0777 -2.00408 0.026268)
(-1.14689 -2.31925 0.00705683)
(-1.16195 -2.53983 -0.00923503)
(-1.1056 -2.56287 -0.0225326)
(-0.981098 -2.28219 -0.0329967)
(-0.751716 -1.5836 -0.0418097)
(-0.302593 -0.702553 -0.0642713)
(-0.0379635 -0.0935147 -0.0701927)
(-0.0124282 0.038156 -0.0369638)
(-0.00966481 0.191691 -0.0462517)
(-0.095926 0.492729 -0.124996)
(-0.2343 0.742119 -0.18052)
(-0.42364 0.967581 -0.203034)
(-0.702649 1.10611 -0.194246)
(-0.969534 1.17514 -0.156671)
(-1.15341 1.19648 -0.100623)
(-1.23379 1.14937 -0.0224514)
(-1.23569 1.04549 0.0614438)
(-1.19382 0.920279 0.146777)
(-1.14034 0.807757 0.224213)
(-1.0934 0.711833 0.285432)
(-1.07184 0.628836 0.324723)
(-1.06279 0.549189 0.333737)
(-1.0684 0.459164 0.305318)
(-1.03588 0.364091 0.241332)
(-0.954803 0.273487 0.177841)
(-0.852902 0.22222 0.121928)
(-0.713459 0.204184 0.144639)
(-0.653668 0.265653 0.249672)
(-0.671988 0.204449 0.31069)
(-0.633439 -0.00974124 0.236239)
(-0.573661 -0.136991 0.208242)
(-0.572711 -0.256183 0.183274)
(-0.566768 -0.379644 0.155507)
(-0.577074 -0.502538 0.134985)
(-0.596742 -0.646299 0.110705)
(-0.626834 -0.80615 0.0924361)
(-0.674099 -1.00274 0.0733352)
(-0.736138 -1.23954 0.0576949)
(-0.818207 -1.53043 0.0407062)
(-0.911257 -1.86833 0.0241355)
(-1.00251 -2.23004 0.00405987)
(-1.06075 -2.55112 -0.0115713)
(-1.05499 -2.72929 -0.0263618)
(-0.954032 -2.61844 -0.034366)
(-0.767279 -2.08608 -0.0396974)
(-0.408113 -1.10088 -0.0480908)
(-0.0780643 -0.266669 -0.0725533)
(-0.0193569 0.0137201 -0.0414651)
(-0.008083 0.255467 -0.0565856)
(-0.0947412 0.610223 -0.138644)
(-0.239127 0.874477 -0.191571)
(-0.459312 1.07835 -0.211817)
(-0.721745 1.19721 -0.196634)
(-0.926387 1.25797 -0.151315)
(-1.0469 1.23331 -0.0831489)
(-1.07179 1.14083 0.010821)
(-1.04315 1.00414 0.104759)
(-0.982382 0.871416 0.195694)
(-0.925669 0.759357 0.278423)
(-0.885036 0.668966 0.345071)
(-0.877548 0.596765 0.394211)
(-0.899395 0.515937 0.402545)
(-0.931411 0.432567 0.368078)
(-0.916811 0.312309 0.234639)
(-0.800095 0.273732 0.123455)
(-0.657544 0.215338 -0.0218755)
(-0.551556 0.214074 0.0392944)
(-0.572057 0.324699 0.304677)
(-0.68614 0.27325 0.410323)
(-0.629352 -0.0152466 0.243943)
(-0.514265 -0.162283 0.192767)
(-0.501965 -0.261825 0.178195)
(-0.486432 -0.380283 0.1465)
(-0.487381 -0.485863 0.128955)
(-0.499109 -0.615192 0.102927)
(-0.516925 -0.753075 0.0847617)
(-0.551434 -0.924387 0.0648108)
(-0.59767 -1.13143 0.0498074)
(-0.66591 -1.39565 0.0340817)
(-0.749704 -1.71986 0.0191049)
(-0.845202 -2.09846 0.00166685)
(-0.928156 -2.48615 -0.0147837)
(-0.964552 -2.792 -0.0291959)
(-0.912013 -2.8565 -0.0374298)
(-0.745951 -2.50601 -0.0353987)
(-0.456944 -1.58564 -0.0352387)
(-0.102826 -0.503434 -0.0342293)
(-0.0125498 -0.0358917 -0.0275725)
(-0.00512723 0.315874 -0.0687165)
(-0.0836109 0.72528 -0.15459)
(-0.244061 0.998698 -0.20596)
(-0.467716 1.17874 -0.226412)
(-0.689927 1.29932 -0.199046)
(-0.848182 1.32942 -0.145824)
(-0.914332 1.26085 -0.0587704)
(-0.902172 1.12108 0.0382891)
(-0.859029 0.962682 0.138189)
(-0.790872 0.819823 0.231443)
(-0.735464 0.705502 0.317927)
(-0.697458 0.617302 0.396124)
(-0.712161 0.54348 0.455398)
(-0.754349 0.470337 0.476424)
(-0.820713 0.395375 0.373204)
(-0.704703 0.405594 0.120964)
(-0.500647 0.444091 -0.171327)
(-0.429224 0.408999 -0.290026)
(-0.467223 0.311949 -0.0782942)
(-0.621999 0.40216 0.422256)
(-0.741133 0.328941 0.526106)
(-0.62618 -0.055717 0.210695)
(-0.472727 -0.20873 0.14538)
(-0.438477 -0.281533 0.162153)
(-0.421839 -0.39235 0.131106)
(-0.414618 -0.481641 0.119769)
(-0.424167 -0.598295 0.0924701)
(-0.432882 -0.717445 0.0743735)
(-0.457644 -0.866468 0.0531441)
(-0.489111 -1.04591 0.0379754)
(-0.541503 -1.28015 0.0227681)
(-0.611178 -1.5807 0.00933013)
(-0.699011 -1.95471 -0.00638848)
(-0.79298 -2.38029 -0.0247535)
(-0.858735 -2.78294 -0.0395284)
(-0.854168 -3.0069 -0.0468255)
(-0.728223 -2.84357 -0.0456381)
(-0.484189 -2.05771 -0.0375007)
(-0.128436 -0.823771 -0.0324263)
(-0.00293876 -0.110675 -0.0282802)
(0.000485654 0.35617 -0.0773449)
(-0.0735345 0.820833 -0.164952)
(-0.24175 1.09617 -0.221331)
(-0.447263 1.27466 -0.231156)
(-0.629575 1.38397 -0.196685)
(-0.747306 1.37619 -0.13603)
(-0.783396 1.26634 -0.0393208)
(-0.756544 1.09088 0.0596814)
(-0.701555 0.915808 0.159934)
(-0.63239 0.763156 0.249464)
(-0.575266 0.64096 0.338872)
(-0.544375 0.546972 0.42394)
(-0.567768 0.47301 0.500474)
(-0.634867 0.43544 0.491836)
(-0.573492 0.522794 0.286853)
(-0.364383 0.741011 -0.248171)
(-0.166533 0.831027 -0.523684)
(-0.157249 0.712112 -0.351077)
(-0.431138 0.358795 0.0549804)
(-0.674602 0.420599 0.607698)
(-0.668163 0.348284 0.587602)
(-0.51661 -0.104866 0.126887)
(-0.417229 -0.251165 0.0686094)
(-0.367498 -0.290095 0.131372)
(-0.358881 -0.405189 0.110377)
(-0.348078 -0.482622 0.108271)
(-0.360477 -0.590624 0.0822455)
(-0.363557 -0.696159 0.0642912)
(-0.38361 -0.8269 0.0414157)
(-0.4038 -0.981263 0.0258214)
(-0.442579 -1.18524 0.0109833)
(-0.495139 -1.45531 -0.000823859)
(-0.569959 -1.81043 -0.0148251)
(-0.662619 -2.25022 -0.0322115)
(-0.745934 -2.71965 -0.0492534)
(-0.777758 -3.08031 -0.0574164)
(-0.692772 -3.09628 -0.0537635)
(-0.485704 -2.47689 -0.0431089)
(-0.141753 -1.17664 -0.0275097)
(0.0239517 -0.153557 -0.0232406)
(0.00778992 0.395526 -0.0857727)
(-0.0633647 0.911516 -0.180358)
(-0.221722 1.20083 -0.235805)
(-0.398426 1.38276 -0.236825)
(-0.552371 1.46698 -0.197401)
(-0.642605 1.42054 -0.129155)
(-0.659427 1.26834 -0.0293354)
(-0.626107 1.07225 0.0702681)
(-0.57229 0.880356 0.16525)
(-0.506555 0.714545 0.247644)
(-0.449928 0.577583 0.333618)
(-0.412424 0.468819 0.42538)
(-0.428216 0.409341 0.506142)
(-0.386372 0.482684 0.477393)
(-0.238266 0.8844 0.0816411)
(-0.0244515 1.17204 -0.620352)
(0.100723 1.27039 -0.707222)
(-0.125823 0.882647 -0.153911)
(-0.640021 0.387441 0.304637)
(-0.803904 0.366295 0.718876)
(-0.4889 0.297395 0.556136)
(-0.32454 -0.161689 0.0384324)
(-0.333242 -0.282756 -0.000528388)
(-0.28835 -0.276916 0.082852)
(-0.305299 -0.383577 0.081519)
(-0.283517 -0.471858 0.0934612)
(-0.304766 -0.581406 0.0688069)
(-0.305228 -0.67919 0.0517358)
(-0.322511 -0.796222 0.0277027)
(-0.334472 -0.933342 0.0115338)
(-0.362546 -1.11119 -0.00232351)
(-0.401654 -1.35324 -0.0129218)
(-0.466553 -1.68442 -0.0263898)
(-0.551634 -2.12371 -0.0419174)
(-0.640029 -2.63601 -0.0606987)
(-0.697044 -3.11175 -0.0702052)
(-0.648328 -3.29637 -0.0681985)
(-0.47564 -2.85552 -0.0541243)
(-0.153717 -1.56295 -0.0322571)
(0.053637 -0.231501 -0.023645)
(0.00723585 0.404731 -0.0926641)
(-0.0501067 0.967998 -0.191134)
(-0.1877 1.29171 -0.239271)
(-0.343185 1.46563 -0.238002)
(-0.473645 1.52343 -0.192269)
(-0.546798 1.44129 -0.120523)
(-0.558277 1.26267 -0.0189225)
(-0.528807 1.05001 0.074298)
(-0.482329 0.847099 0.158766)
(-0.421257 0.66684 0.225338)
(-0.361759 0.500593 0.299319)
(-0.307422 0.367605 0.377017)
(-0.278333 0.292104 0.468349)
(-0.0802272 0.540145 0.30945)
(0.170249 1.11334 -0.192093)
(0.330113 1.59076 -0.83762)
(0.237395 1.59183 -0.725674)
(-0.196687 1.14157 -0.110757)
(-0.76143 0.597621 0.317649)
(-0.793314 0.338402 0.62914)
(-0.168517 0.149873 0.410638)
(-0.0572211 -0.229432 -0.0346352)
(-0.186633 -0.346567 -0.0591236)
(-0.165621 -0.277635 0.0474039)
(-0.249422 -0.346555 0.0421637)
(-0.239307 -0.420011 0.0661208)
(-0.254671 -0.541235 0.0564198)
(-0.249307 -0.655237 0.0401252)
(-0.270441 -0.768401 0.0147062)
(-0.279142 -0.889649 -0.00103103)
(-0.300379 -1.04116 -0.014038)
(-0.326092 -1.25481 -0.02578)
(-0.378337 -1.55961 -0.038661)
(-0.454649 -1.99093 -0.0523517)
(-0.546521 -2.53065 -0.0696208)
(-0.621372 -3.10083 -0.0821955)
(-0.606502 -3.44134 -0.0813579)
(-0.465127 -3.17545 -0.0674549)
(-0.172486 -1.91851 -0.0395925)
(0.0606384 -0.281946 -0.0243642)
(0.00780091 0.428111 -0.0954656)
(-0.017643 1.04653 -0.197458)
(-0.137974 1.40089 -0.248556)
(-0.287744 1.56903 -0.240976)
(-0.396778 1.6013 -0.192369)
(-0.460444 1.49532 -0.11548)
(-0.469698 1.29798 -0.0151346)
(-0.448447 1.07489 0.0710832)
(-0.412548 0.858536 0.139472)
(-0.368048 0.656684 0.184622)
(-0.317202 0.460102 0.222948)
(-0.280529 0.286067 0.262676)
(-0.181365 0.226751 0.226151)
(0.125111 0.499242 -0.291979)
(0.502604 1.06845 -0.763568)
(0.702156 1.75512 -0.829142)
(0.65532 1.69833 -0.742984)
(0.239702 1.4035 -0.324911)
(-0.483505 0.848959 0.250681)
(-0.489244 0.391794 0.392598)
(0.325479 0.0519171 0.168696)
(0.306246 -0.297385 -0.107953)
(0.00168429 -0.385346 -0.0935056)
(0.0223357 -0.287478 0.0252564)
(-0.142468 -0.332594 0.0241913)
(-0.176435 -0.363833 0.0408072)
(-0.234685 -0.45935 0.0255574)
(-0.220809 -0.570948 0.0209395)
(-0.222095 -0.69851 0.00144627)
(-0.219775 -0.834186 -0.0128452)
(-0.237854 -0.985204 -0.0256021)
(-0.260115 -1.17769 -0.0358512)
(-0.304241 -1.44469 -0.0486156)
(-0.36803 -1.85587 -0.0621478)
(-0.452909 -2.41059 -0.080747)
(-0.538554 -3.06717 -0.0948125)
(-0.553494 -3.56157 -0.0963891)
(-0.44285 -3.4806 -0.0819015)
(-0.177985 -2.2994 -0.050349)
(0.0656303 -0.396538 -0.0249883)
(0.00141356 0.430671 -0.0975274)
(-0.0277423 1.12655 -0.202862)
(-0.106777 1.49545 -0.248332)
(-0.227193 1.67783 -0.246397)
(-0.322212 1.69022 -0.190443)
(-0.369784 1.56559 -0.115029)
(-0.382012 1.36091 -0.0141391)
(-0.374289 1.13184 0.0609934)
(-0.360448 0.913043 0.111397)
(-0.344746 0.703651 0.12695)
(-0.323672 0.498718 0.100915)
(-0.291504 0.309796 0.0679898)
(-0.194026 0.264105 -0.291635)
(0.189371 0.440122 -1.23838)
(0.549868 0.760562 -1.26024)
(0.647133 1.29508 -0.506492)
(1.01011 1.31229 -0.646264)
(1.02745 1.17967 -0.665162)
(0.10083 1.05465 0.0030412)
(-0.248286 0.372086 0.127386)
(0.659032 0.00732858 -0.0937539)
(0.752511 -0.361992 -0.224616)
(0.260228 -0.434628 -0.144578)
(0.214143 -0.292581 0.00513391)
(-0.0119901 -0.310602 0.00751805)
(-0.0649174 -0.338588 0.029432)
(-0.163659 -0.399418 0.0180374)
(-0.191743 -0.47414 0.00123974)
(-0.223965 -0.576973 -0.0207698)
(-0.219149 -0.701053 -0.0296671)
(-0.214389 -0.843088 -0.0392531)
(-0.204662 -1.03568 -0.0480831)
(-0.228986 -1.2969 -0.058773)
(-0.278921 -1.69909 -0.0732424)
(-0.365329 -2.25011 -0.0898374)
(-0.462162 -2.96479 -0.107026)
(-0.509936 -3.60734 -0.110891)
(-0.444288 -3.71976 -0.0976533)
(-0.212617 -2.63604 -0.0648856)
(0.0459632 -0.454548 -0.0311372)
(0.00965486 0.559376 -0.0995067)
(0.0040165 1.31826 -0.206075)
(-0.049667 1.71548 -0.261236)
(-0.141286 1.88507 -0.247828)
(-0.226981 1.89984 -0.201751)
(-0.2715 1.77088 -0.124257)
(-0.289857 1.5729 -0.0239725)
(-0.300467 1.35498 0.0521272)
(-0.313933 1.15329 0.0915076)
(-0.325084 0.956463 0.0838063)
(-0.325379 0.765934 -0.019604)
(-0.336391 0.621586 -0.15194)
(-0.20987 0.567758 -0.974059)
(0.124253 0.703825 -1.87172)
(0.0836357 0.554584 -1.51518)
(-0.28407 0.47884 -0.33774)
(0.517271 0.862134 -0.333542)
(1.38785 0.713841 -0.73973)
(0.820251 0.615541 -0.359624)
(-0.0256376 0.0286447 -0.119844)
(0.898307 -0.188367 -0.330411)
(1.3154 -0.515496 -0.411451)
(0.570789 -0.56616 -0.252447)
(0.470275 -0.305139 -0.0225932)
(0.131373 -0.260759 0.0091861)
(0.0392351 -0.289066 0.0227488)
(-0.0717084 -0.366098 0.00134202)
(-0.108301 -0.432781 -0.011382)
(-0.158134 -0.503845 -0.0312409)
(-0.176233 -0.589618 -0.0387659)
(-0.203081 -0.690154 -0.0476196)
(-0.215712 -0.842672 -0.0494559)
(-0.238009 -1.06022 -0.0509079)
(-0.243021 -1.42095 -0.0670252)
(-0.26967 -1.98075 -0.096575)
(-0.355998 -2.77497 -0.115361)
(-0.427974 -3.55562 -0.122759)
(-0.408533 -3.90091 -0.108715)
(-0.209818 -3.00904 -0.0746053)
(0.0548686 -0.656165 -0.0318799)
(-0.0168498 0.75953 -0.13126)
(-0.0146339 1.59294 -0.240711)
(-0.0376795 2.02138 -0.289448)
(-0.0834665 2.16678 -0.27468)
(-0.134006 2.16349 -0.213716)
(-0.178412 2.02536 -0.136455)
(-0.195979 1.81976 -0.0261361)
(-0.221447 1.60764 0.051018)
(-0.25632 1.42326 0.0903915)
(-0.287707 1.2595 0.0754924)
(-0.288123 1.10873 -0.0638595)
(-0.292667 1.03825 -0.267003)
(-0.0758169 1.00444 -1.19999)
(0.181195 1.17282 -1.70361)
(-0.240971 0.678167 -1.25538)
(-1.44583 -0.20738 -0.333723)
(-0.911911 0.0825259 0.104915)
(0.433805 0.254906 -0.11766)
(1.40988 -0.161612 -0.0360742)
(0.556874 -0.34184 -0.214656)
(1.00952 -0.269027 -0.670011)
(1.92199 -0.483741 -0.842625)
(0.868609 -0.455405 -0.548598)
(0.743046 -0.23449 -0.116758)
(0.328012 -0.162897 -0.00840853)
(0.139542 -0.213281 0.0294305)
(-0.0117911 -0.291247 0.00396657)
(-0.0452475 -0.392528 -0.0265337)
(-0.0997819 -0.467725 -0.0447866)
(-0.116284 -0.547066 -0.056012)
(-0.139036 -0.619479 -0.0641361)
(-0.148198 -0.718993 -0.0655259)
(-0.180896 -0.856707 -0.0587411)
(-0.241237 -1.12817 -0.0541666)
(-0.330165 -1.60598 -0.0561033)
(-0.362964 -2.37812 -0.100609)
(-0.398 -3.29595 -0.123118)
(-0.41641 -3.88593 -0.115996)
(-0.262116 -3.27611 -0.0865601)
(0.0072559 -0.98238 -0.0428084)
(-0.0331326 0.753895 -0.111211)
(-0.0264925 1.65511 -0.22888)
(-0.0112641 2.12517 -0.283857)
(-0.0384019 2.29633 -0.275839)
(-0.0601437 2.2697 -0.212924)
(-0.0892355 2.12517 -0.125169)
(-0.112143 1.91365 -0.0194598)
(-0.136827 1.70967 0.0624236)
(-0.168402 1.53702 0.0978267)
(-0.20114 1.40862 0.102819)
(-0.172282 1.30689 0.00712738)
(-0.0905679 1.21451 -0.102438)
(0.349625 1.17718 -0.874066)
(0.641181 1.17427 -1.15407)
(0.327297 0.499718 0.0255854)
(-1.93415 -0.508378 0.971843)
(-2.51815 -0.56845 0.576671)
(-1.0812 -0.401849 0.467591)
(1.13689 -0.797695 1.0678)
(0.969231 -0.613227 1.02508)
(0.877567 -0.442416 -0.204894)
(1.89217 -0.221515 -1.02522)
(1.03131 -0.0962011 -0.805058)
(0.965749 -0.0520738 -0.283507)
(0.545235 -0.0213169 -0.0416443)
(0.233112 -0.14264 0.0330816)
(0.0410693 -0.225475 0.0225848)
(-0.00636328 -0.343431 -0.0181915)
(-0.0426555 -0.427779 -0.0503286)
(-0.0578417 -0.513145 -0.0657644)
(-0.0811245 -0.582858 -0.0745095)
(-0.0867708 -0.674458 -0.0755158)
(-0.104979 -0.783127 -0.0720725)
(-0.123707 -0.990978 -0.0733293)
(-0.223286 -1.34066 -0.0674911)
(-0.364996 -1.98573 -0.0692963)
(-0.438983 -2.87382 -0.106044)
(-0.460983 -3.61332 -0.106235)
(-0.363249 -3.26999 -0.0843833)
(-0.0789006 -1.05718 -0.0409969)
(-0.0162801 0.733927 -0.108703)
(-0.000206801 1.64665 -0.225356)
(0.0187192 2.13081 -0.276928)
(0.0108319 2.32205 -0.274098)
(0.0050405 2.3077 -0.208993)
(-0.0152487 2.16223 -0.117551)
(-0.0352312 1.95858 -0.0051778)
(-0.0582282 1.76493 0.0885694)
(-0.0797131 1.60629 0.143867)
(-0.0984848 1.488 0.174419)
(-0.10283 1.40601 0.155131)
(0.0189432 1.26663 0.185162)
(0.553014 1.05784 -0.539252)
(1.01806 0.442798 -0.881978)
(0.640724 -0.0669093 1.67067)
(-1.99733 -0.382231 3.27932)
(-3.2919 -0.384134 1.27556)
(-2.3667 -0.574699 0.0347856)
(-0.0308807 -0.729266 1.10083)
(1.23551 -0.393879 2.40771)
(0.850379 -0.319895 0.977436)
(1.02714 0.408252 -0.672752)
(0.797472 0.48475 -0.593139)
(0.961941 0.281978 -0.25368)
(0.720823 0.139734 -0.0774619)
(0.286808 -0.0916995 0.0201943)
(0.0799473 -0.19244 0.0142723)
(0.0264126 -0.306535 -0.0213512)
(-0.00633977 -0.396352 -0.0514897)
(-0.0130244 -0.483893 -0.0713674)
(-0.0307386 -0.54882 -0.0824224)
(-0.0323584 -0.631722 -0.0866131)
(-0.0525994 -0.72573 -0.0858181)
(-0.0684591 -0.908747 -0.0841688)
(-0.138232 -1.21909 -0.0763612)
(-0.252246 -1.76767 -0.0862824)
(-0.368701 -2.53241 -0.100838)
(-0.43787 -3.32153 -0.105122)
(-0.368885 -3.18271 -0.0832231)
(-0.120643 -1.1175 -0.0427254)
(-0.00868802 0.701661 -0.0947504)
(0.0224706 1.58834 -0.201606)
(0.0543878 2.09046 -0.257664)
(0.0587768 2.30408 -0.257627)
(0.0596726 2.30546 -0.200805)
(0.0462 2.17208 -0.107032)
(0.0331244 1.97484 0.00681086)
(0.0196311 1.7848 0.118969)
(0.00592303 1.61991 0.200679)
(-0.00217543 1.49303 0.272652)
(-0.023368 1.36726 0.367463)
(-0.0733495 1.24862 0.443136)
(0.264573 0.839081 -0.233861)
(0.738408 0.0197639 -0.917065)
(-0.470514 0.0711437 2.32185)
(-2.78531 0.636885 4.69305)
(-3.24374 0.767168 2.15202)
(-2.41344 0.301278 -0.482171)
(-0.71591 0.163857 -0.148937)
(1.03008 0.734035 1.85647)
(0.757617 0.996286 1.03572)
(0.301287 1.44809 -0.806664)
(0.496259 1.17385 -0.434438)
(0.715045 0.580402 0.116094)
(0.567882 0.199459 0.0490851)
(0.246247 -0.00816916 -0.0013634)
(0.107822 -0.123403 -0.00804104)
(0.0553881 -0.257457 -0.0281792)
(0.0353854 -0.365435 -0.055285)
(0.0369614 -0.460019 -0.0754921)
(0.0238088 -0.53005 -0.0876929)
(0.024948 -0.612655 -0.0902521)
(0.00636147 -0.697768 -0.0879274)
(-0.00367289 -0.854895 -0.0837595)
(-0.057171 -1.1276 -0.0930455)
(-0.149172 -1.63779 -0.095699)
(-0.279891 -2.3651 -0.106134)
(-0.386148 -3.19252 -0.0999597)
(-0.36178 -3.22795 -0.0794106)
(-0.141002 -1.34198 -0.0435972)
(-0.00232383 0.649567 -0.0809088)
(0.0430628 1.50785 -0.181703)
(0.0885168 2.0264 -0.237624)
(0.103778 2.26016 -0.240971)
(0.111961 2.28003 -0.189108)
(0.102963 2.16094 -0.0953129)
(0.0941349 1.97331 0.0182317)
(0.0795754 1.77624 0.137555)
(0.0721461 1.5967 0.236179)
(0.0465516 1.43875 0.320775)
(0.00438294 1.27007 0.451948)
(-0.270522 1.10011 0.498422)
(-0.261916 0.782596 -0.131974)
(-0.141655 0.516606 -1.14378)
(-1.87897 0.855975 1.60608)
(-3.72765 1.88242 4.98883)
(-3.65929 2.46541 4.23176)
(-2.5362 1.64415 0.621941)
(-1.028 1.03817 -0.433419)
(0.170591 2.22277 0.860583)
(0.21566 2.87036 0.446831)
(0.0939497 2.21794 -0.91998)
(0.0664928 1.11088 -0.388971)
(-0.177629 0.411675 0.453567)
(-0.191727 0.208332 0.330735)
(-0.0537384 0.139957 0.105927)
(-0.0188724 -0.0156933 0.0348612)
(0.0159954 -0.198189 -0.00432057)
(0.0361912 -0.333013 -0.0526357)
(0.0598656 -0.439671 -0.0826063)
(0.0552037 -0.509251 -0.0990389)
(0.0614978 -0.590352 -0.103495)
(0.0426946 -0.662993 -0.100406)
(0.029196 -0.80709 -0.0949519)
(-0.0209883 -1.04019 -0.0992063)
(-0.0779846 -1.54384 -0.118338)
(-0.201442 -2.28152 -0.118527)
(-0.318398 -3.18675 -0.110573)
(-0.334312 -3.36373 -0.0836175)
(-0.138323 -1.5766 -0.0482913)
(0.000862946 0.593347 -0.0673878)
(0.0571203 1.41646 -0.160541)
(0.115569 1.95218 -0.217821)
(0.14227 2.20999 -0.225065)
(0.157071 2.25029 -0.180038)
(0.153532 2.14353 -0.0904804)
(0.143899 1.96361 0.0193261)
(0.127648 1.75712 0.138046)
(0.113818 1.56587 0.238716)
(0.0745151 1.37831 0.315941)
(0.00510044 1.20046 0.401742)
(-0.337981 1.01495 0.384927)
(-0.594467 0.930866 -0.198077)
(-0.611105 1.09732 -1.14668)
(-1.79704 1.30746 0.367591)
(-3.72111 1.9966 4.14988)
(-4.21592 3.20159 5.53436)
(-3.23733 3.01292 2.47913)
(-2.0772 2.55505 1.05307)
(-1.22411 3.67267 1.49307)
(-0.566949 4.21922 0.522644)
(-0.0435788 2.62698 -0.638367)
(-0.355997 0.857733 -0.0900481)
(-0.905053 0.114365 0.668449)
(-0.812014 0.0745441 0.546339)
(-0.36903 0.0728514 0.265399)
(-0.149573 -0.036857 0.153139)
(-0.0362004 -0.209684 0.0474477)
(0.0340378 -0.327319 -0.0380639)
(0.0912044 -0.434193 -0.0804078)
(0.102963 -0.502206 -0.102001)
(0.11956 -0.585451 -0.106872)
(0.102025 -0.656216 -0.103836)
(0.0977586 -0.79463 -0.0991775)
(0.0300992 -1.00553 -0.0969068)
(-0.0248775 -1.49293 -0.117526)
(-0.138456 -2.27135 -0.129298)
(-0.262767 -3.28674 -0.118165)
(-0.316224 -3.6356 -0.089423)
(-0.137689 -1.90432 -0.047497)
(0.00349264 0.52603 -0.052881)
(0.0678997 1.30678 -0.139526)
(0.137728 1.85604 -0.197701)
(0.174553 2.14028 -0.20999)
(0.195741 2.20356 -0.17256)
(0.196102 2.11337 -0.0905526)
(0.183848 1.94159 0.0134228)
(0.162069 1.73853 0.123105)
(0.141896 1.54084 0.215159)
(0.0930807 1.35132 0.275837)
(0.0293406 1.17571 0.305086)
(-0.245597 1.01725 0.26873)
(-0.54579 1.04519 -0.153059)
(-0.624937 1.16581 -0.874352)
(-1.07163 1.39875 -0.587342)
(-2.82197 1.90204 2.20469)
(-4.05948 3.071 4.13315)
(-3.3209 3.75635 2.95977)
(-2.73296 4.0931 2.58405)
(-2.16418 4.42795 2.6242)
(-0.808442 3.81404 1.2719)
(0.400297 2.31005 0.187248)
(0.316931 0.895066 0.616633)
(-0.36645 0.0200595 0.701378)
(-0.528242 -0.276638 0.413298)
(-0.261814 -0.265206 0.223058)
(-0.111929 -0.267709 0.18675)
(-0.0197902 -0.333571 0.0949162)
(0.0579165 -0.398152 -0.0155471)
(0.123328 -0.484097 -0.0866637)
(0.139527 -0.562509 -0.121529)
(0.152442 -0.672912 -0.130693)
(0.127635 -0.765775 -0.126477)
(0.129606 -0.924262 -0.127552)
(0.0659944 -1.14156 -0.128948)
(0.00820203 -1.60697 -0.134054)
(-0.106253 -2.40122 -0.162956)
(-0.217444 -3.53756 -0.148239)
(-0.279486 -4.09464 -0.119378)
(-0.121858 -2.50092 -0.0700786)
(0.00971271 0.466751 -0.0444764)
(0.080578 1.19885 -0.122098)
(0.155191 1.76024 -0.1806)
(0.19997 2.07435 -0.198048)
(0.228309 2.1654 -0.169027)
(0.233174 2.09676 -0.0963498)
(0.222978 1.93758 0.00055672)
(0.199731 1.74507 0.098414)
(0.175844 1.55174 0.180167)
(0.126822 1.36856 0.22837)
(0.0646462 1.20612 0.228268)
(-0.112855 1.04508 0.188493)
(-0.397211 1.05729 -0.098111)
(-0.558439 1.0798 -0.693741)
(-0.642435 1.26674 -0.825517)
(-1.93166 1.62979 0.715837)
(-3.235 2.53283 1.91447)
(-2.84587 3.37471 1.83531)
(-2.4457 3.94193 2.0291)
(-1.94084 3.76451 1.70296)
(-0.693485 2.14585 0.84791)
(0.467363 1.17641 0.319996)
(0.874459 0.747467 0.409348)
(0.473408 0.0819171 0.292433)
(0.0136972 -0.358284 0.155989)
(0.013999 -0.487808 0.111532)
(0.0576993 -0.464824 0.14262)
(0.1034 -0.432962 0.08667)
(0.136881 -0.437378 0.00686655)
(0.165741 -0.500867 -0.0798968)
(0.151315 -0.59092 -0.119217)
(0.15925 -0.722373 -0.133849)
(0.124408 -0.830203 -0.132398)
(0.119754 -0.990389 -0.11928)
(0.0747461 -1.18279 -0.138981)
(0.0266259 -1.64997 -0.13615)
(-0.0973393 -2.45003 -0.174362)
(-0.20628 -3.72279 -0.157913)
(-0.296152 -4.51692 -0.131719)
(-0.143837 -3.13366 -0.0803441)
(0.0131645 0.410315 -0.0332934)
(0.093602 1.0735 -0.101987)
(0.173862 1.63667 -0.162029)
(0.220412 1.97795 -0.185894)
(0.254722 2.09954 -0.165977)
(0.265404 2.05709 -0.103785)
(0.260198 1.91795 -0.0160521)
(0.239432 1.7407 0.0732063)
(0.214688 1.5596 0.148747)
(0.169837 1.38946 0.193286)
(0.10475 1.24466 0.187215)
(-0.0135715 1.10686 0.138283)
(-0.221208 1.07296 -0.0698881)
(-0.382174 1.11971 -0.542836)
(-0.373485 1.19614 -0.847872)
(-1.05611 1.19982 -0.16406)
(-1.97556 1.64816 0.530499)
(-1.97005 2.17685 0.559427)
(-1.59385 2.54523 0.376634)
(-0.971689 2.23342 -0.218322)
(-0.200175 0.97998 -0.856691)
(0.444346 0.476877 -0.907146)
(0.824024 0.46285 -0.385942)
(0.689848 0.0436966 -0.0185814)
(0.322478 -0.347524 0.114332)
(0.203213 -0.517332 0.102895)
(0.243427 -0.480293 0.109371)
(0.271557 -0.417692 0.0683587)
(0.242235 -0.412866 0.00357317)
(0.216843 -0.481068 -0.0559634)
(0.166837 -0.554315 -0.0922588)
(0.169608 -0.675851 -0.112717)
(0.144093 -0.771394 -0.121425)
(0.156868 -0.930015 -0.133383)
(0.0844102 -1.10697 -0.124331)
(0.0409091 -1.53459 -0.141272)
(-0.0841581 -2.32598 -0.175493)
(-0.198735 -3.69623 -0.163381)
(-0.315767 -4.72199 -0.136581)
(-0.17159 -3.60377 -0.0839465)
(0.00849648 0.368467 -0.0271954)
(0.0936406 0.969656 -0.08833)
(0.190128 1.51619 -0.142554)
(0.238428 1.89107 -0.174914)
(0.275629 2.04555 -0.164338)
(0.295905 2.03398 -0.112804)
(0.301573 1.91628 -0.0347256)
(0.289175 1.75457 0.0484992)
(0.270362 1.58402 0.122724)
(0.236635 1.4244 0.170927)
(0.184394 1.29531 0.176805)
(0.098857 1.19189 0.131657)
(-0.0250719 1.15376 0.00289083)
(-0.123707 1.21415 -0.283315)
(-0.104683 1.28535 -0.586119)
(-0.254695 1.18585 -0.50473)
(-0.589562 1.22085 -0.308364)
(-0.744919 1.4207 -0.331465)
(-0.572771 1.49883 -0.540509)
(-0.0351001 1.20009 -1.0869)
(0.534415 0.628017 -1.48757)
(0.960934 0.422389 -1.2903)
(1.12429 0.205468 -0.471316)
(0.836586 -0.149381 0.0756111)
(0.453315 -0.418124 0.16343)
(0.399241 -0.439785 0.0700601)
(0.451458 -0.369557 0.0521238)
(0.423632 -0.320263 0.0197028)
(0.323862 -0.356253 -0.00789752)
(0.284042 -0.433418 -0.0469874)
(0.222694 -0.4881 -0.0718578)
(0.212947 -0.595106 -0.0878137)
(0.157943 -0.675239 -0.102769)
(0.161153 -0.847034 -0.105512)
(0.118944 -1.0069 -0.134948)
(0.0692073 -1.42165 -0.121774)
(-0.0776191 -2.14457 -0.173887)
(-0.178672 -3.58094 -0.157313)
(-0.332151 -4.80553 -0.134169)
(-0.192951 -4.00143 -0.0823957)
(0.00813526 0.312962 -0.0206751)
(0.0870822 0.852638 -0.0778609)
(0.200154 1.36381 -0.124361)
(0.26134 1.7531 -0.160771)
(0.291588 1.94358 -0.161445)
(0.317401 1.96214 -0.121228)
(0.335081 1.87281 -0.0544527)
(0.334836 1.724 0.0248926)
(0.325243 1.56733 0.0982078)
(0.307972 1.41522 0.153549)
(0.278719 1.29432 0.177004)
(0.232166 1.20304 0.163426)
(0.170738 1.16912 0.0949979)
(0.12262 1.19744 -0.0509784)
(0.151548 1.25894 -0.231558)
(0.208671 1.20298 -0.391637)
(0.225748 1.09651 -0.436425)
(0.216244 1.09799 -0.493449)
(0.344171 0.979604 -0.551171)
(0.663057 0.717668 -0.632897)
(0.996973 0.496902 -0.711056)
(1.22214 0.358546 -0.516822)
(1.19738 0.0804866 -0.0957571)
(0.885436 -0.233245 0.165853)
(0.602409 -0.317424 0.0924347)
(0.612161 -0.263215 0.00669065)
(0.636097 -0.211291 -0.0192899)
(0.53876 -0.194644 -0.0236615)
(0.384172 -0.250953 -0.0222089)
(0.354513 -0.340002 -0.0338232)
(0.279736 -0.397912 -0.0475572)
(0.26349 -0.510779 -0.0625201)
(0.189832 -0.581908 -0.0764763)
(0.184855 -0.751189 -0.0927189)
(0.119055 -0.889317 -0.111378)
(0.104997 -1.3066 -0.135917)
(-0.047578 -1.95776 -0.157345)
(-0.154028 -3.42468 -0.15871)
(-0.338947 -4.8131 -0.129416)
(-0.216966 -4.35312 -0.0810672)
(0.00329939 0.277926 -0.0174113)
(0.0698395 0.770414 -0.0710387)
(0.186471 1.25276 -0.114281)
(0.274575 1.63516 -0.142246)
(0.31228 1.86188 -0.158067)
(0.337585 1.91262 -0.128651)
(0.366407 1.85038 -0.0738666)
(0.381642 1.70941 0.000892613)
(0.389381 1.56197 0.0694219)
(0.387863 1.40885 0.128914)
(0.380576 1.28216 0.166475)
(0.364494 1.1795 0.179691)
(0.343109 1.12035 0.16244)
(0.331717 1.09938 0.104401)
(0.347494 1.11402 0.0165038)
(0.401157 1.08386 -0.103216)
(0.487655 1.00558 -0.20547)
(0.587446 0.92349 -0.281948)
(0.751579 0.746336 -0.311726)
(0.932459 0.489252 -0.235471)
(1.12283 0.259024 -0.164207)
(1.29184 0.113863 -0.0210023)
(1.2315 -0.0665097 0.224252)
(0.989686 -0.199436 0.265683)
(0.784157 -0.160573 0.127826)
(0.779997 -0.111848 0.0412429)
(0.779774 -0.0903708 0.0184354)
(0.642134 -0.0992593 0.0182443)
(0.440047 -0.139868 0.0188739)
(0.414839 -0.228543 -0.00057209)
(0.336193 -0.292417 -0.0158311)
(0.320899 -0.411402 -0.0293404)
(0.225235 -0.476663 -0.0489986)
(0.219179 -0.648431 -0.0679644)
(0.124039 -0.770627 -0.0978071)
(0.137076 -1.16385 -0.124031)
(-0.021286 -1.78225 -0.151067)
(-0.120423 -3.24922 -0.150736)
(-0.35168 -4.78977 -0.124388)
(-0.241388 -4.70641 -0.0758983)
(0.0078264 0.227189 -0.0161049)
(0.0590387 0.668133 -0.0687591)
(0.159553 1.11162 -0.10748)
(0.268741 1.47011 -0.132705)
(0.328185 1.70159 -0.144489)
(0.351317 1.78941 -0.134912)
(0.375987 1.75655 -0.0916956)
(0.407709 1.63771 -0.029488)
(0.434325 1.49868 0.0367486)
(0.447476 1.35062 0.0946938)
(0.459067 1.22099 0.13995)
(0.46522 1.1073 0.168068)
(0.47008 1.02516 0.17744)
(0.48189 0.966421 0.163554)
(0.50596 0.928939 0.133645)
(0.544956 0.892782 0.0756661)
(0.606377 0.833807 0.0166211)
(0.672264 0.744194 -0.0265542)
(0.790517 0.60443 -0.0587871)
(0.915037 0.406014 -0.0450162)
(1.1219 0.193889 -0.00501371)
(1.32196 0.0608304 0.0764457)
(1.28759 -0.0933373 0.211858)
(1.14103 -0.171958 0.260023)
(0.978753 -0.126524 0.1604)
(0.949329 -0.076995 0.084597)
(0.914308 -0.0458071 0.0493598)
(0.754454 -0.053874 0.0486777)
(0.523315 -0.0730396 0.0523139)
(0.486235 -0.142209 0.0403795)
(0.391969 -0.199992 0.0174143)
(0.387195 -0.316419 -0.00181754)
(0.276135 -0.371905 -0.0225216)
(0.268066 -0.546788 -0.0479615)
(0.148461 -0.655793 -0.0798082)
(0.167162 -1.03789 -0.115052)
(-0.00160319 -1.61898 -0.142525)
(-0.0785825 -3.08888 -0.145499)
(-0.373743 -4.76185 -0.118201)
(-0.271278 -5.11566 -0.0711225)
(0.0048248 0.208311 -0.0167093)
(0.0280753 0.621821 -0.0687041)
(0.100395 1.04198 -0.106528)
(0.222939 1.39272 -0.128813)
(0.326047 1.60149 -0.136952)
(0.379766 1.70105 -0.132464)
(0.397684 1.69896 -0.110285)
(0.434899 1.59235 -0.0611014)
(0.479861 1.45896 -0.00116342)
(0.513293 1.31027 0.052448)
(0.54193 1.17797 0.0984643)
(0.563832 1.05426 0.134305)
(0.585317 0.953813 0.156799)
(0.607145 0.868264 0.165942)
(0.634341 0.795716 0.162768)
(0.662269 0.726765 0.145461)
(0.701465 0.65149 0.115353)
(0.749053 0.562835 0.0936834)
(0.846627 0.461212 0.077221)
(0.946433 0.318852 0.0976269)
(1.15097 0.177224 0.112104)
(1.35595 0.0754045 0.114341)
(1.33354 -0.0384018 0.14843)
(1.27202 -0.111974 0.169803)
(1.17378 -0.0889112 0.13346)
(1.14225 -0.0585662 0.0942434)
(1.07885 -0.0204186 0.0725015)
(0.892591 -0.0272712 0.0737684)
(0.629791 -0.0253061 0.0757975)
(0.584104 -0.0685466 0.0600894)
(0.468192 -0.0946241 0.0423486)
(0.477815 -0.2129 0.0192551)
(0.341504 -0.250911 -0.00438241)
(0.340526 -0.419504 -0.0282892)
(0.183482 -0.515188 -0.0653341)
(0.210775 -0.884576 -0.100251)
(0.017619 -1.4318 -0.135517)
(-0.0315195 -2.8919 -0.133862)
(-0.407719 -4.72538 -0.111427)
(-0.304069 -5.61086 -0.0633802)
(0.0144785 0.180351 -0.022008)
(0.0293464 0.529572 -0.0762664)
(0.0499295 0.940805 -0.108849)
(0.148073 1.24219 -0.130553)
(0.266618 1.4433 -0.139235)
(0.371747 1.51044 -0.128084)
(0.40106 1.54512 -0.123118)
(0.429027 1.45197 -0.0883083)
(0.493726 1.34656 -0.0444317)
(0.545092 1.20707 0.00769394)
(0.597665 1.08136 0.0502729)
(0.634885 0.961121 0.0872983)
(0.669898 0.858896 0.116076)
(0.700375 0.764378 0.137257)
(0.731064 0.680619 0.149534)
(0.757858 0.600156 0.151911)
(0.791259 0.524861 0.140837)
(0.825363 0.448205 0.121848)
(0.901323 0.362276 0.104763)
(0.995534 0.236682 0.108397)
(1.23396 0.13181 0.112743)
(1.4622 0.062431 0.115293)
(1.44391 -0.0113127 0.12659)
(1.41691 -0.0604389 0.135592)
(1.34106 -0.0459098 0.117548)
(1.31417 -0.0347631 0.0959922)
(1.23695 0.00875658 0.0763149)
(1.04311 -0.00263039 0.0845338)
(0.766542 0.0215931 0.0842769)
(0.735303 -0.0218011 0.0767116)
(0.576441 -0.0185719 0.0562948)
(0.587954 -0.108842 0.0351631)
(0.450403 -0.129424 0.00913915)
(0.456972 -0.300764 -0.0142342)
(0.274499 -0.372359 -0.0492133)
(0.297601 -0.750085 -0.0865764)
(0.0764771 -1.24271 -0.119033)
(0.0417886 -2.70463 -0.128099)
(-0.448032 -4.66789 -0.103796)
(-0.299142 -6.21475 -0.0573627)
(-0.0201798 0.158856 -0.0245986)
(-0.0285143 0.559277 -0.0854888)
(-0.0305976 0.898788 -0.119133)
(0.0282424 1.24131 -0.135498)
(0.164913 1.39734 -0.145989)
(0.338216 1.41951 -0.136377)
(0.414546 1.43676 -0.132735)
(0.439766 1.34845 -0.115124)
(0.521533 1.25094 -0.0823849)
(0.587975 1.13076 -0.0466434)
(0.662075 1.01039 -0.00591811)
(0.719055 0.892186 0.0296065)
(0.768389 0.790973 0.0582397)
(0.806129 0.696437 0.0840974)
(0.841619 0.612489 0.102503)
(0.871651 0.530641 0.115282)
(0.906563 0.459971 0.112805)
(0.938612 0.38984 0.108167)
(0.999833 0.323604 0.104619)
(1.09008 0.219354 0.110947)
(1.34495 0.148537 0.109305)
(1.58465 0.091576 0.106156)
(1.57014 0.0317066 0.10815)
(1.58174 -0.00898554 0.104758)
(1.52688 -0.00527347 0.0984956)
(1.51407 -0.00744279 0.0879579)
(1.42646 0.0552973 0.072738)
(1.23265 0.0413553 0.0781131)
(0.932233 0.089578 0.0783625)
(0.90312 0.0411473 0.0701783)
(0.755895 0.0583673 0.0552037)
(0.78934 -0.0149303 0.0373232)
(0.602688 -0.0220477 0.0137089)
(0.64327 -0.169644 -0.00701584)
(0.411243 -0.21538 -0.0392831)
(0.460936 -0.554446 -0.0719299)
(0.168342 -0.979311 -0.105513)
(0.225226 -2.37511 -0.114203)
(-0.415638 -4.56924 -0.0999352)
(-0.23905 -6.80895 -0.0527732)
(0.0490547 0.298402 -0.0397792)
(-0.00192597 0.496176 -0.0989923)
(-0.0995539 0.783364 -0.130736)
(-0.0431047 0.992243 -0.145985)
(-0.00765861 1.2037 -0.1556)
(0.200005 1.18617 -0.147349)
(0.353877 1.20404 -0.14465)
(0.40571 1.12695 -0.139877)
(0.512546 1.05219 -0.117451)
(0.601908 0.959929 -0.0951709)
(0.695113 0.867864 -0.0675317)
(0.771193 0.772236 -0.0390898)
(0.838043 0.687591 -0.0122413)
(0.889011 0.609158 0.0113873)
(0.933563 0.539673 0.0306844)
(0.971567 0.468852 0.0458117)
(1.01287 0.405205 0.0518891)
(1.0503 0.339469 0.0558252)
(1.10905 0.281168 0.0587864)
(1.2126 0.178976 0.0661445)
(1.49683 0.126278 0.0658078)
(1.75155 0.0761317 0.0684956)
(1.74549 0.0288067 0.0682764)
(1.7752 -0.00811277 0.0689538)
(1.72591 0.0135072 0.0618789)
(1.75509 0.00145772 0.0532465)
(1.66585 0.0802252 0.0450895)
(1.49555 0.0689733 0.0520876)
(1.18299 0.135965 0.0544924)
(1.18234 0.105626 0.0508988)
(1.02247 0.145378 0.0383189)
(1.09483 0.0538203 0.0264688)
(0.907752 0.0558547 0.00771874)
(1.00564 -0.060542 -0.00898554)
(0.748241 -0.133613 -0.0328988)
(0.85574 -0.416783 -0.0586563)
(0.496743 -0.807201 -0.0878905)
(0.598345 -2.01059 -0.102706)
(-0.155805 -4.35434 -0.0899328)
(0.0674753 -7.32762 -0.0507693)
(-0.223655 0.0757226 -0.0500245)
(-0.29771 0.70436 -0.123837)
(-0.286398 0.881682 -0.148999)
(-0.244162 1.03013 -0.15977)
(-0.117507 1.05568 -0.172111)
(0.0716265 1.06875 -0.162599)
(0.268996 1.00448 -0.165811)
(0.36062 0.944038 -0.166852)
(0.499317 0.872791 -0.156105)
(0.609857 0.804686 -0.145407)
(0.728544 0.734997 -0.128008)
(0.82775 0.665863 -0.108903)
(0.918035 0.602351 -0.0899461)
(0.990288 0.5424 -0.0714562)
(1.05041 0.487925 -0.0559993)
(1.10279 0.431483 -0.0409186)
(1.15794 0.371574 -0.0295923)
(1.21828 0.311502 -0.0194536)
(1.29335 0.271439 -0.0124905)
(1.4439 0.18303 -0.00356455)
(1.7842 0.153383 -0.00298404)
(2.09637 0.102881 0.00210936)
(2.12007 0.063687 0.00483804)
(2.22027 0.0290003 0.00734152)
(2.19382 0.0359239 0.00453901)
(2.25625 0.0138427 -0.000991947)
(2.16004 0.10062 -0.00550308)
(2.03298 0.0750692 0.00247164)
(1.70005 0.159404 0.0056871)
(1.76747 0.138878 0.0048175)
(1.60095 0.198981 -0.000260673)
(1.75162 0.120519 -0.00640734)
(1.54539 0.124719 -0.0148255)
(1.71572 0.00287973 -0.025617)
(1.3799 -0.0583415 -0.0394866)
(1.56261 -0.27975 -0.0550514)
(1.1039 -0.529598 -0.0747642)
(1.28444 -1.45197 -0.0911764)
(0.433529 -3.84346 -0.0876389)
(0.517413 -7.19599 -0.0474426)
(-0.733303 0.794039 -0.124257)
(-0.605493 0.397862 -0.185347)
(-0.747027 0.580118 -0.180367)
(-0.456062 0.610175 -0.181333)
(-0.307471 0.622385 -0.185409)
(0.00876341 0.676781 -0.18315)
(0.245349 0.641668 -0.182271)
(0.452401 0.617451 -0.192808)
(0.660192 0.578498 -0.191142)
(0.854889 0.539633 -0.190715)
(1.04847 0.49534 -0.181977)
(1.22713 0.452768 -0.171062)
(1.38794 0.414869 -0.157878)
(1.52999 0.383317 -0.143881)
(1.64772 0.360733 -0.132169)
(1.75819 0.330108 -0.120817)
(1.86978 0.284989 -0.110578)
(2.024 0.24939 -0.101565)
(2.20169 0.221953 -0.0973995)
(2.4889 0.126813 -0.0859048)
(2.90881 0.0969098 -0.0845285)
(3.33785 0.0465792 -0.0779516)
(3.41326 0.00501078 -0.0721085)
(3.55486 -0.0347948 -0.0642375)
(3.49257 -0.0189836 -0.0601996)
(3.62057 -0.0233937 -0.0591391)
(3.47291 0.0599052 -0.0599283)
(3.43221 0.0558219 -0.0491732)
(3.04694 0.13445 -0.0440536)
(3.22527 0.143967 -0.0426158)
(3.01953 0.193033 -0.0442901)
(3.33886 0.133414 -0.0462551)
(3.05344 0.0967691 -0.0494916)
(3.38526 0.012208 -0.0530859)
(2.9027 -0.0561459 -0.0570734)
(3.24384 -0.232201 -0.0620243)
(2.56971 -0.518661 -0.0688751)
(2.92066 -1.12959 -0.0761521)
(1.92269 -3.13577 -0.0747642)
(1.35226 -6.07602 -0.044232)
(1.15906 1.47954 -0.0502067)
(1.72214 0.72719 -0.0746992)
(2.45979 0.568014 -0.0800017)
(2.87545 0.35112 -0.0807366)
(3.15632 0.28006 -0.0818757)
(3.40211 0.228811 -0.0823049)
(3.63348 0.215452 -0.0866509)
(3.83709 0.194745 -0.10304)
(4.04485 0.184105 -0.115156)
(4.26343 0.170266 -0.123718)
(4.47879 0.156739 -0.124626)
(4.69319 0.142973 -0.12137)
(4.8743 0.131153 -0.116266)
(5.04075 0.120859 -0.108739)
(5.16185 0.115224 -0.103049)
(5.29048 0.110254 -0.0972416)
(5.42259 0.0872207 -0.0911925)
(5.63518 0.0661259 -0.0841088)
(5.90095 0.080562 -0.0883136)
(6.35866 0.055132 -0.0841911)
(6.7764 0.0327393 -0.0859022)
(7.25184 0.0124796 -0.0869411)
(7.27413 -0.00625253 -0.0804591)
(7.3416 -0.0530095 -0.0719969)
(7.16274 -0.0376703 -0.066516)
(7.1792 -0.0532677 -0.0591971)
(6.83738 -0.0296019 -0.0601714)
(6.82443 -0.0148858 -0.0479397)
(6.34966 0.0197075 -0.0411838)
(6.6019 0.0387622 -0.04123)
(6.35888 0.0693685 -0.0437341)
(6.8056 0.0681382 -0.0448871)
(6.49875 0.0438381 -0.0462499)
(6.88948 0.0122124 -0.0479412)
(6.33971 -0.0151393 -0.0509938)
(6.56191 -0.106479 -0.0501402)
(5.68041 -0.258003 -0.0529762)
(5.70785 -0.58065 -0.0513689)
(4.28582 -1.13577 -0.0539678)
(2.79186 -2.52206 -0.0424951)
(0.000979107 -0.000205031 -0.00116844)
(0.0217878 -0.00303764 -0.00543789)
(0.051171 -0.0027885 -0.00863897)
(0.0715422 -0.000677075 -0.0111239)
(0.0818713 0.00169591 -0.012669)
(0.069041 -0.00189117 -0.0141671)
(0.0542764 0.00413881 -0.018216)
(0.04127 0.00254258 -0.0193269)
(0.0231021 0.0109858 -0.0234975)
(0.00437588 0.0150152 -0.0261009)
(-0.0314337 0.0154982 -0.0262905)
(-0.0848336 0.0109191 -0.0264486)
(-0.141902 0.00583569 -0.0272376)
(-0.216828 0.00444274 -0.026844)
(-0.287746 0.0113029 -0.0275694)
(-0.373336 0.02059 -0.0241388)
(-0.451927 0.0137143 -0.0201342)
(-0.551518 0.00639732 -0.016061)
(-0.605811 -0.0115299 -0.00844983)
(-0.7757 -0.0152875 -0.0012686)
(-0.736177 0.0210441 0.00128567)
(-0.546731 0.0238772 0.00241555)
(-0.5446 0.0327659 0.00223983)
(-0.535435 0.0357175 0.00337751)
(-0.522614 0.0281363 0.00268263)
(-0.464523 0.0258749 0.00332695)
(-0.398533 0.0203399 0.00164852)
(-0.293528 0.0104175 0.00153866)
(-0.178174 0.00162646 -0.00223425)
(-0.0482228 -0.013734 -0.00630426)
(0.0803097 0.0190076 -0.0122627)
(0.278691 0.00563924 -0.0149369)
(0.42334 0.0122925 -0.0226475)
(0.448243 0.044708 -0.027092)
(0.419971 0.0448996 -0.0306306)
(0.328292 0.0461399 -0.0343673)
(0.221035 0.0310249 -0.0355872)
(0.117723 0.018697 -0.0347758)
(0.0369544 0.0016434 -0.0252062)
(-0.0038712 -0.00918575 -0.0101303)
(0.00705947 -0.0123427 -0.00470063)
(0.0441481 -0.0268237 -0.0153308)
(0.0895393 -0.0255574 -0.0234669)
(0.120132 -0.0145429 -0.0303287)
(0.12668 -0.00611108 -0.0362741)
(0.10885 0.0027632 -0.0411638)
(0.079853 0.0125106 -0.0496495)
(0.0413844 0.0357262 -0.0532952)
(-0.0118234 0.0530433 -0.0632573)
(-0.0954515 0.0654682 -0.0623209)
(-0.217241 0.0815828 -0.0606287)
(-0.373102 0.104303 -0.0538434)
(-0.538477 0.129763 -0.0519185)
(-0.722018 0.156382 -0.0503237)
(-0.905959 0.183514 -0.0498621)
(-1.11899 0.178107 -0.047063)
(-1.3034 0.154925 -0.0442677)
(-1.48166 0.124086 -0.040491)
(-1.59783 0.0931652 -0.0337575)
(-1.74497 0.0813693 -0.0307002)
(-1.61611 0.117605 -0.0300859)
(-1.37071 0.104117 -0.0337193)
(-1.28187 0.0929952 -0.0424209)
(-1.18423 0.0578953 -0.0436981)
(-1.09088 0.0208874 -0.054107)
(-0.962756 -0.0237367 -0.0587103)
(-0.840106 -0.0692449 -0.0628017)
(-0.674766 -0.0998721 -0.0704066)
(-0.502325 -0.116722 -0.0779456)
(-0.279381 -0.131141 -0.0856673)
(-0.101136 -0.104424 -0.0961597)
(0.162709 -0.0430531 -0.0997157)
(0.45128 -0.0168842 -0.102399)
(0.580474 0.0425128 -0.0966318)
(0.613267 0.130337 -0.101826)
(0.558908 0.155264 -0.0970586)
(0.431891 0.157792 -0.093977)
(0.268273 0.126773 -0.0867297)
(0.109413 0.0809791 -0.0669745)
(0.0142478 0.0267461 -0.0281166)
(0.0102515 -0.028318 -0.00617952)
(0.0518144 -0.0553855 -0.0204973)
(0.0968951 -0.0499935 -0.0332245)
(0.116461 -0.0234487 -0.0436344)
(0.112892 0.00365495 -0.0517503)
(0.0746648 0.0303546 -0.0620002)
(0.0287581 0.0753014 -0.0736226)
(-0.0508899 0.126508 -0.0746723)
(-0.18541 0.1833 -0.0790845)
(-0.340934 0.231196 -0.0778736)
(-0.535523 0.283686 -0.0735835)
(-0.768831 0.340365 -0.0707243)
(-1.01642 0.39237 -0.0693774)
(-1.27207 0.417977 -0.069648)
(-1.52841 0.398587 -0.0699123)
(-1.77068 0.350828 -0.0697405)
(-1.95245 0.309513 -0.0675318)
(-2.11897 0.261612 -0.0653525)
(-2.22197 0.226157 -0.0618832)
(-2.31717 0.182795 -0.0610541)
(-2.124 0.175272 -0.0587135)
(-1.84985 0.137909 -0.059094)
(-1.70747 0.0757163 -0.0593333)
(-1.56323 -0.00360312 -0.0686984)
(-1.4697 -0.0908062 -0.0732824)
(-1.34261 -0.205112 -0.0688492)
(-1.19984 -0.296292 -0.0752938)
(-1.02446 -0.357902 -0.0802427)
(-0.86043 -0.382692 -0.0932877)
(-0.656601 -0.364754 -0.103647)
(-0.446563 -0.341868 -0.113062)
(-0.189817 -0.240938 -0.120691)
(0.0657378 -0.164668 -0.129373)
(0.317231 -0.0503393 -0.14025)
(0.46903 0.0758754 -0.135012)
(0.472058 0.190047 -0.138069)
(0.412889 0.232676 -0.130697)
(0.269964 0.230289 -0.120159)
(0.116836 0.175761 -0.0930199)
(0.0150226 0.0827767 -0.0389605)
(0.0125196 -0.045649 -0.00702986)
(0.0503559 -0.079804 -0.0254628)
(0.0816223 -0.0636196 -0.0430948)
(0.081479 -0.0214625 -0.0611224)
(0.0440128 0.0357009 -0.0724518)
(-0.0080115 0.109439 -0.0831735)
(-0.0910047 0.198072 -0.0916928)
(-0.230428 0.293787 -0.0933086)
(-0.430266 0.406627 -0.0910285)
(-0.679147 0.500724 -0.0847341)
(-0.948001 0.573116 -0.079556)
(-1.2299 0.625509 -0.0771907)
(-1.51114 0.631136 -0.0782242)
(-1.79794 0.586919 -0.0775608)
(-2.03847 0.522734 -0.0771738)
(-2.23312 0.462596 -0.0758032)
(-2.37578 0.405934 -0.0733206)
(-2.50422 0.340983 -0.0723316)
(-2.5748 0.292314 -0.0670212)
(-2.60059 0.213816 -0.0622872)
(-2.3584 0.177459 -0.0549264)
(-2.08077 0.10527 -0.0447098)
(-1.92247 0.00403771 -0.0504881)
(-1.81786 -0.123185 -0.0468861)
(-1.76323 -0.275583 -0.0418509)
(-1.65809 -0.426717 -0.046049)
(-1.53415 -0.555377 -0.0503212)
(-1.3645 -0.661758 -0.0533397)
(-1.19847 -0.72178 -0.0589457)
(-1.02789 -0.710907 -0.0709255)
(-0.861737 -0.636497 -0.0899023)
(-0.640787 -0.516512 -0.10577)
(-0.40024 -0.396439 -0.121131)
(-0.14733 -0.221506 -0.137465)
(0.109025 -0.058065 -0.156867)
(0.243591 0.138619 -0.159446)
(0.255197 0.242013 -0.156458)
(0.186482 0.281181 -0.141902)
(0.0773757 0.24442 -0.110351)
(0.00999706 0.125774 -0.046087)
(0.0122188 -0.0604302 -0.0082105)
(0.0388746 -0.0923883 -0.0308161)
(0.0411139 -0.0583948 -0.0567391)
(0.0101799 0.0158486 -0.0708122)
(-0.039061 0.12282 -0.0933392)
(-0.13124 0.252436 -0.10128)
(-0.266063 0.39137 -0.105485)
(-0.455578 0.539487 -0.0990394)
(-0.724069 0.681828 -0.0899084)
(-1.02607 0.785159 -0.0824388)
(-1.32915 0.829676 -0.0784563)
(-1.63989 0.808041 -0.0759052)
(-1.93062 0.746138 -0.0702674)
(-2.16461 0.668806 -0.0692215)
(-2.33496 0.601809 -0.0687887)
(-2.46568 0.531559 -0.0647844)
(-2.55063 0.46987 -0.0542109)
(-2.62696 0.395867 -0.0443628)
(-2.65879 0.33667 -0.0286993)
(-2.62766 0.231814 -0.0214445)
(-2.35938 0.170023 -0.0108219)
(-2.09095 0.0536046 0.00294983)
(-1.9676 -0.0724106 0.00327986)
(-1.91358 -0.256598 0.010239)
(-1.88225 -0.432388 0.00413393)
(-1.81537 -0.613496 -0.00205299)
(-1.73154 -0.787897 -0.0119666)
(-1.60224 -0.94413 -0.0195282)
(-1.45308 -1.05843 -0.0259933)
(-1.27712 -1.10659 -0.032779)
(-1.13164 -1.0624 -0.0445496)
(-0.994536 -0.913698 -0.0648444)
(-0.838331 -0.695552 -0.0884683)
(-0.576761 -0.474032 -0.111979)
(-0.259381 -0.230603 -0.139324)
(-0.030896 0.011818 -0.157641)
(0.0664101 0.181919 -0.164864)
(0.0688024 0.284174 -0.148739)
(0.0293017 0.267281 -0.114299)
(-0.00144957 0.13688 -0.0460063)
(0.00947699 -0.0744079 -0.0130783)
(0.0156794 -0.0887033 -0.0424473)
(-0.011827 -0.0244834 -0.075932)
(-0.0644945 0.115647 -0.100341)
(-0.152554 0.274828 -0.114252)
(-0.280438 0.458787 -0.119069)
(-0.454508 0.640582 -0.111934)
(-0.684425 0.81939 -0.0985644)
(-0.994959 0.944958 -0.0839106)
(-1.35766 0.963391 -0.0725879)
(-1.69995 0.923039 -0.0623792)
(-1.97276 0.84994 -0.0517439)
(-2.16959 0.777807 -0.0447897)
(-2.31865 0.708308 -0.0378731)
(-2.40765 0.634214 -0.0284119)
(-2.46287 0.55309 -0.0178911)
(-2.49019 0.479785 -0.0118955)
(-2.51327 0.395881 -0.00539193)
(-2.49942 0.321676 0.00904978)
(-2.41594 0.204559 0.0162519)
(-2.13199 0.134751 0.0337793)
(-1.87284 0.00539253 0.0508937)
(-1.80616 -0.154992 0.0639014)
(-1.78572 -0.332167 0.0643254)
(-1.78771 -0.505243 0.0585035)
(-1.76444 -0.702714 0.0458502)
(-1.73362 -0.910834 0.0311062)
(-1.66852 -1.11903 0.0152965)
(-1.58231 -1.30448 0.00135558)
(-1.45282 -1.42915 -0.00818634)
(-1.30814 -1.4745 -0.0178993)
(-1.15385 -1.38891 -0.0298443)
(-1.09509 -1.18994 -0.0502406)
(-0.960184 -0.812183 -0.0803051)
(-0.616188 -0.500343 -0.112246)
(-0.296895 -0.172146 -0.143187)
(-0.0825953 0.095786 -0.158203)
(-0.00142446 0.25205 -0.152643)
(-0.00685099 0.257054 -0.11784)
(-0.00231153 0.126709 -0.047732)
(0.0063128 -0.0745373 -0.0236903)
(-0.0114959 -0.0455793 -0.0656924)
(-0.0541927 0.0732041 -0.0977641)
(-0.138014 0.261607 -0.122112)
(-0.260519 0.473004 -0.131968)
(-0.421171 0.6931 -0.125763)
(-0.619509 0.89693 -0.110618)
(-0.905215 1.0335 -0.0904922)
(-1.31112 1.01618 -0.0674229)
(-1.66641 0.964971 -0.0516092)
(-1.90951 0.915868 -0.0369587)
(-2.08399 0.864361 -0.0215353)
(-2.19993 0.800131 -0.00356323)
(-2.26393 0.715958 0.00811165)
(-2.28857 0.629602 0.0156261)
(-2.28704 0.531848 0.0185648)
(-2.26221 0.446382 0.026517)
(-2.23201 0.361246 0.0339877)
(-2.1754 0.291689 0.0537814)
(-2.05368 0.181286 0.063459)
(-1.77229 0.12198 0.0911053)
(-1.57154 -0.010862 0.107983)
(-1.53717 -0.181454 0.115265)
(-1.53743 -0.340976 0.110259)
(-1.56207 -0.513189 0.099946)
(-1.57438 -0.711718 0.0860503)
(-1.59206 -0.930505 0.0687288)
(-1.59096 -1.16858 0.0533439)
(-1.5732 -1.40805 0.0330913)
(-1.52074 -1.61676 0.0180848)
(-1.42879 -1.75362 0.00304387)
(-1.2992 -1.7694 -0.00904524)
(-1.16846 -1.67224 -0.022446)
(-1.12449 -1.34249 -0.0418209)
(-0.913165 -0.879961 -0.0738959)
(-0.5046 -0.451439 -0.108019)
(-0.19642 -0.0693201 -0.144876)
(-0.0642977 0.152104 -0.142477)
(-0.0223763 0.208715 -0.111015)
(-0.00477388 0.0979306 -0.0431525)
(0.00887208 -0.0321032 -0.0334825)
(-0.020595 0.0440906 -0.083027)
(-0.100684 0.214602 -0.123421)
(-0.209112 0.441023 -0.145286)
(-0.358628 0.683006 -0.144845)
(-0.53521 0.90648 -0.130843)
(-0.812914 1.05382 -0.107997)
(-1.21112 1.04254 -0.0749763)
(-1.54722 0.983655 -0.0511359)
(-1.77727 0.976118 -0.0290828)
(-1.94848 0.944432 -0.00400029)
(-2.03312 0.877921 0.0257555)
(-2.07345 0.794661 0.0531903)
(-2.08023 0.693882 0.0665139)
(-2.05772 0.592007 0.0726747)
(-2.0143 0.488127 0.0696426)
(-1.95533 0.406687 0.070891)
(-1.89042 0.327972 0.0736029)
(-1.81185 0.271183 0.0927333)
(-1.66993 0.178976 0.100517)
(-1.4179 0.133493 0.136976)
(-1.25905 -0.0200632 0.146989)
(-1.24731 -0.166031 0.150632)
(-1.25656 -0.322694 0.142128)
(-1.28716 -0.484205 0.129809)
(-1.31833 -0.674168 0.113157)
(-1.36045 -0.887077 0.0946395)
(-1.40014 -1.12829 0.0755031)
(-1.44113 -1.38866 0.0558428)
(-1.45883 -1.65002 0.0357766)
(-1.45085 -1.87778 0.018996)
(-1.38883 -2.01394 0.00354217)
(-1.27756 -2.00831 -0.00934655)
(-1.19286 -1.84177 -0.0233373)
(-1.08402 -1.38517 -0.0441778)
(-0.74825 -0.827962 -0.0749492)
(-0.316959 -0.323951 -0.111526)
(-0.0802626 0.054704 -0.130813)
(-0.00966011 0.155686 -0.108899)
(0.00308749 0.0842183 -0.0453441)
(-0.00047217 0.00723958 -0.0484197)
(-0.0451997 0.129271 -0.106251)
(-0.132708 0.326721 -0.149537)
(-0.26775 0.573784 -0.16449)
(-0.441624 0.810491 -0.156269)
(-0.69998 1.00095 -0.135796)
(-1.06129 1.03652 -0.0984669)
(-1.37313 1.01761 -0.0619042)
(-1.61184 1.03864 -0.0280044)
(-1.77439 1.01881 0.00611753)
(-1.83979 0.95155 0.0531843)
(-1.8624 0.872906 0.0905085)
(-1.85682 0.770354 0.120071)
(-1.82879 0.665809 0.131666)
(-1.79065 0.561493 0.129469)
(-1.73218 0.455392 0.111666)
(-1.65547 0.369731 0.100096)
(-1.56566 0.297685 0.0928272)
(-1.46911 0.251851 0.113658)
(-1.31877 0.196324 0.129697)
(-1.11546 0.1514 0.182484)
(-1.00538 -0.0122441 0.17585)
(-0.997781 -0.145964 0.175107)
(-1.00803 -0.293735 0.161228)
(-1.03554 -0.443402 0.14623)
(-1.06958 -0.616727 0.128371)
(-1.11675 -0.813961 0.108765)
(-1.17116 -1.04258 0.0901136)
(-1.23567 -1.30453 0.0695123)
(-1.29845 -1.58625 0.0505298)
(-1.34779 -1.87096 0.0296337)
(-1.36244 -2.10502 0.0138753)
(-1.31997 -2.23333 -0.00162683)
(-1.2244 -2.18457 -0.0122713)
(-1.14087 -1.89232 -0.0257972)
(-0.916704 -1.29344 -0.0451431)
(-0.44166 -0.633489 -0.0764501)
(-0.119647 -0.108447 -0.106944)
(-0.0291146 0.0928528 -0.0935757)
(0.00860005 0.0717357 -0.0398684)
(-0.00572506 0.052209 -0.057347)
(-0.0682926 0.231645 -0.125003)
(-0.178873 0.448634 -0.167233)
(-0.325796 0.683324 -0.176254)
(-0.532511 0.900017 -0.161996)
(-0.843649 1.01917 -0.132914)
(-1.16426 1.05449 -0.0896126)
(-1.41446 1.09663 -0.0442944)
(-1.58062 1.08707 0.00298918)
(-1.63927 1.02503 0.0615965)
(-1.65438 0.941964 0.112996)
(-1.63418 0.839985 0.159803)
(-1.60475 0.742507 0.191976)
(-1.57495 0.640791 0.19821)
(-1.54203 0.541246 0.183507)
(-1.48323 0.429538 0.141614)
(-1.39327 0.349755 0.110189)
(-1.27784 0.279033 0.0951555)
(-1.15635 0.250006 0.120664)
(-1.01831 0.240712 0.163604)
(-0.887149 0.182728 0.220678)
(-0.819153 0.00106729 0.199409)
(-0.802982 -0.123373 0.189873)
(-0.813064 -0.265223 0.171804)
(-0.830405 -0.403887 0.15332)
(-0.859713 -0.559518 0.134301)
(-0.901062 -0.737322 0.113635)
(-0.953855 -0.943919 0.0945724)
(-1.02306 -1.18846 0.0745306)
(-1.10132 -1.46973 0.0553747)
(-1.18405 -1.77863 0.0358064)
(-1.24975 -2.08137 0.0181078)
(-1.2739 -2.32102 0.00204855)
(-1.23579 -2.41742 -0.00966998)
(-1.13936 -2.28631 -0.0206175)
(-1.00056 -1.82095 -0.0306216)
(-0.637414 -1.0587 -0.0524816)
(-0.202063 -0.392634 -0.0760279)
(-0.0367946 0.0304371 -0.0876442)
(0.0111991 0.0565606 -0.0404369)
(-0.00981879 0.112516 -0.0683716)
(-0.086275 0.348355 -0.141081)
(-0.212426 0.583802 -0.180218)
(-0.373736 0.816718 -0.182003)
(-0.626232 1.00273 -0.162557)
(-0.934166 1.08483 -0.125796)
(-1.19843 1.13966 -0.0794162)
(-1.3703 1.15037 -0.0209915)
(-1.44525 1.09765 0.0455084)
(-1.45271 1.00663 0.10934)
(-1.42288 0.903428 0.177361)
(-1.37998 0.810402 0.231856)
(-1.35399 0.723013 0.268984)
(-1.33452 0.638012 0.272575)
(-1.32626 0.538693 0.244105)
(-1.27391 0.428722 0.178021)
(-1.17351 0.326708 0.129352)
(-1.03763 0.246469 0.100115)
(-0.876685 0.226434 0.148407)
(-0.770974 0.285975 0.226546)
(-0.74254 0.225085 0.281993)
(-0.709958 0.010199 0.222292)
(-0.665977 -0.118242 0.201481)
(-0.673121 -0.248221 0.178836)
(-0.676843 -0.379437 0.155843)
(-0.696204 -0.515586 0.13603)
(-0.726286 -0.674248 0.113481)
(-0.768455 -0.854735 0.0943759)
(-0.828668 -1.07495 0.0741153)
(-0.903462 -1.33561 0.0559547)
(-0.993856 -1.64417 0.0368581)
(-1.08497 -1.97925 0.0193622)
(-1.15627 -2.30148 0.00333091)
(-1.17244 -2.52832 -0.00848588)
(-1.11604 -2.55447 -0.0176662)
(-0.987842 -2.27267 -0.0245137)
(-0.755645 -1.56673 -0.0323782)
(-0.298527 -0.685828 -0.0536876)
(-0.0362063 -0.0843507 -0.0619968)
(-0.0147874 0.039323 -0.0326956)
(-0.0110408 0.178969 -0.0790447)
(-0.0959756 0.472755 -0.156409)
(-0.233166 0.723121 -0.192352)
(-0.422436 0.95063 -0.189933)
(-0.696664 1.09653 -0.16501)
(-0.961886 1.17644 -0.121335)
(-1.14977 1.20769 -0.0650084)
(-1.24813 1.17503 0.00573948)
(-1.26817 1.07652 0.0799469)
(-1.23084 0.962488 0.161262)
(-1.17595 0.861045 0.24039)
(-1.13037 0.775824 0.307949)
(-1.11167 0.708349 0.358745)
(-1.12306 0.630967 0.366683)
(-1.1484 0.539175 0.334764)
(-1.11425 0.374119 0.232853)
(-0.993593 0.253375 0.136245)
(-0.823306 0.105624 0.0565891)
(-0.681911 0.127487 0.11565)
(-0.659571 0.339336 0.306564)
(-0.723946 0.313838 0.374743)
(-0.667656 0.0116624 0.235119)
(-0.573547 -0.135997 0.195239)
(-0.571042 -0.244518 0.17921)
(-0.563956 -0.369806 0.152052)
(-0.57267 -0.486811 0.133528)
(-0.592844 -0.628139 0.108937)
(-0.621807 -0.783343 0.089282)
(-0.669198 -0.975716 0.0683621)
(-0.731195 -1.20853 0.0503221)
(-0.81491 -1.49762 0.0320369)
(-0.911151 -1.83832 0.0153519)
(-1.00589 -2.20679 -0.000941658)
(-1.06814 -2.53825 -0.0129891)
(-1.06473 -2.72444 -0.0224727)
(-0.962897 -2.61674 -0.0264586)
(-0.772715 -2.0805 -0.0300773)
(-0.412246 -1.08518 -0.038788)
(-0.0790924 -0.252896 -0.0586924)
(-0.0161063 0.0164508 -0.0334595)
(-0.00945301 0.242927 -0.0869097)
(-0.096619 0.591302 -0.166936)
(-0.244117 0.856762 -0.20066)
(-0.465076 1.06182 -0.197805)
(-0.721631 1.19267 -0.164008)
(-0.927647 1.26494 -0.115664)
(-1.05572 1.25678 -0.0435486)
(-1.09366 1.1654 0.0302099)
(-1.07406 1.03689 0.117402)
(-1.0078 0.911586 0.206742)
(-0.941217 0.810022 0.300222)
(-0.889654 0.739805 0.386415)
(-0.891062 0.68353 0.460659)
(-0.930571 0.625346 0.484931)
(-1.01596 0.492417 0.399599)
(-0.911912 0.321484 0.127008)
(-0.709228 0.170098 -0.137758)
(-0.656763 0.131379 -0.215926)
(-0.73444 0.212993 0.0500529)
(-0.833019 0.508186 0.480036)
(-0.814754 0.410559 0.511703)
(-0.647677 -0.0299943 0.226027)
(-0.516822 -0.186279 0.170675)
(-0.490943 -0.257213 0.177478)
(-0.4802 -0.375825 0.14683)
(-0.478135 -0.473739 0.131084)
(-0.491848 -0.600836 0.104089)
(-0.508065 -0.733858 0.083525)
(-0.542361 -0.900533 0.0611758)
(-0.587366 -1.10163 0.0429504)
(-0.656146 -1.36149 0.0251573)
(-0.741979 -1.68543 0.00931271)
(-0.841549 -2.06932 -0.00592855)
(-0.929334 -2.46906 -0.018374)
(-0.971206 -2.78766 -0.0267884)
(-0.91929 -2.8604 -0.0300796)
(-0.750723 -2.50892 -0.0270627)
(-0.454601 -1.58128 -0.0286484)
(-0.101545 -0.486716 -0.0322982)
(-0.0157288 -0.0316115 -0.0248179)
(-0.00656268 0.303731 -0.0949432)
(-0.087693 0.708085 -0.178097)
(-0.25606 0.979823 -0.212644)
(-0.477335 1.16662 -0.208943)
(-0.693818 1.29989 -0.165402)
(-0.851516 1.33919 -0.112515)
(-0.931834 1.28335 -0.0278329)
(-0.934014 1.14408 0.050015)
(-0.884062 0.9898 0.144891)
(-0.801301 0.850921 0.241948)
(-0.719226 0.74911 0.350865)
(-0.666777 0.680189 0.463718)
(-0.675022 0.639507 0.573924)
(-0.77511 0.595216 0.556431)
(-0.804124 0.572828 0.224301)
(-0.602491 0.5091 -0.421783)
(-0.436104 0.533726 -0.64718)
(-0.553398 0.532506 -0.337216)
(-0.822311 0.374899 0.195817)
(-0.892101 0.538616 0.707152)
(-0.698473 0.379454 0.601344)
(-0.510593 -0.121746 0.185994)
(-0.447402 -0.253612 0.137544)
(-0.403322 -0.287552 0.169707)
(-0.407241 -0.392092 0.140788)
(-0.398733 -0.473083 0.127145)
(-0.413499 -0.586873 0.0979765)
(-0.420789 -0.701978 0.0756675)
(-0.445634 -0.846447 0.0514837)
(-0.475211 -1.0193 0.032028)
(-0.527537 -1.24682 0.014318)
(-0.597799 -1.54378 -0.00173704)
(-0.690261 -1.92115 -0.0163828)
(-0.789541 -2.35827 -0.0297163)
(-0.860817 -2.77654 -0.0378852)
(-0.859933 -3.01342 -0.039383)
(-0.73344 -2.85394 -0.0353749)
(-0.485162 -2.06159 -0.0297993)
(-0.127704 -0.821329 -0.0293739)
(-0.00501866 -0.10995 -0.0253053)
(-0.000392185 0.345552 -0.100049)
(-0.082817 0.803762 -0.184551)
(-0.257252 1.07879 -0.225801)
(-0.458299 1.26968 -0.212029)
(-0.641054 1.38757 -0.166036)
(-0.762214 1.38716 -0.108162)
(-0.807357 1.27983 -0.0213469)
(-0.786379 1.10869 0.0632778)
(-0.721838 0.933667 0.160599)
(-0.625638 0.781791 0.259795)
(-0.532259 0.669778 0.382592)
(-0.466366 0.597022 0.52243)
(-0.504495 0.579247 0.620159)
(-0.554929 0.696327 0.38258)
(-0.484597 1.01864 -0.307794)
(-0.261383 1.15606 -0.955648)
(-0.236688 1.14543 -0.712906)
(-0.413763 0.739816 -0.0758536)
(-0.611011 0.279667 0.398467)
(-0.62934 0.375158 0.748237)
(-0.319169 0.304542 0.601976)
(-0.259759 -0.162575 0.174117)
(-0.339892 -0.279236 0.125202)
(-0.303846 -0.303613 0.165261)
(-0.331177 -0.404608 0.138606)
(-0.323523 -0.475439 0.124632)
(-0.344626 -0.581167 0.093771)
(-0.347988 -0.683835 0.0688399)
(-0.368724 -0.810703 0.0422976)
(-0.386781 -0.958137 0.0213563)
(-0.425043 -1.15303 0.00289083)
(-0.477661 -1.41702 -0.0126775)
(-0.556839 -1.7733 -0.0273119)
(-0.653928 -2.22224 -0.0409816)
(-0.74269 -2.7074 -0.0481791)
(-0.779889 -3.08604 -0.0495994)
(-0.696319 -3.1105 -0.042255)
(-0.485809 -2.48947 -0.0336396)
(-0.139659 -1.17897 -0.024776)
(0.024034 -0.152788 -0.0219903)
(0.00469052 0.38531 -0.103745)
(-0.0746163 0.894908 -0.196744)
(-0.236792 1.19101 -0.235013)
(-0.412257 1.38191 -0.218009)
(-0.570196 1.47437 -0.170586)
(-0.664063 1.43307 -0.108616)
(-0.688992 1.28356 -0.0215377)
(-0.658116 1.08381 0.0658246)
(-0.58822 0.886619 0.158693)
(-0.486906 0.71527 0.253601)
(-0.376983 0.582163 0.381785)
(-0.300934 0.496249 0.528093)
(-0.289224 0.599021 0.532531)
(-0.161434 1.06855 0.0968442)
(0.06401 1.62516 -0.493368)
(0.0692148 1.74545 -0.901186)
(-0.102788 1.342 -0.49711)
(-0.218647 0.676725 0.0198021)
(-0.378228 0.293026 0.221362)
(-0.354048 0.350911 0.455778)
(0.0128515 0.25004 0.482824)
(-0.0435756 -0.161199 0.183113)
(-0.230675 -0.281701 0.135135)
(-0.212859 -0.285786 0.155337)
(-0.26119 -0.391807 0.136961)
(-0.251675 -0.469961 0.120462)
(-0.283822 -0.573006 0.0874566)
(-0.285278 -0.669033 0.0600214)
(-0.30371 -0.783778 0.0316328)
(-0.313092 -0.914301 0.00903739)
(-0.341966 -1.08249 -0.00895474)
(-0.382482 -1.3167 -0.0259478)
(-0.448778 -1.64398 -0.0403613)
(-0.538428 -2.08922 -0.0532849)
(-0.633255 -2.61837 -0.0615019)
(-0.6965 -3.11514 -0.0625704)
(-0.650791 -3.31398 -0.054549)
(-0.47625 -2.87441 -0.0421041)
(-0.152554 -1.5736 -0.0276789)
(0.0545091 -0.233288 -0.0229999)
(0.00391918 0.397969 -0.108795)
(-0.0595206 0.957474 -0.202635)
(-0.202383 1.28785 -0.237248)
(-0.360828 1.46906 -0.221391)
(-0.497252 1.53347 -0.171256)
(-0.576425 1.4553 -0.107388)
(-0.595006 1.27526 -0.021903)
(-0.566165 1.05591 0.0613489)
(-0.502852 0.842433 0.14168)
(-0.397886 0.649954 0.222318)
(-0.281065 0.474857 0.334552)
(-0.154797 0.385206 0.435573)
(-0.0253545 0.663422 0.296568)
(0.376485 1.297 -0.158405)
(0.565673 1.74853 -0.398536)
(0.474161 1.56503 -0.425406)
(0.237551 1.14722 -0.332939)
(-0.0978375 0.664773 -0.0651247)
(-0.134657 0.380169 -0.117184)
(-0.0709122 0.286083 0.0429736)
(0.286799 0.134722 0.278509)
(0.176172 -0.1998 0.178531)
(-0.0900519 -0.299835 0.137196)
(-0.0943597 -0.263158 0.140653)
(-0.198434 -0.347867 0.112367)
(-0.188369 -0.425235 0.106815)
(-0.222357 -0.54317 0.0807376)
(-0.224904 -0.650221 0.0515972)
(-0.247566 -0.759384 0.0203804)
(-0.253604 -0.874081 -0.00276527)
(-0.276363 -1.01693 -0.0218819)
(-0.303756 -1.21932 -0.038918)
(-0.35649 -1.51513 -0.0532953)
(-0.436393 -1.94948 -0.0653943)
(-0.535222 -2.50481 -0.0732944)
(-0.617581 -3.09861 -0.074756)
(-0.607726 -3.45793 -0.0660455)
(-0.465683 -3.19806 -0.0521685)
(-0.171568 -1.93301 -0.0324443)
(0.0615664 -0.283179 -0.0239003)
(0.00557317 0.423107 -0.107519)
(-0.0254656 1.03739 -0.203083)
(-0.152056 1.39766 -0.244158)
(-0.307646 1.57218 -0.225312)
(-0.425579 1.61186 -0.175608)
(-0.497483 1.50859 -0.108551)
(-0.515545 1.31044 -0.0264825)
(-0.49491 1.0775 0.0501448)
(-0.440437 0.844235 0.11057)
(-0.355698 0.623487 0.162056)
(-0.251244 0.388098 0.210443)
(-0.12567 0.323053 0.19228)
(0.112044 0.628934 -0.233139)
(0.450277 0.860393 -0.642068)
(0.232634 0.84416 0.0600303)
(0.487971 0.942511 0.280328)
(0.783953 0.778332 -0.0873758)
(0.148299 0.319703 0.148839)
(-0.0620688 0.102837 0.149371)
(0.14013 0.0432657 -0.158526)
(0.602714 0.011528 0.0709865)
(0.515176 -0.282457 0.16958)
(0.108409 -0.351009 0.160042)
(0.0679314 -0.257278 0.138461)
(-0.102278 -0.316559 0.0966647)
(-0.13084 -0.36087 0.0743909)
(-0.191602 -0.458207 0.0511388)
(-0.181791 -0.572972 0.0344874)
(-0.190357 -0.698257 0.00799006)
(-0.188667 -0.825721 -0.014633)
(-0.209482 -0.966472 -0.0339119)
(-0.233085 -1.14573 -0.0505924)
(-0.278862 -1.40146 -0.0632885)
(-0.346216 -1.80903 -0.0754924)
(-0.437765 -2.37599 -0.0856838)
(-0.530986 -3.05765 -0.0876043)
(-0.552874 -3.57596 -0.0792103)
(-0.443516 -3.50565 -0.062951)
(-0.17723 -2.31898 -0.0399229)
(0.0663914 -0.399809 -0.0244799)
(-0.000863515 0.429529 -0.10935)
(-0.032484 1.1226 -0.20872)
(-0.12127 1.49406 -0.24279)
(-0.251256 1.68362 -0.231471)
(-0.35589 1.70145 -0.177192)
(-0.414506 1.57976 -0.11246)
(-0.435908 1.37448 -0.0303533)
(-0.432094 1.13702 0.0331361)
(-0.405727 0.901074 0.0683725)
(-0.379373 0.673418 0.075724)
(-0.317982 0.396283 0.0354819)
(-0.350995 0.375883 -0.18732)
(-0.218103 0.482297 -0.974374)
(-0.271841 0.279829 -0.87428)
(-0.919219 0.258136 0.508176)
(-0.0239776 0.718879 0.575409)
(1.3606 0.330318 -0.31183)
(0.754962 -0.279114 0.155802)
(0.127421 -0.432414 0.933713)
(0.376868 -0.374585 0.119181)
(1.03676 -0.183397 -0.0372561)
(1.00703 -0.420144 0.157832)
(0.392702 -0.452128 0.156201)
(0.283171 -0.270533 0.137184)
(0.0275886 -0.285831 0.0953053)
(-0.0133115 -0.318676 0.0642026)
(-0.121453 -0.392873 0.0376713)
(-0.155949 -0.476761 0.00796917)
(-0.184406 -0.578763 -0.0173812)
(-0.177809 -0.694936 -0.0355307)
(-0.178813 -0.828538 -0.0490897)
(-0.174133 -1.00411 -0.0639589)
(-0.200969 -1.24791 -0.0778857)
(-0.252183 -1.64244 -0.088632)
(-0.344652 -2.20518 -0.0971423)
(-0.450762 -2.94296 -0.0996431)
(-0.507057 -3.61435 -0.0917521)
(-0.445239 -3.74338 -0.0739138)
(-0.212474 -2.6568 -0.0505707)
(0.0461517 -0.457723 -0.0293827)
(0.0103039 0.544562 -0.102352)
(-0.00318628 1.30222 -0.201426)
(-0.0629724 1.70031 -0.246404)
(-0.16616 1.88698 -0.230569)
(-0.266928 1.90471 -0.185963)
(-0.316375 1.78355 -0.121059)
(-0.341413 1.5907 -0.0407898)
(-0.360879 1.36917 0.028469)
(-0.367964 1.16459 0.0570027)
(-0.421918 0.956734 0.0216509)
(-0.433514 0.714809 -0.114647)
(-0.732917 0.733962 -0.672816)
(-0.685967 0.667769 -1.60902)
(-0.924424 0.574004 -0.970903)
(-1.37036 0.848345 0.388843)
(-0.319997 0.630417 0.184339)
(1.6163 -0.127228 -0.932008)
(1.89746 -0.422649 -0.923758)
(1.59869 -0.968677 0.742168)
(1.18554 -0.970687 0.766828)
(1.54265 -0.608037 0.0107803)
(1.66366 -0.685906 0.0543439)
(0.686069 -0.588652 0.0991201)
(0.521162 -0.273875 0.100441)
(0.178408 -0.230591 0.088867)
(0.0834814 -0.26552 0.0637912)
(-0.0355371 -0.345296 0.0217903)
(-0.064376 -0.429817 -0.00773622)
(-0.108631 -0.500315 -0.0336713)
(-0.127768 -0.588383 -0.0493923)
(-0.159115 -0.683607 -0.0561344)
(-0.172745 -0.821641 -0.0630576)
(-0.204164 -1.01514 -0.0675628)
(-0.223869 -1.35632 -0.0801367)
(-0.254735 -1.90876 -0.10529)
(-0.34151 -2.72946 -0.109056)
(-0.422027 -3.54759 -0.102177)
(-0.407133 -3.91929 -0.0822323)
(-0.208726 -3.03159 -0.0567044)
(0.0558883 -0.663095 -0.028907)
(-0.0132069 0.753492 -0.126011)
(-0.0125779 1.58129 -0.22746)
(-0.0424953 2.01214 -0.26836)
(-0.102123 2.16465 -0.245759)
(-0.169405 2.18202 -0.20046)
(-0.216497 2.04853 -0.131424)
(-0.239956 1.84717 -0.0440941)
(-0.274821 1.63602 0.0274413)
(-0.306328 1.45536 0.0512933)
(-0.413224 1.29716 -0.0192631)
(-0.441723 1.184 -0.262554)
(-0.650815 1.24566 -0.982298)
(-0.394205 0.878459 -1.58715)
(-0.763819 0.622233 -0.292585)
(-0.877616 0.81019 1.08824)
(-0.170962 -0.357015 0.525283)
(1.34124 -1.22525 -0.87858)
(2.24598 -0.676885 -1.74199)
(3.29293 -1.04077 -0.19856)
(2.60376 -0.997754 0.836272)
(1.88577 -0.694942 -0.098258)
(2.06525 -0.604112 -0.414608)
(0.685062 -0.348839 -0.183831)
(0.695528 -0.204343 0.000648826)
(0.389725 -0.199368 0.101137)
(0.197945 -0.215856 0.0790044)
(0.0262259 -0.264966 0.0349581)
(-0.011153 -0.373886 -0.0192069)
(-0.0504882 -0.458415 -0.0468601)
(-0.0677777 -0.547066 -0.0657726)
(-0.0904064 -0.616602 -0.0758814)
(-0.0969543 -0.707733 -0.0810795)
(-0.129376 -0.829725 -0.0830856)
(-0.19457 -1.08262 -0.0708773)
(-0.310271 -1.53854 -0.0681472)
(-0.367647 -2.3169 -0.0916929)
(-0.400744 -3.26639 -0.101382)
(-0.419142 -3.89075 -0.0876357)
(-0.264769 -3.29262 -0.0658217)
(0.00665546 -0.989174 -0.0387245)
(-0.0345396 0.766251 -0.106855)
(-0.0300197 1.66437 -0.214532)
(-0.0202757 2.13686 -0.25946)
(-0.0523438 2.30941 -0.24909)
(-0.0862453 2.29987 -0.186163)
(-0.126288 2.16467 -0.122433)
(-0.150989 1.95704 -0.0322993)
(-0.181704 1.75444 0.0394491)
(-0.195835 1.59784 0.0679165)
(-0.262753 1.49976 -0.0186106)
(-0.182804 1.49657 -0.27686)
(-0.207892 1.56166 -0.862513)
(0.0493083 0.951447 -0.966379)
(-0.633669 0.0794281 0.908574)
(-0.262532 -0.376887 3.27042)
(-0.226081 -2.00188 2.43553)
(0.285851 -2.40594 -0.221437)
(1.17659 -1.13666 -1.68984)
(2.34774 -0.812492 -1.11998)
(2.4139 -0.671543 0.483144)
(1.56038 -0.719939 -0.255361)
(1.91094 -0.468427 -1.11562)
(0.917548 -0.23874 -0.729004)
(0.966626 -0.241131 -0.245264)
(0.680629 -0.20154 0.194005)
(0.324429 -0.21099 0.237514)
(0.0959926 -0.214586 0.0725647)
(0.0335217 -0.32604 -0.0186185)
(0.00111019 -0.42026 -0.0504715)
(-0.00922521 -0.508195 -0.0714803)
(-0.0286053 -0.575424 -0.0833887)
(-0.0349068 -0.663488 -0.0924803)
(-0.0607113 -0.767193 -0.0924476)
(-0.0779639 -0.962219 -0.0921712)
(-0.176924 -1.30025 -0.087196)
(-0.351406 -1.9401 -0.0716671)
(-0.448428 -2.84367 -0.0844927)
(-0.469365 -3.60994 -0.0778513)
(-0.369156 -3.27869 -0.0606201)
(-0.0808034 -1.06241 -0.0346963)
(-0.0194343 0.742585 -0.102483)
(-0.00435849 1.66039 -0.20952)
(0.0125346 2.14857 -0.253123)
(0.00180117 2.34443 -0.242974)
(-0.0112403 2.3346 -0.184504)
(-0.0393373 2.2011 -0.107526)
(-0.0536142 2.00642 -0.00883906)
(-0.0774361 1.82937 0.077668)
(-0.0689088 1.69829 0.117744)
(-0.0765609 1.62059 0.0717885)
(0.00528433 1.68441 -0.103636)
(-0.0479689 1.6933 -0.601125)
(-0.192782 1.15195 -0.825024)
(-0.96518 -0.61349 1.16268)
(-0.504899 -1.34527 4.79283)
(-0.960472 -2.3878 4.02403)
(-1.06667 -2.39087 -0.180025)
(-0.355618 -0.913881 -1.98643)
(0.157513 0.243897 -1.53766)
(1.20385 0.371639 -0.180844)
(0.969881 -0.0891528 -0.569556)
(0.770126 -0.0393432 -1.5964)
(0.419673 0.0474264 -1.33625)
(0.590089 5.89041e-05 -0.430361)
(0.793595 -0.185548 0.356225)
(0.475507 -0.26733 0.357738)
(0.186462 -0.177524 0.0854612)
(0.0838333 -0.286731 -0.0345371)
(0.0460313 -0.392825 -0.0665526)
(0.0406076 -0.483516 -0.0848721)
(0.024236 -0.547261 -0.0952147)
(0.0182598 -0.624537 -0.101073)
(-0.00590841 -0.705784 -0.101127)
(-0.0166212 -0.869176 -0.105191)
(-0.0961796 -1.18717 -0.0926505)
(-0.234421 -1.74353 -0.0873261)
(-0.369168 -2.51727 -0.0815292)
(-0.446661 -3.32072 -0.0760396)
(-0.375632 -3.18884 -0.0569085)
(-0.123661 -1.12267 -0.0355432)
(-0.00964091 0.715973 -0.0881989)
(0.0189743 1.61064 -0.186339)
(0.0477762 2.11519 -0.23427)
(0.0500416 2.33408 -0.230798)
(0.0492424 2.33727 -0.17667)
(0.0336355 2.21092 -0.0952645)
(0.0338419 2.01921 0.00823399)
(0.0319173 1.83558 0.115273)
(0.0629339 1.70102 0.193819)
(0.140374 1.58601 0.228387)
(0.188448 1.60268 0.27101)
(0.36268 1.55853 -0.230425)
(0.485064 1.25303 -1.00652)
(-0.0881965 -0.301627 0.486169)
(-0.788848 -0.287947 4.30646)
(-1.29463 -0.356963 3.64298)
(-0.659968 -1.12893 -0.993219)
(-0.102023 -0.777935 -2.63195)
(0.468314 0.682065 -1.87092)
(1.50987 1.57913 -0.870839)
(1.12213 1.73901 -1.0902)
(-0.107155 1.33135 -1.9792)
(-0.434413 0.804091 -0.982986)
(0.00392181 0.118982 0.206983)
(0.724347 -0.51604 0.397699)
(0.656221 -0.435446 0.108731)
(0.301929 -0.138087 -0.03247)
(0.125381 -0.20268 -0.0633528)
(0.0930596 -0.355217 -0.0917267)
(0.0938298 -0.463974 -0.102386)
(0.0842406 -0.532879 -0.108124)
(0.0838569 -0.609558 -0.109075)
(0.0643195 -0.683568 -0.107055)
(0.0395384 -0.830991 -0.0994623)
(-0.0236096 -1.0947 -0.102794)
(-0.124261 -1.61917 -0.0950594)
(-0.273242 -2.35899 -0.0872197)
(-0.387765 -3.1969 -0.0697503)
(-0.369641 -3.23454 -0.0491552)
(-0.144836 -1.34341 -0.0311986)
(-0.00330963 0.663502 -0.0741876)
(0.0403908 1.5289 -0.166576)
(0.0842297 2.05135 -0.214576)
(0.0981426 2.29036 -0.213567)
(0.106725 2.31381 -0.163897)
(0.0977946 2.19704 -0.0765638)
(0.099809 2.00984 0.0267041)
(0.106879 1.80715 0.156529)
(0.136697 1.63691 0.258855)
(0.230394 1.45838 0.369979)
(0.2723 1.2906 0.583726)
(0.469624 1.09216 0.397296)
(0.936315 0.839564 -0.768232)
(0.404155 0.91438 -0.323843)
(-1.03786 1.51905 2.87834)
(-0.812217 1.08499 4.0582)
(0.321699 -0.502749 0.862295)
(0.49569 -1.33723 -2.02579)
(1.39515 -0.774532 -1.82799)
(1.98598 0.880005 -0.790367)
(1.36994 2.52105 -1.06815)
(0.104117 2.45012 -1.45737)
(-0.10021 1.01694 0.153775)
(0.122041 -0.274074 1.2406)
(0.252818 -0.73359 0.479881)
(0.229663 -0.245808 -0.123647)
(0.0860043 0.0735566 -0.0930068)
(0.048108 -0.0884948 -0.10561)
(0.0803902 -0.307533 -0.129127)
(0.117254 -0.443781 -0.126303)
(0.116671 -0.517262 -0.126587)
(0.120782 -0.59238 -0.125653)
(0.0987262 -0.652752 -0.119593)
(0.082746 -0.787647 -0.114565)
(0.0139385 -1.01048 -0.108145)
(-0.0565217 -1.5158 -0.115655)
(-0.186757 -2.27434 -0.0950136)
(-0.316253 -3.19689 -0.0743159)
(-0.339259 -3.37514 -0.0489069)
(-0.141867 -1.5761 -0.0328626)
(0.000694448 0.607251 -0.0604286)
(0.0556113 1.43799 -0.14544)
(0.112793 1.97699 -0.194544)
(0.138576 2.23902 -0.197046)
(0.154356 2.28171 -0.152703)
(0.150523 2.17447 -0.0671833)
(0.150188 1.99074 0.0363385)
(0.152914 1.7744 0.16986)
(0.163333 1.56961 0.294585)
(0.198421 1.35127 0.426045)
(0.156436 1.06902 0.68676)
(-0.0303427 0.79417 0.663628)
(0.110765 0.716383 -0.36444)
(-0.328301 1.81097 -0.558487)
(-1.38217 2.03864 1.61603)
(-0.655597 0.655715 4.36042)
(0.0746374 -0.448528 3.84407)
(0.205034 -1.04969 -0.374181)
(0.524324 -1.3421 -1.54643)
(0.754716 0.512219 -0.550892)
(0.813317 2.46928 -0.662518)
(0.557935 2.32369 -0.659602)
(0.754014 0.847494 0.859625)
(0.520311 -0.244859 1.78048)
(-0.13482 -0.31461 0.949929)
(-0.267378 0.0919954 0.207807)
(-0.196825 0.204265 0.0510633)
(-0.0878806 -0.0153568 -0.104324)
(0.0381594 -0.264239 -0.155105)
(0.138091 -0.435528 -0.154266)
(0.166834 -0.519914 -0.145969)
(0.186595 -0.600728 -0.133895)
(0.163934 -0.660209 -0.121893)
(0.152408 -0.78561 -0.115185)
(0.0734645 -0.988812 -0.114324)
(0.000676629 -1.47373 -0.109256)
(-0.127793 -2.27626 -0.0984488)
(-0.258091 -3.31441 -0.0731913)
(-0.320208 -3.6644 -0.0464699)
(-0.139765 -1.91772 -0.0281001)
(0.00311963 0.537718 -0.0464549)
(0.0663144 1.32683 -0.1248)
(0.135774 1.87942 -0.174338)
(0.172141 2.16674 -0.180884)
(0.193999 2.23164 -0.143171)
(0.192874 2.13915 -0.0634656)
(0.185556 1.96375 0.0340783)
(0.174734 1.7448 0.159879)
(0.164588 1.52687 0.280647)
(0.138996 1.30405 0.392028)
(0.0714373 1.0365 0.571445)
(-0.261999 0.834974 0.573659)
(-0.411258 1.05271 -0.0677901)
(-0.640967 1.97182 -0.335591)
(-1.09594 2.08017 0.91849)
(-0.482734 0.807328 3.38774)
(0.0798161 0.31686 3.2191)
(0.0735408 0.0852499 0.673404)
(-0.584849 -0.297094 0.315953)
(-1.02241 1.24273 0.684573)
(-0.128252 2.70352 0.213562)
(0.65707 2.32931 0.179512)
(1.08473 1.10405 1.50843)
(0.834243 0.521373 2.11818)
(-0.00368755 0.373715 1.34507)
(-0.21627 0.135273 0.714687)
(-0.14694 0.0393313 0.438027)
(-0.0888825 -0.0984022 0.0875149)
(0.0105434 -0.29425 -0.125814)
(0.136844 -0.475271 -0.178358)
(0.192954 -0.576985 -0.184534)
(0.222564 -0.690055 -0.173899)
(0.192152 -0.78195 -0.15906)
(0.182699 -0.918477 -0.144855)
(0.114065 -1.13155 -0.148175)
(0.0313735 -1.59612 -0.132755)
(-0.100133 -2.41098 -0.130592)
(-0.212913 -3.57234 -0.0989149)
(-0.280819 -4.13026 -0.0679124)
(-0.120817 -2.5211 -0.0432228)
(0.010439 0.476842 -0.0372637)
(0.0800567 1.21824 -0.107599)
(0.153584 1.7822 -0.15692)
(0.198379 2.09826 -0.16806)
(0.226872 2.19012 -0.137775)
(0.230601 2.11854 -0.0672629)
(0.218928 1.95667 0.0232902)
(0.197028 1.74866 0.134342)
(0.174736 1.5384 0.241299)
(0.122898 1.33285 0.330522)
(0.0570249 1.12396 0.418577)
(-0.22003 0.947003 0.448189)
(-0.571881 1.09892 0.125106)
(-0.676675 1.53306 -0.286744)
(-0.975025 1.89147 0.498856)
(-1.31779 1.43788 2.55611)
(-1.04121 1.21 2.07691)
(-0.106134 0.842386 0.890909)
(-0.670807 0.921066 1.548)
(-1.95835 1.80509 1.47184)
(-0.948537 2.34496 0.829047)
(0.454289 2.3633 0.533755)
(0.944672 1.69655 1.23952)
(0.972165 1.48297 1.4791)
(0.359584 0.981446 1.03517)
(0.0649253 0.126589 0.583442)
(0.0354133 -0.240442 0.353387)
(0.0313355 -0.344344 0.106253)
(0.0750038 -0.400048 -0.0449326)
(0.151581 -0.4861 -0.143835)
(0.19524 -0.582854 -0.181322)
(0.220815 -0.719425 -0.181181)
(0.200526 -0.828011 -0.175806)
(0.181622 -0.982524 -0.151543)
(0.116503 -1.15862 -0.153065)
(0.0502957 -1.63047 -0.144125)
(-0.0928502 -2.44504 -0.143341)
(-0.202727 -3.7445 -0.113779)
(-0.297882 -4.54139 -0.0832638)
(-0.142102 -3.14449 -0.0587272)
(0.0144201 0.419506 -0.0262345)
(0.0923702 1.09181 -0.0895453)
(0.170079 1.65856 -0.139791)
(0.218273 2.00014 -0.156271)
(0.253297 2.12185 -0.134333)
(0.262969 2.07645 -0.0739715)
(0.252763 1.9332 0.00862899)
(0.227927 1.74709 0.106031)
(0.201208 1.55724 0.199436)
(0.144867 1.37795 0.277723)
(0.070502 1.22218 0.320054)
(-0.133966 1.06442 0.347416)
(-0.511772 1.12219 0.124644)
(-0.683025 1.3907 -0.393895)
(-0.847325 1.7312 -0.24538)
(-1.73028 1.85978 1.15361)
(-2.1745 1.78474 1.50248)
(-1.19161 1.48652 0.852713)
(-1.03298 1.86564 0.793327)
(-1.83336 2.19779 0.578004)
(-1.33376 1.74594 -0.0353926)
(-0.148938 1.80986 -0.137309)
(0.0367867 1.72287 0.509409)
(0.0338312 1.63561 1.12598)
(0.28335 0.977663 0.661137)
(0.287983 -0.0922662 0.13351)
(0.211216 -0.547536 -0.0236526)
(0.16255 -0.534277 -0.0532315)
(0.17954 -0.466316 -0.0720541)
(0.220939 -0.483301 -0.131914)
(0.210331 -0.540242 -0.154716)
(0.230321 -0.659633 -0.158597)
(0.204241 -0.753963 -0.156239)
(0.218132 -0.91983 -0.158612)
(0.137186 -1.08355 -0.14788)
(0.0602086 -1.51126 -0.148348)
(-0.0773886 -2.31239 -0.149257)
(-0.195606 -3.70944 -0.119634)
(-0.317204 -4.73821 -0.0897425)
(-0.169802 -3.60808 -0.0619235)
(0.0102002 0.374879 -0.0204521)
(0.0940645 0.982971 -0.0772586)
(0.185336 1.53799 -0.12426)
(0.23385 1.91189 -0.147438)
(0.274129 2.06621 -0.134016)
(0.293403 2.05167 -0.0838144)
(0.293913 1.92936 -0.00928587)
(0.277075 1.76361 0.0769291)
(0.25473 1.58995 0.163607)
(0.211074 1.43054 0.235621)
(0.138851 1.30908 0.277993)
(0.00907691 1.20717 0.28448)
(-0.221689 1.24455 0.187778)
(-0.42412 1.49557 -0.144589)
(-0.452023 1.82321 -0.40317)
(-0.718399 2.01808 -0.0689307)
(-1.24524 2.06981 0.450317)
(-1.44468 1.94523 0.451997)
(-1.48391 2.27316 0.146941)
(-1.25588 2.34844 -0.451852)
(-0.835649 1.95021 -0.838903)
(-0.286609 2.03029 -0.626097)
(-0.288382 1.68253 0.492302)
(-0.38085 1.13338 1.1985)
(0.143105 0.43109 0.373698)
(0.422701 -0.23091 -0.251292)
(0.424558 -0.503609 -0.313968)
(0.368149 -0.466347 -0.231915)
(0.306066 -0.41997 -0.158844)
(0.307556 -0.445098 -0.132201)
(0.275332 -0.479289 -0.12462)
(0.272207 -0.579773 -0.125704)
(0.219496 -0.657506 -0.131747)
(0.212771 -0.824185 -0.132809)
(0.167093 -0.986789 -0.145352)
(0.097173 -1.39855 -0.137539)
(-0.0716132 -2.13116 -0.141968)
(-0.177428 -3.58992 -0.11372)
(-0.334847 -4.8175 -0.0850233)
(-0.19191 -4.00288 -0.0567527)
(0.00922689 0.317677 -0.0156091)
(0.0888714 0.862145 -0.0686205)
(0.196105 1.38144 -0.109682)
(0.253635 1.77588 -0.138736)
(0.288642 1.96316 -0.134305)
(0.315143 1.97967 -0.0944591)
(0.329241 1.885 -0.0290897)
(0.325502 1.7355 0.0487862)
(0.313139 1.57505 0.130675)
(0.290223 1.42558 0.204224)
(0.249039 1.31506 0.254808)
(0.176623 1.24621 0.279246)
(0.0600405 1.2623 0.239531)
(-0.033793 1.41127 0.104569)
(-0.0883726 1.66116 -0.0859611)
(-0.0613599 1.84266 -0.223641)
(-0.069579 1.85089 -0.110107)
(-0.250813 1.79287 -0.0367268)
(-0.256556 1.70541 -0.175685)
(-0.00399821 1.64687 -0.206489)
(0.246889 1.73472 -0.0850634)
(0.639238 1.96445 0.11562)
(0.672815 1.51818 0.621093)
(0.417315 0.669867 0.708521)
(0.477845 0.0690607 0.00426265)
(0.627418 -0.0949647 -0.447155)
(0.641451 -0.176776 -0.420236)
(0.574035 -0.219341 -0.268892)
(0.434816 -0.266027 -0.148208)
(0.409103 -0.335202 -0.102953)
(0.338416 -0.385199 -0.089754)
(0.32348 -0.493996 -0.0922202)
(0.246205 -0.563257 -0.0999166)
(0.235051 -0.73275 -0.112185)
(0.159846 -0.863759 -0.125797)
(0.130974 -1.28855 -0.134451)
(-0.0375729 -1.94723 -0.13111)
(-0.155151 -3.43487 -0.10859)
(-0.341603 -4.82313 -0.0781454)
(-0.21711 -4.3532 -0.0501577)
(0.00426216 0.279837 -0.0131184)
(0.0714979 0.77588 -0.0634793)
(0.186508 1.26396 -0.101476)
(0.266938 1.65697 -0.126591)
(0.304592 1.88304 -0.135249)
(0.335283 1.92935 -0.105264)
(0.363862 1.86217 -0.0521325)
(0.375454 1.71901 0.020317)
(0.378973 1.56707 0.0941875)
(0.376328 1.41355 0.166165)
(0.364667 1.2931 0.224064)
(0.340895 1.20529 0.266127)
(0.298837 1.17983 0.284557)
(0.263623 1.22507 0.253443)
(0.246528 1.31771 0.177959)
(0.280849 1.43757 0.0319282)
(0.35275 1.4376 -0.0982155)
(0.410486 1.39481 -0.233346)
(0.557913 1.15814 -0.308162)
(0.696327 0.888266 -0.107576)
(0.897331 0.897066 0.154848)
(1.27507 0.883237 0.353829)
(1.28349 0.568163 0.596401)
(0.912962 0.203801 0.417554)
(0.714919 0.0200319 0.061655)
(0.779875 -0.0103211 -0.170351)
(0.792407 -0.0286269 -0.148696)
(0.682996 -0.070351 -0.0848699)
(0.484678 -0.118185 -0.0372847)
(0.459205 -0.206753 -0.0342812)
(0.389275 -0.273655 -0.0400648)
(0.374071 -0.393863 -0.0499339)
(0.274824 -0.459002 -0.0661778)
(0.263275 -0.630451 -0.0834926)
(0.159569 -0.749791 -0.106849)
(0.161668 -1.14271 -0.120083)
(-0.0118596 -1.77362 -0.118797)
(-0.121328 -3.25831 -0.0970868)
(-0.354924 -4.79667 -0.0673778)
(-0.24146 -4.7027 -0.0388971)
(0.00867255 0.227681 -0.0126072)
(0.0609072 0.671197 -0.0617475)
(0.161512 1.11854 -0.0968543)
(0.265563 1.48476 -0.118155)
(0.318455 1.72532 -0.130011)
(0.343754 1.80724 -0.11534)
(0.374237 1.76724 -0.0732685)
(0.403405 1.64134 -0.00998688)
(0.426275 1.50166 0.0544789)
(0.438824 1.34972 0.119582)
(0.449257 1.22079 0.177139)
(0.453573 1.11245 0.223574)
(0.451284 1.04165 0.25747)
(0.454768 1.00915 0.267782)
(0.45865 1.00532 0.260376)
(0.481097 1.02381 0.207214)
(0.550112 1.0073 0.121775)
(0.617985 0.965955 0.0232792)
(0.725022 0.833316 -0.0610328)
(0.85995 0.586452 -0.0348429)
(1.12032 0.383295 0.0553177)
(1.42859 0.174902 0.135059)
(1.40763 -0.12223 0.286437)
(1.11516 -0.197515 0.35352)
(0.898843 -0.105367 0.188528)
(0.934351 -0.0600887 0.0519517)
(0.934766 -0.0415874 0.0115589)
(0.798202 -0.052037 0.0160091)
(0.571148 -0.0652234 0.0329748)
(0.525314 -0.129329 0.0269245)
(0.431709 -0.186481 0.00642991)
(0.431368 -0.306858 -0.0127102)
(0.31762 -0.360115 -0.0343164)
(0.30554 -0.533933 -0.0584186)
(0.178935 -0.638197 -0.0846025)
(0.187541 -1.01877 -0.103986)
(0.00682952 -1.61164 -0.104382)
(-0.0801936 -3.09627 -0.0832436)
(-0.376687 -4.76515 -0.0556567)
(-0.271384 -5.10775 -0.0277923)
(0.00610252 0.20655 -0.0130697)
(0.0295344 0.620937 -0.0627278)
(0.102353 1.045 -0.0957958)
(0.224373 1.4002 -0.115744)
(0.319679 1.6182 -0.122888)
(0.366532 1.72317 -0.12093)
(0.389721 1.70816 -0.0955443)
(0.43346 1.59455 -0.0462466)
(0.475969 1.4575 0.0124636)
(0.50462 1.30765 0.0687442)
(0.533097 1.17189 0.12054)
(0.554361 1.04846 0.164962)
(0.57299 0.950754 0.199157)
(0.591014 0.875434 0.219387)
(0.610428 0.816154 0.22605)
(0.627166 0.77665 0.213571)
(0.671665 0.726906 0.174957)
(0.727641 0.650643 0.142981)
(0.840529 0.555163 0.137453)
(0.960838 0.413704 0.18043)
(1.16085 0.262851 0.229786)
(1.39153 0.106447 0.175417)
(1.40068 -0.108113 0.181557)
(1.30036 -0.205318 0.197005)
(1.16802 -0.120384 0.132982)
(1.14707 -0.065606 0.0782328)
(1.09969 -0.0261746 0.0609787)
(0.93392 -0.0287336 0.0544773)
(0.669226 -0.0254406 0.0552395)
(0.616111 -0.0671655 0.0473492)
(0.499879 -0.0906065 0.0334311)
(0.511431 -0.208658 0.0116549)
(0.37627 -0.245762 -0.0123576)
(0.372151 -0.409695 -0.0368941)
(0.209469 -0.501441 -0.065286)
(0.227312 -0.867076 -0.0856842)
(0.0248178 -1.42376 -0.0873425)
(-0.0337581 -2.89536 -0.0680751)
(-0.41129 -4.72578 -0.045105)
(-0.303504 -5.60158 -0.0191223)
(0.0156595 0.178537 -0.0177776)
(0.0315904 0.526575 -0.0681508)
(0.0521035 0.941235 -0.0997387)
(0.149361 1.246 -0.116745)
(0.267667 1.44948 -0.12555)
(0.359399 1.52979 -0.11751)
(0.385035 1.55721 -0.114586)
(0.424423 1.45511 -0.07681)
(0.492584 1.34211 -0.0314297)
(0.542151 1.20047 0.0190309)
(0.588799 1.07457 0.0622099)
(0.626439 0.952729 0.101352)
(0.661282 0.850382 0.133761)
(0.691692 0.76104 0.157981)
(0.719559 0.68406 0.174296)
(0.738871 0.617021 0.181333)
(0.762321 0.554034 0.174551)
(0.79065 0.478966 0.147953)
(0.880832 0.397745 0.115982)
(1.0014 0.266132 0.117789)
(1.24733 0.152958 0.141203)
(1.48509 0.0806406 0.144004)
(1.48341 -0.0204662 0.135876)
(1.44432 -0.0948345 0.15568)
(1.34786 -0.0632352 0.119203)
(1.31778 -0.0421128 0.0801644)
(1.25338 0.00307075 0.0624809)
(1.07806 -0.0061249 0.0594539)
(0.799501 0.0168776 0.0644795)
(0.758731 -0.0249613 0.059899)
(0.598475 -0.020923 0.0457013)
(0.611938 -0.108025 0.0268483)
(0.47573 -0.126951 0.00339275)
(0.481778 -0.294564 -0.018935)
(0.293788 -0.362427 -0.0432665)
(0.308593 -0.735455 -0.0662661)
(0.0813277 -1.23465 -0.0711896)
(0.0374152 -2.7035 -0.052634)
(-0.454034 -4.6714 -0.0364296)
(-0.300425 -6.20969 -0.0135803)
(-0.0195273 0.154287 -0.0197978)
(-0.0284383 0.554548 -0.0760828)
(-0.0291649 0.89591 -0.107498)
(0.027853 1.2426 -0.121679)
(0.166442 1.39955 -0.132746)
(0.331883 1.42724 -0.12276)
(0.396579 1.45099 -0.128691)
(0.430084 1.35255 -0.10728)
(0.518744 1.25119 -0.0737834)
(0.587391 1.12239 -0.0345022)
(0.658853 1.00122 0.00508775)
(0.711784 0.88448 0.0372327)
(0.761759 0.782931 0.0648827)
(0.80102 0.689557 0.0896374)
(0.834854 0.605614 0.109559)
(0.856856 0.527808 0.126421)
(0.883178 0.462203 0.127537)
(0.913928 0.401685 0.117397)
(0.983661 0.345751 0.106846)
(1.08576 0.243544 0.107763)
(1.34065 0.164862 0.111277)
(1.58835 0.104516 0.100981)
(1.5842 0.0335435 0.0952782)
(1.59604 -0.020942 0.0933444)
(1.5359 -0.0161135 0.0907504)
(1.51583 -0.0127037 0.0750399)
(1.43519 0.053325 0.061035)
(1.25715 0.0382576 0.0575339)
(0.953495 0.0834486 0.0578413)
(0.9162 0.035287 0.0537668)
(0.768802 0.0542164 0.0416369)
(0.803474 -0.0163292 0.0279264)
(0.618005 -0.0208469 0.00726039)
(0.657077 -0.165378 -0.0104037)
(0.423324 -0.208558 -0.0336447)
(0.465509 -0.542867 -0.049821)
(0.171693 -0.971096 -0.0579316)
(0.216335 -2.37729 -0.0409348)
(-0.427929 -4.57015 -0.0335207)
(-0.240606 -6.80574 -0.00916461)
(0.051557 0.292519 -0.0322769)
(0.000275106 0.490458 -0.086985)
(-0.0990625 0.779488 -0.116581)
(-0.0434153 0.991418 -0.130015)
(-0.00690124 1.20482 -0.140878)
(0.196776 1.18904 -0.131709)
(0.33906 1.21255 -0.13994)
(0.393617 1.13237 -0.133225)
(0.509635 1.05351 -0.111135)
(0.601112 0.956153 -0.0854653)
(0.696425 0.859408 -0.0563351)
(0.770605 0.7635 -0.0279547)
(0.83526 0.679312 -0.00410133)
(0.885045 0.6 0.0167729)
(0.927127 0.529242 0.0330872)
(0.961057 0.458487 0.048283)
(0.99656 0.401612 0.0533994)
(1.03164 0.343659 0.0523867)
(1.09479 0.292229 0.0482105)
(1.20483 0.191271 0.0490166)
(1.48896 0.135525 0.0505157)
(1.7472 0.0877894 0.0509743)
(1.74613 0.0356552 0.0470032)
(1.77507 -0.00558289 0.0472765)
(1.72426 0.011036 0.0415119)
(1.75094 0.000551521 0.0338957)
(1.6663 0.0808491 0.0267196)
(1.50851 0.067165 0.0282999)
(1.19298 0.130824 0.0308368)
(1.18369 0.100552 0.0312141)
(1.023 0.14277 0.0239746)
(1.09608 0.0550538 0.0125495)
(0.91041 0.0592678 -5.93993e-05)
(1.00723 -0.0565527 -0.0109153)
(0.748626 -0.126718 -0.0265036)
(0.852389 -0.40717 -0.0394173)
(0.491103 -0.798321 -0.0436281)
(0.590749 -2.01459 -0.0401829)
(-0.165885 -4.3593 -0.0235732)
(0.0605159 -7.32666 -0.00356553)
(-0.223632 0.0753798 -0.042188)
(-0.299346 0.702286 -0.109685)
(-0.289132 0.879895 -0.132505)
(-0.248347 1.02888 -0.141022)
(-0.119023 1.05526 -0.155228)
(0.0684565 1.06846 -0.1437)
(0.255078 1.00856 -0.158934)
(0.347932 0.947753 -0.159337)
(0.494585 0.873758 -0.149229)
(0.609846 0.802179 -0.135136)
(0.731497 0.730677 -0.116354)
(0.829869 0.658549 -0.0979284)
(0.91881 0.594812 -0.0810984)
(0.989569 0.534746 -0.0644612)
(1.04831 0.480676 -0.0508125)
(1.09882 0.424108 -0.0388121)
(1.15204 0.368791 -0.0306922)
(1.20881 0.314389 -0.0234658)
(1.28153 0.279892 -0.020234)
(1.4328 0.194602 -0.0159246)
(1.77042 0.162702 -0.0175507)
(2.08676 0.113375 -0.0177871)
(2.11308 0.0710774 -0.0184001)
(2.21198 0.0338195 -0.0160885)
(2.185 0.0396959 -0.0152367)
(2.24668 0.0160697 -0.01589)
(2.15028 0.103592 -0.0191851)
(2.02932 0.0766933 -0.0172661)
(1.69417 0.157623 -0.0130803)
(1.75343 0.137834 -0.0108369)
(1.58796 0.200059 -0.0119349)
(1.7386 0.124107 -0.015711)
(1.53225 0.129926 -0.0233635)
(1.70209 0.00843175 -0.031127)
(1.36716 -0.0501467 -0.0376119)
(1.54951 -0.271085 -0.0397522)
(1.09112 -0.521396 -0.0417636)
(1.27143 -1.45268 -0.0358033)
(0.422184 -3.85264 -0.026335)
(0.513132 -7.20052 -0.0011156)
(-0.732631 0.794661 -0.104882)
(-0.606357 0.396412 -0.159298)
(-0.749651 0.578325 -0.154888)
(-0.458225 0.607087 -0.15543)
(-0.310016 0.621895 -0.161688)
(0.00657631 0.67559 -0.159552)
(0.234344 0.643463 -0.170413)
(0.43793 0.619038 -0.181182)
(0.654008 0.575435 -0.179714)
(0.85485 0.534973 -0.17504)
(1.05251 0.490174 -0.164507)
(1.23161 0.446841 -0.153414)
(1.3924 0.409465 -0.142023)
(1.5327 0.378474 -0.130368)
(1.64846 0.356186 -0.121503)
(1.75753 0.325468 -0.113651)
(1.86792 0.28237 -0.106822)
(2.01933 0.248428 -0.100815)
(2.19323 0.22526 -0.09924)
(2.47913 0.13388 -0.0914133)
(2.89502 0.102777 -0.0929388)
(3.32389 0.0538236 -0.0921573)
(3.40177 0.0103725 -0.089337)
(3.5434 -0.0312641 -0.0824806)
(3.48208 -0.0169366 -0.0757608)
(3.60945 -0.024817 -0.0724272)
(3.46481 0.0576786 -0.0727157)
(3.42984 0.0555803 -0.0661682)
(3.04314 0.132896 -0.0593261)
(3.21145 0.144829 -0.055209)
(3.00204 0.196246 -0.0540215)
(3.31887 0.138114 -0.0540684)
(3.03292 0.10303 -0.0545277)
(3.36491 0.0175324 -0.0554099)
(2.88548 -0.0500551 -0.0520428)
(3.22857 -0.227458 -0.0504592)
(2.55753 -0.51445 -0.0465936)
(2.91041 -1.13143 -0.0417287)
(1.91435 -3.144 -0.0271553)
(1.34791 -6.0825 -0.0048869)
(1.15978 1.48099 -0.0402412)
(1.72314 0.728329 -0.061147)
(2.45983 0.5686 -0.0650728)
(2.87481 0.350861 -0.0643768)
(3.15431 0.279202 -0.0664057)
(3.39782 0.23031 -0.0667786)
(3.62119 0.215624 -0.0794761)
(3.81931 0.195534 -0.0976435)
(4.03384 0.181318 -0.105425)
(4.26247 0.166918 -0.106019)
(4.48305 0.153379 -0.102538)
(4.69812 0.139585 -0.0983504)
(4.87942 0.127866 -0.0947414)
(5.04525 0.117781 -0.0896402)
(5.16612 0.112424 -0.0866805)
(5.29416 0.107344 -0.0841916)
(5.42562 0.0859346 -0.0811398)
(5.63782 0.065075 -0.0760987)
(5.89542 0.0795937 -0.0818214)
(6.35153 0.0565888 -0.0815419)
(6.76788 0.0337295 -0.0871771)
(7.24289 0.0134027 -0.0937698)
(7.27312 -0.00417106 -0.0899046)
(7.34264 -0.0512289 -0.0812845)
(7.16533 -0.0366042 -0.0740401)
(7.1835 -0.0532877 -0.0639421)
(6.84161 -0.0314262 -0.0638206)
(6.83074 -0.0167461 -0.056155)
(6.35436 0.0173663 -0.0485859)
(6.59347 0.0359544 -0.0451156)
(6.34567 0.0682598 -0.0453037)
(6.78846 0.0682611 -0.0454305)
(6.48314 0.0460902 -0.0455001)
(6.87582 0.0140486 -0.0457467)
(6.32986 -0.0137463 -0.0443148)
(6.55532 -0.105273 -0.037823)
(5.67545 -0.257601 -0.034662)
(5.70528 -0.582122 -0.0285233)
(4.28248 -1.13841 -0.0246372)
(2.78899 -2.5249 -0.0114937)
(0.000544179 -0.000405076 -0.00207872)
(0.0215915 -0.00329182 -0.00722927)
(0.0507561 -0.0031759 -0.0105846)
(0.0723527 -0.00131317 -0.0134708)
(0.0832908 0.000851981 -0.0155816)
(0.0715961 -0.00189231 -0.0167471)
(0.0568534 0.00413283 -0.0170462)
(0.0439121 0.00262764 -0.0188542)
(0.0249144 0.0109837 -0.0188373)
(0.0032272 0.0147762 -0.0188911)
(-0.0342564 0.0154998 -0.0210873)
(-0.0884053 0.0116106 -0.0240688)
(-0.144781 0.00647277 -0.0266217)
(-0.218408 0.00493288 -0.0296847)
(-0.288863 0.0115088 -0.0309809)
(-0.372702 0.0212053 -0.0336075)
(-0.449264 0.0131422 -0.0353789)
(-0.550267 0.00540948 -0.0368466)
(-0.604771 -0.0126618 -0.0435698)
(-0.773744 -0.0144042 -0.0524714)
(-0.736385 0.0236799 -0.056399)
(-0.547798 0.0261086 -0.0650391)
(-0.546085 0.0330519 -0.0688217)
(-0.541106 0.0317696 -0.0732658)
(-0.530803 0.0188389 -0.0820731)
(-0.473847 0.0163253 -0.0887148)
(-0.407979 0.0081394 -0.0999566)
(-0.303193 -0.00311127 -0.105133)
(-0.184822 -0.010204 -0.1112)
(-0.0520561 -0.0220792 -0.107623)
(0.0795468 0.0160551 -0.108571)
(0.281411 0.00450293 -0.0952897)
(0.425288 0.010126 -0.0870572)
(0.449016 0.0432119 -0.0679353)
(0.418984 0.0432751 -0.0549435)
(0.327619 0.0455223 -0.043491)
(0.220819 0.0300599 -0.0360686)
(0.119078 0.018572 -0.0307776)
(0.0392793 0.00194716 -0.0214855)
(-0.00299997 -0.00929096 -0.00767736)
(0.006534 -0.0124906 -0.00687674)
(0.0439659 -0.02726 -0.0191051)
(0.089263 -0.0266232 -0.0274712)
(0.121455 -0.0161662 -0.034963)
(0.129998 -0.00665276 -0.0414694)
(0.113715 0.000778084 -0.045136)
(0.0838372 0.0121448 -0.0491984)
(0.0451258 0.0358337 -0.0553528)
(-0.00983044 0.0542427 -0.0538671)
(-0.0970249 0.0661386 -0.0559329)
(-0.220055 0.0816978 -0.0535911)
(-0.377307 0.104235 -0.0582694)
(-0.542701 0.128848 -0.0599764)
(-0.725733 0.155409 -0.0635204)
(-0.909653 0.182079 -0.0672377)
(-1.12301 0.176947 -0.0736867)
(-1.3069 0.154045 -0.0806393)
(-1.48638 0.124011 -0.0876029)
(-1.60069 0.0935733 -0.0972845)
(-1.74833 0.0812523 -0.105799)
(-1.6253 0.115683 -0.108201)
(-1.38207 0.103529 -0.117374)
(-1.29441 0.0917812 -0.119047)
(-1.19939 0.05247 -0.126935)
(-1.10317 0.0171083 -0.131567)
(-0.975191 -0.0284927 -0.136649)
(-0.852216 -0.0748218 -0.146348)
(-0.683978 -0.105152 -0.152809)
(-0.506491 -0.123281 -0.155897)
(-0.279932 -0.139183 -0.151064)
(-0.102901 -0.109407 -0.150926)
(0.15876 -0.0462764 -0.134698)
(0.44607 -0.0158195 -0.144023)
(0.57618 0.0392596 -0.136755)
(0.610058 0.131274 -0.11949)
(0.557004 0.154732 -0.104428)
(0.430902 0.158104 -0.0914388)
(0.269945 0.127453 -0.0786196)
(0.111007 0.0822558 -0.0572268)
(0.0143816 0.0270207 -0.0221191)
(0.00977164 -0.0288059 -0.00967415)
(0.0519437 -0.0570532 -0.0262184)
(0.0974607 -0.0530442 -0.0391157)
(0.120374 -0.0291404 -0.0506789)
(0.116307 -0.000767512 -0.0590503)
(0.0788424 0.0256371 -0.0695333)
(0.0336075 0.07209 -0.072971)
(-0.0480244 0.126078 -0.0799754)
(-0.186545 0.184118 -0.0770752)
(-0.348382 0.233399 -0.0753849)
(-0.544955 0.285404 -0.0729213)
(-0.779466 0.3414 -0.0728746)
(-1.02639 0.39189 -0.0748207)
(-1.28164 0.417571 -0.0789524)
(-1.53809 0.399151 -0.0828327)
(-1.77888 0.3521 -0.0873971)
(-1.95857 0.311674 -0.0884508)
(-2.12572 0.260274 -0.0899744)
(-2.22759 0.225594 -0.0915283)
(-2.32133 0.182363 -0.092458)
(-2.12668 0.176087 -0.0887843)
(-1.85406 0.144943 -0.0819448)
(-1.71999 0.0842293 -0.075273)
(-1.57666 0.00881552 -0.0663756)
(-1.48589 -0.081434 -0.0630628)
(-1.35736 -0.197089 -0.071764)
(-1.21404 -0.286287 -0.0734507)
(-1.04013 -0.34524 -0.0743692)
(-0.873842 -0.368733 -0.0831169)
(-0.663812 -0.354748 -0.0861357)
(-0.451567 -0.336643 -0.0906871)
(-0.194016 -0.23781 -0.100511)
(0.0539465 -0.161777 -0.105456)
(0.304741 -0.0482056 -0.124323)
(0.461214 0.077129 -0.133399)
(0.46472 0.191504 -0.128845)
(0.410118 0.233586 -0.118766)
(0.269761 0.231412 -0.105581)
(0.117199 0.175726 -0.0776438)
(0.0143689 0.0823593 -0.0303007)
(0.0118665 -0.0466301 -0.0133112)
(0.0507511 -0.0828773 -0.0350943)
(0.0815116 -0.0695245 -0.0524547)
(0.0846044 -0.0262854 -0.0710444)
(0.0490237 0.0271501 -0.0810316)
(-0.00480032 0.105046 -0.0923356)
(-0.0890786 0.195159 -0.0947432)
(-0.232291 0.295796 -0.093252)
(-0.437373 0.410003 -0.0833332)
(-0.69142 0.505866 -0.0744516)
(-0.962096 0.577688 -0.0682122)
(-1.24445 0.629102 -0.067539)
(-1.52405 0.634681 -0.0683669)
(-1.80761 0.589654 -0.0694932)
(-2.04644 0.524398 -0.0677194)
(-2.23892 0.464799 -0.065554)
(-2.38049 0.413226 -0.0618195)
(-2.50753 0.350591 -0.0537154)
(-2.57635 0.30226 -0.0428321)
(-2.60229 0.226763 -0.0337514)
(-2.36038 0.190605 -0.0165829)
(-2.09019 0.116498 -0.00639572)
(-1.93576 0.0148417 0.000984508)
(-1.83536 -0.108708 0.00220277)
(-1.77668 -0.263461 -0.00866569)
(-1.66745 -0.415234 -0.0094236)
(-1.54092 -0.549364 -0.013896)
(-1.37082 -0.658698 -0.0160112)
(-1.20747 -0.71475 -0.0204698)
(-1.03803 -0.704047 -0.0274461)
(-0.870777 -0.63208 -0.0395176)
(-0.651237 -0.514841 -0.0512878)
(-0.415458 -0.396306 -0.0758591)
(-0.16393 -0.21778 -0.103336)
(0.0967943 -0.055757 -0.126165)
(0.235827 0.142742 -0.134918)
(0.250898 0.245417 -0.133941)
(0.185567 0.283466 -0.120185)
(0.0765068 0.24417 -0.0903938)
(0.0094496 0.125296 -0.0355506)
(0.0116118 -0.0651347 -0.0188783)
(0.0389087 -0.100276 -0.0468934)
(0.0447451 -0.0695201 -0.070929)
(0.0129709 0.0069456 -0.089337)
(-0.0391646 0.114459 -0.10218)
(-0.131283 0.24901 -0.10714)
(-0.269493 0.392763 -0.102461)
(-0.463 0.545598 -0.088107)
(-0.736155 0.688998 -0.0714167)
(-1.04134 0.79207 -0.0591735)
(-1.3444 0.834546 -0.0522244)
(-1.65354 0.816851 -0.0498692)
(-1.94281 0.754552 -0.0479003)
(-2.17471 0.677855 -0.0449172)
(-2.34461 0.617461 -0.0348505)
(-2.47495 0.548209 -0.0255371)
(-2.56546 0.484637 -0.0115206)
(-2.64806 0.408524 -0.00331237)
(-2.68042 0.346208 0.00646441)
(-2.64985 0.238756 0.0151066)
(-2.37593 0.180765 0.0269369)
(-2.10346 0.0691672 0.0369552)
(-1.97859 -0.059606 0.037688)
(-1.92555 -0.241018 0.0340924)
(-1.8943 -0.409807 0.03255)
(-1.83035 -0.591015 0.0278092)
(-1.74197 -0.769879 0.019641)
(-1.60641 -0.935977 0.0109744)
(-1.45715 -1.0615 -0.000484984)
(-1.28315 -1.11381 -0.0086091)
(-1.13763 -1.06851 -0.0168582)
(-1.00181 -0.920986 -0.0276826)
(-0.852254 -0.701547 -0.0466362)
(-0.592017 -0.475051 -0.0806731)
(-0.271217 -0.227937 -0.113579)
(-0.0390909 0.0168907 -0.14119)
(0.0625266 0.186419 -0.137172)
(0.0663689 0.285994 -0.126555)
(0.0278598 0.266532 -0.0942423)
(-0.00211704 0.135982 -0.0367094)
(0.00878104 -0.085987 -0.0360564)
(0.0154895 -0.104737 -0.0727854)
(-0.0102095 -0.0377206 -0.100432)
(-0.0622494 0.102247 -0.116528)
(-0.153768 0.267925 -0.121976)
(-0.285035 0.458303 -0.116201)
(-0.461246 0.645208 -0.0958177)
(-0.694013 0.827926 -0.0719727)
(-1.0074 0.949827 -0.0496484)
(-1.37217 0.967189 -0.037656)
(-1.71152 0.930649 -0.0290891)
(-1.98607 0.862332 -0.0207862)
(-2.1859 0.794655 -0.00972035)
(-2.33481 0.728925 -0.00198827)
(-2.43485 0.654708 0.00913562)
(-2.49565 0.566339 0.0134731)
(-2.52454 0.48336 0.0181839)
(-2.54619 0.39555 0.0239281)
(-2.5268 0.325782 0.0366563)
(-2.43422 0.208877 0.0448095)
(-2.14276 0.14983 0.0659686)
(-1.89097 0.024076 0.0821027)
(-1.82041 -0.132293 0.0786745)
(-1.8028 -0.312069 0.0752941)
(-1.80719 -0.485949 0.0713536)
(-1.78643 -0.687028 0.0660076)
(-1.75665 -0.895175 0.0560211)
(-1.68916 -1.10712 0.0417187)
(-1.59678 -1.29971 0.0243424)
(-1.46073 -1.43384 0.00908347)
(-1.31388 -1.48212 -0.00140568)
(-1.16033 -1.40037 -0.0123322)
(-1.10512 -1.2006 -0.0267502)
(-0.972452 -0.816398 -0.051738)
(-0.625713 -0.50141 -0.0897841)
(-0.304027 -0.168414 -0.123351)
(-0.087624 0.09852 -0.142255)
(-0.00438949 0.254652 -0.131093)
(-0.00858594 0.257566 -0.0992877)
(-0.00261374 0.126784 -0.0392761)
(0.00552575 -0.0859764 -0.0508736)
(-0.00768468 -0.0604752 -0.0967952)
(-0.0502245 0.0595277 -0.121559)
(-0.14036 0.251651 -0.135314)
(-0.265832 0.468053 -0.13076)
(-0.428137 0.694079 -0.108433)
(-0.626316 0.901211 -0.0788335)
(-0.916904 1.03536 -0.0470017)
(-1.32481 1.0155 -0.0338163)
(-1.67852 0.969386 -0.0196296)
(-1.92312 0.925644 -0.000500766)
(-2.09992 0.886677 0.0166091)
(-2.22601 0.825732 0.0304391)
(-2.30161 0.739511 0.0379488)
(-2.33121 0.641454 0.0403772)
(-2.32932 0.536288 0.0386578)
(-2.30269 0.449961 0.0418929)
(-2.26819 0.366549 0.0478674)
(-2.20757 0.304205 0.0667511)
(-2.0735 0.196171 0.0770283)
(-1.78748 0.146077 0.102405)
(-1.58361 0.00600677 0.112766)
(-1.54659 -0.15884 0.111645)
(-1.55176 -0.322704 0.104974)
(-1.57776 -0.497281 0.0986786)
(-1.59256 -0.70005 0.0889714)
(-1.61037 -0.920816 0.0766938)
(-1.60879 -1.16107 0.0618647)
(-1.59209 -1.4026 0.0452403)
(-1.53641 -1.61662 0.0265991)
(-1.44344 -1.76177 0.0150341)
(-1.30908 -1.77984 0.00159478)
(-1.17668 -1.68545 -0.00947851)
(-1.13523 -1.35258 -0.0254788)
(-0.922504 -0.884287 -0.0544322)
(-0.511822 -0.452976 -0.0927601)
(-0.200749 -0.0675387 -0.122754)
(-0.0664326 0.153273 -0.125453)
(-0.024179 0.209452 -0.0960409)
(-0.00510735 0.097743 -0.0374769)
(0.00949675 -0.043028 -0.0629675)
(-0.0199505 0.0304946 -0.116927)
(-0.102743 0.198981 -0.14684)
(-0.215112 0.430701 -0.151112)
(-0.366981 0.676303 -0.131529)
(-0.542701 0.901398 -0.0987411)
(-0.822929 1.04883 -0.0614266)
(-1.22094 1.03743 -0.0412155)
(-1.55665 0.987205 -0.0158982)
(-1.79088 0.987412 0.0106938)
(-1.95445 0.967959 0.0375864)
(-2.0585 0.912054 0.0660662)
(-2.11602 0.825999 0.0792961)
(-2.13057 0.723146 0.0839217)
(-2.11545 0.614174 0.0809724)
(-2.06989 0.50003 0.0693497)
(-2.00109 0.409477 0.0672073)
(-1.92356 0.328754 0.0686966)
(-1.83411 0.277663 0.0903106)
(-1.67216 0.194916 0.102051)
(-1.41821 0.162333 0.137688)
(-1.26446 -9.61068e-06 0.138644)
(-1.25295 -0.146071 0.138555)
(-1.26545 -0.3054 0.12967)
(-1.29727 -0.468296 0.121342)
(-1.32993 -0.659198 0.109361)
(-1.37241 -0.873169 0.0946408)
(-1.41244 -1.11707 0.0776795)
(-1.45428 -1.38334 0.0580848)
(-1.47294 -1.64999 0.0407689)
(-1.46506 -1.8867 0.0220955)
(-1.40305 -2.02596 0.0103025)
(-1.28907 -2.02438 -0.00198518)
(-1.20321 -1.85736 -0.0112516)
(-1.09396 -1.39685 -0.0288542)
(-0.755936 -0.833635 -0.0581995)
(-0.321927 -0.324826 -0.0971644)
(-0.0834249 0.055304 -0.11389)
(-0.0111581 0.156238 -0.0943463)
(0.00260563 0.0840018 -0.0390064)
(5.09391e-05 -0.00314925 -0.0797319)
(-0.0465589 0.114915 -0.140287)
(-0.138931 0.314615 -0.16897)
(-0.278493 0.565669 -0.162735)
(-0.45441 0.803267 -0.133481)
(-0.709298 0.993355 -0.0947031)
(-1.06318 1.02819 -0.0605398)
(-1.37529 1.01934 -0.0239707)
(-1.61965 1.05075 0.0100606)
(-1.77821 1.04057 0.0472636)
(-1.86297 0.991121 0.0879685)
(-1.90017 0.906543 0.114931)
(-1.90656 0.809855 0.134051)
(-1.89136 0.699324 0.135339)
(-1.85891 0.585058 0.121346)
(-1.7947 0.457882 0.0933698)
(-1.7002 0.360757 0.0722729)
(-1.58362 0.287654 0.0667448)
(-1.46395 0.253803 0.0941535)
(-1.2909 0.224557 0.123812)
(-1.10477 0.189357 0.17375)
(-1.00715 0.00885578 0.162495)
(-0.99574 -0.125647 0.159265)
(-1.01147 -0.276681 0.146637)
(-1.03907 -0.427567 0.135235)
(-1.07452 -0.601043 0.120764)
(-1.12197 -0.799051 0.104004)
(-1.17666 -1.02929 0.0859612)
(-1.24237 -1.29454 0.0663788)
(-1.30751 -1.58229 0.0469659)
(-1.3579 -1.87487 0.0289226)
(-1.37435 -2.11703 0.0144392)
(-1.33188 -2.25089 0.00262395)
(-1.23544 -2.20412 -0.00563556)
(-1.15061 -1.91028 -0.0139971)
(-0.924974 -1.30461 -0.0307695)
(-0.445645 -0.638028 -0.061709)
(-0.121514 -0.107546 -0.0889503)
(-0.0307509 0.0924799 -0.0837141)
(0.00811533 0.0713355 -0.0352937)
(-0.00719071 0.0438453 -0.0888301)
(-0.0736314 0.220832 -0.158375)
(-0.189282 0.44187 -0.183244)
(-0.340372 0.680194 -0.169088)
(-0.545743 0.8975 -0.133608)
(-0.849085 1.01754 -0.0926579)
(-1.16411 1.05466 -0.0477261)
(-1.41387 1.10519 -0.00570021)
(-1.58223 1.10168 0.0396688)
(-1.65778 1.05693 0.0884571)
(-1.68098 0.975964 0.134137)
(-1.67059 0.885162 0.173614)
(-1.65928 0.791474 0.195999)
(-1.64223 0.688161 0.191532)
(-1.62295 0.572204 0.158649)
(-1.55846 0.440467 0.0961615)
(-1.43341 0.338713 0.0593245)
(-1.27614 0.266656 0.0502462)
(-1.11309 0.264756 0.104306)
(-0.960942 0.297701 0.171403)
(-0.870269 0.239655 0.217782)
(-0.824443 0.0296073 0.18474)
(-0.798599 -0.103581 0.174583)
(-0.812756 -0.246939 0.158383)
(-0.829053 -0.387906 0.142969)
(-0.858788 -0.541944 0.126878)
(-0.900325 -0.72007 0.108053)
(-0.953547 -0.927121 0.0892934)
(-1.02404 -1.17485 0.0688544)
(-1.10424 -1.46083 0.0496051)
(-1.18983 -1.77691 0.030555)
(-1.25832 -2.08911 0.0148859)
(-1.28479 -2.33717 0.00257686)
(-1.24749 -2.43939 -0.0053976)
(-1.14955 -2.30853 -0.0115462)
(-1.00902 -1.83942 -0.0188239)
(-0.64265 -1.06688 -0.0378682)
(-0.204256 -0.395043 -0.0671048)
(-0.0391147 0.0306401 -0.0700333)
(0.0113589 0.0556332 -0.0337304)
(-0.0110109 0.103103 -0.100135)
(-0.0918529 0.338666 -0.172769)
(-0.223878 0.578984 -0.192204)
(-0.388795 0.815651 -0.168863)
(-0.638393 1.00283 -0.128518)
(-0.940099 1.08669 -0.0806373)
(-1.19666 1.14532 -0.0297337)
(-1.37023 1.16123 0.0163306)
(-1.4573 1.11779 0.0705882)
(-1.4676 1.03605 0.128437)
(-1.44327 0.948507 0.190211)
(-1.4118 0.866288 0.240412)
(-1.40048 0.7955 0.272286)
(-1.40584 0.708843 0.267286)
(-1.41771 0.606349 0.220942)
(-1.35687 0.437345 0.150789)
(-1.19945 0.27367 0.112499)
(-0.980737 0.125838 0.117318)
(-0.79548 0.136118 0.192562)
(-0.720439 0.317515 0.281605)
(-0.756782 0.30082 0.310052)
(-0.73274 0.0348048 0.217413)
(-0.664318 -0.107959 0.185713)
(-0.671531 -0.231809 0.168439)
(-0.673441 -0.36561 0.146756)
(-0.691668 -0.49859 0.129524)
(-0.721698 -0.656966 0.108201)
(-0.763184 -0.836662 0.0886951)
(-0.824272 -1.05804 0.0678357)
(-0.900599 -1.32214 0.0482518)
(-0.994156 -1.6372 0.0293026)
(-1.08862 -1.98156 0.0126653)
(-1.16315 -2.31395 0.000295265)
(-1.18218 -2.54949 -0.00742017)
(-1.12622 -2.57925 -0.0118618)
(-0.995439 -2.29593 -0.0150237)
(-0.761491 -1.58175 -0.022032)
(-0.300161 -0.690459 -0.0412121)
(-0.0368127 -0.0857616 -0.0553269)
(-0.0158977 0.0383754 -0.028817)
(-0.0123791 0.171401 -0.109256)
(-0.10221 0.465112 -0.18525)
(-0.245553 0.71975 -0.200395)
(-0.438081 0.948914 -0.171596)
(-0.707341 1.09721 -0.126086)
(-0.963989 1.17701 -0.0738226)
(-1.15107 1.22157 -0.0147213)
(-1.25409 1.18561 0.0352384)
(-1.27738 1.10048 0.100574)
(-1.23804 0.998613 0.173247)
(-1.18457 0.912678 0.250191)
(-1.13766 0.851097 0.322731)
(-1.13959 0.807063 0.377361)
(-1.17322 0.745304 0.395188)
(-1.22297 0.585028 0.362389)
(-1.11136 0.278889 0.245397)
(-0.836879 -0.0148759 0.106909)
(-0.660261 -0.121009 0.0177931)
(-0.656797 0.0244129 0.118798)
(-0.724765 0.443728 0.383792)
(-0.769294 0.423716 0.408789)
(-0.672525 0.00831069 0.202703)
(-0.571707 -0.144462 0.16775)
(-0.562134 -0.231004 0.168501)
(-0.558188 -0.357971 0.144892)
(-0.564769 -0.470211 0.12896)
(-0.585899 -0.611205 0.105583)
(-0.613532 -0.765018 0.085041)
(-0.661264 -0.957538 0.0631074)
(-0.72384 -1.19178 0.0432834)
(-0.809978 -1.4856 0.0240581)
(-0.909881 -1.83438 0.00759526)
(-1.00886 -2.21429 -0.00495105)
(-1.07548 -2.55734 -0.0130446)
(-1.07432 -2.75116 -0.0172676)
(-0.971086 -2.64402 -0.0174554)
(-0.778042 -2.10154 -0.0187421)
(-0.415657 -1.09377 -0.0274936)
(-0.0799261 -0.252976 -0.0414273)
(-0.0150351 0.0152233 -0.0246881)
(-0.0106342 0.236796 -0.115144)
(-0.103015 0.585161 -0.192807)
(-0.258789 0.853368 -0.20524)
(-0.479951 1.05872 -0.174632)
(-0.732437 1.1932 -0.121985)
(-0.925939 1.26385 -0.0653779)
(-1.05886 1.26646 -0.00264352)
(-1.10656 1.17912 0.05332)
(-1.07949 1.06105 0.129882)
(-1.00379 0.946144 0.213352)
(-0.921495 0.867533 0.313721)
(-0.860868 0.827453 0.418431)
(-0.868483 0.817732 0.514843)
(-0.949839 0.736796 0.54903)
(-0.965616 0.492412 0.349317)
(-0.655115 0.167072 -0.104026)
(-0.360993 0.175778 -0.36726)
(-0.475738 0.294147 -0.223298)
(-0.809586 0.412335 0.101903)
(-0.894973 0.703452 0.529799)
(-0.695404 0.498602 0.487218)
(-0.536222 -0.049058 0.17988)
(-0.495207 -0.193198 0.150526)
(-0.465201 -0.243401 0.171814)
(-0.470825 -0.361683 0.14634)
(-0.466866 -0.456943 0.130421)
(-0.483564 -0.584147 0.103872)
(-0.497934 -0.716481 0.0811217)
(-0.532208 -0.882534 0.05738)
(-0.576709 -1.08391 0.0364463)
(-0.647024 -1.34594 0.0168437)
(-0.735443 -1.67619 8.9181e-05)
(-0.840374 -2.07151 -0.0126245)
(-0.93333 -2.48473 -0.0209805)
(-0.978703 -2.81402 -0.0236494)
(-0.926545 -2.89116 -0.0219578)
(-0.755388 -2.53448 -0.01875)
(-0.455077 -1.59624 -0.0207307)
(-0.101487 -0.487156 -0.0308939)
(-0.0172493 -0.0332998 -0.0221436)
(-0.00766065 0.298835 -0.119823)
(-0.0955734 0.703675 -0.199717)
(-0.272979 0.975427 -0.213565)
(-0.491631 1.165 -0.18012)
(-0.705346 1.30056 -0.124514)
(-0.85507 1.33913 -0.0643904)
(-0.936733 1.28667 -0.00132848)
(-0.943434 1.15579 0.0646645)
(-0.88321 1.00862 0.148759)
(-0.776556 0.880386 0.245339)
(-0.663203 0.801526 0.371743)
(-0.571003 0.779627 0.526748)
(-0.608476 0.79744 0.661967)
(-0.689667 0.777852 0.517212)
(-0.521453 0.676206 -0.18256)
(-0.129103 0.63402 -0.862458)
(-0.212778 0.855909 -0.721674)
(-0.645264 0.85058 -0.218804)
(-0.895821 0.616955 0.243118)
(-0.783401 0.640562 0.614118)
(-0.377856 0.412399 0.518557)
(-0.319259 -0.0926627 0.204255)
(-0.398286 -0.22326 0.173955)
(-0.36763 -0.263337 0.183694)
(-0.394265 -0.370466 0.155987)
(-0.385853 -0.454246 0.133219)
(-0.404301 -0.569597 0.103026)
(-0.409649 -0.68571 0.0760722)
(-0.434199 -0.829792 0.0499953)
(-0.462373 -1.00211 0.0270949)
(-0.515515 -1.23036 0.00596119)
(-0.587892 -1.53058 -0.0104465)
(-0.685536 -1.91909 -0.0240489)
(-0.79007 -2.36986 -0.0321074)
(-0.865952 -2.80232 -0.0339768)
(-0.86659 -3.04644 -0.0300957)
(-0.738479 -2.88442 -0.0239468)
(-0.486335 -2.08149 -0.0211489)
(-0.127421 -0.828868 -0.0243568)
(-0.00617252 -0.112812 -0.021541)
(-0.00118585 0.342753 -0.121371)
(-0.093492 0.79955 -0.20286)
(-0.274395 1.07567 -0.220787)
(-0.471176 1.27079 -0.182697)
(-0.654423 1.38829 -0.127837)
(-0.768226 1.38733 -0.0657603)
(-0.816346 1.28364 -0.000698414)
(-0.797082 1.11589 0.068436)
(-0.715135 0.942092 0.155481)
(-0.581688 0.793647 0.255317)
(-0.4288 0.700627 0.409712)
(-0.333919 0.692598 0.60786)
(-0.397469 0.829476 0.609482)
(-0.323401 1.13822 0.021768)
(-0.0243775 1.33787 -0.848592)
(-0.0642321 1.25252 -1.03918)
(-0.53856 1.17548 -0.625108)
(-0.716432 0.827146 -0.172235)
(-0.661126 0.45877 0.160667)
(-0.564153 0.452065 0.474805)
(-0.150939 0.351799 0.496872)
(-0.166366 -0.0759379 0.269226)
(-0.306276 -0.216987 0.226734)
(-0.27863 -0.270173 0.209224)
(-0.320659 -0.37648 0.173456)
(-0.311635 -0.454957 0.140277)
(-0.335289 -0.563838 0.104707)
(-0.336366 -0.669077 0.0721996)
(-0.356093 -0.795908 0.0429564)
(-0.372427 -0.94264 0.0176182)
(-0.410422 -1.1365 -0.00476438)
(-0.464723 -1.40175 -0.0219085)
(-0.548735 -1.7654 -0.035982)
(-0.651681 -2.22866 -0.04428)
(-0.745567 -2.73037 -0.0453998)
(-0.784743 -3.11986 -0.0395513)
(-0.700717 -3.14411 -0.0303319)
(-0.486426 -2.51428 -0.023501)
(-0.138231 -1.18982 -0.0213126)
(0.0242616 -0.155777 -0.020138)
(0.00125028 0.382485 -0.12103)
(-0.0858313 0.891136 -0.208909)
(-0.252507 1.19194 -0.226274)
(-0.427308 1.38379 -0.19006)
(-0.586759 1.4762 -0.136021)
(-0.676996 1.43437 -0.0741525)
(-0.702903 1.28504 -0.0095881)
(-0.670613 1.08496 0.0609485)
(-0.583295 0.879691 0.140967)
(-0.431167 0.703415 0.233773)
(-0.255514 0.580178 0.411128)
(-0.185646 0.611314 0.553913)
(-0.149124 1.05203 0.273831)
(0.224098 1.58739 -0.272975)
(0.218917 1.61596 -0.430454)
(-0.189109 1.20421 -0.397231)
(-0.630415 0.923935 -0.288787)
(-0.614479 0.625089 -0.0944179)
(-0.464615 0.436435 0.0633579)
(-0.520911 0.406026 0.338577)
(-0.0909937 0.276217 0.472585)
(-0.0854178 -0.0947971 0.33143)
(-0.238821 -0.228086 0.277999)
(-0.202408 -0.262397 0.232071)
(-0.252747 -0.373468 0.192777)
(-0.241974 -0.452953 0.145684)
(-0.273822 -0.5571 0.105185)
(-0.2723 -0.656319 0.0666438)
(-0.289363 -0.771978 0.0349716)
(-0.296456 -0.901068 0.00627766)
(-0.32453 -1.06708 -0.0170212)
(-0.366167 -1.30031 -0.0350829)
(-0.436758 -1.63243 -0.0489926)
(-0.533127 -2.09095 -0.0574199)
(-0.634045 -2.63795 -0.0582118)
(-0.700573 -3.14889 -0.0509215)
(-0.655258 -3.35087 -0.0393306)
(-0.477337 -2.90356 -0.0291768)
(-0.15141 -1.5883 -0.0221727)
(0.0550216 -0.237522 -0.0214305)
(0.00166599 0.397638 -0.121964)
(-0.0689113 0.960121 -0.210404)
(-0.218405 1.29104 -0.228812)
(-0.37748 1.47325 -0.19706)
(-0.515548 1.53695 -0.142631)
(-0.594885 1.45914 -0.0863326)
(-0.616556 1.27685 -0.0216382)
(-0.589336 1.05066 0.04442)
(-0.507157 0.818799 0.106225)
(-0.35215 0.605919 0.17705)
(-0.216609 0.424104 0.329706)
(-0.19897 0.567029 0.302014)
(-0.00786821 1.14825 -0.0277511)
(0.392067 1.32857 0.21141)
(0.300751 0.936926 0.762691)
(0.0136052 0.671556 0.227828)
(-0.436168 0.385629 0.0012078)
(-0.449295 0.243258 0.26932)
(-0.132738 0.123379 0.276857)
(-0.227744 0.0916559 0.333248)
(0.119736 0.0346228 0.448553)
(0.114324 -0.170729 0.371467)
(-0.113643 -0.272629 0.323017)
(-0.0972625 -0.249142 0.240472)
(-0.184862 -0.344933 0.196132)
(-0.169804 -0.426619 0.147171)
(-0.208456 -0.539609 0.104052)
(-0.210548 -0.642419 0.0603333)
(-0.230751 -0.750169 0.025504)
(-0.234066 -0.86286 -0.00523489)
(-0.256415 -1.00313 -0.0302239)
(-0.28425 -1.20212 -0.0487643)
(-0.340428 -1.49932 -0.0630735)
(-0.426794 -1.94429 -0.0709318)
(-0.532911 -2.51965 -0.0710582)
(-0.620259 -3.13067 -0.0624021)
(-0.612202 -3.49682 -0.0487023)
(-0.466985 -3.23135 -0.0354603)
(-0.17 -1.95012 -0.0249963)
(0.0618041 -0.286685 -0.022571)
(0.00477437 0.424255 -0.117767)
(-0.0351454 1.0391 -0.205759)
(-0.169338 1.40245 -0.235666)
(-0.325454 1.57621 -0.204551)
(-0.447536 1.61638 -0.152714)
(-0.523196 1.51094 -0.0958815)
(-0.54819 1.31202 -0.0365135)
(-0.534541 1.06572 0.0203111)
(-0.471597 0.804674 0.0536165)
(-0.378772 0.547824 0.0792244)
(-0.397932 0.337847 0.145255)
(-0.621167 0.600166 -0.0454827)
(-0.415769 0.700565 -0.0202217)
(-0.211035 0.305038 0.856633)
(-0.539149 0.476675 0.756099)
(-0.370488 0.847374 -0.430658)
(-0.160073 0.341142 -0.13355)
(-0.0551459 -0.223244 0.808129)
(0.384282 -0.297804 0.806496)
(0.249904 -0.194499 0.300162)
(0.524284 -0.122679 0.328972)
(0.516702 -0.251028 0.438552)
(0.0739169 -0.312782 0.360996)
(0.059511 -0.237727 0.24565)
(-0.0982924 -0.301423 0.185444)
(-0.109415 -0.361831 0.118912)
(-0.161698 -0.461569 0.0821008)
(-0.154346 -0.576929 0.0461687)
(-0.167403 -0.698252 0.0151163)
(-0.165668 -0.823103 -0.0183547)
(-0.185985 -0.956514 -0.0427983)
(-0.209544 -1.1308 -0.0614478)
(-0.257649 -1.38491 -0.0742907)
(-0.332577 -1.79853 -0.0822212)
(-0.432221 -2.38373 -0.0836909)
(-0.531511 -3.0856 -0.0742348)
(-0.556801 -3.61533 -0.0581458)
(-0.445357 -3.54293 -0.04192)
(-0.175052 -2.33834 -0.0288623)
(0.0666854 -0.404575 -0.0229812)
(-0.00286349 0.434635 -0.117801)
(-0.03747 1.12754 -0.211594)
(-0.137016 1.50343 -0.233726)
(-0.273075 1.69078 -0.2135)
(-0.382099 1.70834 -0.159725)
(-0.447437 1.58462 -0.108419)
(-0.479943 1.37778 -0.0518074)
(-0.494082 1.12964 -0.00590479)
(-0.478574 0.878413 -0.00674878)
(-0.493536 0.606235 -0.0395108)
(-0.796713 0.446047 -0.0402648)
(-1.47653 0.572265 -0.224111)
(-1.56847 0.0075706 0.195567)
(-1.61303 -0.178033 0.543715)
(-1.44442 1.73556 -0.968562)
(-0.556021 1.91381 -2.03515)
(0.708011 0.26809 -0.956526)
(0.762808 -0.490592 0.638148)
(0.900789 -0.396606 1.14624)
(0.727675 -0.157255 0.33826)
(1.00715 -0.17366 0.208173)
(1.02854 -0.34326 0.509064)
(0.34171 -0.380712 0.454325)
(0.259332 -0.252381 0.26192)
(0.0308641 -0.263538 0.195242)
(-0.00111889 -0.301216 0.108728)
(-0.0974609 -0.386549 0.0555602)
(-0.126937 -0.478663 0.0130641)
(-0.153565 -0.583121 -0.0131925)
(-0.146085 -0.697902 -0.0407048)
(-0.148188 -0.818122 -0.0598026)
(-0.148337 -0.984815 -0.078026)
(-0.177114 -1.22042 -0.0919675)
(-0.233401 -1.61771 -0.0985983)
(-0.333087 -2.2019 -0.0976189)
(-0.447999 -2.96259 -0.0864114)
(-0.509163 -3.64966 -0.0683234)
(-0.447902 -3.7817 -0.0484453)
(-0.212139 -2.6767 -0.0352059)
(0.0467259 -0.461518 -0.0264038)
(0.0107731 0.541293 -0.105564)
(-0.0102824 1.30082 -0.199402)
(-0.0792247 1.69768 -0.229876)
(-0.190107 1.8946 -0.215975)
(-0.299961 1.9112 -0.169104)
(-0.3548 1.79087 -0.121959)
(-0.38466 1.59286 -0.0661021)
(-0.419003 1.37247 -0.0170415)
(-0.476434 1.15503 -0.0220584)
(-0.616594 0.910674 -0.0730929)
(-1.22268 0.807891 -0.158786)
(-2.05519 0.758106 -0.431385)
(-2.50797 -0.12513 -0.160343)
(-2.23965 -0.139038 -0.4432)
(-0.707005 2.68753 -2.13244)
(0.445447 1.92125 -2.20429)
(1.75987 -0.742943 -1.44142)
(1.59017 -0.393691 -1.29271)
(1.6238 0.0974064 0.19717)
(1.54692 -0.103289 0.771061)
(1.52564 -0.32148 0.499216)
(1.50988 -0.436822 0.624582)
(0.530699 -0.406795 0.512817)
(0.455783 -0.255621 0.255136)
(0.190548 -0.228537 0.203713)
(0.0994373 -0.250439 0.111587)
(-0.0122469 -0.327509 0.0505723)
(-0.0356143 -0.422088 -0.000405436)
(-0.077413 -0.50062 -0.0309841)
(-0.085357 -0.587593 -0.0587278)
(-0.114534 -0.679088 -0.0698113)
(-0.136263 -0.807192 -0.0759725)
(-0.174483 -0.993626 -0.084739)
(-0.2132 -1.32195 -0.0922834)
(-0.251714 -1.87932 -0.10704)
(-0.33758 -2.72749 -0.0956588)
(-0.422623 -3.57108 -0.0756171)
(-0.408203 -3.9533 -0.0522338)
(-0.20772 -3.05401 -0.0373023)
(0.057416 -0.670195 -0.0246414)
(-0.010806 0.753467 -0.11713)
(-0.0129434 1.57907 -0.211514)
(-0.0497463 2.01187 -0.243414)
(-0.121204 2.17339 -0.220874)
(-0.203288 2.19755 -0.178977)
(-0.254901 2.06506 -0.131677)
(-0.283355 1.86635 -0.0703106)
(-0.342416 1.64936 -0.0133188)
(-0.453684 1.44806 -0.011467)
(-0.705853 1.25919 -0.0720857)
(-1.42396 1.23815 -0.354159)
(-1.94041 1.16622 -0.692423)
(-2.63388 -0.217757 -0.322264)
(-2.8567 -0.681343 -0.0134409)
(-0.540283 1.61873 -0.83691)
(0.971954 0.071403 -0.426403)
(1.49321 -2.38987 -0.717911)
(1.29042 -1.01705 -2.41905)
(1.60776 0.248655 -2.07942)
(1.83112 0.178157 0.383465)
(1.49285 -0.0343284 0.777143)
(1.46691 -0.305301 0.507059)
(0.394376 -0.335938 0.483755)
(0.513628 -0.362596 0.298189)
(0.347358 -0.295518 0.334309)
(0.197101 -0.229621 0.19037)
(0.048413 -0.251408 0.0535015)
(0.0122966 -0.369412 -0.0148257)
(-0.0169333 -0.452036 -0.0491276)
(-0.0247914 -0.539977 -0.0710918)
(-0.0453012 -0.615415 -0.0863033)
(-0.0591937 -0.705858 -0.0914271)
(-0.0858725 -0.818033 -0.100683)
(-0.15323 -1.06158 -0.0891339)
(-0.300114 -1.51408 -0.0796381)
(-0.380405 -2.3039 -0.0833664)
(-0.412968 -3.27267 -0.0778722)
(-0.425537 -3.9141 -0.0561847)
(-0.267101 -3.31243 -0.0435401)
(0.00750057 -0.994145 -0.0327279)
(-0.0354758 0.778567 -0.100565)
(-0.0321433 1.67635 -0.197765)
(-0.0309432 2.15117 -0.232763)
(-0.0646626 2.32562 -0.220538)
(-0.114557 2.32756 -0.167514)
(-0.166253 2.20118 -0.124461)
(-0.19368 1.99495 -0.0559066)
(-0.249857 1.79012 0.00233843)
(-0.374354 1.61885 0.00825183)
(-0.627012 1.51312 -0.0861402)
(-1.41156 1.53594 -0.3796)
(-2.01109 1.34011 -0.335087)
(-2.92995 0.0180512 0.313903)
(-3.21392 -1.29851 0.920205)
(-0.835568 -0.76891 1.83117)
(0.373514 -2.59963 1.8855)
(-0.173157 -3.50802 -0.0687036)
(-0.4049 -1.57776 -2.15146)
(-0.298471 -0.110641 -3.37221)
(0.564479 0.349905 -1.24304)
(0.829848 -0.0645713 -0.143287)
(1.32881 -0.387296 -0.602596)
(0.821805 -0.738144 -0.152319)
(0.496081 -0.630809 0.159358)
(0.32782 -0.35443 0.652273)
(0.196025 -0.229311 0.566574)
(0.0870763 -0.186349 0.136551)
(0.067423 -0.334451 -0.0412821)
(0.0442667 -0.419699 -0.0650437)
(0.0356998 -0.506954 -0.0787931)
(0.0131627 -0.576045 -0.0902264)
(0.00585712 -0.658967 -0.10008)
(-0.0171896 -0.75154 -0.109474)
(-0.0449513 -0.955116 -0.100692)
(-0.149059 -1.2933 -0.0970533)
(-0.344739 -1.93603 -0.0681927)
(-0.464765 -2.84944 -0.0629432)
(-0.481852 -3.62809 -0.0488244)
(-0.37375 -3.29295 -0.0366941)
(-0.0807095 -1.06347 -0.027696)
(-0.0222513 0.751884 -0.0932989)
(-0.00782991 1.67497 -0.188789)
(0.0083576 2.16648 -0.224784)
(-0.00843236 2.36575 -0.211471)
(-0.0302977 2.35861 -0.162625)
(-0.0615289 2.24003 -0.0986395)
(-0.0872336 2.05104 -0.0247146)
(-0.143048 1.88075 0.0420072)
(-0.236329 1.75119 0.0548965)
(-0.437297 1.73203 0.0377228)
(-1.50667 1.82803 0.0609523)
(-2.69533 1.20013 0.658252)
(-4.26519 -0.0729408 1.20659)
(-2.87114 -2.00188 0.52323)
(-0.113716 -2.25023 1.83497)
(0.51613 -2.74812 1.88453)
(-1.12394 -2.56037 -1.11747)
(-1.71737 -0.925084 -2.66274)
(-1.89636 0.257426 -3.34436)
(-0.750176 0.939218 -2.59203)
(0.021086 0.286367 -1.70585)
(0.735371 -0.37578 -1.9585)
(0.841905 -0.470778 -1.53576)
(-0.089915 -0.0928471 -0.572387)
(-0.0315981 -0.0778458 0.777646)
(0.124142 -0.0740584 0.91302)
(0.192935 -0.0689089 0.234836)
(0.170042 -0.303654 -0.0602085)
(0.10698 -0.40264 -0.09695)
(0.0902106 -0.490682 -0.102218)
(0.0729466 -0.552452 -0.108654)
(0.0687211 -0.622064 -0.112733)
(0.0355693 -0.698354 -0.112138)
(0.0163281 -0.855252 -0.113559)
(-0.0677187 -1.17381 -0.102324)
(-0.225397 -1.75178 -0.0808244)
(-0.379869 -2.53386 -0.060734)
(-0.459442 -3.34226 -0.0480134)
(-0.380557 -3.20153 -0.0324938)
(-0.125373 -1.12337 -0.0261437)
(-0.0103676 0.729683 -0.0793583)
(0.0165361 1.63241 -0.167597)
(0.0417349 2.13956 -0.207096)
(0.0420589 2.36059 -0.201211)
(0.0364201 2.36831 -0.15228)
(0.0182087 2.25213 -0.0832464)
(0.0124124 2.06325 -0.00408187)
(-0.00471085 1.90562 0.100601)
(-0.0360723 1.79393 0.122022)
(-0.0735859 1.79588 0.233754)
(-1.07942 2.00977 0.487876)
(-1.9664 1.37657 1.1645)
(-3.58262 -0.312543 1.66192)
(-1.60447 -1.62539 -0.489326)
(1.27762 -1.23892 0.796875)
(1.443 -1.26203 1.13921)
(-0.0405195 -1.47381 -1.51866)
(-1.1776 -0.175103 -2.89023)
(-1.10207 0.730682 -2.27368)
(0.030543 1.76857 -1.0868)
(0.354515 1.70045 -0.894493)
(-0.108462 0.720153 -1.79439)
(0.0458635 0.725549 -1.56619)
(-0.357819 0.766998 -0.396317)
(0.00758737 -0.0223465 0.53029)
(0.414977 -0.266832 0.518475)
(0.481437 -0.0828257 0.159493)
(0.314245 -0.162164 -0.0440429)
(0.19072 -0.320695 -0.129669)
(0.154491 -0.466568 -0.130039)
(0.13909 -0.544216 -0.12683)
(0.136614 -0.614678 -0.125305)
(0.112509 -0.680159 -0.122122)
(0.0796008 -0.816347 -0.115456)
(0.00153463 -1.08557 -0.104368)
(-0.118488 -1.62959 -0.0871863)
(-0.279346 -2.38194 -0.0658007)
(-0.396166 -3.22097 -0.0423958)
(-0.374452 -3.25031 -0.0270247)
(-0.145655 -1.34466 -0.0222638)
(-0.00397999 0.677044 -0.0646453)
(0.0390135 1.54951 -0.147122)
(0.0817652 2.07609 -0.18686)
(0.0941155 2.32099 -0.1822)
(0.103874 2.34849 -0.135716)
(0.0912325 2.24147 -0.0586601)
(0.102601 2.05871 0.0268785)
(0.10413 1.87876 0.147536)
(0.128237 1.74125 0.20695)
(0.253635 1.66139 0.294205)
(-0.124655 1.75102 0.616274)
(-0.179975 1.55189 0.834119)
(-1.12056 -0.0299273 0.895482)
(-0.693558 -0.759985 -0.677153)
(1.83693 -0.266587 0.891851)
(1.99643 -1.61529 2.94317)
(1.13694 -2.50712 0.77096)
(-0.10214 -0.70513 -1.58699)
(0.317036 0.0271726 -1.47072)
(1.56683 0.914467 0.497029)
(1.86536 2.04954 0.587998)
(0.198336 2.48941 -0.839519)
(0.208185 2.05156 -0.547012)
(1.2667 1.11032 0.782313)
(1.18032 -0.288402 0.506279)
(0.724933 -0.590718 0.0893319)
(0.423137 -0.0684309 0.0662494)
(0.236637 0.0343732 -0.0926449)
(0.188275 -0.206968 -0.202406)
(0.183582 -0.438685 -0.179206)
(0.176627 -0.536914 -0.158618)
(0.182047 -0.602152 -0.147984)
(0.153927 -0.650298 -0.137808)
(0.124404 -0.774274 -0.122759)
(0.0353434 -1.00527 -0.117903)
(-0.0485423 -1.5198 -0.102005)
(-0.186915 -2.29646 -0.0707909)
(-0.322987 -3.22552 -0.043106)
(-0.345217 -3.3912 -0.0257681)
(-0.143717 -1.5775 -0.0249341)
(0.00104468 0.620507 -0.0505838)
(0.0558688 1.45847 -0.125865)
(0.112714 2.0014 -0.16631)
(0.138123 2.26843 -0.164239)
(0.156697 2.31521 -0.121345)
(0.152497 2.2116 -0.0417374)
(0.164963 2.03248 0.0473382)
(0.1817 1.81733 0.178901)
(0.212506 1.64154 0.276586)
(0.364479 1.44494 0.371436)
(0.225216 1.25841 0.753343)
(0.256172 1.13011 0.523697)
(-0.0602504 0.513175 -0.167144)
(-0.972388 0.187672 -0.37848)
(0.529116 -0.0968982 0.735)
(2.21896 -2.22578 2.4686)
(1.95701 -3.07479 2.38535)
(0.261864 -2.20535 0.109534)
(0.201665 -1.75792 -0.796338)
(0.933831 -1.17694 -0.0317233)
(1.07796 -0.30702 -0.383067)
(0.12102 1.01181 -1.12889)
(0.966232 1.38249 -0.39462)
(2.79971 0.83848 1.00847)
(2.17565 0.197353 0.831159)
(0.791818 -0.00224353 0.369975)
(0.298229 0.144926 0.190538)
(0.19352 0.162291 -0.169604)
(0.197471 -0.135279 -0.301004)
(0.227341 -0.424862 -0.2545)
(0.248846 -0.550962 -0.204643)
(0.264396 -0.628741 -0.167633)
(0.227477 -0.681216 -0.142836)
(0.195713 -0.790019 -0.122832)
(0.0993813 -0.995694 -0.120215)
(0.0119586 -1.48377 -0.103253)
(-0.129845 -2.30741 -0.0707742)
(-0.264014 -3.35206 -0.0399187)
(-0.327258 -3.68732 -0.0213785)
(-0.141876 -1.91734 -0.0208877)
(0.00365315 0.549056 -0.0362333)
(0.0673439 1.34534 -0.10499)
(0.137598 1.90181 -0.145261)
(0.174205 2.19309 -0.14586)
(0.199083 2.26101 -0.108026)
(0.197626 2.16875 -0.0302543)
(0.201815 1.99281 0.056483)
(0.209796 1.76602 0.185591)
(0.216318 1.54818 0.302475)
(0.284518 1.30925 0.41483)
(0.175394 0.960514 0.695309)
(-0.0465966 0.861432 0.483986)
(-0.0222196 1.40502 -0.266474)
(-0.952562 2.03253 0.320614)
(-0.565037 0.85803 0.523898)
(2.69219 -1.59259 0.657252)
(3.31444 -2.19868 0.762468)
(1.06627 -2.55807 0.52737)
(0.158126 -2.92074 0.533404)
(-0.271322 -2.12978 -0.165403)
(-0.775833 -1.58315 -1.12019)
(-1.89601 -1.04396 -1.2423)
(-0.819372 -0.52746 -0.272301)
(1.51113 0.410025 0.799097)
(1.58896 1.00559 0.801617)
(0.815546 0.563533 0.837097)
(0.440651 0.196289 0.839137)
(0.249751 0.205294 0.231658)
(0.162189 -0.024011 -0.137317)
(0.20764 -0.382066 -0.252382)
(0.265711 -0.590599 -0.26514)
(0.298594 -0.721019 -0.232497)
(0.266868 -0.810768 -0.197355)
(0.234178 -0.939615 -0.161592)
(0.146252 -1.13907 -0.155225)
(0.0489114 -1.61452 -0.127059)
(-0.0991526 -2.4482 -0.093196)
(-0.211728 -3.62088 -0.0526834)
(-0.283178 -4.16438 -0.0273077)
(-0.121184 -2.53267 -0.0230086)
(0.0120193 0.486715 -0.0261114)
(0.0824777 1.23462 -0.0878678)
(0.156466 1.80174 -0.127277)
(0.201833 2.1206 -0.131418)
(0.232203 2.21456 -0.0997312)
(0.234532 2.14115 -0.0295651)
(0.231284 1.9779 0.0507637)
(0.225033 1.75823 0.168175)
(0.213066 1.53543 0.282472)
(0.200013 1.31298 0.383172)
(0.130205 1.00486 0.526752)
(-0.20793 0.900293 0.520745)
(-0.401682 1.58974 0.0789689)
(-0.415013 2.52606 0.145946)
(-0.536958 1.58634 0.593825)
(0.862839 -0.576445 0.865898)
(2.11257 -1.27369 -0.203112)
(2.18584 -2.16396 -0.485063)
(1.80182 -2.41014 0.681574)
(-0.100507 -1.2305 0.435846)
(-1.10072 -0.58255 -0.619148)
(-1.77985 -0.953619 -0.900004)
(-1.63172 -1.60413 -0.061737)
(-0.11259 0.00765138 0.788029)
(0.749392 1.38219 0.836136)
(0.865773 1.00148 1.13632)
(0.758776 0.369178 1.22134)
(0.517428 0.16715 0.6878)
(0.282578 -0.0443398 0.141292)
(0.200779 -0.370968 -0.155314)
(0.229129 -0.571259 -0.280121)
(0.286671 -0.72225 -0.252314)
(0.271945 -0.828993 -0.213198)
(0.243392 -0.987006 -0.183566)
(0.155945 -1.15444 -0.155342)
(0.0637342 -1.64059 -0.136423)
(-0.0939873 -2.4764 -0.099631)
(-0.20605 -3.7912 -0.0600707)
(-0.303144 -4.57395 -0.0329702)
(-0.144471 -3.15521 -0.0299007)
(0.0158269 0.427557 -0.0168382)
(0.094128 1.1054 -0.073245)
(0.172161 1.67511 -0.11175)
(0.221833 2.01835 -0.119949)
(0.258191 2.1413 -0.0955635)
(0.266613 2.09396 -0.0352207)
(0.261174 1.95146 0.037319)
(0.245372 1.75255 0.142896)
(0.227461 1.55061 0.24796)
(0.178508 1.35739 0.350961)
(0.11701 1.15693 0.427359)
(-0.187046 0.999096 0.492493)
(-0.697654 1.38334 0.110902)
(-0.550144 2.22473 -0.37534)
(-0.54246 2.09237 -0.00341869)
(-1.0486 0.952409 0.583425)
(-0.850724 -0.0210025 -0.205311)
(0.672095 -1.51773 -1.04515)
(1.09256 -0.89142 -0.48536)
(-0.285078 0.473881 -0.382893)
(-0.950473 0.191894 -1.07913)
(-1.06142 -0.620271 -0.943041)
(-1.67334 -1.65581 0.136732)
(-1.43432 -0.350266 1.00221)
(0.0696387 1.45863 0.866877)
(1.04725 1.23554 0.852867)
(1.05101 0.289387 0.763729)
(0.638955 -0.171971 0.405667)
(0.322779 -0.382565 0.000318071)
(0.244076 -0.489128 -0.217501)
(0.246359 -0.539451 -0.270579)
(0.292858 -0.645421 -0.22656)
(0.267258 -0.73578 -0.193976)
(0.274146 -0.905769 -0.177042)
(0.176606 -1.07418 -0.15489)
(0.0727696 -1.51163 -0.140057)
(-0.0799649 -2.33478 -0.1038)
(-0.200876 -3.74658 -0.0643406)
(-0.322803 -4.76031 -0.036859)
(-0.170793 -3.60803 -0.0320812)
(0.0118116 0.379154 -0.0126544)
(0.0963358 0.991515 -0.0640248)
(0.186396 1.55168 -0.101007)
(0.235871 1.92593 -0.113706)
(0.27845 2.08136 -0.0969725)
(0.298241 2.06532 -0.0472143)
(0.299327 1.94386 0.0188681)
(0.286815 1.76796 0.110676)
(0.271115 1.58667 0.209347)
(0.231555 1.41791 0.306791)
(0.161746 1.28808 0.392916)
(-0.0145417 1.17005 0.449363)
(-0.438908 1.3818 0.307013)
(-0.679824 2.09921 -0.149072)
(-0.513739 2.62672 -0.307722)
(-0.783359 2.47378 -0.0225067)
(-1.64484 1.67608 0.259802)
(-1.99149 0.386236 -0.0139691)
(-2.02738 1.0045 -0.250985)
(-1.59723 1.56579 -0.746129)
(-0.993395 0.84555 -1.44377)
(-0.805766 0.583531 -1.1996)
(-1.57856 0.0186448 0.26043)
(-1.94668 0.14012 1.3201)
(-0.337004 1.01136 0.568873)
(0.858923 0.749879 -0.0798211)
(0.875881 -0.0537894 -0.245881)
(0.573898 -0.427846 -0.355007)
(0.350056 -0.5023 -0.344914)
(0.346623 -0.483133 -0.282621)
(0.332002 -0.471695 -0.211217)
(0.331776 -0.555863 -0.172006)
(0.276105 -0.632767 -0.158042)
(0.260199 -0.801607 -0.148085)
(0.202104 -0.971725 -0.140682)
(0.110973 -1.39335 -0.126047)
(-0.0757664 -2.1473 -0.0976271)
(-0.185758 -3.62121 -0.0575116)
(-0.341832 -4.83246 -0.0327452)
(-0.192263 -3.99501 -0.026382)
(0.0105543 0.320481 -0.0100606)
(0.0917007 0.867188 -0.0580198)
(0.196545 1.39176 -0.0923912)
(0.252935 1.7886 -0.110309)
(0.291909 1.97546 -0.10127)
(0.320945 1.99118 -0.0617924)
(0.333662 1.89291 -0.00175463)
(0.332343 1.73929 0.0772223)
(0.32674 1.57148 0.167846)
(0.307386 1.41696 0.262761)
(0.268426 1.30434 0.352354)
(0.171216 1.23634 0.437741)
(-0.0209704 1.32556 0.451435)
(-0.217515 1.73052 0.342942)
(-0.325491 2.3261 0.186547)
(-0.405208 2.76437 0.0498604)
(-0.859136 2.44667 0.338977)
(-1.69081 1.70045 0.396311)
(-2.02888 1.50337 0.467573)
(-1.31568 1.36459 0.506141)
(-0.477769 1.27078 0.307726)
(0.268796 1.84915 0.487094)
(0.064288 1.91546 1.46193)
(-0.778806 1.09562 1.59708)
(-0.429359 0.959474 0.315622)
(0.330036 0.921436 -0.540411)
(0.63573 0.406214 -0.622515)
(0.672261 -0.0719482 -0.546879)
(0.516665 -0.220042 -0.362359)
(0.482632 -0.30316 -0.208292)
(0.404295 -0.350234 -0.140522)
(0.378546 -0.462777 -0.12024)
(0.293304 -0.535065 -0.115819)
(0.273951 -0.709662 -0.119128)
(0.18827 -0.843912 -0.121529)
(0.142222 -1.28203 -0.111612)
(-0.0408152 -1.95956 -0.0884183)
(-0.164967 -3.46272 -0.0489771)
(-0.348957 -4.83266 -0.0259198)
(-0.217322 -4.33808 -0.0182323)
(0.0052302 0.2811 -0.00920818)
(0.0737289 0.777984 -0.0549577)
(0.187858 1.26965 -0.0876262)
(0.26442 1.66974 -0.106561)
(0.304057 1.89456 -0.107712)
(0.339175 1.93947 -0.0777228)
(0.367899 1.86736 -0.0278465)
(0.381247 1.72226 0.0411474)
(0.388675 1.56133 0.120535)
(0.391002 1.39987 0.206012)
(0.384513 1.2753 0.290936)
(0.362068 1.18514 0.37848)
(0.296757 1.19029 0.47572)
(0.215944 1.31404 0.535459)
(0.104574 1.57857 0.555228)
(-0.0188848 1.96361 0.386494)
(-0.20073 2.06438 0.286937)
(-0.551437 1.69999 0.183818)
(-0.814881 1.04935 0.0603462)
(-0.671345 0.446849 0.366624)
(-0.346892 0.535658 0.868702)
(0.474059 1.22855 1.68202)
(0.7392 1.55778 2.41467)
(-0.0944197 1.08556 1.77127)
(-0.23601 0.844031 0.507583)
(0.384577 0.955619 -0.104468)
(0.770679 0.59473 -0.123895)
(0.793112 0.161442 -0.163309)
(0.566279 -0.0208644 -0.116719)
(0.510013 -0.14327 -0.0745361)
(0.433116 -0.230744 -0.060041)
(0.413442 -0.361868 -0.0639609)
(0.310406 -0.433077 -0.072725)
(0.291728 -0.607135 -0.0854672)
(0.180424 -0.729822 -0.0973307)
(0.170518 -1.13061 -0.0942217)
(-0.0156424 -1.78258 -0.0702525)
(-0.132219 -3.28058 -0.0370615)
(-0.362932 -4.80402 -0.0171468)
(-0.241629 -4.68348 -0.00879198)
(0.00936266 0.227887 -0.00976013)
(0.0627541 0.671298 -0.0546129)
(0.164124 1.12093 -0.0858485)
(0.263712 1.49404 -0.102866)
(0.314135 1.73968 -0.111036)
(0.344416 1.81682 -0.091991)
(0.379392 1.77239 -0.0519263)
(0.408048 1.64131 0.0082115)
(0.430388 1.49501 0.0730419)
(0.447115 1.33378 0.144484)
(0.461952 1.19659 0.216556)
(0.470175 1.07907 0.288472)
(0.463726 1.00338 0.368756)
(0.456263 0.986202 0.446022)
(0.431404 1.02388 0.519963)
(0.384098 1.15021 0.463353)
(0.346147 1.26021 0.349032)
(0.217956 1.23597 0.292136)
(0.0995479 0.870817 0.0667131)
(0.102074 0.2479 -0.0941747)
(0.168186 -0.0664224 0.229168)
(0.527513 -0.0153322 0.844294)
(0.746162 -0.0827035 1.31241)
(0.380601 -0.0728055 1.20408)
(0.344546 0.0785965 0.541526)
(0.793513 0.269847 0.130233)
(0.961346 0.156479 0.0826746)
(0.855727 0.0265147 0.0305893)
(0.612276 -0.0257072 0.018351)
(0.548181 -0.0953107 0.0177004)
(0.45208 -0.157837 0.000265065)
(0.454223 -0.283609 -0.01729)
(0.34067 -0.340795 -0.0378054)
(0.324905 -0.515393 -0.0565313)
(0.19329 -0.619673 -0.0728259)
(0.192692 -1.0054 -0.0743453)
(0.00336561 -1.61551 -0.0524372)
(-0.0921095 -3.11756 -0.0251613)
(-0.388116 -4.77714 -0.00889707)
(-0.273175 -5.0939 -0.000261276)
(0.00665023 0.204868 -0.0104823)
(0.0307779 0.618206 -0.0579238)
(0.104712 1.04358 -0.0858022)
(0.225769 1.40333 -0.103346)
(0.314254 1.63055 -0.109932)
(0.359411 1.73594 -0.104537)
(0.390548 1.71203 -0.0763581)
(0.437234 1.59342 -0.0282243)
(0.478913 1.45277 0.0254935)
(0.507414 1.29428 0.0836585)
(0.537366 1.14994 0.141088)
(0.560087 1.01719 0.196382)
(0.576442 0.909601 0.250617)
(0.588514 0.829939 0.297555)
(0.598222 0.771424 0.344771)
(0.590976 0.753402 0.343639)
(0.614858 0.752764 0.251109)
(0.679236 0.738602 0.168907)
(0.802184 0.65641 0.130649)
(0.900428 0.404425 0.186537)
(0.94838 0.148247 0.283449)
(1.08741 -0.0276624 0.257322)
(1.13424 -0.301657 0.221803)
(1.04734 -0.386091 0.285103)
(0.988782 -0.160563 0.231256)
(1.08699 -0.00478937 0.129059)
(1.10449 0.031197 0.102508)
(0.948697 -0.00431746 0.0676483)
(0.687091 -0.0153069 0.0411677)
(0.634487 -0.0582731 0.0345351)
(0.515148 -0.0778601 0.0225198)
(0.523774 -0.195141 0.00514721)
(0.389046 -0.232082 -0.0159997)
(0.382864 -0.394774 -0.0351565)
(0.217459 -0.482708 -0.0521995)
(0.230039 -0.852856 -0.0564341)
(0.0197096 -1.42596 -0.0333715)
(-0.0499793 -2.91605 -0.0158761)
(-0.429222 -4.74525 -0.00350136)
(-0.310001 -5.59588 0.00419114)
(0.016426 0.176703 -0.0152015)
(0.0325733 0.522402 -0.0621102)
(0.0541145 0.937588 -0.0930332)
(0.15112 1.24592 -0.104831)
(0.267072 1.45221 -0.114314)
(0.34986 1.54555 -0.108213)
(0.378384 1.56067 -0.0981104)
(0.429694 1.45638 -0.0598287)
(0.49476 1.33817 -0.0160913)
(0.542249 1.19311 0.0293114)
(0.588028 1.06074 0.0740593)
(0.625032 0.931142 0.116555)
(0.657937 0.821749 0.155472)
(0.685068 0.727991 0.186827)
(0.709658 0.651028 0.210709)
(0.721751 0.59176 0.216697)
(0.728556 0.548347 0.195806)
(0.741163 0.485995 0.150505)
(0.850354 0.387621 0.10001)
(1.01448 0.213031 0.0902023)
(1.26121 0.0562419 0.1417)
(1.46676 0.0265083 0.137387)
(1.47626 -0.0649345 0.104327)
(1.42804 -0.140436 0.167472)
(1.29904 -0.0738444 0.152803)
(1.2933 -0.027998 0.0970617)
(1.25284 0.0152972 0.0693544)
(1.08942 0.00293954 0.0535685)
(0.81357 0.0235619 0.0467575)
(0.76819 -0.0184034 0.0408709)
(0.605293 -0.0156346 0.0313326)
(0.615439 -0.0995797 0.0172997)
(0.478457 -0.118023 0.00176758)
(0.485205 -0.282674 -0.0172583)
(0.294477 -0.348667 -0.0289354)
(0.302206 -0.721853 -0.0367335)
(0.0750203 -1.2366 -0.0260549)
(0.0181911 -2.72362 0.000405511)
(-0.48063 -4.69277 0.00134661)
(-0.311243 -6.20675 0.00896159)
(-0.0194305 0.150242 -0.0177442)
(-0.0292608 0.548441 -0.070351)
(-0.0281675 0.890565 -0.0994331)
(0.0267291 1.23982 -0.112296)
(0.167365 1.39761 -0.122758)
(0.323175 1.43513 -0.11468)
(0.383805 1.45631 -0.118215)
(0.432293 1.35247 -0.090458)
(0.523403 1.24784 -0.0586959)
(0.590161 1.1156 -0.0205278)
(0.657888 0.992486 0.0141098)
(0.707761 0.871621 0.0464884)
(0.755657 0.766042 0.0754218)
(0.792968 0.669746 0.0999537)
(0.827455 0.584339 0.120389)
(0.844164 0.506995 0.13554)
(0.857072 0.443384 0.135574)
(0.879442 0.392974 0.119426)
(0.956718 0.350156 0.0930826)
(1.07558 0.241418 0.0728241)
(1.32389 0.140903 0.064042)
(1.56297 0.0764397 0.0575847)
(1.56892 0.0137798 0.0578897)
(1.58732 -0.0535757 0.0766939)
(1.52418 -0.026428 0.0916393)
(1.50107 -0.00382946 0.078103)
(1.4244 0.0633311 0.060855)
(1.25225 0.048319 0.0488816)
(0.953268 0.0872506 0.0383472)
(0.914973 0.0404194 0.0343101)
(0.765228 0.059014 0.0238904)
(0.796824 -0.0112092 0.0167063)
(0.610965 -0.0132855 0.000553375)
(0.647685 -0.15428 -0.0107309)
(0.415418 -0.198233 -0.0243451)
(0.45317 -0.530982 -0.023908)
(0.159049 -0.969263 -0.0193804)
(0.192977 -2.39836 0.0114063)
(-0.457631 -4.58936 -0.00344405)
(-0.25399 -6.80103 0.0150605)
(0.0527697 0.286764 -0.0284762)
(0.00086559 0.483137 -0.0798963)
(-0.0993212 0.77288 -0.107595)
(-0.0452482 0.987124 -0.119743)
(-0.00644878 1.20175 -0.130788)
(0.189293 1.19113 -0.122561)
(0.325419 1.21659 -0.13184)
(0.392144 1.13223 -0.116715)
(0.513784 1.05192 -0.0945613)
(0.605665 0.950064 -0.0690513)
(0.699068 0.850933 -0.0418665)
(0.769774 0.753108 -0.0170852)
(0.831098 0.666873 0.00523522)
(0.877541 0.58723 0.0245505)
(0.918595 0.515262 0.0396852)
(0.947554 0.441136 0.0519229)
(0.975088 0.384472 0.0547035)
(1.00467 0.334996 0.0481418)
(1.06821 0.290636 0.0355564)
(1.18841 0.190695 0.0264664)
(1.47438 0.126681 0.026285)
(1.72872 0.0843555 0.024344)
(1.73037 0.0344911 0.0189158)
(1.75976 -0.00577107 0.0261704)
(1.70748 0.0103276 0.02553)
(1.73402 0.00463816 0.021655)
(1.64999 0.0861719 0.014289)
(1.4957 0.0743833 0.0129785)
(1.1829 0.136067 0.00892304)
(1.17116 0.107926 0.00873567)
(1.00654 0.151117 0.00613209)
(1.0744 0.0631281 -0.000638822)
(0.891685 0.0679156 -0.00593215)
(0.986432 -0.0476737 -0.0113055)
(0.727898 -0.116223 -0.0194804)
(0.831029 -0.394975 -0.0205797)
(0.468012 -0.793297 -0.0130506)
(0.562711 -2.02663 -0.00181287)
(-0.192805 -4.3744 0.0117237)
(0.0450153 -7.32003 0.0214866)
(-0.22496 0.0738058 -0.0387868)
(-0.302775 0.699038 -0.101236)
(-0.292572 0.876185 -0.122063)
(-0.254789 1.02576 -0.129371)
(-0.12093 1.0525 -0.143624)
(0.0598517 1.06707 -0.132891)
(0.238674 1.00955 -0.150462)
(0.344326 0.94676 -0.142282)
(0.497368 0.872164 -0.130353)
(0.614224 0.798429 -0.114956)
(0.735123 0.72433 -0.0981247)
(0.831291 0.650305 -0.0818717)
(0.918795 0.584724 -0.0663562)
(0.987248 0.524246 -0.0510007)
(1.04277 0.469821 -0.0384524)
(1.08918 0.412054 -0.0293552)
(1.14002 0.358939 -0.0261567)
(1.19467 0.310356 -0.0249281)
(1.26416 0.283394 -0.0267885)
(1.41473 0.203106 -0.0292355)
(1.74846 0.165881 -0.0382266)
(2.06353 0.115307 -0.0433043)
(2.0952 0.0727572 -0.0432586)
(2.19739 0.0353419 -0.0355346)
(2.17004 0.0436383 -0.0299237)
(2.22755 0.0210856 -0.026725)
(2.13204 0.108614 -0.0290066)
(2.01203 0.0821309 -0.0283085)
(1.67871 0.161917 -0.0294215)
(1.73445 0.142682 -0.0274152)
(1.56299 0.205818 -0.0257066)
(1.70878 0.132795 -0.0265159)
(1.50132 0.139407 -0.0309963)
(1.67113 0.017297 -0.0351435)
(1.33829 -0.0395141 -0.0358643)
(1.52155 -0.260193 -0.0287605)
(1.06448 -0.513653 -0.0199525)
(1.24437 -1.45537 -0.00505788)
(0.395403 -3.86431 0.00503108)
(0.497964 -7.19919 0.0223747)
(-0.732109 0.79455 -0.0893464)
(-0.607171 0.39528 -0.138147)
(-0.751777 0.577431 -0.135564)
(-0.461265 0.604832 -0.136841)
(-0.313136 0.62279 -0.145114)
(-0.00147388 0.672067 -0.143727)
(0.220512 0.641424 -0.158826)
(0.43351 0.614377 -0.160408)
(0.657221 0.572363 -0.155513)
(0.859947 0.531725 -0.148437)
(1.05829 0.485432 -0.139104)
(1.23629 0.440913 -0.129304)
(1.39567 0.402373 -0.11974)
(1.53362 0.370301 -0.110338)
(1.64665 0.347498 -0.103355)
(1.75307 0.316855 -0.0987018)
(1.86175 0.275704 -0.0963276)
(2.01055 0.243974 -0.0955004)
(2.18035 0.22468 -0.0978782)
(2.46329 0.136651 -0.0961393)
(2.87455 0.10258 -0.102763)
(3.30385 0.05401 -0.105821)
(3.38726 0.0108714 -0.102264)
(3.53098 -0.0317149 -0.0932245)
(3.47059 -0.0181838 -0.0834981)
(3.59501 -0.0264398 -0.0773452)
(3.45075 0.0553507 -0.0774454)
(3.41537 0.0535762 -0.0736316)
(3.03094 0.130783 -0.0713938)
(3.19466 0.14315 -0.0674521)
(2.97825 0.197484 -0.0627634)
(3.28916 0.141598 -0.0600569)
(3.00241 0.109609 -0.0569197)
(3.33599 0.0233157 -0.0554721)
(2.86023 -0.0433279 -0.0482178)
(3.20603 -0.222871 -0.0436466)
(2.5368 -0.50987 -0.0346459)
(2.89181 -1.13251 -0.0217372)
(1.89689 -3.14984 -0.00516871)
(1.33319 -6.0835 0.0125931)
(1.161 1.48199 -0.0309015)
(1.72532 0.729821 -0.0494706)
(2.46208 0.570916 -0.0533067)
(2.8757 0.352541 -0.0542334)
(3.15308 0.280809 -0.0596027)
(3.39012 0.23131 -0.0616783)
(3.60639 0.214175 -0.0750602)
(3.81222 0.192344 -0.0823029)
(4.03755 0.179056 -0.0810786)
(4.26945 0.165296 -0.0786261)
(4.49083 0.151354 -0.0758037)
(4.70501 0.136761 -0.0724825)
(4.88502 0.124164 -0.0699057)
(5.04829 0.113666 -0.0666727)
(5.16719 0.108342 -0.0655842)
(5.29449 0.103248 -0.0659118)
(5.42539 0.083301 -0.0670516)
(5.63698 0.0632433 -0.0665401)
(5.88678 0.0783622 -0.074719)
(6.33841 0.0574249 -0.0801442)
(6.75333 0.0338631 -0.0914056)
(7.23006 0.0128612 -0.100653)
(7.27069 -0.00374271 -0.0966083)
(7.3461 -0.0507816 -0.0842657)
(7.17017 -0.0361291 -0.0743476)
(7.18808 -0.0525072 -0.0620348)
(6.84531 -0.0324315 -0.0606399)
(6.83097 -0.0178609 -0.0557751)
(6.35485 0.015546 -0.0529795)
(6.58976 0.0339237 -0.049333)
(6.33502 0.0674107 -0.0461361)
(6.77074 0.0686522 -0.0447545)
(6.46495 0.0476304 -0.0437704)
(6.85997 0.0158151 -0.0421981)
(6.31907 -0.013143 -0.0388383)
(6.54683 -0.103795 -0.0306552)
(5.66794 -0.257808 -0.0265654)
(5.69836 -0.58225 -0.0188613)
(4.27441 -1.14 -0.0122969)
(2.78176 -2.52431 -0.000115037)
(0.000539386 -0.000618581 -0.00334487)
(0.0208915 -0.00361021 -0.00885324)
(0.0500954 -0.00359923 -0.0126158)
(0.071121 -0.00190585 -0.0151745)
(0.0833587 0.000221757 -0.0186635)
(0.0724498 -0.00179383 -0.0190941)
(0.0564937 0.00483485 -0.0189599)
(0.0420299 0.00213054 -0.0206263)
(0.0225526 0.0139603 -0.0218228)
(-0.00187655 0.0155714 -0.0181183)
(-0.044017 0.0190814 -0.0232179)
(-0.100284 0.011407 -0.0246357)
(-0.159396 0.00590875 -0.0276732)
(-0.234552 0.00446109 -0.0317163)
(-0.305958 0.0111615 -0.0355939)
(-0.392432 0.0204244 -0.0403074)
(-0.470366 0.0122159 -0.0497405)
(-0.576494 0.0035736 -0.0528217)
(-0.639547 -0.0121899 -0.0767)
(-0.812724 -0.0125175 -0.0935428)
(-0.775267 0.0263539 -0.105798)
(-0.589522 0.0282546 -0.120169)
(-0.588312 0.0353832 -0.128105)
(-0.583197 0.0287369 -0.13731)
(-0.568229 0.0184355 -0.151325)
(-0.513899 0.0128872 -0.161762)
(-0.44479 0.00494157 -0.178161)
(-0.333792 -0.0104403 -0.186588)
(-0.205399 -0.0184879 -0.192699)
(-0.0690393 -0.0334446 -0.189992)
(0.0686714 0.00805522 -0.180361)
(0.278823 0.00493931 -0.161485)
(0.431742 0.00565863 -0.144371)
(0.462262 0.0370083 -0.106251)
(0.428532 0.0440723 -0.0778894)
(0.334838 0.0458346 -0.0522138)
(0.224025 0.030496 -0.0372972)
(0.121165 0.0186659 -0.0274466)
(0.0409907 0.00251286 -0.018189)
(-0.0022921 -0.00894494 -0.00618721)
(0.0064925 -0.0133496 -0.00898591)
(0.0429956 -0.0285234 -0.0220823)
(0.0880003 -0.0286108 -0.0310715)
(0.119272 -0.0186146 -0.0378178)
(0.12969 -0.00854061 -0.0464138)
(0.113737 -0.00149792 -0.0486021)
(0.0785344 0.0119625 -0.0527312)
(0.0383424 0.0355409 -0.0582481)
(-0.0214388 0.0562402 -0.054839)
(-0.117098 0.0665816 -0.0512008)
(-0.253016 0.0834541 -0.0594143)
(-0.42055 0.106127 -0.0635024)
(-0.590659 0.13164 -0.068432)
(-0.780708 0.158717 -0.0749184)
(-0.971732 0.184928 -0.0832684)
(-1.19123 0.177795 -0.0967908)
(-1.37878 0.153294 -0.112404)
(-1.56283 0.119254 -0.128031)
(-1.68554 0.0888815 -0.149997)
(-1.83501 0.0750127 -0.167168)
(-1.70751 0.10577 -0.177235)
(-1.4633 0.0904602 -0.186054)
(-1.37155 0.0710666 -0.184032)
(-1.26479 0.0327311 -0.181354)
(-1.17338 -0.00557544 -0.171048)
(-1.04868 -0.0658026 -0.183351)
(-0.922588 -0.11163 -0.190978)
(-0.747753 -0.143652 -0.19491)
(-0.560618 -0.165265 -0.198717)
(-0.329648 -0.184864 -0.192003)
(-0.141972 -0.149643 -0.200889)
(0.120443 -0.0820867 -0.160187)
(0.407212 -0.0366547 -0.182729)
(0.561116 0.020539 -0.165649)
(0.607235 0.11874 -0.134317)
(0.554072 0.149894 -0.111401)
(0.429235 0.156939 -0.0898408)
(0.269934 0.127696 -0.0718862)
(0.111954 0.0838562 -0.0492932)
(0.0145985 0.0279837 -0.0176611)
(0.0098743 -0.0311507 -0.0133182)
(0.0506968 -0.0610117 -0.0313517)
(0.0952428 -0.0578685 -0.0448028)
(0.117323 -0.0353576 -0.0561499)
(0.112523 -0.00479354 -0.0670707)
(0.0733225 0.0198666 -0.0750746)
(0.0208345 0.0700739 -0.0781252)
(-0.0709179 0.128121 -0.0853524)
(-0.220525 0.187824 -0.0824912)
(-0.396437 0.240047 -0.0798352)
(-0.607248 0.292578 -0.0777711)
(-0.853138 0.351928 -0.0771827)
(-1.10857 0.401386 -0.0801713)
(-1.36819 0.423045 -0.0860187)
(-1.6261 0.399067 -0.0940623)
(-1.86518 0.346993 -0.10276)
(-2.04204 0.300152 -0.108543)
(-2.20659 0.248958 -0.112573)
(-2.30845 0.213139 -0.117021)
(-2.39774 0.165073 -0.115229)
(-2.19421 0.15893 -0.107546)
(-1.92109 0.120184 -0.0931918)
(-1.77555 0.0523844 -0.0778559)
(-1.64019 -0.0276855 -0.0586114)
(-1.5595 -0.132605 -0.0676635)
(-1.42297 -0.250377 -0.0688777)
(-1.27785 -0.342968 -0.0661675)
(-1.10408 -0.403869 -0.0652236)
(-0.93577 -0.429064 -0.0699629)
(-0.722717 -0.417823 -0.0711545)
(-0.509526 -0.397498 -0.0782054)
(-0.246211 -0.29688 -0.0895395)
(0.00100061 -0.206738 -0.0976694)
(0.25457 -0.0775417 -0.1175)
(0.429343 0.0567693 -0.137122)
(0.448798 0.1827 -0.121489)
(0.399367 0.229771 -0.109793)
(0.264982 0.231001 -0.09298)
(0.115665 0.17599 -0.0653646)
(0.0135862 0.082423 -0.0235966)
(0.0115178 -0.051855 -0.0198768)
(0.0489555 -0.0907545 -0.0442783)
(0.0771974 -0.0779384 -0.0624767)
(0.0786089 -0.035653 -0.0774244)
(0.0387176 0.0222773 -0.0936308)
(-0.0216446 0.103987 -0.0975201)
(-0.116254 0.198441 -0.101241)
(-0.274686 0.307249 -0.0970032)
(-0.495885 0.425202 -0.0850443)
(-0.765385 0.522574 -0.0724786)
(-1.04691 0.59304 -0.065745)
(-1.33349 0.639858 -0.0618524)
(-1.6121 0.637692 -0.0603805)
(-1.89064 0.585925 -0.0620907)
(-2.12095 0.519758 -0.0614446)
(-2.30627 0.457355 -0.0593572)
(-2.43765 0.400362 -0.0485523)
(-2.55991 0.332067 -0.0368776)
(-2.62829 0.280357 -0.0235505)
(-2.64648 0.200784 -0.00821607)
(-2.40191 0.166732 0.00699714)
(-2.12704 0.0908876 0.0172262)
(-1.9718 -0.0159016 0.0299124)
(-1.87937 -0.154997 0.0224746)
(-1.81418 -0.312366 0.016592)
(-1.70756 -0.461125 0.017521)
(-1.5782 -0.597775 0.0144301)
(-1.41122 -0.71448 0.00749848)
(-1.24979 -0.779735 -0.000863336)
(-1.08447 -0.774595 -0.00747226)
(-0.916279 -0.699811 -0.0179793)
(-0.699187 -0.5759 -0.0257861)
(-0.468051 -0.453137 -0.0541738)
(-0.211768 -0.259397 -0.0806529)
(0.0588662 -0.0787771 -0.102036)
(0.209059 0.126611 -0.112306)
(0.233738 0.242838 -0.11393)
(0.177262 0.281627 -0.10149)
(0.0727568 0.242423 -0.0734544)
(0.00831437 0.123909 -0.0270921)
(0.0110558 -0.0794079 -0.0346241)
(0.0360212 -0.117547 -0.0655733)
(0.0368929 -0.084546 -0.0891648)
(0.00172029 -0.00103936 -0.107413)
(-0.0567299 0.113415 -0.113032)
(-0.163084 0.257154 -0.114501)
(-0.316283 0.408634 -0.105651)
(-0.525434 0.566023 -0.0864916)
(-0.811397 0.709863 -0.0658106)
(-1.12196 0.807152 -0.0488474)
(-1.4267 0.84393 -0.0373101)
(-1.73189 0.817182 -0.0301637)
(-2.01208 0.753783 -0.0285345)
(-2.23259 0.674128 -0.0173415)
(-2.39397 0.607021 -0.00541375)
(-2.51805 0.531183 0.00217916)
(-2.6007 0.464264 0.0100479)
(-2.67354 0.382125 0.019521)
(-2.69657 0.320093 0.0343682)
(-2.65421 0.214511 0.0450185)
(-2.37125 0.158896 0.0613445)
(-2.1039 0.0510594 0.0729509)
(-1.98737 -0.0802718 0.0724009)
(-1.93379 -0.266264 0.0547665)
(-1.90499 -0.435413 0.0522577)
(-1.83918 -0.622288 0.0483316)
(-1.75709 -0.804587 0.0437384)
(-1.63079 -0.976867 0.0365919)
(-1.48249 -1.10959 0.0215687)
(-1.30708 -1.17394 0.0107749)
(-1.16214 -1.13456 -0.00144267)
(-1.03076 -0.990083 -0.0105109)
(-0.890027 -0.761997 -0.0263945)
(-0.632175 -0.522348 -0.0591761)
(-0.309271 -0.261933 -0.0943105)
(-0.0611938 -0.000977071 -0.124469)
(0.0510077 0.17623 -0.117205)
(0.055877 0.281788 -0.107206)
(0.0243615 0.262276 -0.0775498)
(-0.0032608 0.133358 -0.0293311)
(0.00804734 -0.10153 -0.0559102)
(0.0126658 -0.122827 -0.0984337)
(-0.0167221 -0.0492549 -0.121349)
(-0.0777477 0.101548 -0.130853)
(-0.184033 0.276288 -0.131463)
(-0.330031 0.476814 -0.117661)
(-0.519627 0.668151 -0.0907214)
(-0.761424 0.851481 -0.060379)
(-1.08046 0.961974 -0.0326329)
(-1.44371 0.970707 -0.0161813)
(-1.77589 0.931451 -0.00752519)
(-2.03852 0.864224 0.0044278)
(-2.23207 0.796456 0.0182884)
(-2.37505 0.723994 0.0268456)
(-2.46403 0.638451 0.0317149)
(-2.51494 0.542451 0.0348554)
(-2.53666 0.458759 0.0421433)
(-2.55047 0.37479 0.051548)
(-2.52791 0.310936 0.0685863)
(-2.42583 0.199678 0.0784976)
(-2.13008 0.147236 0.0959455)
(-1.88616 0.0211808 0.102597)
(-1.82213 -0.136564 0.0892036)
(-1.80442 -0.315527 0.0797691)
(-1.80399 -0.494105 0.0739275)
(-1.78329 -0.698735 0.0680835)
(-1.75873 -0.914683 0.0618872)
(-1.70002 -1.13418 0.0542098)
(-1.61645 -1.33172 0.0421671)
(-1.48286 -1.47516 0.0281094)
(-1.33727 -1.53496 0.0143247)
(-1.1796 -1.46051 0.00211794)
(-1.12701 -1.26599 -0.0112085)
(-1.00242 -0.87271 -0.030581)
(-0.654572 -0.54196 -0.0695132)
(-0.327008 -0.188769 -0.104333)
(-0.0998214 0.0873153 -0.122322)
(-0.00817147 0.249347 -0.111131)
(-0.0113401 0.253259 -0.0821942)
(-0.00286244 0.124535 -0.0320631)
(0.00450625 -0.0952353 -0.069352)
(-0.0114303 -0.0700451 -0.120093)
(-0.0619389 0.0570413 -0.142744)
(-0.166142 0.259189 -0.147153)
(-0.304901 0.486508 -0.133027)
(-0.479628 0.717604 -0.100676)
(-0.684345 0.924076 -0.0637693)
(-0.984814 1.04436 -0.0246024)
(-1.38987 1.01469 -0.0119545)
(-1.72479 0.970655 0.00706165)
(-1.9585 0.933318 0.0284709)
(-2.13273 0.893522 0.0470369)
(-2.25709 0.82722 0.057326)
(-2.32885 0.736858 0.0623784)
(-2.35815 0.635725 0.06082)
(-2.35211 0.524678 0.053676)
(-2.31799 0.437374 0.0528705)
(-2.27169 0.354082 0.0588505)
(-2.20326 0.29741 0.0782868)
(-2.05854 0.195441 0.0923418)
(-1.76859 0.15281 0.113571)
(-1.57597 0.00749658 0.120952)
(-1.54354 -0.155245 0.106485)
(-1.54517 -0.318242 0.095335)
(-1.56776 -0.494097 0.0877408)
(-1.58212 -0.700973 0.0799525)
(-1.60322 -0.928599 0.0715796)
(-1.60831 -1.17617 0.062318)
(-1.5993 -1.42721 0.0493569)
(-1.54848 -1.64861 0.0358688)
(-1.45988 -1.80592 0.0211126)
(-1.33019 -1.83195 0.0127188)
(-1.19419 -1.744 0.00119562)
(-1.15527 -1.41475 -0.0116725)
(-0.945927 -0.934999 -0.0382752)
(-0.52733 -0.487453 -0.0773536)
(-0.210642 -0.0832298 -0.105837)
(-0.0736211 0.144689 -0.109874)
(-0.0260806 0.205246 -0.0831044)
(-0.00545398 0.0958159 -0.0329188)
(0.00872711 -0.0534367 -0.0857331)
(-0.0273992 0.0228227 -0.143612)
(-0.121739 0.199287 -0.165134)
(-0.246026 0.442772 -0.155412)
(-0.409623 0.695124 -0.122804)
(-0.592826 0.919393 -0.0793924)
(-0.884609 1.05664 -0.0347526)
(-1.27553 1.0325 -0.0176009)
(-1.59094 0.989375 0.0129238)
(-1.81281 0.998655 0.0422325)
(-1.97968 0.979924 0.0709708)
(-2.08398 0.922575 0.0865723)
(-2.14286 0.838971 0.0966606)
(-2.16441 0.732793 0.0938778)
(-2.15067 0.615816 0.0837)
(-2.09706 0.490102 0.0667489)
(-2.01501 0.391346 0.0635174)
(-1.91979 0.311371 0.0704051)
(-1.8184 0.27092 0.0938878)
(-1.645 0.203649 0.110398)
(-1.40022 0.182952 0.139524)
(-1.25532 0.0105181 0.132003)
(-1.2432 -0.132971 0.123839)
(-1.25693 -0.292709 0.111568)
(-1.28597 -0.457593 0.102542)
(-1.31905 -0.653089 0.0925238)
(-1.36305 -0.873651 0.0814317)
(-1.40682 -1.12414 0.0692058)
(-1.45177 -1.39718 0.0546897)
(-1.47736 -1.67249 0.0404142)
(-1.47226 -1.9191 0.023888)
(-1.41673 -2.07166 0.0148475)
(-1.30437 -2.07549 0.0057868)
(-1.21788 -1.91478 -0.00148993)
(-1.11187 -1.45246 -0.0148714)
(-0.773501 -0.876121 -0.0424883)
(-0.331405 -0.352715 -0.0816401)
(-0.0870059 0.044986 -0.0969481)
(-0.0126014 0.1496 -0.0804787)
(0.00241189 0.0819999 -0.0333543)
(-0.000828336 -0.0106907 -0.101735)
(-0.0567426 0.110179 -0.164985)
(-0.162569 0.31997 -0.180978)
(-0.313059 0.578322 -0.156998)
(-0.496891 0.815983 -0.112416)
(-0.759814 0.99904 -0.0619201)
(-1.10856 1.02462 -0.0291021)
(-1.40576 1.0219 0.00739164)
(-1.63614 1.05627 0.0407176)
(-1.79257 1.05037 0.0773827)
(-1.87678 1.00163 0.106225)
(-1.91793 0.92756 0.128219)
(-1.93604 0.833905 0.138019)
(-1.93151 0.71999 0.129884)
(-1.90687 0.587168 0.106218)
(-1.83673 0.435851 0.0634626)
(-1.71942 0.32488 0.03773)
(-1.56842 0.25446 0.0308412)
(-1.42323 0.252218 0.068147)
(-1.24068 0.259089 0.126739)
(-1.07804 0.22511 0.164802)
(-1.00147 0.0294246 0.150891)
(-0.986526 -0.108755 0.139495)
(-1.00227 -0.26042 0.125902)
(-1.02766 -0.41427 0.114165)
(-1.06319 -0.590972 0.102226)
(-1.11173 -0.794322 0.0886101)
(-1.16902 -1.03028 0.0740797)
(-1.23766 -1.30242 0.0576203)
(-1.30548 -1.59929 0.0412286)
(-1.36103 -1.90093 0.0259994)
(-1.38111 -2.15439 0.0138556)
(-1.34399 -2.29738 0.00584643)
(-1.24663 -2.25603 0.00021846)
(-1.16341 -1.96494 -0.00548662)
(-0.939497 -1.3535 -0.0178616)
(-0.455353 -0.669541 -0.0479634)
(-0.126813 -0.125666 -0.0726774)
(-0.0345639 0.0870543 -0.0742027)
(0.00850819 0.0692723 -0.0314007)
(-0.010681 0.0395584 -0.110812)
(-0.0882779 0.220836 -0.181175)
(-0.217292 0.451543 -0.190404)
(-0.377094 0.694236 -0.156529)
(-0.587319 0.908116 -0.103657)
(-0.886031 1.02058 -0.0548415)
(-1.19077 1.06237 -0.00857144)
(-1.43108 1.10745 0.0265608)
(-1.59098 1.10925 0.0675751)
(-1.65952 1.06735 0.107278)
(-1.68525 0.999646 0.147046)
(-1.68762 0.920677 0.175361)
(-1.69267 0.834692 0.188442)
(-1.70099 0.726194 0.166575)
(-1.70358 0.595425 0.113209)
(-1.62486 0.437759 0.039395)
(-1.4532 0.316148 0.0177475)
(-1.22801 0.223351 0.0741013)
(-1.03443 0.242585 0.157264)
(-0.910775 0.337379 0.22207)
(-0.866502 0.304058 0.232751)
(-0.828585 0.0601924 0.181465)
(-0.789821 -0.0855293 0.157884)
(-0.803979 -0.22826 0.141084)
(-0.817966 -0.373553 0.124705)
(-0.847282 -0.529387 0.110797)
(-0.889279 -0.711428 0.0943504)
(-0.94387 -0.922668 0.0776796)
(-1.01667 -1.17636 0.0591092)
(-1.09991 -1.47049 0.0412635)
(-1.18922 -1.79723 0.0241281)
(-1.26137 -2.12122 0.0108431)
(-1.29206 -2.37981 0.00265182)
(-1.25697 -2.48829 -0.00228603)
(-1.15983 -2.36138 -0.00464833)
(-1.02006 -1.88888 -0.00862303)
(-0.654869 -1.10451 -0.0242431)
(-0.207884 -0.416296 -0.0569163)
(-0.0395647 0.0218303 -0.0538804)
(0.0093841 0.0522635 -0.0276462)
(-0.0140833 0.099077 -0.120181)
(-0.106521 0.341201 -0.192364)
(-0.251008 0.590155 -0.195183)
(-0.423051 0.830385 -0.151773)
(-0.672563 1.01391 -0.0956131)
(-0.96102 1.09166 -0.042179)
(-1.21573 1.15353 0.00724319)
(-1.38193 1.16314 0.0453931)
(-1.4551 1.12833 0.0931211)
(-1.46168 1.05761 0.142199)
(-1.44097 0.986075 0.194244)
(-1.42058 0.925927 0.236372)
(-1.43397 0.869075 0.258656)
(-1.47145 0.797253 0.237785)
(-1.49484 0.653359 0.212886)
(-1.34756 0.369705 0.19425)
(-1.05884 0.038 0.241589)
(-0.830775 -0.135193 0.239131)
(-0.788312 0.00332367 0.268117)
(-0.801568 0.366085 0.384529)
(-0.810312 0.36787 0.349894)
(-0.747541 0.0355955 0.211629)
(-0.664958 -0.106643 0.166516)
(-0.663265 -0.216616 0.155003)
(-0.664356 -0.352691 0.132566)
(-0.68036 -0.485047 0.117473)
(-0.710771 -0.645939 0.0978708)
(-0.752375 -0.828512 0.0791886)
(-0.815098 -1.05485 0.0587386)
(-0.893808 -1.32627 0.0392816)
(-0.991239 -1.65122 0.0211413)
(-1.0895 -2.00748 0.00678159)
(-1.16765 -2.3515 -0.00216399)
(-1.18967 -2.59639 -0.00593377)
(-1.13495 -2.63073 -0.00653255)
(-1.00329 -2.3449 -0.00685865)
(-0.768549 -1.62164 -0.0123512)
(-0.306511 -0.711553 -0.0294238)
(-0.0394205 -0.0952708 -0.0483256)
(-0.0159724 0.0359446 -0.0251911)
(-0.015513 0.169976 -0.126286)
(-0.11652 0.469998 -0.200597)
(-0.271213 0.731749 -0.198822)
(-0.468282 0.962214 -0.149579)
(-0.734172 1.10504 -0.0898724)
(-0.975662 1.18127 -0.0295856)
(-1.16015 1.21821 0.0170668)
(-1.25786 1.18934 0.0619536)
(-1.26737 1.11366 0.117617)
(-1.22293 1.0261 0.17988)
(-1.16287 0.965017 0.253258)
(-1.12398 0.934014 0.32366)
(-1.13754 0.922003 0.384126)
(-1.1845 0.834255 0.418382)
(-1.13439 0.500611 0.432533)
(-0.792329 -0.029872 0.240096)
(-0.469407 -0.20938 -0.0525076)
(-0.443403 -0.0298891 -0.153512)
(-0.595656 0.228311 0.0541955)
(-0.702387 0.619551 0.416573)
(-0.671182 0.474815 0.398979)
(-0.58934 -0.0119802 0.17363)
(-0.55097 -0.147025 0.14938)
(-0.539215 -0.215517 0.158038)
(-0.54623 -0.342421 0.13638)
(-0.552146 -0.454469 0.12119)
(-0.575132 -0.597664 0.099134)
(-0.602445 -0.754203 0.0783173)
(-0.651079 -0.950788 0.0562036)
(-0.715294 -1.19137 0.0352681)
(-0.804722 -1.49441 0.0157054)
(-0.907973 -1.85512 0.000641382)
(-1.01183 -2.24819 -0.00824586)
(-1.08248 -2.60243 -0.0126392)
(-1.08248 -2.8021 -0.0118413)
(-0.977968 -2.69355 -0.00899458)
(-0.782342 -2.14266 -0.00868756)
(-0.418196 -1.12125 -0.0168805)
(-0.0807005 -0.264242 -0.0261854)
(-0.0160822 0.0111107 -0.016961)
(-0.0132377 0.236899 -0.128938)
(-0.1159 0.591498 -0.204049)
(-0.282325 0.864895 -0.199625)
(-0.505334 1.06972 -0.147707)
(-0.748499 1.19713 -0.0850556)
(-0.935894 1.26733 -0.0216124)
(-1.06637 1.26023 0.0209729)
(-1.1013 1.18267 0.0735423)
(-1.0633 1.07431 0.138697)
(-0.971196 0.976852 0.214925)
(-0.867528 0.927201 0.319754)
(-0.793265 0.937202 0.435218)
(-0.809969 0.944268 0.559237)
(-0.841879 0.746194 0.542351)
(-0.566396 0.290674 0.150438)
(-0.0113855 0.150455 -0.587164)
(0.0732679 0.474745 -0.737145)
(-0.253517 0.692457 -0.41594)
(-0.62519 0.64707 -0.0122825)
(-0.684767 0.782523 0.447578)
(-0.412254 0.537705 0.443134)
(-0.379971 -0.00193528 0.199518)
(-0.455115 -0.150141 0.173992)
(-0.43552 -0.212979 0.176579)
(-0.458914 -0.335018 0.150597)
(-0.455336 -0.43691 0.128876)
(-0.474391 -0.56756 0.102255)
(-0.487811 -0.704076 0.0772602)
(-0.52217 -0.873765 0.0527956)
(-0.56748 -1.08057 0.0301047)
(-0.640019 -1.35112 0.00875988)
(-0.731727 -1.69155 -0.00660086)
(-0.841522 -2.10174 -0.0172917)
(-0.938862 -2.52778 -0.0210313)
(-0.986115 -2.86503 -0.0187599)
(-0.933355 -2.94163 -0.0132954)
(-0.759285 -2.5767 -0.0106093)
(-0.457973 -1.62569 -0.0128873)
(-0.102694 -0.501678 -0.0285295)
(-0.0170516 -0.0397021 -0.0192371)
(-0.00964036 0.300345 -0.129892)
(-0.107667 0.711183 -0.206426)
(-0.294181 0.98619 -0.202948)
(-0.512965 1.17348 -0.148875)
(-0.715503 1.30069 -0.087465)
(-0.861022 1.33558 -0.0227423)
(-0.942509 1.28175 0.0207219)
(-0.935732 1.15644 0.0786615)
(-0.859026 1.01711 0.151109)
(-0.721141 0.899123 0.243712)
(-0.555673 0.855228 0.387097)
(-0.463845 0.894019 0.5786)
(-0.54247 0.8875 0.668431)
(-0.397838 0.722907 0.172621)
(0.183913 0.612979 -0.744495)
(0.291118 0.840753 -1.15735)
(-0.244249 1.14159 -0.758368)
(-0.683253 0.956792 -0.275329)
(-0.860206 0.571752 0.129964)
(-0.743673 0.55903 0.485279)
(-0.278541 0.42121 0.502353)
(-0.265978 -0.00702326 0.296518)
(-0.379716 -0.144523 0.24707)
(-0.355656 -0.218094 0.210763)
(-0.388718 -0.333239 0.175396)
(-0.379896 -0.429754 0.139252)
(-0.397773 -0.550272 0.10679)
(-0.401541 -0.672488 0.0753786)
(-0.424622 -0.820166 0.0480256)
(-0.453819 -0.997236 0.0229725)
(-0.507204 -1.23202 -4.11522e-05)
(-0.582721 -1.54263 -0.0164136)
(-0.685946 -1.94525 -0.0279912)
(-0.795207 -2.41111 -0.0316326)
(-0.873558 -2.85392 -0.0278225)
(-0.87332 -3.09906 -0.0198978)
(-0.742654 -2.92864 -0.0128686)
(-0.487053 -2.11238 -0.0127376)
(-0.127405 -0.843488 -0.0188787)
(-0.0067145 -0.118093 -0.0174816)
(-0.00280881 0.345921 -0.128076)
(-0.105193 0.807982 -0.206178)
(-0.293339 1.08552 -0.204668)
(-0.490203 1.27738 -0.151095)
(-0.663182 1.38606 -0.0918981)
(-0.774617 1.38004 -0.029945)
(-0.8234 1.27678 0.0147538)
(-0.790026 1.11148 0.0744778)
(-0.690271 0.937463 0.149996)
(-0.50343 0.785807 0.245892)
(-0.291214 0.744722 0.455426)
(-0.331662 0.804723 0.654448)
(-0.382146 0.943291 0.372506)
(0.0663338 1.1324 -0.515961)
(0.0691813 1.17024 -0.830707)
(-0.426685 1.09876 -0.638816)
(-1.00059 1.08915 -0.409961)
(-0.97753 0.736755 -0.145351)
(-0.768639 0.435033 0.132279)
(-0.692384 0.405492 0.443054)
(-0.220882 0.341829 0.486328)
(-0.195852 -0.00630739 0.364344)
(-0.310671 -0.139698 0.316941)
(-0.284036 -0.219249 0.250269)
(-0.323156 -0.332568 0.205464)
(-0.312372 -0.427419 0.15314)
(-0.332252 -0.542882 0.113306)
(-0.330608 -0.65584 0.0742534)
(-0.347195 -0.786145 0.0433978)
(-0.363489 -0.937502 0.0153001)
(-0.401218 -1.13546 -0.00875749)
(-0.458357 -1.41009 -0.0270366)
(-0.547825 -1.78742 -0.0396069)
(-0.65601 -2.26713 -0.0434295)
(-0.753117 -2.78219 -0.0384631)
(-0.792158 -3.17499 -0.0279027)
(-0.705073 -3.19135 -0.0180802)
(-0.487056 -2.54645 -0.0137529)
(-0.137697 -1.2068 -0.0173043)
(0.0244899 -0.161676 -0.0176568)
(-0.00101296 0.386271 -0.125038)
(-0.0968955 0.899046 -0.206128)
(-0.270374 1.20195 -0.207791)
(-0.445507 1.38788 -0.15827)
(-0.596197 1.47283 -0.100685)
(-0.68447 1.42011 -0.041609)
(-0.713188 1.27464 0.00327357)
(-0.671995 1.07247 0.0608883)
(-0.566203 0.853221 0.125906)
(-0.340861 0.661086 0.229303)
(-0.212555 0.621178 0.499532)
(-0.412077 0.812109 0.508547)
(-0.20929 1.27846 -0.0172202)
(-0.141555 1.44747 -0.0513241)
(-0.61925 1.12505 0.440256)
(-0.934203 0.695444 0.265865)
(-1.20961 0.472846 0.0543237)
(-0.804509 0.338373 0.143784)
(-0.553866 0.338432 0.287714)
(-0.64061 0.324012 0.445451)
(-0.135944 0.240859 0.436865)
(-0.10377 -0.0305275 0.430868)
(-0.249409 -0.146711 0.400231)
(-0.218862 -0.214068 0.295863)
(-0.262866 -0.329038 0.241059)
(-0.251283 -0.424038 0.167029)
(-0.274285 -0.536103 0.119615)
(-0.2686 -0.64414 0.0717905)
(-0.280809 -0.763394 0.0377105)
(-0.287584 -0.897012 0.00584234)
(-0.314182 -1.0666 -0.0201129)
(-0.357767 -1.30618 -0.0392991)
(-0.434212 -1.65111 -0.0522128)
(-0.536818 -2.12659 -0.056381)
(-0.642128 -2.69002 -0.0503786)
(-0.708987 -3.20688 -0.0374166)
(-0.66062 -3.40208 -0.0235592)
(-0.477412 -2.93772 -0.0168221)
(-0.150119 -1.60504 -0.0165316)
(0.0549616 -0.243844 -0.0189934)
(-0.000401381 0.40293 -0.122241)
(-0.0791452 0.972012 -0.205021)
(-0.23629 1.30099 -0.209965)
(-0.395888 1.47742 -0.166659)
(-0.531236 1.53357 -0.110216)
(-0.609387 1.44487 -0.0591013)
(-0.63132 1.26286 -0.0153941)
(-0.605702 1.02937 0.0379995)
(-0.515695 0.769272 0.0777945)
(-0.318136 0.540462 0.200791)
(-0.475395 0.512194 0.446904)
(-0.732105 0.975616 0.282524)
(-0.562942 1.42686 0.358561)
(-0.512571 1.00152 1.4381)
(-0.462271 0.50446 1.40866)
(-0.72586 0.271608 0.256198)
(-1.14676 0.223024 0.101519)
(-0.688763 0.28154 0.318918)
(-0.422897 0.289907 0.340272)
(-0.457656 0.125634 0.341476)
(0.0652388 0.035095 0.354139)
(0.0352087 -0.0515492 0.535249)
(-0.154025 -0.171664 0.503469)
(-0.13723 -0.203924 0.337578)
(-0.199686 -0.310403 0.271189)
(-0.18533 -0.409776 0.17954)
(-0.213257 -0.526935 0.122769)
(-0.20892 -0.634174 0.0671328)
(-0.222473 -0.743432 0.0300431)
(-0.22492 -0.861211 -0.00547232)
(-0.244348 -1.00286 -0.0323161)
(-0.273519 -1.20591 -0.0521483)
(-0.334776 -1.51263 -0.0661401)
(-0.427659 -1.97442 -0.0698859)
(-0.539872 -2.56929 -0.0629881)
(-0.629312 -3.19042 -0.047084)
(-0.618878 -3.55278 -0.030225)
(-0.467696 -3.26782 -0.0194569)
(-0.168723 -1.96673 -0.0180861)
(0.0618022 -0.292046 -0.0203964)
(0.00457499 0.429556 -0.117197)
(-0.045874 1.04934 -0.198425)
(-0.189463 1.41319 -0.215609)
(-0.344095 1.58031 -0.176854)
(-0.466165 1.61442 -0.123491)
(-0.545182 1.50108 -0.0774014)
(-0.576206 1.29738 -0.0359737)
(-0.574717 1.03999 0.0104887)
(-0.52736 0.742813 0.0204343)
(-0.503386 0.490752 0.159659)
(-1.13278 0.57311 0.352595)
(-1.5162 1.14418 0.453599)
(-1.32613 0.958639 1.20685)
(-0.618438 0.249355 1.53613)
(-0.092218 0.772924 -0.753273)
(-0.918389 1.16018 -1.9983)
(-1.15262 0.828868 -0.812018)
(-0.252856 0.639835 0.091254)
(0.123334 0.338714 0.234628)
(-0.0636701 0.0482517 0.101964)
(0.344614 -0.052887 0.245836)
(0.200878 -0.0384211 0.630859)
(-0.0689723 -0.165832 0.616486)
(-0.0257639 -0.184223 0.367438)
(-0.131166 -0.267147 0.279872)
(-0.131448 -0.352744 0.166731)
(-0.161071 -0.465273 0.111822)
(-0.147338 -0.584035 0.0561229)
(-0.157636 -0.70362 0.0200952)
(-0.155954 -0.82756 -0.0182746)
(-0.170822 -0.959502 -0.0450489)
(-0.194999 -1.13565 -0.0649936)
(-0.248137 -1.39647 -0.0780155)
(-0.330433 -1.82435 -0.082135)
(-0.437626 -2.42934 -0.0752024)
(-0.539565 -3.14515 -0.0570732)
(-0.563989 -3.6749 -0.0356002)
(-0.446914 -3.58144 -0.0219105)
(-0.173785 -2.35537 -0.019231)
(0.0667803 -0.41045 -0.0213801)
(-0.00531514 0.443534 -0.115868)
(-0.0435076 1.1374 -0.203012)
(-0.154749 1.52157 -0.214796)
(-0.295528 1.6958 -0.187841)
(-0.405931 1.71028 -0.134563)
(-0.481314 1.5795 -0.0967969)
(-0.518118 1.36647 -0.05799)
(-0.559402 1.10978 -0.0173482)
(-0.603453 0.839016 -0.0293435)
(-0.865618 0.65531 0.147572)
(-1.9764 0.847859 0.477658)
(-2.38876 1.00235 1.01921)
(-1.97513 -0.085408 1.1181)
(-0.211859 -0.414394 -0.652438)
(0.274197 2.0338 -3.28187)
(-1.30566 2.33002 -3.32893)
(-0.539593 0.768953 -1.20915)
(0.812226 0.72437 -0.0408777)
(0.972465 0.717641 0.17806)
(0.3258 0.247708 -0.00903075)
(0.50441 0.0358465 0.153609)
(0.379131 0.0230007 0.718044)
(0.0326108 -0.1595 0.724898)
(0.0967039 -0.177101 0.391348)
(-0.0257582 -0.216008 0.280341)
(-0.0453267 -0.278967 0.141149)
(-0.107835 -0.38056 0.0715448)
(-0.116675 -0.486079 0.0191271)
(-0.134427 -0.59275 -0.00925282)
(-0.127912 -0.705386 -0.0386115)
(-0.129405 -0.824148 -0.0614871)
(-0.132211 -0.983315 -0.0819482)
(-0.164809 -1.22244 -0.0962012)
(-0.226592 -1.63125 -0.0991238)
(-0.334464 -2.24076 -0.0895261)
(-0.454625 -3.01821 -0.0677759)
(-0.516079 -3.70973 -0.0421253)
(-0.450532 -3.82352 -0.0248166)
(-0.21076 -2.69366 -0.0221097)
(0.0471449 -0.46606 -0.0234844)
(0.00888706 0.546684 -0.102709)
(-0.0167151 1.31069 -0.190647)
(-0.0992079 1.70746 -0.207171)
(-0.216665 1.90716 -0.193919)
(-0.329476 1.91917 -0.143991)
(-0.39325 1.79464 -0.11387)
(-0.425856 1.59226 -0.0683752)
(-0.494656 1.37729 -0.0250534)
(-0.606044 1.17472 -0.026957)
(-1.06341 1.08981 0.244462)
(-2.11931 1.16741 0.699845)
(-2.34792 0.684491 1.19476)
(-2.04165 -1.11162 -0.470914)
(-0.102585 -1.18514 -2.70991)
(0.30105 1.59906 -3.22587)
(-1.53552 1.92288 -1.28804)
(-0.118333 -0.637152 0.174559)
(1.56228 0.145037 -0.541174)
(1.31756 1.17111 -0.140659)
(0.470571 0.692124 0.498842)
(0.559777 0.0572254 0.411585)
(0.4452 0.165112 0.868456)
(0.00859525 -0.122483 0.886094)
(0.22126 -0.172663 0.436055)
(0.103906 -0.169511 0.289921)
(0.0418842 -0.21506 0.124807)
(-0.0315255 -0.31284 0.0601367)
(-0.0336221 -0.419768 0.000306947)
(-0.0586029 -0.505415 -0.028845)
(-0.0648396 -0.591987 -0.0574644)
(-0.0841992 -0.683729 -0.0781543)
(-0.108723 -0.805809 -0.0840797)
(-0.159373 -0.991572 -0.0950542)
(-0.211933 -1.32571 -0.0996048)
(-0.258885 -1.89724 -0.100149)
(-0.342797 -2.77022 -0.0766889)
(-0.428427 -3.62664 -0.0463051)
(-0.411474 -3.99898 -0.02514)
(-0.206685 -3.07191 -0.0214127)
(0.0588849 -0.676006 -0.0205561)
(-0.0101197 0.758796 -0.102107)
(-0.0154829 1.588 -0.188075)
(-0.0609604 2.01999 -0.210417)
(-0.141833 2.19261 -0.190486)
(-0.236461 2.21236 -0.148496)
(-0.292686 2.08316 -0.12048)
(-0.317267 1.88362 -0.0656575)
(-0.398792 1.67365 -0.00862122)
(-0.538176 1.49161 0.0278402)
(-1.03635 1.40733 0.326593)
(-1.71096 1.3074 0.472851)
(-1.80171 0.363396 0.822595)
(-2.29089 -1.92472 -0.565464)
(-1.65258 -2.04827 -2.15927)
(-1.94235 -0.235486 -0.419858)
(-2.52876 -0.567012 1.71487)
(-0.720155 -2.92374 1.0009)
(0.338713 -1.31843 -1.39114)
(0.064115 0.824199 -1.52563)
(-0.326736 0.99082 0.100762)
(-0.240063 0.640925 0.546802)
(0.0861976 0.369401 0.934224)
(-0.263475 -0.31142 1.2278)
(0.127153 -0.410642 0.654193)
(0.11538 -0.16717 0.41246)
(0.0723134 -0.152059 0.141906)
(0.00396786 -0.258584 0.0224074)
(0.0124017 -0.388265 -0.0273553)
(0.00454203 -0.462747 -0.0529951)
(7.83827e-05 -0.542545 -0.0731234)
(-0.0147863 -0.614611 -0.0915944)
(-0.0285867 -0.708085 -0.0996131)
(-0.0617856 -0.823655 -0.106408)
(-0.133143 -1.06494 -0.102804)
(-0.301923 -1.53017 -0.0891038)
(-0.401542 -2.33504 -0.0766568)
(-0.425296 -3.31238 -0.0499631)
(-0.430691 -3.95591 -0.0273598)
(-0.270035 -3.32699 -0.0243322)
(0.00870235 -0.996777 -0.0265972)
(-0.0360424 0.791164 -0.0883616)
(-0.0338444 1.69315 -0.173362)
(-0.0411574 2.16949 -0.19919)
(-0.0828636 2.34475 -0.183564)
(-0.144204 2.35733 -0.14231)
(-0.201063 2.23978 -0.109644)
(-0.22194 2.03259 -0.0487572)
(-0.302088 1.83432 0.0265636)
(-0.438207 1.66942 0.0937986)
(-1.0127 1.61179 0.468818)
(-1.86815 1.4811 0.63924)
(-1.93543 0.295728 1.66773)
(-1.85242 -2.13765 0.262457)
(-0.603231 -1.79142 -1.35112)
(-2.62062 -1.80231 2.22175)
(-3.26279 -3.10446 3.62938)
(-1.88395 -4.33735 0.34047)
(-1.82004 -2.76235 -1.82934)
(-2.37077 -0.728251 -3.01534)
(-2.20598 0.568032 -2.43562)
(-1.08589 0.761039 -1.16864)
(0.135136 0.245891 -0.738277)
(0.137302 -0.614054 0.345057)
(-0.14013 -0.524435 0.465784)
(-0.128747 0.0219847 0.370577)
(-0.0714898 0.0409813 0.211448)
(-0.00350977 -0.184438 -0.00300891)
(0.0869931 -0.392485 -0.0898298)
(0.0881507 -0.447635 -0.0874248)
(0.0730681 -0.518704 -0.0892776)
(0.0489359 -0.581322 -0.0974969)
(0.0320561 -0.66543 -0.104075)
(0.00626608 -0.75478 -0.11599)
(-0.0245792 -0.964217 -0.108258)
(-0.138921 -1.31771 -0.0950886)
(-0.353305 -1.97144 -0.0679799)
(-0.48556 -2.89011 -0.046107)
(-0.492289 -3.66013 -0.0231202)
(-0.378599 -3.30277 -0.0180897)
(-0.0808518 -1.06055 -0.0221959)
(-0.0233715 0.762731 -0.0784113)
(-0.0095715 1.69185 -0.160645)
(0.00257831 2.18599 -0.188137)
(-0.0193076 2.38836 -0.176428)
(-0.0436361 2.38852 -0.130407)
(-0.0826307 2.29008 -0.0809459)
(-0.109715 2.10351 -0.0228786)
(-0.182575 1.95694 0.0708524)
(-0.230661 1.8145 0.12595)
(-0.746352 1.87888 0.74197)
(-1.90573 1.67686 1.47451)
(-1.90156 -0.359589 2.76744)
(-0.544163 -2.76614 -0.016359)
(3.79511 -1.25326 -4.43407)
(1.11842 -1.49762 0.023304)
(-1.46759 -3.47524 3.35247)
(-2.02346 -3.53877 -0.177662)
(-2.95696 -2.73485 -2.90382)
(-4.08644 -2.63286 -3.95117)
(-3.63585 -1.19479 -5.02322)
(-2.05133 -0.259994 -4.44167)
(0.313937 -0.186085 -4.14637)
(1.28182 -0.163763 -2.41651)
(-0.00124641 0.15205 -0.904928)
(-0.452661 0.549244 -0.0153335)
(-0.234029 0.499603 0.295983)
(0.142277 -0.0318581 0.0146053)
(0.281111 -0.424617 -0.155618)
(0.193877 -0.46419 -0.136018)
(0.143564 -0.518984 -0.118912)
(0.114234 -0.569342 -0.118814)
(0.103972 -0.634371 -0.120694)
(0.0645779 -0.702369 -0.121961)
(0.0368536 -0.863123 -0.115694)
(-0.0585778 -1.19224 -0.0990773)
(-0.232024 -1.79364 -0.070563)
(-0.39803 -2.58258 -0.0412275)
(-0.471839 -3.37349 -0.0232575)
(-0.383699 -3.20819 -0.015301)
(-0.126287 -1.12097 -0.0193964)
(-0.0106325 0.743635 -0.0645877)
(0.0156104 1.6535 -0.141874)
(0.0372247 2.1636 -0.171861)
(0.0353662 2.38822 -0.16374)
(0.0320371 2.40061 -0.117223)
(0.00677085 2.29569 -0.0527114)
(0.0241177 2.11796 0.00631732)
(-0.0270611 1.98237 0.171466)
(0.036034 1.85886 0.163885)
(-0.189442 1.84993 0.948692)
(-1.44669 1.55544 1.88167)
(-1.09143 -1.04071 2.78349)
(-0.668919 -2.96976 -0.520688)
(4.87377 -0.818249 -7.06097)
(3.27145 -0.285057 -2.07394)
(-0.74293 -3.10406 4.16366)
(-1.70895 -2.57094 1.66914)
(-2.64404 -1.28964 -2.63331)
(-3.90619 -2.29411 -3.15181)
(-4.00442 -2.06658 -3.03793)
(-3.18109 -0.751167 -3.62331)
(-1.63792 -0.23215 -4.80506)
(0.232116 0.584011 -3.34509)
(0.254342 1.32293 -1.23472)
(-0.273234 1.06017 -0.15649)
(0.150886 0.443638 0.221288)
(0.675917 -0.146254 0.0396874)
(0.627126 -0.3479 -0.170395)
(0.349304 -0.38896 -0.183787)
(0.222778 -0.498787 -0.150033)
(0.187388 -0.569212 -0.143772)
(0.178265 -0.633395 -0.139213)
(0.148018 -0.69356 -0.132742)
(0.104057 -0.823111 -0.121604)
(0.00995614 -1.10701 -0.103342)
(-0.127157 -1.66925 -0.0753656)
(-0.295839 -2.43468 -0.0439009)
(-0.407374 -3.25454 -0.0201996)
(-0.379012 -3.25534 -0.0119737)
(-0.146054 -1.34421 -0.0184808)
(-0.00400638 0.691073 -0.0495213)
(0.0395202 1.57039 -0.121335)
(0.0816485 2.10117 -0.152639)
(0.0937769 2.35204 -0.145221)
(0.106864 2.38447 -0.101951)
(0.0927038 2.28719 -0.0285723)
(0.117017 2.11516 0.0353466)
(0.10179 1.93366 0.214209)
(0.133454 1.82367 0.212746)
(0.1608 1.62547 0.836103)
(-0.970836 1.35792 1.72895)
(-0.89183 -0.52234 2.4096)
(-2.26579 -1.38899 0.090237)
(1.75142 -0.0909938 -5.92755)
(2.59934 -0.492579 -1.11968)
(-1.27874 -3.35033 5.7965)
(-1.96309 -2.72762 4.00912)
(-1.88559 -0.193896 0.239089)
(-1.89192 -0.5543 -0.874315)
(-1.63147 -1.27249 1.13197)
(-0.960697 0.537725 2.04168)
(-1.79816 2.06941 -0.542993)
(-1.4209 2.10445 -1.51917)
(0.758192 1.91572 0.140701)
(1.13265 0.765096 0.396464)
(0.934585 -0.237 0.279185)
(0.899246 -0.297755 0.0648142)
(0.707004 -0.08452 -0.219229)
(0.410227 -0.193717 -0.265338)
(0.265697 -0.443659 -0.20571)
(0.231224 -0.568553 -0.187692)
(0.230891 -0.62797 -0.172606)
(0.199673 -0.664844 -0.156367)
(0.153171 -0.780187 -0.131448)
(0.0428144 -1.02418 -0.121784)
(-0.0527958 -1.55913 -0.0827151)
(-0.200605 -2.34896 -0.04678)
(-0.335358 -3.26462 -0.0194516)
(-0.351758 -3.39774 -0.0111464)
(-0.14486 -1.57468 -0.0206231)
(0.00197117 0.634072 -0.0357809)
(0.0581359 1.47847 -0.100998)
(0.115698 2.02552 -0.132913)
(0.141858 2.2981 -0.127546)
(0.166415 2.34906 -0.0871456)
(0.16113 2.25386 -0.0110104)
(0.188228 2.0792 0.0608113)
(0.19926 1.86736 0.230578)
(0.20593 1.71801 0.270163)
(0.400037 1.5069 0.636211)
(-0.361645 1.10113 1.3934)
(-0.615966 0.291602 1.8611)
(-1.85291 -0.088435 0.067971)
(0.0776009 0.248426 -4.34513)
(2.49441 -0.860491 -2.1181)
(0.48632 -2.11764 2.75362)
(-1.20518 -2.41579 3.82706)
(-1.99215 -1.04103 2.24714)
(-0.553482 -0.711019 1.01862)
(0.68296 -2.17159 1.32633)
(1.03688 -1.48066 2.89461)
(-0.245388 2.13432 2.088)
(-0.680328 2.88878 0.478719)
(1.53284 1.83325 1.09904)
(2.29175 1.16707 1.01353)
(1.29206 0.149395 0.644419)
(0.782721 -0.206427 0.393471)
(0.705713 -0.0434481 -0.114788)
(0.489357 -0.0927886 -0.349007)
(0.356646 -0.403946 -0.317335)
(0.328373 -0.606669 -0.269392)
(0.335736 -0.68535 -0.217042)
(0.289192 -0.717018 -0.174147)
(0.230654 -0.81863 -0.136973)
(0.105563 -1.0256 -0.121312)
(0.00791284 -1.52894 -0.0929129)
(-0.142816 -2.3712 -0.0440817)
(-0.278821 -3.4036 -0.0172722)
(-0.334638 -3.69708 -0.00671177)
(-0.142249 -1.91396 -0.0173549)
(0.00496107 0.560628 -0.0227047)
(0.0708977 1.36242 -0.0815138)
(0.143415 1.92303 -0.112979)
(0.181255 2.21915 -0.109409)
(0.213179 2.29082 -0.0735637)
(0.210923 2.2023 0.00128119)
(0.227703 2.02929 0.0769568)
(0.243209 1.79616 0.226595)
(0.242846 1.59504 0.314687)
(0.376672 1.36802 0.523414)
(-0.0787303 0.83058 1.07616)
(-0.658201 0.628241 1.08282)
(-1.17329 0.876746 0.202078)
(-0.985297 1.41955 -1.73085)
(1.55077 0.175629 -3.52907)
(3.06026 -0.827832 -1.15931)
(1.55618 -1.29315 1.72091)
(-1.12034 -1.81033 2.2786)
(-0.218942 -2.06069 1.42434)
(0.686617 -2.46652 0.572026)
(-0.259457 -2.65611 0.684554)
(-1.63353 -0.339703 0.928135)
(-0.999573 1.11225 0.582668)
(1.28733 1.01341 0.507694)
(2.37288 1.20085 0.409718)
(1.78252 0.254468 0.578307)
(1.16042 -0.565182 0.895815)
(0.839715 -0.358963 0.47785)
(0.545072 -0.127431 -0.0619951)
(0.409811 -0.383848 -0.290942)
(0.361438 -0.675754 -0.341588)
(0.377971 -0.801602 -0.306335)
(0.345971 -0.856991 -0.242221)
(0.283035 -0.979803 -0.188687)
(0.164561 -1.168 -0.153245)
(0.0519443 -1.65961 -0.120606)
(-0.107032 -2.51415 -0.0604818)
(-0.222495 -3.6782 -0.0259857)
(-0.28817 -4.17845 -0.0102444)
(-0.119921 -2.52846 -0.0188092)
(0.0139184 0.494664 -0.0133263)
(0.0874215 1.24682 -0.0663762)
(0.164204 1.81793 -0.0964526)
(0.210913 2.14047 -0.0954453)
(0.247134 2.23732 -0.0642918)
(0.247943 2.16379 0.00339605)
(0.253412 2.00096 0.0801301)
(0.25843 1.77281 0.207282)
(0.23934 1.55121 0.321339)
(0.250655 1.3295 0.452041)
(-0.040957 0.900173 0.764345)
(-1.05563 0.828343 0.9634)
(-1.76165 1.34498 0.773167)
(-1.73345 2.31805 0.30199)
(-1.12509 1.47584 -1.26513)
(2.10506 -0.36291 -1.76626)
(4.06772 -1.09335 -0.777321)
(2.52061 -1.91064 0.119812)
(2.04065 -2.46808 0.783473)
(1.11484 -1.66999 0.724635)
(-0.956119 -1.45267 0.306278)
(-2.3738 -1.88116 0.0482028)
(-2.02457 -2.07742 0.026729)
(-0.541638 -1.22325 -0.184668)
(0.781736 0.0857833 -0.61562)
(1.21684 0.157428 -0.146634)
(1.2313 -0.223134 0.874509)
(1.14666 0.023445 1.17117)
(0.907888 0.128828 0.751215)
(0.562966 -0.276983 0.0975806)
(0.335489 -0.654054 -0.309579)
(0.37561 -0.793843 -0.339734)
(0.356596 -0.839786 -0.262671)
(0.302338 -0.997808 -0.207525)
(0.184662 -1.1674 -0.156115)
(0.0660239 -1.67342 -0.126128)
(-0.0997244 -2.53366 -0.0614735)
(-0.216082 -3.84827 -0.0259697)
(-0.308671 -4.59149 -0.00782582)
(-0.143417 -3.15037 -0.017045)
(0.0175311 0.431671 -0.00803002)
(0.0994374 1.11241 -0.0565213)
(0.180892 1.6853 -0.0836822)
(0.231511 2.03143 -0.0853925)
(0.271991 2.15651 -0.0600551)
(0.277697 2.10715 -0.00125273)
(0.28008 1.96485 0.0694715)
(0.276779 1.75858 0.182735)
(0.261568 1.55483 0.293686)
(0.208337 1.3676 0.428132)
(0.084373 1.13776 0.581997)
(-0.654344 0.996338 0.953242)
(-1.65554 1.45713 0.73735)
(-1.44115 2.53302 -0.0338705)
(-1.1125 2.21873 -0.375185)
(0.00380297 0.244143 -1.26241)
(2.2051 -1.0121 -2.25269)
(3.4126 -2.16507 -2.21358)
(3.19006 -2.36136 -1.31256)
(1.63296 -0.951539 -0.901856)
(-0.187129 -0.968922 -1.12841)
(-1.40078 -2.18281 -1.12984)
(-2.36052 -3.08091 -0.558663)
(-2.46122 -2.00646 -0.55225)
(-0.972349 0.342068 -0.940496)
(0.610944 0.986479 -0.261406)
(1.41445 0.546668 1.04946)
(1.50081 0.309606 1.62755)
(1.09263 0.109599 1.06785)
(0.588141 -0.384294 0.135285)
(0.347667 -0.640955 -0.304368)
(0.386316 -0.687874 -0.312045)
(0.341311 -0.717054 -0.23929)
(0.324407 -0.890913 -0.195436)
(0.200707 -1.07741 -0.15405)
(0.0758515 -1.53251 -0.127248)
(-0.0865132 -2.38692 -0.0601817)
(-0.211218 -3.80197 -0.0250697)
(-0.329864 -4.78119 -0.00601338)
(-0.171344 -3.60245 -0.0147725)
(0.0134735 0.379954 -0.00565142)
(0.101437 0.994051 -0.0506468)
(0.194783 1.55637 -0.0773601)
(0.245215 1.93249 -0.0812525)
(0.290171 2.08983 -0.0622054)
(0.307318 2.07137 -0.0130023)
(0.314889 1.95276 0.0485139)
(0.315647 1.76787 0.145243)
(0.306909 1.58289 0.252039)
(0.276972 1.41302 0.375613)
(0.19847 1.29527 0.532023)
(-0.0681633 1.1099 0.849054)
(-0.86034 1.33903 0.971341)
(-1.24072 2.28017 0.488343)
(-0.487151 2.29511 -0.209664)
(0.0126073 1.04654 -0.581943)
(-0.516219 0.117338 -0.545068)
(-0.148528 -1.19234 -1.4496)
(0.530103 -0.947513 -2.0745)
(0.624479 -0.0262375 -2.09409)
(0.684106 -0.696977 -2.64723)
(0.37294 -1.6485 -2.54951)
(-0.963913 -1.97786 -1.49351)
(-1.66416 -1.06214 -0.839166)
(-0.347574 0.584185 -1.08598)
(0.900298 0.83711 -0.733161)
(1.20246 -0.0263503 0.0482215)
(1.04523 -0.324293 0.329223)
(0.719921 -0.344305 0.0238248)
(0.517982 -0.535269 -0.261096)
(0.440255 -0.563754 -0.297666)
(0.407997 -0.553286 -0.226818)
(0.328327 -0.598338 -0.182738)
(0.297112 -0.776163 -0.157603)
(0.218752 -0.963602 -0.129017)
(0.109097 -1.40555 -0.110833)
(-0.0871936 -2.1894 -0.0511309)
(-0.198179 -3.6719 -0.0177131)
(-0.351214 -4.85012 -0.000734596)
(-0.193242 -3.98565 -0.00903456)
(0.0121124 0.319397 -0.00484727)
(0.0959968 0.866637 -0.0469282)
(0.203178 1.39301 -0.0740086)
(0.26029 1.79106 -0.0813003)
(0.301434 1.97904 -0.0685433)
(0.330225 1.99376 -0.0295246)
(0.346906 1.89765 0.0241935)
(0.355512 1.73596 0.104531)
(0.360635 1.56009 0.200756)
(0.355931 1.39833 0.316806)
(0.337002 1.28115 0.462234)
(0.245957 1.18379 0.707208)
(-0.0275923 1.20654 1.01615)
(-0.323046 1.57379 1.34339)
(-0.0823435 1.51988 1.39512)
(0.344837 1.44399 1.07637)
(-0.500468 1.30367 1.09976)
(-1.82607 0.399307 0.258008)
(-2.321 0.853785 0.0919401)
(-1.20833 1.13734 0.390732)
(0.638205 -0.124761 -0.809477)
(1.51813 -0.84239 -0.822237)
(0.49451 -0.73361 0.82048)
(-0.859755 -0.10169 0.816596)
(-0.47243 1.27589 -0.643662)
(0.153994 1.32247 -1.19648)
(0.415193 0.158579 -1.0112)
(0.540974 -0.192068 -0.885604)
(0.581665 -0.230897 -0.608414)
(0.641671 -0.335775 -0.323769)
(0.508372 -0.354108 -0.182488)
(0.430821 -0.427394 -0.13374)
(0.326061 -0.496886 -0.121243)
(0.294649 -0.683534 -0.11732)
(0.198257 -0.831176 -0.108301)
(0.135351 -1.29036 -0.0838024)
(-0.0552292 -1.99169 -0.0453852)
(-0.180059 -3.50855 -0.00681547)
(-0.359553 -4.84896 0.00510124)
(-0.218205 -4.33026 -0.00234417)
(0.00693564 0.278341 -0.00567904)
(0.0773195 0.774389 -0.0460685)
(0.192874 1.26715 -0.0728213)
(0.268919 1.67072 -0.0839313)
(0.310371 1.89562 -0.0788503)
(0.347984 1.94103 -0.0490622)
(0.378691 1.86848 -0.00405017)
(0.398188 1.71849 0.0623904)
(0.413842 1.5462 0.142308)
(0.428851 1.37139 0.238804)
(0.441881 1.23083 0.354168)
(0.453418 1.11732 0.517509)
(0.417756 1.07488 0.796293)
(0.393597 0.993372 1.23127)
(0.356124 0.621831 1.86238)
(0.145678 1.01491 2.1841)
(-0.26313 1.74146 1.84064)
(-1.38545 1.42878 1.00683)
(-2.75879 0.870683 0.75799)
(-2.16102 0.336636 1.11893)
(-0.725067 -0.518654 0.928989)
(0.094045 -0.0439787 2.13952)
(-0.12013 0.574049 4.35575)
(-1.0678 0.28501 3.5571)
(-0.84887 1.10343 0.729824)
(0.0885091 1.53953 -0.161533)
(0.664152 0.635323 -0.0634473)
(0.79839 0.191578 -0.185669)
(0.661507 0.0853917 -0.163572)
(0.612649 -0.0705018 -0.0741974)
(0.478196 -0.177174 -0.0442698)
(0.431443 -0.314594 -0.0534656)
(0.323374 -0.399251 -0.0683453)
(0.298123 -0.582298 -0.0790196)
(0.180434 -0.713603 -0.0803453)
(0.160654 -1.13315 -0.0635341)
(-0.0325116 -1.80845 -0.0275448)
(-0.153969 -3.32221 0.00463213)
(-0.376378 -4.81695 0.0131298)
(-0.243117 -4.6764 0.00476628)
(0.0109928 0.225025 -0.0079735)
(0.0656327 0.664735 -0.0475756)
(0.168273 1.11617 -0.0743369)
(0.2666 1.49312 -0.0864037)
(0.317093 1.74172 -0.0884129)
(0.351275 1.81826 -0.0674462)
(0.389321 1.77274 -0.0306896)
(0.419956 1.6388 0.0236372)
(0.445191 1.48148 0.0872426)
(0.469758 1.30615 0.161802)
(0.495974 1.15034 0.246078)
(0.527643 1.0059 0.349064)
(0.55283 0.881559 0.502251)
(0.591436 0.776737 0.727739)
(0.526789 0.515179 1.08367)
(0.231931 0.649487 1.46152)
(-0.0844756 1.37219 1.58991)
(-0.676407 1.66009 1.26469)
(-1.51644 1.04418 0.504646)
(-1.65963 -0.00362733 -0.0628123)
(-1.39823 -0.822034 0.264401)
(-1.05463 -0.289646 1.40059)
(-0.474938 0.199334 2.93132)
(-0.468735 -0.414799 2.7049)
(-0.319134 -0.218257 1.10823)
(0.542728 0.441405 0.425137)
(0.965406 0.28366 0.394438)
(0.863787 0.130949 0.228966)
(0.627383 0.0546616 0.11921)
(0.558064 -0.037424 0.0642004)
(0.449351 -0.121244 0.0224511)
(0.44968 -0.254488 -0.0080073)
(0.336246 -0.318869 -0.0327152)
(0.319779 -0.496751 -0.0488512)
(0.185339 -0.605434 -0.0557853)
(0.178839 -1.00557 -0.0411459)
(-0.0194723 -1.63774 -0.0118117)
(-0.119681 -3.15582 0.0157699)
(-0.402298 -4.78453 0.018721)
(-0.274622 -5.08419 0.0113612)
(0.00652472 0.200673 -0.00998189)
(0.032844 0.610165 -0.0538374)
(0.108796 1.03398 -0.0763579)
(0.228208 1.39914 -0.0911545)
(0.315147 1.632 -0.0951101)
(0.361869 1.73806 -0.0839269)
(0.398666 1.71173 -0.0560707)
(0.445583 1.58977 -0.0113454)
(0.486345 1.44302 0.0369068)
(0.517505 1.2737 0.093445)
(0.55133 1.11438 0.152912)
(0.582855 0.961766 0.217684)
(0.607619 0.819887 0.294112)
(0.634137 0.695407 0.383675)
(0.620395 0.568839 0.499254)
(0.492262 0.598882 0.621033)
(0.406454 0.783957 0.610166)
(0.357067 0.974431 0.449997)
(0.272068 1.02356 0.249254)
(0.120564 0.639721 0.0932597)
(-0.0265864 0.0389481 0.137077)
(0.0859253 -0.12906 0.147195)
(0.383938 -0.21941 0.183014)
(0.557057 -0.600827 0.315411)
(0.562906 -0.454184 0.267664)
(0.810063 -0.0607358 0.253792)
(0.992935 0.038318 0.232182)
(0.890314 0.0280428 0.138069)
(0.662717 0.00968484 0.0667783)
(0.626442 -0.0460449 0.0422664)
(0.505209 -0.0651967 0.0231373)
(0.511324 -0.181023 0.00334602)
(0.377011 -0.214463 -0.0166429)
(0.369667 -0.378739 -0.0307303)
(0.201962 -0.467187 -0.0374703)
(0.212482 -0.848979 -0.0272447)
(-0.0100137 -1.45181 0.00441368)
(-0.0844806 -2.94005 0.0218011)
(-0.444522 -4.74726 0.0221074)
(-0.311269 -5.58375 0.0170285)
(0.0172193 0.172295 -0.0157695)
(0.0321007 0.514369 -0.0580598)
(0.0571517 0.926631 -0.0867726)
(0.154806 1.2383 -0.0941224)
(0.267905 1.44819 -0.102887)
(0.349838 1.54916 -0.0945152)
(0.381965 1.55965 -0.0780393)
(0.437616 1.454 -0.0433345)
(0.500043 1.33123 -0.00479505)
(0.546425 1.18055 0.0370278)
(0.591824 1.0385 0.0801408)
(0.630387 0.897659 0.123846)
(0.663478 0.771189 0.16845)
(0.688338 0.658009 0.211504)
(0.698693 0.550334 0.245017)
(0.678672 0.497538 0.267036)
(0.651822 0.531181 0.258066)
(0.643735 0.539648 0.17432)
(0.751147 0.500336 0.0656046)
(0.969717 0.32 -0.0182416)
(1.23129 0.121395 -0.0211315)
(1.38808 0.0726652 -0.0373114)
(1.45929 -0.00871522 -0.0438586)
(1.45686 -0.212676 0.00207682)
(1.26182 -0.200824 0.0820156)
(1.2316 -0.0810414 0.105604)
(1.21231 -0.00825482 0.0902978)
(1.06478 0.00179934 0.0655638)
(0.797195 0.0343474 0.0490661)
(0.752675 -0.00835502 0.0388174)
(0.59002 -0.00690355 0.0255666)
(0.598897 -0.0869047 0.0111541)
(0.459266 -0.105462 0.0019132)
(0.462273 -0.267995 -0.014813)
(0.271887 -0.337154 -0.0148687)
(0.269236 -0.713633 -0.0129995)
(0.0431447 -1.25729 0.00858561)
(-0.0148578 -2.73546 0.039617)
(-0.503108 -4.69859 0.0300341)
(-0.312576 -6.19639 0.0282082)
(-0.0198923 0.144441 -0.0199241)
(-0.0306329 0.538858 -0.0673865)
(-0.0278597 0.881044 -0.0925728)
(0.0262658 1.22993 -0.104196)
(0.168997 1.39051 -0.111894)
(0.322526 1.43597 -0.105211)
(0.3834 1.45587 -0.0990554)
(0.438542 1.35126 -0.0723086)
(0.528729 1.24402 -0.0445729)
(0.593367 1.10764 -0.0116977)
(0.658565 0.980426 0.0189745)
(0.707465 0.85367 0.0503266)
(0.75343 0.740596 0.0793914)
(0.787773 0.637352 0.106601)
(0.816384 0.544779 0.127226)
(0.82089 0.471428 0.14239)
(0.817103 0.426613 0.142134)
(0.819654 0.401908 0.111786)
(0.886001 0.383045 0.0516212)
(1.01613 0.281186 -0.0170415)
(1.28937 0.145736 -0.0471032)
(1.55147 0.0842052 -0.0453917)
(1.58262 0.0342826 -0.026625)
(1.61081 -0.0829071 0.025566)
(1.52288 -0.0713547 0.0604)
(1.47277 -0.0217052 0.079733)
(1.39235 0.0593967 0.0651626)
(1.22365 0.0538888 0.0483001)
(0.928786 0.0943398 0.0313734)
(0.890706 0.0484313 0.0235832)
(0.741307 0.0677548 0.0117636)
(0.770168 -0.000423496 0.00594568)
(0.58333 -0.00218658 -0.00553081)
(0.615061 -0.138848 -0.0114975)
(0.386163 -0.187149 -0.0158475)
(0.414451 -0.521418 -0.00371563)
(0.129991 -0.97573 0.00977465)
(0.150898 -2.42016 0.0545858)
(-0.487607 -4.58076 0.0194666)
(-0.248568 -6.79248 0.0367873)
(0.0532789 0.279878 -0.0292289)
(1.15281e-05 0.473626 -0.075468)
(-0.100362 0.762772 -0.0998794)
(-0.046786 0.978725 -0.110028)
(-0.00593336 1.19486 -0.119024)
(0.187711 1.18926 -0.112646)
(0.323659 1.21525 -0.113749)
(0.396985 1.13145 -0.0963306)
(0.519081 1.05007 -0.0772742)
(0.61052 0.944903 -0.0552627)
(0.701844 0.843455 -0.0320766)
(0.769807 0.742332 -0.0102666)
(0.829629 0.653661 0.00995656)
(0.872669 0.571749 0.029031)
(0.908569 0.497661 0.0430415)
(0.929906 0.423107 0.0543685)
(0.946087 0.370349 0.0550667)
(0.965551 0.330365 0.0393428)
(1.02596 0.304983 0.0135164)
(1.15544 0.222346 -0.0112769)
(1.44902 0.161912 -0.0303794)
(1.70516 0.114766 -0.0393169)
(1.71913 0.0562347 -0.0382929)
(1.75263 -0.00258298 -0.0205704)
(1.69253 -0.00288303 -0.00510303)
(1.71172 -0.00384415 0.00635285)
(1.62421 0.0843699 0.00438142)
(1.46875 0.0783843 0.00426194)
(1.15503 0.142847 -0.000212254)
(1.1404 0.114944 -0.00345802)
(0.976577 0.161985 -0.00614764)
(1.04113 0.0750663 -0.0106641)
(0.858129 0.0808163 -0.0114457)
(0.946447 -0.035771 -0.0119785)
(0.688201 -0.103077 -0.0139404)
(0.788366 -0.383387 -0.00805074)
(0.424656 -0.785897 0.0123442)
(0.529316 -2.0433 0.0295552)
(-0.213343 -4.37074 0.0432003)
(0.03841 -7.31446 0.0450873)
(-0.226865 0.0732634 -0.0404554)
(-0.307398 0.696446 -0.0956126)
(-0.297103 0.87211 -0.113073)
(-0.261103 1.02097 -0.11877)
(-0.123364 1.04751 -0.129603)
(0.0553031 1.06391 -0.121853)
(0.233694 1.00728 -0.131036)
(0.347268 0.945374 -0.11927)
(0.501034 0.870528 -0.109628)
(0.618608 0.795027 -0.0961375)
(0.738847 0.718873 -0.0825477)
(0.834154 0.643051 -0.0680844)
(0.920345 0.575875 -0.0540496)
(0.986008 0.51365 -0.0404048)
(1.03711 0.458381 -0.0292286)
(1.07691 0.400099 -0.02017)
(1.12133 0.349527 -0.0198229)
(1.17178 0.307577 -0.0268941)
(1.23741 0.290719 -0.0392132)
(1.38267 0.218225 -0.0547086)
(1.71655 0.176468 -0.0750125)
(2.04015 0.125142 -0.0808816)
(2.08174 0.0826811 -0.0752227)
(2.18582 0.0386628 -0.0601876)
(2.15484 0.0456283 -0.0492555)
(2.20545 0.0223813 -0.0378369)
(2.10668 0.111903 -0.0371848)
(1.98551 0.0861249 -0.0365093)
(1.65164 0.166044 -0.0380379)
(1.70526 0.14848 -0.040435)
(1.53309 0.214089 -0.0390896)
(1.67182 0.142991 -0.0365328)
(1.46087 0.149555 -0.03675)
(1.62861 0.0269935 -0.0384661)
(1.29891 -0.0263677 -0.0341742)
(1.48215 -0.247708 -0.0213541)
(1.02543 -0.500426 -0.00641912)
(1.207 -1.45321 0.0182908)
(0.372235 -3.87118 0.0306159)
(0.496262 -7.20236 0.0444861)
(-0.732428 0.799046 -0.0801817)
(-0.609772 0.398977 -0.122741)
(-0.755827 0.580062 -0.120523)
(-0.465333 0.603231 -0.121434)
(-0.316371 0.62043 -0.128429)
(-0.00508298 0.665163 -0.127655)
(0.218081 0.637505 -0.136572)
(0.437216 0.611516 -0.132794)
(0.662157 0.569747 -0.129094)
(0.866009 0.527852 -0.122928)
(1.06463 0.480806 -0.115616)
(1.2422 0.435397 -0.107219)
(1.40059 0.395791 -0.0991466)
(1.53612 0.362295 -0.0909227)
(1.64535 0.338166 -0.0852219)
(1.74719 0.306837 -0.0816)
(1.85153 0.267974 -0.0827924)
(1.99641 0.239802 -0.0881145)
(2.16154 0.225253 -0.0974537)
(2.43943 0.141533 -0.104487)
(2.8497 0.108788 -0.117308)
(3.28565 0.0614471 -0.120931)
(3.37733 0.0169235 -0.114148)
(3.52409 -0.0286769 -0.10431)
(3.46296 -0.0173954 -0.0890258)
(3.58174 -0.027206 -0.0794694)
(3.43529 0.0547122 -0.07707)
(3.39683 0.0531366 -0.073715)
(3.01183 0.129737 -0.0731328)
(3.17305 0.143423 -0.0718975)
(2.95466 0.200286 -0.0677805)
(3.25952 0.145887 -0.0628333)
(2.97077 0.116441 -0.0575039)
(3.30448 0.0301868 -0.0545264)
(2.83125 -0.0353944 -0.0456885)
(3.17936 -0.217063 -0.0396783)
(2.51068 -0.502611 -0.0266196)
(2.87197 -1.13126 -0.0109484)
(1.87999 -3.15109 0.0101596)
(1.33007 -6.0902 0.0300039)
(1.16157 1.48664 -0.029029)
(1.72576 0.734545 -0.0457343)
(2.46123 0.576696 -0.0496209)
(2.87181 0.355569 -0.0507542)
(3.14869 0.281314 -0.0553247)
(3.38818 0.229269 -0.055125)
(3.60816 0.212022 -0.059922)
(3.81942 0.191074 -0.0589985)
(4.04625 0.177587 -0.0586551)
(4.27874 0.163189 -0.0572011)
(4.50063 0.148732 -0.0552718)
(4.71443 0.133813 -0.0520261)
(4.89373 0.120887 -0.0498485)
(5.05477 0.109902 -0.047015)
(5.1705 0.104077 -0.0467434)
(5.29417 0.0988002 -0.0482338)
(5.42252 0.0800471 -0.0525886)
(5.63181 0.0614122 -0.0577629)
(5.87432 0.0776304 -0.070816)
(6.3194 0.0587473 -0.0830867)
(6.73545 0.0351355 -0.098726)
(7.22069 0.0140464 -0.107069)
(7.27364 -0.00208701 -0.101338)
(7.35407 -0.0483187 -0.0845057)
(7.17741 -0.0353009 -0.0731057)
(7.19209 -0.0517756 -0.0602432)
(6.84749 -0.0324705 -0.0559997)
(6.83061 -0.0186495 -0.0515896)
(6.3522 0.0142584 -0.0506231)
(6.58487 0.0320194 -0.0501395)
(6.32981 0.0669421 -0.0470987)
(6.75947 0.0690018 -0.0437202)
(6.45032 0.0487265 -0.0409846)
(6.84608 0.0172912 -0.0385691)
(6.30903 -0.0128842 -0.0345688)
(6.53713 -0.102799 -0.0267085)
(5.65937 -0.258117 -0.022017)
(5.69025 -0.583398 -0.0132744)
(4.2672 -1.14033 -0.00595094)
(2.77797 -2.52645 0.0105802)
(0.000381111 -0.00101872 -0.00351094)
(0.0205166 -0.00403297 -0.00918792)
(0.0491074 -0.00419959 -0.0127839)
(0.0697167 -0.00246761 -0.0152693)
(0.0823154 -0.00109911 -0.0188217)
(0.0735875 -0.00181632 -0.0198998)
(0.055924 0.00427899 -0.0188263)
(0.0381157 0.00223175 -0.0200053)
(0.0192123 0.0174839 -0.0202315)
(-0.0124564 0.0202814 -0.0168619)
(-0.0613029 0.0177122 -0.022631)
(-0.118839 0.0103192 -0.0235292)
(-0.182939 0.00390882 -0.0256922)
(-0.26141 0.00312159 -0.0300522)
(-0.335369 0.0111716 -0.0339841)
(-0.426859 0.0195281 -0.0433625)
(-0.504051 0.0119565 -0.0501429)
(-0.627197 -0.00149844 -0.0678864)
(-0.702981 -0.0104036 -0.0971051)
(-0.875665 -0.00941 -0.119769)
(-0.840182 0.029072 -0.135706)
(-0.655363 0.0294915 -0.153096)
(-0.652639 0.0328115 -0.159444)
(-0.643519 0.0252868 -0.169018)
(-0.625058 0.0219923 -0.177567)
(-0.571295 0.00444426 -0.193785)
(-0.499301 -0.0073788 -0.210267)
(-0.3819 -0.0248876 -0.223951)
(-0.244888 -0.0366734 -0.232897)
(-0.0934234 -0.048642 -0.238462)
(0.0555807 -0.0178241 -0.220655)
(0.272083 0.00651481 -0.202911)
(0.443486 -0.00451535 -0.180197)
(0.484014 0.0303791 -0.132868)
(0.448066 0.0469085 -0.0932807)
(0.349458 0.0465256 -0.057986)
(0.23117 0.0313076 -0.0375937)
(0.124657 0.0184831 -0.0243841)
(0.0425827 0.00290164 -0.0151843)
(-0.00164282 -0.00846227 -0.00483458)
(0.00641483 -0.0150122 -0.00965391)
(0.0422527 -0.0307868 -0.0229355)
(0.0859424 -0.0312804 -0.031531)
(0.115319 -0.0219214 -0.0379148)
(0.126426 -0.0115529 -0.046869)
(0.111164 -0.00446606 -0.0496613)
(0.0698991 0.0109195 -0.0526976)
(0.0258786 0.0351782 -0.0538548)
(-0.0387417 0.0581304 -0.0529286)
(-0.16006 0.0652611 -0.0456988)
(-0.313114 0.085672 -0.063016)
(-0.485489 0.109076 -0.0633761)
(-0.669276 0.136172 -0.0696264)
(-0.869375 0.165047 -0.0772803)
(-1.07199 0.189467 -0.0874241)
(-1.29997 0.177321 -0.106976)
(-1.49269 0.148854 -0.125952)
(-1.68812 0.106651 -0.151216)
(-1.81812 0.0816379 -0.178378)
(-1.96761 0.0636801 -0.199355)
(-1.83304 0.0897461 -0.211856)
(-1.58249 0.0685977 -0.218605)
(-1.47369 0.042556 -0.210735)
(-1.35885 -0.000955558 -0.192534)
(-1.28181 -0.0634298 -0.192836)
(-1.15413 -0.128993 -0.202458)
(-1.02117 -0.17722 -0.209035)
(-0.839837 -0.212806 -0.21127)
(-0.642402 -0.236508 -0.217733)
(-0.407157 -0.254893 -0.212725)
(-0.190543 -0.218906 -0.224194)
(0.0714922 -0.143928 -0.175692)
(0.352994 -0.076778 -0.201912)
(0.54618 -0.0121448 -0.172982)
(0.605603 0.0945271 -0.139256)
(0.55227 0.14164 -0.112687)
(0.429541 0.154157 -0.0866903)
(0.270838 0.127405 -0.0650239)
(0.113527 0.0852764 -0.0421368)
(0.0152718 0.0293315 -0.0139261)
(0.0097626 -0.0356967 -0.0157868)
(0.0494723 -0.067771 -0.0342398)
(0.0909897 -0.0654863 -0.0474752)
(0.110544 -0.0419413 -0.0577058)
(0.103172 -0.0134321 -0.0701976)
(0.0617111 0.0171624 -0.0737991)
(-0.00210066 0.0684394 -0.0824881)
(-0.110012 0.131546 -0.0827048)
(-0.277823 0.192856 -0.0804585)
(-0.476891 0.245487 -0.0784143)
(-0.707727 0.308755 -0.0763398)
(-0.970097 0.367879 -0.0757461)
(-1.23618 0.414898 -0.0783275)
(-1.50214 0.428131 -0.0847031)
(-1.76185 0.394365 -0.0955241)
(-1.99575 0.333248 -0.107773)
(-2.1668 0.285391 -0.114125)
(-2.33079 0.225421 -0.120975)
(-2.43189 0.186604 -0.124568)
(-2.51353 0.136044 -0.120707)
(-2.29904 0.122036 -0.109129)
(-2.01564 0.072012 -0.0947418)
(-1.85826 -0.00192213 -0.067257)
(-1.73553 -0.103875 -0.0574878)
(-1.64509 -0.22784 -0.0677415)
(-1.50784 -0.344078 -0.0608183)
(-1.36367 -0.439997 -0.0583882)
(-1.1917 -0.507373 -0.0596347)
(-1.02281 -0.535451 -0.0621613)
(-0.808462 -0.525487 -0.0647967)
(-0.589773 -0.492412 -0.0723596)
(-0.320605 -0.398271 -0.0801164)
(-0.0740048 -0.280621 -0.100924)
(0.184933 -0.129974 -0.103295)
(0.388106 0.0234441 -0.132424)
(0.431963 0.169358 -0.111713)
(0.386064 0.223937 -0.100836)
(0.259359 0.229714 -0.0812987)
(0.114035 0.176623 -0.0549726)
(0.0133344 0.0828462 -0.0181556)
(0.0107157 -0.064362 -0.0271448)
(0.045681 -0.105494 -0.0524642)
(0.0708531 -0.0928079 -0.0697575)
(0.0633108 -0.0478013 -0.0795242)
(0.0207396 0.0179165 -0.101452)
(-0.0481605 0.105947 -0.0962094)
(-0.165273 0.206234 -0.100923)
(-0.344599 0.325031 -0.0929871)
(-0.59119 0.447305 -0.0799483)
(-0.884374 0.546101 -0.0664738)
(-1.17822 0.612707 -0.059786)
(-1.46723 0.651203 -0.054047)
(-1.74526 0.635113 -0.0506786)
(-2.01453 0.57683 -0.0533076)
(-2.23381 0.501748 -0.0524868)
(-2.40137 0.430313 -0.0458691)
(-2.52373 0.366897 -0.0331375)
(-2.63821 0.294071 -0.0252889)
(-2.69474 0.241918 -0.00950546)
(-2.70579 0.160094 0.00636337)
(-2.44843 0.124898 0.0196155)
(-2.16169 0.040756 0.0329792)
(-2.01499 -0.0718839 0.0493237)
(-1.92578 -0.230292 0.0320644)
(-1.86011 -0.379945 0.0306983)
(-1.75191 -0.538151 0.0311176)
(-1.62903 -0.683431 0.0277698)
(-1.46769 -0.805208 0.0209482)
(-1.30949 -0.877044 0.00966134)
(-1.14387 -0.877448 0.00414382)
(-0.975784 -0.806766 -0.00612084)
(-0.76717 -0.678532 -0.0103055)
(-0.541217 -0.543546 -0.0396909)
(-0.274533 -0.327521 -0.0615841)
(0.00940419 -0.117258 -0.0834611)
(0.171245 0.0990024 -0.0920828)
(0.207959 0.233552 -0.0964444)
(0.165059 0.27712 -0.0849395)
(0.0682069 0.239646 -0.059211)
(0.00717343 0.121851 -0.0202508)
(0.0108794 -0.0963412 -0.0464728)
(0.0316363 -0.138536 -0.0775887)
(0.0243954 -0.0999696 -0.104699)
(-0.0161353 -0.00813663 -0.111928)
(-0.0875785 0.12043 -0.117404)
(-0.215279 0.270938 -0.114157)
(-0.392159 0.434101 -0.102125)
(-0.624952 0.596346 -0.0788425)
(-0.928854 0.737954 -0.0560063)
(-1.2477 0.8258 -0.0373407)
(-1.55091 0.847282 -0.0232535)
(-1.8497 0.811261 -0.0146313)
(-2.11054 0.736718 -0.00964511)
(-2.31376 0.652069 0.000908668)
(-2.46204 0.578744 0.00724884)
(-2.56887 0.497857 0.0138898)
(-2.63404 0.423383 0.0243501)
(-2.69327 0.342235 0.0387738)
(-2.70568 0.281994 0.0568369)
(-2.65077 0.174312 0.071476)
(-2.36475 0.126781 0.0850115)
(-2.09904 0.0183123 0.0913985)
(-1.99986 -0.128461 0.0830812)
(-1.94757 -0.309693 0.066129)
(-1.91561 -0.482744 0.0623736)
(-1.84808 -0.676312 0.0577148)
(-1.77176 -0.868283 0.0509361)
(-1.65428 -1.04727 0.0449638)
(-1.51716 -1.18979 0.0370924)
(-1.35062 -1.26409 0.0259502)
(-1.2055 -1.23306 0.0123733)
(-1.07373 -1.09784 0.00301576)
(-0.942696 -0.86194 -0.0116675)
(-0.689736 -0.602488 -0.0409144)
(-0.360875 -0.322165 -0.0766567)
(-0.094041 -0.0362868 -0.102902)
(0.0338858 0.159716 -0.101831)
(0.0441816 0.27399 -0.089696)
(0.0201787 0.256388 -0.0634735)
(-0.00414404 0.12968 -0.0234886)
(0.00574434 -0.114017 -0.0628372)
(0.00615319 -0.137479 -0.108749)
(-0.0315314 -0.0548167 -0.128692)
(-0.108373 0.109367 -0.134645)
(-0.234479 0.29529 -0.132308)
(-0.402096 0.507453 -0.1125)
(-0.611782 0.702339 -0.0813232)
(-0.867465 0.883928 -0.0471298)
(-1.19392 0.975628 -0.0172455)
(-1.55676 0.971568 -0.00134178)
(-1.8699 0.922624 0.0100628)
(-2.11149 0.849386 0.022783)
(-2.28591 0.777674 0.0344352)
(-2.41226 0.696719 0.0437138)
(-2.48875 0.606065 0.0507203)
(-2.5281 0.507252 0.0545572)
(-2.53714 0.42254 0.062952)
(-2.53958 0.339632 0.071853)
(-2.50505 0.28145 0.0881139)
(-2.39218 0.176814 0.099513)
(-2.09756 0.129865 0.111439)
(-1.86994 0.00510662 0.110329)
(-1.80978 -0.162036 0.0862382)
(-1.7901 -0.336489 0.0798804)
(-1.78723 -0.519507 0.0747168)
(-1.76739 -0.731197 0.0682219)
(-1.74557 -0.953926 0.0609082)
(-1.69601 -1.18331 0.054543)
(-1.62462 -1.39227 0.0460861)
(-1.50445 -1.54848 0.038718)
(-1.36747 -1.61966 0.026084)
(-1.21306 -1.55349 0.016864)
(-1.15999 -1.36636 0.00100632)
(-1.04278 -0.965205 -0.0142502)
(-0.695249 -0.611619 -0.0511714)
(-0.355673 -0.228993 -0.0847816)
(-0.116084 0.0646053 -0.0974214)
(-0.0160876 0.237082 -0.0933066)
(-0.0145185 0.245069 -0.0663562)
(-0.00341984 0.120396 -0.0259996)
(0.00260422 -0.106824 -0.0787097)
(-0.0215444 -0.077275 -0.130385)
(-0.0871375 0.0606852 -0.151234)
(-0.210083 0.278438 -0.148463)
(-0.368456 0.518859 -0.128486)
(-0.560571 0.753936 -0.0902516)
(-0.775874 0.956255 -0.0491685)
(-1.08957 1.05433 -0.00803294)
(-1.4856 1.01071 0.00257335)
(-1.7967 0.962155 0.0250478)
(-2.01062 0.925529 0.0457124)
(-2.16964 0.882392 0.0624685)
(-2.28169 0.814511 0.0721255)
(-2.34694 0.719422 0.0742611)
(-2.37045 0.612305 0.0676203)
(-2.35475 0.496258 0.0576967)
(-2.30583 0.409642 0.0535499)
(-2.24445 0.333932 0.0642377)
(-2.16335 0.285509 0.0868893)
(-2.01135 0.190376 0.105484)
(-1.72895 0.154138 0.117602)
(-1.55335 0.00262671 0.116244)
(-1.52634 -0.155973 0.0959363)
(-1.52454 -0.324527 0.0857015)
(-1.54298 -0.505226 0.0781317)
(-1.55672 -0.717539 0.0692278)
(-1.57787 -0.951557 0.0603375)
(-1.58761 -1.20835 0.0523948)
(-1.58827 -1.46891 0.0448998)
(-1.55193 -1.70338 0.0368284)
(-1.47255 -1.87356 0.0258369)
(-1.35156 -1.9131 0.0198166)
(-1.21941 -1.83139 0.012261)
(-1.18355 -1.50996 -0.00155898)
(-0.978606 -1.01808 -0.0246703)
(-0.552589 -0.546171 -0.0624902)
(-0.224426 -0.116275 -0.0929593)
(-0.0795431 0.128449 -0.0952)
(-0.0268432 0.19693 -0.0714466)
(-0.00509359 0.0924707 -0.0289878)
(0.00760899 -0.0639525 -0.0978909)
(-0.0408847 0.019342 -0.155535)
(-0.154359 0.210851 -0.169883)
(-0.296584 0.470703 -0.151239)
(-0.477098 0.729533 -0.112191)
(-0.6717 0.949803 -0.0631485)
(-0.978409 1.06841 -0.0163182)
(-1.35616 1.0263 -0.00105582)
(-1.64688 0.986675 0.0323812)
(-1.85078 0.993396 0.057683)
(-2.00031 0.975227 0.0810994)
(-2.09649 0.91984 0.0957738)
(-2.15491 0.837152 0.100822)
(-2.17579 0.726968 0.0932538)
(-2.16037 0.601666 0.0776735)
(-2.09543 0.460022 0.0605931)
(-1.99202 0.355018 0.0625587)
(-1.8803 0.273365 0.069065)
(-1.77047 0.24975 0.09378)
(-1.59392 0.216734 0.118255)
(-1.36693 0.198906 0.13654)
(-1.23757 0.0160658 0.122476)
(-1.22427 -0.126332 0.106864)
(-1.23574 -0.288972 0.0950274)
(-1.26091 -0.458153 0.0853938)
(-1.29227 -0.657719 0.0753059)
(-1.33598 -0.884181 0.064452)
(-1.38231 -1.14373 0.0540131)
(-1.43423 -1.42738 0.0432811)
(-1.46905 -1.71444 0.0343207)
(-1.47356 -1.97167 0.0241958)
(-1.42514 -2.13823 0.0173391)
(-1.32231 -2.15344 0.0122088)
(-1.23645 -1.99725 0.00820453)
(-1.13474 -1.53842 -0.00516595)
(-0.798037 -0.944273 -0.0286727)
(-0.344057 -0.395572 -0.0653607)
(-0.0910888 0.0273663 -0.0801807)
(-0.0137118 0.138234 -0.0668584)
(0.00238389 0.0787804 -0.0280151)
(-0.00313711 -0.0153055 -0.111489)
(-0.0735883 0.113087 -0.173479)
(-0.199607 0.33865 -0.179094)
(-0.366347 0.607514 -0.14424)
(-0.563084 0.84537 -0.0932207)
(-0.837152 1.0161 -0.0390207)
(-1.17722 1.02525 -0.00819066)
(-1.45485 1.0228 0.0290207)
(-1.66564 1.05385 0.0583941)
(-1.80142 1.0478 0.0888146)
(-1.87733 1.00619 0.113141)
(-1.92003 0.937895 0.128757)
(-1.94598 0.848469 0.129772)
(-1.95177 0.722173 0.114282)
(-1.93889 0.569367 0.0741875)
(-1.86103 0.391836 0.0226357)
(-1.71646 0.27712 -0.0258157)
(-1.52813 0.250241 -0.00889021)
(-1.34049 0.283548 0.061014)
(-1.16898 0.320851 0.138063)
(-1.0533 0.275968 0.153135)
(-0.989933 0.0557255 0.131541)
(-0.97076 -0.0916605 0.117319)
(-0.984658 -0.247022 0.103852)
(-1.00583 -0.406162 0.092163)
(-1.0391 -0.586713 0.0807132)
(-1.08686 -0.796263 0.0683062)
(-1.1455 -1.04065 0.0556632)
(-1.21893 -1.32362 0.0427047)
(-1.29356 -1.63189 0.0305898)
(-1.35618 -1.94522 0.020173)
(-1.3826 -2.21132 0.011526)
(-1.35195 -2.36554 0.00785279)
(-1.26052 -2.33128 0.00590593)
(-1.17665 -2.04282 0.00197523)
(-0.956882 -1.42768 -0.00763843)
(-0.469311 -0.720897 -0.0356553)
(-0.134026 -0.156693 -0.0585745)
(-0.0393339 0.07825 -0.0645771)
(0.00991883 0.0661482 -0.0277275)
(-0.0150311 0.0386376 -0.120565)
(-0.10884 0.229365 -0.186877)
(-0.256263 0.473087 -0.183648)
(-0.427288 0.720936 -0.137105)
(-0.646596 0.92928 -0.0768179)
(-0.943103 1.0268 -0.0261204)
(-1.23835 1.0629 0.0149762)
(-1.45861 1.10464 0.047202)
(-1.59364 1.1071 0.0840747)
(-1.65059 1.07237 0.116221)
(-1.67508 1.01751 0.146199)
(-1.68549 0.950974 0.164046)
(-1.71549 0.870895 0.161571)
(-1.75441 0.755817 0.120316)
(-1.77481 0.619005 0.0456746)
(-1.65778 0.414972 -0.00450298)
(-1.36282 0.220419 0.0879272)
(-1.11318 0.0552014 0.184295)
(-1.01661 0.103126 0.24893)
(-0.966018 0.370466 0.282247)
(-0.918634 0.384149 0.246915)
(-0.845199 0.0941423 0.171272)
(-0.787714 -0.0673057 0.136742)
(-0.793484 -0.207643 0.119998)
(-0.802263 -0.359306 0.102433)
(-0.827853 -0.518065 0.0893001)
(-0.869051 -0.706492 0.0741722)
(-0.924164 -0.925641 0.059366)
(-1.00009 -1.18998 0.0433796)
(-1.08807 -1.4959 0.0287657)
(-1.18326 -1.83497 0.0160747)
(-1.26066 -2.17115 0.00680143)
(-1.29646 -2.44056 0.00214607)
(-1.26565 -2.55655 0.00116824)
(-1.16851 -2.43062 0.0012691)
(-1.0295 -1.95788 -0.00137949)
(-0.670883 -1.16114 -0.0124827)
(-0.211766 -0.450268 -0.0452118)
(-0.0388703 0.00685179 -0.0390535)
(0.00584453 0.0471965 -0.0218008)
(-0.0182228 0.100442 -0.127048)
(-0.126919 0.353405 -0.194114)
(-0.288238 0.612696 -0.18405)
(-0.469048 0.855217 -0.128457)
(-0.722797 1.02896 -0.0654987)
(-1.00426 1.0981 -0.0110766)
(-1.2409 1.14588 0.0254512)
(-1.38371 1.15995 0.066102)
(-1.44198 1.13011 0.105071)
(-1.44014 1.07381 0.145054)
(-1.42036 1.02463 0.187122)
(-1.4149 0.986283 0.219955)
(-1.46024 0.954472 0.224884)
(-1.50768 0.863489 0.213997)
(-1.45593 0.605818 0.239556)
(-1.10358 0.077211 0.357254)
(-0.800092 -0.265206 0.362001)
(-0.856082 -0.202837 0.266184)
(-1.002 0.143705 0.261287)
(-1.0079 0.533445 0.394855)
(-0.883132 0.43544 0.329279)
(-0.741917 0.0287168 0.175838)
(-0.66939 -0.099466 0.139141)
(-0.651519 -0.197407 0.132625)
(-0.653237 -0.336449 0.111499)
(-0.66496 -0.471239 0.0975521)
(-0.695451 -0.637796 0.0796669)
(-0.736874 -0.827422 0.0623964)
(-0.801646 -1.0629 0.0439975)
(-0.883369 -1.34581 0.0265914)
(-0.985135 -1.68374 0.0116743)
(-1.08811 -2.05285 0.0011732)
(-1.17062 -2.40819 -0.00374555)
(-1.19597 -2.66093 -0.00441949)
(-1.14238 -2.69727 -0.00262182)
(-1.00909 -2.40803 -0.000857425)
(-0.77486 -1.67768 -0.00526336)
(-0.316044 -0.744193 -0.0195071)
(-0.0432913 -0.110619 -0.04097)
(-0.0151316 0.0325152 -0.021664)
(-0.0194729 0.174631 -0.130255)
(-0.135907 0.484958 -0.198359)
(-0.30476 0.754763 -0.183953)
(-0.508094 0.984558 -0.123157)
(-0.767764 1.11507 -0.0593114)
(-1.00472 1.18474 -3.87809e-05)
(-1.17248 1.21203 0.0345878)
(-1.24404 1.18605 0.0785288)
(-1.24239 1.12154 0.123866)
(-1.18467 1.05291 0.17721)
(-1.1211 1.02296 0.243666)
(-1.08238 1.02827 0.309566)
(-1.11227 1.02811 0.369792)
(-1.06946 0.794023 0.478615)
(-0.740705 0.250893 0.493124)
(-0.277159 -0.179573 0.0858609)
(-0.252436 0.0762673 -0.404498)
(-0.531228 0.517159 -0.4449)
(-0.730882 0.650672 -0.0759523)
(-0.74108 0.773167 0.349774)
(-0.5613 0.490519 0.347908)
(-0.504805 0.00823965 0.163608)
(-0.532058 -0.113848 0.143569)
(-0.519415 -0.186727 0.143785)
(-0.536038 -0.317543 0.123046)
(-0.539808 -0.436557 0.106277)
(-0.563794 -0.585881 0.085623)
(-0.590654 -0.749894 0.0650382)
(-0.64082 -0.954606 0.0441211)
(-0.707296 -1.20557 0.0241651)
(-0.799423 -1.52165 0.00700679)
(-0.906501 -1.89571 -0.00485266)
(-1.01537 -2.30282 -0.0109658)
(-1.08896 -2.66599 -0.0111946)
(-1.08908 -2.8687 -0.00684582)
(-0.982991 -2.75538 -0.00289923)
(-0.784575 -2.19478 -0.0016284)
(-0.419362 -1.16102 -0.00825448)
(-0.081182 -0.283262 -0.0144312)
(-0.0183808 0.00507225 -0.0105906)
(-0.0165666 0.243536 -0.129579)
(-0.13297 0.607819 -0.198022)
(-0.311775 0.887191 -0.181422)
(-0.538129 1.08778 -0.118704)
(-0.772834 1.20129 -0.0545012)
(-0.951972 1.26091 0.00247683)
(-1.06559 1.25109 0.0395271)
(-1.07921 1.17976 0.0854207)
(-1.02789 1.08516 0.139795)
(-0.911591 1.00734 0.207989)
(-0.783816 0.998524 0.315263)
(-0.699569 1.05807 0.446205)
(-0.732189 1.00512 0.611875)
(-0.464865 0.525254 0.60028)
(0.202342 0.172055 -0.196633)
(0.390492 0.435835 -1.04712)
(-0.104499 0.951625 -1.05224)
(-0.521933 0.861838 -0.512439)
(-0.691586 0.606821 0.0864845)
(-0.677089 0.691346 0.475832)
(-0.368862 0.533021 0.441159)
(-0.35243 0.0942593 0.250491)
(-0.450885 -0.0680391 0.210454)
(-0.430767 -0.164158 0.178527)
(-0.457405 -0.296827 0.148443)
(-0.45078 -0.413259 0.119946)
(-0.468557 -0.551647 0.0935048)
(-0.48041 -0.697201 0.0676249)
(-0.514726 -0.874519 0.0438516)
(-0.562044 -1.09085 0.0210259)
(-0.635816 -1.37283 0.00202379)
(-0.731792 -1.72899 -0.0115067)
(-0.846414 -2.15375 -0.0193433)
(-0.946424 -2.59108 -0.0192447)
(-0.99337 -2.93161 -0.0135923)
(-0.938943 -3.00363 -0.00624893)
(-0.761805 -2.62732 -0.00462806)
(-0.462055 -1.66337 -0.00663539)
(-0.104795 -0.525657 -0.0250731)
(-0.0155772 -0.0491568 -0.0162771)
(-0.0122985 0.308183 -0.127227)
(-0.122645 0.728061 -0.196733)
(-0.319578 1.00707 -0.180969)
(-0.540208 1.18713 -0.117645)
(-0.733154 1.30048 -0.0545029)
(-0.868764 1.32577 -0.000232846)
(-0.934374 1.27013 0.035563)
(-0.908037 1.15324 0.0855046)
(-0.813666 1.02435 0.145396)
(-0.630246 0.919945 0.235122)
(-0.421178 0.944416 0.403045)
(-0.402691 1.02869 0.66244)
(-0.436375 0.847351 0.675775)
(0.285732 0.451263 -0.160551)
(0.4514 0.585673 -1.13522)
(-0.263575 0.999927 -1.1784)
(-0.92268 0.983921 -0.637575)
(-1.13624 0.600153 -0.0840411)
(-1.14711 0.39486 0.268557)
(-1.02586 0.502741 0.473677)
(-0.44154 0.428513 0.465452)
(-0.336638 0.0871961 0.331176)
(-0.414629 -0.0520166 0.276687)
(-0.376788 -0.160194 0.215991)
(-0.400195 -0.286659 0.177688)
(-0.385834 -0.401707 0.133942)
(-0.398216 -0.531299 0.101483)
(-0.398916 -0.663772 0.0684104)
(-0.419859 -0.818723 0.0420695)
(-0.449714 -1.00483 0.0159564)
(-0.504455 -1.24921 -0.00354126)
(-0.584041 -1.57608 -0.0200996)
(-0.691978 -1.9948 -0.0285151)
(-0.804564 -2.47488 -0.028376)
(-0.882748 -2.92299 -0.0203933)
(-0.879384 -3.16321 -0.0104411)
(-0.745095 -2.97925 -0.00432636)
(-0.486859 -2.14893 -0.00605456)
(-0.12769 -0.862893 -0.0137622)
(-0.0064694 -0.12506 -0.0136146)
(-0.00508695 0.354641 -0.122534)
(-0.11818 0.825303 -0.193437)
(-0.315301 1.10393 -0.179186)
(-0.512875 1.28758 -0.119285)
(-0.676899 1.3831 -0.0579922)
(-0.77781 1.36934 -0.00744302)
(-0.812351 1.26459 0.0268767)
(-0.762529 1.10622 0.0764351)
(-0.641344 0.930227 0.138675)
(-0.374386 0.792924 0.239193)
(-0.220292 0.866699 0.547268)
(-0.471396 0.906908 0.717678)
(-0.174365 0.769511 0.0709219)
(0.0420317 0.857369 -0.661001)
(-0.82657 0.957732 -0.506072)
(-1.31343 0.957332 -0.378417)
(-1.44302 0.796687 -0.210168)
(-1.26385 0.535557 -0.102224)
(-1.18245 0.461158 0.0725186)
(-0.987024 0.440164 0.331083)
(-0.326072 0.307137 0.393679)
(-0.241954 0.0816306 0.392069)
(-0.352889 -0.0329064 0.348931)
(-0.322334 -0.152074 0.260547)
(-0.346033 -0.277772 0.212558)
(-0.329534 -0.395865 0.150995)
(-0.339416 -0.521752 0.110477)
(-0.332768 -0.646254 0.069144)
(-0.344855 -0.78353 0.0393957)
(-0.360759 -0.943515 0.00994828)
(-0.399367 -1.151 -0.011116)
(-0.460512 -1.43973 -0.0293496)
(-0.5551 -1.83422 -0.0390149)
(-0.667358 -2.33068 -0.0389792)
(-0.765064 -2.85428 -0.0296814)
(-0.8007 -3.24319 -0.0163422)
(-0.708784 -3.24516 -0.00742205)
(-0.487053 -2.58084 -0.0060748)
(-0.137428 -1.22735 -0.0138238)
(0.0249636 -0.169352 -0.0150908)
(-0.00297012 0.394791 -0.117445)
(-0.108478 0.915006 -0.189675)
(-0.290302 1.21808 -0.180793)
(-0.464775 1.39514 -0.125999)
(-0.60683 1.46838 -0.0690425)
(-0.687673 1.41182 -0.022575)
(-0.705293 1.26151 0.0100259)
(-0.653461 1.06333 0.0596139)
(-0.517305 0.819891 0.0990391)
(-0.223239 0.692721 0.277824)
(-0.413156 0.804713 0.658993)
(-0.637192 0.940206 0.491471)
(-0.394488 1.12257 -0.0545167)
(-1.2491 1.23961 0.38297)
(-1.63943 0.738768 0.681747)
(-1.1239 0.36515 0.252629)
(-1.00397 0.384652 0.0552511)
(-0.915125 0.417562 -0.232682)
(-0.922327 0.473099 0.0710313)
(-0.767522 0.297067 0.325388)
(-0.204284 0.184745 0.354972)
(-0.211541 0.117734 0.517054)
(-0.321046 -0.00665577 0.473208)
(-0.290356 -0.138726 0.318587)
(-0.304234 -0.270033 0.254876)
(-0.283707 -0.391589 0.167859)
(-0.288993 -0.516026 0.119048)
(-0.275778 -0.63593 0.0682862)
(-0.280687 -0.761628 0.0352212)
(-0.286474 -0.903575 0.00220794)
(-0.312546 -1.08067 -0.0206304)
(-0.359155 -1.33276 -0.0403593)
(-0.44118 -1.69493 -0.0503621)
(-0.549188 -2.18944 -0.0506203)
(-0.656514 -2.76511 -0.0393919)
(-0.719666 -3.2801 -0.0232642)
(-0.665712 -3.45927 -0.00951974)
(-0.477376 -2.97242 -0.00676942)
(-0.149023 -1.6227 -0.0117513)
(0.054747 -0.250945 -0.0161915)
(-0.00237894 0.411462 -0.112415)
(-0.0897151 0.988954 -0.186334)
(-0.25462 1.31607 -0.18213)
(-0.412833 1.48294 -0.134085)
(-0.540057 1.52825 -0.079371)
(-0.615741 1.43444 -0.0382997)
(-0.630222 1.24872 -0.0102969)
(-0.606198 1.01408 0.0321215)
(-0.469879 0.724335 0.0479266)
(-0.343313 0.632563 0.341953)
(-0.913285 0.834349 0.722855)
(-0.943804 1.31556 0.565628)
(-1.14897 1.70128 0.703302)
(-1.65021 1.49699 1.09817)
(-0.79503 0.407426 0.415275)
(-0.51781 0.23714 -0.0308004)
(-0.792586 0.73775 -0.435416)
(-0.763154 0.759005 -0.519012)
(-0.787886 0.483153 0.0266668)
(-0.717699 0.135898 0.186606)
(-0.314151 0.0642934 0.237862)
(-0.319157 0.112742 0.632467)
(-0.308588 -0.0155053 0.567731)
(-0.256962 -0.137935 0.358539)
(-0.26098 -0.264426 0.285783)
(-0.23382 -0.388414 0.179033)
(-0.236082 -0.513127 0.121407)
(-0.220023 -0.629329 0.063477)
(-0.224151 -0.743703 0.0279489)
(-0.224217 -0.868075 -0.00707996)
(-0.241424 -1.01552 -0.0311751)
(-0.273882 -1.229 -0.0517057)
(-0.340334 -1.5518 -0.0631983)
(-0.439485 -2.03411 -0.0631378)
(-0.555368 -2.64613 -0.0506818)
(-0.64249 -3.26913 -0.0308079)
(-0.625244 -3.6134 -0.013039)
(-0.468399 -3.30336 -0.00704626)
(-0.167311 -1.98316 -0.0123251)
(0.0613392 -0.299072 -0.0179097)
(0.00415423 0.437002 -0.107152)
(-0.0559193 1.06453 -0.179415)
(-0.209317 1.42779 -0.186276)
(-0.360459 1.58498 -0.145487)
(-0.478937 1.60978 -0.0940777)
(-0.556377 1.48684 -0.0631147)
(-0.579531 1.28364 -0.03383)
(-0.595972 1.01892 -0.00101715)
(-0.501608 0.718229 0.0109588)
(-0.772945 0.682466 0.443844)
(-1.54407 1.08899 0.891663)
(-1.50544 1.76503 1.16618)
(-1.39402 2.09543 1.02639)
(-0.386187 1.64581 -0.0816841)
(0.320848 0.713647 -1.42861)
(-0.625551 0.809364 -1.81489)
(-0.964327 1.40718 -1.47214)
(-0.664835 1.0466 -0.558425)
(-0.712001 0.465357 0.103418)
(-0.737036 0.0677163 0.0668493)
(-0.446809 0.018127 0.16596)
(-0.427293 0.0734714 0.640972)
(-0.278427 -0.042415 0.622499)
(-0.20879 -0.139133 0.370251)
(-0.214134 -0.246026 0.286845)
(-0.188459 -0.358431 0.170395)
(-0.183469 -0.476587 0.115777)
(-0.158968 -0.595746 0.0555397)
(-0.158981 -0.714007 0.0181325)
(-0.154931 -0.837767 -0.017138)
(-0.167075 -0.97227 -0.0427777)
(-0.19314 -1.15709 -0.0637815)
(-0.251064 -1.43277 -0.0749583)
(-0.340702 -1.88062 -0.0750692)
(-0.45289 -2.50544 -0.0614679)
(-0.553621 -3.22779 -0.0380979)
(-0.571842 -3.7409 -0.0152595)
(-0.449009 -3.62131 -0.00722307)
(-0.17234 -2.37138 -0.0116153)
(0.0664917 -0.417501 -0.0191973)
(-0.00792807 0.453363 -0.104365)
(-0.0496657 1.15066 -0.180407)
(-0.172281 1.54244 -0.187019)
(-0.313897 1.70226 -0.157493)
(-0.422973 1.71072 -0.10682)
(-0.499308 1.57128 -0.0895605)
(-0.527676 1.35988 -0.0561354)
(-0.600289 1.10194 -0.056825)
(-0.598894 0.870699 0.00680218)
(-1.28944 0.984321 0.587278)
(-1.99996 1.52333 1.37113)
(-1.57823 1.75406 1.8606)
(-0.424932 1.17049 0.119186)
(1.54859 1.10328 -1.40538)
(0.75748 0.860815 -1.19115)
(-1.26881 1.56658 -1.56339)
(-1.10739 2.00724 -1.6885)
(-0.222216 1.02947 -0.121564)
(-0.434849 0.227633 0.612944)
(-0.625295 -0.208193 0.329842)
(-0.396448 -0.0244236 0.13364)
(-0.415258 0.0989301 0.581606)
(-0.216811 -0.053934 0.628906)
(-0.129062 -0.132692 0.35408)
(-0.137054 -0.213314 0.256313)
(-0.118652 -0.302041 0.12458)
(-0.12776 -0.399245 0.0697197)
(-0.117309 -0.50363 0.0205914)
(-0.125273 -0.608418 -0.00600056)
(-0.119474 -0.72001 -0.033926)
(-0.123184 -0.839149 -0.0561047)
(-0.130497 -0.999116 -0.0776346)
(-0.166239 -1.24815 -0.0918379)
(-0.233952 -1.67806 -0.0906966)
(-0.347203 -2.3124 -0.0750776)
(-0.468021 -3.10119 -0.0462489)
(-0.525144 -3.7801 -0.0188019)
(-0.454779 -3.86536 -0.00775462)
(-0.210228 -2.70891 -0.0126209)
(0.0479074 -0.470327 -0.0210116)
(0.00638664 0.558274 -0.0920784)
(-0.0221517 1.3283 -0.169411)
(-0.117537 1.72697 -0.176926)
(-0.237136 1.92168 -0.16345)
(-0.351063 1.92814 -0.114625)
(-0.412533 1.79614 -0.110223)
(-0.430556 1.59859 -0.0580052)
(-0.534561 1.39391 -0.0842723)
(-0.585898 1.26461 0.0398304)
(-1.42656 1.50683 0.697006)
(-1.5499 1.74955 1.81068)
(-0.976785 0.595568 1.77366)
(0.616135 -0.967061 -1.23226)
(1.86275 -0.50723 -2.87556)
(-1.40011 0.538629 0.473409)
(-3.34958 2.09426 1.07241)
(-1.16558 2.4303 -0.893224)
(0.624939 0.841213 -0.0687347)
(0.343582 0.371745 0.898853)
(-0.1596 -0.272734 1.04083)
(-0.146664 -0.10643 0.26115)
(-0.360036 0.166478 0.551714)
(-0.227153 -0.0534109 0.701264)
(-0.0515623 -0.137446 0.367791)
(-0.0476078 -0.189065 0.220954)
(-0.0294021 -0.261914 0.0744867)
(-0.040183 -0.344798 0.0410679)
(-0.0330069 -0.436618 -0.00159618)
(-0.0478918 -0.520603 -0.0246976)
(-0.0538021 -0.606226 -0.0515248)
(-0.0699629 -0.697424 -0.0712333)
(-0.0973697 -0.820476 -0.0835256)
(-0.15829 -1.01181 -0.0928036)
(-0.222986 -1.36287 -0.0953508)
(-0.275282 -1.95767 -0.0842508)
(-0.355998 -2.84836 -0.0532564)
(-0.43839 -3.69972 -0.020007)
(-0.416899 -4.04075 -0.0065724)
(-0.20614 -3.08695 -0.0100752)
(0.0609374 -0.681157 -0.0173554)
(-0.010629 0.769719 -0.077703)
(-0.0186578 1.60581 -0.153418)
(-0.0737744 2.03659 -0.165906)
(-0.159599 2.21698 -0.154941)
(-0.263031 2.22967 -0.112335)
(-0.310266 2.09968 -0.115204)
(-0.315957 1.90814 -0.050376)
(-0.421132 1.70957 -0.0960938)
(-0.419908 1.61133 0.0701507)
(-0.984584 1.71698 0.536932)
(-0.197382 1.44107 1.06469)
(-0.207763 -0.833297 1.20169)
(0.174237 -2.14376 -1.06896)
(-0.110018 -0.42593 -2.19022)
(-4.58484 0.0726105 2.9057)
(-4.53244 -0.271458 3.51162)
(0.221826 0.340664 -0.098168)
(1.33046 0.0736245 -0.0623651)
(1.03931 0.553128 0.786501)
(0.206432 0.284112 0.99706)
(-0.170222 0.514379 0.40759)
(-0.453754 0.663533 0.68783)
(-0.415931 -0.0735424 1.06858)
(-0.156982 -0.226968 0.473456)
(-0.054004 -0.17553 0.161091)
(0.026051 -0.249503 -0.0237197)
(0.0280213 -0.353748 -0.0245986)
(0.0360503 -0.432397 -0.0300924)
(0.0243669 -0.488628 -0.0441513)
(0.0176114 -0.557471 -0.0673675)
(0.000250084 -0.625096 -0.084574)
(-0.016417 -0.722083 -0.0974953)
(-0.0541936 -0.843009 -0.105103)
(-0.135415 -1.09672 -0.100183)
(-0.319233 -1.57968 -0.0886049)
(-0.418745 -2.40456 -0.0593888)
(-0.437172 -3.38684 -0.0225518)
(-0.438808 -3.99549 -0.0073351)
(-0.272218 -3.33931 -0.0117906)
(0.00950478 -0.999209 -0.0222975)
(-0.035906 0.802906 -0.0666659)
(-0.0344251 1.71097 -0.138828)
(-0.0501904 2.18847 -0.156265)
(-0.0979436 2.36621 -0.144421)
(-0.167924 2.38264 -0.105312)
(-0.214259 2.27241 -0.106164)
(-0.207884 2.06594 -0.0334111)
(-0.285755 1.88514 -0.0655855)
(-0.163474 1.72746 0.165721)
(-0.641187 1.56425 0.601805)
(0.459177 1.02349 0.802583)
(-0.139752 -1.20895 1.31683)
(1.45688 -1.73529 -1.60443)
(1.12979 1.78698 -0.920266)
(-4.89492 0.0876007 5.20138)
(-4.31318 -3.29626 4.94406)
(1.47897 -2.17678 -0.561879)
(0.245739 -1.14225 0.511441)
(0.492856 -0.637824 0.798994)
(0.303563 0.258053 -0.634777)
(0.143451 1.13372 -1.15227)
(0.467261 1.13603 -0.785308)
(0.193451 0.308108 0.257359)
(-0.0576506 -0.0916876 0.201159)
(0.030083 -0.0270759 -0.12309)
(0.137933 -0.157607 -0.208109)
(0.140807 -0.362589 -0.122293)
(0.163833 -0.465536 -0.0780429)
(0.135173 -0.485638 -0.0701695)
(0.105818 -0.540313 -0.0822051)
(0.0705335 -0.59715 -0.094643)
(0.0460733 -0.680039 -0.10765)
(0.0145765 -0.770728 -0.112683)
(-0.0229227 -0.991842 -0.108557)
(-0.152794 -1.3644 -0.0881341)
(-0.376348 -2.03181 -0.0647498)
(-0.500204 -2.95201 -0.0252834)
(-0.498431 -3.70217 -0.00440585)
(-0.381141 -3.3143 -0.00580734)
(-0.0796282 -1.05681 -0.0176636)
(-0.0238231 0.77396 -0.0559803)
(-0.00930984 1.7081 -0.125846)
(-0.0037691 2.20485 -0.143986)
(-0.0279608 2.40933 -0.139975)
(-0.0547566 2.41732 -0.0886158)
(-0.0940976 2.34021 -0.0835742)
(-0.0883909 2.14547 -0.0168551)
(-0.169001 2.03933 -0.0113416)
(0.138566 1.82852 0.206083)
(-0.52055 1.65047 0.981652)
(0.379728 0.856367 1.89537)
(0.811137 -1.56592 2.30611)
(5.46345 -1.76833 -5.13378)
(5.14566 2.64829 -4.34781)
(-2.76375 0.482035 4.55479)
(-3.58325 -4.12552 5.48892)
(2.08464 -2.9804 -1.15142)
(0.479493 -1.08297 -1.31721)
(0.116865 -2.37113 -0.833642)
(-0.375349 -2.57831 -2.48043)
(0.123146 -0.726124 -4.45356)
(1.65767 0.168885 -5.08748)
(1.85123 0.630802 -2.94722)
(0.995317 0.148918 -0.912693)
(0.536187 -0.0296966 -0.278938)
(0.426994 -0.0540568 -0.177362)
(0.464317 -0.34052 -0.115844)
(0.408054 -0.519198 -0.105802)
(0.268409 -0.513915 -0.0927956)
(0.189413 -0.555072 -0.10089)
(0.142856 -0.598037 -0.112947)
(0.12509 -0.656946 -0.122406)
(0.0790476 -0.722194 -0.12354)
(0.0419225 -0.889686 -0.115041)
(-0.0675036 -1.23719 -0.0926325)
(-0.252703 -1.85637 -0.0633205)
(-0.419413 -2.6413 -0.0256439)
(-0.483367 -3.4142 -0.00467708)
(-0.385683 -3.22293 -0.00448455)
(-0.124052 -1.11738 -0.0154577)
(-0.011031 0.756772 -0.0444329)
(0.0163627 1.67215 -0.110993)
(0.0348121 2.18408 -0.131964)
(0.0329762 2.4143 -0.129552)
(0.0358323 2.42843 -0.0826135)
(0.00512957 2.34733 -0.0524782)
(0.0837287 2.16968 0.00963323)
(-0.0120699 2.08386 0.108705)
(0.439993 1.90126 0.1717)
(-0.164786 1.67752 1.30956)
(0.961633 0.466347 2.45318)
(3.03597 -2.30245 2.32851)
(7.11211 -2.17857 -7.05094)
(7.34998 2.34379 -8.28792)
(-1.37967 0.901434 2.4136)
(-3.2371 -3.48325 5.89773)
(1.34058 -3.19388 0.118622)
(1.92012 0.321371 -2.88017)
(1.51343 -1.55078 -2.90035)
(-0.669843 -4.34139 -1.95072)
(-1.30639 -3.8949 -5.15278)
(-0.44183 -2.17263 -8.41198)
(0.724823 -0.340247 -5.81553)
(1.77463 0.191648 -1.81754)
(1.32029 -0.100524 -0.157654)
(1.05812 -0.176111 0.105598)
(1.11029 -0.395915 0.0286955)
(0.809506 -0.504763 -0.0893555)
(0.445189 -0.497656 -0.112001)
(0.278506 -0.569927 -0.121203)
(0.22281 -0.620386 -0.136621)
(0.207648 -0.6692 -0.145186)
(0.169628 -0.721846 -0.138035)
(0.114075 -0.852229 -0.124546)
(0.0024107 -1.15499 -0.100127)
(-0.148186 -1.73325 -0.0628664)
(-0.318093 -2.49807 -0.0241149)
(-0.420056 -3.2911 -0.00374608)
(-0.381435 -3.27062 -0.00194146)
(-0.144859 -1.34287 -0.0155259)
(-0.00424164 0.703706 -0.0317967)
(0.0406773 1.58878 -0.0929605)
(0.0828805 2.12227 -0.116547)
(0.0945963 2.3789 -0.112778)
(0.11867 2.41333 -0.0725239)
(0.0963129 2.3294 -0.0207792)
(0.195891 2.16733 0.028657)
(0.124594 1.98676 0.213592)
(0.545623 1.89031 0.189083)
(0.147913 1.39021 1.42535)
(0.708157 0.00779679 2.21967)
(2.99354 -2.42243 1.94845)
(3.8254 -1.34779 -4.8288)
(5.41761 2.14679 -8.46239)
(-0.892978 1.23839 1.6386)
(-4.60627 -2.9174 5.48946)
(-1.78301 -3.08784 1.9202)
(0.964255 0.433101 -0.772347)
(2.42508 0.728034 -2.4044)
(0.880894 -2.13935 0.757232)
(-0.607634 -2.4893 1.16079)
(-0.801041 -1.61769 -4.58617)
(-0.907659 -0.850688 -5.55945)
(1.2009 -0.47544 -1.97793)
(1.83392 -0.533787 -0.0735704)
(1.61113 -0.529243 0.245149)
(1.49441 -0.375606 0.0936241)
(1.05364 -0.255887 -0.149594)
(0.602253 -0.331912 -0.222643)
(0.362316 -0.53733 -0.192431)
(0.28665 -0.64259 -0.189871)
(0.276432 -0.678949 -0.190766)
(0.235917 -0.699595 -0.168288)
(0.16686 -0.809229 -0.140005)
(0.0407681 -1.06633 -0.119618)
(-0.0675811 -1.62671 -0.064111)
(-0.223649 -2.41583 -0.0256343)
(-0.35019 -3.30319 -0.00132003)
(-0.355862 -3.41151 -0.000471938)
(-0.14407 -1.57147 -0.0168951)
(0.00247747 0.644794 -0.0211193)
(0.0608235 1.49475 -0.0759582)
(0.119935 2.04549 -0.100396)
(0.146733 2.32345 -0.0960909)
(0.182384 2.37847 -0.0596693)
(0.175037 2.28987 0.00403584)
(0.262784 2.13415 0.0631675)
(0.239633 1.88569 0.264796)
(0.481148 1.80813 0.263681)
(0.445846 1.21441 1.17089)
(0.208201 0.0242751 1.97942)
(1.1328 -1.51847 2.34531)
(0.703442 0.377107 -1.69021)
(3.9428 2.00548 -8.45098)
(2.60982 1.50743 -1.8461)
(-2.60571 -1.7242 3.66756)
(-4.38409 -2.51577 2.94857)
(-1.9499 -0.927537 1.59496)
(0.975854 0.588105 -0.455278)
(2.2362 -0.510368 0.788285)
(1.49425 -0.937452 4.48493)
(-0.243744 0.983556 2.40125)
(-0.735211 0.826336 -1.66057)
(0.277617 -0.05142 -0.894295)
(1.21426 0.331705 0.522225)
(1.05998 0.345305 0.667737)
(1.05097 0.112063 0.537779)
(1.07266 0.0229116 0.114089)
(0.807801 -0.184704 -0.208265)
(0.560719 -0.480512 -0.275993)
(0.435973 -0.688684 -0.288264)
(0.413995 -0.770945 -0.261103)
(0.352736 -0.779632 -0.20407)
(0.259434 -0.865341 -0.156251)
(0.102887 -1.07458 -0.12178)
(-0.0064183 -1.60022 -0.0799766)
(-0.162147 -2.44904 -0.0228328)
(-0.296031 -3.44644 -0.000560161)
(-0.338373 -3.71268 0.00486873)
(-0.141931 -1.90926 -0.014627)
(0.00621695 0.56881 -0.0120518)
(0.0752272 1.37486 -0.0603183)
(0.150521 1.93943 -0.0842192)
(0.188957 2.24059 -0.0798506)
(0.230839 2.3167 -0.0480194)
(0.231631 2.23121 0.0195219)
(0.29007 2.07454 0.0875202)
(0.300319 1.8035 0.273937)
(0.382751 1.67196 0.343818)
(0.52897 1.18916 0.856748)
(-0.0655774 0.289754 1.84895)
(0.0148853 -0.892987 2.01727)
(-0.211017 -0.0244441 0.100974)
(2.21264 1.12574 -5.58155)
(5.34812 0.96038 -7.26042)
(2.33313 -0.100486 -0.688477)
(-1.80811 -1.49219 3.29968)
(-3.70732 -1.94482 2.80643)
(-1.48 -0.908654 1.19304)
(0.626401 -0.339484 0.691183)
(0.582444 -0.837467 2.05498)
(-0.730668 0.919799 3.30734)
(-0.604758 2.14898 1.57765)
(0.297775 1.79762 0.37454)
(0.879974 2.02083 0.971953)
(0.67692 1.35149 1.34356)
(0.815506 -0.039943 1.3798)
(1.13062 -0.651525 0.853626)
(0.967903 -0.59408 0.0786778)
(0.717746 -0.611765 -0.248997)
(0.495265 -0.790751 -0.335986)
(0.475453 -0.925053 -0.34111)
(0.437895 -0.929242 -0.274389)
(0.336085 -1.02873 -0.20529)
(0.175263 -1.21564 -0.145664)
(0.045999 -1.7276 -0.105896)
(-0.119478 -2.59381 -0.031948)
(-0.236226 -3.72682 -0.00643577)
(-0.289698 -4.19642 0.00435347)
(-0.118168 -2.5243 -0.0138304)
(0.01553 0.498738 -0.00465533)
(0.0931559 1.2535 -0.0484277)
(0.173558 1.82917 -0.0708534)
(0.221162 2.15595 -0.0674879)
(0.264575 2.25751 -0.0388537)
(0.272891 2.18534 0.0250001)
(0.305645 2.03244 0.102147)
(0.325685 1.78023 0.256041)
(0.326552 1.58644 0.386018)
(0.427295 1.28824 0.67956)
(-0.0898463 0.608183 1.46514)
(-1.08899 -0.424101 1.91513)
(-1.06064 -1.02861 1.10613)
(-0.383586 0.330488 -1.30686)
(1.85862 1.10721 -5.38292)
(4.31808 1.01242 -5.33091)
(3.80671 -0.508641 -1.10955)
(0.501129 -1.85718 1.65149)
(-1.27269 -2.08113 2.01085)
(-1.02773 -0.965172 1.72488)
(-1.48124 -0.422309 1.43564)
(-1.71656 -0.248934 1.90259)
(-1.02852 0.586831 2.12967)
(-0.408996 1.56132 0.92066)
(-0.202273 1.82388 -0.0896873)
(0.0583526 0.495839 -0.380101)
(0.664235 -1.15053 0.0382193)
(1.20737 -1.41565 0.52847)
(1.25792 -0.648525 0.663475)
(0.876419 -0.376071 0.297909)
(0.521164 -0.699369 -0.157793)
(0.508281 -0.915257 -0.356953)
(0.464348 -0.878595 -0.301223)
(0.365193 -1.01135 -0.219424)
(0.200973 -1.19429 -0.152393)
(0.0614496 -1.7237 -0.108943)
(-0.112949 -2.60604 -0.0309184)
(-0.232464 -3.89805 -0.00547415)
(-0.31125 -4.60654 0.00611982)
(-0.142293 -3.14392 -0.0128728)
(0.0191528 0.432676 -0.00249144)
(0.106765 1.1141 -0.0424608)
(0.192709 1.69024 -0.0608282)
(0.243314 2.04033 -0.059092)
(0.28882 2.16923 -0.0348151)
(0.301999 2.1218 0.0214151)
(0.325195 1.98063 0.0970484)
(0.337042 1.75832 0.226607)
(0.346637 1.55416 0.361339)
(0.334474 1.35557 0.57816)
(0.157031 0.981853 1.00501)
(-0.813205 0.331896 1.83124)
(-1.23939 -0.365828 1.39974)
(-0.516331 0.0559283 -0.131082)
(-0.28641 1.04431 -1.49524)
(2.10132 0.528477 -3.82573)
(5.6095 -0.189777 -5.10144)
(5.18365 -1.22444 -2.85488)
(2.60476 -2.21729 -0.678665)
(0.354457 -1.78389 0.300325)
(-1.47479 -1.44442 0.392633)
(-2.55682 -1.85969 0.318268)
(-2.48881 -1.38102 0.564162)
(-2.33727 -0.0700661 -0.30489)
(-1.63004 0.648898 -1.8373)
(-0.214821 -0.127323 -1.6376)
(0.900162 -0.982403 -0.286246)
(1.38883 -0.513182 1.10289)
(1.17041 0.360279 1.48348)
(0.745025 0.0930874 0.6565)
(0.533806 -0.64133 -0.110787)
(0.51842 -0.79424 -0.341124)
(0.432832 -0.71466 -0.273189)
(0.374215 -0.872718 -0.205837)
(0.211467 -1.08533 -0.146749)
(0.0713746 -1.56672 -0.107762)
(-0.100883 -2.4511 -0.0261389)
(-0.229751 -3.85359 -0.00176871)
(-0.333532 -4.79387 0.00981617)
(-0.169884 -3.59314 -0.00892123)
(0.0147436 0.379372 -0.000827027)
(0.107859 0.992992 -0.0383006)
(0.20696 1.55522 -0.0571929)
(0.258014 1.9349 -0.0557743)
(0.306168 2.09541 -0.0370881)
(0.327642 2.07793 0.00988654)
(0.348668 1.95778 0.0745759)
(0.366641 1.75784 0.178082)
(0.380069 1.56718 0.290216)
(0.396251 1.38081 0.448147)
(0.34799 1.24451 0.678872)
(0.024332 0.780924 1.41385)
(-0.279771 -0.00863794 1.83816)
(0.154586 -0.125288 0.807802)
(0.856245 -0.517152 -0.193856)
(1.64826 -1.44529 -0.965716)
(2.65239 -1.38954 -1.97755)
(4.42965 -1.21012 -3.54994)
(4.63048 -1.50339 -4.06259)
(3.55055 -1.71369 -3.54483)
(2.09627 -2.28655 -2.7243)
(0.235628 -2.82245 -1.39205)
(-0.808426 -2.43001 -0.34944)
(-1.10172 -1.08198 -0.813056)
(-0.538499 -0.112249 -2.00417)
(0.419613 -0.159346 -1.20491)
(0.840115 -0.125848 -0.0348522)
(0.667305 0.45451 0.510612)
(0.517844 0.538519 0.415799)
(0.601961 -0.290503 -0.0504062)
(0.566156 -0.776187 -0.307012)
(0.495481 -0.631595 -0.262802)
(0.377373 -0.555359 -0.196054)
(0.325449 -0.74103 -0.157216)
(0.216007 -0.957142 -0.112354)
(0.097586 -1.42253 -0.0921449)
(-0.106694 -2.24659 -0.0126176)
(-0.219562 -3.72026 0.00869527)
(-0.356355 -4.86063 0.0177809)
(-0.192621 -3.97478 -0.00194703)
(0.0134199 0.317365 -0.000688066)
(0.100886 0.863273 -0.0356734)
(0.213681 1.38882 -0.0563626)
(0.272744 1.78814 -0.0564358)
(0.315577 1.97855 -0.0426894)
(0.346311 1.99312 -0.00543275)
(0.371396 1.89691 0.0468658)
(0.395655 1.72318 0.125344)
(0.424001 1.53539 0.218376)
(0.462756 1.35445 0.3332)
(0.527041 1.20591 0.491541)
(0.591222 0.856971 0.834305)
(0.738922 -0.0121955 1.46438)
(0.75377 -0.423397 1.8991)
(1.41662 -1.1981 1.57705)
(2.43652 -2.53436 1.04902)
(2.2592 -2.2453 1.0331)
(1.62596 -1.32288 -0.14908)
(1.25273 0.0526629 -1.70918)
(2.04699 0.696884 -2.18023)
(2.93998 -0.274497 -2.12826)
(2.2763 -1.90385 -0.701456)
(1.17566 -2.83585 1.18711)
(0.618951 -1.22099 0.68923)
(0.414217 0.577105 -1.42042)
(0.182181 0.00217901 -1.8663)
(0.153081 -0.375928 -1.5306)
(0.206255 0.0272249 -1.41468)
(0.553883 -0.266454 -1.01829)
(0.79489 -0.679793 -0.532534)
(0.602722 -0.586335 -0.243566)
(0.454847 -0.428092 -0.132309)
(0.333 -0.443215 -0.112477)
(0.29434 -0.648595 -0.106233)
(0.18886 -0.822154 -0.0876392)
(0.115476 -1.30214 -0.0573978)
(-0.0824602 -2.03776 -0.00482329)
(-0.200753 -3.55051 0.0235397)
(-0.367994 -4.85566 0.0251112)
(-0.218042 -4.31569 0.00570068)
(0.00811656 0.274713 -0.0016462)
(0.0809597 0.768355 -0.0357565)
(0.200575 1.26019 -0.0566268)
(0.278443 1.66459 -0.0614508)
(0.321661 1.89078 -0.0527445)
(0.360756 1.9367 -0.0244236)
(0.396289 1.86391 0.0155902)
(0.426426 1.70696 0.0761997)
(0.457728 1.5203 0.147977)
(0.501766 1.32029 0.235686)
(0.574107 1.13543 0.337417)
(0.698526 0.887746 0.481524)
(0.84477 0.451803 0.781497)
(0.958045 -0.13692 1.38637)
(1.15627 -1.09562 2.27315)
(1.52478 -1.88213 2.60453)
(2.09754 -1.64145 2.32588)
(0.820862 -0.669962 1.7318)
(-1.55344 0.618738 0.938541)
(-0.525837 0.995095 0.26596)
(1.63301 -0.073277 -0.0219238)
(1.74861 -0.968763 0.97203)
(0.826316 -1.41396 2.98353)
(0.00733662 -0.964605 3.09286)
(-0.0980716 0.167172 0.657414)
(0.324157 -0.239046 -0.658651)
(0.581947 -0.652783 -0.715915)
(0.701781 -0.238445 -0.647645)
(0.794078 -0.197327 -0.449496)
(0.723242 -0.244133 -0.148489)
(0.48045 -0.201171 -0.0240717)
(0.405224 -0.270479 -0.026944)
(0.300983 -0.359268 -0.0522219)
(0.280063 -0.553989 -0.0637363)
(0.160952 -0.700181 -0.05691)
(0.133574 -1.14074 -0.0292178)
(-0.0617507 -1.84703 0.0102958)
(-0.175604 -3.35633 0.0367114)
(-0.386846 -4.82191 0.0352798)
(-0.244846 -4.65905 0.0150026)
(0.0123087 0.220658 -0.00444771)
(0.0683297 0.655567 -0.0379039)
(0.173456 1.1073 -0.0595965)
(0.273338 1.48531 -0.0669478)
(0.325 1.73599 -0.0641058)
(0.36192 1.81367 -0.0435448)
(0.402683 1.76864 -0.0120105)
(0.438742 1.63033 0.0348117)
(0.471961 1.46083 0.0905381)
(0.51064 1.26459 0.154694)
(0.563348 1.0726 0.225573)
(0.648048 0.854627 0.303838)
(0.748378 0.590236 0.426264)
(0.868782 0.304403 0.625196)
(0.947811 -0.27806 1.04034)
(0.838989 -0.842107 1.81246)
(0.808624 -0.496377 2.56204)
(0.0253315 0.50449 2.27532)
(-1.62975 0.937988 1.06829)
(-1.56025 0.417554 -0.205253)
(-0.471107 -0.346307 -0.456294)
(-0.190062 -0.154605 0.35533)
(-0.126155 0.310384 1.905)
(-0.219574 -0.228907 2.46278)
(-0.155692 -0.495671 1.46689)
(0.414791 -0.375 0.55074)
(0.780057 -0.1728 0.296022)
(0.755258 0.108107 0.273196)
(0.565474 0.0920656 0.194253)
(0.493509 -0.0205042 0.119444)
(0.391111 -0.10367 0.0561754)
(0.405884 -0.234229 0.00751562)
(0.304027 -0.298208 -0.0206348)
(0.291482 -0.477761 -0.0363253)
(0.160836 -0.594648 -0.0335193)
(0.147011 -1.01161 -0.011277)
(-0.0491696 -1.66492 0.0288401)
(-0.140458 -3.18488 0.0506016)
(-0.417381 -4.79155 0.0439525)
(-0.277676 -5.06842 0.0238977)
(0.00612181 0.194965 -0.00707696)
(0.0347145 0.599764 -0.0446524)
(0.11295 1.02122 -0.0626999)
(0.232303 1.39016 -0.0740673)
(0.320737 1.62622 -0.0746509)
(0.369286 1.73464 -0.0613757)
(0.409922 1.70855 -0.0371158)
(0.457714 1.584 0.00111647)
(0.500152 1.42987 0.0415682)
(0.537094 1.24605 0.0892431)
(0.579419 1.06425 0.137771)
(0.627697 0.872726 0.188046)
(0.67708 0.661409 0.244464)
(0.728866 0.456518 0.314442)
(0.764551 0.250085 0.417077)
(0.603003 0.0768483 0.664091)
(0.328047 0.100782 1.0662)
(-0.0116792 0.648443 1.29082)
(-0.511167 1.26982 0.978071)
(-0.74629 1.15318 0.239387)
(-0.693858 0.526955 -0.284803)
(-0.487871 0.318541 -0.390021)
(0.0374778 0.289478 -0.172392)
(0.44589 -0.135878 -0.0215771)
(0.572779 -0.387802 0.105364)
(0.737484 -0.244811 0.234437)
(0.805716 -0.0573392 0.228692)
(0.763084 0.00253069 0.159507)
(0.598178 -0.0239793 0.0961127)
(0.586119 -0.0671927 0.0624314)
(0.468627 -0.0680463 0.0356418)
(0.474423 -0.171905 0.00942666)
(0.34342 -0.197341 -0.0100237)
(0.337087 -0.363513 -0.0213436)
(0.171757 -0.451759 -0.0174752)
(0.179716 -0.853274 0.000522523)
(-0.0391827 -1.47142 0.0444188)
(-0.108898 -2.9619 0.0589412)
(-0.463568 -4.75488 0.049208)
(-0.316457 -5.56979 0.0304168)
(0.0180161 0.166145 -0.0126523)
(0.0316295 0.504484 -0.0484291)
(0.0599573 0.913174 -0.0725165)
(0.159054 1.22804 -0.0776294)
(0.271831 1.44073 -0.0839394)
(0.355526 1.54702 -0.0741405)
(0.389671 1.55692 -0.0575764)
(0.447644 1.45008 -0.0285049)
(0.508601 1.32432 0.00354115)
(0.555006 1.16517 0.0378816)
(0.602497 1.01077 0.0732997)
(0.644555 0.851537 0.107917)
(0.682555 0.696101 0.14322)
(0.704804 0.540983 0.179458)
(0.713095 0.385103 0.211052)
(0.681303 0.270257 0.265475)
(0.567599 0.336704 0.33499)
(0.449923 0.497782 0.34363)
(0.504037 0.651509 0.252514)
(0.72971 0.668676 0.0616002)
(1.04134 0.402916 -0.130451)
(1.26632 0.238797 -0.206087)
(1.37836 0.111997 -0.223702)
(1.45485 -0.17307 -0.275232)
(1.34349 -0.271266 -0.178559)
(1.26841 -0.22532 -0.0321684)
(1.18717 -0.0960214 0.0276846)
(1.02936 -0.0307477 0.0533645)
(0.768528 0.0237073 0.0556614)
(0.720562 -0.00824392 0.0466135)
(0.554478 -0.00319781 0.0290633)
(0.564403 -0.076774 0.0120809)
(0.423501 -0.0931714 0.00469385)
(0.424844 -0.253604 -0.00877898)
(0.23567 -0.325327 0.000362535)
(0.228655 -0.709914 0.0115559)
(0.0198523 -1.27091 0.0516856)
(-0.0373357 -2.75161 0.0723514)
(-0.527511 -4.71209 0.0573928)
(-0.318739 -6.18752 0.0406427)
(-0.0199172 0.138172 -0.0168738)
(-0.0309276 0.528437 -0.0569547)
(-0.027335 0.870365 -0.0771063)
(0.0266604 1.21887 -0.0868306)
(0.17212 1.38291 -0.0918585)
(0.326404 1.43301 -0.0856461)
(0.388126 1.45388 -0.0767089)
(0.446534 1.3488 -0.0541261)
(0.535046 1.23917 -0.0311364)
(0.598685 1.09958 -0.00459678)
(0.662058 0.96611 0.0200276)
(0.710903 0.830897 0.0453595)
(0.756564 0.70573 0.0689085)
(0.787736 0.587849 0.092087)
(0.811495 0.483139 0.110481)
(0.808537 0.395153 0.13078)
(0.775695 0.345228 0.15169)
(0.732919 0.376404 0.146386)
(0.768096 0.428223 0.0865311)
(0.922853 0.374673 -0.0103358)
(1.24605 0.243102 -0.0927699)
(1.53671 0.176416 -0.110307)
(1.59937 0.113771 -0.101696)
(1.63517 0.00565216 -0.0740411)
(1.54337 -0.0430368 -0.0388942)
(1.47224 -0.0357812 0.0201063)
(1.35994 0.0428082 0.0353848)
(1.18503 0.0495126 0.0391504)
(0.894155 0.0933184 0.0287791)
(0.856275 0.0503682 0.0213183)
(0.705156 0.0731448 0.0095218)
(0.731732 0.00821359 0.00158069)
(0.544683 0.00699116 -0.00630741)
(0.573168 -0.122954 -0.00829767)
(0.34793 -0.17701 -0.00427565)
(0.374079 -0.512718 0.0180698)
(0.111528 -0.977208 0.0439438)
(0.122148 -2.44464 0.0850189)
(-0.516653 -4.58302 0.0487195)
(-0.250128 -6.78541 0.0465191)
(0.0539517 0.272492 -0.0233617)
(-1.05168e-05 0.463448 -0.062596)
(-0.100719 0.751589 -0.0823201)
(-0.0473723 0.9693 -0.0902184)
(-0.00491617 1.18781 -0.0969364)
(0.189426 1.18581 -0.0919951)
(0.326116 1.21304 -0.0897345)
(0.402791 1.1296 -0.0752364)
(0.524457 1.0469 -0.0598869)
(0.615624 0.939705 -0.0419303)
(0.705121 0.835313 -0.0241345)
(0.771422 0.730696 -0.00640849)
(0.829833 0.637386 0.00984695)
(0.869921 0.550026 0.0253305)
(0.901817 0.47216 0.0374071)
(0.916726 0.394248 0.049403)
(0.914324 0.338852 0.0571164)
(0.914518 0.31334 0.0453902)
(0.967592 0.319148 0.0192428)
(1.09772 0.273603 -0.0190524)
(1.40216 0.21635 -0.0658293)
(1.67856 0.166188 -0.083137)
(1.71111 0.0980889 -0.0865589)
(1.75522 0.0153995 -0.0841407)
(1.69634 0.0013073 -0.0571917)
(1.70531 -0.0181525 -0.0293072)
(1.60625 0.0727372 -0.0124702)
(1.44403 0.0746236 -0.0026045)
(1.12802 0.144371 -0.00336299)
(1.10856 0.118558 -0.00609539)
(0.940907 0.168578 -0.0101173)
(1.00152 0.0845388 -0.0149684)
(0.819452 0.0918328 -0.0142897)
(0.903982 -0.0250022 -0.0100369)
(0.644586 -0.0911036 -0.00634984)
(0.74924 -0.371308 0.00693043)
(0.395073 -0.782168 0.0398825)
(0.505357 -2.06037 0.0565253)
(-0.231462 -4.37869 0.0640335)
(0.0277521 -7.30891 0.0529532)
(-0.227844 0.0703265 -0.0344183)
(-0.31019 0.690994 -0.0802541)
(-0.300404 0.865394 -0.0934747)
(-0.265544 1.01414 -0.0971494)
(-0.125173 1.04158 -0.104891)
(0.0535444 1.06012 -0.0991854)
(0.232082 1.00462 -0.104161)
(0.350124 0.943331 -0.0947142)
(0.504357 0.868028 -0.0875578)
(0.622591 0.791721 -0.0767557)
(0.742137 0.713614 -0.0664425)
(0.836801 0.636206 -0.0548987)
(0.921595 0.566651 -0.0438613)
(0.985036 0.501954 -0.0330426)
(1.03348 0.444961 -0.0236192)
(1.06719 0.384543 -0.0139483)
(1.09998 0.333855 -0.0102144)
(1.13998 0.300259 -0.0159053)
(1.19831 0.29642 -0.0328273)
(1.34012 0.235967 -0.0563972)
(1.68179 0.202327 -0.0851373)
(2.02024 0.156112 -0.0928953)
(2.07317 0.111245 -0.0907485)
(2.17894 0.0579816 -0.0803237)
(2.14735 0.0583883 -0.0680349)
(2.19175 0.0261774 -0.049887)
(2.086 0.113299 -0.0421127)
(1.95938 0.087366 -0.0370206)
(1.62345 0.166424 -0.0377204)
(1.67312 0.149756 -0.0398515)
(1.49967 0.216863 -0.0410773)
(1.63479 0.149869 -0.0393097)
(1.42189 0.157202 -0.037263)
(1.58841 0.0342897 -0.0354393)
(1.26311 -0.0169171 -0.0279814)
(1.44889 -0.236145 -0.0112899)
(0.995939 -0.493225 0.00956213)
(1.18713 -1.4588 0.0402372)
(0.354405 -3.8842 0.0494843)
(0.49067 -7.20513 0.0504882)
(-0.73175 0.800102 -0.0663831)
(-0.609754 0.398421 -0.101411)
(-0.756501 0.577755 -0.0978953)
(-0.465618 0.598053 -0.0972299)
(-0.316309 0.615897 -0.101906)
(-0.00432471 0.65954 -0.101206)
(0.219151 0.63398 -0.10666)
(0.441428 0.60766 -0.103999)
(0.667191 0.566014 -0.101945)
(0.871892 0.523915 -0.0973481)
(1.07051 0.476738 -0.0921902)
(1.24773 0.430933 -0.0857057)
(1.40541 0.389941 -0.079726)
(1.53915 0.355242 -0.0733259)
(1.64551 0.329636 -0.068348)
(1.74216 0.296153 -0.0646243)
(1.83932 0.257942 -0.0651022)
(1.9775 0.23422 -0.0717231)
(2.13743 0.226408 -0.0834645)
(2.41118 0.150677 -0.0954195)
(2.8248 0.12272 -0.11174)
(3.27098 0.076276 -0.11669)
(3.37014 0.0293772 -0.112058)
(3.52283 -0.0191867 -0.107012)
(3.46401 -0.011755 -0.0877797)
(3.57532 -0.0269103 -0.076726)
(3.42487 0.0540505 -0.0709613)
(3.38122 0.0523202 -0.0658516)
(2.99458 0.128264 -0.0655843)
(3.15364 0.142002 -0.0648641)
(2.93405 0.200814 -0.0636913)
(3.23645 0.148007 -0.0597167)
(2.94595 0.120573 -0.0536971)
(3.27894 0.0347161 -0.0490013)
(2.80768 -0.0295614 -0.0395027)
(3.15654 -0.214169 -0.0316778)
(2.49234 -0.497287 -0.0161602)
(2.85563 -1.13386 -0.000815516)
(1.86919 -3.15786 0.0233351)
(1.32441 -6.09794 0.0346923)
(1.16239 1.48827 -0.0258583)
(1.72688 0.73672 -0.0394823)
(2.46298 0.579398 -0.0416626)
(2.87404 0.356664 -0.0396871)
(3.15289 0.281017 -0.0404984)
(3.394 0.228299 -0.037219)
(3.61344 0.210448 -0.0396)
(3.8258 0.189058 -0.0393585)
(4.053 0.175094 -0.0398201)
(4.28619 0.160737 -0.0384656)
(4.50845 0.146394 -0.0374471)
(4.72184 0.131642 -0.0354221)
(4.90065 0.118242 -0.034346)
(5.06055 0.106738 -0.0323801)
(5.17423 0.100385 -0.0318604)
(5.29397 0.0943419 -0.0329223)
(5.41705 0.076391 -0.0372514)
(5.62166 0.0592757 -0.0444266)
(5.85706 0.0771826 -0.0589421)
(6.29819 0.06086 -0.0737929)
(6.71875 0.0387874 -0.0897501)
(7.21356 0.0179591 -0.0972089)
(7.27801 0.00172442 -0.0942707)
(7.36238 -0.0408371 -0.0789962)
(7.18562 -0.0323333 -0.0678769)
(7.1979 -0.0502213 -0.0552585)
(6.85012 -0.0320173 -0.0489268)
(6.83079 -0.0186397 -0.0432621)
(6.35066 0.013453 -0.042461)
(6.58098 0.0298994 -0.0426973)
(6.32566 0.0653298 -0.0425064)
(6.7542 0.0683677 -0.0396665)
(6.44213 0.0483984 -0.035677)
(6.83785 0.0173982 -0.0323166)
(6.30158 -0.0138335 -0.0279274)
(6.53102 -0.102064 -0.0207516)
(5.65118 -0.259478 -0.0149207)
(5.68506 -0.583613 -0.00701539)
(4.25912 -1.14351 0.001513)
(2.77632 -2.5311 0.016156)
(0.000408446 -0.00151506 -0.00350017)
(0.0198537 -0.00459887 -0.00873339)
(0.0481312 -0.00481053 -0.0119381)
(0.0674896 -0.00324116 -0.0142205)
(0.0802501 -0.00242976 -0.0173264)
(0.0727993 -0.00265837 -0.0199151)
(0.0543141 0.00368833 -0.0173068)
(0.0339278 0.00423753 -0.019148)
(0.0126763 0.0189108 -0.01687)
(-0.0247972 0.0241419 -0.0183323)
(-0.0789103 0.0164695 -0.0204821)
(-0.13866 0.0088517 -0.0214406)
(-0.207985 0.00136117 -0.0220499)
(-0.289803 0.00150357 -0.0254036)
(-0.369693 0.0102726 -0.0284284)
(-0.461162 0.0186657 -0.0391241)
(-0.553078 0.00577238 -0.0447804)
(-0.689025 -0.00129758 -0.0754609)
(-0.771254 -0.00922233 -0.0994361)
(-0.949473 -0.00629788 -0.123981)
(-0.911695 0.0307202 -0.140863)
(-0.725434 0.0294355 -0.155433)
(-0.716484 0.0289516 -0.159056)
(-0.697304 0.028104 -0.165492)
(-0.682702 0.00770928 -0.17263)
(-0.631197 -0.0107889 -0.189596)
(-0.556987 -0.0254153 -0.20625)
(-0.434158 -0.0432935 -0.22221)
(-0.28973 -0.0584925 -0.233414)
(-0.12182 -0.0674145 -0.241408)
(0.0390374 -0.0476763 -0.227682)
(0.263019 0.00209703 -0.210837)
(0.456646 -0.0185076 -0.18879)
(0.511677 0.0256498 -0.141831)
(0.47514 0.0501191 -0.0989207)
(0.369553 0.0470623 -0.0598344)
(0.241607 0.0316846 -0.0368829)
(0.129616 0.0179438 -0.0218764)
(0.0444427 0.00306329 -0.0129171)
(-0.000960176 -0.00787313 -0.00404545)
(0.00651925 -0.0179339 -0.00981507)
(0.041204 -0.0343353 -0.0221485)
(0.0835254 -0.0357395 -0.0296928)
(0.109887 -0.0261417 -0.0357348)
(0.120542 -0.0170078 -0.0435598)
(0.105158 -0.0056748 -0.04866)
(0.0609376 0.00501076 -0.0474071)
(0.008476 0.0348632 -0.0478636)
(-0.0662522 0.05774 -0.043935)
(-0.208994 0.064083 -0.0498215)
(-0.378599 0.0874308 -0.0561357)
(-0.559318 0.112367 -0.0586363)
(-0.756795 0.14144 -0.0629728)
(-0.967344 0.171199 -0.0702864)
(-1.18324 0.191025 -0.0793939)
(-1.4174 0.172941 -0.102252)
(-1.61972 0.134798 -0.121409)
(-1.82082 0.0965034 -0.150226)
(-1.95901 0.0693116 -0.175429)
(-2.10644 0.0511221 -0.196559)
(-1.959 0.0727736 -0.208028)
(-1.6976 0.0406167 -0.212605)
(-1.5683 0.00920412 -0.194016)
(-1.46113 -0.0496088 -0.175504)
(-1.38236 -0.130077 -0.187984)
(-1.25222 -0.200621 -0.191435)
(-1.11656 -0.254412 -0.196694)
(-0.933412 -0.293422 -0.19893)
(-0.729777 -0.318484 -0.205827)
(-0.489045 -0.334624 -0.203506)
(-0.246596 -0.300395 -0.212336)
(0.0140981 -0.215578 -0.176301)
(0.302441 -0.135052 -0.195089)
(0.535656 -0.0443227 -0.162966)
(0.604193 0.0659415 -0.137539)
(0.552653 0.130957 -0.107202)
(0.432822 0.149042 -0.0802876)
(0.274077 0.125946 -0.0573558)
(0.116411 0.0858592 -0.0355123)
(0.0165421 0.0306732 -0.0112002)
(0.00994539 -0.0445699 -0.0177902)
(0.0471852 -0.0788838 -0.0353203)
(0.0860902 -0.0768729 -0.0473691)
(0.100466 -0.0496967 -0.0562094)
(0.0927433 -0.0247117 -0.0653547)
(0.0417639 0.0141743 -0.0727185)
(-0.0333629 0.0667216 -0.0762738)
(-0.154123 0.133009 -0.0750512)
(-0.348022 0.199443 -0.0725287)
(-0.569058 0.253729 -0.0717033)
(-0.820548 0.326136 -0.0686675)
(-1.09814 0.383138 -0.0674012)
(-1.37302 0.42658 -0.0691139)
(-1.64466 0.427565 -0.0744584)
(-1.90389 0.381275 -0.0862009)
(-2.1305 0.317063 -0.0987853)
(-2.29827 0.260773 -0.104187)
(-2.45746 0.198985 -0.111858)
(-2.55751 0.158243 -0.112553)
(-2.62976 0.101085 -0.107061)
(-2.40183 0.0826926 -0.0959672)
(-2.09957 0.0212132 -0.0765439)
(-1.94073 -0.0619724 -0.0494209)
(-1.82381 -0.195187 -0.0567378)
(-1.7305 -0.32018 -0.0535194)
(-1.59404 -0.443708 -0.0500337)
(-1.45033 -0.54619 -0.0504613)
(-1.28069 -0.618924 -0.0520304)
(-1.11318 -0.651921 -0.0535315)
(-0.899965 -0.643228 -0.0558279)
(-0.676671 -0.604511 -0.0636714)
(-0.410971 -0.513515 -0.0683351)
(-0.146555 -0.365451 -0.0995942)
(0.123008 -0.198193 -0.0837503)
(0.339217 -0.01966 -0.111993)
(0.41407 0.15182 -0.0968536)
(0.37335 0.21607 -0.0889593)
(0.255757 0.227594 -0.0693939)
(0.113986 0.177026 -0.0458898)
(0.0141435 0.0833946 -0.0141045)
(0.0102509 -0.0787781 -0.0322164)
(0.0420695 -0.121859 -0.0560904)
(0.0651483 -0.112914 -0.0701146)
(0.0442217 -0.0583179 -0.0789768)
(-0.00354636 0.0143545 -0.0949848)
(-0.0818911 0.106904 -0.0908609)
(-0.224778 0.22001 -0.0918364)
(-0.427887 0.344366 -0.0825198)
(-0.702183 0.471837 -0.069003)
(-1.01635 0.570412 -0.0578314)
(-1.31933 0.631449 -0.049886)
(-1.6077 0.658093 -0.0442907)
(-1.88262 0.628814 -0.0394634)
(-2.14256 0.556855 -0.04296)
(-2.34364 0.472895 -0.0399256)
(-2.49901 0.397446 -0.0317076)
(-2.60782 0.327494 -0.0233621)
(-2.70811 0.254494 -0.0134897)
(-2.75883 0.201364 0.001922)
(-2.7538 0.118201 0.0138389)
(-2.48647 0.0810724 0.0281212)
(-2.19354 -0.00694179 0.0408081)
(-2.06039 -0.142199 0.0463787)
(-1.96847 -0.30418 0.0360817)
(-1.90281 -0.457949 0.0363946)
(-1.79378 -0.623202 0.0355332)
(-1.67817 -0.776218 0.0305982)
(-1.52513 -0.90611 0.0261087)
(-1.37223 -0.986197 0.0150509)
(-1.21129 -0.994863 0.0109744)
(-1.04505 -0.927101 -0.000760087)
(-0.842621 -0.796576 -0.00379869)
(-0.618125 -0.642921 -0.0309531)
(-0.341141 -0.417157 -0.0474254)
(-0.0440014 -0.166075 -0.0696287)
(0.132991 0.0676204 -0.0806824)
(0.181589 0.220868 -0.0802276)
(0.153713 0.271287 -0.0705884)
(0.0648616 0.236507 -0.0475204)
(0.00684685 0.119269 -0.0153254)
(0.0117337 -0.109834 -0.0465032)
(0.0217509 -0.156818 -0.0775073)
(0.0106244 -0.111869 -0.102285)
(-0.0371653 -0.013563 -0.10401)
(-0.129505 0.131822 -0.109962)
(-0.279274 0.288372 -0.104905)
(-0.482226 0.46362 -0.0907391)
(-0.738151 0.627904 -0.0666931)
(-1.05906 0.765951 -0.0443751)
(-1.38054 0.839311 -0.0265731)
(-1.67965 0.849289 -0.0121408)
(-1.96543 0.796413 -0.0044598)
(-2.21065 0.712738 0.0017051)
(-2.39422 0.621279 0.00771127)
(-2.52216 0.54281 0.0142876)
(-2.60957 0.455052 0.0231053)
(-2.65703 0.380496 0.0343122)
(-2.69877 0.299817 0.0491435)
(-2.69763 0.240634 0.0673541)
(-2.63306 0.140359 0.080771)
(-2.34718 0.0943813 0.088669)
(-2.09466 -0.0195775 0.0877617)
(-2.00133 -0.183646 0.071122)
(-1.9481 -0.358755 0.0636773)
(-1.91469 -0.538207 0.0606233)
(-1.85135 -0.740798 0.054978)
(-1.78081 -0.94096 0.0491424)
(-1.67288 -1.1316 0.0427229)
(-1.54809 -1.28287 0.0366276)
(-1.39035 -1.36792 0.0280007)
(-1.25098 -1.34724 0.0183348)
(-1.12499 -1.2193 0.012252)
(-1.00038 -0.977411 -0.00499046)
(-0.750319 -0.700225 -0.0265968)
(-0.413438 -0.393885 -0.0606465)
(-0.129148 -0.0792376 -0.0767048)
(0.0130908 0.141812 -0.0856961)
(0.0340351 0.263439 -0.0721669)
(0.0168134 0.250259 -0.0515999)
(-0.00452558 0.125389 -0.0190328)
(0.00312016 -0.126205 -0.0621807)
(-0.00345435 -0.151087 -0.103861)
(-0.0530474 -0.0543584 -0.122038)
(-0.14929 0.118863 -0.125349)
(-0.297086 0.32022 -0.120862)
(-0.487222 0.542415 -0.0993013)
(-0.717095 0.739867 -0.0676589)
(-0.98489 0.91493 -0.0341897)
(-1.31777 0.984041 -0.00624868)
(-1.66802 0.964733 0.00877312)
(-1.96184 0.905156 0.0214419)
(-2.18094 0.825525 0.0307274)
(-2.33421 0.749024 0.0433237)
(-2.44377 0.664515 0.0505598)
(-2.50309 0.568686 0.0560628)
(-2.52515 0.464814 0.0599552)
(-2.51886 0.377226 0.0670972)
(-2.50498 0.300845 0.0753575)
(-2.45684 0.251901 0.0905677)
(-2.33887 0.156684 0.103307)
(-2.05375 0.111255 0.107398)
(-1.8436 -0.0172462 0.0979451)
(-1.7846 -0.185682 0.0767193)
(-1.76424 -0.362676 0.0716361)
(-1.75943 -0.551804 0.0666641)
(-1.74393 -0.770206 0.0606983)
(-1.72687 -1.00158 0.0541633)
(-1.68437 -1.24141 0.0477301)
(-1.62424 -1.46277 0.0414738)
(-1.51999 -1.63065 0.037386)
(-1.39319 -1.71356 0.0280663)
(-1.24718 -1.65982 0.0229993)
(-1.19684 -1.47796 0.00994601)
(-1.08613 -1.07554 -0.00511962)
(-0.738455 -0.696219 -0.0356464)
(-0.383272 -0.283594 -0.0667812)
(-0.134331 0.0362844 -0.0706563)
(-0.0258311 0.220969 -0.0761031)
(-0.0160418 0.235388 -0.0518721)
(-0.00405108 0.115522 -0.021036)
(0.00120418 -0.119939 -0.0780525)
(-0.0361336 -0.0841303 -0.125723)
(-0.120241 0.0676664 -0.142911)
(-0.263825 0.302785 -0.135949)
(-0.443473 0.556995 -0.113937)
(-0.65281 0.794231 -0.0753378)
(-0.879221 0.989438 -0.0349504)
(-1.20326 1.06057 0.00200438)
(-1.58125 0.999998 0.0147697)
(-1.86355 0.948581 0.0327046)
(-2.05687 0.90828 0.0520512)
(-2.19764 0.863974 0.0666955)
(-2.29679 0.792308 0.0731262)
(-2.35197 0.692672 0.0723949)
(-2.36716 0.580144 0.0622561)
(-2.33908 0.461411 0.0515883)
(-2.27053 0.380597 0.0491944)
(-2.18414 0.305931 0.0675218)
(-2.09206 0.267485 0.0932763)
(-1.94766 0.18613 0.110149)
(-1.68167 0.151241 0.109035)
(-1.52293 -0.00565345 0.0982937)
(-1.49572 -0.162161 0.0791883)
(-1.49136 -0.33582 0.0716638)
(-1.50796 -0.522617 0.0651811)
(-1.52326 -0.741161 0.0576157)
(-1.54753 -0.983114 0.0497037)
(-1.56164 -1.24913 0.0414673)
(-1.56981 -1.52158 0.0346582)
(-1.5456 -1.76866 0.0301171)
(-1.48007 -1.95092 0.0253847)
(-1.36932 -2.00378 0.0212331)
(-1.24659 -1.93072 0.0169338)
(-1.21346 -1.615 0.00647378)
(-1.01338 -1.11689 -0.0153132)
(-0.581631 -0.618195 -0.0478332)
(-0.238677 -0.159592 -0.0830554)
(-0.0840241 0.109881 -0.0794009)
(-0.026262 0.186847 -0.060565)
(-0.00430277 0.0888849 -0.0253615)
(0.00577014 -0.0727192 -0.0964462)
(-0.0584118 0.0191474 -0.149085)
(-0.194756 0.229948 -0.157309)
(-0.356847 0.506145 -0.134955)
(-0.553967 0.770711 -0.0952158)
(-0.759839 0.984093 -0.0470596)
(-1.07929 1.07939 -0.0049382)
(-1.43668 1.01701 0.0106599)
(-1.69901 0.980981 0.0408263)
(-1.8828 0.985313 0.0631005)
(-2.01402 0.964937 0.0832438)
(-2.0999 0.910546 0.0922425)
(-2.15232 0.826408 0.0943071)
(-2.17232 0.712023 0.0825059)
(-2.14972 0.570897 0.0680725)
(-2.06532 0.414729 0.0539763)
(-1.94906 0.282718 0.0535476)
(-1.82187 0.217318 0.0513963)
(-1.69489 0.233883 0.0725043)
(-1.5293 0.231464 0.107368)
(-1.32756 0.210726 0.116447)
(-1.21175 0.0177528 0.100712)
(-1.19534 -0.122817 0.0861125)
(-1.20483 -0.290063 0.0771363)
(-1.22767 -0.464879 0.0690652)
(-1.25909 -0.670168 0.0606387)
(-1.30415 -0.903925 0.0508436)
(-1.3536 -1.17166 0.0408619)
(-1.40929 -1.46636 0.0309862)
(-1.45258 -1.76543 0.0248541)
(-1.46817 -2.03448 0.0195807)
(-1.4292 -2.21329 0.015895)
(-1.33471 -2.23992 0.0138292)
(-1.25694 -2.0897 0.0140732)
(-1.15859 -1.63158 0.00178302)
(-0.822595 -1.02399 -0.0178617)
(-0.357735 -0.445851 -0.0491636)
(-0.0947194 0.00585273 -0.062808)
(-0.0143759 0.124695 -0.0534024)
(0.00251193 0.0751653 -0.0228603)
(-0.00630459 -0.0178357 -0.107334)
(-0.0943613 0.121104 -0.163042)
(-0.242848 0.364702 -0.161315)
(-0.427012 0.644624 -0.123319)
(-0.636255 0.8806 -0.0731168)
(-0.920722 1.03451 -0.0224706)
(-1.24808 1.02133 0.00502946)
(-1.50127 1.02162 0.0388965)
(-1.68925 1.04735 0.064806)
(-1.80331 1.04185 0.0899666)
(-1.86851 1.00442 0.106873)
(-1.90948 0.941412 0.116019)
(-1.94173 0.848005 0.108132)
(-1.96394 0.707906 0.085887)
(-1.96367 0.52534 0.031327)
(-1.89179 0.332621 -0.0293306)
(-1.69572 0.268344 -0.0608095)
(-1.42371 0.23272 0.00262784)
(-1.22586 0.273254 0.0935158)
(-1.10242 0.353601 0.14686)
(-1.03326 0.320617 0.132287)
(-0.974708 0.0785625 0.107146)
(-0.94774 -0.0799056 0.0930517)
(-0.959936 -0.239322 0.082751)
(-0.978151 -0.405567 0.0731657)
(-1.0103 -0.591554 0.0635802)
(-1.05844 -0.808179 0.0524842)
(-1.11887 -1.0606 0.0407483)
(-1.19527 -1.35361 0.0289818)
(-1.27493 -1.67489 0.0193179)
(-1.34634 -2.00004 0.0132154)
(-1.38028 -2.27698 0.00842927)
(-1.35595 -2.44091 0.00766485)
(-1.27047 -2.41505 0.00869769)
(-1.19095 -2.12748 0.00778453)
(-0.975118 -1.5103 -0.00159647)
(-0.485471 -0.780353 -0.0258591)
(-0.142475 -0.193409 -0.0463459)
(-0.0437906 0.0684765 -0.0544417)
(0.0119319 0.0628525 -0.0240354)
(-0.0196446 0.0400587 -0.115456)
(-0.131668 0.242953 -0.172918)
(-0.299147 0.500974 -0.161726)
(-0.482348 0.753791 -0.112462)
(-0.711588 0.955182 -0.0546106)
(-1.00723 1.03692 -0.00951392)
(-1.28465 1.06288 0.0256174)
(-1.47784 1.09829 0.0560928)
(-1.59029 1.10228 0.086877)
(-1.63332 1.07421 0.110668)
(-1.65474 1.03228 0.132343)
(-1.6789 0.977632 0.137211)
(-1.73613 0.900653 0.125274)
(-1.81397 0.787984 0.0682755)
(-1.82659 0.606866 0.0242965)
(-1.52985 0.299501 0.0665297)
(-1.15666 -0.0480733 0.228738)
(-1.01065 -0.207028 0.288039)
(-1.04715 0.0307868 0.282026)
(-1.05981 0.441468 0.287321)
(-0.972254 0.452978 0.215811)
(-0.853583 0.107183 0.138682)
(-0.782389 -0.0565666 0.106912)
(-0.777511 -0.194447 0.0965047)
(-0.782876 -0.352626 0.0809624)
(-0.805257 -0.515923 0.0701272)
(-0.846055 -0.711212 0.0566001)
(-0.901767 -0.938162 0.043418)
(-0.980022 -1.21254 0.0294952)
(-1.07168 -1.53088 0.0174747)
(-1.17311 -1.88365 0.00812751)
(-1.25723 -2.23115 0.00308456)
(-1.29773 -2.51003 0.00135979)
(-1.27046 -2.63224 0.00364565)
(-1.17677 -2.50857 0.00638832)
(-1.03826 -2.03247 0.00417779)
(-0.686225 -1.2257 -0.0044533)
(-0.216062 -0.48933 -0.0333794)
(-0.0378201 -0.0106971 -0.0266274)
(0.00126661 0.04169 -0.0165561)
(-0.0224389 0.105209 -0.119271)
(-0.148815 0.370885 -0.176665)
(-0.327339 0.640756 -0.158863)
(-0.516863 0.883753 -0.101407)
(-0.772862 1.04522 -0.0413129)
(-1.04906 1.10065 0.00596659)
(-1.26576 1.14047 0.0385226)
(-1.38021 1.15288 0.0725163)
(-1.42057 1.12949 0.102904)
(-1.40731 1.08857 0.133699)
(-1.38765 1.0615 0.162934)
(-1.40251 1.05067 0.183909)
(-1.46475 1.02364 0.174791)
(-1.49438 0.870031 0.18994)
(-1.21365 0.339778 0.294675)
(-0.691002 -0.297251 0.384697)
(-0.568178 -0.374181 0.250816)
(-0.832503 0.0903698 0.0409852)
(-1.10589 0.466948 0.0649948)
(-1.10918 0.698489 0.248885)
(-0.867862 0.473692 0.222)
(-0.707093 0.0290089 0.112636)
(-0.658939 -0.0857716 0.102859)
(-0.633801 -0.18064 0.102919)
(-0.638911 -0.322884 0.087751)
(-0.647709 -0.462904 0.076088)
(-0.678419 -0.635796 0.060878)
(-0.719731 -0.833918 0.0458004)
(-0.786216 -1.07944 0.0302934)
(-0.870919 -1.37502 0.0159376)
(-0.977061 -1.72663 0.00446985)
(-1.08529 -2.10882 -0.00262417)
(-1.17264 -2.47476 -0.00480506)
(-1.20109 -2.73359 -0.00298066)
(-1.1475 -2.76996 0.000663323)
(-1.01364 -2.47585 0.00374733)
(-0.779507 -1.73825 -0.00108619)
(-0.326475 -0.782362 -0.0121703)
(-0.0477081 -0.129269 -0.0329925)
(-0.0138572 0.0286277 -0.0180494)
(-0.0232882 0.182635 -0.120274)
(-0.15593 0.504768 -0.177924)
(-0.339549 0.782388 -0.156207)
(-0.549184 1.00892 -0.0948235)
(-0.806561 1.12383 -0.0348079)
(-1.03067 1.17972 0.011554)
(-1.17608 1.20193 0.0472033)
(-1.22453 1.17866 0.0812937)
(-1.20584 1.12679 0.11816)
(-1.13437 1.07696 0.159316)
(-1.06169 1.08487 0.217228)
(-1.03616 1.12178 0.264258)
(-1.05049 1.06806 0.350081)
(-0.826411 0.643632 0.516543)
(-0.166738 -0.0807471 0.460042)
(0.181682 -0.186376 -0.308289)
(-0.297338 0.473165 -0.744604)
(-0.802695 0.874019 -0.566103)
(-0.928267 0.791325 -0.105501)
(-0.79093 0.76532 0.262046)
(-0.499947 0.504455 0.262164)
(-0.459452 0.0719065 0.145044)
(-0.519596 -0.0573279 0.131198)
(-0.504977 -0.152069 0.121903)
(-0.526417 -0.290535 0.10357)
(-0.528639 -0.420363 0.0865613)
(-0.55295 -0.57739 0.067966)
(-0.579789 -0.750849 0.0493196)
(-0.630577 -0.965574 0.0314785)
(-0.698975 -1.22955 0.0149613)
(-0.794777 -1.55954 0.0017072)
(-0.907135 -1.94913 -0.00778216)
(-1.01986 -2.36836 -0.0113991)
(-1.09478 -2.73816 -0.00882742)
(-1.09454 -2.93953 -0.00288681)
(-0.985723 -2.8189 0.00160366)
(-0.784216 -2.24928 0.00357681)
(-0.419135 -1.20518 -0.00302871)
(-0.0815236 -0.305845 -0.0068825)
(-0.0210715 -0.00161425 -0.00616523)
(-0.0196418 0.253549 -0.117562)
(-0.150117 0.628832 -0.175261)
(-0.341417 0.913597 -0.151732)
(-0.57157 1.10799 -0.089169)
(-0.799998 1.2064 -0.0271958)
(-0.963921 1.254 0.0149073)
(-1.05634 1.23772 0.0494886)
(-1.04857 1.17442 0.0854482)
(-0.979828 1.09056 0.12897)
(-0.83379 1.03756 0.188725)
(-0.679209 1.07705 0.285215)
(-0.638661 1.16923 0.424106)
(-0.536666 0.933537 0.666733)
(0.11579 0.275924 0.470221)
(0.683838 0.0794886 -0.541633)
(0.145155 0.756781 -1.14532)
(-0.866753 0.993687 -0.829903)
(-1.0997 0.537466 -0.240241)
(-1.00245 0.275739 0.243245)
(-0.902969 0.499681 0.442917)
(-0.474426 0.514184 0.387346)
(-0.39556 0.171315 0.257128)
(-0.47081 0.0042633 0.203763)
(-0.442617 -0.119285 0.16179)
(-0.460303 -0.26095 0.132099)
(-0.449856 -0.3926 0.10261)
(-0.464693 -0.539449 0.0781389)
(-0.475566 -0.69557 0.0536884)
(-0.509707 -0.881694 0.0326495)
(-0.557437 -1.11085 0.0131757)
(-0.634481 -1.4063 -0.00116741)
(-0.735944 -1.77955 -0.0135741)
(-0.854368 -2.21873 -0.0182662)
(-0.955816 -2.66466 -0.0156246)
(-1.00063 -3.00444 -0.00836917)
(-0.943156 -3.06589 -0.00126387)
(-0.761929 -2.67765 -0.000603121)
(-0.46546 -1.70291 -0.00284872)
(-0.107357 -0.553844 -0.0204027)
(-0.0135899 -0.0600643 -0.0132078)
(-0.014574 0.319271 -0.113472)
(-0.136884 0.749216 -0.171924)
(-0.343983 1.03147 -0.149311)
(-0.564833 1.20204 -0.0874461)
(-0.750358 1.30157 -0.0267287)
(-0.873351 1.31689 0.0126219)
(-0.918534 1.2556 0.0445754)
(-0.873007 1.14652 0.0834919)
(-0.753095 1.0247 0.132624)
(-0.515049 0.938267 0.216514)
(-0.296414 1.07043 0.407602)
(-0.411924 1.10682 0.723512)
(-0.0230793 0.638341 0.609965)
(0.67244 0.230749 -0.410455)
(-0.0914393 0.798684 -0.892062)
(-1.19715 1.01864 -0.727932)
(-1.60363 0.573395 -0.377867)
(-1.36709 0.231436 -0.0410681)
(-1.32324 0.357817 0.118641)
(-1.16106 0.526972 0.291587)
(-0.510996 0.420765 0.343692)
(-0.371189 0.152282 0.294534)
(-0.439272 0.0177685 0.254008)
(-0.397523 -0.111505 0.195477)
(-0.410833 -0.245551 0.160297)
(-0.393814 -0.378117 0.117412)
(-0.400407 -0.516795 0.0874599)
(-0.399155 -0.660829 0.056461)
(-0.418715 -0.823922 0.0325036)
(-0.448132 -1.0216 0.00975701)
(-0.505567 -1.2797 -0.00584526)
(-0.591062 -1.62334 -0.0202217)
(-0.702979 -2.059 -0.0255879)
(-0.817362 -2.55056 -0.0227845)
(-0.893153 -2.99926 -0.0128559)
(-0.885336 -3.22932 -0.00360098)
(-0.745704 -3.02729 0.00146657)
(-0.484903 -2.1847 -0.00203575)
(-0.127847 -0.884083 -0.00967181)
(-0.00606929 -0.132523 -0.0102231)
(-0.00686896 0.366056 -0.107559)
(-0.129695 0.846119 -0.167069)
(-0.335853 1.12502 -0.146037)
(-0.531982 1.29711 -0.0888692)
(-0.686726 1.37725 -0.0300138)
(-0.778906 1.35434 0.00610814)
(-0.79731 1.24766 0.0341117)
(-0.728537 1.09678 0.07243)
(-0.577697 0.903723 0.121205)
(-0.21817 0.83852 0.250483)
(-0.260908 1.04404 0.635545)
(-0.430849 0.951949 0.816012)
(0.172654 0.629254 -0.0373502)
(-0.506694 0.922701 -0.336601)
(-1.55517 1.15981 -0.268854)
(-1.35253 0.581581 -0.403875)
(-1.08969 0.315174 -0.236314)
(-1.26075 0.305908 -0.220211)
(-1.43338 0.559899 -0.092091)
(-1.04492 0.402047 0.129724)
(-0.353339 0.275306 0.245626)
(-0.311782 0.209462 0.363615)
(-0.392525 0.0843361 0.333604)
(-0.361114 -0.0887659 0.240666)
(-0.369014 -0.227552 0.195329)
(-0.349068 -0.369282 0.1349)
(-0.348807 -0.505485 0.0973422)
(-0.33823 -0.642308 0.0585043)
(-0.347035 -0.787579 0.0312374)
(-0.361987 -0.957765 0.00549352)
(-0.402114 -1.17836 -0.0119343)
(-0.469278 -1.48382 -0.0278613)
(-0.568546 -1.89711 -0.0344929)
(-0.683857 -2.40862 -0.0314477)
(-0.779344 -2.93589 -0.0201414)
(-0.809661 -3.31481 -0.00662963)
(-0.710861 -3.29453 -0.000526683)
(-0.486753 -2.61198 -0.00142324)
(-0.137852 -1.24834 -0.0106619)
(0.0254008 -0.177672 -0.0124167)
(-0.00410515 0.405643 -0.101688)
(-0.118795 0.934494 -0.161663)
(-0.309213 1.23578 -0.146764)
(-0.482117 1.40081 -0.0948154)
(-0.615557 1.45887 -0.0406943)
(-0.687581 1.39177 -0.00905969)
(-0.690245 1.24292 0.0154043)
(-0.63709 1.04426 0.0516018)
(-0.434016 0.769633 0.0832169)
(-0.174122 0.811475 0.362943)
(-0.644565 1.02343 0.851491)
(-0.427036 1.07239 0.666456)
(-0.620875 1.12836 0.102184)
(-1.56989 1.2484 0.186655)
(-1.0973 0.485137 -0.00299216)
(-0.363546 -0.000924211 0.0677455)
(-0.577517 0.361934 -0.0436987)
(-1.39672 0.570492 -0.270318)
(-1.49882 0.30558 0.114349)
(-1.06824 -0.00547434 0.301509)
(-0.545472 0.0946529 0.303314)
(-0.493774 0.246589 0.524773)
(-0.425386 0.102201 0.445994)
(-0.375583 -0.0850919 0.290271)
(-0.346702 -0.224042 0.232421)
(-0.318446 -0.368151 0.150634)
(-0.305424 -0.502181 0.105629)
(-0.286226 -0.633422 0.0586229)
(-0.285325 -0.76605 0.0284043)
(-0.289622 -0.915654 -0.000177688)
(-0.316252 -1.10486 -0.019285)
(-0.368609 -1.37289 -0.0369527)
(-0.455814 -1.75548 -0.0441463)
(-0.568401 -2.26863 -0.0412079)
(-0.674693 -2.85177 -0.0277535)
(-0.731873 -3.35857 -0.0111966)
(-0.669343 -3.51225 -0.000409085)
(-0.475661 -3.00194 -0.00100178)
(-0.148386 -1.63943 -0.00799521)
(0.0543632 -0.258414 -0.0132808)
(-0.00374924 0.421706 -0.0957694)
(-0.0994181 1.00793 -0.157066)
(-0.272215 1.33242 -0.147852)
(-0.428189 1.48673 -0.102847)
(-0.549275 1.51952 -0.0534943)
(-0.62032 1.41311 -0.0292117)
(-0.624775 1.23025 -0.00670283)
(-0.612072 0.979612 0.0145409)
(-0.392483 0.69821 0.0567063)
(-0.547649 0.817535 0.524859)
(-0.967694 1.15212 1.01639)
(-0.759283 1.48714 0.816682)
(-1.19494 1.69083 0.312448)
(-1.19807 1.66339 -0.524068)
(-0.815665 0.580237 -0.607062)
(-0.702751 0.294299 -0.241602)
(-1.1838 1.19931 -0.894482)
(-1.49867 0.780142 -0.627024)
(-1.34471 -0.112213 0.302026)
(-1.12677 -0.214345 0.389777)
(-0.832415 -0.05409 0.261141)
(-0.662643 0.11976 0.546153)
(-0.421449 0.0122629 0.471627)
(-0.354544 -0.116547 0.309956)
(-0.309669 -0.24218 0.250723)
(-0.277887 -0.375527 0.15854)
(-0.257581 -0.503826 0.107593)
(-0.233404 -0.627905 0.0548444)
(-0.229028 -0.749132 0.0225528)
(-0.228002 -0.878773 -0.00661894)
(-0.245718 -1.03737 -0.0277211)
(-0.283242 -1.26492 -0.0462399)
(-0.35491 -1.60812 -0.0552543)
(-0.459625 -2.11217 -0.0518905)
(-0.576324 -2.73648 -0.0371265)
(-0.657546 -3.3539 -0.0162668)
(-0.631731 -3.67407 -0.00234939)
(-0.468052 -3.33344 -0.000360592)
(-0.166312 -1.99793 -0.00833363)
(0.0607232 -0.306267 -0.0152563)
(0.00395915 0.446193 -0.0905263)
(-0.0652586 1.08359 -0.150624)
(-0.228608 1.44257 -0.150806)
(-0.375799 1.58808 -0.11437)
(-0.49299 1.60202 -0.0687528)
(-0.567286 1.46248 -0.0588031)
(-0.585765 1.26519 -0.0321741)
(-0.628662 0.957577 -0.0543363)
(-0.481037 0.744202 0.067529)
(-1.08425 0.939727 0.705737)
(-1.13902 1.54723 1.27325)
(-0.911346 1.97881 1.15562)
(-0.684784 2.10447 0.0671941)
(-0.610759 2.36729 -1.0444)
(-1.38948 0.885104 -1.00329)
(-0.927341 0.371477 -1.65968)
(-1.13815 1.24585 -1.95254)
(-1.02702 0.554509 -0.438041)
(-0.965162 -0.315299 0.645436)
(-0.838044 -0.25812 0.460336)
(-0.743367 -0.137501 0.196945)
(-0.64401 -0.0241162 0.463828)
(-0.338678 -0.0686459 0.440824)
(-0.29342 -0.147991 0.303065)
(-0.259754 -0.255237 0.244679)
(-0.228059 -0.372028 0.153852)
(-0.202629 -0.488105 0.105612)
(-0.174144 -0.606377 0.0516208)
(-0.16472 -0.724629 0.0162102)
(-0.159296 -0.850518 -0.0144697)
(-0.171835 -0.991589 -0.0373347)
(-0.201244 -1.18863 -0.0568364)
(-0.264329 -1.48526 -0.065743)
(-0.360435 -1.95612 -0.0625932)
(-0.475264 -2.59796 -0.0456186)
(-0.571089 -3.31882 -0.0208064)
(-0.581371 -3.80892 -0.00263829)
(-0.449832 -3.65446 0.000387708)
(-0.1705 -2.38459 -0.00681785)
(0.066015 -0.424732 -0.0164038)
(-0.00940197 0.464365 -0.0862918)
(-0.0571726 1.16702 -0.147554)
(-0.191835 1.56458 -0.152668)
(-0.330562 1.7086 -0.126282)
(-0.44517 1.70935 -0.0819337)
(-0.518227 1.55173 -0.0916806)
(-0.565623 1.35371 -0.0546799)
(-0.651478 1.04017 -0.147713)
(-0.671415 0.93902 0.113677)
(-1.46535 1.21342 0.849419)
(-1.08068 2.04907 1.61786)
(-0.275585 1.74287 1.33168)
(1.17457 1.65048 0.0859976)
(0.875465 1.89421 0.299889)
(-0.735574 0.169125 0.676368)
(0.299015 0.370834 -1.9274)
(-0.360857 1.63686 -2.37771)
(-0.482555 0.508652 -0.0909061)
(-0.761779 -0.405835 0.96524)
(-0.458923 -0.455312 0.646207)
(-0.44833 -0.174416 0.177934)
(-0.493486 -0.0205601 0.377179)
(-0.224607 -0.087823 0.400555)
(-0.201895 -0.149638 0.277181)
(-0.184714 -0.245536 0.212601)
(-0.156357 -0.337793 0.119029)
(-0.137466 -0.423466 0.0725621)
(-0.120416 -0.520653 0.0263173)
(-0.122413 -0.621482 -0.000550337)
(-0.119558 -0.734974 -0.0259218)
(-0.12648 -0.857689 -0.046963)
(-0.139949 -1.02413 -0.0668624)
(-0.179482 -1.28977 -0.0801786)
(-0.252079 -1.74529 -0.0757368)
(-0.369367 -2.40252 -0.0569323)
(-0.486831 -3.19559 -0.0263527)
(-0.537481 -3.85299 -0.00404362)
(-0.457599 -3.90181 0.00128063)
(-0.208372 -2.72015 -0.00648219)
(0.0478467 -0.475046 -0.017899)
(0.00396233 0.576946 -0.0744735)
(-0.0265971 1.35182 -0.138295)
(-0.136603 1.75669 -0.139546)
(-0.256988 1.93894 -0.131088)
(-0.381122 1.93953 -0.0878847)
(-0.428353 1.79173 -0.114913)
(-0.490124 1.61121 -0.0542076)
(-0.604067 1.36104 -0.213478)
(-0.804281 1.33585 0.152464)
(-1.54557 1.65907 0.919968)
(-0.910759 2.06721 1.9074)
(0.584778 0.275608 1.57346)
(2.62401 0.0669772 -0.206687)
(1.42825 -0.171163 0.355786)
(-1.26476 -1.08128 2.41955)
(-0.088757 1.00241 0.159958)
(0.18391 3.21674 -1.94046)
(0.261211 1.34937 -0.506173)
(-0.133119 -0.0186587 0.710682)
(0.0295838 -0.566187 0.974001)
(0.0154561 -0.182776 0.292171)
(-0.301612 -0.0457659 0.317184)
(-0.159645 -0.123999 0.393825)
(-0.116307 -0.168056 0.256716)
(-0.0999487 -0.256477 0.176705)
(-0.0507347 -0.319833 0.0821863)
(-0.0320411 -0.374619 0.0434351)
(-0.0281558 -0.446916 0.00806949)
(-0.0427952 -0.528406 -0.0140717)
(-0.0530692 -0.620002 -0.0389923)
(-0.0687657 -0.714641 -0.0573387)
(-0.100462 -0.842032 -0.0729577)
(-0.170105 -1.04597 -0.0817804)
(-0.243939 -1.41902 -0.0814014)
(-0.299456 -2.0419 -0.063957)
(-0.376493 -2.94501 -0.0305967)
(-0.452909 -3.77431 -0.00351418)
(-0.421661 -4.0815 0.00403407)
(-0.203962 -3.09823 -0.00309788)
(0.0618823 -0.685494 -0.0143866)
(-0.0129168 0.786926 -0.0519224)
(-0.0215577 1.63008 -0.115358)
(-0.0912409 2.06018 -0.119056)
(-0.179776 2.24452 -0.121821)
(-0.299934 2.24926 -0.0821511)
(-0.327083 2.11048 -0.123594)
(-0.399515 1.9281 -0.0575683)
(-0.510715 1.71386 -0.278189)
(-0.761383 1.70436 0.105004)
(-1.20608 1.81831 0.553065)
(0.270149 1.33097 1.55362)
(0.960607 -1.22141 1.96793)
(2.52611 -0.708174 -0.418324)
(1.33133 -0.577815 -0.61115)
(-2.36384 -1.94425 3.20665)
(-0.163613 -0.99354 1.99806)
(1.31535 2.13801 -0.266286)
(1.25738 1.82218 0.080676)
(1.21272 0.723982 0.400525)
(1.19452 -0.161354 1.2883)
(0.653901 0.18727 0.706202)
(-0.0490958 0.438311 0.598606)
(-0.0460774 0.0565615 0.594659)
(-0.0473847 -0.109808 0.266665)
(-0.00994159 -0.29601 0.107094)
(0.0782984 -0.366492 0.022985)
(0.0841803 -0.397728 0.00660664)
(0.0626945 -0.438659 -0.00685978)
(0.0308292 -0.493858 -0.0224737)
(0.0161905 -0.568393 -0.0508077)
(0.00153136 -0.641152 -0.0681778)
(-0.0191221 -0.745398 -0.0833709)
(-0.0609416 -0.8757 -0.0913764)
(-0.153759 -1.14967 -0.0845836)
(-0.344492 -1.65383 -0.0732684)
(-0.440363 -2.50279 -0.0350575)
(-0.453586 -3.46264 -0.00504446)
(-0.446161 -4.0381 0.00424713)
(-0.273077 -3.34876 -0.0042721)
(0.010459 -0.99998 -0.0181062)
(-0.0367499 0.81282 -0.0457514)
(-0.0353861 1.72761 -0.104418)
(-0.0625634 2.20529 -0.114423)
(-0.112827 2.3886 -0.113228)
(-0.206826 2.40789 -0.0782515)
(-0.229784 2.29911 -0.12788)
(-0.289735 2.09092 -0.0540808)
(-0.334111 1.94244 -0.299196)
(-0.432746 1.79676 0.110198)
(-0.567367 1.41523 0.187477)
(1.45246 0.144584 1.26065)
(1.57943 -2.33416 1.53397)
(2.80977 -0.829045 -1.38876)
(0.009883 0.331367 1.00313)
(-4.3572 -1.42292 6.14404)
(0.936949 -2.84191 1.37874)
(3.0213 0.458337 -0.700506)
(1.98769 1.80608 1.02005)
(2.46553 0.92812 0.849089)
(2.68181 0.327615 1.0756)
(2.09515 0.787243 0.415895)
(1.39144 1.06709 0.0139629)
(0.75838 0.611265 0.412411)
(0.302712 0.0608014 0.258723)
(0.25035 -0.407285 0.135679)
(0.338589 -0.509494 0.0171455)
(0.269095 -0.460516 -0.00623756)
(0.203969 -0.45032 -0.0126892)
(0.140524 -0.48051 -0.0286647)
(0.102254 -0.548063 -0.0576853)
(0.0682786 -0.613786 -0.0799374)
(0.0435482 -0.7036 -0.098088)
(0.00881917 -0.801434 -0.0997155)
(-0.0366435 -1.04064 -0.0961402)
(-0.179116 -1.43199 -0.0739482)
(-0.400058 -2.12052 -0.0452778)
(-0.51368 -3.03122 -0.00579117)
(-0.506381 -3.74626 0.00776594)
(-0.381655 -3.32267 0.000966603)
(-0.0782467 -1.05229 -0.0133399)
(-0.0252557 0.782635 -0.0367181)
(-0.00845504 1.72098 -0.0936758)
(-0.0143436 2.21979 -0.104247)
(-0.0323255 2.42463 -0.111902)
(-0.0823992 2.44071 -0.0594969)
(-0.112732 2.37958 -0.116203)
(-0.148875 2.17507 -0.0413329)
(-0.170696 2.14869 -0.247352)
(0.0391234 1.75965 0.166313)
(-0.335709 1.23224 0.270627)
(1.77101 -0.099829 1.26508)
(2.71004 -2.93639 0.824005)
(4.11226 -0.838049 -3.60362)
(-2.84518 0.868173 3.04307)
(-6.76183 -1.92917 7.60235)
(1.553 -2.93069 -1.05293)
(4.4955 0.712869 -3.34408)
(4.00369 2.70787 -1.52689)
(4.11251 0.957957 -0.770534)
(3.58719 -0.637401 0.244907)
(3.19545 -0.0276774 -1.17768)
(3.22422 0.566621 -2.65247)
(2.40699 0.835618 -1.24361)
(1.47858 0.0909663 -0.0485364)
(1.03587 -0.716581 0.345378)
(0.824506 -0.752346 0.263236)
(0.624203 -0.523178 0.0941619)
(0.397173 -0.442299 0.0255803)
(0.240048 -0.464469 -0.0189818)
(0.17212 -0.549809 -0.0624862)
(0.135315 -0.61772 -0.0923958)
(0.122421 -0.685794 -0.111488)
(0.076662 -0.75489 -0.116176)
(0.0315614 -0.933509 -0.104704)
(-0.09308 -1.30502 -0.0840009)
(-0.28073 -1.93253 -0.0501238)
(-0.435393 -2.71471 -0.0109695)
(-0.489907 -3.46034 0.00861594)
(-0.385737 -3.23366 0.00272724)
(-0.121522 -1.11369 -0.0118065)
(-0.0128165 0.76544 -0.0293095)
(0.0165034 1.68579 -0.0845115)
(0.0273291 2.19841 -0.0974593)
(0.0288372 2.43484 -0.109021)
(0.02045 2.44463 -0.0594646)
(-0.00152041 2.39729 -0.0964458)
(0.0713433 2.21158 -0.0174437)
(-0.0351254 2.22683 -0.207476)
(0.557591 1.83638 0.124304)
(-0.267783 1.30132 0.482284)
(2.49614 0.387998 0.650167)
(4.7421 -2.43024 -0.290754)
(5.95286 -1.19701 -5.76828)
(-0.946255 0.945548 1.0904)
(-5.53787 -2.80758 6.17131)
(0.45008 -3.69005 -0.0316319)
(4.65976 0.300394 -3.40236)
(6.1149 3.16153 -4.32867)
(6.39438 2.12307 -3.65077)
(4.37648 -1.14773 -0.423301)
(3.49928 -2.57041 -2.53712)
(3.50249 -2.02039 -6.21578)
(2.61855 -0.361096 -4.44366)
(2.7297 -0.141763 -1.09478)
(2.27979 -0.780226 0.392874)
(1.57714 -0.734056 0.492387)
(1.15381 -0.383377 0.2607)
(0.671064 -0.305196 0.114449)
(0.351963 -0.405832 0.00763807)
(0.236552 -0.566004 -0.0691443)
(0.204059 -0.658201 -0.110583)
(0.205238 -0.71678 -0.135269)
(0.173783 -0.764331 -0.134158)
(0.107323 -0.898131 -0.121322)
(-0.0161252 -1.22262 -0.0961604)
(-0.172105 -1.80823 -0.0519573)
(-0.33981 -2.56479 -0.00874335)
(-0.430351 -3.33643 0.00905109)
(-0.382031 -3.28103 0.0046054)
(-0.142408 -1.34014 -0.0123)
(-0.00528458 0.711674 -0.0206353)
(0.0414747 1.60275 -0.0704605)
(0.0804098 2.13798 -0.0873073)
(0.0942064 2.40401 -0.0944841)
(0.117783 2.43722 -0.0581152)
(0.0948695 2.38617 -0.0628004)
(0.235381 2.22 -0.0131562)
(0.118741 2.13344 -0.0505299)
(0.859618 1.96131 0.0217516)
(-0.0278612 1.09382 0.896781)
(2.65745 0.0829656 0.299824)
(6.43489 -1.92793 -0.543238)
(6.31273 -2.34035 -6.0942)
(3.04006 0.647589 -2.83732)
(-2.68816 -1.37385 6.19037)
(-2.92729 -3.13449 3.36601)
(1.39128 -1.85581 -1.8449)
(3.92991 1.52785 -3.06149)
(5.91032 2.58845 -3.94358)
(4.66688 0.579028 -0.229214)
(3.49875 -2.49974 0.38592)
(4.20184 -4.0228 -5.5625)
(2.85043 -2.51855 -6.51165)
(2.71214 -1.19872 -2.50998)
(2.87456 -0.75196 0.0215285)
(2.18395 -0.422299 0.317177)
(1.64669 0.00883007 0.117239)
(0.923974 0.0449181 0.0371581)
(0.479755 -0.242409 -0.0902871)
(0.338373 -0.542189 -0.159238)
(0.290105 -0.693189 -0.1723)
(0.289936 -0.749081 -0.18467)
(0.256543 -0.753765 -0.168392)
(0.169208 -0.85826 -0.1427)
(0.0325903 -1.12523 -0.11219)
(-0.085916 -1.71068 -0.0519398)
(-0.245907 -2.48828 -0.0112909)
(-0.361802 -3.3487 0.0106981)
(-0.358666 -3.42096 0.00573211)
(-0.142599 -1.56741 -0.0136457)
(0.00260086 0.650786 -0.0134175)
(0.0633381 1.50625 -0.0573631)
(0.122372 2.05991 -0.075276)
(0.150696 2.34663 -0.0776741)
(0.194405 2.40347 -0.047021)
(0.188833 2.33928 -0.0195258)
(0.338722 2.19742 0.0217043)
(0.272622 1.98251 0.109324)
(0.879529 1.96635 0.0842787)
(0.503709 0.90905 0.990602)
(1.67555 -0.360993 0.610016)
(5.57226 -2.08497 0.192285)
(5.47106 -1.8102 -3.6135)
(3.91518 0.410263 -6.91242)
(-0.355737 0.733449 2.49209)
(-5.71323 -1.65429 5.41288)
(-4.0723 -2.58537 1.11061)
(-0.22062 -0.499785 -0.0302175)
(2.24012 1.00928 -1.92659)
(2.75675 1.45783 -0.387287)
(2.6185 -0.380125 2.94805)
(3.3321 -2.1317 0.509419)
(3.2923 -2.29344 -4.5633)
(2.18947 -1.56106 -3.79697)
(2.18256 -0.70645 -1.00768)
(1.65592 0.490254 -0.210332)
(1.22837 1.29652 -0.0546376)
(0.809595 0.914698 0.242388)
(0.574204 0.0125092 0.0323301)
(0.548131 -0.467136 -0.221675)
(0.496906 -0.703418 -0.266763)
(0.470318 -0.848618 -0.262454)
(0.407458 -0.851989 -0.216031)
(0.283396 -0.919049 -0.163733)
(0.0968373 -1.13579 -0.120108)
(-0.0241373 -1.68521 -0.0659014)
(-0.179554 -2.52859 -0.0103216)
(-0.308433 -3.49669 0.0113345)
(-0.340631 -3.72335 0.0103081)
(-0.14147 -1.90407 -0.0120977)
(0.00761909 0.573915 -0.00745444)
(0.0798486 1.38316 -0.0452359)
(0.157112 1.95091 -0.0628481)
(0.196601 2.25915 -0.0617806)
(0.250227 2.3396 -0.0359097)
(0.257742 2.26782 0.0102461)
(0.379169 2.12972 0.0553413)
(0.38284 1.84677 0.203027)
(0.69619 1.81528 0.190356)
(0.868657 0.957394 0.82284)
(0.612146 -0.242541 1.15509)
(3.06143 -1.70392 0.771789)
(3.58051 -1.5776 -0.554385)
(3.87827 -0.557724 -7.18795)
(2.78517 1.44373 -6.25907)
(-2.14052 0.100791 2.6385)
(-6.23782 -1.0223 5.43415)
(-4.74996 -0.874532 2.80515)
(-1.60149 -0.0545225 0.520739)
(0.215693 0.828329 -0.354526)
(1.05728 0.206406 1.71698)
(1.12008 -0.51561 2.79819)
(1.41225 -0.413003 -0.91077)
(0.851385 0.198878 -3.06429)
(0.145677 1.48395 -0.998034)
(-0.376507 3.44604 0.586152)
(-0.325809 3.58155 1.47357)
(0.251466 1.54365 1.30768)
(0.677121 -0.208593 0.30944)
(0.763952 -0.734108 -0.224421)
(0.591095 -0.85198 -0.306472)
(0.558314 -1.02694 -0.323883)
(0.521874 -1.01949 -0.275431)
(0.387619 -1.08002 -0.199599)
(0.178679 -1.27236 -0.131458)
(0.0339851 -1.80449 -0.0847986)
(-0.133009 -2.67697 -0.0130708)
(-0.247354 -3.78013 0.00672204)
(-0.288904 -4.20904 0.0112545)
(-0.117208 -2.51835 -0.0111328)
(0.0170563 0.500799 -0.00108195)
(0.0988814 1.2566 -0.035593)
(0.183092 1.83623 -0.0520553)
(0.232306 2.16797 -0.049545)
(0.287452 2.2747 -0.0253835)
(0.308151 2.20845 0.0268901)
(0.387337 2.06982 0.0866793)
(0.432661 1.78936 0.227387)
(0.544306 1.65305 0.311251)
(0.851475 1.1659 0.677297)
(0.336238 0.154786 1.44196)
(1.09845 -1.27678 1.14683)
(2.7239 -2.82982 0.224131)
(2.51212 -1.67553 -2.91721)
(3.90725 0.484964 -8.86798)
(2.68409 2.13749 -6.53024)
(-1.10562 0.548286 1.20256)
(-4.09877 -0.704437 4.09711)
(-3.82968 -0.397823 3.0521)
(-2.07938 0.681911 2.42228)
(-1.14854 0.78865 2.49169)
(-1.08058 0.135877 2.782)
(-0.799885 0.880337 2.27105)
(-0.702943 2.53596 0.676994)
(-1.41781 3.68229 0.181365)
(-1.70891 3.57422 0.594171)
(-0.895288 1.84394 0.717938)
(0.437935 -0.280814 0.357476)
(1.114 -1.02916 -0.00507743)
(0.925034 -0.757914 0.0606405)
(0.656656 -0.792415 -0.0821488)
(0.640871 -1.04969 -0.31527)
(0.57732 -0.972146 -0.309174)
(0.431137 -1.03667 -0.214824)
(0.210435 -1.2286 -0.138604)
(0.0531107 -1.78412 -0.0858386)
(-0.125808 -2.68104 -0.0111034)
(-0.244099 -3.94704 0.00983534)
(-0.311219 -4.61781 0.0145252)
(-0.141646 -3.13647 -0.00885858)
(0.0207209 0.432171 -0.000155741)
(0.114433 1.11294 -0.0315442)
(0.205185 1.69169 -0.044094)
(0.256 2.04585 -0.0418249)
(0.310762 2.17824 -0.0204972)
(0.338005 2.13198 0.0284633)
(0.395183 1.99397 0.093906)
(0.43923 1.74632 0.214548)
(0.51073 1.53629 0.339565)
(0.674489 1.24287 0.566069)
(0.636538 0.550157 1.12083)
(0.373868 -0.565133 1.32816)
(1.68923 -2.22105 -0.247955)
(2.04307 -2.25378 -1.20491)
(1.15525 -0.180447 -2.32393)
(3.1232 1.56304 -6.03302)
(4.0179 2.15227 -6.64981)
(2.12651 0.40439 -2.25212)
(-0.597034 -0.875681 1.35954)
(-1.91898 -0.618931 3.11107)
(-2.2637 -0.546042 3.28879)
(-2.55405 -1.24491 2.15636)
(-2.13571 -0.836393 1.68895)
(-1.65941 0.832012 0.747623)
(-1.54958 1.58051 -0.949944)
(-0.78266 0.619927 -1.44232)
(0.509147 -0.823233 -1.41571)
(1.19313 -1.08573 -0.697845)
(0.92981 -0.224286 0.413851)
(0.691377 0.120301 0.64114)
(0.691081 -0.573948 0.102174)
(0.680163 -0.917062 -0.294066)
(0.540698 -0.755952 -0.284857)
(0.425041 -0.857937 -0.202579)
(0.215022 -1.09648 -0.131668)
(0.0606978 -1.61383 -0.0823579)
(-0.114792 -2.51827 -0.00410245)
(-0.243111 -3.89795 0.0150841)
(-0.334476 -4.80265 0.019756)
(-0.170285 -3.58436 -0.00514457)
(0.0161769 0.378093 0.001442)
(0.114398 0.990243 -0.0278671)
(0.219947 1.55106 -0.0416683)
(0.271556 1.93481 -0.0383862)
(0.324468 2.09794 -0.0219654)
(0.357149 2.08026 0.0191584)
(0.40095 1.95589 0.0777136)
(0.437226 1.73154 0.175308)
(0.48352 1.51431 0.275119)
(0.560238 1.25165 0.427828)
(0.612061 0.911756 0.646245)
(0.220722 0.173162 1.1551)
(0.646308 -0.89776 0.694612)
(1.93691 -1.73784 -0.605428)
(0.994205 -2.13541 0.115477)
(0.42055 -1.57129 0.0920707)
(2.83039 -0.112018 -2.79771)
(5.48336 0.710752 -5.32776)
(5.51167 -0.211526 -4.80868)
(3.83741 -2.1327 -2.8578)
(1.47847 -3.14458 -1.44397)
(-0.513479 -3.38347 -0.392181)
(-1.03245 -2.86467 0.273813)
(-1.03666 -1.47058 -0.747285)
(-0.965764 -0.532575 -2.2077)
(-0.183509 -0.561163 -1.94514)
(0.61394 -0.217605 -1.0926)
(0.410021 0.694129 -0.149232)
(0.128898 1.0226 0.528967)
(0.458845 0.129615 0.317196)
(0.654371 -0.741325 -0.129421)
(0.588642 -0.698129 -0.260796)
(0.421735 -0.517911 -0.201049)
(0.343615 -0.700916 -0.149422)
(0.199394 -0.953353 -0.0904456)
(0.0762804 -1.44749 -0.071372)
(-0.122767 -2.30404 0.0131761)
(-0.235033 -3.75715 0.0265042)
(-0.36133 -4.86633 0.0279309)
(-0.194878 -3.96307 0.00162312)
(0.0150246 0.314728 0.00143114)
(0.105974 0.858379 -0.0257168)
(0.22539 1.38209 -0.0413577)
(0.286563 1.78283 -0.0383929)
(0.331077 1.9764 -0.0263956)
(0.368388 1.99082 0.00559367)
(0.405401 1.89039 0.0531905)
(0.441094 1.69645 0.124218)
(0.480855 1.48952 0.200207)
(0.543435 1.26105 0.283687)
(0.597732 1.03282 0.383801)
(0.610922 0.474558 0.547409)
(0.855306 -0.51915 0.878667)
(1.09809 -0.763716 0.672301)
(1.20853 -1.44638 0.162172)
(0.954159 -3.18076 0.65191)
(1.05723 -2.78587 1.49228)
(2.46709 -1.07996 -0.0551903)
(4.29141 -0.541657 -3.46925)
(4.90901 -0.990032 -4.92703)
(3.60939 -1.29002 -3.83208)
(1.7699 -1.91375 -1.7587)
(1.01336 -2.2774 0.528162)
(0.641332 -0.839359 0.434507)
(0.250274 -0.0434989 -1.11866)
(0.424284 -0.571165 -1.19303)
(0.547589 -0.274198 -1.08969)
(0.345022 0.325607 -0.890864)
(0.477013 -0.0278783 -0.561029)
(0.751864 -0.701399 -0.375639)
(0.625267 -0.708227 -0.244489)
(0.452988 -0.427498 -0.137588)
(0.313208 -0.384362 -0.103332)
(0.275791 -0.610818 -0.0918184)
(0.1618 -0.815884 -0.0659225)
(0.0879648 -1.31317 -0.0358588)
(-0.105412 -2.08557 0.0262502)
(-0.217441 -3.58374 0.0423683)
(-0.376926 -4.86039 0.0354689)
(-0.220698 -4.30321 0.00952743)
(0.00955963 0.270545 0.000677193)
(0.0850611 0.760972 -0.0259372)
(0.209616 1.25112 -0.0414957)
(0.290234 1.65525 -0.0428123)
(0.334947 1.88415 -0.0335853)
(0.375763 1.93047 -0.00935173)
(0.416766 1.85599 0.0250564)
(0.453594 1.68742 0.075843)
(0.491508 1.48759 0.130588)
(0.540093 1.26539 0.187621)
(0.608835 1.04193 0.23362)
(0.708151 0.737702 0.234945)
(0.801719 0.233141 0.252981)
(0.824225 0.0448959 0.51641)
(1.05263 -0.217084 0.667277)
(1.75344 -1.90423 0.209882)
(2.56385 -3.50757 1.08784)
(2.25857 -2.57815 2.51942)
(2.05319 -0.6654 0.460732)
(3.33989 0.218184 -2.26246)
(3.33705 0.159848 -1.40301)
(2.19716 -0.757816 0.268105)
(1.22334 -1.38704 1.69038)
(0.391912 -0.454283 2.45954)
(0.437072 -0.50767 1.19274)
(1.00304 -1.30898 -0.232343)
(0.961339 -0.876822 -0.771336)
(0.855625 -0.373803 -0.731902)
(0.858482 -0.426005 -0.523906)
(0.734658 -0.423696 -0.225976)
(0.451672 -0.260394 -0.0528904)
(0.351357 -0.244433 -0.0235977)
(0.255374 -0.321116 -0.0408204)
(0.244394 -0.528667 -0.0499938)
(0.12879 -0.691095 -0.0352234)
(0.0989752 -1.15572 -0.00760684)
(-0.0913552 -1.87916 0.0396069)
(-0.194291 -3.38619 0.0540127)
(-0.398251 -4.82489 0.0428837)
(-0.248141 -4.64607 0.0170023)
(0.0138332 0.215837 -0.00164224)
(0.0714772 0.645417 -0.0277772)
(0.179781 1.09665 -0.044203)
(0.282628 1.47422 -0.0479084)
(0.335644 1.727 -0.0429)
(0.373197 1.80609 -0.0249019)
(0.416329 1.76183 0.000141974)
(0.456097 1.62015 0.0374665)
(0.490955 1.44106 0.0791409)
(0.531116 1.2317 0.121898)
(0.577743 1.02303 0.156682)
(0.65352 0.787552 0.162472)
(0.715115 0.546143 0.13425)
(0.793565 0.414628 0.0922129)
(1.13663 0.0487447 0.10679)
(1.69137 -0.955919 0.320111)
(2.35409 -1.97752 1.20158)
(2.68979 -1.88007 2.16391)
(2.03608 -0.609273 1.13595)
(2.19777 0.00696595 -1.34408)
(2.43094 -0.015718 -1.4575)
(1.67443 -0.0444018 -0.180463)
(0.804554 0.249276 0.831665)
(0.231698 0.507603 1.97957)
(0.476085 -0.294598 1.54612)
(0.774722 -0.838321 0.299427)
(0.791219 -0.281195 -0.0689861)
(0.708329 0.0861661 0.0535993)
(0.507185 0.0563675 0.0650667)
(0.422612 -0.043498 0.0699094)
(0.31523 -0.107931 0.0476491)
(0.341782 -0.223733 0.00796196)
(0.254476 -0.281911 -0.0150806)
(0.249514 -0.463796 -0.0268555)
(0.121444 -0.588491 -0.0147947)
(0.114214 -1.02761 0.00779334)
(-0.0755509 -1.68848 0.0594557)
(-0.165253 -3.21051 0.0635714)
(-0.430639 -4.79441 0.0494958)
(-0.281811 -5.05608 0.0240205)
(0.0060036 0.189386 -0.00396768)
(0.0370028 0.589052 -0.0333313)
(0.117879 1.00795 -0.0470549)
(0.238149 1.37903 -0.0546395)
(0.328865 1.6167 -0.0529973)
(0.378203 1.7278 -0.0408687)
(0.421065 1.70343 -0.0221529)
(0.469421 1.57854 0.00700938)
(0.510575 1.41941 0.0373039)
(0.546647 1.22733 0.0706543)
(0.585339 1.03587 0.0981865)
(0.629852 0.838434 0.114394)
(0.679557 0.62679 0.114007)
(0.739822 0.46325 0.0849826)
(0.879718 0.298994 0.0455261)
(0.982586 -0.140156 0.0842041)
(0.957292 -0.593486 0.614333)
(0.749723 -0.299694 1.3926)
(0.238151 0.600105 1.26962)
(0.271548 1.10318 0.055227)
(0.601174 1.00708 -0.921335)
(0.624441 0.869245 -0.911461)
(0.785311 0.901973 -0.491042)
(1.10985 0.848068 -0.114186)
(1.27754 0.303236 0.0574101)
(1.07431 0.0189709 0.0548813)
(0.874355 0.0729524 0.0705107)
(0.761929 0.0233065 0.11039)
(0.574154 -0.0491489 0.0968082)
(0.543892 -0.0960701 0.0678797)
(0.417746 -0.0806613 0.0388542)
(0.423274 -0.16722 0.0114272)
(0.296285 -0.18467 -0.00434395)
(0.294485 -0.351217 -0.0142441)
(0.12981 -0.444063 -0.0026498)
(0.148601 -0.858668 0.0182955)
(-0.0665423 -1.49301 0.0709587)
(-0.137909 -2.98276 0.0686591)
(-0.479834 -4.7578 0.0520701)
(-0.321142 -5.55879 0.0291908)
(0.0189973 0.160833 -0.00836697)
(0.031705 0.494974 -0.0362204)
(0.0632358 0.899976 -0.0548479)
(0.164115 1.21701 -0.0579909)
(0.277133 1.43153 -0.0618792)
(0.362767 1.54196 -0.0530865)
(0.398036 1.5531 -0.0397677)
(0.456508 1.44594 -0.0173498)
(0.515292 1.31871 0.00613542)
(0.559855 1.15589 0.0309762)
(0.604553 0.995999 0.0537341)
(0.644727 0.833059 0.0714163)
(0.682412 0.673924 0.0830014)
(0.706841 0.514016 0.0871488)
(0.739 0.351235 0.0871219)
(0.741056 0.168835 0.112085)
(0.61163 0.117169 0.168958)
(0.417009 0.179778 0.295294)
(0.372107 0.440778 0.345591)
(0.539988 0.760722 0.191954)
(0.904292 0.727447 -0.0451064)
(1.20514 0.557904 -0.160016)
(1.32058 0.373487 -0.193617)
(1.45981 0.181928 -0.263923)
(1.47046 -0.0729188 -0.246971)
(1.40113 -0.169859 -0.133581)
(1.25998 -0.0845584 -0.0292693)
(1.05842 -0.0361765 0.0427591)
(0.756779 0.0104985 0.0547417)
(0.683941 -0.0170869 0.0434873)
(0.509668 -0.00606505 0.0266016)
(0.520408 -0.071199 0.010784)
(0.378683 -0.0847577 0.0040738)
(0.379037 -0.241856 -0.00518594)
(0.193926 -0.319917 0.00994553)
(0.195581 -0.706479 0.0279403)
(-0.00887811 -1.29293 0.0744909)
(-0.0677226 -2.7648 0.074702)
(-0.545653 -4.71717 0.0566677)
(-0.323832 -6.17911 0.0364144)
(-0.0199661 0.133661 -0.0114576)
(-0.0306309 0.519132 -0.0430547)
(-0.0263812 0.860245 -0.0582564)
(0.0278368 1.20787 -0.0656887)
(0.176048 1.37498 -0.0686888)
(0.331502 1.42836 -0.0635488)
(0.39414 1.45127 -0.0558189)
(0.453651 1.34631 -0.0387048)
(0.540227 1.23557 -0.0217723)
(0.601882 1.095 -0.00243806)
(0.662576 0.958309 0.0144079)
(0.710173 0.821074 0.0303433)
(0.7543 0.692438 0.0429887)
(0.784707 0.570263 0.0526606)
(0.811141 0.458538 0.0593066)
(0.816984 0.342439 0.0699196)
(0.787096 0.255855 0.0964192)
(0.702993 0.277741 0.133197)
(0.672892 0.384415 0.118634)
(0.784871 0.423598 0.046144)
(1.142 0.37988 -0.056735)
(1.49503 0.327052 -0.0925583)
(1.57279 0.267487 -0.0919262)
(1.62988 0.186958 -0.0892458)
(1.57482 0.111491 -0.0809311)
(1.50598 0.0410282 -0.0391735)
(1.37 0.0795545 -9.89858e-05)
(1.17408 0.056692 0.0300562)
(0.866904 0.087765 0.0252423)
(0.820791 0.0455674 0.0185188)
(0.665549 0.0729009 0.00730757)
(0.688092 0.0129978 -0.00122806)
(0.501656 0.0128863 -0.00647918)
(0.527597 -0.109672 -0.0058342)
(0.309337 -0.169421 0.00275085)
(0.33728 -0.506514 0.0302333)
(0.0890457 -0.989857 0.0572825)
(0.0944188 -2.46069 0.0845284)
(-0.540868 -4.58145 0.0512336)
(-0.252169 -6.77759 0.0418229)
(0.0540439 0.26694 -0.0156885)
(-0.000360943 0.454752 -0.0466748)
(-0.100768 0.741369 -0.061905)
(-0.0475223 0.960418 -0.0675609)
(-0.00374793 1.18092 -0.0725532)
(0.191905 1.18159 -0.0687758)
(0.329654 1.21029 -0.066468)
(0.407739 1.1275 -0.0555972)
(0.529132 1.0443 -0.0444704)
(0.618926 0.93619 -0.031153)
(0.706405 0.83073 -0.0188201)
(0.771975 0.72489 -0.00719575)
(0.828003 0.629856 0.00332112)
(0.866534 0.540467 0.0125719)
(0.897965 0.460323 0.0179701)
(0.913094 0.376631 0.0243157)
(0.902624 0.307233 0.0323675)
(0.884375 0.267513 0.0338163)
(0.916967 0.288039 0.0246882)
(1.02736 0.280525 -0.00641872)
(1.34288 0.270463 -0.0476689)
(1.64237 0.231012 -0.063483)
(1.6788 0.161267 -0.0719096)
(1.74325 0.0816652 -0.0837597)
(1.70813 0.0538503 -0.0690517)
(1.71693 0.00719095 -0.0475238)
(1.60874 0.0832193 -0.0224916)
(1.43029 0.0756825 -0.00479815)
(1.10434 0.143966 -0.00464926)
(1.07659 0.11903 -0.00753133)
(0.905216 0.171378 -0.0122393)
(0.962945 0.0908503 -0.0156233)
(0.781638 0.100051 -0.0151954)
(0.863678 -0.0152101 -0.0101316)
(0.604197 -0.0809028 -0.00264341)
(0.715628 -0.364028 0.0151648)
(0.364826 -0.781807 0.0468698)
(0.482838 -2.07302 0.0574417)
(-0.245649 -4.38299 0.0618091)
(0.0202401 -7.30443 0.0466263)
(-0.229141 0.067397 -0.0250943)
(-0.312995 0.685922 -0.0608975)
(-0.303363 0.85911 -0.0705018)
(-0.269449 1.00764 -0.0728292)
(-0.126997 1.03601 -0.0784316)
(0.052325 1.05641 -0.074392)
(0.231542 1.00203 -0.0779523)
(0.352267 0.941433 -0.0710134)
(0.506618 0.866085 -0.066396)
(0.625189 0.789102 -0.0586611)
(0.744002 0.7107 -0.0519317)
(0.838249 0.632282 -0.0440118)
(0.921996 0.561705 -0.0371034)
(0.984207 0.495956 -0.0304647)
(1.0318 0.438183 -0.0247808)
(1.06351 0.375591 -0.0179798)
(1.09045 0.320109 -0.011854)
(1.1177 0.286748 -0.00936256)
(1.16336 0.289258 -0.0176033)
(1.29567 0.244229 -0.0363423)
(1.64398 0.23049 -0.0635514)
(1.99577 0.190432 -0.0734473)
(2.05554 0.149331 -0.0765174)
(2.16792 0.101242 -0.0730296)
(2.14403 0.0946059 -0.0647873)
(2.18851 0.0485653 -0.051098)
(2.07637 0.122954 -0.0405366)
(1.9416 0.0901419 -0.0319402)
(1.59995 0.166329 -0.0320871)
(1.64464 0.150051 -0.0345885)
(1.46971 0.218504 -0.0372065)
(1.60233 0.153889 -0.0368036)
(1.38923 0.162947 -0.0345045)
(1.55357 0.0398759 -0.0298022)
(1.23211 -0.00816179 -0.0229623)
(1.42048 -0.22716 -0.00610944)
(0.970659 -0.487581 0.0163385)
(1.16735 -1.46153 0.0410586)
(0.340104 -3.89384 0.0480311)
(0.487767 -7.20926 0.043235)
(-0.731459 0.800625 -0.0491281)
(-0.609365 0.397411 -0.0759396)
(-0.7564 0.575613 -0.0721629)
(-0.465426 0.594121 -0.0708982)
(-0.315978 0.61231 -0.0743635)
(-0.0030416 0.654694 -0.0742146)
(0.221237 0.629861 -0.0784136)
(0.445297 0.603509 -0.0767845)
(0.671399 0.562545 -0.0761852)
(0.876667 0.520876 -0.0732943)
(1.07521 0.474059 -0.0702676)
(1.25242 0.427771 -0.0662334)
(1.40967 0.385988 -0.0625208)
(1.54286 0.350627 -0.0582692)
(1.64769 0.324497 -0.0550293)
(1.7413 0.289222 -0.0521535)
(1.83311 0.249039 -0.0514104)
(1.96531 0.224786 -0.0549944)
(2.11969 0.221703 -0.0630695)
(2.38751 0.153368 -0.0732014)
(2.80374 0.135149 -0.0866891)
(3.2567 0.091309 -0.0916806)
(3.35941 0.0448209 -0.0904094)
(3.52183 -0.00209577 -0.0883947)
(3.46769 0.00227714 -0.075126)
(3.57311 -0.0195765 -0.0658287)
(3.42005 0.0571295 -0.0592499)
(3.37107 0.0525395 -0.0533832)
(2.98126 0.127555 -0.0536614)
(3.13855 0.140859 -0.0534103)
(2.91818 0.200096 -0.0537908)
(3.21952 0.148406 -0.0518374)
(2.92849 0.122721 -0.0467583)
(3.26058 0.0375173 -0.041852)
(2.78991 -0.0253992 -0.0329491)
(3.14034 -0.211703 -0.0250374)
(2.47833 -0.493665 -0.0110683)
(2.84525 -1.13572 0.00356642)
(1.8641 -3.16365 0.0229696)
(1.32215 -6.10532 0.0279717)
(1.16373 1.49034 -0.01818)
(1.72937 0.738955 -0.0283881)
(2.46715 0.582225 -0.0290787)
(2.87834 0.358552 -0.0259834)
(3.15825 0.281567 -0.0259078)
(3.40028 0.227983 -0.0229776)
(3.61963 0.208838 -0.0248208)
(3.83257 0.187041 -0.0241007)
(4.05972 0.172932 -0.0247891)
(4.29265 0.158835 -0.0242468)
(4.51416 0.144652 -0.0247558)
(4.7274 0.129731 -0.02451)
(4.90653 0.116108 -0.0245354)
(5.06629 0.104463 -0.0235298)
(5.17894 0.0978956 -0.0230628)
(5.29551 0.0915453 -0.0235591)
(5.41434 0.0735014 -0.0264462)
(5.61384 0.0572555 -0.0316889)
(5.84428 0.0758052 -0.0427325)
(6.2811 0.0615042 -0.0546496)
(6.70381 0.041967 -0.0675369)
(7.20562 0.0221888 -0.0742904)
(7.27833 0.00607513 -0.0748396)
(7.36701 -0.031755 -0.064819)
(7.19206 -0.0287845 -0.0561904)
(7.20442 -0.0474591 -0.0456029)
(6.85465 -0.0306998 -0.0393395)
(6.83193 -0.0183491 -0.0337036)
(6.34974 0.0137362 -0.032612)
(6.5796 0.0289247 -0.032606)
(6.32421 0.0640761 -0.0339564)
(6.75202 0.0672407 -0.0330016)
(6.44012 0.0476994 -0.0298005)
(6.83391 0.0172084 -0.0257826)
(6.29873 -0.0149697 -0.022219)
(6.52634 -0.102326 -0.0164632)
(5.64734 -0.261107 -0.0112759)
(5.68154 -0.585046 -0.00501006)
(4.25678 -1.14615 0.00379166)
(2.77643 -2.53528 0.0122903)
(0.000435415 -0.00230097 -0.0026774)
(0.0197328 -0.00555342 -0.00702724)
(0.0470559 -0.00584675 -0.0090962)
(0.0659177 -0.00460548 -0.0117675)
(0.0771848 -0.00439124 -0.0131809)
(0.0727619 -0.00443088 -0.0177118)
(0.0531359 0.00336207 -0.0126075)
(0.0301766 0.0055916 -0.0155377)
(0.00539558 0.0232106 -0.0119193)
(-0.0383088 0.0227641 -0.0155473)
(-0.0942096 0.0154887 -0.0157074)
(-0.157359 0.00670767 -0.0165951)
(-0.230417 -0.000925868 -0.0165579)
(-0.315616 -0.000326281 -0.0192246)
(-0.399572 0.010413 -0.0219506)
(-0.494869 0.0154097 -0.0309043)
(-0.601674 0.00142309 -0.0396494)
(-0.747436 -0.00130359 -0.0650606)
(-0.833479 -0.00853135 -0.0859574)
(-1.01673 -0.00452044 -0.104783)
(-0.973973 0.0319674 -0.120907)
(-0.782916 0.024267 -0.129001)
(-0.765982 0.026216 -0.130686)
(-0.743816 0.0245644 -0.133291)
(-0.732215 -0.00422557 -0.144625)
(-0.681413 -0.0271971 -0.157815)
(-0.606871 -0.0442365 -0.17205)
(-0.480549 -0.0622414 -0.186531)
(-0.33051 -0.0803466 -0.19722)
(-0.148577 -0.0865217 -0.205551)
(0.0229025 -0.07647 -0.196634)
(0.255504 -0.00778367 -0.184046)
(0.468656 -0.0335445 -0.164168)
(0.537635 0.0203709 -0.127225)
(0.503799 0.0484685 -0.0895174)
(0.392139 0.0467174 -0.0551035)
(0.254292 0.0316196 -0.0331046)
(0.136042 0.0170352 -0.0185321)
(0.0468808 0.0029652 -0.0104136)
(-0.000116689 -0.00743919 -0.00324238)
(0.00650867 -0.0220411 -0.00853071)
(0.0406284 -0.0395964 -0.0190233)
(0.0808125 -0.0415314 -0.0243969)
(0.104913 -0.0322414 -0.0306671)
(0.11313 -0.0208432 -0.0348641)
(0.100809 -0.0123587 -0.0419113)
(0.0528772 0.0026632 -0.0364466)
(-0.00550317 0.0341582 -0.0366494)
(-0.0991125 0.0561541 -0.0335548)
(-0.259699 0.0638475 -0.0433946)
(-0.434945 0.0885757 -0.0436515)
(-0.6284 0.115854 -0.0466417)
(-0.835294 0.145812 -0.0492594)
(-1.05429 0.17615 -0.0554582)
(-1.28194 0.189817 -0.0623545)
(-1.52176 0.163551 -0.083787)
(-1.73053 0.120875 -0.100589)
(-1.93713 0.0863312 -0.125027)
(-2.07881 0.0583559 -0.146036)
(-2.2228 0.0403679 -0.161404)
(-2.06199 0.0574435 -0.171742)
(-1.78107 0.0215578 -0.166847)
(-1.64413 -0.0161822 -0.151704)
(-1.54802 -0.0995331 -0.145634)
(-1.46665 -0.188592 -0.15203)
(-1.33556 -0.26458 -0.156313)
(-1.19587 -0.32424 -0.161099)
(-1.01336 -0.366341 -0.162848)
(-0.805506 -0.392727 -0.168706)
(-0.56018 -0.407255 -0.168283)
(-0.299152 -0.376265 -0.174272)
(-0.0371718 -0.28457 -0.155108)
(0.261545 -0.192358 -0.158798)
(0.523004 -0.0765847 -0.1371)
(0.601686 0.0438188 -0.122215)
(0.55988 0.121669 -0.0906556)
(0.439612 0.144059 -0.0671088)
(0.279857 0.124124 -0.0461383)
(0.120642 0.0857141 -0.0277805)
(0.0182638 0.0318772 -0.00859303)
(0.00954889 -0.0543372 -0.0167316)
(0.0452328 -0.0909845 -0.031984)
(0.0807533 -0.0882951 -0.0405585)
(0.0938788 -0.060044 -0.0487379)
(0.077397 -0.0334451 -0.0486984)
(0.0245134 0.0121715 -0.0664519)
(-0.0587309 0.0641891 -0.0574559)
(-0.200902 0.135696 -0.059824)
(-0.414823 0.201759 -0.0562207)
(-0.656949 0.267195 -0.0562995)
(-0.923596 0.33979 -0.0531353)
(-1.21206 0.395723 -0.0517507)
(-1.49127 0.432945 -0.0531413)
(-1.76606 0.421637 -0.0569377)
(-2.02342 0.36581 -0.067761)
(-2.24298 0.298217 -0.0781507)
(-2.40606 0.237933 -0.0819663)
(-2.56207 0.175609 -0.0872635)
(-2.65964 0.132257 -0.0870406)
(-2.72462 0.0727827 -0.0804887)
(-2.47854 0.0499652 -0.0739212)
(-2.16897 -0.0203946 -0.0552393)
(-2.01717 -0.127288 -0.0332568)
(-1.89349 -0.271519 -0.0444902)
(-1.80083 -0.400149 -0.0404178)
(-1.6625 -0.529189 -0.0388856)
(-1.52262 -0.637947 -0.0402979)
(-1.35386 -0.717235 -0.0418136)
(-1.18894 -0.755889 -0.042366)
(-0.978693 -0.749551 -0.0440368)
(-0.752855 -0.707652 -0.0503658)
(-0.492262 -0.619361 -0.0539215)
(-0.209616 -0.445457 -0.0776526)
(0.0738529 -0.267002 -0.0686614)
(0.298696 -0.0575688 -0.0820463)
(0.39453 0.129866 -0.0755687)
(0.362642 0.209038 -0.0699781)
(0.254053 0.224626 -0.0538454)
(0.115578 0.177031 -0.0356082)
(0.0159822 0.0838923 -0.0106196)
(0.00961849 -0.0895502 -0.0279934)
(0.0395678 -0.136109 -0.0488613)
(0.0570764 -0.127262 -0.0565868)
(0.0277336 -0.0656693 -0.072452)
(-0.0259442 0.0103234 -0.0719191)
(-0.116841 0.114062 -0.0751187)
(-0.281038 0.229609 -0.071689)
(-0.50718 0.363166 -0.06341)
(-0.806031 0.492919 -0.0515778)
(-1.13534 0.590525 -0.0432309)
(-1.44155 0.644237 -0.0363108)
(-1.72699 0.658933 -0.0315136)
(-1.99755 0.615908 -0.0273473)
(-2.24558 0.533677 -0.030619)
(-2.43268 0.445038 -0.0249832)
(-2.57221 0.366 -0.0215128)
(-2.66968 0.293867 -0.0129994)
(-2.75943 0.223183 -0.00549811)
(-2.7977 0.170771 0.00484317)
(-2.78302 0.0874089 0.0173421)
(-2.50832 0.0481574 0.026242)
(-2.21747 -0.0577243 0.0342296)
(-2.08429 -0.20707 0.0315658)
(-1.99527 -0.362597 0.0318803)
(-1.92984 -0.522546 0.0310762)
(-1.82585 -0.69582 0.0288021)
(-1.71594 -0.856077 0.0244012)
(-1.57071 -0.994466 0.0201598)
(-1.42168 -1.083 0.0118711)
(-1.26631 -1.10001 0.00948181)
(-1.10331 -1.03711 0.00180059)
(-0.908731 -0.906004 -0.00117704)
(-0.68646 -0.737741 -0.0218068)
(-0.400592 -0.503927 -0.0351917)
(-0.0954625 -0.219361 -0.0543899)
(0.0999203 0.040325 -0.0646867)
(0.163336 0.207327 -0.0613415)
(0.14433 0.266681 -0.0537371)
(0.0640688 0.233325 -0.0360916)
(0.00742379 0.116715 -0.0115146)
(0.0104981 -0.121254 -0.0375099)
(0.0139647 -0.170065 -0.0664129)
(-0.00327246 -0.121472 -0.0804094)
(-0.0613506 -0.0136828 -0.0854114)
(-0.172267 0.141924 -0.0872677)
(-0.34136 0.307281 -0.0840976)
(-0.566311 0.49011 -0.0690319)
(-0.841549 0.655692 -0.0488436)
(-1.17362 0.787033 -0.0298251)
(-1.49541 0.849972 -0.0158761)
(-1.78779 0.844065 -0.00433549)
(-2.06092 0.779324 0.0019461)
(-2.28789 0.686818 0.00483195)
(-2.45237 0.592803 0.0111147)
(-2.56339 0.510468 0.0170666)
(-2.63121 0.420138 0.0242259)
(-2.66072 0.344744 0.0342238)
(-2.68666 0.265645 0.0484677)
(-2.67437 0.210793 0.0623215)
(-2.60635 0.115902 0.0729679)
(-2.3281 0.0691053 0.0744624)
(-2.08214 -0.0540663 0.0664204)
(-1.99087 -0.222383 0.0563841)
(-1.9373 -0.4012 0.0516566)
(-1.90455 -0.586674 0.0485412)
(-1.84777 -0.796505 0.0433063)
(-1.78399 -1.00575 0.0381559)
(-1.68426 -1.20642 0.0328876)
(-1.56964 -1.36699 0.0287808)
(-1.42174 -1.46247 0.0242564)
(-1.28686 -1.44991 0.0169798)
(-1.16902 -1.33151 0.0141713)
(-1.05148 -1.08462 -0.000536784)
(-0.804026 -0.796222 -0.0168884)
(-0.456601 -0.463497 -0.0442902)
(-0.16092 -0.117811 -0.0544736)
(-0.00853473 0.128916 -0.0669955)
(0.0262225 0.254565 -0.0524456)
(0.0135962 0.24567 -0.039726)
(-0.00393824 0.121516 -0.0148117)
(0.00282213 -0.138104 -0.0527392)
(-0.0123065 -0.162034 -0.0857578)
(-0.0767976 -0.0549095 -0.100104)
(-0.19018 0.129596 -0.101941)
(-0.357824 0.343995 -0.0953206)
(-0.566851 0.57516 -0.0762837)
(-0.811487 0.772137 -0.0487384)
(-1.08768 0.939004 -0.0206058)
(-1.42013 0.990054 0.00124732)
(-1.76105 0.95472 0.0149343)
(-2.03514 0.885464 0.021387)
(-2.23172 0.802127 0.0308922)
(-2.36623 0.723114 0.0401956)
(-2.458 0.634744 0.0458743)
(-2.50182 0.533828 0.0505476)
(-2.50924 0.426398 0.0529817)
(-2.48805 0.340347 0.0565739)
(-2.45935 0.273099 0.0619192)
(-2.39705 0.233537 0.0738271)
(-2.2824 0.144513 0.0860088)
(-2.01178 0.0958044 0.0841793)
(-1.81082 -0.0350794 0.0725488)
(-1.75159 -0.205572 0.059043)
(-1.72938 -0.386454 0.0560462)
(-1.72689 -0.581118 0.0513449)
(-1.71634 -0.805925 0.0465594)
(-1.70565 -1.04545 0.0409768)
(-1.67089 -1.29484 0.036163)
(-1.61948 -1.52803 0.0309638)
(-1.5276 -1.70712 0.029354)
(-1.41196 -1.8004 0.0251539)
(-1.27317 -1.75789 0.0218199)
(-1.2312 -1.58261 0.0136282)
(-1.1252 -1.17904 -5.51466e-05)
(-0.777426 -0.781134 -0.0230284)
(-0.404029 -0.343435 -0.0489767)
(-0.149877 0.00188199 -0.0498684)
(-0.038706 0.203372 -0.0567546)
(-0.0169664 0.225368 -0.038537)
(-0.00498579 0.110521 -0.0164653)
(-0.00060434 -0.130889 -0.0651558)
(-0.0507945 -0.0904223 -0.104235)
(-0.154035 0.0758323 -0.115265)
(-0.31649 0.326925 -0.108194)
(-0.514039 0.591875 -0.0875889)
(-0.735294 0.829486 -0.0549636)
(-0.96937 1.01419 -0.0205326)
(-1.29492 1.06231 0.00969499)
(-1.66154 0.989459 0.0212809)
(-1.91849 0.931076 0.033431)
(-2.08944 0.891682 0.0480516)
(-2.2135 0.845087 0.0586885)
(-2.29929 0.771958 0.0620388)
(-2.34527 0.667824 0.059816)
(-2.35214 0.554383 0.0494516)
(-2.30854 0.43412 0.0420105)
(-2.21537 0.351599 0.0438165)
(-2.10995 0.275532 0.0673665)
(-2.01599 0.24364 0.0845311)
(-1.8884 0.177962 0.0952328)
(-1.63892 0.146524 0.0859736)
(-1.48567 -0.0114043 0.0720245)
(-1.45772 -0.168121 0.0593277)
(-1.45221 -0.347514 0.0538383)
(-1.46944 -0.539723 0.0484573)
(-1.48782 -0.764338 0.0423005)
(-1.51614 -1.0139 0.0359145)
(-1.53616 -1.28896 0.0297489)
(-1.5505 -1.57136 0.0242556)
(-1.53584 -1.83089 0.0215859)
(-1.48192 -2.02349 0.0195374)
(-1.38103 -2.08758 0.0181501)
(-1.26614 -2.02271 0.0164052)
(-1.2418 -1.71305 0.010601)
(-1.04632 -1.21032 -0.00856825)
(-0.614225 -0.688503 -0.0333015)
(-0.251925 -0.206961 -0.0658973)
(-0.0824998 0.0919159 -0.0608007)
(-0.0251597 0.176565 -0.0474772)
(-0.00244575 0.0855672 -0.020774)
(0.00371954 -0.0798166 -0.0807619)
(-0.0762284 0.0207222 -0.12268)
(-0.234323 0.249295 -0.126383)
(-0.413595 0.539806 -0.105214)
(-0.623486 0.807375 -0.0708642)
(-0.838472 1.01218 -0.0302682)
(-1.16342 1.08511 0.0025372)
(-1.50233 1.0077 0.0168893)
(-1.73935 0.969461 0.0401249)
(-1.90342 0.974574 0.0573803)
(-2.01728 0.952886 0.0713505)
(-2.09089 0.898869 0.0770518)
(-2.1383 0.811922 0.076059)
(-2.15227 0.691383 0.0655225)
(-2.12143 0.532831 0.0528709)
(-2.03224 0.352483 0.0443713)
(-1.90783 0.221596 0.0279334)
(-1.76603 0.187621 0.0150699)
(-1.61862 0.239245 0.0314088)
(-1.46032 0.250532 0.0753501)
(-1.28485 0.218852 0.0835017)
(-1.18043 0.0215557 0.0717414)
(-1.16079 -0.121585 0.062538)
(-1.16953 -0.292989 0.0568094)
(-1.19223 -0.473243 0.0504704)
(-1.22479 -0.683904 0.0440356)
(-1.27243 -0.924668 0.0363237)
(-1.32586 -1.20088 0.0287394)
(-1.38675 -1.50515 0.02116)
(-1.43565 -1.81578 0.0160232)
(-1.46034 -2.09565 0.0137333)
(-1.43038 -2.28487 0.0128253)
(-1.34245 -2.31959 0.012645)
(-1.27202 -2.17607 0.0142425)
(-1.18058 -1.71883 0.00655538)
(-0.845793 -1.10162 -0.00957387)
(-0.370151 -0.489991 -0.0335259)
(-0.0984485 -0.0159906 -0.0441353)
(-0.015446 0.112144 -0.0393652)
(0.00268008 0.0718585 -0.0173564)
(-0.00999938 -0.0188096 -0.0884852)
(-0.114742 0.130733 -0.132588)
(-0.284069 0.390964 -0.127065)
(-0.482602 0.679604 -0.093625)
(-0.701792 0.911977 -0.0511331)
(-0.992009 1.04796 -0.0106048)
(-1.30542 1.0178 0.0121154)
(-1.53593 1.01721 0.0390533)
(-1.7029 1.03955 0.0592122)
(-1.798 1.03391 0.0771834)
(-1.85247 1.00148 0.0878648)
(-1.89309 0.938657 0.0915861)
(-1.93304 0.845641 0.0800201)
(-1.97323 0.685644 0.0572542)
(-1.99401 0.505558 0.0024556)
(-1.89198 0.326872 -0.0413009)
(-1.61118 0.245537 -0.0297229)
(-1.30119 0.162231 0.0678404)
(-1.13355 0.19361 0.124091)
(-1.07659 0.354059 0.139013)
(-1.03148 0.352903 0.105201)
(-0.956345 0.097037 0.0799892)
(-0.922429 -0.0723559 0.0681369)
(-0.932355 -0.234061 0.0605927)
(-0.949479 -0.407417 0.0533116)
(-0.981529 -0.598636 0.0458798)
(-1.03083 -0.822446 0.0373411)
(-1.09371 -1.08297 0.0283383)
(-1.17428 -1.38558 0.0193251)
(-1.25847 -1.71766 0.0117404)
(-1.33594 -2.05468 0.00723999)
(-1.37679 -2.34094 0.00561696)
(-1.3575 -2.51266 0.00616963)
(-1.27689 -2.49197 0.00886242)
(-1.20287 -2.20625 0.00910271)
(-0.992037 -1.58552 0.00226311)
(-0.500868 -0.839063 -0.0178073)
(-0.150376 -0.229601 -0.0343334)
(-0.0473668 0.0591606 -0.0423964)
(0.0143936 0.0598133 -0.0193497)
(-0.0238462 0.0426686 -0.0948879)
(-0.1526 0.257547 -0.138954)
(-0.338196 0.528159 -0.125358)
(-0.531121 0.784274 -0.0825852)
(-0.768604 0.97725 -0.0349776)
(-1.05919 1.03996 0.000401141)
(-1.31887 1.06018 0.0290457)
(-1.48862 1.0913 0.0524498)
(-1.57973 1.09591 0.0754927)
(-1.60989 1.07456 0.0912197)
(-1.63136 1.0419 0.104273)
(-1.66436 0.997143 0.102018)
(-1.75126 0.920901 0.084632)
(-1.83454 0.79767 0.0406742)
(-1.76112 0.538494 0.0362509)
(-1.32398 0.0728046 0.186418)
(-0.926437 -0.262232 0.274989)
(-0.914762 -0.264719 0.285494)
(-1.07261 0.147484 0.25114)
(-1.12212 0.56912 0.236478)
(-0.99484 0.484085 0.157745)
(-0.842093 0.101929 0.0970925)
(-0.771373 -0.0518187 0.0756392)
(-0.757025 -0.186402 0.0712399)
(-0.763406 -0.349565 0.0591722)
(-0.783393 -0.517679 0.0513887)
(-0.82485 -0.719905 0.0408178)
(-0.88143 -0.954856 0.0306762)
(-0.962617 -1.23871 0.0199488)
(-1.05851 -1.56786 0.0106683)
(-1.1644 -1.93237 0.00350954)
(-1.25377 -2.29045 0.000909827)
(-1.29818 -2.57673 0.000823685)
(-1.27291 -2.70308 0.00427123)
(-1.18103 -2.57871 0.00765906)
(-1.04553 -2.10002 0.00722231)
(-0.70011 -1.28451 -0.000343487)
(-0.219352 -0.526546 -0.0223936)
(-0.0370267 -0.026966 -0.0166574)
(-0.00328799 0.0367768 -0.0116913)
(-0.0262436 0.111389 -0.0966025)
(-0.168242 0.388741 -0.140309)
(-0.362109 0.667635 -0.121225)
(-0.558491 0.909844 -0.0722874)
(-0.819225 1.05919 -0.0235844)
(-1.08484 1.10045 0.0108873)
(-1.27775 1.13294 0.0388944)
(-1.36974 1.1461 0.064799)
(-1.39369 1.12886 0.086517)
(-1.37271 1.10065 0.107083)
(-1.35556 1.09705 0.124226)
(-1.38813 1.09683 0.134464)
(-1.46254 1.06887 0.125921)
(-1.4043 0.762519 0.190477)
(-0.861304 0.120699 0.33142)
(-0.164677 -0.429351 0.341413)
(-0.209138 -0.0896419 0.0236018)
(-0.731951 0.438943 -0.112095)
(-1.00636 0.701605 -0.08676)
(-0.995919 0.788611 0.103631)
(-0.766406 0.482796 0.116821)
(-0.644532 0.0440986 0.0627169)
(-0.634109 -0.0648265 0.0747665)
(-0.61134 -0.16466 0.0741683)
(-0.623125 -0.311682 0.065045)
(-0.631367 -0.458916 0.0557704)
(-0.662976 -0.639207 0.0443075)
(-0.704716 -0.846079 0.032537)
(-0.773169 -1.10112 0.0208108)
(-0.861279 -1.40802 0.00983226)
(-0.971913 -1.77154 0.00133932)
(-1.08471 -2.16605 -0.0039102)
(-1.17551 -2.5405 -0.0045966)
(-1.20455 -2.80244 -0.00163511)
(-1.15016 -2.83713 0.00264037)
(-1.01648 -2.53693 0.0060139)
(-0.783668 -1.79295 0.00148082)
(-0.335819 -0.819704 -0.00702799)
(-0.0518202 -0.147854 -0.0241886)
(-0.0126595 0.024856 -0.0138545)
(-0.0265076 0.191597 -0.0962902)
(-0.173081 0.524542 -0.139802)
(-0.369462 0.808609 -0.117656)
(-0.583679 1.03107 -0.0655673)
(-0.840429 1.13411 -0.0168912)
(-1.04899 1.17519 0.0171144)
(-1.17094 1.19309 0.0456567)
(-1.19837 1.17316 0.0708217)
(-1.16598 1.13178 0.0976359)
(-1.07928 1.10331 0.124659)
(-1.01032 1.13949 0.167045)
(-0.980195 1.19043 0.197039)
(-0.975337 1.04746 0.307354)
(-0.365899 0.353261 0.503456)
(0.445755 -0.285707 0.177481)
(0.3564 -0.0752906 -0.562583)
(-0.468433 0.664891 -0.754774)
(-0.946223 0.871687 -0.446867)
(-0.832093 0.686807 -0.0575508)
(-0.677804 0.701503 0.198869)
(-0.435363 0.550961 0.191369)
(-0.432147 0.163079 0.125827)
(-0.510218 0.00142803 0.105666)
(-0.497061 -0.115662 0.0949342)
(-0.519869 -0.265194 0.0792065)
(-0.520617 -0.407267 0.0647648)
(-0.544521 -0.573397 0.0496911)
(-0.570649 -0.757461 0.0351272)
(-0.622182 -0.982496 0.021828)
(-0.693091 -1.25828 0.00940522)
(-0.793743 -1.60113 -0.000331064)
(-0.910746 -2.00473 -0.00794112)
(-1.02574 -2.43389 -0.00952343)
(-1.10069 -2.80733 -0.00598898)
(-1.09775 -3.00496 -0.000289096)
(-0.985929 -2.87714 0.00462495)
(-0.783738 -2.2977 0.00647009)
(-0.419117 -1.24588 -0.000216167)
(-0.0812533 -0.327632 -0.00272747)
(-0.0234215 -0.00781535 -0.00325932)
(-0.0221412 0.264225 -0.0929296)
(-0.164175 0.649343 -0.136406)
(-0.365984 0.937961 -0.113023)
(-0.595686 1.12512 -0.0605736)
(-0.823054 1.21202 -0.00979606)
(-0.97207 1.24529 0.0199791)
(-1.03931 1.22735 0.0474511)
(-1.01317 1.17041 0.0735868)
(-0.92599 1.09914 0.104578)
(-0.757298 1.06991 0.149205)
(-0.598976 1.15675 0.219106)
(-0.602083 1.212 0.356803)
(-0.319627 0.734081 0.62558)
(0.670647 -0.0993851 0.126703)
(0.649641 0.0245085 -0.723384)
(-0.629207 0.771911 -0.862866)
(-1.49481 0.681916 -0.510061)
(-1.37505 0.179894 -0.102336)
(-1.23932 0.155804 0.180984)
(-1.12634 0.525196 0.318864)
(-0.595397 0.584181 0.295867)
(-0.446721 0.249396 0.219796)
(-0.497005 0.0708262 0.167729)
(-0.45379 -0.0751194 0.133063)
(-0.466086 -0.227184 0.105515)
(-0.452107 -0.374094 0.0795596)
(-0.4643 -0.530419 0.0588099)
(-0.473507 -0.697823 0.0385937)
(-0.506223 -0.894541 0.0226876)
(-0.555097 -1.13579 0.00826543)
(-0.636934 -1.44496 -0.0026036)
(-0.743656 -1.83325 -0.0122206)
(-0.864558 -2.28495 -0.0146252)
(-0.96577 -2.73626 -0.0109498)
(-1.00729 -3.07146 -0.0043213)
(-0.945654 -3.12208 0.0017754)
(-0.760986 -2.72168 0.00182438)
(-0.46838 -1.73842 -0.000788474)
(-0.109477 -0.580937 -0.015058)
(-0.0118349 -0.0702045 -0.00982173)
(-0.016474 0.330618 -0.0887035)
(-0.148171 0.769464 -0.132687)
(-0.364228 1.05351 -0.110327)
(-0.583165 1.21415 -0.0592967)
(-0.765493 1.3013 -0.0109664)
(-0.872192 1.30423 0.0170323)
(-0.894207 1.24418 0.0432651)
(-0.8304 1.14176 0.0709651)
(-0.685799 1.02678 0.109989)
(-0.397995 0.981218 0.172137)
(-0.275825 1.18801 0.356913)
(-0.39232 1.10639 0.667286)
(0.316615 0.284198 0.401159)
(0.448204 0.19873 -0.572749)
(-1.01663 0.957308 -0.561352)
(-1.82481 0.938321 -0.457634)
(-1.61714 0.336342 -0.241194)
(-1.46594 0.243945 -0.14605)
(-1.63185 0.518613 -0.116302)
(-1.29899 0.550038 0.105907)
(-0.526579 0.390997 0.237463)
(-0.405801 0.219825 0.243168)
(-0.464936 0.0986993 0.210341)
(-0.422135 -0.0627847 0.161934)
(-0.426211 -0.206102 0.129374)
(-0.405917 -0.356642 0.0926197)
(-0.406726 -0.505242 0.067182)
(-0.403256 -0.660676 0.0413221)
(-0.419792 -0.833495 0.0224972)
(-0.449415 -1.04291 0.00598558)
(-0.510917 -1.31503 -0.00632153)
(-0.601578 -1.67477 -0.0172034)
(-0.716796 -2.12564 -0.0199935)
(-0.83124 -2.62543 -0.0160687)
(-0.903577 -3.07061 -0.00684908)
(-0.889185 -3.28682 0.000369905)
(-0.744668 -3.06866 0.00458478)
(-0.483112 -2.21635 0.000324269)
(-0.12784 -0.904084 -0.00660235)
(-0.00527541 -0.13958 -0.00710178)
(-0.00838399 0.377497 -0.083157)
(-0.138461 0.865933 -0.127931)
(-0.353007 1.14439 -0.107057)
(-0.545692 1.30503 -0.0606137)
(-0.696042 1.37465 -0.0138338)
(-0.773468 1.3404 0.00992907)
(-0.770852 1.23451 0.0344148)
(-0.687294 1.08546 0.0605487)
(-0.491001 0.886572 0.099196)
(-0.121138 0.934002 0.226883)
(-0.374435 1.21211 0.610098)
(-0.205803 1.04855 0.756786)
(0.10533 0.672141 -0.0303819)
(-1.08615 1.22332 -0.230382)
(-1.45407 1.11584 -0.395678)
(-0.875386 0.291524 -0.306114)
(-0.841178 0.0286991 -0.0968369)
(-1.5472 0.319594 -0.205457)
(-1.56918 0.307717 -0.0926978)
(-0.907355 0.103359 0.144768)
(-0.409266 0.227757 0.211669)
(-0.436535 0.336651 0.332414)
(-0.442858 0.181748 0.291433)
(-0.412114 -0.0351617 0.199996)
(-0.398033 -0.184674 0.159832)
(-0.373391 -0.346113 0.107985)
(-0.362496 -0.492709 0.0762556)
(-0.348105 -0.641198 0.043708)
(-0.351582 -0.794904 0.0217764)
(-0.365892 -0.975695 0.00325188)
(-0.409577 -1.20975 -0.0105303)
(-0.482359 -1.53235 -0.0228538)
(-0.585657 -1.96357 -0.0267632)
(-0.70227 -2.48707 -0.0225274)
(-0.793862 -3.0136 -0.0118051)
(-0.817708 -3.37762 -0.00130943)
(-0.711958 -3.33711 0.00287153)
(-0.485321 -2.63876 0.000705848)
(-0.138072 -1.26743 -0.00746685)
(0.0257426 -0.185419 -0.00935336)
(-0.00492446 0.416429 -0.0778481)
(-0.126498 0.953275 -0.122712)
(-0.324596 1.25144 -0.107202)
(-0.492147 1.40511 -0.0650987)
(-0.621325 1.45257 -0.020762)
(-0.682907 1.3746 -0.0013415)
(-0.669393 1.22812 0.01823)
(-0.602571 1.01595 0.0387805)
(-0.324545 0.757433 0.0798074)
(-0.237298 0.97336 0.36911)
(-0.545454 1.31497 0.914417)
(-0.0945404 1.41762 0.696395)
(-0.479693 1.43764 0.0576153)
(-0.635098 1.13841 -0.518565)
(-0.102457 0.270236 -0.574309)
(0.0152122 -0.0152492 0.170693)
(-0.835354 0.609309 -0.0444869)
(-1.86625 0.627881 -0.0253495)
(-1.71053 -0.153902 0.499198)
(-1.20689 -0.191422 0.456599)
(-0.89946 0.14474 0.284111)
(-0.73788 0.329378 0.428602)
(-0.519741 0.153291 0.344556)
(-0.449691 -0.0448209 0.22663)
(-0.388598 -0.190267 0.184)
(-0.354151 -0.347962 0.119888)
(-0.325796 -0.491257 0.0827512)
(-0.300788 -0.632904 0.0442317)
(-0.292455 -0.772866 0.0198598)
(-0.2956 -0.931299 -0.000550399)
(-0.325401 -1.1329 -0.0159415)
(-0.38294 -1.41767 -0.0298546)
(-0.474878 -1.82048 -0.0342412)
(-0.590263 -2.34964 -0.0299954)
(-0.693645 -2.93596 -0.0170294)
(-0.743048 -3.42907 -0.00342967)
(-0.672061 -3.55789 0.00423457)
(-0.473362 -3.02806 0.00136753)
(-0.146877 -1.65362 -0.00500976)
(0.0537043 -0.26513 -0.00992342)
(-0.00483809 0.431716 -0.0723443)
(-0.107094 1.02536 -0.118192)
(-0.286913 1.34665 -0.107893)
(-0.438287 1.48839 -0.0718335)
(-0.55655 1.51069 -0.0325127)
(-0.617115 1.38815 -0.0211369)
(-0.615053 1.2134 -0.00207456)
(-0.592954 0.913846 -0.00494165)
(-0.304454 0.732291 0.089807)
(-0.692332 1.01847 0.607895)
(-0.42096 1.53906 1.14324)
(-0.14566 1.76748 0.702356)
(-0.0611911 1.43482 -0.179395)
(-0.380723 1.22191 -1.23742)
(-1.59404 0.710251 -0.8959)
(-1.23379 0.760341 -0.417864)
(-1.90367 1.44611 -0.963806)
(-2.09381 0.712301 -0.159886)
(-1.77199 -0.289364 0.654912)
(-1.31723 -0.168753 0.465194)
(-1.04117 -0.0604982 0.222238)
(-0.774251 0.0992665 0.379488)
(-0.485072 0.0105686 0.326117)
(-0.418227 -0.0955645 0.235987)
(-0.354491 -0.222874 0.192276)
(-0.318381 -0.361446 0.125797)
(-0.28288 -0.495087 0.0854998)
(-0.251251 -0.626117 0.0426508)
(-0.237452 -0.754446 0.0160136)
(-0.234912 -0.892602 -0.00535627)
(-0.255462 -1.0621 -0.0220552)
(-0.298287 -1.30557 -0.0368242)
(-0.374939 -1.66982 -0.042885)
(-0.483737 -2.19365 -0.0383091)
(-0.598749 -2.82617 -0.0240386)
(-0.673047 -3.43183 -0.00644944)
(-0.637309 -3.72539 0.00271396)
(-0.466168 -3.36019 0.00209518)
(-0.164081 -2.01033 -0.00541106)
(0.0599462 -0.312987 -0.0118477)
(0.00352282 0.455369 -0.0676496)
(-0.0725606 1.10188 -0.112909)
(-0.244952 1.45543 -0.109591)
(-0.386847 1.58949 -0.0818166)
(-0.507573 1.59474 -0.0454232)
(-0.569649 1.43406 -0.0513036)
(-0.609476 1.24611 -0.0241724)
(-0.622512 0.865883 -0.0920594)
(-0.525707 0.822907 0.151078)
(-1.04111 1.11176 0.772356)
(-0.378646 1.75947 1.17542)
(0.268628 1.70535 0.78834)
(0.710299 2.26916 0.179928)
(-1.99907 2.90247 -0.259639)
(-2.88929 0.986595 -0.712541)
(-0.813232 0.500731 -1.9383)
(-1.50408 1.22773 -1.86627)
(-1.25306 0.410632 -0.154517)
(-1.08896 -0.382221 0.742113)
(-0.688694 -0.304431 0.442962)
(-0.685781 -0.166552 0.19342)
(-0.599927 -0.0269816 0.334904)
(-0.37668 -0.073466 0.300694)
(-0.34198 -0.136123 0.232095)
(-0.302869 -0.249493 0.189688)
(-0.267374 -0.37053 0.125359)
(-0.227588 -0.490609 0.0858972)
(-0.19373 -0.611653 0.0429491)
(-0.176456 -0.73283 0.0139267)
(-0.168564 -0.86343 -0.0112152)
(-0.182563 -1.0126 -0.0288635)
(-0.215943 -1.22383 -0.0454925)
(-0.283785 -1.54299 -0.0512177)
(-0.385051 -2.03597 -0.0468004)
(-0.499538 -2.69122 -0.0300869)
(-0.58969 -3.40329 -0.00894164)
(-0.59007 -3.86536 0.0032642)
(-0.44875 -3.68339 0.00363632)
(-0.167264 -2.39458 -0.00382474)
(0.0656732 -0.430981 -0.0127976)
(-0.0102475 0.475286 -0.0631209)
(-0.0641511 1.18392 -0.108466)
(-0.210103 1.58376 -0.110789)
(-0.3427 1.71421 -0.0913281)
(-0.469194 1.70801 -0.0564172)
(-0.525736 1.53064 -0.0809054)
(-0.627984 1.34434 -0.0397679)
(-0.655961 0.969192 -0.178869)
(-0.895449 1.01846 0.231628)
(-1.10148 1.33561 0.871086)
(-0.287778 1.74247 1.04317)
(1.41037 1.37167 0.885999)
(1.89141 3.81228 1.15089)
(-1.25631 4.05247 2.54777)
(-0.352647 -0.733043 1.79718)
(1.3728 -0.128142 -2.13591)
(0.202627 1.25376 -2.2432)
(-0.211064 0.569294 -0.211083)
(-0.578934 -0.119999 0.657326)
(-0.296931 -0.249857 0.443564)
(-0.388049 -0.093556 0.207857)
(-0.420283 -0.00221343 0.324805)
(-0.268451 -0.0693828 0.292566)
(-0.251147 -0.141034 0.225129)
(-0.234373 -0.244335 0.177017)
(-0.198183 -0.342786 0.11098)
(-0.162077 -0.437492 0.0700754)
(-0.135688 -0.532305 0.028781)
(-0.129093 -0.632511 0.00336289)
(-0.126176 -0.74828 -0.0181363)
(-0.137043 -0.875555 -0.0353238)
(-0.156736 -1.05275 -0.052134)
(-0.199705 -1.33719 -0.0620193)
(-0.275887 -1.81829 -0.0571086)
(-0.394402 -2.4949 -0.0384085)
(-0.50748 -3.28519 -0.0122533)
(-0.549009 -3.91522 0.00306107)
(-0.458513 -3.9326 0.00534567)
(-0.20549 -2.72789 -0.00314522)
(0.0481718 -0.478891 -0.0137315)
(0.00135959 0.595627 -0.052947)
(-0.0294449 1.37387 -0.100711)
(-0.153831 1.78576 -0.0986171)
(-0.273043 1.95323 -0.0947125)
(-0.413045 1.94627 -0.0604394)
(-0.436252 1.78155 -0.100742)
(-0.589277 1.60419 -0.0435443)
(-0.639995 1.30063 -0.236186)
(-1.16157 1.3207 0.283253)
(-1.06686 1.59614 0.904653)
(-0.0416909 1.43226 1.07535)
(1.84131 0.37819 1.47666)
(3.29695 4.18324 0.632396)
(1.74578 3.53093 3.02834)
(1.78657 -2.74318 4.64407)
(1.40565 -0.0787297 1.17137)
(0.717224 2.19051 -0.843152)
(0.0806049 1.50881 -0.693308)
(-0.500776 0.341177 0.211844)
(-0.146188 -0.191663 0.519378)
(-0.099735 -0.0503487 0.280137)
(-0.258139 0.0245204 0.299099)
(-0.190221 -0.0609366 0.295325)
(-0.172728 -0.138292 0.217797)
(-0.14932 -0.245841 0.17164)
(-0.0985905 -0.31855 0.104304)
(-0.0568865 -0.384089 0.0548842)
(-0.0372196 -0.454054 0.0148741)
(-0.0481049 -0.535212 -0.00610601)
(-0.0585592 -0.632988 -0.0277862)
(-0.0771212 -0.731032 -0.0403829)
(-0.11383 -0.866578 -0.0584754)
(-0.189414 -1.08472 -0.0634213)
(-0.269827 -1.48164 -0.0619071)
(-0.326239 -2.13083 -0.0432953)
(-0.399766 -3.03583 -0.0149439)
(-0.466845 -3.84038 0.00424975)
(-0.424067 -4.1143 0.00824188)
(-0.201227 -3.10506 -0.000349873)
(0.0631769 -0.689019 -0.0107748)
(-0.0161205 0.801249 -0.0335893)
(-0.0233141 1.65107 -0.0808695)
(-0.110051 2.08126 -0.0801468)
(-0.199844 2.2646 -0.0883193)
(-0.341912 2.25815 -0.0576341)
(-0.34863 2.10571 -0.109605)
(-0.549025 1.91471 -0.0561975)
(-0.629676 1.66529 -0.295166)
(-1.36778 1.6188 0.206616)
(-1.08447 1.69312 0.518997)
(-0.0979301 1.17277 1.2304)
(0.833535 -0.759439 2.18127)
(3.98268 3.37317 -0.245121)
(5.34862 2.22408 1.57157)
(3.47455 -4.17053 4.00733)
(1.89253 -0.918486 2.80776)
(0.661719 1.98184 1.79631)
(0.362538 1.77098 -0.0793199)
(0.00810103 0.62439 0.019659)
(0.216983 -0.0451997 0.793715)
(0.231382 0.183099 0.488925)
(-0.0505219 0.325207 0.485459)
(-0.0769503 0.0732986 0.404082)
(-0.0842112 -0.0832423 0.260594)
(-0.059543 -0.267751 0.195398)
(0.0216077 -0.362448 0.11227)
(0.0573679 -0.384271 0.0497984)
(0.057414 -0.436475 0.00694809)
(0.0246537 -0.496091 -0.0130554)
(0.0080166 -0.577851 -0.0370594)
(-0.00721516 -0.659162 -0.0488788)
(-0.0322048 -0.771528 -0.0656773)
(-0.0761185 -0.911956 -0.0662016)
(-0.180052 -1.20822 -0.0672441)
(-0.373788 -1.73466 -0.0518768)
(-0.463357 -2.59522 -0.0185628)
(-0.470241 -3.53078 0.0030867)
(-0.451205 -4.06943 0.00824257)
(-0.27224 -3.35318 -0.00126165)
(0.011429 -1.00025 -0.0137141)
(-0.0379357 0.817533 -0.0322568)
(-0.0355457 1.73856 -0.0749269)
(-0.0768751 2.21475 -0.0786159)
(-0.129312 2.40405 -0.0854343)
(-0.258415 2.42082 -0.0593969)
(-0.258484 2.30518 -0.121543)
(-0.468082 2.08903 -0.0664491)
(-0.489369 1.96028 -0.343259)
(-1.23721 1.75646 0.104616)
(-0.653328 1.51754 0.00329519)
(0.291178 1.02662 0.799444)
(0.497952 -1.46625 1.4438)
(2.82371 0.529122 0.151579)
(3.06973 -0.0393593 3.61131)
(2.88931 -2.82656 2.94694)
(4.49867 0.242667 -0.824458)
(2.1303 2.04902 0.909195)
(1.40642 2.05751 0.397838)
(1.07342 0.980965 -0.0846792)
(1.07578 0.327846 0.829942)
(1.11031 0.653468 0.511786)
(0.560078 0.795027 0.26648)
(0.173606 0.462892 0.494043)
(0.0318388 0.0545015 0.419943)
(0.0188767 -0.372866 0.361683)
(0.161925 -0.490201 0.209107)
(0.216406 -0.419609 0.0747536)
(0.18364 -0.433412 0.0105028)
(0.128939 -0.474869 -0.0184342)
(0.087518 -0.554006 -0.0433694)
(0.0528478 -0.632156 -0.0621372)
(0.032633 -0.729435 -0.0793219)
(-0.00485383 -0.839392 -0.075778)
(-0.0595365 -1.09728 -0.0707179)
(-0.207638 -1.50869 -0.0559066)
(-0.426791 -2.21166 -0.0248549)
(-0.528133 -3.0985 0.00206051)
(-0.510801 -3.77582 0.0122606)
(-0.381459 -3.32434 0.00291545)
(-0.0763782 -1.04781 -0.00973107)
(-0.0269646 0.787856 -0.0255075)
(-0.00746763 1.72886 -0.0667513)
(-0.0281375 2.2293 -0.0728256)
(-0.0396016 2.43231 -0.0801755)
(-0.130998 2.45854 -0.0494575)
(-0.146705 2.40187 -0.121169)
(-0.306823 2.19337 -0.0585828)
(-0.275702 2.17824 -0.335686)
(-0.764435 1.70581 0.0982147)
(-0.258315 1.06811 -0.185477)
(0.760511 1.22742 -0.273405)
(1.21301 -1.29758 -0.706018)
(0.745568 -0.666996 0.597413)
(-0.979019 -0.226838 5.01468)
(1.53261 -1.96196 1.68902)
(5.78379 1.10146 -4.95808)
(4.15632 3.15164 -2.21364)
(3.40525 2.82528 -0.999906)
(2.41767 1.50502 -0.752248)
(2.10865 0.682592 0.488712)
(2.6088 0.997087 -0.258521)
(1.97597 1.13628 -1.13293)
(0.882973 0.866258 -0.149861)
(0.361171 0.324066 0.472991)
(0.300839 -0.444439 0.54267)
(0.452757 -0.597662 0.39137)
(0.464481 -0.433501 0.138112)
(0.322835 -0.396824 0.021032)
(0.210052 -0.437499 -0.0237389)
(0.1449 -0.544303 -0.0535471)
(0.113502 -0.632813 -0.0747077)
(0.106499 -0.716229 -0.0907291)
(0.0649946 -0.794856 -0.0941777)
(0.0110528 -0.990798 -0.0800807)
(-0.121331 -1.38415 -0.0674886)
(-0.304368 -2.0189 -0.0295723)
(-0.448433 -2.7786 0.00037686)
(-0.49367 -3.49073 0.0144378)
(-0.386328 -3.23568 0.00578569)
(-0.120295 -1.1102 -0.00851755)
(-0.0153719 0.770328 -0.0207137)
(0.0171663 1.69408 -0.0617506)
(0.0146251 2.207 -0.0685241)
(0.0250658 2.44677 -0.0823738)
(-0.0185209 2.4534 -0.0415135)
(-0.0227989 2.43508 -0.0983689)
(-0.105613 2.2277 -0.0341737)
(-0.0856942 2.31131 -0.350034)
(-0.205204 1.6619 0.0939439)
(-0.500265 0.811592 -0.229392)
(1.16555 1.74862 -1.28059)
(1.18977 -0.515624 -1.86311)
(-0.879562 -1.41089 -0.547869)
(0.0755652 -0.145282 2.38789)
(1.80828 -2.56307 0.655541)
(5.12102 -1.11627 -4.30384)
(4.97273 2.32375 -2.67413)
(4.65939 2.40861 -2.16935)
(3.59968 1.53643 -1.58145)
(2.79528 0.631162 0.316559)
(4.07542 0.431232 -1.48569)
(4.06591 0.809741 -3.49126)
(2.06188 0.984682 -1.64837)
(1.14859 0.508752 0.131703)
(0.944594 -0.475999 0.716603)
(0.956602 -0.564166 0.563037)
(0.805787 -0.2961 0.19752)
(0.498588 -0.24021 0.0300506)
(0.292056 -0.348659 -0.0382767)
(0.192554 -0.540701 -0.0730919)
(0.16975 -0.6735 -0.0944758)
(0.184627 -0.759134 -0.112374)
(0.162203 -0.811944 -0.111834)
(0.0899901 -0.955453 -0.104083)
(-0.0390915 -1.29855 -0.0767078)
(-0.190358 -1.88722 -0.0375475)
(-0.351754 -2.6287 0.00281672)
(-0.435734 -3.36817 0.0153674)
(-0.382676 -3.28417 0.00758055)
(-0.141936 -1.33761 -0.00912941)
(-0.00682342 0.716765 -0.0148111)
(0.0417252 1.61274 -0.0517828)
(0.0722045 2.14787 -0.0625776)
(0.0882376 2.42502 -0.075894)
(0.0892543 2.44981 -0.0450095)
(0.0719666 2.44326 -0.0931863)
(0.129508 2.24529 -0.027356)
(0.0252059 2.3516 -0.275391)
(0.403552 1.86579 0.0414718)
(-0.540961 0.697671 0.0692562)
(1.5729 1.62093 -1.38464)
(2.79181 0.267557 -1.47638)
(-0.132176 -3.13557 -2.11893)
(0.40967 -1.4722 -0.225216)
(0.921335 -1.21247 2.88594)
(2.9391 -1.55456 -0.893553)
(3.87154 0.995484 -2.79375)
(3.67163 1.06079 -1.97799)
(3.08462 0.73583 -1.22488)
(2.4837 0.479052 0.951075)
(4.02922 -0.821184 -0.349321)
(5.62941 -0.731072 -4.12808)
(3.5437 0.237118 -2.80103)
(1.70726 0.375005 -0.117237)
(1.606 -0.384297 0.889269)
(1.68938 -0.308449 0.442519)
(1.38345 0.00475855 -0.132814)
(0.761771 0.0485549 -0.20564)
(0.412083 -0.193427 -0.151026)
(0.308831 -0.511791 -0.165336)
(0.277571 -0.707185 -0.16144)
(0.284093 -0.803099 -0.154917)
(0.25545 -0.813888 -0.141167)
(0.163122 -0.9166 -0.123175)
(0.0206038 -1.18915 -0.0901292)
(-0.101952 -1.79322 -0.0392396)
(-0.260807 -2.553 -0.000730343)
(-0.367176 -3.38213 0.0151117)
(-0.359431 -3.42389 0.00791487)
(-0.142039 -1.56386 -0.0102342)
(0.00210337 0.654866 -0.00921003)
(0.064971 1.51455 -0.0417801)
(0.120125 2.06993 -0.0536577)
(0.1492 2.36808 -0.0608422)
(0.186215 2.42473 -0.0361808)
(0.17589 2.40224 -0.043234)
(0.310661 2.25132 -0.0108614)
(0.201103 2.19487 -0.0821493)
(0.819361 2.0898 -0.0511362)
(0.0208629 0.584621 0.47748)
(1.56178 0.455225 -1.13172)
(4.44412 0.309183 -0.792564)
(2.58645 -2.71496 -2.42343)
(-0.781647 -1.35022 -2.95414)
(-2.17167 1.30578 3.84401)
(-1.5993 0.014166 2.97329)
(0.936005 -0.130241 -1.85873)
(1.42379 0.204704 -1.64332)
(1.85959 0.0272274 -1.04096)
(1.19491 0.292335 0.263885)
(2.5345 -0.544968 1.28645)
(5.42827 -1.6389 -1.26036)
(5.50828 -0.408827 -3.26717)
(3.44826 -0.212352 -1.95529)
(2.65869 -1.08782 -0.550523)
(2.34788 -0.47177 -0.784693)
(1.51483 0.752909 -1.04337)
(0.602603 0.938194 -0.193226)
(0.297283 0.183908 0.103484)
(0.439447 -0.422017 -0.173954)
(0.525944 -0.709745 -0.248278)
(0.513894 -0.892648 -0.227419)
(0.442744 -0.920191 -0.18695)
(0.299638 -0.973213 -0.142741)
(0.0906885 -1.19303 -0.101146)
(-0.0387837 -1.77124 -0.0483006)
(-0.191046 -2.59611 -0.00167484)
(-0.314873 -3.53414 0.0150453)
(-0.340674 -3.72633 0.0104356)
(-0.141057 -1.89909 -0.00940549)
(0.00835689 0.577894 -0.00456079)
(0.0831754 1.38918 -0.0323473)
(0.159899 1.95892 -0.0442575)
(0.19925 2.27643 -0.0464924)
(0.256086 2.36056 -0.0259591)
(0.25894 2.31575 -0.00572788)
(0.407131 2.19248 0.0207692)
(0.352506 1.9774 0.0696678)
(0.837735 2.03122 0.0203108)
(0.620183 0.784803 0.542754)
(0.735013 -0.168813 -0.26935)
(3.56785 -0.197702 -0.4689)
(3.08038 -1.75291 0.0747364)
(0.484392 -1.36924 -4.37888)
(-2.04503 2.48262 -1.7982)
(-4.28458 1.77379 4.53831)
(-4.11763 0.535124 2.71843)
(-1.23851 0.470818 -0.257418)
(0.267207 -0.179849 -1.38449)
(0.631421 -0.345381 -1.78135)
(1.57935 -0.262515 0.0134444)
(3.69492 -1.34099 0.977454)
(5.61719 -0.747257 -2.06364)
(4.61953 -0.452638 -3.61211)
(2.27487 -0.907218 -1.87505)
(0.652397 1.18818 -0.451133)
(-0.282166 3.67008 0.691223)
(-0.453891 2.97684 1.2848)
(0.128234 0.519192 0.630132)
(0.634925 -0.706179 -0.156578)
(0.66305 -0.906749 -0.302561)
(0.646213 -1.07746 -0.281903)
(0.594637 -1.10257 -0.233946)
(0.435766 -1.13306 -0.167863)
(0.179828 -1.32558 -0.105107)
(0.0217289 -1.87615 -0.0599451)
(-0.142254 -2.7462 -0.00133291)
(-0.253916 -3.81771 0.0128309)
(-0.286938 -4.21368 0.0118376)
(-0.116536 -2.51265 -0.00824803)
(0.0177819 0.502352 0.000741872)
(0.102982 1.25843 -0.0246375)
(0.189371 1.84093 -0.0358241)
(0.239589 2.17903 -0.0350485)
(0.302126 2.29174 -0.0160837)
(0.326662 2.2397 0.0179066)
(0.436983 2.12363 0.05446)
(0.474531 1.85065 0.148677)
(0.687926 1.83689 0.148529)
(1.02507 1.13594 0.504223)
(0.43936 0.132671 0.656491)
(2.18171 -0.217135 -0.495004)
(3.53534 -1.66623 0.601311)
(1.86937 -2.05047 -1.33451)
(1.33107 0.874054 -6.62337)
(-1.18977 4.10511 -3.19111)
(-4.286 3.2574 2.62526)
(-4.39387 1.39338 2.83624)
(-2.10644 0.0867012 1.08639)
(-0.736142 0.0621077 0.651582)
(0.457896 0.00858027 1.74821)
(1.09754 -0.646816 2.63391)
(1.64255 0.0110986 1.72288)
(1.72061 1.22329 0.173485)
(0.0776588 1.57264 0.141244)
(-1.60185 3.10591 1.17089)
(-1.59337 4.08653 1.63057)
(-0.29573 2.09252 1.03145)
(0.841483 -0.337726 -0.0151488)
(1.061 -1.08569 -0.216149)
(0.801299 -1.01367 -0.228213)
(0.771509 -1.16964 -0.296971)
(0.693882 -1.08973 -0.275324)
(0.503873 -1.07802 -0.186487)
(0.21875 -1.26675 -0.111292)
(0.0432852 -1.8442 -0.0597026)
(-0.135121 -2.74434 0.000960734)
(-0.251331 -3.98224 0.0163123)
(-0.310393 -4.62082 0.0148245)
(-0.141642 -3.12849 -0.00646361)
(0.0216638 0.431683 0.0013375)
(0.120364 1.11132 -0.0214755)
(0.214679 1.69186 -0.0298726)
(0.265961 2.05076 -0.0281539)
(0.328272 2.18758 -0.0107473)
(0.364838 2.14736 0.0250167)
(0.44782 2.02196 0.0718958)
(0.511499 1.76694 0.158828)
(0.625971 1.5964 0.236151)
(0.969004 1.22947 0.412155)
(0.846758 0.336302 0.83884)
(1.25971 -0.149255 0.0115138)
(3.16957 -1.1357 -1.49834)
(2.02063 -2.27686 -0.425934)
(0.13666 -0.917219 -0.865945)
(1.89126 2.69656 -5.48499)
(0.965657 5.20426 -5.03211)
(-1.23481 3.59172 -0.460911)
(-2.19493 0.684222 2.77128)
(-2.39789 -0.0851826 4.94926)
(-1.78392 -0.392724 5.62021)
(-1.40056 -0.897241 4.12972)
(-1.03663 -0.570114 3.1623)
(-0.360512 0.940104 2.11409)
(-0.876564 1.95503 0.355645)
(-1.30878 1.93298 -0.528943)
(-0.16957 1.12161 -0.837158)
(1.31866 -0.360637 -0.850279)
(1.48841 -0.85686 -0.384467)
(1.09589 -0.638826 0.0379624)
(0.9455 -0.832594 -0.0791252)
(0.887922 -1.07492 -0.283507)
(0.674148 -0.845139 -0.264924)
(0.485495 -0.855612 -0.177191)
(0.219656 -1.10722 -0.105443)
(0.0499121 -1.66234 -0.0553242)
(-0.1244 -2.57155 0.00920064)
(-0.25187 -3.9295 0.0224986)
(-0.335541 -4.80427 0.0204543)
(-0.171519 -3.57413 -0.00268023)
(0.0171463 0.377197 0.00287143)
(0.1192 0.987606 -0.0183031)
(0.230128 1.54665 -0.0281047)
(0.282944 1.93478 -0.0248607)
(0.340721 2.10026 -0.0111772)
(0.382888 2.08459 0.0212331)
(0.446818 1.96329 0.064984)
(0.497994 1.72661 0.142255)
(0.567997 1.49977 0.216882)
(0.704306 1.18829 0.343295)
(0.828124 0.618926 0.545261)
(0.59934 0.108797 0.588455)
(1.30674 -0.102744 -0.836648)
(1.34068 -0.933178 -1.09889)
(-0.956076 -2.0459 1.50692)
(-1.14548 -0.692517 1.15093)
(2.10212 2.5466 -3.2962)
(4.23768 3.68835 -5.43945)
(4.24982 2.04804 -3.21469)
(2.33358 -0.515701 0.608122)
(0.0773914 -1.97392 1.84711)
(-1.06516 -2.27157 1.13272)
(-1.39816 -1.87066 0.849846)
(-1.06896 -0.633306 -0.120845)
(-0.897468 0.348041 -1.9052)
(-0.274255 -0.382438 -2.92823)
(0.852876 -1.12461 -2.34569)
(1.19265 -0.613331 -0.8272)
(0.798517 -0.00403079 0.0511295)
(0.750889 -0.151693 0.148111)
(0.850946 -0.71238 -0.091671)
(0.745759 -0.744941 -0.237174)
(0.491046 -0.503512 -0.187719)
(0.369295 -0.66162 -0.129017)
(0.181287 -0.952342 -0.0652061)
(0.0549571 -1.47247 -0.0487379)
(-0.132144 -2.34771 0.0261293)
(-0.249078 -3.78262 0.0310506)
(-0.364435 -4.86635 0.0269163)
(-0.197305 -3.95115 0.00319889)
(0.0162955 0.312633 0.00279519)
(0.109875 0.853931 -0.0166633)
(0.234891 1.37584 -0.0277236)
(0.298101 1.77839 -0.0245811)
(0.344122 1.97454 -0.0144575)
(0.388919 1.98979 0.0106571)
(0.438511 1.88704 0.0489695)
(0.482403 1.67997 0.107488)
(0.52308 1.45802 0.169558)
(0.592646 1.19026 0.242704)
(0.615811 0.871484 0.333418)
(0.482772 0.37864 0.436586)
(0.345587 0.261545 0.3922)
(0.55066 0.768851 -0.233536)
(-0.162619 0.251625 -0.432324)
(-2.06239 -1.45694 1.42144)
(-1.48316 -0.925908 2.06463)
(2.19312 0.57347 -0.899777)
(5.66079 0.650522 -4.12583)
(6.06664 -0.0857912 -4.25323)
(3.5221 -0.790528 -2.97388)
(1.0301 -1.07494 -1.69641)
(0.0974841 -0.799915 -0.0105299)
(0.0643922 -0.508968 -0.125765)
(0.629056 -0.979726 -1.21537)
(1.53287 -1.64471 -1.7547)
(1.57879 -1.57408 -1.68251)
(1.09215 -0.617814 -0.646864)
(0.765699 -0.117928 -0.0742104)
(0.776748 -0.461518 -0.0520738)
(0.660936 -0.57981 -0.113275)
(0.472657 -0.382378 -0.103792)
(0.29587 -0.326708 -0.0854273)
(0.255089 -0.572154 -0.0714597)
(0.130753 -0.814294 -0.0436428)
(0.0646686 -1.32711 -0.0154932)
(-0.123785 -2.12501 0.0394362)
(-0.233765 -3.60472 0.0442238)
(-0.383633 -4.85949 0.0333822)
(-0.223317 -4.29063 0.00975588)
(0.01074 0.267489 0.00234536)
(0.0884967 0.754733 -0.0166819)
(0.217262 1.24323 -0.027467)
(0.300568 1.64733 -0.0275694)
(0.346547 1.87921 -0.0196988)
(0.390104 1.92677 -0.00105366)
(0.437318 1.85056 0.0270106)
(0.477242 1.67154 0.0690327)
(0.5125 1.46232 0.110932)
(0.551993 1.22696 0.153024)
(0.571862 0.97807 0.18689)
(0.544011 0.707779 0.161184)
(0.387806 0.53957 0.125365)
(0.288906 1.12474 0.17181)
(0.55525 1.73802 -0.297509)
(0.459699 0.654252 -0.741217)
(-0.175534 -1.69268 0.966632)
(0.717381 -2.55842 2.44678)
(3.47244 -1.43628 -0.446399)
(4.30657 0.279933 -3.27419)
(2.37707 1.17445 -1.55939)
(0.775714 0.669733 0.460552)
(0.564495 -0.0434539 1.61837)
(1.41057 -0.738547 1.48919)
(2.55722 -1.77684 0.415809)
(2.76339 -1.61453 -0.478742)
(1.91564 -0.849762 -0.896524)
(1.29279 -0.423847 -0.4758)
(0.97287 -0.310403 -0.155825)
(0.755815 -0.377045 -0.054378)
(0.442529 -0.258913 -0.00909002)
(0.309332 -0.218333 -0.00202839)
(0.211132 -0.28637 -0.0204377)
(0.207521 -0.506308 -0.0321185)
(0.0904182 -0.686205 -0.016257)
(0.0686186 -1.17034 0.00699504)
(-0.111575 -1.90655 0.0504039)
(-0.211879 -3.40338 0.053551)
(-0.406582 -4.822 0.0395614)
(-0.251574 -4.63305 0.0158173)
(0.0151337 0.212098 0.000920087)
(0.074291 0.637163 -0.0176097)
(0.1855 1.08727 -0.0289321)
(0.291285 1.4644 -0.0307166)
(0.345375 1.7194 -0.0257153)
(0.383337 1.79987 -0.0118512)
(0.428244 1.75535 0.0078309)
(0.470694 1.61015 0.0366152)
(0.503991 1.42605 0.0684706)
(0.53673 1.21279 0.099002)
(0.558381 1.0031 0.121863)
(0.575162 0.800044 0.115068)
(0.525348 0.671103 0.0501296)
(0.49364 0.796337 -0.0459499)
(0.874688 0.986264 -0.233536)
(1.52282 0.696427 -0.565488)
(2.01431 -0.590202 -0.214244)
(3.11506 -2.27434 1.04707)
(3.86747 -1.80788 0.462136)
(3.45914 -0.0355196 -1.68498)
(2.33932 0.930644 -1.24843)
(1.53802 0.687748 0.231701)
(1.48316 0.347508 0.924384)
(1.83116 -0.0197548 1.25324)
(2.1959 -0.693174 0.52909)
(1.78708 -0.510753 -0.198144)
(1.20581 -0.0426614 -0.153578)
(0.909348 -0.00764308 -0.00440394)
(0.574772 -0.0386065 0.0302125)
(0.417548 -0.0853154 0.0541563)
(0.275072 -0.110682 0.0507119)
(0.289854 -0.210518 0.016343)
(0.208437 -0.265822 -0.00556659)
(0.208877 -0.451424 -0.0146159)
(0.082857 -0.587324 -0.00234972)
(0.0852815 -1.03704 0.0250287)
(-0.0970354 -1.71008 0.0623687)
(-0.185733 -3.22324 0.0609133)
(-0.441073 -4.79171 0.0447924)
(-0.285973 -5.0436 0.0214932)
(0.0063011 0.184871 -0.000351339)
(0.0392425 0.580118 -0.0209008)
(0.122337 0.996623 -0.0306157)
(0.244106 1.36869 -0.0351707)
(0.336362 1.60754 -0.0327701)
(0.385416 1.72106 -0.0232122)
(0.429055 1.69803 -0.00962237)
(0.478198 1.57349 0.0108088)
(0.518157 1.41151 0.0332964)
(0.550287 1.21714 0.0573062)
(0.577407 1.02676 0.0749746)
(0.601305 0.84507 0.0790326)
(0.612516 0.683226 0.0605286)
(0.633732 0.610648 -0.00332008)
(0.758864 0.548641 -0.135185)
(1.03206 0.228287 -0.348059)
(1.26249 -0.246303 -0.194777)
(1.50414 -0.481151 0.421998)
(1.61078 0.0316655 0.491686)
(1.83218 0.794493 -0.421102)
(2.11378 1.14812 -1.08392)
(2.07767 1.07053 -0.91986)
(1.96854 0.945709 -0.401522)
(1.93472 0.851195 0.0337162)
(1.68754 0.50751 -0.0475439)
(1.31409 0.245001 -0.13268)
(1.09311 0.133161 0.0458987)
(0.866056 0.0133031 0.147251)
(0.564232 -0.0455035 0.12668)
(0.495261 -0.093428 0.0822007)
(0.364993 -0.0802496 0.0462636)
(0.373341 -0.159409 0.0170254)
(0.249881 -0.173152 0.0025814)
(0.250575 -0.341573 -0.00594419)
(0.0908743 -0.438537 0.00773559)
(0.122159 -0.864811 0.0291091)
(-0.089096 -1.51077 0.0734565)
(-0.160349 -2.99349 0.0642701)
(-0.492527 -4.75526 0.0470036)
(-0.325765 -5.54775 0.0256504)
(0.0200213 0.156541 -0.00318484)
(0.0323028 0.486731 -0.0228559)
(0.0662444 0.888565 -0.0358351)
(0.168813 1.20671 -0.0376485)
(0.28216 1.42232 -0.0395085)
(0.368752 1.53619 -0.0327324)
(0.404519 1.54912 -0.0233273)
(0.463204 1.44302 -0.00770447)
(0.51987 1.31548 0.00901453)
(0.562198 1.15136 0.0264226)
(0.601533 0.991515 0.0421278)
(0.633672 0.834408 0.0506641)
(0.660342 0.692097 0.0507036)
(0.673713 0.571824 0.0355366)
(0.707052 0.452393 0.00312699)
(0.720608 0.300281 -0.0477135)
(0.660204 0.130407 -0.0927794)
(0.531249 0.0475594 -0.0353781)
(0.465995 0.256362 0.0880359)
(0.633517 0.643075 0.139251)
(1.06078 0.882324 0.0754526)
(1.36995 0.820207 0.0334804)
(1.39678 0.551432 0.0208475)
(1.47028 0.274239 -0.0308693)
(1.49611 0.0363615 -0.0838944)
(1.46479 -0.0541052 -0.0389104)
(1.32992 -0.0300462 0.0775072)
(1.07792 -0.040128 0.111378)
(0.731605 -0.0107601 0.0905528)
(0.644779 -0.0290821 0.0541835)
(0.467512 -0.0107026 0.0320884)
(0.477873 -0.0680033 0.0132641)
(0.335828 -0.0795397 0.0050597)
(0.338905 -0.232668 -0.000664227)
(0.157371 -0.315493 0.0162794)
(0.167128 -0.706114 0.0344779)
(-0.031119 -1.3111 0.07264)
(-0.090746 -2.77102 0.0680528)
(-0.559815 -4.71718 0.0497118)
(-0.328774 -6.17027 0.0305209)
(-0.0199117 0.129987 -0.00551801)
(-0.0300798 0.511285 -0.027895)
(-0.0252974 0.851176 -0.0384924)
(0.0292837 1.19798 -0.0434564)
(0.179539 1.36728 -0.0450256)
(0.335658 1.42325 -0.0411213)
(0.3986 1.44852 -0.0357858)
(0.458774 1.34416 -0.0240611)
(0.543822 1.23385 -0.0118879)
(0.603644 1.09314 0.00164354)
(0.661268 0.956544 0.0129637)
(0.705341 0.820377 0.0220772)
(0.744906 0.696868 0.0275208)
(0.770869 0.585283 0.0271768)
(0.796608 0.485631 0.0200639)
(0.812136 0.375491 0.00903787)
(0.804001 0.2893 0.0139934)
(0.71503 0.26036 0.0402499)
(0.636409 0.343461 0.0605479)
(0.71046 0.430549 0.0565108)
(1.08064 0.440429 0.0163704)
(1.47429 0.397917 0.00228737)
(1.57222 0.315086 0.00385933)
(1.61194 0.253786 -0.00445934)
(1.55762 0.189728 -0.0322902)
(1.51774 0.101446 -0.0232409)
(1.39034 0.0993561 0.030199)
(1.16822 0.0496443 0.0569303)
(0.838353 0.0766939 0.0374193)
(0.786412 0.0403776 0.0257236)
(0.628326 0.0712386 0.011056)
(0.648245 0.015944 0.00095493)
(0.463311 0.0170722 -0.00339841)
(0.488866 -0.100467 -0.00126608)
(0.276581 -0.165436 0.00867131)
(0.307514 -0.503853 0.0330548)
(0.0726605 -0.999858 0.0560993)
(0.075084 -2.47123 0.0733619)
(-0.558975 -4.57875 0.0464408)
(-0.255118 -6.76971 0.0342035)
(0.054223 0.262131 -0.00854423)
(-0.000380127 0.447284 -0.0301945)
(-0.100495 0.732404 -0.0409478)
(-0.0472983 0.952208 -0.0445343)
(-0.00270355 1.17435 -0.047971)
(0.193973 1.17717 -0.0452065)
(0.332271 1.20764 -0.043765)
(0.411364 1.12601 -0.0365953)
(0.532295 1.04304 -0.0289883)
(0.621271 0.934981 -0.0200681)
(0.70706 0.829679 -0.0117883)
(0.769934 0.72394 -0.00472376)
(0.824619 0.629762 0.00159217)
(0.8595 0.543188 0.00469244)
(0.887754 0.466407 0.00452121)
(0.90309 0.385303 0.00161651)
(0.894327 0.309924 0.000210746)
(0.873899 0.249503 0.00250401)
(0.893078 0.263775 0.00849224)
(0.992519 0.276117 0.00988514)
(1.31197 0.292222 0.00118847)
(1.62036 0.26301 -0.00173257)
(1.65939 0.185639 -0.00621716)
(1.72648 0.10065 -0.0173919)
(1.69916 0.0833075 -0.0252178)
(1.71749 0.0324834 -0.0181095)
(1.61198 0.0913701 -8.81665e-05)
(1.41937 0.0697606 0.0128486)
(1.08254 0.139777 0.00662719)
(1.04921 0.116574 -0.000540098)
(0.87431 0.171161 -0.00760435)
(0.931005 0.0940247 -0.011128)
(0.749347 0.104806 -0.0114057)
(0.831991 -0.00807885 -0.00825917)
(0.573452 -0.0743559 0.00168437)
(0.691012 -0.359542 0.0175287)
(0.343765 -0.781871 0.0448613)
(0.467152 -2.08164 0.0509519)
(-0.255639 -4.3866 0.0529181)
(0.0134409 -7.29988 0.0371423)
(-0.230001 0.0646483 -0.0158085)
(-0.31483 0.681246 -0.040776)
(-0.305451 0.853366 -0.0471524)
(-0.272246 1.00162 -0.0484769)
(-0.12842 1.03078 -0.0521572)
(0.0513202 1.05262 -0.0494293)
(0.23084 0.999403 -0.0521626)
(0.353363 0.939765 -0.0478457)
(0.507841 0.864713 -0.0450124)
(0.626485 0.787937 -0.0401359)
(0.744542 0.709182 -0.0361014)
(0.837857 0.631233 -0.0307908)
(0.920165 0.560464 -0.0266234)
(0.980716 0.495051 -0.0230982)
(1.02719 0.439348 -0.0205831)
(1.05924 0.378439 -0.0180985)
(1.08569 0.322768 -0.0147804)
(1.10869 0.286365 -0.0100375)
(1.14568 0.287016 -0.00876041)
(1.26831 0.24779 -0.0129109)
(1.61894 0.239512 -0.0258816)
(1.97957 0.202662 -0.0312131)
(2.04507 0.161988 -0.0347412)
(2.16016 0.117013 -0.0346731)
(2.13821 0.111552 -0.0355172)
(2.18432 0.0628104 -0.0312829)
(2.07192 0.128131 -0.0227153)
(1.9299 0.0886313 -0.0163059)
(1.582 0.163841 -0.0189599)
(1.62234 0.148311 -0.0223688)
(1.44613 0.218138 -0.0271438)
(1.57765 0.155031 -0.0280082)
(1.36569 0.165796 -0.0264717)
(1.52873 0.0438354 -0.0216367)
(1.20964 -0.0029182 -0.015624)
(1.40089 -0.221136 -0.00128965)
(0.954882 -0.485509 0.0179525)
(1.15535 -1.4633 0.0366307)
(0.330573 -3.90046 0.0412802)
(0.485915 -7.21279 0.0340022)
(-0.731373 0.800706 -0.0319826)
(-0.608639 0.39587 -0.0503407)
(-0.755773 0.573068 -0.0470988)
(-0.464621 0.59009 -0.0458694)
(-0.315294 0.608313 -0.0483258)
(-0.00169304 0.649956 -0.0486365)
(0.222966 0.626125 -0.0518684)
(0.44807 0.600349 -0.0513551)
(0.674451 0.560122 -0.0514717)
(0.880185 0.518748 -0.050092)
(1.07855 0.472173 -0.0486431)
(1.25549 0.425814 -0.0469277)
(1.41271 0.384132 -0.0450518)
(1.54499 0.349323 -0.0428499)
(1.64843 0.324163 -0.040792)
(1.74036 0.289336 -0.0387073)
(1.82966 0.248127 -0.0379294)
(1.95905 0.221319 -0.0392103)
(2.11024 0.216782 -0.041912)
(2.37519 0.152075 -0.0442797)
(2.79242 0.139578 -0.048518)
(3.24911 0.0979025 -0.0500001)
(3.35544 0.0516351 -0.0501711)
(3.52173 0.00527752 -0.0503697)
(3.46892 0.00831611 -0.0484805)
(3.57423 -0.0151468 -0.0427172)
(3.41984 0.0582051 -0.038329)
(3.36532 0.0508946 -0.0341738)
(2.97135 0.125998 -0.0363859)
(3.12772 0.139553 -0.0375476)
(2.90673 0.199103 -0.0387364)
(3.20835 0.14761 -0.0384217)
(2.91717 0.122802 -0.0349395)
(3.24992 0.0375584 -0.0313912)
(2.77852 -0.0232832 -0.0236642)
(3.13138 -0.210998 -0.0173809)
(2.4698 -0.491904 -0.00603417)
(2.83889 -1.13755 0.00578556)
(1.86126 -3.16812 0.0203609)
(1.32087 -6.11061 0.0217468)
(1.16472 1.49204 -0.0106333)
(1.73167 0.740503 -0.0175211)
(2.47118 0.584148 -0.0175721)
(2.88277 0.359803 -0.014689)
(3.16321 0.28164 -0.014179)
(3.40566 0.227388 -0.0118655)
(3.62458 0.207396 -0.0130036)
(3.83765 0.185627 -0.0126063)
(4.06425 0.17142 -0.0135623)
(4.29672 0.157453 -0.0140536)
(4.51785 0.14302 -0.0152408)
(4.7309 0.12803 -0.0158212)
(4.91016 0.11431 -0.0163144)
(5.06977 0.102468 -0.0159488)
(5.18167 0.0963609 -0.0154686)
(5.29649 0.0903904 -0.0150286)
(5.4127 0.0729824 -0.0168411)
(5.61015 0.0571924 -0.0197826)
(5.83779 0.0758335 -0.0255043)
(6.27231 0.0627833 -0.0312588)
(6.6959 0.0440383 -0.0377112)
(7.20235 0.0242215 -0.0416303)
(7.27971 0.00778657 -0.043406)
(7.37107 -0.0284201 -0.03904)
(7.19784 -0.0263705 -0.0346907)
(7.21118 -0.045502 -0.0283758)
(6.8598 -0.0301924 -0.0244851)
(6.83366 -0.0190147 -0.0205053)
(6.34815 0.0136958 -0.0208468)
(6.57863 0.0285453 -0.0215362)
(6.32351 0.0632267 -0.0230605)
(6.75277 0.0663538 -0.0231381)
(6.44161 0.0464017 -0.0212942)
(6.83495 0.0166187 -0.0182333)
(6.29867 -0.0165808 -0.0154197)
(6.52512 -0.102974 -0.011292)
(5.64542 -0.263141 -0.00696868)
(5.6799 -0.58613 -0.00201311)
(4.25593 -1.14836 0.00505935)
(2.77698 -2.5379 0.0101462)
(0.000419466 -0.00320845 -0.00199422)
(0.0196464 -0.00691642 -0.00464485)
(0.0459805 -0.0072175 -0.00585875)
(0.0643697 -0.00665492 -0.00778376)
(0.0743313 -0.00596489 -0.00865224)
(0.0720697 -0.00593617 -0.0120085)
(0.0527013 0.00277109 -0.00833152)
(0.026727 0.00833353 -0.0099238)
(-0.000491234 0.0228919 -0.00804225)
(-0.0480619 0.0230129 -0.0100672)
(-0.105686 0.0144146 -0.0100747)
(-0.171044 0.00539485 -0.010326)
(-0.247207 -0.00259617 -0.0103534)
(-0.334763 -0.00114674 -0.0117964)
(-0.422194 0.0110584 -0.014514)
(-0.520477 0.0138229 -0.0186955)
(-0.637474 -0.00103894 -0.0290309)
(-0.790579 -0.00109635 -0.0438152)
(-0.878615 -0.00830618 -0.0577052)
(-1.06693 -0.00346106 -0.0696516)
(-1.01757 0.0317636 -0.0808528)
(-0.820262 0.0259522 -0.0840089)
(-0.79763 0.0240794 -0.0834301)
(-0.777493 0.0165491 -0.0853588)
(-0.768627 -0.0151629 -0.0946689)
(-0.717433 -0.0398547 -0.103682)
(-0.643004 -0.0592918 -0.113092)
(-0.514602 -0.076594 -0.123207)
(-0.361196 -0.0967616 -0.130735)
(-0.169351 -0.10168 -0.13717)
(0.00949665 -0.0978558 -0.132506)
(0.24998 -0.020765 -0.125112)
(0.477767 -0.0447011 -0.111588)
(0.557006 0.0147216 -0.0883112)
(0.526704 0.0439388 -0.0623621)
(0.410887 0.047458 -0.0398504)
(0.266519 0.0317679 -0.0239352)
(0.142466 0.0166952 -0.0130401)
(0.0494308 0.00286414 -0.00708486)
(0.000691839 -0.00709518 -0.00230741)
(0.00614984 -0.026043 -0.00572216)
(0.0399564 -0.0449009 -0.0129056)
(0.0780768 -0.0470393 -0.0163097)
(0.101165 -0.0378089 -0.0207945)
(0.107546 -0.0217866 -0.0225513)
(0.0961589 -0.0187027 -0.0270304)
(0.0487259 7.62184e-05 -0.0241589)
(-0.0204911 0.0333722 -0.021189)
(-0.125584 0.0545055 -0.025325)
(-0.29481 0.0633794 -0.0270463)
(-0.478649 0.0895486 -0.0281885)
(-0.679245 0.118555 -0.0294374)
(-0.892962 0.149194 -0.0313224)
(-1.11688 0.17968 -0.0350961)
(-1.3529 0.18776 -0.0400628)
(-1.59637 0.156205 -0.0540253)
(-1.80934 0.110813 -0.0663265)
(-2.01914 0.0790372 -0.082036)
(-2.16234 0.0509485 -0.0954311)
(-2.30458 0.0333517 -0.10493)
(-2.12595 0.0477985 -0.111844)
(-1.84048 0.0018782 -0.101464)
(-1.69847 -0.0384687 -0.0932357)
(-1.60574 -0.136067 -0.0964514)
(-1.52401 -0.229367 -0.0989054)
(-1.39199 -0.310822 -0.101194)
(-1.25151 -0.374917 -0.10493)
(-1.06933 -0.419941 -0.105861)
(-0.860685 -0.447531 -0.109578)
(-0.611728 -0.461178 -0.110493)
(-0.342353 -0.433526 -0.113538)
(-0.0739191 -0.337265 -0.107027)
(0.234693 -0.236863 -0.10274)
(0.508339 -0.105206 -0.0924058)
(0.600508 0.0283215 -0.0838349)
(0.569274 0.115629 -0.0610446)
(0.446642 0.141123 -0.0450448)
(0.285943 0.123087 -0.030371)
(0.12454 0.0852874 -0.0180679)
(0.0198903 0.0325319 -0.00566488)
(0.00886624 -0.0609796 -0.0116929)
(0.0435613 -0.100072 -0.0221713)
(0.0765947 -0.0948427 -0.0274887)
(0.0912293 -0.0713998 -0.0324824)
(0.0641933 -0.0366511 -0.031098)
(0.00703702 0.0105583 -0.0436301)
(-0.0775394 0.0629713 -0.0377612)
(-0.237612 0.135862 -0.0380188)
(-0.466715 0.207173 -0.0362455)
(-0.722609 0.275791 -0.0354726)
(-0.999375 0.349676 -0.0333329)
(-1.29351 0.403346 -0.0321385)
(-1.5743 0.435656 -0.0330306)
(-1.8505 0.414983 -0.035227)
(-2.10563 0.353074 -0.0429684)
(-2.31946 0.283837 -0.0490769)
(-2.47872 0.220937 -0.0518889)
(-2.63216 0.159424 -0.0545498)
(-2.72686 0.114686 -0.0539512)
(-2.78594 0.0536309 -0.0495541)
(-2.52786 0.0289445 -0.0463178)
(-2.20892 -0.0567702 -0.0372609)
(-2.06367 -0.172545 -0.0249057)
(-1.94033 -0.321155 -0.0269775)
(-1.84687 -0.45404 -0.0243709)
(-1.71039 -0.588516 -0.0248507)
(-1.57254 -0.702559 -0.0257235)
(-1.40477 -0.787863 -0.0271947)
(-1.24193 -0.831509 -0.0271676)
(-1.03468 -0.827308 -0.0283412)
(-0.808773 -0.785033 -0.0321667)
(-0.550643 -0.696324 -0.0349777)
(-0.259057 -0.512512 -0.0480302)
(0.0369497 -0.319428 -0.0472614)
(0.272583 -0.0870152 -0.0518182)
(0.378997 0.113786 -0.0481308)
(0.355665 0.203476 -0.0446943)
(0.253122 0.222818 -0.0342241)
(0.117077 0.176563 -0.0229817)
(0.0177024 0.083903 -0.00709995)
(0.00827773 -0.0966849 -0.0177217)
(0.0387272 -0.146854 -0.0322268)
(0.0461342 -0.136359 -0.0361047)
(0.015814 -0.0703137 -0.0497312)
(-0.0409173 0.00591254 -0.0438915)
(-0.148749 0.121542 -0.0488262)
(-0.324667 0.237942 -0.0456765)
(-0.569045 0.377501 -0.0394547)
(-0.883608 0.508342 -0.0321569)
(-1.22087 0.603837 -0.0260824)
(-1.52751 0.65116 -0.0217826)
(-1.80891 0.65735 -0.0182131)
(-2.0751 0.60402 -0.0156268)
(-2.31245 0.514713 -0.0173842)
(-2.48947 0.423816 -0.0133138)
(-2.61923 0.344146 -0.0111983)
(-2.70658 0.271243 -0.00625616)
(-2.78722 0.20389 -0.00126976)
(-2.81645 0.151839 0.00531349)
(-2.79465 0.0686966 0.0130446)
(-2.51859 0.0273682 0.0184009)
(-2.22941 -0.0873143 0.0220011)
(-2.09625 -0.249294 0.0216291)
(-2.00733 -0.40294 0.0215724)
(-1.94367 -0.567867 0.0207343)
(-1.84478 -0.74636 0.0188395)
(-1.73998 -0.913018 0.015359)
(-1.60023 -1.05826 0.0122986)
(-1.45494 -1.15426 0.00761275)
(-1.30338 -1.17743 0.006149)
(-1.14517 -1.11966 0.00219092)
(-0.956931 -0.989009 -0.000492886)
(-0.736788 -0.814007 -0.013039)
(-0.446452 -0.570561 -0.0223534)
(-0.131471 -0.264732 -0.0353879)
(0.0769118 0.0158407 -0.0410116)
(0.149593 0.194158 -0.0388831)
(0.13792 0.263388 -0.033579)
(0.0631401 0.230363 -0.0230946)
(0.00826846 0.114522 -0.00786178)
(0.00835435 -0.130458 -0.0244226)
(0.00849383 -0.180004 -0.0446622)
(-0.014235 -0.130467 -0.0511956)
(-0.0821105 -0.00946694 -0.0557558)
(-0.206682 0.146946 -0.055934)
(-0.391098 0.322653 -0.053576)
(-0.630243 0.509648 -0.0432197)
(-0.917984 0.674839 -0.0291306)
(-1.2556 0.800528 -0.0170638)
(-1.57433 0.854205 -0.00780248)
(-1.8604 0.837804 -0.000757952)
(-2.12392 0.764502 0.00400822)
(-2.3367 0.666711 0.00554434)
(-2.48697 0.571675 0.00977658)
(-2.58362 0.485526 0.0134691)
(-2.63711 0.395247 0.0185771)
(-2.65305 0.318815 0.0252721)
(-2.66766 0.241086 0.0350974)
(-2.64824 0.190328 0.0431299)
(-2.58023 0.100476 0.0491711)
(-2.3101 0.05202 0.0481583)
(-2.0676 -0.0765386 0.0416878)
(-1.97662 -0.249064 0.0361734)
(-1.92237 -0.431155 0.0334112)
(-1.89173 -0.621194 0.0310385)
(-1.84055 -0.837008 0.0273471)
(-1.78293 -1.05315 0.0239205)
(-1.69018 -1.26221 0.0202682)
(-1.58227 -1.43043 0.0178099)
(-1.44182 -1.53373 0.0155668)
(-1.31102 -1.52721 0.0116998)
(-1.20066 -1.4158 0.0101826)
(-1.08934 -1.16769 0.00105476)
(-0.843819 -0.871565 -0.00997846)
(-0.489633 -0.518778 -0.0276127)
(-0.185189 -0.151132 -0.0354072)
(-0.0215996 0.115215 -0.0433572)
(0.021925 0.246613 -0.0329421)
(0.0105351 0.241723 -0.0258313)
(-0.00300698 0.118295 -0.0102421)
(0.00190071 -0.147576 -0.0345183)
(-0.0201388 -0.169356 -0.0566313)
(-0.0967122 -0.0555152 -0.0653685)
(-0.222963 0.138922 -0.0661702)
(-0.405299 0.362076 -0.0605284)
(-0.627836 0.599807 -0.0474506)
(-0.880732 0.794757 -0.0289541)
(-1.16112 0.955514 -0.0104482)
(-1.49076 0.99028 0.00415292)
(-1.82256 0.945079 0.0133955)
(-2.08088 0.869267 0.0166528)
(-2.26121 0.784057 0.0226986)
(-2.3813 0.703965 0.0288047)
(-2.46128 0.613637 0.032186)
(-2.49281 0.508772 0.0342887)
(-2.48993 0.40079 0.0355888)
(-2.45839 0.316266 0.035917)
(-2.41588 0.259189 0.0391391)
(-2.34327 0.222738 0.0467206)
(-2.23364 0.137405 0.0543336)
(-1.97548 0.0860733 0.0522052)
(-1.78016 -0.0462301 0.0447319)
(-1.72039 -0.219811 0.0376256)
(-1.69789 -0.403911 0.0354542)
(-1.69769 -0.602768 0.0323839)
(-1.69167 -0.832272 0.0291599)
(-1.68666 -1.07837 0.0254326)
(-1.6589 -1.33537 0.0222306)
(-1.61414 -1.57752 0.0189162)
(-1.53037 -1.76582 0.0181642)
(-1.42339 -1.86628 0.0163956)
(-1.29096 -1.83165 0.014942)
(-1.25541 -1.66157 0.0103094)
(-1.15479 -1.2587 0.00188245)
(-0.80689 -0.848596 -0.0134959)
(-0.421986 -0.390424 -0.0305552)
(-0.161356 -0.0223355 -0.0333298)
(-0.045744 0.187971 -0.0358452)
(-0.0176471 0.21807 -0.0248217)
(-0.00530137 0.106552 -0.0113129)
(-0.00245615 -0.139384 -0.0429255)
(-0.0628063 -0.0943294 -0.0685751)
(-0.181158 0.0830108 -0.0743844)
(-0.358264 0.346458 -0.0689956)
(-0.567648 0.617893 -0.0546375)
(-0.796215 0.855102 -0.0326263)
(-1.03245 1.0308 -0.0103878)
(-1.35915 1.06087 0.0104938)
(-1.71355 0.978862 0.0155611)
(-1.9504 0.917552 0.0249346)
(-2.10573 0.87901 0.0339949)
(-2.21725 0.831277 0.0404909)
(-2.2933 0.755828 0.0417063)
(-2.33302 0.650469 0.0396226)
(-2.33176 0.532842 0.0317114)
(-2.27481 0.41379 0.0282797)
(-2.16235 0.321451 0.0312076)
(-2.04722 0.236603 0.0502039)
(-1.95735 0.211976 0.0562473)
(-1.84079 0.168567 0.0614826)
(-1.60359 0.142252 0.0535739)
(-1.45341 -0.0159838 0.044114)
(-1.42463 -0.173718 0.0367643)
(-1.41831 -0.35698 0.0333902)
(-1.4368 -0.553379 0.0298288)
(-1.458 -0.782735 0.0258584)
(-1.49038 -1.03835 0.0216849)
(-1.51568 -1.32075 0.0175215)
(-1.53564 -1.61101 0.0142119)
(-1.5272 -1.8796 0.0123174)
(-1.48138 -2.08047 0.0119065)
(-1.38818 -2.15167 0.0116805)
(-1.27885 -2.09204 0.0113289)
(-1.26188 -1.78727 0.00817358)
(-1.07087 -1.28172 -0.00404005)
(-0.637075 -0.744343 -0.0199268)
(-0.261842 -0.241324 -0.0395931)
(-0.0834112 0.0786201 -0.0389952)
(-0.0239658 0.169323 -0.0305457)
(-0.00125604 0.0835639 -0.0142981)
(0.00182795 -0.0847587 -0.0531945)
(-0.0908431 0.0229435 -0.0800789)
(-0.265539 0.264676 -0.0812391)
(-0.456909 0.565448 -0.0661245)
(-0.67445 0.834203 -0.0429398)
(-0.894317 1.03133 -0.0160352)
(-1.22072 1.08662 0.00561472)
(-1.54398 0.997635 0.0145894)
(-1.7621 0.961211 0.0296751)
(-1.91177 0.966256 0.0404071)
(-2.01234 0.943725 0.0487221)
(-2.07832 0.890127 0.0514323)
(-2.12035 0.801074 0.049044)
(-2.13295 0.676593 0.0426023)
(-2.09619 0.502131 0.0313652)
(-2.00905 0.315371 0.0248927)
(-1.88875 0.188317 0.00317353)
(-1.7234 0.194751 -0.0070205)
(-1.54196 0.255659 0.0063361)
(-1.39162 0.269527 0.0422767)
(-1.24536 0.228241 0.0483369)
(-1.15128 0.0250898 0.041844)
(-1.13012 -0.120883 0.0377301)
(-1.13927 -0.296166 0.0346458)
(-1.1624 -0.480456 0.0308459)
(-1.1966 -0.695609 0.0267812)
(-1.2469 -0.941981 0.02181)
(-1.30413 -1.22484 0.0168732)
(-1.36962 -1.53707 0.0120551)
(-1.42321 -1.85607 0.0088802)
(-1.45362 -2.14461 0.00752971)
(-1.42997 -2.34046 0.00778944)
(-1.3466 -2.38057 0.0081987)
(-1.28152 -2.24098 0.0101549)
(-1.1962 -1.78504 0.00563102)
(-0.862915 -1.16107 -0.00427267)
(-0.379135 -0.527792 -0.019582)
(-0.101266 -0.0336743 -0.0248444)
(-0.0171138 0.101906 -0.0244086)
(0.0028067 0.0694811 -0.0111924)
(-0.0132311 -0.0189226 -0.0577651)
(-0.131069 0.139134 -0.0859278)
(-0.315733 0.411776 -0.0806699)
(-0.523943 0.70603 -0.0577449)
(-0.74867 0.934358 -0.0294799)
(-1.04131 1.05619 -0.00335555)
(-1.34274 1.01363 0.0118409)
(-1.5555 1.01299 0.0294651)
(-1.70686 1.03301 0.0415937)
(-1.78716 1.02748 0.0525938)
(-1.83417 0.99739 0.0579822)
(-1.87494 0.936243 0.0587013)
(-1.92015 0.837504 0.0488957)
(-1.97805 0.67518 0.0318204)
(-2.00287 0.482931 -0.008791)
(-1.86339 0.325808 -0.0250378)
(-1.51591 0.168394 0.00260236)
(-1.20117 0.038456 0.0882567)
(-1.09585 0.111143 0.103071)
(-1.08287 0.35482 0.0987459)
(-1.03828 0.378856 0.0682191)
(-0.941972 0.107768 0.0485721)
(-0.901374 -0.0683581 0.041312)
(-0.909568 -0.231779 0.0369141)
(-0.925915 -0.410577 0.0324541)
(-0.958446 -0.605989 0.0277757)
(-1.0091 -0.835468 0.0222899)
(-1.07435 -1.10238 0.0164584)
(-1.15831 -1.41248 0.0107337)
(-1.24676 -1.753 0.00607199)
(-1.32827 -2.09835 0.00317004)
(-1.37374 -2.39198 0.00285448)
(-1.35775 -2.5681 0.00381222)
(-1.28007 -2.55059 0.00613646)
(-1.20969 -2.26492 0.00694208)
(-1.00484 -1.6432 0.00312745)
(-0.514074 -0.884803 -0.0104651)
(-0.157082 -0.258978 -0.0225006)
(-0.0498327 0.0522686 -0.0275391)
(0.0164778 0.0577034 -0.013099)
(-0.0270867 0.0452828 -0.0618118)
(-0.168585 0.269597 -0.0893727)
(-0.367381 0.549298 -0.0786867)
(-0.56672 0.807095 -0.0497845)
(-0.808594 0.992555 -0.0185468)
(-1.09408 1.04159 0.00462858)
(-1.33935 1.05743 0.0230401)
(-1.49064 1.08511 0.0379702)
(-1.56658 1.09107 0.0516718)
(-1.58823 1.07392 0.0601672)
(-1.60889 1.0484 0.0656752)
(-1.65488 1.01017 0.0631414)
(-1.75446 0.936869 0.0440704)
(-1.84594 0.803716 0.0269085)
(-1.65874 0.43972 0.0396156)
(-1.12716 -0.0619771 0.174797)
(-0.765603 -0.393405 0.18931)
(-0.801885 -0.112251 0.17602)
(-1.02636 0.341666 0.15692)
(-1.12431 0.664841 0.138693)
(-0.985393 0.499613 0.0855209)
(-0.824646 0.0933853 0.0510314)
(-0.758713 -0.045949 0.0441298)
(-0.739057 -0.182201 0.0430209)
(-0.747316 -0.348606 0.0360269)
(-0.766087 -0.521227 0.0312937)
(-0.808479 -0.728874 0.0245591)
(-0.86614 -0.970232 0.0180495)
(-0.949754 -1.26145 0.0112404)
(-1.04907 -1.59916 0.00540148)
(-1.15875 -1.97227 0.00115443)
(-1.25163 -2.33841 -0.000303296)
(-1.29834 -2.62967 0.000240646)
(-1.2736 -2.75747 0.00306821)
(-1.18284 -2.63175 0.00586268)
(-1.04989 -2.15098 0.00565104)
(-0.71021 -1.32948 0.0012478)
(-0.221771 -0.555423 -0.0127579)
(-0.0365628 -0.0392211 -0.00897717)
(-0.00711187 0.0333131 -0.00711458)
(-0.0291035 0.116971 -0.0623279)
(-0.182762 0.403211 -0.0895466)
(-0.387437 0.688401 -0.0752702)
(-0.588397 0.929351 -0.0424457)
(-0.850539 1.06913 -0.0107241)
(-1.10671 1.09908 0.0118193)
(-1.28217 1.12742 0.0296879)
(-1.35688 1.14047 0.0457185)
(-1.3694 1.12804 0.0579456)
(-1.34275 1.10883 0.0686341)
(-1.32703 1.11919 0.0766899)
(-1.3694 1.128 0.0786288)
(-1.42818 1.06625 0.0753166)
(-1.26136 0.675229 0.163044)
(-0.441364 -0.0762915 0.288274)
(0.207949 -0.347043 0.258597)
(0.0226285 0.152429 -0.08748)
(-0.573767 0.600092 -0.136672)
(-0.923441 0.770627 -0.0980349)
(-0.855503 0.82908 0.0165251)
(-0.655721 0.510253 0.0362806)
(-0.588687 0.0708045 0.0278917)
(-0.611128 -0.0491974 0.045608)
(-0.597057 -0.153406 0.0445893)
(-0.610583 -0.304925 0.0400746)
(-0.619499 -0.458247 0.0341162)
(-0.651548 -0.644371 0.0269169)
(-0.693939 -0.858236 0.0193439)
(-0.764016 -1.12062 0.0119353)
(-0.854896 -1.43645 0.00493034)
(-0.969482 -1.80915 -0.000242093)
(-1.08559 -2.21298 -0.00352196)
(-1.17796 -2.593 -0.00335722)
(-1.20688 -2.85614 -0.000927608)
(-1.15073 -2.88764 0.00222581)
(-1.01743 -2.58231 0.00478498)
(-0.786441 -1.83366 0.00184408)
(-0.343315 -0.848741 -0.00367999)
(-0.0550541 -0.163008 -0.0148724)
(-0.0118478 0.0219476 -0.00895508)
(-0.0287985 0.199135 -0.0616254)
(-0.185534 0.540228 -0.0885837)
(-0.390653 0.828323 -0.0723057)
(-0.607329 1.04661 -0.0375938)
(-0.862645 1.13919 -0.00532046)
(-1.05858 1.17066 0.0157771)
(-1.16285 1.18619 0.0341902)
(-1.17497 1.16824 0.0489188)
(-1.13289 1.13531 0.063855)
(-1.03834 1.11958 0.0773859)
(-0.966007 1.17198 0.0978035)
(-0.954119 1.21499 0.121304)
(-0.828779 0.977344 0.20405)
(0.00668104 0.164811 0.410575)
(0.810007 -0.359217 -0.0284158)
(0.415265 -0.0258982 -0.435709)
(-0.607394 0.742319 -0.528761)
(-0.921321 0.668355 -0.284132)
(-0.752319 0.469858 -0.0402247)
(-0.688072 0.634172 0.123628)
(-0.465707 0.602518 0.139481)
(-0.439633 0.238208 0.101703)
(-0.511718 0.0465144 0.0712253)
(-0.491273 -0.0858844 0.0628367)
(-0.515182 -0.246946 0.0505122)
(-0.514829 -0.399229 0.0406126)
(-0.538534 -0.573309 0.0306454)
(-0.564384 -0.765736 0.0212161)
(-0.616713 -0.998522 0.0128357)
(-0.689836 -1.28363 0.00484026)
(-0.794551 -1.63673 -0.00121978)
(-0.915231 -2.05075 -0.00577123)
(-1.03137 -2.48709 -0.00622254)
(-1.10528 -2.86172 -0.00349843)
(-1.09928 -3.05479 0.000703636)
(-0.984362 -2.91964 0.00391935)
(-0.782698 -2.33398 0.005286)
(-0.419398 -1.27717 0.000616915)
(-0.0811732 -0.345043 -0.00100563)
(-0.0250254 -0.0124948 -0.00162353)
(-0.0239408 0.272967 -0.0590254)
(-0.174436 0.665477 -0.0859478)
(-0.383384 0.956085 -0.0691629)
(-0.613809 1.13708 -0.0343575)
(-0.837332 1.21383 -0.0029439)
(-0.972145 1.23812 0.0173223)
(-1.0228 1.21934 0.0349459)
(-0.983048 1.167 0.0501468)
(-0.884423 1.10525 0.0674916)
(-0.703676 1.0875 0.0904583)
(-0.554453 1.2072 0.132141)
(-0.584166 1.19628 0.24427)
(-4.31313e-05 0.611468 0.435135)
(0.946653 -0.31567 -0.00792399)
(0.280815 0.0770395 -0.584664)
(-1.23273 0.68299 -0.545953)
(-1.70733 0.425017 -0.33342)
(-1.38092 0.0258071 -0.0823589)
(-1.40259 0.257166 0.0865035)
(-1.30368 0.672026 0.188064)
(-0.672195 0.647581 0.196961)
(-0.478828 0.296857 0.154929)
(-0.518098 0.120554 0.115079)
(-0.467787 -0.0426345 0.0921282)
(-0.473755 -0.203397 0.0691572)
(-0.45603 -0.362462 0.0508525)
(-0.465137 -0.526428 0.036427)
(-0.472386 -0.703208 0.0233241)
(-0.504383 -0.90764 0.0135031)
(-0.554986 -1.15834 0.00422964)
(-0.640785 -1.47846 -0.00279254)
(-0.751499 -1.87859 -0.00848558)
(-0.873858 -2.33933 -0.00936934)
(-0.974502 -2.79333 -0.00646713)
(-1.01194 -3.12302 -0.00207982)
(-0.946512 -3.16391 0.00216275)
(-0.759461 -2.75414 0.00179469)
(-0.470418 -1.76501 -3.28703e-05)
(-0.111318 -0.60237 -0.00953465)
(-0.0103921 -0.0781967 -0.00621645)
(-0.0177925 0.339864 -0.0559185)
(-0.156344 0.785334 -0.0831256)
(-0.378276 1.07004 -0.0671499)
(-0.596537 1.22248 -0.0334449)
(-0.772963 1.29974 -0.00336374)
(-0.865916 1.29486 0.0153253)
(-0.872846 1.23558 0.03188)
(-0.794896 1.13627 0.0475189)
(-0.63701 1.02587 0.0698696)
(-0.326495 1.00606 0.102729)
(-0.324644 1.23666 0.242649)
(-0.275665 1.0529 0.480837)
(0.511541 0.162108 0.196014)
(-0.123752 0.365088 -0.432269)
(-1.7316 0.97772 -0.514945)
(-1.90292 0.606048 -0.353526)
(-1.3779 0.104992 -0.128613)
(-1.49422 0.264362 -0.125452)
(-1.85384 0.587053 -0.164782)
(-1.33307 0.472878 0.00346701)
(-0.532405 0.336046 0.129088)
(-0.447362 0.283109 0.160437)
(-0.48381 0.155752 0.138464)
(-0.44207 -0.0320882 0.107369)
(-0.439711 -0.180195 0.0840487)
(-0.416119 -0.343288 0.059098)
(-0.412494 -0.49896 0.041966)
(-0.406585 -0.663686 0.0246557)
(-0.420727 -0.844079 0.0134057)
(-0.451665 -1.06241 0.00292807)
(-0.516978 -1.34562 -0.00488595)
(-0.612053 -1.71855 -0.0115344)
(-0.729342 -2.18094 -0.0126229)
(-0.84347 -2.68579 -0.00936634)
(-0.911999 -3.12607 -0.00329367)
(-0.891322 -3.33058 0.00153661)
(-0.742835 -3.09865 0.00390754)
(-0.481419 -2.23928 0.000880565)
(-0.128082 -0.919461 -0.00404706)
(-0.00450409 -0.144975 -0.00430608)
(-0.00947316 0.386672 -0.0520281)
(-0.14468 0.881171 -0.0797668)
(-0.364702 1.15871 -0.0648631)
(-0.555425 1.3098 -0.0343743)
(-0.699289 1.37066 -0.00529036)
(-0.764835 1.32881 0.00981182)
(-0.74966 1.22351 0.0255168)
(-0.653438 1.07223 0.0384439)
(-0.43978 0.871913 0.0599967)
(-0.146788 0.995666 0.145714)
(-0.521296 1.29126 0.44652)
(-0.0362978 1.10727 0.504587)
(-0.150332 0.970869 -0.0894808)
(-1.48853 1.41418 -0.443154)
(-1.26503 0.65512 -0.523471)
(-0.576545 -0.182345 -0.0829631)
(-0.957703 -0.0509499 0.00160834)
(-2.0507 0.41722 -0.162527)
(-1.81274 0.100098 0.0381391)
(-0.958394 -0.103329 0.213226)
(-0.595381 0.22785 0.187619)
(-0.579167 0.417409 0.2477)
(-0.497166 0.234327 0.195464)
(-0.454407 -0.00830135 0.130598)
(-0.420229 -0.159084 0.103985)
(-0.39206 -0.332209 0.0697108)
(-0.373668 -0.485599 0.048354)
(-0.355889 -0.642745 0.0263594)
(-0.355034 -0.803361 0.012951)
(-0.369992 -0.992394 0.00128444)
(-0.417399 -1.23736 -0.00758653)
(-0.494924 -1.57408 -0.0151247)
(-0.601113 -2.01926 -0.0168455)
(-0.718241 -2.55104 -0.0132794)
(-0.80635 -3.07478 -0.00585764)
(-0.823311 -3.42494 0.000459102)
(-0.711524 -3.36838 0.00311526)
(-0.483923 -2.6581 0.0011053)
(-0.138369 -1.28174 -0.00450217)
(0.0259035 -0.191402 -0.00578023)
(-0.00546836 0.425047 -0.0483674)
(-0.131984 0.967628 -0.0761151)
(-0.335195 1.26304 -0.064932)
(-0.499342 1.40719 -0.0375341)
(-0.623406 1.44623 -0.0104789)
(-0.67616 1.35925 -6.27235e-06)
(-0.653306 1.21368 0.0120124)
(-0.578378 0.982547 0.0174944)
(-0.279428 0.763986 0.0453354)
(-0.410821 1.09325 0.262317)
(-0.404137 1.57515 0.694583)
(0.0565193 1.6976 0.399765)
(-0.332549 1.63701 -0.269368)
(-0.0445667 0.803799 -0.838195)
(0.222104 -0.223992 -0.317755)
(-0.23742 0.145172 0.122547)
(-1.83965 1.12021 -0.321149)
(-2.60495 0.663755 -0.0501449)
(-1.889 -0.329135 0.576504)
(-1.34532 -0.123631 0.385163)
(-1.0934 0.204866 0.214216)
(-0.856829 0.326393 0.267309)
(-0.576744 0.155002 0.208552)
(-0.493035 -0.0306148 0.139197)
(-0.412207 -0.174567 0.115931)
(-0.377557 -0.337489 0.0766937)
(-0.340528 -0.485159 0.0526104)
(-0.311575 -0.633943 0.0268644)
(-0.297502 -0.780049 0.0119285)
(-0.301092 -0.945786 -0.0010994)
(-0.334556 -1.15742 -0.0108103)
(-0.396757 -1.4564 -0.0196033)
(-0.49224 -1.87533 -0.0216288)
(-0.609217 -2.4163 -0.0179451)
(-0.709443 -3.00303 -0.00858968)
(-0.751392 -3.48196 -0.000134653)
(-0.673487 -3.59163 0.00443581)
(-0.471063 -3.04628 0.00177868)
(-0.145732 -1.66402 -0.00298387)
(0.0531579 -0.270311 -0.00616618)
(-0.00567785 0.439668 -0.0444932)
(-0.112493 1.03849 -0.0729313)
(-0.297134 1.35708 -0.065154)
(-0.445141 1.48838 -0.0422066)
(-0.561529 1.503 -0.0172425)
(-0.61496 1.36672 -0.0153021)
(-0.61426 1.19732 -0.00454639)
(-0.578818 0.851811 -0.0217023)
(-0.311121 0.789778 0.0667472)
(-0.764674 1.18518 0.443201)
(-0.0585802 1.92225 0.838969)
(0.287212 1.80933 0.314664)
(0.871531 0.834723 -0.578111)
(0.0426752 0.409396 -0.75704)
(-1.76857 0.402956 -0.514119)
(-1.9821 1.32575 -0.891408)
(-3.18588 1.77976 -1.09133)
(-2.5161 0.562691 -0.120707)
(-1.77187 -0.21483 0.381234)
(-1.26568 -0.0804211 0.209486)
(-1.0263 -0.0636732 0.124625)
(-0.765379 0.0686075 0.209776)
(-0.509064 -0.00474867 0.180693)
(-0.443166 -0.088303 0.141001)
(-0.376392 -0.215138 0.118218)
(-0.341335 -0.35399 0.079976)
(-0.299228 -0.489835 0.0553481)
(-0.264494 -0.625246 0.0272821)
(-0.243924 -0.759036 0.0100849)
(-0.241175 -0.905121 -0.00386817)
(-0.265152 -1.08342 -0.0144541)
(-0.312765 -1.34107 -0.0240092)
(-0.393467 -1.72228 -0.0271499)
(-0.50478 -2.26132 -0.0233611)
(-0.617742 -2.89831 -0.0126958)
(-0.685058 -3.49198 -0.00158526)
(-0.640888 -3.76388 0.00419263)
(-0.464267 -3.37842 0.00255126)
(-0.162301 -2.01885 -0.00323875)
(0.0592726 -0.318068 -0.00753863)
(0.00306899 0.462686 -0.0411873)
(-0.0777761 1.1156 -0.0694231)
(-0.256837 1.46542 -0.066145)
(-0.394652 1.58973 -0.0491597)
(-0.520191 1.58811 -0.0268673)
(-0.572209 1.41129 -0.037417)
(-0.636538 1.23145 -0.0203441)
(-0.608876 0.797156 -0.0861702)
(-0.693179 0.913974 0.129444)
(-0.827145 1.34584 0.542332)
(-0.134866 2.01352 0.653217)
(0.653622 1.31879 0.341603)
(0.762006 1.65387 0.206152)
(-2.39413 2.5897 0.153878)
(-2.3444 0.619551 -0.82839)
(-1.54122 1.14075 -2.09517)
(-2.30434 1.3063 -1.35351)
(-1.32449 0.0141461 -0.110463)
(-1.12115 -0.40157 0.344536)
(-0.696398 -0.309022 0.214688)
(-0.673689 -0.144178 0.135658)
(-0.570749 -0.0287269 0.189291)
(-0.396126 -0.0698832 0.167405)
(-0.35934 -0.131182 0.137446)
(-0.321479 -0.24525 0.116544)
(-0.287748 -0.367659 0.0807164)
(-0.242776 -0.489835 0.0566077)
(-0.207344 -0.613679 0.0288169)
(-0.185822 -0.738235 0.0102998)
(-0.177137 -0.874292 -0.00711868)
(-0.193376 -1.03055 -0.0182652)
(-0.23057 -1.25422 -0.0297592)
(-0.30196 -1.59193 -0.0326072)
(-0.406877 -2.10286 -0.0289556)
(-0.520529 -2.7666 -0.0165183)
(-0.604809 -3.4698 -0.00310432)
(-0.595808 -3.9085 0.00476798)
(-0.447179 -3.70295 0.00381723)
(-0.164697 -2.40103 -0.00202547)
(0.0652266 -0.435668 -0.00823891)
(-0.0111238 0.483676 -0.037776)
(-0.069038 1.19721 -0.0659547)
(-0.223501 1.59762 -0.0664903)
(-0.351858 1.71793 -0.055531)
(-0.48953 1.70578 -0.0348143)
(-0.531228 1.51399 -0.0585551)
(-0.692156 1.33511 -0.0334858)
(-0.663403 0.926768 -0.141616)
(-1.16993 1.10492 0.19202)
(-0.608978 1.71461 0.606592)
(0.0134509 2.11197 0.28406)
(0.904663 1.5197 0.494153)
(0.165127 4.34214 1.40114)
(-2.59216 3.92524 3.08235)
(-0.462658 -1.18544 2.15757)
(0.308534 0.568849 -1.42108)
(-0.159953 1.15093 -1.33712)
(-0.298431 -0.00740052 -0.0954895)
(-0.487086 -0.170038 0.327932)
(-0.346414 -0.220401 0.1893)
(-0.405351 -0.0713576 0.125851)
(-0.387618 -0.0108058 0.17403)
(-0.281532 -0.0573107 0.167327)
(-0.272072 -0.131789 0.135474)
(-0.253814 -0.235244 0.113845)
(-0.21921 -0.336671 0.0772587)
(-0.177474 -0.438229 0.0518821)
(-0.148638 -0.540033 0.0239227)
(-0.136806 -0.640423 0.00542511)
(-0.133827 -0.759369 -0.010474)
(-0.147759 -0.889468 -0.0220096)
(-0.172643 -1.0787 -0.0333867)
(-0.219154 -1.37803 -0.0391438)
(-0.297872 -1.88 -0.0357566)
(-0.41636 -2.57062 -0.021748)
(-0.524959 -3.35567 -0.00493223)
(-0.556993 -3.96249 0.00452265)
(-0.45797 -3.9531 0.0050913)
(-0.203067 -2.7327 -0.00157796)
(0.048243 -0.48184 -0.00899191)
(-0.000654774 0.608392 -0.0311347)
(-0.0314025 1.38972 -0.0606435)
(-0.166868 1.80622 -0.058639)
(-0.2851 1.96323 -0.0580263)
(-0.440147 1.94851 -0.0383416)
(-0.445846 1.77487 -0.0719252)
(-0.683242 1.59629 -0.0432936)
(-0.681791 1.27721 -0.169835)
(-1.43245 1.31055 0.208742)
(-0.407092 1.92493 0.563509)
(0.285316 2.26541 0.106895)
(1.42789 2.48131 0.405596)
(2.34064 7.36117 0.722267)
(0.413232 4.65468 4.11669)
(0.303799 -2.31993 6.90558)
(-0.291508 0.266101 2.98542)
(0.440812 1.22592 -0.200306)
(-0.134967 0.466926 -0.329123)
(-0.292216 0.130826 0.0610998)
(-0.20681 -0.0765832 0.153878)
(-0.155586 0.0317846 0.108894)
(-0.237214 0.0578869 0.135768)
(-0.187343 -0.0197975 0.157532)
(-0.189577 -0.103123 0.135034)
(-0.167131 -0.208791 0.121538)
(-0.123841 -0.295486 0.0844275)
(-0.0805923 -0.376922 0.0522084)
(-0.0521402 -0.459141 0.0168785)
(-0.0544166 -0.542747 -0.00127446)
(-0.0641985 -0.644485 -0.016224)
(-0.0873264 -0.744751 -0.0245641)
(-0.128814 -0.88813 -0.0386518)
(-0.206908 -1.11516 -0.040155)
(-0.293602 -1.53799 -0.0388396)
(-0.349912 -2.20529 -0.0249335)
(-0.419369 -3.10813 -0.00635334)
(-0.476647 -3.89071 0.0055247)
(-0.424767 -4.13595 0.00714856)
(-0.198876 -3.10903 0.000100422)
(0.0640493 -0.691614 -0.0072648)
(-0.0183833 0.809828 -0.0193385)
(-0.024431 1.66488 -0.0482724)
(-0.124032 2.0968 -0.0471878)
(-0.215401 2.27599 -0.0548294)
(-0.374014 2.25999 -0.0391473)
(-0.366202 2.10287 -0.077308)
(-0.67163 1.90215 -0.0571434)
(-0.744019 1.64092 -0.202208)
(-1.70816 1.49122 0.122691)
(-0.634728 1.9212 0.226417)
(-0.23504 2.52141 -0.094611)
(0.0544014 2.5328 0.284478)
(4.22538 8.12719 -0.830943)
(5.49823 6.78292 1.14369)
(3.32175 -0.582626 4.7398)
(-0.088422 0.414588 5.17555)
(0.144316 0.945217 2.07708)
(0.17251 0.561474 -0.00135834)
(-0.136322 0.217664 -0.025041)
(-0.0441693 0.0769707 0.261223)
(0.0353442 0.206618 0.166454)
(-0.119802 0.265781 0.171201)
(-0.112192 0.0893673 0.187806)
(-0.115411 -0.0361558 0.166539)
(-0.0909664 -0.18165 0.160613)
(-0.0258364 -0.284336 0.109788)
(0.0185637 -0.36487 0.0593607)
(0.0349534 -0.433369 0.0149813)
(0.0156881 -0.503977 -0.00672976)
(0.00142693 -0.589156 -0.020999)
(-0.0165384 -0.677203 -0.0301541)
(-0.0423721 -0.793377 -0.0423679)
(-0.0945107 -0.944423 -0.0382132)
(-0.208271 -1.25388 -0.0448992)
(-0.396864 -1.80717 -0.0305516)
(-0.483806 -2.6679 -0.00916545)
(-0.481367 -3.58194 0.00399036)
(-0.452864 -4.09002 0.00705816)
(-0.271264 -3.35505 -0.000740519)
(0.0124309 -1.00034 -0.00923956)
(-0.0386076 0.819988 -0.0191685)
(-0.0343127 1.74571 -0.0451749)
(-0.0887743 2.22081 -0.045256)
(-0.144247 2.41805 -0.0551567)
(-0.295528 2.42281 -0.0415969)
(-0.28279 2.30579 -0.0838611)
(-0.611117 2.08477 -0.0668048)
(-0.668977 1.94187 -0.230588)
(-1.73895 1.62092 0.0358662)
(-0.701974 1.832 0.0422172)
(-0.408857 3.21727 -0.2243)
(-1.31199 1.85739 -0.11864)
(2.4443 5.05591 -0.154692)
(5.99116 6.66017 0.802809)
(7.01853 3.15443 -0.00178982)
(3.15691 2.96536 1.68294)
(0.687088 1.81152 2.33649)
(0.562101 0.832858 0.556369)
(0.199334 0.527452 0.0342226)
(0.257968 0.352155 0.317712)
(0.377594 0.558302 0.145167)
(0.00933223 0.664627 0.071127)
(-0.133055 0.330472 0.214094)
(-0.111961 0.0685437 0.241491)
(-0.062597 -0.176 0.26145)
(0.0459012 -0.331679 0.198106)
(0.119101 -0.379532 0.0886388)
(0.1461 -0.431606 0.0198415)
(0.112795 -0.489475 -0.0121198)
(0.0771056 -0.57013 -0.0292313)
(0.0407207 -0.6526 -0.0408707)
(0.0229678 -0.751783 -0.0524265)
(-0.0152901 -0.877022 -0.0468613)
(-0.0854985 -1.14158 -0.0417072)
(-0.236516 -1.57563 -0.035941)
(-0.4462 -2.27985 -0.0128158)
(-0.538073 -3.14776 0.00360728)
(-0.511946 -3.7945 0.00960514)
(-0.380748 -3.32406 0.00235573)
(-0.0748967 -1.04446 -0.0062375)
(-0.0277067 0.791781 -0.0145875)
(-0.00633723 1.73425 -0.0393105)
(-0.0343145 2.23461 -0.0431017)
(-0.0509816 2.44302 -0.0461431)
(-0.173764 2.46976 -0.0384023)
(-0.170621 2.42594 -0.0871108)
(-0.455787 2.20379 -0.0623093)
(-0.455385 2.19902 -0.257061)
(-1.45413 1.62997 -0.00340803)
(-0.539107 1.23468 -0.0455727)
(-0.0719268 3.50669 -0.505206)
(-1.12801 1.79939 -0.59551)
(0.0299235 3.10919 0.315842)
(3.73621 5.54015 1.47417)
(7.8413 4.10102 -1.33895)
(4.14467 4.45297 -0.376353)
(1.56838 2.70491 1.43001)
(0.715315 1.1618 0.511664)
(0.421553 0.618083 0.0027014)
(0.696504 0.463558 0.162753)
(1.2449 0.857911 -0.234993)
(0.547731 1.01983 -0.455916)
(-0.142751 0.643395 -0.0581229)
(-0.182791 0.236085 0.291258)
(-0.0765801 -0.155652 0.429419)
(0.127454 -0.368806 0.337871)
(0.25668 -0.388485 0.129167)
(0.25 -0.419509 0.0178656)
(0.187493 -0.475173 -0.0287429)
(0.136562 -0.571028 -0.0437232)
(0.104079 -0.655187 -0.0526509)
(0.0947942 -0.742071 -0.0604681)
(0.0548859 -0.830811 -0.061294)
(-0.0116256 -1.04667 -0.0493582)
(-0.148051 -1.44628 -0.042744)
(-0.322505 -2.08462 -0.0148503)
(-0.458228 -2.82337 0.00277162)
(-0.494077 -3.50864 0.0111747)
(-0.386387 -3.23614 0.00398645)
(-0.119262 -1.10761 -0.0055434)
(-0.017249 0.773783 -0.0114164)
(0.0179904 1.69895 -0.0365092)
(0.00834688 2.21272 -0.0401823)
(0.0217255 2.4494 -0.0473453)
(-0.0425128 2.46631 -0.026879)
(-0.0425367 2.45473 -0.0642391)
(-0.253044 2.2515 -0.0414078)
(-0.214823 2.34734 -0.244376)
(-1.00231 1.65902 0.0380692)
(-0.735717 0.580111 -0.0991053)
(-0.160896 3.12765 -0.679924)
(-1.34739 1.38237 -0.810882)
(-1.70011 0.905401 -1.02626)
(2.86886 3.36249 -0.545194)
(6.63337 2.31523 -1.79529)
(3.3328 3.34275 -0.338958)
(1.79985 2.09184 1.37327)
(0.789733 0.696533 0.450244)
(0.462736 0.143178 -0.0572014)
(1.17446 0.139212 -0.0821196)
(2.87132 0.701664 -1.34545)
(2.3489 1.17836 -1.73414)
(0.539492 0.995856 -0.518141)
(-0.0599108 0.342223 0.29128)
(-0.04479 -0.307088 0.699091)
(0.240362 -0.532522 0.551429)
(0.443795 -0.405299 0.184076)
(0.41945 -0.4071 -0.0178167)
(0.303782 -0.454931 -0.0862162)
(0.210718 -0.582629 -0.0816494)
(0.167504 -0.701453 -0.0726734)
(0.174502 -0.790229 -0.076892)
(0.148343 -0.851048 -0.0735421)
(0.0730798 -1.00749 -0.0703085)
(-0.0575829 -1.36004 -0.0461967)
(-0.206056 -1.95195 -0.0200788)
(-0.359394 -2.67248 0.00561509)
(-0.438392 -3.3872 0.0121124)
(-0.383516 -3.28564 0.00525394)
(-0.141464 -1.33591 -0.00603153)
(-0.00823421 0.720556 -0.00778026)
(0.0421734 1.61944 -0.0306173)
(0.0652385 2.1545 -0.0364788)
(0.0854653 2.43585 -0.0480491)
(0.0580817 2.4603 -0.026336)
(0.0664897 2.47031 -0.0758986)
(0.00381605 2.26859 -0.0127641)
(0.0308781 2.45474 -0.224805)
(-0.254682 1.79601 0.146292)
(-0.820755 0.329636 -0.017378)
(0.236729 2.53634 -0.645445)
(-0.511734 1.36225 -0.262485)
(-2.00452 -1.18377 -1.27515)
(0.384682 0.331255 -1.90537)
(3.29948 1.39353 -1.76274)
(3.41575 2.89583 -1.38238)
(1.7314 2.17074 0.796753)
(0.660758 0.184485 0.797723)
(0.0593568 -0.988585 0.423985)
(0.569477 -1.07894 0.305168)
(2.8372 -0.583513 -1.49422)
(3.5459 0.517742 -2.39804)
(1.60628 1.25927 -0.575017)
(0.155126 0.929728 0.763736)
(0.0681778 -0.178673 1.1612)
(0.764963 -0.60533 0.592687)
(1.19964 -0.433062 -0.130043)
(0.976131 -0.362545 -0.355971)
(0.653673 -0.406446 -0.271884)
(0.409049 -0.577622 -0.163713)
(0.309528 -0.741707 -0.12669)
(0.290075 -0.835001 -0.108163)
(0.24976 -0.860803 -0.092545)
(0.152438 -0.965337 -0.0811423)
(0.00710187 -1.2464 -0.0561161)
(-0.114177 -1.85823 -0.023317)
(-0.26849 -2.59976 0.00339313)
(-0.369235 -3.40346 0.011532)
(-0.36001 -3.42562 0.00543158)
(-0.141802 -1.5617 -0.00688066)
(0.00131465 0.658238 -0.00407375)
(0.0661292 1.52052 -0.0240808)
(0.117878 2.07683 -0.03071)
(0.149221 2.3843 -0.0371699)
(0.1747 2.44023 -0.0200378)
(0.169326 2.45826 -0.0362655)
(0.252448 2.279 -0.00680774)
(0.145757 2.38678 -0.112387)
(0.531028 2.04989 -8.70974e-05)
(-0.427903 0.243181 0.258003)
(0.745955 1.35752 -0.943729)
(1.33315 1.84661 0.22056)
(-0.672915 -1.14016 -0.389992)
(-1.47113 -0.489361 -1.64915)
(-0.418955 2.15361 -0.193328)
(2.6488 2.70884 -1.09644)
(2.4682 2.46216 -1.32387)
(1.10823 1.12729 0.097864)
(0.218919 -0.526804 0.599382)
(-0.188041 -1.34435 0.331823)
(1.17688 -1.25718 -0.429382)
(3.04032 -0.537642 -1.52829)
(3.28685 1.34672 -1.06774)
(2.15305 1.42686 0.261761)
(1.7169 -0.745307 0.614484)
(2.30377 -1.45831 -0.301803)
(2.27021 -0.74055 -1.01383)
(1.32084 -0.253587 -0.63616)
(0.5981 -0.102997 -0.118944)
(0.507777 -0.425983 -0.127757)
(0.570358 -0.752332 -0.191493)
(0.555597 -0.925877 -0.161785)
(0.463021 -0.974272 -0.124024)
(0.30572 -1.02083 -0.09496)
(0.0828815 -1.24142 -0.0654496)
(-0.0497114 -1.83734 -0.0283561)
(-0.197438 -2.64193 0.00127352)
(-0.316769 -3.5579 0.0110359)
(-0.340301 -3.72786 0.00632878)
(-0.140525 -1.8959 -0.00663145)
(0.00842946 0.580987 -0.00115286)
(0.0854393 1.39351 -0.0180267)
(0.161674 1.9643 -0.0247698)
(0.202807 2.28987 -0.0274757)
(0.258855 2.37558 -0.0129096)
(0.261641 2.35889 -0.00716804)
(0.404294 2.23251 0.0146934)
(0.321363 2.12323 0.00905196)
(0.841917 2.1932 0.0170473)
(0.295483 0.578344 0.397917)
(0.708195 0.160156 -0.598522)
(2.03221 1.49213 -0.118562)
(1.22786 -0.576341 0.913332)
(-0.252052 -0.9296 -1.13619)
(-0.864814 2.327 -1.02322)
(0.0758977 3.11833 0.441287)
(1.00448 2.34086 -0.568105)
(0.854097 1.31074 -1.21408)
(1.04586 0.05149 -1.20493)
(0.928399 -1.08483 -1.20874)
(1.07581 -1.19378 -0.404769)
(3.0938 -1.60997 0.158114)
(5.00131 -0.116059 -1.03727)
(5.27323 0.947107 -1.57422)
(4.40944 -0.942093 -0.804331)
(2.98782 -1.59498 -0.369711)
(1.24582 0.0188712 -0.0810336)
(0.0309699 1.30483 0.417166)
(0.0867019 0.700614 0.372408)
(0.623903 -0.503004 -0.085256)
(0.765941 -1.00875 -0.226524)
(0.730359 -1.13182 -0.192831)
(0.650345 -1.14799 -0.152976)
(0.468293 -1.17723 -0.111385)
(0.179056 -1.36838 -0.0679441)
(0.0113961 -1.93395 -0.0350603)
(-0.147292 -2.79246 0.00195601)
(-0.256623 -3.84158 0.0100189)
(-0.285287 -4.21549 0.00730201)
(-0.115728 -2.50857 -0.00590031)
(0.0179632 0.503436 0.00257004)
(0.105825 1.25963 -0.012977)
(0.194188 1.84365 -0.0194187)
(0.246199 2.18734 -0.0192677)
(0.313771 2.30335 -0.00683761)
(0.339356 2.26557 0.0125878)
(0.471419 2.16169 0.0338452)
(0.479343 1.9233 0.0868692)
(0.812293 2.0042 0.0615736)
(0.976315 1.10925 0.38144)
(0.55228 -0.000637585 0.126052)
(1.91055 0.977035 -0.851267)
(2.18087 0.281721 0.847087)
(0.988546 -1.59069 0.112785)
(0.777059 0.338194 -2.8398)
(-0.0191143 4.63817 -2.34819)
(-1.31805 4.26759 -0.294048)
(-1.81198 1.23164 -0.14343)
(-0.725338 -1.15915 -0.86176)
(-0.357479 -1.66034 -0.304621)
(0.068998 -1.55038 1.37999)
(1.4171 -1.55658 2.6712)
(2.68124 -0.317435 2.14903)
(4.0501 0.936731 0.503294)
(3.79907 0.354759 0.00458711)
(1.33655 0.827888 0.323663)
(-0.350438 2.45708 0.691113)
(-0.13735 2.40382 0.567395)
(0.869537 0.425338 0.0564545)
(1.3343 -1.02561 -0.185634)
(1.01114 -1.18355 -0.202579)
(0.881161 -1.19597 -0.198789)
(0.787376 -1.13853 -0.182626)
(0.561913 -1.11826 -0.124789)
(0.228357 -1.29938 -0.0725851)
(0.036131 -1.89212 -0.0338888)
(-0.140624 -2.78788 0.00385764)
(-0.254758 -4.00422 0.0127814)
(-0.309808 -4.62164 0.00922163)
(-0.141326 -3.12312 -0.00469907)
(0.0221542 0.4312 0.00300458)
(0.124416 1.10984 -0.0108018)
(0.221848 1.69113 -0.0158964)
(0.274619 2.05381 -0.0146562)
(0.342973 2.19358 -0.00346877)
(0.385906 2.15923 0.0191796)
(0.487171 2.04432 0.0479036)
(0.55872 1.78978 0.101412)
(0.717486 1.68466 0.1347)
(1.13379 1.23193 0.274103)
(0.908667 0.237543 0.542069)
(1.33582 0.445677 -0.499346)
(2.23329 0.696041 -1.03036)
(0.938577 -1.28415 0.588831)
(0.194982 -2.05749 0.220276)
(1.85618 2.3769 -2.90321)
(1.24454 6.09972 -3.07776)
(-1.1398 4.02907 -1.09573)
(-2.23906 0.131035 0.861286)
(-3.24756 -1.5528 2.95958)
(-3.03207 -1.9555 3.96683)
(-1.91304 -1.38986 3.53072)
(-0.918693 -0.335477 3.08715)
(1.35848 0.938498 1.84557)
(2.21178 1.99347 0.297489)
(0.633834 2.7907 -0.206666)
(0.078403 2.64737 -0.240857)
(1.29047 0.883258 -0.192133)
(1.96699 -0.599691 -0.221895)
(1.60752 -0.985611 -0.140147)
(1.15292 -1.00948 -0.150498)
(1.02068 -1.14024 -0.204286)
(0.786654 -0.920329 -0.180471)
(0.539312 -0.865056 -0.115614)
(0.225685 -1.11642 -0.0676168)
(0.0424735 -1.7013 -0.0307949)
(-0.130058 -2.60963 0.0102197)
(-0.257269 -3.94964 0.0168249)
(-0.336031 -4.80424 0.0127817)
(-0.172324 -3.56756 -0.00239331)
(0.0177711 0.376281 0.00396698)
(0.122419 0.985206 -0.00874639)
(0.237765 1.54274 -0.0148391)
(0.292453 1.93381 -0.012421)
(0.355076 2.10112 -0.00349762)
(0.403529 2.08709 0.0183729)
(0.484349 1.97027 0.0462246)
(0.546729 1.72823 0.0958273)
(0.643977 1.51097 0.144654)
(0.855333 1.17858 0.231214)
(0.976021 0.489745 0.424493)
(0.912967 0.182724 0.347157)
(1.66483 0.802528 -0.857372)
(1.14776 0.317567 -0.599691)
(-0.794026 -1.45539 1.75438)
(-0.0042981 -0.630276 1.04627)
(3.39292 3.29704 -2.54158)
(4.7582 4.77664 -4.0615)
(3.44168 3.24944 -2.11183)
(0.863148 0.832626 0.741943)
(-1.13911 -0.76244 1.41977)
(-2.48847 -1.08434 0.664912)
(-2.45316 -0.869865 0.281923)
(-1.16206 0.160704 -0.143688)
(-0.222563 1.62695 -0.962663)
(0.0537476 1.42723 -1.42277)
(0.749182 0.0821992 -1.18546)
(1.53742 -0.632501 -0.564207)
(1.43965 -0.639838 -0.240189)
(1.139 -0.644203 -0.119617)
(1.02559 -0.876765 -0.133849)
(0.878391 -0.822771 -0.174448)
(0.563057 -0.514586 -0.131181)
(0.393894 -0.631789 -0.0839248)
(0.167208 -0.95138 -0.0413027)
(0.037283 -1.49181 -0.0254325)
(-0.137983 -2.3794 0.0206967)
(-0.257347 -3.7983 0.0224804)
(-0.366458 -4.8654 0.0170357)
(-0.198818 -3.94342 0.00125267)
(0.0171813 0.310762 0.00374679)
(0.112639 0.850165 -0.00786647)
(0.241898 1.37065 -0.0146094)
(0.307585 1.77418 -0.0124062)
(0.356003 1.97177 -0.00526716)
(0.407232 1.98682 0.0122479)
(0.468392 1.88487 0.0377711)
(0.522915 1.66855 0.0780591)
(0.577922 1.44015 0.122423)
(0.681839 1.14258 0.187654)
(0.767695 0.741034 0.275469)
(0.67857 0.260931 0.433882)
(0.639445 0.573337 0.372044)
(1.1187 1.42775 -0.32858)
(0.54773 1.20256 -0.650539)
(-1.22192 -0.285956 0.843602)
(0.0148106 0.251315 0.994317)
(4.1459 1.70021 -1.71005)
(6.3857 1.9158 -3.19497)
(6.28707 1.58326 -3.1967)
(4.10419 0.963084 -2.41389)
(0.822007 0.519555 -1.2977)
(-0.680285 0.255846 -0.524797)
(-0.526699 -0.153311 -0.287077)
(0.238886 -0.463622 -0.697823)
(0.874318 -1.00694 -1.62572)
(0.984978 -1.48893 -1.7642)
(1.01619 -1.21263 -0.838215)
(0.885501 -0.754888 -0.230151)
(0.796919 -0.713781 -0.00953396)
(0.67601 -0.599132 -0.0185645)
(0.478742 -0.341453 -0.052904)
(0.277507 -0.267068 -0.0532278)
(0.235055 -0.536425 -0.0437397)
(0.104684 -0.812132 -0.0241229)
(0.0443417 -1.33612 -0.00391386)
(-0.13779 -2.15127 0.0299293)
(-0.244219 -3.61714 0.0310582)
(-0.388175 -4.85797 0.02135)
(-0.225222 -4.28286 0.00537279)
(0.0116555 0.265084 0.00335765)
(0.0910609 0.749965 -0.00791481)
(0.22292 1.2371 -0.0144237)
(0.308489 1.64104 -0.0143104)
(0.355967 1.87454 -0.00882835)
(0.402997 1.92235 0.00358488)
(0.457885 1.84462 0.0236973)
(0.502273 1.6576 0.0539099)
(0.539657 1.4382 0.0858769)
(0.586148 1.18155 0.121506)
(0.600497 0.888651 0.16623)
(0.569455 0.553052 0.198623)
(0.412502 0.451784 0.285674)
(0.49953 1.13291 0.313273)
(1.00631 2.15002 -0.232376)
(0.611669 1.99352 -0.53291)
(-0.465557 0.430548 0.812875)
(0.788916 -1.12545 1.61958)
(3.10652 -0.894292 -0.447587)
(2.95528 0.74324 -2.16291)
(1.42465 2.09164 -0.901593)
(0.403532 1.70482 0.088641)
(1.20999 0.370428 0.267272)
(2.60699 -1.12934 0.365183)
(2.84829 -1.27462 0.137237)
(1.83013 -0.719283 -0.743346)
(1.05559 -1.11375 -1.18176)
(0.904523 -1.17846 -0.497481)
(0.68766 -0.677332 0.0245792)
(0.524249 -0.418727 0.133841)
(0.306653 -0.215297 0.0761229)
(0.227402 -0.18246 0.0288757)
(0.155407 -0.255317 0.00114965)
(0.166343 -0.488405 -0.0138023)
(0.0572825 -0.685176 -0.00534165)
(0.0424536 -1.17904 0.0131219)
(-0.129011 -1.92727 0.0375295)
(-0.223811 -3.41302 0.0370471)
(-0.412607 -4.81995 0.0251208)
(-0.253972 -4.62544 0.00908843)
(0.0162461 0.209736 0.00245089)
(0.0766438 0.631521 -0.00829141)
(0.189894 1.0805 -0.0149864)
(0.298011 1.45725 -0.0158985)
(0.353218 1.71388 -0.0123297)
(0.392354 1.7954 -0.00309438)
(0.440731 1.75079 0.011008)
(0.485926 1.59914 0.0328289)
(0.519839 1.41038 0.0556172)
(0.552629 1.18954 0.0791925)
(0.567813 0.966304 0.10061)
(0.561311 0.755897 0.116381)
(0.480162 0.588847 0.108863)
(0.405403 0.681348 0.118625)
(0.678712 1.18277 0.0532848)
(1.18068 1.81079 -0.252455)
(1.42694 1.34574 -0.438528)
(1.9701 -0.253449 0.131009)
(2.1536 -0.757173 0.248542)
(0.912425 0.625721 -0.196422)
(-0.0107239 1.53657 0.329264)
(0.499161 0.971162 0.546306)
(1.72668 -0.0668124 0.369566)
(2.58058 -0.635282 0.471156)
(2.15342 -0.115502 0.240527)
(1.30375 0.282246 -0.0930073)
(1.03023 -0.293506 -0.108993)
(0.802985 -0.543075 0.0292326)
(0.406969 -0.307641 0.111581)
(0.271582 -0.186661 0.102362)
(0.17844 -0.143746 0.0699464)
(0.223085 -0.216963 0.0294856)
(0.160345 -0.262767 0.00492146)
(0.168963 -0.446693 -0.00449625)
(0.0530634 -0.588325 0.00201752)
(0.0605524 -1.04876 0.0255315)
(-0.117271 -1.72329 0.0429523)
(-0.198042 -3.23081 0.0410668)
(-0.448249 -4.78981 0.0279071)
(-0.288702 -5.03666 0.0123526)
(0.00674983 0.182293 0.00203247)
(0.0410892 0.574013 -0.00969492)
(0.125826 0.988491 -0.0154524)
(0.248937 1.36105 -0.017926)
(0.342643 1.60072 -0.0160605)
(0.391709 1.71581 -0.0094245)
(0.43603 1.69329 -0.000249021)
(0.486539 1.56724 0.0140438)
(0.527123 1.4021 0.0293507)
(0.557904 1.20426 0.045338)
(0.578688 1.00904 0.0584692)
(0.590861 0.825802 0.0652466)
(0.580776 0.672996 0.0619671)
(0.542103 0.608323 0.0396281)
(0.556445 0.615038 -0.0329434)
(0.763918 0.614281 -0.19139)
(1.05928 0.611507 -0.338023)
(1.39217 0.656618 -0.273765)
(1.69338 0.795215 -0.199704)
(1.76074 0.900612 -0.425793)
(2.02302 0.911885 -0.569433)
(2.32082 0.737196 -0.549967)
(2.12881 0.55143 -0.287113)
(1.80841 0.638241 -0.11016)
(1.48848 0.648488 -0.206812)
(1.44408 0.23065 -0.145335)
(1.32601 -0.213676 0.0638413)
(0.885432 -0.274766 0.138323)
(0.486159 -0.184093 0.112088)
(0.422957 -0.151261 0.0730035)
(0.306423 -0.101742 0.04256)
(0.323803 -0.163307 0.0177342)
(0.207549 -0.170431 0.00492112)
(0.214449 -0.337616 -0.00179383)
(0.0591778 -0.436219 0.00902331)
(0.102021 -0.874474 0.0249605)
(-0.105876 -1.52086 0.0511853)
(-0.177676 -2.99989 0.0422108)
(-0.500946 -4.75371 0.0291647)
(-0.328805 -5.54186 0.0145916)
(0.0207654 0.15366 0.000775443)
(0.0329183 0.480665 -0.0104696)
(0.0687014 0.880028 -0.0180219)
(0.172659 1.19858 -0.0188906)
(0.286322 1.41485 -0.0195858)
(0.373329 1.53087 -0.0148746)
(0.409221 1.54483 -0.00888832)
(0.468717 1.43965 0.000398137)
(0.525037 1.31183 0.0100689)
(0.566412 1.14593 0.0215151)
(0.601973 0.984322 0.0313761)
(0.627695 0.828505 0.0374551)
(0.644159 0.693293 0.0382685)
(0.639964 0.592089 0.0305207)
(0.640847 0.525531 0.00684862)
(0.627962 0.466627 -0.0482944)
(0.595682 0.3425 -0.130918)
(0.571109 0.268422 -0.179854)
(0.634547 0.424183 -0.100469)
(0.809798 0.675595 0.041181)
(1.18629 0.85783 0.102997)
(1.44894 0.75327 0.107586)
(1.39453 0.406168 0.0576415)
(1.41399 0.195022 -0.00121678)
(1.4764 0.120612 -0.043437)
(1.54425 0.0255593 0.00335289)
(1.38189 -0.0795248 0.105993)
(1.0405 -0.112666 0.117362)
(0.666718 -0.0604504 0.0925123)
(0.583556 -0.0533092 0.0527913)
(0.420064 -0.0234619 0.0311408)
(0.435657 -0.0712021 0.0124386)
(0.298836 -0.078792 0.00433888)
(0.306556 -0.227376 0.00059089)
(0.128966 -0.315248 0.0121107)
(0.146519 -0.707257 0.0256996)
(-0.0476452 -1.3263 0.0498855)
(-0.107108 -2.77457 0.044127)
(-0.569206 -4.71701 0.0303771)
(-0.331868 -6.16546 0.0173618)
(-0.0197762 0.127234 -0.000398506)
(-0.0294882 0.505507 -0.0132917)
(-0.0242453 0.844058 -0.0195156)
(0.0307181 1.18997 -0.0222837)
(0.1824 1.36042 -0.0229366)
(0.338675 1.41819 -0.0202391)
(0.401774 1.44518 -0.0169018)
(0.462937 1.34153 -0.0103458)
(0.547785 1.23152 -0.0034914)
(0.605853 1.09046 0.00383947)
(0.6611 0.952595 0.0106371)
(0.702068 0.81748 0.0166618)
(0.737161 0.697223 0.0196726)
(0.756056 0.593943 0.0185866)
(0.773413 0.513016 0.0107357)
(0.79135 0.439253 -0.00523558)
(0.797194 0.392875 -0.0151567)
(0.725928 0.37749 -0.0163543)
(0.661215 0.417522 0.0113233)
(0.719508 0.431324 0.0466746)
(1.08041 0.409225 0.0626211)
(1.47358 0.34772 0.0659306)
(1.54888 0.276543 0.0478363)
(1.57019 0.238741 0.0113912)
(1.53119 0.207371 -0.015226)
(1.54199 0.097827 -0.00597383)
(1.42021 0.0366047 0.0411054)
(1.14774 -0.00833013 0.0551171)
(0.799068 0.0341104 0.0373903)
(0.750715 0.020095 0.0248072)
(0.593105 0.0597859 0.011037)
(0.61493 0.0134553 0.00164296)
(0.433673 0.0181958 -0.00220445)
(0.460099 -0.0958485 -0.000424348)
(0.251978 -0.163635 0.0065371)
(0.286314 -0.503093 0.0233329)
(0.0608377 -1.00788 0.037817)
(0.0627358 -2.47782 0.0465798)
(-0.570748 -4.57734 0.0290058)
(-0.257461 -6.76531 0.0194673)
(0.054547 0.258649 -0.00212253)
(-0.000159014 0.44186 -0.0145285)
(-0.100093 0.725604 -0.0209392)
(-0.0469823 0.945541 -0.0228949)
(-0.00186169 1.16854 -0.0249505)
(0.195317 1.17279 -0.0230987)
(0.33382 1.20468 -0.0222591)
(0.413628 1.12395 -0.0181091)
(0.534591 1.04088 -0.0141201)
(0.62264 0.932433 -0.00847647)
(0.707272 0.827034 -0.00384653)
(0.769233 0.722307 0.000411774)
(0.820907 0.629851 0.00286091)
(0.852546 0.546817 0.00359761)
(0.877078 0.477325 0.00256556)
(0.890198 0.407518 -0.00275142)
(0.884399 0.336417 -0.00802337)
(0.870941 0.273684 -0.0117523)
(0.90118 0.274566 -0.00142946)
(0.997797 0.270594 0.0165092)
(1.30932 0.287377 0.0250272)
(1.61331 0.251642 0.028195)
(1.64338 0.171745 0.0163556)
(1.70322 0.0980754 0.0012377)
(1.68327 0.0953752 -0.00891847)
(1.71618 0.0420982 -0.00418477)
(1.61138 0.0709091 0.00895026)
(1.40453 0.0418627 0.0172493)
(1.0576 0.12406 0.0111863)
(1.0226 0.106564 0.00272491)
(0.849094 0.166069 -0.00435301)
(0.906924 0.0936986 -0.00715419)
(0.725441 0.106686 -0.00782357)
(0.809185 -0.00450256 -0.00637576)
(0.552937 -0.0708085 0.0010797)
(0.674113 -0.357167 0.0119684)
(0.329582 -0.78234 0.0293183)
(0.457559 -2.08668 0.0321526)
(-0.261452 -4.38938 0.0324522)
(0.0094739 -7.29823 0.0212071)
(-0.23033 0.062952 -0.0066105)
(-0.315792 0.677856 -0.0210883)
(-0.306776 0.84898 -0.0247311)
(-0.274131 0.996624 -0.025378)
(-0.129391 1.02616 -0.0274554)
(0.0503925 1.04891 -0.0258346)
(0.229966 0.996724 -0.0274782)
(0.353789 0.937979 -0.0250671)
(0.508396 0.863284 -0.0235058)
(0.626931 0.78637 -0.0204772)
(0.744998 0.707715 -0.0169631)
(0.838377 0.629285 -0.0137868)
(0.919829 0.558504 -0.011961)
(0.97989 0.495113 -0.0102927)
(1.02501 0.442002 -0.00952115)
(1.05609 0.386436 -0.00932242)
(1.08287 0.334384 -0.00878543)
(1.10657 0.298942 -0.0074219)
(1.14443 0.294973 -0.00357829)
(1.26313 0.245905 -0.000129248)
(1.61112 0.234243 0.000278907)
(1.97101 0.193798 -0.00094998)
(2.03535 0.152612 -0.00636076)
(2.14934 0.110992 -0.0110307)
(2.12804 0.110968 -0.0146414)
(2.18163 0.060923 -0.0136135)
(2.07026 0.119219 -0.00833092)
(1.92003 0.0763891 -0.00533441)
(1.5674 0.154443 -0.00856208)
(1.60475 0.142778 -0.0119733)
(1.42804 0.215856 -0.0168831)
(1.56028 0.154291 -0.0182066)
(1.34969 0.166775 -0.0175114)
(1.51224 0.0464697 -0.0144679)
(1.19487 0.000496056 -0.0103255)
(1.38905 -0.217482 -0.000802758)
(0.944822 -0.484077 0.0114841)
(1.14841 -1.46372 0.022472)
(0.325164 -3.9043 0.0248402)
(0.485327 -7.21641 0.018926)
(-0.73114 0.800704 -0.0158456)
(-0.607813 0.39456 -0.0264569)
(-0.754882 0.570722 -0.0243476)
(-0.463659 0.586617 -0.0235441)
(-0.314469 0.604826 -0.0250195)
(-0.000615923 0.646061 -0.0252897)
(0.224123 0.623083 -0.0272417)
(0.44974 0.597772 -0.0270933)
(0.676205 0.558019 -0.0274816)
(0.882024 0.516884 -0.0265652)
(1.0801 0.470674 -0.0253467)
(1.25704 0.423773 -0.0235223)
(1.41439 0.381935 -0.0223671)
(1.5472 0.347351 -0.0213789)
(1.6507 0.323531 -0.0201658)
(1.74197 0.291009 -0.0190066)
(1.82965 0.250374 -0.0188166)
(1.95903 0.222095 -0.0195898)
(2.11268 0.21582 -0.0191284)
(2.37648 0.147999 -0.0176423)
(2.7929 0.136315 -0.0162052)
(3.24749 0.0943338 -0.0164249)
(3.35197 0.0486698 -0.0185549)
(3.51693 0.0030299 -0.0213066)
(3.46501 0.00895476 -0.0236627)
(3.57393 -0.0145778 -0.0216539)
(3.41947 0.0545738 -0.0199948)
(3.36062 0.0457744 -0.0180523)
(2.96258 0.122087 -0.0204247)
(3.11895 0.136295 -0.0226302)
(2.89865 0.197627 -0.0240597)
(3.20108 0.146531 -0.0244263)
(2.91048 0.122285 -0.0225059)
(3.24411 0.0372572 -0.0202967)
(2.77227 -0.0220759 -0.0153917)
(3.12673 -0.21071 -0.0111644)
(2.46525 -0.491126 -0.0041904)
(2.8361 -1.13849 0.0032131)
(1.86013 -3.17104 0.0117157)
(1.32076 -6.11506 0.011292)
(1.16526 1.49292 -0.00384578)
(1.73309 0.741383 -0.00758623)
(2.47382 0.585188 -0.00746122)
(2.88563 0.360391 -0.00554846)
(3.16638 0.281433 -0.00510285)
(3.40874 0.226824 -0.00355421)
(3.62719 0.206321 -0.00413352)
(3.84012 0.184543 -0.0039027)
(4.06624 0.170269 -0.00470065)
(4.29844 0.156361 -0.0050029)
(4.51959 0.142053 -0.00539904)
(4.73319 0.127425 -0.00561758)
(4.91342 0.113912 -0.00621837)
(5.07383 0.102456 -0.00629385)
(5.1853 0.0967292 -0.006053)
(5.29866 0.0917672 -0.00539982)
(5.41308 0.0743725 -0.00611068)
(5.60959 0.0590883 -0.00752157)
(5.83733 0.0771021 -0.00943233)
(6.2711 0.0626852 -0.0112556)
(6.69498 0.0428331 -0.0121327)
(7.20097 0.0220791 -0.0133731)
(7.27683 0.00492267 -0.0155833)
(7.36835 -0.0304217 -0.0155043)
(7.198 -0.0262502 -0.0151337)
(7.21362 -0.0456242 -0.0129477)
(6.86162 -0.0313011 -0.0116484)
(6.83385 -0.0207703 -0.00994868)
(6.34565 0.0128522 -0.0111353)
(6.57632 0.0279778 -0.0127895)
(6.32216 0.0627431 -0.0141023)
(6.75293 0.0658975 -0.014468)
(6.4434 0.0456045 -0.0135493)
(6.83708 0.0161913 -0.0115997)
(6.29994 -0.0178249 -0.00992763)
(6.52551 -0.103759 -0.00741735)
(5.64526 -0.264621 -0.00469214)
(5.68022 -0.587456 -0.00205415)
(4.25635 -1.14985 0.00234493)
(2.77847 -2.54012 0.00465176)
(0.000760436 -0.00319343 0.000430647)
(0.0200229 -0.00742803 -0.000609162)
(0.0455344 -0.00790316 -0.00110306)
(0.0636281 -0.00758575 -0.00194467)
(0.0728169 -0.00662149 -0.00230248)
(0.0719867 -0.00590868 -0.00349608)
(0.0523843 0.00222692 -0.00177041)
(0.0249189 0.0104577 -0.00255542)
(-0.00380351 0.0223634 -0.00153966)
(-0.0535021 0.0227788 -0.00276954)
(-0.111695 0.0138707 -0.00265174)
(-0.178528 0.00458708 -0.00303909)
(-0.255818 -0.00340609 -0.00315731)
(-0.345335 -0.00180046 -0.0036303)
(-0.432345 0.0117733 -0.00513908)
(-0.536643 0.0111846 -0.00514325)
(-0.657669 -0.000406801 -0.0116152)
(-0.811933 -0.00110398 -0.0150493)
(-0.90274 -0.00789008 -0.020204)
(-1.09306 -0.00278868 -0.0238377)
(-1.03886 0.032044 -0.0279496)
(-0.836703 0.025688 -0.0289327)
(-0.81302 0.0248006 -0.0287315)
(-0.796276 0.0117989 -0.0299471)
(-0.788056 -0.0208054 -0.0335698)
(-0.736305 -0.0466166 -0.0367095)
(-0.661876 -0.0674263 -0.0400544)
(-0.532601 -0.0843935 -0.04354)
(-0.377393 -0.105519 -0.0463864)
(-0.180759 -0.109946 -0.0485298)
(0.00232389 -0.109178 -0.0474349)
(0.247044 -0.0287213 -0.044523)
(0.4823 -0.0511431 -0.0402774)
(0.568036 0.0110085 -0.0319779)
(0.53959 0.0410723 -0.0226913)
(0.421206 0.0477272 -0.0148704)
(0.273778 0.0322672 -0.00926606)
(0.146668 0.0165428 -0.00509806)
(0.0510914 0.00283648 -0.00276769)
(0.00115779 -0.0069088 -0.000980205)
(0.0060423 -0.0277387 -0.00108441)
(0.0396155 -0.047664 -0.00388318)
(0.07671 -0.0500377 -0.00517879)
(0.0993943 -0.0405595 -0.0066654)
(0.105179 -0.0234386 -0.00717125)
(0.0934758 -0.0210135 -0.00827943)
(0.0461259 -0.00122384 -0.0075391)
(-0.0288539 0.0331689 -0.00611535)
(-0.141159 0.0537052 -0.00796436)
(-0.313486 0.0636021 -0.00904413)
(-0.501618 0.0901947 -0.0090274)
(-0.706303 0.12016 -0.00986251)
(-0.922966 0.151 -0.0104703)
(-1.14953 0.181278 -0.0119866)
(-1.38918 0.18644 -0.0139426)
(-1.63564 0.150471 -0.0187273)
(-1.84955 0.107669 -0.0235737)
(-2.06098 0.0751492 -0.0286003)
(-2.20481 0.0478479 -0.0333773)
(-2.34553 0.0303041 -0.0362954)
(-2.15691 0.0429314 -0.0387773)
(-1.86765 -0.00727203 -0.0353991)
(-1.72971 -0.0542322 -0.0307675)
(-1.6352 -0.155839 -0.0340631)
(-1.55396 -0.250416 -0.0347785)
(-1.42093 -0.334693 -0.0357076)
(-1.28012 -0.401172 -0.0370903)
(-1.09811 -0.447841 -0.0373461)
(-0.889153 -0.476111 -0.0387122)
(-0.638705 -0.489581 -0.0389002)
(-0.365485 -0.463831 -0.0402219)
(-0.093187 -0.365413 -0.038046)
(0.220502 -0.261506 -0.0366104)
(0.500761 -0.121949 -0.0330774)
(0.600543 0.0186825 -0.029914)
(0.574957 0.113026 -0.0221187)
(0.451179 0.140103 -0.0162787)
(0.289705 0.122846 -0.0111619)
(0.12701 0.0850459 -0.00666895)
(0.0208072 0.0328233 -0.00222076)
(0.00852322 -0.0643321 -0.00335311)
(0.0426424 -0.104688 -0.00726902)
(0.0746339 -0.098799 -0.00910128)
(0.0887321 -0.0761678 -0.0105966)
(0.057779 -0.0385149 -0.0109431)
(-0.00105149 0.00936809 -0.0138375)
(-0.088938 0.062562 -0.0120593)
(-0.257574 0.135868 -0.0122105)
(-0.494631 0.210578 -0.0113465)
(-0.75781 0.281032 -0.0113349)
(-1.03919 0.354585 -0.0106529)
(-1.33561 0.407153 -0.0105388)
(-1.61642 0.43642 -0.0109832)
(-1.89322 0.410997 -0.0118829)
(-2.14665 0.34605 -0.0148144)
(-2.35795 0.275847 -0.0166906)
(-2.51464 0.212921 -0.0180045)
(-2.66655 0.151465 -0.0184073)
(-2.7595 0.106298 -0.0183016)
(-2.81527 0.0447792 -0.0162675)
(-2.54975 0.0190011 -0.0155895)
(-2.22928 -0.0747044 -0.0115194)
(-2.08279 -0.197986 -0.0107596)
(-1.96218 -0.345505 -0.0100167)
(-1.8686 -0.481195 -0.00917516)
(-1.73431 -0.618531 -0.00923763)
(-1.59771 -0.73558 -0.00954111)
(-1.43049 -0.824683 -0.0098752)
(-1.26877 -0.87091 -0.00988609)
(-1.06342 -0.868214 -0.0101117)
(-0.837772 -0.825985 -0.0115848)
(-0.580884 -0.737335 -0.0123596)
(-0.285887 -0.549161 -0.0169583)
(0.0166145 -0.348449 -0.0171605)
(0.259872 -0.103108 -0.018873)
(0.3719 0.103936 -0.0167208)
(0.351859 0.200606 -0.0157558)
(0.25276 0.221747 -0.0121119)
(0.117861 0.17627 -0.00837647)
(0.0186414 0.0836526 -0.00280803)
(0.0077595 -0.100405 -0.0051364)
(0.037634 -0.152477 -0.0103528)
(0.0412347 -0.140362 -0.0122002)
(0.00972043 -0.0727444 -0.0156459)
(-0.0503574 0.00505837 -0.0145189)
(-0.166038 0.124861 -0.0159063)
(-0.348564 0.24259 -0.0147153)
(-0.602242 0.385158 -0.0123461)
(-0.924666 0.516295 -0.00977705)
(-1.26523 0.610221 -0.00790091)
(-1.57122 0.653826 -0.00652743)
(-1.85009 0.655597 -0.00555345)
(-2.11344 0.59713 -0.0048689)
(-2.3452 0.504497 -0.00534178)
(-2.51612 0.413015 -0.00397397)
(-2.64108 0.333017 -0.00349338)
(-2.72251 0.26083 -0.00176788)
(-2.79859 0.19514 -0.00023292)
(-2.82283 0.143744 0.00168966)
(-2.79791 0.0605839 0.00459405)
(-2.52247 0.018428 0.00598919)
(-2.23429 -0.102841 0.00734607)
(-2.10071 -0.267163 0.00706165)
(-2.0114 -0.422364 0.00704942)
(-1.94933 -0.59024 0.00651959)
(-1.85344 -0.771757 0.00569168)
(-1.7517 -0.9421 0.00443435)
(-1.61467 -1.09129 0.00371914)
(-1.47096 -1.19151 0.00216862)
(-1.32164 -1.21835 0.00189142)
(-1.16606 -1.16337 0.000531291)
(-0.981624 -1.03349 -0.000220399)
(-0.763482 -0.855326 -0.00467407)
(-0.470422 -0.606609 -0.00811785)
(-0.151323 -0.289594 -0.0124002)
(0.0649455 0.00163342 -0.0152823)
(0.143557 0.186816 -0.0135403)
(0.134484 0.260694 -0.01202)
(0.062779 0.228567 -0.00832965)
(0.00853117 0.113067 -0.00327668)
(0.00725232 -0.13536 -0.00755988)
(0.00616068 -0.185277 -0.0147604)
(-0.0202943 -0.134481 -0.0165766)
(-0.0941644 -0.00802986 -0.0184353)
(-0.225678 0.150178 -0.0183845)
(-0.417961 0.330943 -0.0174285)
(-0.6644 0.520026 -0.0134457)
(-0.957745 0.684546 -0.00860554)
(-1.29727 0.807521 -0.00412229)
(-1.61415 0.856994 -0.00126134)
(-1.89611 0.833973 0.00112522)
(-2.15396 0.756662 0.00220757)
(-2.35949 0.656466 0.0029955)
(-2.50191 0.561093 0.0042622)
(-2.59115 0.47364 0.0054738)
(-2.63719 0.383147 0.00677791)
(-2.64553 0.306207 0.00916497)
(-2.65451 0.229607 0.0124374)
(-2.63162 0.18103 0.0149252)
(-2.56433 0.0931887 0.0168239)
(-2.29883 0.0438371 0.0159914)
(-2.0577 -0.0879054 0.0137696)
(-1.96656 -0.262558 0.0116728)
(-1.9121 -0.44643 0.0108922)
(-1.88323 -0.638881 0.00999135)
(-1.83522 -0.857716 0.00872931)
(-1.78119 -1.07769 0.00746761)
(-1.6923 -1.29102 0.00630864)
(-1.58816 -1.46374 0.00558347)
(-1.45138 -1.57136 0.00546927)
(-1.32261 -1.56843 0.00396658)
(-1.21618 -1.46087 0.00370292)
(-1.10907 -1.21259 0.000646974)
(-0.865082 -0.912351 -0.00327084)
(-0.507274 -0.549635 -0.00974284)
(-0.197626 -0.169055 -0.0124131)
(-0.0289947 0.10744 -0.0151308)
(0.0194749 0.242111 -0.0120883)
(0.00937941 0.239605 -0.00938305)
(-0.00260718 0.116621 -0.00416158)
(0.00141254 -0.152484 -0.0109451)
(-0.0246258 -0.173035 -0.0186731)
(-0.107782 -0.0559065 -0.0216967)
(-0.24102 0.144257 -0.0217445)
(-0.431155 0.372061 -0.019715)
(-0.660083 0.612688 -0.0148785)
(-0.916526 0.806151 -0.00817847)
(-1.19749 0.963364 -0.0015929)
(-1.52451 0.989991 0.00368629)
(-1.85347 0.940153 0.00712102)
(-2.10303 0.861051 0.00714526)
(-2.27401 0.774955 0.00921384)
(-2.38668 0.694412 0.0109727)
(-2.45982 0.602666 0.0119104)
(-2.4854 0.495922 0.0125516)
(-2.4775 0.387445 0.0122889)
(-2.43946 0.305319 0.0122995)
(-2.3901 0.2533 0.0132761)
(-2.3128 0.217622 0.0155911)
(-2.20639 0.134067 0.0180107)
(-1.95474 0.0811296 0.0167608)
(-1.76163 -0.0521006 0.0143147)
(-1.7016 -0.22689 0.0120926)
(-1.67931 -0.412964 0.0115135)
(-1.6808 -0.614043 0.0103771)
(-1.67728 -0.846103 0.00931991)
(-1.67552 -1.09569 0.00798747)
(-1.65167 -1.35688 0.00696071)
(-1.61077 -1.60397 0.00584628)
(-1.53139 -1.79705 0.00584165)
(-1.42858 -1.90157 0.00576092)
(-1.29911 -1.87104 0.00528913)
(-1.26755 -1.7041 0.0038846)
(-1.1704 -1.30199 0.000879929)
(-0.823173 -0.885826 -0.00446876)
(-0.4317 -0.416727 -0.0109842)
(-0.167059 -0.0365276 -0.0116394)
(-0.0495198 0.179883 -0.0127213)
(-0.0179301 0.214045 -0.00886714)
(-0.00561665 0.104448 -0.00440179)
(-0.00363194 -0.143871 -0.013842)
(-0.0694744 -0.0962346 -0.0228262)
(-0.196181 0.0872154 -0.0245309)
(-0.380956 0.357029 -0.0225743)
(-0.596202 0.631681 -0.0172632)
(-0.827749 0.868018 -0.00947984)
(-1.06414 1.0391 -0.00128431)
(-1.39033 1.05995 0.00557157)
(-1.73774 0.972387 0.00729433)
(-1.9648 0.909461 0.0103129)
(-2.11174 0.872395 0.0133752)
(-2.21707 0.824225 0.0150188)
(-2.28796 0.748026 0.0151872)
(-2.32433 0.641634 0.0138696)
(-2.31879 0.523028 0.0113024)
(-2.25354 0.401336 0.00906536)
(-2.13025 0.302122 0.011756)
(-2.01336 0.216908 0.0174958)
(-1.92603 0.197146 0.0193042)
(-1.81509 0.164177 0.0206101)
(-1.58413 0.139557 0.0171481)
(-1.43466 -0.0187986 0.0138694)
(-1.40524 -0.176978 0.0116751)
(-1.3988 -0.362256 0.0106628)
(-1.41826 -0.560803 0.00948271)
(-1.44114 -0.792688 0.00817013)
(-1.47582 -1.05154 0.00673972)
(-1.50414 -1.33795 0.00539618)
(-1.52748 -1.63262 0.00423686)
(-1.52256 -1.90608 0.00364656)
(-1.48063 -2.11111 0.00377547)
(-1.3911 -2.18612 0.00419491)
(-1.28481 -2.12926 0.00395047)
(-1.27225 -1.82711 0.00312404)
(-1.08392 -1.32041 -0.00145859)
(-0.649588 -0.774609 -0.00682014)
(-0.267528 -0.260295 -0.0140992)
(-0.0837038 0.0726846 -0.0138998)
(-0.0232265 0.165431 -0.0110673)
(-0.000633765 0.0826644 -0.00556927)
(0.000719991 -0.087153 -0.0172964)
(-0.0989958 0.0245146 -0.0265153)
(-0.282549 0.273178 -0.0267539)
(-0.479932 0.579161 -0.0212505)
(-0.70108 0.848091 -0.0129609)
(-0.922162 1.04049 -0.00335693)
(-1.2484 1.08727 0.00458135)
(-1.5637 0.992469 0.00745043)
(-1.77177 0.956749 0.0124835)
(-1.9138 0.961661 0.0159606)
(-2.00743 0.938617 0.0183614)
(-2.06903 0.884958 0.0188375)
(-2.10865 0.794326 0.0176822)
(-2.11947 0.666146 0.0147159)
(-2.08263 0.48306 0.011596)
(-2.0001 0.29066 0.00640758)
(-1.87284 0.178316 -0.00156788)
(-1.69362 0.203692 -0.00218935)
(-1.50206 0.264931 0.00329495)
(-1.35702 0.280172 0.0146292)
(-1.22409 0.232487 0.0148391)
(-1.13343 0.0264248 0.0126702)
(-1.11194 -0.121405 0.0116671)
(-1.12166 -0.298188 0.0109417)
(-1.14546 -0.484688 0.00971863)
(-1.18071 -0.702108 0.00846112)
(-1.23267 -0.95154 0.00678495)
(-1.29207 -1.23807 0.00518751)
(-1.36031 -1.55468 0.00356977)
(-1.41672 -1.87836 0.00252025)
(-1.45 -2.17124 0.00213376)
(-1.42947 -2.37086 0.00277135)
(-1.34836 -2.41353 0.00288615)
(-1.28601 -2.27605 0.00355359)
(-1.2041 -1.82049 0.00220659)
(-0.872005 -1.19373 -0.00139519)
(-0.382796 -0.548725 -0.00669362)
(-0.102931 -0.044428 -0.00783194)
(-0.019337 0.0961621 -0.00868846)
(0.00279368 0.0682503 -0.00430464)
(-0.0151406 -0.0187695 -0.0186997)
(-0.140037 0.143907 -0.0284039)
(-0.332782 0.423148 -0.0262579)
(-0.54557 0.719945 -0.0180951)
(-0.772964 0.945861 -0.00794666)
(-1.06514 1.05997 0.00133411)
(-1.35938 1.01101 0.00694589)
(-1.5635 1.01044 0.0127111)
(-1.70667 1.02924 0.0168816)
(-1.77973 1.02359 0.0199935)
(-1.82318 0.994806 0.0214317)
(-1.86457 0.934001 0.0205266)
(-1.91414 0.832919 0.016355)
(-1.98173 0.669443 0.0088924)
(-2.00792 0.480903 -0.00415693)
(-1.83299 0.308415 -0.0145234)
(-1.44595 0.100386 0.00851353)
(-1.14694 -0.0354319 0.0352764)
(-1.07851 0.0742077 0.0392064)
(-1.08876 0.363159 0.0355168)
(-1.04177 0.388676 0.0217946)
(-0.932663 0.108864 0.0147534)
(-0.888586 -0.067047 0.012491)
(-0.89573 -0.23091 0.0115789)
(-0.912452 -0.412438 0.0101647)
(-0.945373 -0.610101 0.00878291)
(-0.997058 -0.842745 0.00695538)
(-1.06376 -1.11324 0.00506693)
(-1.14978 -1.42755 0.00313209)
(-1.24069 -1.77275 0.00159522)
(-1.32453 -2.12269 0.000608418)
(-1.37231 -2.42013 0.000907718)
(-1.35781 -2.59851 0.00117035)
(-1.28149 -2.58217 0.0021581)
(-1.21304 -2.29638 0.00234896)
(-1.01143 -1.67393 0.00105832)
(-0.522247 -0.909951 -0.00387487)
(-0.160827 -0.276398 -0.00871951)
(-0.0502895 0.0484664 -0.0100714)
(0.017701 0.0565849 -0.00513188)
(-0.0288572 0.046921 -0.0200966)
(-0.177128 0.276355 -0.0294637)
(-0.382797 0.560782 -0.0254027)
(-0.584906 0.8192 -0.0151259)
(-0.828513 1.00068 -0.00394925)
(-1.11034 1.04258 0.00463721)
(-1.34758 1.05578 0.0111008)
(-1.48975 1.08182 0.0158643)
(-1.55789 1.08823 0.0203542)
(-1.57545 1.073 0.022513)
(-1.59601 1.05052 0.0239574)
(-1.64815 1.01349 0.0216098)
(-1.75372 0.939412 0.0146738)
(-1.83329 0.791181 0.00727508)
(-1.5926 0.38332 0.022226)
(-1.0258 -0.165573 0.0556828)
(-0.637602 -0.408584 0.0512266)
(-0.651582 0.0037841 0.0555712)
(-0.886454 0.453419 0.0468315)
(-1.03173 0.718132 0.0405298)
(-0.942579 0.50615 0.0215864)
(-0.805022 0.0865955 0.0126579)
(-0.746266 -0.0452959 0.0130924)
(-0.727419 -0.1805 0.0135271)
(-0.737733 -0.348541 0.0114337)
(-0.756325 -0.523395 0.0100472)
(-0.799552 -0.734108 0.00778541)
(-0.857953 -0.979063 0.00565116)
(-0.943081 -1.27441 0.00335918)
(-1.04433 -1.61685 0.00142018)
(-1.1562 -1.99472 3.18811e-05)
(-1.25085 -2.36506 -0.000340062)
(-1.29865 -2.6588 -3.20594e-05)
(-1.27378 -2.78706 0.00102781)
(-1.18353 -2.66026 0.0022663)
(-1.05159 -2.17783 0.00206073)
(-0.71531 -1.35363 0.000544662)
(-0.223185 -0.570285 -0.00441006)
(-0.036514 -0.0456137 -0.00318918)
(-0.00928173 0.0316393 -0.00275511)
(-0.0306747 0.120294 -0.0201085)
(-0.190401 0.411237 -0.0293266)
(-0.400628 0.699693 -0.0239738)
(-0.603185 0.939554 -0.0123205)
(-0.865862 1.07457 -0.000837742)
(-1.11627 1.09807 0.00769716)
(-1.28202 1.1243 0.0138344)
(-1.34842 1.13744 0.0188679)
(-1.35561 1.1273 0.022758)
(-1.32675 1.11159 0.0252527)
(-1.31351 1.12804 0.0268951)
(-1.35999 1.13831 0.0237425)
(-1.40824 1.04471 0.0206068)
(-1.14296 0.610537 0.0554081)
(-0.240142 -0.127771 0.114599)
(0.344776 -0.320479 0.05758)
(0.103811 0.15224 -0.0398404)
(-0.407258 0.567295 -0.0837129)
(-0.675855 0.758008 -0.0565252)
(-0.666229 0.874297 -0.00984441)
(-0.566229 0.574687 -0.00371962)
(-0.544988 0.105896 0.00423988)
(-0.593597 -0.0343326 0.0121974)
(-0.58606 -0.143717 0.0137374)
(-0.602858 -0.300199 0.0125554)
(-0.612537 -0.457521 0.0109363)
(-0.64541 -0.647444 0.00854552)
(-0.688308 -0.865338 0.00609129)
(-0.759493 -1.13193 0.00359789)
(-0.852006 -1.45274 0.00128396)
(-0.96872 -1.83068 -0.000426732)
(-1.08663 -2.23926 -0.00143472)
(-1.17979 -2.62214 -0.00154126)
(-1.20816 -2.88536 -0.000471694)
(-1.1508 -2.9147 0.000805121)
(-1.01748 -2.60622 0.00176734)
(-0.787531 -1.85546 0.000584609)
(-0.347197 -0.865007 -0.00141106)
(-0.0567912 -0.171576 -0.0053377)
(-0.0114953 0.020293 -0.00344479)
(-0.0300717 0.203456 -0.0198067)
(-0.19198 0.548912 -0.0289006)
(-0.401582 0.839008 -0.0227927)
(-0.618455 1.05486 -0.010534)
(-0.87339 1.14231 0.00161286)
(-1.06192 1.16807 0.00932942)
(-1.15644 1.18275 0.0155516)
(-1.16151 1.16615 0.0198511)
(-1.11592 1.13707 0.0244395)
(-1.01858 1.12704 0.0267962)
(-0.947438 1.18573 0.0325151)
(-0.955968 1.20928 0.03595)
(-0.747114 0.890677 0.0679016)
(0.225932 0.0515968 0.140832)
(0.85283 -0.371462 0.0342449)
(0.200067 -0.0246032 -0.151683)
(-0.730394 0.536012 -0.195091)
(-0.881293 0.392031 -0.0920921)
(-0.849599 0.332288 -0.0171922)
(-0.877193 0.655163 0.0366294)
(-0.562293 0.680122 0.0545257)
(-0.460347 0.291858 0.0424346)
(-0.522031 0.076505 0.0266104)
(-0.492255 -0.064929 0.0225999)
(-0.515124 -0.235603 0.017052)
(-0.512811 -0.394446 0.0135407)
(-0.536189 -0.573595 0.00991019)
(-0.561552 -0.770794 0.00677264)
(-0.614397 -1.008 0.00393104)
(-0.688902 -1.29831 0.00128392)
(-0.795724 -1.65731 -0.000749135)
(-0.918274 -2.07689 -0.00217003)
(-1.03516 -2.5168 -0.00251598)
(-1.10813 -2.89161 -0.00152749)
(-1.1001 -3.08175 0.000230425)
(-0.983117 -2.94192 0.0014102)
(-0.781752 -2.35292 0.00192451)
(-0.41948 -1.29416 1.92328e-05)
(-0.0809433 -0.354851 -0.000568325)
(-0.0258004 -0.0150231 -0.000810718)
(-0.0249297 0.277912 -0.0188131)
(-0.179691 0.674341 -0.0278241)
(-0.392084 0.96585 -0.0215679)
(-0.62217 1.14332 -0.0090259)
(-0.843413 1.21402 0.00282531)
(-0.970128 1.23392 0.010431)
(-1.01181 1.21531 0.0162825)
(-0.966235 1.16518 0.0208201)
(-0.863135 1.10753 0.0258892)
(-0.676765 1.09377 0.0314927)
(-0.542999 1.23466 0.0449642)
(-0.569962 1.17164 0.0779423)
(0.178409 0.527586 0.135155)
(0.910929 -0.321002 -0.011322)
(-0.0776274 0.173065 -0.223882)
(-1.51713 0.539491 -0.226285)
(-1.82316 0.155352 -0.125594)
(-1.6268 -0.00119345 -0.0166901)
(-1.76135 0.435685 0.0384996)
(-1.53222 0.782371 0.0778485)
(-0.746501 0.652524 0.0794487)
(-0.50289 0.312391 0.0611794)
(-0.534142 0.14467 0.0413358)
(-0.476487 -0.0257264 0.034143)
(-0.48139 -0.190304 0.0237848)
(-0.459439 -0.356152 0.0171158)
(-0.466651 -0.524664 0.0118032)
(-0.47243 -0.706817 0.00746499)
(-0.504053 -0.91552 0.00415948)
(-0.555808 -1.17148 0.00116092)
(-0.64365 -1.49782 -0.00126618)
(-0.756426 -1.9045 -0.00308617)
(-0.879738 -2.36994 -0.0035978)
(-0.979806 -2.82483 -0.00256912)
(-1.01456 -3.15098 -0.000892458)
(-0.946664 -3.18587 0.0007603)
(-0.758303 -2.7711 0.00058906)
(-0.471411 -1.7792 -0.000151372)
(-0.11226 -0.614059 -0.00367863)
(-0.00960222 -0.0824297 -0.00249014)
(-0.0185679 0.344957 -0.0176851)
(-0.160425 0.793864 -0.0267655)
(-0.385195 1.07877 -0.0207266)
(-0.602337 1.22669 -0.00861275)
(-0.775873 1.29862 0.00292304)
(-0.860848 1.28892 0.00974132)
(-0.859578 1.23093 0.0152314)
(-0.776214 1.13238 0.0189622)
(-0.615023 1.02087 0.0254471)
(-0.295197 1.02165 0.0323647)
(-0.372362 1.26481 0.0833438)
(-0.16686 1.05072 0.142829)
(0.582492 0.22613 0.0235255)
(-0.41549 0.558532 -0.193158)
(-1.88299 0.905549 -0.289477)
(-1.75837 0.326273 -0.198716)
(-1.34699 -0.0292338 -0.0483921)
(-1.7093 0.254193 -0.06194)
(-1.9334 0.475667 -0.0539236)
(-1.26272 0.300329 0.0066784)
(-0.525879 0.262503 0.0457349)
(-0.46836 0.319208 0.0605506)
(-0.495081 0.187474 0.0498463)
(-0.45297 -0.0170312 0.0389213)
(-0.448893 -0.165529 0.0298338)
(-0.423237 -0.33538 0.0205733)
(-0.417058 -0.4954 0.0139064)
(-0.409262 -0.665802 0.00791304)
(-0.421974 -0.850408 0.00419151)
(-0.453866 -1.07382 0.000832451)
(-0.521172 -1.36347 -0.00193295)
(-0.618462 -1.74375 -0.00411087)
(-0.737042 -2.21227 -0.0046531)
(-0.850895 -2.71934 -0.00352925)
(-0.916775 -3.15609 -0.00137909)
(-0.892256 -3.3536 0.000506518)
(-0.741553 -3.11431 0.00107466)
(-0.480221 -2.25127 -6.44704e-06)
(-0.128121 -0.92785 -0.00165102)
(-0.00401235 -0.147794 -0.00179653)
(-0.0101411 0.391622 -0.0162937)
(-0.147727 0.88926 -0.0255119)
(-0.370433 1.1661 -0.019834)
(-0.559524 1.31221 -0.00898631)
(-0.70063 1.36783 0.00204402)
(-0.758573 1.32105 0.007904)
(-0.736369 1.21579 0.0128819)
(-0.63815 1.05921 0.0153094)
(-0.413808 0.85712 0.020615)
(-0.169823 1.02829 0.0510256)
(-0.521382 1.34405 0.166449)
(0.0791488 1.16378 0.141409)
(-0.228356 1.16089 -0.0964977)
(-1.42918 1.21706 -0.326439)
(-0.914221 0.145729 -0.266456)
(-0.30332 -0.487373 -0.0186299)
(-1.04851 -0.0217087 -0.0583053)
(-2.32247 0.346602 -0.117853)
(-1.9062 -0.112096 0.035282)
(-1.03367 -0.177468 0.0993951)
(-0.749053 0.241851 0.0819775)
(-0.657932 0.462691 0.0963718)
(-0.535312 0.259884 0.0701888)
(-0.478555 0.00553839 0.0473892)
(-0.433566 -0.145236 0.037565)
(-0.4038 -0.323726 0.0253065)
(-0.38168 -0.48124 0.0167612)
(-0.361294 -0.643661 0.00868998)
(-0.357804 -0.808312 0.00422424)
(-0.373364 -1.00219 0.000498901)
(-0.422595 -1.25337 -0.00276117)
(-0.5025 -1.59822 -0.00527228)
(-0.61045 -2.05105 -0.0060265)
(-0.727746 -2.58684 -0.00477796)
(-0.813601 -3.10813 -0.00223625)
(-0.826334 -3.4501 0.000153065)
(-0.711007 -3.38449 0.000745267)
(-0.482779 -2.66786 2.46103e-06)
(-0.138379 -1.28945 -0.00171314)
(0.0260282 -0.194531 -0.00223667)
(-0.00583176 0.429633 -0.0149985)
(-0.134695 0.975156 -0.0241788)
(-0.340486 1.26892 -0.0199335)
(-0.502601 1.40802 -0.0103874)
(-0.625133 1.44263 -0.000973034)
(-0.672161 1.34911 0.00269694)
(-0.646694 1.2031 0.00708072)
(-0.572636 0.956125 0.00406513)
(-0.262661 0.766492 0.0124429)
(-0.482936 1.12914 0.0899033)
(-0.239347 1.68709 0.244051)
(0.162187 1.81629 0.109072)
(-0.259844 1.43895 -0.146089)
(0.302021 0.0690019 -0.315187)
(0.525023 -0.886157 0.0817514)
(-0.269083 0.206147 0.0298727)
(-2.41424 1.33623 -0.298941)
(-3.18063 0.559007 -0.0964387)
(-2.02815 -0.272206 0.200225)
(-1.49654 0.00139345 0.144349)
(-1.21031 0.215765 0.0979228)
(-0.909949 0.310779 0.0964162)
(-0.610549 0.1505 0.0738206)
(-0.515073 -0.023195 0.0503908)
(-0.425276 -0.166108 0.0425034)
(-0.391241 -0.330769 0.0287553)
(-0.350751 -0.480912 0.0190572)
(-0.31883 -0.63367 0.00923216)
(-0.301503 -0.783887 0.00420812)
(-0.305353 -0.954093 -6.25014e-05)
(-0.340502 -1.17147 -0.00364116)
(-0.405193 -1.47888 -0.00672436)
(-0.502677 -1.90688 -0.00755287)
(-0.620227 -2.45393 -0.00623151)
(-0.718644 -3.03979 -0.0029335)
(-0.756018 -3.51019 -0.000124994)
(-0.673698 -3.60879 0.00122254)
(-0.469536 -3.05522 0.000319783)
(-0.145051 -1.66973 -0.00118091)
(0.052977 -0.273109 -0.00220572)
(-0.00620484 0.443893 -0.0136128)
(-0.115214 1.0453 -0.0230756)
(-0.30254 1.36229 -0.0200864)
(-0.447948 1.48805 -0.0123407)
(-0.565566 1.49819 -0.00400364)
(-0.614748 1.3541 -0.00494644)
(-0.617523 1.18567 -0.00173597)
(-0.577016 0.810393 -0.0146511)
(-0.377901 0.814989 0.0140074)
(-0.779571 1.21037 0.113265)
(0.0188501 2.0597 0.25043)
(0.300249 1.85616 0.178525)
(0.715884 0.139832 -0.0899583)
(0.146096 -0.573771 -0.130878)
(-1.07345 0.00066584 0.00837669)
(-2.37503 1.57012 -0.448952)
(-4.0094 1.67636 -0.584468)
(-2.52624 0.218477 -0.129111)
(-1.68888 -0.240406 0.0839095)
(-1.24633 -0.127253 0.0567858)
(-1.00521 -0.109805 0.0467932)
(-0.748641 0.044105 0.0737429)
(-0.521576 -0.0135711 0.0623065)
(-0.452625 -0.0831705 0.0523031)
(-0.388144 -0.209389 0.044434)
(-0.354365 -0.348234 0.0312134)
(-0.310149 -0.485578 0.0212238)
(-0.273465 -0.623445 0.010348)
(-0.249369 -0.760859 0.00415717)
(-0.246195 -0.911901 -0.00073265)
(-0.271619 -1.09554 -0.00459245)
(-0.321833 -1.36176 -0.00812877)
(-0.404774 -1.75274 -0.00934604)
(-0.517015 -2.2999 -0.00795367)
(-0.628495 -2.93843 -0.00405718)
(-0.691349 -3.52382 -0.000309159)
(-0.642356 -3.78383 0.00130234)
(-0.463178 -3.38737 0.000660527)
(-0.161345 -2.0235 -0.00129329)
(0.0590688 -0.320974 -0.00263632)
(0.00265067 0.466622 -0.0125079)
(-0.0805613 1.12297 -0.0220146)
(-0.263316 1.47044 -0.0205843)
(-0.399194 1.58933 -0.0149909)
(-0.528502 1.58234 -0.0079803)
(-0.574661 1.3977 -0.013607)
(-0.661481 1.217 -0.00977365)
(-0.61739 0.75764 -0.0450913)
(-0.868974 0.93482 0.0231201)
(-0.664282 1.43338 0.0968789)
(-0.187569 2.21322 0.0696849)
(0.163318 1.4568 0.214)
(-0.346945 0.533027 -0.181453)
(-1.87072 0.57821 -0.177405)
(-1.27911 0.128334 -0.246218)
(-2.44667 1.23227 -0.901086)
(-2.49833 0.632968 -0.583236)
(-0.996568 -0.709565 -0.0938208)
(-1.02746 -0.594953 0.0437409)
(-0.669055 -0.356886 0.0571106)
(-0.660257 -0.151439 0.0443672)
(-0.548402 -0.0344583 0.0632228)
(-0.400477 -0.0666778 0.0594402)
(-0.364971 -0.124335 0.0526175)
(-0.331353 -0.238536 0.0463023)
(-0.299957 -0.361939 0.0331314)
(-0.253563 -0.486487 0.0231782)
(-0.216791 -0.612278 0.0121457)
(-0.19329 -0.739977 0.00514847)
(-0.183893 -0.879705 -0.0014251)
(-0.200811 -1.04065 -0.00573834)
(-0.240061 -1.27188 -0.0101195)
(-0.313323 -1.62038 -0.0111785)
(-0.419847 -2.1412 -0.00978292)
(-0.532453 -2.80863 -0.00508266)
(-0.61268 -3.50514 -0.000817522)
(-0.598265 -3.93114 0.0015858)
(-0.446076 -3.71253 0.00116279)
(-0.163302 -2.40439 -0.000892904)
(0.065141 -0.438451 -0.00283204)
(-0.0116336 0.488111 -0.0112635)
(-0.0718937 1.20442 -0.0207572)
(-0.231481 1.60472 -0.0208438)
(-0.35794 1.71921 -0.0175028)
(-0.50325 1.70197 -0.0114044)
(-0.539285 1.50326 -0.0222157)
(-0.738496 1.31902 -0.0176749)
(-0.702292 0.906354 -0.0613293)
(-1.36747 1.08166 0.0351279)
(-0.344756 1.8825 0.107981)
(0.0662945 2.80348 -0.213952)
(0.0968675 2.43875 -0.298962)
(-1.02095 2.15174 -0.0456785)
(-2.02427 0.140993 1.68717)
(-0.313808 -1.56324 2.09031)
(-0.162606 0.46245 -0.188197)
(0.319822 -0.129147 -0.496998)
(-0.166519 -0.805954 -0.120426)
(-0.307803 -0.400082 0.0140976)
(-0.315153 -0.289098 0.0180789)
(-0.368245 -0.101202 0.028431)
(-0.351243 -0.0285663 0.0589747)
(-0.278709 -0.0566194 0.0616553)
(-0.275975 -0.123443 0.057404)
(-0.264148 -0.222057 0.0511214)
(-0.232716 -0.325707 0.0370784)
(-0.189545 -0.432585 0.0254542)
(-0.159146 -0.539957 0.0135718)
(-0.144816 -0.645043 0.00543856)
(-0.140787 -0.764488 -0.0016832)
(-0.155573 -0.898209 -0.00691212)
(-0.183002 -1.0939 -0.0113633)
(-0.231474 -1.40203 -0.0134843)
(-0.311204 -1.9156 -0.0121247)
(-0.429093 -2.61296 -0.00681225)
(-0.534326 -3.39348 -0.00145036)
(-0.560606 -3.98728 0.00155539)
(-0.457336 -3.96315 0.00160605)
(-0.201813 -2.73501 -0.000806382)
(0.0483556 -0.483811 -0.00316361)
(-0.00182838 0.615074 -0.00946487)
(-0.0326247 1.39789 -0.0193598)
(-0.174933 1.81709 -0.0187394)
(-0.29386 1.9674 -0.0190689)
(-0.457283 1.94625 -0.0142851)
(-0.460186 1.76819 -0.0278396)
(-0.742589 1.579 -0.0265923)
(-0.770198 1.255 -0.0700494)
(-1.578 1.19439 0.0153876)
(-0.241818 1.95572 0.117677)
(0.446388 3.44664 -0.476126)
(0.387625 4.6396 -1.10707)
(1.12108 5.70398 -1.07887)
(-0.908421 2.55527 2.2216)
(-1.67542 -0.947783 5.28408)
(0.465733 -0.0608262 2.53517)
(1.48754 -0.335903 -0.152699)
(0.225374 -0.236963 -0.237784)
(-0.0125386 -0.147526 -0.156314)
(-0.0751457 -0.111915 -0.0438871)
(-0.09624 0.00409207 -0.00624189)
(-0.18366 0.0413552 0.0316447)
(-0.163005 -0.0190272 0.0511622)
(-0.180382 -0.0871936 0.0574935)
(-0.171863 -0.181068 0.0597444)
(-0.1409 -0.2714 0.0456716)
(-0.0994107 -0.366457 0.0309492)
(-0.0686426 -0.457812 0.0151042)
(-0.0635459 -0.547418 0.00391524)
(-0.0698694 -0.648683 -0.00282892)
(-0.095646 -0.753064 -0.0082845)
(-0.138058 -0.90074 -0.0134965)
(-0.218204 -1.13307 -0.014122)
(-0.307997 -1.57057 -0.013418)
(-0.363618 -2.24666 -0.00789698)
(-0.430065 -3.14729 -0.0019551)
(-0.481239 -3.91708 0.00191688)
(-0.424723 -4.14669 0.00228037)
(-0.197787 -3.11071 -0.000313828)
(0.0644156 -0.69335 -0.00278128)
(-0.0198243 0.814567 -0.00451366)
(-0.0253656 1.6722 -0.014629)
(-0.133363 2.10603 -0.0143152)
(-0.227836 2.28094 -0.0178021)
(-0.39481 2.25883 -0.014819)
(-0.390108 2.09971 -0.0281994)
(-0.750894 1.88947 -0.0321185)
(-0.910071 1.61611 -0.0701629)
(-1.8987 1.33943 -0.00192925)
(-0.818581 1.89391 0.162355)
(-0.428439 3.94087 -0.39708)
(-1.14701 5.35746 -1.34575)
(2.62951 8.07865 -2.34942)
(1.11117 7.9 -1.42148)
(-1.37822 3.06002 2.90199)
(-0.0988507 0.40634 4.18379)
(0.633906 -0.236699 0.799494)
(0.608187 0.101097 -0.243222)
(0.116573 0.00956762 -0.230587)
(0.121152 0.0555882 -0.0509701)
(0.0881087 0.157923 -0.0115549)
(-0.056102 0.199603 0.031551)
(-0.0755216 0.0763315 0.053966)
(-0.0902981 -0.0147505 0.070208)
(-0.0906346 -0.129235 0.0804208)
(-0.0540149 -0.236115 0.0647506)
(-0.0137685 -0.337153 0.0390007)
(0.0121236 -0.428334 0.0175744)
(0.00494143 -0.506876 0.00341762)
(-0.00480953 -0.595984 -0.00274773)
(-0.0257093 -0.686724 -0.00977465)
(-0.0492412 -0.806653 -0.0147068)
(-0.10649 -0.962454 -0.0135071)
(-0.225442 -1.28058 -0.0157539)
(-0.410903 -1.84751 -0.0100104)
(-0.495033 -2.70688 -0.00301975)
(-0.486685 -3.60877 0.00147204)
(-0.453424 -4.10009 0.00214364)
(-0.270792 -3.35539 -0.000640385)
(0.0127485 -1.00017 -0.00349691)
(-0.0393286 0.821476 -0.0048632)
(-0.0335503 1.74973 -0.0138463)
(-0.0973471 2.22435 -0.013384)
(-0.156967 2.42532 -0.017881)
(-0.317622 2.42386 -0.0148638)
(-0.310722 2.3037 -0.0282146)
(-0.698562 2.08244 -0.0308344)
(-0.871005 1.91455 -0.067641)
(-1.99207 1.4817 0.0169222)
(-1.07091 1.82848 0.319422)
(-0.701366 4.21361 0.212959)
(-1.70873 3.45919 -1.00826)
(2.1596 5.89046 -1.62759)
(2.9958 9.06743 -3.03822)
(1.39949 6.18337 0.0413985)
(0.449695 2.40399 3.40468)
(-0.285168 0.39936 1.54772)
(0.711565 0.282189 -0.0620435)
(0.237325 0.23746 -0.254167)
(0.355675 0.169878 -0.0832753)
(0.343964 0.399395 -0.0666693)
(0.0491943 0.468106 -0.0418994)
(-0.0494193 0.249959 0.027815)
(-0.0432509 0.0851357 0.0748578)
(-0.0421468 -0.0925052 0.113733)
(0.00586063 -0.236685 0.098485)
(0.0596592 -0.335494 0.061931)
(0.10189 -0.425552 0.0237226)
(0.0944936 -0.497105 0.00388239)
(0.0677708 -0.581887 -0.00640007)
(0.0311358 -0.664939 -0.0133515)
(0.0169559 -0.765398 -0.0189909)
(-0.0223602 -0.89954 -0.0163763)
(-0.101831 -1.16734 -0.0151011)
(-0.253549 -1.61366 -0.012056)
(-0.457456 -2.31686 -0.00417968)
(-0.542858 -3.17332 0.00127896)
(-0.511953 -3.80351 0.0030342)
(-0.380146 -3.32352 0.000443841)
(-0.0740981 -1.04243 -0.0023187)
(-0.0283045 0.793937 -0.00337246)
(-0.00640452 1.7374 -0.0119141)
(-0.0396304 2.23694 -0.0130655)
(-0.0608595 2.45114 -0.0144106)
(-0.201454 2.47715 -0.012013)
(-0.200044 2.43437 -0.0278852)
(-0.553708 2.21478 -0.0233023)
(-0.670414 2.18404 -0.0700462)
(-1.8431 1.55138 0.0261555)
(-1.06013 1.35343 0.294328)
(-0.465118 3.99235 0.521453)
(-1.39083 2.56215 -0.295032)
(0.0379112 4.7708 -0.701172)
(2.14693 8.47997 -2.13184)
(2.45556 6.26062 0.377141)
(0.583056 3.71528 3.30694)
(-0.214555 1.06653 1.51502)
(0.483303 0.330081 -0.113628)
(0.294129 0.242214 -0.3531)
(0.576496 0.137943 -0.2465)
(0.723997 0.505477 -0.219477)
(0.149723 0.709361 -0.205653)
(-0.12349 0.422342 -0.0687403)
(-0.0981223 0.243755 0.0722855)
(-0.0730934 -0.00256715 0.166454)
(0.0435357 -0.194142 0.164529)
(0.134987 -0.311571 0.0867924)
(0.178016 -0.419085 0.0291996)
(0.161547 -0.500095 0.00227027)
(0.128067 -0.592577 -0.0096365)
(0.0967213 -0.670721 -0.0180872)
(0.0872692 -0.757816 -0.0225342)
(0.0479936 -0.853093 -0.0228865)
(-0.0245583 -1.07942 -0.018163)
(-0.163556 -1.48153 -0.0146541)
(-0.33298 -2.12041 -0.00478216)
(-0.462991 -2.84634 0.00108602)
(-0.494068 -3.5178 0.00342846)
(-0.386238 -3.23606 0.000869583)
(-0.118603 -1.10639 -0.00254156)
(-0.0184771 0.775528 -0.00231169)
(0.0180173 1.70139 -0.0111121)
(0.00418606 2.21591 -0.011977)
(0.0173587 2.45174 -0.0142217)
(-0.0633451 2.47516 -0.00570592)
(-0.0680951 2.46627 -0.018245)
(-0.35043 2.27916 -0.00495302)
(-0.359011 2.3787 -0.0559282)
(-1.42229 1.66068 0.091213)
(-1.07344 0.733178 0.235843)
(-0.417929 3.89494 0.349728)
(-1.4236 3.17679 -0.279093)
(-1.33437 4.14466 -1.06322)
(1.37453 6.73974 -1.69234)
(2.26071 5.70475 1.17645)
(0.168219 4.29017 3.37823)
(0.00698038 1.18187 1.43684)
(0.193344 0.259836 -0.181165)
(0.27644 -0.0372171 -0.389441)
(0.883038 -0.227266 -0.355519)
(1.45155 0.0685651 -0.428565)
(0.641839 0.417594 -0.248038)
(-0.0531973 0.381909 -0.0392313)
(-0.121789 0.25009 0.125809)
(-0.143888 0.00411511 0.28903)
(0.0396174 -0.261748 0.277783)
(0.202372 -0.347626 0.136951)
(0.300451 -0.46592 0.024854)
(0.286367 -0.539015 -0.0196684)
(0.217906 -0.626725 -0.026473)
(0.168649 -0.725502 -0.0270216)
(0.170019 -0.81093 -0.031519)
(0.1399 -0.873411 -0.0283799)
(0.0632155 -1.03742 -0.0265487)
(-0.0672681 -1.39517 -0.0161939)
(-0.215553 -1.9871 -0.00651177)
(-0.363498 -2.69497 0.00194382)
(-0.43944 -3.3971 0.00386412)
(-0.383437 -3.28595 0.00181916)
(-0.141215 -1.33519 -0.00267205)
(-0.00922969 0.722304 -0.00112058)
(0.0421567 1.62287 -0.0093038)
(0.059898 2.15807 -0.0109861)
(0.0822042 2.44144 -0.0152626)
(0.0361522 2.46781 -0.00507999)
(0.0567266 2.48861 -0.021193)
(-0.0587199 2.29619 0.00839817)
(-0.00175307 2.51515 -0.0399565)
(-0.569629 1.77827 0.114291)
(-0.838897 0.184311 0.211356)
(0.331265 3.28006 0.197837)
(0.0721018 3.33325 0.0849065)
(-0.288221 2.51849 -0.624913)
(1.14314 4.12854 -1.19962)
(2.21278 5.50521 0.229783)
(0.511872 5.54593 2.12778)
(-0.136502 1.74719 1.36513)
(-0.0184426 -0.105913 -0.0274453)
(-0.16064 -0.981793 -0.410089)
(0.526494 -1.51651 -0.3877)
(1.48574 -1.32833 -0.623743)
(1.15683 -0.516601 -0.441801)
(0.377787 0.150172 0.0711105)
(-0.0542908 0.568661 0.406211)
(-0.195439 0.382588 0.57148)
(0.301664 -0.132139 0.413266)
(0.968459 -0.400223 0.0277384)
(1.16615 -0.547634 -0.150553)
(0.852048 -0.602314 -0.125724)
(0.490182 -0.67251 -0.0590561)
(0.344521 -0.764853 -0.0577721)
(0.301839 -0.856838 -0.0510032)
(0.25017 -0.884796 -0.0377767)
(0.146043 -0.990321 -0.0307709)
(-0.00142175 -1.28161 -0.0199803)
(-0.121497 -1.89365 -0.00836878)
(-0.272644 -2.62398 0.00164073)
(-0.369999 -3.41407 0.00413279)
(-0.359665 -3.4261 0.00202584)
(-0.141641 -1.56072 -0.0030079)
(0.000825103 0.659596 0.000425462)
(0.066663 1.52355 -0.00689257)
(0.115791 2.08029 -0.00895726)
(0.148304 2.39374 -0.0114288)
(0.165481 2.44957 -0.00311915)
(0.162905 2.49224 -0.00857612)
(0.21182 2.3001 0.0148893)
(0.135875 2.48178 -0.0215464)
(0.365106 2.04386 0.087476)
(-0.424998 -0.0763534 0.16268)
(0.698955 1.78491 -0.157448)
(1.41631 3.02831 0.476841)
(0.621899 1.5289 0.0765619)
(0.507371 2.65224 -0.67128)
(1.3945 5.36993 -0.456655)
(2.06782 6.29502 0.281337)
(0.411717 3.28442 0.827864)
(0.166446 1.05592 0.258789)
(0.0085742 -0.329851 -0.154108)
(-0.0296456 -2.00315 -0.397632)
(0.549453 -2.29844 -0.760329)
(0.955996 -1.47921 -0.824762)
(1.25449 0.517277 -0.488128)
(1.26856 1.73799 0.102887)
(1.16215 0.77397 0.386632)
(2.14147 -0.715434 0.168719)
(2.94457 -1.05106 -0.258118)
(2.34653 -0.861334 -0.29621)
(1.05741 -0.445385 -0.104876)
(0.590035 -0.427758 -0.0788786)
(0.628972 -0.767212 -0.106811)
(0.604053 -0.957003 -0.0781595)
(0.479442 -0.999741 -0.0524638)
(0.309001 -1.04824 -0.0365612)
(0.077977 -1.26873 -0.023987)
(-0.0560768 -1.87401 -0.0100298)
(-0.201174 -2.66474 0.000912714)
(-0.317297 -3.56972 0.00400353)
(-0.339426 -3.72798 0.00228113)
(-0.140109 -1.89433 -0.00294802)
(0.00857373 0.582583 0.00164915)
(0.0866814 1.39563 -0.00460491)
(0.161796 1.96679 -0.00671847)
(0.203797 2.29723 -0.00791428)
(0.257844 2.38322 -0.00139427)
(0.261823 2.38388 -0.000175621)
(0.398337 2.25469 0.0137803)
(0.31604 2.20994 0.00769365)
(0.841404 2.27028 0.0330792)
(0.24988 0.329032 0.184499)
(0.712363 0.228762 -0.378063)
(1.83536 2.43214 -0.07615)
(1.58066 1.35202 0.192309)
(1.24349 1.25152 -0.264017)
(0.989698 4.55232 0.0450554)
(2.0101 6.12122 0.219471)
(1.31257 4.06613 0.440877)
(0.508981 1.88152 0.0515805)
(1.07825 0.548252 -0.513022)
(0.936776 -1.75935 -0.660541)
(0.830036 -2.69653 -0.490312)
(1.98428 -2.85234 -0.421589)
(2.66377 -1.26525 -0.472526)
(3.21442 1.23331 -0.638422)
(4.33083 1.04136 -0.459051)
(4.52477 -1.16095 -0.248528)
(2.99014 -1.31192 -0.251085)
(0.977744 0.277317 -0.095376)
(0.152217 0.691403 -0.0680907)
(0.652812 -0.408475 -0.136201)
(0.844818 -1.14461 -0.129403)
(0.780731 -1.18429 -0.0873895)
(0.680231 -1.16517 -0.06559)
(0.485523 -1.20018 -0.0447364)
(0.177601 -1.3932 -0.0249883)
(0.00523455 -1.96675 -0.0124033)
(-0.150154 -2.81535 0.00103809)
(-0.257723 -3.8535 0.00354379)
(-0.283739 -4.21571 0.00252738)
(-0.115139 -2.50649 -0.00280218)
(0.0179207 0.504309 0.00357761)
(0.10705 1.26025 -0.00256948)
(0.196129 1.84473 -0.00457667)
(0.248681 2.19189 -0.0044118)
(0.318574 2.30895 0.000930564)
(0.344596 2.28151 0.00797101)
(0.484909 2.18119 0.0163542)
(0.477896 1.96739 0.0292202)
(0.877285 2.09276 0.0213566)
(0.954387 1.0188 0.145032)
(0.744682 -0.197558 -0.0623231)
(1.76321 1.48867 -0.550727)
(1.72072 1.58221 -0.0208002)
(1.28432 0.243635 -0.0875315)
(1.5598 2.04871 -0.733061)
(1.67644 5.95941 -0.423488)
(0.961772 4.87168 0.0962964)
(-0.300695 1.39027 -0.064247)
(-0.378952 -0.995993 -0.292875)
(-0.931674 -2.18284 0.356832)
(-0.810377 -2.40615 1.14386)
(0.590215 -2.02933 1.58739)
(1.05946 -0.825316 1.3359)
(2.57519 1.35665 0.227675)
(4.71168 1.30166 -0.373516)
(3.74375 0.597962 -0.327426)
(1.04254 1.46466 -0.234854)
(0.0898487 2.01273 -0.0716702)
(0.866019 0.465074 -0.0726744)
(1.41294 -1.21712 -0.0878513)
(1.04856 -1.35538 -0.0584905)
(0.88546 -1.19683 -0.068428)
(0.816284 -1.13808 -0.077164)
(0.584871 -1.13462 -0.0498946)
(0.230021 -1.31723 -0.0269225)
(0.0315146 -1.91886 -0.0125462)
(-0.143698 -2.8095 0.00146639)
(-0.256249 -4.01459 0.00435157)
(-0.308876 -4.62125 0.00310918)
(-0.140933 -3.12005 -0.00247734)
(0.0223211 0.430964 0.00362878)
(0.126138 1.10907 -0.00171218)
(0.224972 1.69048 -0.00337836)
(0.278166 2.05546 -0.00263217)
(0.350015 2.19679 0.00192742)
(0.396294 2.16732 0.00972444)
(0.506409 2.05867 0.0185302)
(0.575636 1.80665 0.0338721)
(0.774463 1.74775 0.0344758)
(1.21111 1.22936 0.089521)
(0.996208 0.13179 0.160997)
(1.43537 0.491519 -0.403678)
(1.77294 1.52842 -0.624978)
(0.687826 0.256635 -0.000293777)
(1.21655 -0.753238 -0.323383)
(3.03253 2.64303 -0.922888)
(2.84203 5.50199 -0.984578)
(0.290396 3.87486 -0.749426)
(-1.65336 0.447932 0.0159494)
(-3.42774 -1.55956 1.2934)
(-4.11102 -1.67263 1.67828)
(-3.3427 -0.384746 1.29861)
(-2.171 1.16474 0.988905)
(0.852666 1.94662 0.280677)
(3.2 2.16878 -0.412595)
(2.18132 2.72055 -0.0687463)
(0.85077 2.60325 0.123817)
(1.52931 0.886524 0.221315)
(2.08395 -0.661062 0.204366)
(1.6354 -1.04732 0.102057)
(1.1029 -0.990877 0.0112437)
(1.00201 -1.1382 -0.0777748)
(0.806605 -0.943774 -0.0770797)
(0.551805 -0.871626 -0.0405597)
(0.2222 -1.12172 -0.0239134)
(0.0368406 -1.72288 -0.0103973)
(-0.133636 -2.62834 0.0036203)
(-0.260061 -3.95896 0.0058065)
(-0.335908 -4.80314 0.00414902)
(-0.172351 -3.56374 -0.00147419)
(0.0180459 0.375723 0.00378432)
(0.123768 0.983851 -0.00101249)
(0.241214 1.54056 -0.00301517)
(0.296782 1.93332 -0.00169165)
(0.36265 2.10215 0.00206581)
(0.415515 2.08996 0.0101511)
(0.503209 1.97623 0.0193955)
(0.573583 1.73374 0.0333824)
(0.683223 1.53085 0.048849)
(0.960044 1.18119 0.0709462)
(1.03543 0.424701 0.155334)
(1.08034 0.145364 0.0587703)
(1.76352 1.20498 -0.507439)
(1.36269 1.28416 -0.486941)
(0.321897 -0.344187 0.258257)
(1.60425 -0.0764671 -0.0682616)
(4.22465 3.31768 -1.56477)
(4.75408 4.63682 -2.43664)
(3.18942 3.23728 -1.48854)
(0.812804 1.40999 -0.0585069)
(-1.27067 0.284087 0.149049)
(-2.87793 -0.103863 -0.370054)
(-2.85163 -0.364486 -0.887898)
(-1.18701 -0.299528 -1.12545)
(0.317333 1.11452 -0.762965)
(0.722349 1.9004 0.176063)
(1.10172 1.00239 0.591139)
(1.66988 -0.0416535 0.42953)
(1.52711 -0.342993 0.180345)
(1.21783 -0.581554 0.0384221)
(1.08603 -0.922719 -0.0612633)
(0.914682 -0.872281 -0.100533)
(0.581256 -0.529794 -0.0591571)
(0.396381 -0.622467 -0.0289425)
(0.156705 -0.95165 -0.0149603)
(0.0277411 -1.50418 -0.00743664)
(-0.142414 -2.3953 0.00748915)
(-0.261765 -3.80527 0.00775042)
(-0.367321 -4.8637 0.00561918)
(-0.199578 -3.93896 -0.00012614)
(0.017631 0.3097 0.00348712)
(0.113822 0.848096 -0.000785295)
(0.245103 1.36787 -0.00304196)
(0.312229 1.77186 -0.00174094)
(0.36292 1.97085 0.00131116)
(0.417894 1.98563 0.0085218)
(0.485536 1.88523 0.0165352)
(0.545835 1.66679 0.0292472)
(0.612527 1.43682 0.0433073)
(0.738258 1.13255 0.0669241)
(0.859653 0.668208 0.100119)
(0.817773 0.21092 0.155292)
(1.00399 0.589098 0.0471353)
(1.76349 1.68737 -0.479863)
(1.45078 1.73267 -0.757588)
(0.23692 0.637625 -0.343826)
(1.34231 0.773804 -0.51749)
(4.41418 1.20084 -1.28523)
(6.02954 1.08462 -1.34181)
(5.76415 1.16509 -1.72186)
(4.39162 0.9165 -1.58423)
(2.1175 0.642612 -0.844313)
(0.626805 -0.201133 -0.582229)
(-0.0486093 -1.10713 -0.348638)
(0.0149997 -0.717813 -0.289302)
(0.404659 -0.0862141 -0.346532)
(0.584479 -0.495991 -0.296293)
(0.701448 -0.870642 -0.059061)
(0.705385 -0.917614 0.021508)
(0.798448 -0.923544 0.0293007)
(0.702702 -0.675293 -0.0120052)
(0.476543 -0.330223 -0.0260782)
(0.264945 -0.237617 -0.016623)
(0.221268 -0.519737 -0.0136581)
(0.0882653 -0.81103 -0.00775475)
(0.0323491 -1.34269 -0.000755923)
(-0.144924 -2.16443 0.0107083)
(-0.249506 -3.62232 0.0107955)
(-0.3905 -4.85608 0.00712329)
(-0.226193 -4.27826 0.00157477)
(0.0121646 0.263777 0.0032485)
(0.0922313 0.747498 -0.000837428)
(0.225455 1.23397 -0.00305562)
(0.312585 1.63779 -0.00266493)
(0.3614 1.87218 -6.74066e-05)
(0.411534 1.91972 0.00503137)
(0.471303 1.8419 0.0129691)
(0.520101 1.65273 0.0225779)
(0.561076 1.42914 0.0359902)
(0.619305 1.15993 0.0513937)
(0.647993 0.84282 0.0798494)
(0.643394 0.454127 0.108361)
(0.56836 0.321673 0.166958)
(0.931834 1.00794 0.109231)
(1.77885 2.00035 -0.24488)
(1.60612 2.19592 -0.332524)
(0.276046 1.16564 0.368108)
(1.1416 -0.744086 0.985746)
(2.29114 -1.25086 0.25476)
(1.82568 -0.229298 -0.609281)
(1.56002 0.65583 -0.256664)
(1.8236 0.751611 -0.00397085)
(2.61443 -0.0547435 -0.0754131)
(2.79902 -0.955006 0.531843)
(2.06284 -0.400864 0.539656)
(1.02205 -0.00585061 -0.300053)
(0.566311 -1.13495 -0.618902)
(0.43642 -1.64321 -0.255486)
(0.288432 -1.05889 0.0478439)
(0.308233 -0.526896 0.120377)
(0.181453 -0.190018 0.0737967)
(0.159331 -0.156828 0.0329299)
(0.117113 -0.238478 0.0109433)
(0.139322 -0.479569 -0.0010617)
(0.0372061 -0.685387 -0.000245585)
(0.0279639 -1.18384 0.00618226)
(-0.138484 -1.93763 0.013753)
(-0.229896 -3.41683 0.0130066)
(-0.415684 -4.8178 0.00859178)
(-0.255274 -4.62102 0.0031603)
(0.0169805 0.208474 0.00289948)
(0.0778799 0.628809 -0.00105643)
(0.19189 1.07726 -0.00334174)
(0.301335 1.45386 -0.00349177)
(0.357643 1.71114 -0.00171659)
(0.398483 1.79317 0.00222721)
(0.450827 1.74761 0.00912013)
(0.498009 1.59348 0.0182231)
(0.532264 1.40005 0.0278656)
(0.565222 1.17191 0.0401438)
(0.583901 0.932641 0.0557739)
(0.577607 0.699445 0.0747936)
(0.514549 0.486295 0.0953977)
(0.499805 0.49844 0.134345)
(0.882326 0.927883 0.130299)
(1.48896 1.69604 0.020967)
(1.61077 1.86139 -0.210452)
(1.23312 1.09013 -0.000791567)
(0.334753 0.414793 0.365674)
(-0.560587 0.7575 0.435623)
(-0.390812 0.834826 0.76508)
(0.860953 0.371776 0.414762)
(2.01368 -0.0930347 -0.00646171)
(2.20159 0.19989 0.450093)
(1.49521 1.04193 0.65765)
(1.10628 0.705401 0.287538)
(1.04641 -0.491259 -0.0283684)
(0.641819 -0.781736 -0.0132266)
(0.209415 -0.424939 0.0683455)
(0.139503 -0.250541 0.0660974)
(0.100276 -0.175415 0.0441453)
(0.174736 -0.227929 0.0199565)
(0.127656 -0.265221 0.00522549)
(0.14451 -0.446416 -0.000371908)
(0.0356226 -0.590208 0.0015164)
(0.046528 -1.05493 0.0102153)
(-0.127966 -1.73082 0.0153277)
(-0.204309 -3.23378 0.0144424)
(-0.452063 -4.78788 0.00950085)
(-0.290127 -5.0328 0.00438108)
(0.00735183 0.181149 0.0028555)
(0.0423646 0.571308 -0.00159814)
(0.127493 0.984798 -0.00335084)
(0.251322 1.35768 -0.004178)
(0.346133 1.59779 -0.00323607)
(0.395798 1.71382 -0.00013897)
(0.441809 1.69091 0.00478523)
(0.49339 1.56177 0.012325)
(0.532877 1.39288 0.0206945)
(0.562948 1.19148 0.0288409)
(0.582581 0.992103 0.0386905)
(0.593613 0.800913 0.0475474)
(0.582188 0.642549 0.0555176)
(0.537655 0.547605 0.0622064)
(0.533474 0.505561 0.0599086)
(0.707781 0.519068 0.0477952)
(1.02574 0.786467 -0.054842)
(1.3157 1.25606 -0.174074)
(1.42572 1.48715 -0.218292)
(1.43705 1.1416 -0.256539)
(1.71898 0.667467 -0.252954)
(1.91511 0.487429 -0.235567)
(1.69927 0.616359 -0.170437)
(1.49152 1.00885 -0.0181552)
(1.45484 1.06168 0.123358)
(1.6111 0.340613 0.146651)
(1.41041 -0.318792 0.0631825)
(0.873958 -0.417341 0.0345313)
(0.452915 -0.292753 0.0329675)
(0.392273 -0.210192 0.0255494)
(0.276815 -0.126738 0.0172713)
(0.296262 -0.172798 0.00770161)
(0.183294 -0.171912 0.00181582)
(0.193699 -0.337256 -0.000739604)
(0.0434212 -0.436223 0.00332113)
(0.0895987 -0.880408 0.0105136)
(-0.116137 -1.52585 0.0170541)
(-0.184953 -3.00211 0.0146584)
(-0.505349 -4.75215 0.00998684)
(-0.330644 -5.53834 0.00498071)
(0.0216196 0.152676 0.00251921)
(0.03378 0.47801 -0.00159836)
(0.0699988 0.876053 -0.00413508)
(0.174597 1.19481 -0.00411008)
(0.288839 1.41148 -0.00418692)
(0.37635 1.52855 -0.00181113)
(0.411967 1.54292 0.00171559)
(0.470959 1.43652 0.00689717)
(0.527325 1.30669 0.0125174)
(0.568462 1.13857 0.0193293)
(0.602688 0.975804 0.0256718)
(0.626627 0.819388 0.03006)
(0.641788 0.683714 0.0320038)
(0.634864 0.582234 0.0334368)
(0.625217 0.517344 0.0309926)
(0.581794 0.476117 0.0215511)
(0.531983 0.405513 -0.0146437)
(0.571448 0.390445 -0.0369894)
(0.725966 0.498618 0.00977392)
(0.912849 0.642551 0.0790042)
(1.19495 0.654554 0.135117)
(1.37088 0.514843 0.132855)
(1.30759 0.302349 0.0893107)
(1.37276 0.264216 0.0690112)
(1.49369 0.254344 0.0644408)
(1.60116 0.0582365 0.0544435)
(1.42584 -0.105387 0.0388887)
(1.04308 -0.143788 0.0418685)
(0.644874 -0.0802565 0.036436)
(0.555152 -0.0657491 0.0223023)
(0.394084 -0.0317339 0.0133447)
(0.411747 -0.0745299 0.00467565)
(0.278432 -0.079515 0.00121148)
(0.288749 -0.225274 -0.000222337)
(0.113581 -0.315499 0.00416789)
(0.135863 -0.709904 0.00921616)
(-0.0559289 -1.33211 0.0175249)
(-0.115332 -2.7754 0.0152963)
(-0.574217 -4.71598 0.0103106)
(-0.333694 -6.16221 0.00569685)
(-0.0193202 0.12624 0.00230046)
(-0.0287913 0.502729 -0.00239563)
(-0.0236805 0.840396 -0.00433111)
(0.0314891 1.18579 -0.00513066)
(0.184014 1.35678 -0.00503083)
(0.340601 1.41527 -0.00364216)
(0.403157 1.44315 -0.00139884)
(0.463808 1.34003 0.00204579)
(0.547889 1.23083 0.00548089)
(0.60595 1.08933 0.0094657)
(0.661664 0.951518 0.0134261)
(0.701513 0.815872 0.0159972)
(0.734503 0.695464 0.0164393)
(0.750897 0.592986 0.0168903)
(0.76395 0.514891 0.0149966)
(0.778948 0.450333 0.0121652)
(0.786087 0.434384 0.00829547)
(0.736248 0.449675 0.0177322)
(0.690762 0.464325 0.0454051)
(0.753491 0.419848 0.0770669)
(1.0951 0.352448 0.111951)
(1.45191 0.300588 0.118674)
(1.50533 0.275537 0.0919502)
(1.534 0.271397 0.0632268)
(1.52481 0.243955 0.0524528)
(1.55722 0.114526 0.0454403)
(1.43294 0.0220542 0.0307184)
(1.14337 -0.0312675 0.0221066)
(0.784799 0.0129527 0.0161053)
(0.732226 0.00733657 0.00944107)
(0.574412 0.0513617 0.00382356)
(0.597109 0.0111133 -0.000448685)
(0.417918 0.0180724 -0.00194751)
(0.445043 -0.0939963 -0.000988483)
(0.239305 -0.162853 0.00207065)
(0.27553 -0.503124 0.00813442)
(0.0549375 -1.01177 0.0131356)
(0.0567714 -2.48085 0.0159332)
(-0.576882 -4.57608 0.0100526)
(-0.259028 -6.76238 0.00638349)
(0.0549885 0.25689 0.00197435)
(0.000223627 0.438878 -0.00259007)
(-0.0998986 0.721823 -0.00470761)
(-0.0468538 0.941751 -0.00508882)
(-0.00137893 1.16517 -0.00566343)
(0.196239 1.17005 -0.00464227)
(0.334766 1.20274 -0.00350086)
(0.414416 1.12311 -0.00136772)
(0.53556 1.04098 0.000688242)
(0.624094 0.934216 0.00264065)
(0.707443 0.829977 0.00429369)
(0.767615 0.724781 0.00479554)
(0.818547 0.631796 0.00502711)
(0.849264 0.549294 0.00673502)
(0.871483 0.481816 0.00730273)
(0.882504 0.416947 0.00682148)
(0.876546 0.351757 0.00728231)
(0.870317 0.292171 0.00893172)
(0.910506 0.280518 0.0202894)
(1.00835 0.260493 0.0337181)
(1.31436 0.260672 0.0512586)
(1.60218 0.22483 0.0533011)
(1.62343 0.157997 0.0406759)
(1.68999 0.104522 0.0279)
(1.68009 0.109911 0.0187889)
(1.72013 0.0498562 0.0146143)
(1.61608 0.065293 0.0103032)
(1.40156 0.0319636 0.00979697)
(1.0474 0.114796 0.00625172)
(1.00927 0.10043 0.00170631)
(0.836312 0.162368 -0.00239122)
(0.894792 0.0928324 -0.00331902)
(0.713195 0.107283 -0.00372035)
(0.79773 -0.00286123 -0.00337646)
(0.542532 -0.0688995 -9.24052e-05)
(0.665855 -0.355993 0.0040645)
(0.322793 -0.782227 0.0101715)
(0.452794 -2.08884 0.0109907)
(-0.264532 -4.3903 0.0110712)
(0.00700702 -7.29674 0.00701314)
(-0.23032 0.0618704 0.000203779)
(-0.316092 0.675555 -0.00483627)
(-0.307414 0.846157 -0.00592866)
(-0.274992 0.993504 -0.00600044)
(-0.129844 1.02334 -0.00629509)
(0.0501029 1.04654 -0.00570821)
(0.229714 0.994966 -0.00549578)
(0.354032 0.936828 -0.00423454)
(0.50898 0.862796 -0.00326335)
(0.628919 0.786187 -0.00212427)
(0.746661 0.708328 -0.00130646)
(0.838136 0.631448 -0.00143644)
(0.91894 0.562033 -0.00122905)
(0.97829 0.498851 7.69727e-07)
(1.02244 0.446784 0.0010583)
(1.05298 0.393375 0.00292067)
(1.07931 0.343746 0.00465466)
(1.10505 0.311096 0.00634788)
(1.14508 0.302844 0.0111541)
(1.2649 0.246357 0.0169083)
(1.61133 0.228892 0.0272018)
(1.96543 0.187118 0.0306944)
(2.02675 0.153574 0.0258133)
(2.14351 0.118532 0.0201558)
(2.1252 0.119435 0.0137595)
(2.18004 0.0665627 0.00846559)
(2.0692 0.118774 0.00367911)
(1.91569 0.0721118 0.00138797)
(1.56056 0.149809 -0.00121204)
(1.59594 0.13971 -0.00323915)
(1.41897 0.214467 -0.00613829)
(1.55189 0.153481 -0.00715347)
(1.34207 0.166935 -0.00706247)
(1.50464 0.0476548 -0.00597916)
(1.18805 0.00194255 -0.00421542)
(1.38336 -0.215492 -0.000642107)
(0.939912 -0.483329 0.00394786)
(1.1451 -1.4637 0.00763084)
(0.322376 -3.90607 0.00847684)
(0.484733 -7.21744 0.00631435)
(-0.730863 0.800169 -0.00319491)
(-0.607148 0.393219 -0.00666225)
(-0.754092 0.568877 -0.00575864)
(-0.462882 0.584248 -0.00528479)
(-0.313841 0.602513 -0.00548848)
(0.000145436 0.643649 -0.00540248)
(0.224915 0.621122 -0.00547194)
(0.450566 0.596251 -0.00507862)
(0.677373 0.556885 -0.00484357)
(0.884077 0.516065 -0.00449149)
(1.08295 0.469377 -0.0044792)
(1.2597 0.42288 -0.00410051)
(1.4163 0.381448 -0.00354767)
(1.5485 0.347076 -0.0024919)
(1.65139 0.323936 -0.00129934)
(1.74192 0.292686 0.000485665)
(1.82891 0.253251 0.00151746)
(1.95932 0.225895 0.00200323)
(2.11374 0.217061 0.00411316)
(2.37833 0.147562 0.00723663)
(2.79455 0.133421 0.0144603)
(3.24536 0.0915751 0.0153764)
(3.34853 0.0483967 0.012798)
(3.51396 0.00510741 0.00939595)
(3.46356 0.0100202 0.0026919)
(3.57396 -0.0141462 0.000296949)
(3.41998 0.0531685 -0.00232274)
(3.35935 0.0432072 -0.00340295)
(2.95876 0.11987 -0.00533243)
(3.11466 0.134285 -0.0072502)
(2.89468 0.196724 -0.00836325)
(3.19767 0.145865 -0.00906427)
(2.90744 0.121954 -0.00857728)
(3.2417 0.037022 -0.00791596)
(2.7697 -0.0216415 -0.00607818)
(3.12505 -0.21068 -0.00452717)
(2.46323 -0.490699 -0.00206161)
(2.83442 -1.13867 0.000741545)
(1.85917 -3.17223 0.00400731)
(1.3202 -6.11635 0.0037751)
(1.16567 1.49283 0.000800603)
(1.73397 0.741368 -0.000374778)
(2.47527 0.585289 -0.000179298)
(2.8872 0.360304 0.000699784)
(3.16808 0.281001 0.00113332)
(3.41061 0.2263 0.00184524)
(3.62886 0.205579 0.00205397)
(3.84169 0.183889 0.00234802)
(4.06784 0.169743 0.00216769)
(4.30069 0.155918 0.00171809)
(4.52215 0.141571 0.000652151)
(4.73524 0.126263 -0.000203328)
(4.91514 0.112189 -0.000569346)
(5.07602 0.100421 -0.000128948)
(5.18737 0.0948696 0.000629448)
(5.30017 0.0904044 0.00228192)
(5.41317 0.0740827 0.00328253)
(5.60997 0.0593523 0.00352441)
(5.83811 0.0768411 0.00436667)
(6.27213 0.0621291 0.00694272)
(6.69569 0.0416766 0.0126251)
(7.19923 0.0208963 0.0141968)
(7.27321 0.00456525 0.0127748)
(7.36611 -0.0298325 0.0089714)
(7.19767 -0.025449 0.00570746)
(7.21464 -0.044887 0.00335036)
(6.86298 -0.031092 0.000714166)
(6.83439 -0.0213481 -0.000554245)
(6.34449 0.0123572 -0.00213427)
(6.57488 0.0275419 -0.00364542)
(6.3212 0.0623488 -0.00466798)
(6.75275 0.0656046 -0.00557318)
(6.44415 0.045132 -0.00551705)
(6.83826 0.0159946 -0.00490855)
(6.30085 -0.0184142 -0.00420425)
(6.52605 -0.104118 -0.00334846)
(5.64565 -0.265428 -0.0024015)
(5.68003 -0.58786 -0.00118316)
(4.25607 -1.15047 0.000518389)
(2.77848 -2.54061 0.00159312)
(0.000498346 -0.00367323 0.00372516)
(0.0196349 -0.00789877 0.0044068)
(0.0452072 -0.00830792 0.00460186)
(0.0633265 -0.00784612 0.00506086)
(0.0727043 -0.00679732 0.00509502)
(0.0721791 -0.00604837 0.00606275)
(0.052595 0.0019967 0.00431356)
(0.02497 0.0103205 0.00504051)
(-0.00392622 0.0221398 0.00404702)
(-0.0538148 0.0226296 0.0049598)
(-0.111995 0.0137402 0.00450254)
(-0.178828 0.0044911 0.00449535)
(-0.256069 -0.00349043 0.00421878)
(-0.345533 -0.00187913 0.00437758)
(-0.43247 0.0116937 0.00563096)
(-0.536665 0.0110949 0.0056234)
(-0.657408 -0.000439571 0.0118288)
(-0.811473 -0.00131026 0.0154017)
(-0.902264 -0.00819879 0.0206183)
(-1.09287 -0.00323783 0.0242632)
(-1.03957 0.0315446 0.0284652)
(-0.837796 0.0253995 0.0291821)
(-0.813561 0.0246959 0.0282799)
(-0.796357 0.0117173 0.0290998)
(-0.78799 -0.0208647 0.0325606)
(-0.736231 -0.0466583 0.0356532)
(-0.661815 -0.0674552 0.0389441)
(-0.53255 -0.0843815 0.0424319)
(-0.377357 -0.105496 0.0452889)
(-0.18073 -0.1099 0.0474513)
(0.0023361 -0.109112 0.0463825)
(0.247035 -0.0286594 0.0434791)
(0.482323 -0.0510871 0.0391831)
(0.568091 0.0110219 0.0308948)
(0.539613 0.0411168 0.0216516)
(0.42116 0.0477668 0.0138741)
(0.2738 0.0323401 0.00842225)
(0.146833 0.0165136 0.00443634)
(0.0512516 0.00276877 0.00225652)
(0.00122503 -0.00694389 0.000594911)
(0.00580776 -0.0283599 0.00466012)
(0.0393203 -0.0481653 0.00677466)
(0.0765834 -0.0503939 0.00776474)
(0.0993537 -0.0407297 0.0090378)
(0.105235 -0.023557 0.00941221)
(0.0936504 -0.0211398 0.0105169)
(0.04633 -0.00147825 0.00980296)
(-0.0288616 0.0329707 0.00841024)
(-0.141366 0.0534702 0.0100893)
(-0.31374 0.0634541 0.0108135)
(-0.501867 0.0900717 0.0104989)
(-0.70654 0.120049 0.0109768)
(-0.923179 0.150901 0.0112318)
(-1.14974 0.181163 0.0123984)
(-1.38935 0.186375 0.0140106)
(-1.63564 0.150432 0.0186816)
(-1.8494 0.107709 0.0234275)
(-2.06079 0.0750503 0.0284137)
(-2.20456 0.0477266 0.0331633)
(-2.34548 0.0302374 0.0360453)
(-2.15736 0.0430157 0.0386193)
(-1.86822 -0.00693659 0.0351655)
(-1.72995 -0.0538319 0.0300671)
(-1.63516 -0.155694 0.0330641)
(-1.55381 -0.25045 0.0337119)
(-1.42078 -0.334691 0.0346799)
(-1.27999 -0.401127 0.0360839)
(-1.09802 -0.447709 0.0363447)
(-0.889109 -0.475952 0.0376925)
(-0.638673 -0.489391 0.0378729)
(-0.365489 -0.463644 0.0391765)
(-0.0932095 -0.365232 0.0369343)
(0.22049 -0.261377 0.0354764)
(0.500795 -0.121908 0.0318741)
(0.600583 0.0186896 0.0287375)
(0.574943 0.113063 0.0209642)
(0.451139 0.1402 0.0151751)
(0.289738 0.12286 0.0101575)
(0.127165 0.0849263 0.00586584)
(0.0209099 0.0327151 0.0017118)
(0.00843628 -0.0643221 0.00634634)
(0.0425689 -0.104579 0.00964285)
(0.0746546 -0.0986297 0.011332)
(0.0887084 -0.0759617 0.0127772)
(0.0577555 -0.0383645 0.013084)
(-0.000961208 0.00944961 0.0159436)
(-0.0888073 0.0625741 0.0143049)
(-0.257561 0.135864 0.0144616)
(-0.494769 0.210643 0.0135347)
(-0.758041 0.281145 0.0132828)
(-1.03946 0.354691 0.0122433)
(-1.3359 0.407203 0.0117035)
(-1.61667 0.436386 0.0117378)
(-1.89336 0.411186 0.012231)
(-2.14665 0.346424 0.0151004)
(-2.35783 0.276138 0.0167612)
(-2.51444 0.213132 0.017926)
(-2.66632 0.151475 0.0181554)
(-2.75916 0.106128 0.0180916)
(-2.81513 0.0444779 0.0161429)
(-2.55024 0.0187163 0.0157481)
(-2.23015 -0.0747134 0.0116006)
(-2.08349 -0.197782 0.0103654)
(-1.96259 -0.345281 0.00930086)
(-1.86859 -0.481078 0.00815862)
(-1.73412 -0.618509 0.00832877)
(-1.5975 -0.735582 0.00874021)
(-1.43034 -0.824197 0.00920692)
(-1.26869 -0.870575 0.00919301)
(-1.06338 -0.86784 0.00937925)
(-0.83779 -0.825646 0.0108087)
(-0.580952 -0.73704 0.011528)
(-0.285995 -0.548939 0.0159848)
(0.0165465 -0.348306 0.0160655)
(0.259894 -0.103091 0.0176667)
(0.371956 0.103946 0.0155624)
(0.351866 0.200664 0.0146411)
(0.252702 0.22182 0.0110453)
(0.11791 0.176249 0.00741097)
(0.0187343 0.0834891 0.00218468)
(0.00768657 -0.100241 0.00832048)
(0.0375296 -0.152224 0.0129489)
(0.0412113 -0.14014 0.014631)
(0.00967044 -0.072544 0.0181391)
(-0.0504163 0.00523372 0.0169488)
(-0.165994 0.125052 0.0182717)
(-0.348447 0.242787 0.0171745)
(-0.602213 0.385382 0.0148776)
(-0.924774 0.516566 0.0122245)
(-1.26545 0.610575 0.0100961)
(-1.57152 0.654299 0.00833342)
(-1.85041 0.655798 0.00692109)
(-2.11343 0.597616 0.00586782)
(-2.34505 0.504954 0.00643921)
(-2.51617 0.413351 0.00515699)
(-2.64125 0.33307 0.00409085)
(-2.72263 0.26081 0.00191132)
(-2.79861 0.194785 2.94687e-06)
(-2.82275 0.143244 -0.00217285)
(-2.79789 0.0596713 -0.00531597)
(-2.52256 0.0173871 -0.00660948)
(-2.23439 -0.10355 -0.00791416)
(-2.10076 -0.267461 -0.00763513)
(-2.01145 -0.42236 -0.00766075)
(-1.94936 -0.590109 -0.00727694)
(-1.85338 -0.771724 -0.00656669)
(-1.75113 -0.942161 -0.00533288)
(-1.61437 -1.09147 -0.00396859)
(-1.47103 -1.19153 -0.00256757)
(-1.32162 -1.21778 -0.00228418)
(-1.16615 -1.16307 -0.00103818)
(-0.981764 -1.03324 -0.000387593)
(-0.763632 -0.855063 0.00393813)
(-0.470586 -0.606406 0.00723342)
(-0.151411 -0.289488 0.011316)
(0.0649756 0.00162667 0.0141658)
(0.143583 0.186791 0.0124207)
(0.134442 0.260686 0.0109333)
(0.0627407 0.228596 0.00727981)
(0.00852002 0.112972 0.00249199)
(0.00721886 -0.135322 0.0107886)
(0.00610781 -0.185103 0.0176244)
(-0.0203286 -0.134328 0.0193791)
(-0.094229 -0.0078809 0.0211374)
(-0.225702 0.150327 0.0209988)
(-0.417844 0.331202 0.0200506)
(-0.664243 0.520366 0.016259)
(-0.957676 0.685003 0.0114838)
(-1.29728 0.807785 0.00704254)
(-1.61418 0.857258 0.00392839)
(-1.89652 0.834079 0.00132111)
(-2.15422 0.756877 -0.000202322)
(-2.35949 0.656705 -0.00072274)
(-2.50214 0.561034 -0.00247606)
(-2.59142 0.473339 -0.00420119)
(-2.63732 0.3828 -0.00643825)
(-2.64557 0.305914 -0.009283)
(-2.65461 0.22924 -0.0133352)
(-2.63161 0.180834 -0.0158972)
(-2.56442 0.092968 -0.0182006)
(-2.29881 0.0434765 -0.0172088)
(-2.05765 -0.0881456 -0.0148655)
(-1.9665 -0.262661 -0.0125451)
(-1.91209 -0.44645 -0.0116845)
(-1.88319 -0.638832 -0.0108094)
(-1.83519 -0.857628 -0.00960439)
(-1.78111 -1.07762 -0.00841788)
(-1.69208 -1.29147 -0.00723704)
(-1.58739 -1.46407 -0.00623757)
(-1.45113 -1.57163 -0.00545338)
(-1.32296 -1.56805 -0.00432585)
(-1.2163 -1.46072 -0.00419239)
(-1.10924 -1.21242 -0.00126471)
(-0.865285 -0.912159 0.00249658)
(-0.507454 -0.549492 0.00879192)
(-0.197696 -0.169026 0.0113306)
(-0.0289894 0.107386 0.0139994)
(0.0194793 0.242079 0.0109393)
(0.00940265 0.239615 0.00828067)
(-0.00259101 0.116654 0.00314161)
(0.00137432 -0.152422 0.0143254)
(-0.0246907 -0.172917 0.0218254)
(-0.107834 -0.0557454 0.0246972)
(-0.241066 0.144425 0.0247044)
(-0.431099 0.372295 0.0226)
(-0.65986 0.613096 0.0179296)
(-0.916249 0.806747 0.0114572)
(-1.19759 0.96369 0.00515106)
(-1.52486 0.989819 -0.000107583)
(-1.85382 0.940048 -0.00360371)
(-2.10333 0.8608 -0.00412761)
(-2.27415 0.774944 -0.00639426)
(-2.38684 0.69409 -0.00853869)
(-2.45998 0.602389 -0.00995564)
(-2.48562 0.495893 -0.0112858)
(-2.47755 0.387131 -0.0118753)
(-2.4396 0.305588 -0.0125755)
(-2.3902 0.252958 -0.0143487)
(-2.31271 0.217866 -0.0169618)
(-2.20658 0.134045 -0.0197084)
(-1.95485 0.0809114 -0.018448)
(-1.7615 -0.0523435 -0.015798)
(-1.70145 -0.227016 -0.0132133)
(-1.67922 -0.413001 -0.0124515)
(-1.68073 -0.614023 -0.0112795)
(-1.67722 -0.846048 -0.0102269)
(-1.67546 -1.09562 -0.00895872)
(-1.65162 -1.35683 -0.00794024)
(-1.61056 -1.60405 -0.006833)
(-1.53063 -1.79777 -0.00645971)
(-1.42838 -1.90169 -0.00584701)
(-1.29946 -1.87085 -0.0057406)
(-1.26769 -1.70403 -0.00445544)
(-1.1706 -1.30185 -0.00157683)
(-0.823404 -0.885697 0.00360527)
(-0.431859 -0.416655 0.009985)
(-0.167088 -0.0365573 0.0105454)
(-0.04949 0.179875 0.0116209)
(-0.0178399 0.214019 0.00773171)
(-0.0055472 0.104433 0.00324366)
(-0.00370238 -0.143736 0.0173878)
(-0.0694944 -0.0960226 0.0261191)
(-0.196167 0.0874065 0.0279754)
(-0.380943 0.357242 0.0258781)
(-0.595996 0.632001 0.02063)
(-0.827309 0.868567 0.0131026)
(-1.06412 1.03952 0.00537221)
(-1.39104 1.05988 -0.00138001)
(-1.73801 0.972353 -0.00312889)
(-1.96474 0.909407 -0.00618717)
(-2.1119 0.872462 -0.00960638)
(-2.21724 0.824113 -0.0118754)
(-2.28807 0.747801 -0.0124799)
(-2.3242 0.641345 -0.0117949)
(-2.31904 0.52271 -0.00968125)
(-2.25343 0.40104 -0.00953145)
(-2.13034 0.30241 -0.0122009)
(-2.01354 0.217224 -0.020196)
(-1.92568 0.197885 -0.020861)
(-1.81567 0.164854 -0.0230029)
(-1.58434 0.139547 -0.0195295)
(-1.43456 -0.0189052 -0.0160845)
(-1.40503 -0.177085 -0.0132607)
(-1.39868 -0.362318 -0.0119012)
(-1.41816 -0.560829 -0.0105729)
(-1.44105 -0.792683 -0.0091817)
(-1.47575 -1.05151 -0.00776027)
(-1.5041 -1.33791 -0.00641578)
(-1.52746 -1.63256 -0.0052644)
(-1.52218 -1.9062 -0.00460959)
(-1.4801 -2.11175 -0.004196)
(-1.39113 -2.186 -0.00468985)
(-1.28505 -2.12926 -0.00452166)
(-1.27242 -1.82705 -0.00379682)
(-1.08415 -1.32025 0.000630021)
(-0.649802 -0.774467 0.00582631)
(-0.267594 -0.260241 0.0129533)
(-0.0836899 0.0727098 0.0128109)
(-0.0231754 0.165375 0.00990092)
(-0.000586498 0.0825865 0.00437363)
(0.000729716 -0.0869888 0.0212319)
(-0.0990233 0.0247171 0.0305063)
(-0.282597 0.273351 0.0305264)
(-0.479851 0.579428 0.0249697)
(-0.70071 0.848497 0.0168294)
(-0.921877 1.0413 0.00770789)
(-1.24873 1.08751 0.000472598)
(-1.56399 0.99261 -0.00206244)
(-1.7719 0.957243 -0.00727053)
(-1.914 0.961886 -0.0111326)
(-2.00771 0.93878 -0.0140151)
(-2.0694 0.884945 -0.015145)
(-2.10898 0.794207 -0.0145251)
(-2.11976 0.66642 -0.0118085)
(-2.08288 0.484161 -0.0097411)
(-1.99957 0.289428 -0.00628724)
(-1.87244 0.180421 0.000751295)
(-1.69317 0.203272 0.000488828)
(-1.5017 0.266672 -0.00487528)
(-1.35808 0.280699 -0.016575)
(-1.22503 0.23245 -0.0175694)
(-1.13342 0.0262875 -0.0150005)
(-1.11179 -0.121521 -0.0135819)
(-1.12151 -0.298301 -0.012379)
(-1.14534 -0.484766 -0.0109814)
(-1.1806 -0.70216 -0.00957218)
(-1.23257 -0.951565 -0.00787916)
(-1.29199 -1.23807 -0.00624295)
(-1.36026 -1.55465 -0.00461949)
(-1.41662 -1.8783 -0.00353237)
(-1.44945 -2.17153 -0.00289291)
(-1.42924 -2.37107 -0.00302118)
(-1.3486 -2.41359 -0.00347245)
(-1.28607 -2.27603 -0.00421571)
(-1.20426 -1.82036 -0.00300047)
(-0.872243 -1.19351 0.000485918)
(-0.382933 -0.548594 0.00561454)
(-0.103007 -0.0444462 0.00678274)
(-0.0193692 0.0961525 0.00752389)
(0.00280527 0.0682162 0.00315331)
(-0.0151359 -0.0186979 0.0228815)
(-0.140024 0.143978 0.0324358)
(-0.332703 0.423296 0.0302583)
(-0.545337 0.720198 0.0221951)
(-0.772227 0.946188 0.012433)
(-1.06489 1.06061 0.00408627)
(-1.35981 1.01129 -0.000683734)
(-1.56376 1.0108 -0.0064576)
(-1.70689 1.02959 -0.0107786)
(-1.77997 1.02385 -0.0146046)
(-1.82355 0.995151 -0.0165573)
(-1.86493 0.93385 -0.0168601)
(-1.91384 0.832516 -0.013058)
(-1.98015 0.668559 -0.00516295)
(-2.00912 0.478608 0.0079697)
(-1.83081 0.306937 0.00931072)
(-1.44577 0.0991782 -0.00809934)
(-1.14782 -0.033651 -0.0450034)
(-1.07697 0.0758129 -0.0408697)
(-1.09086 0.364035 -0.0389341)
(-1.04271 0.388673 -0.0256572)
(-0.932676 0.108745 -0.0179244)
(-0.888369 -0.0672148 -0.0148944)
(-0.895584 -0.231083 -0.0133549)
(-0.9123 -0.412586 -0.0116283)
(-0.945241 -0.610213 -0.0100189)
(-0.996928 -0.842823 -0.00812129)
(-1.06364 -1.11328 -0.00616589)
(-1.14968 -1.42755 -0.00420325)
(-1.24063 -1.7727 -0.00261194)
(-1.32418 -2.12266 -0.00158969)
(-1.37206 -2.42047 -0.00136138)
(-1.35787 -2.5986 -0.00183868)
(-1.28149 -2.58217 -0.0028766)
(-1.21311 -2.29619 -0.00317127)
(-1.01166 -1.67373 -0.00194224)
(-0.522534 -0.90974 0.00283379)
(-0.16095 -0.276361 0.00759288)
(-0.0503069 0.0485606 0.00890161)
(0.0176803 0.0566695 0.00401438)
(-0.0287939 0.0469409 0.0243168)
(-0.177049 0.276441 0.0336118)
(-0.382672 0.560927 0.0295643)
(-0.584652 0.819433 0.019543)
(-0.827742 1.00092 0.00895411)
(-1.11003 1.04334 0.00181962)
(-1.3479 1.05617 -0.00394194)
(-1.48994 1.08227 -0.0087579)
(-1.55813 1.08872 -0.0135447)
(-1.57567 1.07342 -0.0166235)
(-1.59663 1.0507 -0.0183863)
(-1.64894 1.01251 -0.0171142)
(-1.75392 0.937237 -0.0100168)
(-1.83444 0.792144 -0.000779998)
(-1.59598 0.378818 -0.0213323)
(-1.03554 -0.167814 -0.0658257)
(-0.651002 -0.412021 -0.0666786)
(-0.660907 -0.00258609 -0.068072)
(-0.891898 0.458275 -0.0569401)
(-1.03425 0.722206 -0.0446816)
(-0.944226 0.506476 -0.0258716)
(-0.805271 0.0863505 -0.0155811)
(-0.746221 -0.0453723 -0.0157834)
(-0.727271 -0.180708 -0.0153868)
(-0.737572 -0.348719 -0.0130341)
(-0.756149 -0.523564 -0.0113442)
(-0.799383 -0.734235 -0.00900215)
(-0.857794 -0.979145 -0.00678012)
(-0.942932 -1.27445 -0.00444323)
(-1.04419 -1.61684 -0.00242989)
(-1.156 -1.9946 -0.000966523)
(-1.25069 -2.36528 -0.000328976)
(-1.29854 -2.65909 -0.000727203)
(-1.27358 -2.78721 -0.00184195)
(-1.18353 -2.66023 -0.00318049)
(-1.05184 -2.17762 -0.00300457)
(-0.715611 -1.35343 -0.00152199)
(-0.223372 -0.570106 0.00329359)
(-0.0365441 -0.0455199 0.00207874)
(-0.0093077 0.0317365 0.00172228)
(-0.0305834 0.120289 0.0244958)
(-0.190268 0.411305 0.0336646)
(-0.40042 0.699859 0.028418)
(-0.602805 0.93975 0.0171779)
(-0.864559 1.07494 0.00670901)
(-1.11572 1.09891 0.00048877)
(-1.28252 1.12467 -0.00545212)
(-1.34858 1.13766 -0.0107115)
(-1.35593 1.12756 -0.0149773)
(-1.32735 1.11133 -0.0192584)
(-1.31522 1.12761 -0.0220672)
(-1.36268 1.13516 -0.0234103)
(-1.40822 1.04067 -0.02142)
(-1.15505 0.603756 -0.0480353)
(-0.280081 -0.125171 -0.115332)
(0.272268 -0.350979 -0.0757682)
(0.0108541 0.12924 0.0543851)
(-0.455105 0.547687 0.0524074)
(-0.666636 0.744718 0.0453944)
(-0.656364 0.873902 -0.00283138)
(-0.565508 0.574291 -0.0021439)
(-0.546166 0.105747 -0.0085552)
(-0.593544 -0.0345626 -0.0147213)
(-0.586007 -0.144138 -0.0157123)
(-0.602686 -0.300601 -0.0140899)
(-0.612363 -0.457841 -0.012236)
(-0.645194 -0.647669 -0.00974657)
(-0.688103 -0.865473 -0.00722394)
(-0.759293 -1.13201 -0.00467422)
(-0.851794 -1.45275 -0.00228349)
(-0.968593 -1.8306 -0.000474455)
(-1.08677 -2.23933 0.000580679)
(-1.17975 -2.62245 0.000488035)
(-1.20782 -2.88569 -0.000518252)
(-1.15054 -2.91491 -0.00181275)
(-1.01759 -2.6062 -0.00267344)
(-0.787867 -1.85526 -0.00159842)
(-0.347422 -0.864826 0.000333891)
(-0.0569078 -0.171497 0.00415323)
(-0.0115331 0.0203639 0.00237369)
(-0.029966 0.203407 0.0242145)
(-0.191784 0.548973 0.0333541)
(-0.401321 0.839168 0.0274362)
(-0.617814 1.05517 0.0157565)
(-0.872006 1.14314 0.00527846)
(-1.06145 1.16874 -0.000224784)
(-1.15715 1.18303 -0.0064719)
(-1.16192 1.16635 -0.0114562)
(-1.11687 1.13723 -0.0169316)
(-1.01989 1.12679 -0.022832)
(-0.95149 1.18462 -0.0300773)
(-0.960538 1.19889 -0.0404306)
(-0.752136 0.880182 -0.0717662)
(0.228957 0.0886107 -0.120522)
(0.78615 -0.308758 0.0347794)
(0.0152773 0.0061778 0.171972)
(-0.84259 0.457361 0.166123)
(-0.882874 0.295667 0.0816413)
(-0.837115 0.302833 0.00494951)
(-0.87542 0.664556 -0.0518285)
(-0.565345 0.684925 -0.0611297)
(-0.461798 0.293691 -0.0451425)
(-0.522437 0.0770125 -0.0288922)
(-0.492316 -0.0647426 -0.0243914)
(-0.514863 -0.235827 -0.0185743)
(-0.512467 -0.394778 -0.0148043)
(-0.535839 -0.573902 -0.0110818)
(-0.561241 -0.770969 -0.00789392)
(-0.614118 -1.00809 -0.0049841)
(-0.688607 -1.2983 -0.00225424)
(-0.795584 -1.65726 -7.12299e-05)
(-0.918519 -2.07691 0.00133847)
(-1.03533 -2.51691 0.00126103)
(-1.10779 -2.8919 0.000248421)
(-1.09972 -3.08204 -0.0013675)
(-0.982988 -2.94213 -0.00232876)
(-0.781933 -2.3529 -0.00280866)
(-0.419787 -1.29406 -0.00111227)
(-0.0810773 -0.354905 -0.000594103)
(-0.0258482 -0.0150318 -0.00022807)
(-0.024802 0.277863 0.0232712)
(-0.179444 0.674416 0.032466)
(-0.391613 0.966012 0.0264603)
(-0.621052 1.14363 0.015031)
(-0.841779 1.2147 0.00512451)
(-0.969764 1.23443 -0.000322977)
(-1.01259 1.21537 -0.00607907)
(-0.966637 1.1646 -0.0113933)
(-0.863947 1.10676 -0.0177079)
(-0.677803 1.09198 -0.0287681)
(-0.550571 1.22936 -0.0464086)
(-0.574999 1.15214 -0.108989)
(0.172536 0.500661 -0.167697)
(0.867349 -0.239632 0.0162825)
(-0.128481 0.328373 0.185132)
(-1.55182 0.563717 0.17629)
(-1.82444 0.0240208 0.108822)
(-1.69595 -0.06651 0.0216954)
(-1.85488 0.463343 -0.0228642)
(-1.57496 0.796034 -0.0575252)
(-0.760911 0.653808 -0.0694678)
(-0.509257 0.314294 -0.0570442)
(-0.535935 0.145608 -0.0400007)
(-0.477296 -0.0249349 -0.0330794)
(-0.481788 -0.189762 -0.0238783)
(-0.459359 -0.355971 -0.0175673)
(-0.466278 -0.524832 -0.0126156)
(-0.472004 -0.706986 -0.00840269)
(-0.503663 -0.915575 -0.00509142)
(-0.555468 -1.17139 -0.00202105)
(-0.64355 -1.49778 0.000518085)
(-0.756705 -1.90451 0.00225938)
(-0.879985 -2.36995 0.00233923)
(-0.97963 -2.82499 0.00111467)
(-1.01417 -3.15131 -0.00047796)
(-0.946444 -3.1861 -0.00184802)
(-0.758369 -2.77147 -0.00167876)
(-0.471748 -1.77936 -0.00107558)
(-0.112499 -0.614057 0.00228788)
(-0.00961951 -0.0825304 0.00130955)
(-0.018439 0.344922 0.022118)
(-0.160113 0.793943 0.0315011)
(-0.384613 1.07892 0.0258203)
(-0.601103 1.2267 0.015081)
(-0.774118 1.29858 0.00516267)
(-0.860562 1.28938 0.000596405)
(-0.861143 1.23044 -0.00513006)
(-0.77751 1.13124 -0.0111575)
(-0.617696 1.01986 -0.0205554)
(-0.304109 1.01819 -0.0384798)
(-0.39839 1.25475 -0.102309)
(-0.190043 1.00651 -0.217008)
(0.553808 0.185477 -0.0918938)
(-0.433511 0.629078 0.136184)
(-1.83347 1.02234 0.174457)
(-1.65139 0.280654 0.172134)
(-1.34926 -0.0340293 0.0930865)
(-1.86336 0.297946 0.0612409)
(-2.02954 0.478986 0.0895034)
(-1.29629 0.265436 0.0283478)
(-0.543883 0.250374 -0.0304051)
(-0.474341 0.318532 -0.0526818)
(-0.497191 0.187275 -0.0468291)
(-0.453607 -0.0165218 -0.03561)
(-0.449356 -0.164715 -0.0277013)
(-0.423645 -0.334572 -0.0192857)
(-0.417052 -0.495148 -0.0136384)
(-0.408827 -0.665867 -0.00848448)
(-0.421428 -0.850379 -0.00487657)
(-0.453481 -1.0736 -0.00149077)
(-0.521138 -1.36335 0.00129173)
(-0.618764 -1.74367 0.00330648)
(-0.73736 -2.2122 0.00343979)
(-0.850848 -2.71938 0.00204025)
(-0.916428 -3.15631 -0.0001507)
(-0.892162 -3.3538 -0.00173646)
(-0.741678 -3.11462 -0.00245536)
(-0.480177 -2.25151 -0.00138989)
(-0.128239 -0.927646 0.00015639)
(-0.00418768 -0.147761 0.000489761)
(-0.00999955 0.391606 0.0207027)
(-0.147353 0.889328 0.0303413)
(-0.3699 1.1661 0.0252136)
(-0.558466 1.31181 0.0154182)
(-0.698375 1.36675 0.00583711)
(-0.758236 1.32012 0.00253613)
(-0.73862 1.21515 -0.00290904)
(-0.639288 1.05805 -0.00811166)
(-0.417348 0.856178 -0.0161954)
(-0.174071 1.01983 -0.0584253)
(-0.519193 1.32122 -0.178362)
(0.0939373 1.05093 -0.24731)
(-0.172974 0.991824 -0.0149052)
(-1.335 1.13221 0.222443)
(-0.864278 0.0332858 0.278295)
(-0.132942 -0.529049 0.0988264)
(-0.924718 0.0180896 0.0242439)
(-2.32304 0.32442 0.0472338)
(-1.91106 -0.171956 -0.0571668)
(-1.05729 -0.219657 -0.0924305)
(-0.758903 0.227655 -0.0602336)
(-0.663373 0.460701 -0.0867721)
(-0.536166 0.260552 -0.0656436)
(-0.478504 0.00581636 -0.0414056)
(-0.43377 -0.144094 -0.0326344)
(-0.404333 -0.322668 -0.0213666)
(-0.382183 -0.480541 -0.0146304)
(-0.361069 -0.643545 -0.00836815)
(-0.357109 -0.808124 -0.00442027)
(-0.372941 -1.00183 -0.000782489)
(-0.422665 -1.25315 0.00231783)
(-0.502836 -1.59806 0.00454695)
(-0.610815 -2.05087 0.00490501)
(-0.727859 -2.58671 0.00336886)
(-0.813339 -3.10817 0.000646381)
(-0.826207 -3.45029 -0.0014713)
(-0.711146 -3.38469 -0.00222223)
(-0.482594 -2.66799 -0.00152713)
(-0.138357 -1.28935 0.000314901)
(0.025826 -0.194349 0.000945532)
(-0.0056781 0.429636 0.0193368)
(-0.134398 0.975145 0.0290346)
(-0.340218 1.26873 0.0251279)
(-0.502374 1.40746 0.0162074)
(-0.623728 1.44074 0.00698837)
(-0.670896 1.34596 0.00508802)
(-0.648268 1.19988 0.00105708)
(-0.574635 0.95191 -0.00209901)
(-0.271861 0.758938 -0.0166143)
(-0.478013 1.09722 -0.125095)
(-0.192516 1.59542 -0.298072)
(0.229416 1.52055 -0.238185)
(-0.110461 1.22531 0.0892537)
(0.338915 0.0396899 0.55891)
(0.493814 -1.0107 0.361716)
(0.00164142 0.090514 0.0554016)
(-2.13634 1.30488 0.118175)
(-3.12183 0.511875 -0.06593)
(-2.02748 -0.306071 -0.283853)
(-1.51389 -0.0167345 -0.147879)
(-1.21463 0.201035 -0.0711899)
(-0.9163 0.309632 -0.0921677)
(-0.610108 0.150855 -0.0651228)
(-0.515348 -0.0221536 -0.0430911)
(-0.425028 -0.164531 -0.0337959)
(-0.392132 -0.329468 -0.0219848)
(-0.351698 -0.47987 -0.0145718)
(-0.318879 -0.633247 -0.00771248)
(-0.300664 -0.783507 -0.00363509)
(-0.304944 -0.9538 0.000369669)
(-0.340715 -1.17116 0.00361278)
(-0.405548 -1.47868 0.00609207)
(-0.503023 -1.9066 0.00653248)
(-0.620405 -2.4536 0.00495247)
(-0.718589 -3.03945 0.0015137)
(-0.756076 -3.51016 -0.0012042)
(-0.673788 -3.60892 -0.00279623)
(-0.469194 -3.05523 -0.00178572)
(-0.14484 -1.66966 -1.13769e-05)
(0.0528924 -0.272888 0.00106571)
(-0.00609016 0.44381 0.0178656)
(-0.115009 1.0451 0.0277866)
(-0.302401 1.362 0.0250252)
(-0.448534 1.4876 0.0175091)
(-0.565682 1.49727 0.00858863)
(-0.614974 1.35126 0.00898577)
(-0.620635 1.18024 0.00427304)
(-0.586249 0.802256 0.0101375)
(-0.421838 0.792155 -0.0347907)
(-0.815485 1.11487 -0.199776)
(-0.06949 1.8037 -0.294959)
(0.41252 1.55057 -0.0921472)
(0.960737 0.23075 0.296613)
(-0.0696101 -0.190625 0.45994)
(-1.30913 0.121343 0.471253)
(-2.22557 1.43196 0.416972)
(-3.85032 1.68163 0.288086)
(-2.50524 0.219976 -0.121721)
(-1.67825 -0.240606 -0.1571)
(-1.24558 -0.137138 -0.0583825)
(-1.00263 -0.120654 -0.0418665)
(-0.748627 0.0426665 -0.0672453)
(-0.519714 -0.0136864 -0.050678)
(-0.451437 -0.081394 -0.0387872)
(-0.38813 -0.207112 -0.0301231)
(-0.355448 -0.346667 -0.0199371)
(-0.311548 -0.484087 -0.0132829)
(-0.273883 -0.622399 -0.00665367)
(-0.248733 -0.76017 -0.00236654)
(-0.245838 -0.911653 0.00156925)
(-0.271849 -1.09534 0.00499978)
(-0.322212 -1.36163 0.00755348)
(-0.405004 -1.75244 0.00839321)
(-0.517082 -2.29947 0.00677859)
(-0.628499 -2.93771 0.00286861)
(-0.691693 -3.52365 -0.000779162)
(-0.642565 -3.78371 -0.0027436)
(-0.462773 -3.38729 -0.00204646)
(-0.161022 -2.02346 0.000148033)
(0.0590735 -0.320777 0.00157872)
(0.00272425 0.466496 0.0164013)
(-0.0804014 1.12265 0.0262685)
(-0.263167 1.47013 0.0249422)
(-0.399496 1.58902 0.0194617)
(-0.529281 1.58239 0.0112129)
(-0.577125 1.39652 0.0156581)
(-0.669705 1.21347 0.00612309)
(-0.639978 0.755341 0.0286266)
(-0.949087 0.911351 -0.079603)
(-0.800251 1.30811 -0.291331)
(-0.460738 1.91804 -0.333919)
(0.140903 1.46783 -0.120234)
(-0.133802 1.5128 -0.0368111)
(-2.15658 1.6485 -0.164746)
(-1.816 0.410219 0.469559)
(-2.59228 1.07966 0.752659)
(-2.47986 0.554018 0.248925)
(-0.966684 -0.728549 -0.0956775)
(-1.02503 -0.606135 -0.075455)
(-0.663466 -0.368885 -0.073418)
(-0.656732 -0.155932 -0.0426268)
(-0.546303 -0.0342087 -0.0567871)
(-0.396965 -0.0637363 -0.0441173)
(-0.362948 -0.120186 -0.0340122)
(-0.331342 -0.233453 -0.0252681)
(-0.301634 -0.358088 -0.017085)
(-0.255046 -0.483208 -0.0111057)
(-0.217639 -0.609763 -0.00529831)
(-0.193169 -0.73814 -0.00110323)
(-0.183945 -0.879054 0.00316806)
(-0.201218 -1.04061 0.00631807)
(-0.240341 -1.27196 0.00947524)
(-0.31335 -1.62027 0.0101963)
(-0.419637 -2.14092 0.00861763)
(-0.532656 -2.80815 0.00405429)
(-0.613337 -3.5051 -0.000400218)
(-0.598484 -3.93096 -0.00301884)
(-0.445787 -3.71247 -0.00255557)
(-0.162897 -2.40445 -0.000287559)
(0.0652761 -0.438328 0.00198857)
(-0.0116558 0.487576 0.0152398)
(-0.0718152 1.20375 0.0248236)
(-0.231252 1.60386 0.0248594)
(-0.358249 1.71849 0.0213445)
(-0.504189 1.70086 0.0131942)
(-0.541943 1.50146 0.0223601)
(-0.744424 1.31568 0.010163)
(-0.729015 0.90631 0.043469)
(-1.43159 1.05585 -0.128099)
(-0.510653 1.77545 -0.407201)
(-0.26517 2.41837 -0.66404)
(-0.0167208 2.25445 -0.76226)
(-0.700408 2.88196 -0.541145)
(-1.82 1.47747 -0.0485351)
(-0.445835 -0.747849 1.08257)
(-0.275328 -0.00181012 0.93176)
(0.304932 -0.480779 0.0879307)
(-0.131236 -0.912788 0.00150204)
(-0.302216 -0.446027 -0.0749114)
(-0.30204 -0.315664 -0.0603193)
(-0.354926 -0.114303 -0.0291172)
(-0.343626 -0.0331083 -0.0430617)
(-0.272987 -0.0577011 -0.0328744)
(-0.272658 -0.119935 -0.0242407)
(-0.264439 -0.215949 -0.0149762)
(-0.235612 -0.31969 -0.00968206)
(-0.192296 -0.427433 -0.00551878)
(-0.161018 -0.535812 -0.00141746)
(-0.145995 -0.64225 0.0020787)
(-0.142242 -0.763579 0.00530054)
(-0.156595 -0.898277 0.0079765)
(-0.18332 -1.09424 0.0107212)
(-0.231349 -1.4023 0.0123717)
(-0.310817 -1.91568 0.0108173)
(-0.429326 -2.61283 0.00573354)
(-0.535041 -3.39348 5.9759e-05)
(-0.560827 -3.98719 -0.00310444)
(-0.457153 -3.96313 -0.00311574)
(-0.201389 -2.73515 -0.000460315)
(0.0485764 -0.483885 0.0023101)
(-0.0017954 0.615419 0.0123827)
(-0.0327411 1.39785 0.0226337)
(-0.174808 1.81679 0.0216146)
(-0.294525 1.96742 0.0219657)
(-0.458652 1.94618 0.0133494)
(-0.463947 1.76942 0.0269121)
(-0.749127 1.58068 0.0164972)
(-0.805785 1.26636 0.0574593)
(-1.61501 1.19349 -0.136634)
(-0.485525 1.91307 -0.39241)
(0.266997 2.84848 -1.05693)
(-0.0311933 2.96467 -2.20704)
(0.0661799 3.75378 -1.9051)
(-1.79655 3.2233 -0.541655)
(-1.18649 0.980196 1.17344)
(1.55666 -0.374314 1.19394)
(1.849 -0.738671 -0.0796398)
(0.330682 -0.370268 -0.120133)
(0.0442801 -0.18819 -0.0888122)
(-0.0393841 -0.13665 -0.0659158)
(-0.0712638 0.00117159 -0.029603)
(-0.169819 0.040221 -0.0342132)
(-0.15165 -0.0185571 -0.030041)
(-0.171192 -0.0824635 -0.019225)
(-0.169344 -0.172915 -0.0103366)
(-0.14353 -0.26291 -0.00628643)
(-0.102784 -0.359962 -0.00191972)
(-0.071879 -0.453527 0.00227395)
(-0.0666607 -0.54497 0.00570337)
(-0.0727601 -0.647605 0.00779882)
(-0.0973311 -0.752993 0.00949781)
(-0.138561 -0.90107 0.0121474)
(-0.217994 -1.13355 0.0124439)
(-0.307311 -1.571 0.0115357)
(-0.363692 -2.24684 0.00662337)
(-0.430836 -3.1473 0.000375545)
(-0.481476 -3.91704 -0.00361515)
(-0.424649 -4.14668 -0.00394038)
(-0.197458 -3.11083 -0.00119478)
(0.0646267 -0.693407 0.00158934)
(-0.0201714 0.81484 0.0114316)
(-0.0258527 1.67216 0.0209095)
(-0.133055 2.10603 0.019982)
(-0.228063 2.28159 0.0231796)
(-0.394109 2.26034 0.0161349)
(-0.390774 2.10298 0.0331568)
(-0.744999 1.89788 0.0330791)
(-0.921947 1.63755 0.0922254)
(-1.84623 1.37649 -0.0382355)
(-0.920042 1.84029 -0.0262948)
(-0.0551619 3.01659 -0.640406)
(-0.60195 2.56312 -2.07149)
(0.720796 3.95178 -2.4335)
(-2.38087 6.38213 -2.01322)
(-1.98397 4.34375 -0.271414)
(1.60033 0.448147 1.1443)
(1.38248 -0.382516 -0.148162)
(0.758175 0.0505856 -0.348428)
(0.228365 -0.000811899 -0.0531544)
(0.170718 0.0477776 -0.0738247)
(0.124474 0.157097 0.0257421)
(-0.0453422 0.201932 0.00737758)
(-0.0641514 0.0752012 -0.00653582)
(-0.0792865 -0.0107686 -0.00429841)
(-0.0871061 -0.120574 -0.00114621)
(-0.0585393 -0.226083 -0.000616992)
(-0.0207345 -0.329995 0.00330754)
(0.0061816 -0.423157 0.00630105)
(0.000577268 -0.504237 0.00916805)
(-0.00860976 -0.594927 0.0101862)
(-0.0281751 -0.686482 0.0115024)
(-0.0501183 -0.807032 0.0133618)
(-0.106469 -0.962996 0.0116152)
(-0.224692 -1.28124 0.0132943)
(-0.41064 -1.84813 0.00807128)
(-0.495614 -2.70699 0.00122642)
(-0.486956 -3.60876 -0.00329154)
(-0.453375 -4.10013 -0.0039739)
(-0.27042 -3.35547 -0.00104951)
(0.0130221 -1.00024 0.00218275)
(-0.0394954 0.820809 0.0110956)
(-0.033704 1.74903 0.0203891)
(-0.0965024 2.22397 0.0196695)
(-0.156287 2.42535 0.0258442)
(-0.315601 2.42618 0.020412)
(-0.307352 2.3067 0.0411139)
(-0.683587 2.09353 0.0495804)
(-0.851744 1.93481 0.130486)
(-1.88188 1.53401 0.0646591)
(-1.00497 1.75462 0.259293)
(-0.0636871 3.06449 -0.0301745)
(-0.10591 0.624247 -1.23339)
(1.31403 1.3952 -1.70471)
(-1.19887 5.55603 -1.32291)
(-1.0278 5.03175 0.172468)
(1.06004 1.88704 1.14389)
(0.448219 0.40154 0.0615581)
(0.809815 0.323992 -0.293732)
(0.332129 0.231643 0.0301366)
(0.401843 0.154053 -0.0163741)
(0.379827 0.375349 0.0888491)
(0.0621877 0.452412 0.0617515)
(-0.0366981 0.218639 -0.0124997)
(-0.0242289 0.0755734 -0.00670326)
(-0.0333421 -0.0848754 -0.0147481)
(0.00178011 -0.225977 -0.0114526)
(0.0514147 -0.327854 -0.00335899)
(0.0941726 -0.418303 0.00760065)
(0.0872756 -0.490788 0.0136199)
(0.0624509 -0.578989 0.0144204)
(0.0279716 -0.664798 0.0145661)
(0.0156837 -0.766308 0.0162859)
(-0.0224283 -0.900377 0.0134218)
(-0.101204 -1.16802 0.0118663)
(-0.25296 -1.61445 0.00950385)
(-0.457642 -2.31696 0.0021538)
(-0.543144 -3.17332 -0.00319819)
(-0.511951 -3.80363 -0.00495381)
(-0.379792 -3.32354 -0.00219187)
(-0.0738533 -1.04296 0.00110779)
(-0.0285649 0.793758 0.0100777)
(-0.00634918 1.7369 0.0190048)
(-0.0384869 2.23673 0.020952)
(-0.0586751 2.45063 0.0242475)
(-0.196772 2.4801 0.0244359)
(-0.191582 2.43926 0.0469955)
(-0.52842 2.23018 0.0598573)
(-0.624677 2.20643 0.15662)
(-1.70332 1.6117 0.133612)
(-0.8844 1.35129 0.348035)
(0.188985 2.96567 0.105355)
(-0.122713 -0.133932 -1.19603)
(-0.0214561 1.42553 -2.08545)
(-0.673766 5.05678 -0.627134)
(-0.305588 3.34284 1.48086)
(0.252565 2.66692 1.57621)
(0.11498 1.11691 0.26852)
(0.512634 0.416637 -0.048374)
(0.332519 0.255472 0.126541)
(0.598348 0.0991639 0.0982658)
(0.77395 0.508984 0.283544)
(0.193511 0.81483 0.241641)
(-0.0861057 0.480078 -0.0583987)
(-0.0448676 0.240728 -0.0569158)
(-0.0456508 0.0172563 -0.0407788)
(0.0392836 -0.179996 -0.0362241)
(0.124454 -0.297221 -0.0111371)
(0.170461 -0.399419 0.012376)
(0.152403 -0.482951 0.0254721)
(0.117853 -0.584117 0.0217165)
(0.0904349 -0.670427 0.0183318)
(0.0853992 -0.760727 0.0174851)
(0.048249 -0.854881 0.017652)
(-0.023727 -1.08006 0.0136847)
(-0.162666 -1.48232 0.0112654)
(-0.332849 -2.12043 0.00253733)
(-0.463391 -2.84639 -0.00326524)
(-0.494024 -3.51748 -0.00563867)
(-0.386154 -3.23554 -0.00287526)
(-0.118731 -1.10671 0.000480479)
(-0.018841 0.775475 0.00982462)
(0.0180727 1.70102 0.0189597)
(0.00526548 2.21538 0.0214126)
(0.0209286 2.45101 0.0256565)
(-0.055744 2.47596 0.025083)
(-0.0522526 2.46824 0.0476549)
(-0.317439 2.28358 0.0667979)
(-0.287243 2.38544 0.187824)
(-1.22804 1.66679 0.206301)
(-0.738316 0.618963 0.531551)
(0.493682 2.89863 0.264376)
(-0.431935 0.830959 -0.959331)
(-1.26469 1.93185 -2.23366)
(-0.119677 4.49616 -1.262)
(0.331735 3.21428 1.30181)
(-0.663768 3.58067 1.28549)
(-0.243105 1.32303 0.295063)
(0.078334 0.356396 0.257196)
(0.207425 -0.00506715 0.167923)
(0.839405 -0.203159 0.16082)
(1.57036 0.0906181 0.458818)
(0.908296 0.661801 0.617125)
(0.114956 0.713017 0.197161)
(-0.0454136 0.382945 -0.167822)
(-0.0781716 0.0683275 -0.139549)
(0.0310803 -0.238314 -0.14281)
(0.187582 -0.334335 -0.0380623)
(0.276376 -0.43938 0.0359523)
(0.245867 -0.498068 0.0564066)
(0.185913 -0.606824 0.0363819)
(0.154666 -0.730169 0.0235883)
(0.167352 -0.820488 0.0196916)
(0.142223 -0.877391 0.0195743)
(0.0648615 -1.03861 0.0208396)
(-0.0660896 -1.39578 0.0116632)
(-0.215112 -1.9877 0.00332293)
(-0.363549 -2.69463 -0.00450448)
(-0.438846 -3.39623 -0.00574658)
(-0.383595 -3.28535 -0.00338505)
(-0.141693 -1.33513 0.000496586)
(-0.00971326 0.722654 0.00890558)
(0.0419404 1.62283 0.0171247)
(0.0609389 2.15768 0.0207066)
(0.0859213 2.44076 0.0285261)
(0.043681 2.46649 0.0286354)
(0.069752 2.48531 0.0593355)
(-0.0320959 2.29377 0.0639254)
(0.0421809 2.50332 0.173705)
(-0.389238 1.76744 0.108623)
(-0.501305 -0.0898176 0.387467)
(1.18503 2.45703 0.503893)
(1.06307 1.83137 0.0603486)
(-0.230371 1.78066 -0.130413)
(0.202829 4.2395 -0.71347)
(0.912772 5.23709 -0.178579)
(-0.328113 5.52021 0.0812621)
(-0.801539 2.00097 -0.113882)
(-0.329489 -0.111218 0.0498469)
(-0.312556 -0.992525 0.216054)
(0.379681 -1.44382 0.224991)
(1.39656 -1.32419 0.165663)
(1.45386 -0.454757 0.362933)
(0.713951 0.403267 0.110352)
(0.080137 0.758211 -0.33538)
(-0.104289 0.425537 -0.392229)
(0.274465 -0.142476 -0.182934)
(0.911388 -0.402919 0.0719955)
(1.08619 -0.449859 0.150531)
(0.7591 -0.524747 0.122714)
(0.460161 -0.65795 0.0474127)
(0.346455 -0.776579 0.0197897)
(0.307731 -0.87968 0.0186453)
(0.259254 -0.892198 0.0223891)
(0.150202 -0.992253 0.0231145)
(9.36178e-05 -1.28227 0.0149739)
(-0.120432 -1.89452 0.00440273)
(-0.271625 -2.62355 -0.00412746)
(-0.369615 -3.41359 -0.0058772)
(-0.360377 -3.42603 -0.00397567)
(-0.142304 -1.56071 0.000534868)
(0.000142559 0.660327 0.00788916)
(0.0661337 1.52392 0.0147112)
(0.116275 2.08054 0.0181403)
(0.151182 2.39345 0.022858)
(0.170441 2.44779 0.0225294)
(0.178401 2.48718 0.035445)
(0.232458 2.29228 0.0430926)
(0.184074 2.45873 0.0998227)
(0.441138 2.0276 0.0871491)
(-0.297796 -0.297117 -0.00367656)
(0.777331 1.33055 0.534582)
(1.33924 2.59362 0.64022)
(0.109854 2.05413 1.06984)
(-0.194192 4.15794 0.363853)
(0.760782 6.59227 -0.737771)
(1.38156 7.06146 -0.278287)
(-0.318665 3.43369 -0.418527)
(-0.349547 0.678737 -0.536509)
(-0.308782 -0.539949 -0.230786)
(-0.303708 -2.01744 0.0816793)
(0.304512 -2.343 -0.120147)
(1.02915 -1.58888 -0.246846)
(1.44496 0.386045 -0.238981)
(1.30314 1.77355 -0.732539)
(1.21499 0.878559 -0.710499)
(2.24551 -0.536348 -0.0345733)
(3.0745 -0.91076 0.498738)
(2.3285 -0.712487 0.368644)
(1.00788 -0.287361 0.0954247)
(0.697593 -0.367437 -0.0328373)
(0.721587 -0.794908 0.00113734)
(0.645355 -0.991809 0.0255177)
(0.4987 -1.00737 0.0299747)
(0.317241 -1.05146 0.0264824)
(0.0803398 -1.2693 0.0179302)
(-0.0544033 -1.87421 0.0055868)
(-0.199834 -2.66488 -0.00395875)
(-0.316986 -3.56992 -0.00623838)
(-0.340153 -3.7282 -0.00455152)
(-0.14078 -1.89441 0.000303335)
(0.00778161 0.583436 0.00702119)
(0.0860687 1.39618 0.0124357)
(0.162193 1.96744 0.0154131)
(0.205703 2.298 0.0180219)
(0.260595 2.38301 0.0165929)
(0.268625 2.38225 0.0177932)
(0.405835 2.24214 0.0160076)
(0.326301 2.18698 0.0194915)
(0.854733 2.21945 0.0130629)
(0.258536 0.212307 -0.171754)
(0.548385 0.124361 0.154207)
(1.14741 2.60235 0.382458)
(0.383334 2.35399 0.347358)
(0.344467 3.28444 1.15647)
(0.658526 6.85055 1.29627)
(1.88784 7.75081 0.862484)
(1.09658 4.73176 0.089894)
(0.529895 1.84643 -0.749245)
(0.715888 0.452809 -0.667977)
(0.361809 -1.82418 -0.0870154)
(0.619805 -2.84873 -0.0688394)
(1.89897 -2.89831 -0.304579)
(2.57317 -1.41833 -0.599579)
(3.12806 0.986899 -0.94271)
(4.44925 0.561763 -0.875281)
(4.83191 -1.31544 -0.163759)
(3.18669 -0.864205 0.0156251)
(1.18567 0.961795 -0.137201)
(0.556253 0.901471 -0.215129)
(1.00521 -0.513958 -0.121294)
(0.997314 -1.22463 0.0158671)
(0.843806 -1.20316 0.0434252)
(0.710743 -1.16801 0.0359068)
(0.49946 -1.20193 0.0279183)
(0.182326 -1.39374 0.0185523)
(0.00686713 -1.96699 0.00778244)
(-0.148902 -2.81577 -0.00478476)
(-0.2573 -3.85393 -0.00634817)
(-0.284426 -4.21599 -0.00515731)
(-0.115823 -2.50667 -0.000245033)
(0.0169516 0.50463 0.00621922)
(0.106316 1.26057 0.0106202)
(0.196749 1.84514 0.0131036)
(0.250562 2.19265 0.0141428)
(0.321167 2.30937 0.0124572)
(0.347379 2.28108 0.00682823)
(0.484609 2.17483 0.00352539)
(0.477589 1.95768 -0.0175084)
(0.867323 2.074 -0.00637785)
(0.945501 0.969541 -0.143993)
(0.703217 -0.192438 -0.0418323)
(1.41748 1.6786 0.343448)
(1.02222 2.42396 0.171635)
(0.838071 1.93222 0.458498)
(1.27031 5.03988 1.44565)
(1.57662 8.27488 1.43271)
(1.13032 5.76569 0.503675)
(0.0686401 1.91586 -0.23327)
(-0.281773 -0.433137 -0.229788)
(-0.644778 -2.06809 0.0620897)
(-0.249127 -2.70294 0.135612)
(0.857048 -2.39425 -0.0942924)
(1.07642 -1.49501 -0.821306)
(2.36628 0.582579 -1.35356)
(4.52523 0.354149 -0.975161)
(3.50945 -0.066869 -0.186981)
(0.858569 1.48103 -0.161267)
(0.444287 2.13244 -0.21944)
(1.32024 0.122521 -0.0266207)
(1.6034 -1.52401 0.0627527)
(1.08587 -1.39517 0.0602007)
(0.923622 -1.17777 0.035997)
(0.842201 -1.12379 0.0330907)
(0.597334 -1.13016 0.0299951)
(0.234994 -1.31687 0.0190513)
(0.0333408 -1.91868 0.00692343)
(-0.142367 -2.80991 -0.00585287)
(-0.255647 -4.01512 -0.00756167)
(-0.309392 -4.62165 -0.00580712)
(-0.14162 -3.12011 -0.000916774)
(0.0215546 0.430638 0.00551878)
(0.125609 1.10906 0.00971562)
(0.22569 1.6905 0.011308)
(0.279886 2.05578 0.0117377)
(0.351419 2.19674 0.00971201)
(0.396117 2.16657 0.00224211)
(0.503837 2.05601 -0.00653314)
(0.568396 1.80457 -0.030227)
(0.765467 1.74365 -0.0442719)
(1.17442 1.22305 -0.11619)
(0.957878 0.139485 -0.247765)
(1.31495 0.596113 0.125469)
(1.44806 1.80339 0.20541)
(0.363775 1.26422 -0.672773)
(1.26744 2.12176 -0.597472)
(3.2719 6.2031 1.03127)
(2.96967 7.23221 1.14677)
(0.350982 4.41612 0.361673)
(-1.28701 0.725414 0.445436)
(-2.22488 -1.54307 0.685686)
(-3.06449 -1.74817 0.12277)
(-3.18321 -0.328701 -0.344061)
(-2.56202 0.978268 -0.914998)
(-0.207535 1.65577 -1.48364)
(1.94548 1.70605 -0.745545)
(1.54709 1.49411 0.357882)
(0.916414 1.16498 0.671008)
(1.85174 -0.135064 0.519016)
(2.02502 -1.11491 0.353905)
(1.44152 -1.0481 0.109809)
(1.07168 -0.913452 0.0224844)
(1.01415 -1.11291 0.00719504)
(0.808237 -0.928242 0.0256042)
(0.554548 -0.867318 0.0305313)
(0.223466 -1.12055 0.0184751)
(0.037665 -1.72218 0.00568774)
(-0.13293 -2.62856 -0.00785541)
(-0.259443 -3.9593 -0.00924248)
(-0.336052 -4.80358 -0.00715338)
(-0.172736 -3.56365 -0.0020246)
(0.0174482 0.375344 0.00473839)
(0.123395 0.983723 0.00867493)
(0.242044 1.54039 0.0106637)
(0.298401 1.93333 0.0106734)
(0.364063 2.10174 0.00934131)
(0.415328 2.0901 0.00262803)
(0.500833 1.9762 -0.00584412)
(0.569279 1.73464 -0.0240647)
(0.676274 1.53624 -0.0428647)
(0.94509 1.18761 -0.0735669)
(1.01535 0.465128 -0.161693)
(1.03409 0.241195 -0.124947)
(1.52417 1.37894 0.220425)
(0.804902 1.90077 -0.239377)
(-0.140119 1.48704 -1.14023)
(1.95112 2.83653 -0.50136)
(4.42776 5.1501 -0.0736046)
(4.769 4.76357 -0.185182)
(3.77096 2.8019 0.454797)
(2.01593 1.01682 1.10321)
(0.178726 0.20131 1.08118)
(-1.29843 -0.106201 0.881466)
(-1.59786 -0.674296 0.588203)
(-0.641853 -1.0274 0.037857)
(0.590871 -0.0343332 0.0686508)
(1.61406 0.152941 0.732032)
(2.23747 -0.370014 1.02737)
(2.05646 -0.266644 0.616897)
(1.3732 0.0542086 0.147862)
(1.198 -0.316241 -0.0332696)
(1.17228 -0.884709 -0.0219842)
(0.937037 -0.878166 -0.0137121)
(0.578141 -0.526352 0.0116406)
(0.397133 -0.620717 0.0195734)
(0.157203 -0.950647 0.00951047)
(0.0281107 -1.50361 0.00288495)
(-0.142069 -2.39518 -0.0117184)
(-0.261238 -3.80534 -0.0112954)
(-0.367206 -4.8639 -0.00883668)
(-0.199644 -3.93874 -0.00330702)
(0.0171831 0.309398 0.00421822)
(0.113525 0.847946 0.00793816)
(0.245886 1.36758 0.0101375)
(0.313562 1.77146 0.0102438)
(0.364389 1.97012 0.00959232)
(0.417919 1.98531 0.00500841)
(0.483132 1.8857 -0.0023587)
(0.543031 1.66774 -0.0167856)
(0.609317 1.44094 -0.0289962)
(0.737264 1.14198 -0.0526692)
(0.851725 0.693482 -0.0705966)
(0.809622 0.262645 -0.158577)
(0.920505 0.729657 -0.0875229)
(1.38018 2.06901 -0.106705)
(0.762861 2.61266 -0.475885)
(0.247869 1.68415 -0.61874)
(2.12336 0.540218 -0.515062)
(4.96973 -0.473387 -0.134479)
(7.13419 -0.438157 0.393787)
(7.33527 0.365532 0.380103)
(6.08876 0.60553 0.441042)
(4.31327 0.435541 0.967239)
(2.72238 -0.660064 0.849239)
(1.38766 -2.10442 0.200034)
(1.06529 -2.19294 -0.235083)
(1.76903 -1.65679 -0.119351)
(1.66375 -1.13951 0.361056)
(0.927792 -0.641282 0.396343)
(0.670859 -0.582628 0.118225)
(0.877804 -0.83299 0.0856074)
(0.753695 -0.687896 0.0307398)
(0.471288 -0.33552 0.00530591)
(0.255712 -0.231627 0.0111624)
(0.217216 -0.516475 0.0105976)
(0.0874547 -0.809343 0.00407381)
(0.0322366 -1.34168 -0.00336212)
(-0.144891 -2.16402 -0.0145469)
(-0.249147 -3.62217 -0.014357)
(-0.390116 -4.85601 -0.0104081)
(-0.225988 -4.27794 -0.00496494)
(0.011794 0.263637 0.00393599)
(0.0919152 0.747256 0.00767361)
(0.225971 1.23358 0.00973991)
(0.313642 1.63703 0.0102943)
(0.362695 1.87134 0.0102434)
(0.41245 1.91881 0.00784246)
(0.470093 1.84318 0.00262892)
(0.519112 1.65569 -0.00613243)
(0.562369 1.43441 -0.0133471)
(0.626377 1.17011 -0.0196948)
(0.658117 0.858994 -0.024553)
(0.672938 0.48856 -0.0226686)
(0.61723 0.374853 -0.019383)
(0.947058 1.17841 -0.0506739)
(1.83374 2.41082 0.0377147)
(2.07992 2.27436 0.75358)
(1.11787 0.167064 1.20608)
(1.23798 -2.45457 0.529453)
(2.38087 -2.62091 -0.128218)
(2.47081 -1.08117 -0.671277)
(2.14073 0.214554 -0.965166)
(2.12415 0.901386 -0.757434)
(1.83394 0.492562 -0.817144)
(1.58659 -0.698539 -0.795421)
(1.64217 -1.33056 -0.762752)
(1.4665 -1.48882 -0.505823)
(0.857273 -1.68212 0.00880771)
(0.326092 -1.54375 0.226994)
(0.18884 -1.01657 0.143048)
(0.270285 -0.551709 0.0681439)
(0.143467 -0.201047 0.02777)
(0.130997 -0.162513 0.0148581)
(0.101219 -0.240679 0.0101759)
(0.132273 -0.479972 0.00625781)
(0.0353176 -0.685159 -0.000172309)
(0.0270528 -1.18342 -0.00865676)
(-0.139042 -1.93734 -0.0171643)
(-0.229675 -3.41666 -0.0163688)
(-0.415129 -4.81764 -0.0118028)
(-0.254884 -4.62081 -0.00617306)
(0.0164908 0.208525 0.00412)
(0.0773852 0.628399 0.00758583)
(0.192136 1.07694 0.00971502)
(0.302111 1.45313 0.0102332)
(0.358794 1.71014 0.0105629)
(0.400532 1.79222 0.00929679)
(0.452352 1.74791 0.00698876)
(0.499245 1.59718 0.00093357)
(0.536036 1.40582 -0.00279839)
(0.575456 1.17962 -0.0061617)
(0.599241 0.939056 -0.00244202)
(0.602694 0.707114 0.00104319)
(0.554218 0.474118 0.0277185)
(0.563892 0.466672 0.0527162)
(1.05509 0.869528 0.108468)
(1.85459 1.31699 0.485594)
(1.82383 1.17289 0.623449)
(0.670969 0.328531 0.218188)
(-0.786047 -0.301305 -0.222951)
(-1.35217 0.294001 -0.453929)
(-0.934124 0.757347 -0.555784)
(0.0338736 0.626616 -0.641549)
(0.755767 0.367123 -0.67667)
(1.03385 0.261001 -0.485024)
(1.16756 0.144346 -0.0504214)
(1.20804 -0.204748 0.131172)
(0.923927 -0.567313 0.00244823)
(0.491435 -0.573136 -0.0488916)
(0.149666 -0.352403 -0.0430835)
(0.114286 -0.263039 -0.0356313)
(0.0871999 -0.200974 -0.0159312)
(0.165628 -0.244863 -0.00762499)
(0.122901 -0.27324 -0.00266379)
(0.142767 -0.449072 -0.00175627)
(0.0356767 -0.591012 -0.00487744)
(0.0464715 -1.0553 -0.0137256)
(-0.128235 -1.73071 -0.0190103)
(-0.204052 -3.23364 -0.0179689)
(-0.451354 -4.78777 -0.0127211)
(-0.289633 -5.03285 -0.00716525)
(0.00654839 0.18118 0.00449052)
(0.0417068 0.571097 0.00788849)
(0.127723 0.984469 0.010102)
(0.251666 1.35743 0.0109625)
(0.347126 1.59712 0.0112143)
(0.397974 1.71311 0.0109388)
(0.445015 1.6901 0.010125)
(0.49786 1.56312 0.00740985)
(0.538506 1.39637 0.00495969)
(0.570864 1.19489 0.00333017)
(0.592991 0.991421 0.00521412)
(0.605075 0.794255 0.00959208)
(0.596219 0.620053 0.01824)
(0.554719 0.502702 0.0315811)
(0.579553 0.4141 0.0537629)
(0.783756 0.266833 0.108068)
(1.07979 0.357104 0.114424)
(1.23163 0.681846 0.0521976)
(1.1139 0.825335 0.015242)
(0.909397 0.783247 -0.0214989)
(1.05742 0.594974 -0.073493)
(1.34151 0.458139 -0.00270503)
(1.36982 0.50266 0.0831419)
(1.37656 0.592738 0.19298)
(1.41795 0.491395 0.365729)
(1.43643 0.0874172 0.271625)
(1.21014 -0.254237 0.0214648)
(0.811032 -0.350624 -0.0674772)
(0.452775 -0.291816 -0.0463403)
(0.394807 -0.221752 -0.0303675)
(0.276872 -0.135873 -0.0168135)
(0.294277 -0.17753 -0.00932168)
(0.18207 -0.173962 -0.00587605)
(0.19386 -0.33786 -0.00393668)
(0.0438117 -0.436378 -0.00755033)
(0.089591 -0.880718 -0.0145157)
(-0.11621 -1.52582 -0.0208328)
(-0.184675 -3.00198 -0.0182031)
(-0.504667 -4.7521 -0.0131439)
(-0.330157 -5.53874 -0.00779938)
(0.0209048 0.152584 0.00490842)
(0.0329615 0.478004 0.00835886)
(0.0702612 0.875952 0.0107789)
(0.17506 1.19478 0.011646)
(0.289517 1.41142 0.0122436)
(0.378234 1.52818 0.0121169)
(0.415392 1.54204 0.0121251)
(0.4759 1.43544 0.0110961)
(0.533089 1.30491 0.0104331)
(0.574944 1.13673 0.00926286)
(0.608297 0.970534 0.00891922)
(0.62998 0.809072 0.00961804)
(0.644374 0.666604 0.0124489)
(0.637998 0.557633 0.0164714)
(0.631595 0.483011 0.0191135)
(0.588474 0.403698 0.0238846)
(0.546557 0.272014 0.0282817)
(0.599357 0.174858 0.0457688)
(0.740234 0.237989 0.103979)
(0.896858 0.359234 0.12326)
(1.15221 0.369066 0.100338)
(1.32482 0.248152 0.128155)
(1.30061 0.0943051 0.173383)
(1.37732 0.0221503 0.227452)
(1.45811 -0.0147229 0.232552)
(1.51873 -0.0965007 0.122074)
(1.36597 -0.135547 -0.00250434)
(1.0319 -0.136384 -0.0270902)
(0.639971 -0.0763728 -0.0187957)
(0.55077 -0.0656955 -0.015444)
(0.391 -0.0335114 -0.0114318)
(0.409755 -0.0762417 -0.00786472)
(0.277768 -0.0802193 -0.00539942)
(0.288865 -0.225609 -0.0043269)
(0.113913 -0.315606 -0.00837808)
(0.135977 -0.710179 -0.0131288)
(-0.0557846 -1.33208 -0.0212831)
(-0.115027 -2.77537 -0.0186605)
(-0.5737 -4.71579 -0.0133861)
(-0.333352 -6.16252 -0.00860969)
(-0.020038 0.126366 0.00525283)
(-0.0293993 0.502868 0.00932054)
(-0.0234349 0.840603 0.0115869)
(0.0319017 1.18591 0.0126699)
(0.184697 1.3569 0.0134027)
(0.341957 1.41518 0.0133504)
(0.405728 1.44247 0.0140433)
(0.467092 1.33805 0.0135003)
(0.55184 1.22676 0.0132108)
(0.610012 1.08278 0.0127533)
(0.66361 0.941605 0.0125841)
(0.701192 0.803644 0.0114847)
(0.734446 0.682317 0.0103585)
(0.751621 0.579687 0.00915828)
(0.767139 0.50134 0.00852785)
(0.784766 0.433766 0.00903084)
(0.804238 0.416651 0.00746611)
(0.765692 0.413586 0.0118414)
(0.720683 0.395349 0.0281361)
(0.783256 0.33011 0.0423356)
(1.11248 0.264412 0.0688115)
(1.44398 0.230157 0.092846)
(1.48881 0.216102 0.103418)
(1.52666 0.198135 0.119503)
(1.50849 0.167931 0.124376)
(1.51504 0.0644733 0.0766336)
(1.39118 0.0141832 0.0119596)
(1.1265 -0.0340783 -0.0154588)
(0.778936 0.00973912 -0.0150785)
(0.729112 0.00505642 -0.0130116)
(0.572725 0.0491492 -0.00826285)
(0.596215 0.010304 -0.00550939)
(0.418105 0.0176299 -0.00392404)
(0.445792 -0.0944214 -0.00426195)
(0.239756 -0.163086 -0.00633641)
(0.275645 -0.502953 -0.0121094)
(0.0551262 -1.01176 -0.0166477)
(0.0572197 -2.48068 -0.0192461)
(-0.576307 -4.57596 -0.0127624)
(-0.258794 -6.7624 -0.00913081)
(0.0542573 0.256828 0.00599517)
(-0.000494076 0.439089 0.00994124)
(-0.0996011 0.721986 0.0120544)
(-0.0464639 0.941921 0.0131062)
(-0.000896547 1.16538 0.013904)
(0.197337 1.16996 0.0139353)
(0.33628 1.20228 0.0151365)
(0.416144 1.12153 0.0149437)
(0.536479 1.03812 0.0149533)
(0.623786 0.928807 0.0141987)
(0.706541 0.821748 0.0137466)
(0.766941 0.715545 0.0125646)
(0.819614 0.623661 0.0109577)
(0.851737 0.542054 0.0082749)
(0.87448 0.47592 0.00777563)
(0.88749 0.410776 0.00896516)
(0.885428 0.345039 0.0120768)
(0.882903 0.272914 0.0168281)
(0.924363 0.248483 0.0273678)
(1.02837 0.217307 0.0359033)
(1.33139 0.209733 0.0485923)
(1.60314 0.17124 0.0575568)
(1.61786 0.113456 0.0635128)
(1.67957 0.0630647 0.0668553)
(1.66733 0.0647048 0.0566184)
(1.70429 0.0128383 0.0350798)
(1.60189 0.0512246 0.010759)
(1.39432 0.0283578 -0.00109152)
(1.04277 0.113469 -0.00250602)
(1.00577 0.100568 -0.00252723)
(0.834557 0.162325 -0.00167251)
(0.894541 0.0931022 -0.00111993)
(0.712908 0.107466 -0.00120479)
(0.798035 -0.00296846 -0.00139986)
(0.543505 -0.0693392 -0.00407059)
(0.666224 -0.356137 -0.00741619)
(0.322877 -0.782154 -0.0135077)
(0.453215 -2.08866 -0.0138533)
(-0.26396 -4.39017 -0.01369)
(0.00748948 -7.29683 -0.00947173)
(-0.230812 0.0613348 0.00716312)
(-0.316473 0.675644 0.0120059)
(-0.307178 0.846356 0.0133398)
(-0.274524 0.993603 0.0137163)
(-0.129423 1.02355 0.0150114)
(0.050789 1.04657 0.0145512)
(0.230803 0.994715 0.0164975)
(0.354921 0.93614 0.0165079)
(0.509348 0.861506 0.0169067)
(0.627541 0.784724 0.0164502)
(0.744253 0.705972 0.015012)
(0.83696 0.628656 0.0131242)
(0.919708 0.559128 0.0111065)
(0.980345 0.495725 0.00911652)
(1.02591 0.44375 0.00913194)
(1.0574 0.390789 0.0107731)
(1.08429 0.339598 0.0121976)
(1.1108 0.302932 0.0125751)
(1.1536 0.289619 0.0159184)
(1.27906 0.229722 0.0220275)
(1.62521 0.206385 0.0368396)
(1.96954 0.164123 0.0450932)
(2.02466 0.13252 0.0479007)
(2.13663 0.0997575 0.0476638)
(2.11408 0.101818 0.0396035)
(2.16899 0.0530613 0.0270898)
(2.06004 0.112706 0.0132349)
(1.91095 0.0691536 0.00558937)
(1.55817 0.148443 0.00360374)
(1.59417 0.13919 0.00279205)
(1.41741 0.215035 0.00305964)
(1.55121 0.153633 0.00295968)
(1.34187 0.167048 0.00249253)
(1.50475 0.0478262 0.00162666)
(1.18844 0.00177279 0.000205092)
(1.38398 -0.216101 -0.00287907)
(0.940488 -0.483821 -0.00708908)
(1.14549 -1.46388 -0.0103694)
(0.322921 -3.90571 -0.0108359)
(0.485144 -7.2175 -0.00862917)
(-0.730955 0.800311 0.00971431)
(-0.607113 0.393722 0.0133918)
(-0.753769 0.569364 0.0129211)
(-0.462482 0.584833 0.012969)
(-0.313426 0.602973 0.0139077)
(0.000818036 0.644206 0.0143766)
(0.225768 0.621342 0.0161008)
(0.45137 0.596144 0.016758)
(0.677698 0.556404 0.0176427)
(0.883155 0.515096 0.0177196)
(1.08121 0.468395 0.0169701)
(1.25886 0.42202 0.0152556)
(1.41725 0.380666 0.0132845)
(1.55093 0.346188 0.0118392)
(1.65504 0.323121 0.0122744)
(1.74618 0.291527 0.0143184)
(1.83281 0.251238 0.0159992)
(1.96427 0.221851 0.0168649)
(2.12133 0.211474 0.0200475)
(2.39114 0.140308 0.0253425)
(2.80577 0.12296 0.0353595)
(3.24806 0.0785763 0.0398195)
(3.34769 0.0364439 0.0394678)
(3.50782 -0.00805379 0.0379104)
(3.45622 0.00028226 0.0277153)
(3.56948 -0.0208531 0.0203309)
(3.41557 0.0501019 0.013921)
(3.3566 0.0422476 0.0093713)
(2.95667 0.119631 0.00777003)
(3.113 0.134201 0.0067987)
(2.89355 0.197177 0.00614166)
(3.19697 0.146074 0.00557905)
(2.90721 0.122022 0.00452206)
(3.24173 0.0370244 0.00394602)
(2.76984 -0.0217153 0.00241793)
(3.12503 -0.211007 0.0011302)
(2.46366 -0.491394 -0.00126781)
(2.83556 -1.13907 -0.00356531)
(1.86003 -3.17243 -0.00603635)
(1.32058 -6.1167 -0.00588101)
(1.16548 1.49326 0.00548525)
(1.73387 0.741813 0.00686303)
(2.47551 0.585704 0.00699102)
(2.88754 0.360761 0.00671223)
(3.16836 0.281475 0.00699578)
(3.41086 0.226776 0.00688662)
(3.6291 0.205876 0.00781164)
(3.84158 0.184015 0.00835818)
(4.06692 0.16955 0.00919445)
(4.29809 0.155383 0.00955523)
(4.51872 0.140657 0.00919471)
(4.73297 0.125464 0.00805693)
(4.91472 0.111611 0.00620313)
(5.07654 0.100013 0.00464155)
(5.18927 0.0945376 0.00529473)
(5.30276 0.0902976 0.00772572)
(5.41563 0.0736843 0.00940239)
(5.61322 0.0585914 0.0101939)
(5.84382 0.0752518 0.0132986)
(6.28197 0.0605646 0.0194943)
(6.70519 0.0382855 0.0296834)
(7.20234 0.0175231 0.0346443)
(7.27021 0.00177032 0.0349842)
(7.35994 -0.0341408 0.0295901)
(7.19234 -0.0264361 0.0239528)
(7.20907 -0.0459837 0.0171638)
(6.85792 -0.031826 0.0112379)
(6.83116 -0.0216159 0.00710049)
(6.34243 0.0123645 0.00514428)
(6.57363 0.0279219 0.00411658)
(6.32017 0.0628095 0.00310201)
(6.75183 0.0657797 0.00246386)
(6.44386 0.0451495 0.00166235)
(6.83824 0.0159611 0.00107675)
(6.30083 -0.0184803 0.000630157)
(6.52591 -0.104255 -3.998e-05)
(5.64578 -0.265539 -0.000887628)
(5.68078 -0.588087 -0.0019443)
(4.25671 -1.15084 -0.00315082)
(2.7791 -2.54092 -0.00406072)
(0.000605512 -0.00307672 0.00606763)
(0.0196675 -0.00705702 0.00863445)
(0.0456694 -0.00740503 0.00975311)
(0.0639691 -0.00689298 0.0116044)
(0.0738957 -0.00622003 0.0122339)
(0.0716283 -0.0060872 0.0151751)
(0.0524097 0.00272109 0.0107464)
(0.0266388 0.00835622 0.01222)
(-0.000664317 0.0229536 0.0102015)
(-0.0484059 0.0230385 0.0121821)
(-0.106121 0.0144515 0.0119576)
(-0.171536 0.0054082 0.0119896)
(-0.247673 -0.00262251 0.0117363)
(-0.335153 -0.00124192 0.0129477)
(-0.422348 0.0109562 0.0154838)
(-0.520739 0.013733 0.0195179)
(-0.637858 -0.000930458 0.0297891)
(-0.790841 -0.000970141 0.0439704)
(-0.878987 -0.00812632 0.0574296)
(-1.06699 -0.00321788 0.06882)
(-1.01703 0.0319098 0.0800799)
(-0.820118 0.0259868 0.0845826)
(-0.798153 0.0240791 0.0842781)
(-0.777965 0.0165144 0.086044)
(-0.768909 -0.0151849 0.0949156)
(-0.717614 -0.0398517 0.103645)
(-0.643124 -0.0592645 0.112844)
(-0.514642 -0.0765526 0.122852)
(-0.361195 -0.0967097 0.130345)
(-0.169324 -0.101617 0.136783)
(0.00953009 -0.0977546 0.132151)
(0.249956 -0.0206705 0.124804)
(0.477712 -0.0445931 0.111271)
(0.557003 0.0147562 0.0879396)
(0.526763 0.044009 0.0620219)
(0.411125 0.0474789 0.0397245)
(0.266828 0.0316706 0.0240324)
(0.142616 0.0165777 0.0130761)
(0.0493991 0.00284243 0.00696635)
(0.000629839 -0.0070467 0.002047)
(0.00610499 -0.0263084 0.00999153)
(0.0397368 -0.0454195 0.016901)
(0.0777427 -0.0475783 0.020094)
(0.100863 -0.0383093 0.0243337)
(0.107355 -0.0221755 0.0257858)
(0.0960063 -0.0189683 0.0299526)
(0.0485764 7.14491e-05 0.0266266)
(-0.0206274 0.0334396 0.0234582)
(-0.125907 0.0546454 0.0275462)
(-0.295204 0.063575 0.0290625)
(-0.479052 0.0896856 0.0299895)
(-0.679728 0.118623 0.0310145)
(-0.893484 0.14923 0.032619)
(-1.11739 0.179683 0.0361081)
(-1.35317 0.187974 0.0409179)
(-1.59657 0.156249 0.0548408)
(-1.80959 0.11094 0.0668559)
(-2.01936 0.0790091 0.0821544)
(-2.16256 0.0509481 0.0951767)
(-2.30449 0.0333212 0.104323)
(-2.12539 0.0476862 0.111449)
(-1.84033 0.0016297 0.102123)
(-1.6989 -0.0386418 0.0941141)
(-1.60609 -0.136022 0.0971649)
(-1.52419 -0.229346 0.0992426)
(-1.39207 -0.310728 0.101274)
(-1.2516 -0.374717 0.104796)
(-1.06942 -0.419659 0.105553)
(-0.860738 -0.447253 0.109211)
(-0.611768 -0.460946 0.110082)
(-0.342403 -0.43329 0.113135)
(-0.0739625 -0.337039 0.106616)
(0.234626 -0.236679 0.102363)
(0.508274 -0.105072 0.0919832)
(0.600525 0.0283797 0.0833571)
(0.569363 0.115633 0.0606246)
(0.446833 0.140943 0.0447652)
(0.28619 0.12284 0.0302916)
(0.124684 0.0851551 0.0179792)
(0.0199082 0.0325424 0.00542748)
(0.00888681 -0.0613406 0.0156995)
(0.0434266 -0.100426 0.0257333)
(0.0764464 -0.0951275 0.0307027)
(0.0911697 -0.0714576 0.0354512)
(0.0641463 -0.0365983 0.0339851)
(0.00705572 0.0106137 0.0464993)
(-0.0775241 0.063167 0.0404021)
(-0.237682 0.136133 0.0404167)
(-0.466879 0.207488 0.0385335)
(-0.722989 0.276176 0.037652)
(-0.999922 0.349988 0.0352681)
(-1.29411 0.403643 0.0337947)
(-1.57488 0.436013 0.0343846)
(-1.85078 0.415565 0.0363079)
(-2.10587 0.353915 0.0440519)
(-2.31991 0.284291 0.049925)
(-2.47924 0.221129 0.0523122)
(-2.63259 0.159497 0.0544023)
(-2.72723 0.114725 0.0533302)
(-2.78593 0.0535791 0.0483161)
(-2.5273 0.0288613 0.0451826)
(-2.20867 -0.0570187 0.0371903)
(-2.06375 -0.172555 0.0251144)
(-1.94051 -0.32093 0.0274404)
(-1.84702 -0.453786 0.0247904)
(-1.71036 -0.588333 0.0249767)
(-1.57248 -0.702397 0.0256949)
(-1.40478 -0.787544 0.0269912)
(-1.24205 -0.831169 0.0268444)
(-1.03478 -0.827009 0.0279173)
(-0.808833 -0.784806 0.0317273)
(-0.550744 -0.696102 0.0345418)
(-0.259184 -0.51232 0.0476052)
(0.0368072 -0.319234 0.0468783)
(0.272514 -0.0869182 0.0513752)
(0.379044 0.113834 0.0476231)
(0.355759 0.20342 0.0442005)
(0.253316 0.222678 0.0338604)
(0.117344 0.176357 0.0228942)
(0.017827 0.0838083 0.00694454)
(0.00829979 -0.0966106 0.0210864)
(0.0385667 -0.146612 0.0352565)
(0.046115 -0.136006 0.0389756)
(0.0158775 -0.0699912 0.0525729)
(-0.0409757 0.00621675 0.046846)
(-0.148753 0.121877 0.0517492)
(-0.32461 0.238336 0.0484731)
(-0.569089 0.377941 0.0421015)
(-0.883866 0.508857 0.0346978)
(-1.22133 0.60427 0.0284044)
(-1.52806 0.651598 0.023873)
(-1.80934 0.658019 0.0200914)
(-2.0753 0.605076 0.0173542)
(-2.3124 0.515737 0.0188229)
(-2.48982 0.424492 0.0146164)
(-2.62006 0.344405 0.0121241)
(-2.70726 0.271274 0.00664122)
(-2.7878 0.203664 0.00118323)
(-2.81689 0.151626 -0.00566849)
(-2.79474 0.0684117 -0.0136448)
(-2.51825 0.027096 -0.0187043)
(-2.22919 -0.0877199 -0.0218249)
(-2.0962 -0.249409 -0.021426)
(-2.00741 -0.402946 -0.0211911)
(-1.94387 -0.567731 -0.020389)
(-1.84494 -0.74629 -0.0185956)
(-1.73993 -0.913051 -0.0152863)
(-1.60011 -1.05833 -0.012757)
(-1.45498 -1.15415 -0.00798526)
(-1.3035 -1.17722 -0.0067155)
(-1.1453 -1.11952 -0.00275692)
(-0.957006 -0.988914 -6.27708e-05)
(-0.736888 -0.8139 0.0125174)
(-0.446611 -0.570436 0.0218679)
(-0.131594 -0.264576 0.0349546)
(0.0768586 0.0159256 0.0405133)
(0.149605 0.194171 0.0383184)
(0.138027 0.263318 0.0331131)
(0.0634448 0.230196 0.0228893)
(0.00848022 0.114221 0.00780002)
(0.00838731 -0.130296 0.0278266)
(0.0084628 -0.179617 0.0477662)
(-0.0143153 -0.130049 0.0542412)
(-0.0822143 -0.00914446 0.0587529)
(-0.20672 0.147262 0.058957)
(-0.391005 0.3231 0.0565877)
(-0.630152 0.510165 0.046192)
(-0.917986 0.675465 0.031959)
(-1.25581 0.801435 0.0198917)
(-1.57476 0.855279 0.0102799)
(-1.86063 0.838924 0.0028773)
(-2.12383 0.765763 -0.00139146)
(-2.33692 0.667923 -0.00319858)
(-2.48761 0.572573 -0.0077129)
(-2.58461 0.485877 -0.0118231)
(-2.63826 0.395412 -0.0174196)
(-2.6541 0.31869 -0.0247555)
(-2.66839 0.240663 -0.0352322)
(-2.64872 0.189678 -0.0435713)
(-2.58041 0.0997595 -0.0499837)
(-2.30979 0.0513684 -0.0486665)
(-2.06726 -0.077156 -0.041936)
(-1.97633 -0.24944 -0.0361827)
(-1.92227 -0.431381 -0.0332961)
(-1.8918 -0.621307 -0.0309093)
(-1.84069 -0.83705 -0.0273004)
(-1.78304 -1.05321 -0.0239632)
(-1.69008 -1.26242 -0.0203775)
(-1.58208 -1.43063 -0.0179479)
(-1.4418 -1.53368 -0.0164964)
(-1.31114 -1.52713 -0.0123553)
(-1.20079 -1.41578 -0.0108584)
(-1.08944 -1.1677 -0.00177354)
(-0.843923 -0.871551 0.00936692)
(-0.489739 -0.518692 0.0271141)
(-0.185287 -0.151041 0.0349797)
(-0.0216629 0.115296 0.0429367)
(0.0219567 0.246631 0.0325175)
(0.0107215 0.241628 0.0256152)
(-0.00289393 0.117888 0.0101284)
(0.00184347 -0.147322 0.0380245)
(-0.0202932 -0.169042 0.0599584)
(-0.0968185 -0.0550253 0.068553)
(-0.22301 0.139369 0.0693763)
(-0.40525 0.362617 0.0637448)
(-0.627675 0.600445 0.0506596)
(-0.88056 0.795513 0.0321005)
(-1.16074 0.956545 0.013524)
(-1.49046 0.991718 -0.000404432)
(-1.82281 0.94668 -0.00987109)
(-2.08125 0.870833 -0.012728)
(-2.2616 0.785186 -0.018867)
(-2.38187 0.704669 -0.0252898)
(-2.4621 0.614127 -0.0291251)
(-2.49395 0.509055 -0.0317999)
(-2.49121 0.400219 -0.0338334)
(-2.45963 0.315653 -0.0352279)
(-2.4168 0.257813 -0.0393972)
(-2.34401 0.221995 -0.047527)
(-2.23378 0.136429 -0.055813)
(-1.97511 0.0851939 -0.0530397)
(-1.77968 -0.0470304 -0.0452565)
(-1.71994 -0.220313 -0.0379227)
(-1.69771 -0.404223 -0.0355755)
(-1.69768 -0.602967 -0.0324979)
(-1.69177 -0.832376 -0.0293051)
(-1.68679 -1.07845 -0.02567)
(-1.65897 -1.33546 -0.0225192)
(-1.61399 -1.57776 -0.0191439)
(-1.53021 -1.76602 -0.0184071)
(-1.42346 -1.86622 -0.0172258)
(-1.29107 -1.83182 -0.0156875)
(-1.25551 -1.66159 -0.0111015)
(-1.15487 -1.25872 -0.00269271)
(-0.806941 -0.848586 0.0128725)
(-0.422041 -0.3904 0.0300979)
(-0.161419 -0.0223186 0.0329435)
(-0.045798 0.188039 0.0355016)
(-0.0176123 0.218034 0.0244931)
(-0.00525624 0.106393 0.0109943)
(-0.0026532 -0.138959 0.0466012)
(-0.0628254 -0.0936927 0.0720519)
(-0.181134 0.0836112 0.0780483)
(-0.358339 0.347033 0.0725169)
(-0.567542 0.618606 0.0582001)
(-0.79597 0.85592 0.0360756)
(-1.03188 1.03216 0.0139114)
(-1.35834 1.06276 -0.00628254)
(-1.71319 0.980427 -0.00929372)
(-1.95081 0.918884 -0.0192958)
(-2.10642 0.880191 -0.0286818)
(-2.21804 0.8322 -0.0356681)
(-2.29414 0.756702 -0.0373406)
(-2.33418 0.651631 -0.0358778)
(-2.33384 0.533592 -0.0288603)
(-2.27687 0.413802 -0.026438)
(-2.16418 0.320624 -0.031022)
(-2.0481 0.235907 -0.0512325)
(-1.95734 0.211096 -0.0580251)
(-1.84109 0.167651 -0.0638914)
(-1.60307 0.14129 -0.0552515)
(-1.45267 -0.0166444 -0.0453704)
(-1.42386 -0.174312 -0.0375883)
(-1.41792 -0.357315 -0.0338977)
(-1.43665 -0.553617 -0.0302475)
(-1.458 -0.78285 -0.02624)
(-1.49047 -1.03842 -0.0221244)
(-1.51575 -1.32079 -0.0179797)
(-1.53564 -1.61108 -0.0146384)
(-1.52699 -1.87983 -0.0124849)
(-1.48148 -2.08049 -0.0123715)
(-1.38832 -2.15156 -0.0126277)
(-1.27878 -2.09203 -0.0121514)
(-1.26195 -1.78728 -0.00905041)
(-1.07093 -1.28178 0.00330903)
(-0.637161 -0.744384 0.0193804)
(-0.261862 -0.24136 0.0391881)
(-0.0834271 0.0786456 0.0385865)
(-0.0239226 0.169349 0.0301946)
(-0.00122077 0.08365 0.0139639)
(0.00186915 -0.0842841 0.057234)
(-0.0909122 0.0234948 0.0841915)
(-0.265729 0.265081 0.0851786)
(-0.456879 0.566015 0.0699857)
(-0.674208 0.834975 0.0468044)
(-0.893397 1.03232 0.0198796)
(-1.21941 1.08859 -0.000531589)
(-1.54345 0.999498 -0.00801535)
(-1.76246 0.962605 -0.0228557)
(-1.91236 0.967222 -0.0338356)
(-2.01309 0.944581 -0.0424032)
(-2.07904 0.89058 -0.0455818)
(-2.12078 0.801773 -0.0433996)
(-2.13397 0.677922 -0.0372349)
(-2.0984 0.503027 -0.0265417)
(-2.01157 0.312045 -0.0214142)
(-1.89051 0.187866 -0.00274503)
(-1.72401 0.18957 0.00412296)
(-1.54281 0.255094 -0.00946027)
(-1.39178 0.268176 -0.0465398)
(-1.24477 0.226945 -0.0507239)
(-1.1504 0.0243903 -0.0433626)
(-1.12939 -0.121467 -0.0389019)
(-1.13876 -0.296474 -0.0353598)
(-1.16219 -0.48065 -0.0314343)
(-1.19653 -0.695684 -0.0272693)
(-1.24696 -0.942024 -0.0223605)
(-1.30419 -1.22486 -0.0174454)
(-1.36966 -1.5371 -0.012642)
(-1.42305 -1.85615 -0.00939583)
(-1.45343 -2.14484 -0.00779844)
(-1.43006 -2.3402 -0.00890015)
(-1.34677 -2.38059 -0.00905464)
(-1.28165 -2.24103 -0.0110901)
(-1.19628 -1.78515 -0.00658509)
(-0.862947 -1.16116 0.00347567)
(-0.379128 -0.52781 0.0189946)
(-0.101265 -0.033687 0.0243206)
(-0.0170803 0.101912 0.0239769)
(0.00280664 0.0695939 0.0108226)
(-0.0132799 -0.0187037 0.0620428)
(-0.131129 0.139242 0.0900784)
(-0.315714 0.412053 0.0847715)
(-0.523701 0.706538 0.0618145)
(-0.748108 0.935221 0.0337349)
(-1.03982 1.05768 0.00769792)
(-1.3414 1.01538 -0.00503306)
(-1.5553 1.01423 -0.021866)
(-1.70742 1.03415 -0.0335579)
(-1.78811 1.02824 -0.04483)
(-1.8354 0.998163 -0.0504337)
(-1.87591 0.936995 -0.0516522)
(-1.92011 0.839112 -0.041949)
(-1.97894 0.679409 -0.0249751)
(-2.00881 0.485255 0.0140713)
(-1.86536 0.323932 0.0306045)
(-1.51905 0.165024 -0.00448451)
(-1.20255 0.0352034 -0.0921116)
(-1.09199 0.108756 -0.107657)
(-1.08399 0.354234 -0.103448)
(-1.0373 0.377422 -0.0717295)
(-0.940498 0.107351 -0.0507363)
(-0.900206 -0.0688347 -0.0429826)
(-0.908785 -0.231922 -0.0378616)
(-0.925538 -0.410673 -0.0331682)
(-0.958292 -0.605975 -0.0283169)
(-1.00911 -0.835441 -0.0228769)
(-1.0744 -1.10235 -0.0170834)
(-1.15837 -1.41247 -0.0114144)
(-1.24677 -1.75301 -0.00677483)
(-1.32807 -2.09852 -0.00374494)
(-1.37371 -2.39204 -0.00384303)
(-1.35796 -2.56816 -0.00469786)
(-1.28022 -2.55073 -0.00713307)
(-1.20979 -2.26523 -0.00802069)
(-1.00483 -1.64342 -0.00416352)
(-0.514016 -0.884898 0.00971573)
(-0.157086 -0.259072 0.0219463)
(-0.0498152 0.0522351 0.0269951)
(0.0164992 0.057738 0.0126487)
(-0.0270194 0.0454792 0.0661529)
(-0.168527 0.269847 0.0936305)
(-0.367221 0.549665 0.0829164)
(-0.566156 0.807699 0.0540743)
(-0.807323 0.993708 0.0233203)
(-1.09225 1.04361 0.00083253)
(-1.33825 1.05901 -0.0152887)
(-1.49069 1.08643 -0.0293515)
(-1.56749 1.09219 -0.0426432)
(-1.58923 1.07411 -0.0514583)
(-1.60956 1.04807 -0.0569571)
(-1.65445 1.0077 -0.0548197)
(-1.75085 0.93619 -0.0343913)
(-1.84588 0.812119 -0.0141696)
(-1.67151 0.444546 -0.0223458)
(-1.14625 -0.081871 -0.161927)
(-0.787177 -0.395376 -0.180537)
(-0.821179 -0.143647 -0.179891)
(-1.03522 0.339614 -0.164205)
(-1.12473 0.664589 -0.147252)
(-0.984343 0.49626 -0.0903151)
(-0.82285 0.0924086 -0.05332)
(-0.757767 -0.0457863 -0.0460862)
(-0.738133 -0.182106 -0.0438503)
(-0.746967 -0.348425 -0.036631)
(-0.765913 -0.521053 -0.0316775)
(-0.80852 -0.728726 -0.0250332)
(-0.86621 -0.970136 -0.0186119)
(-0.949834 -1.26138 -0.0119193)
(-1.0491 -1.59913 -0.00615393)
(-1.15864 -1.97228 -0.00194926)
(-1.25164 -2.33858 -0.000381702)
(-1.29862 -2.62975 -0.00112465)
(-1.27397 -2.75759 -0.00415059)
(-1.18299 -2.63198 -0.00723193)
(-1.04969 -2.1512 -0.00699037)
(-0.710075 -1.32964 -0.00242182)
(-0.221716 -0.555536 0.0119624)
(-0.036537 -0.0393176 0.00821598)
(-0.00712527 0.033264 0.00644685)
(-0.0290421 0.117179 0.0669293)
(-0.182658 0.403501 0.0940542)
(-0.387137 0.688833 0.0798242)
(-0.587372 0.930028 0.0472358)
(-0.848438 1.07051 0.0164666)
(-1.10477 1.10087 -0.00466685)
(-1.28151 1.12868 -0.0206396)
(-1.35719 1.14138 -0.0356738)
(-1.37114 1.12842 -0.0472254)
(-1.34508 1.10742 -0.0581294)
(-1.33076 1.11698 -0.0659677)
(-1.37131 1.12375 -0.0681836)
(-1.42121 1.06685 -0.0614166)
(-1.27054 0.698732 -0.139238)
(-0.505155 -0.0599942 -0.258871)
(0.136937 -0.371847 -0.234628)
(-0.078321 0.122173 0.0835774)
(-0.62528 0.560918 0.121786)
(-0.88005 0.740486 0.0793815)
(-0.833399 0.825164 -0.0297227)
(-0.646142 0.507228 -0.0420544)
(-0.584961 0.0712351 -0.0308253)
(-0.609105 -0.0484305 -0.0465975)
(-0.596173 -0.15285 -0.0449449)
(-0.61014 -0.304399 -0.0401061)
(-0.619391 -0.457847 -0.034084)
(-0.651648 -0.644065 -0.0270564)
(-0.694073 -0.858067 -0.019717)
(-0.764139 -1.1205 -0.0125165)
(-0.854979 -1.43639 -0.00566652)
(-0.969498 -1.80911 -0.000601974)
(-1.08564 -2.21306 0.00272574)
(-1.17815 -2.59316 0.00271064)
(-1.20719 -2.85626 -0.000110648)
(-1.15092 -2.88764 -0.00362064)
(-1.01733 -2.58228 -0.0065517)
(-0.786271 -1.83374 -0.00322978)
(-0.343262 -0.848872 0.00266616)
(-0.0550339 -0.163129 0.0139516)
(-0.0118423 0.021874 0.0081932)
(-0.0287223 0.199282 0.0663584)
(-0.185378 0.540567 0.0932853)
(-0.390182 0.828788 0.0771306)
(-0.605731 1.04747 0.042807)
(-0.860141 1.14039 0.0121563)
(-1.05682 1.17181 -0.0078838)
(-1.16262 1.18733 -0.0241496)
(-1.17599 1.16911 -0.0376622)
(-1.1363 1.13548 -0.0516074)
(-1.04248 1.11695 -0.0660105)
(-0.9711 1.16673 -0.0857061)
(-0.953012 1.19297 -0.11051)
(-0.800841 0.971687 -0.185019)
(0.0295623 0.225333 -0.37612)
(0.73733 -0.26464 0.0169464)
(0.212768 0.0440871 0.428432)
(-0.692525 0.622668 0.480052)
(-0.823391 0.511561 0.226917)
(-0.663543 0.402732 0.00594782)
(-0.653776 0.640735 -0.137489)
(-0.458501 0.610972 -0.144)
(-0.436741 0.244947 -0.103726)
(-0.510625 0.0498712 -0.0704801)
(-0.490604 -0.0830482 -0.0617464)
(-0.514981 -0.24527 -0.0492797)
(-0.514885 -0.398034 -0.0396143)
(-0.538811 -0.572606 -0.0300895)
(-0.564647 -0.765367 -0.0212008)
(-0.616908 -0.9983 -0.0132142)
(-0.689953 -1.28351 -0.00551625)
(-0.794594 -1.63663 0.000321915)
(-0.915458 -2.05071 0.00500128)
(-1.03168 -2.48718 0.00549749)
(-1.10552 -2.86189 0.00253568)
(-1.09932 -3.05487 -0.00220987)
(-0.984244 -2.91961 -0.00583478)
(-0.782697 -2.33407 -0.00728916)
(-0.419375 -1.27738 -0.00198583)
(-0.0810957 -0.345181 -8.44954e-05)
(-0.0250306 -0.0125917 0.000697293)
(-0.0238689 0.273085 0.0639388)
(-0.174234 0.665821 0.0909332)
(-0.382529 0.956548 0.0743124)
(-0.61191 1.13805 0.0402785)
(-0.834893 1.21436 0.00972485)
(-0.970137 1.23855 -0.00861017)
(-1.02232 1.2196 -0.0235776)
(-0.98414 1.16623 -0.0367965)
(-0.889139 1.10217 -0.0525616)
(-0.709443 1.0791 -0.0760607)
(-0.571653 1.19174 -0.11707)
(-0.583185 1.15336 -0.22987)
(0.0147703 0.595507 -0.399511)
(0.936585 -0.163122 0.0225239)
(0.309273 0.323032 0.57476)
(-1.18654 0.702957 0.530428)
(-1.59887 0.180857 0.31034)
(-1.36471 -0.132035 0.0428421)
(-1.46288 0.255078 -0.11418)
(-1.33756 0.687675 -0.191584)
(-0.680792 0.651292 -0.197717)
(-0.482217 0.304064 -0.152301)
(-0.519602 0.12458 -0.11184)
(-0.468605 -0.0384743 -0.0887627)
(-0.474966 -0.20035 -0.06588)
(-0.456897 -0.360114 -0.0479452)
(-0.466059 -0.524834 -0.0344302)
(-0.473002 -0.702512 -0.0225247)
(-0.504762 -0.907246 -0.0134957)
(-0.555202 -1.15815 -0.00476999)
(-0.640888 -1.47834 0.00205307)
(-0.751761 -1.87857 0.00773735)
(-0.874258 -2.33927 0.00866212)
(-0.974805 -2.79338 0.00551782)
(-1.01197 -3.12307 0.00066177)
(-0.946465 -3.164 -0.00404067)
(-0.759546 -2.75425 -0.00368274)
(-0.470402 -1.76512 -0.00151865)
(-0.111207 -0.602676 0.00846195)
(-0.0104087 -0.0783567 0.00527672)
(-0.0177447 0.33992 0.0609051)
(-0.156081 0.78561 0.0882781)
(-0.377159 1.07052 0.0726502)
(-0.594826 1.22297 0.0399373)
(-0.770829 1.29956 0.0109603)
(-0.864062 1.29436 -0.00622939)
(-0.873488 1.23505 -0.0196061)
(-0.798643 1.13433 -0.0328401)
(-0.647961 1.021 -0.0533321)
(-0.347596 0.997266 -0.0898838)
(-0.381473 1.21443 -0.222819)
(-0.314278 0.976837 -0.444454)
(0.54663 0.107059 -0.116933)
(-0.119674 0.554642 0.487725)
(-1.73654 1.14117 0.564385)
(-1.75877 0.485357 0.433573)
(-1.29672 -0.016309 0.21599)
(-1.64086 0.269795 0.176224)
(-1.98549 0.586285 0.182926)
(-1.37961 0.439691 0.00388951)
(-0.550122 0.311476 -0.121127)
(-0.448995 0.286596 -0.155804)
(-0.486168 0.158974 -0.134108)
(-0.442427 -0.0278801 -0.101674)
(-0.44136 -0.176075 -0.0789433)
(-0.417646 -0.339751 -0.0545282)
(-0.414421 -0.496301 -0.0381696)
(-0.408039 -0.662401 -0.0226696)
(-0.421426 -0.843419 -0.0129066)
(-0.452069 -1.06211 -0.00335382)
(-0.517196 -1.34546 0.00418161)
(-0.612351 -1.71854 0.0107275)
(-0.72973 -2.18088 0.0118856)
(-0.843845 -2.68571 0.00849195)
(-0.912099 -3.12608 0.00196181)
(-0.891288 -3.33063 -0.00337372)
(-0.742886 -3.09869 -0.00529386)
(-0.481603 -2.23928 -0.00215281)
(-0.128138 -0.919632 0.00262705)
(-0.0044499 -0.145103 0.00331532)
(-0.00943005 0.386674 0.0570408)
(-0.144241 0.881343 0.0850468)
(-0.363674 1.15898 0.0707308)
(-0.554019 1.3096 0.0412354)
(-0.697519 1.36947 0.0132909)
(-0.762962 1.3267 -0.000456807)
(-0.750364 1.22112 -0.0120727)
(-0.658023 1.06646 -0.0213186)
(-0.452606 0.862997 -0.0421845)
(-0.170364 0.975065 -0.124945)
(-0.564713 1.2465 -0.401917)
(-0.0514726 0.886326 -0.427725)
(-0.160809 0.75624 0.181385)
(-1.70853 1.42205 0.575157)
(-1.46685 0.598709 0.609134)
(-0.424624 -0.317046 0.142383)
(-0.820644 -0.00774862 0.0911819)
(-2.06124 0.422544 0.287854)
(-1.84077 0.0620108 -0.00769634)
(-0.983381 -0.144839 -0.197078)
(-0.613014 0.182367 -0.166076)
(-0.581152 0.413861 -0.237383)
(-0.49971 0.239106 -0.189022)
(-0.454273 -0.00477304 -0.121248)
(-0.422127 -0.153743 -0.0959961)
(-0.394399 -0.327835 -0.0627655)
(-0.37684 -0.482118 -0.0426172)
(-0.358496 -0.640812 -0.0227709)
(-0.356392 -0.802347 -0.011818)
(-0.370722 -0.99187 -0.00158229)
(-0.417803 -1.23701 0.0068694)
(-0.495291 -1.5741 0.014182)
(-0.601452 -2.01927 0.0159922)
(-0.718606 -2.55097 0.0123841)
(-0.806525 -3.07463 0.0047799)
(-0.823343 -3.42488 -0.00224089)
(-0.7116 -3.36835 -0.00440147)
(-0.484061 -2.65798 -0.00240552)
(-0.138458 -1.28148 0.00283341)
(0.0258783 -0.191395 0.00456908)
(-0.00537648 0.424949 0.053291)
(-0.131628 0.967625 0.0813653)
(-0.334532 1.2629 0.0707373)
(-0.498788 1.40653 0.0444478)
(-0.622843 1.44466 0.0184306)
(-0.675136 1.35547 0.00969512)
(-0.656924 1.20801 0.00104744)
(-0.588154 0.974283 -0.000755136)
(-0.307759 0.75285 -0.0270716)
(-0.432073 1.06142 -0.249031)
(-0.436282 1.5001 -0.645215)
(0.0232526 1.33355 -0.480057)
(-0.418011 1.3699 0.105792)
(-0.391403 0.865754 0.868585)
(-0.0672802 -0.366847 0.362136)
(-0.100873 -0.0528387 -0.278705)
(-1.61886 1.18215 0.31364)
(-2.61946 0.688302 0.111228)
(-1.88285 -0.347017 -0.635093)
(-1.34814 -0.148163 -0.382624)
(-1.08937 0.160649 -0.194197)
(-0.861008 0.324972 -0.259867)
(-0.574688 0.161452 -0.197693)
(-0.49279 -0.02428 -0.126841)
(-0.41307 -0.166838 -0.103827)
(-0.380986 -0.331527 -0.0668873)
(-0.344906 -0.480449 -0.0444746)
(-0.315494 -0.631045 -0.021681)
(-0.299602 -0.778498 -0.0100715)
(-0.30216 -0.945053 0.000871039)
(-0.335309 -1.15693 0.0101589)
(-0.397418 -1.45649 0.018424)
(-0.49256 -1.87548 0.0205017)
(-0.609448 -2.41641 0.0168262)
(-0.709543 -3.00297 0.00750191)
(-0.751496 -3.48179 -0.00122316)
(-0.673535 -3.59143 -0.0054805)
(-0.471048 -3.04607 -0.00291793)
(-0.145879 -1.66379 0.00146242)
(0.0530112 -0.270279 0.00482856)
(-0.0055858 0.439342 0.0492664)
(-0.112231 1.03812 0.0780812)
(-0.296846 1.35656 0.0708652)
(-0.444943 1.48751 0.0489972)
(-0.56253 1.50103 0.0262198)
(-0.616528 1.36316 0.0259577)
(-0.618881 1.18861 0.0185946)
(-0.592515 0.842335 0.0409397)
(-0.372624 0.763988 -0.0397276)
(-0.788192 1.08827 -0.385698)
(-0.147485 1.74954 -0.770257)
(0.369447 1.43996 -0.69274)
(0.868874 0.722896 -0.139793)
(-0.133402 0.910175 0.661772)
(-1.71671 0.573944 0.375998)
(-1.87044 1.12221 0.541552)
(-3.06275 1.82037 1.00176)
(-2.4943 0.541201 0.0397637)
(-1.71019 -0.218518 -0.417139)
(-1.22963 -0.0901281 -0.193383)
(-1.01108 -0.0836309 -0.112896)
(-0.758565 0.0714638 -0.195944)
(-0.503901 0.0018772 -0.160868)
(-0.441621 -0.078871 -0.12092)
(-0.378712 -0.205102 -0.0990958)
(-0.346719 -0.34635 -0.0650561)
(-0.305499 -0.483799 -0.0435913)
(-0.270286 -0.621022 -0.0199765)
(-0.24746 -0.756291 -0.00720255)
(-0.242967 -0.904034 0.00407348)
(-0.266364 -1.08307 0.0136045)
(-0.313765 -1.34126 0.0225003)
(-0.393846 -1.72259 0.0255747)
(-0.504952 -2.26167 0.0217795)
(-0.617642 -2.89864 0.0111552)
(-0.684961 -3.49203 0.000362623)
(-0.640974 -3.76382 -0.00512196)
(-0.464392 -3.37838 -0.00367503)
(-0.162457 -2.01884 0.00168349)
(0.0591707 -0.317961 0.00608644)
(0.00313051 0.462542 0.0456441)
(-0.0777319 1.11531 0.0740938)
(-0.256803 1.46486 0.0713546)
(-0.395519 1.58875 0.0552063)
(-0.521902 1.58538 0.0339506)
(-0.57674 1.40823 0.0466842)
(-0.646413 1.22251 0.0319036)
(-0.638605 0.788669 0.10898)
(-0.798802 0.862601 -0.0908744)
(-0.947704 1.17792 -0.478783)
(-0.5221 1.8902 -0.824637)
(0.463625 1.51152 -1.12824)
(0.673525 2.43633 -0.426745)
(-2.5611 3.58575 -0.0396985)
(-2.61173 1.0318 0.618915)
(-1.88134 0.900451 1.71601)
(-2.32678 1.12862 1.19502)
(-1.27177 -0.09646 0.0700029)
(-1.07076 -0.422883 -0.253004)
(-0.652377 -0.325581 -0.199734)
(-0.652889 -0.145402 -0.120048)
(-0.559625 -0.0198761 -0.168806)
(-0.387458 -0.0556874 -0.141544)
(-0.355722 -0.11573 -0.109715)
(-0.324168 -0.228493 -0.0897993)
(-0.295165 -0.355464 -0.0601214)
(-0.250595 -0.481163 -0.0406054)
(-0.214592 -0.607797 -0.018888)
(-0.19109 -0.734378 -0.00536659)
(-0.180594 -0.872271 0.00783288)
(-0.195371 -1.02995 0.017492)
(-0.231872 -1.25429 0.0279248)
(-0.302459 -1.59225 0.0305355)
(-0.407131 -2.10333 0.0267292)
(-0.520371 -2.76701 0.0141553)
(-0.604548 -3.47016 0.00144166)
(-0.595758 -3.90875 -0.00605006)
(-0.447231 -3.70311 -0.00511853)
(-0.164644 -2.40107 0.000383009)
(0.0653133 -0.435591 0.00663987)
(-0.0112246 0.483203 0.0426076)
(-0.0693838 1.19686 0.0708096)
(-0.223994 1.59698 0.0717097)
(-0.353812 1.71714 0.061261)
(-0.49234 1.70294 0.0408761)
(-0.537885 1.51197 0.0668357)
(-0.70375 1.33054 0.0442179)
(-0.717695 0.930396 0.160972)
(-1.30085 1.05092 -0.171741)
(-0.906288 1.61277 -0.653983)
(-0.724967 2.23129 -1.06336)
(-0.0581108 1.91389 -1.28763)
(-0.39073 4.17226 -0.00884372)
(-2.62724 3.94888 -0.39626)
(-0.539207 -0.483408 0.012461)
(0.339441 -0.226323 2.00364)
(-0.117306 0.298934 1.09817)
(-0.251898 -0.301945 0.154975)
(-0.446361 -0.340997 -0.308908)
(-0.287506 -0.28445 -0.208487)
(-0.359446 -0.0956891 -0.105203)
(-0.365265 -0.0151898 -0.141183)
(-0.269558 -0.0501327 -0.120463)
(-0.267856 -0.115445 -0.0902329)
(-0.259349 -0.212853 -0.071286)
(-0.232648 -0.319388 -0.0470988)
(-0.190082 -0.426453 -0.0306401)
(-0.159259 -0.533725 -0.012198)
(-0.144207 -0.637687 0.000199952)
(-0.138849 -0.757127 0.0123092)
(-0.151006 -0.888845 0.0219112)
(-0.174504 -1.07915 0.0317513)
(-0.21993 -1.37854 0.0368749)
(-0.298208 -1.8807 0.0331517)
(-0.416183 -2.57107 0.0188871)
(-0.524687 -3.35605 0.00297725)
(-0.556879 -3.96282 -0.00614172)
(-0.457886 -3.95337 -0.00657919)
(-0.202896 -2.73288 -0.000112254)
(0.048356 -0.482111 0.00725989)
(-0.000607614 0.610998 0.0355914)
(-0.0317484 1.39192 0.0658596)
(-0.167426 1.8084 0.0639321)
(-0.288288 1.96477 0.064194)
(-0.442542 1.94856 0.0438764)
(-0.451148 1.77703 0.0800686)
(-0.688135 1.60278 0.0574557)
(-0.76075 1.29885 0.196663)
(-1.56176 1.3104 -0.200537)
(-0.823157 2.01174 -0.802566)
(-0.228775 2.43011 -1.39943)
(-0.249368 1.8746 -1.45613)
(-0.957077 4.51941 0.35401)
(-2.39732 4.56042 -1.62975)
(-0.113171 0.946182 -3.12128)
(2.08367 0.547723 0.798311)
(1.87131 0.592785 0.903554)
(0.457638 0.0477343 0.18124)
(-0.0723237 -0.0488155 -0.24803)
(-0.0335574 -0.13208 -0.21725)
(-0.0746441 0.0499018 -0.110793)
(-0.194417 0.0822022 -0.117899)
(-0.158092 -0.0012721 -0.118785)
(-0.170633 -0.0748133 -0.0776697)
(-0.168825 -0.173632 -0.0611566)
(-0.141848 -0.267318 -0.0438037)
(-0.0994341 -0.361092 -0.0261364)
(-0.06843 -0.451801 -0.00632148)
(-0.0637802 -0.540218 0.00634372)
(-0.0697389 -0.641851 0.0179683)
(-0.0919698 -0.744331 0.0251762)
(-0.131186 -0.888535 0.0365512)
(-0.207619 -1.11554 0.0377571)
(-0.29384 -1.53878 0.035728)
(-0.34948 -2.20606 0.0215678)
(-0.418968 -3.10855 0.00409914)
(-0.476456 -3.89098 -0.00734901)
(-0.424668 -4.13623 -0.00876856)
(-0.198834 -3.10932 -0.00172434)
(0.0640541 -0.69202 0.00554193)
(-0.0190391 0.812876 0.0288441)
(-0.0257201 1.66808 0.0580647)
(-0.12529 2.10029 0.0565148)
(-0.219574 2.28058 0.0642108)
(-0.374981 2.26528 0.0465221)
(-0.365867 2.11183 0.0876743)
(-0.662083 1.92256 0.0768627)
(-0.799427 1.68249 0.235535)
(-1.70294 1.55898 -0.123044)
(-0.909233 1.97967 -0.545749)
(0.49995 2.1283 -1.36008)
(0.78224 1.06994 -1.01766)
(-0.169039 3.47 0.904058)
(-1.96654 5.14388 -1.83129)
(-0.246349 2.90575 -4.44582)
(2.16046 2.61347 -0.870927)
(2.46609 1.68402 0.206755)
(1.10092 0.61057 -0.198386)
(0.300777 0.243966 -0.195454)
(0.199861 0.102751 -0.305432)
(0.161534 0.270436 -0.0700851)
(-0.0968635 0.288128 -0.0644959)
(-0.0973792 0.0846838 -0.0913893)
(-0.0946674 -0.0101675 -0.0609393)
(-0.0965012 -0.140364 -0.0544604)
(-0.0585125 -0.246687 -0.0435507)
(-0.0149689 -0.342351 -0.022609)
(0.0110571 -0.42479 -0.00242864)
(0.00355929 -0.498889 0.0115078)
(-0.00563932 -0.587331 0.022207)
(-0.0228419 -0.677576 0.0304626)
(-0.0450779 -0.794389 0.0404285)
(-0.095599 -0.945288 0.035848)
(-0.208994 -1.25459 0.0419767)
(-0.396377 -1.80786 0.0268737)
(-0.483033 -2.66829 0.00666661)
(-0.48108 -3.58216 -0.00589405)
(-0.452796 -4.09019 -0.00883226)
(-0.271249 -3.35516 -0.00102069)
(0.0123883 -1.00028 0.00713265)
(-0.0385823 0.820484 0.0280518)
(-0.0346857 1.74718 0.0556141)
(-0.0882555 2.22336 0.0557351)
(-0.145704 2.42278 0.0666424)
(-0.292425 2.43191 0.051241)
(-0.272957 2.31376 0.0972076)
(-0.578065 2.10838 0.088276)
(-0.674863 1.97387 0.26935)
(-1.60107 1.69367 -0.0277675)
(-0.657389 1.6122 -0.187866)
(0.876824 1.71831 -1.05582)
(1.68872 -0.200523 -0.421287)
(0.657379 1.41965 1.13107)
(-1.62102 4.14817 0.527875)
(0.417958 2.64167 -0.669103)
(2.25554 3.2393 -0.28456)
(2.20633 2.42618 -0.253669)
(1.24734 1.14047 -0.464716)
(0.493714 0.571306 -0.205688)
(0.471245 0.388418 -0.346068)
(0.476466 0.687952 -0.143259)
(-0.00877595 0.678693 -0.157024)
(-0.112325 0.176748 -0.226448)
(-0.0526276 0.0312395 -0.136413)
(-0.0545353 -0.137995 -0.119099)
(0.00972876 -0.275464 -0.0905949)
(0.0714018 -0.353537 -0.0447583)
(0.112578 -0.421269 -0.00563171)
(0.0966309 -0.480674 0.0159313)
(0.0661193 -0.568472 0.0290729)
(0.0331834 -0.654288 0.0388451)
(0.0201264 -0.754581 0.0490842)
(-0.0156817 -0.87955 0.0436487)
(-0.0856214 -1.14295 0.0384476)
(-0.235778 -1.57633 0.0323661)
(-0.445268 -2.28019 0.0103762)
(-0.5376 -3.14804 -0.00554026)
(-0.511772 -3.79469 -0.0112301)
(-0.380532 -3.32429 -0.00405224)
(-0.0747641 -1.04469 0.00438988)
(-0.0275338 0.793308 0.0243322)
(-0.00573556 1.73613 0.0510435)
(-0.0327619 2.23792 0.0557638)
(-0.0486216 2.44741 0.0600747)
(-0.169084 2.48102 0.0543702)
(-0.155338 2.43637 0.102614)
(-0.415095 2.23274 0.089678)
(-0.418577 2.22803 0.281149)
(-1.24244 1.72949 0.025081)
(-0.180107 1.12353 0.11173)
(1.08403 1.56871 -0.123079)
(1.20439 -1.17884 -0.260504)
(-0.300791 0.436511 -0.801304)
(-1.15403 3.0761 -0.253887)
(1.54884 0.209632 2.28797)
(2.38412 2.37149 1.55245)
(2.08281 2.58772 -0.20251)
(1.12689 1.31005 -0.366203)
(0.602276 0.617678 -0.153426)
(0.823201 0.534258 -0.404124)
(1.21914 1.47121 0.15779)
(0.338963 1.66662 0.154149)
(-0.188497 0.725818 -0.523783)
(-0.0351504 0.261528 -0.431453)
(-0.0146354 -0.062907 -0.273159)
(0.0803143 -0.290479 -0.168567)
(0.178624 -0.343492 -0.0675576)
(0.208706 -0.393978 -0.0053933)
(0.166363 -0.454334 0.0261567)
(0.118777 -0.565384 0.0378635)
(0.0931258 -0.657223 0.0477649)
(0.091242 -0.747962 0.0556222)
(0.0552895 -0.834886 0.0569406)
(-0.010495 -1.04854 0.0454631)
(-0.146578 -1.44747 0.038952)
(-0.321304 -2.08575 0.0117365)
(-0.4577 -2.82383 -0.00485133)
(-0.493925 -3.5088 -0.0128454)
(-0.38644 -3.2364 -0.005957)
(-0.119322 -1.10823 0.00364465)
(-0.0170201 0.774965 0.0227985)
(0.0194015 1.7001 0.049959)
(0.0108431 2.21507 0.0553438)
(0.028102 2.45328 0.066547)
(-0.0322372 2.47604 0.0468611)
(-0.0164048 2.47004 0.0904874)
(-0.186296 2.27883 0.0862803)
(-0.0526591 2.36553 0.291936)
(-0.551506 1.63204 0.0575033)
(0.193789 0.386554 0.428952)
(1.91624 1.4195 0.630065)
(1.2723 -1.85861 -0.321904)
(-0.858137 -2.30297 -2.15013)
(-0.627518 0.504863 -2.79915)
(1.12208 -0.569405 0.993622)
(1.23915 1.96531 1.46647)
(1.27746 2.29464 -0.399841)
(0.752062 0.982804 -0.297727)
(0.505032 0.399248 -0.121835)
(1.11033 0.300774 -0.367873)
(2.68482 1.5177 0.924718)
(2.55579 2.43447 2.00208)
(0.865108 1.64539 0.61574)
(0.0875562 0.794793 -0.388447)
(0.0806794 -0.00466045 -0.398407)
(0.179429 -0.368952 -0.320874)
(0.358542 -0.364433 -0.110514)
(0.35111 -0.389484 0.0131114)
(0.242527 -0.421023 0.0592048)
(0.164488 -0.573348 0.0603896)
(0.149135 -0.713354 0.0633962)
(0.170738 -0.805363 0.0710106)
(0.152205 -0.857469 0.0685648)
(0.0758581 -1.00954 0.0659058)
(-0.0561025 -1.361 0.0424)
(-0.204423 -1.95308 0.0162597)
(-0.357969 -2.67309 -0.00762194)
(-0.437975 -3.38759 -0.0142703)
(-0.38371 -3.28625 -0.00808286)
(-0.141648 -1.33641 0.00374532)
(-0.00816957 0.721041 0.0189759)
(0.0439351 1.61949 0.0438308)
(0.0696377 2.15465 0.0522853)
(0.0956146 2.43664 0.0669131)
(0.0753058 2.46126 0.0513267)
(0.101862 2.47066 0.102804)
(0.0705885 2.26535 0.0674058)
(0.145861 2.40547 0.269714)
(0.150865 1.63643 -0.0144973)
(-0.0309827 -0.24977 0.200922)
(2.05038 1.10879 0.613656)
(2.11819 -0.827366 -0.463214)
(-0.2412 -1.89825 0.2197)
(-1.00347 1.01345 -1.38922)
(-0.767867 1.7926 -1.34094)
(0.402719 2.73406 0.645088)
(0.191974 2.30316 -0.340385)
(0.223672 0.463809 -0.790724)
(-0.131429 -0.464783 -0.656706)
(0.268744 -0.782003 -0.639709)
(2.36954 -0.196326 0.398568)
(4.047 1.04769 2.40199)
(2.7342 1.45921 1.55523)
(0.687987 1.09531 -0.299705)
(0.312349 -0.00909856 -0.72943)
(0.752237 -0.508124 -0.429226)
(1.02873 -0.338751 0.0485968)
(0.847645 -0.279907 0.221802)
(0.549088 -0.33774 0.158442)
(0.377516 -0.588681 0.0894556)
(0.318236 -0.758106 0.101852)
(0.301604 -0.864941 0.101008)
(0.264496 -0.870453 0.0878852)
(0.159124 -0.967612 0.0773415)
(0.00944236 -1.24715 0.0525094)
(-0.112605 -1.85853 0.020019)
(-0.267232 -2.60072 -0.00682807)
(-0.369068 -3.40431 -0.0151695)
(-0.360053 -3.4265 -0.00892904)
(-0.141638 -1.56219 0.0043057)
(0.00108901 0.658394 0.0149962)
(0.0672004 1.52018 0.0366456)
(0.121011 2.07555 0.0453503)
(0.15659 2.38156 0.0542547)
(0.185142 2.43343 0.0408911)
(0.192273 2.44322 0.0563593)
(0.283491 2.24418 0.0284862)
(0.214309 2.30584 0.112623)
(0.639364 1.92409 -0.0243891)
(-0.279121 -0.22759 -0.370064)
(0.797353 0.449084 0.798088)
(1.44478 0.849622 -0.101266)
(-0.143141 -0.289025 1.03475)
(-0.986707 1.67255 0.0437355)
(-1.45206 3.15729 -2.82655)
(0.371957 2.82069 -0.149993)
(0.615184 1.84591 0.660314)
(0.207671 0.417063 -0.861762)
(-0.564474 -0.303102 -1.06828)
(-0.805241 -0.952269 -0.735983)
(0.539938 -1.10524 -0.890562)
(3.18659 -0.6053 0.158575)
(4.05969 1.01348 0.825364)
(2.71576 1.13139 -0.360207)
(2.08461 -0.249409 -0.589131)
(2.71534 -0.535826 0.455697)
(2.49728 -0.33644 0.862612)
(1.2248 -0.1242 0.3439)
(0.579281 -0.0261828 -0.0439683)
(0.606538 -0.40883 0.042215)
(0.676715 -0.787408 0.163683)
(0.616037 -0.97272 0.153605)
(0.491445 -0.983528 0.119667)
(0.31769 -1.02482 0.0908437)
(0.0862829 -1.24203 0.0615873)
(-0.0482445 -1.83749 0.0250185)
(-0.196528 -2.64302 -0.00520982)
(-0.316288 -3.5588 -0.0152697)
(-0.339951 -3.72845 -0.0101188)
(-0.140131 -1.89643 0.00389058)
(0.00802909 0.581599 0.0113574)
(0.0858322 1.39319 0.0295509)
(0.163591 1.96303 0.0374048)
(0.207436 2.28763 0.0417184)
(0.263685 2.36999 0.0296853)
(0.269443 2.34901 0.0236006)
(0.407526 2.20764 0.000330757)
(0.325453 2.07953 -0.0114352)
(0.827106 2.1096 -0.033211)
(0.2142 0.388249 -0.457052)
(0.343178 -0.0591709 0.709119)
(0.965703 1.75463 0.678646)
(0.0472542 0.681593 -0.446336)
(0.323909 0.927596 1.31539)
(-0.0830558 4.05384 0.35692)
(-0.18031 4.26619 -0.336816)
(0.500034 2.46238 0.38872)
(0.916004 0.727879 0.0863331)
(0.446961 0.166594 0.0117635)
(-0.199941 -0.81984 0.161587)
(0.427589 -1.28677 -0.469763)
(2.89146 -1.61246 -0.63919)
(5.03783 -0.619234 0.271031)
(5.59516 -0.0159959 0.193268)
(4.85298 -1.30826 0.111976)
(3.44002 -0.834169 0.803203)
(1.90335 1.54705 0.233564)
(0.527704 2.58198 -0.47825)
(0.553816 0.948243 -0.201925)
(0.995042 -0.740537 0.159072)
(0.937682 -1.16663 0.235334)
(0.804857 -1.16606 0.181043)
(0.690415 -1.13954 0.145372)
(0.485935 -1.17696 0.10583)
(0.185702 -1.36928 0.062715)
(0.0125245 -1.93456 0.0306862)
(-0.146704 -2.79323 -0.00695888)
(-0.255921 -3.84216 -0.014844)
(-0.284757 -4.21579 -0.0116834)
(-0.115313 -2.50918 0.00269505)
(0.0168586 0.503583 0.0079427)
(0.105084 1.25945 0.0237966)
(0.195299 1.84246 0.0305637)
(0.249202 2.18576 0.0312895)
(0.316316 2.29954 0.0200288)
(0.343074 2.26071 -0.00021847)
(0.469175 2.15054 -0.0221285)
(0.475202 1.90995 -0.0850466)
(0.797131 1.98271 -0.0703105)
(0.957224 1.05562 -0.413513)
(0.506567 0.0238471 -0.0817137)
(1.42716 1.44317 1.35257)
(1.19573 1.50751 0.192722)
(0.884407 0.0371035 0.66238)
(1.26043 3.0627 2.75679)
(0.1146 6.35994 1.40179)
(-0.705903 4.11606 0.0445759)
(-0.976269 1.11354 -0.272118)
(-0.607679 -0.592835 0.343822)
(-0.357525 -1.44371 0.315422)
(0.221972 -1.87724 -0.283341)
(1.37787 -1.82637 -0.62532)
(2.79982 -1.38506 -1.04887)
(4.27519 -0.778725 -1.40238)
(3.52408 -0.947583 -0.984063)
(1.01374 0.518563 0.0188483)
(0.0221852 3.07612 0.0365621)
(0.639839 2.61136 0.11946)
(1.48222 -0.1965 0.580999)
(1.45148 -1.56258 0.362694)
(0.972107 -1.23062 0.125102)
(0.885815 -1.10702 0.116508)
(0.811152 -1.08918 0.157625)
(0.574558 -1.10844 0.11942)
(0.234161 -1.29842 0.0670018)
(0.0377372 -1.89197 0.0289291)
(-0.139561 -2.78772 -0.00942698)
(-0.253686 -4.00432 -0.0177944)
(-0.309325 -4.62178 -0.0138886)
(-0.14112 -3.1236 0.00115564)
(0.0215222 0.430209 0.00656702)
(0.123598 1.10941 0.0213699)
(0.222282 1.69019 0.0258692)
(0.27663 2.05284 0.0252803)
(0.344476 2.19178 0.0147723)
(0.386487 2.15819 -0.0073725)
(0.48168 2.04132 -0.0361924)
(0.545302 1.79057 -0.0966457)
(0.696511 1.68606 -0.137023)
(1.08461 1.23361 -0.306075)
(0.833585 0.25069 -0.592663)
(1.12927 0.640767 0.636174)
(1.71502 1.28842 1.39913)
(0.357072 0.0849227 -0.73144)
(0.0413215 0.889276 -0.87105)
(2.26143 5.55896 2.45465)
(1.7295 6.6843 2.62952)
(-0.732448 3.93392 0.950024)
(-1.73354 0.728817 -0.163954)
(-1.53185 -1.14694 -0.73189)
(-1.78596 -1.69847 -0.975548)
(-1.97485 -0.996396 -1.36258)
(-1.34753 0.0234076 -2.31375)
(0.377921 0.66026 -2.71195)
(0.723712 1.08266 -1.21879)
(-0.155618 1.04708 0.606342)
(0.440955 0.522406 1.55017)
(1.67977 -0.532624 1.36361)
(1.62434 -0.979166 0.56619)
(1.10716 -0.84315 -0.129225)
(0.957348 -0.841416 -0.0725799)
(0.979757 -1.06892 0.113599)
(0.775478 -0.899724 0.155034)
(0.538604 -0.863254 0.112545)
(0.225092 -1.11495 0.0630906)
(0.0427354 -1.70063 0.0259938)
(-0.129553 -2.609 -0.0152519)
(-0.256672 -3.94954 -0.021462)
(-0.335773 -4.80437 -0.0172909)
(-0.172213 -3.5678 -0.00163561)
(0.0173106 0.375188 0.0054101)
(0.121843 0.984412 0.0188731)
(0.238305 1.54203 0.0245661)
(0.294614 1.93318 0.0226198)
(0.357475 2.10082 0.014952)
(0.405844 2.08853 -0.00485202)
(0.483317 1.97282 -0.0306813)
(0.543926 1.73697 -0.0799735)
(0.639741 1.53099 -0.123966)
(0.849973 1.21332 -0.205292)
(0.952844 0.569374 -0.369187)
(0.855545 0.365341 -0.213482)
(1.3479 1.20422 1.31593)
(0.512065 1.4012 0.808206)
(-1.72726 1.13429 -2.03967)
(-0.0595994 2.70906 -0.770751)
(3.73791 4.88121 1.83111)
(4.63418 4.64147 2.19663)
(3.67515 3.09524 1.71945)
(2.67231 1.29078 1.03818)
(1.48456 0.262854 0.665306)
(0.26203 -0.28662 0.515372)
(0.160243 -0.812029 0.356695)
(0.77114 -0.722888 0.436504)
(1.15406 0.147752 0.928669)
(1.78243 -0.0679018 1.65381)
(2.32379 -0.793174 2.29189)
(1.68796 0.0123855 1.67742)
(0.928916 0.650099 0.337971)
(1.0443 -0.125462 -0.115589)
(1.18946 -0.940705 0.0890884)
(0.941501 -0.889236 0.157006)
(0.579276 -0.529029 0.114559)
(0.401788 -0.634145 0.0772046)
(0.169311 -0.950571 0.035648)
(0.0380174 -1.49168 0.0203864)
(-0.137388 -2.37899 -0.0255485)
(-0.2569 -3.79828 -0.026983)
(-0.366268 -4.86548 -0.0213834)
(-0.198757 -3.94362 -0.00542482)
(0.0169403 0.309703 0.00522481)
(0.11225 0.849423 0.0174951)
(0.242512 1.36992 0.0240204)
(0.310087 1.7732 0.0221523)
(0.359579 1.97129 0.0170066)
(0.410531 1.98746 0.0016192)
(0.469746 1.88666 -0.0197557)
(0.525997 1.67518 -0.055309)
(0.583073 1.45306 -0.0893851)
(0.696194 1.16721 -0.139386)
(0.758683 0.78196 -0.190502)
(0.705543 0.363363 -0.262055)
(0.592048 0.764726 0.240975)
(0.751372 2.12315 0.984494)
(-0.586316 2.55124 0.108328)
(-1.01115 0.264954 -0.405926)
(1.85152 -1.4224 0.362168)
(5.26384 -0.889792 0.711927)
(8.00561 0.0405224 1.84644)
(8.76441 0.681327 2.48389)
(7.35692 0.815168 2.26176)
(5.51777 0.907469 1.83184)
(3.73628 0.142767 1.2585)
(2.1992 -0.666676 0.665486)
(1.75267 -0.806007 0.117783)
(2.44294 -0.856556 0.127943)
(2.35858 -1.1729 1.32935)
(1.15999 -0.801949 1.63064)
(0.601495 -0.369756 0.791844)
(0.89331 -0.681242 0.369778)
(0.78615 -0.70174 0.185786)
(0.494428 -0.346242 0.0790618)
(0.279214 -0.247277 0.0504188)
(0.235279 -0.527649 0.0393111)
(0.104152 -0.808823 0.0192746)
(0.0441842 -1.33503 -0.00141855)
(-0.137355 -2.15084 -0.0346036)
(-0.244067 -3.61708 -0.0356393)
(-0.388194 -4.85803 -0.0257721)
(-0.225333 -4.28286 -0.00995543)
(0.0116244 0.264518 0.00528908)
(0.090805 0.749525 0.0173094)
(0.223232 1.23668 0.0236946)
(0.310948 1.64 0.0238834)
(0.359941 1.87334 0.0205548)
(0.407519 1.92136 0.0105386)
(0.46263 1.84538 -0.00446523)
(0.510193 1.6614 -0.0277313)
(0.553293 1.44377 -0.0505732)
(0.610826 1.19118 -0.0741303)
(0.641935 0.897418 -0.094226)
(0.648604 0.599018 -0.0862747)
(0.520115 0.483429 -0.0265582)
(0.687493 1.4349 0.182799)
(1.20955 2.63019 0.563941)
(2.23201 1.08243 2.27001)
(2.08283 -1.83127 2.39514)
(2.05346 -3.413 0.256523)
(3.62106 -2.8305 0.119879)
(4.15125 -0.902333 0.381424)
(3.23274 0.742519 0.251345)
(2.26983 1.45043 0.202305)
(1.14225 1.15459 -0.57028)
(-0.0859153 0.544346 -1.56622)
(-0.14057 -0.231928 -1.87609)
(0.599249 -1.02548 -1.16704)
(0.807595 -1.58904 -0.00311666)
(0.469727 -1.56719 0.585475)
(0.208225 -0.918446 0.345091)
(0.251127 -0.488873 0.0546085)
(0.158867 -0.202125 -0.0238031)
(0.153974 -0.170716 -0.0144823)
(0.124749 -0.251098 0.00427142)
(0.151712 -0.487424 0.0125399)
(0.0514542 -0.68519 0.00145398)
(0.0403474 -1.17899 -0.0184608)
(-0.129374 -1.92743 -0.0422994)
(-0.223833 -3.41317 -0.041704)
(-0.412618 -4.82004 -0.0297043)
(-0.253977 -4.62516 -0.0140385)
(0.0162184 0.209833 0.006126)
(0.0763823 0.631322 0.0178002)
(0.189887 1.08078 0.0245133)
(0.299722 1.45704 0.0257758)
(0.356861 1.71262 0.0242405)
(0.397564 1.79428 0.0178172)
(0.446736 1.7497 0.00673172)
(0.493619 1.59896 -0.00951215)
(0.530641 1.40771 -0.0258484)
(0.570302 1.1827 -0.0425279)
(0.593485 0.949145 -0.0521068)
(0.60775 0.721893 -0.0524341)
(0.56966 0.513125 -0.0152244)
(0.579468 0.569504 0.0623728)
(1.06121 0.928017 0.223769)
(1.96615 1.01408 0.965497)
(2.0116 0.587057 1.37392)
(0.807228 -0.616828 0.502284)
(-0.679476 -1.44381 -0.328707)
(-1.09848 -0.0925284 -0.495768)
(-1.10262 1.13098 -0.397821)
(-0.661936 0.863313 -0.157877)
(-0.2225 0.313415 -0.221651)
(-0.402139 0.141438 -0.727228)
(-0.305351 -0.0236438 -0.634358)
(0.122325 -0.167474 -0.373984)
(0.481264 -0.322161 -0.269873)
(0.472283 -0.389532 -0.25211)
(0.208754 -0.261369 -0.219775)
(0.160626 -0.237434 -0.16059)
(0.133348 -0.204397 -0.0882043)
(0.20076 -0.251566 -0.0384607)
(0.150455 -0.28017 -0.0127016)
(0.164902 -0.454054 -0.00252322)
(0.0516796 -0.5914 -0.00903264)
(0.0603407 -1.04998 -0.0321443)
(-0.116988 -1.72377 -0.0483623)
(-0.197822 -3.23113 -0.0460664)
(-0.448023 -4.7899 -0.0327099)
(-0.288597 -5.03658 -0.0175556)
(0.00642728 0.182657 0.00686297)
(0.0409625 0.574401 0.0195392)
(0.12612 0.988985 0.0256487)
(0.249828 1.36199 0.0285447)
(0.34567 1.60048 0.0282457)
(0.396462 1.71524 0.0243463)
(0.441703 1.69179 0.0171852)
(0.49273 1.5648 0.00493775)
(0.533939 1.39691 -0.00759266)
(0.568104 1.19588 -0.0197191)
(0.592953 0.991664 -0.0274808)
(0.609468 0.797721 -0.0291113)
(0.604925 0.61696 -0.020305)
(0.574731 0.497893 0.00054002)
(0.608941 0.383781 0.0461755)
(0.758556 0.14032 0.09426)
(0.919741 0.270116 0.0457316)
(0.937774 0.551327 -0.0424735)
(0.499938 0.558598 -0.029695)
(0.0520611 0.73389 0.295362)
(0.263535 0.912013 0.511363)
(0.785085 0.577291 0.518073)
(1.05101 0.290115 0.416945)
(1.08198 0.172371 0.352238)
(1.07223 -0.0181118 0.329432)
(1.0669 -0.0860316 0.0863533)
(1.00673 -0.139102 -0.136577)
(0.792504 -0.252148 -0.192199)
(0.492108 -0.241827 -0.141946)
(0.430116 -0.192304 -0.0942023)
(0.30911 -0.12464 -0.0568076)
(0.321283 -0.174534 -0.0292795)
(0.20566 -0.175217 -0.0145738)
(0.214153 -0.339494 -0.00609169)
(0.0594895 -0.436949 -0.0165332)
(0.102514 -0.874581 -0.0313379)
(-0.105338 -1.52099 -0.0567873)
(-0.177312 -2.99981 -0.047325)
(-0.500691 -4.75362 -0.0339623)
(-0.328761 -5.54177 -0.0197738)
(0.0207086 0.153953 0.00832546)
(0.0327461 0.481255 0.0206855)
(0.0692395 0.880507 0.0283563)
(0.173621 1.19927 0.0300579)
(0.28841 1.4152 0.0316152)
(0.377224 1.53002 0.029005)
(0.413465 1.54339 0.0245086)
(0.472795 1.43653 0.0157612)
(0.529818 1.30685 0.00659198)
(0.571742 1.13841 -0.00334657)
(0.607586 0.972413 -0.0109499)
(0.634542 0.810305 -0.0145956)
(0.652131 0.664711 -0.0141257)
(0.64379 0.549222 -0.0105954)
(0.634823 0.460834 -0.00493046)
(0.592129 0.360543 -0.00813406)
(0.546733 0.250261 -0.0100275)
(0.614984 0.208075 -0.00792069)
(0.728121 0.254086 0.00932381)
(0.798786 0.403546 0.0210414)
(1.07961 0.431912 0.0423388)
(1.36112 0.217908 0.0678719)
(1.37423 -0.0288819 0.0986179)
(1.41797 -0.145369 0.134184)
(1.37868 -0.200271 0.137642)
(1.36169 -0.191501 0.0100859)
(1.27982 -0.121584 -0.086913)
(1.03344 -0.0984791 -0.103591)
(0.664197 -0.0537108 -0.085365)
(0.572213 -0.0524023 -0.0589594)
(0.413218 -0.026641 -0.0399429)
(0.431713 -0.0739013 -0.0221101)
(0.298214 -0.0799599 -0.0124942)
(0.306489 -0.227666 -0.00778434)
(0.1293 -0.315208 -0.018391)
(0.146886 -0.706969 -0.0313979)
(-0.0472268 -1.32606 -0.0551134)
(-0.106714 -2.77431 -0.0489301)
(-0.569034 -4.71671 -0.0349853)
(-0.331808 -6.16514 -0.022167)
(-0.0198817 0.127641 0.00953263)
(-0.0294294 0.505918 0.0235325)
(-0.0238576 0.844479 0.0300033)
(0.0314592 1.1902 0.0330625)
(0.183884 1.36036 0.0344405)
(0.34158 1.4172 0.0329792)
(0.405037 1.44357 0.0312795)
(0.465688 1.33914 0.0250543)
(0.550346 1.22826 0.0190355)
(0.609153 1.08559 0.0117309)
(0.664486 0.94642 0.00613233)
(0.703657 0.808266 0.000760629)
(0.736487 0.683047 -0.00270317)
(0.753135 0.573752 -0.00687037)
(0.76769 0.492818 -0.00813815)
(0.782141 0.424723 -0.0142699)
(0.794248 0.406171 -0.0340774)
(0.761957 0.404726 -0.0507673)
(0.724105 0.364991 -0.069507)
(0.79299 0.303696 -0.0768973)
(1.14288 0.2736 -0.0548702)
(1.48398 0.212408 -0.0206282)
(1.53416 0.155501 0.0156961)
(1.56127 0.102244 0.0518357)
(1.48914 0.0602014 0.0594244)
(1.45215 0.0196301 0.00704203)
(1.34747 0.0284093 -0.0496114)
(1.12392 -0.011495 -0.0710084)
(0.795277 0.0235076 -0.0500551)
(0.748437 0.0146289 -0.0380981)
(0.592525 0.0559513 -0.0220763)
(0.614616 0.0129461 -0.0109666)
(0.434336 0.0178498 -0.00550372)
(0.461052 -0.0956902 -0.00662104)
(0.25286 -0.163387 -0.0128233)
(0.286988 -0.502718 -0.0286888)
(0.0613234 -1.00744 -0.0426064)
(0.0631033 -2.47741 -0.0511577)
(-0.570522 -4.57695 -0.0333945)
(-0.257434 -6.76483 -0.024044)
(0.0543648 0.258501 0.0112087)
(-0.000377442 0.441832 0.0248243)
(-0.0997028 0.72552 0.0311777)
(-0.0464767 0.945482 0.0336537)
(-0.00103114 1.16854 0.0357764)
(0.197602 1.17198 0.0347807)
(0.336581 1.20343 0.0353531)
(0.415886 1.12225 0.0319946)
(0.536877 1.03875 0.0286242)
(0.625271 0.930082 0.0247575)
(0.708638 0.823204 0.0211748)
(0.767995 0.716213 0.0176654)
(0.817669 0.62165 0.0137036)
(0.849813 0.537997 0.00942126)
(0.87614 0.471007 0.00521003)
(0.891005 0.407184 0.00188907)
(0.888614 0.344671 -0.00182183)
(0.890513 0.2805 -0.00167626)
(0.934537 0.255028 -0.000297874)
(1.03508 0.227494 0.00103533)
(1.34183 0.217383 0.010686)
(1.62186 0.166425 0.0217536)
(1.63747 0.0925386 0.0340705)
(1.68793 0.0228114 0.0455628)
(1.65343 0.0154551 0.0402058)
(1.67975 -0.00873069 0.0153631)
(1.58574 0.0584441 -0.00426185)
(1.39498 0.045378 -0.0177481)
(1.05272 0.12653 -0.0138874)
(1.01805 0.109461 -0.00825134)
(0.847114 0.167434 -0.0013581)
(0.906397 0.0951669 0.00098088)
(0.725472 0.107773 0.00200935)
(0.809701 -0.00352416 0.00128717)
(0.553469 -0.0701364 -0.00598953)
(0.674631 -0.356577 -0.0169027)
(0.329987 -0.782006 -0.0335243)
(0.457839 -2.08619 -0.0362879)
(-0.261369 -4.38892 -0.0365404)
(0.00949773 -7.29766 -0.0256022)
(-0.230457 0.0619833 0.0153721)
(-0.315747 0.677062 0.0309048)
(-0.306404 0.848488 0.034702)
(-0.273275 0.996121 0.0355674)
(-0.128655 1.0261 0.0382966)
(0.0519968 1.04852 0.0367706)
(0.232308 0.995975 0.0399223)
(0.355534 0.936797 0.0381114)
(0.510034 0.861823 0.0373929)
(0.62838 0.784432 0.0353736)
(0.744831 0.704853 0.0338362)
(0.835794 0.626319 0.0314375)
(0.916601 0.555741 0.0281373)
(0.978338 0.493281 0.0235319)
(1.02673 0.441788 0.019647)
(1.05943 0.388915 0.0163403)
(1.08499 0.337552 0.0119783)
(1.11319 0.300552 0.00699283)
(1.1591 0.284124 0.00505348)
(1.29073 0.224031 0.00711198)
(1.63912 0.20396 0.0198583)
(1.98063 0.158032 0.0301455)
(2.03398 0.119406 0.0386144)
(2.14013 0.0804521 0.0414712)
(2.10903 0.0819044 0.037807)
(2.15772 0.043985 0.0252246)
(2.0511 0.115199 0.0134431)
(1.91062 0.0763646 0.00560823)
(1.56259 0.15438 0.00631609)
(1.60133 0.143667 0.00715399)
(1.42605 0.217171 0.0117586)
(1.55971 0.155107 0.0130374)
(1.34989 0.167513 0.0125499)
(1.5128 0.0470826 0.0100153)
(1.19538 0.00116112 0.00619796)
(1.38935 -0.21692 -0.00333426)
(0.945134 -0.483559 -0.0154777)
(1.14873 -1.46331 -0.0263028)
(0.325217 -3.90383 -0.0287135)
(0.485296 -7.2158 -0.0230748)
(-0.731182 0.799857 0.0241432)
(-0.607555 0.393835 0.0352905)
(-0.754176 0.570133 0.0335313)
(-0.462745 0.586371 0.0331655)
(-0.313558 0.604626 0.0352341)
(0.000902527 0.646405 0.0359538)
(0.225973 0.622902 0.0391269)
(0.451146 0.597606 0.0395783)
(0.677514 0.557754 0.0405597)
(0.882874 0.516639 0.0404947)
(1.0802 0.469945 0.0403742)
(1.25597 0.423247 0.0391192)
(1.41305 0.381165 0.0367534)
(1.54802 0.346613 0.0336962)
(1.6549 0.323453 0.0311824)
(1.74715 0.291906 0.0300706)
(1.83341 0.251414 0.0288334)
(1.96582 0.223179 0.0286009)
(2.12488 0.212834 0.0308724)
(2.39692 0.142699 0.0348247)
(2.81247 0.123235 0.0433966)
(3.25193 0.0775 0.0489275)
(3.34933 0.0318243 0.0500231)
(3.5052 -0.0164489 0.0494503)
(3.44925 -0.0086771 0.0423749)
(3.5622 -0.0261214 0.0327822)
(3.40982 0.0506983 0.0260924)
(3.35459 0.0454001 0.0205912)
(2.95821 0.122661 0.0206557)
(3.11564 0.137358 0.0207844)
(2.89667 0.198786 0.0207752)
(3.20012 0.147431 0.0205068)
(2.91047 0.122859 0.0183737)
(3.24467 0.0376944 0.0164504)
(2.77282 -0.0216133 0.0118545)
(3.12714 -0.210218 0.00785912)
(2.46544 -0.490539 0.00129569)
(2.83613 -1.13825 -0.0066045)
(1.86006 -3.17079 -0.0156029)
(1.32061 -6.11469 -0.0153294)
(1.16526 1.49267 0.0107142)
(1.73331 0.741203 0.0149774)
(2.47447 0.585001 0.015097)
(2.88659 0.360322 0.0136797)
(3.16736 0.281512 0.0138782)
(3.41007 0.22714 0.0128849)
(3.62871 0.206446 0.0144136)
(3.84141 0.184751 0.0148732)
(4.06732 0.170563 0.0162883)
(4.29904 0.156756 0.0174258)
(4.51902 0.142412 0.0190691)
(4.73077 0.127246 0.0195596)
(4.91031 0.112865 0.0187703)
(5.07341 0.100676 0.0166906)
(5.18909 0.0950576 0.01505)
(5.30372 0.090474 0.014901)
(5.41587 0.0734666 0.0153017)
(5.61416 0.0578503 0.0159326)
(5.84678 0.0740864 0.0197939)
(6.28852 0.0589864 0.0258464)
(6.7115 0.0374083 0.0361564)
(7.20556 0.0164357 0.042772)
(7.27069 0.000762443 0.044785)
(7.35779 -0.0372926 0.0396885)
(7.18762 -0.0283109 0.0334027)
(7.20209 -0.0467667 0.02446)
(6.85235 -0.0314302 0.0184689)
(6.82762 -0.0203841 0.0131723)
(6.34124 0.0133229 0.0117068)
(6.57286 0.0287095 0.0114054)
(6.31977 0.063194 0.0108466)
(6.75184 0.0662518 0.0107974)
(6.44335 0.0458037 0.00966202)
(6.83765 0.0163131 0.00796829)
(6.30059 -0.0177111 0.0066302)
(6.52598 -0.103609 0.00449106)
(5.64547 -0.264475 0.0020617)
(5.68022 -0.587448 -0.00102136)
(4.2563 -1.14986 -0.00564222)
(2.7782 -2.54 -0.00823868)
(0.000424059 -0.00227494 0.00671049)
(0.019525 -0.00562489 0.0107038)
(0.0466017 -0.00599679 0.0127097)
(0.0653046 -0.00488244 0.0153033)
(0.0764179 -0.00474596 0.0166459)
(0.0717874 -0.00468833 0.0206666)
(0.0524755 0.00330764 0.0150804)
(0.0299713 0.0055939 0.0178701)
(0.00509123 0.0233106 0.0141353)
(-0.0388963 0.0228196 0.0176625)
(-0.0949587 0.0155443 0.0175572)
(-0.158161 0.0067377 0.0182033)
(-0.231188 -0.00095259 0.0178872)
(-0.316249 -0.000442761 0.0203177)
(-0.400051 0.0103453 0.0229113)
(-0.495112 0.0155218 0.0315638)
(-0.602106 0.00144389 0.0405257)
(-0.747989 -0.00124786 0.065338)
(-0.833937 -0.00851152 0.0860961)
(-1.01696 -0.00443049 0.104713)
(-0.973178 0.0320782 0.120709)
(-0.782401 0.0241863 0.129577)
(-0.766461 0.0262004 0.131456)
(-0.744526 0.0245012 0.134335)
(-0.732907 -0.00422709 0.145264)
(-0.681863 -0.0271603 0.158166)
(-0.607148 -0.0441822 0.172175)
(-0.480648 -0.0621787 0.1865)
(-0.330503 -0.0802938 0.197099)
(-0.148507 -0.0864816 0.205387)
(0.0230015 -0.0763657 0.196486)
(0.255542 -0.00767116 0.183915)
(0.468624 -0.0334424 0.164132)
(0.537669 0.0203921 0.127195)
(0.504067 0.0485075 0.0897051)
(0.39253 0.0465758 0.0554203)
(0.254477 0.0314023 0.0332093)
(0.135987 0.0169554 0.0184163)
(0.0467179 0.00298859 0.0101058)
(-0.000208343 -0.00741639 0.00281643)
(0.00643759 -0.0223737 0.0124807)
(0.0403392 -0.0400627 0.0226446)
(0.0802887 -0.0421595 0.0279746)
(0.104327 -0.0329656 0.0341264)
(0.112571 -0.021453 0.038091)
(0.100221 -0.0126169 0.0446605)
(0.0524305 0.00280468 0.0387276)
(-0.00575435 0.0342733 0.0387584)
(-0.0995672 0.0563378 0.035668)
(-0.260366 0.0640789 0.0452692)
(-0.435633 0.0887853 0.0453032)
(-0.629163 0.115966 0.0480596)
(-0.836121 0.145883 0.0504424)
(-1.05499 0.176155 0.0564822)
(-1.28234 0.190096 0.0632814)
(-1.52214 0.163831 0.0845715)
(-1.73112 0.12091 0.101184)
(-1.93773 0.0862761 0.125198)
(-2.07928 0.0582344 0.146026)
(-2.22286 0.0402253 0.161177)
(-2.06117 0.0573795 0.171562)
(-1.78049 0.0213464 0.167363)
(-1.6444 -0.0163736 0.152587)
(-1.54858 -0.0996255 0.146716)
(-1.46719 -0.188482 0.15273)
(-1.33593 -0.264445 0.15668)
(-1.19617 -0.323991 0.16116)
(-1.01353 -0.366039 0.162729)
(-0.805566 -0.392457 0.168488)
(-0.560177 -0.407045 0.16803)
(-0.299133 -0.376066 0.174043)
(-0.0371512 -0.284374 0.154898)
(0.261527 -0.192228 0.158746)
(0.52295 -0.0764593 0.137091)
(0.601737 0.0438658 0.122244)
(0.560067 0.121442 0.0908033)
(0.439918 0.143639 0.0672828)
(0.280078 0.123784 0.0462213)
(0.120611 0.0856699 0.0276044)
(0.0181926 0.0318972 0.00816548)
(0.00946943 -0.0551876 0.0209915)
(0.0448467 -0.0917933 0.0358635)
(0.0802417 -0.0889986 0.0442374)
(0.0935368 -0.0605059 0.0520702)
(0.0772808 -0.0335529 0.0517736)
(0.0243645 0.0122756 0.0692738)
(-0.0590646 0.0645582 0.0599807)
(-0.201232 0.136108 0.0619702)
(-0.415168 0.202201 0.0582333)
(-0.65754 0.267681 0.0581636)
(-0.924419 0.340264 0.0548596)
(-1.21299 0.396161 0.0532124)
(-1.49217 0.433436 0.0543425)
(-1.76654 0.422345 0.0579121)
(-2.02378 0.366743 0.0685746)
(-2.24358 0.298733 0.0789047)
(-2.40684 0.238098 0.0824352)
(-2.56278 0.1755 0.0873733)
(-2.66018 0.132061 0.0868893)
(-2.72466 0.0725529 0.0801424)
(-2.47756 0.0498312 0.0737085)
(-2.16838 -0.0208194 0.0556317)
(-2.01733 -0.127699 0.0339578)
(-1.89373 -0.271583 0.0451003)
(-1.80121 -0.399983 0.0411267)
(-1.66279 -0.528966 0.0391588)
(-1.52277 -0.637706 0.0402903)
(-1.35401 -0.716869 0.0415699)
(-1.1891 -0.755545 0.0420049)
(-0.978783 -0.749323 0.0436409)
(-0.75288 -0.70747 0.049986)
(-0.492295 -0.619208 0.0535753)
(-0.209654 -0.445373 0.0774384)
(0.0737832 -0.266912 0.0684935)
(0.298606 -0.0574929 0.0820072)
(0.394546 0.129811 0.0754912)
(0.3628 0.208817 0.0699162)
(0.254401 0.224316 0.0538898)
(0.115845 0.176901 0.0355456)
(0.0160125 0.0839109 0.0102436)
(0.00961495 -0.0899839 0.0311826)
(0.0393691 -0.136311 0.0518503)
(0.0569175 -0.127207 0.0595377)
(0.0277807 -0.0654402 0.0751958)
(-0.0259108 0.0106404 0.0746878)
(-0.116946 0.114408 0.0779834)
(-0.281188 0.23016 0.0743277)
(-0.507404 0.363852 0.0658281)
(-0.806494 0.49378 0.0538446)
(-1.13608 0.591255 0.0453478)
(-1.44238 0.644974 0.038197)
(-1.72775 0.66016 0.0330826)
(-1.99804 0.617449 0.0285592)
(-2.24586 0.535166 0.0317508)
(-2.43349 0.446051 0.0255306)
(-2.57322 0.366395 0.0224184)
(-2.67083 0.293996 0.0134142)
(-2.7603 0.222912 0.0054179)
(-2.79823 0.170514 -0.00502347)
(-2.78298 0.0869678 -0.0177542)
(-2.50768 0.0477991 -0.0262713)
(-2.21711 -0.0585593 -0.0337595)
(-2.08414 -0.207537 -0.0310694)
(-1.99523 -0.362889 -0.0314191)
(-1.93007 -0.522665 -0.0306609)
(-1.82613 -0.695836 -0.0284991)
(-1.71607 -0.856113 -0.0243272)
(-1.57075 -0.994462 -0.0203004)
(-1.42187 -1.08281 -0.0122578)
(-1.26648 -1.09992 -0.010031)
(-1.10339 -1.03703 -0.00235624)
(-0.908792 -0.905957 0.000703145)
(-0.686533 -0.737785 0.0213688)
(-0.40065 -0.503956 0.0348503)
(-0.095548 -0.219313 0.0541969)
(0.0998302 0.0403974 0.0645302)
(0.163401 0.207375 0.0611781)
(0.144652 0.266612 0.0536977)
(0.0644905 0.233227 0.0361049)
(0.00758933 0.116662 0.0112149)
(0.0104578 -0.12108 0.0407668)
(0.013834 -0.169596 0.0693391)
(-0.00337243 -0.121007 0.0833031)
(-0.0614238 -0.0131655 0.0882728)
(-0.172265 0.142347 0.0902285)
(-0.341287 0.307852 0.0870523)
(-0.566342 0.49084 0.0718881)
(-0.841682 0.656653 0.0515106)
(-1.17405 0.78859 0.0324058)
(-1.49614 0.851468 0.0182888)
(-1.78797 0.845992 0.00652257)
(-2.06094 0.781505 1.98837e-05)
(-2.28851 0.688889 -0.00309733)
(-2.45335 0.594386 -0.0093846)
(-2.56472 0.511392 -0.0157504)
(-2.6326 0.420643 -0.0232766)
(-2.66213 0.344769 -0.0337369)
(-2.68772 0.265132 -0.0484217)
(-2.67502 0.21017 -0.0624959)
(-2.60649 0.114841 -0.073337)
(-2.32756 0.0682771 -0.0744406)
(-2.08166 -0.0549567 -0.0662468)
(-1.99051 -0.222938 -0.0563071)
(-1.93722 -0.401668 -0.0515336)
(-1.90464 -0.587039 -0.0484423)
(-1.84796 -0.796772 -0.0432741)
(-1.78412 -1.00597 -0.0382038)
(-1.6842 -1.20669 -0.0329237)
(-1.56971 -1.36716 -0.028999)
(-1.42194 -1.46233 -0.0253032)
(-1.28698 -1.44979 -0.0177326)
(-1.16919 -1.33155 -0.0148088)
(-1.05156 -1.08468 -3.68624e-05)
(-0.804006 -0.796367 0.0163761)
(-0.456581 -0.463549 0.0439195)
(-0.160903 -0.117744 0.0542364)
(-0.00851869 0.12904 0.0668397)
(0.0264412 0.254657 0.0524343)
(0.0140374 0.245562 0.0397752)
(-0.00372344 0.121296 0.0147169)
(0.00274287 -0.137774 0.0561422)
(-0.0125389 -0.161541 0.0889638)
(-0.076937 -0.0541256 0.103291)
(-0.190177 0.130299 0.105062)
(-0.357757 0.344794 0.0984676)
(-0.566711 0.576054 0.0794316)
(-0.811387 0.773363 0.0517315)
(-1.08714 0.940722 0.0236499)
(-1.41991 0.993251 0.00146273)
(-1.76119 0.957766 -0.0118083)
(-2.03525 0.888466 -0.0178702)
(-2.23234 0.804346 -0.0274479)
(-2.36723 0.724825 -0.0371596)
(-2.45928 0.636145 -0.0433695)
(-2.5035 0.534979 -0.0486376)
(-2.51124 0.426706 -0.0515685)
(-2.49022 0.340216 -0.0560198)
(-2.46088 0.271852 -0.062103)
(-2.39809 0.232457 -0.0740436)
(-2.28253 0.142918 -0.0866643)
(-2.01101 0.0945025 -0.0842268)
(-1.81023 -0.0362487 -0.0724921)
(-1.75106 -0.206433 -0.0590247)
(-1.72915 -0.387039 -0.0561218)
(-1.7269 -0.581587 -0.0514799)
(-1.71645 -0.80625 -0.0467531)
(-1.70578 -1.04574 -0.0412271)
(-1.67087 -1.29511 -0.0363837)
(-1.61928 -1.52839 -0.0310214)
(-1.52749 -1.70707 -0.0297033)
(-1.41222 -1.80024 -0.0262854)
(-1.27348 -1.75795 -0.0225588)
(-1.23139 -1.58263 -0.0143602)
(-1.12521 -1.17914 -0.00058584)
(-0.777296 -0.781242 0.0224795)
(-0.403935 -0.343485 0.0485827)
(-0.149786 0.00186654 0.0495302)
(-0.0386028 0.203383 0.0565896)
(-0.0166969 0.225211 0.0384726)
(-0.00476397 0.110289 0.0164269)
(-0.000870062 -0.130221 0.0687601)
(-0.0507666 -0.0894198 0.107693)
(-0.153951 0.0767936 0.118662)
(-0.316571 0.327822 0.111596)
(-0.513921 0.592903 0.0910326)
(-0.734953 0.83077 0.0583579)
(-0.968563 1.01656 0.0240463)
(-1.29286 1.06572 -0.0055282)
(-1.66069 0.992715 -0.0158333)
(-1.91945 0.934095 -0.0281405)
(-2.0905 0.894181 -0.0430415)
(-2.21471 0.847022 -0.0542082)
(-2.30065 0.773892 -0.0582382)
(-2.34692 0.669846 -0.0568467)
(-2.35464 0.556337 -0.0472511)
(-2.3113 0.435329 -0.0402864)
(-2.21839 0.351406 -0.0431653)
(-2.11206 0.273182 -0.067437)
(-2.01696 0.242104 -0.0851349)
(-1.88875 0.175901 -0.0965086)
(-1.63787 0.145121 -0.0864236)
(-1.48464 -0.0124039 -0.0723221)
(-1.45682 -0.169004 -0.0597369)
(-1.45175 -0.348077 -0.0542117)
(-1.46927 -0.540157 -0.0488742)
(-1.48782 -0.764619 -0.0427216)
(-1.5162 -1.01414 -0.0363801)
(-1.53616 -1.28918 -0.0301831)
(-1.55022 -1.57163 -0.0246014)
(-1.53553 -1.83126 -0.0216486)
(-1.48216 -2.02352 -0.0200024)
(-1.38139 -2.08776 -0.0186782)
(-1.26631 -2.02277 -0.0171593)
(-1.24186 -1.71309 -0.0113969)
(-1.04623 -1.21049 0.0078652)
(-0.614101 -0.688701 0.0327918)
(-0.251847 -0.207112 0.0655814)
(-0.0824179 0.0917617 0.0604574)
(-0.024887 0.17641 0.0472511)
(-0.00228089 0.0854413 0.0205948)
(0.00378124 -0.0790497 0.0846998)
(-0.0763095 0.0216089 0.126565)
(-0.234588 0.249923 0.13013)
(-0.413577 0.540663 0.108936)
(-0.623153 0.808544 0.0745176)
(-0.836923 1.01387 0.0340971)
(-1.16094 1.08856 0.00118265)
(-1.50107 1.01138 -0.0103626)
(-1.73953 0.971725 -0.0336587)
(-1.90418 0.976945 -0.0510151)
(-2.01843 0.955345 -0.0653444)
(-2.09211 0.901154 -0.0716732)
(-2.13937 0.814449 -0.0713386)
(-2.15373 0.694782 -0.0618462)
(-2.12403 0.536147 -0.0495326)
(-2.0364 0.354374 -0.0407601)
(-1.91354 0.220941 -0.0270421)
(-1.76873 0.184346 -0.0168261)
(-1.6192 0.238406 -0.0333406)
(-1.46032 0.248944 -0.0782086)
(-1.28312 0.21721 -0.0841991)
(-1.17937 0.0206725 -0.0721873)
(-1.15988 -0.122417 -0.0631056)
(-1.16892 -0.293439 -0.0573141)
(-1.19195 -0.473542 -0.0510025)
(-1.2247 -0.684055 -0.0445604)
(-1.27247 -0.924798 -0.0369099)
(-1.32587 -1.20101 -0.0293248)
(-1.38669 -1.50535 -0.0217041)
(-1.43526 -1.81622 -0.0162957)
(-1.46041 -2.09603 -0.0140974)
(-1.43072 -2.28505 -0.0139312)
(-1.34252 -2.31969 -0.0134875)
(-1.27218 -2.17616 -0.0151353)
(-1.1806 -1.71903 -0.00749491)
(-0.845665 -1.10189 0.00882334)
(-0.370006 -0.490204 0.0329734)
(-0.0983598 -0.0161495 0.0436011)
(-0.0152502 0.111943 0.0389007)
(0.00276398 0.0717109 0.0169573)
(-0.0100862 -0.0184303 0.0926853)
(-0.114831 0.130969 0.136675)
(-0.284043 0.391432 0.131073)
(-0.482225 0.680356 0.0975817)
(-0.70083 0.913291 0.0552303)
(-0.98922 1.05026 0.0151884)
(-1.3029 1.02104 -0.00613401)
(-1.53497 1.01959 -0.0318927)
(-1.703 1.04212 -0.0514727)
(-1.79887 1.03642 -0.0693799)
(-1.85375 1.00435 -0.0803226)
(-1.89435 0.94114 -0.0847292)
(-1.9334 0.849406 -0.0744682)
(-1.97418 0.691782 -0.0537843)
(-1.99798 0.513349 0.000463137)
(-1.89887 0.330066 0.0469811)
(-1.61963 0.246089 0.0293109)
(-1.30378 0.157382 -0.067861)
(-1.13317 0.19088 -0.125057)
(-1.07817 0.351913 -0.141293)
(-1.03006 0.350564 -0.10596)
(-0.954569 0.0963471 -0.0804388)
(-0.921075 -0.0731626 -0.0688304)
(-0.931378 -0.234246 -0.0610905)
(-0.949007 -0.407507 -0.0538564)
(-0.981344 -0.598587 -0.0464055)
(-1.03085 -0.822409 -0.0379659)
(-1.09375 -1.08298 -0.0290064)
(-1.17432 -1.38565 -0.0200246)
(-1.25835 -1.71783 -0.0123754)
(-1.33591 -2.05515 -0.00751108)
(-1.37684 -2.34079 -0.0065971)
(-1.35758 -2.51275 -0.00702033)
(-1.2771 -2.4921 -0.00977301)
(-1.20296 -2.20645 -0.0100729)
(-0.991936 -1.58585 -0.00323461)
(-0.500665 -0.839432 0.0170554)
(-0.150293 -0.229834 0.0336412)
(-0.0472815 0.0589304 0.0417672)
(0.0144477 0.0596022 0.0187617)
(-0.0237572 0.0430238 0.099144)
(-0.152512 0.258009 0.14321)
(-0.338012 0.528807 0.129559)
(-0.530353 0.785331 0.0868326)
(-0.766714 0.979056 0.0394199)
(-1.05584 1.04342 0.00541842)
(-1.31617 1.06292 -0.0216829)
(-1.4876 1.09421 -0.0438607)
(-1.58001 1.09921 -0.0662764)
(-1.61063 1.07796 -0.0816652)
(-1.63266 1.04554 -0.0948279)
(-1.66489 1 -0.0941266)
(-1.74919 0.925765 -0.0782286)
(-1.83362 0.811409 -0.0373402)
(-1.77098 0.553768 -0.0269282)
(-1.33636 0.0864718 -0.168504)
(-0.938961 -0.267294 -0.269424)
(-0.925069 -0.277559 -0.284407)
(-1.07571 0.144356 -0.250233)
(-1.1243 0.567647 -0.241286)
(-0.992452 0.479923 -0.158698)
(-0.839649 0.101214 -0.097366)
(-0.770046 -0.0510262 -0.0761717)
(-0.755621 -0.185926 -0.0713926)
(-0.76291 -0.348996 -0.0594275)
(-0.783184 -0.517235 -0.051692)
(-0.824946 -0.719561 -0.0413045)
(-0.881551 -0.954674 -0.0313044)
(-0.962726 -1.23864 -0.0207145)
(-1.05854 -1.56788 -0.0115034)
(-1.16418 -1.93252 -0.0043511)
(-1.25373 -2.29045 -0.00189072)
(-1.29849 -2.57676 -0.0017036)
(-1.2732 -2.70324 -0.00518138)
(-1.18126 -2.57895 -0.00851651)
(-1.04558 -2.10053 -0.00821625)
(-0.699859 -1.28493 -0.000601735)
(-0.219124 -0.526824 0.0216017)
(-0.036978 -0.0272428 0.0158768)
(-0.00328572 0.0365636 0.0109361)
(-0.0261436 0.111792 0.101104)
(-0.168052 0.389278 0.144838)
(-0.361594 0.668465 0.125815)
(-0.556962 0.911066 0.0770341)
(-0.815678 1.06177 0.0288175)
(-1.08103 1.10374 -0.00452663)
(-1.27543 1.13562 -0.0302149)
(-1.36829 1.149 -0.0545958)
(-1.39357 1.13238 -0.0748944)
(-1.3733 1.10323 -0.0940463)
(-1.35739 1.10017 -0.110907)
(-1.38848 1.09724 -0.121617)
(-1.45382 1.07516 -0.11719)
(-1.39733 0.792226 -0.192495)
(-0.853759 0.160077 -0.340939)
(-0.139253 -0.37689 -0.358451)
(-0.196134 -0.0751082 -0.0615216)
(-0.72113 0.424596 0.121408)
(-0.984306 0.690659 0.0870625)
(-0.983647 0.784553 -0.102172)
(-0.759122 0.476091 -0.112241)
(-0.640722 0.0446116 -0.0609657)
(-0.631758 -0.0621742 -0.0739502)
(-0.610438 -0.163074 -0.0732847)
(-0.622676 -0.310202 -0.0645026)
(-0.631412 -0.457834 -0.0554883)
(-0.663263 -0.638398 -0.0443739)
(-0.705038 -0.84564 -0.0329289)
(-0.773405 -1.1009 -0.0215012)
(-0.861392 -1.40796 -0.0106867)
(-0.971883 -1.77155 -0.00227717)
(-1.08465 -2.16618 0.00324666)
(-1.17575 -2.54065 0.00379438)
(-1.20497 -2.80266 0.000684225)
(-1.15062 -2.83746 -0.00368682)
(-1.01656 -2.53745 -0.00715479)
(-0.783254 -1.79358 -0.00268153)
(-0.33558 -0.82009 0.00610624)
(-0.0517356 -0.148101 0.0232703)
(-0.0126217 0.0246698 0.0130028)
(-0.0263871 0.191887 0.100904)
(-0.172742 0.52513 0.144526)
(-0.368661 0.809449 0.122565)
(-0.58105 1.03256 0.070917)
(-0.836406 1.13601 0.0233836)
(-1.04534 1.17735 -0.00871657)
(-1.16834 1.1957 -0.0355569)
(-1.19663 1.17675 -0.0585271)
(-1.16669 1.13612 -0.082784)
(-1.08066 1.10738 -0.107323)
(-1.01459 1.14369 -0.148056)
(-0.979942 1.18568 -0.181518)
(-0.94836 1.05114 -0.301571)
(-0.332368 0.396283 -0.545469)
(0.489965 -0.225589 -0.248243)
(0.436272 -0.0220441 0.50202)
(-0.3567 0.658446 0.747223)
(-0.840647 0.817581 0.45703)
(-0.763971 0.666726 0.0679373)
(-0.642713 0.703154 -0.182142)
(-0.423891 0.553646 -0.177926)
(-0.427693 0.170812 -0.120756)
(-0.507763 0.00632265 -0.100479)
(-0.496824 -0.111695 -0.0917593)
(-0.519858 -0.262095 -0.0768131)
(-0.52108 -0.404731 -0.0632503)
(-0.545256 -0.571583 -0.0488437)
(-0.571358 -0.756485 -0.0349887)
(-0.622668 -0.982018 -0.0222882)
(-0.693375 -1.25809 -0.0102302)
(-0.793738 -1.60098 -0.000642835)
(-0.910846 -2.00469 0.00711063)
(-1.02612 -2.43405 0.00869377)
(-1.10115 -2.80753 0.00506082)
(-1.09833 -3.00527 -0.00086072)
(-0.986282 -2.87742 -0.00606415)
(-0.78336 -2.29814 -0.00790473)
(-0.418511 -1.24631 -0.000856615)
(-0.0809929 -0.327834 0.00174805)
(-0.0234007 -0.00800233 0.00230654)
(-0.0220016 0.264476 0.0976914)
(-0.163727 0.649941 0.141371)
(-0.364544 0.93887 0.118287)
(-0.592993 1.12682 0.0666253)
(-0.818573 1.21326 0.0172848)
(-0.967118 1.24687 -0.0105799)
(-1.03545 1.22954 -0.0356099)
(-1.00987 1.17309 -0.058407)
(-0.925089 1.10206 -0.0853709)
(-0.756607 1.06889 -0.123867)
(-0.606286 1.15451 -0.190939)
(-0.599182 1.1839 -0.32283)
(-0.272889 0.725231 -0.614814)
(0.714177 -0.0857256 -0.13842)
(0.726465 0.0566905 0.740075)
(-0.497887 0.750928 0.875624)
(-1.39528 0.630767 0.564612)
(-1.33799 0.126878 0.132673)
(-1.22912 0.14274 -0.176121)
(-1.12758 0.53099 -0.303952)
(-0.595297 0.587711 -0.280229)
(-0.446402 0.257432 -0.211866)
(-0.498173 0.0755231 -0.160302)
(-0.454692 -0.0696798 -0.1286)
(-0.467087 -0.222769 -0.101773)
(-0.453429 -0.370364 -0.0766646)
(-0.466136 -0.527381 -0.0565251)
(-0.475145 -0.696052 -0.0374229)
(-0.507239 -0.893754 -0.022707)
(-0.555557 -1.13548 -0.00898168)
(-0.63709 -1.44475 0.00164137)
(-0.743939 -1.83332 0.0113222)
(-0.865031 -2.28499 0.0136859)
(-0.966324 -2.73634 0.00997107)
(-1.00784 -3.07161 0.00311689)
(-0.945896 -3.12219 -0.00334841)
(-0.760726 -2.7214 -0.00335205)
(-0.467904 -1.73846 -0.000434246)
(-0.109197 -0.581261 0.0140208)
(-0.0118647 -0.0703698 0.00878854)
(-0.0163598 0.330761 0.093537)
(-0.147472 0.769948 0.137804)
(-0.362297 1.05445 0.115956)
(-0.579957 1.21542 0.0658617)
(-0.761231 1.30258 0.0183784)
(-0.867272 1.30527 -0.00689492)
(-0.890168 1.24565 -0.0297217)
(-0.827248 1.14404 -0.0525056)
(-0.689168 1.02718 -0.0845294)
(-0.404991 0.983079 -0.137376)
(-0.316978 1.18325 -0.310934)
(-0.405926 1.05536 -0.600005)
(0.362097 0.238609 -0.301678)
(0.372642 0.266381 0.669005)
(-1.15299 0.958035 0.644672)
(-1.8207 0.854229 0.496419)
(-1.61394 0.331052 0.24818)
(-1.46035 0.220199 0.141261)
(-1.63184 0.505587 0.0970946)
(-1.3218 0.542504 -0.0979243)
(-0.531436 0.364725 -0.214921)
(-0.401256 0.222805 -0.234234)
(-0.465399 0.102075 -0.202271)
(-0.422199 -0.0562525 -0.156667)
(-0.427921 -0.200577 -0.124816)
(-0.407736 -0.351819 -0.0890884)
(-0.409398 -0.501292 -0.0641436)
(-0.406189 -0.657993 -0.0391048)
(-0.421714 -0.832378 -0.0219302)
(-0.45028 -1.04248 -0.00661169)
(-0.511306 -1.31492 0.00544135)
(-0.601954 -1.67493 0.0161806)
(-0.71721 -2.12574 0.0189503)
(-0.831814 -2.62543 0.0150267)
(-0.90421 -3.07051 0.00565932)
(-0.889147 -3.2869 -0.0020446)
(-0.744254 -3.0684 -0.00620088)
(-0.483132 -2.21634 -0.00183821)
(-0.127842 -0.904442 0.00557875)
(-0.00523126 -0.139812 0.00604038)
(-0.0082495 0.377521 0.0880172)
(-0.137434 0.866173 0.13317)
(-0.350914 1.14484 0.112975)
(-0.542625 1.30537 0.0675863)
(-0.69141 1.37409 0.0217563)
(-0.767775 1.34008 -0.000195124)
(-0.765311 1.23441 -0.0190169)
(-0.68378 1.08525 -0.0377049)
(-0.491684 0.885907 -0.0680325)
(-0.135208 0.928457 -0.180925)
(-0.447897 1.18741 -0.53638)
(-0.240162 0.910509 -0.594828)
(-0.00558391 0.639763 0.282984)
(-1.56173 1.40687 0.453432)
(-1.77599 1.08883 0.369166)
(-0.900184 0.223112 0.0701729)
(-0.862528 0.065843 -0.0276183)
(-1.52771 0.29964 0.246686)
(-1.55198 0.325828 0.0836593)
(-0.919007 0.100805 -0.156389)
(-0.418032 0.164382 -0.184324)
(-0.428353 0.330304 -0.321659)
(-0.44345 0.189283 -0.284772)
(-0.410782 -0.0281565 -0.192565)
(-0.400734 -0.176543 -0.154077)
(-0.376273 -0.339841 -0.103419)
(-0.366438 -0.487716 -0.0724633)
(-0.352555 -0.637941 -0.0407448)
(-0.35482 -0.793398 -0.0206385)
(-0.367356 -0.975164 -0.00383947)
(-0.410337 -1.20953 0.00959172)
(-0.482876 -1.53262 0.0216228)
(-0.586003 -1.96382 0.0255363)
(-0.702635 -2.48722 0.0213282)
(-0.794509 -3.01343 0.0106538)
(-0.817778 -3.37728 -0.000220772)
(-0.711636 -3.33696 -0.00450276)
(-0.485546 -2.63872 -0.00216003)
(-0.138193 -1.26738 0.00602825)
(0.0257405 -0.185568 0.00815831)
(-0.00475914 0.416287 0.0827125)
(-0.125576 0.953258 0.127954)
(-0.322703 1.25131 0.113301)
(-0.489888 1.40478 0.0725821)
(-0.617205 1.45156 0.0311814)
(-0.676661 1.37269 0.0141732)
(-0.664171 1.22527 -0.00115421)
(-0.598938 1.01285 -0.0109646)
(-0.340514 0.759019 -0.0404395)
(-0.279873 0.983141 -0.301753)
(-0.672052 1.35319 -0.796215)
(-0.284149 1.39589 -0.55433)
(-0.886013 1.66236 0.0920518)
(-1.14228 1.44096 0.465157)
(-0.185088 0.157054 0.126132)
(-0.0394489 -0.113108 -0.58785)
(-0.999226 0.755211 -0.00933765)
(-1.87419 0.632892 0.0713326)
(-1.62594 -0.133462 -0.630978)
(-1.16607 -0.192177 -0.455803)
(-0.883844 0.0818199 -0.257541)
(-0.732559 0.329664 -0.416604)
(-0.514897 0.167417 -0.334653)
(-0.449019 -0.0329804 -0.214352)
(-0.391042 -0.177575 -0.174957)
(-0.359152 -0.338744 -0.113367)
(-0.331466 -0.484259 -0.0776339)
(-0.307196 -0.628846 -0.040509)
(-0.297066 -0.770778 -0.0183111)
(-0.297723 -0.93053 -0.000121382)
(-0.326605 -1.13279 0.0147959)
(-0.383813 -1.41812 0.028323)
(-0.475188 -1.82098 0.0327397)
(-0.590423 -2.35005 0.028527)
(-0.693846 -2.93612 0.015648)
(-0.743061 -3.42846 0.00198022)
(-0.671948 -3.55766 -0.00531068)
(-0.473527 -3.02786 -0.00269828)
(-0.147099 -1.65339 0.00316866)
(0.0535457 -0.265127 0.00854007)
(-0.00465787 0.431244 0.0771503)
(-0.106229 1.02468 0.123416)
(-0.28518 1.34597 0.113843)
(-0.435708 1.48735 0.0793692)
(-0.55294 1.50913 0.042458)
(-0.612486 1.38507 0.0359296)
(-0.609733 1.20651 0.0218534)
(-0.586788 0.910752 0.0407097)
(-0.307843 0.733791 -0.0395454)
(-0.659162 1.03419 -0.508798)
(-0.471253 1.65212 -1.14098)
(-0.0407564 1.64746 -1.12736)
(0.022774 1.27735 -0.323738)
(-0.00359022 1.35819 1.07392)
(-1.10226 0.64517 0.459552)
(-1.47146 0.62136 0.138076)
(-2.0783 1.4945 1.01721)
(-1.99572 0.630231 0.0290464)
(-1.65735 -0.237898 -0.732189)
(-1.23756 -0.150995 -0.386053)
(-1.01957 -0.0780836 -0.190633)
(-0.763683 0.111154 -0.354873)
(-0.477508 0.0256723 -0.299867)
(-0.417882 -0.0783569 -0.214425)
(-0.359794 -0.205955 -0.176175)
(-0.326978 -0.349176 -0.115207)
(-0.292005 -0.485809 -0.0781811)
(-0.260624 -0.620416 -0.0381546)
(-0.243959 -0.750728 -0.0142608)
(-0.238309 -0.89143 0.00465068)
(-0.257439 -1.06209 0.0202655)
(-0.299433 -1.3062 0.0348936)
(-0.375265 -1.67054 0.0410024)
(-0.483785 -2.19439 0.0364989)
(-0.598405 -2.8268 0.0223058)
(-0.672781 -3.43199 0.00453193)
(-0.637433 -3.72552 -0.00416858)
(-0.466419 -3.36024 -0.00352305)
(-0.164275 -2.01037 0.00385018)
(0.0598415 -0.313032 0.0104661)
(0.00349075 0.455365 0.0723766)
(-0.071985 1.10143 0.117672)
(-0.243481 1.45486 0.115288)
(-0.385374 1.58838 0.0887959)
(-0.505216 1.59195 0.0547779)
(-0.567715 1.43044 0.0647305)
(-0.602712 1.23947 0.0442862)
(-0.609986 0.864653 0.127018)
(-0.533187 0.81015 -0.0814919)
(-0.992121 1.11974 -0.64629)
(-0.52307 1.90624 -1.47837)
(0.466571 1.27675 -1.82089)
(1.05228 1.5831 -0.34459)
(-1.60701 3.21402 0.936914)
(-2.78374 1.21578 0.612984)
(-1.27052 0.418536 1.74968)
(-1.63487 1.01955 1.87246)
(-1.30354 0.28933 0.118027)
(-1.11719 -0.35388 -0.542208)
(-0.6434 -0.318887 -0.341674)
(-0.670231 -0.160542 -0.15122)
(-0.588502 -0.00786695 -0.293002)
(-0.366284 -0.0433952 -0.268937)
(-0.33931 -0.106825 -0.199784)
(-0.310223 -0.221003 -0.164656)
(-0.27998 -0.351574 -0.10978)
(-0.239864 -0.477934 -0.0754641)
(-0.20573 -0.604835 -0.0371116)
(-0.185601 -0.728333 -0.0120122)
(-0.174345 -0.861183 0.0103879)
(-0.185559 -1.01195 0.0268517)
(-0.217549 -1.22415 0.0431977)
(-0.284218 -1.54369 0.0489575)
(-0.385136 -2.03681 0.0446781)
(-0.499136 -2.69203 0.0281693)
(-0.589241 -3.40396 0.00757365)
(-0.589936 -3.86589 -0.00473204)
(-0.448853 -3.68368 -0.00507252)
(-0.167307 -2.39473 0.00218226)
(0.0656884 -0.431122 0.0112556)
(-0.0105743 0.474778 0.0687561)
(-0.0640867 1.18388 0.11389)
(-0.209067 1.58322 0.117005)
(-0.342261 1.7139 0.0986112)
(-0.46761 1.70552 0.0656492)
(-0.5238 1.52813 0.0939212)
(-0.62023 1.3441 0.0586856)
(-0.65723 0.975697 0.217413)
(-0.91844 1.00004 -0.14754)
(-1.13235 1.38916 -0.770889)
(-0.635299 1.8928 -1.5536)
(0.58771 0.653405 -1.89829)
(0.571342 2.06443 -0.442694)
(-2.39472 3.10175 -0.797283)
(-0.89641 -0.516778 -1.67171)
(1.12868 -0.537698 1.56815)
(-0.0864325 0.626821 1.94645)
(-0.424637 0.277114 0.347749)
(-0.603585 -0.308386 -0.608773)
(-0.219196 -0.338009 -0.431944)
(-0.322606 -0.124287 -0.162918)
(-0.385577 -0.00892823 -0.267904)
(-0.250028 -0.0569453 -0.231437)
(-0.251954 -0.107613 -0.169616)
(-0.24984 -0.204476 -0.134985)
(-0.222537 -0.31682 -0.0882034)
(-0.183395 -0.422354 -0.0574208)
(-0.153245 -0.527681 -0.0238391)
(-0.140197 -0.629707 -0.00211264)
(-0.133365 -0.746427 0.0175378)
(-0.141534 -0.874328 0.0334696)
(-0.159215 -1.05343 0.0496031)
(-0.200532 -1.33789 0.0593793)
(-0.276073 -1.81936 0.0546979)
(-0.393931 -2.49574 0.0362041)
(-0.506918 -3.28576 0.0109258)
(-0.548758 -3.91568 -0.00457074)
(-0.458435 -3.93292 -0.00688588)
(-0.205425 -2.728 0.00137969)
(0.0482369 -0.479063 0.0119632)
(0.00175334 0.60069 0.0590204)
(-0.0292451 1.37889 0.107796)
(-0.152836 1.78993 0.106066)
(-0.273558 1.95734 0.103793)
(-0.412414 1.94801 0.0709789)
(-0.431489 1.78464 0.112876)
(-0.574342 1.61393 0.0614144)
(-0.660396 1.32722 0.270828)
(-1.22291 1.3355 -0.215791)
(-1.14402 1.75268 -0.9671)
(-0.26194 1.58859 -1.44883)
(0.370849 0.768552 -1.29435)
(-0.259346 3.86728 0.519516)
(-1.64183 3.64929 -3.28879)
(-0.0876818 -0.500731 -7.32674)
(1.37031 1.49344 -2.00183)
(0.724619 2.51902 0.887447)
(0.158061 1.15896 0.580936)
(-0.221997 0.116915 -0.271811)
(0.0705081 -0.246734 -0.517389)
(0.00300479 0.019061 -0.223531)
(-0.20401 0.0921755 -0.24084)
(-0.139646 -0.0133945 -0.21965)
(-0.142142 -0.0748151 -0.141306)
(-0.164029 -0.174868 -0.111145)
(-0.135845 -0.274278 -0.077361)
(-0.090551 -0.362328 -0.0445766)
(-0.0615449 -0.449152 -0.0117797)
(-0.0600557 -0.533817 0.00694239)
(-0.0659026 -0.632619 0.025859)
(-0.082633 -0.73072 0.0384638)
(-0.117312 -0.867163 0.0561065)
(-0.190175 -1.08534 0.0606601)
(-0.270068 -1.48247 0.0591863)
(-0.325392 -2.13184 0.0408552)
(-0.39894 -3.03637 0.0135528)
(-0.466423 -3.84063 -0.00582129)
(-0.423828 -4.11458 -0.0098919)
(-0.201144 -3.10526 -0.00129622)
(0.0631741 -0.689447 0.00923119)
(-0.0167114 0.806022 0.0486721)
(-0.0246494 1.65646 0.095898)
(-0.110243 2.08685 0.0949058)
(-0.20212 2.27118 0.103349)
(-0.340219 2.26437 0.0726907)
(-0.33723 2.11412 0.120647)
(-0.519298 1.92948 0.0684153)
(-0.644877 1.69844 0.300551)
(-1.3519 1.63213 -0.222605)
(-1.05119 1.65935 -0.884579)
(0.741436 0.927851 -1.36726)
(1.34983 0.738833 -0.144833)
(0.677623 4.42477 2.91132)
(0.700021 3.95297 -2.22726)
(0.696335 -0.410981 -6.98554)
(0.620148 3.34272 -3.34049)
(1.21636 4.47895 -0.574679)
(1.10496 2.33653 0.306943)
(0.544679 0.633675 0.0228653)
(0.535739 0.0134613 -0.680629)
(0.386841 0.236599 -0.268098)
(-0.0808689 0.215819 -0.197335)
(-0.0860944 -0.0362096 -0.156787)
(-0.0670284 -0.075348 -0.0929397)
(-0.094953 -0.188494 -0.070716)
(-0.0525366 -0.288597 -0.065317)
(-0.00347047 -0.360057 -0.0371492)
(0.0195531 -0.428062 -0.00712671)
(0.00899565 -0.494978 0.0127213)
(-0.000194211 -0.578817 0.0324654)
(-0.0127821 -0.661665 0.0461041)
(-0.0357104 -0.773156 0.0630063)
(-0.0770279 -0.91338 0.063123)
(-0.18055 -1.2091 0.0647279)
(-0.373033 -1.73553 0.0492913)
(-0.462091 -2.59546 0.0167756)
(-0.469748 -3.53091 -0.00475934)
(-0.451037 -4.06948 -0.00998672)
(-0.272349 -3.35333 -0.000558789)
(0.0112308 -1.00042 0.0117896)
(-0.0371516 0.817166 0.0450283)
(-0.0348366 1.73997 0.0896353)
(-0.0750857 2.21795 0.0934674)
(-0.129524 2.40924 0.100939)
(-0.254376 2.43188 0.0731527)
(-0.243157 2.3128 0.127822)
(-0.426904 2.10697 0.0661096)
(-0.504766 1.97092 0.308393)
(-1.17073 1.71091 -0.195555)
(-0.60344 0.911852 -0.506921)
(1.19288 -0.335112 -1.15292)
(2.20322 0.0711996 0.818311)
(1.84498 4.13739 4.51675)
(2.08344 3.92178 0.237657)
(2.26049 -0.279031 -1.71901)
(1.95583 2.4608 0.367635)
(2.43818 4.30585 0.201465)
(2.30423 3.08648 0.435294)
(1.57951 1.18023 0.23354)
(1.32142 0.442934 -0.767257)
(1.00064 0.770088 -0.834248)
(0.250143 0.545668 -0.666375)
(0.103102 -0.202174 -0.47452)
(0.09231 -0.199787 -0.225943)
(-0.00128106 -0.285145 -0.138095)
(0.0578378 -0.379918 -0.11136)
(0.116128 -0.393059 -0.0582794)
(0.136247 -0.426631 -0.00987549)
(0.107533 -0.476105 0.0155033)
(0.0765083 -0.558381 0.0367304)
(0.046587 -0.637271 0.0571716)
(0.0302424 -0.733283 0.0754224)
(-0.00477563 -0.842257 0.0722667)
(-0.0591867 -1.09903 0.0677666)
(-0.206131 -1.50958 0.0531792)
(-0.425244 -2.21234 0.0221582)
(-0.527557 -3.0987 -0.00391961)
(-0.510574 -3.77588 -0.013894)
(-0.381459 -3.32463 -0.00467162)
(-0.0764025 -1.04814 0.00770867)
(-0.0258363 0.790268 0.038145)
(-0.00514356 1.73167 0.0816305)
(-0.0248757 2.23397 0.0887292)
(-0.0341337 2.44 0.0961526)
(-0.124567 2.47232 0.0682057)
(-0.126771 2.4184 0.131853)
(-0.265792 2.23038 0.0619363)
(-0.253133 2.18596 0.292837)
(-0.684208 1.64625 -0.183152)
(-0.0734669 0.333021 -0.104853)
(1.0885 -0.893866 -0.23993)
(1.45385 -1.08128 1.33068)
(0.794636 3.78587 3.382)
(0.782383 4.19876 -0.417391)
(2.33959 -1.01047 -0.0508189)
(3.937 1.09533 3.68041)
(4.0191 3.87348 2.39577)
(3.51989 3.38769 1.54225)
(2.48875 1.67402 0.569063)
(1.75226 0.6772 -0.580715)
(1.58629 1.61139 -0.0267632)
(0.748786 1.4465 -0.0388587)
(0.47053 0.0981102 -0.9384)
(0.464149 0.062681 -0.818006)
(0.302643 -0.229454 -0.382417)
(0.301822 -0.373062 -0.183373)
(0.311305 -0.368459 -0.0866388)
(0.256624 -0.389084 -0.0185985)
(0.183281 -0.44385 0.0141527)
(0.132796 -0.551777 0.0405965)
(0.108362 -0.639001 0.0671353)
(0.10525 -0.721672 0.0862798)
(0.0662749 -0.798445 0.0910716)
(0.0125283 -0.992608 0.0774472)
(-0.119557 -1.38516 0.0648868)
(-0.302433 -2.02033 0.026722)
(-0.447319 -2.77875 -0.00246779)
(-0.493508 -3.49092 -0.0162997)
(-0.3866 -3.23626 -0.00776888)
(-0.120476 -1.11094 0.00642864)
(-0.0142634 0.771833 0.0336645)
(0.0204078 1.69549 0.0765929)
(0.0214318 2.20991 0.0848522)
(0.0334678 2.45137 0.101029)
(-0.00382901 2.46303 0.0615275)
(0.0179877 2.44864 0.115206)
(-0.0426773 2.25779 0.0574229)
(0.0757949 2.28142 0.287099)
(0.0516632 1.51073 -0.180096)
(0.219307 0.278737 0.103111)
(1.87792 -0.352912 0.231708)
(1.61841 -2.2042 0.817718)
(-0.0720404 -0.792002 1.3084)
(-0.555004 2.01959 -2.14469)
(-0.60574 -1.07522 -2.33053)
(2.42372 -0.228108 1.98991)
(4.30908 2.96391 2.3301)
(4.16682 2.97738 2.0902)
(3.07178 1.99965 1.00696)
(1.73304 0.27483 -0.520856)
(2.49386 0.789868 1.81679)
(3.13328 1.23025 4.1113)
(1.80338 0.196509 2.04529)
(0.726626 0.373061 0.138922)
(0.739261 -0.103411 -0.0548817)
(0.698522 -0.339395 -0.172005)
(0.653374 -0.340289 -0.141671)
(0.424796 -0.331211 -0.0430671)
(0.261824 -0.395865 0.00965637)
(0.184076 -0.562946 0.0523255)
(0.167212 -0.685211 0.0845722)
(0.185311 -0.767426 0.109176)
(0.16598 -0.815766 0.109684)
(0.0929064 -0.956494 0.101968)
(-0.0372333 -1.29896 0.0753858)
(-0.188024 -1.88786 0.0363157)
(-0.350072 -2.62978 -0.00484195)
(-0.435925 -3.36918 -0.0177869)
(-0.383004 -3.28496 -0.0102547)
(-0.14194 -1.33821 0.00692876)
(-0.00585888 0.71675 0.0262074)
(0.045588 1.61209 0.0652222)
(0.0788758 2.1472 0.0775287)
(0.101178 2.42255 0.0911096)
(0.104763 2.44909 0.0606912)
(0.114956 2.4336 0.100186)
(0.178573 2.21837 0.0350363)
(0.185011 2.24481 0.210976)
(0.572289 1.54932 -0.0841594)
(-0.0562067 0.240218 -0.250973)
(1.92437 -0.00116074 -0.0655454)
(2.76767 -1.90342 -0.347792)
(0.700584 -2.96926 2.11133)
(-0.998427 1.05841 -0.480135)
(-3.39438 0.783226 -4.25796)
(-1.05689 -0.932373 -1.08684)
(2.93464 0.945467 1.47675)
(3.62681 1.62691 1.9057)
(2.6759 2.00012 0.866191)
(1.71739 0.0287151 -1.21905)
(2.99201 -1.82957 -0.290621)
(5.82175 -1.23977 4.36676)
(4.50147 -0.716645 4.74008)
(1.88412 -0.506276 1.70157)
(1.67995 -0.929187 0.18274)
(1.56577 -0.55402 -0.312055)
(1.30498 -0.124123 -0.0876816)
(0.818384 -0.0647057 0.0222701)
(0.50003 -0.271983 0.0197306)
(0.350931 -0.550693 0.0953717)
(0.30155 -0.714381 0.146061)
(0.295355 -0.813383 0.156309)
(0.264951 -0.818689 0.141004)
(0.168083 -0.917944 0.122157)
(0.0226708 -1.18983 0.0892004)
(-0.100623 -1.79343 0.0384744)
(-0.260073 -2.55441 -0.00104982)
(-0.366803 -3.38356 -0.0175442)
(-0.359067 -3.4246 -0.0101115)
(-0.141777 -1.56434 0.00808329)
(0.00255587 0.654664 0.0195894)
(0.0676976 1.51342 0.053865)
(0.125148 2.06721 0.0670221)
(0.158318 2.36345 0.0746899)
(0.194174 2.41487 0.0504261)
(0.192415 2.38697 0.0517577)
(0.311424 2.20256 0.0132356)
(0.213533 2.11493 0.0448302)
(0.730029 1.85125 -0.0125596)
(-0.255906 0.351482 -0.617276)
(0.917346 -0.117623 0.302761)
(2.68377 -1.04656 -1.03559)
(1.3037 -2.6733 0.735931)
(0.217673 -0.287417 2.00898)
(-3.02017 1.12434 -3.33934)
(-3.8802 -0.847247 -3.65328)
(0.289341 -1.19496 0.1621)
(2.13794 -0.2714 1.27137)
(1.77481 0.791376 0.767076)
(1.09233 0.583558 -0.80902)
(2.06038 -1.41388 -2.88339)
(5.14411 -2.09646 -0.646603)
(5.91379 -0.729426 2.86181)
(3.72151 -0.843427 2.51169)
(2.84111 -1.50489 0.83501)
(2.58446 -0.129159 0.49521)
(1.76375 0.594111 0.183523)
(0.657427 0.43726 -0.380006)
(0.354101 -0.0461409 -0.245248)
(0.464277 -0.477164 0.139978)
(0.562923 -0.704418 0.247893)
(0.541976 -0.903826 0.225738)
(0.457457 -0.925344 0.185805)
(0.306835 -0.976926 0.14115)
(0.0936359 -1.19508 0.0998795)
(-0.0371129 -1.77232 0.0471562)
(-0.190564 -2.59763 -3.10711e-05)
(-0.314362 -3.53534 -0.0171453)
(-0.33986 -3.72725 -0.0124836)
(-0.140624 -1.89984 0.00725442)
(0.00844753 0.57836 0.0136639)
(0.0846219 1.3881 0.0429196)
(0.163049 1.9562 0.0555037)
(0.205321 2.27231 0.058003)
(0.260964 2.35243 0.0381444)
(0.263953 2.30653 0.015271)
(0.394777 2.16794 -0.0115357)
(0.332565 1.95677 -0.0749434)
(0.758517 1.97471 -0.0311096)
(0.407245 0.756237 -0.548684)
(0.365881 -0.0183634 0.431278)
(2.23548 0.159329 0.175746)
(1.97646 -1.89471 -1.58337)
(1.89683 -2.61157 2.85593)
(0.496615 0.382345 2.89124)
(-3.01278 0.862108 -2.37388)
(-2.90437 -0.734754 -2.85908)
(-0.462712 -0.873844 -0.737574)
(0.432972 -0.339034 1.11362)
(0.842949 0.141801 0.958742)
(1.6842 -0.198917 -1.0223)
(3.51069 -1.50325 -1.94377)
(5.56405 -1.3127 0.5103)
(4.89711 -1.22185 2.36719)
(2.38578 -1.0662 1.53153)
(0.980971 1.9729 0.660718)
(0.329281 4.224 -0.753438)
(-0.402311 3.09432 -1.03322)
(-0.112657 0.410707 0.0119223)
(0.475414 -0.834015 0.373749)
(0.675425 -0.946339 0.28614)
(0.66605 -1.07166 0.235983)
(0.610623 -1.08901 0.223768)
(0.442725 -1.13251 0.165596)
(0.184606 -1.32761 0.101082)
(0.0236092 -1.87789 0.0566176)
(-0.141438 -2.74802 -0.00156853)
(-0.252843 -3.81877 -0.0155825)
(-0.285924 -4.21468 -0.0144765)
(-0.115942 -2.51364 0.0056942)
(0.0167339 0.502068 0.00831688)
(0.102559 1.25783 0.0341515)
(0.191254 1.83875 0.0454734)
(0.243556 2.17634 0.0449307)
(0.305014 2.28653 0.0269626)
(0.327864 2.23466 -0.00705042)
(0.425463 2.11308 -0.0437828)
(0.452603 1.84795 -0.142741)
(0.647774 1.82671 -0.140767)
(0.918385 1.12725 -0.513699)
(0.283988 0.194054 -0.437518)
(1.56426 0.529333 1.3859)
(2.84956 -1.07261 0.160499)
(2.12101 -3.34991 0.635704)
(2.56052 -0.780717 5.56229)
(0.171907 2.82178 3.41426)
(-2.81086 1.39294 -1.96575)
(-3.68745 -0.35382 -2.80921)
(-2.44835 -0.377453 -0.9239)
(-0.937497 -0.179442 0.0356871)
(0.404271 -0.264953 -0.628213)
(1.34606 -0.501216 -1.40719)
(2.16135 0.230289 -2.36508)
(1.9821 1.07624 -1.9719)
(-0.476086 1.78262 -0.907984)
(-2.09339 3.6957 -0.117306)
(-1.1617 4.51533 -0.0674244)
(-0.0772503 2.23623 0.696285)
(0.510479 -0.460181 1.10214)
(0.699837 -1.19385 0.369764)
(0.664119 -0.957987 0.0579535)
(0.737703 -1.06319 0.164718)
(0.692201 -1.048 0.246117)
(0.505894 -1.06981 0.183062)
(0.221684 -1.26554 0.106803)
(0.0450982 -1.84443 0.0555746)
(-0.133849 -2.74461 -0.00476724)
(-0.249828 -3.9825 -0.0200533)
(-0.30932 -4.62123 -0.018372)
(-0.141054 -3.12934 0.00345886)
(0.0216044 0.430198 0.00640822)
(0.120019 1.11071 0.030699)
(0.21552 1.6905 0.0386148)
(0.269063 2.04941 0.0373772)
(0.330835 2.18575 0.0214295)
(0.365023 2.14789 -0.0124607)
(0.437824 2.02275 -0.0579036)
(0.489493 1.77888 -0.14411)
(0.582191 1.62092 -0.212003)
(0.853009 1.27406 -0.402019)
(0.608839 0.487554 -0.741844)
(0.72839 0.617512 0.411567)
(2.55728 -0.424435 2.17744)
(2.03688 -3.18402 -0.052118)
(-0.138826 -2.32982 -1.22159)
(1.64432 1.96079 3.47345)
(1.09136 3.23594 3.9252)
(-1.53223 2.02815 0.589806)
(-3.21059 0.768636 -1.71758)
(-3.15584 0.311027 -2.9716)
(-2.56931 -0.361601 -2.78337)
(-2.21949 -0.423873 -2.35031)
(-1.34349 0.918257 -3.3211)
(-0.683782 2.1133 -3.37043)
(-1.66702 2.25577 -1.29312)
(-1.96156 1.49673 1.00832)
(-0.117032 0.473623 1.94594)
(1.30516 0.00216977 1.1956)
(1.11012 -0.12933 -0.334273)
(0.646038 -0.619135 -0.886321)
(0.639182 -1.02296 -0.187239)
(0.782389 -1.0982 0.225288)
(0.647123 -0.847222 0.24317)
(0.478784 -0.856389 0.172736)
(0.217093 -1.10602 0.100483)
(0.0502141 -1.66167 0.0506404)
(-0.123528 -2.57095 -0.0139031)
(-0.250731 -3.92924 -0.0266652)
(-0.334955 -4.8043 -0.0240571)
(-0.171279 -3.57454 -0.000565309)
(0.0170745 0.376198 0.00502907)
(0.119032 0.98659 0.0273361)
(0.231091 1.54596 0.0369598)
(0.28635 1.93401 0.0339025)
(0.34545 2.10029 0.0219585)
(0.386815 2.08713 -0.00797052)
(0.44649 1.9693 -0.0488547)
(0.498271 1.74534 -0.120695)
(0.570347 1.54044 -0.183585)
(0.716897 1.27305 -0.299086)
(0.830815 0.824592 -0.470043)
(0.61292 0.638015 -0.384792)
(1.73199 0.063914 1.78927)
(2.34614 -1.85519 2.09313)
(-0.628795 -2.91805 -1.79173)
(-1.40043 -1.13291 -1.59483)
(1.9426 1.71022 2.36137)
(3.04799 2.80993 3.69189)
(1.99459 2.30126 2.39824)
(1.1943 1.5194 0.488782)
(0.630613 0.356249 -0.0513353)
(-0.473327 -1.30761 -0.325038)
(-0.194929 -1.88658 -0.656871)
(1.27585 -0.791158 0.0409507)
(1.29124 0.738487 1.13678)
(0.669918 0.563961 2.25152)
(0.869639 0.0974361 2.86182)
(0.869826 1.38277 1.87444)
(0.587232 1.4349 -0.33477)
(0.7204 -0.438709 -0.83809)
(0.842833 -1.31085 0.0360894)
(0.746262 -0.905121 0.298664)
(0.497913 -0.524756 0.193823)
(0.372991 -0.664275 0.127239)
(0.182876 -0.9516 0.0606501)
(0.0560989 -1.47237 0.0439748)
(-0.131268 -2.34718 -0.0306115)
(-0.248064 -3.78255 -0.0349683)
(-0.363862 -4.86639 -0.0305362)
(-0.197066 -3.95127 -0.00659945)
(0.0163346 0.311587 0.00547342)
(0.109876 0.853062 0.025705)
(0.235854 1.37516 0.0370165)
(0.301805 1.77736 0.0338021)
(0.349738 1.97416 0.0252306)
(0.39517 1.99005 0.00141341)
(0.444824 1.89106 -0.0310869)
(0.494388 1.69133 -0.0827072)
(0.54503 1.47708 -0.135119)
(0.64269 1.22171 -0.19588)
(0.71879 0.918409 -0.261424)
(0.766497 0.554325 -0.250193)
(0.841852 0.333691 0.460721)
(1.64843 0.0673935 1.6533)
(0.15457 -0.594968 0.707385)
(-1.87431 -2.8128 -0.813847)
(-0.539654 -2.54743 -0.554211)
(2.51751 -0.500602 0.476837)
(5.20032 0.420921 2.39997)
(6.08872 0.945411 3.62788)
(5.24949 0.984489 3.57709)
(3.93761 0.0189314 2.66311)
(3.14644 -1.7602 1.6645)
(2.60245 -1.62631 0.851641)
(2.34203 0.281987 0.178232)
(1.76527 0.54908 0.267956)
(0.64888 -0.621093 2.30759)
(-0.0975744 -0.634857 3.39647)
(0.246117 -0.303 1.70955)
(0.751713 -0.841462 0.256994)
(0.659454 -0.820638 0.133864)
(0.439644 -0.394115 0.124236)
(0.277517 -0.306471 0.0896738)
(0.249271 -0.56398 0.0685433)
(0.128971 -0.81087 0.0385281)
(0.0646723 -1.32634 0.0103482)
(-0.123041 -2.12453 -0.0438338)
(-0.233172 -3.60469 -0.048354)
(-0.383128 -4.8596 -0.0370667)
(-0.223153 -4.29084 -0.0131739)
(0.0110114 0.266947 0.00625253)
(0.088664 0.75437 0.0259318)
(0.21802 1.24298 0.0371041)
(0.304117 1.64668 0.0376488)
(0.352417 1.87855 0.0311099)
(0.398483 1.92668 0.0143131)
(0.448043 1.85149 -0.00902267)
(0.492224 1.67527 -0.0459724)
(0.534674 1.46446 -0.0828711)
(0.595116 1.22585 -0.120817)
(0.646005 0.958036 -0.143042)
(0.71555 0.681534 -0.115614)
(0.680394 0.383742 0.0734168)
(0.876679 0.745151 0.511451)
(0.936117 1.06977 0.617559)
(1.29495 -0.521523 1.62311)
(1.40513 -2.85367 1.14269)
(2.2359 -3.79773 -0.491602)
(3.43992 -2.11579 -0.0245158)
(3.76913 0.655775 0.277492)
(3.33178 1.48302 -0.198049)
(3.59013 0.521188 0.974262)
(3.1428 -0.67425 1.73272)
(1.0747 -0.804441 0.245285)
(0.18588 -0.164557 -1.23773)
(0.537536 -0.468741 -1.49241)
(0.565739 -1.3537 -0.29484)
(0.289107 -1.49443 1.04731)
(0.248607 -0.923757 0.704126)
(0.344484 -0.467311 0.00860686)
(0.246759 -0.256148 -0.0999589)
(0.217734 -0.230371 -0.0351345)
(0.17458 -0.293029 0.00510774)
(0.191035 -0.509426 0.0220003)
(0.0844206 -0.688173 0.00893816)
(0.0668173 -1.17122 -0.0130432)
(-0.111461 -1.90703 -0.0552667)
(-0.211456 -3.4036 -0.0578826)
(-0.406205 -4.82216 -0.0434428)
(-0.251441 -4.63314 -0.0196104)
(0.0154804 0.212392 0.00786525)
(0.0745657 0.637199 0.0270514)
(0.186168 1.08788 0.038833)
(0.294491 1.46475 0.0416029)
(0.3514 1.71886 0.0385519)
(0.391222 1.79977 0.0264811)
(0.438375 1.75355 0.00862783)
(0.483777 1.60657 -0.0174535)
(0.520909 1.41838 -0.0454259)
(0.565266 1.19893 -0.0722437)
(0.600481 0.96899 -0.0888872)
(0.643138 0.734659 -0.0780951)
(0.660198 0.477289 -0.0110914)
(0.678955 0.445148 0.186084)
(0.932922 0.626481 0.353621)
(1.57893 0.685862 0.622721)
(1.9696 0.104069 0.788853)
(1.87684 -1.67526 0.204548)
(0.778005 -1.89473 -0.318509)
(0.164053 0.183395 -0.755891)
(0.485473 0.863662 -0.979708)
(1.59315 0.0907598 0.0366502)
(1.65828 -0.247112 1.18191)
(0.239765 -0.080627 0.82367)
(-0.358869 0.112225 0.100805)
(0.0841011 0.451812 -0.606173)
(0.804887 0.239633 -0.891715)
(0.789757 -0.0266048 -0.70411)
(0.431649 -0.080497 -0.433227)
(0.316987 -0.170321 -0.241679)
(0.244619 -0.196777 -0.128192)
(0.278786 -0.257247 -0.0517887)
(0.20508 -0.28912 -0.014747)
(0.207996 -0.460783 0.00186653)
(0.0833617 -0.591786 -0.00607784)
(0.0868707 -1.03846 -0.0319795)
(-0.095658 -1.71084 -0.0677684)
(-0.184832 -3.22349 -0.0654797)
(-0.440467 -4.79174 -0.0488305)
(-0.285792 -5.04353 -0.0254797)
(0.00630036 0.185413 0.00896927)
(0.0396431 0.580608 0.0303365)
(0.123385 0.997105 0.0404078)
(0.246469 1.36974 0.045938)
(0.34169 1.60699 0.0453533)
(0.392358 1.71975 0.0374284)
(0.436311 1.69519 0.0245765)
(0.487379 1.56768 0.00453349)
(0.530069 1.40171 -0.0153967)
(0.567038 1.20211 -0.0362599)
(0.597879 0.998336 -0.0506193)
(0.623635 0.798263 -0.0543972)
(0.631589 0.592066 -0.0397961)
(0.619275 0.417215 0.00573219)
(0.635007 0.292281 0.103879)
(0.693886 0.204466 0.141447)
(0.819788 0.350425 0.00914184)
(0.623844 0.628428 -0.284024)
(-0.0961813 0.682792 -0.309575)
(-0.334795 0.905519 0.298296)
(0.19266 0.865634 0.782874)
(0.803139 0.458265 0.642847)
(0.832181 0.284491 0.501501)
(0.622109 0.207771 0.627086)
(0.561712 0.0265935 0.613093)
(0.663298 0.189585 0.201785)
(0.872124 0.131713 -0.106815)
(0.82069 -0.0707609 -0.231407)
(0.575324 -0.124055 -0.197553)
(0.506664 -0.120794 -0.132165)
(0.373962 -0.0925612 -0.0802112)
(0.375913 -0.165562 -0.0397448)
(0.252282 -0.175613 -0.0179564)
(0.252891 -0.342373 -0.00427339)
(0.0927802 -0.437964 -0.0159553)
(0.12408 -0.864187 -0.0355807)
(-0.0878968 -1.51053 -0.0788312)
(-0.159231 -2.99306 -0.0686656)
(-0.491842 -4.75491 -0.0509137)
(-0.325582 -5.54736 -0.0293732)
(0.0202168 0.156683 0.0115237)
(0.0324517 0.487109 0.03195)
(0.0674889 0.888729 0.0451076)
(0.170995 1.20682 0.0478083)
(0.285816 1.42159 0.0506812)
(0.374249 1.53361 0.0453126)
(0.409975 1.54571 0.0366578)
(0.469242 1.43794 0.0217129)
(0.527485 1.30752 0.00657363)
(0.571972 1.13935 -0.00988256)
(0.611482 0.972264 -0.0227356)
(0.640693 0.806033 -0.0310879)
(0.660655 0.651281 -0.0352662)
(0.656085 0.519493 -0.0334271)
(0.639013 0.408002 -0.0224797)
(0.584879 0.312377 -0.0236411)
(0.541239 0.284206 -0.019117)
(0.580517 0.283184 -0.0277287)
(0.644997 0.472332 -0.0514964)
(0.747277 0.706087 -0.0244135)
(1.0747 0.729388 0.0779566)
(1.33615 0.469827 0.0401886)
(1.31655 0.158415 0.0256298)
(1.32467 -0.11326 0.0880302)
(1.24683 -0.23039 0.0845852)
(1.24501 -0.143722 0.00457611)
(1.25042 -0.0439181 -0.0572784)
(1.05233 -0.0247837 -0.0985134)
(0.706833 0.00323157 -0.108144)
(0.624437 -0.0216405 -0.0807116)
(0.461032 -0.00926886 -0.0546199)
(0.476667 -0.0675124 -0.0293168)
(0.337733 -0.0783238 -0.0162953)
(0.340977 -0.232196 -0.00819742)
(0.159231 -0.314394 -0.022916)
(0.168305 -0.705361 -0.0398376)
(-0.0300732 -1.31022 -0.077286)
(-0.0898043 -2.7704 -0.0721151)
(-0.559247 -4.71648 -0.0533562)
(-0.328563 -6.16963 -0.03389)
(-0.0198154 0.130087 0.01355)
(-0.0296508 0.511504 0.0365972)
(-0.0245086 0.851299 0.0475008)
(0.0307488 1.19766 0.0526836)
(0.18219 1.36614 0.0549953)
(0.339899 1.42076 0.0521458)
(0.40317 1.44531 0.0477377)
(0.463196 1.33995 0.0367415)
(0.548766 1.228 0.0259107)
(0.608862 1.08492 0.0134799)
(0.664984 0.943862 0.00245002)
(0.705168 0.803818 -0.00779514)
(0.739487 0.676825 -0.0153834)
(0.75836 0.565907 -0.0213685)
(0.770547 0.478407 -0.022384)
(0.768465 0.413721 -0.0269184)
(0.77724 0.401946 -0.04414)
(0.738641 0.403631 -0.0589845)
(0.704225 0.389357 -0.0921667)
(0.804153 0.357265 -0.099689)
(1.17942 0.302349 -0.0785327)
(1.52838 0.224957 -0.0698095)
(1.57542 0.156523 -0.050804)
(1.58605 0.0977154 -0.0168737)
(1.47926 0.0572898 -0.0350326)
(1.42274 0.0551642 -0.0633097)
(1.33166 0.0793592 -0.0687444)
(1.14741 0.0331105 -0.0774523)
(0.835099 0.0636866 -0.0567558)
(0.784983 0.0387312 -0.0443398)
(0.630723 0.0720932 -0.0270726)
(0.650857 0.0186131 -0.012553)
(0.465894 0.0189539 -0.00529855)
(0.491105 -0.098809 -0.00570644)
(0.278758 -0.164321 -0.0144159)
(0.30915 -0.502919 -0.037761)
(0.0736445 -0.998804 -0.0601438)
(0.0759307 -2.47033 -0.0771285)
(-0.558354 -4.578 -0.0497099)
(-0.255027 -6.76891 -0.0372709)
(0.0543468 0.261685 0.0165359)
(-0.000306551 0.447038 0.0388415)
(-0.099741 0.732046 0.0495501)
(-0.0463315 0.951785 0.0536993)
(-0.00126608 1.17383 0.0572276)
(0.19734 1.1753 0.0553319)
(0.336003 1.20526 0.0548076)
(0.414514 1.1228 0.048277)
(0.535582 1.03864 0.041608)
(0.624032 0.929286 0.0332614)
(0.7081 0.821913 0.0251435)
(0.7689 0.715482 0.017809)
(0.821219 0.621472 0.0115883)
(0.85358 0.537976 0.00638669)
(0.877724 0.468499 0.00224432)
(0.891663 0.40591 -0.00129317)
(0.89199 0.355737 -0.00449952)
(0.895624 0.296635 -0.00491393)
(0.938408 0.290526 -0.00847423)
(1.04955 0.271525 -0.00767892)
(1.36026 0.256794 0.00874634)
(1.63547 0.194855 0.0148406)
(1.6504 0.10976 0.0249994)
(1.69635 0.0259662 0.0387687)
(1.64986 0.0168395 0.0299156)
(1.67385 0.00607094 0.00982034)
(1.58488 0.0908824 0.000246409)
(1.40413 0.0823083 -0.0121464)
(1.07252 0.148936 -0.0120408)
(1.04248 0.125281 -0.00682844)
(0.871939 0.177122 -1.9213e-05)
(0.930632 0.0984917 0.00368651)
(0.750166 0.10775 0.00529946)
(0.833255 -0.00559162 0.00339603)
(0.57453 -0.0726457 -0.0062071)
(0.692074 -0.358474 -0.0216611)
(0.344653 -0.780991 -0.0482795)
(0.467673 -2.08065 -0.0542029)
(-0.255285 -4.38584 -0.0559478)
(0.0136275 -7.2991 -0.0399087)
(-0.229893 0.0632691 0.0233736)
(-0.314442 0.679842 0.0490216)
(-0.304825 0.852472 0.0555807)
(-0.270919 1.00057 0.0571164)
(-0.127232 1.0304 0.0613952)
(0.0536177 1.05164 0.058858)
(0.234053 0.997987 0.062604)
(0.35572 0.937748 0.0587822)
(0.510049 0.862127 0.0566016)
(0.628151 0.784358 0.0521072)
(0.745169 0.704944 0.0482939)
(0.836713 0.626596 0.044017)
(0.91767 0.556142 0.0407178)
(0.97818 0.492029 0.036774)
(1.0259 0.440262 0.0328303)
(1.05795 0.388238 0.0283949)
(1.0843 0.338751 0.0221245)
(1.11425 0.300915 0.0164585)
(1.1633 0.287309 0.0130044)
(1.30189 0.230135 0.0145085)
(1.65593 0.207339 0.0243995)
(1.996 0.160734 0.0320289)
(2.04405 0.1204 0.0379596)
(2.14401 0.0782215 0.0394063)
(2.10761 0.0803719 0.0340722)
(2.15421 0.0489108 0.0239307)
(2.05121 0.123588 0.0195152)
(1.91784 0.0888978 0.0132936)
(1.57452 0.16566 0.0132574)
(1.61771 0.151694 0.0157059)
(1.4443 0.221279 0.021501)
(1.57725 0.157527 0.022853)
(1.36628 0.167653 0.021875)
(1.52975 0.0452707 0.0175232)
(1.21041 -0.00170979 0.0119437)
(1.40167 -0.220099 -0.00195558)
(0.95569 -0.484677 -0.0207984)
(1.1558 -1.46268 -0.0395428)
(0.330796 -3.89983 -0.0440929)
(0.485982 -7.21216 -0.0366008)
(-0.731344 0.799385 0.0390115)
(-0.608123 0.394423 0.0578071)
(-0.754647 0.571756 0.054925)
(-0.46318 0.589296 0.0540964)
(-0.313848 0.607615 0.057072)
(0.000572228 0.649982 0.057835)
(0.225576 0.625437 0.0619536)
(0.449986 0.599593 0.0619086)
(0.676147 0.559041 0.0625711)
(0.881186 0.517409 0.0613788)
(1.07864 0.470452 0.0601374)
(1.2545 0.423893 0.0582373)
(1.41135 0.382307 0.0566596)
(1.54524 0.347807 0.0545431)
(1.6521 0.324118 0.0521061)
(1.74513 0.292285 0.0497618)
(1.83288 0.253264 0.0476773)
(1.96725 0.22652 0.0479384)
(2.12739 0.218979 0.0506717)
(2.40379 0.150609 0.0542481)
(2.81951 0.131035 0.0627811)
(3.25628 0.0828633 0.0673702)
(3.34953 0.0345997 0.0675337)
(3.50219 -0.0164418 0.0658402)
(3.44333 -0.00847961 0.0583866)
(3.55558 -0.0230884 0.0483955)
(3.40539 0.056418 0.0425873)
(3.35538 0.0527789 0.0367009)
(2.96387 0.128833 0.0374074)
(3.12211 0.143279 0.0361134)
(2.90346 0.201776 0.0358082)
(3.20685 0.149566 0.0350376)
(2.91707 0.124076 0.0315164)
(3.25061 0.0384882 0.0280965)
(2.77922 -0.0224481 0.020565)
(3.13201 -0.210051 0.0144581)
(2.47023 -0.491239 0.00333981)
(2.83899 -1.13717 -0.00850124)
(1.86134 -3.16768 -0.0231866)
(1.32091 -6.11018 -0.0242821)
(1.16474 1.49155 0.0167997)
(1.73202 0.740013 0.0240229)
(2.47224 0.583586 0.0242765)
(2.88436 0.359418 0.021937)
(3.16477 0.281498 0.0220674)
(3.40756 0.227554 0.0202249)
(3.62659 0.207282 0.0220021)
(3.83914 0.185587 0.0220062)
(4.06522 0.171344 0.0232803)
(4.29706 0.15734 0.0235354)
(4.51749 0.142986 0.0245444)
(4.72981 0.128053 0.0252359)
(4.90905 0.114352 0.0266216)
(5.06996 0.102398 0.0273139)
(5.18485 0.0961834 0.0267599)
(5.30082 0.0906963 0.025932)
(5.41511 0.0734236 0.0263218)
(5.61532 0.0571351 0.0284551)
(5.85 0.0732031 0.0343001)
(6.29456 0.0580125 0.0411905)
(6.71831 0.0361455 0.0508784)
(7.20855 0.0156369 0.0575069)
(7.26964 0.00035678 0.0589296)
(7.35345 -0.0389414 0.05233)
(7.18029 -0.0298091 0.0442826)
(7.19402 -0.0474664 0.0342192)
(6.84617 -0.0306429 0.028583)
(6.82395 -0.0186212 0.0226329)
(6.341 0.0143311 0.0210022)
(6.57334 0.0297654 0.0203839)
(6.31982 0.0640065 0.0205509)
(6.75126 0.0669748 0.0200923)
(6.44149 0.0467911 0.0181963)
(6.83566 0.0168962 0.015129)
(6.29948 -0.0163185 0.0124398)
(6.52561 -0.102639 0.00853562)
(5.64557 -0.262961 0.00439365)
(5.67995 -0.586027 -0.000373208)
(4.2561 -1.14818 -0.00753941)
(2.77702 -2.53767 -0.0123668)
(0.000477461 -0.00122532 0.00701687)
(0.0197282 -0.00438646 0.0120091)
(0.0477164 -0.00468371 0.0152027)
(0.0669425 -0.00326765 0.0174825)
(0.0792328 -0.00266837 0.0205943)
(0.071365 -0.00275232 0.0226468)
(0.0534015 0.00371421 0.0197704)
(0.0335848 0.00430088 0.0214721)
(0.012288 0.0191476 0.0188991)
(-0.0255064 0.024228 0.020568)
(-0.0798528 0.0165767 0.0223688)
(-0.139676 0.00888067 0.0231879)
(-0.208977 0.00134385 0.0236015)
(-0.290579 0.0014468 0.0269831)
(-0.370313 0.0101958 0.030054)
(-0.461523 0.0187569 0.0405695)
(-0.55389 0.00567439 0.0456914)
(-0.690048 -0.00121787 0.0759928)
(-0.772041 -0.0092039 0.0995195)
(-0.949985 -0.00620449 0.123762)
(-0.910558 0.030939 0.140443)
(-0.724338 0.0294159 0.155809)
(-0.716503 0.0290421 0.15968)
(-0.697885 0.0280785 0.166649)
(-0.683638 0.00774746 0.173951)
(-0.631862 -0.0107266 0.190713)
(-0.557459 -0.0253566 0.207147)
(-0.434415 -0.0432351 0.22286)
(-0.289841 -0.0584663 0.233849)
(-0.121802 -0.0674148 0.24165)
(0.0391125 -0.0476549 0.227859)
(0.263109 0.00212415 0.21091)
(0.456695 -0.0184654 0.188943)
(0.511894 0.025633 0.142082)
(0.475543 0.0500211 0.0993031)
(0.369705 0.0469113 0.0600655)
(0.241484 0.0315892 0.0368127)
(0.129362 0.0179411 0.021642)
(0.0441916 0.00308792 0.0125471)
(-0.00105871 -0.00790537 0.00359776)
(0.00653488 -0.0177042 0.0133372)
(0.0410207 -0.0342322 0.0253692)
(0.0830782 -0.0358338 0.0329594)
(0.109236 -0.0265164 0.0390292)
(0.119639 -0.0174907 0.0467477)
(0.104061 -0.00576775 0.0512902)
(0.0601515 0.00537753 0.0496358)
(0.00817595 0.0350754 0.0499552)
(-0.0668051 0.0580178 0.0458421)
(-0.209848 0.0643745 0.0518703)
(-0.379459 0.0877551 0.0577822)
(-0.560286 0.112552 0.060145)
(-0.757749 0.141565 0.0643103)
(-0.968155 0.171243 0.0717117)
(-1.18381 0.19122 0.0807284)
(-1.41799 0.173203 0.103303)
(-1.62066 0.134614 0.122069)
(-1.82174 0.0963688 0.150573)
(-1.95983 0.0690186 0.175437)
(-2.10673 0.0508554 0.196364)
(-1.95778 0.0727136 0.207783)
(-1.69641 0.040207 0.213061)
(-1.56813 0.00895177 0.194762)
(-1.46165 -0.0500311 0.17672)
(-1.38319 -0.129982 0.189162)
(-1.2529 -0.20055 0.192371)
(-1.11711 -0.25425 0.197335)
(-0.933756 -0.293248 0.199332)
(-0.729937 -0.318358 0.20605)
(-0.489068 -0.334571 0.203579)
(-0.246577 -0.300367 0.212386)
(0.0142439 -0.215539 0.176326)
(0.302579 -0.135067 0.195249)
(0.535682 -0.0443563 0.163164)
(0.604362 0.0657904 0.137809)
(0.552885 0.130583 0.10761)
(0.432952 0.148653 0.0805794)
(0.273984 0.125778 0.0573788)
(0.116153 0.0858665 0.035225)
(0.016401 0.0306422 0.0107481)
(0.00988197 -0.0456581 0.021834)
(0.046813 -0.0798243 0.0390995)
(0.0854387 -0.0777412 0.051139)
(0.0998064 -0.0504322 0.0598465)
(0.0921888 -0.0250815 0.0685586)
(0.0412382 0.0143822 0.0754115)
(-0.0340135 0.0673184 0.0786296)
(-0.154695 0.133637 0.0771212)
(-0.348453 0.199974 0.0744391)
(-0.569719 0.25443 0.0735758)
(-0.821516 0.326767 0.0704285)
(-1.09931 0.383688 0.0689231)
(-1.37414 0.427056 0.0704391)
(-1.64537 0.428337 0.0756827)
(-1.90442 0.381822 0.0871025)
(-2.13132 0.317703 0.099465)
(-2.29947 0.260851 0.10458)
(-2.45856 0.198853 0.111999)
(-2.55841 0.158151 0.112367)
(-2.62995 0.100901 0.106679)
(-2.40058 0.0828025 0.0956296)
(-2.09836 0.0209569 0.0767438)
(-1.94049 -0.0623355 0.0502081)
(-1.82383 -0.195541 0.0577097)
(-1.73097 -0.320171 0.0544813)
(-1.59466 -0.443547 0.0507715)
(-1.45078 -0.545986 0.0507716)
(-1.28107 -0.618613 0.0519795)
(-1.11345 -0.651748 0.0534029)
(-0.900079 -0.643223 0.0556513)
(-0.676662 -0.604611 0.063492)
(-0.41088 -0.513558 0.0681627)
(-0.146485 -0.365646 0.0995592)
(0.123048 -0.19833 0.0837593)
(0.339244 -0.0197823 0.112195)
(0.414097 0.151566 0.0971709)
(0.373566 0.215667 0.0893237)
(0.255957 0.227319 0.0696288)
(0.113928 0.176997 0.0456575)
(0.0140395 0.0834209 0.0136516)
(0.0103152 -0.079703 0.0361803)
(0.0419607 -0.122565 0.0597546)
(0.0649209 -0.113342 0.0736074)
(0.044111 -0.0584618 0.0821811)
(-0.00347201 0.01455 0.0979962)
(-0.0820083 0.107379 0.0938175)
(-0.225151 0.22075 0.0944138)
(-0.428289 0.345352 0.0848444)
(-0.70276 0.472967 0.0711726)
(-1.01725 0.57148 0.0599752)
(-1.32049 0.632434 0.0518057)
(-1.60884 0.659327 0.0458573)
(-1.88327 0.630453 0.0406142)
(-2.14325 0.558697 0.0440833)
(-2.3441 0.474084 0.0404519)
(-2.49993 0.397934 0.0321135)
(-2.60942 0.327571 0.0235077)
(-2.70913 0.254223 0.0135008)
(-2.75976 0.201189 -0.00216078)
(-2.75372 0.117917 -0.0140759)
(-2.48522 0.0810648 -0.0280066)
(-2.1928 -0.00753392 -0.0401141)
(-2.0603 -0.142904 -0.0455429)
(-1.96852 -0.304622 -0.0353789)
(-1.90312 -0.458376 -0.0357454)
(-1.79426 -0.623334 -0.0349776)
(-1.67857 -0.776272 -0.0303095)
(-1.52549 -0.905974 -0.0265247)
(-1.37271 -0.985961 -0.0153603)
(-1.21162 -0.995338 -0.0114188)
(-1.04509 -0.927329 0.000347742)
(-0.842572 -0.796779 0.00339518)
(-0.618068 -0.643167 0.0306314)
(-0.341035 -0.417378 0.0472154)
(-0.0439265 -0.166254 0.0695801)
(0.132973 0.0675419 0.0806702)
(0.181719 0.220781 0.0804281)
(0.154003 0.271156 0.0707636)
(0.0649882 0.236452 0.0473245)
(0.00681768 0.119249 0.0148619)
(0.0116611 -0.10946 0.0496283)
(0.0215935 -0.156212 0.080439)
(0.010514 -0.111211 0.105207)
(-0.0371878 -0.0128587 0.106869)
(-0.12943 0.132517 0.113072)
(-0.279259 0.289111 0.107877)
(-0.482408 0.464513 0.0935085)
(-0.738477 0.629229 0.0692043)
(-1.05962 0.767425 0.0467925)
(-1.38143 0.841467 0.0289633)
(-1.68029 0.852051 0.0144002)
(-1.9658 0.799571 0.00613673)
(-2.21107 0.715778 -4.56799e-05)
(-2.39527 0.623563 -0.00635577)
(-2.52383 0.544517 -0.0131941)
(-2.61147 0.455715 -0.022433)
(-2.6589 0.380504 -0.0341506)
(-2.70006 0.299298 -0.0492388)
(-2.6984 0.23995 -0.0676811)
(-2.63292 0.139411 -0.0810067)
(-2.3462 0.0937532 -0.0883034)
(-2.09411 -0.0205617 -0.0870472)
(-2.00095 -0.184443 -0.0701958)
(-1.94792 -0.359453 -0.0632021)
(-1.91482 -0.538813 -0.0602535)
(-1.85161 -0.741285 -0.0546909)
(-1.78099 -0.941309 -0.0489286)
(-1.67296 -1.13186 -0.0424841)
(-1.54898 -1.28276 -0.0365773)
(-1.39091 -1.36769 -0.0283843)
(-1.25076 -1.34778 -0.0189079)
(-1.12495 -1.21955 -0.0128614)
(-1.00035 -0.977715 0.00453104)
(-0.750197 -0.700503 0.0261965)
(-0.413249 -0.394158 0.0603864)
(-0.129022 -0.0793885 0.0766044)
(0.0132581 0.141714 0.0855736)
(0.0342775 0.263328 0.0721471)
(0.0169765 0.250087 0.0513357)
(-0.00447908 0.125244 0.0185878)
(0.00303807 -0.125603 0.0656473)
(-0.00364244 -0.150234 0.107027)
(-0.0532066 -0.053364 0.12527)
(-0.149353 0.119849 0.128544)
(-0.296987 0.321253 0.124095)
(-0.487207 0.543522 0.102446)
(-0.717084 0.741378 0.0705544)
(-0.984881 0.917566 0.0369812)
(-1.31737 0.988333 0.00862577)
(-1.66742 0.969207 -0.00541871)
(-1.96189 0.909548 -0.0170202)
(-2.18175 0.829142 -0.02707)
(-2.33559 0.751739 -0.040326)
(-2.44556 0.66618 -0.0482733)
(-2.50517 0.569796 -0.0546639)
(-2.52766 0.464943 -0.0591977)
(-2.52152 0.376705 -0.0672349)
(-2.50651 0.299311 -0.07564)
(-2.4579 0.250687 -0.0909596)
(-2.33866 0.154788 -0.103404)
(-2.05247 0.109951 -0.106683)
(-1.84295 -0.018445 -0.0971469)
(-1.78415 -0.186574 -0.0762926)
(-1.76415 -0.363389 -0.071392)
(-1.75951 -0.552438 -0.0665388)
(-1.74413 -0.770695 -0.0606343)
(-1.72702 -1.00202 -0.0541103)
(-1.68424 -1.24184 -0.0475584)
(-1.62424 -1.46312 -0.041163)
(-1.52098 -1.6299 -0.0375234)
(-1.39368 -1.71323 -0.0287905)
(-1.24693 -1.65991 -0.0236628)
(-1.19684 -1.47817 -0.0106844)
(-1.08603 -1.07585 0.00458728)
(-0.738237 -0.696535 0.0351623)
(-0.383101 -0.283843 0.0663844)
(-0.13416 0.0361389 0.0702433)
(-0.0256039 0.220704 0.0757657)
(-0.0158315 0.235078 0.0515293)
(-0.00390386 0.11528 0.0206197)
(0.000946459 -0.118973 0.0817612)
(-0.0362388 -0.0828123 0.129435)
(-0.120236 0.0688297 0.146276)
(-0.263833 0.303968 0.139376)
(-0.443367 0.558246 0.117396)
(-0.65255 0.79584 0.0786444)
(-0.877939 0.991603 0.0381931)
(-1.20042 1.06586 0.000944835)
(-1.58003 1.00553 -0.0104719)
(-1.86434 0.953112 -0.0275186)
(-2.05833 0.911914 -0.046745)
(-2.19952 0.866746 -0.0619938)
(-2.29896 0.794767 -0.0693164)
(-2.35455 0.69493 -0.0696901)
(-2.37037 0.582293 -0.0610388)
(-2.34263 0.463479 -0.0510631)
(-2.27399 0.379879 -0.0498416)
(-2.18611 0.303586 -0.0682372)
(-2.09313 0.264806 -0.0941933)
(-1.94745 0.182973 -0.110507)
(-1.67972 0.149751 -0.10835)
(-1.52178 -0.00671189 -0.0974059)
(-1.49493 -0.163213 -0.0790118)
(-1.49095 -0.336469 -0.0716451)
(-1.50785 -0.523162 -0.0653014)
(-1.5233 -0.741527 -0.0577531)
(-1.54764 -0.983464 -0.0498312)
(-1.56159 -1.24948 -0.041469)
(-1.56943 -1.52209 -0.0342835)
(-1.54552 -1.76878 -0.0301448)
(-1.48068 -1.95018 -0.0263402)
(-1.36981 -2.0041 -0.02191)
(-1.24681 -1.93085 -0.0176818)
(-1.21347 -1.61526 -0.00728922)
(-1.01315 -1.11733 0.0146637)
(-0.581312 -0.618592 0.0472884)
(-0.23852 -0.159844 0.0826009)
(-0.0839444 0.109537 0.078917)
(-0.026038 0.186473 0.060085)
(-0.00419683 0.0886107 0.0248658)
(0.00577827 -0.0716474 0.10038)
(-0.0585808 0.0203258 0.152748)
(-0.195054 0.230954 0.161021)
(-0.356878 0.507275 0.138661)
(-0.553622 0.772203 0.0988324)
(-0.758912 0.986349 0.05067)
(-1.07525 1.08383 0.00796584)
(-1.43374 1.02215 -0.00536134)
(-1.69938 0.984528 -0.0345668)
(-1.88377 0.988703 -0.0565192)
(-2.01574 0.968285 -0.0768401)
(-2.10182 0.913292 -0.0864518)
(-2.15418 0.828687 -0.0896215)
(-2.17431 0.713697 -0.0795536)
(-2.15185 0.572375 -0.0672037)
(-2.07046 0.414797 -0.0544665)
(-1.95603 0.280829 -0.0561355)
(-1.82533 0.212216 -0.0527933)
(-1.69655 0.23269 -0.0743835)
(-1.52767 0.229037 -0.108893)
(-1.32432 0.20926 -0.115625)
(-1.21065 0.017031 -0.100023)
(-1.19456 -0.123544 -0.0860819)
(-1.20431 -0.290373 -0.0772341)
(-1.22747 -0.465102 -0.0692739)
(-1.25908 -0.67026 -0.0608404)
(-1.30428 -0.904057 -0.0510523)
(-1.35363 -1.17186 -0.0409699)
(-1.40903 -1.46669 -0.03082)
(-1.45222 -1.76604 -0.0245228)
(-1.46885 -2.03451 -0.0198903)
(-1.42983 -2.21351 -0.0164608)
(-1.33472 -2.24007 -0.0146073)
(-1.25718 -2.08988 -0.0148989)
(-1.1585 -1.63195 -0.00259998)
(-0.82223 -1.02453 0.0171536)
(-0.357498 -0.446305 0.0485498)
(-0.0946217 0.00549391 0.0621842)
(-0.0142113 0.124296 0.0527745)
(0.00256369 0.0748696 0.0222431)
(-0.00647091 -0.0172976 0.111577)
(-0.0945576 0.121585 0.167204)
(-0.242905 0.36543 0.165453)
(-0.426643 0.645683 0.127396)
(-0.635069 0.882316 0.0772754)
(-0.917356 1.03803 0.0267984)
(-1.24412 1.02668 0.000345593)
(-1.49925 1.02482 -0.0320356)
(-1.68903 1.05105 -0.0571125)
(-1.80448 1.04577 -0.0817653)
(-1.87078 1.00864 -0.0986927)
(-1.9125 0.94468 -0.108406)
(-1.94493 0.851198 -0.102392)
(-1.96731 0.711349 -0.0833169)
(-1.96844 0.532229 -0.0332345)
(-1.89863 0.343695 0.0262171)
(-1.70472 0.267296 0.0562762)
(-1.42467 0.227677 -0.00635243)
(-1.22405 0.273075 -0.0991932)
(-1.10293 0.351478 -0.150554)
(-1.03006 0.318344 -0.13249)
(-0.972973 0.0784854 -0.106705)
(-0.946612 -0.0802094 -0.0931527)
(-0.959019 -0.239 -0.0827562)
(-0.977795 -0.405287 -0.0733346)
(-1.01022 -0.591231 -0.0637023)
(-1.05862 -0.807985 -0.0526696)
(-1.11902 -1.06056 -0.0409069)
(-1.19532 -1.35378 -0.0290364)
(-1.27452 -1.67542 -0.019091)
(-1.34652 -2.00068 -0.0131973)
(-1.38088 -2.27693 -0.00899755)
(-1.35613 -2.44102 -0.00845371)
(-1.27076 -2.41523 -0.00958775)
(-1.19111 -2.12772 -0.00877315)
(-0.97487 -1.51074 0.000726305)
(-0.485114 -0.780833 0.0250953)
(-0.142343 -0.193761 0.0455813)
(-0.043681 0.0681274 0.0537148)
(0.011991 0.0625312 0.0233321)
(-0.0195634 0.0405532 0.119717)
(-0.131608 0.243635 0.177231)
(-0.298937 0.50193 0.166074)
(-0.481521 0.75524 0.116889)
(-0.708767 0.957554 0.0590886)
(-1.00258 1.04085 0.0149198)
(-1.28073 1.06704 -0.0184844)
(-1.47592 1.10244 -0.0478683)
(-1.59023 1.10721 -0.077496)
(-1.63422 1.07967 -0.10026)
(-1.65725 1.03784 -0.121487)
(-1.68185 0.981357 -0.127106)
(-1.73777 0.902773 -0.117934)
(-1.81276 0.789674 -0.0670333)
(-1.82254 0.611453 -0.0289369)
(-1.54304 0.302185 -0.0721896)
(-1.17542 -0.0552419 -0.242922)
(-1.01041 -0.215578 -0.295824)
(-1.04433 0.0367995 -0.288868)
(-1.06209 0.439519 -0.294465)
(-0.96853 0.450267 -0.216278)
(-0.850797 0.108513 -0.138569)
(-0.781314 -0.0547799 -0.106598)
(-0.776306 -0.192893 -0.0961139)
(-0.782654 -0.351266 -0.0806915)
(-0.805326 -0.514864 -0.0699175)
(-0.846452 -0.710449 -0.0565303)
(-0.902155 -0.937748 -0.0434631)
(-0.980349 -1.21244 -0.0296382)
(-1.07182 -1.53105 -0.0176038)
(-1.17315 -1.88429 -0.00817854)
(-1.25728 -2.23097 -0.0039379)
(-1.29794 -2.51005 -0.00221298)
(-1.27084 -2.63241 -0.00460397)
(-1.17702 -2.5089 -0.00740049)
(-1.03816 -2.03288 -0.00517835)
(-0.685877 -1.2263 0.0036305)
(-0.215829 -0.489674 0.0325805)
(-0.037759 -0.0110836 0.025835)
(0.00127643 0.0413761 0.0157759)
(-0.0223539 0.105763 0.123738)
(-0.148587 0.371624 0.181225)
(-0.326737 0.641884 0.16355)
(-0.515125 0.885525 0.106259)
(-0.769102 1.04859 0.0465159)
(-1.04355 1.10479 -0.000159484)
(-1.26122 1.1443 -0.0301909)
(-1.37751 1.15728 -0.0625033)
(-1.4195 1.13534 -0.0909737)
(-1.40793 1.09466 -0.119424)
(-1.39143 1.06812 -0.147033)
(-1.4084 1.05257 -0.167509)
(-1.46911 1.02294 -0.163728)
(-1.4929 0.867784 -0.195145)
(-1.20425 0.371884 -0.323675)
(-0.664208 -0.259476 -0.42578)
(-0.546586 -0.381264 -0.261469)
(-0.819679 0.0748934 -0.0339512)
(-1.09817 0.482625 -0.0729653)
(-1.1156 0.702515 -0.251772)
(-0.863798 0.469777 -0.218589)
(-0.705635 0.0338485 -0.110486)
(-0.65769 -0.0792752 -0.101885)
(-0.633175 -0.176727 -0.101458)
(-0.639054 -0.319643 -0.0867178)
(-0.648234 -0.46063 -0.0751636)
(-0.679235 -0.634114 -0.060231)
(-0.720537 -0.832953 -0.0454397)
(-0.786853 -1.079 -0.0303264)
(-0.871295 -1.37495 -0.0163338)
(-0.976919 -1.72671 -0.00505505)
(-1.08524 -2.10876 0.00208952)
(-1.17312 -2.47484 0.00393153)
(-1.20165 -2.7337 0.00205653)
(-1.14792 -2.7703 -0.00161641)
(-1.01372 -2.47632 -0.00465656)
(-0.779108 -1.73881 0.000134668)
(-0.326127 -0.782773 0.0112932)
(-0.0476001 -0.129596 0.0321209)
(-0.0137847 0.0283543 0.0171897)
(-0.0231512 0.183022 0.124795)
(-0.155488 0.505518 0.182592)
(-0.338372 0.783517 0.161121)
(-0.54596 1.01105 0.100132)
(-0.801099 1.12744 0.0407853)
(-1.02541 1.18397 -0.00561365)
(-1.17201 1.20613 -0.0376833)
(-1.22086 1.18432 -0.0691575)
(-1.20428 1.1343 -0.102776)
(-1.13441 1.08626 -0.13932)
(-1.06809 1.09459 -0.1935)
(-1.0467 1.12382 -0.238733)
(-1.05854 1.05735 -0.333858)
(-0.806434 0.616572 -0.528534)
(-0.127752 -0.107506 -0.478648)
(0.244097 -0.206057 0.293825)
(-0.240291 0.452316 0.776013)
(-0.800001 0.865851 0.596606)
(-0.933673 0.805722 0.117357)
(-0.795436 0.767321 -0.243092)
(-0.504851 0.506442 -0.24269)
(-0.462315 0.0826092 -0.137693)
(-0.5202 -0.0475335 -0.126767)
(-0.506996 -0.145657 -0.118663)
(-0.527874 -0.28563 -0.101006)
(-0.530276 -0.416521 -0.0846242)
(-0.554644 -0.574308 -0.0663916)
(-0.581407 -0.748901 -0.0482815)
(-0.631787 -0.964677 -0.0311455)
(-0.699658 -1.2293 -0.0154458)
(-0.794861 -1.55946 -0.00261167)
(-0.907247 -1.94933 0.00660553)
(-1.02027 -2.36856 0.0105495)
(-1.09534 -2.73833 0.0079169)
(-1.0951 -2.93975 0.00197186)
(-0.985928 -2.81937 -0.0024785)
(-0.783862 -2.24973 -0.00443014)
(-0.418644 -1.2057 0.00212446)
(-0.0812907 -0.306111 0.00596)
(-0.0210363 -0.00189814 0.00523793)
(-0.0194827 0.253859 0.122191)
(-0.149476 0.629533 0.18008)
(-0.339394 0.914742 0.156963)
(-0.56743 1.11017 0.0951851)
(-0.794268 1.2079 0.0349043)
(-0.957748 1.25629 -0.00789871)
(-1.05027 1.24143 -0.0383413)
(-1.0426 1.1798 -0.0705141)
(-0.975017 1.09822 -0.108786)
(-0.831218 1.04643 -0.160157)
(-0.688059 1.08754 -0.248576)
(-0.657911 1.15838 -0.37774)
(-0.549186 0.88257 -0.621947)
(0.119753 0.153034 -0.44046)
(0.687475 -0.0934873 0.55594)
(0.150373 0.683272 1.17721)
(-0.911238 1.02634 0.897768)
(-1.16915 0.583336 0.269359)
(-1.04251 0.30353 -0.233112)
(-0.926294 0.505771 -0.415036)
(-0.48611 0.515668 -0.35689)
(-0.402889 0.179924 -0.247771)
(-0.475173 0.0110606 -0.195987)
(-0.446983 -0.113025 -0.157617)
(-0.463054 -0.2557 -0.128972)
(-0.452199 -0.388207 -0.100605)
(-0.467388 -0.535652 -0.0763885)
(-0.478534 -0.69279 -0.0522549)
(-0.51202 -0.880275 -0.0318995)
(-0.558643 -1.11047 -0.0136326)
(-0.634805 -1.4061 0.000110311)
(-0.736205 -1.77972 0.012524)
(-0.854855 -2.21887 0.0171911)
(-0.956383 -2.6648 0.0146294)
(-1.00127 -3.00455 0.00743288)
(-0.943458 -3.06624 0.000292101)
(-0.761683 -2.67797 -0.000413432)
(-0.464958 -1.70347 0.00181431)
(-0.107047 -0.554201 0.019369)
(-0.0136123 -0.060341 0.0121758)
(-0.0144254 0.319397 0.118126)
(-0.135937 0.749708 0.176791)
(-0.341349 1.03252 0.154814)
(-0.561331 1.20344 0.0939744)
(-0.744663 1.30169 0.0350948)
(-0.865642 1.31704 -0.00443302)
(-0.911102 1.25867 -0.0316992)
(-0.865168 1.15236 -0.0649036)
(-0.74738 1.0325 -0.105991)
(-0.510721 0.952047 -0.174281)
(-0.317841 1.08548 -0.348425)
(-0.438126 1.0893 -0.626313)
(-0.087292 0.558839 -0.4806)
(0.555162 0.139041 0.47189)
(-0.159 0.714981 0.892685)
(-1.29032 1.08229 0.730072)
(-1.73372 0.68975 0.361612)
(-1.42531 0.289029 0.0449993)
(-1.35214 0.384673 -0.102401)
(-1.17647 0.529073 -0.259081)
(-0.516148 0.398258 -0.308009)
(-0.371457 0.154815 -0.281517)
(-0.443559 0.0204774 -0.242875)
(-0.401316 -0.104249 -0.19071)
(-0.414214 -0.239361 -0.156756)
(-0.396885 -0.372879 -0.115487)
(-0.403688 -0.512617 -0.0859514)
(-0.403134 -0.657762 -0.0551788)
(-0.422298 -0.822114 -0.0315282)
(-0.450025 -1.02119 -0.0102731)
(-0.506223 -1.27955 0.00482385)
(-0.59155 -1.62368 0.019007)
(-0.703395 -2.05922 0.0243876)
(-0.817886 -2.55068 0.0216452)
(-0.893887 -2.99919 0.0118866)
(-0.88573 -3.22932 0.00258186)
(-0.745608 -3.02744 -0.0029277)
(-0.484511 -2.18493 0.000634379)
(-0.127503 -0.884649 0.00861178)
(-0.00612187 -0.132817 0.00908276)
(-0.00668445 0.366061 0.11222)
(-0.128365 0.846312 0.172035)
(-0.333044 1.12569 0.151802)
(-0.528568 1.29778 0.0959371)
(-0.682218 1.37886 0.0395495)
(-0.769698 1.35485 0.00472571)
(-0.785214 1.24899 -0.0192249)
(-0.717286 1.10029 -0.049755)
(-0.565693 0.909607 -0.0861595)
(-0.210086 0.851981 -0.194351)
(-0.284888 1.05338 -0.534416)
(-0.460202 0.942395 -0.631202)
(0.0447541 0.666812 0.235391)
(-0.65834 1.05119 0.318298)
(-1.4419 1.27672 0.0436752)
(-1.3445 0.733082 0.231733)
(-1.17746 0.345299 0.138554)
(-1.24839 0.251337 0.270264)
(-1.36586 0.537849 0.111433)
(-1.01549 0.37568 -0.131783)
(-0.350366 0.224622 -0.214853)
(-0.300291 0.20539 -0.354308)
(-0.394291 0.0912315 -0.321013)
(-0.362003 -0.0780518 -0.235037)
(-0.373835 -0.217667 -0.191365)
(-0.353425 -0.361885 -0.132869)
(-0.353629 -0.499923 -0.0959535)
(-0.343539 -0.638885 -0.0575988)
(-0.351986 -0.785605 -0.0303125)
(-0.364835 -0.95732 -0.00632656)
(-0.403202 -1.17831 0.0106525)
(-0.469955 -1.48437 0.0263881)
(-0.568863 -1.89758 0.0330671)
(-0.684154 -2.40898 0.0301059)
(-0.779852 -2.93593 0.0189169)
(-0.81018 -3.31453 0.00565871)
(-0.710868 -3.29393 -0.00103942)
(-0.486728 -2.61166 -0.000123426)
(-0.137814 -1.24888 0.00946472)
(0.0254665 -0.177978 0.0113295)
(-0.00392276 0.405457 0.106342)
(-0.117427 0.934435 0.166606)
(-0.30628 1.23563 0.152647)
(-0.477262 1.40066 0.1022)
(-0.609833 1.45964 0.0511995)
(-0.680184 1.39324 0.0216988)
(-0.679514 1.24218 0.00059356)
(-0.624174 1.04905 -0.0234387)
(-0.423686 0.776966 -0.0416857)
(-0.180077 0.835184 -0.273753)
(-0.705637 1.07955 -0.688431)
(-0.540933 1.23131 -0.447304)
(-0.813049 1.48374 -0.0104334)
(-1.51228 1.42997 -0.560637)
(-0.844135 0.682166 -0.363187)
(-0.300034 0.129171 -0.174281)
(-0.493564 0.277685 0.0921499)
(-1.05433 0.425177 0.192025)
(-1.24975 0.222599 -0.256727)
(-0.995569 -0.020266 -0.280765)
(-0.519876 0.0580094 -0.269798)
(-0.481118 0.258967 -0.513)
(-0.421418 0.128479 -0.433526)
(-0.376564 -0.0644135 -0.280075)
(-0.353496 -0.205934 -0.226517)
(-0.325925 -0.356166 -0.147745)
(-0.312675 -0.493954 -0.103968)
(-0.293759 -0.629009 -0.0578878)
(-0.29186 -0.763918 -0.0276164)
(-0.293421 -0.915092 -0.00120357)
(-0.317903 -1.10529 0.017541)
(-0.369638 -1.37372 0.0350739)
(-0.456075 -1.7563 0.0424215)
(-0.568514 -2.26936 0.0395665)
(-0.674773 -2.85228 0.0261671)
(-0.731663 -3.35874 0.00965405)
(-0.669292 -3.51188 -0.00142767)
(-0.476447 -3.00167 -0.000861162)
(-0.148769 -1.63926 0.00617228)
(0.0544629 -0.258548 0.0118429)
(-0.00354668 0.421215 0.100358)
(-0.0982736 1.00702 0.162101)
(-0.269613 1.3315 0.153565)
(-0.42403 1.48529 0.110203)
(-0.543161 1.5167 0.0633377)
(-0.61236 1.41049 0.0429956)
(-0.608859 1.22596 0.0257012)
(-0.593787 0.978581 0.0187436)
(-0.36882 0.706716 -0.0123039)
(-0.509644 0.874769 -0.416852)
(-1.02003 1.27863 -0.950125)
(-0.720528 1.72136 -0.87434)
(-1.25459 1.82605 -0.402167)
(-1.14649 1.61177 0.573738)
(-0.787369 0.625721 0.696878)
(-0.949609 0.0918648 0.474877)
(-0.860409 0.698527 0.979199)
(-1.00092 0.562148 0.329825)
(-1.27538 -0.053787 -0.368958)
(-1.06868 -0.180564 -0.286422)
(-0.840425 -0.0481584 -0.205907)
(-0.652679 0.154315 -0.52066)
(-0.420019 0.0408789 -0.445262)
(-0.363539 -0.0869502 -0.289136)
(-0.323209 -0.216135 -0.238467)
(-0.292225 -0.358873 -0.153341)
(-0.270052 -0.492498 -0.105462)
(-0.244817 -0.621583 -0.0544782)
(-0.237809 -0.746057 -0.0223251)
(-0.233364 -0.877891 0.0047311)
(-0.248173 -1.03794 0.0250874)
(-0.284334 -1.26589 0.0438669)
(-0.355167 -1.60921 0.0531074)
(-0.459649 -2.1132 0.0499066)
(-0.576333 -2.73735 0.0352495)
(-0.657178 -3.35389 0.0140955)
(-0.631328 -3.67436 0.000621294)
(-0.46831 -3.33345 -0.0012189)
(-0.166611 -1.99767 0.00650534)
(0.0605838 -0.306293 0.0137546)
(0.0037025 0.446885 0.0952277)
(-0.0645835 1.08353 0.155164)
(-0.226387 1.44232 0.156563)
(-0.373061 1.58688 0.121574)
(-0.488343 1.5987 0.0789917)
(-0.561131 1.45784 0.0746969)
(-0.573525 1.25707 0.0569265)
(-0.603343 0.952444 0.0974371)
(-0.426637 0.745819 -0.0173113)
(-1.00562 1.0038 -0.588788)
(-1.02028 1.53619 -1.45078)
(-0.435588 1.73911 -1.46804)
(-0.599757 2.20974 0.667635)
(-1.12363 2.91126 2.66885)
(-2.01279 1.1817 1.48146)
(-1.25105 0.0174115 1.53716)
(-0.670334 0.620027 2.14029)
(-0.713369 0.510398 0.425154)
(-1.09653 -0.209598 -0.460774)
(-0.852859 -0.284056 -0.37872)
(-0.77326 -0.127312 -0.140463)
(-0.64242 0.0164231 -0.419267)
(-0.340014 -0.0195829 -0.400372)
(-0.296987 -0.0985764 -0.266472)
(-0.279564 -0.212622 -0.221966)
(-0.250331 -0.347768 -0.145327)
(-0.220348 -0.474168 -0.1021)
(-0.189985 -0.600116 -0.051649)
(-0.176698 -0.721337 -0.0176983)
(-0.166697 -0.848436 0.0121267)
(-0.175305 -0.991105 0.0341993)
(-0.202788 -1.18931 0.0540323)
(-0.264649 -1.48637 0.0631888)
(-0.360342 -1.95721 0.0602872)
(-0.474365 -2.59892 0.0435088)
(-0.5704 -3.31868 0.0184714)
(-0.581391 -3.8092 0.000970513)
(-0.450087 -3.65468 -0.00214759)
(-0.170736 -2.38478 0.00515352)
(0.0660069 -0.425016 0.0148821)
(-0.0100837 0.465209 0.0922494)
(-0.0573765 1.16885 0.153634)
(-0.190531 1.56572 0.15863)
(-0.329536 1.70986 0.133912)
(-0.442262 1.70772 0.0918633)
(-0.515007 1.54879 0.105844)
(-0.549963 1.3485 0.073162)
(-0.626061 1.04573 0.181469)
(-0.598387 0.915597 -0.0649213)
(-1.33179 1.19118 -0.752377)
(-0.674899 1.49036 -1.95898)
(0.297953 0.835763 -1.86607)
(0.519279 1.93903 0.798981)
(-0.878585 2.73272 1.10418)
(-1.26562 0.122287 -1.45382)
(0.320374 -0.610801 0.267699)
(0.204161 0.653332 1.82351)
(-0.216043 0.604521 0.076848)
(-0.703693 -0.36277 -0.963549)
(-0.305281 -0.539641 -0.72234)
(-0.373372 -0.19283 -0.129104)
(-0.452998 -0.0104454 -0.318742)
(-0.213502 -0.0367569 -0.330875)
(-0.216805 -0.0885606 -0.216648)
(-0.22334 -0.1874 -0.178428)
(-0.199464 -0.309249 -0.110746)
(-0.168116 -0.411891 -0.0721288)
(-0.142525 -0.517245 -0.0295624)
(-0.135392 -0.619922 -0.00273194)
(-0.127688 -0.733923 0.0221906)
(-0.131644 -0.856988 0.0432185)
(-0.142575 -1.02467 0.0634459)
(-0.180115 -1.29079 0.0771938)
(-0.251951 -1.74662 0.0731444)
(-0.36809 -2.40354 0.054599)
(-0.485854 -3.19605 0.0238599)
(-0.537578 -3.85341 0.0022249)
(-0.457807 -3.90226 -0.00307607)
(-0.208595 -2.72029 0.00468667)
(0.0478051 -0.475282 0.0160181)
(0.00455811 0.588928 0.0817231)
(-0.026126 1.36351 0.146595)
(-0.135257 1.76723 0.148325)
(-0.257122 1.94825 0.141373)
(-0.380361 1.94563 0.10042)
(-0.425984 1.79252 0.129433)
(-0.469105 1.61139 0.0682136)
(-0.604456 1.35261 0.237621)
(-0.781767 1.25826 -0.11901)
(-1.46722 1.33075 -0.907708)
(-0.351201 0.68901 -1.90952)
(0.981701 -0.354726 -1.5438)
(1.46026 1.93228 0.585376)
(0.135089 1.87357 -1.86759)
(-0.74223 -1.43782 -5.99414)
(0.315265 -0.0668092 -3.25296)
(0.107568 2.25898 -0.104114)
(0.0459563 1.41503 -0.39737)
(-0.125055 -0.0174928 -1.09885)
(0.21157 -0.575765 -1.049)
(0.128064 -0.0293125 -0.180295)
(-0.231756 0.144026 -0.169825)
(-0.102382 0.0448333 -0.236683)
(-0.107662 -0.0328458 -0.153996)
(-0.15013 -0.140055 -0.126066)
(-0.119326 -0.268832 -0.0837749)
(-0.075087 -0.35896 -0.0490579)
(-0.054032 -0.445116 -0.0140504)
(-0.0571982 -0.527669 0.00880812)
(-0.0613591 -0.621466 0.033832)
(-0.0738132 -0.715045 0.0525306)
(-0.103651 -0.842691 0.0700316)
(-0.171139 -1.04677 0.0787315)
(-0.243813 -1.41995 0.0787595)
(-0.297665 -2.0431 0.0614984)
(-0.375198 -2.946 0.0278846)
(-0.452954 -3.77469 0.00167999)
(-0.421662 -4.08192 -0.00574314)
(-0.203991 -3.09854 0.00126327)
(0.0618484 -0.686041 0.0126806)
(-0.0142533 0.796637 0.0730034)
(-0.0239003 1.6408 0.135781)
(-0.0926111 2.07078 0.139269)
(-0.183679 2.25554 0.141823)
(-0.304739 2.25819 0.103061)
(-0.329033 2.11364 0.138067)
(-0.393611 1.92879 0.0630554)
(-0.57228 1.69102 0.256539)
(-0.903304 1.58466 -0.166367)
(-1.44436 1.1224 -0.87311)
(0.336163 -0.376769 -1.33669)
(1.29485 -0.937882 -0.638832)
(1.78644 2.32563 1.91404)
(1.63308 1.32749 -1.73535)
(-0.111335 -3.32431 -5.74146)
(0.313574 -0.803444 -3.18625)
(0.42266 2.87623 -1.70621)
(0.626338 2.4048 -1.07854)
(0.921221 0.719391 -0.792636)
(1.30663 -0.146397 -1.26977)
(0.817147 0.129694 -0.336757)
(-0.0924698 0.243814 0.0022068)
(-0.0753509 -0.00892174 -0.015089)
(-0.0701918 -0.0437521 0.00231824)
(-0.111881 -0.16146 -0.0152808)
(-0.0657763 -0.308602 -0.036762)
(0.00398655 -0.375108 -0.0295968)
(0.0259346 -0.433383 -0.00506177)
(0.0143613 -0.492825 0.0156348)
(0.00675201 -0.571367 0.0434424)
(-0.00279284 -0.644467 0.0625911)
(-0.0220901 -0.747997 0.0800898)
(-0.0618217 -0.877232 0.0884033)
(-0.153937 -1.15072 0.0822681)
(-0.343229 -1.65486 0.0711854)
(-0.438644 -2.50467 0.0323943)
(-0.453219 -3.46313 0.00342044)
(-0.446237 -4.03811 -0.00596234)
(-0.273387 -3.34891 0.00233365)
(0.0101931 -1.00037 0.0160455)
(-0.0354422 0.810794 0.0653952)
(-0.0344321 1.72871 0.12559)
(-0.061359 2.20858 0.135959)
(-0.115381 2.39403 0.134499)
(-0.212722 2.42051 0.0994264)
(-0.233669 2.30762 0.139142)
(-0.294554 2.10354 0.0533701)
(-0.437222 1.94457 0.245711)
(-0.711147 1.72558 -0.205781)
(-1.00384 0.572885 -0.735512)
(0.620765 -1.51954 -1.20792)
(1.13428 -1.26041 0.305441)
(2.36242 2.88461 2.94692)
(3.02602 1.29165 -1.08523)
(0.229948 -3.28195 -3.24166)
(1.1775 -1.84791 0.431664)
(1.90923 1.94504 -0.54143)
(2.16307 2.82729 -1.08763)
(2.56381 1.33834 -0.415697)
(2.59468 0.223221 -0.6608)
(1.91538 0.521276 -0.607862)
(0.911751 0.455834 -0.530338)
(0.526502 -0.289919 -0.26536)
(0.129699 -0.205915 -0.0388226)
(-0.0188503 -0.226276 0.0597979)
(0.0592679 -0.450985 -0.00809187)
(0.142075 -0.449973 -0.025641)
(0.155068 -0.446234 -0.0059667)
(0.117382 -0.481426 0.0165412)
(0.0893839 -0.55488 0.0481903)
(0.0635691 -0.620259 0.0737975)
(0.042214 -0.708168 0.0945374)
(0.0094268 -0.803956 0.0970939)
(-0.0359157 -1.04209 0.0942917)
(-0.178018 -1.43271 0.0723921)
(-0.39819 -2.122 0.0428929)
(-0.512074 -3.03189 0.00379814)
(-0.506075 -3.74644 -0.00927582)
(-0.381911 -3.32301 -0.00270508)
(-0.0784543 -1.05268 0.0113832)
(-0.0234329 0.784301 0.0555919)
(-0.00520988 1.72287 0.114147)
(-0.0117352 2.22424 0.12514)
(-0.0271357 2.43107 0.131811)
(-0.0827562 2.4591 0.0789996)
(-0.11255 2.39876 0.129866)
(-0.142747 2.22361 0.0367922)
(-0.192777 2.1659 0.187214)
(-0.169379 1.7858 -0.237841)
(-0.516151 0.484913 -0.635736)
(0.735539 -1.80083 -1.60808)
(1.43779 -1.9844 0.81121)
(2.97514 3.12854 4.05509)
(2.74771 2.17748 -0.81124)
(-0.949754 -2.55714 -3.60348)
(1.24442 -2.01772 1.13444)
(3.53698 2.41055 2.2261)
(4.29191 3.83138 1.59052)
(4.06177 1.73727 1.12678)
(2.95488 -0.848684 0.995592)
(2.61968 -0.270847 1.5692)
(2.19753 0.0848524 0.892327)
(1.5989 -0.464429 -0.360976)
(0.556854 -0.0766709 -0.594466)
(0.228486 -0.144764 -0.176965)
(0.367307 -0.426681 -0.0639953)
(0.443897 -0.501775 -0.0627972)
(0.318759 -0.447577 -0.0255417)
(0.207122 -0.474485 0.00970113)
(0.15726 -0.562415 0.0530389)
(0.133158 -0.625948 0.0861886)
(0.123429 -0.691096 0.108758)
(0.0789282 -0.757575 0.115046)
(0.0332525 -0.934458 0.104074)
(-0.0917371 -1.30475 0.0837361)
(-0.278924 -1.93201 0.0496856)
(-0.433812 -2.71533 0.00935092)
(-0.489615 -3.46119 -0.0106519)
(-0.386068 -3.23479 -0.00511918)
(-0.121733 -1.11449 0.00972501)
(-0.0112624 0.765398 0.0469951)
(0.0207067 1.68545 0.102745)
(0.0336304 2.19959 0.116037)
(0.0389093 2.43767 0.124808)
(0.0290343 2.45111 0.0772397)
(0.0284726 2.41022 0.099631)
(0.0862004 2.2424 0.013035)
(0.086286 2.21166 0.118501)
(0.524821 1.78963 -0.220917)
(0.0872317 0.885016 -0.726645)
(1.92621 -0.999238 -1.73453)
(3.96379 -2.74397 1.01703)
(4.37321 0.244127 6.06809)
(2.45662 3.04231 0.874632)
(-2.17468 -1.32485 -4.61888)
(-1.19316 -2.54663 -2.54999)
(3.49587 1.80929 1.44683)
(5.68018 4.29241 3.97486)
(5.28919 2.82545 3.05251)
(3.14933 -1.82671 1.58797)
(3.18531 -2.98852 3.52872)
(3.73272 -1.60713 5.31627)
(2.24435 -0.987921 3.52187)
(0.87182 0.102969 1.2593)
(1.06491 -0.22531 0.404914)
(1.25456 -0.51303 0.00480706)
(1.09887 -0.523537 -0.140267)
(0.591097 -0.399843 -0.0623014)
(0.329098 -0.468422 0.0127442)
(0.236411 -0.593747 0.0678127)
(0.208529 -0.669826 0.103235)
(0.209316 -0.723341 0.13296)
(0.178661 -0.767018 0.133732)
(0.110964 -0.898388 0.121386)
(-0.0137287 -1.22182 0.0973124)
(-0.171115 -1.80723 0.0525735)
(-0.339548 -2.56507 0.00719452)
(-0.430547 -3.33738 -0.0113478)
(-0.382 -3.28187 -0.00680252)
(-0.142117 -1.34076 0.0103393)
(-0.00370466 0.709611 0.0362473)
(0.0462747 1.60005 0.0868625)
(0.0865577 2.13499 0.103445)
(0.10511 2.39982 0.108395)
(0.126848 2.43164 0.0689872)
(0.122777 2.37889 0.0648065)
(0.248035 2.19307 0.000234606)
(0.225676 2.08368 -0.00577705)
(0.826655 1.76583 -0.107785)
(0.285751 0.935208 -0.929202)
(2.09868 -0.769616 -1.67267)
(4.67189 -2.99434 -0.313653)
(4.16718 -2.28726 5.37306)
(3.28678 2.68426 4.4652)
(-1.14571 0.772834 -3.33953)
(-3.55066 -2.42249 -5.59545)
(1.0519 -1.38682 -1.05361)
(4.7695 2.27405 3.72985)
(5.51884 3.97115 4.06931)
(4.25451 -0.830515 0.0722698)
(3.66267 -4.94624 -1.07563)
(5.10319 -3.49125 3.91963)
(3.78839 -1.70322 6.13031)
(2.04304 -0.90305 3.85695)
(2.64071 -1.08612 1.35399)
(2.24728 -0.616728 0.0099341)
(1.62543 -0.0319803 -0.173676)
(0.977547 -0.0451353 -0.0494508)
(0.61221 -0.347459 0.0827131)
(0.408152 -0.565669 0.130627)
(0.319328 -0.696958 0.151858)
(0.30147 -0.755493 0.180691)
(0.265308 -0.757882 0.167827)
(0.174398 -0.859751 0.142077)
(0.0351576 -1.12579 0.113443)
(-0.085179 -1.71089 0.0522364)
(-0.246291 -2.48875 0.0106773)
(-0.362046 -3.34931 -0.0120179)
(-0.358426 -3.4213 -0.00747235)
(-0.142354 -1.5679 0.011778)
(0.00362159 0.648657 0.0271277)
(0.0669414 1.50304 0.0719548)
(0.127283 2.05486 0.0897887)
(0.158967 2.34015 0.0905791)
(0.199525 2.39274 0.0586119)
(0.2 2.32691 0.0266694)
(0.326045 2.16221 -0.0128893)
(0.290251 1.94702 -0.107753)
(0.786544 1.81178 -0.048043)
(0.404601 0.85026 -0.863379)
(1.1474 -0.554339 -1.24137)
(3.09715 -2.29689 -2.16644)
(2.47233 -2.7958 1.29872)
(3.65099 -0.423983 7.36441)
(1.21435 1.30283 1.17875)
(-3.59796 -1.361 -5.65873)
(-2.79476 -2.50887 -3.59335)
(1.30772 -0.319139 0.945161)
(3.19143 2.62965 3.02208)
(4.04594 0.913915 -0.14878)
(2.93283 -2.8594 -4.88441)
(2.32592 -2.66003 -2.28165)
(2.32761 -1.66841 3.05786)
(1.98685 -1.91118 3.54441)
(2.64839 -1.47338 1.23626)
(2.08496 -0.0484932 -0.0652109)
(1.59017 0.623221 -0.5268)
(0.974546 0.163517 -0.568539)
(0.647998 -0.302661 -0.0833951)
(0.564302 -0.495455 0.162067)
(0.524099 -0.693016 0.226835)
(0.480259 -0.853314 0.24555)
(0.416065 -0.858226 0.212279)
(0.290076 -0.92386 0.162526)
(0.100405 -1.13944 0.120845)
(-0.0231407 -1.68794 0.0656815)
(-0.179597 -2.5308 0.00950398)
(-0.308317 -3.49804 -0.012361)
(-0.340326 -3.72449 -0.0118223)
(-0.141139 -1.905 0.0103199)
(0.00827581 0.573177 0.0190433)
(0.0819762 1.38027 0.0580555)
(0.15999 1.94596 0.0756537)
(0.202208 2.25304 0.0736145)
(0.253056 2.3304 0.0474139)
(0.262587 2.26026 -0.000103806)
(0.366964 2.11238 -0.0368565)
(0.373001 1.84607 -0.173771)
(0.648334 1.77591 -0.125192)
(0.756209 0.981495 -0.662012)
(0.442161 0.0116788 -0.949199)
(2.15162 -1.069 -1.53359)
(2.46875 -3.17139 -1.50034)
(2.87285 -3.61538 4.98814)
(3.47518 -0.272266 7.55004)
(-0.61961 -0.237075 -0.9383)
(-4.3627 -1.97449 -5.48983)
(-3.35733 -1.35562 -3.1631)
(-0.433359 0.635749 0.0703219)
(1.92074 1.58607 0.00875245)
(2.37238 0.0421949 -2.82304)
(0.618694 -1.13763 -3.81627)
(0.693739 -1.58895 -1.13117)
(1.11532 -1.54168 0.813445)
(0.516726 -0.00241896 0.348792)
(-0.0935014 2.34707 -0.597099)
(0.193618 2.5646 -1.26306)
(0.199826 0.839634 -0.673367)
(0.328352 -0.56229 0.058024)
(0.539022 -0.793495 0.108141)
(0.576287 -0.80953 0.161663)
(0.556249 -1.02045 0.262387)
(0.525389 -1.02167 0.263061)
(0.392331 -1.0835 0.196853)
(0.18319 -1.27658 0.130109)
(0.036199 -1.80817 0.0829252)
(-0.131842 -2.67988 0.0113691)
(-0.246395 -3.78241 -0.00848611)
(-0.288153 -4.21089 -0.0131471)
(-0.116666 -2.51982 0.0090817)
(0.0160418 0.49956 0.0118646)
(0.0983589 1.25502 0.0469988)
(0.184611 1.83258 0.0632388)
(0.236591 2.16428 0.0601771)
(0.290963 2.26936 0.0370327)
(0.311689 2.20672 -0.0135027)
(0.379916 2.06305 -0.0630065)
(0.427578 1.7969 -0.188059)
(0.51889 1.65378 -0.237141)
(0.796569 1.18094 -0.534754)
(0.259983 0.35135 -0.966809)
(0.958174 -0.318038 -0.493395)
(2.59976 -3.16754 -1.02629)
(2.18375 -4.62673 0.556445)
(3.78402 -1.52161 6.62998)
(3.22783 1.29925 6.45821)
(-0.668398 -0.645009 -0.438501)
(-4.28032 -1.73151 -4.01935)
(-4.06123 -0.40351 -3.23821)
(-1.29506 0.668357 -2.02058)
(0.365033 0.577123 -1.49785)
(0.449197 0.389087 -2.29291)
(-0.0995441 0.781626 -3.78033)
(-0.58626 1.36737 -3.11775)
(-1.99753 2.08214 -1.19102)
(-2.35698 2.33875 -0.233203)
(-0.648551 1.39499 0.311717)
(0.511549 -0.114515 0.735414)
(0.561024 -0.684951 0.26606)
(0.494933 -0.545796 -0.272299)
(0.570756 -0.709096 -0.0325217)
(0.631947 -1.02496 0.257484)
(0.576753 -0.968449 0.285908)
(0.434501 -1.03263 0.207481)
(0.213813 -1.22872 0.135416)
(0.0554052 -1.78543 0.0827946)
(-0.124333 -2.68267 0.00844435)
(-0.242756 -3.94855 -0.0125218)
(-0.309958 -4.61895 -0.017087)
(-0.140854 -3.13769 0.00640717)
(0.0213085 0.42997 0.00948988)
(0.114338 1.11205 0.0422141)
(0.205665 1.68993 0.0544414)
(0.260022 2.04429 0.0519532)
(0.315643 2.17657 0.0322747)
(0.341962 2.13371 -0.013707)
(0.391732 1.99615 -0.0682014)
(0.436306 1.76262 -0.172281)
(0.489019 1.55824 -0.263383)
(0.636123 1.29756 -0.437729)
(0.468774 0.745966 -0.794373)
(0.218728 0.402075 -0.796175)
(1.92472 -2.27294 0.154011)
(2.90314 -5.6947 -0.0961186)
(1.59336 -3.35908 0.583351)
(3.04018 0.435943 4.61777)
(3.17204 0.917894 5.88688)
(0.46896 -0.630323 2.37544)
(-2.22643 -1.14735 -1.25952)
(-3.62125 -0.677142 -3.63842)
(-3.39732 -0.332189 -3.14946)
(-2.81198 -0.304158 -1.29335)
(-2.18894 -0.00207052 -0.971652)
(-1.87552 0.0469811 -0.737009)
(-2.08902 -0.373172 0.426619)
(-1.36229 -1.64116 1.27027)
(0.684388 -1.78046 0.766094)
(1.61572 0.0411785 -0.444704)
(0.881553 1.06833 -1.43497)
(0.384589 0.0253638 -1.05916)
(0.490799 -0.985169 -0.0392359)
(0.617977 -1.01508 0.309218)
(0.518459 -0.767753 0.258165)
(0.419838 -0.855034 0.190582)
(0.213239 -1.09511 0.12555)
(0.0612277 -1.61382 0.0779075)
(-0.113739 -2.51828 1.66458e-05)
(-0.241408 -3.89803 -0.0188727)
(-0.333253 -4.80292 -0.0231591)
(-0.169793 -3.58508 0.00247418)
(0.0166699 0.377472 0.00779402)
(0.114577 0.989276 0.0384301)
(0.220522 1.55086 0.0521244)
(0.275706 1.93436 0.0486135)
(0.331161 2.09806 0.0334379)
(0.364846 2.08149 -0.00626922)
(0.408116 1.96231 -0.0548367)
(0.451399 1.75007 -0.141383)
(0.501921 1.54309 -0.2264)
(0.591928 1.31796 -0.363332)
(0.675707 1.04336 -0.555285)
(0.451515 0.758918 -0.890337)
(1.30907 -1.13631 -0.239034)
(3.22191 -4.86589 0.50473)
(2.22915 -6.05769 -0.0669368)
(1.09828 -3.28576 0.549902)
(2.24943 -0.531131 2.84334)
(3.29267 0.452418 4.6043)
(2.47299 -0.0641767 3.68713)
(0.0611974 0.193816 0.46345)
(-1.27035 -0.111512 -0.460542)
(-2.21297 -1.93581 0.0228451)
(-1.77264 -4.26725 0.788652)
(-0.420128 -4.31241 2.48619)
(-0.17362 -2.70979 3.72941)
(-1.05756 -2.3729 3.95181)
(-1.39126 -1.56773 3.65903)
(-0.621176 1.72959 2.68225)
(0.172352 2.1876 0.361818)
(0.529732 -0.669574 -0.701445)
(0.53834 -1.44033 0.0506283)
(0.538086 -0.809096 0.261122)
(0.40376 -0.526805 0.187108)
(0.338455 -0.700822 0.140654)
(0.19849 -0.952701 0.0837887)
(0.0770906 -1.44779 0.0660787)
(-0.12132 -2.30331 -0.0182197)
(-0.233727 -3.75706 -0.0308702)
(-0.360569 -4.86655 -0.0312717)
(-0.19459 -3.96361 -0.00465926)
(0.0154182 0.314331 0.0083812)
(0.106423 0.85781 0.0364682)
(0.226214 1.38214 0.0525763)
(0.290563 1.78288 0.0496757)
(0.337554 1.97676 0.0384669)
(0.378796 1.99159 0.00765203)
(0.419422 1.89419 -0.0327209)
(0.460536 1.70453 -0.0981679)
(0.507652 1.49689 -0.170939)
(0.593426 1.27314 -0.258158)
(0.702751 1.04761 -0.37532)
(0.877059 0.754728 -0.512029)
(1.12396 -0.132674 -0.669458)
(2.22832 -2.24478 -0.296752)
(1.99203 -4.32035 0.190352)
(0.283641 -5.06982 -0.291798)
(0.115363 -3.31139 -0.783214)
(1.55964 -1.20031 0.774938)
(3.30737 0.514107 2.48091)
(3.42445 2.41619 2.40282)
(2.42807 2.74255 2.12289)
(1.3706 -0.271566 1.36161)
(0.756547 -4.93292 0.507226)
(0.188682 -5.2397 1.16409)
(0.0673139 -2.31506 2.75556)
(-1.00422 -2.04118 3.7777)
(-3.02243 -2.55176 5.68001)
(-2.46024 -0.598942 6.29766)
(0.0614756 -0.0056362 2.78832)
(0.907574 -1.10397 0.00929468)
(0.584037 -0.878936 -0.119084)
(0.395217 -0.421534 0.0380323)
(0.284802 -0.381644 0.0749977)
(0.265812 -0.610222 0.0776368)
(0.159033 -0.815315 0.0567769)
(0.0885172 -1.31335 0.0291479)
(-0.103977 -2.08553 -0.0319383)
(-0.216581 -3.58406 -0.046472)
(-0.376183 -4.86078 -0.0387856)
(-0.220535 -4.30384 -0.0126917)
(0.010088 0.270469 0.00958091)
(0.0856747 0.760877 0.036949)
(0.210793 1.25126 0.0531464)
(0.29447 1.65581 0.0554584)
(0.342114 1.88504 0.047249)
(0.386883 1.93221 0.0243556)
(0.431226 1.85529 -0.008108)
(0.471444 1.68565 -0.0572383)
(0.513944 1.48157 -0.112234)
(0.580043 1.25502 -0.174758)
(0.664168 1.01223 -0.238462)
(0.83906 0.743847 -0.284217)
(1.00289 0.248301 -0.304819)
(1.3339 -0.408931 -0.228832)
(1.28265 -1.42295 -0.478042)
(0.909651 -2.54126 -0.616871)
(1.37796 -4.04124 -0.805624)
(2.14509 -4.17527 -0.802839)
(2.66811 -1.4143 0.286279)
(3.18986 2.0404 0.282641)
(2.87041 2.95189 -0.891909)
(3.15648 0.786424 -0.352272)
(2.98409 -2.05528 0.848475)
(0.984227 -2.97467 0.36009)
(0.038761 -1.11621 -0.393084)
(0.598226 -0.603981 -1.3035)
(0.227006 -1.34824 -0.183371)
(0.0371555 -0.943414 1.33169)
(0.678479 -0.578883 0.47032)
(0.677619 -0.40022 -0.267802)
(0.385504 -0.259063 -0.242736)
(0.307754 -0.278494 -0.075305)
(0.239376 -0.341871 -0.00386551)
(0.237573 -0.537537 0.0286614)
(0.127056 -0.694442 0.0230739)
(0.0993374 -1.15747 0.000179072)
(-0.0899968 -1.8803 -0.0456694)
(-0.193326 -3.38673 -0.0582041)
(-0.397683 -4.82539 -0.0465615)
(-0.24805 -4.6466 -0.0206155)
(0.0143729 0.215936 0.0116673)
(0.0721665 0.645358 0.0385884)
(0.181248 1.09701 0.0555957)
(0.287282 1.47462 0.0605816)
(0.343023 1.72681 0.0570076)
(0.382005 1.8059 0.0395277)
(0.42683 1.75778 0.0142212)
(0.470207 1.61221 -0.0230559)
(0.509144 1.42839 -0.0648406)
(0.558281 1.21385 -0.109988)
(0.614053 0.987025 -0.153775)
(0.702368 0.736057 -0.17886)
(0.836493 0.388697 -0.180288)
(0.968158 0.0562653 -0.105873)
(1.10028 -0.235941 -0.095972)
(1.25782 -0.439212 -0.430123)
(1.42925 -1.02604 -1.01729)
(1.38407 -1.91832 -1.0442)
(0.629116 -1.23768 -0.371641)
(0.364556 0.180579 -0.234167)
(1.08109 0.359493 -1.0432)
(2.23159 0.105879 -0.604967)
(2.17937 0.0941351 0.62621)
(1.12605 -0.33619 0.881267)
(0.522946 0.0772405 0.0900786)
(0.824305 0.963675 -1.51682)
(1.29182 0.700743 -2.15094)
(1.07183 0.35828 -1.28857)
(0.681199 0.176381 -0.681684)
(0.48532 -0.0654499 -0.343169)
(0.35801 -0.168079 -0.172193)
(0.36437 -0.257082 -0.0661432)
(0.26662 -0.299649 -0.0164891)
(0.257352 -0.471245 0.00948087)
(0.125885 -0.592465 0.00451125)
(0.117053 -1.02922 -0.0148777)
(-0.0728735 -1.68946 -0.0652022)
(-0.163663 -3.21083 -0.0679268)
(-0.42982 -4.79458 -0.0533791)
(-0.28166 -5.05613 -0.0279477)
(0.00632844 0.189289 0.0128913)
(0.0378365 0.589059 0.0434188)
(0.119536 1.00775 0.0574158)
(0.241831 1.37911 0.0659361)
(0.335328 1.61465 0.0654839)
(0.385278 1.72498 0.0536778)
(0.427796 1.69875 0.0345761)
(0.478454 1.57096 0.00555393)
(0.522977 1.40691 -0.0251642)
(0.563381 1.20933 -0.0595408)
(0.603362 1.00569 -0.0907177)
(0.645488 0.793459 -0.113599)
(0.683837 0.547797 -0.12444)
(0.728413 0.251702 -0.108193)
(0.723747 0.0427314 -0.0499735)
(0.694197 0.0377705 -0.0202945)
(0.654775 0.14398 -0.25802)
(0.281763 0.542811 -0.743923)
(-0.457078 0.965213 -0.696033)
(-0.608322 0.989902 -0.00596442)
(-0.007503 0.588456 0.331064)
(0.45935 0.468373 0.244037)
(0.465867 0.368184 0.415681)
(0.36272 0.0651126 0.700296)
(0.342552 0.0750204 0.798303)
(0.641815 0.399087 0.397951)
(0.92723 0.152601 -0.124658)
(0.847884 -0.0560203 -0.26896)
(0.648741 -0.0412861 -0.237078)
(0.587387 -0.0549755 -0.167564)
(0.447376 -0.061388 -0.101171)
(0.439336 -0.159722 -0.0459382)
(0.306899 -0.180377 -0.0156813)
(0.30134 -0.349201 0.00152621)
(0.133852 -0.442977 -0.00533856)
(0.151944 -0.857166 -0.0248205)
(-0.0639337 -1.49235 -0.0760541)
(-0.136077 -2.9821 -0.0727575)
(-0.478946 -4.75734 -0.0557917)
(-0.320952 -5.55825 -0.0327688)
(0.0194392 0.160532 0.0164039)
(0.0322279 0.494796 0.0454454)
(0.0648654 0.899588 0.0641506)
(0.166988 1.21604 0.0679592)
(0.281633 1.42915 0.0723621)
(0.3688 1.53778 0.0641395)
(0.403658 1.54856 0.0507648)
(0.462778 1.4402 0.028517)
(0.522703 1.31022 0.00517107)
(0.56908 1.14287 -0.0201262)
(0.613464 0.975771 -0.0444473)
(0.648127 0.805273 -0.0639505)
(0.674079 0.637913 -0.0794345)
(0.677366 0.473909 -0.0855455)
(0.660882 0.297958 -0.0834328)
(0.611822 0.200803 -0.0723808)
(0.549293 0.209876 -0.0604055)
(0.549665 0.271964 -0.0672095)
(0.607689 0.492367 -0.10128)
(0.756837 0.825617 -0.040851)
(1.06902 0.819769 0.0176178)
(1.29121 0.700262 0.00147089)
(1.30223 0.388344 0.0384831)
(1.24207 -0.0388978 0.124175)
(1.11118 -0.0607471 0.0938587)
(1.18368 0.101358 0.0566363)
(1.21596 0.0811044 -0.00799465)
(1.02368 0.0584964 -0.0850976)
(0.716817 0.0642268 -0.118068)
(0.667916 0.0147376 -0.100411)
(0.513554 0.00869701 -0.0659247)
(0.527898 -0.0627738 -0.0329953)
(0.385308 -0.0792489 -0.01659)
(0.383582 -0.238902 -0.00369775)
(0.197793 -0.317397 -0.0166789)
(0.197941 -0.704407 -0.033648)
(-0.00715464 -1.29132 -0.0787117)
(-0.0663319 -2.76387 -0.0784616)
(-0.544884 -4.71626 -0.0601387)
(-0.323587 -6.17829 -0.0396588)
(-0.0197322 0.133708 0.0190281)
(-0.0298743 0.519069 0.0516526)
(-0.025454 0.85995 0.0671615)
(0.0295753 1.207 0.0744772)
(0.179327 1.37289 0.0779697)
(0.336379 1.42487 0.0734985)
(0.399052 1.44729 0.0659765)
(0.458412 1.34157 0.0492081)
(0.545229 1.22949 0.0325625)
(0.606553 1.08696 0.0130717)
(0.665458 0.946616 -0.00468295)
(0.708712 0.805806 -0.0209647)
(0.745586 0.676557 -0.03423)
(0.768156 0.559507 -0.0441308)
(0.782579 0.464101 -0.0496146)
(0.779826 0.397222 -0.0498862)
(0.7817 0.377712 -0.0521365)
(0.732117 0.388008 -0.0738337)
(0.703129 0.393247 -0.0771375)
(0.825286 0.374073 -0.0472146)
(1.19431 0.291506 -0.0156597)
(1.53968 0.239449 -0.0202869)
(1.61192 0.157142 -0.0235928)
(1.59982 0.0429986 -0.0303579)
(1.46523 0.0356923 -0.0747727)
(1.44312 0.0565121 -0.090231)
(1.3642 0.076474 -0.0690033)
(1.17008 0.0454452 -0.0671866)
(0.864497 0.0894304 -0.0579878)
(0.821974 0.0592814 -0.0446786)
(0.672139 0.0839646 -0.0285807)
(0.69519 0.0211093 -0.0121982)
(0.506992 0.0176627 -0.00233354)
(0.531499 -0.105508 -0.000189244)
(0.312512 -0.167057 -0.00769168)
(0.339671 -0.504901 -0.0345372)
(0.0904822 -0.988159 -0.0607437)
(0.0955515 -2.45943 -0.0879045)
(-0.540088 -4.5805 -0.0543047)
(-0.252065 -6.7767 -0.0447369)
(0.0541768 0.266302 0.0233693)
(-0.000270577 0.454217 0.0550748)
(-0.0998451 0.740647 0.0702707)
(-0.0463586 0.959716 0.0762588)
(-0.00192606 1.18007 0.0812321)
(0.195965 1.17917 0.0781271)
(0.333962 1.20748 0.0760741)
(0.411555 1.12406 0.0655911)
(0.532852 1.03975 0.0548873)
(0.622105 0.930672 0.0418836)
(0.707685 0.823869 0.0295589)
(0.770286 0.717829 0.017996)
(0.822842 0.62392 0.00731489)
(0.857631 0.539836 -0.00298708)
(0.886485 0.468657 -0.00852651)
(0.903572 0.404504 -0.0108892)
(0.904052 0.35301 -0.0116994)
(0.907334 0.299421 -0.0118122)
(0.952723 0.305701 -0.0117358)
(1.07193 0.290996 -0.00116961)
(1.38197 0.272651 0.0170546)
(1.65599 0.220163 0.025493)
(1.67728 0.13387 0.0359834)
(1.7105 0.0324454 0.0418934)
(1.64541 0.0398194 0.0231657)
(1.67262 0.0360451 0.00993645)
(1.58963 0.106499 0.00343389)
(1.41371 0.0968667 -0.0070207)
(1.09065 0.160289 -0.0116234)
(1.06977 0.134067 -0.00473296)
(0.903196 0.183218 0.00192073)
(0.963878 0.0988155 0.00698355)
(0.78424 0.105265 0.00931199)
(0.865763 -0.0113482 0.00614353)
(0.605492 -0.0781565 -0.00102048)
(0.71728 -0.361961 -0.0184937)
(0.366141 -0.780253 -0.0498208)
(0.483533 -2.07165 -0.0604086)
(-0.2452 -4.38209 -0.0646939)
(0.0204025 -7.30361 -0.0493451)
(-0.22895 0.0654119 0.0323474)
(-0.31242 0.683879 0.0688748)
(-0.302545 0.857756 0.0786317)
(-0.267768 1.00614 0.081072)
(-0.125445 1.03541 0.0870531)
(0.055135 1.05507 0.0832157)
(0.235389 1.00033 0.0872192)
(0.355164 0.939163 0.0806383)
(0.509254 0.863171 0.0764233)
(0.627125 0.785329 0.068959)
(0.744886 0.706066 0.0623131)
(0.837337 0.627706 0.0547097)
(0.919124 0.557662 0.0480922)
(0.981082 0.495158 0.0417849)
(1.03044 0.442893 0.037088)
(1.06249 0.389079 0.0325191)
(1.08893 0.337379 0.0282559)
(1.12136 0.299314 0.0245472)
(1.17376 0.286946 0.0273696)
(1.31787 0.229834 0.0355785)
(1.67164 0.204223 0.0498096)
(2.00961 0.158357 0.0535034)
(2.05732 0.113976 0.0524672)
(2.15317 0.0637834 0.0464828)
(2.11239 0.0697583 0.0339126)
(2.16174 0.0452574 0.0277032)
(2.06108 0.123095 0.026723)
(1.92949 0.0920392 0.0223487)
(1.59119 0.172899 0.0224469)
(1.64135 0.157052 0.0255729)
(1.46931 0.224613 0.0310491)
(1.6028 0.158846 0.0320324)
(1.39045 0.166434 0.030797)
(1.55503 0.0421178 0.0265201)
(1.23351 -0.00603575 0.0199308)
(1.42161 -0.225354 0.00366501)
(0.971359 -0.486311 -0.0189175)
(1.16782 -1.46058 -0.0435783)
(0.34041 -3.8932 -0.0506881)
(0.487839 -7.20869 -0.0457626)
(-0.731378 0.798685 0.0560581)
(-0.608605 0.395279 0.0833647)
(-0.754866 0.573667 0.0798062)
(-0.463522 0.592966 0.0787704)
(-0.314034 0.611396 0.0825889)
(-0.000162078 0.654729 0.0828186)
(0.224474 0.629115 0.0874864)
(0.447785 0.602739 0.0862188)
(0.673531 0.561462 0.086062)
(0.878016 0.51939 0.0834422)
(1.07547 0.471976 0.0806002)
(1.25149 0.425268 0.0766826)
(1.40871 0.383485 0.0732078)
(1.5435 0.349578 0.0696526)
(1.65145 0.325347 0.0671865)
(1.7454 0.292312 0.0649207)
(1.83515 0.253262 0.0637881)
(1.97196 0.228313 0.0656818)
(2.13377 0.222287 0.0704435)
(2.41348 0.154366 0.0754886)
(2.82934 0.134261 0.0845448)
(3.26353 0.0872892 0.0884103)
(3.3533 0.0383844 0.0865786)
(3.50103 -0.0147404 0.0819537)
(3.43911 -0.00562662 0.0736579)
(3.55251 -0.0182849 0.0629164)
(3.40527 0.0606244 0.0583089)
(3.36031 0.0575746 0.0522229)
(2.9723 0.134468 0.0538924)
(3.13109 0.147861 0.051581)
(2.91422 0.204648 0.0510129)
(3.21803 0.151623 0.0492074)
(2.9285 0.124982 0.0444358)
(3.26137 0.0391679 0.0394261)
(2.79075 -0.0240719 0.030533)
(3.14109 -0.210623 0.0226229)
(2.4788 -0.492762 0.00863211)
(2.84532 -1.135 -0.00614248)
(1.86422 -3.16315 -0.025853)
(1.32229 -6.10487 -0.0304453)
(1.16378 1.48956 0.0238356)
(1.72985 0.738176 0.0347093)
(2.46859 0.581351 0.0355547)
(2.8805 0.358003 0.0328486)
(3.16029 0.281398 0.0333854)
(3.40256 0.228202 0.0309253)
(3.62197 0.208758 0.0332836)
(3.83437 0.18708 0.0328932)
(4.06063 0.17293 0.0339388)
(4.29245 0.158657 0.0336124)
(4.51296 0.144218 0.0339076)
(4.72533 0.129312 0.0333846)
(4.9051 0.115667 0.0334986)
(5.06697 0.104248 0.0333905)
(5.18221 0.0979964 0.0344472)
(5.29869 0.0916634 0.0351447)
(5.4156 0.073616 0.03736)
(5.61838 0.0567607 0.0412763)
(5.85592 0.0728438 0.0503569)
(6.30302 0.0569672 0.0596239)
(6.72629 0.0343535 0.0701024)
(7.21169 0.0135883 0.0758591)
(7.26871 -0.00175768 0.0743835)
(7.34958 -0.0428398 0.0645909)
(7.17239 -0.0330349 0.054328)
(7.1869 -0.049304 0.0436037)
(6.84131 -0.0312363 0.039057)
(6.82107 -0.0183061 0.032583)
(6.34151 0.01358 0.0310245)
(6.57362 0.0301584 0.0305938)
(6.32032 0.0651113 0.0316724)
(6.75074 0.0680807 0.0307447)
(6.4402 0.0483727 0.0279075)
(6.83465 0.0176993 0.0235521)
(6.29964 -0.0145611 0.0198524)
(6.52707 -0.10188 0.0141757)
(5.64776 -0.260763 0.00907174)
(5.68152 -0.584733 0.00301883)
(4.25693 -1.14586 -0.00615932)
(2.77662 -2.53506 -0.0146602)
(0.000367606 -0.000746836 0.0069256)
(0.0203207 -0.00376926 0.01227)
(0.0486708 -0.00402148 0.0158875)
(0.069108 -0.00239227 0.0183525)
(0.0810173 -0.0012046 0.021906)
(0.0718075 -0.00182484 0.022439)
(0.0548568 0.0043423 0.0212416)
(0.0374788 0.00231746 0.0222404)
(0.0188227 0.0177411 0.0222739)
(-0.0131829 0.0204274 0.0190004)
(-0.0625372 0.0178094 0.0245639)
(-0.119975 0.0103454 0.0253293)
(-0.18388 0.00389457 0.0274544)
(-0.261973 0.00304086 0.0319662)
(-0.336005 0.0109153 0.0357592)
(-0.427854 0.0192679 0.0448809)
(-0.505413 0.0117307 0.0510207)
(-0.628618 -0.00162651 0.068568)
(-0.704232 -0.0105068 0.0973611)
(-0.876484 -0.00938652 0.119769)
(-0.838858 0.0292943 0.135445)
(-0.653844 0.0294304 0.153328)
(-0.652353 0.0328601 0.1597)
(-0.643535 0.0252451 0.169686)
(-0.625756 0.0218475 0.178812)
(-0.572129 0.00435446 0.195341)
(-0.500001 -0.00744934 0.211896)
(-0.382422 -0.0249275 0.225385)
(-0.245263 -0.0367209 0.23398)
(-0.0935936 -0.0487118 0.239128)
(0.0555148 -0.0178986 0.221094)
(0.272093 0.00644595 0.203068)
(0.44363 -0.00458169 0.180296)
(0.484272 0.0302052 0.133025)
(0.448307 0.0467591 0.0932983)
(0.349391 0.0465152 0.0578139)
(0.230888 0.0313499 0.0372657)
(0.124311 0.0185261 0.023996)
(0.0422824 0.00288955 0.0147273)
(-0.00175729 -0.00853747 0.00438098)
(0.00641667 -0.0145563 0.012845)
(0.0420833 -0.0303653 0.0257823)
(0.0855343 -0.0310435 0.0344413)
(0.114654 -0.0219043 0.0408439)
(0.125201 -0.011855 0.0497894)
(0.109618 -0.00436806 0.0519105)
(0.0689198 0.0113577 0.0547952)
(0.0253134 0.0354306 0.0557099)
(-0.0392282 0.0585574 0.0548405)
(-0.160982 0.0654712 0.0475077)
(-0.314336 0.0860913 0.0648538)
(-0.486563 0.109267 0.0649015)
(-0.670197 0.136298 0.0711469)
(-0.870107 0.16491 0.0789711)
(-1.07284 0.189149 0.0889115)
(-1.30107 0.176924 0.108006)
(-1.49406 0.148425 0.126598)
(-1.68946 0.106208 0.151622)
(-1.81927 0.0812116 0.17842)
(-1.96809 0.0633174 0.199218)
(-1.83168 0.0897202 0.211624)
(-1.58098 0.0681465 0.218762)
(-1.47319 0.0424557 0.211056)
(-1.35895 -0.0012788 0.193219)
(-1.28258 -0.0636841 0.193974)
(-1.15498 -0.129172 0.203747)
(-1.02196 -0.177434 0.210261)
(-0.840401 -0.213077 0.212341)
(-0.642762 -0.236717 0.21848)
(-0.407304 -0.255073 0.213144)
(-0.190558 -0.219123 0.224441)
(0.0716168 -0.144098 0.175838)
(0.353146 -0.0769765 0.202027)
(0.546242 -0.0123836 0.173038)
(0.605851 0.0943265 0.139339)
(0.552469 0.141468 0.112748)
(0.429459 0.154103 0.0865816)
(0.270486 0.127432 0.0647284)
(0.113088 0.0852602 0.0416268)
(0.0150751 0.0292668 0.0134428)
(0.00967601 -0.036075 0.0193011)
(0.0491197 -0.0680954 0.0374994)
(0.0903741 -0.0659238 0.050797)
(0.109639 -0.0424531 0.0610528)
(0.102116 -0.0136703 0.0733411)
(0.0607211 0.0176394 0.0764504)
(-0.00304511 0.0692081 0.0845363)
(-0.110775 0.132248 0.0847154)
(-0.278351 0.193616 0.0822955)
(-0.477629 0.246134 0.0801865)
(-0.708919 0.309587 0.0780446)
(-0.971505 0.368495 0.0772978)
(-1.23745 0.415317 0.0798082)
(-1.50311 0.428634 0.0861846)
(-1.76283 0.394573 0.0965639)
(-1.99693 0.333189 0.108375)
(-2.16819 0.28511 0.114519)
(-2.33215 0.225016 0.121198)
(-2.43303 0.186203 0.124497)
(-2.51382 0.135796 0.120466)
(-2.29754 0.122273 0.108851)
(-2.01393 0.071832 0.0948577)
(-1.85765 -0.00225705 0.0676632)
(-1.73562 -0.10447 0.0583374)
(-1.64565 -0.228209 0.0685493)
(-1.50876 -0.344234 0.0618194)
(-1.36458 -0.440104 0.0590173)
(-1.19229 -0.507831 0.0598522)
(-1.02311 -0.53566 0.0622647)
(-0.808597 -0.525798 0.0648164)
(-0.589778 -0.492716 0.0722872)
(-0.32048 -0.398573 0.0800287)
(-0.0738507 -0.281034 0.100802)
(0.185097 -0.130309 0.103317)
(0.388325 0.0231922 0.13237)
(0.432139 0.168878 0.111865)
(0.386136 0.223614 0.100939)
(0.259111 0.229542 0.0811245)
(0.113633 0.17657 0.0544203)
(0.0131509 0.0828455 0.0176458)
(0.0105881 -0.0657132 0.03183)
(0.0452632 -0.106542 0.0566813)
(0.0702671 -0.0935963 0.0737742)
(0.062884 -0.048347 0.0832196)
(0.020536 0.0181453 0.104739)
(-0.0486873 0.106578 0.0990879)
(-0.166038 0.207211 0.103353)
(-0.345214 0.326173 0.0951242)
(-0.591837 0.448708 0.0819943)
(-0.885406 0.547435 0.0684183)
(-1.1797 0.61405 0.0615825)
(-1.46883 0.652668 0.0555692)
(-1.74624 0.63705 0.0520013)
(-2.01551 0.578528 0.0544889)
(-2.23518 0.50295 0.0534218)
(-2.403 0.430799 0.0458928)
(-2.52526 0.36682 0.0334216)
(-2.63951 0.293597 0.0256273)
(-2.69557 0.241551 0.00915164)
(-2.70547 0.159812 -0.00671222)
(-2.44683 0.125243 -0.0196453)
(-2.16053 0.0404275 -0.0325494)
(-2.01472 -0.0722174 -0.0484787)
(-1.92577 -0.231075 -0.0312549)
(-1.86046 -0.380644 -0.0301449)
(-1.75253 -0.538611 -0.030515)
(-1.63014 -0.683563 -0.0272034)
(-1.46828 -0.804906 -0.0210952)
(-1.30976 -0.876698 -0.010045)
(-1.14413 -0.877567 -0.00447218)
(-0.975841 -0.807105 0.00584223)
(-0.767144 -0.678955 0.00997186)
(-0.54108 -0.544023 0.0393906)
(-0.274306 -0.327973 0.061354)
(0.00952317 -0.117678 0.0833327)
(0.171402 0.0986488 0.091933)
(0.208209 0.233106 0.0964012)
(0.164983 0.27679 0.0847158)
(0.0679694 0.239512 0.0586214)
(0.00705865 0.121806 0.0197052)
(0.0108602 -0.0966609 0.0500571)
(0.0315559 -0.138561 0.0810418)
(0.0242571 -0.099765 0.108031)
(-0.0160062 -0.00762269 0.115189)
(-0.0874467 0.121071 0.120792)
(-0.215524 0.271701 0.117117)
(-0.39263 0.435162 0.104759)
(-0.62545 0.597835 0.0811625)
(-0.92948 0.739849 0.0582682)
(-1.2487 0.828616 0.0395118)
(-1.55188 0.851757 0.0252373)
(-1.8504 0.815596 0.0163041)
(-2.1116 0.740696 0.0113394)
(-2.31535 0.654837 0.00060474)
(-2.46405 0.58054 -0.00641273)
(-2.57117 0.498706 -0.0133625)
(-2.63619 0.423121 -0.0241641)
(-2.6948 0.341435 -0.0387915)
(-2.70645 0.281223 -0.0571907)
(-2.65018 0.173394 -0.071808)
(-2.36321 0.126572 -0.0847723)
(-2.09794 0.0175443 -0.0905348)
(-1.99989 -0.129401 -0.0821707)
(-1.94787 -0.310573 -0.0656858)
(-1.91591 -0.483606 -0.0620579)
(-1.84843 -0.677047 -0.0573628)
(-1.77196 -0.86873 -0.0505692)
(-1.65442 -1.04696 -0.044642)
(-1.51792 -1.18937 -0.0375561)
(-1.35149 -1.26368 -0.0259068)
(-1.20585 -1.23327 -0.0128255)
(-1.07378 -1.09813 -0.00346889)
(-0.942581 -0.862465 0.0111772)
(-0.689498 -0.602962 0.0405233)
(-0.36054 -0.322662 0.0762938)
(-0.093881 -0.0366135 0.102531)
(0.0339842 0.159221 0.101444)
(0.0442535 0.273566 0.0892263)
(0.0201243 0.25613 0.062807)
(-0.00414803 0.129505 0.0229136)
(0.00555525 -0.113104 0.0661906)
(0.00588948 -0.136196 0.111866)
(-0.0316054 -0.0535882 0.131891)
(-0.108344 0.110631 0.138076)
(-0.23444 0.296438 0.135691)
(-0.402271 0.508694 0.115624)
(-0.612055 0.704134 0.0841221)
(-0.867543 0.88624 0.0496732)
(-1.19319 0.98076 0.0197252)
(-1.55489 0.977438 0.00371591)
(-1.86985 0.928768 -0.00728455)
(-2.11362 0.85467 -0.0198618)
(-2.28823 0.781492 -0.0312756)
(-2.41502 0.699395 -0.0414009)
(-2.49184 0.60729 -0.0492746)
(-2.53145 0.507352 -0.0539053)
(-2.54015 0.421567 -0.062795)
(-2.54116 0.337738 -0.0720728)
(-2.50572 0.279771 -0.088657)
(-2.39104 0.175123 -0.0998528)
(-2.09565 0.128937 -0.110894)
(-1.86938 0.00419254 -0.109385)
(-1.8095 -0.163545 -0.0851458)
(-1.79011 -0.337441 -0.0794681)
(-1.78738 -0.520399 -0.0744701)
(-1.76757 -0.7319 -0.0679642)
(-1.74558 -0.954517 -0.060458)
(-1.69572 -1.18378 -0.0539009)
(-1.62474 -1.39229 -0.0460214)
(-1.50542 -1.54809 -0.0393521)
(-1.36831 -1.61993 -0.0261661)
(-1.21341 -1.55365 -0.0174726)
(-1.16002 -1.36666 -0.00161609)
(-1.04255 -0.965757 0.0136633)
(-0.694963 -0.612125 0.0506467)
(-0.355498 -0.229496 0.08423)
(-0.115933 0.0642557 0.0967948)
(-0.0159185 0.236625 0.0926725)
(-0.0144318 0.244696 0.0656601)
(-0.00333103 0.120112 0.0253959)
(0.00247641 -0.105681 0.0825201)
(-0.0217105 -0.0757749 0.134181)
(-0.0873048 0.062133 0.154788)
(-0.210056 0.279846 0.152148)
(-0.368443 0.520288 0.132079)
(-0.560449 0.755782 0.0935285)
(-0.77549 0.958873 0.0522581)
(-1.08634 1.06017 0.0101292)
(-1.4825 1.01786 0.000754965)
(-1.79671 0.968448 -0.0190911)
(-2.01208 0.929934 -0.0398882)
(-2.17227 0.886385 -0.0575389)
(-2.2849 0.818008 -0.0679772)
(-2.35092 0.721944 -0.0710405)
(-2.37486 0.613628 -0.0656408)
(-2.35901 0.49609 -0.0565145)
(-2.3096 0.406887 -0.0533539)
(-2.24634 0.330455 -0.064391)
(-2.16358 0.282438 -0.0876828)
(-2.00964 0.186914 -0.105765)
(-1.72615 0.15301 -0.116953)
(-1.55248 0.00165576 -0.115114)
(-1.52608 -0.157094 -0.0954922)
(-1.52434 -0.325302 -0.085478)
(-1.54294 -0.505905 -0.0780395)
(-1.55673 -0.718022 -0.0690382)
(-1.5778 -0.952018 -0.0598639)
(-1.5871 -1.20881 -0.0515513)
(-1.588 -1.46929 -0.0443685)
(-1.55297 -1.70328 -0.0369888)
(-1.47346 -1.87316 -0.0266193)
(-1.35176 -1.91322 -0.0204282)
(-1.21974 -1.83152 -0.0130107)
(-1.18349 -1.51028 0.000848989)
(-0.978243 -1.0186 0.0239979)
(-0.55225 -0.546688 0.0618317)
(-0.224278 -0.11663 0.0923061)
(-0.0794935 0.128009 0.0944957)
(-0.0267115 0.196489 0.0707057)
(-0.00503676 0.0921429 0.0283439)
(0.007437 -0.06265 0.101848)
(-0.0410836 0.020675 0.159168)
(-0.154524 0.212234 0.173716)
(-0.296624 0.472202 0.155212)
(-0.476839 0.731459 0.115955)
(-0.6708 0.952628 0.0667904)
(-0.974225 1.07402 0.0196644)
(-1.35177 1.03401 0.00497766)
(-1.6457 0.992271 -0.0259116)
(-1.85115 0.99856 -0.050715)
(-2.00208 0.980409 -0.0740735)
(-2.09937 0.924929 -0.089365)
(-2.15865 0.841405 -0.0954097)
(-2.18065 0.72991 -0.0895184)
(-2.16589 0.601674 -0.0760084)
(-2.10247 0.458175 -0.0611913)
(-1.99802 0.350822 -0.063343)
(-1.88192 0.267397 -0.0699703)
(-1.77063 0.244039 -0.0945864)
(-1.59041 0.211943 -0.118894)
(-1.36251 0.196638 -0.135583)
(-1.23698 0.0149471 -0.121443)
(-1.22394 -0.127242 -0.106473)
(-1.23537 -0.289297 -0.0948267)
(-1.26074 -0.4584 -0.0852673)
(-1.29219 -0.657781 -0.0750094)
(-1.33595 -0.88432 -0.0638939)
(-1.38196 -1.14398 -0.0531505)
(-1.43372 -1.42796 -0.0425593)
(-1.46913 -1.71459 -0.0343205)
(-1.47453 -1.97106 -0.0253595)
(-1.42596 -2.13829 -0.0178029)
(-1.32269 -2.15362 -0.0129538)
(-1.23666 -1.99744 -0.00902531)
(-1.13463 -1.53896 0.00446616)
(-0.797697 -0.944874 0.0279433)
(-0.343815 -0.396105 0.0646255)
(-0.09101 0.0269266 0.0794311)
(-0.0135935 0.137785 0.0660827)
(0.00242095 0.0784252 0.0273233)
(-0.00337014 -0.0145963 0.115789)
(-0.0737802 0.113972 0.177753)
(-0.199617 0.339741 0.183525)
(-0.365895 0.608992 0.148854)
(-0.561848 0.847596 0.0976872)
(-0.833104 1.0202 0.0432004)
(-1.17211 1.03256 0.0127967)
(-1.45163 1.02816 -0.0233616)
(-1.66407 1.05919 -0.0511642)
(-1.80155 1.05389 -0.080398)
(-1.87915 1.01341 -0.104183)
(-1.9238 0.944645 -0.119796)
(-1.95142 0.854796 -0.121856)
(-1.95987 0.726272 -0.108345)
(-1.94791 0.571224 -0.0714495)
(-1.8694 0.390234 -0.0221089)
(-1.7241 0.26649 0.0247888)
(-1.53092 0.238967 0.00827552)
(-1.33904 0.277641 -0.0654168)
(-1.16399 0.313353 -0.140656)
(-1.04696 0.271578 -0.153067)
(-0.9877 0.054766 -0.13066)
(-0.969862 -0.0919609 -0.117116)
(-0.983746 -0.246574 -0.103537)
(-1.0055 -0.405675 -0.0918923)
(-1.03895 -0.58618 -0.0801843)
(-1.08695 -0.795903 -0.0675893)
(-1.14543 -1.04056 -0.0547215)
(-1.21858 -1.32397 -0.0418307)
(-1.29336 -1.63249 -0.030146)
(-1.35697 -1.94542 -0.0207102)
(-1.38347 -2.21146 -0.0120886)
(-1.35239 -2.36572 -0.00865732)
(-1.26094 -2.33156 -0.00677034)
(-1.17673 -2.04323 -0.00277138)
(-0.956552 -1.42831 0.00690165)
(-0.468987 -0.721482 0.0348585)
(-0.133893 -0.157107 0.0577603)
(-0.0392189 0.0778525 0.0637722)
(0.00998239 0.0657738 0.0269846)
(-0.0149915 0.0392158 0.124831)
(-0.108701 0.230213 0.191221)
(-0.2559 0.474269 0.188233)
(-0.426347 0.722814 0.14211)
(-0.643724 0.932204 0.0818956)
(-0.937186 1.03188 0.0313162)
(-1.2329 1.06863 -0.00987825)
(-1.45517 1.11041 -0.0394973)
(-1.5915 1.11432 -0.0752427)
(-1.64978 1.08166 -0.105736)
(-1.67673 1.0288 -0.134506)
(-1.68966 0.962628 -0.151765)
(-1.72205 0.881107 -0.15033)
(-1.76386 0.76275 -0.113113)
(-1.78586 0.614222 -0.046566)
(-1.67548 0.406546 -0.0069348)
(-1.3752 0.20433 -0.093652)
(-1.10916 0.0394197 -0.190518)
(-1.014 0.0895678 -0.257515)
(-0.963411 0.357157 -0.290053)
(-0.908418 0.379057 -0.248832)
(-0.840561 0.0953975 -0.17224)
(-0.786134 -0.0652323 -0.136756)
(-0.792182 -0.205588 -0.119623)
(-0.801951 -0.357443 -0.10194)
(-0.827868 -0.516507 -0.0885306)
(-0.869425 -0.705273 -0.0732514)
(-0.92452 -0.924906 -0.0583249)
(-1.0003 -1.18986 -0.0424499)
(-1.08801 -1.49651 -0.028166)
(-1.18378 -1.8357 -0.0160465)
(-1.26144 -2.17112 -0.00739254)
(-1.29688 -2.44067 -0.00297556)
(-1.26611 -2.55676 -0.00206433)
(-1.16881 -2.43086 -0.00208331)
(-1.02934 -1.95841 0.000550686)
(-0.670433 -1.16176 0.0116385)
(-0.211491 -0.450675 0.0443752)
(-0.0387816 0.00642333 0.0382183)
(0.0058882 0.0468248 0.0210196)
(-0.0181593 0.101097 0.131444)
(-0.126576 0.354269 0.198615)
(-0.28733 0.614034 0.188778)
(-0.46692 0.857312 0.133635)
(-0.718251 1.03298 0.0710678)
(-0.997286 1.10185 0.0175102)
(-1.23447 1.15097 -0.0187136)
(-1.37853 1.16645 -0.0571193)
(-1.43753 1.13937 -0.0940759)
(-1.43678 1.0857 -0.131332)
(-1.4201 1.04017 -0.170678)
(-1.41954 1.0011 -0.20072)
(-1.46915 0.96867 -0.205299)
(-1.52743 0.872238 -0.200092)
(-1.47598 0.607933 -0.233859)
(-1.1184 0.0667395 -0.344837)
(-0.812056 -0.313627 -0.341804)
(-0.862081 -0.245131 -0.255817)
(-1.0121 0.126021 -0.263991)
(-1.01201 0.510123 -0.389399)
(-0.871023 0.428153 -0.328533)
(-0.736445 0.0354379 -0.177585)
(-0.667594 -0.0925328 -0.140357)
(-0.650664 -0.192947 -0.132389)
(-0.653338 -0.332609 -0.111159)
(-0.665414 -0.468377 -0.096816)
(-0.696328 -0.635446 -0.0788093)
(-0.737899 -0.825873 -0.0614266)
(-0.802658 -1.06218 -0.0431363)
(-0.884045 -1.34608 -0.0260495)
(-0.985257 -1.68459 -0.0116206)
(-1.08838 -2.05331 -0.00193313)
(-1.17126 -2.40835 0.00280344)
(-1.19647 -2.66107 0.00351058)
(-1.14283 -2.69749 0.00182833)
(-1.00917 -2.40843 4.20292e-05)
(-0.774409 -1.67835 0.00444684)
(-0.315712 -0.744694 0.0186163)
(-0.0431468 -0.111009 0.0401024)
(-0.0150409 0.0321775 0.0208162)
(-0.0193607 0.175073 0.134628)
(-0.135279 0.485771 0.20284)
(-0.303207 0.75607 0.188713)
(-0.504306 0.987152 0.128403)
(-0.763106 1.11948 0.0651545)
(-0.997412 1.18784 0.00617093)
(-1.16387 1.21758 -0.0264641)
(-1.23651 1.19436 -0.067569)
(-1.2354 1.13396 -0.109889)
(-1.17796 1.07101 -0.158736)
(-1.11992 1.04857 -0.220326)
(-1.08879 1.05741 -0.279203)
(-1.12951 1.05671 -0.332365)
(-1.11116 0.805978 -0.430392)
(-0.798715 0.196191 -0.442068)
(-0.315953 -0.244084 -0.0482745)
(-0.274106 0.0407155 0.430049)
(-0.548245 0.499967 0.451186)
(-0.742498 0.63851 0.0846746)
(-0.755433 0.728219 -0.319016)
(-0.563502 0.474818 -0.326598)
(-0.509412 0.0192381 -0.163031)
(-0.533166 -0.102365 -0.145719)
(-0.521075 -0.180078 -0.144259)
(-0.537344 -0.312336 -0.123322)
(-0.541295 -0.432917 -0.106162)
(-0.565463 -0.582943 -0.0852518)
(-0.592635 -0.747829 -0.0644351)
(-0.642852 -0.95333 -0.043484)
(-0.708841 -1.20543 -0.023834)
(-0.800136 -1.52197 -0.00737729)
(-0.906566 -1.89619 0.00385901)
(-1.0155 -2.30318 0.0100021)
(-1.08949 -2.66626 0.010216)
(-1.08964 -2.869 0.00601135)
(-0.983298 -2.75574 0.00208735)
(-0.784227 -2.1953 0.000758676)
(-0.418815 -1.16161 0.00729006)
(-0.0808893 -0.283641 0.0135132)
(-0.0183031 0.00470571 0.00969713)
(-0.0164222 0.243904 0.133996)
(-0.132054 0.608573 0.202561)
(-0.309044 0.888601 0.186334)
(-0.532887 1.09063 0.124421)
(-0.767496 1.20521 0.061158)
(-0.943619 1.26461 0.00496449)
(-1.05416 1.25696 -0.0292705)
(-1.06733 1.18905 -0.0721139)
(-1.0142 1.09972 -0.121948)
(-0.895513 1.02934 -0.18347)
(-0.773262 1.03424 -0.281529)
(-0.700416 1.09854 -0.39646)
(-0.744717 1.04566 -0.54146)
(-0.520614 0.545433 -0.564723)
(0.105228 0.108197 0.20779)
(0.308567 0.36669 1.05625)
(-0.154614 0.943485 1.0481)
(-0.556821 0.865985 0.476779)
(-0.724002 0.614318 -0.112112)
(-0.696662 0.658115 -0.443342)
(-0.384813 0.51205 -0.403841)
(-0.369119 0.103449 -0.249416)
(-0.4564 -0.0569921 -0.210811)
(-0.436167 -0.15725 -0.179477)
(-0.460565 -0.291428 -0.149106)
(-0.453499 -0.409533 -0.120828)
(-0.470992 -0.548661 -0.0942033)
(-0.483083 -0.695182 -0.0678978)
(-0.517661 -0.873084 -0.0436588)
(-0.564333 -1.09056 -0.021018)
(-0.636585 -1.37274 -0.00302062)
(-0.732122 -1.72911 0.00989318)
(-0.84685 -2.15414 0.0180543)
(-0.946841 -2.59137 0.0181324)
(-0.9939 -2.9318 0.0127059)
(-0.939283 -3.00391 0.00545714)
(-0.761614 -2.62766 0.00376348)
(-0.461589 -1.66391 0.0056467)
(-0.104465 -0.526131 0.0240085)
(-0.0155346 -0.0495454 0.0152533)
(-0.012173 0.308341 0.131633)
(-0.121258 0.728636 0.201253)
(-0.315914 1.00845 0.186087)
(-0.534069 1.18933 0.123853)
(-0.727299 1.3037 0.0628865)
(-0.85945 1.33055 0.00931302)
(-0.920468 1.27595 -0.0235283)
(-0.891904 1.16392 -0.0688253)
(-0.79427 1.04157 -0.121798)
(-0.602731 0.952 -0.200055)
(-0.401396 1.00685 -0.351806)
(-0.399524 1.11001 -0.575423)
(-0.470408 0.957032 -0.609962)
(0.294808 0.590316 0.017709)
(0.538147 0.640892 0.959148)
(-0.250596 1.00114 1.09548)
(-0.942371 0.909864 0.612315)
(-1.21494 0.58881 0.0888517)
(-1.19926 0.427512 -0.247791)
(-1.0117 0.47119 -0.422656)
(-0.445713 0.393012 -0.422822)
(-0.346486 0.0884193 -0.325055)
(-0.421993 -0.0439008 -0.272305)
(-0.384339 -0.152246 -0.215843)
(-0.404737 -0.280264 -0.178031)
(-0.389718 -0.39686 -0.135271)
(-0.401554 -0.527704 -0.102835)
(-0.402411 -0.661617 -0.0696603)
(-0.423609 -0.817435 -0.0425259)
(-0.452594 -1.00478 -0.0162913)
(-0.505567 -1.24934 0.00201454)
(-0.584625 -1.57668 0.018641)
(-0.692331 -1.99526 0.0270708)
(-0.804913 -2.47523 0.0270704)
(-0.883265 -2.92317 0.0193219)
(-0.879844 -3.16329 0.00961469)
(-0.745062 -2.97952 0.00336633)
(-0.486472 -2.1494 0.0050858)
(-0.127417 -0.86343 0.0125988)
(-0.00647767 -0.125355 0.0124814)
(-0.00486689 0.354644 0.126916)
(-0.116247 0.825545 0.198051)
(-0.311051 1.10466 0.184535)
(-0.505974 1.28858 0.126055)
(-0.668578 1.38472 0.0675437)
(-0.767007 1.37368 0.0199109)
(-0.795674 1.26862 -0.0127656)
(-0.739619 1.1171 -0.0564456)
(-0.607693 0.948198 -0.108178)
(-0.312968 0.834456 -0.192426)
(-0.147357 0.959351 -0.473402)
(-0.394926 1.06261 -0.634544)
(-0.113959 0.964215 -0.111679)
(0.328541 0.897392 0.263014)
(-0.344554 1.03791 0.221841)
(-1.05809 1.01122 0.32027)
(-1.39651 0.768612 0.294269)
(-1.32281 0.558349 0.237881)
(-1.10166 0.477824 0.0160562)
(-0.897813 0.374626 -0.283816)
(-0.305905 0.267913 -0.365551)
(-0.227923 0.0791548 -0.386705)
(-0.353548 -0.0241093 -0.343867)
(-0.329613 -0.139542 -0.260716)
(-0.352374 -0.26723 -0.213678)
(-0.335051 -0.388625 -0.153065)
(-0.344515 -0.516609 -0.112694)
(-0.3377 -0.643545 -0.0712784)
(-0.34986 -0.782225 -0.0406517)
(-0.364445 -0.943847 -0.0107457)
(-0.400792 -1.15152 0.00933324)
(-0.461203 -1.4407 0.0275328)
(-0.555335 -1.83502 0.0373272)
(-0.667531 -2.33134 0.0374272)
(-0.765339 -2.85471 0.0282665)
(-0.801127 -3.2434 0.0151938)
(-0.709038 -3.24537 0.00630653)
(-0.486928 -2.58125 0.00481813)
(-0.137134 -1.22805 0.0127618)
(0.0250203 -0.169795 0.0139463)
(-0.00277767 0.394548 0.121784)
(-0.106572 0.914996 0.194219)
(-0.285925 1.21778 0.186139)
(-0.457868 1.39491 0.132767)
(-0.59759 1.46797 0.077584)
(-0.676204 1.4133 0.0347775)
(-0.685287 1.26417 0.00536032)
(-0.624043 1.07332 -0.0343791)
(-0.469371 0.833609 -0.0586244)
(-0.124516 0.760603 -0.209022)
(-0.293696 0.931748 -0.549763)
(-0.497246 1.20448 -0.426714)
(-0.227777 1.27602 -0.0537692)
(-0.744641 1.04368 -0.983273)
(-1.28302 0.898297 -1.00518)
(-1.0076 0.584975 -0.0243586)
(-0.841909 0.367631 0.2321)
(-0.65927 0.351066 0.307038)
(-0.642978 0.388555 -0.0794905)
(-0.700566 0.245339 -0.253347)
(-0.161857 0.182584 -0.332554)
(-0.190963 0.139994 -0.507762)
(-0.315258 0.0214003 -0.467723)
(-0.2964 -0.111628 -0.316289)
(-0.314211 -0.249071 -0.255849)
(-0.293069 -0.37923 -0.170485)
(-0.296872 -0.508293 -0.122107)
(-0.283072 -0.632408 -0.0713524)
(-0.287436 -0.760254 -0.0372507)
(-0.291141 -0.903865 -0.00365624)
(-0.314275 -1.08195 0.0176784)
(-0.360033 -1.33415 0.0380647)
(-0.441266 -1.69618 0.0483098)
(-0.549222 -2.19052 0.048769)
(-0.656623 -2.76594 0.0376297)
(-0.719948 -3.28073 0.0215347)
(-0.665922 -3.45918 0.00742126)
(-0.477554 -2.97224 0.00483067)
(-0.148933 -1.62306 0.0104031)
(0.0548438 -0.251337 0.0148045)
(-0.00202533 0.410989 0.116592)
(-0.0880006 0.987795 0.191049)
(-0.250559 1.31519 0.187519)
(-0.406136 1.48161 0.141312)
(-0.530101 1.52647 0.0891414)
(-0.602097 1.43466 0.0536827)
(-0.605873 1.25237 0.0306408)
(-0.572897 1.02921 -0.00507415)
(-0.382139 0.738673 0.000422666)
(-0.181812 0.711711 -0.258728)
(-0.705399 0.985681 -0.626541)
(-0.790006 1.6249 -0.493306)
(-1.2911 1.69067 -0.837578)
(-2.0985 1.19302 -1.42234)
(-1.3592 0.466721 -0.4565)
(-0.618541 0.0207828 0.370451)
(-0.227169 0.328879 0.577929)
(-0.114172 0.508402 0.350774)
(-0.640505 0.465653 0.00354092)
(-0.785478 0.157957 -0.120411)
(-0.319231 0.0800403 -0.209832)
(-0.309533 0.156917 -0.61932)
(-0.305835 0.0275059 -0.564753)
(-0.271523 -0.094405 -0.351648)
(-0.282099 -0.230753 -0.285306)
(-0.252698 -0.370572 -0.1825)
(-0.250127 -0.502012 -0.126201)
(-0.231332 -0.624396 -0.0681684)
(-0.232941 -0.742288 -0.0311861)
(-0.230491 -0.867888 0.00345345)
(-0.243899 -1.01693 0.027663)
(-0.274556 -1.23061 0.0488113)
(-0.34028 -1.55339 0.0607801)
(-0.439274 -2.03556 0.0609969)
(-0.555218 -2.64732 0.0487064)
(-0.64207 -3.27007 0.0289413)
(-0.624801 -3.61342 0.0107821)
(-0.468789 -3.30332 0.00483252)
(-0.167583 -1.98299 0.0104213)
(0.0613926 -0.299169 0.0163152)
(0.00364365 0.438357 0.111525)
(-0.0546351 1.06508 0.183575)
(-0.205203 1.42751 0.19193)
(-0.354556 1.58418 0.152825)
(-0.467984 1.6073 0.104883)
(-0.540081 1.48411 0.080035)
(-0.545866 1.27929 0.0600213)
(-0.556117 1.02108 0.0412399)
(-0.39352 0.714693 0.0482738)
(-0.57338 0.739752 -0.342331)
(-1.18272 1.2312 -0.844309)
(-1.40726 2.48996 -0.842225)
(-2.29677 2.90823 -0.0880531)
(-1.71511 2.09649 1.23329)
(-0.753985 0.644765 1.33917)
(-0.542926 0.0603125 1.08924)
(0.229997 0.809327 1.2865)
(0.22337 1.0888 0.819474)
(-0.60212 0.610762 0.171108)
(-0.806501 0.0208687 -0.0654404)
(-0.459077 0.011781 -0.142033)
(-0.412765 0.119807 -0.61711)
(-0.275707 0.0299038 -0.599128)
(-0.224421 -0.0702484 -0.349972)
(-0.249882 -0.195802 -0.281338)
(-0.22052 -0.33658 -0.17419)
(-0.204437 -0.46572 -0.122269)
(-0.176024 -0.592649 -0.0625932)
(-0.170468 -0.71308 -0.0232694)
(-0.162376 -0.83744 0.0117922)
(-0.170536 -0.972768 0.0384806)
(-0.194164 -1.15849 0.0601708)
(-0.250998 -1.43436 0.0721318)
(-0.340341 -1.88213 0.072588)
(-0.452527 -2.50678 0.059272)
(-0.552718 -3.22877 0.0353699)
(-0.571139 -3.74151 0.0129858)
(-0.449146 -3.6218 0.0054176)
(-0.172313 -2.37144 0.0101024)
(0.0664847 -0.417993 0.0174269)
(-0.00847973 0.455377 0.109579)
(-0.0500284 1.15446 0.186058)
(-0.169761 1.54474 0.192612)
(-0.309542 1.70498 0.165649)
(-0.414931 1.71071 0.118609)
(-0.488835 1.56814 0.107418)
(-0.50012 1.35101 0.0845802)
(-0.564792 1.09062 0.0975116)
(-0.455193 0.838577 0.0670633)
(-1.04565 0.920289 -0.497987)
(-1.30331 1.55816 -1.31386)
(-1.33223 3.30325 -1.29208)
(-1.36976 3.57634 1.0145)
(0.0742149 2.392 2.31837)
(0.00101812 0.445564 0.465202)
(-0.2912 -0.150709 0.0256772)
(0.787999 0.941492 1.19486)
(0.787307 1.46882 0.65815)
(-0.154425 0.35435 -0.387762)
(-0.366031 -0.3056 -0.457828)
(-0.230875 -0.0293921 -0.130037)
(-0.350171 0.161431 -0.549104)
(-0.193813 0.0578166 -0.584411)
(-0.164832 -0.0373786 -0.327407)
(-0.205133 -0.147508 -0.256779)
(-0.177038 -0.286569 -0.138693)
(-0.160773 -0.393391 -0.0838663)
(-0.138626 -0.505083 -0.0323045)
(-0.136872 -0.609452 -0.00154602)
(-0.127106 -0.721013 0.0264139)
(-0.127335 -0.839592 0.0505816)
(-0.132192 -0.999951 0.0733941)
(-0.166221 -1.24937 0.0887134)
(-0.233459 -1.6795 0.0880326)
(-0.346617 -2.31366 0.0727257)
(-0.466925 -3.10215 0.0432028)
(-0.524187 -3.7807 0.0166434)
(-0.454711 -3.8656 0.00602072)
(-0.210397 -2.70915 0.0108913)
(0.047758 -0.470639 0.0189574)
(0.00736152 0.578371 0.0982724)
(-0.0209299 1.34761 0.176573)
(-0.114673 1.74518 0.184733)
(-0.233961 1.93803 0.173587)
(-0.346132 1.94097 0.128923)
(-0.40616 1.80068 0.128987)
(-0.404253 1.59694 0.0838071)
(-0.516426 1.36826 0.115832)
(-0.520147 1.17273 0.0482922)
(-1.35858 1.13349 -0.653775)
(-1.08814 1.42657 -1.66992)
(-0.542055 2.53298 -1.30784)
(0.739147 2.42544 1.02363)
(1.83966 0.975896 0.859847)
(0.109679 -1.13342 -2.09378)
(-0.189439 -1.87644 -1.78029)
(0.837912 0.331523 0.414492)
(0.918813 1.35124 0.0848542)
(0.430463 0.44395 -1.1864)
(0.309078 -0.301974 -1.25032)
(0.139594 0.197149 -0.154094)
(-0.217369 0.510753 -0.320843)
(-0.168077 0.302293 -0.505763)
(-0.0991365 0.102262 -0.272787)
(-0.154926 -0.0539954 -0.215223)
(-0.119692 -0.234149 -0.10615)
(-0.0782005 -0.346038 -0.0630209)
(-0.0569675 -0.440743 -0.0159718)
(-0.0590367 -0.522856 0.0130453)
(-0.0606611 -0.609509 0.042708)
(-0.0732054 -0.698818 0.0657003)
(-0.099069 -0.821089 0.0794122)
(-0.158741 -1.01242 0.0902479)
(-0.222597 -1.36345 0.0930957)
(-0.274469 -1.95845 0.0820943)
(-0.354509 -2.84905 0.0501137)
(-0.436947 -3.69976 0.0177971)
(-0.416685 -4.04092 0.00486496)
(-0.206189 -3.08727 0.00831243)
(0.0609579 -0.681748 0.0155966)
(-0.0124918 0.786815 0.0943254)
(-0.0215149 1.62394 0.170268)
(-0.0745162 2.05478 0.183193)
(-0.161277 2.23422 0.173177)
(-0.266744 2.24484 0.133529)
(-0.314328 2.10557 0.137723)
(-0.318674 1.90895 0.0720718)
(-0.47452 1.67158 0.11709)
(-0.563405 1.51087 0.00238351)
(-1.45366 1.1471 -0.72732)
(-0.90979 0.732383 -1.48319)
(0.275282 0.947306 -0.866678)
(2.15934 1.67421 1.64681)
(2.39553 -0.2305 0.313853)
(-0.117405 -3.76127 -3.35283)
(0.145716 -4.51068 -2.01248)
(0.776105 -1.18632 -0.484488)
(0.569259 0.532795 -0.84767)
(0.628731 0.375666 -1.22659)
(0.76716 0.248206 -1.1982)
(0.406667 0.770999 0.0556782)
(-0.298131 0.968094 0.206548)
(-0.341599 0.469292 -0.165104)
(-0.254459 0.170127 -0.115141)
(-0.224835 0.00302557 -0.136431)
(-0.13255 -0.248109 -0.0675147)
(-0.0279455 -0.363139 -0.0329203)
(0.0141371 -0.436762 -0.000311648)
(0.0132887 -0.494527 0.0259927)
(0.0107211 -0.562752 0.0568202)
(-0.00118246 -0.628806 0.0782924)
(-0.0172698 -0.724427 0.0940122)
(-0.0540954 -0.84395 0.103244)
(-0.134987 -1.09686 0.0991264)
(-0.318777 -1.57965 0.0880225)
(-0.416984 -2.40445 0.0573499)
(-0.43572 -3.38725 0.0200837)
(-0.438963 -3.99531 0.0055549)
(-0.272747 -3.3393 0.010171)
(0.0091365 -0.999595 0.0204323)
(-0.0342235 0.800246 0.0826711)
(-0.0324796 1.71221 0.156545)
(-0.0484018 2.19202 0.175182)
(-0.0986123 2.37108 0.163678)
(-0.173791 2.39188 0.126139)
(-0.221436 2.28047 0.126008)
(-0.225245 2.07335 0.0499528)
(-0.354037 1.87503 0.0740753)
(-0.402942 1.73163 -0.0923578)
(-1.14081 1.06631 -0.835991)
(-0.752773 0.0859376 -1.74155)
(0.426541 -0.361667 -0.43416)
(2.92629 0.621286 2.42622)
(3.14507 -0.36865 0.957621)
(-0.586254 -3.87238 -2.67676)
(-0.42996 -4.89585 -1.4973)
(1.0137 -2.05671 -1.18446)
(0.265472 -0.759616 -2.01552)
(0.333914 -0.862882 -0.174857)
(0.83148 0.0716007 1.41763)
(0.994024 1.46629 1.39685)
(0.742346 1.72245 0.849402)
(0.201792 0.80297 0.63441)
(-0.338384 0.323281 0.273901)
(-0.246602 0.0605969 -0.0040613)
(-0.130049 -0.334527 -0.0331465)
(0.0690696 -0.440437 0.0103189)
(0.133588 -0.471879 0.0245376)
(0.121511 -0.492157 0.0447239)
(0.100906 -0.547479 0.0711088)
(0.0702933 -0.602905 0.0896976)
(0.0472387 -0.683306 0.105564)
(0.0163854 -0.77171 0.111882)
(-0.0214734 -0.991856 0.108697)
(-0.151774 -1.36354 0.0887613)
(-0.375179 -2.03013 0.0657296)
(-0.498725 -2.95228 0.0241515)
(-0.497939 -3.7026 0.00206957)
(-0.381581 -3.31505 0.00387511)
(-0.0798526 -1.05716 0.0157645)
(-0.0216663 0.774332 0.0715095)
(-0.00550688 1.70774 0.142765)
(-0.00108556 2.20628 0.160644)
(-0.0240004 2.41083 0.156436)
(-0.0544427 2.42759 0.100563)
(-0.0985619 2.34979 0.0964925)
(-0.107392 2.17759 0.0159011)
(-0.174484 2.05425 -0.0177747)
(-0.026417 1.92844 -0.203545)
(-0.512819 1.24511 -1.10547)
(-0.693098 0.0774853 -2.54024)
(0.763554 -1.346 -0.0669013)
(4.24171 -0.496578 4.5499)
(4.48881 -0.400592 1.85951)
(-1.36453 -2.77371 -2.62347)
(-2.18807 -3.5974 -2.49132)
(1.22192 -1.16031 -0.808031)
(1.22097 -0.159134 -0.060516)
(0.469198 -2.16852 1.93269)
(0.772371 -2.77814 4.02067)
(2.27462 -0.517014 4.60911)
(2.34754 0.409847 3.36111)
(1.44849 0.681611 1.53783)
(-0.294179 0.906071 0.252408)
(-0.530162 0.547632 -0.0798701)
(0.0605487 -0.13602 -0.0910218)
(0.41504 -0.531249 0.00479192)
(0.330859 -0.523083 0.0561124)
(0.235186 -0.515212 0.0734621)
(0.182811 -0.565085 0.093504)
(0.145146 -0.605489 0.109801)
(0.129004 -0.660854 0.121612)
(0.0824435 -0.723555 0.123558)
(0.0442819 -0.889532 0.115532)
(-0.0655192 -1.2355 0.0935437)
(-0.252065 -1.85481 0.0651839)
(-0.419865 -2.64101 0.0256542)
(-0.483956 -3.41531 0.00298066)
(-0.385988 -3.22398 0.00251524)
(-0.123894 -1.11815 0.0138943)
(-0.009884 0.754982 0.059339)
(0.0200021 1.66934 0.125699)
(0.0391684 2.18194 0.145508)
(0.0405502 2.41248 0.13981)
(0.0378829 2.4294 0.087646)
(0.0239296 2.34934 0.0481925)
(0.0729796 2.19144 -0.0366669)
(0.0553665 2.10474 -0.157717)
(0.309244 1.96636 -0.313506)
(0.143087 1.5645 -1.43305)
(0.191586 0.157898 -2.96904)
(2.34484 -1.64953 -0.196835)
(5.06789 -1.30013 6.47063)
(5.25328 0.568556 4.35862)
(-0.233481 -1.60681 -1.96846)
(-3.89889 -3.43355 -4.3789)
(-0.688564 -1.14293 -1.38693)
(2.05265 1.3002 2.58058)
(1.68517 -1.55594 3.06026)
(0.780653 -5.2321 2.52458)
(2.45185 -3.6062 5.19742)
(2.67242 -0.708977 6.55789)
(1.04347 0.788842 4.43908)
(0.0981698 1.44508 1.72127)
(0.404134 0.423051 0.309752)
(1.28839 -0.430548 -0.0742735)
(1.20511 -0.617695 -0.0374823)
(0.641905 -0.458557 0.112756)
(0.383071 -0.497655 0.1311)
(0.27566 -0.58945 0.125384)
(0.229087 -0.631657 0.133879)
(0.214789 -0.675228 0.145593)
(0.175433 -0.724619 0.138557)
(0.118541 -0.853197 0.125166)
(0.00482586 -1.15385 0.10103)
(-0.148519 -1.73318 0.0634098)
(-0.319257 -2.49794 0.0237709)
(-0.420867 -3.29144 0.00255453)
(-0.381425 -3.27087 0.000701658)
(-0.144601 -1.34326 0.0140597)
(-0.00294347 0.699688 0.0466616)
(0.0446107 1.58434 0.107479)
(0.0870577 2.11728 0.129334)
(0.102271 2.37322 0.122582)
(0.122248 2.40612 0.0764073)
(0.11547 2.32402 0.0172007)
(0.196072 2.15234 -0.0530679)
(0.198138 1.99129 -0.25311)
(0.521266 1.84197 -0.303668)
(0.454261 1.46497 -1.44553)
(0.688621 -0.0483076 -2.70065)
(1.95438 -1.28782 -1.58594)
(3.50983 -1.52937 4.85044)
(6.1837 0.551609 7.88922)
(2.85293 0.0607517 1.00435)
(-2.76421 -3.33383 -4.37632)
(-3.03732 -2.79437 -2.77442)
(1.11633 0.619707 2.16194)
(2.57683 0.426564 2.76029)
(1.62074 -4.19722 -1.42411)
(0.621422 -4.33043 -1.41171)
(1.10855 -0.208956 3.69511)
(0.146759 1.75491 5.51938)
(1.09724 1.38111 3.64172)
(2.29724 0.22553 1.22708)
(1.78459 -0.0516913 0.0879007)
(1.06304 0.219893 -0.136215)
(0.662872 0.0154553 0.136695)
(0.510497 -0.377314 0.290164)
(0.361039 -0.563906 0.214087)
(0.297456 -0.655764 0.181685)
(0.287564 -0.687356 0.191344)
(0.244518 -0.704275 0.168883)
(0.173052 -0.811828 0.140123)
(0.0437219 -1.06734 0.119491)
(-0.0681215 -1.62771 0.0636755)
(-0.224527 -2.41656 0.0250252)
(-0.350937 -3.30338 0.00050792)
(-0.35606 -3.41178 -0.000764431)
(-0.143933 -1.5718 0.0154478)
(0.00340446 0.640551 0.0358649)
(0.0639275 1.48994 0.0905441)
(0.123278 2.03921 0.113751)
(0.152934 2.31658 0.10713)
(0.184559 2.36876 0.0669075)
(0.188661 2.28296 -0.00112336)
(0.259415 2.11583 -0.0637546)
(0.280388 1.88875 -0.260837)
(0.474159 1.74662 -0.271172)
(0.612104 1.23472 -1.08727)
(0.390609 0.153963 -2.26641)
(0.554146 -0.595821 -3.04624)
(0.917465 -1.24553 1.0788)
(4.6527 -0.785343 8.82632)
(6.5242 0.974538 5.47282)
(1.25573 -1.65385 -1.85498)
(-4.11729 -3.00685 -3.36744)
(-1.40637 -0.550121 -0.621859)
(1.99342 1.16591 1.48834)
(2.54359 -1.60392 -1.92926)
(-0.691604 -2.86984 -5.21046)
(-2.7421 0.706008 -1.8874)
(-2.16865 1.73778 1.76554)
(0.20193 0.691989 1.35742)
(1.77621 1.02726 0.277382)
(1.01787 0.911523 -0.178169)
(0.678667 0.426093 -0.356491)
(0.748475 -0.0950304 -0.0309206)
(0.721461 -0.402942 0.344335)
(0.550018 -0.581573 0.306599)
(0.448573 -0.728987 0.255612)
(0.428301 -0.789741 0.253531)
(0.361312 -0.78877 0.202382)
(0.267118 -0.87127 0.156382)
(0.106718 -1.07924 0.120968)
(-0.00633879 -1.60364 0.0790876)
(-0.162461 -2.45167 0.0219939)
(-0.296216 -3.44816 -0.000385861)
(-0.338347 -3.71392 -0.00613686)
(-0.141797 -1.91021 0.0131885)
(0.00713872 0.566322 0.026187)
(0.0774383 1.37052 0.0748552)
(0.152689 1.93329 0.0983116)
(0.19375 2.23419 0.0926928)
(0.234058 2.30858 0.0588514)
(0.243659 2.2284 -0.0101338)
(0.297349 2.06546 -0.0735572)
(0.330891 1.81999 -0.246298)
(0.415945 1.65355 -0.305578)
(0.618336 1.24811 -0.746735)
(0.220623 0.508788 -1.68301)
(0.230068 -0.376241 -2.65678)
(0.028442 -1.26588 -1.63941)
(1.47464 -1.05572 4.49696)
(6.70333 0.414529 8.81187)
(4.22114 0.0986396 2.67128)
(-1.90846 -2.043 -2.50507)
(-3.29824 -1.62808 -2.63476)
(-0.595697 0.349453 -0.930132)
(1.53639 0.427969 -0.95591)
(0.0920832 -0.539947 -3.07971)
(-2.54072 0.805203 -3.82813)
(-2.00809 1.12054 -2.96161)
(-0.284389 0.486804 -2.14912)
(0.600025 1.28904 -0.673416)
(0.527878 0.944817 -0.351394)
(0.909501 -0.0437646 -0.598163)
(1.36714 -0.648889 -0.11941)
(1.16798 -0.812091 0.159604)
(0.764879 -0.784406 0.0391165)
(0.540982 -0.84257 0.167227)
(0.487419 -0.958866 0.2987)
(0.44322 -0.942343 0.267484)
(0.343715 -1.0363 0.204612)
(0.180485 -1.2218 0.14455)
(0.0475012 -1.73224 0.104846)
(-0.118537 -2.59752 0.0306865)
(-0.235362 -3.72962 0.00514105)
(-0.289021 -4.1986 -0.00571499)
(-0.117777 -2.52598 0.0123233)
(0.0147336 0.496138 0.0178382)
(0.0927053 1.25066 0.0624021)
(0.174671 1.8245 0.0849587)
(0.225624 2.15162 0.0811347)
(0.27026 2.25262 0.0518722)
(0.286177 2.18506 -0.0118996)
(0.320476 2.02965 -0.0787804)
(0.356371 1.79075 -0.216069)
(0.378728 1.58275 -0.328581)
(0.52211 1.30298 -0.55498)
(0.223481 0.737591 -1.13268)
(-0.16932 0.0153718 -1.83881)
(0.014096 -1.43269 -2.06197)
(-0.205223 -1.79736 0.510048)
(2.34392 -0.0110457 5.24591)
(5.03525 0.795768 6.01743)
(2.60902 -1.26911 1.8326)
(-0.550666 -2.38137 -1.25794)
(-1.33921 -1.30307 -1.73881)
(-0.360232 -0.540858 -1.52289)
(-0.124074 0.0605755 -1.3433)
(-0.565075 0.310438 -2.19957)
(-0.649752 -0.186295 -3.21635)
(-0.696507 0.0536203 -2.27626)
(-0.697404 0.957152 0.230019)
(-0.0220831 0.549057 1.32439)
(1.32693 -0.315289 0.838908)
(2.01579 -0.448111 -0.0536179)
(1.54859 -0.182309 -0.80312)
(0.898805 -0.324437 -0.626087)
(0.593591 -0.74205 0.0249893)
(0.549067 -0.937889 0.319731)
(0.48047 -0.887717 0.28818)
(0.376853 -1.01396 0.213321)
(0.207492 -1.19802 0.150516)
(0.0638092 -1.72655 0.107203)
(-0.111321 -2.60884 0.029094)
(-0.23088 -3.90049 0.00373376)
(-0.309984 -4.60855 -0.00785495)
(-0.141641 -3.14542 0.01098)
(0.020147 0.429611 0.0146825)
(0.107072 1.11257 0.0554187)
(0.193015 1.68808 0.074736)
(0.247867 2.03867 0.0729913)
(0.296067 2.16738 0.0487998)
(0.316168 2.1219 -0.00685468)
(0.342992 1.98083 -0.0707459)
(0.366265 1.76459 -0.185695)
(0.387898 1.55014 -0.304059)
(0.410225 1.34152 -0.473871)
(0.34165 0.993846 -0.799313)
(-0.265904 0.548046 -1.4564)
(-0.412185 -0.801052 -1.83638)
(-0.200007 -2.34565 -0.924064)
(-0.179255 -0.914825 1.32612)
(2.4301 0.165126 4.35241)
(4.54779 -0.674897 4.95962)
(4.23694 -2.05112 2.98854)
(2.51789 -2.77632 0.970387)
(-0.221375 -2.26332 -1.41675)
(-1.90063 -1.08628 -2.11618)
(-2.50424 -0.560976 -0.806294)
(-2.01482 -1.44041 0.37188)
(-1.66455 -1.77601 1.06419)
(-1.23739 -1.75142 1.77987)
(-0.0717494 -2.0911 1.91706)
(1.5036 -1.2457 0.440225)
(1.92841 0.503076 -1.16306)
(1.1115 1.05202 -1.52068)
(0.584812 -0.104687 -0.60562)
(0.52991 -0.896408 0.149284)
(0.550687 -0.837781 0.313249)
(0.443198 -0.720587 0.248801)
(0.382802 -0.873254 0.192613)
(0.216001 -1.08768 0.141006)
(0.0737191 -1.5683 0.104527)
(-0.0993172 -2.45293 0.0233468)
(-0.227929 -3.85511 -0.00094957)
(-0.331872 -4.79479 -0.012665)
(-0.168968 -3.59419 0.006359)
(0.0157838 0.378811 0.0125517)
(0.108601 0.992046 0.0508921)
(0.207586 1.55531 0.0707747)
(0.262445 1.93532 0.0700413)
(0.313605 2.09592 0.0515192)
(0.342963 2.07887 0.0052188)
(0.369495 1.95858 -0.0517544)
(0.39295 1.76001 -0.149016)
(0.4132 1.55951 -0.25818)
(0.440405 1.36271 -0.410065)
(0.429522 1.19586 -0.624795)
(0.208848 0.892212 -1.1614)
(-0.144332 0.0134096 -2.0488)
(0.0767733 -1.75639 -2.04814)
(0.552803 -2.81586 -0.0509282)
(1.8718 -2.3117 2.40943)
(2.71117 -1.90745 3.13428)
(4.03877 -1.6135 3.62121)
(4.16185 -1.19342 3.27578)
(1.37199 -0.469577 0.065724)
(-0.953355 -0.334038 -1.50613)
(-2.3857 -1.40396 -0.364725)
(-1.90663 -3.60814 1.0786)
(-1.01756 -3.44726 1.89632)
(-0.45716 -3.16122 2.11679)
(-0.620942 -3.89459 2.9008)
(-0.69296 -2.59082 3.266)
(0.107932 0.491412 1.98612)
(0.753298 1.14843 0.364187)
(0.879547 -0.739486 -0.161482)
(0.64934 -1.11567 0.161415)
(0.522028 -0.663043 0.194204)
(0.386395 -0.563017 0.168621)
(0.33239 -0.744536 0.143254)
(0.221034 -0.95949 0.10453)
(0.100381 -1.42465 0.0874407)
(-0.104855 -2.24763 0.00898991)
(-0.216828 -3.72051 -0.0125279)
(-0.354499 -4.86074 -0.0214296)
(-0.192143 -3.97554 -0.00101776)
(0.0141911 0.317313 0.0125915)
(0.101998 0.862804 0.0483283)
(0.215187 1.38931 0.0699423)
(0.277296 1.78947 0.0714297)
(0.323158 1.98042 0.0580892)
(0.360986 1.99563 0.0221225)
(0.390497 1.8949 -0.0287708)
(0.416391 1.71898 -0.106629)
(0.445386 1.52331 -0.20223)
(0.486881 1.33362 -0.323547)
(0.541277 1.16993 -0.501664)
(0.595222 1.00305 -0.813151)
(0.510738 0.486588 -1.71436)
(0.46871 -0.724254 -2.44957)
(0.767211 -2.46614 -1.8176)
(1.4678 -4.08744 -0.392527)
(1.58694 -4.13845 0.234938)
(1.36522 -2.30025 1.01075)
(1.86409 0.302365 1.67387)
(2.37414 2.1048 1.24447)
(1.55524 2.38386 0.956811)
(0.328179 -0.807741 0.358241)
(-0.273686 -4.81361 -0.54866)
(-1.00964 -3.00278 -1.33433)
(-0.323963 0.209793 -1.80267)
(0.311001 -0.864885 0.0326787)
(-0.71964 -1.50963 3.27291)
(-0.340409 0.518911 3.83666)
(1.46905 0.762551 1.13008)
(1.59801 -0.616555 -0.224688)
(0.809181 -0.654743 -0.102257)
(0.504913 -0.417434 0.0277966)
(0.353809 -0.45255 0.0754516)
(0.305351 -0.652916 0.0883027)
(0.194602 -0.824171 0.0777833)
(0.118996 -1.30347 0.051458)
(-0.0790762 -2.03823 0.00015528)
(-0.197764 -3.55036 -0.0279388)
(-0.36661 -4.85624 -0.0290367)
(-0.217811 -4.31661 -0.00880315)
(0.00894642 0.274366 0.0136388)
(0.0822473 0.767998 0.0484717)
(0.202983 1.26006 0.0701234)
(0.283996 1.66526 0.076415)
(0.329872 1.89211 0.0681729)
(0.372405 1.938 0.0397968)
(0.410623 1.85883 -0.00270488)
(0.442666 1.69884 -0.0639492)
(0.474037 1.5073 -0.138641)
(0.52101 1.30523 -0.232236)
(0.579401 1.11483 -0.354849)
(0.698387 0.92598 -0.520901)
(0.815197 0.660775 -0.875471)
(0.930117 0.0607769 -1.41909)
(0.995428 -1.06697 -2.10454)
(0.951444 -2.54564 -2.70888)
(1.00013 -3.39099 -2.28571)
(0.165807 -2.63125 -1.34134)
(-0.00694741 -0.816484 0.19823)
(1.52177 0.860435 1.73747)
(1.8666 1.81836 1.2052)
(1.93868 0.335712 -0.548994)
(1.24965 -2.06536 -1.46704)
(-0.437571 -1.61897 -2.05846)
(0.209069 1.42056 -4.17689)
(2.04174 2.07118 -6.05034)
(1.79176 1.19969 -3.70678)
(1.36712 1.49932 -0.547653)
(1.87621 0.947439 -0.371423)
(1.39769 0.0228947 -0.369993)
(0.689154 -0.167587 -0.182971)
(0.475676 -0.281715 -0.0498407)
(0.329623 -0.371412 0.0147851)
(0.296021 -0.560197 0.0445324)
(0.16891 -0.703235 0.045917)
(0.137874 -1.14192 0.0227756)
(-0.0583852 -1.84745 -0.0154256)
(-0.172794 -3.35683 -0.0411731)
(-0.385965 -4.82271 -0.0388531)
(-0.244743 -4.66003 -0.0178481)
(0.0132304 0.219608 0.0159571)
(0.0697261 0.654633 0.0502875)
(0.176008 1.10653 0.0725047)
(0.279249 1.48417 0.0807786)
(0.332948 1.73413 0.0778277)
(0.370003 1.81124 0.0564054)
(0.4125 1.7622 0.0231839)
(0.451701 1.62075 -0.024554)
(0.486299 1.44707 -0.0824787)
(0.527599 1.24908 -0.150688)
(0.578046 1.05146 -0.233037)
(0.65437 0.845382 -0.328522)
(0.771633 0.58486 -0.470899)
(0.940723 0.251137 -0.683193)
(1.06524 -0.224463 -1.00874)
(0.96299 -0.814036 -1.55927)
(0.442845 -0.885856 -2.29721)
(-0.453903 -0.20288 -2.10318)
(-1.2158 0.25662 -0.869862)
(-1.16754 0.171654 0.32044)
(-0.393252 0.193431 -0.0531492)
(0.577666 0.42843 -0.848924)
(0.778248 0.221048 -0.641783)
(0.195751 -0.197657 0.0308257)
(0.301634 0.383206 -0.614583)
(1.26227 0.948389 -2.49564)
(1.43363 0.515655 -2.62229)
(1.28814 0.754341 -1.00731)
(1.13689 0.708915 -0.405046)
(0.835396 0.160944 -0.25617)
(0.553558 -0.0712277 -0.128103)
(0.483689 -0.230175 -0.0458324)
(0.341342 -0.296898 -0.00214366)
(0.311875 -0.478392 0.0232348)
(0.171637 -0.594898 0.0245849)
(0.153112 -1.01205 0.00573334)
(-0.0450645 -1.66464 -0.0335399)
(-0.137721 -3.18507 -0.054639)
(-0.416444 -4.79168 -0.0475095)
(-0.277644 -5.06844 -0.0270399)
(0.0069668 0.193512 0.0176091)
(0.0362757 0.598644 0.0560798)
(0.115242 1.01955 0.0744295)
(0.236797 1.38838 0.086213)
(0.327562 1.62189 0.0865175)
(0.376127 1.72965 0.0721611)
(0.416872 1.7023 0.0470994)
(0.466638 1.57517 0.00891138)
(0.51061 1.41725 -0.0329137)
(0.549124 1.23016 -0.0828825)
(0.589559 1.04246 -0.136786)
(0.631349 0.848734 -0.193331)
(0.673913 0.633309 -0.258555)
(0.729793 0.374624 -0.326843)
(0.76664 0.108847 -0.417056)
(0.656149 -0.0145315 -0.493675)
(0.367304 0.0670874 -0.673544)
(0.0333764 0.608129 -0.861645)
(-0.272661 1.10699 -0.766381)
(-0.486814 1.0998 -0.371696)
(-0.285405 0.733244 -0.257998)
(0.0355096 0.513171 -0.0391934)
(0.256698 0.133618 0.378231)
(0.395144 -0.156195 0.643015)
(0.502859 0.262167 0.850758)
(0.925075 0.447129 0.624338)
(1.03716 0.132532 0.13507)
(0.88838 0.125303 0.00438874)
(0.741036 0.222448 -0.0882429)
(0.702681 0.0909293 -0.113178)
(0.545607 0.00104863 -0.0732394)
(0.519545 -0.142 -0.0316451)
(0.367745 -0.180627 -0.00451851)
(0.351446 -0.355745 0.012042)
(0.179876 -0.447599 0.0113436)
(0.184511 -0.851216 -0.00494871)
(-0.0355698 -1.46967 -0.0484719)
(-0.106436 -2.9609 -0.0626304)
(-0.462505 -4.75416 -0.0526646)
(-0.316263 -5.56883 -0.0336122)
(0.0189761 0.164937 0.0221141)
(0.0327245 0.50336 0.0588472)
(0.0619686 0.911823 0.08263)
(0.162433 1.22557 0.0883933)
(0.276569 1.43673 0.094425)
(0.361524 1.5415 0.0839151)
(0.395207 1.55121 0.0665693)
(0.453939 1.44296 0.0372129)
(0.515771 1.31498 0.00517434)
(0.562822 1.15292 -0.0300459)
(0.60895 0.993888 -0.0676542)
(0.645618 0.831731 -0.104119)
(0.677018 0.675106 -0.140308)
(0.687459 0.518892 -0.169819)
(0.685498 0.344767 -0.185592)
(0.642261 0.205493 -0.181721)
(0.574386 0.223005 -0.155877)
(0.543645 0.368467 -0.114871)
(0.632565 0.536226 -0.0949584)
(0.831017 0.653509 -0.0304107)
(1.14114 0.640575 0.0112628)
(1.37546 0.5316 0.091769)
(1.36256 0.257783 0.129604)
(1.22856 0.0131208 0.123171)
(1.12229 0.215282 0.111004)
(1.26223 0.329706 0.10365)
(1.24294 0.240278 0.00478738)
(1.01239 0.181733 -0.0721047)
(0.736303 0.164972 -0.0940393)
(0.726539 0.0749984 -0.0842242)
(0.583283 0.0396676 -0.0550872)
(0.590058 -0.0550128 -0.0269995)
(0.43875 -0.0806446 -0.0130606)
(0.432672 -0.246377 0.00283609)
(0.240697 -0.321133 -0.00452331)
(0.23234 -0.706898 -0.0157017)
(0.0228462 -1.26838 -0.0553679)
(-0.0356526 -2.75031 -0.0758801)
(-0.526614 -4.71078 -0.0604262)
(-0.318472 -6.18632 -0.0430478)
(-0.0192514 0.137914 0.0252368)
(-0.0295162 0.527827 0.066379)
(-0.0263484 0.869535 0.0866181)
(0.028538 1.21721 0.0960758)
(0.175931 1.37991 0.10121)
(0.331508 1.4288 0.0950817)
(0.393238 1.44923 0.0850974)
(0.451565 1.34349 0.0625664)
(0.540049 1.23247 0.0392777)
(0.602721 1.09128 0.0127373)
(0.66439 0.954953 -0.0127442)
(0.709694 0.817824 -0.0380891)
(0.750119 0.692869 -0.0611543)
(0.776048 0.576601 -0.0801399)
(0.796813 0.481662 -0.0940144)
(0.798909 0.40545 -0.0987495)
(0.786872 0.381294 -0.0962756)
(0.750074 0.386582 -0.0989997)
(0.76844 0.413334 -0.0549479)
(0.901721 0.365134 0.0178272)
(1.24209 0.278664 0.0754324)
(1.55869 0.206279 0.0984302)
(1.59992 0.103274 0.0757542)
(1.56894 0.00911765 0.0111962)
(1.45599 0.0683697 -0.0177506)
(1.4657 0.0836661 -0.0286557)
(1.39571 0.0898876 -0.0395668)
(1.20107 0.0746151 -0.047648)
(0.90186 0.130074 -0.0438205)
(0.866967 0.093994 -0.0351493)
(0.720684 0.103223 -0.0219538)
(0.746798 0.0246028 -0.00975501)
(0.554655 0.0155691 0.0014165)
(0.579252 -0.116351 0.00463783)
(0.351831 -0.172798 0.00120119)
(0.37722 -0.50938 -0.0212713)
(0.113469 -0.97487 -0.0472119)
(0.123381 -2.44296 -0.0879185)
(-0.51577 -4.58174 -0.0515664)
(-0.250082 -6.78416 -0.048633)
(0.0544032 0.27172 0.0313713)
(0.000406569 0.462549 0.0714885)
(-0.0996642 0.750431 0.0911343)
(-0.0460888 0.968303 0.0990863)
(-0.00279847 1.18655 0.105625)
(0.193708 1.18281 0.101082)
(0.330476 1.20973 0.0978084)
(0.406729 1.12552 0.0831959)
(0.528449 1.0418 0.0678817)
(0.618574 0.933698 0.0497986)
(0.706344 0.828416 0.0318871)
(0.770267 0.723711 0.0144656)
(0.825078 0.631453 -0.00162349)
(0.862873 0.547819 -0.0150522)
(0.895539 0.476978 -0.0245384)
(0.916288 0.409248 -0.0303621)
(0.92004 0.35654 -0.0322333)
(0.927771 0.316575 -0.0226155)
(0.983354 0.318017 -0.00965048)
(1.11103 0.278671 0.0101192)
(1.41826 0.249095 0.0343342)
(1.68587 0.195569 0.0547193)
(1.69519 0.115678 0.0596045)
(1.7121 0.0353197 0.0460177)
(1.64761 0.0616654 0.0297803)
(1.68464 0.0633322 0.0215162)
(1.60216 0.128649 0.00999831)
(1.42991 0.115461 -0.00267241)
(1.11665 0.177277 -0.00598735)
(1.10792 0.144834 -0.00138869)
(0.942311 0.189898 0.0041738)
(1.00548 0.0978019 0.00983356)
(0.824912 0.0999749 0.0115214)
(0.907425 -0.019707 0.00803165)
(0.646336 -0.087442 0.00422735)
(0.751003 -0.368344 -0.00910175)
(0.396358 -0.780391 -0.0425105)
(0.505997 -2.05854 -0.0589759)
(-0.231043 -4.3776 -0.0664693)
(0.0278931 -7.30785 -0.0548107)
(-0.22738 0.0681652 0.0422249)
(-0.309268 0.688572 0.0888775)
(-0.299469 0.863718 0.102096)
(-0.263712 1.01223 0.105655)
(-0.123377 1.04074 0.113295)
(0.0564905 1.05836 0.107829)
(0.236081 1.00266 0.111922)
(0.353224 0.940763 0.102474)
(0.507187 0.864943 0.095411)
(0.624538 0.787635 0.0846767)
(0.743052 0.709069 0.0742258)
(0.836108 0.631339 0.0627282)
(0.919516 0.562544 0.052108)
(0.983337 0.500848 0.0426833)
(1.0348 0.448678 0.0342844)
(1.06967 0.393714 0.02671)
(1.09892 0.341329 0.024342)
(1.13845 0.303007 0.0286145)
(1.19962 0.290517 0.041306)
(1.35022 0.227575 0.0589296)
(1.69917 0.198184 0.0816637)
(2.02561 0.148658 0.0897233)
(2.06369 0.101422 0.0842656)
(2.15403 0.0543458 0.0676423)
(2.1175 0.0714508 0.0563703)
(2.17713 0.047023 0.0455016)
(2.07767 0.12729 0.0403595)
(1.95054 0.0987232 0.034708)
(1.61602 0.185301 0.0340006)
(1.67181 0.163998 0.0355965)
(1.50205 0.227783 0.0383013)
(1.63668 0.158561 0.0375812)
(1.42386 0.162767 0.0359242)
(1.59003 0.0373967 0.0335106)
(1.26466 -0.0143958 0.0260981)
(1.4502 -0.234163 0.00928402)
(0.996736 -0.491863 -0.0117604)
(1.1877 -1.45785 -0.0425766)
(0.354543 -3.88373 -0.0517932)
(0.49067 -7.20445 -0.0522507)
(-0.731534 0.79743 0.0752661)
(-0.608803 0.395599 0.11052)
(-0.754887 0.575118 0.106606)
(-0.463559 0.596288 0.105559)
(-0.314082 0.614549 0.110012)
(-0.00119662 0.65926 0.109389)
(0.222594 0.633169 0.114237)
(0.444126 0.606808 0.111597)
(0.669547 0.564882 0.109735)
(0.873287 0.522557 0.105251)
(1.07089 0.4748 0.100133)
(1.2471 0.428288 0.0938676)
(1.40498 0.387272 0.0881547)
(1.54083 0.353524 0.0824205)
(1.65055 0.329835 0.0779359)
(1.74725 0.296942 0.0745353)
(1.84076 0.257843 0.0748462)
(1.981 0.23346 0.0802979)
(2.14639 0.225277 0.0890045)
(2.43025 0.152672 0.0963929)
(2.8451 0.127927 0.108302)
(3.27493 0.0802445 0.113519)
(3.35849 0.0337356 0.108811)
(3.50207 -0.0160398 0.101057)
(3.44019 -0.000173181 0.0878875)
(3.55492 -0.0129239 0.0784704)
(3.41048 0.0666272 0.0733918)
(3.37119 0.0634215 0.0669378)
(2.98585 0.139952 0.0663931)
(3.14486 0.153358 0.0646233)
(2.92992 0.207826 0.0630487)
(3.23523 0.152839 0.0595305)
(2.94588 0.124014 0.053304)
(3.27938 0.0369926 0.0479551)
(2.8083 -0.0278429 0.0380604)
(3.15717 -0.21299 0.0299728)
(2.49268 -0.496283 0.0142826)
(2.85551 -1.13312 -0.000920556)
(1.86946 -3.15747 -0.0250889)
(1.32476 -6.09764 -0.0362345)
(1.16278 1.48675 0.0352143)
(1.72779 0.735406 0.0488261)
(2.4646 0.578033 0.05012)
(2.87665 0.355709 0.0470829)
(3.15553 0.280615 0.0475134)
(3.39681 0.228349 0.0441776)
(3.61615 0.210373 0.0465655)
(3.8278 0.189135 0.0464471)
(4.05435 0.175172 0.0471088)
(4.28629 0.1608 0.0460987)
(4.50726 0.146183 0.0452534)
(4.71999 0.131138 0.0433103)
(4.89968 0.117695 0.042328)
(5.06225 0.106253 0.040846)
(5.17889 0.100384 0.0409968)
(5.29798 0.0940548 0.0421696)
(5.41788 0.0754974 0.0462778)
(5.62437 0.0577058 0.0525388)
(5.86598 0.0737565 0.0654488)
(6.31735 0.057037 0.0777704)
(6.73907 0.0338909 0.0915272)
(7.21721 0.0127527 0.099145)
(7.26594 -0.00376957 0.0951842)
(7.34334 -0.0458757 0.0799623)
(7.16491 -0.0367231 0.0688759)
(7.18088 -0.0515673 0.057)
(6.83787 -0.0316185 0.0512577)
(6.82019 -0.0179442 0.0445004)
(6.34269 0.0126776 0.0426248)
(6.57459 0.0312494 0.0426667)
(6.32182 0.0668272 0.0424161)
(6.75307 0.0695749 0.0399952)
(6.44197 0.0494557 0.0356063)
(6.83798 0.018107 0.0314008)
(6.30222 -0.013342 0.0265032)
(6.53174 -0.101511 0.019128)
(5.65164 -0.259054 0.0131674)
(5.68519 -0.583025 0.00537072)
(4.25916 -1.14303 -0.00318019)
(2.77642 -2.53097 -0.0179208)
(0.000477405 -0.000370809 0.00642914)
(0.0206643 -0.00335716 0.0116384)
(0.0497055 -0.00341917 0.0154557)
(0.0705556 -0.00179174 0.0180807)
(0.0817968 0.000143167 0.0216486)
(0.0703459 -0.00183471 0.0216598)
(0.0552772 0.00487173 0.0213905)
(0.0413183 0.00209372 0.0228789)
(0.0220704 0.0142972 0.0239287)
(-0.00269028 0.0155436 0.0200001)
(-0.0452938 0.0193562 0.0251553)
(-0.101466 0.0114391 0.0265948)
(-0.160267 0.00594339 0.0298991)
(-0.235309 0.00445414 0.033599)
(-0.306973 0.0110102 0.0370034)
(-0.393709 0.0201556 0.0413979)
(-0.472019 0.0119599 0.0506338)
(-0.578169 0.00345134 0.0534712)
(-0.641021 -0.0123253 0.0770792)
(-0.813838 -0.0125891 0.0934611)
(-0.773974 0.0265883 0.105584)
(-0.587946 0.0282032 0.120305)
(-0.587942 0.0355771 0.12821)
(-0.582822 0.0287752 0.137655)
(-0.56829 0.0184076 0.151929)
(-0.514176 0.0127434 0.162812)
(-0.445369 0.00469806 0.179446)
(-0.334577 -0.0106266 0.187922)
(-0.206268 -0.0186918 0.193897)
(-0.0696583 -0.0336032 0.191038)
(0.0682368 0.0078545 0.180961)
(0.278569 0.00480496 0.161765)
(0.431783 0.00554608 0.144433)
(0.462394 0.0367819 0.1062)
(0.4286 0.0439711 0.0776285)
(0.334639 0.045895 0.0518178)
(0.223682 0.0305813 0.0368358)
(0.120782 0.0186893 0.0269873)
(0.0406392 0.00245377 0.0176895)
(-0.00245151 -0.00901072 0.00575032)
(0.00647063 -0.0128186 0.0118274)
(0.0428466 -0.0279474 0.0245629)
(0.0876691 -0.0281863 0.0336277)
(0.11863 -0.0183775 0.0404756)
(0.128105 -0.00860114 0.0491311)
(0.111817 -0.00110685 0.0508523)
(0.0773574 0.0123301 0.0549078)
(0.0378632 0.0358765 0.0602202)
(-0.0220308 0.05663 0.0568826)
(-0.118022 0.066797 0.0528713)
(-0.254164 0.0838734 0.0614907)
(-0.421834 0.106396 0.0653044)
(-0.591426 0.131822 0.0703983)
(-0.781553 0.158631 0.076696)
(-0.972983 0.184615 0.0846133)
(-1.19268 0.177305 0.0977222)
(-1.38039 0.152751 0.113008)
(-1.56443 0.118762 0.128399)
(-1.68697 0.088349 0.150143)
(-1.83572 0.0745341 0.167032)
(-1.70611 0.105736 0.177028)
(-1.46164 0.0899844 0.186114)
(-1.37091 0.070976 0.184078)
(-1.26449 0.0325139 0.181626)
(-1.17363 -0.00588551 0.171562)
(-1.04928 -0.0662254 0.184154)
(-0.923358 -0.112382 0.191962)
(-0.748569 -0.14461 0.196082)
(-0.561417 -0.166079 0.199777)
(-0.330161 -0.185462 0.192877)
(-0.142225 -0.150222 0.201389)
(0.120439 -0.0824695 0.160432)
(0.407251 -0.0370675 0.182836)
(0.561111 0.0202288 0.165577)
(0.607401 0.118422 0.134199)
(0.554098 0.149801 0.111094)
(0.429001 0.156939 0.0893967)
(0.269437 0.127701 0.0713439)
(0.111431 0.083769 0.0486467)
(0.0143747 0.0279269 0.0171781)
(0.00982146 -0.0307239 0.0163151)
(0.0504443 -0.0605538 0.0340534)
(0.0947129 -0.0575995 0.0475962)
(0.116486 -0.0352907 0.0590712)
(0.111275 -0.00475337 0.0700666)
(0.0717066 0.0207447 0.0776187)
(0.0195512 0.0710506 0.0801531)
(-0.0716937 0.129081 0.0875566)
(-0.221189 0.188537 0.0844304)
(-0.39723 0.240939 0.0816644)
(-0.608452 0.293246 0.0796506)
(-0.854555 0.352594 0.0790693)
(-1.1098 0.401783 0.082138)
(-1.36938 0.423406 0.0876625)
(-1.62755 0.399159 0.0951735)
(-1.86675 0.346721 0.103435)
(-2.04369 0.299938 0.108899)
(-2.20824 0.248828 0.112714)
(-2.3099 0.212704 0.117004)
(-2.39822 0.164696 0.115044)
(-2.19267 0.159248 0.107381)
(-1.91932 0.120185 0.0932394)
(-1.77467 0.0524842 0.0779368)
(-1.63991 -0.0279753 0.0589586)
(-1.55984 -0.133234 0.0681387)
(-1.42382 -0.250954 0.0693967)
(-1.27911 -0.343465 0.0668633)
(-1.10498 -0.404809 0.0658395)
(-0.936261 -0.430062 0.0705348)
(-0.722996 -0.418608 0.0715154)
(-0.509619 -0.398166 0.0782998)
(-0.246163 -0.297454 0.0894958)
(0.00117589 -0.207381 0.0975116)
(0.254666 -0.0780004 0.117486)
(0.429493 0.0564131 0.136837)
(0.448972 0.182226 0.121216)
(0.399251 0.229427 0.109353)
(0.264518 0.230792 0.0923915)
(0.115155 0.175879 0.0646466)
(0.0133963 0.0823877 0.0230819)
(0.0113305 -0.052709 0.0237717)
(0.0484722 -0.0912649 0.0478736)
(0.0764834 -0.078352 0.0660817)
(0.0777737 -0.0358784 0.0810759)
(0.0379754 0.0227232 0.0967052)
(-0.0226123 0.104778 0.100313)
(-0.117357 0.19978 0.103677)
(-0.27546 0.308555 0.0991936)
(-0.49665 0.426781 0.0870952)
(-0.766563 0.524128 0.074411)
(-1.04857 0.594431 0.0676304)
(-1.33523 0.641331 0.0636827)
(-1.61316 0.639619 0.0621467)
(-1.89188 0.587907 0.0633938)
(-2.12283 0.520857 0.0623744)
(-2.30789 0.45781 0.0598205)
(-2.4391 0.400297 0.0485551)
(-2.56164 0.331576 0.0364976)
(-2.62984 0.279891 0.0234902)
(-2.6463 0.200416 0.0080987)
(-2.39997 0.167211 -0.00684385)
(-2.12534 0.0909899 -0.0165982)
(-1.97133 -0.0161421 -0.0292528)
(-1.87977 -0.155903 -0.0214052)
(-1.8146 -0.313312 -0.016295)
(-1.70805 -0.461937 -0.0173731)
(-1.57942 -0.598129 -0.0143691)
(-1.41254 -0.714266 -0.00746877)
(-1.25046 -0.780087 0.000441899)
(-1.08472 -0.775083 0.00715348)
(-0.916341 -0.700462 0.017639)
(-0.699147 -0.576496 0.0254611)
(-0.467883 -0.453784 0.0538482)
(-0.21149 -0.260058 0.080371)
(0.059019 -0.0792775 0.101692)
(0.20912 0.125997 0.112003)
(0.233788 0.242254 0.113435)
(0.176996 0.281196 0.100842)
(0.0724233 0.24225 0.0727101)
(0.00821192 0.123825 0.0265419)
(0.011091 -0.0803616 0.0396178)
(0.0359091 -0.118035 0.0700587)
(0.0366235 -0.0847085 0.0932166)
(0.00176118 -0.000593148 0.111368)
(-0.0569481 0.1142 0.116618)
(-0.163808 0.258141 0.117556)
(-0.317087 0.4099 0.108296)
(-0.526129 0.567803 0.088834)
(-0.812167 0.711917 0.0679659)
(-1.12329 0.809909 0.0508665)
(-1.42799 0.847788 0.0391793)
(-1.73266 0.821814 0.0319615)
(-2.01282 0.758741 0.0301491)
(-2.23473 0.677643 0.0184642)
(-2.3967 0.609247 0.00614844)
(-2.52065 0.532476 -0.0016205)
(-2.6031 0.46411 -0.00989313)
(-2.67538 0.381014 -0.0196132)
(-2.69768 0.319192 -0.0346676)
(-2.6535 0.213543 -0.0454103)
(-2.36905 0.158821 -0.0614848)
(-2.10257 0.0505698 -0.0724529)
(-1.98726 -0.0808308 -0.0720432)
(-1.93407 -0.267352 -0.054546)
(-1.90528 -0.436329 -0.0519786)
(-1.83941 -0.623128 -0.0479268)
(-1.75734 -0.805067 -0.0431776)
(-1.63177 -0.976375 -0.0368535)
(-1.48365 -1.10903 -0.0223322)
(-1.30769 -1.17407 -0.0113877)
(-1.16237 -1.13489 0.000916628)
(-1.03076 -0.990643 0.0100599)
(-0.88993 -0.762631 0.025921)
(-0.631917 -0.523007 0.0587395)
(-0.309056 -0.262622 0.0938243)
(-0.06109 -0.00154202 0.123855)
(0.0510755 0.175541 0.116604)
(0.0558266 0.281265 0.106493)
(0.0242502 0.261994 0.0767758)
(-0.00326769 0.133155 0.0287448)
(0.00795913 -0.1007 0.0593842)
(0.01258 -0.121626 0.102005)
(-0.0165248 -0.0480356 0.125136)
(-0.0776122 0.102947 0.134824)
(-0.184228 0.277517 0.135127)
(-0.330576 0.478234 0.12092)
(-0.520186 0.670198 0.0935113)
(-0.761807 0.854073 0.0628586)
(-1.08034 0.967452 0.0347836)
(-1.44273 0.978946 0.0179454)
(-1.77546 0.939737 0.00921738)
(-2.03904 0.871141 -0.00132235)
(-2.23438 0.801749 -0.0165567)
(-2.37863 0.727344 -0.0251199)
(-2.46775 0.640648 -0.0304979)
(-2.51871 0.543172 -0.0340841)
(-2.54011 0.458167 -0.0417638)
(-2.5526 0.37304 -0.0515655)
(-2.52886 0.309216 -0.0690533)
(-2.42435 0.197827 -0.0791411)
(-2.12733 0.146363 -0.0961941)
(-1.88483 0.0202835 -0.10214)
(-1.82236 -0.137885 -0.0879856)
(-1.80505 -0.316386 -0.0790944)
(-1.80428 -0.494932 -0.073242)
(-1.7833 -0.699367 -0.0672039)
(-1.7585 -0.914999 -0.0610516)
(-1.70029 -1.13409 -0.0537935)
(-1.61776 -1.33107 -0.0428654)
(-1.48398 -1.47459 -0.0289525)
(-1.33781 -1.53503 -0.0148968)
(-1.17985 -1.46076 -0.00267654)
(-1.12699 -1.26648 0.0106799)
(-1.00224 -0.87336 0.0300102)
(-0.654304 -0.542606 0.0689288)
(-0.326934 -0.189321 0.103693)
(-0.0997332 0.0868999 0.121632)
(-0.00802535 0.248846 0.110392)
(-0.011306 0.252874 0.0814242)
(-0.0028036 0.124223 0.0314743)
(0.0043998 -0.0936568 0.0730234)
(-0.011608 -0.0682088 0.123783)
(-0.0620121 0.0588504 0.146612)
(-0.166109 0.26091 0.151366)
(-0.305187 0.488142 0.13697)
(-0.47984 0.719812 0.104149)
(-0.684311 0.926956 0.0667755)
(-0.981739 1.05104 0.0271256)
(-1.38474 1.02423 0.0145559)
(-1.72336 0.979969 -0.00266531)
(-1.96097 0.941158 -0.0235859)
(-2.13606 0.899615 -0.0414294)
(-2.26098 0.831885 -0.0532427)
(-2.33353 0.740422 -0.0596134)
(-2.36329 0.63796 -0.0589658)
(-2.35722 0.52533 -0.0525705)
(-2.32249 0.435516 -0.0526055)
(-2.27415 0.35082 -0.0589113)
(-2.20382 0.294307 -0.0789101)
(-2.05632 0.191985 -0.0934013)
(-1.76473 0.151883 -0.114096)
(-1.57465 0.00667411 -0.120749)
(-1.54338 -0.156849 -0.10604)
(-1.5451 -0.318992 -0.0947083)
(-1.5677 -0.494695 -0.0869503)
(-1.58179 -0.70126 -0.07893)
(-1.60266 -0.92881 -0.0706245)
(-1.60819 -1.17627 -0.0617642)
(-1.59994 -1.42706 -0.049711)
(-1.54976 -1.64812 -0.0370717)
(-1.46096 -1.80626 -0.0215492)
(-1.33071 -1.83216 -0.0133758)
(-1.19447 -1.74425 -0.00180196)
(-1.15521 -1.41528 0.0110693)
(-0.945642 -0.935631 0.0375961)
(-0.526978 -0.488045 0.0766327)
(-0.210525 -0.0835983 0.105105)
(-0.0736434 0.144228 0.109117)
(-0.0260115 0.204792 0.0823173)
(-0.00543533 0.0954537 0.0322978)
(0.00850225 -0.0518771 0.0898589)
(-0.0275447 0.0244783 0.147531)
(-0.121652 0.201144 0.169324)
(-0.246102 0.444813 0.159987)
(-0.409561 0.697523 0.127131)
(-0.592319 0.922638 0.0832923)
(-0.880222 1.06255 0.0379951)
(-1.2695 1.04132 0.0213629)
(-1.58853 0.997011 -0.00801058)
(-1.81311 1.00433 -0.0353303)
(-1.98157 0.986063 -0.0636967)
(-2.08731 0.929143 -0.0797883)
(-2.14743 0.844926 -0.0917667)
(-2.1703 0.737071 -0.0905093)
(-2.15719 0.617902 -0.0817561)
(-2.10462 0.489387 -0.065798)
(-2.02199 0.388183 -0.062937)
(-1.92257 0.305684 -0.0701624)
(-1.81872 0.265981 -0.0946797)
(-1.64058 0.199062 -0.111363)
(-1.39466 0.181196 -0.140432)
(-1.25436 0.00978835 -0.132174)
(-1.24302 -0.133715 -0.123504)
(-1.25667 -0.292772 -0.110913)
(-1.2857 -0.457548 -0.101729)
(-1.31861 -0.652782 -0.0915158)
(-1.36261 -0.873499 -0.0804994)
(-1.40668 -1.1242 -0.068541)
(-1.45236 -1.39715 -0.0547734)
(-1.4789 -1.67248 -0.0411764)
(-1.47334 -1.91882 -0.0249768)
(-1.41696 -2.07185 -0.0155707)
(-1.30478 -2.07572 -0.00653373)
(-1.21805 -1.91511 0.000807465)
(-1.11171 -1.45297 0.0141464)
(-0.773161 -0.876755 0.0417502)
(-0.331176 -0.35333 0.0808725)
(-0.0869507 0.0445157 0.0961804)
(-0.0125204 0.149136 0.0796882)
(0.00243503 0.0816061 0.0327092)
(-0.00107265 -0.00984256 0.106091)
(-0.0567925 0.111363 0.169365)
(-0.162242 0.321429 0.185725)
(-0.312593 0.580396 0.162285)
(-0.496097 0.819051 0.117785)
(-0.756302 1.0042 0.0667993)
(-1.10337 1.03206 0.033442)
(-1.40108 1.02881 -0.00242497)
(-1.63312 1.06219 -0.033749)
(-1.79169 1.05744 -0.0686468)
(-1.8782 1.01017 -0.0979983)
(-1.92188 0.936466 -0.120763)
(-1.94245 0.84278 -0.132058)
(-1.94023 0.726671 -0.125795)
(-1.91699 0.591407 -0.103042)
(-1.84704 0.436585 -0.0620592)
(-1.72868 0.318747 -0.0381024)
(-1.57201 0.243822 -0.0313251)
(-1.42175 0.243921 -0.0679672)
(-1.23516 0.249806 -0.128883)
(-1.07045 0.219695 -0.165722)
(-0.999062 0.027788 -0.150744)
(-0.985846 -0.10915 -0.139613)
(-1.00128 -0.259742 -0.125623)
(-1.02713 -0.413523 -0.113754)
(-1.06268 -0.590107 -0.101539)
(-1.1115 -0.793722 -0.0879094)
(-1.16901 -1.03002 -0.0734824)
(-1.23821 -1.30235 -0.0574987)
(-1.30647 -1.5992 -0.0418857)
(-1.36221 -1.90035 -0.0271377)
(-1.38195 -2.15443 -0.0146757)
(-1.34451 -2.2976 -0.00665171)
(-1.24692 -2.25629 -0.000929168)
(-1.16343 -1.96528 0.00483718)
(-0.939261 -1.35407 0.0171214)
(-0.455057 -0.670141 0.0471718)
(-0.126686 -0.126115 0.0718817)
(-0.034456 0.0866426 0.0733976)
(0.00856038 0.0688618 0.030715)
(-0.0106366 0.0401484 0.115118)
(-0.0879386 0.221733 0.185581)
(-0.216362 0.452772 0.195179)
(-0.375707 0.696253 0.161897)
(-0.584231 0.911623 0.109338)
(-0.881288 1.02669 0.0602439)
(-1.18432 1.06861 0.0125257)
(-1.42566 1.11506 -0.0219031)
(-1.58803 1.11767 -0.0604629)
(-1.65739 1.07775 -0.0989811)
(-1.68589 1.01233 -0.138633)
(-1.69125 0.934365 -0.167135)
(-1.69985 0.848422 -0.181668)
(-1.71161 0.736239 -0.161858)
(-1.71564 0.600989 -0.110864)
(-1.64214 0.435997 -0.0386202)
(-1.47087 0.308697 -0.0161224)
(-1.23193 0.207017 -0.0725756)
(-1.03436 0.223454 -0.160726)
(-0.905469 0.315988 -0.224509)
(-0.853266 0.293816 -0.235518)
(-0.822086 0.059667 -0.184114)
(-0.78743 -0.0847947 -0.159647)
(-0.802326 -0.226585 -0.141856)
(-0.817385 -0.372021 -0.125161)
(-0.846939 -0.528049 -0.110753)
(-0.889411 -0.710478 -0.0941393)
(-0.944249 -0.922188 -0.0773653)
(-1.01744 -1.17624 -0.0589963)
(-1.10095 -1.47053 -0.0415915)
(-1.19046 -1.79727 -0.0250695)
(-1.26231 -2.12125 -0.0116978)
(-1.29259 -2.37997 -0.0035184)
(-1.25733 -2.48849 0.00152207)
(-1.15999 -2.3617 0.00397848)
(-1.01999 -1.88938 0.00794462)
(-0.654524 -1.10513 0.023462)
(-0.207634 -0.416739 0.056074)
(-0.0394744 0.021375 0.0530642)
(0.00942748 0.0518435 0.0269313)
(-0.0140291 0.0997254 0.12444)
(-0.106022 0.342037 0.196773)
(-0.249635 0.591402 0.19986)
(-0.420377 0.832362 0.156874)
(-0.66748 1.01799 0.1009)
(-0.954483 1.09697 0.0477208)
(-1.20867 1.16028 -0.00247055)
(-1.37519 1.17087 -0.0390057)
(-1.44932 1.13906 -0.0858868)
(-1.45697 1.07135 -0.133895)
(-1.43961 1.00394 -0.185886)
(-1.42384 0.945064 -0.228252)
(-1.44385 0.890275 -0.251255)
(-1.48782 0.813393 -0.232687)
(-1.51732 0.664494 -0.200394)
(-1.37305 0.363692 -0.18432)
(-1.07654 0.0149968 -0.245647)
(-0.838345 -0.167093 -0.252687)
(-0.804384 -0.0347385 -0.259435)
(-0.809917 0.32034 -0.370575)
(-0.790781 0.35225 -0.34741)
(-0.735547 0.0416798 -0.216405)
(-0.661927 -0.101753 -0.171475)
(-0.661277 -0.213385 -0.157496)
(-0.664047 -0.350121 -0.134506)
(-0.680394 -0.483361 -0.118549)
(-0.71137 -0.644764 -0.0986028)
(-0.753183 -0.827949 -0.0795562)
(-0.816165 -1.05467 -0.0589519)
(-0.894993 -1.32644 -0.0395098)
(-0.992411 -1.65168 -0.0216916)
(-1.09045 -2.00781 -0.00799957)
(-1.1683 -2.35173 0.00117837)
(-1.1901 -2.5966 0.00503323)
(-1.13528 -2.63109 0.00573679)
(-1.00338 -2.34535 0.00617692)
(-0.768229 -1.62225 0.0115614)
(-0.306212 -0.712096 0.0285481)
(-0.0393007 -0.0956893 0.0474752)
(-0.0159017 0.0355562 0.0244073)
(-0.0154046 0.170369 0.130404)
(-0.115764 0.470732 0.204904)
(-0.269156 0.73296 0.203333)
(-0.463872 0.964823 0.154472)
(-0.727756 1.10965 0.0950456)
(-0.968103 1.18646 0.0362931)
(-1.15143 1.22599 -0.0110632)
(-1.2486 1.19932 -0.0546075)
(-1.25859 1.12783 -0.109509)
(-1.21421 1.04591 -0.170642)
(-1.15884 0.992084 -0.244538)
(-1.12571 0.96637 -0.313981)
(-1.15113 0.959713 -0.372879)
(-1.213 0.862456 -0.401803)
(-1.18052 0.521213 -0.409571)
(-0.826841 -0.0381047 -0.256571)
(-0.47619 -0.220845 0.0210845)
(-0.446654 -0.0441886 0.15063)
(-0.615629 0.219933 -0.0619422)
(-0.729085 0.559646 -0.376415)
(-0.660512 0.431628 -0.367902)
(-0.585069 -0.00272194 -0.18225)
(-0.551324 -0.135859 -0.159143)
(-0.539627 -0.210197 -0.162807)
(-0.547147 -0.338442 -0.140251)
(-0.553175 -0.452197 -0.123754)
(-0.576367 -0.596106 -0.101179)
(-0.603812 -0.753471 -0.0797221)
(-0.652571 -0.950535 -0.0570693)
(-0.716994 -1.19163 -0.035677)
(-0.806144 -1.49538 -0.0161553)
(-0.90869 -1.85617 -0.0016155)
(-1.01224 -2.24876 0.00711423)
(-1.08292 -2.6028 0.0116297)
(-1.08288 -2.80243 0.0109986)
(-0.978186 -2.69394 0.008285)
(-0.78213 -2.14315 0.00798009)
(-0.417754 -1.12186 0.0159791)
(-0.0804314 -0.264708 0.0253191)
(-0.0160281 0.0106492 0.0161481)
(-0.0130958 0.237218 0.132984)
(-0.114847 0.592168 0.208333)
(-0.279014 0.86627 0.204064)
(-0.499322 1.0727 0.152551)
(-0.74104 1.20116 0.0901585)
(-0.926142 1.2725 0.0289263)
(-1.05491 1.26835 -0.0152282)
(-1.08825 1.19389 -0.0656006)
(-1.04817 1.09176 -0.130167)
(-0.954317 1.00274 -0.206116)
(-0.854582 0.966584 -0.313738)
(-0.785075 0.988634 -0.431191)
(-0.81568 1.01437 -0.563393)
(-0.86276 0.818807 -0.584104)
(-0.663304 0.357572 -0.199615)
(-0.0971235 0.151083 0.564989)
(0.0551133 0.420383 0.771881)
(-0.27998 0.643445 0.434862)
(-0.631289 0.657469 -0.0113785)
(-0.68473 0.722309 -0.397784)
(-0.420655 0.47197 -0.383912)
(-0.398837 0.0053687 -0.208655)
(-0.459723 -0.13671 -0.185098)
(-0.440274 -0.206023 -0.183185)
(-0.461668 -0.329801 -0.155585)
(-0.457771 -0.433938 -0.132549)
(-0.476514 -0.565469 -0.105303)
(-0.489908 -0.703133 -0.0796741)
(-0.524219 -0.873426 -0.0545315)
(-0.569894 -1.08086 -0.0309868)
(-0.641975 -1.35206 -0.00961709)
(-0.732306 -1.69221 0.0047969)
(-0.841534 -2.1024 0.01592)
(-0.939039 -2.52825 0.019906)
(-0.986431 -2.86536 0.0178327)
(-0.933617 -2.94196 0.0125509)
(-0.759226 -2.5771 0.00985393)
(-0.457667 -1.62625 0.0119718)
(-0.102424 -0.50228 0.0274985)
(-0.0169856 -0.0402223 0.0182477)
(-0.00950445 0.300412 0.133875)
(-0.106103 0.711688 0.210687)
(-0.28976 0.987535 0.207331)
(-0.506098 1.17578 0.153839)
(-0.707054 1.30399 0.0926381)
(-0.849706 1.34062 0.0309184)
(-0.928069 1.28939 -0.0139906)
(-0.917121 1.1694 -0.0693304)
(-0.836268 1.0384 -0.1409)
(-0.6916 0.93503 -0.232988)
(-0.528401 0.914716 -0.383529)
(-0.438723 0.987096 -0.583843)
(-0.54074 1.02625 -0.721005)
(-0.372922 0.860321 -0.330514)
(0.206563 0.732578 0.588372)
(0.300097 0.757057 1.13911)
(-0.211395 0.934003 0.824065)
(-0.711614 0.854977 0.295062)
(-0.850197 0.575501 -0.155855)
(-0.697389 0.487029 -0.429607)
(-0.292447 0.347096 -0.44749)
(-0.292286 -0.00377316 -0.302737)
(-0.389274 -0.136415 -0.254827)
(-0.364111 -0.210029 -0.217252)
(-0.393623 -0.327458 -0.180486)
(-0.384031 -0.4257 -0.143628)
(-0.40102 -0.547611 -0.110589)
(-0.404644 -0.671274 -0.0786175)
(-0.427309 -0.819801 -0.050592)
(-0.456805 -0.997637 -0.0244231)
(-0.508989 -1.23264 -0.00158933)
(-0.583153 -1.5432 0.0143144)
(-0.68623 -1.9459 0.026386)
(-0.79537 -2.41169 0.0302374)
(-0.873812 -2.85438 0.0266619)
(-0.873601 -3.0994 0.0190278)
(-0.7427 -2.92903 0.0120636)
(-0.486859 -2.11287 0.0118037)
(-0.127207 -0.844047 0.0177653)
(-0.00668453 -0.118511 0.0163841)
(-0.00252948 0.345836 0.131998)
(-0.10303 0.808138 0.210476)
(-0.2883 1.08626 0.209019)
(-0.482512 1.27843 0.156179)
(-0.653122 1.38822 0.097235)
(-0.761077 1.38402 0.0376958)
(-0.804552 1.28252 -0.00725595)
(-0.763694 1.12512 -0.0641415)
(-0.653566 0.962488 -0.138393)
(-0.449982 0.832253 -0.236177)
(-0.225585 0.836445 -0.468581)
(-0.247385 0.963936 -0.712867)
(-0.350685 1.09399 -0.509912)
(0.306076 1.05267 0.250359)
(0.367031 0.970207 0.730654)
(-0.198001 0.960224 0.695672)
(-0.835707 1.01993 0.527384)
(-1.04217 0.780347 0.236342)
(-0.658636 0.463871 -0.108843)
(-0.544675 0.348328 -0.394574)
(-0.197498 0.281659 -0.455806)
(-0.191242 -0.00419561 -0.365927)
(-0.31641 -0.131526 -0.324537)
(-0.291256 -0.206282 -0.257281)
(-0.329944 -0.323235 -0.211895)
(-0.317899 -0.421312 -0.158727)
(-0.337189 -0.539041 -0.118308)
(-0.334977 -0.654239 -0.078501)
(-0.350823 -0.78574 -0.0468261)
(-0.366888 -0.93819 -0.0173278)
(-0.403335 -1.13684 0.00629511)
(-0.458958 -1.4115 0.0249357)
(-0.547891 -1.78853 0.0377548)
(-0.656042 -2.26806 0.0418049)
(-0.753225 -2.78292 0.0370068)
(-0.792372 -3.17558 0.0266426)
(-0.705199 -3.19191 0.0170491)
(-0.486986 -2.5471 0.0127606)
(-0.13754 -1.20752 0.0162176)
(0.0245044 -0.162232 0.016391)
(-0.000803416 0.385873 0.128973)
(-0.0947116 0.898996 0.210271)
(-0.265154 1.20172 0.212319)
(-0.437416 1.38802 0.163556)
(-0.585042 1.47366 0.106845)
(-0.670385 1.42453 0.0506648)
(-0.690028 1.28104 0.00818616)
(-0.635246 1.08707 -0.0483879)
(-0.51285 0.880701 -0.109939)
(-0.24299 0.719878 -0.217475)
(-0.0618574 0.751051 -0.533334)
(-0.238191 0.988349 -0.608077)
(-0.0600611 1.23045 -0.103118)
(0.103792 0.905604 -0.0567542)
(-0.471526 0.681915 -0.439796)
(-0.783777 0.807074 0.0251833)
(-1.16044 0.592383 0.301263)
(-0.817046 0.358666 -0.00267131)
(-0.344302 0.278456 -0.304238)
(-0.488665 0.291056 -0.381867)
(-0.0804362 0.226478 -0.430301)
(-0.0740728 -0.00938517 -0.431682)
(-0.249249 -0.122464 -0.409783)
(-0.226332 -0.186219 -0.303802)
(-0.274741 -0.309299 -0.249889)
(-0.260944 -0.413438 -0.174633)
(-0.282032 -0.530458 -0.126465)
(-0.275114 -0.642286 -0.0774513)
(-0.285729 -0.763238 -0.0421801)
(-0.29233 -0.899314 -0.00858511)
(-0.316678 -1.06875 0.0168168)
(-0.357916 -1.30813 0.0368224)
(-0.434042 -1.65269 0.0500663)
(-0.53665 -2.12794 0.0544989)
(-0.642095 -2.69111 0.0486653)
(-0.709126 -3.20781 0.0358562)
(-0.660784 -3.40285 0.022158)
(-0.477471 -2.9384 0.0155028)
(-0.149983 -1.60569 0.0154097)
(0.0549954 -0.244414 0.0176739)
(0.000131273 0.402427 0.125881)
(-0.0770261 0.970657 0.209374)
(-0.231154 1.30023 0.214596)
(-0.387331 1.4764 0.17226)
(-0.516984 1.53286 0.117074)
(-0.591135 1.44747 0.06902)
(-0.604145 1.2704 0.0281907)
(-0.560465 1.04593 -0.0239233)
(-0.4358 0.797552 -0.0555078)
(-0.154661 0.617489 -0.203258)
(-0.195888 0.636159 -0.511475)
(-0.515014 1.12019 -0.348758)
(-0.410173 1.22029 -0.304065)
(-0.859693 0.290785 -1.42873)
(-1.13478 0.044279 -1.3015)
(-0.790096 0.0818381 0.0816491)
(-0.833965 0.12719 0.111555)
(-0.395069 0.22393 -0.266612)
(-0.196341 0.20169 -0.177744)
(-0.394595 0.181806 -0.212514)
(0.107384 0.0487787 -0.353462)
(0.0729545 -0.00782478 -0.539719)
(-0.152353 -0.124613 -0.526729)
(-0.149052 -0.1561 -0.352327)
(-0.223809 -0.277844 -0.28497)
(-0.20508 -0.394284 -0.190486)
(-0.227038 -0.519056 -0.132585)
(-0.218804 -0.631859 -0.0748369)
(-0.230205 -0.743492 -0.0358482)
(-0.23057 -0.86426 0.00113733)
(-0.246086 -1.00482 0.0286829)
(-0.273527 -1.20824 0.0492589)
(-0.334286 -1.51453 0.0637745)
(-0.427251 -1.97612 0.0678191)
(-0.539616 -2.57063 0.0610706)
(-0.629243 -3.19145 0.0452717)
(-0.618834 -3.55326 0.0281146)
(-0.467627 -3.26771 0.0173702)
(-0.168473 -1.96658 0.0165813)
(0.0619109 -0.292436 0.0188126)
(0.00383775 0.431268 0.12128)
(-0.0442451 1.04999 0.202142)
(-0.184075 1.41319 0.22093)
(-0.336216 1.57996 0.182672)
(-0.451977 1.61319 0.131059)
(-0.523843 1.49925 0.0873157)
(-0.540849 1.29858 0.0493137)
(-0.519083 1.05096 -0.000195383)
(-0.409497 0.766274 0.00587011)
(-0.281426 0.547415 -0.161209)
(-0.725732 0.672296 -0.371985)
(-1.27138 1.59298 -0.297092)
(-1.59597 1.39951 -0.728763)
(-1.3891 -0.142028 -1.27667)
(-0.682798 -0.359953 -0.0263911)
(-0.397425 0.0331257 0.984379)
(-0.222222 0.545638 0.329839)
(0.0401774 0.783613 0.297717)
(0.118622 0.375263 0.410166)
(-0.031496 0.0752654 0.0608492)
(0.371318 -0.0397186 -0.231192)
(0.249561 0.0195463 -0.63365)
(-0.0673828 -0.076083 -0.642594)
(-0.0478461 -0.114402 -0.392476)
(-0.17552 -0.225547 -0.304636)
(-0.165993 -0.339233 -0.183638)
(-0.182182 -0.460823 -0.126004)
(-0.161865 -0.584924 -0.0668586)
(-0.167927 -0.704719 -0.0272363)
(-0.162518 -0.829411 0.0121207)
(-0.17256 -0.961069 0.0404627)
(-0.195072 -1.13773 0.0615368)
(-0.247322 -1.39831 0.0753383)
(-0.329714 -1.82602 0.0799173)
(-0.436983 -2.43073 0.0731952)
(-0.538955 -3.14619 0.0551951)
(-0.563114 -3.67516 0.0332295)
(-0.446453 -3.58124 0.0197694)
(-0.174075 -2.35532 0.0174915)
(0.0664442 -0.41117 0.0193381)
(-0.00588664 0.446175 0.120297)
(-0.0437137 1.14232 0.207882)
(-0.150974 1.52448 0.219732)
(-0.28835 1.69977 0.194546)
(-0.393398 1.71231 0.143437)
(-0.461658 1.57917 0.108974)
(-0.479836 1.36251 0.0779055)
(-0.492271 1.10873 0.0382747)
(-0.465037 0.840622 0.075232)
(-0.579916 0.632345 -0.136276)
(-1.43333 1.00052 -0.369617)
(-2.068 2.27589 -0.658034)
(-1.9844 1.60456 -0.720499)
(-0.541023 0.000407707 0.0268959)
(-0.151709 0.15212 0.967914)
(-0.538016 0.254435 1.34283)
(0.391656 0.888974 1.18777)
(0.720845 1.38994 1.09691)
(0.673102 0.84152 0.321231)
(0.559403 0.137926 -0.108294)
(0.709488 0.0898223 -0.20675)
(0.482101 0.184738 -0.737787)
(0.044869 0.0110134 -0.778001)
(0.0370275 -0.0583279 -0.448216)
(-0.106315 -0.166527 -0.33585)
(-0.102499 -0.280008 -0.170753)
(-0.136253 -0.384646 -0.0937615)
(-0.13219 -0.493257 -0.0332406)
(-0.14319 -0.597728 -0.000437339)
(-0.134001 -0.70787 0.0308912)
(-0.131283 -0.824763 0.0559916)
(-0.132425 -0.984418 0.0782248)
(-0.163845 -1.22323 0.0935857)
(-0.225676 -1.63239 0.0969935)
(-0.333558 -2.24179 0.0875904)
(-0.453461 -3.01914 0.0659093)
(-0.514896 -3.71022 0.0398343)
(-0.450336 -3.82387 0.0226495)
(-0.211375 -2.69398 0.0206265)
(0.0467287 -0.466256 0.0218081)
(0.0100173 0.569987 0.10843)
(-0.0150467 1.33356 0.196127)
(-0.0950062 1.72938 0.213533)
(-0.210363 1.92641 0.20121)
(-0.32009 1.93458 0.154757)
(-0.37954 1.80177 0.127829)
(-0.39233 1.58758 0.0900817)
(-0.43212 1.35214 0.0457218)
(-0.495242 1.11319 0.0956236)
(-0.878556 0.932128 -0.201947)
(-1.86778 1.35685 -0.638779)
(-2.11531 2.36036 -1.19002)
(-1.27308 0.8302 -0.467374)
(0.232844 -0.0273716 0.662005)
(-0.184652 0.347092 0.723123)
(-0.86773 -0.97722 0.660347)
(0.469161 -0.707764 1.58544)
(1.00767 0.995139 1.89775)
(1.22018 1.27606 -0.0629119)
(1.17854 0.553989 -1.10719)
(1.02587 0.348812 -0.432053)
(0.640173 0.602511 -0.756098)
(0.0145926 0.317667 -0.856226)
(0.104998 0.090176 -0.493981)
(-0.0515316 -0.0632147 -0.361563)
(-0.0441462 -0.231253 -0.16985)
(-0.0588913 -0.341282 -0.0933512)
(-0.0490912 -0.436934 -0.0202509)
(-0.0642445 -0.515246 0.0152797)
(-0.0669673 -0.596541 0.0489499)
(-0.0845214 -0.685122 0.0728336)
(-0.108901 -0.805563 0.081628)
(-0.158524 -0.991131 0.0937814)
(-0.211394 -1.32508 0.0985893)
(-0.257953 -1.89671 0.0989676)
(-0.341513 -2.77018 0.0752634)
(-0.427052 -3.62747 0.0441179)
(-0.411044 -3.99946 0.0230394)
(-0.206811 -3.07206 0.0199656)
(0.0588327 -0.676358 0.0189133)
(-0.0117244 0.778167 0.10988)
(-0.0176289 1.60905 0.196532)
(-0.0610556 2.0415 0.219405)
(-0.141886 2.21193 0.200216)
(-0.23689 2.22778 0.160597)
(-0.294211 2.08887 0.1361)
(-0.311926 1.87803 0.0842654)
(-0.388885 1.63397 0.0354843)
(-0.528046 1.40728 0.0707446)
(-1.0547 1.1842 -0.313077)
(-2.03537 1.38145 -0.869199)
(-1.71644 1.78109 -1.12697)
(-0.238991 -0.213725 0.389515)
(1.05299 -0.32276 1.54341)
(0.384645 -0.446188 0.304599)
(-0.895777 -2.95692 -0.336408)
(-0.210777 -2.74714 0.669606)
(-0.21033 -0.844023 1.74445)
(-0.0347031 0.540615 0.941205)
(0.182422 1.35994 -0.61236)
(0.207679 1.61533 -0.0422558)
(0.511351 1.38936 -0.0446583)
(-0.113877 0.65995 -0.548065)
(-0.053293 0.168538 -0.520217)
(-0.118986 0.0165232 -0.444638)
(-0.0590147 -0.224649 -0.193126)
(-0.0102469 -0.337158 -0.071417)
(0.0158264 -0.419547 -0.00414659)
(0.00795952 -0.475539 0.0319426)
(0.00259135 -0.547713 0.0638215)
(-0.0119993 -0.617405 0.08657)
(-0.0271041 -0.708661 0.0977247)
(-0.0602166 -0.823447 0.106282)
(-0.132017 -1.06358 0.103529)
(-0.301625 -1.52846 0.0904005)
(-0.401666 -2.33276 0.0769544)
(-0.424638 -3.3117 0.0480608)
(-0.429944 -3.95675 0.0251525)
(-0.270436 -3.3273 0.0224033)
(0.00822784 -0.997286 0.0248104)
(-0.0335153 0.787947 0.0950617)
(-0.0304527 1.69405 0.181056)
(-0.0384909 2.17191 0.207511)
(-0.083553 2.34791 0.191288)
(-0.149348 2.36039 0.151608)
(-0.208973 2.23968 0.11976)
(-0.23534 2.02551 0.0583471)
(-0.315663 1.79799 -0.0105132)
(-0.489605 1.62086 -0.0219784)
(-0.984207 1.34664 -0.471453)
(-2.22254 1.2596 -1.2561)
(-1.72824 1.01588 -1.12719)
(0.301428 -0.875286 1.26684)
(1.9986 -0.883087 2.59845)
(1.45805 -1.17843 0.483594)
(-0.593349 -3.56104 -1.24553)
(-0.865946 -3.27428 -0.855276)
(-1.98197 -2.57433 0.680821)
(-2.67864 -1.58638 3.02564)
(-1.96227 0.655331 2.87231)
(-0.90816 1.68776 1.61749)
(0.447466 2.36071 1.67934)
(-0.0283736 2.00316 1.42466)
(-0.568632 0.749475 0.216828)
(-0.338263 0.0790274 -0.60765)
(-0.14395 -0.289245 -0.33752)
(0.0716247 -0.39541 -0.0278699)
(0.127163 -0.434303 0.039966)
(0.10674 -0.454694 0.0651241)
(0.0808254 -0.52302 0.0798269)
(0.0532798 -0.584552 0.0935931)
(0.034887 -0.667285 0.102729)
(0.0091046 -0.755422 0.116074)
(-0.0224138 -0.964104 0.109029)
(-0.136965 -1.31695 0.0965152)
(-0.353173 -1.96905 0.0700412)
(-0.487249 -2.88822 0.0463476)
(-0.492795 -3.66044 0.0212925)
(-0.378395 -3.30363 0.0162236)
(-0.080945 -1.06062 0.0202272)
(-0.0206007 0.763193 0.0850784)
(-0.00560405 1.69048 0.168358)
(0.00471807 2.18479 0.194087)
(-0.0188983 2.38564 0.181499)
(-0.0474022 2.38955 0.131986)
(-0.0947693 2.28828 0.0816011)
(-0.142435 2.10928 0.0173141)
(-0.207875 1.94252 -0.081176)
(-0.390739 1.79069 -0.154964)
(-0.77784 1.65379 -0.78203)
(-2.67463 1.2911 -1.87764)
(-2.25928 0.344369 -1.19973)
(-0.173026 -1.4799 1.7308)
(1.7517 -1.7554 2.44695)
(1.67464 -1.84832 0.70329)
(-1.44678 -3.14088 -1.97261)
(-1.83399 -2.4819 -1.68678)
(-2.4792 -2.3335 0.740966)
(-3.74706 -3.36412 3.69212)
(-2.92659 -1.74962 5.70322)
(-1.45699 -0.406381 5.39787)
(0.479369 0.913978 4.56191)
(1.00535 2.66894 3.54218)
(-0.56052 1.96326 1.0466)
(-0.458962 0.606515 -0.701688)
(0.147999 -0.1724 -0.580799)
(0.435971 -0.450879 -0.0472541)
(0.336039 -0.440423 0.0992659)
(0.211047 -0.457871 0.112686)
(0.148652 -0.522218 0.111392)
(0.119223 -0.572914 0.116313)
(0.108061 -0.636721 0.119645)
(0.0681084 -0.703695 0.121404)
(0.0394222 -0.863567 0.115636)
(-0.0558673 -1.19172 0.0993996)
(-0.231115 -1.79372 0.0714759)
(-0.399977 -2.58242 0.0416932)
(-0.473516 -3.37331 0.0223363)
(-0.383876 -3.20869 0.014589)
(-0.126048 -1.12138 0.0188847)
(-0.00966066 0.74286 0.071195)
(0.0180952 1.65057 0.148307)
(0.0390644 2.1607 0.176417)
(0.0369447 2.38425 0.16541)
(0.0261277 2.39906 0.112504)
(0.00499216 2.29188 0.0437247)
(-0.00411632 2.12747 -0.0372141)
(-0.0649594 1.99223 -0.195211)
(-0.163809 1.87459 -0.301177)
(-0.444553 1.89078 -1.00435)
(-2.54423 1.53213 -2.28416)
(-2.85941 0.694202 -1.77884)
(-1.17848 -0.685135 1.30494)
(1.4575 -1.70909 2.82802)
(1.97552 -2.08953 1.26582)
(-1.95267 -3.38514 -2.32118)
(-3.40855 -2.26617 -2.19181)
(-2.05428 -1.26144 0.903127)
(-2.42821 -2.70664 1.90425)
(-2.25856 -2.57428 2.94652)
(-1.39725 -1.06734 5.4594)
(-0.873328 0.0579342 6.24309)
(0.33341 1.99716 4.43073)
(0.671768 2.32056 1.38354)
(0.980006 0.55657 -0.433906)
(1.44523 -0.421574 -0.690715)
(1.17335 -0.436845 -0.216308)
(0.636781 -0.271331 0.0958597)
(0.31886 -0.367955 0.155713)
(0.22036 -0.498896 0.143981)
(0.192438 -0.570835 0.143401)
(0.183425 -0.635709 0.139858)
(0.152692 -0.695567 0.132703)
(0.108025 -0.8238 0.121346)
(0.0122516 -1.10725 0.10303)
(-0.127413 -1.67054 0.0750928)
(-0.297279 -2.4355 0.0436557)
(-0.408454 -3.25467 0.0197223)
(-0.379252 -3.25548 0.0113601)
(-0.145985 -1.34473 0.0175872)
(-0.0031183 0.688795 0.0577684)
(0.0418784 1.56742 0.129337)
(0.0830772 2.09786 0.158671)
(0.0957888 2.34844 0.148777)
(0.10257 2.38136 0.0994281)
(0.0921831 2.2871 0.0212241)
(0.0939658 2.11656 -0.0636223)
(0.0882605 1.95314 -0.25129)
(0.0366043 1.86562 -0.347745)
(0.0240987 1.79387 -0.969844)
(-1.38519 1.76211 -2.0948)
(-2.27898 1.67024 -2.64168)
(-1.13451 -0.209643 0.175299)
(2.33749 -2.07737 3.83669)
(4.46114 -1.96995 2.27385)
(0.396121 -3.70592 -1.29636)
(-3.78142 -3.14141 -2.66397)
(-2.09609 -1.25691 -0.558249)
(-0.687197 -1.76305 0.134941)
(-0.557064 -2.13959 -1.8114)
(-0.927535 -0.239533 -1.43321)
(-2.13165 1.29101 1.82701)
(-1.32671 2.16881 3.22231)
(1.8456 2.36222 1.60594)
(2.53002 0.849122 0.332319)
(1.66554 -0.0901797 -0.248927)
(0.850051 0.198122 -0.268374)
(0.38428 0.208548 0.0589665)
(0.223507 -0.174913 0.237636)
(0.227913 -0.453952 0.222275)
(0.227818 -0.574961 0.192903)
(0.234092 -0.632587 0.176263)
(0.204873 -0.668652 0.157166)
(0.157396 -0.782252 0.13211)
(0.0447945 -1.0265 0.120232)
(-0.0525768 -1.5608 0.0818663)
(-0.201378 -2.35004 0.0462203)
(-0.33624 -3.26518 0.0188899)
(-0.352139 -3.39808 0.0104644)
(-0.144865 -1.5752 0.0196955)
(0.00250484 0.631177 0.0458696)
(0.0599858 1.47517 0.11108)
(0.117049 2.02164 0.141847)
(0.144018 2.29454 0.134995)
(0.163431 2.34527 0.0907107)
(0.164345 2.25461 0.0126477)
(0.177016 2.08369 -0.071724)
(0.202117 1.89973 -0.239272)
(0.164552 1.74955 -0.337092)
(0.386527 1.6431 -0.693558)
(-0.303011 1.44732 -1.57975)
(-0.955911 1.74427 -2.62465)
(-0.713376 0.0485135 -1.58906)
(1.22072 -1.2379 2.13911)
(5.60802 -1.72664 3.11055)
(3.34677 -2.61522 1.36108)
(-2.56174 -3.25366 -1.6212)
(-2.54243 -1.82603 -1.96838)
(-0.430311 -1.47235 -0.950376)
(0.224643 -2.66134 -2.21403)
(-0.98484 -1.00327 -3.72176)
(-2.41205 1.6286 -2.53128)
(-1.75859 2.59399 -0.218087)
(0.974923 2.97894 -0.111199)
(1.62318 2.48972 0.178567)
(0.628856 0.937201 0.25474)
(0.220479 0.461543 -0.0673209)
(0.183175 0.273321 -0.00538496)
(0.225109 -0.147663 0.278333)
(0.299754 -0.485669 0.336255)
(0.322381 -0.638729 0.26012)
(0.342193 -0.696406 0.21958)
(0.295428 -0.724334 0.174719)
(0.235929 -0.824325 0.137702)
(0.108095 -1.03035 0.119454)
(0.0088767 -1.53233 0.0918359)
(-0.142884 -2.37406 0.0433065)
(-0.279118 -3.40547 0.0166375)
(-0.334816 -3.69834 0.00595502)
(-0.142137 -1.91501 0.0164464)
(0.00566984 0.558314 0.0348634)
(0.072559 1.35883 0.0939924)
(0.144576 1.91871 0.125408)
(0.183603 2.21558 0.121557)
(0.2126 2.28755 0.0838525)
(0.218855 2.20527 0.00894053)
(0.234144 2.03683 -0.0722871)
(0.256296 1.83099 -0.218097)
(0.254092 1.62961 -0.331093)
(0.372561 1.48636 -0.535838)
(0.128079 1.04581 -1.05061)
(-0.437764 1.18518 -1.89403)
(-0.742577 1.25599 -2.27196)
(-0.904953 0.761919 -0.635492)
(3.16027 -0.223964 3.37837)
(4.14495 -1.05547 3.59038)
(-0.231602 -2.4755 0.478399)
(-1.36784 -2.16811 -1.96347)
(-0.527715 -1.32083 -1.6363)
(-0.0784409 -2.17829 -1.02635)
(-1.19617 -1.86929 -1.6387)
(-1.73292 0.147063 -2.28411)
(-0.943439 1.16871 -2.18857)
(0.353323 1.95704 -1.45011)
(1.06379 2.16254 -0.265115)
(0.623981 0.656759 -0.59166)
(0.441589 -0.111178 -1.41921)
(0.687696 -0.0863499 -0.893575)
(0.639503 -0.219109 -0.0962221)
(0.505717 -0.534551 0.194189)
(0.393904 -0.747256 0.27318)
(0.390529 -0.827288 0.291301)
(0.351047 -0.869633 0.241982)
(0.289141 -0.989635 0.189645)
(0.16864 -1.17336 0.152094)
(0.0540264 -1.66413 0.120094)
(-0.10608 -2.51802 0.0598549)
(-0.22163 -3.68133 0.0253285)
(-0.28763 -4.18088 0.00937125)
(-0.119568 -2.53048 0.0178367)
(0.0133481 0.491425 0.0260642)
(0.0873973 1.24358 0.0803248)
(0.165364 1.81406 0.111488)
(0.214112 2.13784 0.111155)
(0.250166 2.23542 0.0793164)
(0.261885 2.16771 0.0120047)
(0.273145 2.00728 -0.0658618)
(0.287115 1.79362 -0.188707)
(0.282677 1.57289 -0.311111)
(0.302761 1.37777 -0.443525)
(0.234443 1.01291 -0.743007)
(-0.436024 0.87362 -1.20093)
(-0.969902 1.54663 -1.37607)
(-1.26583 1.47632 -0.83678)
(-0.483491 1.36597 1.28838)
(1.66708 0.115554 2.82348)
(1.80287 -1.97182 1.96286)
(1.20276 -2.48035 -0.0311207)
(1.21294 -1.81677 -0.63918)
(0.312266 -2.163 -0.146227)
(-0.936797 -2.00695 -0.320889)
(-1.52278 -1.66778 -0.696285)
(-1.3264 -1.66837 -1.23992)
(-0.672278 -0.0106618 -0.88146)
(0.293272 2.29047 0.558991)
(0.706316 1.77171 0.25557)
(1.13765 0.511769 -1.20529)
(1.48956 0.524752 -1.46462)
(1.26896 0.269935 -0.834492)
(0.742776 -0.453915 -0.120975)
(0.413777 -0.775698 0.28827)
(0.4137 -0.816512 0.324058)
(0.373015 -0.850877 0.264272)
(0.315457 -1.00562 0.207315)
(0.192377 -1.17224 0.155917)
(0.0684161 -1.67696 0.125931)
(-0.0981855 -2.53685 0.0611253)
(-0.214612 -3.85118 0.0255053)
(-0.307568 -4.59423 0.00710621)
(-0.142823 -3.15265 0.0165535)
(0.0185817 0.427991 0.0214608)
(0.100656 1.11004 0.0704369)
(0.18229 1.68299 0.0999225)
(0.235595 2.03052 0.102997)
(0.277584 2.15648 0.0776086)
(0.294012 2.11111 0.0192919)
(0.303136 1.96682 -0.0516376)
(0.304632 1.7639 -0.161127)
(0.299845 1.55211 -0.274593)
(0.258401 1.35741 -0.405255)
(0.225491 1.12409 -0.557214)
(-0.311546 0.877622 -0.900316)
(-1.1821 1.54946 -1.00553)
(-1.54237 2.16863 -0.712215)
(-1.65525 2.14799 0.0370599)
(-0.347203 0.934477 1.73939)
(1.20175 -1.24104 2.2331)
(2.77271 -2.36407 1.6708)
(3.51339 -2.44649 1.59849)
(1.86853 -2.25908 0.928325)
(-0.348144 -1.87107 0.111442)
(-1.73869 -1.97479 0.612416)
(-1.68245 -2.51383 1.06157)
(-1.08129 -0.888932 0.946167)
(-0.0797364 1.62746 1.58827)
(1.08459 1.96399 1.64179)
(1.84386 1.06359 0.30575)
(1.70879 0.750513 -0.957504)
(1.17124 0.126967 -0.852211)
(0.637663 -0.689035 -0.047647)
(0.400032 -0.818563 0.312728)
(0.425013 -0.708961 0.294753)
(0.360521 -0.720995 0.235718)
(0.338038 -0.894648 0.191841)
(0.208946 -1.08204 0.152423)
(0.0793889 -1.53542 0.126755)
(-0.0848732 -2.3887 0.059955)
(-0.209491 -3.80397 0.0252978)
(-0.32848 -4.78329 0.00632373)
(-0.170583 -3.60403 0.0153935)
(0.0145403 0.379021 0.01894)
(0.103065 0.992758 0.0641816)
(0.197017 1.5558 0.0931103)
(0.250195 1.93316 0.0990338)
(0.297719 2.0915 0.0802659)
(0.323475 2.07499 0.0317044)
(0.336097 1.95108 -0.0330277)
(0.339031 1.76413 -0.128578)
(0.33434 1.57074 -0.23601)
(0.309061 1.38919 -0.357249)
(0.238568 1.25311 -0.500162)
(0.0264424 1.05846 -0.73059)
(-0.711202 1.42564 -1.20179)
(-1.52389 2.19996 -1.35201)
(-1.53235 2.23827 -0.339002)
(-0.472899 1.39012 1.48102)
(0.0789824 -0.126678 2.03573)
(1.11527 -1.4585 1.96936)
(1.93884 -0.976972 2.0054)
(1.57421 -0.536815 0.673977)
(0.518445 -0.824066 0.0481731)
(-0.916677 -2.03171 1.05162)
(-0.494776 -2.75256 1.76631)
(0.188734 -0.456699 0.944685)
(0.748723 1.18347 0.0766014)
(1.17333 0.709966 0.813803)
(1.41351 0.0409015 1.45179)
(1.62253 0.240786 0.179964)
(1.23701 -0.00742914 -0.462286)
(0.751785 -0.658256 -0.0446551)
(0.508288 -0.716138 0.23566)
(0.441302 -0.579811 0.213018)
(0.347568 -0.603715 0.178817)
(0.309892 -0.780237 0.154313)
(0.227147 -0.967027 0.127113)
(0.114171 -1.4085 0.109769)
(-0.084851 -2.1905 0.0515463)
(-0.196828 -3.67337 0.0180788)
(-0.349573 -4.8511 0.000796445)
(-0.192271 -3.9864 0.00975858)
(0.012926 0.319249 0.0182792)
(0.0977071 0.866165 0.0606147)
(0.206327 1.39296 0.0888606)
(0.266099 1.79179 0.0982133)
(0.309584 1.98043 0.0857078)
(0.343347 1.99491 0.046424)
(0.362902 1.89135 -0.0122584)
(0.372915 1.72708 -0.092622)
(0.378487 1.54463 -0.188818)
(0.372779 1.37582 -0.301292)
(0.341606 1.24739 -0.438576)
(0.246915 1.16305 -0.6366)
(-0.0343151 1.22083 -1.08929)
(-0.693242 1.63008 -1.6669)
(-1.11955 1.79917 -1.65514)
(-0.54916 1.38393 -0.733942)
(-0.390757 0.311687 0.23061)
(-1.04979 -0.668241 0.49726)
(-1.32109 -0.283355 0.415305)
(-0.0527 -0.0368238 0.82001)
(0.698996 -0.223512 1.18564)
(0.417221 -1.66053 0.656813)
(0.0265897 -2.94268 -0.0917083)
(0.132301 0.348721 -2.1733)
(1.56041 3.63284 -5.19152)
(1.96904 3.12146 -4.30897)
(1.6207 1.75495 -0.854637)
(1.85633 1.74465 0.0800354)
(1.72178 1.04998 -0.390657)
(1.17319 -0.0919012 -0.106576)
(0.672296 -0.400184 0.143566)
(0.489493 -0.445525 0.13718)
(0.354242 -0.505576 0.120933)
(0.310815 -0.687985 0.114658)
(0.207524 -0.833664 0.106186)
(0.141142 -1.2922 0.08285)
(-0.0522269 -1.99301 0.0452039)
(-0.178435 -3.50943 0.00591565)
(-0.357574 -4.84918 -0.00621387)
(-0.217272 -4.33061 0.00201425)
(0.00783202 0.27786 0.0195789)
(0.0790492 0.773989 0.0600555)
(0.196297 1.26658 0.0873546)
(0.275071 1.67005 0.0991969)
(0.317916 1.89479 0.0935166)
(0.356503 1.93884 0.0621945)
(0.390006 1.86089 0.0135101)
(0.412416 1.70822 -0.0535441)
(0.42759 1.53233 -0.13381)
(0.44161 1.35523 -0.228604)
(0.444445 1.21175 -0.343474)
(0.435766 1.1075 -0.487777)
(0.368531 1.09249 -0.755043)
(0.20789 1.12941 -1.20425)
(0.0406027 1.11475 -1.83679)
(-0.0811138 0.97137 -2.45789)
(-0.358922 0.743891 -2.14919)
(-1.54364 0.419561 -1.58006)
(-2.48777 -0.251185 -0.924849)
(-1.60939 -0.490189 0.463198)
(-0.416942 0.0251138 0.111312)
(0.388617 -0.453495 -1.82296)
(-0.160138 -1.63796 -2.02566)
(-0.639348 -0.610201 -1.82223)
(1.13602 1.53057 -4.16417)
(2.31525 1.99198 -5.77051)
(1.76742 1.95176 -3.65946)
(1.50151 2.05147 -0.694827)
(1.51656 1.19836 0.00862902)
(1.10787 0.142157 0.0691438)
(0.661875 -0.173204 0.0804508)
(0.504606 -0.324998 0.0635454)
(0.360194 -0.406819 0.0699072)
(0.317618 -0.586139 0.0767495)
(0.191436 -0.715893 0.0781427)
(0.166857 -1.13437 0.0618656)
(-0.0292074 -1.80949 0.0266046)
(-0.151485 -3.32233 -0.0066872)
(-0.37435 -4.81716 -0.0154029)
(-0.242425 -4.67699 -0.00646369)
(0.0120049 0.223659 0.0223541)
(0.0673547 0.663358 0.0619311)
(0.171202 1.11473 0.0887864)
(0.272065 1.49062 0.10087)
(0.32348 1.7379 0.100998)
(0.357483 1.81341 0.0781108)
(0.397172 1.76581 0.0397563)
(0.430936 1.62872 -0.0160716)
(0.457117 1.46825 -0.0802411)
(0.481381 1.29132 -0.15506)
(0.503969 1.13328 -0.240922)
(0.523183 0.994729 -0.341403)
(0.537568 0.88845 -0.483437)
(0.56222 0.8282 -0.696612)
(0.565288 0.716553 -1.05887)
(0.458782 0.525472 -1.48477)
(0.136181 0.695459 -1.74859)
(-0.621128 1.09409 -1.70354)
(-1.46721 0.945958 -1.42893)
(-1.85851 0.508525 -0.932822)
(-1.48041 0.351427 -1.48522)
(-0.546144 -0.0897364 -2.19223)
(-0.240596 -0.642216 -1.26521)
(-0.285653 -0.847837 0.197826)
(0.354998 -0.654349 0.465069)
(0.915349 -0.599785 -0.648327)
(0.799042 -0.304387 -0.801458)
(0.910236 0.385947 0.130997)
(0.998342 0.490281 0.262215)
(0.833291 0.11782 0.0690077)
(0.59359 -0.0803194 0.0272509)
(0.520224 -0.238422 0.0248038)
(0.37346 -0.313624 0.0374084)
(0.341401 -0.494189 0.0491882)
(0.197282 -0.604465 0.0547513)
(0.185861 -1.0051 0.039847)
(-0.015349 -1.63751 0.0102781)
(-0.117009 -3.15547 -0.018268)
(-0.400788 -4.7847 -0.0212558)
(-0.274223 -5.08467 -0.0132252)
(0.00724316 0.198525 0.0248329)
(0.0344872 0.608186 0.0682905)
(0.111192 1.03097 0.0908103)
(0.232041 1.39613 0.10526)
(0.320247 1.62666 0.107729)
(0.367053 1.7322 0.093665)
(0.404606 1.70491 0.0644376)
(0.453344 1.58089 0.018927)
(0.495149 1.43139 -0.0298716)
(0.526464 1.25949 -0.0870831)
(0.557734 1.09735 -0.147785)
(0.582501 0.944357 -0.211852)
(0.602185 0.807826 -0.284358)
(0.622906 0.685567 -0.364452)
(0.640873 0.556729 -0.482181)
(0.58754 0.455888 -0.606056)
(0.490946 0.479924 -0.621468)
(0.385514 0.656544 -0.500118)
(0.295328 0.882203 -0.413803)
(0.166811 0.844679 -0.438626)
(0.234505 0.475865 -0.526168)
(0.482784 -0.0364035 -0.358151)
(0.669337 -0.424318 0.0229368)
(0.807697 -0.38156 0.308398)
(0.869372 -0.146991 0.688201)
(0.967894 -0.155331 0.732654)
(0.863161 -0.106906 0.490392)
(0.779326 0.154053 0.310888)
(0.707632 0.245791 0.120197)
(0.705293 0.0995516 0.021808)
(0.567483 -0.000474555 0.00179665)
(0.55029 -0.149973 0.00528038)
(0.400507 -0.195629 0.0189083)
(0.384885 -0.369481 0.0306964)
(0.210867 -0.461271 0.0363138)
(0.217865 -0.84603 0.025949)
(-0.00670331 -1.45005 -0.00621197)
(-0.0821236 -2.93898 -0.0242182)
(-0.443353 -4.74642 -0.0244126)
(-0.311006 -5.5825 -0.0188257)
(0.0180701 0.16983 0.0308042)
(0.0328716 0.512187 0.0726153)
(0.0591333 0.923984 0.100435)
(0.158066 1.23446 0.108112)
(0.27142 1.4433 0.115795)
(0.354382 1.54365 0.104953)
(0.386505 1.55355 0.086069)
(0.44353 1.44662 0.0506668)
(0.506466 1.32217 0.0120125)
(0.552484 1.16928 -0.0304981)
(0.596513 1.02446 -0.074299)
(0.630685 0.882062 -0.117865)
(0.660055 0.75669 -0.159921)
(0.680043 0.64388 -0.197512)
(0.695326 0.537923 -0.221866)
(0.68764 0.449473 -0.232809)
(0.663264 0.425652 -0.196873)
(0.650137 0.431329 -0.116229)
(0.729181 0.448762 -0.0280297)
(0.928017 0.386585 0.0301887)
(1.28614 0.256384 0.0659915)
(1.51639 0.0686353 0.0897247)
(1.44975 -0.110882 0.0673963)
(1.34808 -0.169323 0.0321757)
(1.24209 -0.0375435 0.0888827)
(1.26324 0.0082976 0.10377)
(1.17675 0.0723923 0.0181297)
(0.991757 0.130678 -0.0296058)
(0.753324 0.144896 -0.0271501)
(0.755671 0.0644981 -0.0226951)
(0.616987 0.0331596 -0.0159375)
(0.623884 -0.0643093 -0.00744102)
(0.474829 -0.0902073 -0.00136178)
(0.470953 -0.259326 0.0143819)
(0.277558 -0.33153 0.0141492)
(0.272036 -0.710282 0.0118733)
(0.0454642 -1.25484 -0.0104999)
(-0.0128554 -2.73377 -0.0416367)
(-0.501423 -4.6972 -0.0319745)
(-0.3119 -6.19463 -0.0300546)
(-0.0190674 0.143029 0.0345786)
(-0.0290981 0.537269 0.0815072)
(-0.0271159 0.879454 0.106115)
(0.0278749 1.22715 0.117317)
(0.172469 1.38664 0.124262)
(0.326429 1.43181 0.11652)
(0.387322 1.45099 0.106917)
(0.443027 1.34581 0.0791622)
(0.533304 1.23715 0.0508754)
(0.597155 1.0997 0.0181614)
(0.660364 0.970748 -0.0128019)
(0.706293 0.842584 -0.0436994)
(0.748999 0.729794 -0.0714417)
(0.779389 0.627138 -0.0954422)
(0.807513 0.538626 -0.113331)
(0.822201 0.462864 -0.12472)
(0.826185 0.414388 -0.120796)
(0.823321 0.387485 -0.0965707)
(0.872951 0.379191 -0.0393507)
(1.00424 0.3137 0.0250614)
(1.32234 0.209723 0.0787852)
(1.58848 0.0904846 0.093164)
(1.56982 -0.00113074 0.060886)
(1.54966 -0.0640729 0.013463)
(1.46689 -0.0212279 0.0261389)
(1.46183 -0.014179 0.0322416)
(1.38556 0.0523357 0.00501526)
(1.20736 0.0720427 -0.012714)
(0.920457 0.132044 -0.0134296)
(0.894654 0.092934 -0.0128923)
(0.753698 0.0990566 -0.0058339)
(0.784667 0.017604 -0.00259786)
(0.593104 0.00826632 0.00686073)
(0.620689 -0.130683 0.0116684)
(0.389772 -0.182704 0.0152251)
(0.416615 -0.517782 0.00250447)
(0.131729 -0.972931 -0.0116484)
(0.152452 -2.41788 -0.0563128)
(-0.486212 -4.57926 -0.0209918)
(-0.247922 -6.79111 -0.0383706)
(0.0539783 0.278671 0.0437514)
(0.000607514 0.472262 0.0890646)
(-0.0994715 0.761162 0.112965)
(-0.0457508 0.97729 0.122436)
(-0.00387343 1.19306 0.130828)
(0.191148 1.18608 0.123988)
(0.32684 1.21185 0.121801)
(0.400708 1.12735 0.103005)
(0.522662 1.04525 0.0836309)
(0.613401 0.939199 0.0611081)
(0.703078 0.837028 0.0383624)
(0.768641 0.735921 0.0166308)
(0.826612 0.648254 -0.00319742)
(0.868335 0.568863 -0.0196338)
(0.905643 0.500264 -0.0323014)
(0.931685 0.431541 -0.041847)
(0.950151 0.374532 -0.0425065)
(0.972364 0.328602 -0.0253441)
(1.03025 0.303122 -0.00384126)
(1.15896 0.232629 0.0164143)
(1.46878 0.181398 0.0368637)
(1.72392 0.114079 0.0465843)
(1.70805 0.0493601 0.0420235)
(1.71969 0.000173403 0.0282396)
(1.6597 0.0300798 0.0314409)
(1.69113 0.0303157 0.0303365)
(1.60655 0.110267 0.0176564)
(1.44443 0.105846 0.00560643)
(1.13843 0.170703 0.00661596)
(1.13705 0.139751 0.00602731)
(0.976999 0.183634 0.00806793)
(1.04509 0.089585 0.012904)
(0.863692 0.0896547 0.0130807)
(0.949137 -0.0301136 0.012113)
(0.689286 -0.0990849 0.0132661)
(0.789516 -0.380081 0.00702139)
(0.425717 -0.783234 -0.0139461)
(0.530261 -2.04139 -0.0309959)
(-0.21241 -4.36937 -0.0444702)
(0.0389827 -7.31334 -0.0465724)
(-0.226125 0.0721202 0.0544647)
(-0.306298 0.694588 0.108898)
(-0.296388 0.870633 0.125809)
(-0.259651 1.01894 0.130868)
(-0.121665 1.04638 0.140842)
(0.0574734 1.06169 0.132884)
(0.236658 1.00515 0.139015)
(0.350248 0.942764 0.125941)
(0.503791 0.867447 0.115921)
(0.620453 0.791358 0.102176)
(0.739574 0.714501 0.0885026)
(0.83359 0.638643 0.0738831)
(0.919131 0.572108 0.0602157)
(0.985134 0.511772 0.0477372)
(1.03876 0.459959 0.0368174)
(1.0791 0.404492 0.0265108)
(1.11935 0.351435 0.025493)
(1.16936 0.30566 0.0343822)
(1.2363 0.28388 0.0487706)
(1.3912 0.213417 0.0641137)
(1.73668 0.178453 0.0851022)
(2.05015 0.11874 0.0912062)
(2.07292 0.0709544 0.0857033)
(2.16415 0.0332949 0.0711511)
(2.12941 0.0483067 0.0681613)
(2.18689 0.0284305 0.0590576)
(2.09215 0.116806 0.0530778)
(1.97019 0.0944056 0.0461314)
(1.64036 0.183042 0.0424633)
(1.70241 0.162958 0.0442958)
(1.53497 0.225642 0.0419554)
(1.67348 0.153015 0.0389405)
(1.46172 0.155536 0.0381872)
(1.6294 0.0303006 0.0387865)
(1.30014 -0.023491 0.0337879)
(1.48303 -0.245388 0.0203541)
(1.02588 -0.49837 0.00526957)
(1.20747 -1.45153 -0.0196993)
(0.373051 -3.8699 -0.0318188)
(0.496756 -7.20162 -0.0458754)
(-0.732386 0.798886 0.0942773)
(-0.609432 0.397796 0.136473)
(-0.755066 0.578238 0.133722)
(-0.464047 0.601316 0.133878)
(-0.314561 0.618497 0.139885)
(-0.0027152 0.663844 0.138091)
(0.220787 0.636316 0.144404)
(0.43996 0.610448 0.139358)
(0.664562 0.568585 0.135338)
(0.867479 0.526591 0.128936)
(1.06508 0.479253 0.121686)
(1.24173 0.433456 0.11341)
(1.4005 0.393537 0.105629)
(1.53777 0.360624 0.0976844)
(1.64974 0.337957 0.0914474)
(1.75124 0.306496 0.0862498)
(1.8519 0.266558 0.0870028)
(1.99792 0.23789 0.0934813)
(2.1668 0.222987 0.103367)
(2.4544 0.143091 0.109311)
(2.86916 0.112763 0.120658)
(3.2917 0.061859 0.123892)
(3.36771 0.0164154 0.117053)
(3.50474 -0.0288512 0.108471)
(3.44127 -0.0130963 0.0951787)
(3.56259 -0.0197984 0.0888518)
(3.41911 0.0625347 0.0849809)
(3.38362 0.0620616 0.0786682)
(3.00108 0.140895 0.0746019)
(3.16387 0.155035 0.0736349)
(2.95054 0.207832 0.0700615)
(3.25802 0.151426 0.0650214)
(2.96967 0.120228 0.0588996)
(3.30405 0.0330634 0.0549741)
(2.83137 -0.0334484 0.0453668)
(3.17969 -0.21554 0.0389052)
(2.51117 -0.501271 0.0255675)
(2.87241 -1.12998 0.0100705)
(1.88028 -3.15011 -0.0108356)
(1.33039 -6.09002 -0.0311272)
(1.16132 1.48653 0.0436528)
(1.72512 0.734193 0.0602534)
(2.46074 0.575844 0.0638573)
(2.87255 0.35445 0.0641505)
(3.1504 0.280421 0.0671966)
(3.39055 0.228578 0.0647861)
(3.6108 0.211646 0.0670958)
(3.82159 0.190954 0.0650637)
(4.04761 0.177579 0.0644717)
(4.279 0.163267 0.0629527)
(4.49975 0.148679 0.0614059)
(4.71273 0.133598 0.058578)
(4.893 0.120414 0.0567179)
(5.05646 0.10946 0.0540701)
(5.17454 0.104024 0.0530997)
(5.29775 0.0981789 0.0531541)
(5.42294 0.0787009 0.0573192)
(5.63374 0.0592817 0.0636708)
(5.8815 0.0742302 0.0780084)
(6.33626 0.0558031 0.0895139)
(6.75541 0.0321273 0.103376)
(7.22634 0.0104389 0.111007)
(7.26361 -0.00624364 0.105366)
(7.33624 -0.0526531 0.0893718)
(7.15734 -0.0384721 0.0797677)
(7.1743 -0.0535938 0.0679077)
(6.83207 -0.0330839 0.0624154)
(6.81701 -0.018393 0.056052)
(6.34187 0.0136357 0.0530782)
(6.57771 0.0336514 0.0522177)
(6.32588 0.0686868 0.0496747)
(6.75803 0.0705384 0.0460952)
(6.44893 0.0499219 0.0423622)
(6.84524 0.018089 0.0390013)
(6.3091 -0.0123479 0.0342432)
(6.53765 -0.102233 0.0258983)
(5.65985 -0.257636 0.0210227)
(5.69071 -0.583067 0.0122688)
(4.26738 -1.14007 0.00524416)
(2.77812 -2.52653 -0.0112886)
(0.000463142 -0.000168293 0.00504805)
(0.0213911 -0.00308103 0.00980711)
(0.0504638 -0.00302199 0.013227)
(0.0718902 -0.00118935 0.0161837)
(0.0816514 0.000794746 0.0183907)
(0.069261 -0.0019098 0.01954)
(0.0554727 0.00419275 0.0197185)
(0.0429547 0.00261888 0.0213892)
(0.0241551 0.0113063 0.0216856)
(0.00233308 0.0148353 0.0219329)
(-0.0354132 0.0159073 0.0241011)
(-0.0892508 0.0117116 0.0269991)
(-0.145793 0.00643427 0.0291774)
(-0.219782 0.00497927 0.0314924)
(-0.290281 0.0114222 0.0322945)
(-0.374211 0.0209901 0.0342505)
(-0.451084 0.0127602 0.0356605)
(-0.552196 0.00509075 0.0369278)
(-0.606739 -0.0129106 0.0440199)
(-0.775182 -0.0143818 0.0524651)
(-0.734889 0.0239611 0.056395)
(-0.545993 0.0260245 0.0647655)
(-0.545655 0.0331073 0.0681434)
(-0.540694 0.0317615 0.0724521)
(-0.530839 0.0186999 0.0811865)
(-0.474027 0.0160995 0.0878264)
(-0.408409 0.00785471 0.0991166)
(-0.303817 -0.00327056 0.1045)
(-0.185495 -0.0103447 0.110888)
(-0.0528309 -0.0222891 0.107706)
(0.0787055 0.0158357 0.108705)
(0.280878 0.00429403 0.095521)
(0.425091 0.00998949 0.0872559)
(0.448948 0.0429347 0.0677835)
(0.418879 0.0431521 0.054515)
(0.32735 0.0455278 0.0429623)
(0.220472 0.0300861 0.0355306)
(0.118687 0.0185365 0.0302651)
(0.0388937 0.0018477 0.0209259)
(-0.00319581 -0.00932193 0.0072556)
(0.00647214 -0.0118916 0.0095)
(0.0438434 -0.0266226 0.0212757)
(0.0890642 -0.0261064 0.0297103)
(0.12095 -0.0157755 0.0373474)
(0.128363 -0.00659675 0.0440337)
(0.111626 0.00117124 0.0477246)
(0.0825827 0.0124557 0.0518103)
(0.0444261 0.0362855 0.0579675)
(-0.0106113 0.0547284 0.0567094)
(-0.0979095 0.0665035 0.0588877)
(-0.221154 0.082303 0.0564672)
(-0.378476 0.104629 0.0609651)
(-0.54363 0.129002 0.0623642)
(-0.727076 0.155324 0.0652811)
(-0.911336 0.181727 0.0684978)
(-1.12487 0.176353 0.0745248)
(-1.30887 0.153267 0.0811837)
(-1.48819 0.123242 0.0878765)
(-1.60233 0.0929346 0.0976029)
(-1.7492 0.0809252 0.106101)
(-1.62379 0.115822 0.108501)
(-1.38037 0.103084 0.117426)
(-1.29382 0.0917307 0.11869)
(-1.19908 0.0522294 0.126482)
(-1.10345 0.0168068 0.130937)
(-0.975616 -0.0291238 0.136059)
(-0.852662 -0.0755803 0.145952)
(-0.684482 -0.106141 0.152682)
(-0.507165 -0.124159 0.156071)
(-0.280653 -0.140133 0.151684)
(-0.103556 -0.110265 0.151458)
(0.158467 -0.0469462 0.135163)
(0.445893 -0.016415 0.144179)
(0.576003 0.0388948 0.136575)
(0.61007 0.130893 0.119158)
(0.556869 0.154567 0.103915)
(0.43058 0.157995 0.0908292)
(0.269385 0.127334 0.0779581)
(0.110491 0.0820966 0.0565245)
(0.0141786 0.0269859 0.0216309)
(0.00970475 -0.0281113 0.0123538)
(0.0517636 -0.0562394 0.0284779)
(0.097102 -0.0524054 0.0414818)
(0.11967 -0.0286271 0.0532307)
(0.114875 -0.000609919 0.0616165)
(0.0768846 0.0266883 0.0721036)
(0.0323257 0.07315 0.0755564)
(-0.0488691 0.127033 0.0827399)
(-0.187446 0.184922 0.0799726)
(-0.349171 0.234335 0.0784005)
(-0.546076 0.286094 0.0758383)
(-0.780763 0.342127 0.0756656)
(-1.0279 0.392198 0.077207)
(-1.2835 0.41768 0.0805809)
(-1.54006 0.39903 0.083899)
(-1.78089 0.35166 0.0880159)
(-1.9606 0.310862 0.0887335)
(-2.12756 0.259193 0.0900369)
(-2.22912 0.225048 0.0915381)
(-2.32184 0.182164 0.0924067)
(-2.12504 0.176682 0.0888608)
(-1.85222 0.145301 0.0819853)
(-1.71914 0.0844379 0.0751394)
(-1.57637 0.00895799 0.0660307)
(-1.4864 -0.0820886 0.062731)
(-1.35809 -0.197967 0.0712527)
(-1.21491 -0.287385 0.0733556)
(-1.04087 -0.346902 0.0746705)
(-0.874401 -0.370478 0.083637)
(-0.66443 -0.356312 0.0868215)
(-0.451984 -0.337852 0.0913262)
(-0.194153 -0.238753 0.100878)
(0.0541081 -0.162678 0.105531)
(0.304758 -0.0488003 0.124253)
(0.461157 0.0766106 0.133042)
(0.464724 0.191003 0.128329)
(0.409867 0.233199 0.118101)
(0.269228 0.231131 0.104837)
(0.116722 0.175579 0.0769027)
(0.0142158 0.0822971 0.0297952)
(0.0117686 -0.0459799 0.0163235)
(0.0504443 -0.0821363 0.0377967)
(0.0810226 -0.0690497 0.0553216)
(0.0836551 -0.0257925 0.0743338)
(0.0479611 0.0279734 0.0840437)
(-0.00596443 0.10619 0.0952563)
(-0.0904411 0.19676 0.0976258)
(-0.23328 0.297076 0.0961502)
(-0.438263 0.411625 0.086319)
(-0.692598 0.507444 0.077409)
(-0.963684 0.579115 0.0711617)
(-1.2462 0.630565 0.0703705)
(-1.52563 0.636337 0.0706643)
(-1.80951 0.590902 0.0709222)
(-2.04877 0.525289 0.0686827)
(-2.24141 0.465167 0.0661285)
(-2.38299 0.412989 0.061755)
(-2.50904 0.34992 0.0531896)
(-2.57709 0.301633 0.0424279)
(-2.60192 0.226261 0.0331551)
(-2.35822 0.190936 0.0157871)
(-2.08882 0.116559 0.00562552)
(-1.93529 0.0146913 -0.0013612)
(-1.83602 -0.109711 -0.00259484)
(-1.77793 -0.264422 0.00798017)
(-1.66837 -0.415863 0.00886442)
(-1.54216 -0.549677 0.0133972)
(-1.37202 -0.659348 0.0159014)
(-1.20806 -0.715766 0.0204406)
(-1.03824 -0.705191 0.0275527)
(-0.870824 -0.633066 0.039756)
(-0.651198 -0.515716 0.0514497)
(-0.415283 -0.397148 0.0757814)
(-0.163734 -0.218691 0.103044)
(0.0968779 -0.0564 0.125683)
(0.235824 0.142034 0.134422)
(0.250795 0.244805 0.133289)
(0.185232 0.283009 0.119414)
(0.0762143 0.24398 0.0896495)
(0.00939412 0.12518 0.0350197)
(0.0113627 -0.0658733 0.0235311)
(0.0382358 -0.100316 0.051004)
(0.0441147 -0.0691388 0.0748573)
(0.0126362 0.00778594 0.0930108)
(-0.0399344 0.115681 0.105686)
(-0.13246 0.250231 0.110492)
(-0.270667 0.394169 0.105756)
(-0.463973 0.547399 0.0912557)
(-0.737098 0.691103 0.0743757)
(-1.04268 0.794848 0.0619382)
(-1.34563 0.8389 0.0549615)
(-1.65449 0.822508 0.0526046)
(-1.94462 0.758561 0.0504157)
(-2.17719 0.681051 0.0461516)
(-2.34734 0.6196 0.0356899)
(-2.47794 0.549382 0.0258857)
(-2.56839 0.484756 0.011629)
(-2.65018 0.408074 0.00330008)
(-2.68161 0.345 -0.00665939)
(-2.64919 0.237263 -0.0154899)
(-2.37343 0.180097 -0.027363)
(-2.10173 0.0681918 -0.0371726)
(-1.97848 -0.0599996 -0.0377757)
(-1.92589 -0.242328 -0.0341934)
(-1.89444 -0.410297 -0.0325285)
(-1.8304 -0.591036 -0.0278993)
(-1.74284 -0.76957 -0.0201114)
(-1.60783 -0.93527 -0.0117909)
(-1.45823 -1.06134 2.07692e-05)
(-1.28376 -1.11392 0.00814648)
(-1.13782 -1.06898 0.0164833)
(-1.00183 -0.92157 0.02731)
(-0.852123 -0.702307 0.0462501)
(-0.591793 -0.475851 0.0802198)
(-0.27106 -0.228701 0.113039)
(-0.0390514 0.016214 0.140601)
(0.062519 0.18572 0.136528)
(0.0662547 0.285478 0.125818)
(0.0277647 0.266248 0.0934861)
(-0.00211207 0.135769 0.0361617)
(0.00896273 -0.086389 0.0413675)
(0.0158451 -0.10425 0.07752)
(-0.00984253 -0.0366691 0.105034)
(-0.0623385 0.103758 0.12073)
(-0.154439 0.269419 0.126017)
(-0.286067 0.459944 0.120144)
(-0.462273 0.647412 0.0995414)
(-0.694727 0.830564 0.0752549)
(-1.00744 0.955499 0.0523703)
(-1.37072 0.975459 0.0400935)
(-1.7101 0.939831 0.0320988)
(-1.98813 0.871417 0.024138)
(-2.18942 0.800829 0.0120408)
(-2.33833 0.733327 0.00313922)
(-2.43905 0.657071 -0.00840896)
(-2.49991 0.566965 -0.0128439)
(-2.52834 0.482445 -0.0180103)
(-2.54859 0.393626 -0.0239275)
(-2.52801 0.323698 -0.0369779)
(-2.43274 0.206449 -0.0452512)
(-2.13959 0.148476 -0.0666488)
(-1.88891 0.0228445 -0.0822578)
(-1.82042 -0.133723 -0.0786705)
(-1.80321 -0.312578 -0.07499)
(-1.80716 -0.486323 -0.0709667)
(-1.78642 -0.687101 -0.0656003)
(-1.75714 -0.895375 -0.0563665)
(-1.69048 -1.10681 -0.042817)
(-1.59817 -1.29932 -0.0253689)
(-1.46159 -1.43405 -0.0096419)
(-1.31442 -1.4823 0.00091749)
(-1.16062 -1.40075 0.0118884)
(-1.10518 -1.20109 0.0262475)
(-0.97228 -0.817144 0.0511688)
(-0.625493 -0.502143 0.0891764)
(-0.303959 -0.169043 0.122691)
(-0.0875759 0.0980341 0.141621)
(-0.00431565 0.254153 0.130375)
(-0.00857491 0.257181 0.0985473)
(-0.00259355 0.126464 0.0387416)
(0.00563406 -0.0841673 0.0551754)
(-0.00740435 -0.0586161 0.101322)
(-0.0498333 0.0613944 0.125998)
(-0.140267 0.253661 0.139965)
(-0.266552 0.470136 0.13548)
(-0.4289 0.696614 0.113049)
(-0.626869 0.904408 0.0830181)
(-0.914059 1.04248 0.0502355)
(-1.3199 1.02553 0.0366011)
(-1.6764 0.980939 0.0218346)
(-1.92338 0.935609 0.00313185)
(-2.10357 0.894441 -0.0136367)
(-2.2321 0.832369 -0.0274822)
(-2.3079 0.743675 -0.0359174)
(-2.33736 0.643503 -0.0388301)
(-2.33518 0.536285 -0.0376245)
(-2.30764 0.447374 -0.0413987)
(-2.27084 0.363179 -0.0475048)
(-2.20849 0.300616 -0.066994)
(-2.07139 0.192271 -0.0776727)
(-1.78317 0.144323 -0.103211)
(-1.58156 0.00448382 -0.113207)
(-1.54571 -0.160778 -0.111629)
(-1.55115 -0.323425 -0.104807)
(-1.57729 -0.49779 -0.0984269)
(-1.59237 -0.700372 -0.0887823)
(-1.61073 -0.921153 -0.0769949)
(-1.60958 -1.16127 -0.0627943)
(-1.59361 -1.40239 -0.04664)
(-1.53751 -1.61642 -0.0278335)
(-1.44388 -1.76194 -0.0157273)
(-1.30944 -1.78011 -0.00216268)
(-1.17694 -1.68582 0.00897722)
(-1.13527 -1.35307 0.0248833)
(-0.922255 -0.884973 0.0537639)
(-0.511531 -0.453619 0.0920517)
(-0.200636 -0.0679805 0.122018)
(-0.0664551 0.1528 0.124729)
(-0.0241495 0.208992 0.0952906)
(-0.00511809 0.0973594 0.0369174)
(0.00930916 -0.0410427 0.0669784)
(-0.0198622 0.0325236 0.120856)
(-0.102216 0.201217 0.15132)
(-0.215005 0.433251 0.155986)
(-0.367338 0.67966 0.136794)
(-0.542838 0.905681 0.104086)
(-0.818809 1.05574 0.0661594)
(-1.21506 1.0478 0.0452309)
(-1.55238 0.997229 0.0190515)
(-1.78892 0.99688 -0.00733749)
(-1.95647 0.97653 -0.0338606)
(-2.06373 0.918925 -0.0619803)
(-2.12306 0.832028 -0.075607)
(-2.13842 0.727427 -0.0814738)
(-2.12351 0.615546 -0.0795271)
(-2.07835 0.498445 -0.0687155)
(-2.00779 0.404607 -0.0665425)
(-1.92619 0.322205 -0.0678098)
(-1.83501 0.272509 -0.0903209)
(-1.66809 0.188912 -0.10255)
(-1.41231 0.159795 -0.139472)
(-1.26211 -0.00103725 -0.139692)
(-1.25168 -0.147389 -0.139072)
(-1.26448 -0.305945 -0.129934)
(-1.29671 -0.468853 -0.121491)
(-1.32969 -0.659543 -0.10953)
(-1.37269 -0.873527 -0.0951718)
(-1.41306 -1.11723 -0.0786963)
(-1.4552 -1.38344 -0.0593758)
(-1.47407 -1.64962 -0.0422922)
(-1.46603 -1.88682 -0.022652)
(-1.40358 -2.02622 -0.0109697)
(-1.28939 -2.02472 0.00137655)
(-1.2034 -1.85769 0.0107039)
(-1.09391 -1.39738 0.028185)
(-0.755634 -0.834275 0.0574831)
(-0.321709 -0.325437 0.0964192)
(-0.0833811 0.0548238 0.113156)
(-0.0111199 0.155771 0.0935922)
(0.00259203 0.0835826 0.0384285)
(-0.000108089 -0.00226118 0.084005)
(-0.0462561 0.116278 0.144757)
(-0.137996 0.316268 0.173823)
(-0.277368 0.567913 0.168006)
(-0.453519 0.806856 0.139261)
(-0.706217 0.998988 0.100562)
(-1.05804 1.03635 0.066139)
(-1.36948 1.02566 0.0291895)
(-1.61437 1.05825 -0.00559522)
(-1.77721 1.04809 -0.0430982)
(-1.86599 0.999335 -0.0830758)
(-1.90596 0.914487 -0.110226)
(-1.91507 0.817807 -0.130085)
(-1.90225 0.704759 -0.132487)
(-1.87079 0.587481 -0.11966)
(-1.80653 0.456451 -0.0922316)
(-1.70966 0.351886 -0.0719777)
(-1.58596 0.278659 -0.0654133)
(-1.46341 0.24513 -0.093864)
(-1.28584 0.215302 -0.125322)
(-1.09556 0.182806 -0.175718)
(-1.00379 0.00571223 -0.164857)
(-0.994476 -0.127782 -0.160753)
(-1.00997 -0.2775 -0.147837)
(-1.03832 -0.428263 -0.136237)
(-1.07407 -0.601412 -0.121669)
(-1.12212 -0.799372 -0.105044)
(-1.17715 -1.02951 -0.0872182)
(-1.24325 -1.29466 -0.0678658)
(-1.30857 -1.58244 -0.0484174)
(-1.35883 -1.87492 -0.030444)
(-1.37492 -2.11732 -0.0153468)
(-1.33222 -2.2512 -0.00345263)
(-1.23571 -2.20448 0.00501632)
(-1.15071 -1.91064 0.0133166)
(-0.924783 -1.30519 0.0300588)
(-0.445368 -0.638639 0.0609513)
(-0.121402 -0.108043 0.0882059)
(-0.0306949 0.0920552 0.082945)
(0.00811564 0.0708918 0.0346814)
(-0.00707755 0.0443241 0.0930618)
(-0.0729847 0.221697 0.162865)
(-0.187912 0.442958 0.18804)
(-0.33846 0.681867 0.174087)
(-0.542759 0.900372 0.138717)
(-0.844849 1.02329 0.0974643)
(-1.15932 1.06077 0.0527083)
(-1.40709 1.11207 0.0102841)
(-1.57656 1.10919 -0.0343264)
(-1.65559 1.06556 -0.0828862)
(-1.68244 0.987005 -0.128935)
(-1.67596 0.896967 -0.168962)
(-1.66879 0.802705 -0.192575)
(-1.6555 0.696046 -0.189602)
(-1.63751 0.574852 -0.158208)
(-1.57754 0.436116 -0.0967764)
(-1.44759 0.3226 -0.0583902)
(-1.27808 0.247527 -0.0455773)
(-1.1141 0.253288 -0.102229)
(-0.955566 0.27654 -0.170251)
(-0.858289 0.226386 -0.219711)
(-0.817197 0.02651 -0.188901)
(-0.79497 -0.105918 -0.177922)
(-0.810142 -0.247434 -0.161056)
(-0.827939 -0.388294 -0.145277)
(-0.858135 -0.542076 -0.12879)
(-0.900416 -0.72024 -0.109865)
(-0.953975 -0.92731 -0.0910208)
(-1.02487 -1.17504 -0.0705666)
(-1.10522 -1.46098 -0.0512101)
(-1.19085 -1.77703 -0.0319625)
(-1.25899 -2.08944 -0.0159406)
(-1.28515 -2.33747 -0.00347955)
(-1.24777 -2.43979 0.00467041)
(-1.14976 -2.30891 0.010841)
(-1.00898 -1.83992 0.018116)
(-0.642359 -1.06749 0.0371108)
(-0.204028 -0.395544 0.0662841)
(-0.0390518 0.0301671 0.0692567)
(0.0113572 0.055164 0.0330834)
(-0.0108466 0.103551 0.104497)
(-0.0910732 0.339395 0.177442)
(-0.222206 0.580018 0.197019)
(-0.385971 0.817224 0.173626)
(-0.633296 1.00625 0.132959)
(-0.933632 1.09177 0.0848687)
(-1.18924 1.15223 0.0337848)
(-1.36277 1.17054 -0.0124492)
(-1.4511 1.12802 -0.0655091)
(-1.46314 1.04861 -0.123304)
(-1.44304 0.963863 -0.185808)
(-1.41721 0.881642 -0.23684)
(-1.41259 0.810436 -0.270265)
(-1.42484 0.71839 -0.266167)
(-1.44136 0.612771 -0.220798)
(-1.38662 0.434903 -0.151523)
(-1.21982 0.242334 -0.119689)
(-0.972167 0.0974509 -0.120946)
(-0.799403 0.102843 -0.193291)
(-0.726813 0.27531 -0.274919)
(-0.734384 0.278632 -0.307213)
(-0.717818 0.0344594 -0.223358)
(-0.660261 -0.108243 -0.191686)
(-0.667847 -0.23107 -0.172926)
(-0.672174 -0.365075 -0.150589)
(-0.690938 -0.49826 -0.132545)
(-0.721867 -0.65683 -0.110851)
(-0.763673 -0.836792 -0.090981)
(-0.825126 -1.05827 -0.0699041)
(-0.901602 -1.32247 -0.0500792)
(-0.995271 -1.63755 -0.030922)
(-1.08933 -1.98214 -0.0141807)
(-1.16348 -2.31437 -0.00138703)
(-1.18251 -2.5499 0.00651482)
(-1.12645 -2.57966 0.0110794)
(-0.995505 -2.29637 0.0143163)
(-0.761229 -1.58233 0.0212866)
(-0.299906 -0.691018 0.0403739)
(-0.0367536 -0.0861994 0.0545216)
(-0.0158989 0.0379413 0.0280961)
(-0.0121167 0.171597 0.113857)
(-0.101175 0.465742 0.190146)
(-0.243336 0.720765 0.205258)
(-0.433561 0.951181 0.176144)
(-0.700795 1.10138 0.130234)
(-0.956032 1.18222 0.0779285)
(-1.14186 1.22804 0.0184506)
(-1.24475 1.19569 -0.0305888)
(-1.26877 1.11416 -0.0956148)
(-1.23088 1.01677 -0.168436)
(-1.18329 0.935247 -0.247021)
(-1.14364 0.875442 -0.321103)
(-1.15516 0.830302 -0.378951)
(-1.19556 0.762489 -0.398747)
(-1.24898 0.601922 -0.369725)
(-1.15714 0.279362 -0.254086)
(-0.851667 -0.0650331 -0.100326)
(-0.641946 -0.176877 -0.00598638)
(-0.672967 0.0125779 -0.135299)
(-0.750525 0.386911 -0.355782)
(-0.746581 0.373741 -0.375397)
(-0.652385 0.0103127 -0.211932)
(-0.56692 -0.138 -0.179093)
(-0.558369 -0.22821 -0.175141)
(-0.557334 -0.355684 -0.150476)
(-0.564455 -0.469092 -0.133043)
(-0.586414 -0.610539 -0.109059)
(-0.614326 -0.764962 -0.0879027)
(-0.662287 -0.957754 -0.0655766)
(-0.724963 -1.19227 -0.0453262)
(-0.811259 -1.48622 -0.0255706)
(-0.910643 -1.83545 -0.00900585)
(-1.00906 -2.21507 0.00380512)
(-1.07573 -2.55784 0.0120117)
(-1.07457 -2.75157 0.016416)
(-0.97125 -2.64444 0.0167262)
(-0.777879 -2.10202 0.0180332)
(-0.415275 -1.09439 0.0266581)
(-0.079711 -0.253522 0.0406125)
(-0.0150272 0.0146568 0.023943)
(-0.0102733 0.23697 0.120162)
(-0.101689 0.585784 0.198081)
(-0.255423 0.85459 0.210203)
(-0.473971 1.06151 0.178872)
(-0.724575 1.19707 0.125989)
(-0.917155 1.26941 0.0697491)
(-1.04686 1.27294 0.0070852)
(-1.09233 1.19074 -0.0484057)
(-1.06539 1.07783 -0.125239)
(-0.990551 0.969598 -0.209871)
(-0.91518 0.898277 -0.313986)
(-0.865084 0.85976 -0.423701)
(-0.885758 0.848741 -0.531196)
(-0.975959 0.758613 -0.573061)
(-1.01274 0.526449 -0.380171)
(-0.719976 0.133006 0.146999)
(-0.402698 0.0504036 0.47432)
(-0.46727 0.220429 0.249554)
(-0.801493 0.44549 -0.163319)
(-0.912565 0.621553 -0.46421)
(-0.676785 0.407313 -0.406903)
(-0.534714 -0.0434933 -0.191385)
(-0.492509 -0.179307 -0.16757)
(-0.464958 -0.238011 -0.181019)
(-0.471143 -0.357407 -0.153747)
(-0.467698 -0.454973 -0.135683)
(-0.48477 -0.582889 -0.108262)
(-0.499304 -0.716271 -0.0846701)
(-0.533606 -0.882774 -0.0603541)
(-0.57812 -1.08465 -0.0388077)
(-0.648722 -1.34702 -0.0182215)
(-0.736285 -1.67742 -0.00121151)
(-0.840144 -2.07238 0.0115286)
(-0.933319 -2.48542 0.0198923)
(-0.978859 -2.81453 0.0226847)
(-0.926708 -2.89159 0.0211594)
(-0.755354 -2.53491 0.0179984)
(-0.454882 -1.59682 0.0198886)
(-0.10129 -0.487864 0.029937)
(-0.0171598 -0.0339716 0.0211955)
(-0.00725025 0.298789 0.125294)
(-0.0937654 0.704166 0.205424)
(-0.268529 0.976592 0.21843)
(-0.484649 1.16732 0.184224)
(-0.696233 1.30393 0.12865)
(-0.844458 1.34489 0.0690888)
(-0.921845 1.29426 0.00643552)
(-0.9243 1.16922 -0.0592274)
(-0.862789 1.02898 -0.144092)
(-0.755552 0.912604 -0.242886)
(-0.653611 0.845746 -0.377084)
(-0.580185 0.831225 -0.541701)
(-0.654866 0.833514 -0.679733)
(-0.749414 0.774105 -0.506494)
(-0.599766 0.66142 0.212078)
(-0.18143 0.545079 0.934145)
(-0.196134 0.686263 0.766348)
(-0.612895 0.79696 0.175067)
(-0.837709 0.632474 -0.304589)
(-0.727345 0.538496 -0.52585)
(-0.369754 0.301978 -0.432211)
(-0.341157 -0.0894665 -0.215413)
(-0.402015 -0.211475 -0.191307)
(-0.372654 -0.255651 -0.194798)
(-0.396767 -0.365443 -0.16463)
(-0.388494 -0.451283 -0.139694)
(-0.406544 -0.567947 -0.108396)
(-0.411935 -0.685385 -0.0804356)
(-0.436163 -0.830181 -0.0536025)
(-0.464326 -1.0032 -0.0299881)
(-0.517278 -1.23208 -0.00762322)
(-0.588445 -1.53147 0.00825551)
(-0.685203 -1.92005 0.0225134)
(-0.789988 -2.37072 0.030729)
(-0.86595 -2.80302 0.0328188)
(-0.866696 -3.04702 0.0291488)
(-0.738498 -2.88494 0.0231145)
(-0.486244 -2.08205 0.0202793)
(-0.127261 -0.829461 0.0233344)
(-0.00607537 -0.113387 0.0204935)
(-0.000595439 0.342614 0.127199)
(-0.0911399 0.799554 0.208869)
(-0.2693 1.07638 0.225406)
(-0.463259 1.27207 0.186945)
(-0.643432 1.39082 0.132192)
(-0.755511 1.39306 0.0708664)
(-0.797378 1.29264 0.00658467)
(-0.770626 1.13053 -0.0627689)
(-0.682455 0.965912 -0.15128)
(-0.544495 0.834852 -0.256264)
(-0.402753 0.762317 -0.426301)
(-0.343972 0.768543 -0.641135)
(-0.49606 0.850324 -0.620556)
(-0.397769 1.01616 0.0459075)
(-0.0208904 1.1906 0.820515)
(0.0185328 1.15441 1.05726)
(-0.462105 1.03738 0.697428)
(-0.703202 0.738723 0.230481)
(-0.510539 0.459604 -0.166722)
(-0.414335 0.390619 -0.411434)
(-0.132426 0.268349 -0.436194)
(-0.172483 -0.0751411 -0.280132)
(-0.310967 -0.20993 -0.240018)
(-0.284873 -0.25896 -0.221674)
(-0.32562 -0.369598 -0.183615)
(-0.315761 -0.450919 -0.148515)
(-0.339087 -0.561757 -0.111512)
(-0.339749 -0.668804 -0.0776917)
(-0.358883 -0.796502 -0.0474168)
(-0.375158 -0.944273 -0.0211409)
(-0.411917 -1.13867 0.00261664)
(-0.464815 -1.40312 0.0196452)
(-0.548506 -1.76677 0.0341862)
(-0.651463 -2.22982 0.0426683)
(-0.745487 -2.73137 0.0439943)
(-0.784753 -3.12077 0.0383301)
(-0.700701 -3.14491 0.0293024)
(-0.486339 -2.51508 0.0225301)
(-0.138092 -1.19055 0.0202916)
(0.0242933 -0.156451 0.0189039)
(0.00159222 0.381889 0.127101)
(-0.0834133 0.890975 0.214714)
(-0.246947 1.19181 0.231045)
(-0.41876 1.38406 0.194718)
(-0.573807 1.47739 0.140924)
(-0.660565 1.4387 0.0803029)
(-0.679864 1.2936 0.0182579)
(-0.63723 1.09934 -0.0538872)
(-0.536271 0.904339 -0.13635)
(-0.370281 0.755842 -0.236854)
(-0.202113 0.664657 -0.448101)
(-0.199418 0.73194 -0.621151)
(-0.276493 1.05334 -0.293069)
(0.119808 1.35983 0.457672)
(0.136255 1.48794 0.584134)
(-0.230751 1.28252 0.568144)
(-0.725722 0.804515 0.625178)
(-0.644388 0.440656 0.159594)
(-0.237954 0.377955 -0.116529)
(-0.334671 0.393007 -0.288127)
(-0.0503562 0.249893 -0.439655)
(-0.0628449 -0.0803422 -0.345072)
(-0.237972 -0.21579 -0.295557)
(-0.207817 -0.242933 -0.248555)
(-0.262474 -0.359806 -0.206819)
(-0.249392 -0.445916 -0.157007)
(-0.279796 -0.554193 -0.114384)
(-0.277224 -0.656268 -0.0738341)
(-0.293193 -0.77298 -0.0406472)
(-0.299959 -0.903683 -0.0108457)
(-0.325981 -1.06951 0.0146026)
(-0.365898 -1.30251 0.0326908)
(-0.436253 -1.63422 0.0469429)
(-0.532732 -2.09249 0.0555804)
(-0.63384 -2.63925 0.0565529)
(-0.700546 -3.15007 0.0494613)
(-0.655237 -3.35189 0.0380739)
(-0.477232 -2.9045 0.0281031)
(-0.1512 -1.5891 0.0211919)
(0.0550769 -0.238244 0.0202324)
(0.00260082 0.397197 0.127477)
(-0.0663653 0.958448 0.216412)
(-0.213097 1.2908 0.234)
(-0.368565 1.47239 0.20221)
(-0.50137 1.53677 0.148036)
(-0.575676 1.46104 0.0913991)
(-0.588391 1.28305 0.0294514)
(-0.54745 1.06456 -0.0376466)
(-0.43648 0.844055 -0.102162)
(-0.250863 0.664828 -0.186978)
(-0.0952764 0.530144 -0.392583)
(-0.161448 0.712772 -0.401209)
(-0.027889 1.20466 0.10753)
(0.132985 1.2022 0.225005)
(-0.216088 0.992523 -0.329117)
(-0.30155 0.737623 0.135258)
(-0.707303 0.154866 0.190511)
(-0.712052 -0.0813503 -0.371319)
(-0.0872485 0.0378898 -0.218301)
(-0.117977 0.178535 -0.201348)
(0.159839 0.0654863 -0.42377)
(0.142253 -0.132491 -0.4016)
(-0.11341 -0.246278 -0.359834)
(-0.102266 -0.222743 -0.275154)
(-0.202451 -0.327279 -0.22176)
(-0.184802 -0.418099 -0.164303)
(-0.219316 -0.535876 -0.116914)
(-0.217857 -0.64259 -0.0697332)
(-0.236179 -0.751457 -0.0330496)
(-0.238181 -0.866125 0.00123564)
(-0.257449 -1.00586 0.027427)
(-0.283653 -1.20472 0.0462563)
(-0.339552 -1.50146 0.0609098)
(-0.426136 -1.9461 0.0689909)
(-0.532516 -2.52114 0.069246)
(-0.620049 -3.13196 0.0607668)
(-0.612034 -3.49779 0.0472139)
(-0.466769 -3.23216 0.0341237)
(-0.169693 -1.95058 0.0237785)
(0.0619057 -0.287513 0.0211508)
(0.00369125 0.426315 0.123741)
(-0.0328995 1.03985 0.212444)
(-0.163156 1.40253 0.240939)
(-0.317302 1.57644 0.210615)
(-0.432556 1.61598 0.159331)
(-0.5014 1.51082 0.103068)
(-0.51417 1.31461 0.0451181)
(-0.482984 1.07455 -0.0141637)
(-0.377382 0.823511 -0.0489886)
(-0.224722 0.604526 -0.102648)
(-0.190428 0.444378 -0.206294)
(-0.379383 0.87184 -0.0628855)
(-0.195059 1.11941 0.326348)
(-0.254056 0.44716 -0.35882)
(-0.667784 0.196984 -0.785175)
(-0.141219 0.380579 0.134791)
(-0.469095 -0.11002 -0.0453379)
(-0.813274 -0.518726 -0.843755)
(0.0976268 -0.279011 -0.481313)
(0.183947 -0.0751275 -0.168485)
(0.49411 -0.0883461 -0.345429)
(0.526331 -0.20181 -0.491989)
(0.0622236 -0.272571 -0.433461)
(0.0452566 -0.210967 -0.31099)
(-0.126191 -0.293251 -0.233525)
(-0.130977 -0.358724 -0.147674)
(-0.176541 -0.463251 -0.100365)
(-0.164356 -0.580321 -0.0581908)
(-0.174318 -0.7013 -0.0244864)
(-0.170555 -0.826189 0.0137252)
(-0.186748 -0.958908 0.0395083)
(-0.208655 -1.13307 0.0588646)
(-0.256335 -1.38676 0.0720882)
(-0.33154 -1.80011 0.0803174)
(-0.431525 -2.3851 0.0818467)
(-0.531014 -3.08677 0.0724603)
(-0.556391 -3.61621 0.0562684)
(-0.444868 -3.5435 0.0398024)
(-0.17489 -2.33841 0.0270002)
(0.0664602 -0.405165 0.0214104)
(-0.00326096 0.438228 0.123384)
(-0.0375989 1.13301 0.217952)
(-0.132716 1.50669 0.239562)
(-0.264873 1.69509 0.220627)
(-0.368718 1.71175 0.167846)
(-0.42627 1.58605 0.117558)
(-0.443918 1.37788 0.0635792)
(-0.435673 1.1295 0.0128838)
(-0.355597 0.88893 0.0111523)
(-0.277942 0.636374 0.0239664)
(-0.379126 0.558992 -0.000618604)
(-0.795859 1.10902 0.12867)
(-0.60437 0.948673 0.179749)
(-0.795291 0.0344632 -0.892839)
(-1.03399 0.38132 -0.860782)
(-0.147632 0.878181 0.693487)
(0.053729 0.316825 1.00179)
(-0.114131 -0.274409 -0.333086)
(0.672063 -0.147193 -1.20516)
(0.834742 -0.053359 -0.743296)
(1.09982 -0.116295 -0.409288)
(1.07413 -0.231808 -0.650098)
(0.323872 -0.317918 -0.61063)
(0.222306 -0.213185 -0.383159)
(-0.0107747 -0.255308 -0.280646)
(-0.0262453 -0.317973 -0.151199)
(-0.11502 -0.400229 -0.0803217)
(-0.135663 -0.489319 -0.0269117)
(-0.158734 -0.590594 0.00361544)
(-0.149509 -0.701358 0.0353662)
(-0.148333 -0.819377 0.0565716)
(-0.147141 -0.984698 0.075804)
(-0.175486 -1.22026 0.0902566)
(-0.232207 -1.61796 0.0970674)
(-0.332223 -2.20234 0.0960539)
(-0.447273 -2.96317 0.0847341)
(-0.508534 -3.65018 0.0661966)
(-0.447057 -3.78198 0.0461204)
(-0.211785 -2.67664 0.0334353)
(0.0464432 -0.461421 0.0250252)
(0.0111635 0.564729 0.112692)
(-0.00874622 1.3237 0.205926)
(-0.0746555 1.72015 0.237334)
(-0.182618 1.91383 0.222453)
(-0.288483 1.92726 0.179199)
(-0.337791 1.79992 0.134493)
(-0.352129 1.59107 0.0851623)
(-0.356106 1.35393 0.0324893)
(-0.346165 1.12521 0.0447382)
(-0.345951 0.833032 0.108075)
(-0.76066 0.790343 0.113674)
(-1.28822 1.06421 -0.0100036)
(-1.1203 0.552558 -0.340323)
(-1.21148 0.264857 -1.10689)
(-1.22923 1.1293 -0.513607)
(-0.387586 0.72638 1.35365)
(0.701054 0.0729753 2.45358)
(1.00103 0.000144506 1.70158)
(1.83781 -0.113279 -1.10982)
(1.85465 -0.0800786 -1.89786)
(1.71129 -0.153463 -0.850289)
(1.64421 -0.170479 -0.815682)
(0.58147 -0.293581 -0.761647)
(0.455867 -0.217607 -0.488422)
(0.117011 -0.203498 -0.332541)
(0.0569154 -0.284571 -0.166658)
(-0.0213221 -0.363444 -0.0832857)
(-0.0394846 -0.443822 -0.0169327)
(-0.0770872 -0.514208 0.0196762)
(-0.0839453 -0.59268 0.0529927)
(-0.111674 -0.679977 0.0671557)
(-0.133874 -0.805899 0.0756239)
(-0.173488 -0.991756 0.0846225)
(-0.212703 -1.31965 0.0923483)
(-0.251288 -1.87687 0.106397)
(-0.337073 -2.72607 0.0946113)
(-0.421853 -3.57077 0.0738449)
(-0.40728 -3.95365 0.0501231)
(-0.207286 -3.05476 0.0356419)
(0.0573101 -0.670891 0.0231609)
(-0.012285 0.771427 0.120606)
(-0.0148784 1.5993 0.215387)
(-0.049266 2.03214 0.247927)
(-0.11987 2.19069 0.226049)
(-0.201208 2.21117 0.188068)
(-0.252548 2.06839 0.145189)
(-0.274839 1.85646 0.0946259)
(-0.311905 1.60993 0.0438019)
(-0.382716 1.37391 0.0705288)
(-0.481294 1.07275 0.167173)
(-1.24776 1.02285 0.160318)
(-1.90424 1.01352 -0.19461)
(-1.94199 0.21782 -0.584772)
(-1.67054 0.909859 -0.673833)
(-1.22419 1.40301 -0.0841398)
(-0.623524 -0.604398 1.15637)
(0.700584 -1.30131 1.96372)
(0.757791 -0.824704 2.96603)
(1.52971 -0.245013 1.53186)
(1.60377 0.414294 -0.930011)
(1.46458 0.523971 -0.628948)
(2.22534 0.0746101 -0.411753)
(1.03131 -0.382335 -0.727824)
(0.699642 -0.376846 -0.672719)
(0.250637 -0.217227 -0.467943)
(0.134101 -0.269367 -0.196509)
(0.0499483 -0.320552 -0.0685032)
(0.0258297 -0.408195 -0.00236866)
(-0.00559429 -0.466475 0.0386234)
(-0.0155773 -0.546279 0.065133)
(-0.0392837 -0.617785 0.0836472)
(-0.0551306 -0.70705 0.0906296)
(-0.0831484 -0.817685 0.100886)
(-0.151368 -1.05988 0.090203)
(-0.300079 -1.51143 0.0808178)
(-0.381845 -2.30046 0.0837502)
(-0.413989 -3.27056 0.0772731)
(-0.425726 -3.91369 0.0544583)
(-0.267203 -3.31292 0.0416249)
(0.00736859 -0.994846 0.0310614)
(-0.0330747 0.7748 0.103597)
(-0.0288396 1.67678 0.200319)
(-0.0291699 2.15179 0.235472)
(-0.0644221 2.32557 0.222861)
(-0.118054 2.32693 0.17344)
(-0.172996 2.19517 0.134789)
(-0.204778 1.98006 0.0763503)
(-0.251376 1.74755 0.0279516)
(-0.388163 1.54593 0.0428935)
(-0.534007 1.31079 0.159547)
(-1.63382 1.28846 0.0409706)
(-2.58987 1.16411 -0.551312)
(-2.87252 0.312502 -0.823178)
(-1.75733 1.29982 -0.21583)
(0.0578314 1.07665 0.951659)
(0.0374162 -1.71106 0.954029)
(0.148971 -2.18792 0.614985)
(-0.481249 -1.69627 2.26352)
(-0.568543 -1.15763 4.32615)
(0.238111 -0.259823 3.07046)
(0.588193 -0.224348 1.51556)
(1.79729 0.380079 1.09581)
(1.02791 0.749059 0.733584)
(0.401403 0.186218 -0.189054)
(0.242152 -0.178668 -0.728228)
(0.200301 -0.341112 -0.376698)
(0.149611 -0.323477 -0.0494997)
(0.117333 -0.375494 0.0363075)
(0.0764397 -0.429452 0.0561482)
(0.0492332 -0.511972 0.0717457)
(0.0210398 -0.579059 0.0866509)
(0.0110136 -0.661355 0.0989842)
(-0.0132655 -0.753016 0.109211)
(-0.0421601 -0.955888 0.10103)
(-0.146739 -1.29335 0.097825)
(-0.344752 -1.93389 0.0687784)
(-0.467149 -2.84733 0.0630148)
(-0.483463 -3.62721 0.0486868)
(-0.374324 -3.29257 0.0358842)
(-0.0809521 -1.06252 0.0267614)
(-0.0193195 0.752127 0.0962377)
(-0.00498937 1.67335 0.191427)
(0.00839088 2.16405 0.226043)
(-0.00888514 2.36169 0.212111)
(-0.0344515 2.35415 0.163893)
(-0.0727117 2.23149 0.100578)
(-0.116608 2.04637 0.0370252)
(-0.171795 1.8615 -0.0187601)
(-0.340849 1.70552 -0.0279491)
(-0.515043 1.60978 0.0798937)
(-1.91481 1.62046 -0.24693)
(-3.26352 1.54264 -0.826944)
(-3.71228 0.75159 -1.25454)
(-2.16392 0.838983 -0.227319)
(1.19527 0.0194503 2.11851)
(1.05037 -2.41591 1.23171)
(-0.361341 -2.17012 -0.0905976)
(-1.18805 -1.12501 1.52886)
(-2.01852 -1.05916 3.89054)
(-1.1087 -0.376627 5.16029)
(-1.38594 -0.388261 3.83174)
(-0.45666 0.732323 2.76022)
(0.593718 2.22221 2.95067)
(0.201023 1.17786 0.961258)
(0.607588 -0.156124 -0.864106)
(0.568668 -0.433981 -0.632888)
(0.416128 -0.301983 -0.0655642)
(0.256219 -0.338553 0.0672446)
(0.144897 -0.410008 0.0859711)
(0.105332 -0.493137 0.0965776)
(0.0814673 -0.55434 0.105925)
(0.0744107 -0.62379 0.111486)
(0.0399254 -0.699793 0.111456)
(0.0195378 -0.8561 0.113681)
(-0.0647761 -1.17381 0.102662)
(-0.224619 -1.75252 0.0808883)
(-0.382132 -2.53407 0.0604913)
(-0.461216 -3.34208 0.0478398)
(-0.380439 -3.20134 0.0327924)
(-0.124963 -1.12304 0.0264345)
(-0.00962916 0.729422 0.0818927)
(0.0179099 1.62978 0.169785)
(0.0413027 2.13742 0.208138)
(0.040368 2.35748 0.201149)
(0.0278303 2.36545 0.150346)
(0.0111609 2.246 0.0829897)
(-0.0122037 2.06428 -0.00298886)
(-0.0446682 1.90211 -0.0940343)
(-0.173126 1.78588 -0.124482)
(-0.308184 1.78405 -0.111119)
(-1.58376 1.97633 -0.487495)
(-3.09745 2.32982 -1.00673)
(-3.73536 1.62152 -1.65146)
(-2.12624 0.622351 -0.706358)
(2.2112 -0.757586 2.45091)
(2.29278 -2.93671 1.84174)
(-0.737448 -2.20054 0.0222504)
(-0.756451 -0.316062 1.05632)
(-0.807163 0.319704 1.79569)
(-0.400866 1.79516 2.12193)
(-1.50031 1.66506 2.71299)
(-1.51508 0.498415 3.22827)
(0.719576 1.10348 2.75221)
(1.71671 0.652129 0.646319)
(1.90545 -0.52113 -0.821255)
(1.33685 -0.539049 -0.711809)
(0.839917 -0.167593 -0.218039)
(0.442241 -0.172919 0.0177329)
(0.230263 -0.316856 0.110449)
(0.170821 -0.458275 0.12393)
(0.147748 -0.54169 0.1255)
(0.142236 -0.615341 0.125046)
(0.117241 -0.681611 0.121827)
(0.0837447 -0.816641 0.115564)
(0.0038921 -1.08633 0.104121)
(-0.118783 -1.63131 0.0868267)
(-0.280735 -2.38298 0.0655998)
(-0.39734 -3.22104 0.042331)
(-0.374813 -3.25057 0.0270461)
(-0.14563 -1.34545 0.0224408)
(-0.00316535 0.676474 0.068093)
(0.040474 1.54865 0.150493)
(0.0814894 2.07549 0.189129)
(0.0932451 2.3211 0.183713)
(0.0965846 2.35007 0.134823)
(0.0847287 2.24678 0.0586671)
(0.0736461 2.06575 -0.0336575)
(0.070683 1.89672 -0.144608)
(0.00695977 1.771 -0.230745)
(0.04792 1.75682 -0.260884)
(-0.604038 1.90674 -0.650771)
(-1.75369 2.72045 -1.26073)
(-2.15883 1.9625 -1.88312)
(-0.993339 0.127932 -0.99436)
(3.13328 -1.25818 1.05719)
(3.55805 -3.15141 2.07122)
(-0.617069 -2.85239 0.564162)
(-0.688681 -1.35223 0.200297)
(0.788945 -0.632691 0.539757)
(2.22883 1.48531 -0.476543)
(1.51031 3.06813 -1.10119)
(-0.727397 1.61773 0.253961)
(0.287542 0.77657 0.600225)
(2.51249 0.62856 -0.512117)
(2.33945 -0.278361 -0.44694)
(1.35023 -0.428558 -0.315509)
(0.77791 0.0313881 -0.180434)
(0.297758 0.0668611 0.0292375)
(0.144716 -0.190073 0.148261)
(0.176869 -0.429513 0.162884)
(0.176617 -0.535914 0.156524)
(0.183964 -0.604779 0.148615)
(0.158551 -0.653528 0.137928)
(0.128184 -0.775936 0.122301)
(0.0367505 -1.00792 0.117241)
(-0.0481292 -1.5217 0.101508)
(-0.187501 -2.29769 0.07051)
(-0.323847 -3.22602 0.0429562)
(-0.345712 -3.3917 0.0255759)
(-0.143797 -1.57797 0.0246037)
(0.00170767 0.620151 0.0551987)
(0.0575225 1.45808 0.130827)
(0.113391 2.00149 0.170793)
(0.138956 2.2701 0.168563)
(0.153111 2.31859 0.124068)
(0.15167 2.22211 0.0462477)
(0.151843 2.04837 -0.0499742)
(0.166421 1.86346 -0.172479)
(0.156327 1.69968 -0.294697)
(0.237059 1.62125 -0.349322)
(0.0861215 1.50435 -0.775278)
(-0.320653 2.07427 -1.26194)
(-0.481392 1.961 -1.69546)
(-0.90764 0.323066 -1.96569)
(0.992317 -1.382 -0.729596)
(2.32988 -2.75483 2.25012)
(0.165451 -2.97805 0.981702)
(-0.42504 -2.48381 -1.01141)
(-0.0651252 -2.01993 -0.477294)
(0.832702 -0.971871 -0.216894)
(1.06007 1.38227 -0.989841)
(0.102924 1.60897 -0.960667)
(0.076875 1.2225 -0.688025)
(1.28304 1.51865 -0.80478)
(1.357 0.925359 -0.133077)
(0.745278 0.314979 0.154139)
(0.470732 0.389227 0.0675819)
(0.100964 0.342649 0.10195)
(0.0265559 -0.0976428 0.136048)
(0.176859 -0.428317 0.198989)
(0.235418 -0.555834 0.191304)
(0.264872 -0.633872 0.167874)
(0.23293 -0.687253 0.143649)
(0.200323 -0.795577 0.122334)
(0.101394 -1.00006 0.119704)
(0.0131007 -1.48689 0.102778)
(-0.129689 -2.31013 0.0705184)
(-0.264138 -3.35383 0.0397089)
(-0.327424 -3.68874 0.0211243)
(-0.141882 -1.91848 0.020389)
(0.00459838 0.549224 0.0428771)
(0.0694558 1.34481 0.112314)
(0.13938 1.90169 0.152949)
(0.176837 2.1948 0.154208)
(0.200423 2.26446 0.115841)
(0.204092 2.17964 0.0403654)
(0.207869 2.00936 -0.0528471)
(0.219406 1.80801 -0.177589)
(0.22619 1.60585 -0.303548)
(0.274051 1.44515 -0.402328)
(0.272005 1.19306 -0.653229)
(-0.0102923 1.2529 -0.987727)
(0.0518605 2.05866 -1.17167)
(-0.855226 1.81688 -2.26865)
(-1.11346 0.179872 -1.18994)
(0.759632 -1.32705 1.76132)
(1.46245 -2.53142 1.51195)
(1.63298 -2.0317 -1.58683)
(0.519951 -1.66813 -1.53237)
(-0.487473 -2.03272 0.220876)
(-0.474086 -0.790296 0.466683)
(-0.0942279 -0.0948604 -0.105272)
(0.29867 0.07472 -0.687212)
(0.864837 1.07843 -0.855807)
(0.980134 1.26708 -0.586657)
(0.241874 0.621442 -0.956191)
(0.0785871 0.316233 -1.19595)
(0.122366 0.246238 -0.619966)
(0.0378789 -0.11784 -0.0861741)
(0.151913 -0.46414 0.194783)
(0.246442 -0.624076 0.256148)
(0.298401 -0.73374 0.23107)
(0.27018 -0.819645 0.199333)
(0.23955 -0.948006 0.162298)
(0.149989 -1.14362 0.155712)
(0.050941 -1.61831 0.127632)
(-0.0983193 -2.45151 0.0938921)
(-0.21102 -3.6233 0.0534245)
(-0.282693 -4.16622 0.0279743)
(-0.120877 -2.53384 0.0235655)
(0.0121322 0.485365 0.0339285)
(0.0839369 1.23316 0.0973923)
(0.159272 1.8008 0.138102)
(0.206244 2.12155 0.143401)
(0.237611 2.21696 0.111716)
(0.247111 2.1487 0.0430213)
(0.249437 1.98802 -0.044486)
(0.251411 1.78064 -0.161087)
(0.252667 1.5659 -0.282376)
(0.245645 1.36587 -0.385805)
(0.241422 1.1038 -0.524513)
(-0.0362266 0.918769 -0.722685)
(-0.123196 1.58971 -0.590312)
(-0.0739118 2.27265 -0.774522)
(-0.615517 1.89791 -1.00642)
(-0.223961 0.377841 0.20845)
(0.866021 -1.90298 0.824262)
(1.78475 -2.00902 -0.794842)
(1.52666 -1.45846 -0.823526)
(-0.030257 -1.8027 0.500833)
(-1.11272 -1.68636 0.421139)
(-1.21126 -1.71847 0.0438358)
(-0.622011 -1.45114 -0.603985)
(0.120678 0.532781 -1.04515)
(0.511319 2.03659 -0.825088)
(0.174299 1.00263 -1.15358)
(0.356474 -0.341519 -1.47128)
(0.580773 -0.304012 -0.979758)
(0.347692 -0.251954 -0.238219)
(0.209902 -0.534489 0.195057)
(0.242898 -0.643655 0.319455)
(0.295025 -0.740382 0.25953)
(0.277866 -0.838048 0.218294)
(0.252351 -0.993821 0.187047)
(0.162487 -1.15865 0.155824)
(0.0659948 -1.6434 0.137958)
(-0.092583 -2.47874 0.101453)
(-0.204747 -3.79252 0.0624177)
(-0.301732 -4.57447 0.0354878)
(-0.143526 -3.15504 0.0323395)
(0.0169992 0.425032 0.0272462)
(0.0968531 1.10341 0.0841503)
(0.176101 1.6736 0.124651)
(0.227644 2.01859 0.134263)
(0.265873 2.1424 0.109966)
(0.281108 2.09738 0.0499476)
(0.282558 1.95251 -0.0297375)
(0.275686 1.75614 -0.135981)
(0.269536 1.55155 -0.244381)
(0.23715 1.35523 -0.349155)
(0.196468 1.16003 -0.425659)
(0.000706814 0.945802 -0.552172)
(-0.341237 1.21909 -0.382622)
(-0.301357 2.02259 -0.0695403)
(-0.541624 2.44758 -0.0210777)
(-0.771782 1.58009 0.109679)
(-1.01898 -0.193394 0.104228)
(-0.627681 -1.16649 -0.126793)
(0.230841 -0.834733 0.317354)
(0.128804 -0.317463 0.587441)
(-0.934094 -0.514948 0.214951)
(-1.75986 -1.53034 0.370216)
(-1.14295 -1.95716 0.393732)
(-0.183832 0.0992817 -0.0636813)
(0.666775 2.29688 0.213137)
(1.38966 1.38399 0.565804)
(1.53169 -0.468707 0.185083)
(1.09529 -0.529944 -0.212237)
(0.571329 -0.386344 -0.00765862)
(0.300707 -0.564705 0.273574)
(0.273694 -0.583372 0.303483)
(0.307327 -0.650969 0.23224)
(0.277616 -0.739552 0.198098)
(0.28427 -0.908972 0.178987)
(0.184256 -1.07818 0.156458)
(0.0765412 -1.51406 0.141847)
(-0.0776604 -2.33578 0.105888)
(-0.198472 -3.74722 0.0669829)
(-0.320578 -4.76031 0.0396397)
(-0.16944 -3.60788 0.0346379)
(0.0127221 0.378589 0.0238167)
(0.0990889 0.990314 0.0752685)
(0.191232 1.55034 0.114102)
(0.242562 1.92555 0.128246)
(0.286774 2.08136 0.111271)
(0.310994 2.06504 0.0604041)
(0.318101 1.93851 -0.0122744)
(0.313557 1.76012 -0.105325)
(0.305916 1.57145 -0.205393)
(0.280313 1.39257 -0.301768)
(0.225117 1.24695 -0.384012)
(0.12431 1.1057 -0.437171)
(-0.176214 1.16939 -0.461992)
(-0.581086 1.72079 -0.23827)
(-0.891657 2.52153 0.196644)
(-0.969437 2.85923 0.625563)
(-1.57364 2.07426 0.318856)
(-1.82724 0.812631 0.287319)
(-1.3045 0.693022 0.388724)
(-0.602172 1.2464 -0.0929183)
(-0.348349 1.18294 -0.0105667)
(-0.822039 -0.0345819 0.479854)
(-0.482705 -0.883658 0.584191)
(0.335265 0.385505 -0.0407432)
(0.984624 2.07899 -0.0234246)
(1.35085 1.59876 0.95636)
(1.3089 0.226789 1.43404)
(1.07035 -0.0450752 0.820053)
(0.596595 -0.130304 0.321947)
(0.352252 -0.378654 0.238755)
(0.32635 -0.468223 0.220845)
(0.334756 -0.555443 0.179293)
(0.283865 -0.634408 0.162293)
(0.268752 -0.803996 0.150632)
(0.209346 -0.974485 0.1427)
(0.116098 -1.39588 0.128125)
(-0.0724857 -2.14827 0.0998433)
(-0.183335 -3.62254 0.0602415)
(-0.339492 -4.83401 0.0355773)
(-0.190998 -3.99668 0.0287779)
(0.0111165 0.321038 0.0212126)
(0.093748 0.867168 0.0693648)
(0.201257 1.39099 0.104715)
(0.25977 1.78734 0.123649)
(0.299419 1.9738 0.113854)
(0.330329 1.98791 0.0724456)
(0.347808 1.88495 0.00776774)
(0.353017 1.72708 -0.0723487)
(0.35184 1.55189 -0.163127)
(0.340704 1.38759 -0.255443)
(0.310108 1.25719 -0.338787)
(0.244204 1.16669 -0.40498)
(0.101892 1.15192 -0.449734)
(-0.214944 1.41192 -0.49051)
(-0.655935 2.16954 -0.326738)
(-0.906128 3.32155 -0.085133)
(-1.07298 3.20289 0.00619362)
(-1.42707 1.82837 0.20293)
(-1.97486 1.01859 -0.0455493)
(-1.75269 0.86684 -0.519396)
(-0.710596 1.14941 -0.384391)
(-0.114226 0.824298 -0.583834)
(-0.23681 0.115509 -1.01519)
(0.131455 0.648168 -1.32215)
(0.880948 1.67445 -1.65224)
(0.558149 1.86472 -0.722361)
(0.292998 1.16194 1.03637)
(0.650335 0.605154 1.17142)
(0.571657 0.17961 0.519926)
(0.435544 -0.208373 0.231763)
(0.391747 -0.364059 0.180154)
(0.379955 -0.473844 0.139599)
(0.301445 -0.540751 0.124294)
(0.282928 -0.712842 0.123095)
(0.195694 -0.846147 0.124103)
(0.147677 -1.28393 0.114064)
(-0.0373626 -1.96131 0.090625)
(-0.162861 -3.46482 0.0516569)
(-0.34698 -4.83547 0.0283727)
(-0.216295 -4.34145 0.0203406)
(0.00561115 0.281715 0.019878)
(0.0751621 0.778283 0.0659643)
(0.191538 1.26911 0.0992613)
(0.270095 1.66791 0.118432)
(0.310092 1.89122 0.118301)
(0.34556 1.93442 0.0864896)
(0.377902 1.85933 0.0346123)
(0.396569 1.70989 -0.0362874)
(0.406483 1.54353 -0.116036)
(0.412491 1.37592 -0.200026)
(0.407902 1.23933 -0.281664)
(0.389898 1.13557 -0.35555)
(0.338842 1.09524 -0.426966)
(0.21471 1.14981 -0.486836)
(0.0403803 1.47949 -0.552305)
(-0.169797 2.23085 -0.641312)
(-0.249471 2.52236 -0.614427)
(-0.593073 1.83771 -0.546871)
(-1.3719 1.05975 -0.599153)
(-1.57095 0.660852 -0.757603)
(-0.953013 0.92562 -1.48625)
(-0.405134 0.926443 -2.41381)
(-0.353888 0.140165 -1.9327)
(0.114984 -0.365849 -1.06794)
(0.924382 -0.461753 -0.872884)
(0.767112 -0.182033 -0.741697)
(0.227785 0.233532 0.0370089)
(0.332795 0.279991 0.688635)
(0.517168 0.0475827 0.473058)
(0.543685 -0.170302 0.218114)
(0.461823 -0.266258 0.123323)
(0.433387 -0.377291 0.0914671)
(0.32622 -0.440476 0.084546)
(0.303818 -0.61025 0.0910397)
(0.188929 -0.731717 0.100555)
(0.176047 -1.13207 0.096691)
(-0.0126887 -1.78432 0.0726121)
(-0.130749 -3.2826 0.0393708)
(-0.361801 -4.80613 0.0188332)
(-0.241059 -4.68599 0.0104072)
(0.00965176 0.227802 0.0202145)
(0.0637136 0.670825 0.0654689)
(0.166795 1.1201 0.0970484)
(0.267771 1.49174 0.114188)
(0.318269 1.73576 0.120989)
(0.348946 1.81099 0.100161)
(0.386072 1.76484 0.0586868)
(0.418915 1.63043 -0.00275438)
(0.443928 1.47974 -0.0687633)
(0.462354 1.3144 -0.140009)
(0.477934 1.16996 -0.211211)
(0.485933 1.04592 -0.278535)
(0.48371 0.956952 -0.344679)
(0.465105 0.91638 -0.40724)
(0.427241 0.966036 -0.483218)
(0.400601 1.10535 -0.536757)
(0.432528 1.22001 -0.538393)
(0.296503 1.11653 -0.571826)
(-0.00798273 0.927001 -0.609412)
(-0.24547 0.745664 -0.770662)
(-0.241408 0.46692 -1.45963)
(-0.00855235 0.0381513 -1.89765)
(0.156956 -0.421169 -1.24103)
(0.455855 -0.734884 -0.301972)
(0.841826 -1.06879 0.297246)
(0.79676 -1.09342 0.301914)
(0.552089 -0.582175 0.269205)
(0.616396 -0.114813 0.411524)
(0.642889 -0.0100347 0.288221)
(0.622198 -0.0845481 0.124244)
(0.504495 -0.157793 0.0620039)
(0.487059 -0.281661 0.0460179)
(0.361373 -0.338739 0.0522286)
(0.339501 -0.513758 0.0637074)
(0.202394 -0.61884 0.0771154)
(0.198251 -1.00544 0.0773749)
(0.00622803 -1.61603 0.0548713)
(-0.0904025 -3.118 0.0269841)
(-0.386735 -4.7772 0.0100022)
(-0.272648 -5.09413 0.00114612)
(0.00642993 0.204084 0.0211575)
(0.0314156 0.61731 0.069089)
(0.106655 1.04113 0.0971525)
(0.228448 1.40113 0.114755)
(0.316712 1.62657 0.12075)
(0.361988 1.73077 0.113281)
(0.395306 1.70475 0.083099)
(0.444698 1.58416 0.0333903)
(0.488081 1.44024 -0.0207164)
(0.517505 1.27803 -0.0792167)
(0.547056 1.12865 -0.136457)
(0.568147 0.990803 -0.189468)
(0.584815 0.876027 -0.237095)
(0.591657 0.78478 -0.275221)
(0.596325 0.723507 -0.31202)
(0.596205 0.699908 -0.332042)
(0.629243 0.674322 -0.292002)
(0.668289 0.604426 -0.219276)
(0.720528 0.571877 -0.167497)
(0.78649 0.418078 -0.214288)
(0.968953 0.0874966 -0.342085)
(1.16464 -0.233153 -0.383651)
(1.18493 -0.419473 -0.264019)
(1.19639 -0.336872 -0.137969)
(1.14372 -0.300129 0.0371123)
(1.04453 -0.332793 0.103246)
(0.885318 -0.129477 0.0979761)
(0.790197 0.0565839 0.10063)
(0.667405 0.0773251 0.0602087)
(0.658177 -0.00530819 0.0278062)
(0.53887 -0.0486956 0.0114088)
(0.545945 -0.178318 0.013025)
(0.404559 -0.219473 0.0272859)
(0.393742 -0.387743 0.0410531)
(0.224259 -0.478195 0.0560869)
(0.234155 -0.850608 0.0591258)
(0.0221562 -1.42451 0.0353297)
(-0.048093 -2.91453 0.0170685)
(-0.427757 -4.74392 0.00369762)
(-0.309503 -5.5952 -0.00447907)
(0.0163166 0.175317 0.02667)
(0.0318205 0.520968 0.0739232)
(0.0555418 0.935295 0.104794)
(0.153751 1.24253 0.116762)
(0.268262 1.44799 0.125985)
(0.350971 1.54162 0.118679)
(0.380801 1.55451 0.10528)
(0.435083 1.44845 0.0655464)
(0.501144 1.32818 0.021143)
(0.548543 1.18078 -0.0247784)
(0.593812 1.04468 -0.0696229)
(0.628511 0.911627 -0.111127)
(0.659576 0.79795 -0.14669)
(0.681152 0.69755 -0.173651)
(0.700935 0.617038 -0.190288)
(0.715846 0.552978 -0.194468)
(0.739897 0.505645 -0.17427)
(0.76133 0.442438 -0.122302)
(0.843037 0.374543 -0.0543118)
(1.00856 0.251231 -0.00314286)
(1.29315 0.0904715 -0.00447113)
(1.49021 -0.0553638 -0.0510178)
(1.45214 -0.162022 -0.0862454)
(1.40858 -0.201052 -0.113281)
(1.31889 -0.174891 -0.0716073)
(1.27771 -0.157873 -0.063716)
(1.16423 -0.045893 -0.0674496)
(1.00157 0.0350238 -0.0507145)
(0.775551 0.0727463 -0.0269499)
(0.767842 0.0143894 -0.0140185)
(0.62165 0.00811939 -0.0110348)
(0.63177 -0.0831235 -0.00522901)
(0.489442 -0.106423 0.00365229)
(0.491683 -0.275217 0.0215241)
(0.298783 -0.343917 0.0315849)
(0.304653 -0.718726 0.0389429)
(0.0770815 -1.23412 0.0274969)
(0.0197782 -2.72158 0.000100117)
(-0.479773 -4.69071 -0.00193357)
(-0.311076 -6.20562 -0.010455)
(-0.0196771 0.14947 0.0299634)
(-0.0293138 0.546881 0.0826823)
(-0.0281933 0.889155 0.111659)
(0.0274523 1.23659 0.124753)
(0.169366 1.39355 0.134645)
(0.323747 1.43182 0.126281)
(0.384475 1.45176 0.126377)
(0.435729 1.34651 0.0962853)
(0.527899 1.2402 0.0635778)
(0.594032 1.10661 0.0253951)
(0.660217 0.981627 -0.00949972)
(0.707964 0.858592 -0.0411194)
(0.753308 0.750949 -0.0682596)
(0.786417 0.653157 -0.0903744)
(0.817928 0.569547 -0.106055)
(0.8408 0.495333 -0.115799)
(0.864481 0.435618 -0.114765)
(0.886209 0.376773 -0.0964008)
(0.947584 0.330966 -0.0646457)
(1.07094 0.23533 -0.0305529)
(1.35759 0.13275 -0.00659379)
(1.5868 0.0517465 -0.013817)
(1.56116 -0.0148043 -0.0333451)
(1.57313 -0.0668575 -0.0496274)
(1.5089 -0.051424 -0.0371506)
(1.4769 -0.0516736 -0.0265752)
(1.38161 0.0320629 -0.0293155)
(1.21446 0.0588145 -0.0291728)
(0.935349 0.114128 -0.0218812)
(0.913247 0.0706934 -0.0183473)
(0.773063 0.0813399 -0.0107655)
(0.80707 0.00370009 -0.00765815)
(0.617578 -0.00360581 0.00507844)
(0.651697 -0.147085 0.0143811)
(0.417892 -0.193951 0.0265266)
(0.455024 -0.527523 0.0255137)
(0.160431 -0.966555 0.0203379)
(0.194509 -2.39608 -0.0115722)
(-0.456779 -4.58743 0.00300894)
(-0.254157 -6.79976 -0.0164412)
(0.0521248 0.28534 0.041725)
(-0.000368642 0.481381 0.0926594)
(-0.0994672 0.770923 0.120339)
(-0.045254 0.985109 0.132144)
(-0.00538201 1.19939 0.142951)
(0.189807 1.18786 0.134361)
(0.325119 1.21346 0.141064)
(0.394385 1.12802 0.122801)
(0.516882 1.04682 0.0994375)
(0.608469 0.943631 0.0732303)
(0.700664 0.843759 0.0459023)
(0.768872 0.745175 0.0219829)
(0.82918 0.659028 0.000499238)
(0.874123 0.580944 -0.0181051)
(0.914764 0.51339 -0.0314126)
(0.948296 0.444501 -0.0418272)
(0.981646 0.386349 -0.0422082)
(1.01417 0.330802 -0.0318652)
(1.07402 0.287455 -0.0183509)
(1.19771 0.198041 -0.00545116)
(1.49241 0.138585 0.00515906)
(1.73405 0.0769308 0.00109273)
(1.7161 0.0290506 -0.00558356)
(1.7415 -0.0130277 -0.0141261)
(1.69029 0.00352906 -0.00683339)
(1.71132 -0.00472849 -0.0033668)
(1.62062 0.0874656 -0.00391227)
(1.46657 0.088923 -0.00748191)
(1.16451 0.155255 -0.0018277)
(1.16612 0.127218 -0.00159855)
(1.00749 0.169284 0.000575783)
(1.07797 0.075423 0.00621464)
(0.894866 0.0761581 0.0092683)
(0.987517 -0.0422068 0.013262)
(0.728461 -0.112301 0.0209145)
(0.831885 -0.391781 0.0215441)
(0.468853 -0.790743 0.0134907)
(0.563661 -2.02444 0.00148803)
(-0.192545 -4.37298 -0.012378)
(0.0448541 -7.31899 -0.0226011)
(-0.225353 0.0711994 0.0518536)
(-0.303305 0.696708 0.11399)
(-0.292813 0.874597 0.134724)
(-0.25447 1.02389 0.14184)
(-0.120192 1.05135 0.155632)
(0.0595417 1.0644 0.144686)
(0.238319 1.00745 0.160234)
(0.34576 0.944138 0.148787)
(0.499537 0.868999 0.135574)
(0.615794 0.794537 0.119304)
(0.735739 0.719587 0.102183)
(0.830662 0.645242 0.0857628)
(0.918031 0.580297 0.070234)
(0.986799 0.520472 0.05504)
(1.04294 0.469004 0.0427642)
(1.08945 0.413313 0.0324186)
(1.13988 0.358037 0.0310522)
(1.19685 0.304485 0.0352683)
(1.26713 0.273881 0.0426326)
(1.42458 0.194834 0.0492717)
(1.7657 0.159294 0.0620169)
(2.06894 0.104292 0.0625655)
(2.08673 0.062827 0.0565117)
(2.18103 0.0288013 0.0477822)
(2.15165 0.0368156 0.0443803)
(2.21034 0.0145014 0.0427292)
(2.11229 0.107995 0.0413943)
(1.99138 0.0882059 0.0375837)
(1.66496 0.175613 0.0364916)
(1.73134 0.155905 0.0353961)
(1.56386 0.216988 0.0317895)
(1.70915 0.141396 0.0311953)
(1.50111 0.144751 0.0341852)
(1.67081 0.0207613 0.0376795)
(1.3385 -0.0366094 0.037293)
(1.52203 -0.257929 0.0294974)
(1.06487 -0.511696 0.0201806)
(1.24489 -1.4538 0.00490763)
(0.395486 -3.86317 -0.00555744)
(0.497732 -7.19829 -0.0233004)
(-0.732452 0.792676 0.101396)
(-0.607286 0.393821 0.150339)
(-0.7514 0.576452 0.148042)
(-0.46094 0.604588 0.149392)
(-0.312888 0.622297 0.157519)
(-0.00194406 0.67058 0.155406)
(0.220136 0.639987 0.169035)
(0.43468 0.612984 0.167088)
(0.659006 0.570839 0.160751)
(0.861107 0.530186 0.152703)
(1.05871 0.483705 0.143006)
(1.23587 0.438969 0.133116)
(1.39551 0.400304 0.123596)
(1.53466 0.368176 0.113831)
(1.64922 0.346121 0.106149)
(1.75562 0.315531 0.099884)
(1.86316 0.273794 0.0989372)
(2.01437 0.24083 0.102258)
(2.18698 0.220479 0.108584)
(2.47754 0.135284 0.10956)
(2.89106 0.102699 0.11757)
(3.30638 0.0522577 0.117793)
(3.37678 0.0093374 0.111003)
(3.51439 -0.0339092 0.100774)
(3.4523 -0.0181879 0.0914927)
(3.57706 -0.026046 0.0862701)
(3.43257 0.0581821 0.084521)
(3.3993 0.0592638 0.0784819)
(3.01903 0.140348 0.0736949)
(3.18681 0.152663 0.0709865)
(2.97452 0.2041 0.0666457)
(3.28686 0.146378 0.0632945)
(3.00041 0.113021 0.05946)
(3.33462 0.0257422 0.0573387)
(2.85962 -0.0415372 0.049367)
(3.20593 -0.221496 0.0442265)
(2.53697 -0.508658 0.0346978)
(2.89208 -1.1313 0.021292)
(1.89689 -3.14891 0.0045216)
(1.33303 -6.08253 -0.0135936)
(1.16101 1.4812 0.0413027)
(1.72562 0.729384 0.060702)
(2.4626 0.570735 0.0654573)
(2.8759 0.352789 0.0673002)
(3.15198 0.281069 0.0728726)
(3.3882 0.230734 0.0742046)
(3.60567 0.213508 0.0854791)
(3.81316 0.191883 0.0889181)
(4.03867 0.178744 0.0860975)
(4.26975 0.165196 0.0828251)
(4.49026 0.151257 0.0798422)
(4.70379 0.136556 0.0766435)
(4.88449 0.123812 0.074346)
(5.04946 0.113225 0.0706936)
(5.1702 0.10805 0.0684791)
(5.29736 0.102454 0.0674476)
(5.42728 0.0817438 0.0699321)
(5.64189 0.0608471 0.0733837)
(5.89606 0.0749618 0.0857275)
(6.35461 0.0543469 0.0932835)
(6.7707 0.0302434 0.104457)
(7.23338 0.0091072 0.111137)
(7.26062 -0.00727744 0.104164)
(7.33005 -0.0542853 0.0913008)
(7.15221 -0.0392493 0.0816405)
(7.1707 -0.0550222 0.0699887)
(6.82852 -0.0334571 0.0671823)
(6.81538 -0.0177314 0.0606192)
(6.34375 0.0157003 0.0563527)
(6.58351 0.0355963 0.0526306)
(6.33154 0.0691784 0.0497156)
(6.7683 0.0700794 0.0476508)
(6.46259 0.048729 0.0461123)
(6.8582 0.0165393 0.0439593)
(6.31845 -0.0126486 0.0398959)
(6.5469 -0.103301 0.0310384)
(5.66821 -0.257312 0.0264747)
(5.69866 -0.581763 0.0183523)
(4.27471 -1.13953 0.0116055)
(2.78178 -2.52374 -0.000819229)
(0.000803052 -3.46674e-05 0.00364575)
(0.021537 -0.00284385 0.00766298)
(0.050943 -0.00263663 0.0109382)
(0.0711452 -0.000516036 0.0135406)
(0.0803878 0.00174033 0.0151959)
(0.0667991 -0.00183498 0.0174452)
(0.0527985 0.00433026 0.0218447)
(0.0407314 0.00275209 0.0233835)
(0.0231224 0.0114364 0.0277045)
(0.00372503 0.014988 0.0301993)
(-0.0328256 0.0157318 0.0298172)
(-0.0864765 0.0108467 0.0295078)
(-0.143898 0.00581076 0.0294538)
(-0.218828 0.00452431 0.0286346)
(-0.289923 0.0112803 0.0286613)
(-0.375633 0.0207137 0.0249396)
(-0.454138 0.0138407 0.0205935)
(-0.553006 0.0065016 0.0165581)
(-0.607358 -0.0117598 0.00879027)
(-0.777221 -0.0149569 0.00181663)
(-0.73514 0.021651 -0.000465503)
(-0.545826 0.0241347 -0.00241364)
(-0.54482 0.033297 -0.00252666)
(-0.535311 0.0362084 -0.00409484)
(-0.522786 0.0284599 -0.00363947)
(-0.464761 0.026148 -0.00438512)
(-0.398868 0.0206204 -0.00288755)
(-0.293801 0.0107014 -0.00275892)
(-0.178342 0.00184779 0.00115652)
(-0.0484088 -0.0134619 0.0053639)
(0.0800088 0.019079 0.0116099)
(0.278493 0.00563587 0.0146111)
(0.422993 0.0120571 0.0221116)
(0.447747 0.0443751 0.0268428)
(0.419667 0.044697 0.0300695)
(0.327987 0.0460437 0.0338036)
(0.220709 0.030962 0.0350369)
(0.117313 0.0186039 0.0342328)
(0.0365892 0.00154477 0.0245919)
(-0.00402504 -0.00919726 0.00977486)
(0.00694538 -0.0118057 0.00694034)
(0.0440286 -0.0261661 0.0170299)
(0.0894594 -0.0249704 0.0252317)
(0.119815 -0.0140233 0.0322475)
(0.125296 -0.00600916 0.0383971)
(0.106973 0.00325602 0.0441354)
(0.0786972 0.0130511 0.0530694)
(0.0411308 0.0365188 0.057197)
(-0.012071 0.0536918 0.067197)
(-0.0963421 0.065826 0.0662497)
(-0.218647 0.0820669 0.0636911)
(-0.374871 0.104599 0.0567959)
(-0.540197 0.129949 0.0541416)
(-0.723997 0.156329 0.052013)
(-0.90814 0.183179 0.0510503)
(-1.12117 0.177803 0.0480252)
(-1.3056 0.154545 0.04492)
(-1.4835 0.123709 0.0410542)
(-1.59925 0.0923421 0.0342616)
(-1.7457 0.0809852 0.0310948)
(-1.615 0.117737 0.0305533)
(-1.36974 0.103993 0.0339614)
(-1.28185 0.0935075 0.0421708)
(-1.18428 0.0582296 0.0429665)
(-1.09135 0.0212128 0.0531423)
(-0.963182 -0.0237 0.0575752)
(-0.840452 -0.0692261 0.0617308)
(-0.675038 -0.0999531 0.0692567)
(-0.502416 -0.116817 0.0769355)
(-0.279582 -0.131305 0.0847983)
(-0.101571 -0.104666 0.0956621)
(0.162298 -0.0434406 0.0997174)
(0.450665 -0.0175518 0.102131)
(0.579962 0.0421395 0.0962972)
(0.613096 0.129909 0.101315)
(0.558656 0.155023 0.096456)
(0.431509 0.157574 0.0933084)
(0.267681 0.126546 0.0860195)
(0.108961 0.0808044 0.0662669)
(0.0141082 0.0267174 0.0276623)
(0.0101655 -0.0274799 0.00842247)
(0.0517054 -0.0543668 0.022222)
(0.0967016 -0.0490622 0.0350759)
(0.115825 -0.0224431 0.0457119)
(0.111658 0.0041845 0.0540541)
(0.0730678 0.0315956 0.0649815)
(0.0276644 0.0765777 0.077237)
(-0.0513507 0.127785 0.0785394)
(-0.18581 0.184179 0.0831379)
(-0.341701 0.232102 0.0817487)
(-0.536942 0.284444 0.0769366)
(-0.770776 0.341201 0.0736461)
(-1.01883 0.392738 0.0715768)
(-1.27458 0.41805 0.0712764)
(-1.53084 0.39841 0.0711114)
(-1.77302 0.350328 0.0706591)
(-1.95468 0.308731 0.0680909)
(-2.12092 0.260722 0.0657913)
(-2.22355 0.225038 0.0623039)
(-2.31765 0.18154 0.0616091)
(-2.12248 0.17449 0.0593103)
(-1.84835 0.137048 0.05938)
(-1.70708 0.07574 0.0592259)
(-1.56321 -0.00388325 0.0680156)
(-1.4703 -0.0915522 0.0725015)
(-1.34326 -0.205722 0.0680822)
(-1.20034 -0.296964 0.0746677)
(-1.02478 -0.358904 0.0798963)
(-0.860553 -0.38397 0.0930324)
(-0.6568 -0.366137 0.103615)
(-0.446999 -0.342915 0.113221)
(-0.190356 -0.241883 0.120875)
(0.0654413 -0.1656 0.129309)
(0.316871 -0.050966 0.14)
(0.468717 0.075323 0.134537)
(0.471906 0.189556 0.137469)
(0.41254 0.232274 0.129988)
(0.269418 0.229969 0.11939)
(0.116445 0.175613 0.0923097)
(0.0149079 0.0827042 0.038496)
(0.0124474 -0.0445289 0.00932292)
(0.0502125 -0.0784599 0.0273511)
(0.0815386 -0.0624642 0.045224)
(0.0807992 -0.0205584 0.0634851)
(0.0429029 0.0370922 0.0751694)
(-0.0091126 0.11102 0.0862859)
(-0.0921207 0.200125 0.095321)
(-0.231083 0.295472 0.0973189)
(-0.430949 0.408251 0.095133)
(-0.680333 0.502035 0.0886459)
(-0.949758 0.574361 0.0830723)
(-1.23226 0.626942 0.0802775)
(-1.51356 0.633197 0.0806331)
(-1.80046 0.588515 0.0797501)
(-2.04121 0.523617 0.0789006)
(-2.23585 0.462809 0.0769362)
(-2.3783 0.405684 0.0740935)
(-2.50631 0.340428 0.0730274)
(-2.5764 0.291632 0.0671005)
(-2.60073 0.213077 0.0621482)
(-2.35662 0.17739 0.0545917)
(-2.0787 0.10506 0.0440653)
(-1.92174 0.0037734 0.0497346)
(-1.81865 -0.123914 0.0458687)
(-1.76385 -0.276236 0.0411887)
(-1.65845 -0.427164 0.0455605)
(-1.53491 -0.556149 0.0500767)
(-1.36539 -0.662715 0.0535758)
(-1.19894 -0.723166 0.0593658)
(-1.02787 -0.712575 0.0713999)
(-0.861763 -0.638208 0.0904193)
(-0.641077 -0.517898 0.106242)
(-0.400544 -0.397605 0.121284)
(-0.147478 -0.222586 0.137272)
(0.108951 -0.0587746 0.156551)
(0.243467 0.137919 0.158931)
(0.254963 0.241447 0.155813)
(0.186113 0.280755 0.141157)
(0.0771458 0.244231 0.109658)
(0.00996977 0.125647 0.045615)
(0.0120672 -0.0590865 0.0105791)
(0.0384529 -0.0908372 0.0332573)
(0.040452 -0.0568245 0.0596435)
(0.0097986 0.0172139 0.0736887)
(-0.0396033 0.124632 0.0963647)
(-0.132168 0.254445 0.104815)
(-0.267059 0.393465 0.109418)
(-0.456579 0.54164 0.103258)
(-0.725159 0.683653 0.0941379)
(-1.02752 0.78742 0.0864104)
(-1.33036 0.833561 0.0821162)
(-1.64083 0.813185 0.0794465)
(-1.93293 0.751176 0.0736927)
(-2.16822 0.67197 0.0722746)
(-2.33856 0.603799 0.0706003)
(-2.46899 0.532906 0.0656706)
(-2.55353 0.469994 0.0547399)
(-2.62915 0.395287 0.0447222)
(-2.66031 0.335841 0.0288156)
(-2.62728 0.230977 0.0215219)
(-2.35711 0.170022 0.0106507)
(-2.08928 0.0536818 -0.00327841)
(-1.96732 -0.0726095 -0.00350004)
(-1.91366 -0.25702 -0.0105764)
(-1.88249 -0.432245 -0.00461829)
(-1.81609 -0.61339 0.00136875)
(-1.73252 -0.788245 0.0110449)
(-1.60321 -0.944646 0.0190946)
(-1.45393 -1.05891 0.0258125)
(-1.27764 -1.10742 0.0327832)
(-1.1318 -1.0635 0.0445951)
(-0.994542 -0.914888 0.0651573)
(-0.838324 -0.696652 0.0886198)
(-0.576666 -0.47501 0.111779)
(-0.259312 -0.231447 0.138878)
(-0.0309092 0.0110767 0.157132)
(0.0663197 0.181242 0.164301)
(0.0686244 0.283705 0.148072)
(0.029222 0.267004 0.113613)
(-0.00145764 0.136672 0.0455315)
(0.00914497 -0.0739288 0.0173263)
(0.0152365 -0.0870936 0.0463981)
(-0.0121233 -0.022741 0.0795967)
(-0.0649198 0.118019 0.103716)
(-0.153009 0.277267 0.117877)
(-0.281294 0.461455 0.123024)
(-0.455692 0.643531 0.116254)
(-0.685718 0.822126 0.103014)
(-0.995542 0.950226 0.0882048)
(-1.35632 0.97105 0.0764176)
(-1.69867 0.931277 0.0657096)
(-1.97411 0.857179 0.0543233)
(-2.17392 0.783467 0.0480716)
(-2.3237 0.712405 0.04017)
(-2.41195 0.637147 0.0296405)
(-2.46724 0.55452 0.0184812)
(-2.49426 0.479578 0.012631)
(-2.51589 0.394481 0.0058756)
(-2.50084 0.319866 -0.00887836)
(-2.41484 0.202393 -0.016344)
(-2.12883 0.133425 -0.034309)
(-1.87064 0.00422254 -0.0514268)
(-1.80595 -0.156246 -0.0653517)
(-1.78593 -0.33276 -0.0651216)
(-1.78786 -0.505839 -0.059513)
(-1.76518 -0.70307 -0.0472377)
(-1.73486 -0.91098 -0.0323384)
(-1.66942 -1.11904 -0.0165249)
(-1.58306 -1.30478 -0.00194655)
(-1.45346 -1.4294 0.00775095)
(-1.30856 -1.4749 0.0176481)
(-1.15412 -1.38939 0.0296166)
(-1.09519 -1.19057 0.0500286)
(-0.960106 -0.813004 0.079901)
(-0.616016 -0.501157 0.111733)
(-0.296853 -0.172838 0.142599)
(-0.0825721 0.0952754 0.15766)
(-0.00140586 0.251564 0.152004)
(-0.00687385 0.256676 0.117172)
(-0.00235777 0.126384 0.0472589)
(0.00673402 -0.0742474 0.0292815)
(-0.0112197 -0.0445275 0.0703728)
(-0.0541056 0.0749118 0.101869)
(-0.137713 0.264009 0.125974)
(-0.260841 0.47586 0.136005)
(-0.421874 0.696735 0.130194)
(-0.62076 0.900883 0.115291)
(-0.90339 1.04083 0.0951912)
(-1.30702 1.02618 0.0712143)
(-1.66505 0.975178 0.0542505)
(-1.91106 0.924333 0.0387558)
(-2.08694 0.87116 0.022337)
(-2.20465 0.806093 0.00505213)
(-2.27002 0.720827 -0.00629862)
(-2.29476 0.63259 -0.0143738)
(-2.29323 0.532558 -0.0174067)
(-2.26746 0.445081 -0.0254547)
(-2.23529 0.358828 -0.0329568)
(-2.17708 0.288808 -0.0533054)
(-2.05224 0.177638 -0.0632445)
(-1.76848 0.119847 -0.0915671)
(-1.56972 -0.0126366 -0.108785)
(-1.53635 -0.183603 -0.116044)
(-1.53706 -0.342278 -0.111202)
(-1.56194 -0.514306 -0.101027)
(-1.57457 -0.712565 -0.0873615)
(-1.5926 -0.930894 -0.0700862)
(-1.59194 -1.16861 -0.0546411)
(-1.57412 -1.40815 -0.0342186)
(-1.52131 -1.61724 -0.0184893)
(-1.42925 -1.75406 -0.00353335)
(-1.29951 -1.76982 0.00866841)
(-1.16879 -1.67265 0.0220255)
(-1.12458 -1.34301 0.0413522)
(-0.912998 -0.880693 0.0733033)
(-0.504314 -0.452117 0.107387)
(-0.196319 -0.0698082 0.144222)
(-0.0643578 0.151624 0.14182)
(-0.022398 0.208249 0.11034)
(-0.0048307 0.0975248 0.0426459)
(0.00888376 -0.0305745 0.0389647)
(-0.0199527 0.0456968 0.0877195)
(-0.0996212 0.216856 0.127645)
(-0.208405 0.443673 0.149265)
(-0.358048 0.68646 0.14908)
(-0.535145 0.910985 0.13556)
(-0.809686 1.06102 0.11322)
(-1.20658 1.0533 0.0796083)
(-1.5453 0.992895 0.0541301)
(-1.77676 0.983571 0.0301424)
(-1.94953 0.952744 0.00441044)
(-2.03638 0.886141 -0.0251272)
(-2.07962 0.801594 -0.0517039)
(-2.08829 0.698968 -0.0648923)
(-2.06599 0.594258 -0.0712377)
(-2.02264 0.487583 -0.0683468)
(-1.96218 0.403417 -0.0690497)
(-1.8941 0.323245 -0.0719936)
(-1.81387 0.266608 -0.0916795)
(-1.66765 0.173352 -0.0998249)
(-1.41265 0.130433 -0.138206)
(-1.25661 -0.0227504 -0.147206)
(-1.24633 -0.168261 -0.151938)
(-1.25579 -0.324083 -0.143478)
(-1.28675 -0.485381 -0.131342)
(-1.31824 -0.674928 -0.114755)
(-1.36082 -0.887644 -0.0962189)
(-1.40072 -1.12865 -0.0770274)
(-1.44222 -1.38871 -0.0571328)
(-1.45961 -1.65021 -0.0369439)
(-1.45117 -1.87841 -0.0197205)
(-1.38912 -2.01447 -0.00418075)
(-1.27785 -2.00887 0.00886393)
(-1.1931 -1.84216 0.0228113)
(-1.08401 -1.38573 0.0435802)
(-0.747988 -0.828624 0.0742962)
(-0.316747 -0.324606 0.110843)
(-0.0802375 0.0542126 0.130153)
(-0.00968821 0.155203 0.108214)
(0.00301489 0.0837719 0.0448093)
(-0.000323998 0.00830783 0.053638)
(-0.0444468 0.131009 0.110933)
(-0.13155 0.328484 0.154032)
(-0.266324 0.57596 0.168673)
(-0.440175 0.813394 0.160392)
(-0.696543 1.00553 0.140452)
(-1.05666 1.04418 0.104044)
(-1.36961 1.0252 0.0660059)
(-1.60962 1.04647 0.0297528)
(-1.77284 1.02785 -0.00617462)
(-1.84041 0.961323 -0.0530125)
(-1.86709 0.882225 -0.0897486)
(-1.86478 0.778749 -0.118697)
(-1.83942 0.671793 -0.130101)
(-1.80233 0.564708 -0.127447)
(-1.7437 0.455046 -0.109409)
(-1.66467 0.364419 -0.0971783)
(-1.56991 0.291505 -0.0893499)
(-1.47129 0.246023 -0.111922)
(-1.31578 0.188378 -0.128386)
(-1.10877 0.145384 -0.183652)
(-1.00235 -0.0170518 -0.179238)
(-0.995815 -0.149098 -0.177174)
(-1.00645 -0.29539 -0.163378)
(-1.0347 -0.444765 -0.148193)
(-1.0691 -0.617569 -0.130309)
(-1.11685 -0.81462 -0.110614)
(-1.17157 -1.04301 -0.0918519)
(-1.23639 -1.30487 -0.0710829)
(-1.29948 -1.58625 -0.0518124)
(-1.34841 -1.87123 -0.0306227)
(-1.36261 -2.10548 -0.0146439)
(-1.3202 -2.23384 0.000965701)
(-1.22455 -2.18502 0.0116659)
(-1.14098 -1.89272 0.0251821)
(-0.916545 -1.29402 0.0444896)
(-0.441394 -0.634119 0.0757498)
(-0.11955 -0.108987 0.106263)
(-0.0291406 0.0924188 0.0928688)
(0.00852846 0.0712558 0.0392899)
(-0.00533179 0.0528919 0.0634151)
(-0.0672529 0.232746 0.130271)
(-0.177412 0.449822 0.172099)
(-0.324061 0.684834 0.180652)
(-0.529542 0.902192 0.165901)
(-0.838957 1.02363 0.137177)
(-1.15808 1.05929 0.0949998)
(-1.4084 1.10253 0.0491794)
(-1.57659 1.09596 -0.000835207)
(-1.63704 1.03608 -0.0602477)
(-1.65573 0.953903 -0.112158)
(-1.63926 0.852192 -0.158945)
(-1.61415 0.753881 -0.19128)
(-1.58813 0.648754 -0.197072)
(-1.55651 0.545001 -0.181916)
(-1.49981 0.426614 -0.13945)
(-1.40598 0.339282 -0.104024)
(-1.28189 0.267691 -0.0898243)
(-1.16005 0.240092 -0.116289)
(-1.01677 0.224579 -0.16034)
(-0.878983 0.171608 -0.220199)
(-0.813678 -0.00327034 -0.20179)
(-0.798858 -0.126886 -0.192454)
(-0.810352 -0.266718 -0.174525)
(-0.829076 -0.405122 -0.155874)
(-0.858883 -0.560252 -0.136688)
(-0.900999 -0.737954 -0.115865)
(-0.954109 -0.94444 -0.0966232)
(-1.02367 -1.18889 -0.0763857)
(-1.10204 -1.47014 -0.0569717)
(-1.18475 -1.77878 -0.0371263)
(-1.25019 -2.08201 -0.019091)
(-1.27412 -2.32146 -0.00289947)
(-1.23596 -2.41792 0.00895004)
(-1.1395 -2.28673 0.0199612)
(-1.00053 -1.82144 0.029982)
(-0.637181 -1.05931 0.0517855)
(-0.201854 -0.393181 0.0752885)
(-0.0367819 0.0299507 0.0869426)
(0.0111325 0.0560333 0.0398187)
(-0.00941763 0.113521 0.0751598)
(-0.0852299 0.349576 0.147107)
(-0.210917 0.585097 0.185575)
(-0.371366 0.81822 0.186614)
(-0.621568 1.00573 0.166395)
(-0.927941 1.08935 0.129657)
(-1.1917 1.14512 0.0836687)
(-1.36237 1.15787 0.024178)
(-1.43821 1.1079 -0.0428889)
(-1.44859 1.01941 -0.107978)
(-1.42285 0.91895 -0.177029)
(-1.38525 0.826117 -0.232163)
(-1.36611 0.738599 -0.269174)
(-1.35277 0.647955 -0.27216)
(-1.34866 0.544967 -0.241267)
(-1.29956 0.426907 -0.173359)
(-1.19148 0.310289 -0.118692)
(-1.0413 0.233903 -0.0872707)
(-0.88504 0.214234 -0.144398)
(-0.771733 0.256648 -0.216435)
(-0.72543 0.208104 -0.276953)
(-0.698684 0.00954557 -0.226666)
(-0.660992 -0.120763 -0.20503)
(-0.669082 -0.248758 -0.182589)
(-0.675091 -0.380055 -0.159199)
(-0.695074 -0.516011 -0.139029)
(-0.726147 -0.674702 -0.116187)
(-0.768667 -0.855276 -0.0967833)
(-0.829256 -1.07551 -0.0762813)
(-0.904181 -1.33619 -0.0578358)
(-0.994703 -1.64473 -0.0384503)
(-1.08538 -1.97992 -0.0206761)
(-1.15632 -2.30196 -0.00441467)
(-1.17256 -2.52884 0.00763626)
(-1.11616 -2.55495 0.0169415)
(-0.987887 -2.27312 0.023871)
(-0.755453 -1.56728 0.0316916)
(-0.29831 -0.686388 0.0529218)
(-0.0362186 -0.0847989 0.0612653)
(-0.0148614 0.0388397 0.0319948)
(-0.0106243 0.18 0.0867339)
(-0.094899 0.47406 0.163411)
(-0.231408 0.724461 0.198387)
(-0.418684 0.952664 0.194759)
(-0.690576 1.10052 0.168571)
(-0.954669 1.18166 0.124547)
(-1.14047 1.21577 0.0674528)
(-1.23765 1.18598 -0.0041858)
(-1.25924 1.09019 -0.0783127)
(-1.22375 0.980365 -0.16042)
(-1.17452 0.883078 -0.241087)
(-1.13566 0.79959 -0.308867)
(-1.12707 0.731979 -0.360164)
(-1.14589 0.646489 -0.36647)
(-1.17467 0.549069 -0.33417)
(-1.15236 0.363089 -0.227743)
(-1.01269 0.213102 -0.105632)
(-0.814102 0.0722326 -0.0446838)
(-0.704635 0.099639 -0.108034)
(-0.683946 0.284749 -0.275943)
(-0.699824 0.280307 -0.350741)
(-0.647808 0.0116923 -0.239665)
(-0.569085 -0.135024 -0.201217)
(-0.566157 -0.24364 -0.184485)
(-0.562335 -0.369287 -0.156661)
(-0.571615 -0.486708 -0.137346)
(-0.592864 -0.628281 -0.11228)
(-0.622166 -0.783844 -0.0921305)
(-0.669857 -0.976343 -0.0708719)
(-0.731922 -1.20931 -0.0524744)
(-0.815689 -1.49833 -0.033829)
(-0.911488 -1.83896 -0.0166435)
(-1.00593 -2.20737 -0.000239773)
(-1.0683 -2.53882 0.0120142)
(-1.06484 -2.72495 0.0216404)
(-0.962964 -2.61721 0.0257713)
(-0.772594 -2.08098 0.0294243)
(-0.411917 -1.08579 0.0380385)
(-0.07891 -0.2535 0.0579492)
(-0.0161194 0.0157692 0.0327432)
(-0.00904467 0.244087 0.0953614)
(-0.0955838 0.592744 0.174827)
(-0.241795 0.858132 0.207397)
(-0.459975 1.06424 0.202434)
(-0.713967 1.19658 0.16729)
(-0.917421 1.2706 0.118331)
(-1.04359 1.26597 0.0461152)
(-1.08042 1.17735 -0.0285145)
(-1.06036 1.05404 -0.116654)
(-0.995455 0.934929 -0.207821)
(-0.935579 0.840411 -0.303533)
(-0.893563 0.772165 -0.391012)
(-0.911313 0.715449 -0.46433)
(-0.962124 0.639505 -0.487118)
(-1.06048 0.503568 -0.399411)
(-0.968754 0.30836 -0.116183)
(-0.723127 0.117112 0.167758)
(-0.62415 0.136353 0.19352)
(-0.749186 0.236038 -0.100663)
(-0.871396 0.431716 -0.422746)
(-0.78668 0.34267 -0.451646)
(-0.627056 -0.0290042 -0.230808)
(-0.511717 -0.177922 -0.183049)
(-0.48679 -0.254418 -0.184792)
(-0.479045 -0.373548 -0.153341)
(-0.477588 -0.473088 -0.135984)
(-0.492273 -0.600604 -0.10829)
(-0.50876 -0.734397 -0.0869627)
(-0.543221 -0.901317 -0.0641219)
(-0.588171 -1.10275 -0.0453971)
(-0.656864 -1.36258 -0.0271133)
(-0.742278 -1.68686 -0.0103896)
(-0.841536 -2.07037 0.0048072)
(-0.929402 -2.46991 0.0172863)
(-0.971244 -2.7883 0.025819)
(-0.919338 -2.86095 0.0292819)
(-0.75069 -2.50943 0.0263461)
(-0.454483 -1.58188 0.027879)
(-0.101378 -0.487524 0.0314501)
(-0.015594 -0.0324369 0.0239029)
(-0.00617275 0.304566 0.10398)
(-0.0867113 0.709293 0.186723)
(-0.253203 0.980753 0.219652)
(-0.471185 1.16887 0.213309)
(-0.684708 1.30341 0.168588)
(-0.839243 1.34493 0.115178)
(-0.916534 1.29214 0.0317925)
(-0.915737 1.15764 -0.048508)
(-0.863918 1.01039 -0.145001)
(-0.78102 0.881852 -0.244442)
(-0.708984 0.790762 -0.356976)
(-0.67054 0.728775 -0.469332)
(-0.708439 0.681463 -0.576864)
(-0.819392 0.60946 -0.551791)
(-0.842553 0.576695 -0.240828)
(-0.634496 0.507101 0.379368)
(-0.418591 0.483359 0.651129)
(-0.520024 0.528675 0.316352)
(-0.817252 0.41108 -0.24034)
(-0.892214 0.449356 -0.641248)
(-0.669798 0.283668 -0.517211)
(-0.507107 -0.121243 -0.192975)
(-0.445578 -0.241361 -0.155545)
(-0.403508 -0.282523 -0.179912)
(-0.407612 -0.388983 -0.149414)
(-0.399637 -0.471963 -0.133428)
(-0.414659 -0.586608 -0.103253)
(-0.42215 -0.702702 -0.0798527)
(-0.446859 -0.847566 -0.0549681)
(-0.476245 -1.02085 -0.0348132)
(-0.528628 -1.24823 -0.0163743)
(-0.598101 -1.54549 0.000372031)
(-0.68975 -1.92252 0.0146151)
(-0.789348 -2.35941 0.0284701)
(-0.860649 -2.77744 0.0367845)
(-0.85989 -3.01419 0.0384455)
(-0.733395 -2.8546 0.0345599)
(-0.485119 -2.06223 0.0289935)
(-0.127518 -0.821984 0.028462)
(-0.00481131 -0.110669 0.0243177)
(4.96115e-05 0.346019 0.109544)
(-0.0818926 0.803986 0.193676)
(-0.253946 1.07928 0.232629)
(-0.450876 1.27126 0.216479)
(-0.63011 1.39038 0.169324)
(-0.747208 1.39263 0.110532)
(-0.787734 1.28859 0.0251737)
(-0.76136 1.12339 -0.0625747)
(-0.690764 0.957413 -0.162372)
(-0.592067 0.820635 -0.266963)
(-0.508932 0.726901 -0.396088)
(-0.467374 0.665945 -0.541935)
(-0.54426 0.648761 -0.646697)
(-0.569931 0.729738 -0.449449)
(-0.466898 1.05597 0.160879)
(-0.269326 1.12786 0.906442)
(-0.256429 1.00443 0.870506)
(-0.387755 0.638 0.165597)
(-0.546272 0.289426 -0.418564)
(-0.580718 0.304069 -0.669487)
(-0.299893 0.221078 -0.519921)
(-0.268193 -0.16308 -0.183048)
(-0.341068 -0.271498 -0.14303)
(-0.308082 -0.295983 -0.177642)
(-0.333814 -0.40064 -0.149035)
(-0.325721 -0.474165 -0.132685)
(-0.346836 -0.58116 -0.100363)
(-0.35003 -0.685073 -0.0739914)
(-0.370391 -0.81238 -0.046444)
(-0.387856 -0.960488 -0.0245063)
(-0.425903 -1.15518 -0.00495646)
(-0.477906 -1.41863 0.0104395)
(-0.55627 -1.77496 0.0252471)
(-0.653591 -2.22366 0.0395129)
(-0.742415 -2.70865 0.0468686)
(-0.779734 -3.08715 0.0484849)
(-0.696185 -3.11148 0.0412925)
(-0.485682 -2.49035 0.0327498)
(-0.139491 -1.17972 0.0238518)
(0.0241496 -0.153525 0.0208475)
(0.00456614 0.384558 0.11353)
(-0.0738263 0.894688 0.206157)
(-0.232713 1.19122 0.24186)
(-0.404036 1.38286 0.222997)
(-0.557572 1.4762 0.174303)
(-0.646363 1.43779 0.11088)
(-0.664754 1.29148 0.0242747)
(-0.62476 1.09821 -0.0656514)
(-0.543435 0.911172 -0.161995)
(-0.432649 0.761378 -0.264826)
(-0.337087 0.65377 -0.404742)
(-0.296837 0.600504 -0.567546)
(-0.36603 0.689674 -0.590273)
(-0.18227 1.12945 -0.146402)
(0.0434755 1.73832 0.452776)
(-0.069637 1.77656 1.08276)
(-0.252002 1.14293 0.826708)
(-0.242338 0.587383 0.00796919)
(-0.321726 0.315858 -0.315951)
(-0.325292 0.326172 -0.417446)
(0.00894988 0.21342 -0.433887)
(-0.0494682 -0.162476 -0.19818)
(-0.232423 -0.281743 -0.155488)
(-0.216871 -0.280391 -0.173449)
(-0.267972 -0.3876 -0.150206)
(-0.25649 -0.468259 -0.131016)
(-0.287446 -0.57344 -0.095945)
(-0.288273 -0.671115 -0.0664135)
(-0.306007 -0.786725 -0.0365658)
(-0.314555 -0.917051 -0.0121087)
(-0.34228 -1.08529 0.00732265)
(-0.382249 -1.31888 0.0241431)
(-0.448055 -1.64594 0.0383667)
(-0.537876 -2.09092 0.0515318)
(-0.632856 -2.61989 0.0600306)
(-0.696251 -3.1165 0.0612948)
(-0.650565 -3.31521 0.0534765)
(-0.475995 -2.8755 0.0411977)
(-0.152259 -1.57453 0.0268276)
(0.0546649 -0.234083 0.0219148)
(0.00481495 0.397258 0.118597)
(-0.0579087 0.956878 0.211889)
(-0.19811 1.28739 0.244769)
(-0.352072 1.46925 0.227394)
(-0.483148 1.53444 0.175845)
(-0.555864 1.45889 0.110216)
(-0.566071 1.28234 0.0244797)
(-0.524205 1.0699 -0.0622993)
(-0.439305 0.867181 -0.147351)
(-0.315799 0.704166 -0.244033)
(-0.200995 0.566775 -0.37773)
(-0.152088 0.532646 -0.525831)
(-0.129045 0.820992 -0.370739)
(0.275782 1.48537 0.222585)
(0.409123 2.11204 0.595158)
(0.177537 1.87293 0.736113)
(-0.0172013 1.06075 0.58837)
(-0.326403 0.393923 -0.044072)
(-0.3525 0.332771 -0.0859419)
(-0.140491 0.353297 -0.0527036)
(0.267543 0.129168 -0.275703)
(0.165593 -0.196579 -0.211957)
(-0.0909818 -0.308836 -0.168826)
(-0.0948354 -0.264648 -0.171653)
(-0.204976 -0.349524 -0.13578)
(-0.195331 -0.427274 -0.122264)
(-0.228392 -0.544431 -0.0918994)
(-0.22945 -0.652776 -0.0594529)
(-0.249873 -0.763148 -0.0265517)
(-0.254496 -0.877206 -0.000205772)
(-0.276583 -1.01972 0.0203277)
(-0.303126 -1.22186 0.0372846)
(-0.355428 -1.5172 0.0517162)
(-0.435633 -1.95125 0.0638052)
(-0.534666 -2.50635 0.0717598)
(-0.617201 -3.09999 0.0733617)
(-0.6074 -3.4591 0.0647906)
(-0.465331 -3.19905 0.05108)
(-0.171184 -1.93382 0.0314189)
(0.0617529 -0.283973 0.0226767)
(0.00537312 0.424738 0.11734)
(-0.024797 1.03839 0.21373)
(-0.147312 1.39774 0.251551)
(-0.298402 1.57349 0.232715)
(-0.410319 1.61311 0.181547)
(-0.474348 1.51091 0.112708)
(-0.481267 1.31502 0.0290966)
(-0.443435 1.08698 -0.0526252)
(-0.354009 0.864437 -0.119112)
(-0.232005 0.675544 -0.19243)
(-0.112677 0.505563 -0.277374)
(-0.0391168 0.54052 -0.336112)
(0.082021 1.01121 0.103357)
(0.531627 1.52943 0.708647)
(0.464352 1.73465 0.11006)
(0.565593 1.41938 -0.0719006)
(0.433934 0.702034 0.345895)
(-0.426586 -0.100652 -0.14722)
(-0.29394 0.039003 -0.365021)
(0.0444648 0.139707 0.0825647)
(0.512277 -0.0214139 -0.150698)
(0.49593 -0.313144 -0.241333)
(0.0984214 -0.381853 -0.213144)
(0.0704268 -0.27435 -0.188509)
(-0.109895 -0.335043 -0.133133)
(-0.135451 -0.372684 -0.0973931)
(-0.195894 -0.465706 -0.065593)
(-0.187365 -0.578339 -0.0432476)
(-0.19322 -0.701402 -0.0150382)
(-0.189143 -0.828964 0.011675)
(-0.209156 -0.968482 0.0325605)
(-0.232064 -1.14755 0.0493112)
(-0.277353 -1.40286 0.0619321)
(-0.345123 -1.81028 0.0740664)
(-0.436986 -2.37714 0.0841923)
(-0.530414 -3.05874 0.0862162)
(-0.552349 -3.5769 0.0778387)
(-0.443029 -3.50647 0.061743)
(-0.176814 -2.31955 0.0386693)
(0.0665483 -0.400518 0.0234514)
(-0.000913198 0.433219 0.117949)
(-0.0326334 1.12718 0.217757)
(-0.116805 1.49894 0.250941)
(-0.241887 1.68804 0.239753)
(-0.341469 1.70682 0.184571)
(-0.391538 1.58499 0.118509)
(-0.40013 1.38024 0.0339717)
(-0.373445 1.1435 -0.0361531)
(-0.297219 0.918431 -0.0803139)
(-0.196105 0.720974 -0.117153)
(-0.0560567 0.524579 -0.13128)
(-0.000538308 0.678708 -0.124565)
(0.190721 1.11597 0.578927)
(0.342731 1.17299 0.580029)
(-0.159653 0.923383 -0.72333)
(0.425552 0.942749 -0.695562)
(1.08358 0.240721 0.418963)
(0.297342 -0.665087 -0.216606)
(0.123583 -0.417135 -1.24546)
(0.416917 -0.25506 -0.456703)
(1.01648 -0.25522 -0.16331)
(1.0261 -0.509034 -0.27816)
(0.406877 -0.536363 -0.239921)
(0.29442 -0.317367 -0.204167)
(0.0260996 -0.319862 -0.141659)
(-0.00951591 -0.349084 -0.093781)
(-0.121157 -0.411826 -0.0539295)
(-0.156172 -0.489245 -0.0165127)
(-0.184612 -0.585768 0.0112176)
(-0.177525 -0.698564 0.0336064)
(-0.177557 -0.828529 0.0483878)
(-0.172812 -1.00301 0.0634936)
(-0.199294 -1.24661 0.0771124)
(-0.251096 -1.6416 0.0876103)
(-0.343878 -2.20501 0.0959753)
(-0.450149 -2.94315 0.0983893)
(-0.506517 -3.61471 0.0904)
(-0.444704 -3.74383 0.0725586)
(-0.212031 -2.65702 0.0489188)
(0.0462795 -0.457826 0.0280445)
(0.0106108 0.565764 0.111525)
(-0.00144608 1.32249 0.210404)
(-0.0588784 1.72112 0.255249)
(-0.157298 1.90397 0.237663)
(-0.251695 1.92102 0.194133)
(-0.294131 1.79528 0.129092)
(-0.305601 1.5984 0.0484719)
(-0.29641 1.36655 -0.0265222)
(-0.238391 1.15689 -0.0667218)
(-0.182194 0.941833 -0.0526608)
(-0.02347 0.728702 -0.0266518)
(-0.0926933 0.894963 0.16419)
(0.0463788 1.09658 0.816068)
(-0.0596017 0.737003 0.0513984)
(-0.907309 0.253239 -1.23367)
(-0.217973 0.668913 -0.487569)
(1.52655 0.185898 1.15909)
(1.86789 -0.948151 0.805594)
(1.70886 -1.44777 -1.31333)
(1.08982 -1.10726 -1.35733)
(1.56201 -0.802044 -0.311796)
(1.7924 -0.901498 -0.266734)
(0.832149 -0.809046 -0.248538)
(0.635022 -0.430294 -0.217941)
(0.198301 -0.291104 -0.156041)
(0.0939494 -0.313464 -0.0923919)
(-0.0222866 -0.374557 -0.0370409)
(-0.0579867 -0.450276 -0.00176719)
(-0.102602 -0.511237 0.0284364)
(-0.121181 -0.593483 0.0480718)
(-0.153999 -0.684264 0.0562554)
(-0.170377 -0.820141 0.0631668)
(-0.202888 -1.01282 0.0677064)
(-0.223845 -1.35307 0.0799826)
(-0.254892 -1.90547 0.104756)
(-0.34133 -2.72734 0.108327)
(-0.421684 -3.5468 0.10114)
(-0.406611 -3.91924 0.0809475)
(-0.208173 -3.03203 0.0551082)
(0.0561381 -0.663736 0.0276831)
(-0.0145324 0.768683 0.127835)
(-0.0138313 1.59829 0.229752)
(-0.0412944 2.02899 0.270981)
(-0.0977075 2.1797 0.248738)
(-0.1617 2.19315 0.205423)
(-0.203125 2.05276 0.138991)
(-0.218203 1.84272 0.0561596)
(-0.230889 1.61061 -0.0130176)
(-0.208943 1.40378 -0.041823)
(-0.209198 1.16921 0.020792)
(-0.0982301 1.00656 0.0984679)
(-0.320756 1.09649 0.467653)
(-0.236808 1.06381 0.881988)
(-0.819845 0.561715 -0.440233)
(-1.95553 -0.426245 -1.46151)
(-1.24116 -0.485496 -0.161753)
(1.17945 -0.295855 1.37377)
(2.35947 -1.05299 2.09928)
(3.31347 -1.78607 0.579468)
(2.42346 -1.62488 -0.481098)
(2.21075 -1.22288 0.197934)
(2.83052 -1.26031 0.0225434)
(1.42314 -1.08612 -0.281629)
(1.07736 -0.625599 -0.281237)
(0.474117 -0.28394 -0.184654)
(0.22672 -0.265598 -0.0844392)
(0.0546995 -0.305135 -0.0350587)
(0.00687855 -0.397051 0.0143479)
(-0.0355484 -0.468734 0.044596)
(-0.0573478 -0.553563 0.0644008)
(-0.082414 -0.620329 0.0755266)
(-0.0925967 -0.709103 0.081153)
(-0.125929 -0.829784 0.0834005)
(-0.192443 -1.0809 0.0711414)
(-0.31065 -1.53537 0.068125)
(-0.369546 -2.31298 0.0911837)
(-0.402188 -3.26395 0.100768)
(-0.419716 -3.88954 0.0868189)
(-0.265076 -3.29214 0.0647214)
(0.00651282 -0.989129 0.0374775)
(-0.0325986 0.762556 0.109229)
(-0.0270518 1.66412 0.215944)
(-0.0178492 2.13624 0.260582)
(-0.049912 2.30802 0.250393)
(-0.0835287 2.29576 0.189225)
(-0.119899 2.15413 0.129236)
(-0.145084 1.93878 0.0454823)
(-0.164579 1.71125 -0.0172686)
(-0.16616 1.52497 -0.044278)
(-0.183861 1.32778 0.0633349)
(-0.146965 1.25357 0.15103)
(-0.529594 1.26962 0.601016)
(-0.759391 1.09939 0.628172)
(-1.58208 0.624061 -0.893982)
(-2.62395 -0.836076 -1.45185)
(-1.94321 -1.95869 -0.190811)
(0.0154575 -1.55242 0.636876)
(0.878323 -1.61097 1.6908)
(2.18823 -1.88673 2.0655)
(2.82691 -1.61721 1.5029)
(2.52402 -1.67575 1.6395)
(2.40171 -1.20247 0.743602)
(1.09486 -0.650351 0.140893)
(1.08561 -0.462125 -0.0821455)
(0.779008 -0.226459 -0.185724)
(0.378303 -0.237632 -0.110559)
(0.147988 -0.238933 -0.0160019)
(0.0709428 -0.340004 0.0312345)
(0.0236071 -0.426127 0.0497306)
(0.00384283 -0.511668 0.0701952)
(-0.0182727 -0.578664 0.0826774)
(-0.0287526 -0.665917 0.0925288)
(-0.0564384 -0.768734 0.0926106)
(-0.0747518 -0.963155 0.0921611)
(-0.174727 -1.30029 0.0881737)
(-0.351956 -1.93791 0.0716099)
(-0.450846 -2.84151 0.0839436)
(-0.470749 -3.60865 0.0778918)
(-0.369694 -3.2772 0.0605501)
(-0.0809333 -1.06053 0.0345412)
(-0.0171463 0.742575 0.10468)
(-0.00222899 1.65878 0.210543)
(0.0126669 2.14584 0.253954)
(0.00218221 2.33982 0.243903)
(-0.013779 2.32835 0.185997)
(-0.040407 2.18805 0.110673)
(-0.0654144 1.98746 0.0194745)
(-0.0873869 1.79012 -0.052074)
(-0.102207 1.62909 -0.08493)
(-0.100542 1.48709 0.0365437)
(-0.0957897 1.42011 0.115635)
(-0.567728 1.44703 0.532604)
(-1.07455 1.38385 0.200612)
(-2.04215 1.22125 -1.53527)
(-2.54684 -0.323573 -1.39256)
(-1.57209 -2.53308 -0.301936)
(-0.465669 -2.6045 0.129319)
(-0.318904 -1.76112 1.07587)
(0.0451554 -1.06704 1.62374)
(1.95305 -0.151418 1.63821)
(1.58756 0.119449 1.70735)
(0.59471 0.533707 1.24898)
(0.598637 0.410573 1.26709)
(1.14969 -0.167859 0.672231)
(1.24883 -0.29285 -0.0963843)
(0.591912 -0.200032 -0.0982213)
(0.24845 -0.145499 0.0136407)
(0.120601 -0.291093 0.0528162)
(0.0696654 -0.394324 0.0675964)
(0.0534863 -0.482651 0.0831731)
(0.0334018 -0.548108 0.0944236)
(0.0243635 -0.626046 0.101023)
(-0.00100585 -0.707132 0.101748)
(-0.0130451 -0.869971 0.105847)
(-0.0935454 -1.18766 0.0935284)
(-0.23411 -1.74458 0.0872157)
(-0.371358 -2.51739 0.0810755)
(-0.447781 -3.32044 0.0762808)
(-0.375272 -3.18848 0.0575737)
(-0.123299 -1.1219 0.0357688)
(-0.00919004 0.715682 0.0900786)
(0.0197905 1.60843 0.187898)
(0.0473379 2.1133 0.235306)
(0.0486455 2.33114 0.232178)
(0.0431439 2.3339 0.178071)
(0.0268388 2.20495 0.100621)
(0.0125006 2.01086 -0.0051809)
(-0.000891133 1.82249 -0.0984494)
(-0.00677251 1.67238 -0.166207)
(0.000159813 1.54484 -0.10181)
(0.0365114 1.46065 -0.0807916)
(-0.348722 1.52677 0.206587)
(-0.790099 1.82436 -0.230561)
(-1.69606 2.08157 -1.8716)
(-1.55238 0.689496 -1.35394)
(-0.106004 -2.26237 0.0685906)
(0.0790707 -2.64485 0.532557)
(0.411595 -1.37763 1.17249)
(0.087756 -0.0932151 1.32661)
(1.27447 2.15124 1.39602)
(1.24881 3.26318 1.6996)
(0.238446 2.01071 1.83527)
(1.08139 0.582079 1.2368)
(1.68202 -0.300877 0.325394)
(1.55035 -0.373315 -0.0831205)
(0.729232 -0.0362895 0.0244807)
(0.314881 0.000668275 0.0453232)
(0.155786 -0.200779 0.0780021)
(0.118069 -0.352977 0.0960122)
(0.107197 -0.459643 0.102552)
(0.0922664 -0.532278 0.108692)
(0.0894999 -0.610071 0.109443)
(0.0693536 -0.684835 0.107468)
(0.04354 -0.832336 0.0999095)
(-0.0218075 -1.09603 0.102557)
(-0.124507 -1.62112 0.0948237)
(-0.2744 -2.35997 0.0872079)
(-0.388601 -3.19701 0.0701958)
(-0.369484 -3.235 0.0501764)
(-0.144448 -1.34455 0.032611)
(-0.00270589 0.663299 0.0763558)
(0.0413347 1.52869 0.168546)
(0.0837856 2.0515 0.21603)
(0.0970032 2.29116 0.215333)
(0.100962 2.31568 0.165102)
(0.0914638 2.20141 0.0814393)
(0.0797477 2.01629 -0.023724)
(0.0765829 1.82431 -0.134631)
(0.0726386 1.66318 -0.234865)
(0.0919996 1.51953 -0.246494)
(0.13288 1.39899 -0.381811)
(-0.169815 1.4141 -0.340645)
(-0.527069 1.89967 -0.424483)
(-1.27151 2.33589 -1.83187)
(-1.14562 1.28361 -1.78021)
(0.00916386 -1.15682 0.176323)
(0.282887 -1.93505 0.97724)
(0.780297 -1.51224 0.588006)
(0.698529 -0.808693 0.476058)
(1.27855 2.12496 1.107)
(1.29642 4.34293 0.999138)
(0.194754 2.84022 0.427526)
(0.156007 0.871801 -0.795065)
(0.47179 -0.0241406 -1.20111)
(0.562904 -0.178359 -0.453923)
(0.22629 0.181716 0.0862067)
(0.131913 0.119558 0.105552)
(0.0741003 -0.145599 0.123538)
(0.0864866 -0.318962 0.123371)
(0.122595 -0.442197 0.11684)
(0.120948 -0.519382 0.122833)
(0.12498 -0.595216 0.125348)
(0.102722 -0.655342 0.120076)
(0.0861755 -0.790359 0.114011)
(0.0158671 -1.01318 0.108066)
(-0.0559492 -1.5177 0.115617)
(-0.187165 -2.27554 0.0951512)
(-0.316982 -3.19741 0.0747696)
(-0.33968 -3.37569 0.0497175)
(-0.14185 -1.5771 0.0341869)
(0.00134573 0.607548 0.0629211)
(0.0570551 1.43863 0.147971)
(0.113461 1.97853 0.196709)
(0.13897 2.24222 0.199471)
(0.1516 2.28679 0.154327)
(0.14837 2.1848 0.0713841)
(0.141002 2.00567 -0.0351644)
(0.140034 1.80926 -0.157384)
(0.138146 1.62231 -0.280775)
(0.144086 1.46379 -0.35777)
(0.171423 1.2753 -0.535382)
(-0.11467 1.19841 -0.673216)
(-0.356571 1.6858 -0.448943)
(-1.16003 2.28056 -1.37541)
(-1.96219 1.47932 -2.34389)
(-1.28767 -0.0293714 -0.715092)
(0.293607 -0.858111 -0.039294)
(0.819208 -1.18541 -1.37356)
(-0.277483 -0.586282 -1.20981)
(-0.201574 1.89772 0.301321)
(0.23533 3.88942 0.440234)
(-0.0642787 2.89681 -0.618421)
(-0.53213 1.05147 -1.77347)
(-0.719744 0.194803 -1.76985)
(-0.500495 0.114691 -0.824001)
(-0.205128 0.355425 -0.12729)
(-0.000417138 0.280488 0.15803)
(0.0121057 -0.00524793 0.276238)
(0.0562095 -0.275191 0.177365)
(0.143692 -0.440136 0.136021)
(0.170416 -0.527563 0.141071)
(0.19174 -0.607073 0.134453)
(0.169039 -0.664916 0.123408)
(0.156249 -0.790068 0.115216)
(0.0760075 -0.992517 0.114802)
(0.00187756 -1.47605 0.109729)
(-0.127587 -2.27811 0.0992482)
(-0.258304 -3.31511 0.074322)
(-0.320436 -3.6646 0.0478713)
(-0.139719 -1.9177 0.0297259)
(0.00425469 0.538627 0.0495352)
(0.0687007 1.32781 0.128179)
(0.137898 1.8814 0.177665)
(0.17458 2.17063 0.184503)
(0.195189 2.23754 0.145971)
(0.196557 2.15046 0.0670673)
(0.189895 1.97976 -0.0349923)
(0.182524 1.77848 -0.158904)
(0.179397 1.57759 -0.28343)
(0.156848 1.39448 -0.38624)
(0.165869 1.19015 -0.535476)
(-0.0604488 0.99795 -0.67344)
(-0.148515 1.37945 -0.330839)
(-0.541396 2.02835 -0.487253)
(-1.41012 1.78668 -1.593)
(-1.16575 0.913636 -1.14633)
(0.985956 0.0350808 -0.817767)
(1.6488 0.0541259 -2.42579)
(-0.15237 0.915628 -2.07028)
(-0.870452 2.21644 -0.370318)
(-0.200241 3.11831 0.125573)
(0.5451 2.62746 -0.444803)
(0.532186 1.53582 -1.21052)
(-0.0735675 0.779137 -1.37504)
(-0.328759 0.57648 -0.868228)
(-0.218635 0.328191 -0.406942)
(-0.020063 0.182701 -0.10668)
(0.0137994 -0.0492614 0.107008)
(0.0223825 -0.323414 0.131952)
(0.135362 -0.501873 0.150854)
(0.195393 -0.594312 0.183349)
(0.229702 -0.701452 0.175317)
(0.197935 -0.790893 0.162745)
(0.187051 -0.924355 0.147132)
(0.117986 -1.13601 0.150232)
(0.0336526 -1.59869 0.134734)
(-0.0990402 -2.41281 0.133085)
(-0.212024 -3.5728 0.101649)
(-0.280205 -4.12987 0.0707927)
(-0.120359 -2.5202 0.045894)
(0.011327 0.477374 0.0406668)
(0.0827115 1.21857 0.112109)
(0.157123 1.78347 0.161827)
(0.202674 2.10134 0.173173)
(0.231344 2.19455 0.14203)
(0.238749 2.12656 0.0708556)
(0.232301 1.96669 -0.0250217)
(0.219055 1.76728 -0.139902)
(0.207665 1.56368 -0.255103)
(0.171649 1.36815 -0.353459)
(0.137937 1.17586 -0.444727)
(-0.0112894 0.943512 -0.541276)
(-0.192994 1.06182 -0.304072)
(-0.117098 1.46407 0.0947742)
(-0.410226 1.78068 -0.42953)
(-0.662141 1.66309 -0.871557)
(0.118265 0.736435 -1.05803)
(0.544165 0.772138 -1.75235)
(-0.391603 1.92534 -1.19118)
(-1.02166 2.61827 -0.348153)
(-0.880095 2.56594 -0.313627)
(-0.328605 1.81087 -0.597502)
(0.339574 1.58032 -0.881594)
(0.310771 1.55295 -0.879132)
(-0.0469313 0.900217 -0.440034)
(-0.0913377 -0.119524 -0.11236)
(0.149109 -0.556953 -0.107536)
(0.219012 -0.481901 -0.0544104)
(0.144089 -0.439399 0.0591881)
(0.171931 -0.523427 0.158807)
(0.213437 -0.608568 0.189968)
(0.232974 -0.734403 0.184441)
(0.211041 -0.838331 0.181134)
(0.18988 -0.989078 0.155921)
(0.122236 -1.16226 0.15486)
(0.0540384 -1.63276 0.146774)
(-0.0905159 -2.44683 0.145972)
(-0.200512 -3.74551 0.11658)
(-0.296488 -4.54196 0.0860319)
(-0.141433 -3.14484 0.0607065)
(0.0156781 0.419169 0.0318199)
(0.095742 1.09116 0.095449)
(0.17482 1.65843 0.146154)
(0.223774 2.00151 0.162699)
(0.259229 2.12377 0.139712)
(0.272361 2.07967 0.0777397)
(0.267992 1.93536 -0.0102038)
(0.251433 1.75011 -0.112752)
(0.233805 1.5577 -0.214754)
(0.190125 1.37435 -0.303029)
(0.129698 1.21005 -0.361978)
(0.0114861 1.02992 -0.41001)
(-0.236922 0.984761 -0.300265)
(-0.377264 1.21041 0.111961)
(-0.515847 1.52553 0.364997)
(-0.822011 1.8324 0.0329068)
(-1.47294 1.59006 -1.00217)
(-1.98984 1.55378 -1.41832)
(-2.00968 2.3522 -0.799464)
(-1.73361 3.07015 -0.591255)
(-1.67216 2.54981 -0.697994)
(-1.6496 1.18742 -0.588928)
(-0.775457 0.908978 -0.42336)
(-0.0429376 1.30803 -0.3829)
(0.154477 0.79828 0.0925279)
(0.46146 -0.334758 0.495161)
(0.643634 -0.94348 0.35162)
(0.515079 -0.68509 0.163312)
(0.305463 -0.478006 0.143165)
(0.252859 -0.491852 0.170389)
(0.236639 -0.553203 0.164612)
(0.249422 -0.667607 0.16404)
(0.218215 -0.759247 0.161558)
(0.22908 -0.924439 0.162338)
(0.145227 -1.08658 0.151103)
(0.0642421 -1.51364 0.15089)
(-0.0749046 -2.31375 0.151655)
(-0.193157 -3.71106 0.121583)
(-0.315751 -4.73985 0.0912852)
(-0.169169 -3.60972 0.0624006)
(0.0109358 0.374697 0.027197)
(0.0972055 0.982099 0.0840257)
(0.190833 1.5368 0.131441)
(0.23996 1.91136 0.154346)
(0.28024 2.06575 0.139743)
(0.301761 2.05086 0.0875381)
(0.307267 1.92602 0.00909784)
(0.29773 1.75776 -0.0819034)
(0.281773 1.57908 -0.174935)
(0.247553 1.41221 -0.254529)
(0.189066 1.27855 -0.310035)
(0.0954971 1.16328 -0.331154)
(-0.0753802 1.11558 -0.312242)
(-0.340861 1.25138 -0.0812936)
(-0.601655 1.56639 0.406645)
(-0.674645 2.02248 0.75972)
(-1.16309 2.22249 0.0853564)
(-1.80381 2.20343 -0.400874)
(-1.86006 2.45495 -0.420985)
(-1.36418 2.82595 -0.664098)
(-0.898113 2.72271 -0.652367)
(-0.884794 1.85788 -0.637102)
(-0.502472 1.16052 -0.600931)
(0.152769 1.03643 -0.6243)
(0.433059 0.751999 -0.218464)
(0.559742 0.096627 0.468957)
(0.641535 -0.395959 0.681904)
(0.619147 -0.413911 0.39962)
(0.443359 -0.386625 0.175889)
(0.358066 -0.43146 0.133538)
(0.299834 -0.477174 0.124376)
(0.290051 -0.580441 0.13022)
(0.233237 -0.659208 0.136916)
(0.223226 -0.826232 0.137253)
(0.174981 -0.989195 0.148755)
(0.102418 -1.40083 0.140993)
(-0.0686199 -2.13208 0.143808)
(-0.175442 -3.59133 0.115406)
(-0.333461 -4.81895 0.0861004)
(-0.191317 -4.00431 0.0569006)
(0.00970551 0.31705 0.0218468)
(0.0912838 0.861452 0.0752286)
(0.201235 1.3799 0.116735)
(0.259668 1.77383 0.145518)
(0.294031 1.96065 0.139825)
(0.32162 1.97619 0.0983855)
(0.339482 1.87896 0.0308136)
(0.341604 1.72614 -0.050766)
(0.333553 1.56036 -0.136658)
(0.315999 1.40414 -0.214222)
(0.28181 1.28163 -0.272461)
(0.223301 1.19501 -0.305326)
(0.124181 1.16619 -0.300333)
(0.00044264 1.24225 -0.226949)
(-0.177304 1.51545 0.0370133)
(-0.219453 1.99628 0.414998)
(-0.195762 2.21932 0.592155)
(-0.261965 2.09194 0.631719)
(-0.32474 1.92111 0.522319)
(-0.26901 1.80897 0.146732)
(0.0438606 1.8853 -0.106066)
(0.283968 1.70397 -0.584933)
(0.444026 1.13202 -1.08402)
(0.691934 0.644567 -1.09196)
(0.563121 0.32102 -1.00102)
(0.246522 0.172796 -0.41711)
(0.31008 0.0397471 0.307272)
(0.534189 -0.116388 0.331095)
(0.476122 -0.244322 0.126523)
(0.425985 -0.337834 0.101312)
(0.35432 -0.387629 0.0942897)
(0.338404 -0.49652 0.100241)
(0.258778 -0.56491 0.107219)
(0.245272 -0.734193 0.117889)
(0.167562 -0.865033 0.130129)
(0.136373 -1.28998 0.137896)
(-0.034341 -1.94838 0.133736)
(-0.15327 -3.43613 0.110815)
(-0.340223 -4.82452 0.0799714)
(-0.216548 -4.35438 0.0512135)
(0.00489358 0.278682 0.0182085)
(0.0737145 0.774986 0.0692919)
(0.190779 1.26228 0.107752)
(0.272044 1.65429 0.132946)
(0.308996 1.87953 0.140724)
(0.339934 1.92464 0.109666)
(0.371263 1.85538 0.0554506)
(0.387428 1.70934 -0.0195924)
(0.393947 1.55284 -0.0962468)
(0.394038 1.39461 -0.170345)
(0.384778 1.26604 -0.231754)
(0.363662 1.16762 -0.276143)
(0.329012 1.12095 -0.301264)
(0.289044 1.1405 -0.290453)
(0.258248 1.23918 -0.199493)
(0.273138 1.48444 -0.0557537)
(0.371737 1.63659 0.118774)
(0.451319 1.61532 0.210385)
(0.463557 1.41429 0.291277)
(0.488309 1.1082 0.246363)
(0.65408 0.98876 -0.197976)
(0.763571 0.868758 -0.768355)
(0.724125 0.420655 -0.913064)
(0.768491 -0.0693121 -0.771923)
(0.723991 -0.398674 -0.783638)
(0.518267 -0.32647 -0.623943)
(0.455265 -0.0937302 -0.163119)
(0.544027 -0.0677011 0.126967)
(0.484109 -0.143387 0.10633)
(0.487455 -0.226066 0.0794144)
(0.414527 -0.283218 0.0673445)
(0.392589 -0.397481 0.0675589)
(0.289652 -0.460718 0.0778671)
(0.274125 -0.631088 0.0911887)
(0.167423 -0.750351 0.112226)
(0.166962 -1.14332 0.124156)
(-0.00874573 -1.77442 0.122188)
(-0.119559 -3.25929 0.100374)
(-0.353685 -4.79822 0.0706038)
(-0.240934 -4.70456 0.0417364)
(0.00943137 0.226343 0.0169877)
(0.0628574 0.669985 0.0668232)
(0.164895 1.11684 0.102329)
(0.269791 1.48183 0.123945)
(0.321684 1.72178 0.135821)
(0.346744 1.80242 0.120457)
(0.379332 1.76028 0.0773246)
(0.41195 1.63171 0.0125896)
(0.43724 1.48866 -0.0542198)
(0.451612 1.33333 -0.120821)
(0.462974 1.1991 -0.180316)
(0.467741 1.08502 -0.228232)
(0.468238 1.00597 -0.263687)
(0.470697 0.961223 -0.280485)
(0.478452 0.952346 -0.269933)
(0.505545 0.973505 -0.21815)
(0.584556 0.973366 -0.150393)
(0.681573 0.910262 -0.116652)
(0.793921 0.781404 -0.0425056)
(0.922448 0.556392 -0.0606992)
(1.0828 0.26015 -0.31074)
(1.14384 0.00600259 -0.549355)
(1.00862 -0.227046 -0.513511)
(0.892909 -0.341162 -0.291162)
(0.86173 -0.394522 -0.200887)
(0.871571 -0.33315 -0.210341)
(0.826832 -0.12556 -0.043812)
(0.74063 -0.0433428 0.106979)
(0.578959 -0.0514694 0.0809523)
(0.558424 -0.116289 0.0418157)
(0.4634 -0.17972 0.0340009)
(0.454138 -0.300403 0.0363614)
(0.333213 -0.355443 0.0497999)
(0.316967 -0.531058 0.0678649)
(0.186679 -0.636563 0.0911568)
(0.192645 -1.01806 0.108974)
(0.00970109 -1.61183 0.10878)
(-0.0789006 -3.09697 0.0875249)
(-0.376245 -4.76686 0.0595481)
(-0.271313 -5.11021 0.0312492)
(0.00668871 0.205435 0.0170512)
(0.0313507 0.619955 0.0676008)
(0.104972 1.04256 0.100946)
(0.227683 1.39784 0.121231)
(0.322116 1.61464 0.128835)
(0.36762 1.71965 0.127155)
(0.39205 1.70177 0.100386)
(0.439197 1.58589 0.0493134)
(0.483966 1.44649 -0.0107747)
(0.513417 1.29339 -0.0679092)
(0.54198 1.15379 -0.120609)
(0.56282 1.02622 -0.16517)
(0.582446 0.923112 -0.198747)
(0.599305 0.839992 -0.219437)
(0.621315 0.774617 -0.222226)
(0.640203 0.723975 -0.206946)
(0.679614 0.664985 -0.171475)
(0.737787 0.572764 -0.142397)
(0.851928 0.447529 -0.10692)
(1.00298 0.265183 -0.0969335)
(1.24202 0.0346917 -0.140624)
(1.40044 -0.137188 -0.192962)
(1.31388 -0.248698 -0.200022)
(1.22568 -0.2115 -0.183773)
(1.12057 -0.118229 -0.15847)
(1.06914 -0.0724003 -0.14672)
(1.00262 0.00854004 -0.0847849)
(0.878586 0.026372 -0.00790827)
(0.670951 0.0249333 0.00348036)
(0.637119 -0.033482 -0.00608253)
(0.518233 -0.0681198 -0.00340624)
(0.527814 -0.194399 0.00739485)
(0.387535 -0.235978 0.0253437)
(0.379959 -0.403362 0.0456708)
(0.215141 -0.497171 0.0716297)
(0.230717 -0.864934 0.0909697)
(0.0265871 -1.423 0.0920691)
(-0.0331954 -2.89558 0.0726648)
(-0.411715 -4.72662 0.0489269)
(-0.303819 -5.60271 0.0224123)
(0.0164414 0.177637 0.0219176)
(0.0322683 0.525592 0.0731492)
(0.0541743 0.93948 0.10529)
(0.152524 1.24323 0.122362)
(0.269727 1.44572 0.13167)
(0.359425 1.52714 0.124771)
(0.384823 1.55261 0.12054)
(0.4282 1.44847 0.0809588)
(0.497772 1.33314 0.033506)
(0.547479 1.18949 -0.0170426)
(0.594316 1.06037 -0.0605974)
(0.630887 0.935282 -0.0998056)
(0.665035 0.828976 -0.130631)
(0.693891 0.733411 -0.152381)
(0.723227 0.651857 -0.161846)
(0.746286 0.577474 -0.161337)
(0.775695 0.512874 -0.151359)
(0.811562 0.439306 -0.132784)
(0.89907 0.354726 -0.102823)
(1.03262 0.219929 -0.0874163)
(1.29217 0.0817652 -0.0991841)
(1.47859 -0.0233158 -0.10854)
(1.42393 -0.1057 -0.11518)
(1.39074 -0.137092 -0.128688)
(1.30894 -0.0979883 -0.106749)
(1.27738 -0.0642782 -0.0984118)
(1.19638 0.0165362 -0.0760705)
(1.02992 0.0330674 -0.048683)
(0.783759 0.0562367 -0.0368448)
(0.763291 0.00159988 -0.0304296)
(0.61053 -0.00184152 -0.0239828)
(0.621974 -0.0946264 -0.0125873)
(0.483388 -0.117371 0.00503772)
(0.487669 -0.288155 0.0262045)
(0.297351 -0.358503 0.0490743)
(0.310146 -0.73318 0.0713944)
(0.0819143 -1.2332 0.0758563)
(0.0373481 -2.70315 0.0568503)
(-0.454441 -4.67056 0.0399342)
(-0.300749 -6.20875 0.0166903)
(-0.018729 0.154653 0.0243213)
(-0.0271102 0.553927 0.0814823)
(-0.0283062 0.895318 0.11336)
(0.0291344 1.24033 0.12809)
(0.169062 1.39622 0.13923)
(0.332039 1.42445 0.130184)
(0.394731 1.44822 0.136162)
(0.431302 1.34756 0.112349)
(0.522342 1.2442 0.0771279)
(0.590843 1.11407 0.0362464)
(0.661076 0.991056 -0.00256069)
(0.712881 0.872603 -0.0344169)
(0.761208 0.768766 -0.0608349)
(0.798785 0.672018 -0.0826551)
(0.834495 0.586501 -0.0965735)
(0.862605 0.506151 -0.10655)
(0.893172 0.440145 -0.106737)
(0.923709 0.375314 -0.0999466)
(0.989005 0.312737 -0.0875896)
(1.10219 0.206251 -0.0769787)
(1.37335 0.117198 -0.0692807)
(1.59113 0.0460405 -0.0707945)
(1.55495 -0.00717451 -0.0679442)
(1.56542 -0.0438486 -0.0721662)
(1.50594 -0.0285732 -0.0691478)
(1.48442 -0.0203066 -0.0613183)
(1.3983 0.0558803 -0.047037)
(1.22664 0.0604276 -0.0409426)
(0.941965 0.108853 -0.0375748)
(0.916755 0.0598964 -0.0345481)
(0.774052 0.0718371 -0.0258762)
(0.810389 -0.00484216 -0.0173996)
(0.622325 -0.0124943 0.00081156)
(0.659236 -0.159532 0.0165233)
(0.424828 -0.205324 0.0388319)
(0.466416 -0.54047 0.0545772)
(0.171635 -0.969298 0.0622329)
(0.216446 -2.37577 0.0446992)
(-0.427852 -4.56874 0.0365063)
(-0.241014 -6.80369 0.0118487)
(0.0518088 0.292164 0.0374386)
(0.000311466 0.489517 0.0930163)
(-0.0985465 0.778346 0.123168)
(-0.0429701 0.990026 0.136959)
(-0.00542982 1.20318 0.148243)
(0.197264 1.18611 0.139176)
(0.336513 1.21077 0.148544)
(0.393028 1.12903 0.13921)
(0.511335 1.04913 0.115322)
(0.603168 0.949986 0.087951)
(0.698345 0.85242 0.057761)
(0.771023 0.755524 0.0301984)
(0.833507 0.670427 0.00726643)
(0.88241 0.591173 -0.0129109)
(0.927159 0.521516 -0.0266531)
(0.966592 0.450067 -0.0385934)
(1.00617 0.389808 -0.0419235)
(1.04255 0.329425 -0.0417316)
(1.10355 0.278102 -0.0388254)
(1.22239 0.179461 -0.0373161)
(1.51302 0.121149 -0.0323602)
(1.74806 0.0625387 -0.0330375)
(1.72224 0.0177736 -0.0311744)
(1.74872 -0.0172186 -0.0342739)
(1.69967 0.0042811 -0.0296169)
(1.72483 -0.000839569 -0.0245126)
(1.63814 0.0874485 -0.0185253)
(1.48237 0.0839139 -0.0205343)
(1.17896 0.149053 -0.0194674)
(1.18027 0.117169 -0.0200583)
(1.02189 0.157251 -0.0144856)
(1.09672 0.0651444 -0.00591907)
(0.912419 0.0656405 0.00482546)
(1.00794 -0.0520187 0.015142)
(0.748677 -0.123481 0.0307935)
(0.852495 -0.40472 0.0436405)
(0.490846 -0.796379 0.0475419)
(0.59055 -2.01263 0.0433923)
(-0.165854 -4.35799 0.0260638)
(0.060511 -7.32488 0.00601607)
(-0.223202 0.0730382 0.0476574)
(-0.298693 0.69984 0.116082)
(-0.288699 0.878153 0.139434)
(-0.24757 1.02704 0.148403)
(-0.117978 1.05442 0.163022)
(0.0683949 1.06616 0.151384)
(0.252731 1.00743 0.168254)
(0.346389 0.945792 0.166148)
(0.495226 0.871116 0.154208)
(0.610569 0.79865 0.138422)
(0.731797 0.726191 0.11873)
(0.829098 0.653022 0.0999759)
(0.917607 0.589066 0.0828397)
(0.988837 0.529785 0.0653806)
(1.0486 0.476632 0.0515947)
(1.10117 0.419482 0.0403614)
(1.15704 0.360829 0.0360965)
(1.21688 0.303121 0.0333246)
(1.28994 0.26696 0.0321234)
(1.44881 0.18272 0.0303609)
(1.78967 0.148588 0.0356726)
(2.08619 0.0938603 0.0351701)
(2.09709 0.055212 0.0329718)
(2.19187 0.0244838 0.0291804)
(2.16431 0.032032 0.026555)
(2.22753 0.012852 0.026025)
(2.13013 0.105021 0.0288425)
(2.00941 0.084095 0.0250284)
(1.68158 0.169536 0.0219081)
(1.74972 0.148436 0.0185066)
(1.58659 0.208606 0.0176947)
(1.73738 0.1317 0.0207659)
(1.53093 0.135058 0.0275527)
(1.70109 0.0116215 0.0349427)
(1.36658 -0.0475547 0.0414189)
(1.54915 -0.269143 0.0435927)
(1.09066 -0.519715 0.0453023)
(1.2711 -1.45109 0.0388185)
(0.422138 -3.85135 0.0286899)
(0.513101 -7.19954 0.00329881)
(-0.732574 0.791972 0.110541)
(-0.605693 0.393774 0.165475)
(-0.748523 0.576096 0.161533)
(-0.457046 0.605922 0.16253)
(-0.309089 0.621336 0.169588)
(0.00677089 0.674977 0.167452)
(0.232142 0.642838 0.180528)
(0.43581 0.618 0.188606)
(0.654063 0.573968 0.185031)
(0.855004 0.533345 0.178469)
(1.05245 0.488267 0.166906)
(1.23091 0.44471 0.155198)
(1.39166 0.407187 0.143474)
(1.53288 0.376102 0.131363)
(1.65013 0.353698 0.12192)
(1.76077 0.322694 0.113788)
(1.87297 0.278164 0.109671)
(2.02753 0.242653 0.107591)
(2.20376 0.218229 0.108691)
(2.49701 0.128974 0.102889)
(2.91262 0.0967693 0.106436)
(3.32394 0.0460968 0.105002)
(3.38799 0.00501521 0.101087)
(3.5242 -0.0354482 0.0921694)
(3.46262 -0.0187795 0.0839577)
(3.59084 -0.0249172 0.0802651)
(3.44564 0.0597924 0.0793642)
(3.41286 0.0599404 0.0712339)
(3.03151 0.140092 0.0633622)
(3.20429 0.151447 0.0597268)
(2.99771 0.201042 0.0580357)
(3.31596 0.141717 0.0576859)
(3.03044 0.105862 0.0578331)
(3.36308 0.0195347 0.0586391)
(2.8843 -0.0485211 0.0554094)
(3.2278 -0.226266 0.0540199)
(2.55694 -0.513365 0.0500156)
(2.90997 -1.13034 0.0447207)
(1.91401 -3.1431 0.0297071)
(1.34773 -6.08211 0.00718011)
(1.16012 1.47939 0.045184)
(1.72409 0.727028 0.0665305)
(2.46123 0.567488 0.0706977)
(2.87666 0.350427 0.0705765)
(3.15545 0.27938 0.073869)
(3.39735 0.230583 0.075673)
(3.61786 0.215324 0.0898881)
(3.81622 0.195016 0.106048)
(4.03329 0.180756 0.110941)
(4.26225 0.166586 0.109527)
(4.48245 0.153099 0.105056)
(4.69701 0.139258 0.100371)
(4.87865 0.127357 0.0965588)
(5.04572 0.117171 0.0909658)
(5.1681 0.1116 0.0873415)
(5.2978 0.106027 0.0846916)
(5.4312 0.0837837 0.0842304)
(5.64741 0.0622153 0.0835612)
(5.90839 0.0761166 0.092124)
(6.37001 0.053458 0.0936203)
(6.78497 0.0295022 0.100394)
(7.24327 0.00886587 0.106021)
(7.25969 -0.0087123 0.100164)
(7.32438 -0.0550949 0.090509)
(7.1465 -0.0395095 0.0820729)
(7.16526 -0.0553349 0.071295)
(6.82362 -0.0322109 0.0701942)
(6.81415 -0.0163453 0.0610938)
(6.34329 0.0178381 0.0529818)
(6.58727 0.0372809 0.0489896)
(6.3415 0.0695836 0.0486224)
(6.78551 0.0693652 0.0485052)
(6.48042 0.0469972 0.0485025)
(6.87363 0.0146241 0.0487996)
(6.32857 -0.0133748 0.0475412)
(6.5547 -0.104917 0.0411998)
(5.67503 -0.257246 0.0379974)
(5.70501 -0.581772 0.0315405)
(4.28215 -1.13807 0.0272374)
(2.78875 -2.52486 0.0137101)
(0.000941886 -5.0217e-05 0.00193698)
(0.0222498 -0.00288617 0.00536646)
(0.0506802 -0.00239494 0.0079853)
(0.0702705 -0.000258026 0.0109049)
(0.0786978 0.00224214 0.0109412)
(0.0679939 -0.00125257 0.0145889)
(0.0525904 0.00474837 0.0214728)
(0.0396246 0.00272065 0.0258104)
(0.0220422 0.0146064 0.0273894)
(-0.00419782 0.0147074 0.0348418)
(-0.0450537 0.0157938 0.0291941)
(-0.0996936 0.00848206 0.0296054)
(-0.158578 0.00371279 0.0271457)
(-0.2342 0.00381365 0.026005)
(-0.309398 0.0108113 0.0224011)
(-0.399239 0.0220318 0.0188324)
(-0.478452 0.0146223 0.00844037)
(-0.588404 0.00605067 0.00240607)
(-0.651491 -0.0122745 -0.0253054)
(-0.820037 -0.0125068 -0.0430493)
(-0.776249 0.0242556 -0.0519723)
(-0.588167 0.0252611 -0.0594641)
(-0.585347 0.0355256 -0.0600226)
(-0.573655 0.0308236 -0.0609205)
(-0.556415 0.0202757 -0.0659419)
(-0.496265 0.0176875 -0.0700017)
(-0.428686 0.0066029 -0.0777796)
(-0.320893 -0.00179454 -0.0862225)
(-0.197706 -0.00940378 -0.0902054)
(-0.0624466 -0.0219725 -0.089325)
(0.0713832 0.0180692 -0.0743926)
(0.278946 0.00944841 -0.0594909)
(0.430664 0.0116137 -0.0396253)
(0.457459 0.0376584 -0.00679716)
(0.428547 0.0476183 0.00982223)
(0.335211 0.0477733 0.0269889)
(0.223609 0.0328706 0.034882)
(0.115471 0.0190282 0.0378874)
(0.0340684 0.00199696 0.0273842)
(-0.00419662 -0.00879689 0.0125048)
(0.00705266 -0.0121564 0.00404072)
(0.0444989 -0.0264302 0.0127363)
(0.0878834 -0.023872 0.0197665)
(0.116467 -0.0127284 0.0273121)
(0.120079 -0.00417964 0.0302645)
(0.103256 0.0047027 0.0396227)
(0.0708935 0.0171358 0.0517355)
(0.0335797 0.036082 0.060244)
(-0.0257573 0.0542529 0.0680504)
(-0.124871 0.0656985 0.0747443)
(-0.257505 0.0828262 0.0576587)
(-0.419527 0.107406 0.0519445)
(-0.587268 0.133607 0.0441857)
(-0.776912 0.161972 0.0411929)
(-0.968516 0.186926 0.0356692)
(-1.18778 0.181877 0.0253556)
(-1.37598 0.154794 0.0120802)
(-1.56355 0.120531 0.000376398)
(-1.68019 0.088539 -0.0168718)
(-1.82191 0.0760749 -0.0263999)
(-1.68781 0.104827 -0.0299293)
(-1.4371 0.0853006 -0.0240471)
(-1.34009 0.0666182 -0.0135861)
(-1.2296 0.030887 -0.00613571)
(-1.13783 -0.00719388 0.00510191)
(-1.01286 -0.0636127 -0.00135583)
(-0.883597 -0.110885 -0.00231658)
(-0.712979 -0.141419 0.00164995)
(-0.534477 -0.155121 0.00712717)
(-0.305823 -0.168013 0.0203099)
(-0.126571 -0.137688 0.0293857)
(0.133704 -0.072721 0.0686619)
(0.418096 -0.040224 0.0654534)
(0.563508 0.0262822 0.0703489)
(0.613318 0.115378 0.0936472)
(0.55553 0.150302 0.0940232)
(0.428667 0.155919 0.0977801)
(0.262611 0.125447 0.0946384)
(0.106222 0.0809814 0.0768947)
(0.0141065 0.0271776 0.0340982)
(0.0101139 -0.0287172 0.00432939)
(0.0515947 -0.0545809 0.0164032)
(0.0926643 -0.0466578 0.02785)
(0.108123 -0.0175395 0.0397114)
(0.100588 0.0102768 0.0460769)
(0.0648495 0.0382146 0.0602493)
(0.00947996 0.082451 0.0702013)
(-0.0778112 0.135471 0.0781515)
(-0.215662 0.187607 0.0828882)
(-0.388804 0.238287 0.0828224)
(-0.596254 0.291656 0.0763337)
(-0.83877 0.352165 0.0718694)
(-1.0922 0.401205 0.0673612)
(-1.35064 0.422442 0.0659192)
(-1.6081 0.397748 0.0606248)
(-1.84934 0.345227 0.0567893)
(-2.02982 0.298301 0.0534126)
(-2.19877 0.24483 0.0515855)
(-2.30042 0.207382 0.0450607)
(-2.38874 0.159931 0.0443492)
(-2.18452 0.145721 0.0452972)
(-1.89743 0.0976194 0.0519518)
(-1.73943 0.0349874 0.0748695)
(-1.60192 -0.044738 0.0887706)
(-1.52242 -0.152473 0.0801318)
(-1.39079 -0.268511 0.0779187)
(-1.24605 -0.359082 0.084951)
(-1.06646 -0.423695 0.0907258)
(-0.899814 -0.45079 0.102753)
(-0.697305 -0.433492 0.117458)
(-0.489967 -0.405277 0.130326)
(-0.23251 -0.296586 0.14402)
(0.0260677 -0.211889 0.154357)
(0.276713 -0.0826983 0.161407)
(0.441935 0.0524652 0.139739)
(0.462135 0.176153 0.151111)
(0.40246 0.225839 0.143186)
(0.261704 0.227109 0.135291)
(0.113113 0.175891 0.108821)
(0.0147694 0.0835269 0.047809)
(0.0124092 -0.0460101 0.003316)
(0.048859 -0.0781105 0.0184794)
(0.075023 -0.0568594 0.034131)
(0.0690899 -0.0144952 0.0547284)
(0.0261246 0.050385 0.0585656)
(-0.0286442 0.125239 0.0822612)
(-0.1189 0.211579 0.0917682)
(-0.268158 0.313025 0.101422)
(-0.481727 0.421275 0.103449)
(-0.74616 0.513782 0.101913)
(-1.02365 0.583289 0.0947249)
(-1.30808 0.630499 0.0925888)
(-1.58688 0.62718 0.0910096)
(-1.86631 0.576032 0.0871517)
(-2.10022 0.506689 0.0869962)
(-2.28881 0.441596 0.0896024)
(-2.42472 0.381712 0.091428)
(-2.54989 0.312333 0.0924223)
(-2.61336 0.25245 0.0915545)
(-2.63189 0.173292 0.0937966)
(-2.38472 0.131627 0.0909378)
(-2.09056 0.0449261 0.0966543)
(-1.93779 -0.0549615 0.104731)
(-1.84889 -0.196142 0.0871263)
(-1.78652 -0.349625 0.0767502)
(-1.67962 -0.493535 0.0812717)
(-1.55636 -0.626814 0.086681)
(-1.39109 -0.735718 0.0927912)
(-1.224 -0.79987 0.101375)
(-1.05006 -0.794672 0.117889)
(-0.890062 -0.722507 0.140611)
(-0.68314 -0.591656 0.164076)
(-0.450253 -0.458658 0.169465)
(-0.186119 -0.273991 0.176435)
(0.0805847 -0.0900054 0.191851)
(0.221253 0.111776 0.185774)
(0.240726 0.231065 0.179645)
(0.176257 0.274064 0.16388)
(0.0735082 0.242221 0.130836)
(0.00953037 0.12488 0.0566279)
(0.0110752 -0.0601987 0.0014537)
(0.0356851 -0.0887807 0.020236)
(0.0269276 -0.0472707 0.0423836)
(-0.0065359 0.0329661 0.0639416)
(-0.0586145 0.144003 0.0867148)
(-0.160062 0.276909 0.102126)
(-0.303834 0.414467 0.113793)
(-0.506927 0.561421 0.11949)
(-0.786303 0.695994 0.118458)
(-1.09621 0.792083 0.116685)
(-1.3993 0.826176 0.113845)
(-1.70445 0.796681 0.106745)
(-1.98122 0.72435 0.0951029)
(-2.19923 0.642539 0.0935003)
(-2.35879 0.574425 0.0937431)
(-2.47852 0.497517 0.0952181)
(-2.55382 0.433029 0.0938768)
(-2.62601 0.355579 0.0900499)
(-2.64094 0.28895 0.0766309)
(-2.60286 0.184685 0.0714725)
(-2.33374 0.119661 0.0544084)
(-2.05643 0.00316925 0.0373384)
(-1.94871 -0.146432 0.033485)
(-1.89354 -0.328412 0.0203705)
(-1.86893 -0.490908 0.0267361)
(-1.80282 -0.668372 0.0333819)
(-1.72418 -0.841931 0.0404031)
(-1.60097 -1.00108 0.0481432)
(-1.45999 -1.12236 0.0571861)
(-1.28989 -1.18024 0.0671005)
(-1.13971 -1.14468 0.0814148)
(-1.00667 -1.00075 0.112084)
(-0.867639 -0.774013 0.139952)
(-0.610991 -0.531583 0.148716)
(-0.287233 -0.278921 0.165338)
(-0.0464557 -0.0201483 0.175846)
(0.0576984 0.161423 0.189938)
(0.0592925 0.274567 0.171832)
(0.0271196 0.263199 0.134162)
(-0.0017455 0.135157 0.055379)
(0.00732625 -0.0701995 -0.000786566)
(0.0102093 -0.0746442 0.0227488)
(-0.0237737 -0.00538857 0.0547813)
(-0.0847704 0.144746 0.0901426)
(-0.178395 0.302994 0.110227)
(-0.313752 0.488715 0.128324)
(-0.499209 0.666458 0.135565)
(-0.741567 0.839187 0.137418)
(-1.05943 0.948078 0.133528)
(-1.41918 0.955717 0.122038)
(-1.74708 0.905752 0.100838)
(-2.00265 0.824526 0.0871665)
(-2.18032 0.746668 0.0769135)
(-2.30763 0.673011 0.070241)
(-2.38855 0.5957 0.0664247)
(-2.4287 0.513671 0.0574789)
(-2.44794 0.439515 0.0441372)
(-2.46436 0.356667 0.0362655)
(-2.44001 0.287503 0.0179109)
(-2.35564 0.170123 0.00809693)
(-2.08094 0.0947104 -0.0120177)
(-1.84117 -0.0343477 -0.0281173)
(-1.77616 -0.203806 -0.0535272)
(-1.75147 -0.376043 -0.0450932)
(-1.74936 -0.55053 -0.0340987)
(-1.72952 -0.748584 -0.0217458)
(-1.70594 -0.954379 -0.0079149)
(-1.65039 -1.16436 0.0032813)
(-1.57273 -1.34864 0.0127008)
(-1.45036 -1.48004 0.0229575)
(-1.31237 -1.52921 0.0351117)
(-1.15913 -1.45433 0.0508954)
(-1.10089 -1.26079 0.075672)
(-0.974509 -0.877479 0.113163)
(-0.635332 -0.550792 0.134788)
(-0.310884 -0.206708 0.162304)
(-0.0884786 0.07317 0.17916)
(-0.00244327 0.238554 0.174677)
(-0.00732679 0.24951 0.136797)
(-0.00240466 0.123025 0.0559945)
(0.00675446 -0.0649836 0.00293388)
(-0.0185205 -0.024911 0.0381094)
(-0.0723958 0.0997294 0.0799689)
(-0.159753 0.293502 0.114147)
(-0.287808 0.505226 0.136811)
(-0.456703 0.723388 0.148693)
(-0.665955 0.920071 0.151249)
(-0.96457 1.03805 0.149923)
(-1.36292 1.00887 0.113204)
(-1.69825 0.950809 0.0900234)
(-1.92255 0.892442 0.074401)
(-2.07684 0.838581 0.056281)
(-2.17405 0.763482 0.0356841)
(-2.22051 0.676751 0.0188454)
(-2.23168 0.587785 0.00339444)
(-2.22407 0.49855 -0.00436238)
(-2.19798 0.415801 -0.0151358)
(-2.16925 0.333491 -0.0232795)
(-2.11413 0.266064 -0.0432333)
(-2.0035 0.154707 -0.0522418)
(-1.73553 0.0840519 -0.0828471)
(-1.53942 -0.0508323 -0.108175)
(-1.50283 -0.214397 -0.115971)
(-1.49978 -0.374649 -0.107673)
(-1.52097 -0.547129 -0.0933042)
(-1.53468 -0.748464 -0.0781676)
(-1.55627 -0.967392 -0.0605265)
(-1.55604 -1.20472 -0.042844)
(-1.54712 -1.4427 -0.0241014)
(-1.50249 -1.64912 -0.0101501)
(-1.42114 -1.79304 0.00525233)
(-1.2993 -1.81218 0.0178516)
(-1.17122 -1.72117 0.0353197)
(-1.12829 -1.39832 0.0570778)
(-0.922183 -0.93353 0.0902004)
(-0.511852 -0.491536 0.120034)
(-0.200394 -0.0947165 0.15784)
(-0.0675152 0.13763 0.156519)
(-0.0209752 0.20095 0.124474)
(-0.00450564 0.0951217 0.0481898)
(0.00764131 -0.0189168 0.0117303)
(-0.0287444 0.0666132 0.0578366)
(-0.116264 0.246189 0.105972)
(-0.229702 0.475664 0.143631)
(-0.384262 0.714768 0.160717)
(-0.568805 0.933387 0.166915)
(-0.862147 1.06423 0.163133)
(-1.25523 1.03866 0.115061)
(-1.57174 0.976536 0.0910161)
(-1.78344 0.959106 0.0662187)
(-1.92571 0.915666 0.0351872)
(-2.00204 0.843562 0.00699623)
(-2.02443 0.751343 -0.028371)
(-2.01398 0.653406 -0.0500765)
(-1.98485 0.554731 -0.0639564)
(-1.94252 0.457509 -0.0681278)
(-1.8882 0.379532 -0.0738667)
(-1.83375 0.304559 -0.0767339)
(-1.76393 0.246918 -0.0954399)
(-1.64217 0.15154 -0.100255)
(-1.39679 0.0930778 -0.138894)
(-1.24105 -0.0502697 -0.161087)
(-1.22607 -0.194805 -0.16139)
(-1.22817 -0.350652 -0.147996)
(-1.25724 -0.514287 -0.131251)
(-1.28755 -0.704055 -0.113007)
(-1.33085 -0.916778 -0.0934241)
(-1.37171 -1.15563 -0.0739834)
(-1.4129 -1.41742 -0.0541363)
(-1.43603 -1.67663 -0.0325362)
(-1.43146 -1.90398 -0.0155782)
(-1.37765 -2.04206 0.00189248)
(-1.27272 -2.04109 0.0158424)
(-1.19128 -1.87828 0.0343098)
(-1.08525 -1.42928 0.058112)
(-0.754238 -0.868196 0.0892403)
(-0.319238 -0.355701 0.124203)
(-0.0788903 0.0403777 0.148019)
(-0.00829141 0.145697 0.122687)
(0.00357951 0.0815807 0.051597)
(-0.00178061 0.0208924 0.017588)
(-0.0516376 0.154651 0.0755485)
(-0.146151 0.357801 0.1325)
(-0.285494 0.604493 0.167324)
(-0.46342 0.837113 0.177843)
(-0.733374 1.01831 0.175422)
(-1.09734 1.03862 0.133093)
(-1.39732 1.01593 0.101727)
(-1.61436 1.02603 0.0656604)
(-1.75338 0.989294 0.0262421)
(-1.80601 0.917526 -0.0187473)
(-1.81128 0.823274 -0.0680218)
(-1.79182 0.726004 -0.105061)
(-1.75728 0.622877 -0.125358)
(-1.71471 0.526344 -0.132659)
(-1.66324 0.429897 -0.123549)
(-1.59872 0.352528 -0.11773)
(-1.5263 0.283341 -0.11001)
(-1.44925 0.232893 -0.127445)
(-1.32724 0.161738 -0.131677)
(-1.11881 0.106468 -0.186725)
(-0.995333 -0.0457442 -0.195903)
(-0.984993 -0.172348 -0.188926)
(-0.990656 -0.318517 -0.17224)
(-1.0179 -0.469091 -0.153115)
(-1.05121 -0.6443 -0.133726)
(-1.09845 -0.842191 -0.11312)
(-1.15197 -1.07156 -0.0938734)
(-1.21608 -1.33198 -0.073072)
(-1.27828 -1.61298 -0.0535144)
(-1.32927 -1.89476 -0.0323704)
(-1.34566 -2.12611 -0.0144309)
(-1.30768 -2.25447 0.00325816)
(-1.21708 -2.20853 0.0179318)
(-1.13672 -1.92111 0.0352104)
(-0.917002 -1.3296 0.0571248)
(-0.44522 -0.664293 0.0882671)
(-0.122189 -0.132711 0.120616)
(-0.0304604 0.0863461 0.102871)
(0.0100956 0.0694873 0.0438182)
(-0.00545889 0.0654029 0.0285609)
(-0.0722251 0.255605 0.0957817)
(-0.187882 0.474361 0.154494)
(-0.337093 0.706926 0.185047)
(-0.549098 0.919144 0.191037)
(-0.867966 1.02952 0.168614)
(-1.18754 1.05775 0.127199)
(-1.41954 1.09001 0.0809892)
(-1.56553 1.06332 0.0314029)
(-1.6071 0.993187 -0.0293462)
(-1.60357 0.899993 -0.0927532)
(-1.57583 0.795399 -0.144647)
(-1.54148 0.695015 -0.182761)
(-1.50483 0.596204 -0.196951)
(-1.46914 0.500127 -0.191957)
(-1.42 0.404578 -0.165631)
(-1.3474 0.32496 -0.142063)
(-1.26208 0.264411 -0.124734)
(-1.17384 0.226385 -0.141328)
(-1.05933 0.185069 -0.159336)
(-0.902622 0.125902 -0.216126)
(-0.81196 -0.0289256 -0.214463)
(-0.796669 -0.148687 -0.202765)
(-0.80363 -0.287003 -0.182814)
(-0.821888 -0.426124 -0.161286)
(-0.851044 -0.583686 -0.140733)
(-0.892606 -0.763236 -0.119343)
(-0.945155 -0.971623 -0.100438)
(-1.01331 -1.21777 -0.0808487)
(-1.08996 -1.4979 -0.061785)
(-1.17089 -1.80442 -0.0416948)
(-1.23577 -2.10235 -0.0222563)
(-1.26026 -2.33788 -0.00296983)
(-1.22378 -2.43219 0.0124016)
(-1.13113 -2.30278 0.0278528)
(-0.995387 -1.84254 0.0404764)
(-0.641175 -1.08798 0.0646542)
(-0.201339 -0.414797 0.0841174)
(-0.0327439 0.0183061 0.103996)
(0.00839984 0.0534613 0.0464905)
(-0.00936998 0.127616 0.0393426)
(-0.0886187 0.372408 0.112748)
(-0.217976 0.60771 0.170917)
(-0.379656 0.837167 0.196867)
(-0.635662 1.01872 0.195594)
(-0.947049 1.09226 0.162784)
(-1.20458 1.13914 0.115011)
(-1.36234 1.13475 0.0569852)
(-1.41653 1.07329 -0.0163604)
(-1.40709 0.976352 -0.0917019)
(-1.37443 0.86561 -0.163033)
(-1.33126 0.76252 -0.220394)
(-1.30163 0.671597 -0.258252)
(-1.27932 0.57692 -0.265429)
(-1.26095 0.489611 -0.249337)
(-1.22155 0.387206 -0.199292)
(-1.14316 0.310271 -0.161865)
(-1.0355 0.248633 -0.12955)
(-0.932329 0.218107 -0.151995)
(-0.839847 0.20855 -0.190844)
(-0.749771 0.146697 -0.252243)
(-0.688882 -0.0169607 -0.22955)
(-0.661556 -0.13724 -0.211892)
(-0.666341 -0.265984 -0.188026)
(-0.673667 -0.39651 -0.163374)
(-0.694047 -0.536423 -0.142055)
(-0.725114 -0.697202 -0.119231)
(-0.767808 -0.881525 -0.100705)
(-0.827748 -1.10427 -0.0815041)
(-0.901591 -1.36704 -0.0646303)
(-0.989599 -1.67423 -0.0459115)
(-1.07788 -2.00495 -0.0273625)
(-1.14675 -2.32 -0.00799213)
(-1.16193 -2.5405 0.00845507)
(-1.10562 -2.56346 0.0218738)
(-0.981123 -2.28269 0.032402)
(-0.751576 -1.58415 0.0411787)
(-0.302391 -0.70313 0.0635809)
(-0.0379771 -0.093992 0.0695373)
(-0.0125279 0.0376241 0.0362709)
(-0.0100477 0.193557 0.0531693)
(-0.0964767 0.49523 0.131699)
(-0.234236 0.744531 0.187029)
(-0.421557 0.969827 0.209014)
(-0.697663 1.10957 0.199734)
(-0.962652 1.17905 0.161693)
(-1.1459 1.20124 0.104571)
(-1.22523 1.15779 0.0237934)
(-1.22783 1.05726 -0.0623462)
(-1.18901 0.93587 -0.149472)
(-1.14075 0.826514 -0.229142)
(-1.1001 0.731724 -0.29136)
(-1.08637 0.648578 -0.331996)
(-1.08336 0.563473 -0.339096)
(-1.09202 0.470134 -0.310531)
(-1.06594 0.363016 -0.242673)
(-0.975449 0.256207 -0.170026)
(-0.855746 0.211682 -0.119778)
(-0.728994 0.195939 -0.144755)
(-0.661934 0.234444 -0.228797)
(-0.653742 0.184492 -0.298292)
(-0.619634 -0.0111305 -0.23795)
(-0.567927 -0.139071 -0.209918)
(-0.567712 -0.256853 -0.186446)
(-0.564415 -0.380456 -0.158482)
(-0.57548 -0.503276 -0.137902)
(-0.596273 -0.647096 -0.113366)
(-0.626785 -0.807101 -0.0948252)
(-0.674415 -1.00372 -0.0754813)
(-0.736532 -1.24059 -0.0595789)
(-0.818618 -1.53141 -0.042317)
(-0.911395 -1.86916 -0.0253822)
(-1.00238 -2.23084 -0.00506239)
(-1.06065 -2.55186 0.0106522)
(-1.05496 -2.72996 0.0256069)
(-0.954016 -2.61901 0.0337197)
(-0.76717 -2.08661 0.0390836)
(-0.407815 -1.10151 0.0474029)
(-0.0778449 -0.267335 0.0718545)
(-0.019327 0.0129403 0.0407526)
(-0.00826211 0.256995 0.0639087)
(-0.0950968 0.612484 0.145871)
(-0.239008 0.876716 0.198748)
(-0.456771 1.08058 0.218275)
(-0.715833 1.20062 0.201809)
(-0.91829 1.26285 0.155039)
(-1.03604 1.2415 0.0842408)
(-1.05938 1.15228 -0.0114829)
(-1.03186 1.01914 -0.107393)
(-0.973261 0.891489 -0.201009)
(-0.923003 0.78453 -0.286936)
(-0.890529 0.696126 -0.355845)
(-0.895153 0.623298 -0.406845)
(-0.925056 0.533709 -0.41221)
(-0.965891 0.447101 -0.377914)
(-0.964355 0.309655 -0.235479)
(-0.819673 0.259706 -0.109148)
(-0.642176 0.203078 0.0298038)
(-0.574061 0.213929 -0.0333566)
(-0.599685 0.285663 -0.269408)
(-0.660606 0.24269 -0.384763)
(-0.606884 -0.016335 -0.245588)
(-0.50833 -0.160083 -0.196969)
(-0.496418 -0.261151 -0.182683)
(-0.484274 -0.379947 -0.150671)
(-0.485892 -0.486298 -0.132698)
(-0.498835 -0.61583 -0.10624)
(-0.517034 -0.754176 -0.0876093)
(-0.551834 -0.925589 -0.067301)
(-0.598085 -1.1328 -0.0519393)
(-0.66623 -1.397 -0.0359287)
(-0.749714 -1.72117 -0.0205925)
(-0.844993 -2.09993 -0.00316845)
(-0.928002 -2.48713 0.0136728)
(-0.96443 -2.79279 0.0282765)
(-0.911923 -2.85717 0.0366783)
(-0.745879 -2.50662 0.0347209)
(-0.456853 -1.5863 0.0345332)
(-0.102625 -0.504331 0.0334768)
(-0.0123504 -0.0368465 0.026724)
(-0.00512188 0.316872 0.0763389)
(-0.0838159 0.727027 0.162219)
(-0.243875 0.999982 0.213592)
(-0.464575 1.18082 0.232956)
(-0.682516 1.30263 0.203577)
(-0.836749 1.33466 0.148314)
(-0.900658 1.26976 0.0580089)
(-0.8869 1.13307 -0.0401709)
(-0.842416 0.980228 -0.142955)
(-0.775785 0.845707 -0.239906)
(-0.729093 0.739989 -0.331613)
(-0.703276 0.657757 -0.412325)
(-0.736869 0.585512 -0.47449)
(-0.788448 0.50289 -0.486592)
(-0.868133 0.436165 -0.391125)
(-0.765771 0.407448 -0.126038)
(-0.539472 0.381335 0.241637)
(-0.42337 0.359075 0.369809)
(-0.48634 0.30515 0.0846303)
(-0.657074 0.362663 -0.389184)
(-0.710678 0.283826 -0.486285)
(-0.600948 -0.0574183 -0.214014)
(-0.466778 -0.202404 -0.154918)
(-0.4347 -0.278637 -0.168628)
(-0.420368 -0.391159 -0.137195)
(-0.413899 -0.48177 -0.124591)
(-0.424299 -0.599003 -0.0966925)
(-0.433372 -0.718814 -0.0777889)
(-0.458207 -0.868051 -0.0560604)
(-0.48963 -1.04769 -0.040355)
(-0.541845 -1.28199 -0.0248126)
(-0.611456 -1.58278 -0.0105841)
(-0.698556 -1.95662 0.0049203)
(-0.792238 -2.38154 0.0234658)
(-0.858436 -2.78401 0.0385274)
(-0.853988 -3.0078 0.0459665)
(-0.728102 -2.84436 0.0448733)
(-0.484152 -2.05844 0.0367515)
(-0.128183 -0.824491 0.0316125)
(-0.00262126 -0.111502 0.0273801)
(0.000650947 0.356784 0.0853189)
(-0.0739016 0.821668 0.172989)
(-0.241347 1.09666 0.229481)
(-0.442932 1.27656 0.23768)
(-0.620695 1.38696 0.200904)
(-0.733996 1.38119 0.13781)
(-0.765985 1.27379 0.0389122)
(-0.735321 1.10337 -0.0631362)
(-0.676234 0.935471 -0.167689)
(-0.606423 0.795174 -0.263751)
(-0.558707 0.687627 -0.360913)
(-0.543146 0.606241 -0.452639)
(-0.593754 0.532244 -0.528897)
(-0.658976 0.477751 -0.507368)
(-0.638638 0.559175 -0.307965)
(-0.506368 0.691607 0.310504)
(-0.247987 0.707036 0.72601)
(-0.128555 0.65217 0.422508)
(-0.420478 0.34967 -0.0782272)
(-0.6882 0.360404 -0.548491)
(-0.63621 0.298761 -0.536391)
(-0.501056 -0.106223 -0.134997)
(-0.411721 -0.246755 -0.0830827)
(-0.366377 -0.286627 -0.139671)
(-0.359552 -0.402858 -0.11791)
(-0.348354 -0.482809 -0.114386)
(-0.361365 -0.591734 -0.0873777)
(-0.364494 -0.698087 -0.0683486)
(-0.3844 -0.828951 -0.044726)
(-0.404447 -0.983187 -0.0284)
(-0.443159 -1.187 -0.0133167)
(-0.495218 -1.45711 -0.000709253)
(-0.568937 -1.81199 0.0131131)
(-0.661649 -2.25189 0.0304411)
(-0.745516 -2.72104 0.04808)
(-0.777425 -3.08155 0.0564226)
(-0.692528 -3.09736 0.0529026)
(-0.485532 -2.47784 0.0422947)
(-0.141536 -1.17739 0.0266788)
(0.0241308 -0.154361 0.0222365)
(0.00766284 0.395232 0.094105)
(-0.0639922 0.911467 0.189289)
(-0.220622 1.20135 0.244152)
(-0.393056 1.38452 0.243619)
(-0.542201 1.46937 0.201708)
(-0.627107 1.42489 0.13062)
(-0.638235 1.27484 0.0281294)
(-0.598277 1.08364 -0.075505)
(-0.535772 0.899179 -0.176888)
(-0.464441 0.750934 -0.268894)
(-0.417129 0.635304 -0.367822)
(-0.406317 0.550147 -0.467319)
(-0.472438 0.479966 -0.543562)
(-0.457096 0.502578 -0.439322)
(-0.37679 0.88457 -0.0208754)
(-0.207873 1.13077 0.824326)
(0.0402091 1.16632 0.908881)
(-0.0403283 0.853485 0.146937)
(-0.587763 0.392886 -0.373132)
(-0.799737 0.333591 -0.692609)
(-0.471857 0.266053 -0.531694)
(-0.320529 -0.164917 -0.0539345)
(-0.328799 -0.284571 -0.0158718)
(-0.286336 -0.276086 -0.0958932)
(-0.307499 -0.382928 -0.0908288)
(-0.286167 -0.472203 -0.10094)
(-0.306564 -0.583067 -0.0751286)
(-0.306591 -0.681856 -0.0564764)
(-0.323021 -0.799275 -0.0314278)
(-0.334671 -0.935792 -0.0140003)
(-0.362732 -1.11313 0.000433421)
(-0.40175 -1.35485 0.011253)
(-0.465995 -1.68572 0.0246941)
(-0.550717 -2.12536 0.0401656)
(-0.639363 -2.63756 0.0593506)
(-0.696627 -3.11322 0.0691059)
(-0.647937 -3.29769 0.0672627)
(-0.475278 -2.85669 0.0532967)
(-0.153381 -1.56393 0.0314649)
(0.0538223 -0.232341 0.0226366)
(0.00745008 0.404315 0.10197)
(-0.0500536 0.967445 0.200054)
(-0.185677 1.29199 0.247885)
(-0.337281 1.46709 0.245302)
(-0.462739 1.52535 0.19715)
(-0.529676 1.44487 0.121864)
(-0.533688 1.26781 0.0162568)
(-0.494716 1.05968 -0.0820248)
(-0.431425 0.864359 -0.175267)
(-0.356169 0.705704 -0.256914)
(-0.300527 0.57184 -0.348778)
(-0.291961 0.479209 -0.449396)
(-0.364347 0.417435 -0.506045)
(-0.182541 0.668715 -0.257438)
(0.0523768 1.23616 0.280856)
(0.182879 1.70906 0.995998)
(0.268545 1.49903 0.988187)
(-0.0768636 1.00758 0.180878)
(-0.747035 0.563522 -0.391785)
(-0.801997 0.348551 -0.666759)
(-0.168625 0.122449 -0.428319)
(-0.0543611 -0.241898 0.0148334)
(-0.181876 -0.353013 0.0407334)
(-0.162213 -0.283333 -0.0631188)
(-0.251413 -0.352146 -0.0542628)
(-0.241989 -0.423957 -0.0753906)
(-0.257899 -0.543514 -0.0635993)
(-0.251592 -0.657801 -0.0452439)
(-0.270948 -0.771811 -0.0177112)
(-0.278608 -0.892786 -0.000921559)
(-0.300053 -1.04359 0.0128814)
(-0.325513 -1.2569 0.0247389)
(-0.377424 -1.56116 0.036986)
(-0.453958 -1.99245 0.0504722)
(-0.545945 -2.53219 0.0679076)
(-0.620894 -3.10226 0.0809701)
(-0.606032 -3.44262 0.0803198)
(-0.464663 -3.17657 0.0665505)
(-0.172074 -1.91942 0.0387463)
(0.0608291 -0.282745 0.023283)
(0.00734232 0.428853 0.104953)
(-0.0180116 1.04723 0.207254)
(-0.135038 1.40105 0.257679)
(-0.281134 1.57128 0.249069)
(-0.385151 1.60339 0.198247)
(-0.442127 1.49827 0.117584)
(-0.442225 1.30069 0.0119218)
(-0.407771 1.07994 -0.081511)
(-0.345542 0.868206 -0.16144)
(-0.270803 0.693005 -0.228702)
(-0.209941 0.53349 -0.296019)
(-0.212811 0.423954 -0.380901)
(-0.196803 0.39531 -0.349217)
(0.109724 0.831315 0.153081)
(0.497804 1.43295 0.506358)
(0.640357 2.02411 0.83884)
(0.68577 1.66718 1.11843)
(0.33232 1.20411 0.631358)
(-0.426078 0.804577 -0.298346)
(-0.472902 0.41096 -0.476777)
(0.31509 0.00604297 -0.217485)
(0.321612 -0.322306 0.0703483)
(0.0094767 -0.39715 0.073627)
(0.0245262 -0.296841 -0.0436932)
(-0.143205 -0.347444 -0.0371812)
(-0.175923 -0.374864 -0.0507147)
(-0.235199 -0.466096 -0.0331634)
(-0.223344 -0.575018 -0.0256533)
(-0.223157 -0.701542 -0.0041403)
(-0.218931 -0.836227 0.0111606)
(-0.236907 -0.986727 0.0246635)
(-0.259205 -1.17879 0.0354331)
(-0.303055 -1.44574 0.0476092)
(-0.367119 -1.85689 0.0606731)
(-0.45217 -2.4116 0.0792105)
(-0.537943 -3.06821 0.0936323)
(-0.552906 -3.56256 0.095298)
(-0.44224 -3.48152 0.0809053)
(-0.17745 -2.30012 0.0494291)
(0.0658387 -0.397262 0.0239732)
(0.00124097 0.433592 0.106141)
(-0.0284651 1.13035 0.211871)
(-0.103321 1.49996 0.25703)
(-0.219916 1.68189 0.254642)
(-0.311215 1.6956 0.196981)
(-0.352659 1.57088 0.11818)
(-0.355213 1.36523 0.0114506)
(-0.331814 1.13507 -0.0723269)
(-0.276079 0.919431 -0.138108)
(-0.214117 0.73328 -0.177778)
(-0.157099 0.556672 -0.214897)
(-0.171545 0.413612 -0.29195)
(-0.100954 0.473357 -0.0788997)
(0.365703 0.8231 0.702137)
(0.699854 1.22367 0.754533)
(0.631926 1.60319 0.3997)
(0.80661 1.33611 0.903734)
(0.799589 0.998587 0.846388)
(0.0734294 0.989207 -0.0954554)
(-0.257286 0.369438 -0.237081)
(0.658284 -0.127136 0.0478927)
(0.794449 -0.455342 0.199054)
(0.278439 -0.468075 0.132778)
(0.213185 -0.308525 -0.0213461)
(-0.0160771 -0.332916 -0.0151201)
(-0.0597257 -0.361504 -0.0376983)
(-0.160062 -0.413963 -0.0230499)
(-0.190278 -0.48556 -0.00488471)
(-0.222462 -0.582682 0.0188064)
(-0.21708 -0.702848 0.0293924)
(-0.213057 -0.842896 0.0389181)
(-0.203517 -1.03416 0.0479123)
(-0.227883 -1.29521 0.0582346)
(-0.2781 -1.69805 0.0724236)
(-0.364693 -2.2496 0.0888834)
(-0.461625 -2.96474 0.106042)
(-0.509423 -3.60759 0.109868)
(-0.443738 -3.72016 0.0966476)
(-0.212099 -2.63638 0.0638602)
(0.046158 -0.454648 0.0300656)
(0.00974916 0.576023 0.109177)
(0.00505127 1.33431 0.215383)
(-0.0469997 1.7323 0.270014)
(-0.134596 1.89893 0.254884)
(-0.214852 1.91355 0.207892)
(-0.255373 1.7814 0.127487)
(-0.263937 1.57918 0.0216918)
(-0.255703 1.35259 -0.0625639)
(-0.2183 1.14367 -0.120852)
(-0.174427 0.92606 -0.145999)
(-0.138255 0.720898 -0.143279)
(-0.118399 0.531122 -0.231415)
(-0.0238965 0.578065 0.242243)
(0.3559 0.736993 1.26872)
(0.321829 0.709275 1.10425)
(-0.233757 0.772744 0.10819)
(0.217283 0.78515 0.165359)
(0.970738 0.184959 0.61189)
(0.578251 0.205786 0.230731)
(-0.149934 -0.230331 0.0598995)
(0.952284 -0.534721 0.330589)
(1.43801 -0.732382 0.389753)
(0.650213 -0.662175 0.264853)
(0.491355 -0.353326 0.0223228)
(0.126624 -0.295738 -0.00920707)
(0.0473031 -0.325221 -0.0210216)
(-0.0610359 -0.390037 -0.00174632)
(-0.101972 -0.45065 0.0105553)
(-0.149518 -0.513511 0.0320901)
(-0.169406 -0.593983 0.0396971)
(-0.198767 -0.690822 0.0474092)
(-0.213283 -0.840911 0.0493433)
(-0.237261 -1.05731 0.0504297)
(-0.243194 -1.4174 0.0660539)
(-0.269787 -1.97712 0.0958021)
(-0.355973 -2.77277 0.114588)
(-0.427752 -3.55459 0.121928)
(-0.40816 -3.90067 0.107856)
(-0.209232 -3.00931 0.0736429)
(0.0552615 -0.656787 0.0309393)
(-0.0178676 0.770642 0.132181)
(-0.0158103 1.60554 0.242265)
(-0.0364826 2.03388 0.291212)
(-0.0799298 2.17868 0.276714)
(-0.127643 2.1718 0.214451)
(-0.169335 2.02815 0.137522)
(-0.181155 1.81541 0.0243457)
(-0.193958 1.58778 -0.0552861)
(-0.199102 1.38349 -0.111466)
(-0.190313 1.15513 -0.124878)
(-0.179952 0.945089 -0.0911735)
(-0.169012 0.755794 -0.131499)
(-0.0398119 0.721546 0.577176)
(0.0479406 0.702925 1.53065)
(-0.558125 0.265424 1.32093)
(-1.47591 0.24807 0.178039)
(-1.02501 0.514983 -0.353791)
(0.295974 -0.194278 0.0842165)
(1.61118 -0.855442 0.227885)
(0.779606 -1.06116 0.486496)
(1.288 -1.05809 0.969305)
(2.0566 -0.896428 0.845934)
(0.911358 -0.635735 0.500237)
(0.770251 -0.355481 0.123409)
(0.333019 -0.234642 0.025135)
(0.151815 -0.26363 -0.0127182)
(0.00970778 -0.320767 0.00221365)
(-0.0297058 -0.410208 0.0311774)
(-0.0847779 -0.477624 0.0468762)
(-0.105111 -0.553293 0.057684)
(-0.131535 -0.622642 0.0644066)
(-0.143439 -0.720265 0.0657947)
(-0.177948 -0.856286 0.0590837)
(-0.239679 -1.1263 0.0538879)
(-0.330908 -1.60186 0.0554305)
(-0.364979 -2.37395 0.0997292)
(-0.399314 -3.29333 0.122413)
(-0.417086 -3.88423 0.115345)
(-0.262548 -3.27505 0.0858197)
(0.0070823 -0.982023 0.0418349)
(-0.031718 0.750561 0.11315)
(-0.0244527 1.65434 0.229901)
(-0.00961808 2.12418 0.284757)
(-0.0363153 2.29455 0.276247)
(-0.0583391 2.2659 0.21402)
(-0.0861303 2.11583 0.126634)
(-0.108268 1.89876 0.0195072)
(-0.127864 1.67904 -0.059218)
(-0.156844 1.48929 -0.101913)
(-0.173759 1.30233 -0.109814)
(-0.172876 1.1455 -0.0770795)
(-0.16719 0.996982 -0.0632183)
(-0.0565795 0.961403 0.672279)
(-0.325605 0.72963 1.23557)
(-1.40261 -0.209848 0.591617)
(-2.51728 -0.339506 -0.222736)
(-2.13781 0.130171 -0.799479)
(-1.05821 -0.26037 -0.567879)
(1.30877 -0.774635 -1.23317)
(1.41436 -0.952355 -0.964341)
(1.34646 -1.14633 0.566274)
(1.54283 -0.685483 0.803867)
(0.454342 -0.297982 0.612627)
(0.739894 -0.265154 0.283449)
(0.56033 -0.15903 0.0954458)
(0.269437 -0.202429 0.00800644)
(0.0851199 -0.250865 0.00227138)
(0.0195498 -0.357093 0.0278311)
(-0.0226665 -0.433713 0.0539323)
(-0.0442524 -0.518538 0.0688588)
(-0.0718863 -0.586346 0.0756399)
(-0.0807209 -0.677055 0.0759886)
(-0.101099 -0.784294 0.0724834)
(-0.120088 -0.991412 0.0738078)
(-0.220995 -1.3398 0.0680354)
(-0.366531 -1.98316 0.068824)
(-0.44126 -2.87149 0.105609)
(-0.462108 -3.61149 0.106195)
(-0.363899 -3.26784 0.0842355)
(-0.0790922 -1.0548 0.0405052)
(-0.0146715 0.733733 0.110531)
(0.00113474 1.64517 0.226012)
(0.0186561 2.12855 0.277941)
(0.0109795 2.31823 0.275135)
(0.00304015 2.30238 0.210649)
(-0.0173338 2.15246 0.121171)
(-0.0422399 1.94504 0.00855235)
(-0.0638987 1.73942 -0.0749513)
(-0.0979458 1.57047 -0.131166)
(-0.115206 1.42774 -0.132435)
(-0.133201 1.31143 -0.134663)
(-0.125944 1.22811 -0.124123)
(0.00209881 1.17113 0.383642)
(-0.534681 0.880447 0.53538)
(-1.89848 -0.199831 -0.544752)
(-3.00526 -0.61549 -1.41693)
(-2.74619 -0.24467 -1.37405)
(-1.86548 -0.531854 -0.675)
(0.265808 -0.162601 -1.98813)
(1.75337 0.503091 -3.40382)
(1.76434 0.163882 -1.20506)
(1.22141 0.217762 0.209891)
(0.86122 0.154388 0.611258)
(1.11759 -0.0661322 0.59214)
(0.855301 0.010952 0.232791)
(0.373452 -0.11191 0.0578528)
(0.143749 -0.197981 0.0111007)
(0.0610866 -0.316131 0.0302586)
(0.0168071 -0.400325 0.054628)
(0.00069158 -0.485406 0.0732405)
(-0.0205221 -0.54942 0.0834079)
(-0.0252383 -0.633154 0.0873178)
(-0.0475278 -0.726956 0.0865042)
(-0.0649849 -0.909177 0.0845215)
(-0.136049 -1.2204 0.0769494)
(-0.252814 -1.76863 0.086027)
(-0.370591 -2.53206 0.100632)
(-0.438478 -3.32082 0.105846)
(-0.368617 -3.18151 0.0835863)
(-0.120472 -1.1156 0.0419242)
(-0.00843631 0.701352 0.0962159)
(0.0228075 1.58667 0.202948)
(0.0537694 2.08905 0.258886)
(0.0574273 2.30188 0.259304)
(0.0550585 2.3029 0.20296)
(0.0409042 2.16811 0.112653)
(0.0201764 1.97017 -0.00118231)
(0.00536766 1.7774 -0.0990659)
(-0.0188531 1.61011 -0.170743)
(-0.0329621 1.48701 -0.197581)
(-0.0274413 1.3641 -0.216276)
(-0.0673941 1.32883 -0.263847)
(0.0907289 1.24329 0.0446755)
(-0.530751 1.14718 0.0742885)
(-2.03321 0.509425 -1.18014)
(-3.11604 -0.126012 -2.42971)
(-2.77609 -0.0759524 -1.96007)
(-1.66021 -0.354797 -0.702017)
(-0.52165 0.234974 -1.03721)
(1.36034 1.78788 -2.55995)
(1.82084 1.99535 -1.79179)
(1.26266 1.51032 0.217134)
(1.17287 1.04696 0.761845)
(1.15634 0.612418 0.504737)
(0.766007 0.382941 0.268982)
(0.308501 0.135338 0.131367)
(0.16212 -0.0861646 0.0190291)
(0.0879123 -0.262044 0.0344268)
(0.0634794 -0.368006 0.0577065)
(0.053906 -0.460136 0.0761656)
(0.0331411 -0.530552 0.0879497)
(0.0304305 -0.613542 0.0907321)
(0.0111911 -0.699382 0.0886091)
(-0.000170504 -0.856432 0.083909)
(-0.0555025 -1.12941 0.0929982)
(-0.149245 -1.63948 0.0957897)
(-0.280587 -2.36552 0.10671)
(-0.386214 -3.19222 0.101324)
(-0.360877 -3.228 0.0810454)
(-0.140333 -1.34175 0.0444598)
(-0.00191895 0.649615 0.0824418)
(0.0435619 1.50795 0.183097)
(0.0880093 2.02696 0.23888)
(0.102654 2.26136 0.242735)
(0.10784 2.28229 0.19098)
(0.0983888 2.16535 0.100519)
(0.0825989 1.97995 -0.0133664)
(0.0681569 1.78993 -0.119695)
(0.0540316 1.61542 -0.209643)
(0.0363557 1.47894 -0.251448)
(0.0548131 1.33383 -0.302925)
(-0.0705383 1.23219 -0.34664)
(-0.0301876 1.16191 -0.0301422)
(-0.578776 1.29336 0.0748066)
(-2.06257 1.34032 -1.03735)
(-3.27204 0.821271 -2.51891)
(-2.28906 0.68318 -2.24172)
(-0.99105 0.44938 -1.42981)
(-1.34806 1.03728 -1.18175)
(-0.585431 3.10375 -0.92038)
(0.321415 3.58132 -0.942545)
(0.197177 2.59082 -0.216438)
(-0.233123 1.62233 -0.0656866)
(-0.389086 0.859899 -0.316356)
(-0.19942 0.530932 -0.158474)
(-0.0933543 0.304647 -0.0102971)
(-0.0102802 -0.0114062 -0.0274256)
(0.0390407 -0.226394 0.0055923)
(0.0650406 -0.344664 0.0513278)
(0.0756029 -0.444305 0.0801887)
(0.064524 -0.512821 0.0987962)
(0.0674533 -0.592554 0.10401)
(0.0470776 -0.665091 0.101718)
(0.0324246 -0.809176 0.0954884)
(-0.0190634 -1.04217 0.099774)
(-0.0773599 -1.54505 0.119035)
(-0.201524 -2.28186 0.119809)
(-0.318514 -3.1864 0.112475)
(-0.333611 -3.36357 0.0859911)
(-0.137612 -1.57687 0.0502505)
(0.00134672 0.593904 0.06899)
(0.0581658 1.41747 0.162047)
(0.11609 1.95416 0.219023)
(0.142546 2.21348 0.226534)
(0.15533 2.25555 0.181173)
(0.152384 2.15279 0.0938732)
(0.139527 1.97647 -0.0172736)
(0.125415 1.78192 -0.128978)
(0.11453 1.59791 -0.227268)
(0.0879761 1.43661 -0.284006)
(0.086757 1.27327 -0.338422)
(-0.0892442 1.09778 -0.374757)
(-0.222567 1.04359 0.0142507)
(-0.592798 1.23151 0.271653)
(-1.76089 1.62217 -0.622008)
(-2.99459 1.47115 -2.46211)
(-1.87443 1.4051 -2.86352)
(-0.903677 1.68248 -2.76795)
(-1.88525 2.85838 -2.73737)
(-1.745 4.58415 -1.27482)
(-0.899587 4.13156 -0.543317)
(-0.556564 2.36068 -0.68732)
(-0.81441 0.971832 -0.836343)
(-1.09427 0.201282 -0.90879)
(-0.816281 0.173982 -0.628624)
(-0.418404 0.125972 -0.26465)
(-0.139821 -0.0597185 -0.111807)
(0.0122505 -0.241997 -0.00788556)
(0.0861795 -0.33971 0.0438663)
(0.115853 -0.439209 0.0790171)
(0.114647 -0.505299 0.103652)
(0.126541 -0.588019 0.109415)
(0.106985 -0.659021 0.106161)
(0.101342 -0.797336 0.100926)
(0.0325495 -1.00779 0.0987103)
(-0.0234343 -1.49398 0.119133)
(-0.137658 -2.27166 0.131532)
(-0.262261 -3.28617 0.120752)
(-0.315585 -3.6349 0.0923242)
(-0.137142 -1.90412 0.0500683)
(0.00452122 0.527097 0.0544614)
(0.069995 1.30823 0.141056)
(0.139687 1.85865 0.198873)
(0.176626 2.14459 0.21116)
(0.1971 2.20967 0.173101)
(0.198917 2.1235 0.0918884)
(0.187601 1.95543 -0.0143627)
(0.169957 1.7622 -0.124728)
(0.157098 1.5712 -0.221326)
(0.122047 1.39632 -0.285518)
(0.0953585 1.22746 -0.318917)
(-0.0680908 1.0312 -0.351216)
(-0.311964 0.986331 -0.0529161)
(-0.512622 1.02152 0.298021)
(-1.11781 1.29103 -0.196957)
(-2.15014 1.59769 -1.72415)
(-1.75262 1.87614 -2.62444)
(-1.60058 2.76059 -3.12551)
(-2.34376 4.25538 -3.1647)
(-1.70897 4.77377 -1.78903)
(-0.822985 3.2723 -0.522898)
(-0.183021 1.64527 -0.437022)
(-0.0812805 0.814772 -0.594003)
(-0.605978 0.0328688 -0.646506)
(-0.639666 -0.176759 -0.542873)
(-0.3004 -0.208852 -0.346177)
(-0.106481 -0.249037 -0.234543)
(0.0277163 -0.309343 -0.102478)
(0.112823 -0.39468 0.0120296)
(0.147646 -0.485911 0.0883911)
(0.1512 -0.567626 0.128528)
(0.158727 -0.679201 0.136616)
(0.131892 -0.770962 0.130788)
(0.133372 -0.928363 0.131249)
(0.0694272 -1.14481 0.132279)
(0.0106562 -1.60859 0.136414)
(-0.104682 -2.40271 0.165542)
(-0.21633 -3.53835 0.15059)
(-0.278867 -4.0953 0.121706)
(-0.121502 -2.50183 0.0718599)
(0.0107149 0.467934 0.0460936)
(0.0832816 1.19992 0.123868)
(0.158531 1.7623 0.181993)
(0.203677 2.07798 0.199098)
(0.232184 2.17026 0.169151)
(0.239764 2.10419 0.0961143)
(0.232164 1.94717 -0.00403252)
(0.214051 1.75966 -0.106768)
(0.198116 1.56995 -0.197828)
(0.16062 1.39138 -0.257275)
(0.111756 1.22872 -0.276902)
(-0.000934168 1.04866 -0.272527)
(-0.2588 0.98581 -0.116645)
(-0.411168 0.969547 0.255246)
(-0.65338 1.04648 0.251039)
(-1.38982 1.47664 -0.422196)
(-1.89958 2.03667 -1.28775)
(-2.36423 3.04428 -1.6884)
(-2.41253 4.24583 -1.55561)
(-1.50461 3.9718 -0.764153)
(-0.858148 2.17204 0.0439668)
(-0.313139 1.06264 0.107711)
(0.0119385 0.837549 -0.0818049)
(-0.176478 0.241474 -0.122825)
(-0.230553 -0.269656 -0.141938)
(-0.0713592 -0.461265 -0.0938275)
(0.0657032 -0.45378 -0.128458)
(0.132075 -0.399882 -0.0758317)
(0.158003 -0.428447 0.0120028)
(0.180886 -0.509322 0.104698)
(0.158599 -0.601627 0.133699)
(0.166281 -0.732119 0.144485)
(0.131515 -0.837436 0.140384)
(0.125178 -0.995752 0.123601)
(0.0795554 -1.18573 0.142475)
(0.0297087 -1.6522 0.138456)
(-0.0957717 -2.45236 0.176296)
(-0.204811 -3.72475 0.159054)
(-0.29551 -4.51885 0.132395)
(-0.143585 -3.13557 0.080341)
(0.0143842 0.411134 0.03554)
(0.0968357 1.07378 0.104199)
(0.178269 1.63738 0.163756)
(0.225171 1.97985 0.187061)
(0.259702 2.10195 0.166191)
(0.272915 2.06037 0.103142)
(0.271214 1.92062 0.0124633)
(0.256078 1.74488 -0.0820668)
(0.238372 1.56352 -0.165775)
(0.202508 1.39232 -0.220437)
(0.149049 1.24352 -0.230297)
(0.0601986 1.10093 -0.199726)
(-0.121285 1.01222 -0.0860075)
(-0.309516 1.04392 0.222282)
(-0.473597 1.05612 0.575499)
(-0.713741 1.22679 0.575106)
(-1.33418 1.56449 -0.0855242)
(-1.98309 2.25488 -0.393287)
(-1.74732 2.96664 -0.0508848)
(-0.946239 2.68778 0.333204)
(-0.568635 1.45711 0.565611)
(-0.429148 0.604126 0.434321)
(-0.0846344 0.382287 0.206224)
(0.109939 0.158304 0.123737)
(0.0776996 -0.21583 0.170665)
(0.169379 -0.415687 0.19053)
(0.274263 -0.438048 0.086964)
(0.299598 -0.394254 0.0214205)
(0.249801 -0.40592 0.0416959)
(0.221685 -0.484047 0.0902829)
(0.177503 -0.558709 0.113969)
(0.17946 -0.679678 0.126607)
(0.152797 -0.77516 0.130007)
(0.164876 -0.933092 0.13957)
(0.0908501 -1.10934 0.127976)
(0.0438219 -1.53618 0.143715)
(-0.0824683 -2.32773 0.177608)
(-0.197177 -3.69782 0.164596)
(-0.315066 -4.72364 0.137328)
(-0.171342 -3.60526 0.0841673)
(0.00902632 0.368567 0.0302115)
(0.096483 0.969144 0.0911847)
(0.195079 1.51554 0.144865)
(0.243606 1.89094 0.176338)
(0.280713 2.04556 0.164898)
(0.302709 2.0337 0.112436)
(0.311766 1.91443 0.0321882)
(0.304876 1.75153 -0.0552699)
(0.291496 1.57851 -0.135556)
(0.265131 1.4149 -0.191003)
(0.221275 1.27912 -0.208442)
(0.149184 1.16507 -0.181083)
(0.0331853 1.09562 -0.0963407)
(-0.106861 1.11832 0.0975415)
(-0.231873 1.19026 0.478259)
(-0.204997 1.29202 0.84488)
(-0.323561 1.27927 0.730129)
(-0.512564 1.4431 0.618241)
(-0.276979 1.67757 0.777859)
(0.160109 1.4652 0.84303)
(0.443707 0.905171 0.715565)
(0.452793 0.456755 0.360465)
(0.436912 0.186225 0.0763923)
(0.467289 0.058321 -0.00408464)
(0.331643 -0.02317 0.031211)
(0.296849 -0.131731 0.128919)
(0.382712 -0.249389 0.174435)
(0.399706 -0.274889 0.121251)
(0.315606 -0.341406 0.0704772)
(0.288494 -0.421087 0.0807544)
(0.22952 -0.482355 0.0943503)
(0.220656 -0.592741 0.103015)
(0.165706 -0.674909 0.113034)
(0.167931 -0.847455 0.112319)
(0.125182 -1.00854 0.139567)
(0.0727394 -1.42331 0.125055)
(-0.0761508 -2.14527 0.17584)
(-0.177033 -3.58199 0.158811)
(-0.331465 -4.80663 0.135208)
(-0.192717 -4.00241 0.0829842)
(0.00858672 0.311881 0.0235078)
(0.0895747 0.851674 0.0807614)
(0.205025 1.36213 0.126914)
(0.266618 1.75128 0.162604)
(0.296189 1.9416 0.162491)
(0.32296 1.9595 0.121747)
(0.343356 1.86839 0.0536803)
(0.347908 1.71755 -0.0286874)
(0.342554 1.55716 -0.106059)
(0.329958 1.40068 -0.165788)
(0.304995 1.27173 -0.196026)
(0.26308 1.16979 -0.192181)
(0.197731 1.11597 -0.143624)
(0.120989 1.12358 -0.0321125)
(0.0731105 1.20282 0.159813)
(0.14313 1.31419 0.460456)
(0.260178 1.24313 0.667399)
(0.366686 1.16996 0.852456)
(0.621638 1.06727 0.945078)
(0.920681 0.779368 0.825831)
(1.14742 0.477877 0.554232)
(1.20106 0.217519 0.153279)
(1.08556 0.0125589 -0.174848)
(0.906982 -0.106069 -0.312573)
(0.564783 -0.104621 -0.355917)
(0.332719 -0.0602148 -0.192815)
(0.392218 -0.0951224 0.0511839)
(0.451619 -0.157684 0.101782)
(0.357531 -0.236124 0.060559)
(0.350672 -0.333632 0.0641461)
(0.280368 -0.394082 0.0710994)
(0.26783 -0.508845 0.0792975)
(0.195738 -0.581125 0.0881992)
(0.190867 -0.751119 0.100717)
(0.124203 -0.889565 0.116849)
(0.108714 -1.30787 0.139846)
(-0.0453797 -1.95797 0.159698)
(-0.152786 -3.42527 0.160697)
(-0.338296 -4.81375 0.130916)
(-0.216821 -4.35364 0.082065)
(0.00389673 0.276704 0.0203034)
(0.0721115 0.769196 0.0739)
(0.190663 1.25063 0.116817)
(0.279451 1.63242 0.144346)
(0.31633 1.85882 0.159791)
(0.341783 1.90879 0.130102)
(0.372735 1.84471 0.0746049)
(0.391613 1.70157 -0.00213078)
(0.402415 1.55038 -0.0734297)
(0.403944 1.39357 -0.135544)
(0.398539 1.26054 -0.176594)
(0.383822 1.15084 -0.193943)
(0.360011 1.08095 -0.18264)
(0.335557 1.05602 -0.139099)
(0.328252 1.0827 -0.0589894)
(0.380361 1.13297 0.0529494)
(0.506675 1.10176 0.174906)
(0.650776 1.01644 0.271698)
(0.831043 0.858267 0.341468)
(1.03745 0.574859 0.294067)
(1.26982 0.289497 0.0680622)
(1.36556 0.0724877 -0.19852)
(1.21222 -0.130898 -0.364134)
(1.02157 -0.303572 -0.362027)
(0.780682 -0.350638 -0.323519)
(0.584095 -0.236722 -0.23816)
(0.535602 -0.110899 -0.0446163)
(0.512853 -0.112713 0.0398933)
(0.401396 -0.146872 0.0398705)
(0.408493 -0.23525 0.0434479)
(0.338425 -0.295112 0.0446231)
(0.325504 -0.411292 0.0500601)
(0.231144 -0.475881 0.0628341)
(0.224934 -0.647788 0.0771879)
(0.128893 -0.770282 0.104055)
(0.140577 -1.16376 0.128479)
(-0.0191741 -1.78222 0.154169)
(-0.119192 -3.24919 0.153344)
(-0.351126 -4.78987 0.126523)
(-0.241277 -4.70645 0.07742)
(0.00829999 0.226019 0.0191364)
(0.0607095 0.666733 0.071521)
(0.162905 1.10968 0.109939)
(0.273135 1.46697 0.134897)
(0.331633 1.6982 0.146721)
(0.354071 1.78546 0.13718)
(0.380131 1.75055 0.0934911)
(0.414788 1.62918 0.029651)
(0.444032 1.48701 -0.0383392)
(0.459373 1.33609 -0.0978935)
(0.471857 1.2018 -0.144979)
(0.47823 1.08356 -0.175057)
(0.482296 0.995265 -0.186638)
(0.488108 0.934083 -0.178568)
(0.504813 0.901354 -0.1529)
(0.545396 0.883873 -0.10966)
(0.62472 0.834307 -0.0616885)
(0.704583 0.728262 -0.0337141)
(0.825445 0.575202 -0.0282482)
(0.983702 0.366973 -0.0718525)
(1.21145 0.126121 -0.190931)
(1.34532 -0.0535859 -0.29651)
(1.21433 -0.213788 -0.324335)
(1.0748 -0.304029 -0.23352)
(0.942365 -0.316175 -0.118418)
(0.847933 -0.241178 -0.0626088)
(0.784776 -0.109615 -0.00125535)
(0.682407 -0.0664879 0.0224103)
(0.504657 -0.0717617 0.0171043)
(0.487182 -0.138273 0.010769)
(0.399527 -0.197304 0.0168142)
(0.395087 -0.313083 0.0232435)
(0.282631 -0.368573 0.03787)
(0.273665 -0.544056 0.0582595)
(0.153062 -0.653983 0.0867894)
(0.170509 -1.03672 0.120103)
(0.000482965 -1.61816 0.146425)
(-0.0774596 -3.0881 0.148911)
(-0.373244 -4.76141 0.12142)
(-0.271168 -5.11535 0.0740707)
(0.00512315 0.207301 0.0198974)
(0.0295445 0.620853 0.0714976)
(0.102928 1.03966 0.109038)
(0.226411 1.39035 0.131136)
(0.329237 1.59789 0.139246)
(0.381212 1.69805 0.135611)
(0.399277 1.69366 0.113186)
(0.439198 1.58467 0.0632493)
(0.486813 1.44825 0.0016449)
(0.521657 1.29716 -0.053038)
(0.550625 1.16126 -0.0998868)
(0.572419 1.03372 -0.136115)
(0.593764 0.92901 -0.158606)
(0.613439 0.840783 -0.169037)
(0.638233 0.769352 -0.166092)
(0.664917 0.704744 -0.155381)
(0.70539 0.627586 -0.131156)
(0.753804 0.5269 -0.109723)
(0.847228 0.414279 -0.0939835)
(0.972571 0.259327 -0.1076)
(1.21699 0.0915531 -0.142645)
(1.39064 -0.0308672 -0.179499)
(1.31413 -0.143983 -0.190395)
(1.24763 -0.179292 -0.171225)
(1.14432 -0.158091 -0.128096)
(1.07633 -0.117274 -0.0858104)
(0.988824 -0.0306135 -0.0382686)
(0.829548 -0.0140043 -0.0209611)
(0.608068 -0.00785161 -0.0240709)
(0.579274 -0.0547637 -0.0236769)
(0.469792 -0.0842724 -0.0161425)
(0.483046 -0.205548 -0.00189714)
(0.346796 -0.245398 0.0159006)
(0.344736 -0.41466 0.0376916)
(0.186764 -0.511428 0.0719011)
(0.213223 -0.882189 0.105453)
(0.0193126 -1.43007 0.140095)
(-0.0305912 -2.89047 0.138276)
(-0.40754 -4.72452 0.115947)
(-0.304024 -5.61041 0.0679615)
(0.0151329 0.179524 0.025293)
(0.0298233 0.52869 0.0791499)
(0.051956 0.939243 0.111648)
(0.151256 1.23972 0.133116)
(0.269454 1.43965 0.141686)
(0.372687 1.50778 0.131376)
(0.400329 1.54158 0.12706)
(0.43056 1.44615 0.091474)
(0.497976 1.33829 0.0458681)
(0.550987 1.19568 -0.00712254)
(0.603104 1.06785 -0.0493563)
(0.6398 0.944344 -0.0860008)
(0.675298 0.838274 -0.113564)
(0.705316 0.740481 -0.133515)
(0.735764 0.655213 -0.144097)
(0.76101 0.574253 -0.148425)
(0.79573 0.499382 -0.140903)
(0.834602 0.421268 -0.127686)
(0.911167 0.335449 -0.115136)
(1.02269 0.212502 -0.116475)
(1.27606 0.09788 -0.126662)
(1.46642 0.00690309 -0.140393)
(1.40965 -0.070196 -0.135987)
(1.38757 -0.113376 -0.130703)
(1.31397 -0.100783 -0.107562)
(1.27274 -0.0816265 -0.0862204)
(1.17967 -0.0120885 -0.0621227)
(0.998311 0.00115683 -0.0564821)
(0.748117 0.0326446 -0.0536453)
(0.729008 -0.0112228 -0.0500286)
(0.577448 -0.00917481 -0.0373269)
(0.590958 -0.100963 -0.0216825)
(0.454337 -0.122765 0.00112911)
(0.460787 -0.295984 0.0221954)
(0.276641 -0.368774 0.0553518)
(0.298853 -0.747485 0.0918136)
(0.0775722 -1.24063 0.124088)
(0.0421734 -2.7034 0.133388)
(-0.448234 -4.66672 0.109106)
(-0.299283 -6.21419 0.0626894)
(-0.0194228 0.159101 0.0279495)
(-0.0272439 0.558762 0.0885081)
(-0.0296177 0.898431 0.121947)
(0.0295946 1.23944 0.138654)
(0.167922 1.3945 0.148862)
(0.339769 1.41651 0.13963)
(0.412846 1.43487 0.137733)
(0.439077 1.34438 0.119401)
(0.522763 1.24552 0.0859033)
(0.591059 1.12227 0.048357)
(0.665496 0.999286 0.00699745)
(0.720778 0.879715 -0.0265402)
(0.769906 0.775583 -0.0535121)
(0.807954 0.677737 -0.0767149)
(0.844032 0.591237 -0.0925317)
(0.874876 0.508326 -0.105579)
(0.910218 0.440236 -0.106581)
(0.942879 0.369163 -0.104882)
(1.00337 0.301066 -0.101155)
(1.10713 0.195069 -0.102563)
(1.37628 0.116536 -0.100913)
(1.59254 0.0492191 -0.106089)
(1.55241 -0.00162791 -0.100549)
(1.56142 -0.0363836 -0.0942464)
(1.50419 -0.0310117 -0.0838573)
(1.48251 -0.0277464 -0.073031)
(1.3871 0.045763 -0.0559073)
(1.20149 0.0487625 -0.0571031)
(0.917304 0.100021 -0.0566749)
(0.896739 0.0529588 -0.0523331)
(0.754812 0.0683841 -0.0412596)
(0.791829 -0.00770463 -0.0276074)
(0.604918 -0.016062 -0.00662878)
(0.644396 -0.165512 0.0133369)
(0.412312 -0.212621 0.045049)
(0.461833 -0.551886 0.0772129)
(0.168689 -0.977348 0.110774)
(0.225413 -2.37384 0.119839)
(-0.415827 -4.56838 0.105314)
(-0.239456 -6.80826 0.0580626)
(0.049475 0.297921 0.0429622)
(-0.00162601 0.49542 0.10206)
(-0.098797 0.782505 0.133912)
(-0.04234 0.991235 0.149244)
(-0.00606198 1.20265 0.159179)
(0.20176 1.18325 0.150572)
(0.352081 1.20279 0.150185)
(0.403516 1.1245 0.1449)
(0.512164 1.04877 0.1222)
(0.601991 0.955064 0.0985262)
(0.69645 0.860485 0.0693684)
(0.771902 0.763387 0.039457)
(0.837326 0.677147 0.0139463)
(0.888542 0.596599 -0.00702663)
(0.93515 0.525413 -0.0232968)
(0.976929 0.453801 -0.0382383)
(1.01955 0.391592 -0.0460174)
(1.05742 0.327866 -0.0525593)
(1.11608 0.271003 -0.0565147)
(1.23072 0.170371 -0.0622031)
(1.52132 0.114641 -0.0619403)
(1.75469 0.0561422 -0.0677545)
(1.72631 0.0108851 -0.0644346)
(1.75322 -0.0232465 -0.0602614)
(1.70547 -0.00348324 -0.0529275)
(1.72962 -0.0115521 -0.0442266)
(1.63596 0.0770232 -0.0355842)
(1.47036 0.0744471 -0.0407807)
(1.16861 0.143488 -0.0419119)
(1.17556 0.113146 -0.0403859)
(1.01888 0.153418 -0.0296573)
(1.09367 0.0605756 -0.0192446)
(0.908577 0.0601797 -0.00193059)
(1.00621 -0.0574048 0.0142975)
(0.748759 -0.131089 0.0381505)
(0.856149 -0.414499 0.0638448)
(0.496532 -0.805396 0.0930993)
(0.597841 -2.00911 0.108068)
(-0.156237 -4.35357 0.095291)
(0.0673494 -7.32711 0.0558215)
(-0.223025 0.073613 0.053208)
(-0.296702 0.702173 0.127079)
(-0.285658 0.880163 0.15237)
(-0.243006 1.02847 0.163367)
(-0.116444 1.05509 0.176047)
(0.0728573 1.0666 0.166049)
(0.267754 1.00391 0.171767)
(0.357686 0.942848 0.172518)
(0.497955 0.870768 0.161624)
(0.608842 0.801735 0.149785)
(0.727935 0.731187 0.131123)
(0.826464 0.660247 0.111313)
(0.915985 0.596046 0.0924652)
(0.988559 0.535555 0.0741321)
(1.05086 0.480897 0.0591009)
(1.10743 0.423079 0.0450382)
(1.16565 0.362011 0.0354766)
(1.22704 0.302037 0.0257928)
(1.30018 0.262278 0.0179778)
(1.45914 0.175003 0.00957984)
(1.8039 0.142668 0.00865125)
(2.0979 0.0872611 0.00237437)
(2.10674 0.0502312 0.00250642)
(2.20082 0.0196398 0.00318794)
(2.17271 0.0257533 0.00581762)
(2.23801 0.00589932 0.0096764)
(2.13869 0.0983666 0.0137102)
(2.01186 0.0782222 0.00591374)
(1.68659 0.165498 0.00292988)
(1.76133 0.145189 0.00192665)
(1.59904 0.204485 0.00587662)
(1.75033 0.125982 0.0111315)
(1.54389 0.128517 0.0194197)
(1.715 0.00529668 0.0302359)
(1.38009 -0.0563713 0.0443995)
(1.56277 -0.278139 0.0601161)
(1.10343 -0.52811 0.0798931)
(1.28371 -1.45051 0.09635)
(0.432866 -3.84224 0.0927894)
(0.517137 -7.19526 0.0522562)
(-0.733163 0.791711 0.127707)
(-0.604645 0.395397 0.188847)
(-0.745748 0.57791 0.183939)
(-0.454552 0.608889 0.184942)
(-0.306494 0.621673 0.189459)
(0.0104591 0.676462 0.186733)
(0.244578 0.641062 0.188686)
(0.448879 0.617217 0.198998)
(0.658073 0.577082 0.197137)
(0.853181 0.537828 0.195438)
(1.04719 0.493123 0.185415)
(1.22557 0.450009 0.173603)
(1.3866 0.411955 0.160099)
(1.52953 0.380625 0.146092)
(1.64891 0.358247 0.134538)
(1.7625 0.326808 0.123721)
(1.87681 0.280133 0.115352)
(2.03321 0.243634 0.107509)
(2.21197 0.216381 0.103397)
(2.50639 0.123957 0.0917064)
(2.92648 0.0933131 0.0896949)
(3.33877 0.0408129 0.0827132)
(3.39983 0.000557781 0.0785047)
(3.53528 -0.0394027 0.0719111)
(3.47313 -0.0212096 0.0683103)
(3.60205 -0.0251342 0.0662787)
(3.4532 0.0596178 0.0661593)
(3.4143 0.0585002 0.0551095)
(3.03492 0.139264 0.0489827)
(3.21767 0.149326 0.0469094)
(3.01498 0.19696 0.0482537)
(3.33596 0.136004 0.0499625)
(3.05117 0.098808 0.0532761)
(3.38399 0.0137454 0.05723)
(2.90239 -0.0549564 0.0616504)
(3.24372 -0.231182 0.0669127)
(2.56928 -0.517512 0.0738669)
(2.91997 -1.12818 0.0811164)
(1.92203 -3.13442 0.0797264)
(1.35202 -6.07492 0.0489993)
(1.15936 1.47811 0.054017)
(1.72304 0.725911 0.0784835)
(2.46116 0.566804 0.083711)
(2.87749 0.350542 0.0843691)
(3.15786 0.280025 0.0857403)
(3.40319 0.229416 0.0864239)
(3.63236 0.214954 0.0926786)
(3.83315 0.194717 0.110256)
(4.04107 0.1833 0.121958)
(4.26098 0.169483 0.129002)
(4.47698 0.15599 0.128308)
(4.69133 0.142177 0.124097)
(4.87292 0.130267 0.118739)
(5.04065 0.119777 0.111194)
(5.16392 0.114088 0.105772)
(5.29568 0.108716 0.100628)
(5.43108 0.0849425 0.0966566)
(5.64673 0.0639139 0.091249)
(5.91421 0.0779449 0.0954931)
(6.37694 0.0530463 0.0909168)
(6.79349 0.0297137 0.0919142)
(7.25229 0.00912877 0.092534)
(7.26072 -0.0100569 0.0870046)
(7.32307 -0.0557778 0.0799197)
(7.14299 -0.0399292 0.0746864)
(7.1604 -0.055437 0.0663047)
(6.81899 -0.0304911 0.0662607)
(6.80742 -0.0147782 0.0534396)
(6.33802 0.020186 0.0460294)
(6.59484 0.0396702 0.0448386)
(6.3545 0.0702833 0.0470755)
(6.80277 0.0688451 0.0481422)
(6.49641 0.0444486 0.0497354)
(6.888 0.0126097 0.0518745)
(6.33939 -0.0148465 0.055427)
(6.56201 -0.106112 0.0548711)
(5.68031 -0.257505 0.057836)
(5.70751 -0.579962 0.0561737)
(4.2854 -1.13507 0.0587556)
(2.79169 -2.52147 0.0472376)
(0.00158845 -0.000142856 0.00107154)
(0.0219548 -0.00296829 0.00392463)
(0.0501976 -0.00253764 0.00629438)
(0.0668496 0.000185959 0.00838004)
(0.0750755 0.00188941 0.00810501)
(0.0662265 -0.000400624 0.00890511)
(0.05046 0.00623804 0.0165051)
(0.0304948 0.00558473 0.0215694)
(0.0134259 0.0178687 0.0266295)
(-0.0160065 0.0205456 0.0306251)
(-0.0632256 0.0129664 0.0280791)
(-0.118206 0.00632798 0.0285657)
(-0.182236 0.00105373 0.027528)
(-0.262484 0.00272244 0.0248566)
(-0.33977 0.0122055 0.0227025)
(-0.43579 0.0185698 0.0153115)
(-0.523262 0.0105893 0.0100438)
(-0.651334 -0.00102598 -0.0146793)
(-0.730631 -0.00887659 -0.0439226)
(-0.896815 -0.00730536 -0.0670996)
(-0.849658 0.0276238 -0.0801659)
(-0.661268 0.0298701 -0.0896838)
(-0.652414 0.0342057 -0.0903386)
(-0.63504 0.0274694 -0.0944098)
(-0.614357 0.0186453 -0.100767)
(-0.558156 -0.00110012 -0.11243)
(-0.492757 -0.0145591 -0.125493)
(-0.380678 -0.0243175 -0.139653)
(-0.249695 -0.033741 -0.146813)
(-0.0978304 -0.045177 -0.15314)
(0.0505691 -0.018305 -0.126321)
(0.264738 0.00326099 -0.110257)
(0.441125 0.00235668 -0.0809891)
(0.478715 0.0265386 -0.0399819)
(0.44284 0.052928 0.000920912)
(0.34622 0.0495044 0.0232776)
(0.227035 0.0358163 0.0370409)
(0.112767 0.0194625 0.0406951)
(0.0313933 0.00378742 0.031461)
(-0.00334984 -0.00802492 0.0155227)
(0.00774123 -0.0132266 0.00240606)
(0.0431323 -0.027155 0.00986784)
(0.0851677 -0.0239556 0.0167212)
(0.107867 -0.0107822 0.0221809)
(0.109985 -0.00276627 0.0249016)
(0.0943291 0.00957499 0.0320579)
(0.0577402 0.0158501 0.0460443)
(0.0075507 0.0389956 0.0598605)
(-0.0566849 0.0588841 0.0665068)
(-0.178121 0.0670955 0.064663)
(-0.327051 0.0890171 0.0517047)
(-0.490779 0.1131 0.0475959)
(-0.672175 0.142035 0.0411397)
(-0.872129 0.170649 0.0386592)
(-1.07856 0.192835 0.033247)
(-1.30779 0.178015 0.015501)
(-1.50338 0.147583 0.00253008)
(-1.69744 0.106479 -0.0138993)
(-1.8279 0.0795701 -0.0283241)
(-1.97009 0.0619706 -0.0411913)
(-1.82073 0.0830928 -0.0433629)
(-1.55919 0.0482432 -0.0389964)
(-1.44469 0.0296913 -0.0220282)
(-1.33389 -0.0175428 -0.00623272)
(-1.25696 -0.0859207 -0.00658792)
(-1.12803 -0.154235 -0.0143428)
(-0.991486 -0.20575 -0.0141085)
(-0.817203 -0.238309 -0.0122938)
(-0.632221 -0.250615 -0.00885722)
(-0.402185 -0.256307 -9.66027e-05)
(-0.189461 -0.224793 0.00498028)
(0.0783197 -0.147429 0.0499093)
(0.354151 -0.0966435 0.0508708)
(0.535871 -0.016252 0.071207)
(0.601023 0.0793956 0.0930745)
(0.540359 0.13771 0.100459)
(0.41855 0.150254 0.106367)
(0.25317 0.123485 0.105363)
(0.102229 0.0822814 0.0894965)
(0.0138629 0.0283031 0.041235)
(0.0108233 -0.0306622 0.00197214)
(0.0486498 -0.0556792 0.0125654)
(0.0861806 -0.0460725 0.0238013)
(0.0930858 -0.0110029 0.0348682)
(0.0826485 0.0120118 0.0422184)
(0.0371493 0.0499584 0.0460739)
(-0.027568 0.0909488 0.0601964)
(-0.127076 0.145282 0.074389)
(-0.285898 0.20198 0.0791642)
(-0.476339 0.24881 0.0804466)
(-0.703943 0.314346 0.0777015)
(-0.961118 0.369674 0.0756448)
(-1.22317 0.415321 0.072907)
(-1.48762 0.421825 0.0712066)
(-1.74505 0.386218 0.0627572)
(-1.97993 0.327644 0.0566611)
(-2.15618 0.276186 0.0577269)
(-2.3217 0.21544 0.0558724)
(-2.42446 0.169452 0.0541702)
(-2.50154 0.113706 0.0562997)
(-2.27872 0.087513 0.0593641)
(-1.9664 0.028044 0.0884956)
(-1.81221 -0.0467164 0.114996)
(-1.70086 -0.161682 0.105696)
(-1.61467 -0.283255 0.0950358)
(-1.47946 -0.398314 0.100885)
(-1.33601 -0.493977 0.107214)
(-1.15718 -0.561304 0.112509)
(-0.989874 -0.58807 0.123499)
(-0.790669 -0.565415 0.138365)
(-0.581206 -0.519617 0.151436)
(-0.325245 -0.417097 0.166082)
(-0.0623561 -0.308982 0.173794)
(0.190262 -0.157684 0.18336)
(0.380248 0.000375931 0.166896)
(0.434405 0.147657 0.170814)
(0.37688 0.212262 0.161653)
(0.246483 0.221965 0.15343)
(0.106318 0.176032 0.126998)
(0.014155 0.0846305 0.057491)
(0.0125806 -0.0488307 -0.000621285)
(0.0420414 -0.0787749 0.0121586)
(0.0636657 -0.0547745 0.0289052)
(0.0402363 -0.00458341 0.039771)
(-0.00493036 0.0677611 0.0511191)
(-0.0654169 0.143839 0.0744715)
(-0.180903 0.238659 0.0865891)
(-0.348671 0.3394 0.100709)
(-0.584785 0.45085 0.107734)
(-0.86767 0.53918 0.109984)
(-1.15549 0.603084 0.108495)
(-1.44005 0.635698 0.109159)
(-1.71654 0.614919 0.107634)
(-1.98212 0.550193 0.0999748)
(-2.19503 0.47428 0.100326)
(-2.36475 0.404651 0.106321)
(-2.48736 0.338598 0.114357)
(-2.60066 0.263324 0.120616)
(-2.65771 0.200866 0.125342)
(-2.6664 0.115498 0.128717)
(-2.40198 0.0616632 0.132006)
(-2.10467 -0.0354103 0.137425)
(-1.96997 -0.160979 0.128347)
(-1.87769 -0.316619 0.106634)
(-1.81727 -0.459287 0.110842)
(-1.71267 -0.611255 0.115244)
(-1.59657 -0.750031 0.121289)
(-1.44064 -0.865674 0.126884)
(-1.27858 -0.938347 0.135415)
(-1.10863 -0.938506 0.149333)
(-0.952235 -0.865251 0.16894)
(-0.761399 -0.723404 0.193048)
(-0.540689 -0.571509 0.194127)
(-0.263725 -0.373032 0.205076)
(0.0141458 -0.151816 0.214777)
(0.169821 0.0635193 0.215242)
(0.207404 0.210486 0.20333)
(0.155856 0.262952 0.187147)
(0.065581 0.237551 0.152663)
(0.00797585 0.122868 0.0675586)
(0.0105877 -0.0640202 -0.00466512)
(0.0231194 -0.0886408 0.00970574)
(0.00506321 -0.0382518 0.0345105)
(-0.037337 0.0524009 0.0582962)
(-0.10453 0.179356 0.0792137)
(-0.222899 0.308469 0.0978887)
(-0.386097 0.452411 0.115028)
(-0.607668 0.595726 0.129989)
(-0.900805 0.725794 0.136767)
(-1.21474 0.806256 0.142779)
(-1.51765 0.82047 0.143501)
(-1.81018 0.770567 0.132471)
(-2.06041 0.688147 0.118489)
(-2.24749 0.600451 0.11568)
(-2.37889 0.527947 0.115315)
(-2.47832 0.449322 0.11768)
(-2.53875 0.37705 0.118096)
(-2.59596 0.299181 0.116836)
(-2.60404 0.229817 0.112131)
(-2.5632 0.122836 0.105759)
(-2.29161 0.0500294 0.0863566)
(-2.01922 -0.083764 0.0737052)
(-1.9215 -0.245161 0.0501296)
(-1.8675 -0.409443 0.0423343)
(-1.83878 -0.574089 0.0480018)
(-1.77787 -0.758641 0.0542482)
(-1.71058 -0.940317 0.0638749)
(-1.60275 -1.11092 0.0715044)
(-1.47629 -1.24458 0.0793954)
(-1.31545 -1.31493 0.089797)
(-1.16622 -1.29043 0.103411)
(-1.04312 -1.15742 0.137698)
(-0.928774 -0.91757 0.169826)
(-0.68459 -0.644887 0.174109)
(-0.351724 -0.371117 0.185799)
(-0.0859861 -0.077928 0.195606)
(0.0352877 0.130951 0.206481)
(0.0425593 0.259266 0.196179)
(0.0212836 0.255239 0.154197)
(-0.00224512 0.131494 0.065055)
(0.00494797 -0.0723356 -0.0119757)
(-0.00664732 -0.0676999 0.0122179)
(-0.0509907 0.0200835 0.038529)
(-0.125787 0.178843 0.0806317)
(-0.237219 0.34533 0.105679)
(-0.387641 0.532314 0.131569)
(-0.589305 0.707058 0.149012)
(-0.841087 0.871531 0.162263)
(-1.16689 0.952332 0.170124)
(-1.52269 0.934769 0.156515)
(-1.82617 0.869276 0.131615)
(-2.04475 0.780871 0.115765)
(-2.18858 0.700017 0.104336)
(-2.28642 0.621133 0.0926439)
(-2.33991 0.541346 0.0820703)
(-2.36865 0.457922 0.0772155)
(-2.37247 0.383714 0.0649441)
(-2.38007 0.302745 0.0543789)
(-2.35326 0.230483 0.0381845)
(-2.27716 0.11603 0.0260506)
(-2.01508 0.0353013 -0.000989967)
(-1.78755 -0.101557 -0.031313)
(-1.7194 -0.273992 -0.0425471)
(-1.69205 -0.439185 -0.0311599)
(-1.69033 -0.612931 -0.0217094)
(-1.67736 -0.812411 -0.0116413)
(-1.66138 -1.02262 0.00072078)
(-1.61883 -1.23781 0.0105076)
(-1.55646 -1.43527 0.0220057)
(-1.45175 -1.58071 0.0337401)
(-1.32525 -1.64554 0.0454133)
(-1.1744 -1.58548 0.0633465)
(-1.11729 -1.40301 0.0882943)
(-1.01223 -1.01316 0.134903)
(-0.683758 -0.653895 0.15156)
(-0.341415 -0.27558 0.178655)
(-0.105286 0.0297622 0.210112)
(-0.0121399 0.212959 0.196499)
(-0.0102558 0.235632 0.157317)
(-0.00305201 0.116378 0.0646449)
(0.00395496 -0.0600528 -0.0140999)
(-0.0345454 -0.0037863 0.0172214)
(-0.106345 0.138555 0.066632)
(-0.210063 0.339221 0.108009)
(-0.351532 0.555998 0.139854)
(-0.532174 0.767042 0.163175)
(-0.748723 0.954246 0.178951)
(-1.06661 1.03517 0.190215)
(-1.45329 0.98118 0.145117)
(-1.74845 0.9122 0.122274)
(-1.9366 0.852023 0.104933)
(-2.05691 0.788669 0.0826997)
(-2.12361 0.709306 0.0575067)
(-2.14669 0.620386 0.0343878)
(-2.14106 0.532466 0.0157764)
(-2.12659 0.444838 0.0004425)
(-2.09826 0.369568 -0.0117246)
(-2.07259 0.289196 -0.0226212)
(-2.02136 0.22119 -0.0410592)
(-1.93245 0.114259 -0.0520538)
(-1.68619 0.0350891 -0.0821121)
(-1.49582 -0.107566 -0.121043)
(-1.45296 -0.263088 -0.120532)
(-1.44242 -0.425468 -0.109364)
(-1.46173 -0.599053 -0.0936143)
(-1.47731 -0.79792 -0.0770859)
(-1.50169 -1.01796 -0.0574658)
(-1.51246 -1.25719 -0.0375854)
(-1.51391 -1.49989 -0.0213859)
(-1.4835 -1.71654 -0.00495106)
(-1.41703 -1.87366 0.00752377)
(-1.30698 -1.90795 0.02371)
(-1.18442 -1.82859 0.0427545)
(-1.14379 -1.52037 0.0674067)
(-0.950146 -1.04596 0.101095)
(-0.538615 -0.575371 0.129361)
(-0.212885 -0.149031 0.158467)
(-0.0702189 0.112066 0.16902)
(-0.0184899 0.186431 0.137536)
(-0.00353256 0.0907393 0.0538879)
(0.00491425 -0.0122337 -0.00665675)
(-0.0481146 0.0939784 0.0380466)
(-0.154451 0.289116 0.0940969)
(-0.280697 0.526047 0.143706)
(-0.445844 0.76178 0.173634)
(-0.637958 0.968671 0.194584)
(-0.955672 1.06544 0.197029)
(-1.33047 1.00957 0.140651)
(-1.60733 0.950961 0.122451)
(-1.78523 0.924751 0.0950866)
(-1.89273 0.868927 0.0611909)
(-1.93771 0.785962 0.0209563)
(-1.93851 0.692094 -0.0132167)
(-1.91653 0.59507 -0.0413824)
(-1.88043 0.502361 -0.0621124)
(-1.84121 0.411862 -0.071332)
(-1.79413 0.340241 -0.0799913)
(-1.75105 0.268833 -0.0847325)
(-1.69311 0.210291 -0.100512)
(-1.60169 0.117468 -0.10702)
(-1.38153 0.0462007 -0.140031)
(-1.21646 -0.0953899 -0.183605)
(-1.18938 -0.23499 -0.171281)
(-1.18725 -0.390291 -0.155622)
(-1.21513 -0.553797 -0.135914)
(-1.24493 -0.744221 -0.117378)
(-1.28769 -0.957967 -0.0962831)
(-1.33001 -1.20085 -0.0765991)
(-1.37433 -1.4628 -0.0541876)
(-1.40382 -1.72596 -0.035121)
(-1.40959 -1.95899 -0.0154244)
(-1.36746 -2.1087 0.00323521)
(-1.27258 -2.11949 0.0201276)
(-1.19585 -1.96689 0.0416481)
(-1.09663 -1.52721 0.0690026)
(-0.773059 -0.955982 0.101045)
(-0.328396 -0.414955 0.138535)
(-0.0802255 0.0106061 0.167174)
(-0.00882738 0.128906 0.138227)
(0.00473346 0.0773292 0.0592113)
(-0.00245711 0.031142 -0.00711991)
(-0.0666116 0.184589 0.0513905)
(-0.180893 0.402451 0.120393)
(-0.332332 0.650314 0.170566)
(-0.518453 0.876459 0.197142)
(-0.809588 1.03285 0.199375)
(-1.16284 1.02067 0.151552)
(-1.42954 1.00318 0.129547)
(-1.61439 0.9977 0.0924384)
(-1.71244 0.945989 0.0479678)
(-1.74106 0.860992 -0.000784422)
(-1.72804 0.762436 -0.0541125)
(-1.69582 0.662857 -0.0947319)
(-1.65575 0.564626 -0.120461)
(-1.61472 0.473619 -0.133703)
(-1.57145 0.387801 -0.132781)
(-1.52054 0.317117 -0.130041)
(-1.46939 0.252518 -0.125875)
(-1.40884 0.201274 -0.137534)
(-1.32364 0.126887 -0.14176)
(-1.13036 0.0633902 -0.18177)
(-0.988782 -0.0777629 -0.217152)
(-0.968099 -0.204296 -0.201758)
(-0.968406 -0.350456 -0.183883)
(-0.994039 -0.501901 -0.161594)
(-1.02589 -0.678185 -0.141889)
(-1.07181 -0.878209 -0.120158)
(-1.1247 -1.11055 -0.100294)
(-1.18797 -1.37397 -0.0788711)
(-1.25067 -1.65774 -0.0581834)
(-1.3039 -1.94055 -0.0350982)
(-1.32629 -2.17713 -0.0153131)
(-1.29607 -2.31099 0.00417246)
(-1.21211 -2.27524 0.0217037)
(-1.13749 -1.99597 0.0420002)
(-0.926067 -1.41293 0.0658852)
(-0.459687 -0.731821 0.0969206)
(-0.129028 -0.18118 0.131256)
(-0.0318273 0.0726998 0.112867)
(0.0118236 0.0651662 0.0490654)
(-0.00601815 0.0823007 0.00531645)
(-0.0853583 0.288562 0.072101)
(-0.217737 0.515139 0.143721)
(-0.374096 0.744981 0.190533)
(-0.601025 0.947185 0.208385)
(-0.926116 1.02994 0.181764)
(-1.22558 1.05417 0.147497)
(-1.42237 1.06915 0.104556)
(-1.52803 1.026 0.051871)
(-1.54708 0.941029 -0.00938505)
(-1.5286 0.836529 -0.0780634)
(-1.49014 0.730743 -0.132367)
(-1.4506 0.631256 -0.172004)
(-1.41515 0.534566 -0.189628)
(-1.3814 0.447641 -0.192872)
(-1.34262 0.360924 -0.176099)
(-1.28913 0.294296 -0.161266)
(-1.22831 0.234624 -0.147511)
(-1.16498 0.193264 -0.154885)
(-1.08494 0.142085 -0.163472)
(-0.93289 0.0842689 -0.201379)
(-0.817501 -0.0576831 -0.23198)
(-0.792761 -0.175264 -0.214504)
(-0.793949 -0.312711 -0.194306)
(-0.811431 -0.451901 -0.170103)
(-0.839468 -0.611756 -0.149537)
(-0.880067 -0.793858 -0.127784)
(-0.931864 -1.00718 -0.10918)
(-0.998501 -1.2575 -0.089191)
(-1.07375 -1.54233 -0.0698398)
(-1.15354 -1.85046 -0.0484123)
(-1.21783 -2.14895 -0.0252149)
(-1.2456 -2.38574 -0.00382095)
(-1.21202 -2.48199 0.0144224)
(-1.1247 -2.35791 0.0328497)
(-0.994199 -1.90384 0.0476542)
(-0.652179 -1.15375 0.074345)
(-0.203796 -0.458664 0.0939549)
(-0.0288253 -0.00307771 0.121291)
(0.00378708 0.0484573 0.0537892)
(-0.00981433 0.147157 0.0149664)
(-0.0994977 0.406176 0.0890219)
(-0.240947 0.644564 0.160506)
(-0.409098 0.869406 0.203123)
(-0.677176 1.03681 0.208355)
(-0.98475 1.09551 0.17497)
(-1.21514 1.13128 0.130312)
(-1.33563 1.1085 0.0724938)
(-1.36494 1.02909 0.000737623)
(-1.34154 0.918238 -0.0798243)
(-1.3015 0.803874 -0.150389)
(-1.25795 0.698567 -0.205344)
(-1.22871 0.602971 -0.240048)
(-1.20542 0.512432 -0.249933)
(-1.18773 0.42591 -0.239651)
(-1.15478 0.341806 -0.208439)
(-1.0973 0.267585 -0.178046)
(-1.02835 0.216906 -0.157393)
(-0.952606 0.181652 -0.167004)
(-0.886438 0.15672 -0.184071)
(-0.784939 0.0979671 -0.223298)
(-0.696184 -0.0397964 -0.235813)
(-0.664459 -0.157202 -0.220384)
(-0.663747 -0.285066 -0.196784)
(-0.670997 -0.4152 -0.171248)
(-0.691248 -0.558245 -0.149825)
(-0.72197 -0.721997 -0.127537)
(-0.764935 -0.912117 -0.109756)
(-0.824321 -1.14123 -0.0911511)
(-0.897505 -1.41115 -0.0745771)
(-0.983564 -1.72308 -0.0551212)
(-1.06929 -2.05502 -0.034962)
(-1.13614 -2.367 -0.0117108)
(-1.15109 -2.58517 0.00748952)
(-1.09661 -2.60789 0.0246248)
(-0.976555 -2.32738 0.0377181)
(-0.75117 -1.63506 0.0467788)
(-0.31059 -0.744847 0.071469)
(-0.0413002 -0.116654 0.078419)
(-0.0110693 0.0336241 0.0411726)
(-0.0106253 0.214507 0.030889)
(-0.105592 0.528921 0.110704)
(-0.25115 0.778113 0.179307)
(-0.441842 0.996765 0.216049)
(-0.72066 1.12226 0.210428)
(-0.975125 1.18019 0.173801)
(-1.13274 1.18669 0.115729)
(-1.1866 1.12101 0.0368769)
(-1.17357 1.00897 -0.0539356)
(-1.12939 0.88218 -0.140595)
(-1.08369 0.767537 -0.214959)
(-1.05038 0.665963 -0.267066)
(-1.03616 0.577962 -0.300378)
(-1.03378 0.488048 -0.301035)
(-1.03146 0.405248 -0.284706)
(-1.01036 0.306795 -0.232209)
(-0.944221 0.237238 -0.192865)
(-0.853065 0.185404 -0.160126)
(-0.762556 0.163297 -0.170133)
(-0.707903 0.165526 -0.20679)
(-0.671107 0.118523 -0.24544)
(-0.614868 -0.0291977 -0.231888)
(-0.574509 -0.14861 -0.215932)
(-0.569055 -0.268953 -0.19191)
(-0.566437 -0.391032 -0.164232)
(-0.578128 -0.518578 -0.143337)
(-0.598756 -0.665209 -0.119813)
(-0.630415 -0.831799 -0.102558)
(-0.678303 -1.03564 -0.084435)
(-0.740981 -1.28191 -0.0695702)
(-0.822416 -1.58073 -0.0527316)
(-0.911855 -1.92327 -0.0346275)
(-1.00066 -2.28381 -0.011991)
(-1.05487 -2.59671 0.00826074)
(-1.046 -2.76739 0.027591)
(-0.946498 -2.65222 0.0391441)
(-0.763142 -2.1208 0.0450938)
(-0.405535 -1.14175 0.0523744)
(-0.0767556 -0.296225 0.0800976)
(-0.0224793 0.00631187 0.0473405)
(-0.00864597 0.277673 0.0437774)
(-0.101679 0.645278 0.127919)
(-0.24868 0.907831 0.193754)
(-0.464057 1.10542 0.224327)
(-0.720861 1.2093 0.213461)
(-0.911586 1.25552 0.168255)
(-1.01299 1.21624 0.0946738)
(-1.01698 1.11211 -0.00393229)
(-0.979259 0.975289 -0.103851)
(-0.927782 0.843969 -0.193554)
(-0.890045 0.730882 -0.266908)
(-0.868199 0.636073 -0.319284)
(-0.876062 0.551068 -0.350331)
(-0.890613 0.463833 -0.349269)
(-0.915173 0.369925 -0.316859)
(-0.896405 0.270002 -0.248695)
(-0.809605 0.175084 -0.171085)
(-0.701506 0.155705 -0.140084)
(-0.578047 0.149514 -0.15803)
(-0.540415 0.189869 -0.239924)
(-0.58882 0.148978 -0.289379)
(-0.576609 -0.0239402 -0.229005)
(-0.513882 -0.15015 -0.204542)
(-0.502492 -0.264446 -0.183686)
(-0.489602 -0.381957 -0.154154)
(-0.493059 -0.495192 -0.134702)
(-0.504796 -0.627363 -0.109982)
(-0.524721 -0.772307 -0.0931927)
(-0.559971 -0.951301 -0.0749991)
(-0.608069 -1.16912 -0.0618247)
(-0.676637 -1.44441 -0.0474978)
(-0.759291 -1.77685 -0.0328803)
(-0.85105 -2.15802 -0.0141585)
(-0.92881 -2.53622 0.00827232)
(-0.959845 -2.83005 0.0269577)
(-0.906449 -2.8829 0.0409984)
(-0.742982 -2.52928 0.0402156)
(-0.461886 -1.61161 0.0373123)
(-0.104824 -0.536217 0.0355008)
(-0.00873937 -0.0465396 0.0291834)
(-0.00506184 0.336702 0.0596158)
(-0.0877146 0.757809 0.148614)
(-0.244178 1.03023 0.211261)
(-0.460773 1.20065 0.239554)
(-0.676411 1.30259 0.218478)
(-0.818651 1.31795 0.162417)
(-0.868977 1.2357 0.0735541)
(-0.843054 1.09777 -0.0385682)
(-0.799037 0.942348 -0.142712)
(-0.749182 0.806098 -0.231072)
(-0.7204 0.695787 -0.304084)
(-0.713999 0.603119 -0.354974)
(-0.739732 0.520168 -0.391221)
(-0.783085 0.42412 -0.379274)
(-0.823218 0.332295 -0.347452)
(-0.82476 0.21466 -0.222353)
(-0.679895 0.19231 -0.140296)
(-0.506791 0.225604 -0.0218698)
(-0.391903 0.232689 -0.0512954)
(-0.402762 0.24393 -0.235809)
(-0.560584 0.202896 -0.350531)
(-0.574915 -0.024099 -0.219879)
(-0.475451 -0.155851 -0.171252)
(-0.453733 -0.266488 -0.167445)
(-0.432116 -0.3827 -0.136565)
(-0.427209 -0.484133 -0.122851)
(-0.433735 -0.604593 -0.0964877)
(-0.444245 -0.730699 -0.0803865)
(-0.468979 -0.886813 -0.0615576)
(-0.502817 -1.07766 -0.0493682)
(-0.55685 -1.32489 -0.0366648)
(-0.626833 -1.63778 -0.0246342)
(-0.711168 -2.01829 -0.00605296)
(-0.799652 -2.43788 0.014126)
(-0.860947 -2.82463 0.0381291)
(-0.850859 -3.0315 0.0507345)
(-0.724157 -2.85774 0.0522442)
(-0.484751 -2.07215 0.0414959)
(-0.12964 -0.83878 0.0317817)
(0.000357285 -0.116157 0.0290588)
(0.000774892 0.374397 0.0705118)
(-0.0726697 0.850296 0.162567)
(-0.234798 1.12521 0.226013)
(-0.433951 1.28773 0.24672)
(-0.605436 1.38005 0.215435)
(-0.709369 1.35915 0.148514)
(-0.728501 1.24112 0.0409953)
(-0.690496 1.07324 -0.0692)
(-0.64406 0.907072 -0.171886)
(-0.597452 0.768531 -0.255919)
(-0.578235 0.659457 -0.325539)
(-0.582356 0.567984 -0.379095)
(-0.63409 0.483177 -0.415124)
(-0.689637 0.380378 -0.405238)
(-0.761164 0.302685 -0.349544)
(-0.673091 0.267187 -0.186181)
(-0.408043 0.342921 0.0916207)
(-0.246458 0.402854 0.216902)
(-0.302653 0.367127 0.168213)
(-0.47556 0.346326 -0.227418)
(-0.634404 0.300394 -0.443986)
(-0.593509 -0.0228139 -0.186864)
(-0.447814 -0.165888 -0.111669)
(-0.416934 -0.252205 -0.132094)
(-0.3851 -0.380235 -0.112064)
(-0.372679 -0.478665 -0.107065)
(-0.37638 -0.591821 -0.0827138)
(-0.37902 -0.704211 -0.0677793)
(-0.397487 -0.841162 -0.0481028)
(-0.420187 -1.00631 -0.0367198)
(-0.461153 -1.2241 -0.0255526)
(-0.515512 -1.51004 -0.014961)
(-0.588502 -1.87535 -0.00061062)
(-0.673607 -2.31572 0.0185515)
(-0.751549 -2.76847 0.0429931)
(-0.780613 -3.10849 0.0597316)
(-0.691121 -3.10673 0.060604)
(-0.487108 -2.48035 0.0486215)
(-0.144825 -1.184 0.0266315)
(0.0238469 -0.159067 0.0220074)
(0.00877745 0.411054 0.082788)
(-0.0586518 0.938388 0.180515)
(-0.211209 1.22255 0.244766)
(-0.380351 1.38904 0.255118)
(-0.519434 1.45706 0.215512)
(-0.594645 1.40065 0.137197)
(-0.596985 1.2464 0.0232209)
(-0.556975 1.05989 -0.0878217)
(-0.511377 0.88203 -0.185874)
(-0.469211 0.739031 -0.262044)
(-0.455398 0.62657 -0.326336)
(-0.470865 0.534707 -0.37744)
(-0.541882 0.440908 -0.415519)
(-0.610208 0.343393 -0.393388)
(-0.615324 0.301972 -0.320335)
(-0.468795 0.448426 0.0835013)
(-0.145133 0.554259 0.462488)
(-0.0236553 0.589283 0.529274)
(-0.412151 0.520121 0.26568)
(-0.780567 0.461754 -0.409036)
(-0.782998 0.344272 -0.571266)
(-0.585817 -0.0557172 -0.121806)
(-0.411058 -0.200178 -0.0311129)
(-0.375515 -0.237986 -0.0849157)
(-0.358746 -0.351629 -0.0666281)
(-0.327883 -0.457134 -0.087251)
(-0.329383 -0.579583 -0.0644405)
(-0.326754 -0.683556 -0.0521365)
(-0.339572 -0.805603 -0.0322055)
(-0.3532 -0.952715 -0.0216216)
(-0.384826 -1.1453 -0.0115023)
(-0.426185 -1.40284 -0.00400898)
(-0.488939 -1.74686 0.00682724)
(-0.568343 -2.19178 0.0258334)
(-0.650085 -2.6926 0.0499381)
(-0.703437 -3.14617 0.0723061)
(-0.648104 -3.30564 0.0764033)
(-0.475638 -2.85222 0.0623867)
(-0.155041 -1.55977 0.0331131)
(0.0523327 -0.233877 0.0210597)
(0.010141 0.416052 0.0899912)
(-0.0441967 0.989085 0.193065)
(-0.175536 1.30597 0.250649)
(-0.320667 1.46663 0.256243)
(-0.434849 1.51059 0.208248)
(-0.493346 1.42098 0.121935)
(-0.488825 1.2418 0.00385845)
(-0.450804 1.04309 -0.102267)
(-0.410864 0.858668 -0.190881)
(-0.368233 0.712127 -0.256445)
(-0.35396 0.592992 -0.309579)
(-0.377235 0.494017 -0.357459)
(-0.468057 0.398458 -0.388058)
(-0.528105 0.301273 -0.329933)
(-0.433935 0.412823 -0.185805)
(-0.196005 0.720927 0.355073)
(0.121941 0.835212 0.802343)
(0.157363 0.854752 0.700707)
(-0.498918 0.700847 0.0774255)
(-1.00331 0.444888 -0.653846)
(-0.781649 0.22048 -0.62026)
(-0.482183 -0.143354 -0.0190394)
(-0.33894 -0.269971 0.0592597)
(-0.284909 -0.252847 -0.0420879)
(-0.316113 -0.328706 -0.0259459)
(-0.304768 -0.407487 -0.050711)
(-0.296058 -0.531024 -0.047013)
(-0.276959 -0.653608 -0.0384509)
(-0.291834 -0.77504 -0.0175438)
(-0.302449 -0.905984 -0.00673195)
(-0.32407 -1.07174 0.0019865)
(-0.351096 -1.30036 0.00775299)
(-0.404913 -1.62064 0.0158152)
(-0.478703 -2.06219 0.0332627)
(-0.563008 -2.59533 0.0560045)
(-0.631345 -3.14289 0.0833456)
(-0.608596 -3.45334 0.0905382)
(-0.465445 -3.16838 0.0790149)
(-0.173092 -1.9094 0.0431832)
(0.0593517 -0.284459 0.0219873)
(0.00905542 0.437755 0.0968263)
(-0.013117 1.06585 0.205083)
(-0.124988 1.41346 0.26485)
(-0.262061 1.5715 0.262028)
(-0.352009 1.5896 0.20819)
(-0.400126 1.47863 0.114565)
(-0.391568 1.28128 -0.00406009)
(-0.359104 1.07097 -0.106828)
(-0.320604 0.874988 -0.183506)
(-0.276559 0.721628 -0.232474)
(-0.26379 0.583792 -0.266135)
(-0.292212 0.470996 -0.301374)
(-0.414067 0.358663 -0.300603)
(-0.390732 0.31958 -0.218503)
(-0.144673 0.591843 0.0687197)
(0.0865627 0.99069 0.619944)
(0.390825 1.16151 1.17896)
(0.498204 1.18271 0.798163)
(-0.2767 0.940348 -0.0904484)
(-0.961737 0.410439 -0.696622)
(-0.573123 0.0686653 -0.501818)
(-0.253257 -0.230387 0.10587)
(-0.216919 -0.350455 0.190268)
(-0.149595 -0.280696 0.0116092)
(-0.22813 -0.334159 0.00961994)
(-0.245062 -0.368936 -0.025417)
(-0.283224 -0.456519 -0.0128531)
(-0.264764 -0.568359 -0.0128189)
(-0.253637 -0.698205 -0.000852662)
(-0.247627 -0.843233 0.00869795)
(-0.264193 -1.00696 0.0161238)
(-0.285282 -1.21653 0.0197083)
(-0.331734 -1.50419 0.025388)
(-0.396118 -1.92777 0.0409113)
(-0.475611 -2.48204 0.0654819)
(-0.554174 -3.11811 0.0949482)
(-0.558706 -3.57874 0.107451)
(-0.4436 -3.47227 0.0966167)
(-0.177836 -2.28378 0.0569985)
(0.0649506 -0.3962 0.0226071)
(0.00402497 0.441455 0.0962272)
(-0.0239747 1.1449 0.20886)
(-0.0897427 1.51126 0.264694)
(-0.194948 1.67963 0.266602)
(-0.27242 1.68195 0.205743)
(-0.304473 1.55428 0.112046)
(-0.300118 1.35096 -0.00743436)
(-0.276618 1.13221 -0.102128)
(-0.240846 0.930945 -0.164981)
(-0.20559 0.773839 -0.196179)
(-0.202395 0.614445 -0.206529)
(-0.241188 0.493867 -0.225783)
(-0.345286 0.352856 -0.175414)
(-0.203798 0.393083 0.0222332)
(0.131213 0.642058 0.373943)
(0.318094 1.0414 0.849884)
(0.488634 1.42124 1.52087)
(0.826593 1.53482 1.19606)
(0.103912 1.30412 0.193913)
(-0.857627 0.536615 -0.549308)
(-0.315055 -0.00217166 -0.357839)
(0.0433994 -0.318502 0.269241)
(-0.055959 -0.404214 0.312718)
(0.0208856 -0.306287 0.0685989)
(-0.115264 -0.338254 0.0549651)
(-0.144259 -0.357501 -0.00449675)
(-0.213514 -0.412257 0.00131661)
(-0.233663 -0.481986 0.00476766)
(-0.259986 -0.579101 0.0222292)
(-0.254498 -0.706281 0.0275253)
(-0.244686 -0.857788 0.0318961)
(-0.233146 -1.06803 0.0339765)
(-0.256392 -1.35574 0.0378589)
(-0.308493 -1.77628 0.0513587)
(-0.394715 -2.33158 0.0713595)
(-0.483007 -3.02756 0.106615)
(-0.519495 -3.63506 0.122823)
(-0.445815 -3.71417 0.116111)
(-0.211836 -2.61888 0.0753489)
(0.0462555 -0.452772 0.030314)
(0.00850835 0.596594 0.112654)
(0.0103179 1.36041 0.227265)
(-0.0371882 1.75595 0.288729)
(-0.110599 1.90358 0.273829)
(-0.169308 1.90462 0.222128)
(-0.206419 1.77016 0.124011)
(-0.209476 1.56639 0.00477547)
(-0.201986 1.35257 -0.0874754)
(-0.171555 1.1542 -0.145133)
(-0.150244 0.970074 -0.160672)
(-0.144986 0.787964 -0.150302)
(-0.201055 0.64697 -0.126659)
(-0.287629 0.490378 -0.0561101)
(-0.0880669 0.502241 0.350684)
(0.3114 0.597756 0.882999)
(0.415962 0.879105 1.15654)
(0.282298 1.46861 1.31837)
(0.566796 1.77888 1.39248)
(0.289375 1.5998 0.887436)
(-0.492972 0.672843 -0.052144)
(-0.00316562 -0.0666603 -0.209817)
(0.425301 -0.368017 0.493121)
(0.167428 -0.407199 0.503796)
(0.213742 -0.292493 0.144813)
(0.0144584 -0.299072 0.0915906)
(-0.0376829 -0.334151 0.0266785)
(-0.12865 -0.384786 0.023549)
(-0.155596 -0.44283 0.020088)
(-0.194608 -0.508559 0.0302745)
(-0.213405 -0.593958 0.0341138)
(-0.238074 -0.699411 0.0370242)
(-0.251678 -0.867021 0.035465)
(-0.269613 -1.1102 0.0332878)
(-0.266841 -1.50067 0.0512076)
(-0.295286 -2.08199 0.0832806)
(-0.380865 -2.8564 0.11382)
(-0.44234 -3.59936 0.137378)
(-0.413336 -3.90169 0.130331)
(-0.210589 -2.99074 0.0899808)
(0.0555007 -0.649265 0.0327576)
(-0.021161 0.775411 0.134741)
(-0.0183912 1.6188 0.25405)
(-0.0280902 2.04483 0.311902)
(-0.0655725 2.18438 0.302317)
(-0.0886358 2.15286 0.225859)
(-0.117522 2.00716 0.131431)
(-0.127573 1.79341 0.00942735)
(-0.135322 1.57909 -0.0765535)
(-0.135487 1.38935 -0.127159)
(-0.138357 1.19048 -0.12284)
(-0.130285 1.00669 -0.0846034)
(-0.196956 0.845616 -0.0139969)
(-0.289588 0.703512 0.117601)
(-0.102501 0.693259 0.678883)
(0.283938 0.720536 1.55194)
(0.277441 0.846149 1.62016)
(-0.199686 1.35049 0.631304)
(-0.281388 1.75331 0.213181)
(0.282006 1.56437 0.450849)
(-0.248082 0.710731 0.425807)
(0.0847701 -0.0531395 0.373952)
(0.77727 -0.242387 0.914898)
(0.355498 -0.272217 0.821764)
(0.395169 -0.21363 0.252073)
(0.14079 -0.222005 0.120881)
(0.0520557 -0.282944 0.0401851)
(-0.0494559 -0.339296 0.0412723)
(-0.09082 -0.410416 0.0354514)
(-0.141101 -0.471 0.0450289)
(-0.157431 -0.548259 0.0476796)
(-0.176134 -0.623814 0.0500482)
(-0.187184 -0.733514 0.0470902)
(-0.223613 -0.891736 0.0385044)
(-0.288004 -1.19552 0.034765)
(-0.356951 -1.70242 0.0429452)
(-0.372234 -2.47759 0.106286)
(-0.40869 -3.35973 0.139671)
(-0.419528 -3.90061 0.142359)
(-0.261908 -3.26429 0.106537)
(0.00882694 -0.972479 0.0459502)
(-0.0297585 0.739776 0.117171)
(-0.0189866 1.64735 0.244682)
(0.00146881 2.11564 0.308321)
(-0.0165745 2.27856 0.299955)
(-0.0249783 2.24491 0.232286)
(-0.0448657 2.08348 0.12871)
(-0.0547342 1.86712 0.0083914)
(-0.0620633 1.65301 -0.0765938)
(-0.0778017 1.47545 -0.112931)
(-0.104729 1.30245 -0.0988829)
(-0.0937415 1.15246 -0.0502642)
(-0.156457 1.00573 0.043816)
(-0.212364 0.914161 0.189834)
(-0.00922534 0.916608 0.748489)
(0.344447 0.850277 1.67595)
(0.204518 0.97541 1.74067)
(-0.506236 1.22412 0.196908)
(-0.929115 1.39698 -1.5468)
(0.567035 1.24044 -2.68974)
(0.309583 0.783007 -1.73725)
(0.0441091 0.0901814 0.209661)
(0.713659 -0.0627979 1.11011)
(0.318851 -0.0336558 1.01693)
(0.433205 -0.0933101 0.368067)
(0.248924 -0.129036 0.14338)
(0.130274 -0.225804 0.0426011)
(0.0157967 -0.285305 0.0298033)
(-0.0281788 -0.374867 0.0399701)
(-0.0763954 -0.441722 0.0519651)
(-0.101369 -0.517216 0.0579241)
(-0.121313 -0.586378 0.060703)
(-0.126983 -0.684502 0.0586884)
(-0.145766 -0.808989 0.0516528)
(-0.169482 -1.03935 0.0493582)
(-0.273364 -1.40974 0.0477277)
(-0.387207 -2.07202 0.065713)
(-0.440164 -2.94188 0.128399)
(-0.460852 -3.63828 0.135622)
(-0.360419 -3.26459 0.109589)
(-0.0766914 -1.04785 0.047072)
(-0.0111734 0.726001 0.114732)
(0.00697861 1.63206 0.23698)
(0.0292935 2.11136 0.297882)
(0.0277988 2.29467 0.297081)
(0.0280831 2.27228 0.230287)
(0.0150458 2.12075 0.126592)
(0.00413829 1.91206 0.00456754)
(-0.00815889 1.70554 -0.0803589)
(-0.0200438 1.52627 -0.127095)
(-0.0435005 1.37488 -0.103878)
(-0.0385119 1.24752 -0.0713172)
(-0.0836053 1.11039 0.0332525)
(-0.0813032 1.02875 0.153567)
(0.195485 0.95167 0.581597)
(0.467935 0.734971 1.2572)
(-0.0920883 0.942142 0.928518)
(-1.06447 1.29601 -0.551088)
(-1.56535 1.23302 -1.95425)
(0.603299 1.1426 -5.0297)
(1.59621 0.968916 -5.67262)
(0.879087 0.320992 -2.03091)
(0.658744 0.0369067 0.589314)
(0.463114 0.1134 0.851984)
(0.521309 0.0429256 0.456382)
(0.34967 -0.0468127 0.182942)
(0.183022 -0.171795 0.041502)
(0.0701708 -0.242002 0.0150437)
(0.00978441 -0.336583 0.031138)
(-0.0338903 -0.413104 0.0514512)
(-0.0517542 -0.490731 0.0649083)
(-0.0701311 -0.555739 0.0707346)
(-0.0742416 -0.644028 0.0702029)
(-0.0949758 -0.749293 0.0614373)
(-0.113392 -0.94934 0.0580645)
(-0.183762 -1.27609 0.0583414)
(-0.282997 -1.82718 0.0798604)
(-0.379259 -2.58645 0.121429)
(-0.437033 -3.347 0.138742)
(-0.367449 -3.1811 0.111605)
(-0.118328 -1.10529 0.0490298)
(-0.00703038 0.687043 0.100552)
(0.028172 1.5644 0.215307)
(0.0641166 2.06418 0.27831)
(0.072407 2.26948 0.280719)
(0.0781513 2.26687 0.220938)
(0.0683501 2.13038 0.120593)
(0.0586042 1.93523 0.00147382)
(0.0461326 1.73299 -0.0887204)
(0.0365141 1.55702 -0.147709)
(0.0185359 1.3965 -0.143603)
(0.0211469 1.26137 -0.123936)
(-0.0219441 1.11154 -0.0621849)
(-0.0339015 0.976069 0.0822531)
(0.181899 0.80507 0.385209)
(0.131637 0.647709 0.737764)
(-1.07624 1.03886 -0.314555)
(-2.12448 1.72445 -1.91033)
(-2.1129 1.4991 -2.30474)
(-0.387827 1.41941 -4.00681)
(1.5863 1.47521 -5.79059)
(1.51002 0.66557 -3.58676)
(0.813494 0.229833 -0.130529)
(0.570297 0.510753 0.8389)
(0.510067 0.43909 0.440857)
(0.378762 0.172946 0.117559)
(0.22067 -0.0569915 0.0215545)
(0.115517 -0.184096 -0.00827538)
(0.0519347 -0.299322 0.0190009)
(0.0123002 -0.383204 0.0443162)
(-0.0011454 -0.465063 0.0614157)
(-0.0165802 -0.531642 0.0702951)
(-0.0168654 -0.619065 0.0737305)
(-0.0326509 -0.714925 0.0679721)
(-0.0446403 -0.896208 0.066892)
(-0.102901 -1.1779 0.0702032)
(-0.184371 -1.69075 0.0916557)
(-0.298093 -2.40597 0.126125)
(-0.388976 -3.21147 0.138058)
(-0.357134 -3.227 0.115605)
(-0.137757 -1.3301 0.0552505)
(-0.000760776 0.635399 0.0865215)
(0.0478163 1.4859 0.194207)
(0.0961182 2.00099 0.257221)
(0.114704 2.22927 0.263672)
(0.124931 2.24583 0.209763)
(0.119767 2.12572 0.111951)
(0.109128 1.94292 -0.00489853)
(0.0947389 1.74442 -0.103055)
(0.0846705 1.5645 -0.170203)
(0.064551 1.39662 -0.187392)
(0.0562309 1.24135 -0.175777)
(-0.0143291 1.07221 -0.151622)
(-0.0849012 0.893867 0.044082)
(-0.0108753 0.716074 0.365072)
(-0.270957 0.7255 0.486099)
(-1.66328 1.2678 -0.966061)
(-2.65079 2.20631 -2.78639)
(-2.13534 2.1998 -3.10508)
(-1.17872 2.03469 -3.02443)
(0.088791 2.12358 -2.86223)
(0.539776 1.00475 -2.01996)
(0.402662 0.529069 -0.194988)
(0.40685 0.848959 0.72423)
(0.296763 0.630568 0.163108)
(0.163126 0.270801 -0.172151)
(0.0994553 0.0223462 -0.178543)
(0.086664 -0.144236 -0.0937113)
(0.0575117 -0.274201 -0.0135841)
(0.0373453 -0.359621 0.0345033)
(0.03294 -0.443438 0.0621288)
(0.016831 -0.509032 0.0777584)
(0.015434 -0.594255 0.0812927)
(-0.00592468 -0.678367 0.0758556)
(-0.0119831 -0.8421 0.0716313)
(-0.0554473 -1.09473 0.0848785)
(-0.11337 -1.59662 0.113938)
(-0.224438 -2.31701 0.143271)
(-0.32682 -3.19411 0.153881)
(-0.332331 -3.35679 0.127669)
(-0.134985 -1.56796 0.0664628)
(0.00170984 0.578978 0.073158)
(0.0612192 1.39418 0.172896)
(0.122408 1.92754 0.237042)
(0.151787 2.18223 0.247787)
(0.168405 2.22104 0.201043)
(0.168085 2.11711 0.108437)
(0.158331 1.94237 -0.00590477)
(0.14161 1.74795 -0.106504)
(0.129921 1.56296 -0.180834)
(0.103051 1.38967 -0.210421)
(0.0821948 1.22403 -0.203178)
(-0.00685495 1.05054 -0.178682)
(-0.108826 0.895656 0.0398008)
(-0.091414 0.736886 0.410684)
(-0.264631 0.719381 0.484459)
(-1.32227 1.15707 -0.754072)
(-2.26827 2.16683 -2.42534)
(-2.10644 3.05386 -3.09397)
(-1.63664 3.24141 -2.88907)
(-0.78651 2.56167 -1.28729)
(-0.259726 0.881227 0.15085)
(-0.14119 0.203431 0.35986)
(0.178214 0.374708 0.450928)
(0.172699 0.193921 0.0242166)
(0.0512526 0.037011 -0.426114)
(0.0609721 -0.0632228 -0.347143)
(0.0710247 -0.167034 -0.17503)
(0.0778096 -0.271387 -0.0443331)
(0.0752727 -0.352932 0.0196617)
(0.078643 -0.433516 0.0569522)
(0.0673477 -0.493699 0.0774278)
(0.0738835 -0.579834 0.0854089)
(0.053248 -0.660505 0.0787914)
(0.0457431 -0.812656 0.0744083)
(-0.00647729 -1.04846 0.0734396)
(-0.0493962 -1.54835 0.122892)
(-0.16029 -2.30528 0.154289)
(-0.274878 -3.28845 0.165937)
(-0.319273 -3.62023 0.138222)
(-0.13757 -1.89305 0.070548)
(0.00549244 0.514586 0.0580863)
(0.073606 1.28578 0.150953)
(0.145222 1.83279 0.215957)
(0.183998 2.11556 0.232383)
(0.207082 2.1787 0.193615)
(0.21072 2.09297 0.108736)
(0.202332 1.92797 -0.00133856)
(0.183813 1.73982 -0.0998813)
(0.169315 1.55486 -0.175429)
(0.138095 1.37946 -0.210915)
(0.108015 1.21763 -0.202566)
(0.0294504 1.04798 -0.166985)
(-0.0785399 0.928231 0.027969)
(-0.0767631 0.786307 0.39517)
(-0.0996219 0.653434 0.53453)
(-0.724571 0.728127 -0.0403651)
(-1.5439 1.47682 -0.936484)
(-1.84315 2.68419 -1.79448)
(-1.43194 3.16253 -1.85197)
(-0.523647 2.16223 -0.299378)
(-0.136264 0.314798 0.967139)
(0.000960932 -0.295581 0.742988)
(0.330663 -0.186333 0.243346)
(0.317823 -0.241896 -0.1619)
(0.169011 -0.222072 -0.439427)
(0.14738 -0.234611 -0.378483)
(0.128562 -0.259224 -0.217619)
(0.113649 -0.31738 -0.0643528)
(0.11179 -0.387271 0.00533429)
(0.124328 -0.47072 0.059819)
(0.107478 -0.553175 0.0874776)
(0.105895 -0.665703 0.0988124)
(0.0802017 -0.769688 0.0955488)
(0.0819286 -0.944117 0.0967517)
(0.0180242 -1.17346 0.0910221)
(-0.0208764 -1.66326 0.131177)
(-0.123818 -2.44276 0.175361)
(-0.233175 -3.54579 0.186231)
(-0.285739 -4.08043 0.161446)
(-0.124694 -2.48747 0.0887244)
(0.0102632 0.457323 0.0496428)
(0.0856154 1.17724 0.132316)
(0.16368 1.73651 0.198059)
(0.209606 2.05054 0.219972)
(0.24002 2.14219 0.190317)
(0.248889 2.07825 0.114583)
(0.245731 1.92626 0.0121097)
(0.229547 1.74525 -0.0830344)
(0.212599 1.5625 -0.158195)
(0.182207 1.3878 -0.196317)
(0.14609 1.2303 -0.189895)
(0.0833369 1.07059 -0.141441)
(-0.0102501 0.957948 -0.000582045)
(-0.0337106 0.850483 0.329663)
(-0.0119779 0.68312 0.540167)
(-0.207284 0.505256 0.495993)
(-0.675368 0.764562 0.232097)
(-0.994499 1.38471 -0.0740383)
(-0.579918 1.54068 0.0855917)
(0.123093 0.830994 0.824118)
(0.493359 -0.155619 1.03811)
(0.557494 -0.371879 0.499752)
(0.539956 -0.306894 -0.0727569)
(0.49488 -0.34974 -0.337619)
(0.338473 -0.346882 -0.399159)
(0.282919 -0.349617 -0.29387)
(0.239034 -0.346486 -0.166166)
(0.193664 -0.361901 -0.0610957)
(0.161731 -0.403262 0.0115122)
(0.15111 -0.499883 0.0617122)
(0.112624 -0.598245 0.0874489)
(0.105769 -0.732036 0.0979372)
(0.0683009 -0.84593 0.089448)
(0.0773696 -1.00807 0.0911896)
(0.0260484 -1.23363 0.0981821)
(-0.00553032 -1.70733 0.12458)
(-0.114438 -2.50651 0.181687)
(-0.222577 -3.74309 0.192113)
(-0.301489 -4.51238 0.172849)
(-0.147119 -3.12486 0.0993286)
(0.0130172 0.400843 0.0390859)
(0.0993176 1.05166 0.111337)
(0.185786 1.60965 0.176946)
(0.231602 1.95301 0.206686)
(0.266454 2.07582 0.186957)
(0.281479 2.03738 0.122267)
(0.284049 1.90381 0.0296187)
(0.271482 1.73399 -0.0616671)
(0.254636 1.55832 -0.136172)
(0.226739 1.39017 -0.177495)
(0.190685 1.24074 -0.175953)
(0.141199 1.09835 -0.129742)
(0.0742526 0.988802 -0.0175676)
(0.0459941 0.905921 0.226998)
(0.0742143 0.78474 0.514578)
(0.118264 0.59287 0.714663)
(0.0355478 0.51114 0.667574)
(-0.0736991 0.58835 0.662607)
(0.195028 0.513751 1.01517)
(0.606632 0.186174 1.17747)
(0.809617 -0.15402 0.765385)
(0.797467 -0.274406 0.179655)
(0.713986 -0.218183 -0.249714)
(0.627039 -0.225907 -0.380981)
(0.46186 -0.24025 -0.305789)
(0.404928 -0.271378 -0.16219)
(0.367427 -0.30077 -0.0685392)
(0.305844 -0.320772 -0.0182604)
(0.221029 -0.37871 0.0177313)
(0.177591 -0.479254 0.0463211)
(0.126842 -0.562474 0.0698119)
(0.123329 -0.689881 0.0854499)
(0.100026 -0.780986 0.0915911)
(0.103218 -0.956426 0.094385)
(0.0295776 -1.14294 0.088903)
(0.0134819 -1.59786 0.124802)
(-0.104677 -2.38204 0.182764)
(-0.213719 -3.72349 0.198812)
(-0.321631 -4.72292 0.181793)
(-0.174523 -3.59964 0.108421)
(0.00729939 0.360495 0.0325643)
(0.0962393 0.952004 0.0970517)
(0.202804 1.48731 0.154535)
(0.253231 1.86325 0.193708)
(0.287193 2.02025 0.184749)
(0.309915 2.01229 0.131346)
(0.323575 1.89956 0.0478741)
(0.320098 1.74101 -0.0379092)
(0.307704 1.57236 -0.112319)
(0.287288 1.41006 -0.159118)
(0.257401 1.26925 -0.168834)
(0.217665 1.14287 -0.137773)
(0.169827 1.04503 -0.0513026)
(0.149883 0.973716 0.113044)
(0.174189 0.900447 0.370654)
(0.284192 0.78602 0.644123)
(0.393873 0.610324 0.720496)
(0.440857 0.465744 0.737697)
(0.613901 0.363971 0.82379)
(0.805327 0.215141 0.709691)
(0.925881 0.0354311 0.360377)
(0.944067 -0.0441525 -0.0639565)
(0.87358 -0.0403517 -0.309248)
(0.764533 -0.0630612 -0.373473)
(0.568373 -0.0603842 -0.293009)
(0.477691 -0.102642 -0.132859)
(0.443006 -0.176451 -0.0262837)
(0.370269 -0.231929 0.00564869)
(0.260349 -0.320682 0.0154971)
(0.233086 -0.414195 0.0353381)
(0.173012 -0.484354 0.0528444)
(0.162902 -0.601434 0.0663068)
(0.104393 -0.689098 0.0763267)
(0.118065 -0.872883 0.0753515)
(0.0608053 -1.03989 0.103316)
(0.032655 -1.46659 0.10141)
(-0.0906538 -2.20271 0.186447)
(-0.196396 -3.60899 0.19491)
(-0.335654 -4.80961 0.184508)
(-0.196341 -3.99927 0.112611)
(0.00781407 0.304745 0.0255207)
(0.0884365 0.837249 0.0855534)
(0.210136 1.33893 0.135786)
(0.278582 1.71979 0.174665)
(0.305296 1.91641 0.180279)
(0.330258 1.93807 0.13943)
(0.352703 1.85463 0.0692513)
(0.35959 1.70672 -0.014033)
(0.356682 1.5512 -0.0875598)
(0.347394 1.39558 -0.140399)
(0.330393 1.26169 -0.163673)
(0.307106 1.14588 -0.154473)
(0.279514 1.05959 -0.105596)
(0.269579 0.999324 -0.00709755)
(0.294804 0.948192 0.1533)
(0.379448 0.886782 0.348106)
(0.489359 0.753513 0.469821)
(0.569786 0.607443 0.514379)
(0.698977 0.466064 0.497467)
(0.840583 0.310304 0.332139)
(0.987648 0.165472 0.0985659)
(1.0957 0.0861001 -0.141057)
(1.03635 0.02626 -0.312585)
(0.899257 -0.0438544 -0.406443)
(0.694383 -0.0629667 -0.382381)
(0.547757 -0.073767 -0.222442)
(0.497145 -0.102409 -0.0449938)
(0.422116 -0.155682 -0.00953488)
(0.303872 -0.230428 0.00246881)
(0.292078 -0.32782 0.0187741)
(0.221623 -0.395968 0.0336366)
(0.208044 -0.51662 0.0463559)
(0.137964 -0.596342 0.0567674)
(0.135263 -0.768578 0.0668401)
(0.073061 -0.92664 0.0860156)
(0.0685152 -1.34036 0.116464)
(-0.0725703 -2.00598 0.174973)
(-0.165179 -3.44841 0.200288)
(-0.345117 -4.81733 0.184322)
(-0.218239 -4.35243 0.116846)
(0.00298048 0.271911 0.0216747)
(0.0713585 0.758604 0.0771928)
(0.191056 1.23286 0.124437)
(0.290111 1.60409 0.154109)
(0.330783 1.82934 0.172882)
(0.349807 1.88734 0.145376)
(0.379927 1.82963 0.0884149)
(0.401254 1.69394 0.0104469)
(0.415524 1.54544 -0.0587482)
(0.417774 1.3915 -0.116451)
(0.415542 1.25574 -0.150673)
(0.408836 1.13728 -0.16123)
(0.401951 1.04608 -0.144119)
(0.40447 0.97802 -0.097435)
(0.426667 0.924136 -0.0188993)
(0.486538 0.865918 0.0802467)
(0.574438 0.769559 0.161719)
(0.643491 0.654696 0.186584)
(0.734835 0.528748 0.165919)
(0.844883 0.380273 0.0821713)
(1.03019 0.226852 -0.0567246)
(1.15355 0.131722 -0.20622)
(1.07938 0.00679517 -0.311669)
(0.975004 -0.0873984 -0.351008)
(0.817543 -0.143356 -0.329798)
(0.706511 -0.127774 -0.234657)
(0.629116 -0.0834439 -0.0971051)
(0.510735 -0.0957127 -0.0405398)
(0.361715 -0.136447 -0.0217284)
(0.356469 -0.22903 -0.000981928)
(0.278303 -0.292443 0.013114)
(0.264872 -0.41654 0.0250597)
(0.172411 -0.486529 0.0372865)
(0.172152 -0.665229 0.0499786)
(0.0804029 -0.794752 0.0781776)
(0.100227 -1.2005 0.114441)
(-0.0446502 -1.81927 0.169031)
(-0.133966 -3.27069 0.19614)
(-0.356781 -4.79295 0.183004)
(-0.243591 -4.70741 0.116643)
(0.00812699 0.222968 0.0197118)
(0.0596856 0.658433 0.0746546)
(0.162075 1.0963 0.115848)
(0.277062 1.44689 0.144675)
(0.345378 1.66755 0.154979)
(0.368711 1.76032 0.148504)
(0.388771 1.73576 0.104795)
(0.421784 1.62413 0.0433822)
(0.452868 1.48466 -0.0262761)
(0.471228 1.33772 -0.0839363)
(0.48395 1.20361 -0.127112)
(0.493417 1.08134 -0.1515)
(0.503422 0.982339 -0.157461)
(0.518823 0.898859 -0.145332)
(0.543042 0.82846 -0.116778)
(0.579416 0.758506 -0.0780672)
(0.634265 0.665136 -0.0409496)
(0.690241 0.553758 -0.0246947)
(0.776338 0.435817 -0.019097)
(0.872526 0.29798 -0.0543951)
(1.06555 0.157596 -0.117697)
(1.20915 0.0595068 -0.195188)
(1.13937 -0.0377685 -0.244646)
(1.05665 -0.105237 -0.233767)
(0.946778 -0.128404 -0.195755)
(0.889501 -0.110191 -0.144954)
(0.807849 -0.0568447 -0.0684714)
(0.649599 -0.0479047 -0.0440981)
(0.454093 -0.0634628 -0.0340145)
(0.434333 -0.133914 -0.0248606)
(0.342623 -0.195889 -0.00573594)
(0.334028 -0.313753 0.00579098)
(0.225799 -0.374906 0.020255)
(0.221037 -0.555782 0.0367681)
(0.107487 -0.673421 0.0664424)
(0.133009 -1.06654 0.110561)
(-0.0256547 -1.64665 0.166212)
(-0.0921506 -3.10648 0.19597)
(-0.380115 -4.76426 0.180511)
(-0.272545 -5.11692 0.117049)
(0.00370519 0.207361 0.0207283)
(0.0292875 0.61762 0.0739609)
(0.102589 1.03028 0.115333)
(0.226435 1.37684 0.139934)
(0.33676 1.57725 0.149357)
(0.398129 1.67001 0.141763)
(0.414713 1.67718 0.119168)
(0.446318 1.57633 0.0690388)
(0.494818 1.45066 0.0114336)
(0.531352 1.29997 -0.0473554)
(0.560141 1.16637 -0.0923986)
(0.582335 1.03816 -0.126141)
(0.604595 0.928925 -0.146695)
(0.626054 0.83044 -0.155519)
(0.651562 0.742856 -0.152121)
(0.678461 0.659339 -0.141027)
(0.717378 0.573267 -0.120304)
(0.758366 0.479739 -0.10205)
(0.830628 0.376586 -0.0894822)
(0.921368 0.247561 -0.0975437)
(1.13849 0.130732 -0.115754)
(1.30758 0.054391 -0.156674)
(1.25325 -0.0211397 -0.176499)
(1.20836 -0.0651854 -0.176286)
(1.12105 -0.0607044 -0.157777)
(1.07439 -0.0481452 -0.134234)
(0.983005 -0.00551578 -0.096862)
(0.795542 -0.00638794 -0.0820352)
(0.570114 -0.00269326 -0.0672954)
(0.537063 -0.0519152 -0.0451698)
(0.420826 -0.0834635 -0.0308241)
(0.429153 -0.204304 -0.0125624)
(0.291235 -0.245256 0.004141)
(0.294597 -0.420828 0.0227798)
(0.142938 -0.524026 0.0577762)
(0.179902 -0.905305 0.10045)
(-0.0069359 -1.45691 0.167245)
(-0.0482013 -2.9029 0.188545)
(-0.412109 -4.72688 0.177671)
(-0.305376 -5.61256 0.11541)
(0.0147049 0.180238 0.026687)
(0.0276797 0.529396 0.0838454)
(0.051234 0.933079 0.116818)
(0.15178 1.23027 0.143352)
(0.269488 1.4277 0.151665)
(0.384831 1.48696 0.140829)
(0.418879 1.52319 0.128742)
(0.441209 1.4353 0.0941297)
(0.503531 1.33601 0.0477992)
(0.556199 1.20063 -0.00149206)
(0.609701 1.0724 -0.0503142)
(0.646282 0.950115 -0.0850874)
(0.680776 0.843756 -0.113335)
(0.710941 0.743501 -0.132996)
(0.74202 0.653856 -0.143573)
(0.771648 0.567925 -0.146618)
(0.808304 0.489962 -0.136351)
(0.842993 0.409018 -0.127266)
(0.905527 0.323218 -0.118007)
(0.995788 0.208218 -0.120708)
(1.23504 0.115511 -0.123546)
(1.4237 0.0500969 -0.144712)
(1.37475 -0.00907722 -0.145264)
(1.35547 -0.0471891 -0.139621)
(1.28568 -0.0361153 -0.126765)
(1.25539 -0.0306075 -0.117103)
(1.15708 0.0217647 -0.0927663)
(0.961868 0.021661 -0.086475)
(0.711895 0.0486486 -0.0748513)
(0.68999 -0.00124101 -0.0683953)
(0.53702 -0.00195707 -0.0468518)
(0.545899 -0.0961107 -0.0284983)
(0.405531 -0.118835 -0.00395807)
(0.412201 -0.29513 0.0136622)
(0.235901 -0.374942 0.0484795)
(0.265025 -0.76084 0.0941491)
(0.0564343 -1.26336 0.151255)
(0.0292639 -2.71044 0.194776)
(-0.455411 -4.66775 0.175919)
(-0.29944 -6.21569 0.117901)
(-0.0195698 0.163614 0.0302123)
(-0.0266171 0.561846 0.0950432)
(-0.0300338 0.89818 0.129936)
(0.0306874 1.23291 0.149481)
(0.167991 1.38713 0.159262)
(0.345529 1.4067 0.151819)
(0.428823 1.41916 0.140699)
(0.451495 1.33539 0.120353)
(0.530856 1.23928 0.0852616)
(0.594659 1.12577 0.0499053)
(0.666395 1.00637 0.0103018)
(0.724663 0.888276 -0.0269382)
(0.773426 0.784308 -0.0573771)
(0.811894 0.688086 -0.0803598)
(0.848419 0.601798 -0.0970928)
(0.882601 0.517957 -0.107787)
(0.919803 0.444963 -0.10803)
(0.950007 0.369791 -0.108791)
(1.00308 0.29888 -0.107703)
(1.09602 0.195097 -0.11173)
(1.35746 0.126315 -0.109976)
(1.56698 0.0697925 -0.122886)
(1.52893 0.0231808 -0.122122)
(1.53943 -0.00760409 -0.117194)
(1.47916 -0.00119818 -0.108568)
(1.46354 0.000418117 -0.10113)
(1.36466 0.0662906 -0.0832453)
(1.16726 0.0651655 -0.0822072)
(0.887284 0.114299 -0.0731255)
(0.865221 0.0657353 -0.0636201)
(0.719049 0.0789946 -0.0499246)
(0.752752 -0.000395817 -0.0336801)
(0.564533 -0.010798 -0.0129423)
(0.603142 -0.160188 0.00847675)
(0.377014 -0.212688 0.0422407)
(0.431083 -0.558538 0.0853101)
(0.150361 -0.989565 0.140638)
(0.214815 -2.38323 0.187365)
(-0.421257 -4.56925 0.173944)
(-0.238807 -6.80829 0.121219)
(0.0474518 0.304148 0.048162)
(-0.00334445 0.500108 0.112213)
(-0.0984378 0.783687 0.145515)
(-0.0416772 0.988305 0.163459)
(-0.00591484 1.19741 0.172153)
(0.203825 1.17782 0.165325)
(0.363366 1.19319 0.156418)
(0.414716 1.11756 0.147819)
(0.518327 1.04298 0.121067)
(0.606738 0.95392 0.098754)
(0.69643 0.865496 0.0704162)
(0.770638 0.771324 0.0436165)
(0.837464 0.686086 0.016728)
(0.892144 0.607222 -0.00684144)
(0.938127 0.536477 -0.0263851)
(0.980733 0.464626 -0.0420614)
(1.02331 0.398415 -0.052397)
(1.06022 0.330829 -0.0623596)
(1.11543 0.27067 -0.0687147)
(1.22421 0.169037 -0.0778603)
(1.5119 0.116379 -0.0794769)
(1.74109 0.0607174 -0.0917071)
(1.71445 0.0192816 -0.0906554)
(1.74073 -0.0131856 -0.087566)
(1.69006 0.0102558 -0.0790644)
(1.71598 0.00731604 -0.070673)
(1.61582 0.0903127 -0.0598945)
(1.44127 0.0868018 -0.0613851)
(1.14438 0.157301 -0.056582)
(1.15093 0.124197 -0.0523092)
(0.993044 0.164263 -0.0374874)
(1.06189 0.0694969 -0.0278195)
(0.877615 0.0657462 -0.00623258)
(0.974374 -0.0524667 0.0137267)
(0.719994 -0.129672 0.0406549)
(0.832903 -0.415737 0.0739686)
(0.47976 -0.811265 0.125919)
(0.591924 -2.01533 0.166773)
(-0.15525 -4.35169 0.177525)
(0.0700272 -7.3287 0.128935)
(-0.222593 0.0747273 0.0592098)
(-0.294635 0.703782 0.139857)
(-0.282271 0.880433 0.167574)
(-0.239224 1.02717 0.181169)
(-0.114566 1.05299 0.193143)
(0.0740321 1.06484 0.184643)
(0.276614 0.998926 0.182082)
(0.366718 0.938372 0.178922)
(0.502984 0.867206 0.162774)
(0.612148 0.801003 0.150928)
(0.726902 0.733129 0.133238)
(0.823921 0.665222 0.115142)
(0.913084 0.602571 0.0954994)
(0.987137 0.541741 0.0768834)
(1.04984 0.486372 0.0607529)
(1.10706 0.428296 0.044763)
(1.16485 0.365228 0.0313686)
(1.22676 0.303775 0.0167852)
(1.30005 0.261492 0.00660045)
(1.45762 0.17229 -0.00627822)
(1.80019 0.141408 -0.0114124)
(2.09124 0.0860813 -0.0248996)
(2.10163 0.0511903 -0.0262038)
(2.19705 0.0200183 -0.0277768)
(2.16848 0.0295648 -0.0200204)
(2.23065 0.0122163 -0.0123175)
(2.12588 0.102792 -0.00733559)
(1.99504 0.0839928 -0.0144968)
(1.6747 0.173906 -0.0098221)
(1.74876 0.152125 -0.0104354)
(1.58493 0.209316 -0.00245761)
(1.73416 0.130764 0.00535477)
(1.52708 0.131027 0.0150022)
(1.69943 0.00704546 0.0261872)
(1.36535 -0.0553448 0.0452509)
(1.55062 -0.277504 0.07091)
(1.09444 -0.530801 0.107392)
(1.28081 -1.45185 0.151095)
(0.435658 -3.84186 0.168662)
(0.521881 -7.19707 0.128117)
(-0.733445 0.792155 0.14678)
(-0.602899 0.397294 0.214836)
(-0.741934 0.579469 0.20966)
(-0.451674 0.610663 0.211286)
(-0.303368 0.621293 0.21439)
(0.0113005 0.676116 0.211297)
(0.251405 0.639493 0.20555)
(0.459289 0.613731 0.211334)
(0.66504 0.574887 0.203694)
(0.858129 0.538806 0.201957)
(1.04665 0.496651 0.193208)
(1.22227 0.454733 0.183416)
(1.38178 0.416688 0.17016)
(1.52537 0.384778 0.155431)
(1.64548 0.361247 0.141934)
(1.75958 0.329344 0.128569)
(1.87382 0.281755 0.11639)
(2.03022 0.245586 0.103602)
(2.21057 0.215769 0.0964539)
(2.50446 0.119901 0.0805418)
(2.92672 0.0903583 0.0743351)
(3.34009 0.037498 0.0613428)
(3.40108 -0.00259333 0.0544818)
(3.53812 -0.0418738 0.0476916)
(3.47399 -0.0227299 0.0475204)
(3.60075 -0.0236617 0.046326)
(3.44734 0.0614682 0.0480001)
(3.40402 0.060213 0.0381753)
(3.03061 0.142033 0.0392506)
(3.21556 0.151057 0.0380896)
(3.01496 0.196187 0.0418152)
(3.33389 0.134473 0.0446169)
(3.05054 0.096756 0.0500944)
(3.38326 0.0128478 0.0554957)
(2.90239 -0.0564114 0.0665224)
(3.24429 -0.232305 0.0769148)
(2.57023 -0.519227 0.0950418)
(2.92119 -1.12896 0.118415)
(1.9253 -3.13204 0.138658)
(1.35601 -6.07499 0.114631)
(1.1588 1.47681 0.0634956)
(1.72237 0.725056 0.0914573)
(2.46202 0.566918 0.0978052)
(2.87915 0.351201 0.0997676)
(3.16158 0.28138 0.100731)
(3.40935 0.22825 0.10244)
(3.64451 0.215602 0.10497)
(3.84944 0.19322 0.118421)
(4.05557 0.182592 0.12577)
(4.26997 0.17027 0.135275)
(4.47766 0.158087 0.139397)
(4.68715 0.144698 0.139459)
(4.86653 0.132903 0.13563)
(5.03497 0.122111 0.127921)
(5.15938 0.115884 0.121221)
(5.29142 0.110421 0.113526)
(5.4267 0.0854838 0.106831)
(5.64071 0.0651577 0.0969723)
(5.91301 0.0795702 0.0979676)
(6.3771 0.0525219 0.0892325)
(6.7942 0.0297514 0.0856965)
(7.25582 0.00913282 0.0808793)
(7.26123 -0.0111074 0.0738891)
(7.32471 -0.0562931 0.0666449)
(7.14152 -0.0413015 0.0620621)
(7.15403 -0.0549333 0.0541707)
(6.811 -0.0285384 0.0554967)
(6.79687 -0.0133648 0.0429249)
(6.33508 0.0219628 0.0413548)
(6.59886 0.0416442 0.041889)
(6.36126 0.070963 0.0468315)
(6.81058 0.0687757 0.0484897)
(6.50394 0.0430868 0.0517222)
(6.89501 0.0116267 0.0534996)
(6.34667 -0.0161178 0.0602303)
(6.56681 -0.107004 0.0646156)
(5.68514 -0.258644 0.0734878)
(5.70928 -0.580191 0.0793941)
(4.28611 -1.13504 0.0927277)
(2.79412 -2.5218 0.0930678)
(0.00168031 -0.000321589 0.000383251)
(0.0221551 -0.00350668 0.002998)
(0.048136 -0.00260912 0.00523416)
(0.063584 -0.000771516 0.00628934)
(0.0683825 0.00177416 0.00575179)
(0.0624237 0.000861157 0.00458131)
(0.0474494 0.00858038 0.00947081)
(0.0275404 0.0119273 0.0113597)
(0.00424348 0.0223926 0.0222838)
(-0.0347991 0.0167652 0.0215073)
(-0.0849039 0.010681 0.0249815)
(-0.144618 0.00254943 0.0275829)
(-0.213058 -0.00242385 0.0276893)
(-0.294577 0.00270459 0.0277803)
(-0.37846 0.0117236 0.024157)
(-0.476548 0.0158255 0.0247786)
(-0.587196 0.00201704 0.00678678)
(-0.734118 0.00332269 -0.0214159)
(-0.81688 -0.00318483 -0.0451381)
(-0.990599 0.00130316 -0.0708352)
(-0.937739 0.0380945 -0.0782041)
(-0.746262 0.0308326 -0.0739836)
(-0.731069 0.0320404 -0.0709326)
(-0.709506 0.0231127 -0.0745152)
(-0.693031 -0.00389495 -0.082213)
(-0.637996 -0.0249781 -0.0983723)
(-0.569556 -0.0438992 -0.11069)
(-0.453161 -0.0542928 -0.125126)
(-0.315159 -0.0662522 -0.13258)
(-0.14026 -0.0741021 -0.139379)
(0.0212111 -0.0586023 -0.115579)
(0.24635 -0.0194627 -0.0980321)
(0.442963 -0.0186829 -0.0750093)
(0.502191 0.0231523 -0.0332277)
(0.471869 0.0444187 0.00581078)
(0.358095 0.0510897 0.0279174)
(0.231306 0.0369452 0.0402428)
(0.109618 0.0208198 0.0426976)
(0.0302705 0.00577524 0.0355787)
(-0.00260324 -0.00682739 0.0174378)
(0.00741117 -0.0143654 0.0012823)
(0.0420835 -0.0286409 0.00861693)
(0.0786692 -0.0236358 0.0153769)
(0.0977887 -0.00954258 0.0188773)
(0.0956163 0.00119062 0.0218274)
(0.0799477 0.00668499 0.0251391)
(0.0414393 0.0194365 0.0348967)
(-0.0180183 0.0437405 0.0495275)
(-0.111507 0.0605788 0.0560584)
(-0.249646 0.0727327 0.0484706)
(-0.405088 0.0946433 0.0499362)
(-0.585183 0.12201 0.047947)
(-0.77487 0.150549 0.0478119)
(-0.986487 0.17954 0.0487336)
(-1.21014 0.189948 0.0451154)
(-1.44604 0.168193 0.0290456)
(-1.65075 0.127305 0.0174757)
(-1.858 0.0954877 -0.000818081)
(-1.99848 0.0618589 -0.0137915)
(-2.13473 0.0405488 -0.0249151)
(-1.96614 0.0463244 -0.0250949)
(-1.68359 0.0137005 0.000823628)
(-1.55986 -0.0212131 0.0211115)
(-1.46697 -0.100577 0.0170295)
(-1.38695 -0.18456 0.00801096)
(-1.25685 -0.261426 0.00319311)
(-1.11791 -0.321868 0.0013769)
(-0.941111 -0.359827 0.00171471)
(-0.752676 -0.374088 0.00860121)
(-0.515649 -0.373944 0.0207845)
(-0.288577 -0.345613 0.0322685)
(-0.012945 -0.251553 0.081362)
(0.276394 -0.181977 0.0781239)
(0.485502 -0.0696392 0.104408)
(0.570319 0.0400883 0.103528)
(0.52329 0.1195 0.119049)
(0.402467 0.14219 0.119028)
(0.241155 0.121406 0.118277)
(0.0975044 0.0838085 0.101511)
(0.013297 0.0298613 0.0470073)
(0.0100239 -0.0339597 0.000612733)
(0.0454107 -0.0585179 0.0112775)
(0.0750115 -0.0439874 0.0222744)
(0.075795 -0.0130506 0.0321821)
(0.0472198 0.0202622 0.0357496)
(-0.000428522 0.0605207 0.0385463)
(-0.0696639 0.101927 0.0559777)
(-0.194878 0.156983 0.0653454)
(-0.376722 0.21474 0.0756006)
(-0.593677 0.274897 0.0818398)
(-0.840689 0.337165 0.0858627)
(-1.11052 0.390503 0.0892786)
(-1.37796 0.423816 0.0903357)
(-1.64521 0.4125 0.0918045)
(-1.89795 0.36217 0.0810286)
(-2.11957 0.299988 0.0811152)
(-2.28674 0.239161 0.0849805)
(-2.4491 0.173668 0.0865828)
(-2.5473 0.118717 0.0913404)
(-2.61181 0.054598 0.0937643)
(-2.35263 0.0191605 0.120935)
(-2.04548 -0.0576701 0.15491)
(-1.91165 -0.164118 0.148976)
(-1.79509 -0.297454 0.133728)
(-1.70947 -0.422271 0.140217)
(-1.57615 -0.547521 0.142329)
(-1.43782 -0.651977 0.14714)
(-1.26367 -0.728664 0.15084)
(-1.0989 -0.761319 0.160235)
(-0.905306 -0.739531 0.175371)
(-0.700557 -0.684473 0.187203)
(-0.451003 -0.571261 0.203038)
(-0.184765 -0.446583 0.202257)
(0.0853918 -0.268827 0.212365)
(0.298601 -0.0729705 0.205874)
(0.37655 0.111237 0.195643)
(0.338234 0.193143 0.182584)
(0.222879 0.214623 0.172913)
(0.0969443 0.175265 0.143957)
(0.0124936 0.0854858 0.0654255)
(0.0108975 -0.0535416 -0.00356318)
(0.035732 -0.0829921 0.00983867)
(0.036418 -0.0484527 0.0249711)
(0.00721886 0.0074218 0.0314883)
(-0.0438665 0.0855651 0.0527051)
(-0.127231 0.17615 0.0666357)
(-0.262527 0.268352 0.0838837)
(-0.456047 0.375288 0.102488)
(-0.717732 0.483782 0.115656)
(-1.0168 0.569046 0.12345)
(-1.30859 0.621404 0.129184)
(-1.59056 0.63406 0.133172)
(-1.85646 0.592127 0.132503)
(-2.10007 0.514779 0.124791)
(-2.28575 0.433139 0.127341)
(-2.42888 0.359458 0.134293)
(-2.52955 0.286563 0.144136)
(-2.62932 0.208899 0.150871)
(-2.67331 0.138902 0.158057)
(-2.66595 0.0501323 0.163361)
(-2.39579 -0.0126373 0.165985)
(-2.10426 -0.141044 0.156519)
(-1.97592 -0.289089 0.139761)
(-1.88958 -0.43325 0.133958)
(-1.82899 -0.583161 0.138956)
(-1.73279 -0.742849 0.141889)
(-1.63029 -0.892882 0.146638)
(-1.48861 -1.02185 0.14966)
(-1.33881 -1.1096 0.15622)
(-1.17668 -1.12306 0.16873)
(-1.03067 -1.05697 0.191151)
(-0.864829 -0.904508 0.22206)
(-0.658918 -0.729073 0.214175)
(-0.377258 -0.512965 0.223918)
(-0.0756434 -0.25329 0.217623)
(0.104866 -0.000394731 0.245779)
(0.156308 0.174898 0.224193)
(0.128428 0.248571 0.209776)
(0.0546439 0.229448 0.17083)
(0.00562805 0.119316 0.0755655)
(0.0056298 -0.0711812 -0.0102807)
(0.0112411 -0.0860346 0.0055433)
(-0.0249406 -0.0305614 0.034167)
(-0.0870419 0.0860654 0.0554848)
(-0.172005 0.214709 0.076379)
(-0.311268 0.353616 0.0984333)
(-0.493964 0.498199 0.124321)
(-0.734284 0.638475 0.14516)
(-1.03642 0.758005 0.158875)
(-1.35012 0.816904 0.168212)
(-1.64523 0.803575 0.170004)
(-1.91569 0.736443 0.157741)
(-2.13015 0.64346 0.143866)
(-2.28022 0.553554 0.140194)
(-2.378 0.474972 0.136542)
(-2.44688 0.393396 0.135857)
(-2.48718 0.318525 0.136173)
(-2.53234 0.235168 0.133088)
(-2.52773 0.159845 0.126962)
(-2.48789 0.0510817 0.115539)
(-2.22583 -0.0371929 0.104337)
(-1.96982 -0.185565 0.0731055)
(-1.87172 -0.342373 0.0522145)
(-1.81266 -0.501834 0.0515315)
(-1.78628 -0.673081 0.0596244)
(-1.73731 -0.864474 0.0665516)
(-1.68492 -1.05813 0.0757069)
(-1.59668 -1.24551 0.0817864)
(-1.4887 -1.39854 0.0877264)
(-1.34493 -1.48879 0.0949294)
(-1.19847 -1.48262 0.104704)
(-1.08618 -1.36523 0.132701)
(-1.00703 -1.11907 0.175234)
(-0.782397 -0.808211 0.180549)
(-0.439043 -0.494071 0.193857)
(-0.147737 -0.161609 0.211482)
(0.00212618 0.0977589 0.213419)
(0.0250277 0.237667 0.218038)
(0.0126306 0.243603 0.170704)
(-0.00297248 0.125546 0.072789)
(0.00386302 -0.0770699 -0.0183853)
(-0.0292935 -0.0577982 0.010914)
(-0.0946189 0.046056 0.0363442)
(-0.184559 0.223155 0.078344)
(-0.319419 0.398286 0.108801)
(-0.487321 0.588334 0.142411)
(-0.700777 0.755246 0.167431)
(-0.958741 0.907746 0.189341)
(-1.28869 0.946825 0.195166)
(-1.62812 0.902477 0.177038)
(-1.89151 0.822335 0.154633)
(-2.06758 0.730736 0.140103)
(-2.17361 0.64757 0.124713)
(-2.23678 0.563306 0.10879)
(-2.26129 0.48078 0.0935992)
(-2.27118 0.395479 0.083666)
(-2.26675 0.318626 0.0726184)
(-2.26952 0.23648 0.0570815)
(-2.23731 0.163767 0.0400466)
(-2.17795 0.0483262 0.0244949)
(-1.94301 -0.0376409 0.000848779)
(-1.71573 -0.19411 -0.0428232)
(-1.64372 -0.349489 -0.0464628)
(-1.61333 -0.513231 -0.0359434)
(-1.61592 -0.687101 -0.0239602)
(-1.60919 -0.889162 -0.0129147)
(-1.6071 -1.10471 0.00121696)
(-1.58027 -1.33002 0.0105881)
(-1.53772 -1.54306 0.0229912)
(-1.4527 -1.70953 0.0346847)
(-1.34161 -1.79608 0.0459516)
(-1.19983 -1.7602 0.0656461)
(-1.14146 -1.59467 0.0846569)
(-1.06138 -1.20225 0.136194)
(-0.748619 -0.805325 0.15606)
(-0.378099 -0.377253 0.188989)
(-0.130434 -0.0343697 0.231362)
(-0.0329745 0.175284 0.215619)
(-0.0140396 0.214983 0.173159)
(-0.00487711 0.106859 0.0709692)
(-0.00132952 -0.0542886 -0.0239763)
(-0.0575783 0.0183366 0.0107756)
(-0.155648 0.186531 0.0640924)
(-0.280669 0.398996 0.110364)
(-0.437625 0.617486 0.150636)
(-0.627155 0.821307 0.181567)
(-0.848619 0.987953 0.20884)
(-1.18215 1.02025 0.208405)
(-1.54036 0.93953 0.16393)
(-1.78123 0.866493 0.146084)
(-1.92716 0.803107 0.126601)
(-2.0103 0.733452 0.100036)
(-2.04589 0.647904 0.0697695)
(-2.04447 0.557003 0.0426983)
(-2.02721 0.46795 0.0203111)
(-2.0072 0.380046 0.00116515)
(-1.97952 0.303846 -0.0129668)
(-1.96061 0.227141 -0.0252993)
(-1.91744 0.161234 -0.0440087)
(-1.85568 0.0548701 -0.0582797)
(-1.64632 -0.0263366 -0.0871666)
(-1.44408 -0.179016 -0.141993)
(-1.39044 -0.328666 -0.131744)
(-1.37486 -0.492748 -0.119942)
(-1.39549 -0.661679 -0.102269)
(-1.414 -0.862568 -0.0852845)
(-1.44312 -1.08352 -0.0642405)
(-1.46222 -1.32669 -0.0422881)
(-1.47521 -1.57534 -0.0250362)
(-1.46206 -1.8063 -0.00788216)
(-1.41203 -1.98106 0.00810869)
(-1.31782 -2.03869 0.0231799)
(-1.20356 -1.97447 0.0435749)
(-1.16803 -1.68849 0.070062)
(-0.990546 -1.20539 0.106404)
(-0.586625 -0.698473 0.13785)
(-0.233127 -0.23278 0.166315)
(-0.0680551 0.0761439 0.181551)
(-0.0144302 0.165516 0.152308)
(-0.0015321 0.0846541 0.0600083)
(-0.00138986 -0.00302494 -0.0134243)
(-0.0771 0.126625 0.0322997)
(-0.207758 0.341683 0.093999)
(-0.350674 0.587843 0.151631)
(-0.525244 0.817105 0.189849)
(-0.728805 1.00187 0.221179)
(-1.06398 1.05023 0.206268)
(-1.40194 0.96797 0.158741)
(-1.62406 0.917733 0.142946)
(-1.76322 0.881312 0.113522)
(-1.83064 0.813327 0.0747354)
(-1.84722 0.7211 0.0325704)
(-1.83024 0.624798 -0.00460608)
(-1.79923 0.527954 -0.0361211)
(-1.76425 0.435396 -0.0605448)
(-1.73058 0.350281 -0.074055)
(-1.69386 0.280412 -0.0847117)
(-1.66423 0.211572 -0.0913671)
(-1.62012 0.155214 -0.106807)
(-1.55837 0.0635538 -0.115608)
(-1.37735 -0.00976165 -0.149767)
(-1.19933 -0.153994 -0.20348)
(-1.15162 -0.290413 -0.186264)
(-1.1457 -0.445345 -0.170049)
(-1.17112 -0.606553 -0.148967)
(-1.20057 -0.797381 -0.130066)
(-1.24327 -1.01288 -0.107751)
(-1.28564 -1.25848 -0.0862972)
(-1.33409 -1.52494 -0.0631868)
(-1.36913 -1.79343 -0.0373391)
(-1.38559 -2.03582 -0.0189959)
(-1.35675 -2.20135 0.00237877)
(-1.27484 -2.23146 0.0178358)
(-1.20485 -2.09398 0.0419699)
(-1.11469 -1.66938 0.0725188)
(-0.800401 -1.08589 0.109015)
(-0.344837 -0.496954 0.150663)
(-0.0858845 -0.033158 0.195118)
(-0.0112796 0.104931 0.152562)
(0.00546034 0.0714748 0.0671424)
(-0.00804263 0.0450288 -0.0154646)
(-0.0922893 0.221057 0.0437013)
(-0.230867 0.455215 0.116772)
(-0.39558 0.70264 0.174099)
(-0.596441 0.913337 0.206879)
(-0.903159 1.02826 0.199139)
(-1.22433 0.991548 0.164475)
(-1.44431 0.983511 0.145767)
(-1.58897 0.958875 0.107504)
(-1.64492 0.891762 0.0596052)
(-1.65038 0.796607 0.0058227)
(-1.62316 0.692646 -0.0459825)
(-1.58531 0.592236 -0.0868874)
(-1.54868 0.495086 -0.114815)
(-1.51512 0.40885 -0.13169)
(-1.484 0.328092 -0.135424)
(-1.44781 0.262572 -0.136923)
(-1.41347 0.199702 -0.134065)
(-1.37134 0.149933 -0.144356)
(-1.31563 0.0751926 -0.147092)
(-1.1564 0.0128824 -0.185481)
(-0.998414 -0.128225 -0.239199)
(-0.952732 -0.253262 -0.218697)
(-0.949326 -0.398721 -0.200276)
(-0.971964 -0.548131 -0.176763)
(-1.00335 -0.725189 -0.157332)
(-1.04743 -0.927037 -0.134985)
(-1.09846 -1.16277 -0.11408)
(-1.15982 -1.43118 -0.0907382)
(-1.22168 -1.71913 -0.0682814)
(-1.2788 -2.00936 -0.0411895)
(-1.3076 -2.25115 -0.021018)
(-1.28626 -2.39753 0.00217344)
(-1.21135 -2.37584 0.019823)
(-1.14332 -2.11039 0.0423793)
(-0.942669 -1.53623 0.0680533)
(-0.483047 -0.835285 0.103034)
(-0.140311 -0.25055 0.130736)
(-0.0338316 0.0528995 0.12863)
(0.0146246 0.0589564 0.0551215)
(-0.0124306 0.101877 -0.00073718)
(-0.111826 0.329007 0.0656221)
(-0.263176 0.562222 0.139934)
(-0.430741 0.785586 0.191483)
(-0.674961 0.963893 0.208884)
(-0.98595 1.01968 0.184305)
(-1.24688 1.04421 0.158538)
(-1.40154 1.03814 0.115978)
(-1.46502 0.976833 0.0599774)
(-1.46203 0.880052 -0.00512601)
(-1.43178 0.767655 -0.070591)
(-1.39217 0.66114 -0.122116)
(-1.35831 0.560677 -0.160061)
(-1.33006 0.46748 -0.179714)
(-1.30623 0.383791 -0.186202)
(-1.27931 0.30618 -0.17811)
(-1.24232 0.241847 -0.168127)
(-1.20211 0.185838 -0.158212)
(-1.15812 0.14277 -0.162045)
(-1.10105 0.0900026 -0.168128)
(-0.978933 0.0338863 -0.193852)
(-0.846409 -0.0962021 -0.251407)
(-0.792461 -0.216877 -0.230806)
(-0.789602 -0.351234 -0.210346)
(-0.804269 -0.489857 -0.185151)
(-0.832249 -0.649826 -0.164909)
(-0.871456 -0.83455 -0.143184)
(-0.921878 -1.05251 -0.124117)
(-0.985967 -1.30954 -0.103492)
(-1.05896 -1.60102 -0.082113)
(-1.13503 -1.91696 -0.058888)
(-1.20255 -2.22238 -0.0326564)
(-1.23293 -2.4606 -0.00930137)
(-1.20351 -2.56375 0.0108527)
(-1.12276 -2.44828 0.0328012)
(-0.995925 -2.00112 0.0477432)
(-0.66754 -1.25237 0.0768684)
(-0.208103 -0.523111 0.102496)
(-0.026425 -0.0337129 0.130577)
(-0.00349297 0.0407537 0.0596666)
(-0.0153543 0.169201 0.00842705)
(-0.123558 0.448612 0.0837169)
(-0.28073 0.689586 0.158256)
(-0.458916 0.903617 0.204464)
(-0.730945 1.04732 0.206685)
(-1.01378 1.09384 0.177419)
(-1.203 1.11187 0.136718)
(-1.28408 1.06906 0.0768866)
(-1.28826 0.975141 0.00281918)
(-1.25475 0.855752 -0.0748808)
(-1.21677 0.738203 -0.140546)
(-1.1826 0.630444 -0.190067)
(-1.16164 0.535213 -0.221547)
(-1.14753 0.445545 -0.231744)
(-1.13485 0.366291 -0.228092)
(-1.11313 0.288166 -0.205323)
(-1.07344 0.22507 -0.186499)
(-1.02395 0.17242 -0.167723)
(-0.971777 0.133391 -0.169278)
(-0.924492 0.0997993 -0.177374)
(-0.835788 0.0446933 -0.198239)
(-0.729052 -0.0690158 -0.243534)
(-0.675022 -0.189853 -0.232206)
(-0.666376 -0.314841 -0.209346)
(-0.672728 -0.444026 -0.183858)
(-0.692795 -0.587988 -0.162896)
(-0.723094 -0.753879 -0.141501)
(-0.765541 -0.949507 -0.124142)
(-0.8238 -1.18623 -0.105734)
(-0.895496 -1.46609 -0.0887505)
(-0.979181 -1.78744 -0.0681444)
(-1.06168 -2.12732 -0.046034)
(-1.1302 -2.44435 -0.0187356)
(-1.14465 -2.66005 0.00505608)
(-1.09095 -2.68364 0.0237074)
(-0.976109 -2.40405 0.0381946)
(-0.752669 -1.7163 0.0477597)
(-0.321473 -0.810741 0.0742638)
(-0.0464056 -0.153571 0.0950543)
(-0.0096471 0.0263821 0.0470639)
(-0.014947 0.238977 0.0255575)
(-0.126083 0.571803 0.108108)
(-0.284369 0.821295 0.180915)
(-0.480572 1.02603 0.219548)
(-0.750165 1.13145 0.20877)
(-0.974629 1.17471 0.173011)
(-1.09723 1.16163 0.11313)
(-1.12146 1.07876 0.031998)
(-1.097 0.956896 -0.0554312)
(-1.05683 0.824904 -0.135474)
(-1.02328 0.707162 -0.20097)
(-1.0028 0.604376 -0.24525)
(-0.998771 0.513529 -0.270825)
(-0.998345 0.427842 -0.273226)
(-0.996718 0.347007 -0.257301)
(-0.978191 0.267205 -0.223287)
(-0.930282 0.196757 -0.187973)
(-0.871262 0.147464 -0.167388)
(-0.80519 0.114572 -0.168566)
(-0.76137 0.0994578 -0.187432)
(-0.715188 0.0584539 -0.206041)
(-0.642709 -0.051838 -0.228254)
(-0.589501 -0.169178 -0.222241)
(-0.575099 -0.288495 -0.200218)
(-0.571841 -0.409355 -0.17382)
(-0.583979 -0.538392 -0.152979)
(-0.604233 -0.686993 -0.131274)
(-0.636503 -0.859489 -0.115347)
(-0.684098 -1.07187 -0.0989091)
(-0.747114 -1.32986 -0.0848956)
(-0.827099 -1.6419 -0.0683669)
(-0.914645 -1.99493 -0.0487696)
(-0.99983 -2.36104 -0.025308)
(-1.05261 -2.67219 0.00295598)
(-1.0403 -2.8361 0.0248255)
(-0.942089 -2.71496 0.0395315)
(-0.762264 -2.18167 0.0439472)
(-0.404866 -1.20564 0.0508609)
(-0.0750631 -0.338332 0.0740288)
(-0.0247623 -0.00443282 0.0504244)
(-0.0116444 0.302341 0.0391689)
(-0.117193 0.68708 0.127459)
(-0.274005 0.948023 0.198497)
(-0.486333 1.13108 0.227476)
(-0.726792 1.21711 0.211114)
(-0.889403 1.24491 0.162057)
(-0.961443 1.18882 0.0841169)
(-0.951631 1.07144 -0.0103967)
(-0.915718 0.927932 -0.105823)
(-0.876717 0.794609 -0.186427)
(-0.85652 0.680359 -0.247972)
(-0.851247 0.582228 -0.287935)
(-0.862747 0.495755 -0.309678)
(-0.876589 0.408752 -0.302123)
(-0.885283 0.327161 -0.279313)
(-0.872027 0.23714 -0.220891)
(-0.813521 0.166485 -0.182047)
(-0.731557 0.116946 -0.152545)
(-0.645241 0.0898497 -0.161718)
(-0.605233 0.0966335 -0.202024)
(-0.612718 0.0706328 -0.223453)
(-0.580966 -0.0411151 -0.210361)
(-0.528907 -0.153369 -0.202116)
(-0.509927 -0.272658 -0.18603)
(-0.497005 -0.388389 -0.159763)
(-0.500737 -0.505582 -0.140275)
(-0.51236 -0.639013 -0.118072)
(-0.533358 -0.79026 -0.103637)
(-0.56922 -0.977901 -0.0883569)
(-0.619135 -1.20906 -0.0770608)
(-0.688062 -1.49904 -0.0628221)
(-0.770693 -1.84587 -0.0463829)
(-0.859183 -2.23563 -0.0243543)
(-0.933553 -2.6137 0.00104656)
(-0.960237 -2.89751 0.0264546)
(-0.903248 -2.93745 0.0419986)
(-0.743078 -2.57641 0.0426729)
(-0.468316 -1.65618 0.0354857)
(-0.10721 -0.581591 0.0374563)
(-0.00534972 -0.0612642 0.03145)
(-0.00661431 0.359721 0.0563269)
(-0.0987666 0.796459 0.150591)
(-0.259447 1.06604 0.218119)
(-0.467258 1.22194 0.241231)
(-0.664642 1.30359 0.216087)
(-0.780435 1.29969 0.153337)
(-0.81517 1.20043 0.0609909)
(-0.787325 1.05692 -0.0465976)
(-0.750935 0.902445 -0.145072)
(-0.721477 0.768126 -0.222465)
(-0.715251 0.65719 -0.280074)
(-0.723132 0.56331 -0.317059)
(-0.750434 0.476803 -0.334284)
(-0.775034 0.388177 -0.321515)
(-0.796681 0.299559 -0.280438)
(-0.782225 0.202912 -0.210974)
(-0.702997 0.118332 -0.13641)
(-0.60532 0.0704504 -0.129913)
(-0.486836 0.0570367 -0.149973)
(-0.444826 0.0919366 -0.233841)
(-0.520124 0.0775516 -0.258494)
(-0.536902 -0.0400049 -0.197486)
(-0.486637 -0.140533 -0.170711)
(-0.466096 -0.25511 -0.164121)
(-0.441681 -0.37596 -0.139924)
(-0.438056 -0.483732 -0.124671)
(-0.442098 -0.60686 -0.102069)
(-0.454358 -0.739343 -0.0885983)
(-0.479562 -0.903861 -0.0739239)
(-0.516008 -1.10801 -0.063844)
(-0.570857 -1.37095 -0.0510816)
(-0.640869 -1.69961 -0.0370448)
(-0.726955 -2.09479 -0.017736)
(-0.810349 -2.51792 0.00356075)
(-0.866968 -2.89743 0.0330916)
(-0.85288 -3.08534 0.0514133)
(-0.723235 -2.89386 0.0547602)
(-0.48778 -2.10173 0.0417283)
(-0.131774 -0.864476 0.0280871)
(0.00369407 -0.125048 0.0291312)
(0.000283879 0.395105 0.0670132)
(-0.0785692 0.885456 0.165566)
(-0.239889 1.158 0.230751)
(-0.42838 1.30295 0.248895)
(-0.581959 1.3736 0.213705)
(-0.667478 1.33407 0.137665)
(-0.675897 1.20199 0.0301315)
(-0.639743 1.03874 -0.0803835)
(-0.610937 0.877365 -0.17476)
(-0.59076 0.743595 -0.246109)
(-0.59457 0.636035 -0.298766)
(-0.613941 0.544588 -0.331369)
(-0.653706 0.455926 -0.346692)
(-0.691588 0.362707 -0.320035)
(-0.723687 0.264775 -0.275727)
(-0.718675 0.160428 -0.162619)
(-0.616329 0.0920503 -0.122629)
(-0.468294 0.0997591 -0.100168)
(-0.318302 0.110828 -0.10089)
(-0.293427 0.149028 -0.230867)
(-0.44792 0.124838 -0.31408)
(-0.502755 -0.0347067 -0.191657)
(-0.443093 -0.134347 -0.136938)
(-0.437065 -0.227385 -0.125067)
(-0.40454 -0.352769 -0.112862)
(-0.388761 -0.468857 -0.106202)
(-0.388791 -0.585375 -0.0852443)
(-0.391282 -0.70455 -0.0739373)
(-0.409332 -0.849369 -0.0587453)
(-0.434729 -1.02736 -0.0497842)
(-0.475603 -1.26111 -0.0385175)
(-0.532258 -1.56568 -0.027793)
(-0.608962 -1.9538 -0.0126808)
(-0.693855 -2.39981 0.0067927)
(-0.764924 -2.84961 0.0338801)
(-0.787807 -3.16814 0.0610981)
(-0.692453 -3.14012 0.0647085)
(-0.489981 -2.49766 0.0512131)
(-0.148672 -1.1991 0.0241793)
(0.0236683 -0.168207 0.0206623)
(0.00876088 0.428541 0.0807488)
(-0.059489 0.969778 0.184622)
(-0.209255 1.24925 0.249982)
(-0.368206 1.39646 0.260357)
(-0.489154 1.44352 0.21504)
(-0.550691 1.37103 0.126712)
(-0.547344 1.21357 0.00770422)
(-0.514452 1.03252 -0.101752)
(-0.492101 0.863517 -0.190474)
(-0.478685 0.728441 -0.254241)
(-0.489523 0.620425 -0.300572)
(-0.518314 0.528929 -0.329237)
(-0.572216 0.435026 -0.339534)
(-0.622109 0.332625 -0.303045)
(-0.669103 0.235406 -0.246053)
(-0.635872 0.142204 -0.136646)
(-0.442808 0.143977 0.00799906)
(-0.274328 0.167733 0.145555)
(-0.207361 0.220874 0.160551)
(-0.266705 0.243491 -0.166205)
(-0.484415 0.185985 -0.409263)
(-0.516386 -0.0319639 -0.198607)
(-0.398301 -0.142163 -0.100215)
(-0.400106 -0.208947 -0.0956921)
(-0.389594 -0.313959 -0.0664744)
(-0.360809 -0.431858 -0.0806717)
(-0.345423 -0.565644 -0.0647827)
(-0.342778 -0.677922 -0.0560872)
(-0.353401 -0.806445 -0.0415296)
(-0.368866 -0.963551 -0.0335738)
(-0.399268 -1.17102 -0.0244981)
(-0.445441 -1.45201 -0.0172554)
(-0.512497 -1.82191 -0.00666557)
(-0.594203 -2.28078 0.011628)
(-0.67028 -2.78217 0.0396029)
(-0.713975 -3.21175 0.0714306)
(-0.652898 -3.33861 0.0803196)
(-0.477779 -2.8608 0.0674765)
(-0.157447 -1.56106 0.031496)
(0.0501484 -0.238184 0.0179721)
(0.0121607 0.42966 0.0857078)
(-0.0412579 1.01589 0.195194)
(-0.169648 1.32607 0.256972)
(-0.303116 1.46879 0.262294)
(-0.400585 1.49387 0.208042)
(-0.447427 1.39224 0.110139)
(-0.440986 1.21618 -0.0105141)
(-0.414307 1.02361 -0.119558)
(-0.398958 0.850846 -0.199379)
(-0.387261 0.714966 -0.2533)
(-0.39866 0.604686 -0.291012)
(-0.433919 0.512337 -0.314745)
(-0.502732 0.410701 -0.316566)
(-0.558768 0.316564 -0.264936)
(-0.602905 0.207577 -0.183952)
(-0.509119 0.230188 -0.0114403)
(-0.280091 0.249926 0.316105)
(-0.0630425 0.297331 0.611869)
(-0.0718578 0.331955 0.510406)
(-0.301012 0.297118 -0.0934863)
(-0.557938 0.184201 -0.503061)
(-0.520755 -0.0503076 -0.183359)
(-0.347817 -0.165084 -0.0464993)
(-0.336932 -0.212417 -0.0652927)
(-0.352401 -0.293298 -0.0344995)
(-0.353393 -0.37828 -0.0436171)
(-0.330327 -0.505709 -0.0381705)
(-0.298896 -0.635685 -0.0368225)
(-0.306596 -0.76703 -0.0233794)
(-0.317552 -0.906223 -0.0161826)
(-0.340279 -1.08665 -0.0093055)
(-0.372367 -1.34061 -0.00727322)
(-0.428444 -1.68955 -0.000852252)
(-0.506928 -2.15301 0.0157509)
(-0.587892 -2.68999 0.0439919)
(-0.647324 -3.21852 0.0786152)
(-0.616939 -3.49279 0.0951774)
(-0.468017 -3.17446 0.0856775)
(-0.174489 -1.904 0.0437796)
(0.0576358 -0.288239 0.0187268)
(0.00988006 0.448152 0.0951897)
(-0.0107858 1.08937 0.210652)
(-0.117476 1.4316 0.274512)
(-0.241815 1.57169 0.271996)
(-0.314505 1.57312 0.209615)
(-0.35133 1.45322 0.103064)
(-0.344814 1.26009 -0.0195315)
(-0.327084 1.05856 -0.126813)
(-0.313318 0.877219 -0.196917)
(-0.300086 0.736897 -0.240341)
(-0.309207 0.613176 -0.266242)
(-0.353562 0.508033 -0.281475)
(-0.427827 0.400256 -0.273543)
(-0.503853 0.323492 -0.180426)
(-0.470775 0.264734 -0.0940876)
(-0.355268 0.358001 0.19023)
(-0.0978802 0.443025 0.762847)
(0.219711 0.52777 0.986929)
(0.0830531 0.500081 0.711526)
(-0.363549 0.349461 -0.0797396)
(-0.608082 0.173054 -0.530223)
(-0.474998 -0.0734175 -0.114865)
(-0.289944 -0.189733 0.0446045)
(-0.262149 -0.219159 -0.0247706)
(-0.288052 -0.287043 -0.00119911)
(-0.302502 -0.345109 -0.0214989)
(-0.321726 -0.43132 -0.00758407)
(-0.301211 -0.546481 -0.00795253)
(-0.278511 -0.680447 -0.00134506)
(-0.266344 -0.833636 0.00302693)
(-0.282867 -1.01267 0.00559231)
(-0.309515 -1.24479 0.00370503)
(-0.357292 -1.56087 0.00487718)
(-0.424441 -2.01527 0.0202386)
(-0.503271 -2.58388 0.0502314)
(-0.575309 -3.20456 0.0873369)
(-0.571051 -3.62575 0.112246)
(-0.447953 -3.4786 0.105282)
(-0.178894 -2.27129 0.0603621)
(0.0639153 -0.396415 0.0193418)
(0.00665877 0.454662 0.0908747)
(-0.018581 1.16782 0.212162)
(-0.0771132 1.52857 0.273873)
(-0.167909 1.68014 0.276744)
(-0.230646 1.66763 0.207432)
(-0.254714 1.53346 0.0982603)
(-0.254944 1.33228 -0.0244589)
(-0.246035 1.12565 -0.127114)
(-0.234616 0.939794 -0.18801)
(-0.225584 0.790951 -0.225232)
(-0.242617 0.654242 -0.235098)
(-0.286753 0.535589 -0.238371)
(-0.345959 0.436504 -0.198526)
(-0.382227 0.379458 -0.083436)
(-0.324674 0.37142 0.062683)
(-0.18618 0.48462 0.494359)
(0.0929579 0.737166 1.1097)
(0.47684 0.846813 1.33089)
(0.266535 0.747501 0.899639)
(-0.374942 0.446624 0.0296188)
(-0.599311 0.166709 -0.497337)
(-0.403637 -0.0825094 -0.00813903)
(-0.219174 -0.206827 0.177556)
(-0.169934 -0.219468 0.031739)
(-0.214412 -0.278741 0.0408556)
(-0.233423 -0.3295 0.0006259)
(-0.264574 -0.39094 0.00711777)
(-0.27236 -0.463917 0.00718668)
(-0.288308 -0.56491 0.0180914)
(-0.280162 -0.700376 0.0212149)
(-0.267108 -0.864208 0.0227244)
(-0.256089 -1.0939 0.0182889)
(-0.282953 -1.40976 0.0153751)
(-0.34319 -1.85826 0.0262081)
(-0.425917 -2.42951 0.0519382)
(-0.507782 -3.12687 0.096885)
(-0.536082 -3.69315 0.127948)
(-0.450743 -3.72596 0.126991)
(-0.212306 -2.60466 0.0821241)
(0.0474138 -0.450939 0.0280718)
(0.00655622 0.622477 0.123108)
(0.0135626 1.39492 0.247456)
(-0.0306185 1.78667 0.310741)
(-0.0864754 1.91149 0.295947)
(-0.126499 1.89616 0.227627)
(-0.163796 1.75341 0.114328)
(-0.170598 1.54933 -0.0100672)
(-0.176666 1.34938 -0.11056)
(-0.170833 1.16109 -0.168317)
(-0.163716 0.986351 -0.203332)
(-0.175395 0.832013 -0.191692)
(-0.204091 0.691189 -0.175754)
(-0.241021 0.575441 -0.0772851)
(-0.272573 0.501935 0.0796001)
(-0.160993 0.443217 0.317548)
(0.0943434 0.604043 0.773763)
(0.311561 1.04996 1.21908)
(0.55209 1.35622 1.45329)
(0.448863 1.20909 1.27106)
(-0.175855 0.615326 0.375814)
(-0.469822 0.167016 -0.353276)
(-0.30317 -0.0729461 0.154907)
(-0.142468 -0.188045 0.345996)
(-0.0668384 -0.20837 0.111149)
(-0.133832 -0.264393 0.092725)
(-0.15639 -0.306512 0.030313)
(-0.196746 -0.365593 0.0302208)
(-0.212123 -0.430578 0.0243149)
(-0.236079 -0.499638 0.028915)
(-0.244649 -0.588177 0.0295572)
(-0.263199 -0.701963 0.028006)
(-0.275924 -0.886222 0.0215916)
(-0.290313 -1.15999 0.0157305)
(-0.28742 -1.5886 0.0328065)
(-0.327995 -2.20022 0.0614037)
(-0.41442 -2.96874 0.104003)
(-0.46403 -3.67223 0.141381)
(-0.423328 -3.92111 0.143206)
(-0.212735 -2.97518 0.0994228)
(0.056185 -0.640396 0.0316958)
(-0.0241395 0.777551 0.134839)
(-0.0196185 1.63174 0.265129)
(-0.0199298 2.05551 0.329894)
(-0.0487841 2.18511 0.318003)
(-0.0585021 2.13522 0.237503)
(-0.0789045 1.9778 0.112411)
(-0.090728 1.76901 -0.0101847)
(-0.111108 1.57019 -0.103331)
(-0.13383 1.39317 -0.156079)
(-0.13829 1.20403 -0.177668)
(-0.148303 1.03985 -0.145846)
(-0.174813 0.887109 -0.114573)
(-0.196433 0.752265 0.0206205)
(-0.22864 0.676641 0.222844)
(-0.0230678 0.607402 0.563309)
(0.448791 0.772513 1.02049)
(0.618188 1.22391 1.01377)
(0.449931 1.76285 0.685611)
(0.344258 1.87322 0.956799)
(-0.242526 1.09597 0.897525)
(-0.503131 0.332919 0.142785)
(-0.228533 0.0386429 0.386414)
(-0.0563322 -0.0939903 0.537408)
(0.026467 -0.163172 0.189052)
(-0.0441689 -0.221395 0.123411)
(-0.0782306 -0.279656 0.0515776)
(-0.137782 -0.333673 0.0437735)
(-0.156102 -0.400611 0.032899)
(-0.185252 -0.462197 0.0372555)
(-0.192007 -0.537914 0.0387004)
(-0.204368 -0.618075 0.0374415)
(-0.215659 -0.739854 0.0313831)
(-0.256528 -0.921873 0.0206387)
(-0.327556 -1.26803 0.0177595)
(-0.379325 -1.81624 0.0313166)
(-0.387923 -2.61224 0.104362)
(-0.429596 -3.45039 0.146051)
(-0.427776 -3.93408 0.159387)
(-0.263506 -3.25499 0.119547)
(0.0109843 -0.959614 0.046462)
(-0.0261079 0.729283 0.122145)
(-0.0111152 1.63942 0.260938)
(0.0106969 2.10319 0.327169)
(-0.000446028 2.25862 0.317365)
(0.00325566 2.21876 0.240303)
(-0.0130952 2.05104 0.116761)
(-0.0268001 1.84056 -0.00626195)
(-0.0374922 1.63278 -0.0998893)
(-0.0719337 1.46769 -0.144874)
(-0.100808 1.30533 -0.157307)
(-0.100079 1.14893 -0.119601)
(-0.115346 1.01079 -0.0793765)
(-0.10466 0.895569 0.0629747)
(-0.133085 0.836096 0.243453)
(0.157154 0.854394 0.552881)
(0.767616 1.03537 0.969865)
(0.919594 1.24467 0.672356)
(0.551359 1.58227 -0.83763)
(0.516897 1.89391 -1.77476)
(-0.244091 1.47134 -0.675975)
(-0.783373 0.574754 0.349337)
(-0.331627 0.231241 0.663249)
(-0.0398138 0.059767 0.681922)
(0.0831168 -0.0842961 0.257442)
(0.0220334 -0.144192 0.13545)
(-0.00967575 -0.237729 0.0606152)
(-0.0697914 -0.298562 0.047283)
(-0.0994918 -0.372338 0.0404853)
(-0.128554 -0.432638 0.0402132)
(-0.137457 -0.505162 0.0446393)
(-0.150885 -0.577437 0.0451026)
(-0.153847 -0.684783 0.0400165)
(-0.17462 -0.827046 0.0302015)
(-0.21135 -1.08714 0.0266282)
(-0.324182 -1.49373 0.0264615)
(-0.409708 -2.19113 0.0626659)
(-0.447772 -3.03782 0.140388)
(-0.469603 -3.67944 0.155724)
(-0.360538 -3.2624 0.127045)
(-0.0748999 -1.03578 0.050308)
(-0.00959568 0.716967 0.115943)
(0.0129246 1.61586 0.243961)
(0.0396161 2.08955 0.311683)
(0.0434929 2.26796 0.307955)
(0.0506195 2.24107 0.236602)
(0.039213 2.08686 0.118331)
(0.0255712 1.88804 -0.00354881)
(0.0100769 1.68661 -0.0980241)
(-0.0136337 1.50955 -0.147268)
(-0.0434378 1.36523 -0.155433)
(-0.0550347 1.2258 -0.127407)
(-0.0562568 1.08891 -0.0913734)
(-0.0215693 0.968425 0.0316373)
(0.0237826 0.874892 0.136663)
(0.408111 0.960627 0.316399)
(0.960772 1.10333 0.519426)
(0.877229 1.21304 0.071426)
(0.342379 1.30718 -1.8553)
(0.672374 1.22274 -4.74142)
(0.259328 1.04569 -4.21374)
(-0.672382 0.570473 -0.789838)
(-0.496789 0.257552 0.844468)
(-0.0884999 0.100101 0.732632)
(0.0896083 -0.0284667 0.297131)
(0.074466 -0.0809298 0.123342)
(0.027333 -0.182444 0.0530481)
(-0.0234701 -0.258718 0.0323147)
(-0.0514511 -0.343247 0.0361805)
(-0.0819395 -0.407825 0.043579)
(-0.0908982 -0.481387 0.0518429)
(-0.102736 -0.546839 0.0530888)
(-0.103599 -0.641881 0.0489011)
(-0.124643 -0.763299 0.0372098)
(-0.151698 -0.989794 0.0324624)
(-0.230071 -1.34552 0.0343935)
(-0.314253 -1.91309 0.0689452)
(-0.393799 -2.67115 0.134098)
(-0.445884 -3.38609 0.159424)
(-0.37205 -3.181 0.130872)
(-0.117421 -1.09069 0.0532751)
(-0.00532585 0.671645 0.10308)
(0.0340949 1.54209 0.224416)
(0.0740104 2.03784 0.292242)
(0.0866286 2.23726 0.293379)
(0.096848 2.23138 0.228616)
(0.0896439 2.09485 0.11573)
(0.0775786 1.91017 -0.00268643)
(0.0602336 1.71592 -0.0986461)
(0.0380559 1.5423 -0.150648)
(0.0129035 1.38638 -0.167803)
(0.00477518 1.24796 -0.14843)
(-0.0036146 1.11289 -0.120676)
(0.0316411 0.966255 -0.0132442)
(0.171554 0.842895 0.10917)
(0.556216 0.8515 0.272099)
(0.865873 0.932315 0.150174)
(0.434466 1.2426 -0.805724)
(-0.276833 1.43883 -2.50438)
(0.0436531 0.814559 -4.60379)
(0.165309 0.304791 -4.2904)
(-0.451599 0.177374 -1.43713)
(-0.503061 0.0225374 0.463909)
(-0.0699388 0.0234201 0.61055)
(0.137513 0.022105 0.257609)
(0.139189 -0.0108036 0.0955611)
(0.0709424 -0.11747 0.0319298)
(0.0153471 -0.210891 0.0119118)
(-0.0119375 -0.308215 0.022356)
(-0.0329976 -0.380586 0.0380824)
(-0.0380341 -0.457574 0.0515194)
(-0.0485925 -0.523459 0.0560772)
(-0.0458696 -0.616535 0.0534525)
(-0.0625423 -0.726386 0.0426667)
(-0.0805552 -0.927526 0.0359039)
(-0.1447 -1.23536 0.0416132)
(-0.219626 -1.76275 0.077994)
(-0.321036 -2.47364 0.133659)
(-0.401984 -3.24578 0.159057)
(-0.362551 -3.22305 0.135414)
(-0.138091 -1.31248 0.0572835)
(0.000268087 0.620466 0.0879069)
(0.0525815 1.46205 0.201388)
(0.104656 1.97369 0.270092)
(0.127023 2.19727 0.276578)
(0.140867 2.21134 0.218999)
(0.137415 2.09272 0.112776)
(0.126369 1.91782 -0.00406763)
(0.106667 1.72945 -0.0994045)
(0.087532 1.55578 -0.157274)
(0.0625279 1.39749 -0.177892)
(0.0515474 1.24742 -0.162723)
(0.0298827 1.0984 -0.131273)
(0.0663021 0.942857 -0.00898518)
(0.225796 0.79222 0.169047)
(0.558029 0.680036 0.36868)
(0.701662 0.663091 0.109824)
(0.0278265 1.08633 -1.28211)
(-0.785173 1.45884 -3.01049)
(-0.841306 0.824748 -3.36233)
(-0.500421 -0.0171542 -1.93036)
(-0.299273 -0.318299 -0.694939)
(-0.233038 -0.2208 -0.0565744)
(0.0122819 -0.0161393 0.191422)
(0.230454 0.0747904 -0.00856861)
(0.203516 0.0248225 -0.0932399)
(0.0836398 -0.0760966 -0.0530553)
(0.0300669 -0.182897 -0.0334473)
(0.0134635 -0.281314 0.000261763)
(-0.0021537 -0.355853 0.0275762)
(-0.00468123 -0.435842 0.0481061)
(-0.0165167 -0.501249 0.0563812)
(-0.0140215 -0.589909 0.0562173)
(-0.0327749 -0.687638 0.0472017)
(-0.0412766 -0.870684 0.0437225)
(-0.0914211 -1.15681 0.0526712)
(-0.149018 -1.66913 0.093881)
(-0.254475 -2.38405 0.14501)
(-0.345137 -3.22492 0.173387)
(-0.341398 -3.35123 0.150109)
(-0.136793 -1.55179 0.0708208)
(0.00233275 0.563561 0.0746141)
(0.065261 1.3691 0.17973)
(0.129922 1.8993 0.249808)
(0.162477 2.15094 0.261996)
(0.182289 2.18831 0.212615)
(0.183467 2.08703 0.114451)
(0.174769 1.92024 -7.21584e-05)
(0.154599 1.7367 -0.0937503)
(0.13598 1.5621 -0.155116)
(0.109103 1.39819 -0.179575)
(0.0928147 1.24301 -0.165118)
(0.0658511 1.08356 -0.127151)
(0.0856072 0.934412 0.00872076)
(0.231338 0.756253 0.209624)
(0.524585 0.580047 0.417506)
(0.631162 0.37716 0.288001)
(0.12199 0.581227 -0.714252)
(-0.503605 0.806393 -2.25763)
(-0.81 0.385032 -2.45479)
(-0.677569 -0.305016 -0.956449)
(-0.281465 -0.578283 -0.0984487)
(-0.0992127 -0.321153 -0.158558)
(0.138157 -0.0284701 -0.153391)
(0.345866 0.0448756 -0.221332)
(0.255163 -0.0310395 -0.216096)
(0.116608 -0.108548 -0.136956)
(0.0527258 -0.187156 -0.076889)
(0.0490916 -0.277622 -0.0235169)
(0.0415752 -0.346901 0.0126994)
(0.0445328 -0.418732 0.0398067)
(0.0354427 -0.47953 0.0530569)
(0.040782 -0.568229 0.0560519)
(0.0200465 -0.662026 0.0471687)
(0.0087662 -0.837082 0.0376591)
(-0.0361754 -1.10597 0.0458425)
(-0.080955 -1.62827 0.0968243)
(-0.195675 -2.37607 0.148471)
(-0.296429 -3.32088 0.18058)
(-0.331487 -3.61077 0.159435)
(-0.140745 -1.87137 0.0742062)
(0.00670796 0.501153 0.0594147)
(0.0782645 1.26043 0.156809)
(0.152539 1.80425 0.228015)
(0.193481 2.08526 0.247121)
(0.219521 2.14829 0.206862)
(0.224298 2.06619 0.118499)
(0.219026 1.90992 0.00921627)
(0.19992 1.73238 -0.0823625)
(0.179786 1.55816 -0.145772)
(0.151741 1.39314 -0.173236)
(0.129189 1.23832 -0.159928)
(0.101132 1.07908 -0.119862)
(0.107174 0.937182 0.00123387)
(0.213038 0.763362 0.195423)
(0.430527 0.554471 0.396721)
(0.58984 0.237603 0.43066)
(0.369778 0.120331 0.103507)
(0.0311688 -0.00259917 -0.628981)
(-0.15609 -0.400174 -0.955725)
(-0.195226 -0.604121 -0.451389)
(-0.0484138 -0.54024 -0.0297092)
(0.127734 -0.298034 -0.0693874)
(0.34954 -0.0169444 -0.188172)
(0.451046 -0.0153906 -0.253116)
(0.317251 -0.102043 -0.231787)
(0.183359 -0.180134 -0.160755)
(0.106869 -0.231547 -0.104163)
(0.0902969 -0.300708 -0.04308)
(0.088381 -0.370588 0.00310651)
(0.0961377 -0.451286 0.0370923)
(0.0762845 -0.536749 0.0550436)
(0.072513 -0.654294 0.0618408)
(0.0489612 -0.770679 0.0546514)
(0.0385991 -0.961785 0.0526383)
(-0.015546 -1.22089 0.0422532)
(-0.049108 -1.74568 0.104023)
(-0.159681 -2.51843 0.158324)
(-0.255031 -3.5836 0.197764)
(-0.297771 -4.07133 0.182203)
(-0.128002 -2.46166 0.0959141)
(0.0101047 0.446288 0.0507016)
(0.089551 1.15152 0.136083)
(0.171574 1.70635 0.208999)
(0.218391 2.02048 0.234686)
(0.251269 2.11337 0.204675)
(0.262282 2.05395 0.126719)
(0.262749 1.91128 0.0252038)
(0.24702 1.73985 -0.0647765)
(0.227398 1.56757 -0.130218)
(0.200474 1.40279 -0.160811)
(0.174211 1.25096 -0.152903)
(0.147574 1.09806 -0.112774)
(0.140387 0.961425 -0.0140843)
(0.203954 0.801727 0.154597)
(0.342452 0.607135 0.353598)
(0.468968 0.31507 0.487869)
(0.461346 0.0547949 0.44135)
(0.393706 -0.18497 0.312656)
(0.309309 -0.501595 0.231292)
(0.251407 -0.525845 0.188238)
(0.325808 -0.32614 0.0860271)
(0.487353 -0.145866 -0.0968445)
(0.584418 -0.0261542 -0.137151)
(0.517003 -0.0644921 -0.183719)
(0.356694 -0.154065 -0.169475)
(0.246571 -0.22779 -0.120992)
(0.180989 -0.265728 -0.0843632)
(0.151847 -0.311843 -0.039381)
(0.130712 -0.373431 0.0035271)
(0.118965 -0.483401 0.032006)
(0.0736965 -0.586897 0.0477803)
(0.0652426 -0.727028 0.0520055)
(0.0347866 -0.844609 0.0487495)
(0.0381502 -1.03159 0.046187)
(-0.0117106 -1.27638 0.0420456)
(-0.0367063 -1.79433 0.0957128)
(-0.149229 -2.59147 0.160296)
(-0.245404 -3.79243 0.2027)
(-0.31232 -4.51103 0.194882)
(-0.150092 -3.1025 0.109947)
(0.0116425 0.389727 0.0409875)
(0.101656 1.02656 0.115393)
(0.195625 1.57586 0.18465)
(0.242064 1.9219 0.220468)
(0.277094 2.04715 0.201339)
(0.294292 2.01375 0.135231)
(0.301143 1.88813 0.0420472)
(0.290507 1.72755 -0.0448741)
(0.272837 1.56114 -0.111717)
(0.249374 1.40087 -0.146438)
(0.22332 1.25565 -0.144457)
(0.197603 1.11458 -0.10968)
(0.184068 0.986963 -0.0305697)
(0.219919 0.848404 0.10107)
(0.302871 0.691549 0.274911)
(0.417228 0.478388 0.433486)
(0.485534 0.271924 0.447288)
(0.489836 0.0616548 0.432665)
(0.469492 -0.13304 0.481119)
(0.489183 -0.139537 0.393196)
(0.601633 -0.0747104 0.187493)
(0.701916 -0.0173181 0.00484337)
(0.705417 -0.0354241 -0.0714888)
(0.593981 -0.102627 -0.117185)
(0.421833 -0.156186 -0.103216)
(0.332658 -0.205363 -0.0617469)
(0.276821 -0.233685 -0.0408655)
(0.233304 -0.27187 -0.0200836)
(0.165828 -0.350693 0.00137973)
(0.132548 -0.463503 0.0199827)
(0.0881213 -0.55522 0.0354319)
(0.0872656 -0.684368 0.0454638)
(0.0611035 -0.78008 0.0489716)
(0.0578325 -0.977708 0.0421524)
(-0.00917617 -1.17603 0.0372913)
(-0.0199272 -1.68061 0.0927581)
(-0.13802 -2.46786 0.161006)
(-0.237947 -3.77852 0.20981)
(-0.332413 -4.72655 0.206513)
(-0.17749 -3.58007 0.122876)
(0.00621665 0.350592 0.0334735)
(0.0960376 0.93076 0.100021)
(0.212386 1.45382 0.160571)
(0.267542 1.82867 0.204818)
(0.297925 1.99094 0.198756)
(0.320807 1.98852 0.144714)
(0.339161 1.88448 0.0609974)
(0.3392 1.73263 -0.0231147)
(0.326562 1.57181 -0.0917239)
(0.309871 1.41487 -0.132645)
(0.288668 1.27495 -0.140676)
(0.266743 1.14463 -0.117037)
(0.249718 1.03032 -0.056641)
(0.272697 0.915604 0.041678)
(0.327923 0.786737 0.172619)
(0.418899 0.64217 0.314154)
(0.511747 0.470716 0.358216)
(0.553809 0.305383 0.350896)
(0.58431 0.172457 0.344008)
(0.62689 0.128244 0.264363)
(0.727202 0.0762428 0.144842)
(0.820862 0.0460298 0.0121704)
(0.786436 -0.00830612 -0.0686609)
(0.675502 -0.0752257 -0.141299)
(0.524634 -0.101256 -0.130088)
(0.431588 -0.131842 -0.0802108)
(0.375669 -0.158799 -0.0394282)
(0.295241 -0.204382 -0.0226285)
(0.201342 -0.298937 -0.0103423)
(0.184498 -0.395416 0.0101296)
(0.127399 -0.474109 0.0244331)
(0.122114 -0.599473 0.0323963)
(0.0635214 -0.695746 0.0358807)
(0.0808803 -0.886854 0.033336)
(0.01436 -1.0747 0.0398366)
(-0.00625237 -1.53422 0.0739553)
(-0.121477 -2.28697 0.160406)
(-0.222877 -3.66583 0.206582)
(-0.345925 -4.8175 0.211807)
(-0.199781 -3.98183 0.131609)
(0.00750042 0.296291 0.02569)
(0.0881707 0.818495 0.0869826)
(0.21549 1.31093 0.141148)
(0.293839 1.68113 0.180994)
(0.320221 1.88448 0.192392)
(0.341766 1.91261 0.151248)
(0.365785 1.83918 0.0802014)
(0.375331 1.69579 -0.00352561)
(0.374389 1.54814 -0.070937)
(0.366981 1.39613 -0.118614)
(0.355426 1.26274 -0.138052)
(0.3427 1.14094 -0.130718)
(0.332697 1.03831 -0.0936538)
(0.343224 0.945559 -0.0280939)
(0.385566 0.84162 0.0589585)
(0.455723 0.730791 0.154795)
(0.528476 0.590689 0.209444)
(0.577953 0.445932 0.224505)
(0.636364 0.317974 0.21668)
(0.704149 0.215264 0.158833)
(0.826496 0.119888 0.0815749)
(0.926081 0.0734639 -0.0164871)
(0.883926 -0.00224944 -0.119412)
(0.789998 -0.0565383 -0.181872)
(0.64149 -0.0836083 -0.196671)
(0.543328 -0.0911362 -0.139387)
(0.473634 -0.0961776 -0.0640683)
(0.362181 -0.137006 -0.039246)
(0.248445 -0.21043 -0.0238311)
(0.242126 -0.311396 -0.00482892)
(0.172033 -0.384419 0.0100281)
(0.162267 -0.5127 0.0195476)
(0.0955857 -0.600622 0.0234055)
(0.0958837 -0.780571 0.0246942)
(0.0282776 -0.956952 0.0380279)
(0.0324606 -1.39054 0.0711857)
(-0.105037 -2.08534 0.156774)
(-0.192709 -3.50211 0.210854)
(-0.35697 -4.82596 0.215572)
(-0.221163 -4.33656 0.140534)
(0.00244447 0.266091 0.0217149)
(0.0713673 0.744143 0.0777315)
(0.192458 1.20908 0.128174)
(0.301659 1.57089 0.160977)
(0.34903 1.79193 0.179244)
(0.363509 1.86058 0.155833)
(0.390378 1.81148 0.0977521)
(0.414072 1.68604 0.0216173)
(0.431458 1.54289 -0.0459451)
(0.433847 1.39266 -0.0992327)
(0.434504 1.25696 -0.12999)
(0.432417 1.1344 -0.138954)
(0.433431 1.031 -0.124894)
(0.445228 0.939699 -0.0914388)
(0.472567 0.851105 -0.0417529)
(0.518931 0.750972 0.0114784)
(0.57555 0.636393 0.0484569)
(0.623695 0.51689 0.0582268)
(0.68781 0.398211 0.0579946)
(0.760683 0.274355 0.0254837)
(0.911792 0.156164 -0.0196783)
(1.02423 0.0922574 -0.0967862)
(0.971049 0.00794088 -0.157208)
(0.897257 -0.0555141 -0.194168)
(0.778695 -0.0873783 -0.190173)
(0.697942 -0.0828923 -0.151164)
(0.609837 -0.0600198 -0.0876012)
(0.461029 -0.0758161 -0.0564354)
(0.310291 -0.117002 -0.0404308)
(0.307641 -0.217476 -0.020694)
(0.227416 -0.28147 -0.00667498)
(0.215591 -0.410539 0.0036904)
(0.126535 -0.487645 0.0105784)
(0.131229 -0.674292 0.0135751)
(0.0410001 -0.818959 0.0306421)
(0.0591434 -1.2439 0.0736831)
(-0.0819845 -1.88611 0.149067)
(-0.159867 -3.31925 0.208344)
(-0.369269 -4.80097 0.216393)
(-0.246849 -4.69263 0.144782)
(0.00828548 0.219558 0.0197963)
(0.0590405 0.647019 0.0750924)
(0.162163 1.07734 0.118408)
(0.281377 1.42109 0.150405)
(0.360673 1.63237 0.160048)
(0.388441 1.7289 0.153929)
(0.403103 1.715 0.110155)
(0.433782 1.61426 0.0491986)
(0.463292 1.48215 -0.0187549)
(0.482554 1.33696 -0.0746792)
(0.496561 1.20511 -0.114539)
(0.507233 1.08114 -0.137813)
(0.518535 0.975147 -0.143488)
(0.534573 0.878807 -0.136091)
(0.558863 0.789985 -0.116301)
(0.594032 0.700489 -0.0910316)
(0.640802 0.603001 -0.0638449)
(0.680717 0.498957 -0.0498363)
(0.738207 0.38772 -0.0460324)
(0.810788 0.2628 -0.0666454)
(0.98661 0.145328 -0.0847491)
(1.11986 0.0770107 -0.130657)
(1.06777 0.00268054 -0.162847)
(1.01351 -0.0476154 -0.174344)
(0.91981 -0.0631544 -0.152417)
(0.865451 -0.0619112 -0.13066)
(0.77151 -0.03412 -0.0934217)
(0.599054 -0.0367147 -0.0742783)
(0.402871 -0.0512822 -0.0515713)
(0.385398 -0.121212 -0.0420344)
(0.295225 -0.187939 -0.0222531)
(0.28319 -0.306914 -0.0108452)
(0.17699 -0.373155 -0.00022957)
(0.175236 -0.560162 0.00747199)
(0.0665838 -0.691149 0.0255863)
(0.0931871 -1.10503 0.0731893)
(-0.0621367 -1.69705 0.149535)
(-0.120371 -3.14908 0.210471)
(-0.394756 -4.77025 0.217253)
(-0.276158 -5.10215 0.149262)
(0.00224436 0.207284 0.0215905)
(0.0292964 0.611987 0.0750424)
(0.103032 1.01583 0.118347)
(0.22748 1.35777 0.145563)
(0.344209 1.55297 0.15609)
(0.415013 1.63934 0.146251)
(0.431517 1.6552 0.121805)
(0.458295 1.56158 0.071007)
(0.502607 1.44441 0.0153608)
(0.536249 1.29994 -0.0446269)
(0.568842 1.16677 -0.0884836)
(0.589751 1.04171 -0.120628)
(0.611099 0.930816 -0.139612)
(0.632703 0.828999 -0.148434)
(0.659073 0.737008 -0.144761)
(0.688692 0.648479 -0.135534)
(0.724393 0.559754 -0.116766)
(0.755798 0.465797 -0.105284)
(0.808857 0.367777 -0.0966354)
(0.882374 0.251563 -0.103698)
(1.08448 0.149634 -0.105338)
(1.24248 0.0891283 -0.134699)
(1.19699 0.0268096 -0.150983)
(1.16712 -0.0128291 -0.15808)
(1.08594 -0.0171055 -0.143654)
(1.03716 -0.0188194 -0.131466)
(0.942223 0.0132179 -0.107322)
(0.749131 0.00882371 -0.0942054)
(0.53173 0.0112166 -0.0774801)
(0.495435 -0.0418612 -0.0530138)
(0.373163 -0.0755395 -0.0393151)
(0.379956 -0.197121 -0.0249508)
(0.240231 -0.238647 -0.012921)
(0.245832 -0.420494 -0.000813156)
(0.0969929 -0.533437 0.0231224)
(0.14153 -0.932632 0.064977)
(-0.0452189 -1.50344 0.156134)
(-0.0814171 -2.93318 0.208763)
(-0.428313 -4.732 0.216257)
(-0.311084 -5.59804 0.151318)
(0.0144697 0.180926 0.0284334)
(0.0252593 0.528465 0.086804)
(0.0514941 0.922398 0.119986)
(0.153568 1.21566 0.150178)
(0.270645 1.41053 0.158846)
(0.395988 1.4657 0.148827)
(0.435935 1.50334 0.130309)
(0.451953 1.42492 0.0952325)
(0.511378 1.32929 0.0467761)
(0.558681 1.20568 0.00131504)
(0.610897 1.08217 -0.0476067)
(0.651016 0.961334 -0.0855032)
(0.683783 0.856154 -0.110782)
(0.71417 0.758019 -0.129541)
(0.745805 0.668281 -0.136294)
(0.778095 0.581635 -0.138206)
(0.812908 0.500808 -0.1288)
(0.841809 0.418276 -0.124075)
(0.891467 0.333071 -0.117881)
(0.96945 0.222811 -0.121099)
(1.19671 0.136787 -0.117631)
(1.37501 0.0807662 -0.138277)
(1.33334 0.0283381 -0.144179)
(1.32111 -0.00705113 -0.145236)
(1.24869 -0.00262795 -0.132405)
(1.21896 0.00115026 -0.123765)
(1.12119 0.0508774 -0.103889)
(0.920795 0.0498877 -0.0933581)
(0.670886 0.0728594 -0.0778576)
(0.646163 0.014911 -0.0721325)
(0.495192 0.0119066 -0.0536355)
(0.499571 -0.085865 -0.0328915)
(0.35548 -0.111333 -0.0126744)
(0.357511 -0.289658 -0.00222925)
(0.187442 -0.377429 0.0235837)
(0.219194 -0.775438 0.0675056)
(0.0223098 -1.3006 0.148405)
(-0.00134852 -2.73564 0.217409)
(-0.479472 -4.67481 0.218952)
(-0.305444 -6.20244 0.158899)
(-0.0196207 0.168719 0.0331703)
(-0.0258176 0.563945 0.100625)
(-0.0295833 0.894955 0.135862)
(0.0324138 1.22165 0.158074)
(0.169439 1.37472 0.167454)
(0.350376 1.39461 0.16262)
(0.442552 1.40298 0.144876)
(0.46312 1.32793 0.123478)
(0.537321 1.23482 0.084314)
(0.60089 1.12761 0.0477256)
(0.668179 1.01916 0.010955)
(0.723375 0.906213 -0.0253547)
(0.773373 0.805208 -0.057374)
(0.813321 0.710074 -0.0807736)
(0.849913 0.624101 -0.0936366)
(0.885725 0.539922 -0.103642)
(0.920574 0.463376 -0.103656)
(0.946825 0.386175 -0.107441)
(0.991359 0.313969 -0.108065)
(1.07588 0.210926 -0.113713)
(1.32943 0.144115 -0.111304)
(1.53031 0.0929703 -0.127273)
(1.49519 0.05008 -0.128358)
(1.50723 0.017898 -0.128312)
(1.44694 0.0235368 -0.11968)
(1.43431 0.0294703 -0.106208)
(1.33 0.0926885 -0.0929519)
(1.12688 0.0914229 -0.085609)
(0.848372 0.137271 -0.0751355)
(0.822276 0.0886807 -0.0635142)
(0.67344 0.0976926 -0.0481737)
(0.701587 0.0125637 -0.0391755)
(0.512384 6.72199e-05 -0.0203399)
(0.547566 -0.148222 -0.00266852)
(0.3266 -0.206811 0.0231197)
(0.38174 -0.563441 0.0699248)
(0.115177 -1.00904 0.135662)
(0.180635 -2.41096 0.229347)
(-0.446926 -4.57406 0.208264)
(-0.244552 -6.79461 0.168418)
(0.0455587 0.310879 0.0539084)
(-0.00494761 0.503801 0.121432)
(-0.0969529 0.78229 0.155686)
(-0.0406827 0.981521 0.17578)
(-0.00475521 1.18826 0.18355)
(0.204885 1.16987 0.178699)
(0.371871 1.18294 0.164044)
(0.423928 1.11153 0.153692)
(0.521678 1.03934 0.121998)
(0.610754 0.954841 0.0965718)
(0.699301 0.870531 0.06687)
(0.771498 0.783912 0.0410586)
(0.835086 0.70399 0.016432)
(0.888045 0.626556 -0.0078178)
(0.934511 0.557343 -0.0269765)
(0.977996 0.484841 -0.0442468)
(1.01818 0.41562 -0.0526925)
(1.05366 0.34581 -0.0647667)
(1.10331 0.284072 -0.0725199)
(1.20627 0.18157 -0.0825808)
(1.48893 0.128685 -0.0852522)
(1.71198 0.0750026 -0.100434)
(1.68599 0.0361607 -0.0998384)
(1.71416 0.00305989 -0.101455)
(1.66439 0.0310395 -0.089609)
(1.68932 0.0317787 -0.075696)
(1.5808 0.114117 -0.0685482)
(1.39963 0.109917 -0.066896)
(1.10421 0.181626 -0.0596329)
(1.1072 0.144446 -0.0551082)
(0.946152 0.184303 -0.0370417)
(1.00825 0.0868937 -0.0254541)
(0.82561 0.0803262 -0.00895415)
(0.918586 -0.0414944 0.0108209)
(0.666695 -0.121262 0.0319594)
(0.784233 -0.411616 0.0646581)
(0.437676 -0.818893 0.131049)
(0.560536 -2.0355 0.193229)
(-0.174188 -4.35672 0.23189)
(0.0608818 -7.3171 0.181741)
(-0.221623 0.0763182 0.0658807)
(-0.2917 0.704448 0.152114)
(-0.277555 0.878925 0.182133)
(-0.235191 1.02304 0.198318)
(-0.112064 1.04863 0.210108)
(0.0733374 1.06092 0.202809)
(0.281689 0.99324 0.194598)
(0.372737 0.933772 0.189105)
(0.504094 0.864442 0.167226)
(0.613751 0.800887 0.151147)
(0.726926 0.73605 0.130575)
(0.821662 0.67002 0.111936)
(0.908004 0.609867 0.0924533)
(0.981359 0.551083 0.0735051)
(1.04306 0.49743 0.0573204)
(1.09941 0.439038 0.0399726)
(1.15528 0.374883 0.025987)
(1.21557 0.312206 0.00890802)
(1.28542 0.268513 -0.00293279)
(1.43891 0.178111 -0.017739)
(1.77838 0.147702 -0.023493)
(2.06602 0.093074 -0.0399617)
(2.07665 0.0599741 -0.0401864)
(2.17515 0.0304888 -0.0437654)
(2.1481 0.0422076 -0.0363625)
(2.20588 0.0263881 -0.0278186)
(2.09416 0.117528 -0.0212094)
(1.95742 0.098767 -0.0221925)
(1.64006 0.191735 -0.0130295)
(1.70833 0.168967 -0.0117466)
(1.54221 0.223804 -0.00354295)
(1.68507 0.145464 0.00422843)
(1.47725 0.142386 0.0119827)
(1.65039 0.0161969 0.0200611)
(1.31875 -0.0463356 0.0398279)
(1.50754 -0.269053 0.0690329)
(1.0579 -0.529529 0.114361)
(1.25143 -1.45837 0.180939)
(0.417159 -3.85115 0.220143)
(0.516877 -7.19272 0.18582)
(-0.732726 0.792535 0.1662)
(-0.599266 0.398756 0.240509)
(-0.735613 0.580004 0.235511)
(-0.447419 0.610823 0.237792)
(-0.299265 0.619655 0.239823)
(0.0109216 0.673655 0.236394)
(0.254913 0.637309 0.225077)
(0.466231 0.610029 0.227732)
(0.667618 0.572187 0.213851)
(0.861222 0.537709 0.206866)
(1.04759 0.498013 0.194654)
(1.22084 0.457909 0.184022)
(1.37621 0.421068 0.171347)
(1.51754 0.388976 0.15653)
(1.6355 0.365195 0.143012)
(1.74806 0.332936 0.127409)
(1.85959 0.28471 0.113231)
(2.01519 0.248807 0.0981419)
(2.1945 0.216935 0.0889927)
(2.48672 0.118622 0.0720372)
(2.91069 0.0902671 0.0646351)
(3.32468 0.0365799 0.0486474)
(3.38599 -0.0032826 0.0404518)
(3.5249 -0.0402545 0.0320435)
(3.45985 -0.0218391 0.0340439)
(3.58214 -0.019991 0.0329568)
(3.42646 0.065806 0.035399)
(3.37899 0.0642711 0.0291645)
(3.00725 0.148207 0.0365605)
(3.18926 0.158252 0.0366969)
(2.98755 0.201654 0.0405938)
(3.30189 0.138029 0.0440472)
(3.01892 0.100153 0.0482978)
(3.35264 0.0161124 0.0531244)
(2.8747 -0.0531124 0.0661759)
(3.21934 -0.230315 0.0779981)
(2.55023 -0.518425 0.103202)
(2.90424 -1.1332 0.139145)
(1.91441 -3.13707 0.180511)
(1.35106 -6.0771 0.16427)
(1.15841 1.47446 0.073553)
(1.72225 0.723382 0.104711)
(2.46402 0.566832 0.112256)
(2.88163 0.351588 0.115682)
(3.16571 0.282757 0.11625)
(3.41475 0.226485 0.118893)
(3.6543 0.216035 0.118995)
(3.86302 0.191742 0.131227)
(4.06748 0.181564 0.134679)
(4.28083 0.169508 0.139672)
(4.48521 0.158667 0.141958)
(4.69006 0.146176 0.143306)
(4.86388 0.134738 0.141987)
(5.02955 0.123597 0.135728)
(5.15122 0.117421 0.12965)
(5.28175 0.112153 0.120352)
(5.41466 0.0864512 0.111479)
(5.62801 0.0671897 0.0999875)
(5.90374 0.0820506 0.0986427)
(6.36832 0.0533733 0.0871768)
(6.78671 0.0311032 0.0828362)
(7.25411 0.0102851 0.0748353)
(7.25908 -0.0110557 0.0661599)
(7.32458 -0.0556503 0.0574693)
(7.13857 -0.043076 0.0518183)
(7.14467 -0.0556278 0.0433951)
(6.8025 -0.0271478 0.0456768)
(6.78691 -0.0129117 0.0362074)
(6.32549 0.0227711 0.0398854)
(6.58917 0.0436704 0.0438393)
(6.35191 0.0730028 0.0486943)
(6.80003 0.0702353 0.0501782)
(6.49378 0.0431253 0.0530282)
(6.88606 0.0115366 0.0521668)
(6.33997 -0.0176384 0.0593193)
(6.55907 -0.107695 0.0665201)
(5.67969 -0.261255 0.0788374)
(5.70303 -0.582163 0.0925303)
(4.28033 -1.13735 0.114418)
(2.79155 -2.52263 0.124138)
(0.00214403 -0.000726881 0.000918387)
(0.021239 -0.00406679 0.00412672)
(0.0458456 -0.0032799 0.00567647)
(0.058132 -0.00134339 0.00653621)
(0.0614874 0.00149635 0.00369115)
(0.0542594 0.000855914 0.00404055)
(0.0367789 0.00852159 0.00324201)
(0.0174124 0.0175174 0.00455907)
(-0.00782584 0.0214212 0.0108694)
(-0.0506223 0.0177207 0.0125751)
(-0.100808 0.00917847 0.0182013)
(-0.165919 0.000362613 0.0248397)
(-0.237932 -0.00213494 0.0302014)
(-0.325258 0.00308029 0.0293075)
(-0.405272 0.0149077 0.0369917)
(-0.52618 0.00521434 0.0318691)
(-0.655816 0.0046695 0.0117159)
(-0.804775 0.000769317 -0.000648963)
(-0.905443 -0.00338409 -0.0170355)
(-1.07671 0.00314121 -0.0335384)
(-1.00475 0.0275221 -0.0249345)
(-0.816262 0.0211004 -0.021592)
(-0.804227 0.0165482 -0.0275601)
(-0.786653 -0.0131834 -0.033983)
(-0.775743 -0.0487744 -0.0450926)
(-0.719918 -0.0812309 -0.0582118)
(-0.650453 -0.108394 -0.0683637)
(-0.530786 -0.125093 -0.0774573)
(-0.387001 -0.138934 -0.0809599)
(-0.195737 -0.141965 -0.0824043)
(-0.0192834 -0.136843 -0.0635005)
(0.209946 -0.0603277 -0.0415974)
(0.432902 -0.0531955 -0.0159518)
(0.513567 0.000644218 0.0102417)
(0.481661 0.0295205 0.03196)
(0.366346 0.0496996 0.043492)
(0.230476 0.037251 0.048404)
(0.10676 0.0224076 0.0473385)
(0.0295715 0.00757433 0.0404238)
(-0.00181646 -0.00546518 0.0191993)
(0.00762602 -0.0161553 0.00240397)
(0.0390835 -0.0303408 0.0113873)
(0.0716574 -0.0248657 0.0174014)
(0.0847135 -0.00828007 0.0207538)
(0.0778057 -0.000805576 0.0197201)
(0.0560518 0.0105349 0.0238328)
(0.014201 0.0236815 0.0229003)
(-0.0582549 0.0506044 0.0349936)
(-0.166089 0.0667663 0.0358708)
(-0.313039 0.0837916 0.0403514)
(-0.479449 0.107582 0.0457598)
(-0.668395 0.134034 0.0537254)
(-0.869902 0.163155 0.06297)
(-1.09287 0.186326 0.0693846)
(-1.3288 0.184729 0.0725824)
(-1.575 0.146693 0.0647906)
(-1.78636 0.117038 0.058717)
(-1.99527 0.0781986 0.0504346)
(-2.13856 0.0458608 0.0456496)
(-2.26353 0.0168147 0.0457778)
(-2.05603 0.0286619 0.0657379)
(-1.77855 -0.0299786 0.0978644)
(-1.67289 -0.0988576 0.111089)
(-1.57241 -0.195528 0.0974999)
(-1.48979 -0.290062 0.100017)
(-1.35928 -0.377521 0.0965067)
(-1.2216 -0.448452 0.0989405)
(-1.04584 -0.494098 0.101087)
(-0.857358 -0.513685 0.110986)
(-0.624641 -0.508425 0.119268)
(-0.373307 -0.483103 0.13108)
(-0.110053 -0.385497 0.158563)
(0.175055 -0.288662 0.165249)
(0.412981 -0.154636 0.162622)
(0.518897 -0.0080685 0.153577)
(0.497922 0.0946693 0.150236)
(0.377969 0.131089 0.142265)
(0.226279 0.118903 0.134974)
(0.0910943 0.0845219 0.114532)
(0.0125855 0.0316072 0.0524219)
(0.00979923 -0.0380226 0.00212036)
(0.0390941 -0.0612999 0.015585)
(0.0622489 -0.0461862 0.0247282)
(0.0491903 -0.0107194 0.0347773)
(0.0142668 0.0272963 0.0303747)
(-0.0421198 0.071998 0.0439259)
(-0.13187 0.118192 0.0498556)
(-0.273052 0.176952 0.0564674)
(-0.471263 0.243582 0.0668098)
(-0.705745 0.305876 0.0817871)
(-0.9672 0.366731 0.0951704)
(-1.24397 0.409269 0.109052)
(-1.51184 0.428226 0.11991)
(-1.78043 0.395931 0.127402)
(-2.02098 0.334061 0.125135)
(-2.22706 0.266884 0.131854)
(-2.38564 0.205359 0.139399)
(-2.53778 0.138227 0.147581)
(-2.63232 0.0791808 0.158143)
(-2.66077 0.0107692 0.173596)
(-2.39617 -0.035109 0.209832)
(-2.11107 -0.155986 0.208033)
(-1.96983 -0.28221 0.19373)
(-1.8562 -0.415518 0.194042)
(-1.77143 -0.547084 0.200058)
(-1.6484 -0.679833 0.201636)
(-1.5224 -0.79543 0.205796)
(-1.35991 -0.884889 0.208271)
(-1.20241 -0.931495 0.216191)
(-1.02053 -0.917479 0.233647)
(-0.822884 -0.853876 0.247336)
(-0.594126 -0.750146 0.256195)
(-0.331481 -0.602785 0.244177)
(-0.0412353 -0.402182 0.234044)
(0.200174 -0.161963 0.251409)
(0.305508 0.069975 0.224908)
(0.291087 0.171572 0.208011)
(0.195801 0.206308 0.194372)
(0.0852 0.172855 0.160081)
(0.0108352 0.0856436 0.0716796)
(0.0100635 -0.0606557 -0.000421704)
(0.0223087 -0.0860573 0.0155973)
(0.0102534 -0.0432649 0.0282045)
(-0.0292843 0.0202655 0.0398642)
(-0.0958283 0.109503 0.0514775)
(-0.19959 0.203435 0.0655145)
(-0.355631 0.307342 0.0795503)
(-0.570788 0.419861 0.098763)
(-0.849171 0.526596 0.113388)
(-1.15251 0.599863 0.130951)
(-1.44038 0.636438 0.146358)
(-1.71087 0.626665 0.160409)
(-1.96247 0.56588 0.165144)
(-2.17974 0.476401 0.161314)
(-2.33456 0.3938 0.16792)
(-2.45061 0.313734 0.176347)
(-2.5314 0.239203 0.183996)
(-2.61358 0.157487 0.189458)
(-2.64105 0.0835887 0.194274)
(-2.62245 -0.0118453 0.19846)
(-2.35482 -0.0996264 0.205133)
(-2.07361 -0.259491 0.17695)
(-1.9523 -0.401161 0.167267)
(-1.86341 -0.550815 0.162942)
(-1.81007 -0.706582 0.16836)
(-1.72844 -0.875475 0.16888)
(-1.64342 -1.03896 0.170561)
(-1.52204 -1.18593 0.167221)
(-1.38712 -1.29514 0.166833)
(-1.23543 -1.33071 0.171445)
(-1.1007 -1.2818 0.191701)
(-0.976309 -1.13736 0.230057)
(-0.799468 -0.923813 0.223305)
(-0.516639 -0.679647 0.227634)
(-0.175698 -0.369645 0.23677)
(0.037881 -0.0718856 0.251296)
(0.0977355 0.13155 0.25021)
(0.0977741 0.231911 0.229797)
(0.0410973 0.218953 0.186671)
(0.00333943 0.11509 0.0812198)
(0.00394614 -0.0780002 -0.00584545)
(-0.00548239 -0.0823801 0.0154304)
(-0.061473 -0.0145147 0.035819)
(-0.144134 0.117387 0.0597519)
(-0.249267 0.25617 0.0760626)
(-0.406727 0.40433 0.100034)
(-0.608681 0.551958 0.126001)
(-0.861236 0.686094 0.147198)
(-1.16301 0.787766 0.163123)
(-1.46263 0.81831 0.178251)
(-1.73793 0.782409 0.187042)
(-1.9798 0.699739 0.181258)
(-2.15737 0.600175 0.170668)
(-2.2712 0.507653 0.166249)
(-2.33643 0.424264 0.161419)
(-2.37887 0.339286 0.157948)
(-2.40264 0.259004 0.15264)
(-2.43287 0.171365 0.145796)
(-2.4226 0.0906793 0.135213)
(-2.38141 -0.0260359 0.122214)
(-2.1466 -0.120582 0.108368)
(-1.89611 -0.287609 0.0689682)
(-1.79961 -0.444163 0.0617582)
(-1.73791 -0.603725 0.057688)
(-1.7184 -0.776453 0.0648791)
(-1.68305 -0.97583 0.0706876)
(-1.64933 -1.17965 0.0786161)
(-1.5836 -1.38393 0.0823886)
(-1.49856 -1.55739 0.0868046)
(-1.37402 -1.67159 0.0907109)
(-1.23743 -1.68999 0.097602)
(-1.12601 -1.59591 0.113654)
(-1.07931 -1.35038 0.155069)
(-0.88392 -1.00074 0.174948)
(-0.530369 -0.63101 0.2006)
(-0.216608 -0.258587 0.229587)
(-0.0351825 0.0566779 0.23252)
(0.011631 0.212759 0.23437)
(0.00343865 0.229043 0.186101)
(-0.00275731 0.118582 0.0771536)
(0.00227417 -0.0822101 -0.00949419)
(-0.0560354 -0.0485783 0.0221041)
(-0.146046 0.0774657 0.0501119)
(-0.253902 0.270873 0.0840141)
(-0.408911 0.458406 0.112409)
(-0.591688 0.646784 0.146495)
(-0.812524 0.806532 0.171378)
(-1.07306 0.930026 0.192485)
(-1.39035 0.930441 0.194157)
(-1.69471 0.866578 0.183752)
(-1.91354 0.776522 0.169838)
(-2.04834 0.681853 0.157964)
(-2.12049 0.596197 0.140139)
(-2.15438 0.506503 0.121627)
(-2.15587 0.420504 0.104772)
(-2.15435 0.32997 0.0900396)
(-2.14416 0.248825 0.0711824)
(-2.14459 0.164024 0.0577155)
(-2.11657 0.0854973 0.039217)
(-2.07568 -0.0279792 0.0236379)
(-1.87419 -0.130159 -0.0018514)
(-1.64952 -0.29422 -0.042035)
(-1.57105 -0.445354 -0.0472262)
(-1.53462 -0.606854 -0.0487366)
(-1.54614 -0.779403 -0.0321594)
(-1.54711 -0.981572 -0.0196823)
(-1.55518 -1.19947 -0.00614868)
(-1.5414 -1.427 0.00587216)
(-1.51471 -1.65493 0.0155851)
(-1.45365 -1.84187 0.0279438)
(-1.35996 -1.95105 0.0395388)
(-1.23305 -1.93808 0.0597363)
(-1.17213 -1.79713 0.0771877)
(-1.1111 -1.40813 0.128195)
(-0.815787 -0.975618 0.159967)
(-0.42277 -0.495883 0.197513)
(-0.158285 -0.0959138 0.240888)
(-0.0519309 0.132658 0.230818)
(-0.0190365 0.19476 0.185897)
(-0.00557393 0.0969799 0.0758892)
(-0.00652251 -0.0475121 -0.0151535)
(-0.0850354 0.0420398 0.0242439)
(-0.211314 0.237644 0.0747403)
(-0.357033 0.463109 0.117282)
(-0.528748 0.682463 0.156238)
(-0.722138 0.874675 0.186845)
(-0.954212 1.0038 0.211473)
(-1.27721 0.990685 0.197434)
(-1.58598 0.898062 0.168868)
(-1.77381 0.823009 0.157595)
(-1.88038 0.755668 0.137941)
(-1.9314 0.677245 0.109836)
(-1.9416 0.587975 0.0768545)
(-1.92666 0.492407 0.0508088)
(-1.90501 0.399569 0.0232925)
(-1.88622 0.307297 0.00277219)
(-1.86379 0.229158 -0.0116341)
(-1.85412 0.151765 -0.026676)
(-1.82392 0.0817165 -0.0450981)
(-1.79137 -0.021716 -0.0672396)
(-1.61911 -0.118044 -0.0943127)
(-1.40871 -0.276578 -0.147495)
(-1.34104 -0.419146 -0.143908)
(-1.3228 -0.580855 -0.135695)
(-1.34287 -0.74856 -0.117626)
(-1.36371 -0.944956 -0.101918)
(-1.39311 -1.16541 -0.0807553)
(-1.42142 -1.407 -0.0595925)
(-1.4412 -1.65812 -0.0351288)
(-1.43974 -1.89654 -0.0186475)
(-1.40539 -2.09025 0.000981268)
(-1.32846 -2.17289 0.0161374)
(-1.22355 -2.12896 0.0373492)
(-1.19302 -1.86997 0.0669216)
(-1.03258 -1.38344 0.109255)
(-0.635351 -0.840537 0.148769)
(-0.259006 -0.322828 0.189071)
(-0.0717727 0.0458379 0.20243)
(-0.0095657 0.143286 0.170742)
(-0.000753753 0.0799595 0.0676524)
(-0.0105957 0.00838829 -0.00484984)
(-0.112805 0.161679 0.0462317)
(-0.267261 0.3951 0.105539)
(-0.426344 0.646976 0.157919)
(-0.608213 0.863344 0.193581)
(-0.829668 1.01255 0.217821)
(-1.15259 1.01844 0.191272)
(-1.43432 0.930735 0.164456)
(-1.60611 0.884259 0.149009)
(-1.70543 0.835093 0.119441)
(-1.74179 0.755725 0.0798253)
(-1.7363 0.65654 0.0369004)
(-1.71188 0.556561 -0.000623064)
(-1.68556 0.455907 -0.030563)
(-1.65716 0.362287 -0.0557642)
(-1.6354 0.276971 -0.0720347)
(-1.61078 0.205838 -0.0852797)
(-1.59553 0.136709 -0.094944)
(-1.56625 0.0773722 -0.110105)
(-1.54105 -0.00897654 -0.130003)
(-1.39398 -0.0963631 -0.161624)
(-1.1991 -0.241684 -0.219507)
(-1.13279 -0.37591 -0.206457)
(-1.12238 -0.526386 -0.191603)
(-1.14528 -0.683406 -0.169837)
(-1.17348 -0.871494 -0.151843)
(-1.21277 -1.08497 -0.129481)
(-1.25474 -1.33303 -0.107288)
(-1.29924 -1.59863 -0.0831297)
(-1.34294 -1.87346 -0.0552267)
(-1.36462 -2.11827 -0.031059)
(-1.34886 -2.30143 -0.00891754)
(-1.27842 -2.34962 0.0126798)
(-1.21293 -2.23613 0.0355824)
(-1.13231 -1.83151 0.070703)
(-0.830093 -1.24028 0.112025)
(-0.358413 -0.601021 0.162349)
(-0.0959478 -0.0963696 0.213403)
(-0.0255767 0.0818922 0.167734)
(0.00766392 0.0651996 0.0748572)
(-0.0156134 0.0594418 -0.00605126)
(-0.126268 0.259604 0.057369)
(-0.289059 0.506095 0.122905)
(-0.465169 0.745644 0.172421)
(-0.681373 0.932477 0.19746)
(-0.975243 1.00729 0.185085)
(-1.25059 0.969088 0.167766)
(-1.42666 0.958863 0.147495)
(-1.52998 0.916238 0.109471)
(-1.55429 0.836669 0.0607887)
(-1.54447 0.733206 0.00782176)
(-1.51389 0.625256 -0.0383251)
(-1.48343 0.519877 -0.0778742)
(-1.45911 0.422823 -0.105449)
(-1.43978 0.336928 -0.124505)
(-1.42341 0.257687 -0.133263)
(-1.40071 0.192129 -0.13755)
(-1.38283 0.129149 -0.140687)
(-1.35183 0.0790529 -0.147137)
(-1.33346 0.00341462 -0.167189)
(-1.21159 -0.0555964 -0.193035)
(-1.02636 -0.20326 -0.26074)
(-0.957187 -0.329 -0.242612)
(-0.949039 -0.471076 -0.22421)
(-0.968387 -0.617006 -0.200418)
(-0.997974 -0.791345 -0.182309)
(-1.03881 -0.992484 -0.160782)
(-1.08671 -1.22939 -0.140037)
(-1.14395 -1.49876 -0.115238)
(-1.20129 -1.79455 -0.0890173)
(-1.26111 -2.08723 -0.0620432)
(-1.29181 -2.33571 -0.0295759)
(-1.27999 -2.49382 -0.00784496)
(-1.21248 -2.48913 0.0138905)
(-1.15062 -2.24039 0.0372411)
(-0.959166 -1.6796 0.064376)
(-0.520232 -0.957162 0.108715)
(-0.150555 -0.3382 0.135698)
(-0.0270275 0.0251522 0.151458)
(0.0116206 0.0504636 0.0641846)
(-0.0218226 0.124582 0.00711878)
(-0.147038 0.373741 0.0803822)
(-0.318705 0.613341 0.148264)
(-0.493906 0.824115 0.191628)
(-0.739485 0.97658 0.202483)
(-1.02102 1.01549 0.182439)
(-1.23807 1.02932 0.157611)
(-1.34927 1.00199 0.114322)
(-1.3792 0.927643 0.0570056)
(-1.36393 0.821297 -0.0059215)
(-1.33446 0.70419 -0.0644469)
(-1.30578 0.594944 -0.111451)
(-1.28711 0.493699 -0.146641)
(-1.27595 0.400301 -0.167173)
(-1.2656 0.31832 -0.178017)
(-1.25205 0.241785 -0.176657)
(-1.22782 0.179726 -0.173126)
(-1.20115 0.121824 -0.167884)
(-1.17034 0.0796687 -0.168731)
(-1.13511 0.021526 -0.179554)
(-1.05167 -0.0194918 -0.201162)
(-0.895775 -0.152071 -0.268713)
(-0.810551 -0.279428 -0.256141)
(-0.802346 -0.411541 -0.234752)
(-0.814359 -0.547474 -0.210003)
(-0.841134 -0.705661 -0.191026)
(-0.878159 -0.890235 -0.170795)
(-0.926322 -1.11092 -0.152145)
(-0.986048 -1.37194 -0.130545)
(-1.05462 -1.6693 -0.107533)
(-1.12662 -1.99206 -0.0801153)
(-1.19192 -2.30164 -0.0516873)
(-1.22521 -2.54649 -0.0179328)
(-1.19824 -2.65702 0.00592628)
(-1.12312 -2.55339 0.0246155)
(-1.00127 -2.11488 0.0419014)
(-0.680693 -1.36697 0.073397)
(-0.218585 -0.587654 0.109083)
(-0.0273851 -0.0641478 0.134512)
(-0.00685807 0.0334869 0.0653809)
(-0.0227291 0.193454 0.0178884)
(-0.153779 0.49531 0.100188)
(-0.327913 0.74006 0.169797)
(-0.511542 0.94056 0.20823)
(-0.772693 1.0583 0.203799)
(-1.01745 1.08861 0.17534)
(-1.16304 1.08684 0.13274)
(-1.20828 1.02679 0.0696942)
(-1.19837 0.923242 -0.00150758)
(-1.16817 0.79889 -0.0723289)
(-1.1435 0.679995 -0.130213)
(-1.12884 0.571944 -0.173653)
(-1.12599 0.475244 -0.202758)
(-1.1262 0.386796 -0.216254)
(-1.12326 0.307012 -0.217574)
(-1.10976 0.232997 -0.206361)
(-1.08014 0.169677 -0.192175)
(-1.04475 0.117211 -0.180377)
(-1.00356 0.0771125 -0.176249)
(-0.967448 0.0401464 -0.183843)
(-0.911325 -0.00799628 -0.194909)
(-0.790886 -0.106166 -0.248809)
(-0.703034 -0.236669 -0.253859)
(-0.684995 -0.361256 -0.231293)
(-0.689259 -0.489373 -0.207771)
(-0.708815 -0.63248 -0.188244)
(-0.738173 -0.799193 -0.169326)
(-0.779321 -0.998383 -0.152407)
(-0.834522 -1.24012 -0.133337)
(-0.902284 -1.5279 -0.113371)
(-0.981462 -1.85757 -0.0907853)
(-1.05941 -2.20637 -0.0641111)
(-1.12359 -2.52911 -0.0360612)
(-1.14252 -2.74782 -0.00198581)
(-1.09082 -2.77602 0.0163533)
(-0.979361 -2.49712 0.0313648)
(-0.756737 -1.81251 0.0419596)
(-0.325071 -0.891215 0.0728758)
(-0.0507386 -0.201878 0.110793)
(-0.0175982 0.0173869 0.0558123)
(-0.0205421 0.265575 0.0356568)
(-0.150338 0.618611 0.125976)
(-0.322233 0.868803 0.195733)
(-0.51911 1.05571 0.226442)
(-0.766652 1.13788 0.208031)
(-0.951767 1.16279 0.168167)
(-1.03901 1.1298 0.103362)
(-1.04136 1.03414 0.0217578)
(-1.01652 0.908242 -0.0603532)
(-0.99199 0.776152 -0.129724)
(-0.981101 0.658939 -0.185627)
(-0.983243 0.555651 -0.223719)
(-0.994726 0.464066 -0.24816)
(-1.00484 0.377212 -0.252964)
(-1.00533 0.298587 -0.246505)
(-0.990616 0.221322 -0.222094)
(-0.952207 0.158478 -0.199833)
(-0.903304 0.107032 -0.180453)
(-0.851251 0.0716561 -0.17365)
(-0.815051 0.0454509 -0.181788)
(-0.78158 0.00662272 -0.187322)
(-0.698529 -0.0760098 -0.220764)
(-0.621728 -0.195257 -0.23244)
(-0.594516 -0.319743 -0.21719)
(-0.589685 -0.440429 -0.194933)
(-0.601794 -0.570797 -0.175989)
(-0.62243 -0.720493 -0.157247)
(-0.654631 -0.897557 -0.141665)
(-0.700269 -1.11549 -0.123994)
(-0.760426 -1.38127 -0.106564)
(-0.837019 -1.70227 -0.0859207)
(-0.922583 -2.06628 -0.0634248)
(-1.00202 -2.44162 -0.0374113)
(-1.05212 -2.75859 -0.00726663)
(-1.04145 -2.91943 0.0176334)
(-0.94277 -2.79328 0.033355)
(-0.76498 -2.25564 0.035346)
(-0.413171 -1.27816 0.0446151)
(-0.0737946 -0.393268 0.0642667)
(-0.0186012 -0.0172619 0.0496692)
(-0.0152478 0.328457 0.0490274)
(-0.134756 0.7319 0.145692)
(-0.302542 0.990369 0.21451)
(-0.507368 1.15366 0.234542)
(-0.721513 1.2198 0.208994)
(-0.850145 1.22684 0.151896)
(-0.895255 1.15553 0.0682393)
(-0.876778 1.03431 -0.024708)
(-0.85335 0.889729 -0.108136)
(-0.839639 0.758446 -0.177216)
(-0.845675 0.645759 -0.228588)
(-0.861942 0.547519 -0.26321)
(-0.885304 0.458321 -0.281824)
(-0.900504 0.372049 -0.279891)
(-0.904482 0.289595 -0.261345)
(-0.885066 0.210548 -0.225223)
(-0.834156 0.140233 -0.187257)
(-0.772945 0.0914109 -0.165148)
(-0.705637 0.0574413 -0.159098)
(-0.670025 0.045705 -0.179545)
(-0.666152 0.0203558 -0.183087)
(-0.621793 -0.0580957 -0.192236)
(-0.562404 -0.159965 -0.198098)
(-0.531299 -0.286127 -0.195174)
(-0.51386 -0.405001 -0.175696)
(-0.518078 -0.525439 -0.15948)
(-0.530086 -0.660935 -0.140377)
(-0.552126 -0.816716 -0.125996)
(-0.586365 -1.00999 -0.109545)
(-0.633887 -1.24854 -0.0943891)
(-0.700425 -1.54847 -0.0770302)
(-0.783477 -1.91011 -0.0580008)
(-0.873288 -2.31472 -0.0355693)
(-0.943717 -2.70482 -0.00944141)
(-0.96725 -2.98426 0.0170586)
(-0.908293 -3.00938 0.0358278)
(-0.747604 -2.63528 0.0375888)
(-0.474835 -1.70932 0.0274995)
(-0.10914 -0.623229 0.037594)
(-0.00322794 -0.0763235 0.0331129)
(-0.00833021 0.383512 0.066018)
(-0.111008 0.83731 0.169068)
(-0.277885 1.10168 0.234855)
(-0.472542 1.23907 0.247022)
(-0.643885 1.29954 0.211658)
(-0.731372 1.27667 0.137643)
(-0.747684 1.16818 0.0389789)
(-0.725331 1.02577 -0.0588896)
(-0.711515 0.874768 -0.144824)
(-0.71087 0.74578 -0.210438)
(-0.730917 0.637632 -0.258918)
(-0.758674 0.542478 -0.289406)
(-0.789701 0.453925 -0.304785)
(-0.811294 0.363792 -0.292298)
(-0.815246 0.278183 -0.2658)
(-0.794966 0.190881 -0.208953)
(-0.730802 0.120123 -0.165293)
(-0.649444 0.0720692 -0.136638)
(-0.56335 0.0460631 -0.134538)
(-0.52074 0.0364138 -0.173633)
(-0.557486 0.0265925 -0.186061)
(-0.550257 -0.0522893 -0.167691)
(-0.512995 -0.13575 -0.161291)
(-0.490247 -0.246579 -0.155738)
(-0.458645 -0.375046 -0.149613)
(-0.454051 -0.490884 -0.136402)
(-0.458006 -0.616481 -0.11909)
(-0.47118 -0.754018 -0.105488)
(-0.494557 -0.923168 -0.0902017)
(-0.528546 -1.13479 -0.0775162)
(-0.582893 -1.40951 -0.0631842)
(-0.657683 -1.75765 -0.0485307)
(-0.74784 -2.17181 -0.0305261)
(-0.829631 -2.60986 -0.00632539)
(-0.878848 -2.98821 0.0197067)
(-0.86067 -3.15796 0.0479427)
(-0.726327 -2.9443 0.0492636)
(-0.49359 -2.13734 0.035145)
(-0.134281 -0.895273 0.0212905)
(0.00736505 -0.135997 0.0276949)
(-1.56466e-05 0.416288 0.0745318)
(-0.0858825 0.92237 0.182615)
(-0.247799 1.18924 0.245024)
(-0.420823 1.31594 0.253013)
(-0.551127 1.36462 0.207045)
(-0.613644 1.30963 0.119082)
(-0.615336 1.17307 0.0132249)
(-0.592634 1.01443 -0.0903645)
(-0.590541 0.863272 -0.172674)
(-0.601434 0.737468 -0.234103)
(-0.631863 0.634065 -0.278664)
(-0.666631 0.541177 -0.306867)
(-0.706139 0.451627 -0.316004)
(-0.73013 0.357205 -0.295247)
(-0.738174 0.26615 -0.252639)
(-0.709915 0.17379 -0.180298)
(-0.62564 0.0964833 -0.110485)
(-0.524587 0.0330126 -0.078746)
(-0.427203 0.00405698 -0.0909989)
(-0.379916 0.0196786 -0.168343)
(-0.452763 0.0294511 -0.196191)
(-0.486824 -0.0534165 -0.146587)
(-0.454859 -0.126014 -0.128137)
(-0.46063 -0.211069 -0.115868)
(-0.430731 -0.330401 -0.107022)
(-0.407015 -0.458635 -0.108585)
(-0.402909 -0.581798 -0.0932108)
(-0.405594 -0.706386 -0.0837652)
(-0.420275 -0.855657 -0.0698302)
(-0.443939 -1.04173 -0.0606236)
(-0.487109 -1.29002 -0.0497049)
(-0.550991 -1.61727 -0.0405777)
(-0.634552 -2.02707 -0.0265052)
(-0.720687 -2.49361 -0.005939)
(-0.783063 -2.94775 0.0221816)
(-0.799645 -3.24479 0.0530207)
(-0.700044 -3.18959 0.0605354)
(-0.49497 -2.52121 0.0453703)
(-0.153365 -1.21515 0.0161382)
(0.0227197 -0.178842 0.017259)
(0.00904683 0.445505 0.0880893)
(-0.0622306 1.00125 0.201494)
(-0.208948 1.275 0.263397)
(-0.352537 1.40287 0.264904)
(-0.452287 1.42872 0.208513)
(-0.499146 1.34497 0.108734)
(-0.495711 1.18985 -0.00450613)
(-0.47851 1.01729 -0.109508)
(-0.486081 0.862301 -0.186676)
(-0.504418 0.737585 -0.243171)
(-0.540417 0.635101 -0.285195)
(-0.581629 0.541963 -0.310542)
(-0.627497 0.448048 -0.314045)
(-0.657514 0.349412 -0.279571)
(-0.66504 0.25 -0.223232)
(-0.638169 0.153468 -0.12261)
(-0.550143 0.0528424 -0.0515489)
(-0.428779 -0.00148421 -0.0480974)
(-0.274855 -0.0197626 -0.0645872)
(-0.202089 0.0111472 -0.192986)
(-0.341325 0.0270905 -0.242951)
(-0.429399 -0.0617521 -0.139362)
(-0.392455 -0.12993 -0.100912)
(-0.412435 -0.19531 -0.0880046)
(-0.413327 -0.286177 -0.068119)
(-0.391262 -0.405988 -0.0729857)
(-0.363656 -0.544234 -0.0649515)
(-0.356096 -0.664425 -0.0591662)
(-0.361895 -0.798852 -0.0486161)
(-0.375737 -0.965572 -0.0423439)
(-0.410245 -1.19003 -0.0353276)
(-0.463603 -1.49421 -0.0309864)
(-0.539112 -1.89017 -0.0199625)
(-0.623229 -2.37196 -0.00290074)
(-0.693894 -2.88296 0.0286156)
(-0.731739 -3.29747 0.0586917)
(-0.662989 -3.39273 0.0768008)
(-0.481943 -2.87844 0.062628)
(-0.161225 -1.56541 0.0236277)
(0.0470578 -0.244856 0.0109463)
(0.0140534 0.443696 0.0888654)
(-0.0391027 1.04401 0.208186)
(-0.163348 1.34757 0.268691)
(-0.282189 1.4715 0.265887)
(-0.360801 1.47735 0.200679)
(-0.395947 1.36791 0.0927797)
(-0.396058 1.20055 -0.0241422)
(-0.388798 1.01942 -0.12757)
(-0.40205 0.863641 -0.197645)
(-0.421619 0.739631 -0.248942)
(-0.459118 0.637373 -0.28835)
(-0.502888 0.541267 -0.311945)
(-0.555123 0.445068 -0.30499)
(-0.59025 0.343927 -0.251829)
(-0.603107 0.249728 -0.177147)
(-0.582956 0.15317 -0.0541991)
(-0.463252 0.0851672 0.0208807)
(-0.293869 0.0432529 0.0924882)
(-0.125838 0.0507751 0.0509337)
(-0.0457317 0.0395786 -0.160761)
(-0.23676 0.0296416 -0.276381)
(-0.379485 -0.0681264 -0.135957)
(-0.325572 -0.140336 -0.0712263)
(-0.351604 -0.193602 -0.0632271)
(-0.371955 -0.268584 -0.0411225)
(-0.382128 -0.352213 -0.0425343)
(-0.355687 -0.476618 -0.0346457)
(-0.318406 -0.61065 -0.0356698)
(-0.316791 -0.748127 -0.0278191)
(-0.325588 -0.898498 -0.0251894)
(-0.350914 -1.09686 -0.0216062)
(-0.389805 -1.37374 -0.0211083)
(-0.455121 -1.75239 -0.0150958)
(-0.53776 -2.24226 -0.000944971)
(-0.618567 -2.79789 0.0313915)
(-0.671093 -3.31631 0.0656896)
(-0.629415 -3.55401 0.0917377)
(-0.473146 -3.19133 0.0829953)
(-0.175986 -1.89997 0.0386376)
(0.0554111 -0.294019 0.0112905)
(0.0104278 0.458229 0.100211)
(-0.00981143 1.11492 0.225049)
(-0.108581 1.45022 0.288756)
(-0.217533 1.57358 0.278016)
(-0.273389 1.55612 0.204366)
(-0.30114 1.43127 0.087163)
(-0.303723 1.24829 -0.0332701)
(-0.305777 1.06271 -0.134251)
(-0.320171 0.900423 -0.196883)
(-0.337257 0.771441 -0.243593)
(-0.373742 0.65859 -0.279102)
(-0.420272 0.553872 -0.297852)
(-0.477795 0.455165 -0.276398)
(-0.513144 0.364696 -0.210577)
(-0.522689 0.311891 -0.0973204)
(-0.484935 0.24995 0.00477755)
(-0.36173 0.20646 0.191763)
(-0.16704 0.180507 0.326007)
(0.00922585 0.154188 0.320368)
(0.0628673 0.11091 -0.00312262)
(-0.162485 0.0388097 -0.260943)
(-0.337814 -0.0615913 -0.124519)
(-0.26211 -0.141532 -0.036184)
(-0.286081 -0.194477 -0.0369271)
(-0.316201 -0.261264 -0.015198)
(-0.336371 -0.323786 -0.023443)
(-0.345876 -0.407192 -0.0122954)
(-0.323221 -0.522117 -0.0127422)
(-0.293097 -0.659355 -0.00779727)
(-0.278215 -0.820435 -0.0078538)
(-0.295083 -1.01265 -0.00867047)
(-0.324971 -1.26619 -0.0123404)
(-0.379989 -1.61503 -0.0101057)
(-0.453212 -2.1003 0.00212721)
(-0.537826 -2.69528 0.035289)
(-0.604046 -3.30985 0.0731222)
(-0.587362 -3.69634 0.108041)
(-0.454874 -3.49754 0.103906)
(-0.179357 -2.26085 0.0539339)
(0.0629386 -0.3983 0.0108816)
(0.0101976 0.474033 0.0951473)
(-0.0123538 1.19827 0.224815)
(-0.0610925 1.55062 0.290021)
(-0.136828 1.68518 0.281909)
(-0.188537 1.65422 0.20419)
(-0.206402 1.52005 0.0825853)
(-0.217951 1.32818 -0.0379731)
(-0.228179 1.1394 -0.136143)
(-0.24509 0.971625 -0.193532)
(-0.261392 0.833059 -0.239632)
(-0.299964 0.712329 -0.264292)
(-0.341229 0.612278 -0.269218)
(-0.387424 0.525171 -0.22847)
(-0.385446 0.46718 -0.147147)
(-0.386644 0.427904 -0.0229659)
(-0.388293 0.395517 0.123242)
(-0.259488 0.407491 0.369914)
(-0.0451186 0.432389 0.621592)
(0.122799 0.361225 0.686931)
(0.124167 0.217001 0.252248)
(-0.130197 0.086136 -0.208738)
(-0.29151 -0.0377997 -0.0999349)
(-0.202838 -0.122956 0.0132268)
(-0.220498 -0.18372 -0.0093347)
(-0.25453 -0.247464 0.00684411)
(-0.277733 -0.30373 -0.00651755)
(-0.295954 -0.367236 0.000717319)
(-0.297072 -0.440825 -0.00125053)
(-0.303023 -0.541982 0.00386979)
(-0.290092 -0.682335 0.00432265)
(-0.276711 -0.857035 0.00474768)
(-0.271751 -1.10553 -2.94204e-05)
(-0.303065 -1.45235 -0.00418849)
(-0.368967 -1.93352 0.00413322)
(-0.460441 -2.54188 0.0356079)
(-0.538949 -3.24 0.0806995)
(-0.556944 -3.77557 0.12344)
(-0.459586 -3.75185 0.127894)
(-0.212449 -2.59423 0.0791677)
(0.0476981 -0.450509 0.0222321)
(0.00410114 0.650566 0.138165)
(0.0139514 1.43344 0.274441)
(-0.0220729 1.82112 0.335572)
(-0.0658594 1.9232 0.317191)
(-0.0885332 1.887 0.226112)
(-0.119661 1.73781 0.103249)
(-0.139584 1.54737 -0.0161868)
(-0.163244 1.36752 -0.113935)
(-0.182996 1.1986 -0.168434)
(-0.190592 1.041 -0.209536)
(-0.20734 0.906212 -0.215365)
(-0.228872 0.793711 -0.194554)
(-0.256377 0.691946 -0.134802)
(-0.262129 0.627327 -0.0426083)
(-0.272256 0.562862 0.0940441)
(-0.222605 0.561494 0.217697)
(-0.0775298 0.696294 0.44178)
(0.0739803 0.8461 0.78207)
(0.166983 0.756181 1.00424)
(0.112282 0.39385 0.551293)
(-0.123508 0.16577 -0.104297)
(-0.26443 0.0134512 -0.0585599)
(-0.148131 -0.0858353 0.077903)
(-0.158028 -0.156084 0.0239719)
(-0.191802 -0.222775 0.0327803)
(-0.215292 -0.281471 0.0107259)
(-0.237974 -0.339581 0.0139095)
(-0.243081 -0.405503 0.00919199)
(-0.255276 -0.477005 0.013299)
(-0.259355 -0.569528 0.0118651)
(-0.274918 -0.692296 0.00912969)
(-0.289307 -0.890078 0.00347697)
(-0.30268 -1.18965 -0.00227719)
(-0.3084 -1.65935 0.00924712)
(-0.362171 -2.31527 0.0366938)
(-0.44987 -3.09151 0.0830661)
(-0.491936 -3.76656 0.134908)
(-0.436127 -3.95441 0.144717)
(-0.214969 -2.96394 0.0975085)
(0.0575539 -0.631718 0.0259574)
(-0.0252338 0.774889 0.131169)
(-0.0184891 1.64036 0.276766)
(-0.010051 2.06112 0.345088)
(-0.0282972 2.17948 0.32779)
(-0.0323394 2.11962 0.240069)
(-0.0458514 1.95235 0.101529)
(-0.0564831 1.75752 -0.0171159)
(-0.0927194 1.5781 -0.106632)
(-0.135022 1.42363 -0.15519)
(-0.146957 1.25963 -0.177578)
(-0.155725 1.10848 -0.165508)
(-0.171416 0.972934 -0.128326)
(-0.18465 0.845043 -0.0559714)
(-0.166048 0.765978 0.0391645)
(-0.13175 0.724954 0.206892)
(0.0174184 0.765673 0.282788)
(0.241463 1.01008 0.314879)
(0.236919 1.35739 0.493827)
(0.0612722 1.45265 0.930892)
(-0.0812991 0.917181 0.790239)
(-0.191378 0.353355 0.0793493)
(-0.24579 0.128358 0.0228638)
(-0.107173 -0.0269342 0.143781)
(-0.100829 -0.113398 0.0606446)
(-0.132876 -0.189573 0.0576528)
(-0.157128 -0.253468 0.0204277)
(-0.185151 -0.312414 0.0237445)
(-0.195344 -0.379367 0.0183145)
(-0.210657 -0.442861 0.0226204)
(-0.208453 -0.519834 0.0215122)
(-0.214172 -0.604082 0.0181883)
(-0.22569 -0.735442 0.0109027)
(-0.272734 -0.94265 0.000133501)
(-0.355981 -1.33444 -0.0036601)
(-0.402661 -1.92863 0.0174555)
(-0.41522 -2.75604 0.0891748)
(-0.460078 -3.55832 0.142277)
(-0.441534 -3.9822 0.162934)
(-0.267409 -3.25082 0.12329)
(0.0140901 -0.945005 0.0428552)
(-0.020747 0.719428 0.126376)
(-0.00311413 1.62954 0.275724)
(0.0204625 2.08777 0.341396)
(0.0189849 2.23505 0.329074)
(0.0257122 2.19116 0.243061)
(0.0152932 2.02812 0.107664)
(0.00270434 1.82947 -0.00861718)
(-0.018864 1.6348 -0.0970725)
(-0.0608839 1.4853 -0.139829)
(-0.0954769 1.34338 -0.151216)
(-0.0951984 1.19286 -0.132337)
(-0.0994735 1.06083 -0.0928702)
(-0.0864482 0.945284 -0.0221131)
(-0.0292449 0.864052 0.056025)
(0.0460596 0.850131 0.234029)
(0.331304 0.95541 0.219143)
(0.731942 1.22597 0.0443804)
(0.706933 1.57641 -0.28741)
(0.158448 1.90686 -0.345366)
(-0.422392 1.54629 0.0274859)
(-0.528817 0.730788 0.0521035)
(-0.339935 0.307984 0.0734691)
(-0.118688 0.0854754 0.165442)
(-0.0594589 -0.049683 0.081173)
(-0.0805193 -0.144104 0.0629087)
(-0.0991889 -0.224941 0.0299879)
(-0.132845 -0.287028 0.0249783)
(-0.144131 -0.354593 0.0226448)
(-0.156879 -0.413852 0.0268599)
(-0.154476 -0.48446 0.0271229)
(-0.159801 -0.55956 0.024764)
(-0.161843 -0.674568 0.0193045)
(-0.186846 -0.837484 0.0106185)
(-0.240886 -1.13186 0.00925811)
(-0.363853 -1.58285 0.00886233)
(-0.433697 -2.32435 0.062215)
(-0.467938 -3.15144 0.136167)
(-0.486055 -3.73899 0.161893)
(-0.36435 -3.26616 0.134791)
(-0.0720328 -1.02176 0.0495214)
(-0.00760939 0.706084 0.115336)
(0.0204379 1.59519 0.250839)
(0.0513162 2.06564 0.322116)
(0.0617625 2.23733 0.314625)
(0.0726675 2.2092 0.237913)
(0.0656644 2.06149 0.111098)
(0.0515642 1.87605 -0.00252313)
(0.0259735 1.68657 -0.0900586)
(0.000408781 1.51993 -0.134682)
(-0.0298593 1.38381 -0.142072)
(-0.0428761 1.24688 -0.126986)
(-0.0336265 1.10409 -0.088479)
(-0.00808901 0.982962 -0.0271685)
(0.0911747 0.885497 0.0268938)
(0.281442 0.867103 0.128579)
(0.664184 0.976288 0.0124708)
(1.11004 1.18084 -0.282312)
(1.19221 1.29544 -1.00145)
(0.531558 1.37657 -2.01952)
(-0.544981 1.2276 -1.68784)
(-0.989602 0.762052 -0.437173)
(-0.60963 0.387935 0.0950175)
(-0.188048 0.163356 0.144006)
(-0.0645965 -0.00336896 0.0778325)
(-0.0533189 -0.102936 0.0396285)
(-0.0582266 -0.198053 0.017404)
(-0.0831762 -0.263132 0.0180965)
(-0.0962619 -0.333225 0.0200035)
(-0.110875 -0.390464 0.0271815)
(-0.106971 -0.46006 0.0312381)
(-0.111192 -0.527197 0.0307352)
(-0.11054 -0.629028 0.0258477)
(-0.134621 -0.767842 0.0152326)
(-0.175064 -1.02466 0.0112596)
(-0.266948 -1.414 0.0141888)
(-0.344294 -2.01645 0.0591875)
(-0.419506 -2.78109 0.130984)
(-0.466299 -3.44816 0.164633)
(-0.380247 -3.19088 0.1403)
(-0.115736 -1.07742 0.0532594)
(-0.00382691 0.656576 0.103123)
(0.0404951 1.51868 0.231122)
(0.084986 2.01036 0.302437)
(0.103295 2.20496 0.301307)
(0.117133 2.19777 0.231966)
(0.113396 2.06619 0.113584)
(0.101622 1.8938 0.000543163)
(0.077651 1.71225 -0.0858847)
(0.0517435 1.55034 -0.131949)
(0.0239876 1.39534 -0.144825)
(0.01301 1.2586 -0.133654)
(0.0185939 1.11463 -0.105397)
(0.0618236 0.971334 -0.0491491)
(0.208453 0.854375 0.00699591)
(0.468567 0.788267 0.0387814)
(0.91952 0.784109 -0.11086)
(1.27485 0.852007 -0.476825)
(1.16926 0.779969 -1.35864)
(0.428561 0.36517 -2.60105)
(-0.62535 0.170094 -2.3824)
(-1.07823 0.255928 -0.868646)
(-0.710393 0.267882 0.0286408)
(-0.230291 0.138148 0.135432)
(-0.0586647 0.0298874 0.066845)
(-0.0192948 -0.0586129 0.00770405)
(-0.0164635 -0.155113 -0.00824343)
(-0.0349511 -0.230265 -0.00338404)
(-0.0449201 -0.307804 0.0103373)
(-0.0571633 -0.367922 0.0231965)
(-0.0534725 -0.438273 0.0313006)
(-0.0570063 -0.504208 0.0327034)
(-0.0523163 -0.602608 0.0283978)
(-0.0710979 -0.726367 0.01732)
(-0.0987214 -0.954192 0.0119632)
(-0.174709 -1.29332 0.0166999)
(-0.254262 -1.85459 0.0605513)
(-0.355528 -2.57569 0.123925)
(-0.426283 -3.30694 0.16148)
(-0.374032 -3.23092 0.1436)
(-0.139241 -1.29505 0.0551213)
(0.00134196 0.604146 0.0873644)
(0.0583221 1.43569 0.205957)
(0.114842 1.94435 0.279163)
(0.14215 2.16465 0.284834)
(0.159386 2.17804 0.223931)
(0.158599 2.0642 0.114374)
(0.148355 1.89957 0.00271872)
(0.124219 1.72483 -0.0831974)
(0.100144 1.56235 -0.133016)
(0.0745988 1.40891 -0.151127)
(0.0600899 1.26205 -0.142314)
(0.0578468 1.11269 -0.120398)
(0.102148 0.960996 -0.0582073)
(0.26478 0.810901 -0.00944472)
(0.546104 0.668645 0.0206694)
(1.0026 0.510366 -0.123568)
(1.2768 0.343935 -0.447474)
(0.873794 0.167474 -1.25628)
(-0.0347185 -0.192005 -1.97968)
(-0.675134 -0.347373 -1.59745)
(-0.738563 -0.150013 -0.722119)
(-0.469266 0.0764179 -0.135509)
(-0.152226 0.0842853 0.0660297)
(0.000798225 0.0404128 0.0161435)
(0.0169223 -0.0371499 -0.0677582)
(0.014001 -0.125792 -0.0668541)
(-0.00149157 -0.202959 -0.0406264)
(-0.00731422 -0.283949 -0.0118625)
(-0.0175367 -0.347978 0.0108567)
(-0.013541 -0.420018 0.0269533)
(-0.0220342 -0.483459 0.0334201)
(-0.0185931 -0.576328 0.0313035)
(-0.0388675 -0.685068 0.0199103)
(-0.0555447 -0.896202 0.0140327)
(-0.117175 -1.21275 0.0212142)
(-0.186055 -1.76309 0.0648614)
(-0.293344 -2.48478 0.128046)
(-0.371736 -3.28664 0.172763)
(-0.354558 -3.35853 0.15939)
(-0.138175 -1.53407 0.0714616)
(0.00327354 0.547361 0.0736827)
(0.0705998 1.34151 0.183193)
(0.139442 1.86865 0.258379)
(0.175834 2.11858 0.271212)
(0.199386 2.1563 0.219516)
(0.201896 2.06027 0.119591)
(0.195432 1.9043 0.00981119)
(0.173098 1.7341 -0.0752045)
(0.1491 1.57179 -0.128926)
(0.122979 1.41708 -0.151257)
(0.107056 1.26725 -0.145063)
(0.100082 1.11518 -0.122187)
(0.131779 0.962831 -0.0594321)
(0.274922 0.792841 -0.00326323)
(0.506616 0.595436 0.0286893)
(0.88031 0.334607 -0.0843393)
(1.13078 -0.0716923 -0.263249)
(0.813273 -0.408596 -0.783933)
(0.0213764 -0.558879 -1.21129)
(-0.511727 -0.472882 -0.863636)
(-0.429168 -0.264244 -0.371052)
(-0.186141 -0.0891204 -0.131073)
(-0.0104577 0.00157761 0.00638071)
(0.0772429 -0.0172194 -0.0653742)
(0.0701393 -0.0680864 -0.1368)
(0.063104 -0.135767 -0.125307)
(0.04418 -0.196872 -0.0790234)
(0.0404262 -0.269081 -0.0367707)
(0.0326373 -0.330711 -0.00611695)
(0.0387005 -0.400446 0.0145864)
(0.0311775 -0.460579 0.0252077)
(0.0384982 -0.552439 0.0263559)
(0.0125717 -0.658034 0.018936)
(-0.00372511 -0.854418 0.00762934)
(-0.0578889 -1.16456 0.0148617)
(-0.119422 -1.72492 0.0589574)
(-0.237215 -2.48029 0.126466)
(-0.326782 -3.38783 0.177143)
(-0.348049 -3.6184 0.169119)
(-0.144132 -1.84988 0.0767454)
(0.00833893 0.487055 0.0585624)
(0.084474 1.23166 0.15892)
(0.16214 1.7724 0.235648)
(0.205791 2.0528 0.256685)
(0.235264 2.11754 0.215027)
(0.24214 2.04125 0.125661)
(0.23915 1.89685 0.0208619)
(0.218956 1.73162 -0.0637594)
(0.195008 1.57049 -0.120403)
(0.169433 1.41676 -0.145883)
(0.150585 1.26973 -0.141848)
(0.140351 1.11895 -0.118308)
(0.158008 0.97173 -0.0586322)
(0.262822 0.802134 0.00360094)
(0.433788 0.594186 0.0468829)
(0.645926 0.326261 0.0037149)
(0.830438 -0.114869 -0.0954352)
(0.715918 -0.574434 -0.290478)
(0.255329 -0.785073 -0.513077)
(-0.0733561 -0.607504 -0.369349)
(-0.0683579 -0.356578 -0.129686)
(0.0617171 -0.199632 -0.0511114)
(0.175124 -0.105885 -0.0342639)
(0.195345 -0.0994711 -0.121969)
(0.158126 -0.123076 -0.174384)
(0.135957 -0.170373 -0.155988)
(0.107502 -0.214797 -0.107522)
(0.0943602 -0.278843 -0.054887)
(0.0842473 -0.343073 -0.0161312)
(0.091953 -0.429471 0.00812152)
(0.074265 -0.518184 0.0221215)
(0.0706502 -0.641039 0.0276934)
(0.0462407 -0.765493 0.0199395)
(0.021782 -0.97608 0.0155706)
(-0.0388231 -1.27271 0.00934576)
(-0.0825033 -1.84052 0.05984)
(-0.201643 -2.62633 0.131126)
(-0.284439 -3.65771 0.191869)
(-0.314065 -4.08272 0.192411)
(-0.130495 -2.43839 0.100137)
(0.00966549 0.434739 0.0492553)
(0.094936 1.12257 0.1352)
(0.182605 1.67105 0.214707)
(0.229977 1.9868 0.243818)
(0.26563 2.08255 0.213713)
(0.278907 2.02985 0.134951)
(0.28243 1.89759 0.0364206)
(0.267062 1.73916 -0.0475242)
(0.244951 1.57959 -0.106776)
(0.221443 1.42696 -0.13596)
(0.201341 1.28304 -0.13562)
(0.189531 1.13782 -0.112704)
(0.195839 0.996941 -0.0600677)
(0.268018 0.840323 0.00585325)
(0.386646 0.651743 0.0632154)
(0.508206 0.419635 0.080411)
(0.576609 0.119443 0.068491)
(0.524482 -0.239051 0.00672691)
(0.375945 -0.445738 -0.0776997)
(0.252851 -0.403044 -0.0471192)
(0.271507 -0.294688 -0.000312092)
(0.341905 -0.195302 -0.012741)
(0.36495 -0.150634 -0.0932477)
(0.334151 -0.143695 -0.169006)
(0.26424 -0.155603 -0.191422)
(0.228154 -0.189529 -0.159978)
(0.185196 -0.220977 -0.111787)
(0.156817 -0.2759 -0.0646161)
(0.124595 -0.344184 -0.0230494)
(0.107214 -0.4611 -0.00457483)
(0.0684516 -0.571125 0.010521)
(0.0650586 -0.717163 0.020345)
(0.0320147 -0.840331 0.0144926)
(0.0218636 -1.04717 0.00738119)
(-0.0334374 -1.3237 0.00530102)
(-0.069999 -1.88697 0.048732)
(-0.192291 -2.70678 0.130058)
(-0.276177 -3.87694 0.196326)
(-0.32775 -4.52982 0.206757)
(-0.151894 -3.08256 0.117398)
(0.0104036 0.378135 0.0420365)
(0.103846 0.999321 0.115675)
(0.207433 1.53677 0.187104)
(0.256143 1.88534 0.228737)
(0.290442 2.01555 0.210357)
(0.30934 1.98958 0.143802)
(0.319783 1.87491 0.0521932)
(0.310939 1.72556 -0.0297443)
(0.292012 1.57108 -0.0915229)
(0.27236 1.4224 -0.124871)
(0.25344 1.28452 -0.129819)
(0.241403 1.14856 -0.110803)
(0.242177 1.01748 -0.0649528)
(0.291541 0.877698 -0.00198643)
(0.374993 0.709693 0.061227)
(0.46216 0.519619 0.11103)
(0.515055 0.306903 0.121272)
(0.494397 0.100352 0.103381)
(0.430668 -0.0447462 0.0840345)
(0.397728 -0.0911771 0.0843001)
(0.441648 -0.0926662 0.0386498)
(0.500875 -0.0863212 -0.0326649)
(0.514129 -0.0932474 -0.116842)
(0.470683 -0.121197 -0.190517)
(0.383765 -0.131004 -0.187455)
(0.334214 -0.159411 -0.147353)
(0.279858 -0.184774 -0.101755)
(0.227314 -0.233971 -0.0633196)
(0.153238 -0.325873 -0.0329809)
(0.120192 -0.440643 -0.0134368)
(0.0812424 -0.535376 0.00148597)
(0.0858644 -0.672013 0.0110124)
(0.0586687 -0.777376 0.00778858)
(0.0374627 -0.989247 0.00693101)
(-0.0299606 -1.21776 -0.00190021)
(-0.051262 -1.77174 0.0456529)
(-0.183671 -2.58542 0.128143)
(-0.270336 -3.87064 0.203268)
(-0.349396 -4.75256 0.220645)
(-0.179016 -3.56449 0.13355)
(0.00541533 0.338797 0.0320984)
(0.0961598 0.90558 0.0991428)
(0.222575 1.41569 0.162552)
(0.284942 1.78636 0.208997)
(0.312614 1.95725 0.20767)
(0.334901 1.96233 0.153517)
(0.355835 1.86975 0.0728128)
(0.357901 1.72592 -0.0101574)
(0.345854 1.57788 -0.0736081)
(0.33252 1.43123 -0.112887)
(0.31796 1.29775 -0.125519)
(0.307637 1.16956 -0.11449)
(0.305172 1.05009 -0.0787266)
(0.334764 0.928124 -0.0227411)
(0.394346 0.782089 0.0332492)
(0.460727 0.622254 0.0883237)
(0.50237 0.443437 0.106855)
(0.508155 0.271582 0.093784)
(0.51281 0.143436 0.0771677)
(0.525651 0.0733681 0.0435083)
(0.588508 0.0235302 -0.00957383)
(0.647769 0.0165305 -0.0731301)
(0.627308 -0.0100734 -0.14789)
(0.584302 -0.050394 -0.192519)
(0.504849 -0.0756266 -0.192925)
(0.445922 -0.102088 -0.149567)
(0.380668 -0.122228 -0.102265)
(0.283906 -0.175654 -0.0687943)
(0.187744 -0.275189 -0.0429625)
(0.174441 -0.374789 -0.0234265)
(0.118093 -0.455977 -0.00714174)
(0.114422 -0.587406 -0.000544052)
(0.0570055 -0.694115 4.09252e-05)
(0.0608507 -0.898321 -0.00498074)
(-0.0121638 -1.10503 -0.00447747)
(-0.0379966 -1.6178 0.0301434)
(-0.165564 -2.40209 0.125196)
(-0.258069 -3.76035 0.200969)
(-0.362289 -4.84725 0.228834)
(-0.201855 -3.96817 0.147117)
(0.00764649 0.286111 0.0242818)
(0.0888664 0.795584 0.0848396)
(0.220475 1.27732 0.141917)
(0.311211 1.63628 0.181981)
(0.339564 1.84537 0.198912)
(0.355051 1.88383 0.159141)
(0.378117 1.82141 0.0895274)
(0.391175 1.68883 0.00874658)
(0.393731 1.55152 -0.0553056)
(0.387331 1.409 -0.100941)
(0.380553 1.28056 -0.12275)
(0.376412 1.15953 -0.123152)
(0.378105 1.05057 -0.101708)
(0.396325 0.94458 -0.0622704)
(0.43589 0.826379 -0.0142611)
(0.483189 0.690605 0.0226824)
(0.516666 0.54629 0.0436823)
(0.538315 0.409437 0.0411746)
(0.572544 0.289926 0.0327684)
(0.613743 0.184039 -0.00482406)
(0.711185 0.0998541 -0.0500126)
(0.787749 0.0716215 -0.107387)
(0.757516 0.0290354 -0.167639)
(0.706331 -0.00693431 -0.208037)
(0.621131 -0.0355454 -0.207736)
(0.56932 -0.0600066 -0.16826)
(0.488354 -0.0685853 -0.113432)
(0.353457 -0.11119 -0.081134)
(0.236155 -0.188139 -0.0544196)
(0.230634 -0.292411 -0.0355996)
(0.162411 -0.371419 -0.0188524)
(0.15156 -0.503274 -0.00904032)
(0.0832988 -0.598519 -0.00800116)
(0.0783846 -0.790438 -0.0114729)
(-0.000750677 -0.984452 -0.00613308)
(-0.00608769 -1.45824 0.0260312)
(-0.147979 -2.19365 0.119317)
(-0.229115 -3.5925 0.204101)
(-0.375502 -4.85659 0.234711)
(-0.222568 -4.32375 0.159729)
(0.00215706 0.258921 0.0202321)
(0.0718638 0.725858 0.0755136)
(0.194855 1.17926 0.127649)
(0.313168 1.5327 0.163261)
(0.370247 1.74708 0.180366)
(0.381251 1.82809 0.162163)
(0.403327 1.78953 0.105569)
(0.428131 1.67994 0.0353214)
(0.446731 1.54242 -0.0326078)
(0.450539 1.40147 -0.0838399)
(0.453412 1.27089 -0.116177)
(0.456605 1.14887 -0.12896)
(0.463853 1.04035 -0.124375)
(0.480049 0.936251 -0.106652)
(0.505186 0.832843 -0.0795568)
(0.540338 0.71813 -0.0535597)
(0.576329 0.602612 -0.0328508)
(0.602458 0.491049 -0.0287162)
(0.639467 0.379451 -0.0330859)
(0.68701 0.264972 -0.0632621)
(0.817862 0.165635 -0.089364)
(0.914418 0.12069 -0.138434)
(0.87518 0.0628391 -0.179443)
(0.83577 0.016962 -0.205725)
(0.756234 -0.00568073 -0.20047)
(0.706848 -0.0301378 -0.176233)
(0.622203 -0.0287502 -0.130427)
(0.457419 -0.0518252 -0.0902597)
(0.298304 -0.0918776 -0.0650949)
(0.293991 -0.200641 -0.0459274)
(0.212648 -0.268677 -0.0305924)
(0.201175 -0.40366 -0.0205056)
(0.10928 -0.485012 -0.0160134)
(0.10754 -0.679875 -0.0186456)
(0.0125825 -0.844071 -0.0127613)
(0.0202074 -1.29722 0.0243659)
(-0.126972 -1.97861 0.116037)
(-0.198196 -3.40322 0.201478)
(-0.388664 -4.82897 0.237742)
(-0.249305 -4.67897 0.167707)
(0.00864745 0.214869 0.0187303)
(0.0588643 0.632237 0.0727724)
(0.162884 1.05277 0.117266)
(0.286059 1.38924 0.151972)
(0.376303 1.59322 0.162155)
(0.409119 1.69199 0.155651)
(0.417709 1.6912 0.1136)
(0.444764 1.60258 0.0537458)
(0.473788 1.48125 -0.00907583)
(0.495122 1.34239 -0.0652394)
(0.509337 1.21737 -0.10418)
(0.52197 1.09643 -0.128627)
(0.535827 0.989194 -0.137921)
(0.554904 0.886812 -0.13589)
(0.579695 0.790527 -0.123351)
(0.610379 0.693066 -0.108588)
(0.643547 0.593697 -0.0927762)
(0.667721 0.49276 -0.0902937)
(0.706063 0.388193 -0.0892254)
(0.763078 0.275455 -0.105928)
(0.922818 0.177293 -0.113828)
(1.03967 0.126235 -0.149558)
(0.997912 0.0699258 -0.173445)
(0.96871 0.0292254 -0.187864)
(0.893531 0.0124635 -0.175664)
(0.854287 -0.00172349 -0.161249)
(0.771514 0.00640179 -0.131766)
(0.593963 -0.00879591 -0.106951)
(0.391555 -0.0309221 -0.0740619)
(0.366136 -0.102847 -0.059072)
(0.277907 -0.174327 -0.0401963)
(0.263396 -0.299035 -0.0290085)
(0.155953 -0.371431 -0.021754)
(0.146275 -0.562862 -0.0191253)
(0.0346699 -0.707118 -0.0142208)
(0.0524251 -1.15064 0.030928)
(-0.108542 -1.77224 0.11051)
(-0.161424 -3.22004 0.20213)
(-0.41757 -4.79498 0.238741)
(-0.279587 -5.0863 0.174549)
(0.000892649 0.206292 0.0213623)
(0.0297143 0.603453 0.0737548)
(0.104384 0.996056 0.118046)
(0.229622 1.33288 0.147602)
(0.352231 1.52445 0.159734)
(0.43258 1.60673 0.149265)
(0.450289 1.6321 0.125014)
(0.470114 1.54994 0.0763109)
(0.510626 1.44475 0.0208336)
(0.543728 1.31168 -0.0314063)
(0.576919 1.18393 -0.0801308)
(0.599504 1.06186 -0.10882)
(0.621408 0.955242 -0.128077)
(0.644899 0.853026 -0.136758)
(0.671285 0.759797 -0.135143)
(0.699539 0.667508 -0.130152)
(0.728914 0.578107 -0.118858)
(0.750614 0.48735 -0.115536)
(0.788784 0.394416 -0.110989)
(0.850083 0.285747 -0.119772)
(1.03783 0.192658 -0.11847)
(1.17924 0.142868 -0.146005)
(1.13981 0.0914416 -0.159696)
(1.12494 0.0550186 -0.169496)
(1.05695 0.0462773 -0.160636)
(1.0228 0.0409039 -0.14887)
(0.934211 0.061138 -0.126006)
(0.735488 0.0458974 -0.102289)
(0.517598 0.0353192 -0.0812757)
(0.479208 -0.023181 -0.0633398)
(0.348341 -0.0642242 -0.0459287)
(0.351093 -0.184524 -0.0362514)
(0.21021 -0.229403 -0.0280807)
(0.211675 -0.418647 -0.0227688)
(0.0564382 -0.540792 -0.0116459)
(0.101671 -0.965177 0.0248492)
(-0.0894635 -1.56405 0.120315)
(-0.130298 -2.99235 0.204463)
(-0.456951 -4.75246 0.238696)
(-0.316659 -5.58191 0.180391)
(0.014298 0.181128 0.0290744)
(0.0230842 0.525465 0.0872807)
(0.0527769 0.907046 0.120125)
(0.156552 1.19564 0.153845)
(0.273209 1.38802 0.163283)
(0.406587 1.44289 0.155402)
(0.452815 1.48164 0.132998)
(0.464712 1.41544 0.100093)
(0.520307 1.32686 0.0524576)
(0.566408 1.21641 0.00896431)
(0.612902 1.10229 -0.0339784)
(0.653402 0.987287 -0.0724064)
(0.689322 0.885279 -0.0988179)
(0.720894 0.789479 -0.114112)
(0.752785 0.702322 -0.121193)
(0.78411 0.615077 -0.123539)
(0.814737 0.533955 -0.117926)
(0.836388 0.45193 -0.117902)
(0.875513 0.368201 -0.114562)
(0.943424 0.261297 -0.1207)
(1.15922 0.178508 -0.11736)
(1.32506 0.130141 -0.139292)
(1.28658 0.0861169 -0.144154)
(1.28424 0.0541177 -0.150227)
(1.22187 0.0568953 -0.139199)
(1.20102 0.0610973 -0.12784)
(1.10258 0.0987705 -0.108293)
(0.899499 0.0900386 -0.0934707)
(0.645876 0.105214 -0.0774239)
(0.614765 0.0387968 -0.0655149)
(0.468993 0.032849 -0.0534171)
(0.470845 -0.0729589 -0.0339619)
(0.317801 -0.0993639 -0.0195975)
(0.310073 -0.281021 -0.0176964)
(0.139622 -0.378138 -0.000538534)
(0.172317 -0.78783 0.0287769)
(-0.0260101 -1.353 0.129075)
(-0.0528287 -2.77605 0.205785)
(-0.514277 -4.70228 0.245154)
(-0.313524 -6.18876 0.191406)
(-0.019447 0.174002 0.0354247)
(-0.0247277 0.564752 0.104046)
(-0.0280451 0.888322 0.139069)
(0.035083 1.20607 0.16362)
(0.1725 1.35722 0.174164)
(0.355173 1.37995 0.172183)
(0.455244 1.3863 0.150997)
(0.475067 1.32138 0.130124)
(0.54308 1.23249 0.0902181)
(0.606368 1.13249 0.0542706)
(0.671619 1.03223 0.0175951)
(0.722714 0.930002 -0.0124639)
(0.771475 0.835171 -0.0422877)
(0.813968 0.744382 -0.0665229)
(0.850996 0.659851 -0.0805763)
(0.885614 0.575705 -0.0878204)
(0.917412 0.499518 -0.0891196)
(0.938482 0.422209 -0.0948537)
(0.975778 0.350113 -0.0963334)
(1.05236 0.248614 -0.103681)
(1.29742 0.182554 -0.1016)
(1.48914 0.136946 -0.119743)
(1.4562 0.0998394 -0.11927)
(1.47276 0.0701031 -0.122169)
(1.42072 0.076282 -0.113037)
(1.4111 0.0838213 -0.100728)
(1.30291 0.136522 -0.0857998)
(1.09459 0.127359 -0.0781712)
(0.816395 0.166624 -0.0655927)
(0.78803 0.115217 -0.0586884)
(0.630879 0.125607 -0.0394309)
(0.649759 0.033651 -0.0378516)
(0.464255 0.0146306 -0.0214951)
(0.487938 -0.130361 -0.0117654)
(0.272771 -0.197202 0.00473676)
(0.319263 -0.564928 0.0440237)
(0.0770251 -1.0396 0.11093)
(0.119576 -2.45766 0.239001)
(-0.499351 -4.57771 0.22612)
(-0.244798 -6.77955 0.20702)
(0.0438731 0.318195 0.0592796)
(-0.00600521 0.506522 0.129273)
(-0.0942541 0.778425 0.163811)
(-0.0390328 0.971218 0.186602)
(-0.00237075 1.17534 0.193713)
(0.205718 1.15968 0.191705)
(0.378807 1.17204 0.174186)
(0.432408 1.10615 0.163395)
(0.523088 1.03727 0.129774)
(0.612635 0.958061 0.102821)
(0.698864 0.878206 0.0714819)
(0.771057 0.797056 0.0448755)
(0.833401 0.72482 0.021159)
(0.883929 0.652921 0.00135532)
(0.928632 0.585224 -0.0157344)
(0.971255 0.514057 -0.0324613)
(1.00964 0.443699 -0.0428611)
(1.03962 0.373753 -0.0551984)
(1.08493 0.311821 -0.0622581)
(1.18094 0.209575 -0.0724786)
(1.45728 0.158403 -0.0736471)
(1.67423 0.107576 -0.0917256)
(1.64812 0.0736706 -0.0887937)
(1.6797 0.0427735 -0.0909954)
(1.63692 0.0714593 -0.0781763)
(1.65834 0.0696768 -0.0657356)
(1.53957 0.150338 -0.0568231)
(1.3506 0.143366 -0.0538516)
(1.05674 0.216897 -0.0413255)
(1.05706 0.174891 -0.0382409)
(0.896241 0.209908 -0.0235967)
(0.946526 0.115048 -0.0133126)
(0.760912 0.101012 -0.0036422)
(0.848442 -0.0246825 0.0105683)
(0.594796 -0.104437 0.0246471)
(0.7169 -0.401694 0.0491673)
(0.374619 -0.822983 0.119577)
(0.507919 -2.0756 0.193289)
(-0.210448 -4.36406 0.264243)
(0.0412061 -7.30205 0.224336)
(-0.219904 0.078397 0.0722373)
(-0.28754 0.704424 0.162882)
(-0.271132 0.875867 0.195755)
(-0.230577 1.01674 0.214839)
(-0.108833 1.04235 0.228422)
(0.0715053 1.05597 0.221382)
(0.284021 0.987248 0.211036)
(0.37626 0.929752 0.203797)
(0.501522 0.862471 0.178569)
(0.611196 0.801895 0.15943)
(0.722662 0.739844 0.135342)
(0.816959 0.677239 0.114193)
(0.900967 0.61938 0.0939025)
(0.972588 0.563643 0.0747799)
(1.03151 0.512064 0.0590681)
(1.08556 0.455937 0.0428312)
(1.13868 0.389602 0.0300333)
(1.19404 0.328103 0.0137571)
(1.25894 0.284675 0.00183564)
(1.40756 0.194614 -0.0133431)
(1.74219 0.166372 -0.0187212)
(2.02538 0.113074 -0.0336729)
(2.03726 0.0814534 -0.0292969)
(2.1351 0.0539117 -0.0295135)
(2.10897 0.0671357 -0.0243908)
(2.16432 0.0478117 -0.0158186)
(2.04827 0.140953 -0.00574444)
(1.90158 0.12417 -0.00771134)
(1.58414 0.223416 0.00111892)
(1.64138 0.199564 0.00135783)
(1.47227 0.248131 0.00646711)
(1.60662 0.166366 0.0108954)
(1.39813 0.161927 0.017421)
(1.56992 0.0323802 0.0227931)
(1.24624 -0.0271686 0.0397374)
(1.43752 -0.249663 0.0640583)
(0.995113 -0.519461 0.111608)
(1.19726 -1.46702 0.188205)
(0.37745 -3.87125 0.251881)
(0.506371 -7.19008 0.234015)
(-0.731351 0.793248 0.186015)
(-0.594012 0.400104 0.26611)
(-0.727386 0.579826 0.261983)
(-0.44242 0.609651 0.265493)
(-0.294632 0.616884 0.267506)
(0.00921311 0.669739 0.264009)
(0.255363 0.634374 0.249261)
(0.469782 0.605885 0.249191)
(0.66529 0.569167 0.231201)
(0.85873 0.535836 0.219743)
(1.04311 0.497821 0.20263)
(1.21582 0.459617 0.188324)
(1.36802 0.424821 0.173553)
(1.50583 0.394744 0.158802)
(1.61894 0.371843 0.144807)
(1.72693 0.339746 0.128695)
(1.83529 0.290436 0.114527)
(1.9866 0.256268 0.0991394)
(2.16319 0.222971 0.0899526)
(2.4535 0.124632 0.0721256)
(2.87699 0.0969134 0.0648373)
(3.28817 0.0413821 0.0466957)
(3.34881 0.00085539 0.040665)
(3.49 -0.0345061 0.0334674)
(3.4283 -0.0156809 0.0403562)
(3.5407 -0.0110877 0.0355164)
(3.38222 0.0751454 0.0396681)
(3.32884 0.0729678 0.0341603)
(2.95731 0.163094 0.0478453)
(3.12864 0.1752 0.0479318)
(2.92689 0.215106 0.0498459)
(3.2359 0.149978 0.0512695)
(2.9536 0.111088 0.0543283)
(3.28988 0.0265549 0.0573172)
(2.81795 -0.0421339 0.0721268)
(3.1692 -0.221214 0.080849)
(2.50788 -0.508438 0.109492)
(2.87067 -1.13573 0.151412)
(1.89099 -3.14598 0.209049)
(1.34114 -6.08474 0.209698)
(1.15833 1.47197 0.083963)
(1.72277 0.721655 0.117951)
(2.46736 0.567048 0.127001)
(2.88522 0.352135 0.131664)
(3.17085 0.284336 0.13263)
(3.4206 0.224422 0.135984)
(3.66329 0.216152 0.135498)
(3.87476 0.190071 0.147055)
(4.07632 0.180174 0.149033)
(4.28783 0.168036 0.15134)
(4.49017 0.157637 0.149675)
(4.69352 0.145842 0.148316)
(4.8634 0.135097 0.146249)
(5.02427 0.124681 0.141253)
(5.14043 0.119023 0.135824)
(5.26719 0.114004 0.126003)
(5.39852 0.0871175 0.117112)
(5.61201 0.0691206 0.106351)
(5.89051 0.0842166 0.105478)
(6.35736 0.0538807 0.0927829)
(6.77949 0.032884 0.0869452)
(7.25146 0.0110884 0.0746342)
(7.25729 -0.0113644 0.0657468)
(7.32105 -0.0543549 0.0567962)
(7.13244 -0.0461219 0.052165)
(7.1314 -0.0576454 0.0425044)
(6.78867 -0.0266338 0.0454648)
(6.76687 -0.0131215 0.0379281)
(6.3029 0.0240082 0.0491994)
(6.56015 0.0488341 0.0533099)
(6.32284 0.0778259 0.0556378)
(6.771 0.0741492 0.0537952)
(6.46778 0.0459016 0.0569621)
(6.86281 0.0129943 0.0534209)
(6.32122 -0.0182965 0.0619449)
(6.54238 -0.106806 0.0698556)
(5.66653 -0.262538 0.0842627)
(5.69504 -0.582751 0.103288)
(4.27408 -1.139 0.131162)
(2.7905 -2.52611 0.157095)
(0.00214014 -0.000972168 0.001903)
(0.0203266 -0.0046133 0.00572949)
(0.0426145 -0.00364012 0.00769786)
(0.0526194 -0.00221396 0.0064382)
(0.0545054 0.000604345 0.00464433)
(0.0467214 0.00123593 0.00207836)
(0.0278576 0.0060677 0.00181158)
(0.00963061 0.0168803 0.00296003)
(-0.0187022 0.0186306 0.00706304)
(-0.0636499 0.0143226 0.00956388)
(-0.11437 0.00699458 0.0155726)
(-0.179566 -0.0010827 0.0233372)
(-0.258879 -0.00340974 0.0323577)
(-0.338606 0.00703305 0.0382173)
(-0.434349 0.00760273 0.0447864)
(-0.569131 0.00709472 0.0360004)
(-0.698041 0.00386711 0.0377495)
(-0.858542 0.00178436 0.0352391)
(-0.966991 -0.00384221 0.0365295)
(-1.13506 0.0025307 0.0353399)
(-1.06522 0.0304414 0.0563889)
(-0.885327 0.0261656 0.050007)
(-0.85818 0.0300728 0.0556083)
(-0.83789 -0.00241606 0.0581962)
(-0.823243 -0.0354117 0.0635595)
(-0.765331 -0.0658644 0.0651693)
(-0.69153 -0.0921636 0.0687359)
(-0.569562 -0.109747 0.0713017)
(-0.424958 -0.124733 0.0755262)
(-0.227635 -0.133459 0.0775191)
(-0.0450807 -0.136088 0.0872726)
(0.197349 -0.0790388 0.0979235)
(0.420405 -0.068822 0.0938446)
(0.506839 -0.0121879 0.0856671)
(0.486948 0.0230121 0.0791525)
(0.36447 0.0472434 0.0693803)
(0.225785 0.0374534 0.0595193)
(0.101729 0.0232962 0.0526842)
(0.0288189 0.00911652 0.0431285)
(-0.00168456 -0.00389354 0.0192023)
(0.00694105 -0.0175103 0.00453784)
(0.0359888 -0.0316512 0.0157816)
(0.0634467 -0.0260953 0.0225682)
(0.0711186 -0.00791869 0.0229282)
(0.0610946 -0.00225107 0.0216633)
(0.0317743 0.011725 0.0208306)
(-0.0161632 0.0264452 0.0220869)
(-0.0931232 0.0511414 0.0255205)
(-0.213463 0.0677048 0.0295767)
(-0.364922 0.0904825 0.0361546)
(-0.535839 0.116408 0.0483122)
(-0.730231 0.146016 0.0630986)
(-0.939217 0.172514 0.0833434)
(-1.16915 0.194254 0.0987496)
(-1.41669 0.172874 0.111004)
(-1.66759 0.143138 0.116483)
(-1.88056 0.105843 0.127532)
(-2.09427 0.0662754 0.13729)
(-2.23396 0.028226 0.152399)
(-2.33838 0.00283729 0.170215)
(-2.13213 0.00285105 0.203836)
(-1.86837 -0.0737632 0.21782)
(-1.76489 -0.147618 0.227012)
(-1.66072 -0.247431 0.22924)
(-1.57643 -0.345384 0.244045)
(-1.4491 -0.439105 0.251287)
(-1.31556 -0.518018 0.261158)
(-1.14312 -0.57417 0.267733)
(-0.960284 -0.601193 0.281358)
(-0.727535 -0.593293 0.287821)
(-0.488111 -0.568743 0.292854)
(-0.213392 -0.471179 0.277933)
(0.0732997 -0.390018 0.27436)
(0.320408 -0.231731 0.245635)
(0.461103 -0.0382539 0.223264)
(0.454716 0.0759175 0.190848)
(0.348451 0.122169 0.16883)
(0.206316 0.115981 0.150934)
(0.0834727 0.0841255 0.123452)
(0.0109847 0.0326418 0.0544164)
(0.00848658 -0.0403347 0.0059922)
(0.0320547 -0.0635975 0.0230327)
(0.0480809 -0.0457052 0.0328763)
(0.0244387 -0.00888893 0.0355298)
(-0.0187418 0.0331472 0.0397028)
(-0.0830299 0.0785297 0.0444158)
(-0.191609 0.130328 0.052655)
(-0.34539 0.190211 0.0573942)
(-0.551147 0.260326 0.0708032)
(-0.794287 0.32835 0.0878536)
(-1.05855 0.386542 0.108382)
(-1.33307 0.424157 0.132291)
(-1.59915 0.428431 0.156345)
(-1.86285 0.381628 0.174895)
(-2.09521 0.310561 0.187533)
(-2.28942 0.244278 0.200597)
(-2.43748 0.177584 0.215718)
(-2.58258 0.107147 0.229934)
(-2.65464 0.0413518 0.24685)
(-2.67059 -0.0347294 0.270704)
(-2.41732 -0.0946895 0.298624)
(-2.13323 -0.245858 0.274211)
(-1.98946 -0.38277 0.272208)
(-1.87151 -0.518421 0.273759)
(-1.79196 -0.658453 0.280223)
(-1.68172 -0.802371 0.27975)
(-1.57055 -0.934913 0.278536)
(-1.42322 -1.0449 0.273106)
(-1.27332 -1.11189 0.27284)
(-1.10502 -1.11156 0.284309)
(-0.935033 -1.05157 0.300114)
(-0.739398 -0.920775 0.299888)
(-0.49211 -0.765049 0.283574)
(-0.156581 -0.515106 0.273176)
(0.114107 -0.236772 0.2882)
(0.221937 0.0210644 0.258666)
(0.24114 0.156909 0.233597)
(0.164693 0.196992 0.213528)
(0.0719897 0.168957 0.171119)
(0.0080612 0.0844289 0.0740935)
(0.00610983 -0.0634257 0.00499504)
(0.00939238 -0.0864921 0.0264324)
(-0.0160837 -0.0394847 0.0421591)
(-0.0674885 0.0316713 0.0492726)
(-0.148158 0.127945 0.057433)
(-0.271124 0.224452 0.0672213)
(-0.444477 0.333381 0.0808361)
(-0.671115 0.44992 0.0966745)
(-0.949269 0.551409 0.113384)
(-1.24218 0.617773 0.136413)
(-1.51578 0.643648 0.16195)
(-1.77274 0.617243 0.187841)
(-2.00839 0.539214 0.204618)
(-2.20086 0.442449 0.212824)
(-2.3308 0.356825 0.223508)
(-2.42915 0.275407 0.229964)
(-2.4934 0.194749 0.235019)
(-2.56062 0.108598 0.237148)
(-2.56822 0.0243423 0.246755)
(-2.53852 -0.0840001 0.251818)
(-2.30537 -0.191087 0.246757)
(-2.02899 -0.352938 0.211902)
(-1.90402 -0.498484 0.204745)
(-1.81539 -0.653316 0.196431)
(-1.769 -0.814506 0.198569)
(-1.70502 -0.991298 0.19473)
(-1.64134 -1.16734 0.19089)
(-1.54219 -1.33146 0.181786)
(-1.42484 -1.4598 0.175615)
(-1.28001 -1.51879 0.170574)
(-1.14897 -1.49012 0.177335)
(-1.06103 -1.35514 0.205487)
(-0.91734 -1.11009 0.21834)
(-0.626767 -0.818012 0.234192)
(-0.280935 -0.483784 0.263043)
(-0.0364266 -0.124342 0.252947)
(0.0595261 0.101389 0.271352)
(0.0636072 0.213299 0.243066)
(0.0292542 0.208256 0.194401)
(0.000223475 0.10878 0.0813122)
(-0.00179466 -0.0801928 0.00404746)
(-0.0286854 -0.0757409 0.0322622)
(-0.0998911 0.0031006 0.04831)
(-0.198918 0.146009 0.0686557)
(-0.32521 0.289692 0.0826981)
(-0.497068 0.44284 0.10149)
(-0.708309 0.589386 0.124318)
(-0.958547 0.716035 0.141819)
(-1.24219 0.80316 0.159664)
(-1.51671 0.816182 0.180259)
(-1.76857 0.761961 0.198373)
(-1.985 0.666429 0.204185)
(-2.13157 0.558309 0.203411)
(-2.21566 0.465076 0.202702)
(-2.26054 0.376296 0.19803)
(-2.29037 0.284707 0.189126)
(-2.30348 0.195139 0.178887)
(-2.3275 0.102634 0.166246)
(-2.30724 0.0133169 0.157973)
(-2.28231 -0.108876 0.138517)
(-2.06819 -0.229888 0.122025)
(-1.82399 -0.392825 0.0882987)
(-1.73145 -0.554628 0.0794646)
(-1.67365 -0.720566 0.0712323)
(-1.65843 -0.892233 0.0736789)
(-1.63528 -1.09006 0.0747859)
(-1.617 -1.29834 0.0788797)
(-1.57089 -1.50727 0.0801279)
(-1.50534 -1.6954 0.0847504)
(-1.40172 -1.82554 0.0880505)
(-1.27852 -1.86448 0.0946673)
(-1.16879 -1.78737 0.10603)
(-1.13422 -1.5433 0.13793)
(-0.956903 -1.16453 0.176902)
(-0.604775 -0.761368 0.214136)
(-0.277761 -0.323847 0.251439)
(-0.076332 0.0134509 0.262374)
(-0.00799994 0.188093 0.248213)
(-0.00377246 0.213695 0.19649)
(-0.00556687 0.111257 0.0780422)
(-0.00540529 -0.0832604 0.0036844)
(-0.0850512 -0.0354075 0.0398325)
(-0.198952 0.11198 0.0729084)
(-0.325948 0.313855 0.0943078)
(-0.494453 0.506993 0.116481)
(-0.683067 0.691058 0.141632)
(-0.900287 0.838743 0.161722)
(-1.14642 0.93872 0.177702)
(-1.43445 0.916287 0.182356)
(-1.70257 0.839108 0.183471)
(-1.88394 0.737333 0.180769)
(-1.98841 0.637487 0.174941)
(-2.0355 0.546588 0.160457)
(-2.05082 0.453874 0.145068)
(-2.0462 0.358616 0.126342)
(-2.04556 0.260667 0.10548)
(-2.03371 0.174841 0.083936)
(-2.03865 0.0827954 0.0678102)
(-2.01845 0.000562749 0.0540077)
(-2.00277 -0.1278 0.0290554)
(-1.82268 -0.234914 0.00758153)
(-1.60276 -0.412702 -0.0253573)
(-1.52607 -0.56478 -0.0345061)
(-1.49007 -0.723035 -0.0468257)
(-1.49277 -0.890025 -0.0431557)
(-1.50338 -1.08819 -0.0316933)
(-1.51731 -1.30004 -0.0198566)
(-1.51649 -1.52665 -0.00691098)
(-1.49958 -1.74873 0.00668975)
(-1.4501 -1.94817 0.0170333)
(-1.3739 -2.07717 0.0292252)
(-1.25944 -2.08163 0.049352)
(-1.1977 -1.9566 0.0693974)
(-1.14792 -1.57945 0.120209)
(-0.873504 -1.12475 0.165617)
(-0.472278 -0.602231 0.210901)
(-0.187742 -0.152776 0.251673)
(-0.0656298 0.102189 0.241749)
(-0.0204435 0.176645 0.193964)
(-0.00619603 0.0902737 0.0766737)
(-0.0172377 -0.0424679 0.0040831)
(-0.118497 0.0668211 0.0566896)
(-0.269723 0.282157 0.0969803)
(-0.432114 0.516832 0.126782)
(-0.610453 0.731751 0.154748)
(-0.801068 0.90725 0.175829)
(-1.02571 1.00572 0.192105)
(-1.3187 0.968561 0.178481)
(-1.57912 0.868868 0.16587)
(-1.72473 0.787532 0.159963)
(-1.80273 0.712537 0.144096)
(-1.83482 0.62589 0.119439)
(-1.83152 0.529701 0.0912097)
(-1.81768 0.431446 0.0649586)
(-1.80255 0.330248 0.0374338)
(-1.79168 0.233538 0.0157914)
(-1.7833 0.152186 -0.00434638)
(-1.78619 0.0663802 -0.0201181)
(-1.7755 -0.00715362 -0.0397637)
(-1.76564 -0.127407 -0.0679982)
(-1.61926 -0.226359 -0.0883616)
(-1.40646 -0.404764 -0.133239)
(-1.32694 -0.544005 -0.140594)
(-1.30472 -0.695608 -0.143339)
(-1.32052 -0.858721 -0.133105)
(-1.34071 -1.05328 -0.122139)
(-1.37011 -1.26569 -0.103636)
(-1.39354 -1.50308 -0.0866093)
(-1.42121 -1.74791 -0.0573026)
(-1.42353 -1.98092 -0.0392176)
(-1.40033 -2.1814 -0.0169607)
(-1.33289 -2.28044 0.00679749)
(-1.23645 -2.25088 0.0242941)
(-1.20846 -2.01842 0.0597431)
(-1.06398 -1.53779 0.109668)
(-0.677707 -0.965253 0.162606)
(-0.285286 -0.396872 0.216281)
(-0.0809469 0.0135806 0.229634)
(-0.0104049 0.125387 0.18867)
(-0.0013401 0.0765691 0.0755698)
(-0.0222882 0.0182997 0.013733)
(-0.150864 0.194884 0.074429)
(-0.32799 0.441255 0.124816)
(-0.498111 0.69265 0.159884)
(-0.68216 0.891828 0.183085)
(-0.900525 1.01217 0.192698)
(-1.1911 0.994314 0.171392)
(-1.42277 0.906015 0.157927)
(-1.55288 0.854789 0.143494)
(-1.62342 0.793462 0.117416)
(-1.64249 0.705105 0.0821632)
(-1.63269 0.600729 0.0456328)
(-1.61181 0.497482 0.00896032)
(-1.59854 0.392105 -0.0169883)
(-1.58823 0.295863 -0.0421945)
(-1.58307 0.207542 -0.0616391)
(-1.57346 0.130243 -0.0784788)
(-1.57205 0.0553534 -0.0926003)
(-1.56527 -0.00498472 -0.111908)
(-1.56015 -0.106446 -0.141733)
(-1.44562 -0.191826 -0.158479)
(-1.23872 -0.359498 -0.211254)
(-1.14909 -0.488888 -0.216135)
(-1.1335 -0.635462 -0.210765)
(-1.15021 -0.788048 -0.195302)
(-1.1759 -0.971554 -0.179819)
(-1.21008 -1.18007 -0.159018)
(-1.24622 -1.41994 -0.13777)
(-1.28629 -1.68404 -0.111217)
(-1.32582 -1.95144 -0.0872515)
(-1.35154 -2.20029 -0.0504004)
(-1.33879 -2.37922 -0.0304933)
(-1.2783 -2.44779 -0.00144635)
(-1.21827 -2.34919 0.0209464)
(-1.14355 -1.96836 0.062297)
(-0.854582 -1.37722 0.108974)
(-0.384253 -0.697244 0.172586)
(-0.110466 -0.152181 0.213679)
(-0.0309666 0.0647259 0.18137)
(0.00790857 0.0615912 0.0785906)
(-0.0271351 0.0729821 0.0164364)
(-0.165129 0.297064 0.0883091)
(-0.349214 0.552345 0.139776)
(-0.530341 0.782589 0.170566)
(-0.744138 0.946214 0.182927)
(-1.01083 0.995193 0.171223)
(-1.24185 0.95462 0.159285)
(-1.37845 0.934996 0.137252)
(-1.45002 0.878076 0.101575)
(-1.45816 0.790041 0.0575171)
(-1.44715 0.682741 0.010952)
(-1.42903 0.57302 -0.0277826)
(-1.41689 0.466502 -0.0634056)
(-1.41314 0.366117 -0.090748)
(-1.41336 0.27849 -0.112436)
(-1.41292 0.19689 -0.12663)
(-1.40604 0.1281 -0.137585)
(-1.39843 0.0602151 -0.145557)
(-1.39302 0.00655523 -0.158844)
(-1.38493 -0.0726836 -0.185653)
(-1.29718 -0.136539 -0.192799)
(-1.09917 -0.296344 -0.255157)
(-0.992969 -0.429699 -0.261056)
(-0.98062 -0.570409 -0.250071)
(-0.994352 -0.714592 -0.230007)
(-1.02122 -0.88617 -0.212195)
(-1.05595 -1.08373 -0.190377)
(-1.09707 -1.31612 -0.169559)
(-1.14545 -1.58041 -0.144136)
(-1.19766 -1.8692 -0.11816)
(-1.24518 -2.16105 -0.0899228)
(-1.28461 -2.41602 -0.0548675)
(-1.27463 -2.56923 -0.0297006)
(-1.21384 -2.58021 0.000525577)
(-1.15551 -2.34976 0.0225631)
(-0.971382 -1.80368 0.0596894)
(-0.547443 -1.06799 0.112446)
(-0.161447 -0.404126 0.159242)
(-0.0267543 -0.000623666 0.169383)
(0.00606065 0.0444951 0.0749803)
(-0.0306041 0.144526 0.0292517)
(-0.180874 0.41693 0.111609)
(-0.371258 0.662483 0.16651)
(-0.548721 0.862459 0.193293)
(-0.784089 0.990695 0.193143)
(-1.02814 1.01289 0.171346)
(-1.20145 1.01262 0.144163)
(-1.27829 0.969381 0.101633)
(-1.2898 0.886826 0.0471418)
(-1.27569 0.777612 -0.00787588)
(-1.26044 0.660106 -0.0560589)
(-1.25478 0.550311 -0.096733)
(-1.25955 0.44954 -0.129975)
(-1.26932 0.35621 -0.153251)
(-1.27653 0.272617 -0.169402)
(-1.27603 0.194799 -0.176627)
(-1.26414 0.127664 -0.179559)
(-1.24627 0.0660996 -0.180196)
(-1.22987 0.015346 -0.184355)
(-1.20618 -0.0380031 -0.198162)
(-1.15555 -0.0889902 -0.210992)
(-0.987014 -0.211997 -0.259527)
(-0.859684 -0.362669 -0.278779)
(-0.843573 -0.495397 -0.264249)
(-0.851542 -0.633595 -0.242676)
(-0.876159 -0.789476 -0.221779)
(-0.907779 -0.972222 -0.199025)
(-0.948979 -1.18838 -0.177471)
(-1.00116 -1.44553 -0.153974)
(-1.06188 -1.74007 -0.13101)
(-1.12605 -2.05965 -0.103384)
(-1.17979 -2.37416 -0.0763828)
(-1.21752 -2.62706 -0.0414955)
(-1.19912 -2.73339 -0.0127271)
(-1.12697 -2.63953 0.0129847)
(-1.00319 -2.21417 0.0279699)
(-0.690311 -1.47065 0.0650996)
(-0.231178 -0.649915 0.115126)
(-0.0309783 -0.0945277 0.137266)
(-0.00863996 0.0286862 0.0701027)
(-0.0299315 0.217977 0.0410238)
(-0.182317 0.540574 0.132374)
(-0.371115 0.787794 0.189213)
(-0.554727 0.97367 0.210608)
(-0.794635 1.06571 0.195338)
(-0.997577 1.08149 0.16278)
(-1.1056 1.06261 0.117371)
(-1.1282 0.991945 0.0552944)
(-1.11666 0.886097 -0.00991814)
(-1.10169 0.763889 -0.0686053)
(-1.10159 0.647017 -0.116984)
(-1.11375 0.541078 -0.155377)
(-1.13379 0.445479 -0.185312)
(-1.15191 0.356479 -0.204232)
(-1.16089 0.275772 -0.214081)
(-1.1564 0.19953 -0.212224)
(-1.13643 0.133515 -0.206701)
(-1.10692 0.0749265 -0.199204)
(-1.07596 0.026926 -0.19499)
(-1.04503 -0.0146659 -0.202737)
(-1.00698 -0.0612757 -0.210705)
(-0.888805 -0.144198 -0.241065)
(-0.763885 -0.293795 -0.271697)
(-0.727617 -0.427647 -0.258486)
(-0.730452 -0.560345 -0.23837)
(-0.748118 -0.703925 -0.215641)
(-0.773472 -0.869509 -0.193317)
(-0.808456 -1.06567 -0.172363)
(-0.857071 -1.30382 -0.151238)
(-0.920489 -1.58869 -0.130281)
(-0.99457 -1.91963 -0.107281)
(-1.06825 -2.27074 -0.0813802)
(-1.1205 -2.59895 -0.0539759)
(-1.14171 -2.82719 -0.0221833)
(-1.095 -2.85066 0.00374584)
(-0.98376 -2.57686 0.0187979)
(-0.757761 -1.897 0.0293119)
(-0.326399 -0.963341 0.0692711)
(-0.0535659 -0.245235 0.110301)
(-0.022322 0.00740948 0.0618914)
(-0.0255455 0.290604 0.0578085)
(-0.171997 0.662596 0.157308)
(-0.355318 0.911996 0.215037)
(-0.547702 1.07979 0.228562)
(-0.76714 1.1404 0.199227)
(-0.91361 1.14944 0.152765)
(-0.974096 1.10236 0.0848473)
(-0.967467 1.00325 0.0102243)
(-0.952766 0.880676 -0.0646066)
(-0.953274 0.753718 -0.120487)
(-0.971803 0.640516 -0.167954)
(-0.999593 0.539855 -0.204064)
(-1.02995 0.448322 -0.231034)
(-1.05097 0.361815 -0.244262)
(-1.05795 0.281078 -0.245272)
(-1.04673 0.204347 -0.233639)
(-1.01547 0.136349 -0.216661)
(-0.973651 0.0787776 -0.202888)
(-0.928745 0.0337042 -0.193448)
(-0.890379 -0.00161156 -0.197703)
(-0.864634 -0.038199 -0.197526)
(-0.788689 -0.1045 -0.214553)
(-0.687779 -0.224822 -0.238453)
(-0.63864 -0.365169 -0.237215)
(-0.628604 -0.492056 -0.218917)
(-0.639169 -0.625849 -0.198286)
(-0.656566 -0.775139 -0.17583)
(-0.683707 -0.950941 -0.15706)
(-0.724418 -1.16731 -0.137683)
(-0.782147 -1.43393 -0.119779)
(-0.857155 -1.75789 -0.0992524)
(-0.941129 -2.1286 -0.0772854)
(-1.01754 -2.51092 -0.051169)
(-1.0601 -2.83347 -0.0242172)
(-1.04544 -2.99342 0.00347118)
(-0.949121 -2.86322 0.0183387)
(-0.76847 -2.31848 0.0203609)
(-0.418786 -1.34137 0.0338969)
(-0.075634 -0.440161 0.0641199)
(-0.0153279 -0.0316804 0.0485284)
(-0.0182762 0.352746 0.0692766)
(-0.149976 0.773456 0.175511)
(-0.326701 1.02794 0.233082)
(-0.519866 1.16986 0.235703)
(-0.704711 1.21848 0.198777)
(-0.802883 1.20919 0.133382)
(-0.830725 1.13043 0.049773)
(-0.81488 1.01417 -0.0371393)
(-0.812523 0.8766 -0.107578)
(-0.829586 0.751341 -0.164301)
(-0.86374 0.643299 -0.209174)
(-0.902148 0.546473 -0.243564)
(-0.937138 0.456934 -0.266757)
(-0.957799 0.369805 -0.272065)
(-0.960867 0.287511 -0.263978)
(-0.942752 0.208096 -0.238299)
(-0.900684 0.138195 -0.21345)
(-0.845123 0.0812942 -0.192879)
(-0.789028 0.0382072 -0.182786)
(-0.744943 0.010909 -0.188394)
(-0.732076 -0.0197978 -0.185948)
(-0.69021 -0.0780867 -0.186635)
(-0.624859 -0.172604 -0.199215)
(-0.57688 -0.301219 -0.197995)
(-0.548572 -0.434615 -0.188855)
(-0.550196 -0.560017 -0.171584)
(-0.559056 -0.697677 -0.152668)
(-0.577816 -0.85462 -0.136238)
(-0.609039 -1.0495 -0.119994)
(-0.657448 -1.29342 -0.105425)
(-0.725473 -1.60097 -0.0896917)
(-0.80917 -1.97029 -0.0720194)
(-0.896632 -2.38446 -0.0504311)
(-0.964901 -2.78187 -0.0237148)
(-0.97811 -3.05996 0.000445224)
(-0.914863 -3.07607 0.0226085)
(-0.754047 -2.68781 0.0237168)
(-0.477166 -1.7533 0.0153928)
(-0.109248 -0.659106 0.0343921)
(-0.00198199 -0.0881617 0.0340139)
(-0.00963254 0.404133 0.0838721)
(-0.121187 0.873805 0.196792)
(-0.29301 1.13117 0.252057)
(-0.472015 1.24977 0.247204)
(-0.616494 1.29212 0.199299)
(-0.681671 1.25661 0.117087)
(-0.689473 1.14938 0.0198061)
(-0.680169 1.01624 -0.0704771)
(-0.694632 0.87486 -0.140693)
(-0.725176 0.754159 -0.19651)
(-0.770791 0.649956 -0.240995)
(-0.814819 0.555633 -0.274129)
(-0.851282 0.465392 -0.292723)
(-0.869551 0.37675 -0.289637)
(-0.86811 0.291319 -0.267912)
(-0.842457 0.208786 -0.230622)
(-0.787174 0.135373 -0.190291)
(-0.719797 0.078351 -0.168744)
(-0.6491 0.0372132 -0.157231)
(-0.602852 0.0202097 -0.1752)
(-0.611424 -0.00888014 -0.174752)
(-0.597437 -0.0627688 -0.160968)
(-0.558111 -0.138422 -0.162086)
(-0.534269 -0.242214 -0.152251)
(-0.497652 -0.373655 -0.149894)
(-0.48083 -0.501503 -0.139213)
(-0.481631 -0.63198 -0.124281)
(-0.49183 -0.774953 -0.111796)
(-0.514717 -0.949616 -0.0983268)
(-0.552138 -1.1709 -0.0881575)
(-0.609836 -1.45572 -0.0768964)
(-0.686367 -1.81376 -0.0642826)
(-0.775307 -2.2391 -0.0456752)
(-0.85787 -2.68876 -0.0205026)
(-0.895304 -3.06687 0.00396753)
(-0.871039 -3.22858 0.0292004)
(-0.73663 -2.99268 0.0363392)
(-0.498823 -2.16423 0.020846)
(-0.135965 -0.921589 0.0133478)
(0.00974842 -0.146878 0.0254424)
(0.000198538 0.434598 0.0886058)
(-0.0917617 0.955124 0.207034)
(-0.25347 1.21467 0.260362)
(-0.409123 1.32335 0.251289)
(-0.51744 1.35408 0.19299)
(-0.56282 1.29087 0.0970121)
(-0.566614 1.16538 -0.00422154)
(-0.565509 1.01589 -0.0977479)
(-0.593071 0.87842 -0.167151)
(-0.634124 0.76162 -0.222599)
(-0.685911 0.660914 -0.267017)
(-0.73177 0.566949 -0.298289)
(-0.767365 0.475082 -0.311388)
(-0.782673 0.383907 -0.295194)
(-0.777398 0.294059 -0.260978)
(-0.746428 0.209261 -0.204052)
(-0.681543 0.134862 -0.159183)
(-0.599634 0.0804232 -0.134109)
(-0.513953 0.0546388 -0.132647)
(-0.46752 0.0339456 -0.153757)
(-0.500308 0.00554255 -0.165991)
(-0.509695 -0.0529672 -0.136374)
(-0.48848 -0.119903 -0.129791)
(-0.48816 -0.203638 -0.117533)
(-0.466166 -0.314775 -0.105578)
(-0.438756 -0.449565 -0.105328)
(-0.424372 -0.578562 -0.0941721)
(-0.424733 -0.711904 -0.0867258)
(-0.439254 -0.870374 -0.0768597)
(-0.467227 -1.06819 -0.0710961)
(-0.513458 -1.32781 -0.0645322)
(-0.579908 -1.66665 -0.0558871)
(-0.664516 -2.09093 -0.0411011)
(-0.752686 -2.57422 -0.0173667)
(-0.809374 -3.03031 0.00710871)
(-0.815042 -3.32262 0.0355829)
(-0.710185 -3.23939 0.0509859)
(-0.500525 -2.54277 0.0308557)
(-0.156035 -1.22581 0.00772246)
(0.0222631 -0.191291 0.0129381)
(0.00947562 0.458632 0.100273)
(-0.0643708 1.02772 0.224389)
(-0.20792 1.29496 0.277202)
(-0.334948 1.4042 0.263522)
(-0.416293 1.41362 0.193854)
(-0.45061 1.32689 0.0875784)
(-0.457845 1.18401 -0.0172084)
(-0.467507 1.02729 -0.112435)
(-0.502925 0.889513 -0.181481)
(-0.550765 0.774429 -0.237861)
(-0.605399 0.672122 -0.284364)
(-0.651558 0.575909 -0.31533)
(-0.685104 0.481146 -0.321805)
(-0.69795 0.389165 -0.292309)
(-0.688702 0.299283 -0.240173)
(-0.650894 0.21415 -0.169156)
(-0.572549 0.14327 -0.105312)
(-0.467402 0.0981608 -0.0683228)
(-0.378891 0.0639668 -0.0617453)
(-0.345613 0.0382556 -0.119019)
(-0.403303 0.0180259 -0.161286)
(-0.437414 -0.0468713 -0.114071)
(-0.421926 -0.111174 -0.100911)
(-0.436233 -0.180879 -0.0899592)
(-0.439444 -0.2709 -0.0756979)
(-0.418355 -0.389618 -0.0728693)
(-0.385708 -0.532012 -0.0653481)
(-0.375143 -0.660503 -0.0619218)
(-0.380194 -0.80414 -0.0555156)
(-0.396828 -0.981727 -0.0538601)
(-0.433316 -1.21668 -0.0509682)
(-0.489476 -1.5337 -0.0464136)
(-0.568444 -1.947 -0.0351016)
(-0.656019 -2.45002 -0.0137786)
(-0.727943 -2.97187 0.011874)
(-0.754213 -3.38153 0.0447281)
(-0.673787 -3.44345 0.0656954)
(-0.48995 -2.89501 0.0520149)
(-0.163376 -1.56112 0.0123028)
(0.0427669 -0.252134 0.00522425)
(0.0161385 0.455831 0.0958384)
(-0.0365606 1.06938 0.226272)
(-0.15712 1.36703 0.281303)
(-0.260493 1.47134 0.262534)
(-0.323605 1.46301 0.185584)
(-0.352995 1.35352 0.0710853)
(-0.367056 1.19985 -0.0365734)
(-0.385783 1.04015 -0.130901)
(-0.427489 0.903853 -0.19774)
(-0.478051 0.788809 -0.255636)
(-0.531798 0.684875 -0.303899)
(-0.572019 0.587966 -0.331624)
(-0.598155 0.491381 -0.327091)
(-0.605162 0.402416 -0.279536)
(-0.595375 0.313507 -0.206759)
(-0.552612 0.250332 -0.111675)
(-0.459328 0.195178 -0.0223416)
(-0.35883 0.136432 0.0235443)
(-0.266717 0.0666305 0.0199457)
(-0.218905 0.0269324 -0.0781493)
(-0.301689 0.0151569 -0.152241)
(-0.367926 -0.0437175 -0.0886022)
(-0.355766 -0.10995 -0.0711547)
(-0.379263 -0.171066 -0.0646738)
(-0.397982 -0.247028 -0.0507091)
(-0.407284 -0.335078 -0.0491859)
(-0.376591 -0.460293 -0.0405634)
(-0.336678 -0.600469 -0.0406223)
(-0.332436 -0.745137 -0.0368878)
(-0.34246 -0.904041 -0.0379841)
(-0.36845 -1.11201 -0.037678)
(-0.41114 -1.40313 -0.036276)
(-0.481692 -1.8019 -0.0296805)
(-0.569425 -2.31657 -0.011462)
(-0.652963 -2.88978 0.0148458)
(-0.697781 -3.40428 0.0532281)
(-0.644079 -3.61194 0.0778968)
(-0.481615 -3.21032 0.073173)
(-0.177033 -1.89128 0.0230565)
(0.0513026 -0.299103 0.00252871)
(0.0100801 0.4694 0.108575)
(-0.00857419 1.13797 0.244821)
(-0.100445 1.46885 0.302447)
(-0.194209 1.57285 0.27872)
(-0.237213 1.54282 0.192504)
(-0.263261 1.42077 0.0705289)
(-0.280772 1.25437 -0.0424382)
(-0.307489 1.09136 -0.135492)
(-0.350567 0.949357 -0.199935)
(-0.400337 0.829387 -0.25838)
(-0.447042 0.720909 -0.306032)
(-0.481588 0.621861 -0.327731)
(-0.502022 0.524752 -0.312396)
(-0.507098 0.446109 -0.247819)
(-0.478994 0.381544 -0.160007)
(-0.419964 0.344513 -0.0425896)
(-0.356892 0.28035 0.0665157)
(-0.284422 0.186093 0.136942)
(-0.188668 0.095265 0.0998344)
(-0.10814 0.0358758 -0.034769)
(-0.194266 0.0265737 -0.13821)
(-0.298117 -0.0337987 -0.0619519)
(-0.293966 -0.103169 -0.038986)
(-0.320925 -0.164437 -0.0401968)
(-0.347798 -0.234217 -0.0270829)
(-0.36475 -0.302857 -0.0305319)
(-0.366027 -0.388385 -0.0221182)
(-0.340827 -0.507236 -0.0225992)
(-0.306094 -0.649994 -0.018749)
(-0.290365 -0.816814 -0.0216604)
(-0.307707 -1.01729 -0.023922)
(-0.34115 -1.28326 -0.0266828)
(-0.402042 -1.65359 -0.0236382)
(-0.48143 -2.16878 -0.00866644)
(-0.571504 -2.78886 0.019141)
(-0.634348 -3.40673 0.0608877)
(-0.606906 -3.76321 0.0916071)
(-0.469 -3.51874 0.0948856)
(-0.181741 -2.24565 0.0414841)
(0.0622376 -0.397017 0.00190348)
(0.0101776 0.496435 0.107024)
(-0.00582119 1.23133 0.245498)
(-0.0490211 1.57661 0.310372)
(-0.110199 1.68939 0.280801)
(-0.151817 1.64686 0.196947)
(-0.174481 1.51687 0.0665566)
(-0.200682 1.34554 -0.0451554)
(-0.233503 1.17829 -0.138647)
(-0.277482 1.03126 -0.200407)
(-0.320617 0.904952 -0.25995)
(-0.358297 0.800539 -0.302813)
(-0.382679 0.71199 -0.313736)
(-0.386436 0.631006 -0.280743)
(-0.367406 0.568333 -0.198145)
(-0.332603 0.513447 -0.11241)
(-0.311537 0.455792 0.0191795)
(-0.298548 0.39262 0.152732)
(-0.241207 0.31002 0.220709)
(-0.126074 0.211613 0.194402)
(-0.000892834 0.132487 0.00494294)
(-0.0905037 0.069091 -0.112886)
(-0.23353 -0.00679505 -0.0392875)
(-0.235398 -0.0829392 -0.00892059)
(-0.265891 -0.15055 -0.0164506)
(-0.294856 -0.217821 -0.00704114)
(-0.313317 -0.28017 -0.0146637)
(-0.320484 -0.347275 -0.00923089)
(-0.315959 -0.424979 -0.0121764)
(-0.314062 -0.530011 -0.0102074)
(-0.297134 -0.675574 -0.0107092)
(-0.281863 -0.856934 -0.01103)
(-0.280722 -1.11572 -0.0138422)
(-0.320558 -1.48207 -0.0161626)
(-0.393754 -1.9923 -0.00706909)
(-0.490848 -2.63314 0.0190084)
(-0.56998 -3.34605 0.0660055)
(-0.578913 -3.85334 0.103066)
(-0.473674 -3.77957 0.117478)
(-0.213841 -2.5751 0.065598)
(0.0502466 -0.445799 0.0116055)
(0.00118757 0.668606 0.154392)
(0.0119302 1.46726 0.30314)
(-0.016052 1.84895 0.359575)
(-0.0509144 1.93558 0.329817)
(-0.0650896 1.88254 0.226738)
(-0.0912917 1.73821 0.0935995)
(-0.126953 1.56805 -0.0177493)
(-0.170966 1.41112 -0.108286)
(-0.211624 1.26484 -0.162395)
(-0.235167 1.13046 -0.210422)
(-0.242312 1.01574 -0.232287)
(-0.249122 0.91065 -0.228843)
(-0.246482 0.809571 -0.192951)
(-0.241737 0.718754 -0.126888)
(-0.232353 0.633939 -0.0445178)
(-0.20588 0.572188 0.0721783)
(-0.194526 0.564718 0.159156)
(-0.177989 0.558588 0.210088)
(-0.0817424 0.485724 0.218449)
(0.0351137 0.314581 0.0437941)
(-0.0496219 0.165913 -0.096118)
(-0.181436 0.0498418 -0.0144979)
(-0.18583 -0.0435507 0.0171538)
(-0.212952 -0.125526 0.00288437)
(-0.242158 -0.194874 0.00830927)
(-0.25919 -0.257176 -0.00294647)
(-0.267694 -0.317331 -0.000362944)
(-0.264643 -0.385369 -0.00529273)
(-0.266474 -0.456815 -0.0049432)
(-0.26433 -0.553003 -0.00822333)
(-0.274832 -0.682568 -0.0110717)
(-0.29065 -0.892093 -0.0137717)
(-0.309669 -1.21136 -0.015009)
(-0.32213 -1.71177 -0.00295912)
(-0.391056 -2.40453 0.0218713)
(-0.480393 -3.19464 0.065931)
(-0.516719 -3.8564 0.112314)
(-0.455352 -3.98908 0.131733)
(-0.218777 -2.94273 0.0847038)
(0.0605204 -0.619729 0.0143796)
(-0.0226156 0.764197 0.132458)
(-0.012526 1.63815 0.290339)
(-0.000498835 2.05567 0.35977)
(-0.0100211 2.16613 0.331685)
(-0.0125698 2.10353 0.235013)
(-0.0274144 1.94169 0.0976289)
(-0.0443919 1.76625 -0.0171298)
(-0.0953954 1.61131 -0.104157)
(-0.149588 1.47846 -0.152351)
(-0.167666 1.34008 -0.183398)
(-0.172058 1.20361 -0.191492)
(-0.179942 1.06748 -0.183603)
(-0.175012 0.933329 -0.14427)
(-0.15986 0.822822 -0.087537)
(-0.121521 0.743808 -0.0188537)
(-0.0506936 0.72069 0.0603116)
(-0.0161866 0.777397 0.0619434)
(-0.049704 0.890329 -0.00194645)
(-0.0945417 0.922379 0.0554477)
(-0.0370538 0.655021 0.0371599)
(-0.0714618 0.362098 -0.0761469)
(-0.167035 0.148941 0.00352865)
(-0.154782 0.0079765 0.0328502)
(-0.172458 -0.0905722 0.0134366)
(-0.191558 -0.168449 0.0154925)
(-0.206897 -0.232483 0.00263822)
(-0.218081 -0.289995 0.00353226)
(-0.215166 -0.353564 -0.000338639)
(-0.218066 -0.415766 0.00174458)
(-0.211337 -0.49448 -0.000118729)
(-0.213638 -0.584201 -0.00416096)
(-0.227273 -0.724303 -0.011233)
(-0.281708 -0.946272 -0.020728)
(-0.369458 -1.36524 -0.0251531)
(-0.413419 -2.00525 0.00325478)
(-0.435604 -2.86326 0.0644667)
(-0.489499 -3.6589 0.117154)
(-0.459371 -4.02829 0.151635)
(-0.271426 -3.23599 0.10929)
(0.0172455 -0.925366 0.0345895)
(-0.0149234 0.712076 0.130957)
(0.0051136 1.61552 0.287041)
(0.0288508 2.06723 0.352737)
(0.0343438 2.20849 0.333882)
(0.0406078 2.16353 0.240356)
(0.0313037 2.01368 0.106539)
(0.0132643 1.83605 -0.006038)
(-0.0179857 1.66367 -0.0914048)
(-0.0672447 1.53349 -0.135359)
(-0.104693 1.40653 -0.159465)
(-0.101517 1.2622 -0.159341)
(-0.101479 1.12623 -0.152206)
(-0.0823112 0.999198 -0.116601)
(-0.0476633 0.889961 -0.0820444)
(0.019864 0.821743 -0.0446929)
(0.154044 0.837229 -0.0228271)
(0.267586 0.944286 -0.171885)
(0.223114 1.11189 -0.454518)
(-0.0560076 1.27837 -0.542525)
(-0.243278 1.09008 -0.319834)
(-0.274575 0.621705 -0.154997)
(-0.254961 0.282592 -0.0248679)
(-0.163401 0.0737767 0.0308748)
(-0.140853 -0.0499017 0.0130636)
(-0.146356 -0.136309 0.0145836)
(-0.151962 -0.208986 0.00162194)
(-0.1636 -0.266131 0.00284349)
(-0.161586 -0.329471 0.00179537)
(-0.163574 -0.386876 0.00417735)
(-0.154949 -0.458513 0.00318387)
(-0.154188 -0.536373 0.000372641)
(-0.153915 -0.656615 -0.00408938)
(-0.181928 -0.829255 -0.0100678)
(-0.255794 -1.14524 -0.00961613)
(-0.386478 -1.64278 -0.0103381)
(-0.456005 -2.4321 0.0492522)
(-0.497649 -3.25729 0.11449)
(-0.504577 -3.79856 0.15354)
(-0.369235 -3.26796 0.123116)
(-0.0693469 -1.0021 0.0436755)
(-0.00581171 0.692267 0.11535)
(0.0277164 1.57003 0.256993)
(0.0619268 2.03805 0.329521)
(0.0769459 2.2053 0.317192)
(0.0876555 2.18028 0.234795)
(0.0807564 2.04631 0.108534)
(0.0629888 1.88057 -0.00082005)
(0.0288568 1.71196 -0.0820165)
(0.000219437 1.56267 -0.127116)
(-0.0338533 1.4394 -0.153175)
(-0.0470119 1.30415 -0.151692)
(-0.0361297 1.15937 -0.146559)
(-0.0110222 1.02387 -0.119825)
(0.0409034 0.905373 -0.0963161)
(0.177707 0.843449 -0.101271)
(0.400677 0.845448 -0.180666)
(0.56115 0.912478 -0.446876)
(0.553408 0.995894 -0.884295)
(0.13359 1.07839 -1.22749)
(-0.421512 1.02574 -0.971909)
(-0.600258 0.638462 -0.452983)
(-0.434386 0.315276 -0.124053)
(-0.220165 0.103654 -0.0245564)
(-0.128963 -0.0230209 -0.0150237)
(-0.109253 -0.105787 -0.0056509)
(-0.105473 -0.183207 -0.00884276)
(-0.113401 -0.243467 -0.00493496)
(-0.111329 -0.308999 -0.00268618)
(-0.11357 -0.36418 0.00293153)
(-0.103873 -0.432872 0.0047779)
(-0.101874 -0.502149 0.00364333)
(-0.0995544 -0.610139 -0.000201809)
(-0.126397 -0.759972 -0.00685254)
(-0.181352 -1.0375 -0.00849208)
(-0.285712 -1.45988 -0.00343517)
(-0.368754 -2.1075 0.0446997)
(-0.449888 -2.8863 0.108395)
(-0.488871 -3.51383 0.150963)
(-0.389375 -3.1997 0.132169)
(-0.114544 -1.05998 0.0470478)
(-0.00162316 0.640349 0.101681)
(0.0474682 1.49229 0.23494)
(0.0951724 1.98037 0.308681)
(0.117787 2.17281 0.304743)
(0.131878 2.1686 0.231432)
(0.127708 2.04991 0.113765)
(0.113961 1.89541 0.00622832)
(0.084276 1.73562 -0.0742452)
(0.0543667 1.59088 -0.120568)
(0.0249151 1.44748 -0.14632)
(0.0150702 1.31713 -0.151024)
(0.0184799 1.17412 -0.1481)
(0.0560234 1.02698 -0.124319)
(0.147914 0.895975 -0.109458)
(0.316169 0.818198 -0.144074)
(0.559668 0.742222 -0.280726)
(0.730649 0.67748 -0.650162)
(0.681648 0.599353 -1.106)
(0.248475 0.431235 -1.44326)
(-0.409443 0.362738 -1.20248)
(-0.709385 0.277642 -0.64133)
(-0.512314 0.182088 -0.23123)
(-0.232219 0.0722212 -0.0906806)
(-0.093424 -0.0134273 -0.0486822)
(-0.0609946 -0.0822461 -0.0324491)
(-0.0546382 -0.157749 -0.0256422)
(-0.0618536 -0.219483 -0.0178489)
(-0.057347 -0.286786 -0.0101041)
(-0.0572115 -0.343173 -0.00239895)
(-0.0461904 -0.411586 0.00285394)
(-0.0445075 -0.478434 0.00380266)
(-0.0380671 -0.581093 0.00169543)
(-0.0585445 -0.715119 -0.00588144)
(-0.098876 -0.960328 -0.00807979)
(-0.189641 -1.33137 -0.00348893)
(-0.281955 -1.93428 0.0381726)
(-0.390761 -2.67552 0.0977258)
(-0.451646 -3.37313 0.144235)
(-0.3864 -3.23893 0.133162)
(-0.14071 -1.27427 0.0480466)
(0.00248762 0.587397 0.0843955)
(0.0642177 1.40642 0.206869)
(0.124753 1.91271 0.283793)
(0.155901 2.1321 0.2884)
(0.174562 2.14948 0.224899)
(0.173059 2.04678 0.117226)
(0.162299 1.90085 0.0108839)
(0.134383 1.7466 -0.0680315)
(0.107292 1.60239 -0.117602)
(0.0810481 1.46337 -0.143994)
(0.0675588 1.32519 -0.150513)
(0.0680075 1.17938 -0.146855)
(0.106623 1.03336 -0.123209)
(0.214091 0.880014 -0.108824)
(0.38709 0.745269 -0.145951)
(0.604792 0.594546 -0.290423)
(0.743481 0.411281 -0.678104)
(0.615001 0.194547 -1.10442)
(0.193289 -0.0478 -1.23298)
(-0.291564 -0.159365 -0.93855)
(-0.491227 -0.0515696 -0.550213)
(-0.35956 0.0353715 -0.29309)
(-0.144805 0.0270277 -0.144675)
(-0.0238721 -0.0185175 -0.111134)
(-0.00403032 -0.0734624 -0.0887564)
(-0.00282599 -0.140053 -0.0687099)
(-0.0104274 -0.20051 -0.048935)
(-0.0075901 -0.269064 -0.0302548)
(-0.0096001 -0.326954 -0.0144549)
(-0.000764386 -0.397682 -0.00355922)
(-0.00519662 -0.461326 0.00222221)
(-0.00214911 -0.556718 0.00315944)
(-0.0240976 -0.672411 -0.00430237)
(-0.0486339 -0.897857 -0.00889849)
(-0.126818 -1.24821 -0.00208459)
(-0.211599 -1.83915 0.0361531)
(-0.32733 -2.58199 0.0979773)
(-0.397595 -3.35177 0.151606)
(-0.367638 -3.36339 0.147818)
(-0.140469 -1.51174 0.0648951)
(0.00478928 0.530675 0.0698689)
(0.0768596 1.31117 0.182278)
(0.14938 1.83549 0.261897)
(0.188812 2.08599 0.275429)
(0.214648 2.128 0.222362)
(0.217205 2.04304 0.124432)
(0.211023 1.90587 0.0212927)
(0.186541 1.75496 -0.0578502)
(0.160573 1.61139 -0.109656)
(0.136351 1.47267 -0.138041)
(0.123581 1.33513 -0.145361)
(0.122121 1.1906 -0.140926)
(0.150144 1.04368 -0.114367)
(0.245622 0.87904 -0.0937902)
(0.401741 0.699631 -0.117347)
(0.577336 0.492596 -0.209328)
(0.665474 0.240286 -0.506861)
(0.545248 -0.0331577 -0.869777)
(0.2025 -0.236338 -0.987226)
(-0.126464 -0.297852 -0.744458)
(-0.225678 -0.194993 -0.44596)
(-0.150329 -0.0816472 -0.288426)
(-0.0128253 -0.0270915 -0.193115)
(0.0701794 -0.0438706 -0.166516)
(0.0721123 -0.0818718 -0.138511)
(0.0644988 -0.135158 -0.109494)
(0.0484961 -0.187331 -0.0802217)
(0.050513 -0.252647 -0.0531581)
(0.0467997 -0.309763 -0.0319261)
(0.0564542 -0.378911 -0.0173769)
(0.0534006 -0.439749 -0.00835525)
(0.0607886 -0.532153 -0.00400106)
(0.0313338 -0.641172 -0.00753568)
(0.00325193 -0.851708 -0.00961542)
(-0.065046 -1.19419 -0.0129711)
(-0.142228 -1.79682 0.0268167)
(-0.271766 -2.57842 0.0916983)
(-0.354188 -3.45679 0.152592)
(-0.362535 -3.62066 0.156251)
(-0.146542 -1.82146 0.0713539)
(0.0102249 0.472097 0.0548424)
(0.0916182 1.19926 0.155094)
(0.17274 1.73688 0.237544)
(0.218124 2.01883 0.260594)
(0.250039 2.08891 0.218853)
(0.25779 2.02355 0.131369)
(0.256061 1.89505 0.0327257)
(0.235778 1.75038 -0.0461371)
(0.210954 1.60814 -0.0997747)
(0.189049 1.47153 -0.129382)
(0.175174 1.33752 -0.137743)
(0.172659 1.19618 -0.13216)
(0.192701 1.05284 -0.105566)
(0.262092 0.891069 -0.0760261)
(0.378894 0.701977 -0.0783112)
(0.504429 0.470941 -0.120352)
(0.559022 0.202696 -0.250087)
(0.465406 -0.061137 -0.48332)
(0.238949 -0.23482 -0.590787)
(0.0490255 -0.265655 -0.485822)
(0.0190874 -0.201953 -0.354292)
(0.0959558 -0.110304 -0.255582)
(0.171263 -0.0543637 -0.208913)
(0.192763 -0.0614504 -0.198001)
(0.167781 -0.0925832 -0.17261)
(0.14705 -0.143433 -0.141566)
(0.120246 -0.189955 -0.107592)
(0.113662 -0.255094 -0.0736792)
(0.106607 -0.318286 -0.0442035)
(0.11479 -0.407608 -0.0251122)
(0.101231 -0.497912 -0.0132073)
(0.095951 -0.618971 -0.00628898)
(0.0688741 -0.75003 -0.00737939)
(0.0318178 -0.971358 -0.00674257)
(-0.0440476 -1.29367 -0.0111774)
(-0.10196 -1.90929 0.0242566)
(-0.23358 -2.72376 0.0942039)
(-0.310577 -3.73165 0.162769)
(-0.327247 -4.08534 0.176847)
(-0.131909 -2.40165 0.0941793)
(0.00917625 0.424514 0.0454365)
(0.101478 1.09115 0.129269)
(0.196014 1.63126 0.21294)
(0.242912 1.95059 0.247056)
(0.279764 2.05257 0.217704)
(0.294306 2.01133 0.141128)
(0.300366 1.89419 0.047626)
(0.286253 1.75505 -0.0307856)
(0.264561 1.614 -0.0862781)
(0.245612 1.47858 -0.118029)
(0.232244 1.34817 -0.128309)
(0.228802 1.21263 -0.122736)
(0.240962 1.07513 -0.0981609)
(0.289253 0.921745 -0.0645477)
(0.367195 0.746896 -0.0535219)
(0.44878 0.535147 -0.0661073)
(0.485572 0.301833 -0.113911)
(0.444438 0.0755133 -0.192439)
(0.322152 -0.0661687 -0.237358)
(0.219765 -0.103269 -0.228244)
(0.233566 -0.0864611 -0.198112)
(0.293783 -0.0438281 -0.187904)
(0.32423 -0.0368917 -0.18879)
(0.3121 -0.0630984 -0.19676)
(0.263286 -0.092071 -0.178115)
(0.232702 -0.13969 -0.150771)
(0.195699 -0.179641 -0.119916)
(0.177167 -0.241915 -0.0896139)
(0.148008 -0.316818 -0.0594029)
(0.132668 -0.438773 -0.0423541)
(0.102086 -0.551377 -0.0279991)
(0.093199 -0.699695 -0.0140725)
(0.0542939 -0.829123 -0.0107989)
(0.0373245 -1.04135 -0.0159284)
(-0.0386992 -1.34153 -0.0125079)
(-0.088805 -1.95361 0.011951)
(-0.22213 -2.80963 0.0898657)
(-0.303481 -3.96104 0.164108)
(-0.339948 -4.54012 0.188741)
(-0.152496 -3.04865 0.110326)
(0.00811963 0.366616 0.0366365)
(0.103891 0.970953 0.10897)
(0.220316 1.49339 0.181806)
(0.272796 1.84364 0.229561)
(0.30412 1.98284 0.213567)
(0.323885 1.96883 0.149433)
(0.337742 1.86991 0.0607354)
(0.331793 1.73651 -0.0144421)
(0.314003 1.59995 -0.0719352)
(0.299482 1.46765 -0.106287)
(0.287896 1.34279 -0.119667)
(0.284754 1.21548 -0.116167)
(0.292677 1.08786 -0.0949666)
(0.326724 0.94894 -0.0629858)
(0.380801 0.79445 -0.0454078)
(0.438245 0.617384 -0.0450819)
(0.463878 0.427664 -0.0710216)
(0.44856 0.243201 -0.113278)
(0.401118 0.105256 -0.132926)
(0.358022 0.0422453 -0.136073)
(0.396399 0.0110535 -0.141314)
(0.45518 0.0128744 -0.143304)
(0.453565 -0.00456986 -0.158861)
(0.429959 -0.0414584 -0.183308)
(0.376008 -0.0719209 -0.173384)
(0.336369 -0.109233 -0.150983)
(0.289333 -0.139853 -0.122761)
(0.244549 -0.194767 -0.0970692)
(0.175783 -0.294982 -0.0705436)
(0.147129 -0.414396 -0.0508782)
(0.113844 -0.514864 -0.0352098)
(0.114223 -0.659401 -0.0239756)
(0.0874995 -0.764599 -0.0229624)
(0.0577451 -0.986863 -0.0155339)
(-0.0347249 -1.23121 -0.0185902)
(-0.0693787 -1.83202 0.00584518)
(-0.213632 -2.68795 0.0842915)
(-0.299641 -3.96068 0.167444)
(-0.362673 -4.76844 0.200727)
(-0.179838 -3.53299 0.124488)
(0.00543997 0.324797 0.0278719)
(0.0968508 0.877729 0.0924765)
(0.232089 1.37418 0.15716)
(0.304717 1.73766 0.20463)
(0.329868 1.92008 0.210013)
(0.349457 1.93741 0.158292)
(0.371818 1.86125 0.0833138)
(0.377083 1.73344 0.00185615)
(0.368794 1.6009 -0.055044)
(0.359657 1.46903 -0.0942961)
(0.352378 1.34714 -0.11265)
(0.351177 1.22582 -0.114447)
(0.357549 1.10768 -0.0993473)
(0.382855 0.983065 -0.0724876)
(0.422008 0.846955 -0.0508885)
(0.464061 0.692632 -0.0479853)
(0.485032 0.531017 -0.0599539)
(0.486152 0.377839 -0.0794441)
(0.478143 0.24761 -0.091319)
(0.471558 0.154653 -0.116843)
(0.539154 0.0951282 -0.134956)
(0.604686 0.0730758 -0.151378)
(0.586215 0.0384632 -0.168516)
(0.552145 0.00246228 -0.180072)
(0.491442 -0.0296178 -0.176358)
(0.453561 -0.0642626 -0.154661)
(0.39542 -0.0849501 -0.12723)
(0.303355 -0.14117 -0.103335)
(0.210254 -0.24568 -0.076413)
(0.200156 -0.349913 -0.0597433)
(0.148051 -0.436782 -0.043612)
(0.144948 -0.574254 -0.03456)
(0.0846988 -0.681845 -0.0304735)
(0.0843723 -0.897184 -0.0323679)
(-0.0129854 -1.11976 -0.0203364)
(-0.0557999 -1.67241 -0.00830082)
(-0.195243 -2.50438 0.0770286)
(-0.290144 -3.85441 0.163084)
(-0.37657 -4.86797 0.207533)
(-0.20359 -3.93823 0.138632)
(0.00792822 0.275504 0.0194335)
(0.0896807 0.770335 0.0775237)
(0.224597 1.2397 0.135665)
(0.329713 1.58721 0.175934)
(0.362757 1.80029 0.195947)
(0.370469 1.85336 0.162109)
(0.393102 1.80627 0.097036)
(0.408456 1.69339 0.0203646)
(0.414338 1.56889 -0.0382177)
(0.4117 1.43932 -0.0828792)
(0.41113 1.32061 -0.107776)
(0.414609 1.20519 -0.117763)
(0.423553 1.09514 -0.113001)
(0.443915 0.9815 -0.0989915)
(0.469861 0.860163 -0.082852)
(0.501466 0.726748 -0.079094)
(0.525591 0.590887 -0.0757833)
(0.537445 0.461528 -0.0802388)
(0.548655 0.33932 -0.0857429)
(0.567865 0.230952 -0.112466)
(0.666575 0.155768 -0.13119)
(0.742906 0.1176 -0.156988)
(0.715336 0.070034 -0.177717)
(0.684131 0.0297351 -0.193476)
(0.619174 0.00318267 -0.18235)
(0.580355 -0.029555 -0.166031)
(0.510503 -0.040913 -0.134021)
(0.376545 -0.0805664 -0.109257)
(0.259968 -0.161727 -0.0829035)
(0.256166 -0.269566 -0.0665245)
(0.191043 -0.352877 -0.0509087)
(0.180896 -0.489388 -0.0399995)
(0.110441 -0.588342 -0.036638)
(0.100121 -0.785838 -0.0378261)
(0.00199548 -0.997377 -0.0340454)
(-0.0217462 -1.50391 -0.011429)
(-0.17928 -2.2901 0.0641549)
(-0.263119 -3.68556 0.162284)
(-0.391895 -4.87895 0.211413)
(-0.224597 -4.29546 0.151059)
(0.00252958 0.251246 0.0163784)
(0.0726579 0.705295 0.069131)
(0.19708 1.14529 0.121027)
(0.323745 1.49138 0.158708)
(0.39282 1.69743 0.173813)
(0.403122 1.79147 0.161064)
(0.420201 1.76792 0.109677)
(0.443664 1.67698 0.046289)
(0.462069 1.55553 -0.0190012)
(0.470082 1.42546 -0.0674026)
(0.477802 1.30468 -0.100685)
(0.486156 1.18825 -0.119802)
(0.496855 1.07984 -0.126406)
(0.514677 0.971269 -0.125428)
(0.536783 0.861395 -0.117735)
(0.565914 0.748282 -0.111916)
(0.591772 0.633249 -0.106142)
(0.60745 0.519977 -0.110382)
(0.625892 0.407279 -0.114727)
(0.663023 0.296487 -0.135558)
(0.79183 0.210328 -0.143061)
(0.88028 0.161712 -0.17011)
(0.846718 0.106897 -0.183741)
(0.820623 0.0631571 -0.19386)
(0.756048 0.0371815 -0.184398)
(0.720272 0.00934419 -0.169327)
(0.651867 0.000622537 -0.144759)
(0.488463 -0.0292672 -0.114189)
(0.32142 -0.071309 -0.0857507)
(0.317603 -0.182364 -0.0717837)
(0.238168 -0.252393 -0.0555674)
(0.227385 -0.390707 -0.0462635)
(0.133666 -0.475384 -0.0413989)
(0.126314 -0.674007 -0.0436358)
(0.0154085 -0.853659 -0.0437026)
(0.00601505 -1.33356 -0.020087)
(-0.159844 -2.07265 0.055312)
(-0.234824 -3.49425 0.155306)
(-0.406791 -4.85106 0.212333)
(-0.252724 -4.65012 0.159186)
(0.00911369 0.210317 0.0157653)
(0.0587632 0.615208 0.066437)
(0.163927 1.02445 0.111143)
(0.291209 1.3532 0.147213)
(0.391715 1.55256 0.158879)
(0.431707 1.65239 0.151632)
(0.435482 1.66692 0.114924)
(0.460968 1.59251 0.0593988)
(0.487503 1.48949 0.00380881)
(0.507549 1.36536 -0.0516141)
(0.528 1.24729 -0.0869051)
(0.543775 1.13646 -0.112908)
(0.560882 1.03274 -0.126678)
(0.582214 0.932056 -0.1325)
(0.606 0.834754 -0.130205)
(0.634006 0.73629 -0.128133)
(0.659571 0.636369 -0.122995)
(0.678082 0.535618 -0.126955)
(0.704257 0.432531 -0.127662)
(0.752914 0.323495 -0.142518)
(0.90698 0.229632 -0.144005)
(1.01444 0.177172 -0.168471)
(0.979017 0.123013 -0.175441)
(0.96156 0.0823346 -0.181725)
(0.898291 0.0633457 -0.169091)
(0.866728 0.0452035 -0.155136)
(0.786269 0.0431008 -0.136015)
(0.616922 0.0170228 -0.116783)
(0.416548 -0.00903315 -0.0894606)
(0.389258 -0.0864846 -0.0741858)
(0.300687 -0.158717 -0.0581976)
(0.284703 -0.28717 -0.0474301)
(0.175947 -0.36232 -0.0438929)
(0.158603 -0.557257 -0.043464)
(0.0386714 -0.712534 -0.0476976)
(0.03195 -1.18441 -0.0191732)
(-0.147181 -1.84757 0.0464184)
(-0.195504 -3.30065 0.151145)
(-0.438671 -4.81446 0.212083)
(-0.283848 -5.05507 0.166506)
(-0.000378962 0.20523 0.0195414)
(0.0304751 0.593152 0.0693038)
(0.106322 0.972261 0.112836)
(0.232662 1.30407 0.144469)
(0.360562 1.49311 0.158082)
(0.45046 1.57484 0.148566)
(0.471085 1.60928 0.125173)
(0.484574 1.54246 0.081195)
(0.525262 1.44911 0.0303689)
(0.55239 1.33399 -0.0133779)
(0.586188 1.21668 -0.056753)
(0.616748 1.1046 -0.0895748)
(0.639508 1.00229 -0.107841)
(0.665416 0.905744 -0.119529)
(0.691433 0.812567 -0.121979)
(0.719003 0.720958 -0.123889)
(0.743319 0.631412 -0.119285)
(0.760818 0.541771 -0.122518)
(0.789455 0.448851 -0.121966)
(0.844652 0.340918 -0.133034)
(1.02581 0.248629 -0.130519)
(1.15879 0.197885 -0.152567)
(1.12529 0.14802 -0.154638)
(1.1182 0.110128 -0.158613)
(1.0587 0.0973991 -0.147282)
(1.02906 0.0860805 -0.135595)
(0.946242 0.1012 -0.11863)
(0.755327 0.0807637 -0.102583)
(0.532165 0.0587579 -0.0802273)
(0.49386 -0.00277342 -0.0705571)
(0.36389 -0.0504618 -0.053982)
(0.362178 -0.171301 -0.0471881)
(0.220282 -0.216499 -0.0415247)
(0.215197 -0.412884 -0.0426353)
(0.0514054 -0.53833 -0.0461805)
(0.079868 -0.994911 -0.0207087)
(-0.126669 -1.61832 0.0465175)
(-0.174009 -3.06807 0.151799)
(-0.48455 -4.76936 0.2124)
(-0.323859 -5.55063 0.175525)
(0.0144591 0.181666 0.0280055)
(0.0212422 0.520992 0.0834385)
(0.0555898 0.888106 0.116168)
(0.161162 1.17125 0.15135)
(0.277478 1.36253 0.163083)
(0.417578 1.42063 0.157556)
(0.469964 1.46168 0.133864)
(0.479854 1.41028 0.103996)
(0.531073 1.3317 0.0597244)
(0.576482 1.23315 0.019786)
(0.619792 1.1356 -0.0164865)
(0.659541 1.03171 -0.0482206)
(0.697899 0.936003 -0.0743567)
(0.733299 0.84377 -0.092218)
(0.764485 0.757476 -0.0977423)
(0.796711 0.674356 -0.102335)
(0.823202 0.592967 -0.0994571)
(0.842329 0.511418 -0.103432)
(0.873525 0.427015 -0.103119)
(0.936301 0.319807 -0.111388)
(1.14533 0.235745 -0.107802)
(1.30492 0.187538 -0.127726)
(1.2722 0.144572 -0.126196)
(1.27549 0.110949 -0.129261)
(1.21931 0.109636 -0.117195)
(1.2019 0.108629 -0.10875)
(1.10754 0.144716 -0.0926799)
(0.90261 0.123033 -0.0843839)
(0.652534 0.131365 -0.0703912)
(0.619185 0.0575406 -0.0598248)
(0.473273 0.0500611 -0.0492568)
(0.474831 -0.0620709 -0.0375299)
(0.314073 -0.0885469 -0.0318588)
(0.299166 -0.272861 -0.0347589)
(0.119503 -0.374618 -0.0303483)
(0.146427 -0.801247 -0.020509)
(-0.0700088 -1.40549 0.0715545)
(-0.104698 -2.82469 0.142223)
(-0.544911 -4.7237 0.219343)
(-0.325851 -6.15966 0.187672)
(-0.0189844 0.180445 0.0361076)
(-0.0228294 0.565347 0.103569)
(-0.0250754 0.879537 0.137619)
(0.0400991 1.18797 0.164444)
(0.178243 1.33621 0.176427)
(0.360922 1.36486 0.178012)
(0.468036 1.37225 0.155656)
(0.488312 1.31931 0.135935)
(0.550241 1.23711 0.0979353)
(0.613163 1.14673 0.0645772)
(0.678021 1.05549 0.0308206)
(0.728112 0.964484 0.00397927)
(0.771712 0.879995 -0.017997)
(0.81351 0.7953 -0.0390803)
(0.852385 0.714141 -0.0516713)
(0.890261 0.631633 -0.063404)
(0.916604 0.552834 -0.063499)
(0.935977 0.476175 -0.0695674)
(0.967188 0.403693 -0.0716446)
(1.03884 0.301695 -0.0783128)
(1.27823 0.235065 -0.073747)
(1.46559 0.188829 -0.0928268)
(1.43763 0.152307 -0.0902536)
(1.45667 0.121584 -0.0922523)
(1.40862 0.125866 -0.0830787)
(1.40345 0.130199 -0.0764617)
(1.29325 0.179664 -0.0634648)
(1.08021 0.164176 -0.0580263)
(0.802285 0.203102 -0.0471891)
(0.774382 0.142211 -0.0449708)
(0.61591 0.149891 -0.0323134)
(0.626906 0.0510371 -0.0306339)
(0.442377 0.0278583 -0.0232109)
(0.456208 -0.114841 -0.0217031)
(0.239926 -0.188861 -0.0210441)
(0.27002 -0.564346 0.000613147)
(0.0411536 -1.07631 0.0495335)
(0.058769 -2.514 0.179751)
(-0.550582 -4.57644 0.204648)
(-0.252213 -6.75006 0.204376)
(0.0430303 0.326604 0.0622675)
(-0.00595724 0.508791 0.132204)
(-0.0889955 0.773122 0.167101)
(-0.035443 0.959119 0.191986)
(0.00212905 1.16078 0.199572)
(0.208482 1.14915 0.20072)
(0.385824 1.16387 0.183183)
(0.44135 1.10519 0.172062)
(0.524422 1.04161 0.139159)
(0.613802 0.968931 0.112751)
(0.698588 0.895177 0.0826592)
(0.77051 0.818521 0.0574571)
(0.83207 0.75285 0.0353417)
(0.884775 0.689065 0.0176559)
(0.923724 0.627268 0.0063749)
(0.963536 0.55645 -0.00458973)
(0.996628 0.48619 -0.012155)
(1.02775 0.417431 -0.0258829)
(1.0687 0.35484 -0.0315081)
(1.16031 0.251232 -0.0356894)
(1.43216 0.198994 -0.0329354)
(1.64384 0.151406 -0.0509047)
(1.62222 0.119529 -0.0500623)
(1.65571 0.0907365 -0.0538598)
(1.61449 0.117331 -0.038924)
(1.6342 0.117276 -0.0345344)
(1.51131 0.196024 -0.0240397)
(1.32099 0.184347 -0.0258155)
(1.0281 0.253551 -0.0170917)
(1.01843 0.208705 -0.0157853)
(0.855586 0.233392 -0.00864774)
(0.898992 0.137692 -0.00391011)
(0.711959 0.118824 -0.000183186)
(0.793723 -0.00855407 0.00440738)
(0.535099 -0.0897169 0.00938921)
(0.656711 -0.39431 0.0172575)
(0.311681 -0.831378 0.0743178)
(0.446769 -2.11579 0.141777)
(-0.253729 -4.38452 0.245268)
(0.0120313 -7.27166 0.215037)
(-0.216818 0.0814363 0.076457)
(-0.280172 0.703894 0.169256)
(-0.260758 0.872409 0.205348)
(-0.222427 1.00953 0.227989)
(-0.10353 1.03717 0.244301)
(0.0704411 1.05214 0.23762)
(0.286325 0.984343 0.227569)
(0.37887 0.929455 0.219054)
(0.497287 0.865518 0.192603)
(0.605946 0.80854 0.172456)
(0.71528 0.750155 0.147571)
(0.808707 0.690507 0.125926)
(0.890194 0.636047 0.105378)
(0.960236 0.58172 0.0867457)
(1.01626 0.5326 0.0723525)
(1.06792 0.478517 0.0572573)
(1.11548 0.415569 0.0467413)
(1.1691 0.356321 0.0310383)
(1.22973 0.31349 0.0206691)
(1.37022 0.221567 0.0126923)
(1.69963 0.192038 0.0132773)
(1.97935 0.140487 -0.00333739)
(1.9926 0.109395 -0.00202604)
(2.08613 0.0834451 -0.00213633)
(2.05769 0.0993939 0.00216689)
(2.11381 0.0773964 0.01719)
(1.98964 0.170607 0.0206975)
(1.83638 0.152297 0.0154362)
(1.52201 0.253383 0.0203384)
(1.56946 0.227706 0.0201671)
(1.39891 0.272067 0.0198175)
(1.52536 0.186872 0.023085)
(1.31829 0.181044 0.0246435)
(1.48555 0.0491644 0.0290164)
(1.16617 -0.00720147 0.0345715)
(1.36047 -0.230827 0.0479146)
(0.921734 -0.509441 0.0832375)
(1.13126 -1.47973 0.15026)
(0.325126 -3.892 0.230285)
(0.485285 -7.17816 0.232815)
(-0.728272 0.794552 0.20293)
(-0.585491 0.401987 0.28776)
(-0.715359 0.579758 0.285559)
(-0.435031 0.608533 0.29056)
(-0.288842 0.614118 0.293499)
(0.00696915 0.666798 0.290424)
(0.253071 0.632478 0.273649)
(0.469524 0.603168 0.270852)
(0.657873 0.567966 0.250689)
(0.849165 0.53606 0.236502)
(1.03017 0.499722 0.217008)
(1.20091 0.4632 0.200217)
(1.34948 0.430738 0.183508)
(1.48305 0.403561 0.16804)
(1.58987 0.382359 0.15502)
(1.69347 0.350344 0.140311)
(1.79637 0.301368 0.128537)
(1.94415 0.269539 0.116092)
(2.11712 0.234783 0.108389)
(2.40013 0.131479 0.0977559)
(2.82058 0.104287 0.0971364)
(3.23043 0.045817 0.0728497)
(3.29383 0.00474213 0.0628817)
(3.44019 -0.0314702 0.0536705)
(3.37842 -0.0122554 0.063693)
(3.47921 -0.00541859 0.0598876)
(3.32016 0.0836476 0.0656846)
(3.25979 0.0865676 0.0552887)
(2.88788 0.185316 0.0645338)
(3.04758 0.197273 0.0647941)
(2.84499 0.232051 0.0623435)
(3.15189 0.163272 0.0625284)
(2.8705 0.123618 0.0623398)
(3.2103 0.0361164 0.065783)
(2.7434 -0.029105 0.0753029)
(3.10176 -0.209865 0.0782699)
(2.44885 -0.49621 0.0990811)
(2.8205 -1.13715 0.135155)
(1.85288 -3.15812 0.195354)
(1.31978 -6.08512 0.214677)
(1.1586 1.46843 0.093312)
(1.72438 0.71897 0.129535)
(2.47216 0.56729 0.140174)
(2.89043 0.35239 0.145857)
(3.17675 0.285937 0.147063)
(3.42654 0.22205 0.151108)
(3.67113 0.215795 0.150779)
(3.8844 0.187984 0.161496)
(4.0818 0.178473 0.163287)
(4.28956 0.166251 0.16474)
(4.48819 0.156379 0.161755)
(4.68906 0.144844 0.158537)
(4.85486 0.135111 0.154901)
(5.01113 0.125631 0.149309)
(5.12179 0.121269 0.14484)
(5.24498 0.116957 0.135824)
(5.37671 0.0894734 0.127481)
(5.5895 0.0740399 0.121157)
(5.87549 0.0905298 0.122892)
(6.34075 0.0580585 0.114829)
(6.75955 0.0368598 0.113896)
(7.237 0.0145478 0.09067)
(7.24535 -0.00922386 0.0730006)
(7.30778 -0.0512415 0.0642688)
(7.11604 -0.0496695 0.0579554)
(7.10382 -0.0591726 0.05126)
(6.75373 -0.0259793 0.0561881)
(6.72728 -0.0104732 0.0483002)
(6.26145 0.0302071 0.0589304)
(6.51509 0.0568187 0.061829)
(6.27749 0.0845765 0.0606827)
(6.73186 0.0782381 0.0587199)
(6.42918 0.0485356 0.0603147)
(6.82992 0.0146963 0.0584464)
(6.2899 -0.0189651 0.0642841)
(6.51472 -0.104826 0.0718226)
(5.64067 -0.263534 0.082799)
(5.67621 -0.583637 0.100431)
(4.25668 -1.13955 0.128411)
(2.7794 -2.52699 0.163874)
(0.00211718 -0.00139396 0.00407753)
(0.0191306 -0.00511772 0.00926836)
(0.0389949 -0.00446663 0.0109827)
(0.0478162 -0.00332594 0.00882858)
(0.0483762 -0.00105494 0.00584665)
(0.0395693 -0.00120118 0.00258101)
(0.021738 0.00554462 0.000605173)
(0.00239165 0.0132118 0.00197194)
(-0.0257227 0.0136137 0.00254911)
(-0.0704363 0.0107036 0.00573188)
(-0.119269 0.00447935 0.0105084)
(-0.18466 -0.00272993 0.0197772)
(-0.259667 -0.00152378 0.0308584)
(-0.350957 0.00364285 0.0484411)
(-0.451764 0.0120229 0.0482309)
(-0.582785 0.00837513 0.058476)
(-0.717868 0.00623367 0.0710007)
(-0.880889 0.00270511 0.087749)
(-0.99686 -0.000991418 0.10847)
(-1.16336 0.00788389 0.124314)
(-1.09851 0.0293076 0.159369)
(-0.914635 0.0280881 0.162514)
(-0.886847 0.014934 0.184034)
(-0.867277 -0.0228678 0.200434)
(-0.854362 -0.062084 0.223974)
(-0.799153 -0.100119 0.241239)
(-0.728112 -0.133207 0.260274)
(-0.608914 -0.156326 0.275458)
(-0.467221 -0.169185 0.288808)
(-0.272431 -0.171091 0.293327)
(-0.0870049 -0.173635 0.294531)
(0.137409 -0.118902 0.287651)
(0.35958 -0.0888534 0.245908)
(0.468458 -0.0214819 0.206379)
(0.456828 0.0228968 0.150873)
(0.343808 0.0452858 0.106857)
(0.209005 0.0369966 0.0738088)
(0.093967 0.0226092 0.0589995)
(0.0264768 0.00945954 0.0442952)
(-0.00151403 -0.0029497 0.0184294)
(0.00643713 -0.0184506 0.00868986)
(0.0327229 -0.0324773 0.0235224)
(0.0559015 -0.0273771 0.0301602)
(0.0603937 -0.0117197 0.0295293)
(0.0460772 -0.00102528 0.0266062)
(0.0153206 0.013358 0.0235156)
(-0.0371177 0.0296787 0.0226295)
(-0.122324 0.0534574 0.0241129)
(-0.240874 0.072019 0.0254626)
(-0.392488 0.0959149 0.0360666)
(-0.563784 0.124512 0.0499279)
(-0.756722 0.154898 0.0723058)
(-0.968745 0.182806 0.101758)
(-1.20726 0.197333 0.130821)
(-1.4589 0.181656 0.156293)
(-1.71104 0.145558 0.184721)
(-1.92603 0.10638 0.215283)
(-2.13823 0.0623543 0.247453)
(-2.27409 0.0202717 0.285807)
(-2.37408 -0.00936296 0.318822)
(-2.17064 -0.00711803 0.354324)
(-1.91861 -0.103278 0.365998)
(-1.80676 -0.196463 0.370764)
(-1.6997 -0.304537 0.37939)
(-1.61662 -0.415801 0.398184)
(-1.4974 -0.52293 0.407644)
(-1.37078 -0.618472 0.418196)
(-1.20169 -0.689376 0.423434)
(-1.0242 -0.727306 0.434052)
(-0.808349 -0.716897 0.441743)
(-0.586886 -0.679205 0.437409)
(-0.328842 -0.569733 0.423903)
(-0.0347522 -0.451637 0.391701)
(0.233327 -0.264743 0.36222)
(0.3881 -0.0550051 0.30242)
(0.400078 0.0714663 0.243618)
(0.308958 0.118468 0.196247)
(0.182328 0.113676 0.166571)
(0.0735737 0.0826466 0.128445)
(0.00936874 0.0332783 0.0545815)
(0.00716521 -0.0428694 0.0127257)
(0.025795 -0.0643496 0.0353137)
(0.0333414 -0.0447745 0.0455933)
(0.0100472 -0.00550282 0.0446231)
(-0.0373433 0.0371886 0.0502325)
(-0.1136 0.0858265 0.0512399)
(-0.230752 0.137261 0.0573335)
(-0.393453 0.202305 0.0639937)
(-0.60353 0.27558 0.0768845)
(-0.846552 0.344232 0.0953915)
(-1.10347 0.402496 0.120421)
(-1.36825 0.436934 0.152857)
(-1.62717 0.43508 0.190825)
(-1.88756 0.381551 0.225748)
(-2.1142 0.30843 0.255271)
(-2.30024 0.236168 0.28119)
(-2.44169 0.165049 0.306928)
(-2.57427 0.0880028 0.331863)
(-2.62919 0.0205293 0.360241)
(-2.6293 -0.0605553 0.3796)
(-2.40451 -0.14374 0.412445)
(-2.12238 -0.309888 0.381683)
(-1.97808 -0.454351 0.378036)
(-1.85692 -0.599259 0.370738)
(-1.78613 -0.749372 0.371779)
(-1.69147 -0.904048 0.364752)
(-1.5977 -1.04878 0.357754)
(-1.46495 -1.17055 0.345312)
(-1.32085 -1.25057 0.335112)
(-1.15833 -1.2597 0.331309)
(-1.01122 -1.20037 0.337811)
(-0.844372 -1.04896 0.341942)
(-0.598701 -0.85201 0.338811)
(-0.261824 -0.570984 0.345859)
(0.0222205 -0.260162 0.320051)
(0.158736 0.00595576 0.296743)
(0.191141 0.152975 0.256094)
(0.134659 0.190253 0.227368)
(0.0580761 0.16317 0.175008)
(0.00598273 0.081477 0.0727536)
(0.00442897 -0.0664669 0.0144788)
(0.000687772 -0.0848422 0.0452747)
(-0.0332362 -0.0361811 0.0613852)
(-0.0939304 0.044558 0.0658071)
(-0.185547 0.138142 0.0687798)
(-0.320148 0.238095 0.0759834)
(-0.503737 0.34917 0.0866239)
(-0.735191 0.466224 0.102034)
(-1.00596 0.565093 0.118052)
(-1.28221 0.628002 0.144123)
(-1.53529 0.649458 0.174403)
(-1.77279 0.615185 0.21068)
(-1.99369 0.529507 0.244401)
(-2.17394 0.427751 0.268981)
(-2.29282 0.3389 0.283903)
(-2.38043 0.250307 0.292927)
(-2.43603 0.164195 0.300568)
(-2.48589 0.069028 0.304934)
(-2.48348 -0.0175393 0.319535)
(-2.46997 -0.144695 0.323953)
(-2.24632 -0.271101 0.303846)
(-1.97669 -0.436181 0.273409)
(-1.85306 -0.588693 0.257662)
(-1.76997 -0.7509 0.24101)
(-1.73306 -0.916867 0.235266)
(-1.68366 -1.09605 0.224573)
(-1.63629 -1.27341 0.218252)
(-1.55486 -1.43999 0.207889)
(-1.45275 -1.57212 0.200258)
(-1.32104 -1.63766 0.192632)
(-1.19326 -1.61483 0.189598)
(-1.11231 -1.47572 0.203594)
(-0.98313 -1.20808 0.234009)
(-0.702822 -0.887538 0.264262)
(-0.363309 -0.514892 0.290054)
(-0.0957898 -0.13606 0.289688)
(0.0223423 0.0974222 0.282075)
(0.0350993 0.203091 0.256881)
(0.0183722 0.19919 0.196062)
(-0.00161745 0.103395 0.0795703)
(-0.00432606 -0.0817534 0.0184922)
(-0.0448485 -0.0711252 0.0584758)
(-0.125992 0.0199278 0.0731333)
(-0.234356 0.166716 0.0871188)
(-0.376429 0.313049 0.0957622)
(-0.55687 0.466763 0.109363)
(-0.770567 0.610436 0.127277)
(-1.0131 0.732281 0.142006)
(-1.27544 0.810533 0.159349)
(-1.52178 0.814009 0.180489)
(-1.74528 0.751836 0.203629)
(-1.93792 0.647567 0.225475)
(-2.06599 0.533691 0.241234)
(-2.13977 0.436132 0.246537)
(-2.17923 0.340493 0.241803)
(-2.20543 0.241803 0.232788)
(-2.21732 0.144126 0.222933)
(-2.23226 0.0443458 0.20943)
(-2.22385 -0.0554067 0.205689)
(-2.20595 -0.200905 0.179564)
(-2.01614 -0.31753 0.170132)
(-1.77951 -0.487591 0.129931)
(-1.68829 -0.655357 0.116389)
(-1.63899 -0.826274 0.0991541)
(-1.62904 -1.00318 0.0924943)
(-1.61174 -1.19418 0.0857518)
(-1.60171 -1.39366 0.0857593)
(-1.56651 -1.59602 0.0847076)
(-1.51302 -1.7783 0.0871874)
(-1.42158 -1.91122 0.0911961)
(-1.30832 -1.95224 0.0973013)
(-1.20027 -1.87632 0.109012)
(-1.16254 -1.63232 0.138874)
(-1.00052 -1.2392 0.192097)
(-0.657923 -0.809284 0.234082)
(-0.322168 -0.33982 0.277791)
(-0.110957 -0.00072981 0.281368)
(-0.0298034 0.174991 0.260274)
(-0.010559 0.20316 0.197454)
(-0.00646189 0.105761 0.0758879)
(-0.0111653 -0.0821479 0.0239939)
(-0.100776 -0.0175331 0.0724742)
(-0.231228 0.14258 0.103914)
(-0.375701 0.346253 0.113818)
(-0.551788 0.538172 0.126444)
(-0.741053 0.715432 0.141629)
(-0.948559 0.855156 0.154925)
(-1.17643 0.938827 0.167092)
(-1.43361 0.906267 0.170245)
(-1.66552 0.82323 0.178518)
(-1.81793 0.715009 0.187686)
(-1.90333 0.608943 0.193765)
(-1.94228 0.514342 0.189499)
(-1.95962 0.41351 0.177084)
(-1.96112 0.311947 0.157349)
(-1.96804 0.209224 0.136833)
(-1.96381 0.114075 0.117511)
(-1.97515 0.0190618 0.0984143)
(-1.97653 -0.0797421 0.0837161)
(-1.97633 -0.211778 0.0498122)
(-1.81525 -0.332425 0.0338638)
(-1.60523 -0.519906 -0.00797361)
(-1.52895 -0.677774 -0.0178006)
(-1.49622 -0.839702 -0.0325802)
(-1.4945 -1.00625 -0.0391876)
(-1.49639 -1.1971 -0.0421987)
(-1.50935 -1.3965 -0.0286839)
(-1.50758 -1.60963 -0.0238325)
(-1.49652 -1.81948 -0.00985079)
(-1.45445 -2.00827 0.00374198)
(-1.37917 -2.13369 0.0164482)
(-1.27449 -2.13919 0.0371396)
(-1.20716 -2.02216 0.0618533)
(-1.16226 -1.65403 0.119336)
(-0.905575 -1.18374 0.179595)
(-0.509364 -0.639455 0.24073)
(-0.216701 -0.169849 0.283746)
(-0.0789674 0.092128 0.265729)
(-0.0224408 0.170433 0.202801)
(-0.00644445 0.0889805 0.0787088)
(-0.0178522 -0.0340414 0.0349889)
(-0.138037 0.0924692 0.103166)
(-0.312121 0.316471 0.130865)
(-0.483826 0.553882 0.144246)
(-0.664961 0.761256 0.157036)
(-0.845612 0.923168 0.166107)
(-1.05685 1.00149 0.174671)
(-1.31797 0.953628 0.159758)
(-1.53663 0.85348 0.156691)
(-1.6528 0.768233 0.156075)
(-1.71483 0.687623 0.148736)
(-1.74147 0.595736 0.134394)
(-1.74611 0.495388 0.114378)
(-1.74439 0.392079 0.0882147)
(-1.74517 0.288578 0.0583174)
(-1.75296 0.188725 0.0391793)
(-1.75554 0.101588 0.0137315)
(-1.77591 0.010671 -0.00686413)
(-1.78506 -0.0822086 -0.0320733)
(-1.79064 -0.207866 -0.0656181)
(-1.66653 -0.31837 -0.0806346)
(-1.45852 -0.513195 -0.117065)
(-1.37124 -0.663741 -0.125427)
(-1.34377 -0.815369 -0.134487)
(-1.34875 -0.972406 -0.134256)
(-1.35993 -1.16075 -0.132028)
(-1.38171 -1.36372 -0.121848)
(-1.39806 -1.58652 -0.109998)
(-1.42075 -1.81888 -0.0927094)
(-1.42264 -2.03652 -0.0653198)
(-1.39313 -2.21838 -0.046137)
(-1.3358 -2.32336 -0.017815)
(-1.23971 -2.29132 0.0115208)
(-1.20551 -2.07639 0.0482921)
(-1.0728 -1.59944 0.111943)
(-0.699428 -1.01555 0.180933)
(-0.310199 -0.421693 0.245978)
(-0.0963928 0.00225179 0.249668)
(-0.01498 0.121018 0.202946)
(-0.00234892 0.0777935 0.0799825)
(-0.0290342 0.02882 0.0467369)
(-0.174899 0.218479 0.119494)
(-0.369107 0.473927 0.155187)
(-0.547391 0.720896 0.168241)
(-0.728595 0.906201 0.174321)
(-0.935801 1.00731 0.170213)
(-1.19062 0.977771 0.149985)
(-1.38075 0.893493 0.142716)
(-1.48362 0.839146 0.131151)
(-1.53847 0.771865 0.111925)
(-1.55581 0.679755 0.0863327)
(-1.55685 0.575983 0.0602955)
(-1.55321 0.470884 0.0261245)
(-1.56198 0.366104 -0.00202386)
(-1.57429 0.268523 -0.0268892)
(-1.58857 0.176452 -0.0506397)
(-1.59475 0.0960242 -0.0731615)
(-1.61255 0.013816 -0.0942923)
(-1.62393 -0.0627198 -0.117825)
(-1.62815 -0.171008 -0.150568)
(-1.53575 -0.268948 -0.162162)
(-1.33595 -0.453456 -0.199626)
(-1.23015 -0.602223 -0.208858)
(-1.19974 -0.748703 -0.208982)
(-1.20332 -0.898829 -0.201472)
(-1.21867 -1.07637 -0.193131)
(-1.24388 -1.27583 -0.177758)
(-1.27081 -1.50375 -0.161996)
(-1.30152 -1.75368 -0.142276)
(-1.3264 -2.00592 -0.119825)
(-1.35232 -2.24374 -0.0923806)
(-1.33681 -2.41522 -0.061556)
(-1.27687 -2.48168 -0.0313934)
(-1.21285 -2.3884 0.00671235)
(-1.13908 -2.02265 0.0524988)
(-0.863611 -1.43119 0.113965)
(-0.407139 -0.738136 0.194638)
(-0.128534 -0.170814 0.233643)
(-0.0360859 0.0610876 0.202137)
(0.00629122 0.0638175 0.0865008)
(-0.0326819 0.0868866 0.054943)
(-0.190713 0.328539 0.137019)
(-0.391203 0.587169 0.168304)
(-0.57336 0.808086 0.174267)
(-0.778581 0.954049 0.169633)
(-1.01359 0.987914 0.152338)
(-1.20703 0.949295 0.140941)
(-1.31659 0.923296 0.118694)
(-1.37114 0.860922 0.08928)
(-1.37932 0.772505 0.0532631)
(-1.37942 0.668147 0.017808)
(-1.38332 0.561868 -0.0145814)
(-1.39682 0.457902 -0.0461213)
(-1.41714 0.357245 -0.076106)
(-1.43815 0.268348 -0.103627)
(-1.45665 0.183815 -0.125953)
(-1.46366 0.109662 -0.145877)
(-1.47594 0.0346023 -0.163184)
(-1.48042 -0.0288179 -0.17898)
(-1.47598 -0.116227 -0.198129)
(-1.4161 -0.198174 -0.204322)
(-1.22837 -0.365658 -0.240546)
(-1.09672 -0.525369 -0.254763)
(-1.06186 -0.670113 -0.249605)
(-1.06114 -0.815531 -0.236162)
(-1.07812 -0.983507 -0.222804)
(-1.10566 -1.17486 -0.205679)
(-1.14082 -1.39777 -0.188624)
(-1.1825 -1.65159 -0.168671)
(-1.22327 -1.92604 -0.146829)
(-1.2584 -2.20778 -0.120824)
(-1.28606 -2.44667 -0.0970692)
(-1.2669 -2.59679 -0.0578964)
(-1.2092 -2.60916 -0.0279568)
(-1.14906 -2.38252 0.00920414)
(-0.964707 -1.84896 0.0508954)
(-0.560144 -1.11213 0.119374)
(-0.175785 -0.422296 0.17812)
(-0.03351 -0.0106523 0.178899)
(0.00246357 0.045942 0.0815727)
(-0.0367034 0.163859 0.0695419)
(-0.204565 0.453213 0.160526)
(-0.407444 0.702489 0.193688)
(-0.583681 0.891788 0.194613)
(-0.801891 1.00149 0.177969)
(-1.01041 1.01378 0.151183)
(-1.15027 1.00525 0.122057)
(-1.20836 0.956842 0.0828473)
(-1.2175 0.875842 0.0371428)
(-1.21447 0.771791 -0.00724107)
(-1.22219 0.662019 -0.0448972)
(-1.24346 0.555883 -0.0805305)
(-1.27324 0.458528 -0.114623)
(-1.30536 0.365899 -0.14449)
(-1.33027 0.280714 -0.169583)
(-1.34474 0.198575 -0.187204)
(-1.34485 0.126308 -0.199492)
(-1.3404 0.0545229 -0.207432)
(-1.33246 -0.00146189 -0.21515)
(-1.31602 -0.06925 -0.222325)
(-1.2783 -0.138435 -0.229824)
(-1.12736 -0.261467 -0.248261)
(-0.978138 -0.43402 -0.273129)
(-0.92971 -0.577346 -0.2645)
(-0.92343 -0.721174 -0.248782)
(-0.938215 -0.877113 -0.231233)
(-0.964737 -1.05777 -0.212176)
(-1.00326 -1.26881 -0.194063)
(-1.05207 -1.51849 -0.174486)
(-1.10594 -1.80133 -0.153957)
(-1.16042 -2.10831 -0.130476)
(-1.20073 -2.40711 -0.102469)
(-1.22019 -2.64613 -0.0757595)
(-1.18954 -2.75718 -0.0398879)
(-1.12623 -2.6645 -0.00863961)
(-1.00116 -2.24133 0.0143524)
(-0.68684 -1.50942 0.0595375)
(-0.245199 -0.675679 0.129672)
(-0.0407966 -0.107086 0.147875)
(-0.00810099 0.0281172 0.0787588)
(-0.0345912 0.238615 0.0807034)
(-0.201568 0.578108 0.18088)
(-0.39995 0.826102 0.215324)
(-0.579399 0.998513 0.209859)
(-0.794786 1.07184 0.17994)
(-0.961947 1.07989 0.140765)
(-1.0457 1.05401 0.0947776)
(-1.06186 0.986229 0.038418)
(-1.06023 0.885996 -0.016115)
(-1.0661 0.774615 -0.0643159)
(-1.09248 0.664917 -0.102293)
(-1.13089 0.564803 -0.138952)
(-1.17319 0.471694 -0.172612)
(-1.20887 0.382549 -0.201138)
(-1.23122 0.298857 -0.221676)
(-1.23796 0.217953 -0.231946)
(-1.22766 0.144678 -0.234525)
(-1.20786 0.0752184 -0.233263)
(-1.18597 0.01751 -0.231146)
(-1.15852 -0.0370297 -0.235832)
(-1.12371 -0.0967736 -0.234039)
(-1.02094 -0.18261 -0.242812)
(-0.883194 -0.336121 -0.2655)
(-0.812794 -0.487895 -0.258426)
(-0.799852 -0.62913 -0.242971)
(-0.808784 -0.778275 -0.223511)
(-0.832249 -0.946671 -0.204824)
(-0.867513 -1.14452 -0.187662)
(-0.915717 -1.38037 -0.171029)
(-0.973979 -1.65793 -0.15345)
(-1.03948 -1.97693 -0.131859)
(-1.10155 -2.31411 -0.107495)
(-1.14174 -2.62906 -0.076856)
(-1.14264 -2.84243 -0.0498337)
(-1.09194 -2.87293 -0.017884)
(-0.986716 -2.59469 -0.00026902)
(-0.75425 -1.92016 0.0140922)
(-0.326772 -0.990336 0.0660145)
(-0.0596993 -0.257711 0.105932)
(-0.0236958 0.00521943 0.062589)
(-0.0288698 0.311025 0.0948427)
(-0.18624 0.698395 0.203461)
(-0.376374 0.946151 0.239328)
(-0.560638 1.09677 0.225726)
(-0.752367 1.14395 0.183356)
(-0.869832 1.14503 0.12934)
(-0.914662 1.09663 0.0631776)
(-0.915526 1.00557 -0.000902552)
(-0.917686 0.894145 -0.0663446)
(-0.941057 0.779939 -0.111351)
(-0.987091 0.675067 -0.151505)
(-1.03739 0.578895 -0.188472)
(-1.0848 0.488802 -0.222307)
(-1.11866 0.400584 -0.246221)
(-1.13472 0.316634 -0.259692)
(-1.1317 0.234339 -0.259349)
(-1.10897 0.159312 -0.251671)
(-1.07423 0.0899515 -0.241053)
(-1.03631 0.0320857 -0.23137)
(-0.998952 -0.0156834 -0.229588)
(-0.968363 -0.0632337 -0.225257)
(-0.897301 -0.132088 -0.225476)
(-0.795355 -0.247831 -0.239133)
(-0.721214 -0.397021 -0.237101)
(-0.692021 -0.539338 -0.222467)
(-0.695331 -0.683267 -0.204794)
(-0.712891 -0.841593 -0.18677)
(-0.743729 -1.02458 -0.172455)
(-0.78612 -1.24385 -0.15848)
(-0.841222 -1.50712 -0.144916)
(-0.908756 -1.82174 -0.127186)
(-0.982163 -2.17935 -0.103881)
(-1.04694 -2.54961 -0.076123)
(-1.07708 -2.86193 -0.0452994)
(-1.05069 -3.01318 -0.0173667)
(-0.953126 -2.87626 0.000650011)
(-0.768539 -2.32933 0.00290233)
(-0.416299 -1.3575 0.0246574)
(-0.0781427 -0.455798 0.0661286)
(-0.0152962 -0.0362701 0.0515268)
(-0.0202009 0.371689 0.102426)
(-0.159369 0.806864 0.218657)
(-0.341225 1.05675 0.255255)
(-0.520861 1.18124 0.232411)
(-0.679812 1.21962 0.181926)
(-0.757334 1.20393 0.110361)
(-0.78111 1.13029 0.0309137)
(-0.77693 1.02488 -0.0445215)
(-0.794518 0.907159 -0.106614)
(-0.83839 0.792611 -0.15281)
(-0.895728 0.692058 -0.193355)
(-0.952289 0.597995 -0.231185)
(-0.999195 0.507995 -0.261726)
(-1.02764 0.418771 -0.279399)
(-1.03607 0.332706 -0.282037)
(-1.02305 0.248662 -0.270287)
(-0.987822 0.170311 -0.250986)
(-0.940072 0.100205 -0.233148)
(-0.888679 0.0436296 -0.219539)
(-0.844873 -4.62256e-05 -0.216488)
(-0.820747 -0.0385444 -0.210231)
(-0.775359 -0.0977539 -0.201989)
(-0.705837 -0.1879 -0.206908)
(-0.648444 -0.315862 -0.199504)
(-0.609873 -0.460852 -0.19176)
(-0.602038 -0.600475 -0.177101)
(-0.612896 -0.75143 -0.163237)
(-0.635548 -0.919395 -0.152146)
(-0.670238 -1.12106 -0.14221)
(-0.717564 -1.3653 -0.132855)
(-0.780208 -1.66679 -0.118762)
(-0.855702 -2.02666 -0.10031)
(-0.933092 -2.43013 -0.074645)
(-0.990922 -2.81775 -0.046123)
(-0.993332 -3.0904 -0.0174742)
(-0.921803 -3.09413 0.00253001)
(-0.75909 -2.6911 0.00647623)
(-0.474929 -1.7548 0.00079474)
(-0.10925 -0.66831 0.0331464)
(-0.00200574 -0.0910573 0.0340826)
(-0.0102235 0.419386 0.11262)
(-0.12722 0.9023 0.236161)
(-0.300586 1.1531 0.272639)
(-0.463904 1.25684 0.243197)
(-0.586944 1.28896 0.182303)
(-0.639763 1.25178 0.0952295)
(-0.651694 1.15919 0.00791692)
(-0.657012 1.04248 -0.0767342)
(-0.693927 0.918333 -0.137139)
(-0.749584 0.808006 -0.185679)
(-0.81402 0.709018 -0.228659)
(-0.871136 0.615112 -0.266129)
(-0.913635 0.523327 -0.292987)
(-0.935435 0.431984 -0.300531)
(-0.935481 0.34393 -0.291589)
(-0.91358 0.256992 -0.265875)
(-0.867488 0.175975 -0.23688)
(-0.806982 0.106188 -0.21416)
(-0.744247 0.0514991 -0.199529)
(-0.693402 0.0133794 -0.201591)
(-0.682212 -0.0191576 -0.196272)
(-0.659653 -0.0747653 -0.177545)
(-0.616649 -0.147287 -0.175183)
(-0.58583 -0.254639 -0.163718)
(-0.549265 -0.388976 -0.154932)
(-0.529391 -0.530938 -0.146054)
(-0.531131 -0.673612 -0.136042)
(-0.545585 -0.829196 -0.128977)
(-0.571439 -1.01179 -0.122193)
(-0.60931 -1.23614 -0.115863)
(-0.664019 -1.51878 -0.10601)
(-0.735559 -1.87124 -0.0907095)
(-0.817589 -2.28948 -0.0687914)
(-0.89232 -2.73202 -0.0414424)
(-0.922013 -3.1037 -0.0139389)
(-0.88126 -3.25136 0.00468652)
(-0.738943 -2.99421 0.0165141)
(-0.49981 -2.15478 0.0033268)
(-0.134824 -0.916832 0.0065783)
(0.010823 -0.150175 0.0249966)
(0.000371641 0.448448 0.112113)
(-0.0946001 0.981454 0.242173)
(-0.254216 1.23378 0.278866)
(-0.394119 1.32949 0.24713)
(-0.486407 1.34968 0.175781)
(-0.524587 1.29044 0.0769478)
(-0.537898 1.18491 -0.0165364)
(-0.556838 1.05678 -0.101951)
(-0.606569 0.935257 -0.163189)
(-0.669313 0.827266 -0.215296)
(-0.73548 0.729249 -0.26055)
(-0.788967 0.633359 -0.297393)
(-0.825565 0.538944 -0.317053)
(-0.83923 0.444937 -0.313237)
(-0.832022 0.354629 -0.288805)
(-0.802904 0.265358 -0.249131)
(-0.746974 0.183373 -0.208909)
(-0.676353 0.111821 -0.182461)
(-0.602854 0.0611679 -0.169554)
(-0.55031 0.0294661 -0.180948)
(-0.556489 -0.00561049 -0.177109)
(-0.556279 -0.0582598 -0.15133)
(-0.532793 -0.122346 -0.145198)
(-0.526328 -0.211144 -0.133278)
(-0.505408 -0.325616 -0.122611)
(-0.479458 -0.469595 -0.116579)
(-0.466799 -0.609363 -0.109126)
(-0.471197 -0.753737 -0.105833)
(-0.48836 -0.920261 -0.101299)
(-0.517924 -1.12323 -0.0987333)
(-0.563397 -1.38451 -0.0921101)
(-0.627638 -1.7216 -0.0814841)
(-0.707383 -2.14173 -0.0630547)
(-0.791787 -2.61957 -0.038139)
(-0.84019 -3.07315 -0.0111173)
(-0.830198 -3.35208 0.00971887)
(-0.718492 -3.24467 0.0244083)
(-0.50429 -2.5235 0.0122542)
(-0.154777 -1.21092 -0.00649734)
(0.0173972 -0.193963 0.00889577)
(0.01006 0.467499 0.119858)
(-0.0649166 1.04802 0.255606)
(-0.203694 1.3108 0.294964)
(-0.316549 1.40555 0.259286)
(-0.386467 1.40703 0.177601)
(-0.418052 1.32857 0.0694983)
(-0.43797 1.20936 -0.0296741)
(-0.469829 1.07609 -0.114521)
(-0.527588 0.955349 -0.178374)
(-0.593725 0.847796 -0.235635)
(-0.658549 0.747656 -0.285106)
(-0.707111 0.649666 -0.322109)
(-0.735312 0.552228 -0.335019)
(-0.74016 0.455867 -0.317424)
(-0.725719 0.364024 -0.276683)
(-0.692236 0.276079 -0.223109)
(-0.632498 0.192122 -0.174972)
(-0.551572 0.131049 -0.149077)
(-0.467139 0.088751 -0.150887)
(-0.417961 0.0479538 -0.160066)
(-0.443798 0.00928505 -0.163516)
(-0.461132 -0.0456565 -0.129338)
(-0.453804 -0.106716 -0.118829)
(-0.465744 -0.180885 -0.107239)
(-0.469406 -0.274382 -0.0962368)
(-0.450887 -0.399746 -0.0903125)
(-0.419915 -0.548719 -0.0839379)
(-0.412353 -0.687114 -0.0827832)
(-0.420182 -0.839302 -0.0800617)
(-0.439864 -1.02424 -0.0801369)
(-0.477438 -1.26409 -0.0771884)
(-0.533943 -1.58342 -0.070466)
(-0.609653 -1.99626 -0.0559023)
(-0.696648 -2.49736 -0.0324317)
(-0.757915 -3.01479 -0.00615898)
(-0.773264 -3.41743 0.0215889)
(-0.684464 -3.45605 0.0386946)
(-0.496429 -2.87625 0.0284172)
(-0.164416 -1.54447 -0.00436186)
(0.0382868 -0.25366 -0.00261488)
(0.0169897 0.466735 0.110482)
(-0.0332667 1.09266 0.253569)
(-0.149109 1.38536 0.297567)
(-0.24085 1.47529 0.258745)
(-0.295104 1.46086 0.170689)
(-0.324628 1.36358 0.0555441)
(-0.35359 1.23498 -0.0446843)
(-0.395965 1.10085 -0.13111)
(-0.458601 0.983995 -0.197226)
(-0.524317 0.877864 -0.25823)
(-0.582425 0.77834 -0.308545)
(-0.619482 0.679099 -0.341357)
(-0.63723 0.579156 -0.344411)
(-0.633239 0.480438 -0.313593)
(-0.614012 0.390369 -0.257834)
(-0.581504 0.311284 -0.189435)
(-0.510832 0.251429 -0.134497)
(-0.418633 0.200216 -0.111773)
(-0.347166 0.141801 -0.100534)
(-0.307978 0.0815645 -0.122548)
(-0.34431 0.0346778 -0.145307)
(-0.380078 -0.0295038 -0.10831)
(-0.379916 -0.0939735 -0.0943086)
(-0.403447 -0.161347 -0.0842019)
(-0.42236 -0.240321 -0.0727251)
(-0.432476 -0.335314 -0.0688933)
(-0.402872 -0.465273 -0.0595492)
(-0.366919 -0.612877 -0.0600218)
(-0.364329 -0.764614 -0.0595949)
(-0.377469 -0.932537 -0.0622246)
(-0.405466 -1.14843 -0.0620611)
(-0.450702 -1.44534 -0.0592324)
(-0.520516 -1.84714 -0.049684)
(-0.609525 -2.36315 -0.0289204)
(-0.684579 -2.93306 -0.00300525)
(-0.721716 -3.44633 0.0325605)
(-0.658068 -3.63018 0.0530089)
(-0.490234 -3.19273 0.0481424)
(-0.178668 -1.86402 0.00358102)
(0.0524165 -0.300843 -0.00788447)
(0.0101124 0.480292 0.127955)
(-0.00776295 1.15932 0.276107)
(-0.0907294 1.48606 0.322036)
(-0.172121 1.57614 0.280333)
(-0.210239 1.54298 0.183333)
(-0.239365 1.43385 0.0606394)
(-0.271872 1.2948 -0.0441303)
(-0.318792 1.15875 -0.132357)
(-0.38081 1.03858 -0.198557)
(-0.441126 0.929257 -0.261492)
(-0.488772 0.824857 -0.309498)
(-0.516935 0.722212 -0.339465)
(-0.52792 0.625326 -0.334022)
(-0.518069 0.538124 -0.294472)
(-0.489064 0.469571 -0.22655)
(-0.439386 0.411597 -0.164779)
(-0.374778 0.358356 -0.108212)
(-0.318821 0.291414 -0.0625479)
(-0.264281 0.210663 -0.0387052)
(-0.219992 0.132874 -0.0707738)
(-0.263045 0.0671805 -0.120605)
(-0.312366 -0.0102484 -0.0909875)
(-0.316074 -0.077973 -0.0706302)
(-0.344489 -0.14623 -0.0637197)
(-0.369672 -0.218722 -0.0515951)
(-0.387439 -0.294434 -0.05024)
(-0.386592 -0.385639 -0.0435492)
(-0.362497 -0.511361 -0.0425873)
(-0.329896 -0.660862 -0.0386757)
(-0.319095 -0.834636 -0.0437801)
(-0.338845 -1.04199 -0.047226)
(-0.374653 -1.31504 -0.0487242)
(-0.435579 -1.69277 -0.0426906)
(-0.517684 -2.21364 -0.0241516)
(-0.60353 -2.83466 0.000422788)
(-0.662924 -3.45375 0.0423469)
(-0.62356 -3.78705 0.0656315)
(-0.476119 -3.50611 0.0670503)
(-0.183778 -2.21444 0.0195554)
(0.0635152 -0.394941 -0.0104221)
(0.00845065 0.524377 0.126147)
(-0.00140791 1.26781 0.278214)
(-0.0395199 1.60748 0.334335)
(-0.0887048 1.70119 0.282256)
(-0.126738 1.65814 0.19494)
(-0.156106 1.53803 0.0597596)
(-0.194295 1.39799 -0.0424475)
(-0.245223 1.26051 -0.131231)
(-0.303721 1.14064 -0.194754)
(-0.355443 1.03369 -0.254449)
(-0.389978 0.940967 -0.297999)
(-0.398618 0.853824 -0.317408)
(-0.391303 0.766765 -0.298181)
(-0.363723 0.683886 -0.256363)
(-0.331335 0.611851 -0.197188)
(-0.309334 0.543086 -0.138886)
(-0.277254 0.467722 -0.0639073)
(-0.238839 0.393685 0.000969142)
(-0.198873 0.314306 0.0365479)
(-0.157403 0.208381 -0.0125459)
(-0.20413 0.11995 -0.0972256)
(-0.255985 0.023932 -0.0739679)
(-0.257424 -0.0517937 -0.050279)
(-0.290767 -0.126425 -0.0466233)
(-0.316747 -0.197479 -0.0343456)
(-0.335125 -0.26429 -0.0356553)
(-0.338777 -0.337363 -0.0302829)
(-0.33424 -0.421808 -0.0332142)
(-0.329893 -0.535096 -0.0316343)
(-0.314178 -0.687566 -0.0314496)
(-0.302702 -0.877064 -0.0309716)
(-0.307866 -1.1427 -0.0343373)
(-0.349376 -1.51534 -0.0348804)
(-0.426189 -2.03162 -0.0217216)
(-0.521554 -2.68047 0.00129192)
(-0.601253 -3.39932 0.0472923)
(-0.598633 -3.88525 0.0778069)
(-0.481957 -3.77666 0.08775)
(-0.216367 -2.54539 0.0456221)
(0.0526235 -0.442209 -0.0019065)
(-0.00219695 0.682636 0.16481)
(0.00754399 1.49436 0.330783)
(-0.012318 1.8733 0.383318)
(-0.0382233 1.94996 0.339679)
(-0.0521282 1.89367 0.229933)
(-0.0775927 1.76166 0.0912547)
(-0.118771 1.62184 -0.00810057)
(-0.171108 1.49513 -0.0918866)
(-0.218305 1.37765 -0.143111)
(-0.244386 1.27157 -0.18505)
(-0.251188 1.17369 -0.210508)
(-0.256626 1.07038 -0.2273)
(-0.259706 0.955022 -0.221318)
(-0.245975 0.840736 -0.202069)
(-0.226665 0.734828 -0.156945)
(-0.210244 0.648562 -0.105997)
(-0.181291 0.591663 -0.0534008)
(-0.156343 0.536778 0.00279803)
(-0.153068 0.460865 0.0496304)
(-0.12656 0.327344 7.33329e-05)
(-0.168357 0.198915 -0.0784312)
(-0.21792 0.0787212 -0.0609654)
(-0.213213 -0.0184082 -0.0370179)
(-0.243801 -0.100588 -0.0355853)
(-0.265223 -0.172963 -0.0239755)
(-0.280689 -0.237957 -0.02581)
(-0.284779 -0.303442 -0.0222176)
(-0.279997 -0.37591 -0.0258563)
(-0.27956 -0.454768 -0.0264908)
(-0.278485 -0.558742 -0.0306947)
(-0.289429 -0.697085 -0.0341912)
(-0.306465 -0.91447 -0.0353947)
(-0.32395 -1.24241 -0.031468)
(-0.342404 -1.75648 -0.0140366)
(-0.417863 -2.45717 0.00439257)
(-0.513822 -3.25668 0.0506486)
(-0.541661 -3.89472 0.0845388)
(-0.466876 -3.99448 0.100853)
(-0.221429 -2.91294 0.0633625)
(0.0621922 -0.602804 -0.00268606)
(-0.021591 0.748365 0.140847)
(-0.00703278 1.62581 0.30927)
(0.00755216 2.04395 0.374722)
(0.00206945 2.14965 0.33627)
(0.00186353 2.09382 0.231691)
(-0.0151935 1.95176 0.0990197)
(-0.0366712 1.8041 -0.00842389)
(-0.0888984 1.67671 -0.0914688)
(-0.140081 1.56633 -0.135745)
(-0.156897 1.44862 -0.1669)
(-0.16542 1.32378 -0.18839)
(-0.17346 1.18711 -0.201676)
(-0.174826 1.04684 -0.193307)
(-0.154751 0.920296 -0.174312)
(-0.122876 0.81675 -0.138168)
(-0.0849369 0.739907 -0.113744)
(-0.0537475 0.713755 -0.106119)
(-0.061169 0.699515 -0.100244)
(-0.11767 0.654656 -0.0600948)
(-0.134968 0.503453 -0.0448042)
(-0.174727 0.304628 -0.0935971)
(-0.206601 0.145798 -0.0672667)
(-0.184305 0.0205335 -0.0425362)
(-0.201212 -0.0682468 -0.0343508)
(-0.216261 -0.145234 -0.0215975)
(-0.228794 -0.210613 -0.0237291)
(-0.233112 -0.272479 -0.0204626)
(-0.227075 -0.340432 -0.0233618)
(-0.226528 -0.408606 -0.0241037)
(-0.219207 -0.492379 -0.0272931)
(-0.223149 -0.587346 -0.0318121)
(-0.240323 -0.733721 -0.0387948)
(-0.299563 -0.965689 -0.0450984)
(-0.383233 -1.39856 -0.0431947)
(-0.422768 -2.05787 -0.0067519)
(-0.459204 -2.92787 0.0458953)
(-0.506921 -3.70555 0.0892358)
(-0.473574 -4.0504 0.12092)
(-0.275426 -3.21052 0.0897238)
(0.0248093 -0.899144 0.0226454)
(-0.011403 0.700694 0.136769)
(0.0113981 1.59543 0.297447)
(0.0372701 2.04205 0.36438)
(0.0478114 2.18329 0.33827)
(0.0525662 2.14635 0.241077)
(0.0420234 2.01607 0.113938)
(0.0222536 1.86832 0.00621606)
(-0.00637621 1.72464 -0.0731226)
(-0.0482267 1.61474 -0.125085)
(-0.0803116 1.49747 -0.143704)
(-0.0819305 1.36604 -0.159958)
(-0.0851936 1.22947 -0.173309)
(-0.0801113 1.09694 -0.170336)
(-0.0498472 0.972891 -0.168022)
(-0.0108695 0.872662 -0.152762)
(0.0494231 0.808687 -0.169727)
(0.111111 0.800565 -0.240567)
(0.0920825 0.810524 -0.348886)
(-0.0595424 0.801927 -0.384713)
(-0.193493 0.662018 -0.282109)
(-0.247015 0.413239 -0.206973)
(-0.232713 0.216729 -0.114276)
(-0.172318 0.067758 -0.0601612)
(-0.164207 -0.0352726 -0.0447566)
(-0.169451 -0.118193 -0.0278222)
(-0.17377 -0.187687 -0.0274222)
(-0.178624 -0.247378 -0.0241525)
(-0.171113 -0.312724 -0.0262652)
(-0.167343 -0.374786 -0.0258266)
(-0.156293 -0.450097 -0.0274082)
(-0.155439 -0.532252 -0.0296697)
(-0.15775 -0.655038 -0.0329709)
(-0.18823 -0.832128 -0.0385391)
(-0.272846 -1.15431 -0.0371502)
(-0.398708 -1.67297 -0.0344106)
(-0.464655 -2.48516 0.0266938)
(-0.513424 -3.31828 0.0787961)
(-0.523297 -3.84018 0.120934)
(-0.376072 -3.25097 0.098481)
(-0.0601684 -0.978841 0.0315817)
(-0.00464479 0.674764 0.11564)
(0.0342112 1.54068 0.263075)
(0.0724684 2.00768 0.336186)
(0.0909579 2.17455 0.319945)
(0.101018 2.15854 0.234607)
(0.0933884 2.04523 0.115141)
(0.0773838 1.90734 0.0109219)
(0.0463449 1.7672 -0.064079)
(0.0202256 1.63536 -0.111349)
(-0.00102385 1.52177 -0.14648)
(-0.0144567 1.39324 -0.156166)
(-0.0116819 1.24919 -0.166004)
(0.000945364 1.10939 -0.168439)
(0.040138 0.983457 -0.170938)
(0.106771 0.883368 -0.172963)
(0.207209 0.826472 -0.252253)
(0.286069 0.799158 -0.410728)
(0.253462 0.75995 -0.620249)
(0.0254462 0.700647 -0.79422)
(-0.240599 0.594349 -0.691474)
(-0.338012 0.397199 -0.430052)
(-0.27966 0.229797 -0.214272)
(-0.176653 0.0890256 -0.106482)
(-0.137837 -0.014328 -0.0704559)
(-0.127771 -0.094747 -0.0491774)
(-0.122331 -0.167931 -0.0415561)
(-0.123408 -0.226738 -0.0347166)
(-0.115123 -0.290964 -0.0328952)
(-0.111621 -0.348827 -0.0309792)
(-0.0984994 -0.420362 -0.0296363)
(-0.0965183 -0.493411 -0.0295629)
(-0.095749 -0.603557 -0.0306352)
(-0.124426 -0.756865 -0.0325687)
(-0.185205 -1.03947 -0.0289657)
(-0.2908 -1.47055 -0.018274)
(-0.380762 -2.1514 0.0283995)
(-0.471817 -2.94931 0.0835595)
(-0.507748 -3.56481 0.128)
(-0.398133 -3.20175 0.11348)
(-0.110608 -1.04097 0.0373137)
(-0.000354669 0.621724 0.100456)
(0.0537267 1.4619 0.237117)
(0.105836 1.94795 0.313305)
(0.132351 2.14165 0.307474)
(0.146567 2.14641 0.232997)
(0.142705 2.04726 0.122128)
(0.131614 1.91866 0.0203328)
(0.105888 1.78335 -0.0552136)
(0.0814018 1.65797 -0.104562)
(0.0598694 1.52966 -0.135293)
(0.0506574 1.39902 -0.151359)
(0.0554786 1.2583 -0.163343)
(0.0792119 1.11214 -0.163123)
(0.139961 0.975788 -0.171318)
(0.228797 0.865834 -0.199987)
(0.336425 0.780849 -0.309804)
(0.390327 0.692511 -0.517001)
(0.316679 0.578465 -0.775167)
(0.0761503 0.42213 -0.968861)
(-0.210762 0.330604 -0.902895)
(-0.32844 0.246644 -0.57642)
(-0.264898 0.161571 -0.2966)
(-0.151306 0.0763353 -0.149398)
(-0.0930454 -0.0078637 -0.102565)
(-0.0767316 -0.0787718 -0.0790407)
(-0.0660469 -0.15021 -0.0671979)
(-0.0644871 -0.209566 -0.05505)
(-0.0538889 -0.273567 -0.0471059)
(-0.0487543 -0.329462 -0.0405465)
(-0.0344054 -0.398942 -0.0361121)
(-0.0317668 -0.467428 -0.0324625)
(-0.0278144 -0.57048 -0.0295332)
(-0.0504292 -0.706358 -0.0295831)
(-0.0951634 -0.957592 -0.025025)
(-0.191605 -1.33873 -0.0149881)
(-0.295158 -1.97314 0.0231425)
(-0.415296 -2.73791 0.0723061)
(-0.474385 -3.42605 0.118234)
(-0.397863 -3.24646 0.112477)
(-0.139527 -1.25252 0.0365938)
(0.00375041 0.567998 0.0801779)
(0.0707088 1.37317 0.205271)
(0.135869 1.87789 0.285779)
(0.17049 2.09955 0.290485)
(0.190894 2.12572 0.227189)
(0.189799 2.04144 0.125986)
(0.182492 1.91958 0.0265113)
(0.159851 1.7891 -0.0488208)
(0.138496 1.66355 -0.0995885)
(0.121531 1.53939 -0.132664)
(0.111172 1.40861 -0.150328)
(0.113634 1.26786 -0.160298)
(0.140749 1.11838 -0.157638)
(0.21484 0.966607 -0.164725)
(0.315314 0.824192 -0.202366)
(0.414607 0.691284 -0.311555)
(0.438573 0.548357 -0.511416)
(0.313934 0.385397 -0.749605)
(0.0886373 0.218487 -0.865648)
(-0.121546 0.119381 -0.784168)
(-0.217912 0.103198 -0.527849)
(-0.168364 0.0960833 -0.308071)
(-0.0738783 0.05109 -0.181303)
(-0.0305182 -0.0106443 -0.140529)
(-0.0161862 -0.0720168 -0.118043)
(-0.00595944 -0.137141 -0.0996149)
(-0.00393688 -0.194226 -0.0831249)
(0.00674974 -0.258854 -0.0685356)
(0.00881602 -0.315277 -0.0565904)
(0.0208699 -0.386256 -0.0463692)
(0.0169835 -0.451247 -0.0373431)
(0.0168043 -0.546955 -0.0290024)
(-0.0103552 -0.662886 -0.0254469)
(-0.0384306 -0.888129 -0.0206237)
(-0.122755 -1.25361 -0.00856289)
(-0.222419 -1.87343 0.0250697)
(-0.350289 -2.6418 0.0731852)
(-0.420041 -3.40521 0.123778)
(-0.378993 -3.37188 0.124298)
(-0.139946 -1.49013 0.0534146)
(0.00674854 0.512807 0.0645567)
(0.0841919 1.27627 0.17802)
(0.160954 1.79859 0.261778)
(0.20304 2.05217 0.276946)
(0.231274 2.10303 0.22532)
(0.235268 2.03522 0.132733)
(0.232628 1.91882 0.0370676)
(0.214586 1.79311 -0.0389721)
(0.19508 1.66905 -0.0907556)
(0.180763 1.546 -0.12508)
(0.173423 1.41772 -0.144151)
(0.17701 1.2806 -0.15504)
(0.199111 1.13408 -0.151346)
(0.265829 0.974682 -0.150387)
(0.362247 0.801614 -0.177095)
(0.450678 0.625465 -0.264679)
(0.451542 0.437232 -0.424065)
(0.331229 0.248816 -0.602403)
(0.134487 0.108594 -0.684101)
(-0.0207619 0.0275192 -0.60428)
(-0.0547226 0.0125064 -0.445403)
(-0.0269535 0.0296748 -0.296036)
(0.0229037 0.0136075 -0.205039)
(0.0563136 -0.0274403 -0.171977)
(0.0606707 -0.0724527 -0.149793)
(0.0691908 -0.128879 -0.130462)
(0.0660029 -0.178035 -0.107799)
(0.0739879 -0.239948 -0.0893996)
(0.073149 -0.294731 -0.0721303)
(0.0849565 -0.364547 -0.0594053)
(0.0822162 -0.427731 -0.0468413)
(0.0880641 -0.522024 -0.0377656)
(0.057148 -0.628491 -0.0295048)
(0.0174792 -0.838716 -0.018798)
(-0.0606353 -1.19115 -0.0160062)
(-0.149177 -1.82621 0.0162657)
(-0.29375 -2.6373 0.0643006)
(-0.37676 -3.51333 0.119125)
(-0.374483 -3.6294 0.125113)
(-0.146911 -1.79787 0.0488264)
(0.0113482 0.456918 0.0500064)
(0.0998391 1.16258 0.146309)
(0.186273 1.69591 0.234528)
(0.232426 1.98243 0.260703)
(0.266521 2.06175 0.221403)
(0.276624 2.01319 0.139013)
(0.279179 1.90489 0.0473599)
(0.26576 1.78383 -0.0285022)
(0.248546 1.66122 -0.0810064)
(0.237058 1.54113 -0.116059)
(0.231047 1.41802 -0.135656)
(0.235257 1.28563 -0.145411)
(0.254014 1.14408 -0.141353)
(0.305629 0.987463 -0.135108)
(0.381869 0.807086 -0.143912)
(0.449488 0.606241 -0.196429)
(0.440896 0.392298 -0.298725)
(0.344827 0.196779 -0.415994)
(0.20894 0.0599112 -0.462959)
(0.105898 0.00242947 -0.41843)
(0.0956271 -0.0190033 -0.330282)
(0.136304 -0.0119271 -0.24847)
(0.163312 -0.0153719 -0.206962)
(0.168565 -0.04367 -0.196133)
(0.159657 -0.0764268 -0.178572)
(0.158969 -0.126698 -0.159644)
(0.149723 -0.172927 -0.134562)
(0.150433 -0.239353 -0.108714)
(0.143959 -0.302475 -0.0852852)
(0.151471 -0.395499 -0.0671524)
(0.136277 -0.488594 -0.0509432)
(0.130725 -0.611745 -0.0410087)
(0.103266 -0.734262 -0.0287277)
(0.0550422 -0.960631 -0.0184269)
(-0.0351358 -1.28511 -0.00646872)
(-0.10666 -1.93141 0.015239)
(-0.25295 -2.78076 0.068478)
(-0.332191 -3.79114 0.130814)
(-0.337496 -4.09411 0.149533)
(-0.130634 -2.37639 0.0764425)
(0.00769046 0.41042 0.0403708)
(0.106441 1.05596 0.120271)
(0.21198 1.58469 0.204)
(0.259029 1.90968 0.245133)
(0.295606 2.02139 0.219134)
(0.312663 1.9973 0.147523)
(0.32397 1.89858 0.0587341)
(0.317678 1.78305 -0.0145351)
(0.303904 1.66109 -0.0678592)
(0.295755 1.54268 -0.104032)
(0.291872 1.42373 -0.124338)
(0.296971 1.29704 -0.134029)
(0.311991 1.16233 -0.130371)
(0.34944 1.01252 -0.12099)
(0.400524 0.84144 -0.119498)
(0.444333 0.64434 -0.144915)
(0.433692 0.435798 -0.202704)
(0.373701 0.253592 -0.275918)
(0.299552 0.126796 -0.315207)
(0.243619 0.0558884 -0.29905)
(0.260735 0.0206021 -0.261234)
(0.29714 0.0145119 -0.226994)
(0.302159 -0.00610415 -0.212855)
(0.2952 -0.03741 -0.211725)
(0.269812 -0.0664728 -0.195314)
(0.257089 -0.111866 -0.174717)
(0.231542 -0.153561 -0.14812)
(0.21898 -0.222843 -0.12467)
(0.189976 -0.301981 -0.0996423)
(0.172717 -0.427606 -0.0838666)
(0.144698 -0.543579 -0.0649153)
(0.142188 -0.69325 -0.0496253)
(0.0949386 -0.822895 -0.0257417)
(0.0677041 -1.03041 -0.0217403)
(-0.0221144 -1.33387 -0.00468195)
(-0.0925787 -1.97212 0.00759267)
(-0.24063 -2.86797 0.0651489)
(-0.326223 -4.02756 0.133213)
(-0.350422 -4.5558 0.165104)
(-0.150401 -3.024 0.102334)
(0.00798614 0.353427 0.0267691)
(0.105786 0.939473 0.0970452)
(0.23519 1.44533 0.16943)
(0.293368 1.79517 0.222083)
(0.320286 1.94725 0.212954)
(0.339542 1.94986 0.154452)
(0.35957 1.86992 0.0750843)
(0.364621 1.75654 -0.000967322)
(0.353565 1.64062 -0.0540221)
(0.349846 1.52453 -0.0915576)
(0.348479 1.4109 -0.113597)
(0.35504 1.29106 -0.124334)
(0.368452 1.16563 -0.122805)
(0.396908 1.02711 -0.114807)
(0.43085 0.871721 -0.111939)
(0.457634 0.694407 -0.130086)
(0.453729 0.510467 -0.167621)
(0.427141 0.352471 -0.209344)
(0.389551 0.228721 -0.234748)
(0.362086 0.137305 -0.242357)
(0.403013 0.0795519 -0.227667)
(0.447804 0.052571 -0.218999)
(0.438757 0.0246155 -0.216368)
(0.4258 -0.0105258 -0.215729)
(0.391702 -0.0395012 -0.203824)
(0.370892 -0.0779977 -0.183974)
(0.331569 -0.111735 -0.159072)
(0.290938 -0.173799 -0.138094)
(0.225405 -0.276934 -0.113564)
(0.196158 -0.400336 -0.0921701)
(0.161942 -0.502176 -0.0727561)
(0.163217 -0.652535 -0.0546047)
(0.13766 -0.764253 -0.0341487)
(0.0981785 -0.981781 -0.021221)
(-0.0149937 -1.22483 -0.00874942)
(-0.0701348 -1.84818 0.00158519)
(-0.232168 -2.74462 0.0594742)
(-0.3234 -4.03315 0.135867)
(-0.375464 -4.79251 0.176813)
(-0.17837 -3.51551 0.114587)
(0.00469878 0.312331 0.0216591)
(0.0962095 0.848148 0.0807137)
(0.240094 1.32966 0.145245)
(0.326956 1.6828 0.190307)
(0.351748 1.87705 0.205651)
(0.367261 1.91108 0.160603)
(0.390449 1.85728 0.0933868)
(0.404444 1.74611 0.0167478)
(0.408469 1.63491 -0.0370509)
(0.407391 1.5172 -0.0781318)
(0.4103 1.40578 -0.103214)
(0.418736 1.29004 -0.117979)
(0.431815 1.17176 -0.121654)
(0.454367 1.0425 -0.120712)
(0.476041 0.900125 -0.124133)
(0.49522 0.744228 -0.141211)
(0.501419 0.590328 -0.162332)
(0.496019 0.448784 -0.185997)
(0.48193 0.323797 -0.20209)
(0.477531 0.217755 -0.21836)
(0.544464 0.145528 -0.213097)
(0.59951 0.106632 -0.219745)
(0.583237 0.0681239 -0.222775)
(0.565096 0.0312548 -0.224111)
(0.523329 0.00110482 -0.208737)
(0.497083 -0.0379312 -0.188675)
(0.443379 -0.0595053 -0.164131)
(0.355744 -0.120768 -0.146908)
(0.265114 -0.228177 -0.117456)
(0.253688 -0.338012 -0.0994759)
(0.200773 -0.427209 -0.077684)
(0.196686 -0.567706 -0.0617677)
(0.133884 -0.679 -0.0450478)
(0.133136 -0.896865 -0.0301451)
(0.0138978 -1.12215 -0.0105463)
(-0.0566374 -1.68737 -0.00806633)
(-0.212588 -2.56103 0.0482032)
(-0.316002 -3.93039 0.130425)
(-0.389821 -4.89697 0.183978)
(-0.202173 -3.92296 0.129412)
(0.00863585 0.263371 0.0131095)
(0.0901554 0.742652 0.0668063)
(0.22712 1.19861 0.12344)
(0.346643 1.53554 0.164023)
(0.389031 1.74841 0.181675)
(0.391148 1.82008 0.159681)
(0.409773 1.79165 0.103293)
(0.432979 1.7029 0.0369857)
(0.450244 1.59426 -0.0216602)
(0.454293 1.48008 -0.0649721)
(0.462791 1.37058 -0.0953628)
(0.47405 1.25947 -0.11556)
(0.488173 1.14811 -0.127769)
(0.506903 1.02859 -0.136735)
(0.525199 0.90287 -0.144251)
(0.549044 0.772009 -0.154627)
(0.564105 0.643476 -0.163737)
(0.5677 0.51678 -0.178533)
(0.567619 0.395682 -0.187998)
(0.58308 0.282223 -0.205643)
(0.677384 0.20013 -0.202875)
(0.745527 0.152179 -0.218381)
(0.723787 0.105106 -0.221754)
(0.706589 0.0632827 -0.225196)
(0.658106 0.034074 -0.210636)
(0.631834 -0.00498301 -0.192889)
(0.567021 -0.0224284 -0.166548)
(0.433904 -0.0647741 -0.150455)
(0.317738 -0.147696 -0.12105)
(0.312658 -0.260609 -0.10361)
(0.248043 -0.346017 -0.0810295)
(0.235328 -0.484792 -0.0631323)
(0.16137 -0.586328 -0.0469336)
(0.146604 -0.784106 -0.0358429)
(0.0330513 -1.00488 -0.0251342)
(-0.0202977 -1.52245 -0.00804591)
(-0.198002 -2.34652 0.0332141)
(-0.288281 -3.76263 0.126024)
(-0.407618 -4.91242 0.18649)
(-0.222451 -4.28521 0.140337)
(0.00283939 0.243399 0.0120336)
(0.072505 0.681675 0.0600979)
(0.198052 1.10759 0.110318)
(0.331681 1.44677 0.14855)
(0.414927 1.64618 0.161764)
(0.42905 1.75108 0.152732)
(0.441937 1.74661 0.109255)
(0.465713 1.67921 0.0531693)
(0.489184 1.57371 -0.00371184)
(0.506851 1.45803 -0.0493255)
(0.52038 1.34982 -0.0837799)
(0.535448 1.23906 -0.109436)
(0.551351 1.13235 -0.126331)
(0.572275 1.02219 -0.138888)
(0.593353 0.912564 -0.145756)
(0.618715 0.799301 -0.153894)
(0.637144 0.684664 -0.159456)
(0.646697 0.57027 -0.171964)
(0.656546 0.456164 -0.178688)
(0.688289 0.34237 -0.194193)
(0.81012 0.252363 -0.192857)
(0.893305 0.199305 -0.212105)
(0.867597 0.146172 -0.21279)
(0.852163 0.101367 -0.214225)
(0.799717 0.072708 -0.200015)
(0.771997 0.0386543 -0.184739)
(0.707534 0.0199259 -0.16257)
(0.55124 -0.0145682 -0.146864)
(0.381767 -0.0599834 -0.116995)
(0.374475 -0.175305 -0.103047)
(0.295709 -0.247607 -0.0807851)
(0.282056 -0.388365 -0.06382)
(0.184477 -0.474895 -0.0482818)
(0.169344 -0.673933 -0.0373267)
(0.0459458 -0.859172 -0.0339394)
(0.00828573 -1.35261 -0.0189712)
(-0.1777 -2.12088 0.022303)
(-0.261523 -3.57075 0.113775)
(-0.42347 -4.88407 0.186297)
(-0.251421 -4.64162 0.147208)
(0.00922034 0.204899 0.0121574)
(0.0583453 0.595145 0.0579604)
(0.163848 0.991366 0.101476)
(0.295276 1.31312 0.138346)
(0.405618 1.5114 0.151243)
(0.455037 1.61297 0.144242)
(0.458024 1.6443 0.113304)
(0.482773 1.58774 0.0664798)
(0.510944 1.50685 0.0153271)
(0.537031 1.39839 -0.0285791)
(0.565313 1.29514 -0.06582)
(0.585364 1.18823 -0.0924924)
(0.60749 1.09064 -0.111464)
(0.632976 0.990586 -0.124917)
(0.657374 0.892999 -0.132219)
(0.683959 0.791688 -0.139829)
(0.704657 0.690547 -0.143686)
(0.718926 0.588525 -0.154581)
(0.737993 0.483638 -0.160268)
(0.782837 0.371526 -0.175634)
(0.931618 0.276328 -0.173824)
(1.03566 0.221274 -0.193436)
(1.00686 0.167137 -0.190766)
(0.997043 0.123707 -0.191328)
(0.942003 0.100638 -0.176699)
(0.915533 0.0762479 -0.163836)
(0.838832 0.0699293 -0.143286)
(0.675061 0.0341903 -0.134415)
(0.473668 0.000964163 -0.10702)
(0.443526 -0.0796854 -0.0948026)
(0.355697 -0.154297 -0.0748873)
(0.336287 -0.285652 -0.0602964)
(0.223731 -0.361399 -0.045445)
(0.198419 -0.556807 -0.0381036)
(0.0651967 -0.715016 -0.0335298)
(0.035262 -1.19962 -0.0330523)
(-0.166746 -1.89287 0.0197178)
(-0.226156 -3.37063 0.103501)
(-0.457167 -4.84508 0.18491)
(-0.283641 -5.04455 0.152675)
(-0.00135506 0.203097 0.0169356)
(0.0308692 0.578888 0.0626649)
(0.107823 0.943134 0.104912)
(0.235533 1.26908 0.137487)
(0.36874 1.45839 0.153745)
(0.468264 1.54356 0.146278)
(0.494559 1.58802 0.12437)
(0.505842 1.53954 0.0868353)
(0.549061 1.4618 0.0425953)
(0.580512 1.3655 0.00359478)
(0.612293 1.26341 -0.030433)
(0.64516 1.1593 -0.0622971)
(0.677196 1.06286 -0.0821006)
(0.706715 0.965576 -0.0962076)
(0.733746 0.875044 -0.103607)
(0.76124 0.781367 -0.111745)
(0.782947 0.690555 -0.114118)
(0.797455 0.598992 -0.124058)
(0.820838 0.503881 -0.128482)
(0.874493 0.395002 -0.142559)
(1.05143 0.301199 -0.139468)
(1.18133 0.247849 -0.158563)
(1.15356 0.19578 -0.154058)
(1.15097 0.153841 -0.154555)
(1.09764 0.136476 -0.142039)
(1.07353 0.118693 -0.131312)
(0.991194 0.129905 -0.116092)
(0.802557 0.0987852 -0.109455)
(0.581395 0.0695774 -0.0868599)
(0.542509 0.00304436 -0.0794753)
(0.41204 -0.0463549 -0.0635943)
(0.406818 -0.168895 -0.0519839)
(0.261681 -0.214869 -0.0412524)
(0.246027 -0.412362 -0.0344367)
(0.074267 -0.535769 -0.0361429)
(0.0760908 -1.00703 -0.0330228)
(-0.147902 -1.64635 0.00492102)
(-0.204223 -3.13723 0.0970786)
(-0.504541 -4.79517 0.181635)
(-0.32438 -5.53804 0.158794)
(0.0141157 0.181411 0.0253504)
(0.0200755 0.512847 0.0765925)
(0.0583841 0.863861 0.109342)
(0.16593 1.1408 0.145559)
(0.283143 1.33192 0.160291)
(0.428406 1.39732 0.158499)
(0.488045 1.44322 0.135492)
(0.499529 1.40855 0.109314)
(0.54902 1.34242 0.0704982)
(0.598266 1.25624 0.0351994)
(0.642756 1.17006 0.00509483)
(0.682701 1.08233 -0.0214524)
(0.719664 0.99495 -0.0417135)
(0.759775 0.905542 -0.0589487)
(0.796615 0.821713 -0.068839)
(0.828751 0.733548 -0.074925)
(0.853649 0.652156 -0.0753151)
(0.869661 0.569469 -0.0839001)
(0.897483 0.482626 -0.0877861)
(0.959265 0.375839 -0.0995111)
(1.16354 0.290954 -0.0954791)
(1.32044 0.239061 -0.114024)
(1.29271 0.19217 -0.109347)
(1.3002 0.154712 -0.110748)
(1.24847 0.148308 -0.0995768)
(1.23551 0.141454 -0.0935369)
(1.14025 0.169774 -0.0829348)
(0.935217 0.145756 -0.0812065)
(0.689239 0.145479 -0.0639977)
(0.6547 0.0678444 -0.0574075)
(0.51122 0.0553736 -0.0450493)
(0.508195 -0.0584355 -0.0376135)
(0.342359 -0.0860252 -0.0297131)
(0.32109 -0.269979 -0.0271583)
(0.128961 -0.372296 -0.0268068)
(0.147498 -0.806758 -0.0307302)
(-0.101683 -1.43815 0.0104179)
(-0.145842 -2.86321 0.0863805)
(-0.560519 -4.74543 0.182186)
(-0.330813 -6.14365 0.165937)
(-0.0183564 0.186013 0.0355347)
(-0.0207593 0.562867 0.0995089)
(-0.0209434 0.865272 0.133524)
(0.0462428 1.16425 0.161288)
(0.185677 1.31048 0.178961)
(0.367863 1.34765 0.182818)
(0.480973 1.35983 0.162882)
(0.504177 1.32081 0.143369)
(0.562275 1.24811 0.109945)
(0.627203 1.16889 0.079952)
(0.691484 1.08513 0.0499644)
(0.746536 1.00436 0.0250712)
(0.789729 0.927595 0.00898888)
(0.831123 0.850998 -0.00406049)
(0.867361 0.773287 -0.0109967)
(0.902397 0.691664 -0.0220914)
(0.932462 0.612556 -0.0242101)
(0.94999 0.532283 -0.0351322)
(0.979576 0.457561 -0.0349723)
(1.05306 0.359546 -0.0417171)
(1.28648 0.292067 -0.0337676)
(1.46765 0.244086 -0.0535808)
(1.44622 0.20145 -0.05105)
(1.46841 0.165637 -0.0576094)
(1.4243 0.169719 -0.050288)
(1.41942 0.168571 -0.0479333)
(1.31045 0.211142 -0.0391098)
(1.09869 0.188608 -0.0410754)
(0.821532 0.21972 -0.0320884)
(0.792394 0.155472 -0.0313993)
(0.633147 0.1601 -0.0213161)
(0.639158 0.0582014 -0.0200082)
(0.452037 0.0341176 -0.0137878)
(0.453707 -0.107963 -0.016176)
(0.235089 -0.182955 -0.0178174)
(0.244613 -0.563188 -0.0207859)
(0.0181392 -1.0997 0.00988072)
(0.0169144 -2.55907 0.0913438)
(-0.586296 -4.57958 0.174978)
(-0.257475 -6.73097 0.17689)
(0.0422352 0.335116 0.0628132)
(-0.00467666 0.509102 0.131495)
(-0.0819895 0.764445 0.166946)
(-0.0303994 0.943266 0.196124)
(0.00876982 1.14344 0.204512)
(0.213108 1.13746 0.211135)
(0.393309 1.15762 0.196814)
(0.451594 1.10861 0.184175)
(0.528961 1.0524 0.15463)
(0.619498 0.987966 0.130033)
(0.703503 0.920816 0.103018)
(0.776894 0.850788 0.0798724)
(0.837576 0.787504 0.0604201)
(0.89187 0.727787 0.0439276)
(0.935739 0.668388 0.0354704)
(0.97661 0.604124 0.0286647)
(1.00509 0.531851 0.027002)
(1.03351 0.460313 0.0158818)
(1.07575 0.393519 0.0131625)
(1.17038 0.293536 0.00884714)
(1.42932 0.240646 0.0139795)
(1.63069 0.190569 -0.00247674)
(1.61067 0.155046 -0.00255362)
(1.65216 0.123993 -0.00761998)
(1.61264 0.147325 0.00202658)
(1.6288 0.153734 0.000619287)
(1.50396 0.223723 0.00658707)
(1.30423 0.20551 -0.000117562)
(1.01484 0.272045 0.00248146)
(1.00492 0.224836 0.00274249)
(0.843689 0.245141 0.00572975)
(0.880666 0.149893 0.00903914)
(0.692278 0.127359 0.0103553)
(0.765987 0.00148853 0.0102759)
(0.50167 -0.0783967 0.0118979)
(0.615726 -0.386186 0.00294832)
(0.264087 -0.830581 0.031245)
(0.40327 -2.13954 0.0822702)
(-0.292915 -4.41597 0.191901)
(-0.0223727 -7.23944 0.182519)
(-0.212464 0.0843481 0.0780292)
(-0.269859 0.702112 0.171203)
(-0.246271 0.867169 0.213)
(-0.211274 1.00129 0.241157)
(-0.0961184 1.032 0.264042)
(0.0709566 1.04988 0.256722)
(0.288902 0.984299 0.251945)
(0.381515 0.933921 0.240711)
(0.49388 0.874485 0.21534)
(0.601942 0.822395 0.19509)
(0.709425 0.768052 0.171477)
(0.802622 0.712504 0.150674)
(0.882233 0.660768 0.132075)
(0.951177 0.609791 0.115922)
(1.00375 0.560154 0.104262)
(1.05275 0.505162 0.0925176)
(1.09535 0.439961 0.0859272)
(1.14497 0.3848 0.0731236)
(1.20341 0.340051 0.0725446)
(1.34452 0.250101 0.0714016)
(1.66146 0.22387 0.0766307)
(1.92459 0.165792 0.0575906)
(1.94497 0.132863 0.0553725)
(2.0432 0.105943 0.0472328)
(2.024 0.122461 0.0466484)
(2.07776 0.102995 0.0559046)
(1.93915 0.194114 0.0503962)
(1.78119 0.174157 0.0431106)
(1.47231 0.277428 0.0434961)
(1.51049 0.250155 0.0418283)
(1.3416 0.287966 0.0413725)
(1.4626 0.201425 0.0407121)
(1.25855 0.193929 0.0412996)
(1.41978 0.0642272 0.0392542)
(1.10412 0.00860362 0.0465147)
(1.29753 -0.211806 0.0381942)
(0.859455 -0.499687 0.060032)
(1.07627 -1.48448 0.0900345)
(0.275043 -3.90367 0.180774)
(0.467705 -7.16878 0.199453)
(-0.724528 0.79687 0.219058)
(-0.574958 0.405014 0.309281)
(-0.701558 0.580637 0.311458)
(-0.427655 0.608042 0.319997)
(-0.283483 0.612157 0.326283)
(0.00244016 0.6656 0.323437)
(0.246343 0.632253 0.308876)
(0.464186 0.602804 0.301342)
(0.645366 0.569718 0.280663)
(0.833843 0.539656 0.2641)
(1.01052 0.505493 0.24392)
(1.17879 0.470824 0.226148)
(1.32305 0.440754 0.209181)
(1.45318 0.416479 0.194104)
(1.55457 0.397723 0.183489)
(1.65296 0.36683 0.172318)
(1.75179 0.318755 0.166754)
(1.89855 0.289177 0.159571)
(2.07005 0.248131 0.161043)
(2.34854 0.152145 0.159163)
(2.75653 0.129679 0.161089)
(3.14956 0.0627597 0.133671)
(3.21644 0.0204019 0.120136)
(3.37643 -0.0171331 0.101676)
(3.3195 0.0026584 0.105651)
(3.41609 0.00843721 0.10218)
(3.25153 0.101377 0.103219)
(3.17982 0.104059 0.0885876)
(2.81558 0.207852 0.0885848)
(2.9674 0.21655 0.0868093)
(2.76714 0.246301 0.0829947)
(3.07122 0.17512 0.0805758)
(2.79391 0.134693 0.0811547)
(3.1343 0.0462653 0.080224)
(2.67071 -0.016468 0.0892942)
(3.03205 -0.195338 0.0814764)
(2.38669 -0.481338 0.0968583)
(2.76864 -1.13132 0.111845)
(1.8135 -3.1649 0.163999)
(1.30146 -6.08026 0.193831)
(1.15904 1.46573 0.102151)
(1.72627 0.717683 0.140506)
(2.4777 0.569378 0.154027)
(2.8955 0.35458 0.16083)
(3.18254 0.288892 0.164048)
(3.43169 0.221014 0.168657)
(3.67715 0.216103 0.170819)
(3.89148 0.186733 0.180267)
(4.08483 0.177411 0.182689)
(4.28834 0.165227 0.183818)
(4.4824 0.15578 0.180785)
(4.68039 0.144731 0.17719)
(4.84157 0.135778 0.173103)
(4.99418 0.127356 0.168097)
(5.09829 0.124715 0.165501)
(5.22106 0.120072 0.159103)
(5.35051 0.0913224 0.15681)
(5.57079 0.079471 0.156523)
(5.86852 0.0929877 0.166626)
(6.32285 0.0589716 0.165264)
(6.73116 0.041457 0.165914)
(7.19651 0.0158587 0.133875)
(7.20719 -0.0097326 0.108456)
(7.2844 -0.0480124 0.0930417)
(7.08929 -0.0551847 0.079656)
(7.06746 -0.0603747 0.0739192)
(6.71734 -0.0255933 0.0768346)
(6.68256 -0.00766852 0.0662035)
(6.21875 0.0362624 0.0731635)
(6.46744 0.0637385 0.0723522)
(6.23499 0.0896459 0.0728327)
(6.69091 0.0823796 0.0678812)
(6.39348 0.0514359 0.0728926)
(6.79526 0.0169871 0.0672814)
(6.25946 -0.018757 0.077109)
(6.48396 -0.100716 0.0783628)
(5.61407 -0.260099 0.0900856)
(5.65629 -0.580716 0.0973867)
(4.24129 -1.13236 0.12217)
(2.77109 -2.52606 0.164864)
(0.00209436 -0.00122687 0.00587473)
(0.0179643 -0.005018 0.0118237)
(0.0357972 -0.00478723 0.013469)
(0.043419 -0.00396468 0.010183)
(0.0444348 -0.00156614 0.00714803)
(0.0362721 -0.0012553 0.00270488)
(0.0198413 0.00269582 0.00150498)
(0.00174073 0.0101256 0.000143188)
(-0.0269646 0.00881473 -2.89022e-05)
(-0.0696706 0.00671992 0.00180855)
(-0.116431 0.00145886 0.00488539)
(-0.176855 -0.00417886 0.0111187)
(-0.248113 -0.00305562 0.0211934)
(-0.34277 0.000675867 0.0409995)
(-0.446224 0.0104694 0.0572985)
(-0.573599 0.0103301 0.0752494)
(-0.701643 0.00854 0.108408)
(-0.862851 0.00522726 0.140359)
(-0.980281 0.00203245 0.188969)
(-1.14048 0.0110282 0.222786)
(-1.09516 0.0298029 0.273915)
(-0.931338 0.0285668 0.291493)
(-0.900654 0.0130981 0.304183)
(-0.875486 -0.0256415 0.319341)
(-0.85797 -0.0660219 0.344273)
(-0.799055 -0.104273 0.369921)
(-0.724056 -0.140138 0.398356)
(-0.605054 -0.165852 0.423499)
(-0.469739 -0.180238 0.446549)
(-0.283491 -0.175044 0.458697)
(-0.105635 -0.171992 0.461412)
(0.10683 -0.11494 0.441606)
(0.311493 -0.0774517 0.397364)
(0.408417 -0.0028462 0.317769)
(0.395548 0.0335646 0.213892)
(0.294065 0.0489352 0.133975)
(0.179601 0.0359611 0.0816359)
(0.0808721 0.0214397 0.0570205)
(0.0223075 0.00927263 0.0401702)
(-0.00186399 -0.00162145 0.0149841)
(0.0058947 -0.0179078 0.012251)
(0.03026 -0.0314777 0.0292913)
(0.0512788 -0.0272705 0.0369495)
(0.0550255 -0.0125862 0.0346238)
(0.0416828 -0.000800863 0.0326496)
(0.00829342 0.0138544 0.0263752)
(-0.0434744 0.030762 0.0260045)
(-0.126598 0.0522261 0.0237213)
(-0.244597 0.0707215 0.0258967)
(-0.390513 0.095557 0.0360447)
(-0.557347 0.125119 0.0505434)
(-0.744107 0.157864 0.0745911)
(-0.953987 0.186893 0.10767)
(-1.19294 0.20253 0.149474)
(-1.44396 0.191832 0.197036)
(-1.69472 0.157343 0.25064)
(-1.90746 0.116638 0.307983)
(-2.11728 0.0690509 0.363978)
(-2.25204 0.0252957 0.430194)
(-2.35307 -0.00998552 0.467937)
(-2.17614 -0.0133633 0.523828)
(-1.93959 -0.116601 0.521697)
(-1.82533 -0.213823 0.540533)
(-1.71511 -0.324518 0.540087)
(-1.62779 -0.439906 0.551299)
(-1.5096 -0.549218 0.559364)
(-1.3854 -0.647207 0.569327)
(-1.22044 -0.720177 0.573781)
(-1.04536 -0.757727 0.577108)
(-0.838884 -0.740906 0.57897)
(-0.629622 -0.687889 0.569417)
(-0.382216 -0.559068 0.554415)
(-0.0939584 -0.416213 0.522212)
(0.160408 -0.215411 0.463326)
(0.308789 -0.0221224 0.379098)
(0.330952 0.0915747 0.28017)
(0.258986 0.121494 0.211223)
(0.153525 0.109995 0.167101)
(0.0617001 0.0785061 0.122407)
(0.0077425 0.0321823 0.0488041)
(0.00622065 -0.0421425 0.0191953)
(0.0225231 -0.0616037 0.0464214)
(0.0282375 -0.0410465 0.0589164)
(0.00599273 -0.00321933 0.0590604)
(-0.0408369 0.0390488 0.0589636)
(-0.118856 0.0864314 0.0573021)
(-0.238991 0.139715 0.0617005)
(-0.402702 0.203059 0.0657729)
(-0.610451 0.276568 0.0770067)
(-0.847856 0.346921 0.0959993)
(-1.09519 0.407282 0.123681)
(-1.3466 0.44612 0.161469)
(-1.59622 0.448378 0.209331)
(-1.8504 0.397321 0.263044)
(-2.07594 0.322307 0.317343)
(-2.26111 0.247571 0.360982)
(-2.39721 0.172777 0.405395)
(-2.52282 0.0907551 0.446189)
(-2.57417 0.0182394 0.491725)
(-2.57404 -0.0673912 0.513695)
(-2.37718 -0.164994 0.524343)
(-2.1045 -0.334326 0.528683)
(-1.96364 -0.48288 0.507491)
(-1.84508 -0.63119 0.483035)
(-1.77652 -0.784329 0.470503)
(-1.68697 -0.937943 0.456664)
(-1.6006 -1.07946 0.44725)
(-1.47923 -1.19743 0.432408)
(-1.3439 -1.2719 0.417291)
(-1.18599 -1.27385 0.401747)
(-1.04373 -1.20063 0.394031)
(-0.881529 -1.02534 0.397015)
(-0.64268 -0.795922 0.403239)
(-0.327925 -0.504797 0.40497)
(-0.046787 -0.189033 0.355708)
(0.102399 0.0474428 0.322558)
(0.142778 0.163489 0.267135)
(0.105076 0.190786 0.226249)
(0.0453394 0.157285 0.167158)
(0.00437657 0.0782804 0.0654702)
(0.00355722 -0.0643714 0.0255438)
(-0.000959399 -0.0789407 0.0617561)
(-0.0368679 -0.0310399 0.0810199)
(-0.0992687 0.0515017 0.0807504)
(-0.192201 0.142461 0.0812056)
(-0.330638 0.240092 0.0830848)
(-0.516236 0.350272 0.0903274)
(-0.746461 0.466014 0.100688)
(-1.00862 0.564282 0.115573)
(-1.26911 0.628972 0.142086)
(-1.50328 0.653645 0.175986)
(-1.71993 0.625613 0.218054)
(-1.92973 0.542127 0.266743)
(-2.10724 0.437433 0.311313)
(-2.22615 0.342674 0.339184)
(-2.3124 0.252571 0.359585)
(-2.36605 0.161267 0.378733)
(-2.41209 0.0595382 0.391407)
(-2.4097 -0.0362823 0.403026)
(-2.40525 -0.171122 0.389691)
(-2.20419 -0.309595 0.408299)
(-1.94782 -0.472887 0.365668)
(-1.82952 -0.62743 0.339728)
(-1.75155 -0.79179 0.308605)
(-1.71771 -0.957845 0.288567)
(-1.67231 -1.13159 0.270593)
(-1.6305 -1.3 0.259778)
(-1.55896 -1.45582 0.245778)
(-1.46576 -1.57644 0.23455)
(-1.34078 -1.62779 0.222206)
(-1.21445 -1.59054 0.214375)
(-1.12455 -1.43173 0.21991)
(-0.99617 -1.14563 0.257074)
(-0.729663 -0.803862 0.29384)
(-0.400842 -0.428069 0.31812)
(-0.143322 -0.0802547 0.317508)
(-0.0128699 0.118034 0.283708)
(0.0163946 0.202988 0.253116)
(0.00809958 0.191073 0.185328)
(-0.00173698 0.0974084 0.070405)
(-0.00495843 -0.0772245 0.0372539)
(-0.0486289 -0.061264 0.0870519)
(-0.128595 0.0333527 0.104496)
(-0.237646 0.177999 0.106797)
(-0.38579 0.321109 0.108592)
(-0.567697 0.471271 0.113368)
(-0.780623 0.613114 0.124076)
(-1.01642 0.733057 0.133091)
(-1.2621 0.809565 0.14817)
(-1.48586 0.815088 0.168873)
(-1.68304 0.757206 0.195767)
(-1.85751 0.656001 0.231126)
(-1.9825 0.537773 0.267115)
(-2.06128 0.43583 0.282402)
(-2.10641 0.338257 0.287375)
(-2.13866 0.237579 0.285692)
(-2.15768 0.135778 0.282808)
(-2.17917 0.0301309 0.275792)
(-2.18098 -0.0799069 0.268451)
(-2.17485 -0.237495 0.251354)
(-2.00838 -0.360546 0.239919)
(-1.78461 -0.535036 0.196702)
(-1.69774 -0.70055 0.169578)
(-1.65258 -0.871031 0.142934)
(-1.64122 -1.04478 0.122863)
(-1.62273 -1.23159 0.106345)
(-1.60823 -1.41288 0.098965)
(-1.57243 -1.59959 0.0925507)
(-1.51844 -1.76373 0.0917632)
(-1.42818 -1.87407 0.0940185)
(-1.3155 -1.8975 0.0995001)
(-1.2028 -1.80211 0.111812)
(-1.15238 -1.54697 0.140921)
(-0.998439 -1.14153 0.209795)
(-0.671112 -0.710076 0.261234)
(-0.350086 -0.266301 0.304128)
(-0.140056 0.0471813 0.300381)
(-0.0449094 0.186936 0.265651)
(-0.0151737 0.202864 0.192017)
(-0.00596536 0.104405 0.0702492)
(-0.0119251 -0.0722566 0.0510649)
(-0.0996768 0.00122411 0.113535)
(-0.233912 0.164615 0.136108)
(-0.384739 0.361532 0.132826)
(-0.562627 0.548509 0.133405)
(-0.750352 0.719686 0.136442)
(-0.951081 0.855878 0.141753)
(-1.16655 0.932659 0.146805)
(-1.3991 0.904083 0.148405)
(-1.60316 0.827456 0.162149)
(-1.73675 0.722683 0.182941)
(-1.81769 0.615183 0.203088)
(-1.86531 0.516516 0.213888)
(-1.89637 0.416058 0.207967)
(-1.91226 0.311529 0.194914)
(-1.93249 0.212186 0.177199)
(-1.94481 0.113734 0.162447)
(-1.97126 0.0132588 0.136497)
(-1.9867 -0.0947722 0.118308)
(-1.99839 -0.237794 0.0870585)
(-1.86054 -0.36518 0.0675036)
(-1.65222 -0.552298 0.0125174)
(-1.57907 -0.716193 -0.00921672)
(-1.54593 -0.877951 -0.0267453)
(-1.54129 -1.04382 -0.0351219)
(-1.53372 -1.23165 -0.0479138)
(-1.54129 -1.42475 -0.0441548)
(-1.53317 -1.61949 -0.0412863)
(-1.5101 -1.81083 -0.0329476)
(-1.4626 -1.97182 -0.0161087)
(-1.38075 -2.07545 0.00274552)
(-1.26735 -2.0595 0.0263046)
(-1.1878 -1.91887 0.0557737)
(-1.13568 -1.55117 0.12141)
(-0.89596 -1.07613 0.198782)
(-0.515822 -0.554336 0.27043)
(-0.236972 -0.113635 0.29995)
(-0.100669 0.111561 0.275604)
(-0.031305 0.17927 0.198997)
(-0.00676138 0.0925567 0.0734042)
(-0.0171688 -0.0238032 0.0769596)
(-0.139591 0.111463 0.15077)
(-0.319749 0.334726 0.167208)
(-0.494743 0.567986 0.159272)
(-0.675919 0.767609 0.155885)
(-0.850147 0.920407 0.151326)
(-1.05118 0.990933 0.148987)
(-1.28728 0.947975 0.13244)
(-1.47791 0.859926 0.136308)
(-1.57989 0.779514 0.142762)
(-1.63753 0.699541 0.145799)
(-1.67397 0.609626 0.145254)
(-1.69704 0.507139 0.135923)
(-1.71884 0.408053 0.115087)
(-1.73297 0.310508 0.0882417)
(-1.75724 0.213016 0.0615143)
(-1.78206 0.123137 0.0339717)
(-1.82043 0.0266712 -0.000686192)
(-1.84605 -0.070392 -0.0272311)
(-1.85939 -0.206008 -0.051002)
(-1.74698 -0.324868 -0.0742083)
(-1.54908 -0.524637 -0.114178)
(-1.46204 -0.687875 -0.130477)
(-1.43413 -0.846782 -0.140734)
(-1.43198 -1.00862 -0.143684)
(-1.43308 -1.19399 -0.146301)
(-1.44146 -1.39561 -0.141202)
(-1.44766 -1.60416 -0.135455)
(-1.44806 -1.81777 -0.125184)
(-1.44384 -2.02002 -0.104357)
(-1.40191 -2.17445 -0.0768802)
(-1.32449 -2.25256 -0.0457888)
(-1.22115 -2.20055 -0.00572396)
(-1.17911 -1.96564 0.0435113)
(-1.04561 -1.49222 0.12173)
(-0.69547 -0.919395 0.209733)
(-0.332408 -0.357432 0.282533)
(-0.114785 0.0312589 0.279144)
(-0.0196796 0.141237 0.208861)
(-0.00486306 0.0870976 0.0813217)
(-0.0298385 0.0375849 0.0895228)
(-0.177327 0.233158 0.170333)
(-0.376336 0.486956 0.185009)
(-0.559117 0.726078 0.171719)
(-0.739373 0.901401 0.158682)
(-0.935237 0.995174 0.140284)
(-1.16117 0.969872 0.121061)
(-1.32666 0.900693 0.116641)
(-1.41882 0.852515 0.110443)
(-1.47266 0.789315 0.100397)
(-1.4978 0.70413 0.086382)
(-1.52136 0.606717 0.0719222)
(-1.53836 0.508322 0.047576)
(-1.56328 0.412275 0.0166525)
(-1.59546 0.324038 -0.0137242)
(-1.62891 0.229284 -0.0450455)
(-1.65451 0.146641 -0.0756022)
(-1.68884 0.0574765 -0.110701)
(-1.71921 -0.0199339 -0.13826)
(-1.7317 -0.134848 -0.162657)
(-1.65134 -0.24354 -0.168402)
(-1.45884 -0.446805 -0.205449)
(-1.35078 -0.614958 -0.221479)
(-1.31873 -0.776401 -0.22427)
(-1.31367 -0.936076 -0.220347)
(-1.31959 -1.11819 -0.215691)
(-1.33204 -1.31656 -0.203872)
(-1.34741 -1.5341 -0.18989)
(-1.36115 -1.7658 -0.175436)
(-1.37072 -2.00088 -0.157336)
(-1.3716 -2.21055 -0.13893)
(-1.33585 -2.3613 -0.100502)
(-1.25661 -2.40121 -0.0616838)
(-1.18433 -2.29181 -0.0163365)
(-1.10987 -1.91185 0.0492515)
(-0.839149 -1.33122 0.122707)
(-0.416817 -0.662061 0.219418)
(-0.148812 -0.125854 0.233524)
(-0.0445115 0.0807128 0.210664)
(0.00130506 0.0735618 0.0841652)
(-0.0345713 0.0985258 0.105112)
(-0.198297 0.348708 0.192314)
(-0.404343 0.604154 0.198007)
(-0.585981 0.81621 0.172503)
(-0.780937 0.952322 0.14918)
(-0.990197 0.986593 0.125491)
(-1.16082 0.959285 0.112939)
(-1.25948 0.937607 0.0931077)
(-1.31273 0.883545 0.0715398)
(-1.3306 0.805909 0.0467154)
(-1.3468 0.714297 0.0207105)
(-1.37199 0.617733 -0.00258927)
(-1.4068 0.52731 -0.0324019)
(-1.44737 0.434655 -0.0654362)
(-1.48446 0.347051 -0.0995569)
(-1.51774 0.261953 -0.132199)
(-1.54351 0.184207 -0.160654)
(-1.56666 0.102122 -0.188883)
(-1.59171 0.0283718 -0.207301)
(-1.59712 -0.0632733 -0.22567)
(-1.55188 -0.162395 -0.223871)
(-1.37425 -0.343626 -0.249427)
(-1.23743 -0.530585 -0.267129)
(-1.19917 -0.694855 -0.265739)
(-1.18878 -0.855832 -0.257273)
(-1.1971 -1.03309 -0.247295)
(-1.21288 -1.22981 -0.231699)
(-1.2351 -1.44842 -0.216936)
(-1.26048 -1.68714 -0.198194)
(-1.28442 -1.93982 -0.180903)
(-1.30294 -2.18945 -0.161348)
(-1.3018 -2.40363 -0.137797)
(-1.26747 -2.53467 -0.102444)
(-1.18857 -2.52019 -0.0598177)
(-1.12393 -2.286 -0.0109379)
(-0.942328 -1.74628 0.0540044)
(-0.552594 -1.03006 0.136175)
(-0.195273 -0.363647 0.216931)
(-0.0424099 0.0111953 0.188979)
(0.000783828 0.0573077 0.087687)
(-0.0382449 0.17606 0.118359)
(-0.211358 0.476057 0.214842)
(-0.419019 0.725715 0.219423)
(-0.593904 0.908436 0.188063)
(-0.796156 1.00983 0.153932)
(-0.978818 1.02402 0.122267)
(-1.10113 1.01848 0.0932531)
(-1.15561 0.979813 0.0600182)
(-1.17333 0.91236 0.0235409)
(-1.18583 0.824252 -0.00811692)
(-1.21235 0.731013 -0.0388971)
(-1.25379 0.636603 -0.0681713)
(-1.30101 0.547731 -0.103348)
(-1.3471 0.46047 -0.139762)
(-1.38559 0.376856 -0.173622)
(-1.41375 0.292679 -0.201646)
(-1.43005 0.214914 -0.221453)
(-1.44055 0.136641 -0.237025)
(-1.44745 0.0633936 -0.245489)
(-1.44375 -0.0190071 -0.256098)
(-1.41983 -0.10496 -0.263236)
(-1.27909 -0.240559 -0.262909)
(-1.12525 -0.438031 -0.283841)
(-1.07057 -0.602033 -0.280045)
(-1.05623 -0.764817 -0.269751)
(-1.0637 -0.933717 -0.257132)
(-1.08136 -1.12395 -0.240878)
(-1.108 -1.33581 -0.224499)
(-1.14135 -1.57634 -0.208819)
(-1.17896 -1.84063 -0.191202)
(-1.2134 -2.12091 -0.169917)
(-1.23614 -2.38632 -0.143934)
(-1.23091 -2.59718 -0.117109)
(-1.18506 -2.68081 -0.0845745)
(-1.10891 -2.57081 -0.0447013)
(-0.976546 -2.13886 0.000599861)
(-0.663374 -1.421 0.0585624)
(-0.251297 -0.611789 0.14233)
(-0.0532529 -0.0790653 0.152686)
(-0.00882411 0.0387218 0.0806578)
(-0.0358007 0.251509 0.128598)
(-0.207155 0.601838 0.234188)
(-0.40934 0.849743 0.23916)
(-0.584786 1.01381 0.200422)
(-0.780298 1.08141 0.155955)
(-0.924738 1.09299 0.111783)
(-0.999204 1.07404 0.0686342)
(-1.02049 1.02226 0.0216615)
(-1.03365 0.938022 -0.0216148)
(-1.05368 0.845712 -0.0621532)
(-1.0962 0.751849 -0.0935442)
(-1.15107 0.662568 -0.12729)
(-1.20635 0.576592 -0.164529)
(-1.25417 0.490565 -0.20071)
(-1.28838 0.405671 -0.230981)
(-1.30828 0.320865 -0.251471)
(-1.31429 0.240443 -0.261925)
(-1.30986 0.160838 -0.265468)
(-1.3049 0.0883778 -0.265833)
(-1.28552 0.0125619 -0.264454)
(-1.25806 -0.0644404 -0.276365)
(-1.16433 -0.166194 -0.264829)
(-1.02035 -0.33913 -0.278474)
(-0.945019 -0.511609 -0.271318)
(-0.927194 -0.672345 -0.261542)
(-0.931712 -0.837339 -0.246097)
(-0.950009 -1.01848 -0.233053)
(-0.976764 -1.22172 -0.21881)
(-1.01328 -1.45443 -0.206798)
(-1.05769 -1.71965 -0.1922)
(-1.1064 -2.01495 -0.172217)
(-1.14778 -2.32157 -0.146771)
(-1.1683 -2.59982 -0.116986)
(-1.1504 -2.78434 -0.0869325)
(-1.08618 -2.78837 -0.0611291)
(-0.977211 -2.49869 -0.0281121)
(-0.73677 -1.82629 0.00479234)
(-0.322394 -0.927022 0.0690086)
(-0.0701522 -0.228492 0.0988412)
(-0.0240905 0.0137123 0.0646069)
(-0.0295107 0.322015 0.138103)
(-0.189561 0.720157 0.252908)
(-0.382716 0.966757 0.259337)
(-0.559907 1.10831 0.213733)
(-0.7319 1.15445 0.158673)
(-0.834135 1.16133 0.100769)
(-0.875816 1.12479 0.040885)
(-0.889891 1.05523 -0.0139063)
(-0.906036 0.960869 -0.0662962)
(-0.939767 0.868418 -0.10833)
(-0.998569 0.775662 -0.142173)
(-1.06047 0.688008 -0.178108)
(-1.11759 0.6021 -0.216113)
(-1.16075 0.514799 -0.248769)
(-1.18837 0.428359 -0.271842)
(-1.19885 0.341418 -0.282537)
(-1.19319 0.257573 -0.28219)
(-1.17439 0.17607 -0.276468)
(-1.1513 0.101671 -0.268537)
(-1.12034 0.0354156 -0.262922)
(-1.0936 -0.0338837 -0.266341)
(-1.02543 -0.116226 -0.253283)
(-0.915608 -0.248054 -0.261298)
(-0.835383 -0.416426 -0.250519)
(-0.804781 -0.577191 -0.239975)
(-0.807184 -0.73847 -0.226979)
(-0.823391 -0.911073 -0.213663)
(-0.849477 -1.10331 -0.205148)
(-0.884946 -1.32503 -0.195736)
(-0.93105 -1.58321 -0.184507)
(-0.984546 -1.88179 -0.167081)
(-1.04025 -2.21158 -0.142887)
(-1.08343 -2.54584 -0.11242)
(-1.09326 -2.81934 -0.0803935)
(-1.05299 -2.94454 -0.051966)
(-0.949739 -2.7883 -0.0316184)
(-0.761021 -2.23322 -0.0226451)
(-0.404423 -1.28117 0.0191693)
(-0.082126 -0.414445 0.0741809)
(-0.0144335 -0.0249855 0.0485157)
(-0.0202131 0.38119 0.140771)
(-0.160985 0.826809 0.264363)
(-0.344574 1.07452 0.273023)
(-0.513891 1.19044 0.219772)
(-0.656028 1.23109 0.15729)
(-0.726192 1.22343 0.0841308)
(-0.752447 1.17024 0.0156307)
(-0.763802 1.08418 -0.0486916)
(-0.792568 0.989812 -0.104429)
(-0.842702 0.892465 -0.147781)
(-0.908663 0.801471 -0.183681)
(-0.972379 0.712814 -0.220992)
(-1.02594 0.624725 -0.256399)
(-1.06292 0.534879 -0.282595)
(-1.08266 0.445877 -0.295868)
(-1.08449 0.356658 -0.295074)
(-1.06771 0.269515 -0.284783)
(-1.03571 0.185862 -0.271225)
(-0.998597 0.110487 -0.258557)
(-0.95601 0.0456127 -0.251771)
(-0.927467 -0.0137684 -0.24978)
(-0.881203 -0.0804285 -0.234225)
(-0.806053 -0.183518 -0.232602)
(-0.742288 -0.326834 -0.222127)
(-0.703721 -0.489807 -0.211449)
(-0.698064 -0.646697 -0.19906)
(-0.710401 -0.81293 -0.191503)
(-0.732952 -0.993159 -0.18498)
(-0.765612 -1.20254 -0.179127)
(-0.808187 -1.44768 -0.170758)
(-0.862566 -1.74082 -0.156736)
(-0.925027 -2.08061 -0.135761)
(-0.983959 -2.45139 -0.108209)
(-1.0209 -2.80162 -0.0759347)
(-1.00425 -3.03795 -0.046454)
(-0.921054 -3.01986 -0.0258468)
(-0.756956 -2.60343 -0.0210662)
(-0.464925 -1.67251 -0.017301)
(-0.108908 -0.624077 0.0305681)
(-0.00622487 -0.0790325 0.0339041)
(-0.00996861 0.424906 0.145389)
(-0.127425 0.917827 0.277401)
(-0.300651 1.16484 0.287571)
(-0.452748 1.26415 0.230381)
(-0.563241 1.29844 0.157599)
(-0.611945 1.27417 0.0724909)
(-0.635826 1.20782 -0.00347141)
(-0.656854 1.11283 -0.0771084)
(-0.697298 1.0128 -0.132846)
(-0.7568 0.915233 -0.178578)
(-0.824659 0.822748 -0.217824)
(-0.885376 0.731722 -0.255668)
(-0.931981 0.64001 -0.286828)
(-0.960682 0.548107 -0.304298)
(-0.972487 0.457392 -0.305922)
(-0.965225 0.366331 -0.293183)
(-0.937684 0.276357 -0.271816)
(-0.894263 0.191721 -0.252513)
(-0.845329 0.116907 -0.237333)
(-0.795147 0.0579249 -0.233508)
(-0.767762 0.00401083 -0.229537)
(-0.740681 -0.0533764 -0.211135)
(-0.696801 -0.138099 -0.200898)
(-0.660973 -0.257134 -0.188059)
(-0.625528 -0.406712 -0.177739)
(-0.608012 -0.564487 -0.169656)
(-0.613558 -0.72262 -0.16409)
(-0.630801 -0.892915 -0.161435)
(-0.658203 -1.08676 -0.157306)
(-0.696124 -1.31818 -0.152207)
(-0.746773 -1.59905 -0.141365)
(-0.808781 -1.93679 -0.124598)
(-0.875722 -2.32704 -0.0993696)
(-0.932345 -2.73348 -0.0691782)
(-0.945091 -3.07105 -0.038053)
(-0.886815 -3.19108 -0.0172858)
(-0.736759 -2.92092 -0.0102294)
(-0.495027 -2.06951 -0.0216684)
(-0.130995 -0.867603 0.00180288)
(0.00990493 -0.13817 0.0208426)
(0.00110229 0.453391 0.13956)
(-0.0937934 0.995179 0.279446)
(-0.249817 1.24523 0.293438)
(-0.378788 1.33631 0.234527)
(-0.464039 1.35965 0.153084)
(-0.503344 1.31737 0.0566206)
(-0.52921 1.23764 -0.0256977)
(-0.560477 1.13964 -0.10141)
(-0.612708 1.03997 -0.156577)
(-0.676107 0.941718 -0.205131)
(-0.741261 0.847233 -0.246952)
(-0.794457 0.75078 -0.283178)
(-0.831914 0.654723 -0.30773)
(-0.851411 0.559516 -0.314328)
(-0.855185 0.466584 -0.303342)
(-0.841316 0.373394 -0.277341)
(-0.806436 0.282362 -0.247038)
(-0.754497 0.198375 -0.224167)
(-0.695463 0.128025 -0.209509)
(-0.643213 0.0783424 -0.211684)
(-0.621486 0.0249126 -0.205622)
(-0.614044 -0.0334986 -0.182755)
(-0.596349 -0.108371 -0.169869)
(-0.584872 -0.207684 -0.156005)
(-0.566208 -0.334225 -0.14727)
(-0.542963 -0.491354 -0.13942)
(-0.535067 -0.64474 -0.136335)
(-0.544355 -0.805046 -0.135212)
(-0.566199 -0.985685 -0.133772)
(-0.599283 -1.2008 -0.13151)
(-0.644443 -1.46601 -0.12506)
(-0.703114 -1.79527 -0.11228)
(-0.770985 -2.19194 -0.0910253)
(-0.838948 -2.63736 -0.0624607)
(-0.874354 -3.0553 -0.0314843)
(-0.847766 -3.30425 -0.0100906)
(-0.714461 -3.17635 -0.00215157)
(-0.497542 -2.44747 -0.0117674)
(-0.153615 -1.15091 -0.0212566)
(0.015547 -0.188589 0.00421963)
(0.00954442 0.468905 0.144771)
(-0.0630699 1.05853 0.289862)
(-0.197091 1.31973 0.31054)
(-0.301009 1.41005 0.251249)
(-0.366411 1.41628 0.158108)
(-0.403051 1.35913 0.0540734)
(-0.433894 1.26982 -0.035898)
(-0.474589 1.16696 -0.112499)
(-0.533964 1.06654 -0.171103)
(-0.599037 0.96918 -0.223588)
(-0.659722 0.871475 -0.267989)
(-0.704404 0.77125 -0.303514)
(-0.729437 0.669434 -0.320816)
(-0.737659 0.571134 -0.316375)
(-0.733647 0.476384 -0.292417)
(-0.714981 0.384452 -0.255469)
(-0.67506 0.295191 -0.21652)
(-0.61573 0.216936 -0.188466)
(-0.546947 0.157054 -0.176713)
(-0.500266 0.103522 -0.183756)
(-0.498242 0.0457088 -0.177085)
(-0.505763 -0.0186863 -0.155762)
(-0.504012 -0.0875552 -0.141861)
(-0.51161 -0.17129 -0.129759)
(-0.51719 -0.275174 -0.119667)
(-0.500474 -0.412565 -0.11265)
(-0.475267 -0.572161 -0.107282)
(-0.474065 -0.725569 -0.108746)
(-0.488271 -0.893925 -0.108237)
(-0.514027 -1.09326 -0.110045)
(-0.554081 -1.3418 -0.107225)
(-0.607703 -1.65829 -0.0993589)
(-0.674368 -2.0531 -0.0813024)
(-0.746656 -2.5232 -0.0550223)
(-0.797069 -3.00749 -0.0231013)
(-0.795184 -3.3732 -0.000751167)
(-0.690204 -3.39361 0.0105628)
(-0.490141 -2.79705 0.00137503)
(-0.159723 -1.47748 -0.0259899)
(0.0321212 -0.245276 -0.0116004)
(0.0173787 0.474442 0.135349)
(-0.0294364 1.10919 0.28527)
(-0.139967 1.40028 0.319465)
(-0.223248 1.48263 0.25569)
(-0.275059 1.47518 0.158208)
(-0.310753 1.40048 0.0456051)
(-0.349674 1.30554 -0.0478602)
(-0.399065 1.20074 -0.127297)
(-0.460411 1.10504 -0.187855)
(-0.522007 1.00902 -0.242279)
(-0.573771 0.911627 -0.287067)
(-0.604939 0.80771 -0.316311)
(-0.615911 0.700772 -0.324658)
(-0.612447 0.598674 -0.307235)
(-0.603012 0.501408 -0.272214)
(-0.583221 0.413119 -0.225118)
(-0.541079 0.335954 -0.177369)
(-0.475386 0.269846 -0.153775)
(-0.415207 0.203877 -0.145119)
(-0.383546 0.129031 -0.145942)
(-0.393954 0.0638756 -0.151884)
(-0.412655 -0.00640021 -0.131069)
(-0.41931 -0.0718995 -0.117036)
(-0.439364 -0.14696 -0.106473)
(-0.460558 -0.233629 -0.0962409)
(-0.470676 -0.340574 -0.0911099)
(-0.445539 -0.481993 -0.0809763)
(-0.418701 -0.642509 -0.0816865)
(-0.423523 -0.807634 -0.0842591)
(-0.443694 -0.992008 -0.0884034)
(-0.475807 -1.21979 -0.0893542)
(-0.521805 -1.51995 -0.0856645)
(-0.584985 -1.90936 -0.0732178)
(-0.661101 -2.39681 -0.0496015)
(-0.721828 -2.93477 -0.018)
(-0.744039 -3.41062 0.00878558)
(-0.66876 -3.57281 0.0279816)
(-0.491121 -3.12058 0.0172842)
(-0.171537 -1.80152 -0.0145219)
(0.0485378 -0.291793 -0.0200993)
(0.00682729 0.490387 0.154527)
(-0.00961103 1.17679 0.316493)
(-0.0841216 1.50149 0.340506)
(-0.15518 1.58361 0.290952)
(-0.193369 1.56236 0.179107)
(-0.228013 1.47431 0.0611788)
(-0.267471 1.37031 -0.0398949)
(-0.31758 1.26462 -0.122297)
(-0.37492 1.16682 -0.184611)
(-0.429902 1.07058 -0.239654)
(-0.470057 0.970535 -0.282609)
(-0.49139 0.868481 -0.310221)
(-0.492208 0.766072 -0.311206)
(-0.483531 0.667468 -0.287111)
(-0.468618 0.574136 -0.246891)
(-0.439633 0.497348 -0.201795)
(-0.396397 0.424807 -0.164318)
(-0.352108 0.3463 -0.135604)
(-0.319348 0.257834 -0.111931)
(-0.2945 0.163518 -0.115632)
(-0.308581 0.089957 -0.132714)
(-0.332099 0.0124009 -0.113015)
(-0.342726 -0.0533303 -0.09658)
(-0.371882 -0.127952 -0.0878062)
(-0.399727 -0.205994 -0.0758102)
(-0.419293 -0.292166 -0.072405)
(-0.420455 -0.396024 -0.0667621)
(-0.400775 -0.535218 -0.0640682)
(-0.377525 -0.697976 -0.0605559)
(-0.377623 -0.884545 -0.0676916)
(-0.402934 -1.10328 -0.0721155)
(-0.440553 -1.38309 -0.072941)
(-0.497016 -1.75636 -0.063776)
(-0.570382 -2.25446 -0.0430761)
(-0.639017 -2.84191 -0.0126849)
(-0.684935 -3.42531 0.019052)
(-0.640003 -3.73037 0.0476674)
(-0.482931 -3.43076 0.0405492)
(-0.177884 -2.14327 0.00031961)
(0.0652889 -0.381518 -0.0221401)
(0.00485492 0.536272 0.139427)
(-0.000713271 1.29257 0.309377)
(-0.0372827 1.63278 0.357234)
(-0.0708106 1.71618 0.290041)
(-0.108228 1.68821 0.18681)
(-0.149008 1.58539 0.0611939)
(-0.185058 1.48433 -0.0311676)
(-0.235968 1.37965 -0.113998)
(-0.28467 1.28864 -0.173299)
(-0.328124 1.20381 -0.222143)
(-0.35155 1.12263 -0.255863)
(-0.353857 1.03403 -0.27055)
(-0.346792 0.930886 -0.268121)
(-0.335651 0.82088 -0.248011)
(-0.317502 0.714211 -0.224616)
(-0.299164 0.619146 -0.189997)
(-0.287493 0.525536 -0.148455)
(-0.267984 0.425205 -0.1171)
(-0.251233 0.325373 -0.0940192)
(-0.226662 0.223835 -0.0972866)
(-0.2376 0.134504 -0.119191)
(-0.263774 0.046718 -0.0974027)
(-0.277017 -0.0291717 -0.0824371)
(-0.312374 -0.107209 -0.0740903)
(-0.340581 -0.181672 -0.0606426)
(-0.361565 -0.257571 -0.0582768)
(-0.367666 -0.34059 -0.053909)
(-0.367435 -0.438915 -0.0563024)
(-0.366075 -0.56719 -0.054574)
(-0.357211 -0.733207 -0.0532408)
(-0.355554 -0.935967 -0.0529586)
(-0.368719 -1.20936 -0.0565495)
(-0.408583 -1.57786 -0.0546385)
(-0.47806 -2.07603 -0.0393994)
(-0.555851 -2.69524 -0.0107367)
(-0.62134 -3.37984 0.026741)
(-0.615753 -3.83553 0.0615517)
(-0.487061 -3.70427 0.0617002)
(-0.209655 -2.47496 0.0234745)
(0.0561146 -0.428208 -0.012011)
(-0.00146387 0.682598 0.176813)
(0.00908629 1.50474 0.358057)
(-0.0079994 1.88368 0.402828)
(-0.0294978 1.96573 0.347634)
(-0.0490011 1.91387 0.233899)
(-0.0660697 1.80623 0.100338)
(-0.100564 1.70548 -0.00370466)
(-0.147637 1.60639 -0.0732218)
(-0.175312 1.51653 -0.1212)
(-0.191661 1.43103 -0.156657)
(-0.199392 1.34126 -0.185419)
(-0.215256 1.22957 -0.212233)
(-0.225983 1.09584 -0.223134)
(-0.227661 0.95849 -0.218488)
(-0.219538 0.82608 -0.205029)
(-0.205954 0.707292 -0.182717)
(-0.200311 0.608029 -0.153552)
(-0.194361 0.514522 -0.135126)
(-0.190499 0.419828 -0.117926)
(-0.174698 0.307322 -0.106786)
(-0.189547 0.198976 -0.124955)
(-0.213925 0.0900847 -0.0984107)
(-0.226006 -0.00295653 -0.0815945)
(-0.258164 -0.0836862 -0.0687771)
(-0.283467 -0.157469 -0.0529894)
(-0.302204 -0.228918 -0.0509956)
(-0.307752 -0.302534 -0.0472597)
(-0.30717 -0.385223 -0.0506537)
(-0.311156 -0.476365 -0.0517552)
(-0.316909 -0.595423 -0.0558847)
(-0.332468 -0.749533 -0.0575218)
(-0.352379 -0.979145 -0.0554712)
(-0.368503 -1.31089 -0.0454386)
(-0.387032 -1.81325 -0.0268892)
(-0.450769 -2.47841 -0.00489801)
(-0.53333 -3.24637 0.0346246)
(-0.561749 -3.85468 0.070294)
(-0.475651 -3.92734 0.0762995)
(-0.219204 -2.84067 0.043172)
(0.0642966 -0.575496 -0.0149868)
(-0.0190766 0.730082 0.145181)
(-0.00194105 1.60048 0.327639)
(0.0144028 2.01837 0.387388)
(0.0128396 2.13059 0.343508)
(0.0107393 2.09283 0.236313)
(-0.00362583 1.98423 0.106816)
(-0.0193032 1.86703 0.00260817)
(-0.0551548 1.76819 -0.0816606)
(-0.0845795 1.67112 -0.120006)
(-0.0947003 1.56703 -0.145682)
(-0.104698 1.44237 -0.178409)
(-0.121008 1.30272 -0.20451)
(-0.131056 1.15462 -0.213798)
(-0.132629 1.01229 -0.20976)
(-0.12202 0.883643 -0.205068)
(-0.102116 0.773218 -0.200327)
(-0.100087 0.68572 -0.20196)
(-0.109132 0.608786 -0.209098)
(-0.137772 0.530406 -0.199411)
(-0.144712 0.406387 -0.1668)
(-0.164966 0.269928 -0.158218)
(-0.188744 0.137672 -0.11695)
(-0.186092 0.0288475 -0.0909732)
(-0.207854 -0.057463 -0.0741344)
(-0.228559 -0.133639 -0.0564275)
(-0.244983 -0.202211 -0.0520173)
(-0.250009 -0.270005 -0.0475469)
(-0.247076 -0.345579 -0.0497632)
(-0.249927 -0.422816 -0.0501256)
(-0.250337 -0.516982 -0.0533964)
(-0.262784 -0.623784 -0.0584253)
(-0.287012 -0.782501 -0.0657898)
(-0.346197 -1.02449 -0.0703527)
(-0.411846 -1.45267 -0.0597716)
(-0.432303 -2.09099 -0.0137995)
(-0.469901 -2.93002 0.0309302)
(-0.523344 -3.68222 0.0763667)
(-0.47776 -3.99577 0.0928613)
(-0.268661 -3.14686 0.0730106)
(0.028097 -0.860961 0.0140975)
(-0.00953144 0.682356 0.140093)
(0.0180835 1.56229 0.30561)
(0.0471686 2.0082 0.373888)
(0.0600751 2.15611 0.342939)
(0.0643666 2.1376 0.245253)
(0.0554543 2.03863 0.124532)
(0.0437444 1.92542 0.0192334)
(0.0251945 1.80933 -0.0586045)
(0.0113976 1.71022 -0.114008)
(-0.00543226 1.60308 -0.136984)
(-0.0164424 1.47223 -0.159665)
(-0.0295042 1.33457 -0.182633)
(-0.0374589 1.19002 -0.198201)
(-0.0336966 1.04944 -0.209519)
(-0.0186666 0.925422 -0.224987)
(0.00529276 0.819835 -0.242105)
(0.0108266 0.743881 -0.284422)
(-0.00575198 0.678755 -0.342041)
(-0.0746079 0.61014 -0.36762)
(-0.134985 0.492776 -0.308566)
(-0.170006 0.329873 -0.236678)
(-0.178659 0.186552 -0.157192)
(-0.15721 0.0631774 -0.111817)
(-0.16372 -0.0329295 -0.0919028)
(-0.174268 -0.113182 -0.0708782)
(-0.183195 -0.182089 -0.062766)
(-0.188269 -0.244637 -0.0558897)
(-0.182873 -0.315764 -0.0557091)
(-0.182028 -0.3855 -0.0543054)
(-0.177825 -0.469145 -0.0551039)
(-0.183708 -0.558931 -0.0566781)
(-0.193585 -0.686904 -0.0590583)
(-0.226925 -0.865051 -0.0632535)
(-0.310836 -1.17885 -0.0637089)
(-0.411184 -1.6866 -0.0472771)
(-0.465958 -2.47998 0.0108108)
(-0.522798 -3.29092 0.0575981)
(-0.523431 -3.79197 0.0882074)
(-0.368158 -3.19743 0.0777098)
(-0.0527762 -0.943298 0.0222161)
(-0.00342497 0.651179 0.114074)
(0.0410487 1.50236 0.26588)
(0.0840577 1.96881 0.340559)
(0.105465 2.14194 0.322513)
(0.115963 2.14301 0.237902)
(0.11096 2.05882 0.124605)
(0.104837 1.95332 0.0239148)
(0.0887491 1.84121 -0.0536024)
(0.0775256 1.73039 -0.104543)
(0.0688699 1.61351 -0.138988)
(0.0632156 1.48603 -0.161953)
(0.0510633 1.34837 -0.184197)
(0.0456881 1.20154 -0.203198)
(0.0578215 1.06002 -0.219289)
(0.0838743 0.937697 -0.247262)
(0.125056 0.830545 -0.295049)
(0.137014 0.746331 -0.386461)
(0.105233 0.665736 -0.493393)
(-0.0015495 0.577604 -0.563227)
(-0.122004 0.476121 -0.494097)
(-0.180345 0.327179 -0.353684)
(-0.175884 0.194032 -0.22491)
(-0.137973 0.0771419 -0.154226)
(-0.124785 -0.0184862 -0.120623)
(-0.122659 -0.0967236 -0.0972711)
(-0.121609 -0.167848 -0.0848708)
(-0.124479 -0.227834 -0.0738561)
(-0.1192 -0.295305 -0.0685284)
(-0.117905 -0.358624 -0.064349)
(-0.110341 -0.43667 -0.0619668)
(-0.114453 -0.515144 -0.060537)
(-0.119603 -0.628645 -0.0593345)
(-0.149285 -0.778711 -0.0581186)
(-0.20638 -1.0491 -0.0506254)
(-0.296566 -1.45528 -0.0339893)
(-0.376289 -2.12705 0.0125679)
(-0.472356 -2.91951 0.0555673)
(-0.515049 -3.53235 0.0932351)
(-0.402912 -3.15921 0.0805733)
(-0.1072 -1.00856 0.0231558)
(0.000783341 0.598985 0.0966913)
(0.0604606 1.42291 0.234904)
(0.117994 1.90847 0.314326)
(0.148228 2.10846 0.308891)
(0.164473 2.12895 0.236175)
(0.163467 2.05629 0.133302)
(0.16172 1.95643 0.0339432)
(0.150722 1.84826 -0.0433592)
(0.144239 1.74013 -0.0975024)
(0.136722 1.62386 -0.133121)
(0.131334 1.49484 -0.157031)
(0.126091 1.3518 -0.177592)
(0.131557 1.20653 -0.196556)
(0.155212 1.0631 -0.220898)
(0.187993 0.935212 -0.265967)
(0.22642 0.812486 -0.343382)
(0.230613 0.691832 -0.463707)
(0.182388 0.572932 -0.583164)
(0.067001 0.449988 -0.649182)
(-0.0747564 0.347186 -0.579636)
(-0.15441 0.251245 -0.421574)
(-0.142554 0.158692 -0.277105)
(-0.0948453 0.0688931 -0.190497)
(-0.0713909 -0.0129644 -0.152614)
(-0.062709 -0.0828081 -0.125515)
(-0.0553301 -0.15234 -0.110452)
(-0.0546094 -0.212436 -0.0976691)
(-0.0462965 -0.278297 -0.0887796)
(-0.044398 -0.33821 -0.0811927)
(-0.0354861 -0.412405 -0.0741798)
(-0.0381259 -0.484573 -0.0671801)
(-0.039737 -0.588932 -0.0583185)
(-0.0642959 -0.722236 -0.0495217)
(-0.10681 -0.96006 -0.0391104)
(-0.192402 -1.31902 -0.0202596)
(-0.290888 -1.93944 0.0129581)
(-0.417197 -2.70575 0.0524554)
(-0.48142 -3.39884 0.0874026)
(-0.404844 -3.20766 0.0807927)
(-0.141473 -1.22221 0.0199485)
(0.00540187 0.545097 0.0741937)
(0.0779706 1.33201 0.198926)
(0.148766 1.83581 0.283213)
(0.187228 2.0639 0.289671)
(0.21112 2.1052 0.229736)
(0.214201 2.04595 0.135339)
(0.215427 1.9499 0.0402034)
(0.207959 1.84588 -0.0369375)
(0.203431 1.73846 -0.0910703)
(0.199738 1.62415 -0.129687)
(0.197211 1.49895 -0.156458)
(0.196336 1.35991 -0.176655)
(0.206537 1.21387 -0.191367)
(0.237979 1.06184 -0.212648)
(0.274127 0.917434 -0.263623)
(0.301086 0.774562 -0.354333)
(0.290652 0.624368 -0.480414)
(0.230937 0.476206 -0.591467)
(0.115885 0.339791 -0.618243)
(0.000737719 0.231728 -0.555416)
(-0.0612692 0.162523 -0.421793)
(-0.062161 0.115292 -0.29089)
(-0.0245149 0.0500155 -0.227872)
(-1.03647e-06 -0.010452 -0.183782)
(0.00825085 -0.0696705 -0.156042)
(0.0158452 -0.134218 -0.135761)
(0.0161886 -0.192201 -0.12018)
(0.0241576 -0.260647 -0.108513)
(0.0236243 -0.320299 -0.0970489)
(0.0310316 -0.396515 -0.0869178)
(0.0226996 -0.465012 -0.0780749)
(0.0169985 -0.564319 -0.064032)
(-0.0127393 -0.675892 -0.0464057)
(-0.0388309 -0.887377 -0.0256069)
(-0.116319 -1.23311 -0.00785806)
(-0.215504 -1.83693 0.0200105)
(-0.349628 -2.6029 0.0530235)
(-0.426964 -3.37248 0.0876416)
(-0.386429 -3.33582 0.0825835)
(-0.141892 -1.46647 0.0279941)
(0.0091635 0.492919 0.0567636)
(0.0927411 1.23315 0.167408)
(0.174364 1.75366 0.255586)
(0.22001 2.01398 0.274181)
(0.251886 2.07932 0.226738)
(0.261241 2.03521 0.141321)
(0.267852 1.94406 0.0503017)
(0.26476 1.84295 -0.0265914)
(0.262422 1.73666 -0.0810131)
(0.26142 1.62515 -0.12109)
(0.26246 1.50438 -0.149306)
(0.266232 1.3702 -0.170467)
(0.279013 1.2268 -0.183624)
(0.311126 1.07129 -0.198747)
(0.34554 0.911451 -0.241766)
(0.360051 0.749335 -0.328042)
(0.3354 0.581021 -0.443249)
(0.277791 0.416993 -0.531709)
(0.180317 0.274223 -0.551358)
(0.0845096 0.166747 -0.490146)
(0.0506962 0.0931252 -0.400376)
(0.054928 0.06491 -0.311914)
(0.0781598 0.0312198 -0.245113)
(0.0995587 -0.0173831 -0.211706)
(0.0972573 -0.0638138 -0.177871)
(0.101518 -0.122599 -0.156345)
(0.0955562 -0.174877 -0.138992)
(0.101356 -0.23986 -0.124486)
(0.0976366 -0.2971 -0.112051)
(0.104459 -0.370695 -0.0982836)
(0.0960847 -0.436235 -0.0845533)
(0.0965536 -0.536397 -0.067526)
(0.0660994 -0.639551 -0.0500281)
(0.0236345 -0.840465 -0.0369891)
(-0.0511359 -1.16829 -0.00818806)
(-0.13956 -1.78704 0.011215)
(-0.293035 -2.59336 0.044696)
(-0.385891 -3.47559 0.0780285)
(-0.386145 -3.58375 0.0754826)
(-0.152271 -1.76093 0.0200786)
(0.0107868 0.439606 0.0430314)
(0.107369 1.1181 0.132635)
(0.202833 1.64483 0.222978)
(0.249559 1.93962 0.254704)
(0.287013 2.03354 0.220875)
(0.302872 2.00775 0.145518)
(0.315296 1.92239 0.058812)
(0.317474 1.82632 -0.0165805)
(0.31704 1.7215 -0.0705346)
(0.319186 1.61316 -0.111125)
(0.323249 1.49829 -0.139907)
(0.331088 1.3707 -0.160652)
(0.345114 1.23302 -0.172681)
(0.373189 1.07968 -0.183965)
(0.401019 0.914315 -0.214157)
(0.406146 0.737805 -0.282502)
(0.37343 0.560663 -0.369242)
(0.3183 0.389913 -0.432897)
(0.2404 0.246488 -0.448502)
(0.175457 0.142661 -0.418535)
(0.177073 0.0773185 -0.359849)
(0.204311 0.0493878 -0.297903)
(0.210438 0.0253265 -0.257553)
(0.211991 -0.0179779 -0.228123)
(0.203907 -0.0590294 -0.201206)
(0.200036 -0.115237 -0.179207)
(0.189678 -0.166771 -0.158745)
(0.189714 -0.237433 -0.141464)
(0.180154 -0.30451 -0.123509)
(0.182786 -0.402525 -0.106669)
(0.159115 -0.496864 -0.0948974)
(0.147431 -0.622018 -0.075588)
(0.118805 -0.736966 -0.0524256)
(0.0758963 -0.957085 -0.0322917)
(-0.0155606 -1.25705 -0.00539345)
(-0.0917728 -1.88517 0.0171319)
(-0.241127 -2.72632 0.0505745)
(-0.332865 -3.74323 0.0885333)
(-0.34326 -4.03821 0.0970471)
(-0.134241 -2.32173 0.04047)
(0.00625867 0.39245 0.0305613)
(0.108908 1.01459 0.105749)
(0.229097 1.52755 0.185594)
(0.280393 1.85972 0.234715)
(0.315269 1.98681 0.215413)
(0.335931 1.98585 0.152217)
(0.359137 1.91331 0.0715284)
(0.371096 1.81708 -0.00288135)
(0.37212 1.71392 -0.0564367)
(0.377751 1.60723 -0.0975333)
(0.385016 1.49625 -0.126599)
(0.396118 1.37405 -0.147764)
(0.410787 1.24194 -0.160472)
(0.434197 1.09368 -0.171289)
(0.451906 0.93016 -0.194687)
(0.450196 0.749176 -0.241803)
(0.417706 0.572513 -0.29921)
(0.376865 0.410889 -0.342711)
(0.329079 0.278825 -0.358696)
(0.292636 0.178574 -0.352269)
(0.318096 0.113181 -0.319537)
(0.350926 0.0758661 -0.286794)
(0.347849 0.0390902 -0.257439)
(0.341633 -0.00227058 -0.239085)
(0.318693 -0.0427198 -0.213976)
(0.305162 -0.0964863 -0.194011)
(0.278727 -0.145512 -0.173817)
(0.265691 -0.222784 -0.15525)
(0.232812 -0.307288 -0.135835)
(0.212541 -0.436498 -0.118536)
(0.179639 -0.555194 -0.0964601)
(0.174049 -0.702097 -0.0709619)
(0.12258 -0.825096 -0.0533555)
(0.0949337 -1.02272 -0.0277631)
(0.00204446 -1.3083 -0.00256598)
(-0.0706387 -1.9236 0.014157)
(-0.221079 -2.8113 0.050526)
(-0.321099 -3.9793 0.094135)
(-0.347901 -4.49748 0.117871)
(-0.148904 -2.96719 0.0778419)
(0.00795368 0.337071 0.0174549)
(0.105826 0.900739 0.0812404)
(0.248641 1.38967 0.150084)
(0.319431 1.73548 0.200992)
(0.343385 1.90585 0.204604)
(0.366069 1.92963 0.155101)
(0.391584 1.87929 0.087831)
(0.411503 1.78513 0.0105709)
(0.42112 1.68589 -0.0419285)
(0.429459 1.58016 -0.0836366)
(0.439646 1.47343 -0.11359)
(0.453669 1.35631 -0.136116)
(0.468944 1.23061 -0.152002)
(0.488073 1.08885 -0.167475)
(0.496768 0.931744 -0.189968)
(0.493899 0.761621 -0.224459)
(0.476688 0.602492 -0.260163)
(0.456995 0.459115 -0.291925)
(0.428031 0.333168 -0.307214)
(0.412291 0.225361 -0.312283)
(0.45959 0.151606 -0.291468)
(0.501255 0.10438 -0.27474)
(0.489619 0.062927 -0.256026)
(0.477224 0.018133 -0.240486)
(0.444313 -0.0206583 -0.221537)
(0.424837 -0.0661111 -0.205266)
(0.384092 -0.106531 -0.187552)
(0.344207 -0.177092 -0.172877)
(0.279434 -0.282398 -0.150994)
(0.246988 -0.408205 -0.128289)
(0.208348 -0.513338 -0.103734)
(0.207056 -0.662281 -0.0753121)
(0.174174 -0.77572 -0.0432376)
(0.134813 -0.976308 -0.0285902)
(0.0149004 -1.19959 -0.000596563)
(-0.0418035 -1.79579 0.00854438)
(-0.206186 -2.68816 0.0417931)
(-0.316797 -3.98967 0.0946615)
(-0.373709 -4.74682 0.126531)
(-0.178092 -3.47247 0.0876177)
(0.0035915 0.298604 0.0103605)
(0.0945483 0.813137 0.0648482)
(0.243486 1.27881 0.125847)
(0.350428 1.62037 0.167204)
(0.383132 1.82451 0.185277)
(0.393284 1.88139 0.154336)
(0.422178 1.85197 0.0975703)
(0.44786 1.76867 0.0280639)
(0.469595 1.67077 -0.0251105)
(0.481707 1.56475 -0.0681423)
(0.495833 1.45784 -0.0999837)
(0.511582 1.34277 -0.126273)
(0.526438 1.22041 -0.147898)
(0.541374 1.08438 -0.169688)
(0.548921 0.939879 -0.192083)
(0.558328 0.792305 -0.21658)
(0.557334 0.654741 -0.237256)
(0.54964 0.52161 -0.260574)
(0.534058 0.39739 -0.272963)
(0.535491 0.282281 -0.283923)
(0.604776 0.200538 -0.269577)
(0.655348 0.144994 -0.265456)
(0.638756 0.0965584 -0.252693)
(0.622513 0.0493422 -0.243858)
(0.583954 0.0132737 -0.225938)
(0.558991 -0.0319185 -0.21225)
(0.502138 -0.0577956 -0.196056)
(0.417745 -0.126838 -0.184593)
(0.32889 -0.234712 -0.155061)
(0.311956 -0.349033 -0.134599)
(0.255288 -0.438343 -0.108737)
(0.246177 -0.580418 -0.0834143)
(0.182831 -0.690247 -0.0559179)
(0.184706 -0.896539 -0.0259771)
(0.0516509 -1.10294 -0.00766358)
(-0.0240287 -1.63364 0.00526449)
(-0.182786 -2.50392 0.0262497)
(-0.304281 -3.88991 0.087626)
(-0.387038 -4.85452 0.129857)
(-0.20264 -3.88319 0.0978081)
(0.00888739 0.25076 0.00630929)
(0.0883899 0.710217 0.0524037)
(0.226932 1.1509 0.105331)
(0.358664 1.48104 0.144497)
(0.418073 1.68945 0.156973)
(0.424641 1.78049 0.143104)
(0.445793 1.77529 0.0985565)
(0.473875 1.71269 0.0466029)
(0.501702 1.62141 -0.0104697)
(0.521162 1.51829 -0.0529101)
(0.53869 1.41379 -0.0885589)
(0.556614 1.30322 -0.117504)
(0.572139 1.189 -0.143325)
(0.590486 1.06606 -0.166552)
(0.606112 0.941765 -0.185391)
(0.626384 0.815311 -0.204105)
(0.635744 0.690962 -0.218773)
(0.637201 0.566628 -0.237428)
(0.632651 0.445091 -0.246884)
(0.651333 0.326617 -0.260341)
(0.744674 0.23775 -0.249604)
(0.806857 0.177297 -0.253707)
(0.785937 0.123609 -0.244054)
(0.770722 0.0751283 -0.238286)
(0.724798 0.0409319 -0.2227)
(0.69961 -0.00386122 -0.206873)
(0.630673 -0.0238217 -0.195432)
(0.501617 -0.0704362 -0.187434)
(0.388974 -0.157789 -0.156418)
(0.380058 -0.274048 -0.137017)
(0.312258 -0.359114 -0.109335)
(0.295294 -0.496266 -0.0832154)
(0.217894 -0.594241 -0.0568564)
(0.202307 -0.78553 -0.0301823)
(0.0866646 -0.988883 -0.0182573)
(0.021329 -1.47468 0.00608286)
(-0.16859 -2.28824 0.00954895)
(-0.27532 -3.72715 0.0771391)
(-0.404892 -4.87926 0.126646)
(-0.223843 -4.25652 0.104547)
(0.00287529 0.233948 0.00585795)
(0.0709376 0.65193 0.0481747)
(0.196095 1.06177 0.094407)
(0.336276 1.39608 0.132015)
(0.435052 1.59417 0.143413)
(0.459862 1.70779 0.135458)
(0.47472 1.72248 0.101245)
(0.505444 1.6754 0.0542565)
(0.538581 1.59363 0.00592874)
(0.564852 1.49249 -0.0372328)
(0.587577 1.38884 -0.071657)
(0.609507 1.28194 -0.10105)
(0.629582 1.17539 -0.125269)
(0.653126 1.06545 -0.146339)
(0.67376 0.954436 -0.162574)
(0.697907 0.83993 -0.179465)
(0.712789 0.72405 -0.191985)
(0.721989 0.60842 -0.209206)
(0.728479 0.491813 -0.21835)
(0.762772 0.373667 -0.233661)
(0.88216 0.277685 -0.225448)
(0.959912 0.215274 -0.2354)
(0.936466 0.157686 -0.226048)
(0.921731 0.108466 -0.221846)
(0.870363 0.0757578 -0.206382)
(0.843202 0.0379602 -0.191041)
(0.776438 0.0178464 -0.174517)
(0.621724 -0.0230877 -0.180364)
(0.454541 -0.070138 -0.150977)
(0.446094 -0.18948 -0.134116)
(0.367566 -0.261708 -0.106404)
(0.350085 -0.402123 -0.0815231)
(0.250729 -0.483366 -0.054108)
(0.233639 -0.67677 -0.0301693)
(0.105082 -0.841871 -0.0181112)
(0.0562509 -1.31994 -0.005658)
(-0.147727 -2.06749 -0.0078458)
(-0.248707 -3.54181 0.0585883)
(-0.41962 -4.85798 0.119068)
(-0.254994 -4.62321 0.107254)
(0.00929254 0.197503 0.00704861)
(0.0570769 0.568134 0.0461753)
(0.162234 0.94896 0.0874659)
(0.297511 1.26394 0.12262)
(0.417887 1.46655 0.137316)
(0.480282 1.57292 0.12993)
(0.490307 1.6214 0.105033)
(0.518402 1.58399 0.0674787)
(0.556137 1.52045 0.0235135)
(0.588625 1.42918 -0.011611)
(0.620797 1.3328 -0.0495578)
(0.651159 1.23314 -0.0748273)
(0.677644 1.13587 -0.097771)
(0.706534 1.0362 -0.115656)
(0.73131 0.935817 -0.129684)
(0.758304 0.831648 -0.144516)
(0.776477 0.727092 -0.15493)
(0.792245 0.621907 -0.171958)
(0.809318 0.513531 -0.181571)
(0.857468 0.397082 -0.198617)
(1.0042 0.296715 -0.191582)
(1.10437 0.234893 -0.204678)
(1.0784 0.177295 -0.195375)
(1.06815 0.129429 -0.192408)
(1.01408 0.102568 -0.177976)
(0.989483 0.075249 -0.16827)
(0.905167 0.0628399 -0.150962)
(0.742952 0.0249492 -0.149219)
(0.548809 -0.00918267 -0.129079)
(0.516524 -0.0935106 -0.117757)
(0.430233 -0.169762 -0.0946413)
(0.410823 -0.300631 -0.0735714)
(0.295211 -0.373533 -0.0494706)
(0.271339 -0.56364 -0.0283224)
(0.123468 -0.704707 -0.0186335)
(0.088373 -1.17114 -0.0234393)
(-0.132517 -1.85519 -0.0153175)
(-0.214064 -3.34587 0.0406194)
(-0.451581 -4.82499 0.108291)
(-0.288166 -5.03275 0.104399)
(-0.00211883 0.198393 0.012429)
(0.0316695 0.557218 0.0529957)
(0.108293 0.903091 0.0918194)
(0.237659 1.22286 0.125116)
(0.376783 1.41505 0.142525)
(0.485904 1.50928 0.138517)
(0.522138 1.56492 0.117507)
(0.537485 1.53475 0.0869539)
(0.585875 1.47298 0.049683)
(0.624617 1.38946 0.0144864)
(0.661798 1.29954 -0.015186)
(0.69931 1.20088 -0.0378748)
(0.735655 1.10799 -0.0608695)
(0.770575 1.01237 -0.0754457)
(0.798685 0.915654 -0.0863738)
(0.827324 0.820135 -0.098456)
(0.846639 0.725789 -0.10616)
(0.862922 0.630326 -0.121961)
(0.885546 0.530891 -0.131634)
(0.942944 0.41782 -0.148272)
(1.11782 0.319414 -0.140392)
(1.24546 0.260259 -0.154894)
(1.22099 0.204624 -0.147513)
(1.21711 0.158558 -0.146449)
(1.16501 0.137214 -0.135335)
(1.14023 0.11508 -0.132463)
(1.05317 0.117554 -0.1166)
(0.870516 0.0886491 -0.124093)
(0.651 0.056823 -0.0993908)
(0.610562 -0.009579 -0.0958998)
(0.482983 -0.0605435 -0.0776061)
(0.480885 -0.185009 -0.0602144)
(0.335353 -0.229195 -0.039956)
(0.322759 -0.422512 -0.024301)
(0.136053 -0.535943 -0.0204225)
(0.127945 -0.98355 -0.026814)
(-0.115154 -1.6219 -0.03984)
(-0.186423 -3.11355 0.0186081)
(-0.497261 -4.77367 0.0970397)
(-0.327989 -5.52397 0.101134)
(0.0145533 0.179714 0.0203386)
(0.0199736 0.497567 0.0640508)
(0.0620446 0.829279 0.0984355)
(0.170981 1.097 0.131561)
(0.289742 1.29192 0.151616)
(0.440181 1.36707 0.152193)
(0.507829 1.42296 0.131936)
(0.525966 1.40494 0.108708)
(0.577525 1.35287 0.0764688)
(0.632514 1.27864 0.0465695)
(0.683697 1.20378 0.0187652)
(0.725629 1.11868 -0.000207274)
(0.769 1.03824 -0.0181697)
(0.808667 0.952145 -0.0291557)
(0.84295 0.865235 -0.0397406)
(0.881965 0.777265 -0.0504244)
(0.904727 0.691045 -0.0532914)
(0.922341 0.602027 -0.0664212)
(0.949007 0.514256 -0.0736013)
(1.01445 0.405579 -0.0870542)
(1.21731 0.31884 -0.0766339)
(1.37215 0.260842 -0.0932553)
(1.34912 0.209567 -0.0885309)
(1.35636 0.163852 -0.0912988)
(1.30568 0.153331 -0.0832619)
(1.29127 0.140546 -0.0839787)
(1.19331 0.167475 -0.0745742)
(0.9959 0.135745 -0.082525)
(0.752219 0.131637 -0.0603941)
(0.718695 0.0513194 -0.0591508)
(0.575348 0.042483 -0.0434045)
(0.575908 -0.0760504 -0.042049)
(0.412449 -0.0997434 -0.0363329)
(0.393349 -0.287529 -0.0168941)
(0.192032 -0.377973 -0.0244135)
(0.188667 -0.798198 -0.0253276)
(-0.0718903 -1.40905 -0.0636231)
(-0.120378 -2.8515 0.0120568)
(-0.553245 -4.72007 0.0886047)
(-0.334181 -6.12136 0.101604)
(-0.0177157 0.190698 0.0315025)
(-0.017279 0.555358 0.0888565)
(-0.0162847 0.841362 0.123041)
(0.0556867 1.12911 0.151797)
(0.196361 1.2756 0.176422)
(0.375602 1.32357 0.18291)
(0.494956 1.34584 0.165558)
(0.523231 1.32129 0.146161)
(0.582167 1.26045 0.11856)
(0.649863 1.19201 0.0931528)
(0.717644 1.11587 0.0678242)
(0.775775 1.03891 0.0468323)
(0.8266 0.965634 0.0311089)
(0.873378 0.889433 0.0214914)
(0.909331 0.813257 0.0156836)
(0.945879 0.72988 0.011685)
(0.967778 0.646781 0.00898958)
(0.989133 0.563367 -0.00180467)
(1.02272 0.486299 -0.00367869)
(1.10042 0.386194 -0.0106223)
(1.32904 0.315432 -0.00380211)
(1.50529 0.26302 -0.0169139)
(1.48506 0.216695 -0.0144291)
(1.50602 0.176951 -0.0208569)
(1.46434 0.176312 -0.0198337)
(1.4632 0.170146 -0.023812)
(1.35244 0.212651 -0.0222161)
(1.14027 0.186694 -0.0315346)
(0.868461 0.211696 -0.023837)
(0.8438 0.143455 -0.0201379)
(0.687735 0.144728 -0.0206865)
(0.697 0.0440521 -0.0112267)
(0.510778 0.0188783 -0.0079681)
(0.51572 -0.123787 -0.00763065)
(0.288062 -0.192296 -0.013455)
(0.291788 -0.564503 -0.0330876)
(0.0353893 -1.077 -0.0397382)
(0.0320062 -2.54122 -0.0373028)
(-0.568899 -4.55503 0.0907129)
(-0.260881 -6.70331 0.0996617)
(0.0431061 0.342847 0.0575202)
(-0.00136377 0.505512 0.119998)
(-0.071053 0.74904 0.158461)
(-0.0227581 0.9207 0.189022)
(0.0180919 1.11886 0.205764)
(0.222961 1.1198 0.216009)
(0.401521 1.15089 0.207336)
(0.463184 1.11359 0.192058)
(0.538679 1.06689 0.168232)
(0.630788 1.01091 0.147341)
(0.716608 0.951058 0.12485)
(0.791809 0.88538 0.106246)
(0.854414 0.823917 0.089909)
(0.910211 0.762102 0.0779042)
(0.954439 0.700447 0.0703744)
(0.997295 0.632362 0.0649676)
(1.02544 0.55984 0.0641396)
(1.05479 0.488936 0.0591327)
(1.09692 0.42218 0.0611118)
(1.19043 0.320939 0.0527767)
(1.44504 0.261907 0.0619717)
(1.64162 0.209501 0.0444654)
(1.62509 0.171389 0.048219)
(1.6665 0.139166 0.0399658)
(1.62978 0.158289 0.0391126)
(1.64907 0.164495 0.029039)
(1.52652 0.228011 0.0245076)
(1.33047 0.20985 0.0178705)
(1.04639 0.270098 0.0150803)
(1.03663 0.220445 0.0139196)
(0.877709 0.235257 0.0146597)
(0.91833 0.137569 0.0131669)
(0.728775 0.11454 0.0142949)
(0.807585 -0.0123242 0.0107055)
(0.534006 -0.0864114 0.00618403)
(0.643196 -0.393761 -0.0120176)
(0.274766 -0.82292 -0.0347172)
(0.411789 -2.12344 -0.010782)
(-0.28889 -4.38876 0.0539572)
(-0.0245657 -7.20492 0.106923)
(-0.206071 0.0880546 0.0739564)
(-0.253636 0.697947 0.163733)
(-0.224546 0.859588 0.212403)
(-0.192247 0.989563 0.24963)
(-0.0846116 1.02795 0.277998)
(0.0755097 1.046 0.276454)
(0.29459 0.98786 0.276356)
(0.384226 0.942694 0.263169)
(0.493053 0.889267 0.240483)
(0.600388 0.842075 0.222379)
(0.707329 0.792 0.201758)
(0.800985 0.739502 0.183656)
(0.881111 0.69025 0.16773)
(0.950403 0.640424 0.155079)
(1.00261 0.591943 0.147095)
(1.05099 0.535711 0.14103)
(1.091 0.470158 0.139608)
(1.14234 0.412857 0.137051)
(1.20085 0.371712 0.143819)
(1.33796 0.285925 0.144265)
(1.64492 0.25516 0.150945)
(1.90173 0.194331 0.133085)
(1.92368 0.158818 0.131384)
(2.01865 0.124839 0.11868)
(2.00477 0.142174 0.109814)
(2.06032 0.121923 0.0983906)
(1.91913 0.20958 0.0883058)
(1.76312 0.185386 0.0776081)
(1.46068 0.283254 0.0680395)
(1.50343 0.251735 0.0646082)
(1.336 0.287067 0.0565314)
(1.46184 0.196402 0.0561185)
(1.25869 0.18943 0.0506196)
(1.4268 0.0571733 0.0469532)
(1.10394 0.00412019 0.0453871)
(1.29876 -0.218287 0.0237963)
(0.844219 -0.494012 0.00766701)
(1.06599 -1.46927 -0.00379179)
(0.27582 -3.87079 0.0695316)
(0.461477 -7.13566 0.108111)
(-0.717637 0.800875 0.228366)
(-0.558508 0.409912 0.323147)
(-0.681669 0.582859 0.333098)
(-0.415842 0.609134 0.345842)
(-0.277255 0.610946 0.357481)
(-0.0017542 0.667612 0.355372)
(0.236672 0.634357 0.347263)
(0.451754 0.606264 0.334649)
(0.627334 0.575379 0.315251)
(0.811626 0.547598 0.298167)
(0.984629 0.515341 0.279118)
(1.14989 0.482526 0.262273)
(1.29144 0.453782 0.24662)
(1.41922 0.431403 0.234059)
(1.51775 0.414024 0.226737)
(1.61495 0.383985 0.222152)
(1.71354 0.334863 0.222966)
(1.8631 0.302536 0.225268)
(2.03029 0.267152 0.235015)
(2.30041 0.17428 0.232913)
(2.69689 0.147109 0.232875)
(3.07866 0.0769663 0.206592)
(3.14944 0.032894 0.194709)
(3.31005 -0.0029254 0.172046)
(3.26293 0.0153281 0.162861)
(3.36462 0.0197209 0.150867)
(3.19681 0.113151 0.140043)
(3.12507 0.117282 0.127633)
(2.76996 0.221746 0.115714)
(2.9262 0.224769 0.11224)
(2.72727 0.249097 0.102479)
(3.0374 0.175793 0.0989976)
(2.76076 0.135106 0.0937216)
(3.11032 0.0455281 0.0904662)
(2.64096 -0.0168064 0.0873756)
(3.01087 -0.190746 0.0793539)
(2.35683 -0.477185 0.0698814)
(2.74716 -1.11627 0.0519287)
(1.79682 -3.14791 0.0735035)
(1.28925 -6.05304 0.123355)
(1.16021 1.46214 0.109779)
(1.73043 0.716075 0.150426)
(2.48537 0.573034 0.167371)
(2.90327 0.358169 0.175736)
(3.19005 0.292643 0.179709)
(3.43775 0.221558 0.186052)
(3.68267 0.21625 0.190859)
(3.89575 0.186073 0.199486)
(4.08506 0.176767 0.203082)
(4.28354 0.164772 0.204953)
(4.47288 0.155808 0.203137)
(4.66721 0.145242 0.200456)
(4.82561 0.136802 0.197587)
(4.97448 0.12968 0.19432)
(5.07696 0.128 0.194852)
(5.19672 0.123922 0.195938)
(5.33203 0.0966957 0.20198)
(5.56105 0.0844923 0.212131)
(5.8578 0.0992921 0.227007)
(6.29783 0.0668302 0.222985)
(6.6942 0.0489985 0.217377)
(7.14679 0.0216231 0.183036)
(7.15592 -0.00630714 0.158471)
(7.23769 -0.0412969 0.140545)
(7.03816 -0.0524961 0.122201)
(7.03082 -0.0569056 0.108129)
(6.68001 -0.0221382 0.104162)
(6.64536 -0.00251631 0.0952589)
(6.18533 0.0446029 0.0931386)
(6.44281 0.0687254 0.0914506)
(6.20994 0.0927201 0.0876211)
(6.67546 0.082221 0.0834166)
(6.3708 0.0515555 0.0823273)
(6.78715 0.0154995 0.0806277)
(6.24113 -0.0194412 0.0816468)
(6.47642 -0.0990806 0.0832691)
(5.59752 -0.25736 0.0855012)
(5.64278 -0.579375 0.0842893)
(4.22807 -1.12438 0.0882422)
(2.76245 -2.51537 0.136926)
(0.00175501 -0.00122767 0.00665498)
(0.016651 -0.00538809 0.0128268)
(0.0327 -0.00509136 0.0141558)
(0.0414385 -0.00502183 0.0114068)
(0.043371 -0.00185798 0.00856172)
(0.0376534 -0.00381274 0.00471415)
(0.0236928 0.00211279 0.00229135)
(0.00597058 0.00618766 0.00115808)
(-0.0181348 0.00465358 -0.00317226)
(-0.0590142 0.00343725 -0.000804462)
(-0.103291 -0.00128785 -0.000541284)
(-0.161522 -0.00571906 0.00417101)
(-0.22331 -0.003059 0.00978178)
(-0.311027 -0.00307892 0.0225653)
(-0.412432 0.00836354 0.0560508)
(-0.525676 0.0126187 0.0836398)
(-0.645922 0.0104668 0.132592)
(-0.793192 0.0108727 0.185617)
(-0.906312 0.0100035 0.261597)
(-1.06048 0.0102934 0.319676)
(-1.03007 0.0363187 0.397333)
(-0.892681 0.0226799 0.427746)
(-0.876978 0.0310254 0.452072)
(-0.85203 -0.00161095 0.463623)
(-0.831272 -0.0410364 0.490198)
(-0.767803 -0.0797609 0.528495)
(-0.691454 -0.114476 0.572821)
(-0.572812 -0.137221 0.610067)
(-0.440893 -0.147142 0.638531)
(-0.265258 -0.1327 0.649882)
(-0.102604 -0.120085 0.642739)
(0.0877322 -0.0549156 0.587018)
(0.26094 -0.0174291 0.511048)
(0.320404 0.0331 0.379368)
(0.302261 0.0644776 0.239838)
(0.229575 0.0507725 0.139792)
(0.141297 0.0329934 0.0783573)
(0.0666887 0.0177612 0.0485552)
(0.0204049 0.007313 0.031199)
(-0.00140557 -0.00172058 0.00948646)
(0.00490334 -0.0166119 0.0136798)
(0.0290011 -0.029805 0.0323464)
(0.0498342 -0.0256746 0.0402105)
(0.0576656 -0.011569 0.0397862)
(0.0461942 -0.000271621 0.036834)
(0.0197089 0.0136475 0.0323622)
(-0.0271529 0.0294576 0.0254767)
(-0.107768 0.0493993 0.0292031)
(-0.211409 0.065707 0.0266338)
(-0.350132 0.0878981 0.0365054)
(-0.508831 0.117108 0.048667)
(-0.687541 0.151349 0.074584)
(-0.886608 0.18669 0.104843)
(-1.11544 0.208572 0.15337)
(-1.35789 0.212258 0.219372)
(-1.60383 0.184883 0.299268)
(-1.81787 0.146629 0.384236)
(-2.02036 0.105568 0.47055)
(-2.16514 0.0611767 0.569881)
(-2.2645 0.0267268 0.639404)
(-2.13112 0.00642209 0.716344)
(-1.89759 -0.0583996 0.71364)
(-1.80831 -0.153335 0.7227)
(-1.70157 -0.260334 0.723071)
(-1.61254 -0.373885 0.74028)
(-1.49093 -0.480197 0.755365)
(-1.3656 -0.571586 0.767606)
(-1.20045 -0.634418 0.772553)
(-1.02348 -0.6581 0.769384)
(-0.820814 -0.622978 0.757416)
(-0.614554 -0.544795 0.728524)
(-0.371649 -0.392955 0.686548)
(-0.109991 -0.245648 0.631651)
(0.115535 -0.0712265 0.53035)
(0.236564 0.0625781 0.408562)
(0.249956 0.131872 0.287971)
(0.206119 0.129826 0.206116)
(0.125076 0.107115 0.152934)
(0.05345 0.073629 0.105831)
(0.00717344 0.0307091 0.0391137)
(0.00537607 -0.0396172 0.0234379)
(0.0237867 -0.0584882 0.0539991)
(0.0340684 -0.0372608 0.0680621)
(0.0185144 -0.00175131 0.0699479)
(-0.0222359 0.0368961 0.0676539)
(-0.0920278 0.0843411 0.0651444)
(-0.203853 0.131049 0.0663936)
(-0.36059 0.193671 0.068481)
(-0.557351 0.262566 0.0778489)
(-0.785671 0.331955 0.094762)
(-1.02369 0.398699 0.120908)
(-1.26599 0.44801 0.159503)
(-1.5027 0.469113 0.210291)
(-1.74934 0.4366 0.27638)
(-1.97886 0.369779 0.357792)
(-2.16908 0.296531 0.42737)
(-2.30803 0.225812 0.494858)
(-2.43196 0.147868 0.558442)
(-2.49403 0.071396 0.627937)
(-2.5152 -0.0116936 0.662984)
(-2.31163 -0.0859151 0.679626)
(-2.08046 -0.240311 0.669917)
(-1.94779 -0.395548 0.656342)
(-1.83079 -0.536862 0.631113)
(-1.75897 -0.684236 0.608413)
(-1.66967 -0.829409 0.585519)
(-1.58315 -0.956003 0.571556)
(-1.46336 -1.05395 0.551826)
(-1.32803 -1.10318 0.528532)
(-1.16805 -1.07964 0.501844)
(-1.01855 -0.977338 0.476593)
(-0.844484 -0.777421 0.462459)
(-0.608502 -0.539414 0.457581)
(-0.332885 -0.272223 0.441975)
(-0.076212 -0.0363695 0.388309)
(0.0665147 0.1337 0.32066)
(0.101556 0.190784 0.258449)
(0.080997 0.192197 0.207945)
(0.0373832 0.150358 0.146713)
(0.00442636 0.0729794 0.0534537)
(0.00226683 -0.058599 0.0351145)
(0.00579073 -0.0695733 0.0780676)
(-0.0193867 -0.024131 0.0943177)
(-0.0736567 0.0514172 0.0969871)
(-0.156792 0.135952 0.0937514)
(-0.286139 0.228276 0.0924485)
(-0.463702 0.332412 0.0941568)
(-0.687927 0.445387 0.100091)
(-0.941111 0.545924 0.110008)
(-1.1944 0.618734 0.134618)
(-1.42042 0.657345 0.167289)
(-1.62439 0.649127 0.210667)
(-1.8246 0.589829 0.262457)
(-2.00862 0.491827 0.330631)
(-2.14134 0.400142 0.38043)
(-2.23497 0.315205 0.419536)
(-2.29501 0.229707 0.453119)
(-2.35075 0.133796 0.481848)
(-2.36176 0.039412 0.502969)
(-2.34353 -0.0831578 0.49435)
(-2.17851 -0.202058 0.504848)
(-1.93687 -0.384736 0.467928)
(-1.82597 -0.526015 0.432622)
(-1.75176 -0.677967 0.393625)
(-1.71419 -0.834403 0.35963)
(-1.66746 -0.996386 0.330313)
(-1.62019 -1.14536 0.311452)
(-1.54484 -1.27376 0.29364)
(-1.44852 -1.36179 0.276729)
(-1.32212 -1.37894 0.258375)
(-1.19 -1.31023 0.245207)
(-1.07739 -1.12347 0.242944)
(-0.934691 -0.83602 0.279063)
(-0.683988 -0.513763 0.312945)
(-0.385032 -0.197987 0.341727)
(-0.158331 0.0442445 0.315679)
(-0.037792 0.17979 0.278699)
(0.00358555 0.221503 0.233013)
(0.00558315 0.191324 0.165425)
(-0.000928562 0.0950709 0.05822)
(-0.00231755 -0.0681155 0.0545539)
(-0.0330928 -0.04683 0.113698)
(-0.0996174 0.0402585 0.133823)
(-0.196917 0.174847 0.127348)
(-0.334264 0.308269 0.122558)
(-0.508863 0.452186 0.117811)
(-0.718166 0.591295 0.119975)
(-0.952947 0.715546 0.121724)
(-1.19355 0.79989 0.13255)
(-1.41049 0.821537 0.150516)
(-1.5949 0.785276 0.176539)
(-1.75772 0.704456 0.214176)
(-1.89024 0.599979 0.262564)
(-1.98604 0.499462 0.301251)
(-2.04812 0.412364 0.323006)
(-2.09269 0.319857 0.332649)
(-2.12071 0.226594 0.336913)
(-2.15544 0.122217 0.336173)
(-2.16609 0.025904 0.3313)
(-2.16546 -0.11044 0.31334)
(-2.01458 -0.255598 0.301624)
(-1.8028 -0.4187 0.2542)
(-1.72305 -0.580386 0.220722)
(-1.6798 -0.739794 0.176774)
(-1.66335 -0.898497 0.148177)
(-1.63831 -1.07181 0.118662)
(-1.6151 -1.23423 0.106456)
(-1.5684 -1.38936 0.0980042)
(-1.50426 -1.5188 0.0953162)
(-1.40425 -1.58977 0.0960529)
(-1.28392 -1.57572 0.102425)
(-1.16197 -1.44823 0.119014)
(-1.08474 -1.18368 0.151533)
(-0.928937 -0.800677 0.232154)
(-0.630896 -0.428113 0.279063)
(-0.337701 -0.0914014 0.317967)
(-0.150357 0.125 0.300845)
(-0.0614033 0.217908 0.25477)
(-0.0201473 0.209837 0.175452)
(-0.0052259 0.105368 0.0608046)
(-0.00550054 -0.0559165 0.078163)
(-0.0743603 0.0161523 0.152615)
(-0.192253 0.168086 0.168535)
(-0.332433 0.352218 0.153342)
(-0.502349 0.529663 0.140912)
(-0.68748 0.697144 0.130472)
(-0.889089 0.83636 0.126159)
(-1.10538 0.92006 0.123778)
(-1.33036 0.912815 0.122655)
(-1.52381 0.860547 0.137566)
(-1.65369 0.776642 0.162896)
(-1.73906 0.683226 0.189476)
(-1.80386 0.592154 0.213392)
(-1.85629 0.503042 0.225252)
(-1.89094 0.413383 0.220668)
(-1.9227 0.321629 0.207712)
(-1.95056 0.230711 0.189843)
(-1.98376 0.13076 0.168117)
(-2.01205 0.0339388 0.132782)
(-2.03012 -0.0916635 0.0986957)
(-1.90302 -0.223907 0.0781021)
(-1.70369 -0.405854 0.0347799)
(-1.62269 -0.56602 -0.00563657)
(-1.59359 -0.730054 -0.0369806)
(-1.5885 -0.889463 -0.0524365)
(-1.57439 -1.0667 -0.0667107)
(-1.56911 -1.24462 -0.0734094)
(-1.5475 -1.4196 -0.0627509)
(-1.5114 -1.58417 -0.054428)
(-1.44592 -1.71272 -0.038331)
(-1.35028 -1.77287 -0.012674)
(-1.22649 -1.71637 0.0194843)
(-1.12984 -1.54702 0.0583634)
(-1.06184 -1.17612 0.137954)
(-0.83681 -0.742286 0.230672)
(-0.502674 -0.310934 0.300108)
(-0.244699 0.0172387 0.304892)
(-0.104206 0.177541 0.271)
(-0.0337425 0.201371 0.187378)
(-0.00604786 0.103034 0.0661153)
(-0.0118057 -0.0109934 0.118322)
(-0.112755 0.118576 0.196773)
(-0.273464 0.327896 0.202937)
(-0.439449 0.549048 0.174725)
(-0.616591 0.741923 0.153796)
(-0.791327 0.894471 0.133184)
(-0.994109 0.973557 0.121023)
(-1.22312 0.954344 0.102868)
(-1.40613 0.895644 0.109753)
(-1.51244 0.836869 0.119508)
(-1.5775 0.773022 0.129341)
(-1.62645 0.698902 0.134994)
(-1.67014 0.612175 0.138124)
(-1.71005 0.527765 0.126137)
(-1.7411 0.443407 0.106676)
(-1.7764 0.359206 0.0704865)
(-1.81188 0.275741 0.0327032)
(-1.85253 0.186786 -0.00943082)
(-1.8801 0.0897645 -0.0448135)
(-1.91304 -0.0315447 -0.0784956)
(-1.82005 -0.143594 -0.0980864)
(-1.6265 -0.340154 -0.120259)
(-1.53966 -0.508826 -0.143901)
(-1.51334 -0.678565 -0.163851)
(-1.51073 -0.849214 -0.176347)
(-1.50555 -1.03378 -0.182289)
(-1.50303 -1.22663 -0.179032)
(-1.49639 -1.42109 -0.174233)
(-1.48233 -1.6138 -0.164633)
(-1.44819 -1.78776 -0.154067)
(-1.38281 -1.91516 -0.110384)
(-1.28784 -1.94768 -0.0712047)
(-1.16408 -1.85443 -0.0161208)
(-1.10549 -1.59991 0.0451519)
(-0.975069 -1.12872 0.14555)
(-0.648512 -0.628764 0.246326)
(-0.331588 -0.166948 0.297402)
(-0.138317 0.0970657 0.29069)
(-0.0384061 0.179935 0.199084)
(-0.00414943 0.0997534 0.0743462)
(-0.0225346 0.0422928 0.135605)
(-0.147969 0.231186 0.222747)
(-0.328148 0.470341 0.21548)
(-0.505717 0.698336 0.175086)
(-0.685159 0.870954 0.141194)
(-0.878357 0.973492 0.109139)
(-1.09496 0.971908 0.0915776)
(-1.25842 0.933707 0.0862455)
(-1.35857 0.907509 0.0849472)
(-1.42356 0.866118 0.0805677)
(-1.46189 0.800679 0.0748888)
(-1.49874 0.725668 0.0645872)
(-1.5354 0.643797 0.05367)
(-1.57559 0.566008 0.020123)
(-1.61156 0.490426 -0.0137612)
(-1.65119 0.411542 -0.0514342)
(-1.68846 0.336788 -0.0915349)
(-1.73134 0.257127 -0.13283)
(-1.76149 0.175675 -0.167172)
(-1.78242 0.0529605 -0.190156)
(-1.73855 -0.0462468 -0.201872)
(-1.56298 -0.251931 -0.230333)
(-1.45838 -0.435124 -0.245701)
(-1.42754 -0.612601 -0.257356)
(-1.42253 -0.789014 -0.260958)
(-1.42122 -0.979971 -0.259138)
(-1.42094 -1.17957 -0.250085)
(-1.42375 -1.39021 -0.236288)
(-1.426 -1.60523 -0.22347)
(-1.41757 -1.81607 -0.207774)
(-1.38887 -2.0006 -0.189083)
(-1.32282 -2.11654 -0.137852)
(-1.21979 -2.11268 -0.0878337)
(-1.11935 -1.95874 -0.0233893)
(-1.04017 -1.5618 0.0584906)
(-0.789015 -0.999605 0.157027)
(-0.424371 -0.434859 0.263217)
(-0.167136 0.000176299 0.257581)
(-0.0363788 0.136104 0.208839)
(-0.00325596 0.0944888 0.0801907)
(-0.0282431 0.103381 0.157672)
(-0.173208 0.348743 0.250263)
(-0.364353 0.593491 0.230282)
(-0.539962 0.798306 0.172803)
(-0.726557 0.936896 0.128661)
(-0.925457 0.989569 0.0960543)
(-1.09447 0.987811 0.0819121)
(-1.20184 0.987806 0.0642416)
(-1.26617 0.957096 0.0501225)
(-1.30053 0.906829 0.0311553)
(-1.32687 0.837935 0.0151021)
(-1.36361 0.765461 -0.00469516)
(-1.40934 0.69058 -0.0311837)
(-1.45457 0.615865 -0.0673652)
(-1.49532 0.541275 -0.106766)
(-1.53297 0.464149 -0.146039)
(-1.56553 0.391606 -0.181544)
(-1.60099 0.315893 -0.211347)
(-1.63535 0.243221 -0.236912)
(-1.64983 0.135932 -0.252168)
(-1.64484 0.0176055 -0.261533)
(-1.50172 -0.156655 -0.273712)
(-1.37064 -0.362238 -0.291221)
(-1.33248 -0.544782 -0.299693)
(-1.32166 -0.727239 -0.300071)
(-1.32036 -0.919757 -0.294606)
(-1.32431 -1.12396 -0.281629)
(-1.33241 -1.34198 -0.267146)
(-1.34557 -1.57312 -0.251007)
(-1.35989 -1.81002 -0.237235)
(-1.35877 -2.03463 -0.218779)
(-1.3294 -2.21123 -0.194365)
(-1.24962 -2.29458 -0.139603)
(-1.14162 -2.23818 -0.0882244)
(-1.05375 -1.96207 -0.0164095)
(-0.875786 -1.41205 0.0657003)
(-0.510135 -0.760321 0.169122)
(-0.211531 -0.184167 0.220882)
(-0.0668206 0.0760328 0.19691)
(0.00104846 0.0837019 0.0831855)
(-0.0319001 0.17721 0.171901)
(-0.187666 0.47571 0.273337)
(-0.382353 0.721577 0.248741)
(-0.552313 0.903155 0.183116)
(-0.742603 1.01142 0.129189)
(-0.917032 1.04354 0.0902718)
(-1.0415 1.05853 0.0629153)
(-1.1089 1.0463 0.0349229)
(-1.14024 1.0081 0.0116527)
(-1.1662 0.947079 -0.0170685)
(-1.20002 0.880151 -0.0456632)
(-1.24556 0.80471 -0.0720171)
(-1.29636 0.731078 -0.105053)
(-1.34327 0.654191 -0.144735)
(-1.38282 0.576498 -0.183447)
(-1.41496 0.495558 -0.216239)
(-1.44103 0.418367 -0.240734)
(-1.46766 0.339546 -0.25718)
(-1.50099 0.263797 -0.268144)
(-1.52259 0.174276 -0.278422)
(-1.51598 0.0503559 -0.286281)
(-1.41393 -0.0804942 -0.291514)
(-1.27771 -0.294822 -0.311475)
(-1.21767 -0.475389 -0.31193)
(-1.20241 -0.660786 -0.313113)
(-1.20076 -0.846938 -0.306102)
(-1.20721 -1.05352 -0.292735)
(-1.22533 -1.27139 -0.278185)
(-1.24905 -1.51359 -0.261852)
(-1.27162 -1.76471 -0.244472)
(-1.2897 -2.01901 -0.224019)
(-1.29061 -2.24813 -0.197848)
(-1.25623 -2.40547 -0.167021)
(-1.16444 -2.44099 -0.116439)
(-1.05623 -2.2898 -0.0688912)
(-0.921839 -1.83487 0.00176839)
(-0.621879 -1.13181 0.0787701)
(-0.258448 -0.444935 0.180735)
(-0.0676497 -0.00734674 0.16078)
(-0.00464972 0.0626068 0.0817791)
(-0.030152 0.250875 0.181503)
(-0.185429 0.601548 0.29211)
(-0.376207 0.847723 0.266594)
(-0.544824 1.0124 0.192838)
(-0.726966 1.09049 0.132293)
(-0.865857 1.12151 0.0806696)
(-0.946579 1.12709 0.0412196)
(-0.983564 1.1061 0.00431799)
(-1.01214 1.05279 -0.0346023)
(-1.03976 0.983557 -0.0681859)
(-1.08007 0.914315 -0.102261)
(-1.13372 0.839499 -0.132786)
(-1.18766 0.763413 -0.167375)
(-1.23452 0.682941 -0.205857)
(-1.27153 0.599551 -0.239601)
(-1.29971 0.513182 -0.265003)
(-1.32037 0.428746 -0.279757)
(-1.3395 0.343615 -0.285439)
(-1.35943 0.261605 -0.286992)
(-1.38452 0.179107 -0.283835)
(-1.36803 0.0783789 -0.290253)
(-1.29566 -0.0386632 -0.295191)
(-1.1708 -0.223109 -0.305974)
(-1.08962 -0.409732 -0.299413)
(-1.07029 -0.589968 -0.303917)
(-1.06901 -0.774118 -0.29559)
(-1.08291 -0.973023 -0.285893)
(-1.10508 -1.19341 -0.273922)
(-1.13704 -1.43336 -0.261659)
(-1.16898 -1.69444 -0.243779)
(-1.1975 -1.96791 -0.221695)
(-1.21473 -2.23373 -0.195976)
(-1.20931 -2.46092 -0.163888)
(-1.16444 -2.58423 -0.134317)
(-1.06107 -2.53882 -0.095339)
(-0.926521 -2.21645 -0.0537104)
(-0.693259 -1.54834 0.00597485)
(-0.318071 -0.713906 0.0932458)
(-0.0779084 -0.114257 0.100755)
(-0.0125539 0.0413773 0.0673456)
(-0.0244925 0.318039 0.187551)
(-0.170105 0.718087 0.308083)
(-0.352086 0.964567 0.284187)
(-0.52017 1.10726 0.204762)
(-0.679723 1.16824 0.135355)
(-0.780905 1.19566 0.0718301)
(-0.831135 1.18886 0.0183137)
(-0.860756 1.15106 -0.0323066)
(-0.88966 1.08564 -0.0748515)
(-0.920878 1.01673 -0.117591)
(-0.971096 0.943914 -0.152901)
(-1.02849 0.866026 -0.184329)
(-1.08277 0.785174 -0.218513)
(-1.12658 0.69858 -0.251441)
(-1.1605 0.610214 -0.278103)
(-1.185 0.51942 -0.293828)
(-1.20098 0.430535 -0.299476)
(-1.21063 0.340408 -0.297283)
(-1.21603 0.255156 -0.292049)
(-1.22115 0.169762 -0.287579)
(-1.2005 0.091959 -0.287405)
(-1.14899 -0.0142784 -0.288965)
(-1.05104 -0.153423 -0.29144)
(-0.963677 -0.337715 -0.281945)
(-0.934773 -0.515104 -0.281078)
(-0.933713 -0.695528 -0.274241)
(-0.952078 -0.889581 -0.266565)
(-0.981173 -1.10198 -0.259792)
(-1.01445 -1.3373 -0.24826)
(-1.05235 -1.59755 -0.234115)
(-1.09073 -1.88277 -0.213625)
(-1.12327 -2.17898 -0.184925)
(-1.1382 -2.45918 -0.152964)
(-1.11957 -2.6705 -0.116821)
(-1.05405 -2.7346 -0.0912271)
(-0.930645 -2.53672 -0.0612311)
(-0.722613 -1.96659 -0.0416713)
(-0.368872 -1.06249 0.027451)
(-0.0922991 -0.292596 0.0694531)
(-0.0258879 0.0075252 0.0486217)
(-0.0160705 0.37585 0.186408)
(-0.143704 0.824724 0.316998)
(-0.317037 1.07234 0.296674)
(-0.47456 1.19222 0.212)
(-0.605946 1.24838 0.136093)
(-0.676152 1.26444 0.0599886)
(-0.71422 1.24589 -0.000747676)
(-0.740932 1.19059 -0.0627278)
(-0.772766 1.12337 -0.112458)
(-0.813361 1.04857 -0.156927)
(-0.866505 0.970663 -0.193577)
(-0.924495 0.88657 -0.226411)
(-0.976188 0.799348 -0.255669)
(-1.0163 0.706714 -0.282637)
(-1.04685 0.613888 -0.298917)
(-1.06802 0.52059 -0.305508)
(-1.07782 0.428301 -0.301954)
(-1.07679 0.335085 -0.293442)
(-1.06734 0.24712 -0.283999)
(-1.05267 0.161732 -0.276833)
(-1.02651 0.0911267 -0.277858)
(-0.984239 0.00117023 -0.271574)
(-0.916383 -0.104151 -0.263027)
(-0.850136 -0.263033 -0.257045)
(-0.812092 -0.440949 -0.249401)
(-0.809988 -0.61723 -0.242693)
(-0.829687 -0.806612 -0.239477)
(-0.856602 -1.0079 -0.234599)
(-0.891643 -1.23396 -0.227784)
(-0.930629 -1.48824 -0.217606)
(-0.974775 -1.77607 -0.199173)
(-1.01923 -2.09063 -0.177451)
(-1.05281 -2.41491 -0.146885)
(-1.06003 -2.69922 -0.113832)
(-1.01648 -2.87005 -0.0803378)
(-0.917263 -2.80456 -0.0641966)
(-0.740621 -2.35484 -0.049307)
(-0.434971 -1.44512 -0.0205999)
(-0.104398 -0.502713 0.0418023)
(-0.00734468 -0.0405743 0.0295548)
(-0.00655753 0.416521 0.186121)
(-0.113288 0.913356 0.326583)
(-0.274605 1.16167 0.309988)
(-0.414049 1.26706 0.222959)
(-0.515871 1.31731 0.13853)
(-0.56694 1.31798 0.0529424)
(-0.601131 1.28514 -0.0189914)
(-0.630491 1.22269 -0.0855169)
(-0.66813 1.15138 -0.137964)
(-0.71413 1.07265 -0.184159)
(-0.768228 0.988032 -0.222194)
(-0.8227 0.898501 -0.25391)
(-0.868835 0.804871 -0.281585)
(-0.904338 0.707994 -0.299561)
(-0.930566 0.612473 -0.306843)
(-0.946649 0.517232 -0.302733)
(-0.948994 0.422253 -0.290878)
(-0.936011 0.326854 -0.27682)
(-0.913256 0.238207 -0.264863)
(-0.881726 0.15645 -0.258508)
(-0.854221 0.0947232 -0.26067)
(-0.818628 0.0169393 -0.246558)
(-0.776588 -0.0724686 -0.234822)
(-0.744302 -0.20463 -0.220332)
(-0.713559 -0.369366 -0.212233)
(-0.703531 -0.545713 -0.207421)
(-0.718157 -0.723406 -0.206642)
(-0.743018 -0.914895 -0.204606)
(-0.775296 -1.12809 -0.201085)
(-0.81436 -1.37365 -0.192786)
(-0.86015 -1.65712 -0.182483)
(-0.910434 -1.98038 -0.163874)
(-0.956966 -2.33229 -0.137861)
(-0.986068 -2.67938 -0.103918)
(-0.96996 -2.94569 -0.0715033)
(-0.889961 -3.00586 -0.0457398)
(-0.728777 -2.69849 -0.0451891)
(-0.47147 -1.8476 -0.0424052)
(-0.121782 -0.725552 0.00986836)
(0.00502433 -0.101661 0.0204943)
(0.00328809 0.447949 0.177217)
(-0.0813568 0.992125 0.325838)
(-0.224662 1.24679 0.316055)
(-0.340539 1.34658 0.229656)
(-0.419708 1.38336 0.137147)
(-0.461525 1.36844 0.0423937)
(-0.493515 1.32233 -0.0329106)
(-0.526737 1.25568 -0.103831)
(-0.569694 1.1804 -0.155338)
(-0.619065 1.09711 -0.201154)
(-0.66985 1.00796 -0.238723)
(-0.71735 0.911194 -0.271063)
(-0.757172 0.811581 -0.294082)
(-0.786864 0.709733 -0.306053)
(-0.808458 0.611401 -0.302656)
(-0.819563 0.513217 -0.28956)
(-0.814997 0.416361 -0.269107)
(-0.791996 0.32069 -0.251287)
(-0.757581 0.234033 -0.238332)
(-0.713457 0.16202 -0.235373)
(-0.688289 0.103565 -0.236967)
(-0.670896 0.0302585 -0.215667)
(-0.65227 -0.0533439 -0.203404)
(-0.648399 -0.166566 -0.1869)
(-0.634973 -0.306225 -0.178313)
(-0.620097 -0.478498 -0.171259)
(-0.623558 -0.648182 -0.170357)
(-0.642043 -0.82822 -0.171422)
(-0.671856 -1.02917 -0.169827)
(-0.709808 -1.26248 -0.168931)
(-0.755305 -1.53805 -0.162402)
(-0.806836 -1.86068 -0.150469)
(-0.858815 -2.22823 -0.128227)
(-0.902871 -2.61829 -0.0980878)
(-0.909805 -2.9684 -0.0633762)
(-0.858256 -3.1507 -0.0356734)
(-0.712697 -2.98243 -0.0239532)
(-0.485674 -2.23894 -0.0398892)
(-0.143289 -1.00543 -0.0255269)
(0.00995521 -0.15252 0.00377168)
(0.00885061 0.462399 0.178763)
(-0.0524285 1.05279 0.332896)
(-0.169748 1.32231 0.339431)
(-0.264054 1.41935 0.250991)
(-0.325406 1.44208 0.14776)
(-0.362065 1.41203 0.045185)
(-0.395989 1.35629 -0.0391518)
(-0.433063 1.28336 -0.110759)
(-0.479462 1.20467 -0.16361)
(-0.527166 1.11968 -0.209919)
(-0.574128 1.02627 -0.247356)
(-0.614007 0.926077 -0.278109)
(-0.644094 0.819717 -0.296602)
(-0.66602 0.714169 -0.302286)
(-0.681829 0.612548 -0.290712)
(-0.688691 0.513876 -0.269616)
(-0.678549 0.416433 -0.243042)
(-0.647755 0.325467 -0.222281)
(-0.602772 0.248217 -0.21136)
(-0.555448 0.18359 -0.215454)
(-0.544028 0.113395 -0.208708)
(-0.544979 0.038025 -0.187262)
(-0.543354 -0.0408273 -0.175621)
(-0.557829 -0.137662 -0.160046)
(-0.568394 -0.251613 -0.149228)
(-0.560224 -0.403932 -0.140048)
(-0.547373 -0.574195 -0.135776)
(-0.558111 -0.745996 -0.13732)
(-0.582514 -0.935143 -0.139566)
(-0.617225 -1.15627 -0.142593)
(-0.661282 -1.42061 -0.142237)
(-0.712336 -1.73953 -0.134832)
(-0.766224 -2.11281 -0.117074)
(-0.817414 -2.53488 -0.0884738)
(-0.841019 -2.95024 -0.0547721)
(-0.816015 -3.24879 -0.0242515)
(-0.69008 -3.2181 -0.0130669)
(-0.482048 -2.60934 -0.025344)
(-0.151771 -1.33054 -0.0409799)
(0.0269947 -0.213878 -0.0168239)
(0.011433 0.473425 0.1715)
(-0.0180089 1.11096 0.330652)
(-0.110534 1.4095 0.346796)
(-0.189227 1.50156 0.262629)
(-0.235066 1.50429 0.156849)
(-0.270619 1.46189 0.0460277)
(-0.306875 1.39826 -0.0455015)
(-0.347195 1.3239 -0.119294)
(-0.391263 1.24831 -0.172711)
(-0.435251 1.16429 -0.218925)
(-0.471321 1.06996 -0.25478)
(-0.498221 0.962963 -0.27906)
(-0.518595 0.850371 -0.289147)
(-0.533524 0.738211 -0.286982)
(-0.546891 0.632505 -0.270794)
(-0.552706 0.531965 -0.244283)
(-0.538956 0.441997 -0.2145)
(-0.499965 0.363481 -0.194648)
(-0.454128 0.291317 -0.187811)
(-0.424635 0.212739 -0.185546)
(-0.430715 0.127216 -0.179249)
(-0.439711 0.0475731 -0.163297)
(-0.446976 -0.0297002 -0.152338)
(-0.472943 -0.115989 -0.138916)
(-0.498973 -0.211807 -0.126055)
(-0.514401 -0.331999 -0.117293)
(-0.499874 -0.487169 -0.103807)
(-0.489907 -0.661529 -0.105527)
(-0.507482 -0.844527 -0.110236)
(-0.538441 -1.05169 -0.117305)
(-0.578231 -1.3004 -0.120712)
(-0.626194 -1.61038 -0.11937)
(-0.680937 -1.98625 -0.107399)
(-0.737331 -2.43052 -0.0828234)
(-0.774744 -2.89991 -0.0485958)
(-0.768397 -3.30103 -0.0175474)
(-0.673889 -3.40668 -0.00133372)
(-0.482198 -2.93442 -0.00815968)
(-0.160321 -1.65612 -0.0387828)
(0.0429671 -0.260959 -0.0343773)
(0.0051996 0.476297 0.18385)
(-0.0133842 1.17435 0.360372)
(-0.0568205 1.49768 0.373184)
(-0.112598 1.59863 0.297583)
(-0.157612 1.58986 0.178903)
(-0.186484 1.53526 0.0614104)
(-0.220718 1.46659 -0.0362192)
(-0.254591 1.39002 -0.111453)
(-0.291962 1.31238 -0.15829)
(-0.327182 1.22849 -0.205212)
(-0.354991 1.13478 -0.239083)
(-0.373598 1.02991 -0.262143)
(-0.387231 0.917719 -0.265979)
(-0.400396 0.804147 -0.26208)
(-0.411485 0.696878 -0.243283)
(-0.410588 0.600802 -0.220095)
(-0.389102 0.515383 -0.196189)
(-0.35787 0.430915 -0.178934)
(-0.337029 0.341201 -0.162402)
(-0.328512 0.242148 -0.154342)
(-0.34141 0.148643 -0.154159)
(-0.352483 0.0620704 -0.14244)
(-0.364388 -0.0169394 -0.134914)
(-0.395457 -0.099928 -0.122924)
(-0.427082 -0.184662 -0.10848)
(-0.455428 -0.282354 -0.0996605)
(-0.463594 -0.401963 -0.0924411)
(-0.454486 -0.557326 -0.0856229)
(-0.44831 -0.73655 -0.0840338)
(-0.465349 -0.942072 -0.0930676)
(-0.500561 -1.18073 -0.100385)
(-0.542633 -1.47698 -0.103393)
(-0.594793 -1.84796 -0.0959211)
(-0.650994 -2.31075 -0.0753525)
(-0.698968 -2.83066 -0.0423518)
(-0.709572 -3.32897 -0.0104681)
(-0.642897 -3.57811 0.0125929)
(-0.481942 -3.25497 0.0109995)
(-0.169197 -2.00426 -0.0209909)
(0.0620915 -0.347711 -0.0360981)
(0.00602083 0.533046 0.160298)
(0.0127827 1.29295 0.353395)
(-0.0124622 1.6445 0.387283)
(-0.0427986 1.72999 0.312129)
(-0.0704897 1.71646 0.185576)
(-0.0940823 1.64573 0.0652311)
(-0.123995 1.58104 -0.0326644)
(-0.162204 1.50841 -0.10506)
(-0.186494 1.43967 -0.153875)
(-0.207742 1.36854 -0.186844)
(-0.219292 1.28932 -0.208851)
(-0.227635 1.19026 -0.223459)
(-0.242032 1.07167 -0.231278)
(-0.257129 0.944418 -0.229959)
(-0.267669 0.822843 -0.219285)
(-0.269977 0.708718 -0.206406)
(-0.265857 0.601547 -0.184871)
(-0.256511 0.493484 -0.16244)
(-0.253364 0.385876 -0.142403)
(-0.254073 0.277973 -0.13143)
(-0.270095 0.178916 -0.136882)
(-0.282086 0.0826273 -0.128695)
(-0.294218 -0.00213033 -0.12485)
(-0.326471 -0.0829161 -0.112396)
(-0.358595 -0.162769 -0.0964495)
(-0.389231 -0.247699 -0.0869537)
(-0.404596 -0.343339 -0.0810288)
(-0.414477 -0.459244 -0.0809519)
(-0.422444 -0.607637 -0.0775644)
(-0.427946 -0.793242 -0.076325)
(-0.443622 -1.01789 -0.0788433)
(-0.469241 -1.3077 -0.0854522)
(-0.508948 -1.67708 -0.0857833)
(-0.563674 -2.1487 -0.0720677)
(-0.61923 -2.70761 -0.040438)
(-0.650356 -3.30124 -0.00533174)
(-0.620181 -3.69429 0.0281202)
(-0.489034 -3.53531 0.0348211)
(-0.201234 -2.33717 -0.00288704)
(0.0604502 -0.399236 -0.0275211)
(-0.00079554 0.674645 0.195372)
(0.0118632 1.49371 0.386441)
(0.00706654 1.87185 0.42952)
(0.000707139 1.97153 0.361986)
(-0.0139504 1.94649 0.239366)
(-0.0288605 1.86764 0.108387)
(-0.0349097 1.78675 -0.00348572)
(-0.0478596 1.71811 -0.0752352)
(-0.058796 1.64736 -0.11222)
(-0.0616151 1.57288 -0.136041)
(-0.0730014 1.47606 -0.161934)
(-0.0978648 1.34864 -0.189014)
(-0.125959 1.20501 -0.206792)
(-0.149263 1.05678 -0.218788)
(-0.167696 0.915319 -0.210318)
(-0.176624 0.779787 -0.202064)
(-0.175745 0.658464 -0.186741)
(-0.174661 0.543306 -0.168453)
(-0.183925 0.434016 -0.149716)
(-0.192825 0.320857 -0.137562)
(-0.214436 0.214867 -0.139453)
(-0.227617 0.109266 -0.129597)
(-0.233811 0.0161695 -0.12368)
(-0.262042 -0.0659212 -0.110393)
(-0.293143 -0.144581 -0.0931405)
(-0.322615 -0.221991 -0.0820645)
(-0.337735 -0.30592 -0.076176)
(-0.348386 -0.401501 -0.0768859)
(-0.363881 -0.510607 -0.0776521)
(-0.382518 -0.652299 -0.080874)
(-0.408932 -0.832237 -0.0816509)
(-0.436649 -1.08586 -0.0800867)
(-0.4562 -1.42984 -0.070118)
(-0.470542 -1.91473 -0.0558918)
(-0.515939 -2.51781 -0.0319432)
(-0.566916 -3.19604 0.00114525)
(-0.572842 -3.73312 0.0377146)
(-0.478738 -3.77107 0.049414)
(-0.215863 -2.70447 0.011255)
(0.0666732 -0.533897 -0.0372572)
(-0.012379 0.69452 0.153784)
(0.0121022 1.54847 0.342313)
(0.0350747 1.97275 0.401572)
(0.0445241 2.10285 0.353014)
(0.0466415 2.09274 0.241411)
(0.0422691 2.02175 0.113691)
(0.04393 1.94014 0.00481453)
(0.0429447 1.85118 -0.0772128)
(0.0499637 1.76381 -0.112894)
(0.0409705 1.66595 -0.139229)
(0.0184928 1.5387 -0.164927)
(-0.00160377 1.39743 -0.186123)
(-0.0254435 1.24659 -0.19973)
(-0.0490122 1.09478 -0.207692)
(-0.0692944 0.950177 -0.209003)
(-0.078209 0.817915 -0.216079)
(-0.0843165 0.701327 -0.215804)
(-0.0952701 0.592002 -0.209657)
(-0.120454 0.486303 -0.19717)
(-0.142636 0.369013 -0.17555)
(-0.170269 0.252661 -0.167662)
(-0.184947 0.143487 -0.143511)
(-0.184172 0.0416147 -0.130395)
(-0.205516 -0.0470874 -0.117082)
(-0.230569 -0.128175 -0.100767)
(-0.256769 -0.200246 -0.0864443)
(-0.272004 -0.27578 -0.0785332)
(-0.280142 -0.361344 -0.077769)
(-0.295127 -0.452638 -0.0777168)
(-0.311222 -0.563464 -0.0808729)
(-0.340308 -0.692621 -0.0871599)
(-0.378072 -0.877706 -0.0963708)
(-0.438389 -1.1432 -0.10201)
(-0.481448 -1.56902 -0.0862802)
(-0.481307 -2.15939 -0.0392145)
(-0.49485 -2.90813 0.00129806)
(-0.527758 -3.58501 0.0476647)
(-0.478771 -3.86187 0.0734171)
(-0.261643 -3.02223 0.049215)
(0.0341092 -0.807503 0.00118484)
(-0.00736691 0.655277 0.142664)
(0.0297442 1.50686 0.311737)
(0.0693986 1.95524 0.381863)
(0.0911818 2.11745 0.348087)
(0.102748 2.12559 0.249748)
(0.104979 2.06387 0.129644)
(0.112937 1.98223 0.0235095)
(0.122113 1.89118 -0.0552804)
(0.13555 1.79086 -0.101904)
(0.135839 1.67896 -0.131408)
(0.120504 1.55845 -0.1539)
(0.0940994 1.42231 -0.177595)
(0.0637974 1.27114 -0.194831)
(0.0405451 1.11918 -0.21358)
(0.023344 0.976748 -0.227459)
(0.0162376 0.847037 -0.248591)
(0.00982249 0.733172 -0.268605)
(-0.00991347 0.627955 -0.2831)
(-0.0566547 0.524869 -0.289654)
(-0.100472 0.407262 -0.256036)
(-0.132747 0.283157 -0.22047)
(-0.146375 0.171318 -0.173983)
(-0.143152 0.0631092 -0.148316)
(-0.155436 -0.0291991 -0.133068)
(-0.169116 -0.115006 -0.116456)
(-0.186644 -0.188705 -0.103653)
(-0.20235 -0.257529 -0.0902475)
(-0.208462 -0.334912 -0.0861761)
(-0.219279 -0.415743 -0.0832879)
(-0.229447 -0.51247 -0.0833151)
(-0.250722 -0.618242 -0.0853943)
(-0.275374 -0.762822 -0.0906102)
(-0.320109 -0.95525 -0.0979084)
(-0.392402 -1.26679 -0.101768)
(-0.456436 -1.74859 -0.075472)
(-0.477203 -2.46551 -0.0175324)
(-0.521188 -3.21128 0.0235108)
(-0.520593 -3.68479 0.0690749)
(-0.359267 -3.09965 0.0545713)
(-0.0459717 -0.899511 0.0116957)
(-0.00193809 0.617717 0.110161)
(0.0519644 1.44344 0.263783)
(0.106557 1.91105 0.341293)
(0.13761 2.0974 0.323937)
(0.156087 2.12248 0.240293)
(0.163704 2.07083 0.132171)
(0.176829 1.99276 0.0286987)
(0.18688 1.90306 -0.0504515)
(0.203656 1.80016 -0.100525)
(0.210864 1.68504 -0.131913)
(0.199901 1.55778 -0.156368)
(0.177625 1.41714 -0.181682)
(0.151932 1.26911 -0.201898)
(0.133112 1.12266 -0.225275)
(0.120275 0.983153 -0.250553)
(0.117083 0.853449 -0.288868)
(0.107452 0.735373 -0.336867)
(0.0767821 0.621182 -0.378263)
(0.0104216 0.510539 -0.391893)
(-0.0571722 0.402875 -0.358979)
(-0.0972962 0.283041 -0.292501)
(-0.110344 0.177332 -0.222115)
(-0.100989 0.0748549 -0.180118)
(-0.105978 -0.015929 -0.15474)
(-0.113083 -0.0981256 -0.137422)
(-0.118087 -0.175963 -0.12537)
(-0.128103 -0.244187 -0.114219)
(-0.133848 -0.318503 -0.104901)
(-0.1463 -0.392045 -0.0978227)
(-0.153826 -0.480275 -0.0933545)
(-0.173277 -0.571229 -0.0917122)
(-0.191699 -0.695234 -0.0915822)
(-0.227815 -0.850979 -0.0924816)
(-0.277687 -1.11029 -0.0881293)
(-0.337505 -1.48097 -0.064689)
(-0.389697 -2.09466 -0.0151299)
(-0.47067 -2.82988 0.0206934)
(-0.511646 -3.42808 0.0641141)
(-0.396815 -3.07224 0.0550341)
(-0.0988711 -0.972001 0.0116671)
(0.00178858 0.567884 0.0896337)
(0.0700994 1.3642 0.226971)
(0.140001 1.84965 0.309737)
(0.180294 2.06175 0.306368)
(0.207138 2.10387 0.236499)
(0.218495 2.06196 0.138211)
(0.23454 1.98632 0.0387342)
(0.24926 1.89846 -0.0400151)
(0.267228 1.79849 -0.0941645)
(0.277136 1.68381 -0.12989)
(0.273663 1.55551 -0.155092)
(0.258327 1.41576 -0.180017)
(0.23962 1.26955 -0.202695)
(0.227758 1.12404 -0.231825)
(0.217071 0.983234 -0.269718)
(0.210108 0.845086 -0.322486)
(0.191874 0.711869 -0.385244)
(0.150681 0.581699 -0.438312)
(0.0823121 0.457596 -0.459307)
(0.00495928 0.350102 -0.420904)
(-0.0433856 0.253186 -0.334447)
(-0.0536808 0.167042 -0.255872)
(-0.0458716 0.0715026 -0.206603)
(-0.0441689 -0.00714797 -0.178863)
(-0.0470113 -0.0813727 -0.156994)
(-0.0483213 -0.155918 -0.14527)
(-0.0542135 -0.225365 -0.133833)
(-0.0553055 -0.300771 -0.126159)
(-0.0644706 -0.370152 -0.116884)
(-0.0682336 -0.454327 -0.108162)
(-0.0837184 -0.538978 -0.0992938)
(-0.0962934 -0.651448 -0.0917522)
(-0.129718 -0.782961 -0.0829925)
(-0.166065 -1.00599 -0.0711128)
(-0.230246 -1.32826 -0.0460149)
(-0.301461 -1.89194 -0.00811537)
(-0.410288 -2.60859 0.0253256)
(-0.479307 -3.28805 0.0638826)
(-0.407057 -3.13026 0.0543389)
(-0.140719 -1.19143 0.00427793)
(0.00692394 0.513856 0.0654712)
(0.0873168 1.27084 0.186997)
(0.169578 1.7728 0.273561)
(0.218263 2.01246 0.28351)
(0.253316 2.07386 0.227673)
(0.26969 2.04231 0.138811)
(0.289455 1.97013 0.044539)
(0.306822 1.8839 -0.0334)
(0.325497 1.78491 -0.0889481)
(0.337843 1.67349 -0.12789)
(0.33917 1.54806 -0.155973)
(0.332544 1.41108 -0.181175)
(0.323705 1.26711 -0.203061)
(0.318786 1.12015 -0.232154)
(0.306428 0.973542 -0.276624)
(0.292328 0.824482 -0.336796)
(0.26571 0.678687 -0.39878)
(0.21721 0.538116 -0.449325)
(0.146595 0.408739 -0.463255)
(0.0821653 0.292876 -0.425726)
(0.0459815 0.201875 -0.353452)
(0.0204026 0.13556 -0.274724)
(0.0265995 0.0662925 -0.229127)
(0.0366902 -0.0043362 -0.197481)
(0.0298674 -0.0668317 -0.176879)
(0.0298616 -0.136082 -0.162571)
(0.0218435 -0.202505 -0.152921)
(0.0221708 -0.278406 -0.145436)
(0.0106737 -0.349129 -0.136677)
(0.00304413 -0.433747 -0.125402)
(-0.0165357 -0.512925 -0.11293)
(-0.0256228 -0.617203 -0.0960015)
(-0.0567294 -0.731658 -0.0745944)
(-0.0852828 -0.942719 -0.0500618)
(-0.150563 -1.24282 -0.0229459)
(-0.223967 -1.7824 0.0106176)
(-0.341151 -2.49932 0.0419294)
(-0.425056 -3.26053 0.0667057)
(-0.39005 -3.2621 0.0570621)
(-0.145044 -1.442 0.00894736)
(0.0109224 0.465852 0.0491664)
(0.102846 1.17058 0.150531)
(0.195432 1.68535 0.24077)
(0.249184 1.95716 0.263844)
(0.292281 2.04239 0.222041)
(0.315479 2.02453 0.143106)
(0.340348 1.95575 0.0543797)
(0.361876 1.87106 -0.0226462)
(0.381624 1.77341 -0.0788232)
(0.396109 1.66438 -0.120492)
(0.403399 1.54363 -0.151141)
(0.405382 1.41167 -0.177267)
(0.403916 1.27043 -0.199029)
(0.402789 1.12108 -0.227042)
(0.388153 0.967033 -0.273156)
(0.367943 0.809033 -0.333438)
(0.33651 0.653539 -0.386991)
(0.288003 0.504452 -0.427371)
(0.220874 0.367701 -0.438306)
(0.159293 0.246614 -0.413089)
(0.142696 0.150397 -0.354582)
(0.140778 0.0945702 -0.293889)
(0.13327 0.0519373 -0.240046)
(0.133934 -0.00944666 -0.217405)
(0.127405 -0.0626368 -0.191609)
(0.119993 -0.127805 -0.177776)
(0.107523 -0.185255 -0.166098)
(0.104131 -0.257139 -0.158144)
(0.0906318 -0.321479 -0.145795)
(0.0871232 -0.401776 -0.133969)
(0.0685122 -0.480529 -0.119736)
(0.0599171 -0.585456 -0.105327)
(0.0147602 -0.697555 -0.0811142)
(-0.0129612 -0.887624 -0.0561732)
(-0.073652 -1.18579 -0.0113617)
(-0.146887 -1.72959 0.013389)
(-0.280152 -2.47991 0.0440199)
(-0.38236 -3.34521 0.0639633)
(-0.386774 -3.49449 0.0560952)
(-0.153718 -1.73116 0.00999506)
(0.00940617 0.414565 0.0352513)
(0.112895 1.05616 0.115672)
(0.224264 1.56872 0.200895)
(0.278834 1.87535 0.239159)
(0.324472 1.98824 0.212321)
(0.353682 1.98893 0.144893)
(0.38497 1.92845 0.0629032)
(0.411852 1.84505 -0.0125561)
(0.432991 1.7488 -0.067918)
(0.449741 1.64249 -0.110924)
(0.461505 1.52703 -0.143256)
(0.470309 1.40016 -0.170503)
(0.47502 1.26311 -0.19348)
(0.47682 1.11395 -0.222645)
(0.461108 0.955145 -0.265079)
(0.438566 0.792986 -0.317691)
(0.405132 0.632729 -0.358407)
(0.356053 0.475618 -0.387537)
(0.293118 0.334733 -0.394108)
(0.2481 0.215564 -0.377938)
(0.25872 0.130791 -0.332623)
(0.272911 0.0769934 -0.288804)
(0.262383 0.0326596 -0.256159)
(0.252418 -0.0171303 -0.226819)
(0.236081 -0.0657428 -0.208645)
(0.227189 -0.127665 -0.193142)
(0.209636 -0.183019 -0.179901)
(0.20092 -0.258892 -0.167109)
(0.181962 -0.329426 -0.156325)
(0.166514 -0.433562 -0.147866)
(0.134337 -0.53315 -0.131485)
(0.122515 -0.656379 -0.106523)
(0.0867119 -0.788582 -0.0822183)
(0.0455074 -0.991582 -0.0614794)
(-0.0298696 -1.27011 -0.0112371)
(-0.0836361 -1.82661 0.0196899)
(-0.223761 -2.60224 0.0537986)
(-0.322454 -3.59551 0.0830117)
(-0.343837 -3.92985 0.0771443)
(-0.138436 -2.26589 0.0223564)
(0.00568795 0.367099 0.0186194)
(0.109129 0.955578 0.0873219)
(0.248031 1.44734 0.158947)
(0.313288 1.78425 0.209324)
(0.351195 1.9319 0.200862)
(0.38521 1.95602 0.148009)
(0.422607 1.90819 0.0776625)
(0.45794 1.82743 0.000651539)
(0.483028 1.73225 -0.053084)
(0.502824 1.62633 -0.0971349)
(0.518493 1.51332 -0.131076)
(0.532007 1.38942 -0.160715)
(0.540336 1.25489 -0.187933)
(0.542614 1.10488 -0.219589)
(0.52851 0.944557 -0.256585)
(0.509376 0.783475 -0.296991)
(0.475457 0.62522 -0.326044)
(0.434024 0.471777 -0.347751)
(0.389474 0.339422 -0.355364)
(0.364823 0.225888 -0.350651)
(0.395524 0.145547 -0.317572)
(0.418833 0.0879878 -0.289886)
(0.401698 0.0401912 -0.262117)
(0.386854 -0.0101904 -0.243245)
(0.359997 -0.0551574 -0.221657)
(0.33898 -0.114868 -0.208581)
(0.307092 -0.169614 -0.193051)
(0.285802 -0.252756 -0.180257)
(0.242744 -0.339312 -0.163903)
(0.211487 -0.469833 -0.14567)
(0.172974 -0.583227 -0.117398)
(0.14934 -0.733907 -0.104195)
(0.0921876 -0.855225 -0.0754214)
(0.0776012 -1.05611 -0.0506185)
(-0.00589495 -1.31669 -0.0108502)
(-0.0541856 -1.87304 0.0245627)
(-0.19316 -2.68895 0.0561624)
(-0.299641 -3.82566 0.098822)
(-0.335259 -4.38607 0.106635)
(-0.146586 -2.91164 0.0644618)
(0.00723682 0.313491 0.00764058)
(0.103172 0.845829 0.064059)
(0.255955 1.31352 0.126124)
(0.350484 1.65118 0.168109)
(0.384846 1.83921 0.177359)
(0.41276 1.88736 0.141782)
(0.451516 1.86275 0.0847125)
(0.490996 1.78444 0.0139064)
(0.524352 1.69501 -0.0384516)
(0.546984 1.58941 -0.0832131)
(0.565743 1.47896 -0.118933)
(0.582048 1.35704 -0.151916)
(0.591214 1.22466 -0.183423)
(0.595515 1.07729 -0.215853)
(0.588361 0.924993 -0.247189)
(0.578305 0.771998 -0.275797)
(0.554364 0.625206 -0.295351)
(0.528398 0.486547 -0.316082)
(0.497557 0.362413 -0.324688)
(0.488541 0.247167 -0.327534)
(0.538105 0.164536 -0.302757)
(0.569361 0.102463 -0.286434)
(0.549515 0.0520173 -0.266205)
(0.529145 0.00189894 -0.252177)
(0.491176 -0.0411931 -0.232877)
(0.464641 -0.093462 -0.22185)
(0.416808 -0.138659 -0.210142)
(0.371801 -0.217087 -0.198159)
(0.301811 -0.318553 -0.178625)
(0.258925 -0.446217 -0.154399)
(0.210615 -0.550033 -0.124035)
(0.201247 -0.703465 -0.0881117)
(0.154242 -0.808236 -0.057383)
(0.117031 -1.00749 -0.046635)
(0.0151904 -1.21264 -0.0092771)
(-0.0235264 -1.74641 0.0274757)
(-0.170046 -2.5696 0.0534336)
(-0.28591 -3.83845 0.10619)
(-0.359747 -4.64953 0.121976)
(-0.174624 -3.4314 0.0814771)
(0.00436322 0.279636 0.00247753)
(0.0918794 0.761279 0.0499365)
(0.242043 1.20674 0.103669)
(0.368222 1.53904 0.141012)
(0.422414 1.74641 0.150615)
(0.442821 1.82513 0.130442)
(0.479052 1.82035 0.0853279)
(0.520974 1.75801 0.0304958)
(0.564515 1.66985 -0.0219241)
(0.590017 1.56461 -0.0666292)
(0.611616 1.45281 -0.104352)
(0.628601 1.33143 -0.139654)
(0.639131 1.20171 -0.17214)
(0.648945 1.06289 -0.202971)
(0.65208 0.922653 -0.228035)
(0.655588 0.781638 -0.250214)
(0.645082 0.648304 -0.268481)
(0.631062 0.518298 -0.288837)
(0.611338 0.396567 -0.299626)
(0.61736 0.278271 -0.307344)
(0.686806 0.191215 -0.288406)
(0.727477 0.125604 -0.280338)
(0.704348 0.0726752 -0.26395)
(0.681493 0.0206941 -0.25426)
(0.635929 -0.016875 -0.236404)
(0.604486 -0.0630935 -0.230606)
(0.539738 -0.0953427 -0.220548)
(0.456832 -0.169436 -0.211746)
(0.36381 -0.273691 -0.181208)
(0.332377 -0.390449 -0.158746)
(0.265781 -0.47941 -0.12692)
(0.246711 -0.622531 -0.0961528)
(0.17854 -0.733942 -0.0612501)
(0.177526 -0.9263 -0.0185996)
(0.0603684 -1.12059 -0.0122038)
(0.00485728 -1.58237 0.0267852)
(-0.13914 -2.38439 0.0464025)
(-0.262577 -3.73859 0.0991637)
(-0.369543 -4.76409 0.128743)
(-0.198185 -3.85124 0.0911234)
(0.00757452 0.235679 0.00154911)
(0.0831958 0.661874 0.0393034)
(0.22152 1.08054 0.0855851)
(0.364251 1.40557 0.121271)
(0.444581 1.61424 0.128304)
(0.468438 1.71861 0.116042)
(0.502428 1.73285 0.0808922)
(0.544347 1.69177 0.036365)
(0.586225 1.61042 -0.0110641)
(0.618424 1.50996 -0.0522241)
(0.643157 1.4029 -0.0890585)
(0.663916 1.28722 -0.122135)
(0.679638 1.1683 -0.151696)
(0.697601 1.04336 -0.177787)
(0.709624 0.917788 -0.199817)
(0.725692 0.789179 -0.222074)
(0.728124 0.664762 -0.240446)
(0.725034 0.54133 -0.261399)
(0.715358 0.420944 -0.272497)
(0.736623 0.300792 -0.283439)
(0.829527 0.209656 -0.26638)
(0.882801 0.142936 -0.265185)
(0.857417 0.088151 -0.25224)
(0.835424 0.0372651 -0.245066)
(0.784075 0.00337831 -0.231564)
(0.750989 -0.0370087 -0.225122)
(0.671238 -0.0570366 -0.221411)
(0.547346 -0.117811 -0.214475)
(0.433566 -0.204073 -0.183125)
(0.410627 -0.321268 -0.16033)
(0.334784 -0.40252 -0.12736)
(0.306438 -0.53859 -0.0953932)
(0.225307 -0.632631 -0.0578321)
(0.204296 -0.820145 -0.0262236)
(0.107948 -0.998965 0.00164399)
(0.0588097 -1.4331 0.0270113)
(-0.119328 -2.16957 0.0396361)
(-0.225041 -3.57875 0.0881328)
(-0.382573 -4.79958 0.130789)
(-0.215089 -4.23548 0.0991765)
(0.00282652 0.219202 0.00173068)
(0.0667006 0.60564 0.0366025)
(0.189101 0.991973 0.0773713)
(0.335409 1.31881 0.111527)
(0.451038 1.52247 0.121628)
(0.495629 1.64586 0.112375)
(0.523213 1.67793 0.0865526)
(0.566071 1.64532 0.0490893)
(0.61238 1.57526 0.00798932)
(0.651656 1.47958 -0.031126)
(0.682608 1.3751 -0.0643106)
(0.708702 1.26639 -0.0945565)
(0.730502 1.15529 -0.119825)
(0.754444 1.04061 -0.143511)
(0.7722 0.925254 -0.163274)
(0.793319 0.805944 -0.185047)
(0.803368 0.687 -0.203529)
(0.81059 0.568691 -0.225371)
(0.812307 0.450222 -0.237237)
(0.848883 0.329974 -0.249194)
(0.967635 0.23395 -0.232697)
(1.03819 0.168232 -0.237268)
(1.01167 0.112123 -0.227413)
(0.991226 0.0616727 -0.223524)
(0.936628 0.0312749 -0.211347)
(0.904512 -0.00793937 -0.204077)
(0.813062 -0.0209446 -0.198389)
(0.660617 -0.0607043 -0.207035)
(0.506802 -0.114204 -0.176719)
(0.488039 -0.236233 -0.156419)
(0.40217 -0.306639 -0.124158)
(0.375848 -0.444917 -0.0921976)
(0.271155 -0.52179 -0.0546641)
(0.251586 -0.709843 -0.0192857)
(0.136848 -0.85365 0.00120404)
(0.0926659 -1.28868 0.0198746)
(-0.0905863 -1.95062 0.0339975)
(-0.191503 -3.39637 0.0707577)
(-0.391548 -4.78708 0.129678)
(-0.241472 -4.61557 0.105074)
(0.00832221 0.185397 0.00275805)
(0.0538048 0.525452 0.0340235)
(0.155182 0.880786 0.0711776)
(0.293777 1.18644 0.103682)
(0.425311 1.39459 0.117985)
(0.504888 1.51094 0.111059)
(0.531081 1.57342 0.0907789)
(0.570223 1.55165 0.0613734)
(0.619952 1.49889 0.0259447)
(0.663174 1.41403 -0.00562873)
(0.703804 1.3194 -0.0368395)
(0.740164 1.21803 -0.0623346)
(0.768871 1.11473 -0.0846916)
(0.8001 1.00989 -0.104468)
(0.822332 0.904376 -0.121763)
(0.847416 0.794766 -0.141129)
(0.86154 0.686373 -0.156964)
(0.876354 0.576663 -0.178245)
(0.890322 0.463817 -0.190567)
(0.941092 0.345181 -0.202073)
(1.08738 0.24623 -0.185612)
(1.18124 0.182901 -0.194823)
(1.15342 0.126134 -0.188812)
(1.13833 0.0786349 -0.188615)
(1.0787 0.0526883 -0.17934)
(1.04919 0.0184696 -0.175694)
(0.959124 0.0147285 -0.168139)
(0.793185 -0.0191434 -0.175244)
(0.59602 -0.0511675 -0.158084)
(0.561484 -0.139566 -0.139795)
(0.474142 -0.214764 -0.11265)
(0.447226 -0.343145 -0.0850932)
(0.32995 -0.410319 -0.0472607)
(0.303363 -0.595732 -0.017922)
(0.163015 -0.721328 0.00915173)
(0.13811 -1.14128 0.015024)
(-0.0675813 -1.75241 0.0297037)
(-0.157933 -3.20932 0.0489528)
(-0.420589 -4.75573 0.123564)
(-0.270969 -5.029 0.10432)
(-0.00238366 0.188445 0.00709303)
(0.0298747 0.518056 0.0410449)
(0.104048 0.837886 0.0774479)
(0.23391 1.14254 0.108242)
(0.379414 1.34005 0.12703)
(0.500285 1.44554 0.124921)
(0.55111 1.51304 0.106025)
(0.579186 1.49826 0.0821161)
(0.63684 1.44784 0.0527199)
(0.687115 1.3703 0.0228204)
(0.733912 1.28269 -0.000477422)
(0.775928 1.18622 -0.0232451)
(0.813403 1.0866 -0.0418953)
(0.85311 0.98558 -0.0610516)
(0.879523 0.885166 -0.0734083)
(0.90763 0.781735 -0.0885819)
(0.923682 0.684659 -0.100184)
(0.939205 0.584985 -0.120318)
(0.9604 0.481394 -0.131303)
(1.02252 0.367754 -0.141268)
(1.19759 0.272378 -0.124798)
(1.31671 0.21037 -0.136935)
(1.291 0.154397 -0.134167)
(1.2838 0.107417 -0.136684)
(1.22405 0.0869319 -0.130954)
(1.19952 0.0621447 -0.129806)
(1.10417 0.0701814 -0.120869)
(0.915441 0.0351614 -0.132306)
(0.707038 0.0159054 -0.113799)
(0.658514 -0.0536253 -0.117575)
(0.535928 -0.0982461 -0.089734)
(0.533992 -0.229546 -0.0713184)
(0.385614 -0.275668 -0.0391369)
(0.369293 -0.456924 -0.0137685)
(0.191668 -0.559451 0.00693539)
(0.181485 -0.95967 0.0178984)
(-0.0520177 -1.53984 0.00359997)
(-0.120823 -2.97689 0.0277976)
(-0.455383 -4.7006 0.114004)
(-0.306007 -5.51154 0.0976064)
(0.0126765 0.173032 0.0122684)
(0.0191688 0.465924 0.048064)
(0.060053 0.770757 0.0835478)
(0.169193 1.02098 0.115254)
(0.292015 1.2181 0.136513)
(0.446371 1.30493 0.141468)
(0.525656 1.37202 0.123936)
(0.555907 1.36846 0.104347)
(0.616337 1.32785 0.0798538)
(0.67937 1.26183 0.0557269)
(0.73939 1.18684 0.0325368)
(0.790579 1.10257 0.0154394)
(0.833699 1.01765 0.000184847)
(0.880456 0.925405 -0.0125355)
(0.914517 0.834624 -0.0198009)
(0.949183 0.739748 -0.0323323)
(0.972194 0.650541 -0.0398292)
(0.988973 0.560537 -0.0564465)
(1.01581 0.468297 -0.0644485)
(1.09038 0.36223 -0.0710246)
(1.29183 0.271132 -0.0565136)
(1.43513 0.213907 -0.0700916)
(1.41019 0.162878 -0.0688803)
(1.41546 0.118926 -0.0755392)
(1.36082 0.106393 -0.0763036)
(1.34762 0.0961433 -0.080813)
(1.24555 0.114972 -0.0817975)
(1.05026 0.0941736 -0.0918582)
(0.811792 0.0865019 -0.0725076)
(0.777241 0.0151063 -0.0710479)
(0.630579 -0.00279115 -0.0563104)
(0.622977 -0.113284 -0.0489313)
(0.473328 -0.139366 -0.0340983)
(0.461811 -0.323295 -0.0106801)
(0.263368 -0.403027 0.00271342)
(0.253484 -0.79457 0.00911448)
(0.00522198 -1.32611 -0.0063372)
(-0.0447086 -2.74519 0.00235354)
(-0.505587 -4.63523 0.103664)
(-0.302796 -6.09493 0.0956188)
(-0.0182983 0.189265 0.0239302)
(-0.0165572 0.531442 0.071886)
(-0.0148634 0.791875 0.108319)
(0.0600799 1.05961 0.14024)
(0.202134 1.20839 0.169215)
(0.377774 1.26504 0.178378)
(0.503211 1.3007 0.165855)
(0.542012 1.28946 0.146458)
(0.608148 1.2407 0.126498)
(0.682703 1.1799 0.105933)
(0.755542 1.10802 0.086456)
(0.819067 1.02917 0.0670648)
(0.872472 0.952713 0.0532706)
(0.923571 0.870687 0.041094)
(0.963579 0.7881 0.0347516)
(1.00276 0.702995 0.0270983)
(1.02772 0.615793 0.0243775)
(1.04693 0.530915 0.0152418)
(1.08069 0.452059 0.0125668)
(1.16015 0.350424 0.00658229)
(1.38452 0.274985 0.0173917)
(1.55733 0.219237 0.00400973)
(1.537 0.176966 0.00568773)
(1.55558 0.136635 -0.00186175)
(1.51043 0.135637 -0.00342844)
(1.51119 0.128538 -0.0151389)
(1.39615 0.160918 -0.0181911)
(1.19613 0.142973 -0.0344706)
(0.929737 0.156716 -0.0233341)
(0.899095 0.093773 -0.0227679)
(0.746966 0.0940792 -0.0151188)
(0.772625 -0.000892672 -0.0183398)
(0.586029 -0.0147943 -0.015535)
(0.597389 -0.168244 -0.00292639)
(0.369308 -0.219232 -0.000826041)
(0.379623 -0.579305 -0.00941008)
(0.0953148 -1.01692 -0.00494604)
(0.110548 -2.424 -0.0740567)
(-0.494356 -4.48563 0.114487)
(-0.229324 -6.66736 0.0840273)
(0.0407063 0.347626 0.0453806)
(0.000139207 0.492185 0.0996838)
(-0.0648803 0.715556 0.141411)
(-0.0166229 0.871854 0.176986)
(0.0267667 1.063 0.205055)
(0.227567 1.07515 0.222143)
(0.405043 1.11701 0.218511)
(0.472249 1.09296 0.201588)
(0.553095 1.0563 0.184685)
(0.649125 1.00748 0.168134)
(0.739266 0.951327 0.150143)
(0.819223 0.887399 0.135149)
(0.884965 0.824648 0.122038)
(0.945622 0.759632 0.112026)
(0.992473 0.693203 0.106874)
(1.03788 0.620574 0.101644)
(1.06695 0.542475 0.101432)
(1.09861 0.470132 0.0989514)
(1.13943 0.401287 0.102279)
(1.23585 0.300189 0.101513)
(1.48434 0.242567 0.108481)
(1.67646 0.182485 0.0914274)
(1.6644 0.146293 0.0923472)
(1.70398 0.112254 0.0782092)
(1.66657 0.131608 0.0715243)
(1.68424 0.133614 0.0511161)
(1.56599 0.194581 0.0415949)
(1.37762 0.175855 0.0212916)
(1.10133 0.229492 0.0210683)
(1.10501 0.174943 0.0175004)
(0.949821 0.194411 0.012356)
(0.995662 0.0939709 0.0209063)
(0.816096 0.0726381 0.0191697)
(0.900014 -0.0514576 0.011704)
(0.630967 -0.119826 0.0188676)
(0.731866 -0.413895 -0.001529)
(0.356631 -0.806935 -0.0151136)
(0.471525 -2.03425 -0.0388278)
(-0.221326 -4.26076 0.0321555)
(0.0455111 -7.17377 0.0757742)
(-0.200429 0.0900411 0.0617112)
(-0.239783 0.68725 0.144649)
(-0.203227 0.838636 0.204264)
(-0.176493 0.962524 0.255694)
(-0.0726595 0.999395 0.293536)
(0.0813901 1.02152 0.304055)
(0.295747 0.972697 0.308858)
(0.385849 0.935329 0.293822)
(0.495573 0.888721 0.27585)
(0.604603 0.845972 0.260158)
(0.712849 0.798572 0.243504)
(0.809022 0.746801 0.22754)
(0.891311 0.697096 0.214017)
(0.964816 0.645515 0.20342)
(1.02022 0.594088 0.198249)
(1.07259 0.535814 0.195066)
(1.1163 0.465959 0.198044)
(1.16988 0.40993 0.200612)
(1.22792 0.364206 0.207034)
(1.36707 0.279271 0.208483)
(1.66406 0.245027 0.217462)
(1.91524 0.182377 0.197909)
(1.94344 0.145427 0.192951)
(2.03718 0.1117 0.17683)
(2.02334 0.128403 0.167723)
(2.08203 0.110685 0.134673)
(1.95273 0.195742 0.119607)
(1.80251 0.168925 0.0973136)
(1.51348 0.261088 0.080397)
(1.5652 0.226922 0.0745355)
(1.40858 0.253839 0.0671551)
(1.54202 0.168213 0.0590676)
(1.34138 0.157518 0.0567237)
(1.51509 0.0300215 0.0450025)
(1.19373 -0.0268412 0.0543069)
(1.37665 -0.240457 0.0201879)
(0.921103 -0.504661 0.0173818)
(1.11694 -1.41523 -0.0459332)
(0.335226 -3.77274 0.0343301)
(0.511643 -7.065 0.0639175)
(-0.713122 0.807271 0.232293)
(-0.543359 0.415717 0.335205)
(-0.663076 0.584085 0.358521)
(-0.405927 0.604996 0.380302)
(-0.272274 0.604564 0.40264)
(-0.0043354 0.659009 0.398071)
(0.227808 0.627639 0.405465)
(0.438943 0.602148 0.385397)
(0.613171 0.574472 0.3684)
(0.795246 0.548735 0.350221)
(0.966496 0.518312 0.332134)
(1.13171 0.486176 0.316253)
(1.27371 0.457887 0.301998)
(1.40489 0.434506 0.29119)
(1.50649 0.417012 0.28813)
(1.60894 0.384692 0.289507)
(1.71345 0.332992 0.298568)
(1.86605 0.306007 0.310238)
(2.02941 0.265912 0.318196)
(2.29786 0.172171 0.31422)
(2.68227 0.14447 0.310444)
(3.05531 0.0740146 0.280774)
(3.13044 0.0338791 0.263599)
(3.29166 0.00122356 0.243788)
(3.25106 0.0170921 0.216336)
(3.35838 0.0236928 0.203532)
(3.20098 0.116205 0.178097)
(3.13555 0.114882 0.161689)
(2.79615 0.212517 0.136687)
(2.96314 0.209479 0.130423)
(2.77318 0.231884 0.118007)
(3.08721 0.159045 0.110815)
(2.81802 0.118781 0.107196)
(3.16418 0.0345323 0.0962615)
(2.70431 -0.0344441 0.0939263)
(3.05673 -0.196109 0.0716683)
(2.41126 -0.486272 0.084565)
(2.75732 -1.08899 0.0174532)
(1.8338 -3.0777 0.0300783)
(1.35223 -6.00028 0.0916451)
(1.15993 1.4623 0.114047)
(1.7324 0.721173 0.158875)
(2.49183 0.583309 0.182658)
(2.90855 0.36972 0.194186)
(3.19815 0.300895 0.202494)
(3.44728 0.227849 0.21138)
(3.69289 0.217624 0.221336)
(3.90564 0.187014 0.229983)
(4.09345 0.176909 0.235451)
(4.28927 0.164632 0.238036)
(4.47538 0.155745 0.237436)
(4.66857 0.145043 0.235581)
(4.82498 0.137037 0.233676)
(4.97781 0.129011 0.231926)
(5.07799 0.12758 0.237214)
(5.20648 0.123561 0.247279)
(5.34331 0.0943686 0.26436)
(5.57336 0.0868311 0.28511)
(5.86071 0.0999165 0.29626)
(6.28429 0.0658823 0.284398)
(6.66148 0.0479265 0.27223)
(7.09884 0.0193791 0.237121)
(7.10786 -0.0082173 0.211291)
(7.1924 -0.0372402 0.190277)
(7.00209 -0.0483648 0.17543)
(7.00559 -0.0528042 0.157371)
(6.67291 -0.0152567 0.145304)
(6.64629 0.00273926 0.129015)
(6.20292 0.0476792 0.114446)
(6.46742 0.0689267 0.107654)
(6.24105 0.0882297 0.105041)
(6.70199 0.0785285 0.0961303)
(6.4062 0.0466793 0.0963417)
(6.80898 0.0154765 0.0850463)
(6.28434 -0.0209651 0.0949949)
(6.49221 -0.0993305 0.0756717)
(5.64709 -0.25263 0.107879)
(5.64343 -0.569199 0.0881736)
(4.25039 -1.10334 0.0911346)
(2.81156 -2.48756 0.14748)
(0.00154922 -0.00101113 0.00533168)
(0.0153152 -0.00464474 0.0108491)
(0.0311462 -0.00475717 0.0124187)
(0.0409035 -0.00393638 0.0109406)
(0.0455476 -0.00215542 0.00838759)
(0.0419454 -0.00236309 0.00565795)
(0.0328611 -0.00444174 0.00295493)
(0.0177815 0.00574735 0.00204698)
(-0.00213696 0.00284244 -0.00476325)
(-0.0353649 0.00105937 -0.00363028)
(-0.0755571 -0.0038611 -0.00466271)
(-0.127408 -0.00656157 -0.00282104)
(-0.189968 -0.00632527 0.000620442)
(-0.254932 -0.00131818 0.0068116)
(-0.342549 -0.000844853 0.0290443)
(-0.446532 0.0108279 0.0676155)
(-0.540353 0.00854941 0.121456)
(-0.66366 0.00974737 0.183107)
(-0.760429 0.0115388 0.264271)
(-0.889588 0.0257587 0.349319)
(-0.879684 0.0519916 0.432204)
(-0.767625 0.0486646 0.519707)
(-0.768199 0.0466138 0.563519)
(-0.756036 0.0470818 0.594357)
(-0.721496 0.0379065 0.622878)
(-0.649771 0.0182164 0.646604)
(-0.577914 -0.0116385 0.67909)
(-0.470924 -0.0289781 0.703576)
(-0.356505 -0.0352535 0.715739)
(-0.204525 -0.018891 0.7091)
(-0.0776891 -0.00844949 0.66831)
(0.074129 0.0399825 0.586169)
(0.193358 0.0578922 0.458984)
(0.217738 0.0837022 0.319745)
(0.210818 0.0702112 0.197353)
(0.162544 0.0469253 0.108638)
(0.105395 0.0263987 0.0565436)
(0.0524599 0.0137886 0.0298217)
(0.0180241 0.00588291 0.0160818)
(-0.000859457 -0.000720303 0.00304527)
(0.00493042 -0.0139174 0.0117158)
(0.0288226 -0.0258238 0.0291421)
(0.0532192 -0.0224668 0.0370003)
(0.065217 -0.00939112 0.0383215)
(0.0625536 5.06002e-05 0.0360136)
(0.0380591 0.0126635 0.0347958)
(0.00913013 0.0271577 0.0269976)
(-0.0526187 0.0426899 0.0247382)
(-0.147384 0.0602887 0.0252566)
(-0.264336 0.0772107 0.0388225)
(-0.404548 0.102024 0.0452494)
(-0.568699 0.132026 0.0659494)
(-0.753871 0.169576 0.0916936)
(-0.957272 0.205529 0.13401)
(-1.18021 0.220738 0.200433)
(-1.4147 0.217799 0.293666)
(-1.6215 0.19298 0.401504)
(-1.81566 0.164784 0.510347)
(-1.95484 0.136413 0.630992)
(-2.0643 0.116078 0.742008)
(-1.97774 0.104844 0.831958)
(-1.7732 0.0455778 0.883602)
(-1.67243 0.00179824 0.891971)
(-1.56648 -0.0539526 0.901489)
(-1.49161 -0.135504 0.911351)
(-1.38151 -0.223171 0.90369)
(-1.25405 -0.295372 0.897193)
(-1.08777 -0.336941 0.884934)
(-0.910992 -0.341522 0.863658)
(-0.713313 -0.29395 0.832545)
(-0.52158 -0.217012 0.775862)
(-0.290619 -0.0860626 0.706584)
(-0.0720585 0.0058791 0.616454)
(0.0776779 0.11515 0.474666)
(0.16738 0.170742 0.343974)
(0.190732 0.161418 0.240801)
(0.160119 0.130745 0.166248)
(0.101013 0.0987801 0.118287)
(0.0470737 0.0665448 0.0765579)
(0.00765566 0.0283174 0.0250098)
(0.00573206 -0.0326392 0.0217676)
(0.0279479 -0.0483129 0.0514406)
(0.0477652 -0.032912 0.0661919)
(0.0432846 -0.000355545 0.0679716)
(0.0169966 0.0338552 0.0677748)
(-0.03452 0.0744376 0.0644465)
(-0.125262 0.122616 0.067952)
(-0.256218 0.169878 0.0675435)
(-0.428626 0.233738 0.072853)
(-0.638151 0.298013 0.0855505)
(-0.863458 0.367265 0.106025)
(-1.09861 0.427882 0.139623)
(-1.32864 0.473094 0.186701)
(-1.56168 0.481448 0.251617)
(-1.79378 0.442901 0.342237)
(-1.99664 0.389608 0.436749)
(-2.1438 0.33756 0.52472)
(-2.27058 0.281031 0.607993)
(-2.344 0.223431 0.694464)
(-2.3786 0.157845 0.756098)
(-2.22436 0.092449 0.796315)
(-1.97593 0.00176829 0.784849)
(-1.84302 -0.0990851 0.784571)
(-1.74665 -0.212842 0.757913)
(-1.67818 -0.339502 0.728204)
(-1.58369 -0.460503 0.685615)
(-1.48732 -0.554043 0.650864)
(-1.36027 -0.614998 0.613056)
(-1.21769 -0.630705 0.572529)
(-1.05059 -0.583646 0.533298)
(-0.892711 -0.472893 0.494053)
(-0.705259 -0.295696 0.466115)
(-0.483563 -0.129181 0.441084)
(-0.254176 0.0291059 0.406346)
(-0.0742215 0.171927 0.347235)
(0.0289437 0.222354 0.266253)
(0.076546 0.222995 0.213151)
(0.0640873 0.194141 0.165416)
(0.0342445 0.144771 0.110818)
(0.00576007 0.0690204 0.0360147)
(0.00509406 -0.0467101 0.0364684)
(0.0161162 -0.054703 0.0811225)
(0.011716 -0.015276 0.0958998)
(-0.0197642 0.0471623 0.0993954)
(-0.0821217 0.122135 0.0970377)
(-0.185108 0.2015 0.0944905)
(-0.33473 0.296567 0.0936006)
(-0.536726 0.400866 0.0931761)
(-0.77591 0.500947 0.0981907)
(-1.02413 0.584402 0.116427)
(-1.25456 0.644552 0.143096)
(-1.46491 0.668099 0.181452)
(-1.66202 0.649359 0.226493)
(-1.85596 0.593466 0.294643)
(-2.01062 0.518434 0.368514)
(-2.12342 0.455589 0.425898)
(-2.19521 0.392466 0.476083)
(-2.25917 0.320248 0.516818)
(-2.28265 0.247361 0.554476)
(-2.27934 0.153952 0.567785)
(-2.11374 0.0646539 0.552262)
(-1.87734 -0.0506537 0.533345)
(-1.76242 -0.174444 0.50136)
(-1.68671 -0.31302 0.457585)
(-1.64565 -0.436318 0.418195)
(-1.58822 -0.564051 0.367724)
(-1.53142 -0.676172 0.328256)
(-1.44591 -0.762781 0.296196)
(-1.34226 -0.810137 0.275022)
(-1.20889 -0.796214 0.250279)
(-1.07036 -0.711873 0.231722)
(-0.93276 -0.532644 0.229028)
(-0.776598 -0.310205 0.259496)
(-0.543489 -0.0978626 0.2931)
(-0.318337 0.0547964 0.296862)
(-0.151526 0.194989 0.265171)
(-0.0404075 0.238776 0.232894)
(-0.00318933 0.239293 0.190385)
(0.00688593 0.191137 0.129112)
(0.000942977 0.0924619 0.0415437)
(0.00320892 -0.0514062 0.0597926)
(-0.00493063 -0.0311596 0.11969)
(-0.0426908 0.0457134 0.142433)
(-0.11105 0.1567 0.131288)
(-0.219198 0.274302 0.125933)
(-0.366276 0.403143 0.11627)
(-0.556643 0.538353 0.111798)
(-0.785663 0.666137 0.104815)
(-1.02955 0.766812 0.108228)
(-1.25801 0.816614 0.120233)
(-1.45384 0.818841 0.140864)
(-1.62568 0.7777 0.171702)
(-1.768 0.713046 0.214521)
(-1.88806 0.637821 0.26573)
(-1.97554 0.572519 0.308534)
(-2.03772 0.507441 0.33128)
(-2.07542 0.438622 0.344747)
(-2.11683 0.365039 0.349377)
(-2.13311 0.281736 0.350165)
(-2.12917 0.175717 0.3372)
(-1.98336 0.0773584 0.311604)
(-1.7658 -0.0513081 0.266523)
(-1.67917 -0.184919 0.228891)
(-1.62591 -0.326485 0.189255)
(-1.60017 -0.451186 0.164229)
(-1.56256 -0.585716 0.122581)
(-1.52825 -0.713442 0.0950321)
(-1.47177 -0.822276 0.0839469)
(-1.39693 -0.908607 0.0826912)
(-1.29078 -0.941969 0.0873755)
(-1.16369 -0.906065 0.0951527)
(-1.0351 -0.774448 0.112311)
(-0.930126 -0.549456 0.143957)
(-0.78323 -0.26298 0.231248)
(-0.524602 -0.0583873 0.27275)
(-0.292211 0.131408 0.283925)
(-0.145521 0.231417 0.25565)
(-0.059673 0.263124 0.211244)
(-0.0179157 0.224516 0.140793)
(-0.00273615 0.110033 0.0446312)
(0.00424318 -0.0314318 0.0923576)
(-0.0294255 0.0274999 0.168202)
(-0.107767 0.1559 0.17723)
(-0.215203 0.314614 0.159287)
(-0.357497 0.475201 0.14038)
(-0.524552 0.634799 0.121678)
(-0.72194 0.781413 0.108264)
(-0.947678 0.883019 0.0966304)
(-1.18451 0.912626 0.0907517)
(-1.392 0.902881 0.101409)
(-1.54208 0.862543 0.122882)
(-1.64758 0.805338 0.146017)
(-1.73059 0.746734 0.168592)
(-1.80604 0.681145 0.191636)
(-1.86008 0.620643 0.202635)
(-1.90206 0.555074 0.194261)
(-1.92701 0.487425 0.18241)
(-1.97005 0.412394 0.154084)
(-1.98738 0.338093 0.116634)
(-1.98486 0.234622 0.080036)
(-1.85616 0.129538 0.0358293)
(-1.66523 -0.0015689 -6.64646e-05)
(-1.57954 -0.14153 -0.0256413)
(-1.5365 -0.278499 -0.0506006)
(-1.52687 -0.418205 -0.0676706)
(-1.51386 -0.563991 -0.0848346)
(-1.49669 -0.713717 -0.100074)
(-1.47387 -0.860178 -0.0834935)
(-1.42485 -0.985127 -0.068946)
(-1.34631 -1.07857 -0.0411734)
(-1.23639 -1.09638 -0.00902233)
(-1.10615 -1.0269 0.028009)
(-0.99583 -0.851337 0.0713197)
(-0.909353 -0.548602 0.154139)
(-0.713356 -0.239564 0.248676)
(-0.440652 0.00116723 0.287869)
(-0.232246 0.165291 0.281968)
(-0.110088 0.246475 0.233791)
(-0.0366874 0.228536 0.154807)
(-0.0054928 0.111683 0.050868)
(-0.00349403 0.00436997 0.133896)
(-0.0587868 0.113553 0.21275)
(-0.16762 0.291023 0.213075)
(-0.301882 0.487967 0.176379)
(-0.459838 0.669925 0.145633)
(-0.627789 0.82588 0.114973)
(-0.835739 0.929127 0.0938671)
(-1.07565 0.948675 0.0711111)
(-1.27585 0.938877 0.0754226)
(-1.40912 0.922195 0.0833935)
(-1.50051 0.896813 0.0925082)
(-1.56946 0.85715 0.0970649)
(-1.62988 0.806161 0.100153)
(-1.68389 0.742507 0.0983496)
(-1.72458 0.690229 0.0831209)
(-1.76023 0.631123 0.0480341)
(-1.78617 0.57219 0.0112356)
(-1.81835 0.500092 -0.022273)
(-1.83704 0.442352 -0.0606097)
(-1.84703 0.346816 -0.100199)
(-1.74107 0.249311 -0.120874)
(-1.57617 0.0702085 -0.1593)
(-1.50763 -0.0674142 -0.17695)
(-1.48703 -0.21876 -0.193051)
(-1.48555 -0.374723 -0.201172)
(-1.48076 -0.542695 -0.211439)
(-1.4746 -0.715006 -0.216029)
(-1.45978 -0.889844 -0.199825)
(-1.4349 -1.05185 -0.17685)
(-1.36805 -1.18914 -0.142303)
(-1.28315 -1.28729 -0.0918506)
(-1.16783 -1.27553 -0.037806)
(-1.04407 -1.16938 0.0162266)
(-0.976694 -0.910138 0.0801901)
(-0.843412 -0.533521 0.180283)
(-0.584588 -0.195408 0.263475)
(-0.311238 0.0820941 0.28334)
(-0.132269 0.218793 0.254717)
(-0.042409 0.228534 0.169911)
(-0.00427415 0.117309 0.0579191)
(-0.00799965 0.0435002 0.157233)
(-0.0837731 0.210633 0.245427)
(-0.211531 0.41681 0.225454)
(-0.360578 0.624625 0.167607)
(-0.528461 0.795157 0.121356)
(-0.71554 0.91806 0.0827207)
(-0.936946 0.956576 0.0636445)
(-1.12107 0.96503 0.0531233)
(-1.24925 0.981186 0.0525271)
(-1.34293 0.978804 0.0488924)
(-1.40536 0.956152 0.0443934)
(-1.45515 0.917609 0.0332708)
(-1.50524 0.868589 0.0240774)
(-1.54408 0.813644 0.00178485)
(-1.57496 0.765971 -0.0282809)
(-1.60823 0.711865 -0.0676427)
(-1.6351 0.660739 -0.107047)
(-1.66459 0.599967 -0.143385)
(-1.68658 0.541614 -0.170674)
(-1.70465 0.449256 -0.195159)
(-1.66676 0.354757 -0.212871)
(-1.51167 0.149799 -0.243336)
(-1.43516 -0.0132607 -0.268375)
(-1.42732 -0.183342 -0.281605)
(-1.43471 -0.349175 -0.289222)
(-1.43981 -0.532518 -0.295593)
(-1.4379 -0.723225 -0.290616)
(-1.43731 -0.917462 -0.270724)
(-1.42771 -1.10892 -0.253273)
(-1.40449 -1.28421 -0.209556)
(-1.3256 -1.43533 -0.16466)
(-1.22994 -1.516 -0.110497)
(-1.10065 -1.46453 -0.0504723)
(-0.99898 -1.29052 0.0157767)
(-0.9179 -0.899357 0.109786)
(-0.679855 -0.471487 0.194996)
(-0.388998 -0.0788807 0.269923)
(-0.184417 0.138589 0.26473)
(-0.0557454 0.208881 0.182472)
(-0.00496747 0.114981 0.0655936)
(-0.0127409 0.0996608 0.183203)
(-0.106007 0.320984 0.277809)
(-0.247807 0.54186 0.244516)
(-0.399359 0.735445 0.166146)
(-0.571221 0.882217 0.108713)
(-0.76437 0.966367 0.0715147)
(-0.946247 1.00308 0.0528588)
(-1.07906 1.04256 0.0343734)
(-1.17254 1.05769 0.0216225)
(-1.23123 1.04721 0.00947987)
(-1.2759 1.0183 -0.00561613)
(-1.31959 0.980354 -0.0286942)
(-1.36354 0.931286 -0.0508197)
(-1.40279 0.883381 -0.0829888)
(-1.43179 0.826792 -0.119765)
(-1.45651 0.764307 -0.156957)
(-1.47862 0.705893 -0.188709)
(-1.50718 0.641909 -0.212916)
(-1.54186 0.581181 -0.230057)
(-1.57234 0.489412 -0.240185)
(-1.57923 0.388329 -0.252409)
(-1.46655 0.219234 -0.265316)
(-1.38517 0.0185618 -0.305039)
(-1.37478 -0.155553 -0.319704)
(-1.38069 -0.341107 -0.330425)
(-1.38673 -0.53569 -0.336224)
(-1.38638 -0.739299 -0.318686)
(-1.38833 -0.951789 -0.305173)
(-1.39847 -1.16639 -0.271608)
(-1.39857 -1.37659 -0.259764)
(-1.37086 -1.55374 -0.23445)
(-1.27964 -1.68774 -0.183023)
(-1.16934 -1.72387 -0.118548)
(-1.03273 -1.61167 -0.0554972)
(-0.945309 -1.31818 0.0206887)
(-0.778631 -0.809849 0.125539)
(-0.480111 -0.338159 0.200188)
(-0.214085 0.0473281 0.220186)
(-0.0505977 0.172385 0.183406)
(-0.00382334 0.114509 0.0673719)
(-0.0149198 0.163924 0.199279)
(-0.118254 0.440555 0.302801)
(-0.266219 0.671183 0.261889)
(-0.416077 0.851569 0.172487)
(-0.592072 0.976797 0.106674)
(-0.763831 1.03897 0.064783)
(-0.903203 1.08873 0.0364716)
(-0.992342 1.12112 0.0107465)
(-1.05712 1.12598 -0.0115945)
(-1.10649 1.10553 -0.041118)
(-1.14298 1.06721 -0.0672978)
(-1.18244 1.023 -0.096215)
(-1.22465 0.970899 -0.123153)
(-1.25989 0.910505 -0.155465)
(-1.28515 0.844565 -0.188517)
(-1.30576 0.770148 -0.216911)
(-1.3263 0.698583 -0.236896)
(-1.35684 0.624875 -0.2489)
(-1.40399 0.557457 -0.255055)
(-1.45073 0.476485 -0.254844)
(-1.48411 0.377105 -0.256968)
(-1.42002 0.237507 -0.271745)
(-1.32287 0.0273729 -0.31459)
(-1.29746 -0.143277 -0.33372)
(-1.2995 -0.340931 -0.344125)
(-1.30176 -0.534586 -0.349318)
(-1.30552 -0.745944 -0.328983)
(-1.31662 -0.965267 -0.300385)
(-1.33418 -1.20034 -0.291593)
(-1.34811 -1.43103 -0.281269)
(-1.34167 -1.64866 -0.260225)
(-1.30695 -1.81916 -0.229047)
(-1.21694 -1.92723 -0.177008)
(-1.09285 -1.89583 -0.111451)
(-0.962164 -1.69431 -0.0440813)
(-0.821173 -1.22538 0.0301483)
(-0.539002 -0.634685 0.125298)
(-0.253954 -0.114383 0.188979)
(-0.084489 0.111584 0.165434)
(-0.00183752 0.103713 0.0687433)
(-0.0137042 0.231941 0.209461)
(-0.117519 0.562375 0.322085)
(-0.263801 0.799012 0.278464)
(-0.410976 0.966884 0.180435)
(-0.580946 1.06762 0.109755)
(-0.721687 1.12883 0.0563329)
(-0.814908 1.17159 0.019645)
(-0.882032 1.19341 -0.017355)
(-0.931747 1.17495 -0.0533692)
(-0.969237 1.14384 -0.0874566)
(-1.00506 1.10162 -0.121748)
(-1.04263 1.05115 -0.154612)
(-1.08469 0.989221 -0.182301)
(-1.12057 0.918235 -0.210319)
(-1.14691 0.838151 -0.235734)
(-1.1702 0.752218 -0.254999)
(-1.19492 0.668077 -0.26526)
(-1.22875 0.584754 -0.268815)
(-1.27596 0.508619 -0.267423)
(-1.32916 0.429855 -0.26504)
(-1.37016 0.338859 -0.256547)
(-1.33774 0.220007 -0.274618)
(-1.23452 0.0409894 -0.306813)
(-1.19249 -0.147067 -0.32407)
(-1.1915 -0.334017 -0.333201)
(-1.1902 -0.5267 -0.323821)
(-1.20315 -0.735007 -0.314637)
(-1.22433 -0.960315 -0.292926)
(-1.24715 -1.20031 -0.287183)
(-1.26418 -1.44909 -0.275722)
(-1.27416 -1.69284 -0.257564)
(-1.26525 -1.91385 -0.232097)
(-1.2291 -2.07649 -0.200189)
(-1.13908 -2.13408 -0.158628)
(-0.99939 -2.01337 -0.0946796)
(-0.84697 -1.64562 -0.0320342)
(-0.60807 -1.01839 0.0473449)
(-0.302913 -0.375665 0.114354)
(-0.0884908 0.0284397 0.124925)
(-0.00194814 0.0832941 0.0604001)
(-0.00941415 0.293038 0.214131)
(-0.105624 0.675026 0.336477)
(-0.24447 0.915815 0.292918)
(-0.390296 1.06601 0.190828)
(-0.539083 1.15132 0.111532)
(-0.644632 1.21153 0.0484104)
(-0.71218 1.24482 0.00178596)
(-0.762141 1.24272 -0.0486254)
(-0.803926 1.21737 -0.0891022)
(-0.837398 1.17591 -0.129869)
(-0.870527 1.12578 -0.167687)
(-0.909098 1.06258 -0.200924)
(-0.951048 0.989559 -0.227157)
(-0.986884 0.905109 -0.247702)
(-1.01732 0.816466 -0.263916)
(-1.04572 0.72409 -0.273622)
(-1.07746 0.635873 -0.276157)
(-1.11351 0.548781 -0.27433)
(-1.15643 0.466255 -0.269374)
(-1.19704 0.382163 -0.266795)
(-1.22962 0.294168 -0.262936)
(-1.2069 0.194296 -0.275773)
(-1.12413 0.0566949 -0.297039)
(-1.06569 -0.139902 -0.298804)
(-1.05362 -0.313828 -0.303099)
(-1.05766 -0.501147 -0.297783)
(-1.08123 -0.704319 -0.278109)
(-1.10751 -0.924562 -0.278517)
(-1.13525 -1.16469 -0.273039)
(-1.16168 -1.42247 -0.262027)
(-1.17928 -1.68783 -0.24317)
(-1.18858 -1.94816 -0.217465)
(-1.17636 -2.17579 -0.184969)
(-1.13279 -2.31331 -0.152447)
(-1.03189 -2.2981 -0.120869)
(-0.879624 -2.03019 -0.0649446)
(-0.655977 -1.43742 -0.022296)
(-0.335706 -0.66272 0.0659291)
(-0.0951364 -0.0817375 0.0672266)
(-0.00914298 0.055378 0.050144)
(-0.00322089 0.34745 0.210826)
(-0.0849285 0.78034 0.344997)
(-0.215346 1.02559 0.304901)
(-0.348408 1.15475 0.197652)
(-0.46963 1.23639 0.111086)
(-0.545132 1.28534 0.0380788)
(-0.599672 1.30672 -0.0190051)
(-0.641893 1.28931 -0.0764678)
(-0.676006 1.25574 -0.120708)
(-0.708705 1.2063 -0.163837)
(-0.743146 1.1446 -0.202007)
(-0.779427 1.06826 -0.234026)
(-0.820493 0.979979 -0.253958)
(-0.85839 0.885421 -0.267863)
(-0.892721 0.789903 -0.274895)
(-0.928376 0.696153 -0.277193)
(-0.964104 0.606748 -0.273619)
(-0.99883 0.518244 -0.268379)
(-1.03123 0.430987 -0.261673)
(-1.05604 0.344167 -0.258741)
(-1.06735 0.256603 -0.258961)
(-1.03973 0.174975 -0.267582)
(-0.985926 0.0605501 -0.278112)
(-0.939422 -0.10281 -0.266309)
(-0.913466 -0.282238 -0.265863)
(-0.923398 -0.463589 -0.253666)
(-0.949572 -0.660976 -0.255114)
(-0.980001 -0.871712 -0.254933)
(-1.01376 -1.10906 -0.252493)
(-1.04506 -1.36631 -0.243705)
(-1.07988 -1.65103 -0.228889)
(-1.10848 -1.94522 -0.20579)
(-1.11597 -2.22264 -0.17722)
(-1.09189 -2.43976 -0.142511)
(-1.02347 -2.52359 -0.112836)
(-0.892354 -2.37337 -0.0791246)
(-0.684222 -1.87354 -0.0496452)
(-0.37803 -1.02808 0.00846381)
(-0.109589 -0.262417 0.0364036)
(-0.020827 0.0220961 0.0311483)
(0.00327151 0.384493 0.207856)
(-0.0614534 0.865922 0.352695)
(-0.180154 1.11526 0.314117)
(-0.292897 1.23483 0.206735)
(-0.383419 1.30671 0.113389)
(-0.440452 1.33985 0.0330673)
(-0.486193 1.34574 -0.0333731)
(-0.523211 1.32154 -0.0938196)
(-0.55554 1.28216 -0.141247)
(-0.588962 1.22496 -0.184685)
(-0.621877 1.15383 -0.221765)
(-0.659316 1.06535 -0.250378)
(-0.698043 0.964628 -0.267308)
(-0.734583 0.862189 -0.273932)
(-0.772716 0.763755 -0.27464)
(-0.811073 0.669902 -0.26965)
(-0.846909 0.580108 -0.26126)
(-0.874579 0.489416 -0.252455)
(-0.8935 0.399156 -0.244445)
(-0.900293 0.312289 -0.241959)
(-0.891291 0.232733 -0.245539)
(-0.866479 0.163569 -0.248914)
(-0.829967 0.059001 -0.243945)
(-0.810406 -0.0714518 -0.227025)
(-0.795696 -0.241914 -0.216186)
(-0.798506 -0.421158 -0.213208)
(-0.821983 -0.605897 -0.219217)
(-0.851864 -0.809302 -0.224108)
(-0.886758 -1.03484 -0.223974)
(-0.928648 -1.29351 -0.220046)
(-0.973364 -1.5844 -0.209377)
(-1.01246 -1.89763 -0.193025)
(-1.03866 -2.21699 -0.166582)
(-1.0388 -2.49891 -0.134355)
(-0.989734 -2.68069 -0.0986338)
(-0.887776 -2.64622 -0.077035)
(-0.701934 -2.26805 -0.0523135)
(-0.41734 -1.43259 -0.02986)
(-0.108651 -0.490894 0.0156044)
(-0.00295924 -0.0273823 0.0178843)
(0.0087609 0.414915 0.199416)
(-0.0375088 0.943368 0.353463)
(-0.135135 1.20743 0.326549)
(-0.222535 1.31925 0.215515)
(-0.290381 1.37783 0.114516)
(-0.332926 1.39444 0.0224562)
(-0.373108 1.38609 -0.0506329)
(-0.407483 1.35084 -0.113282)
(-0.437997 1.30473 -0.151788)
(-0.471689 1.24025 -0.192012)
(-0.505607 1.1605 -0.224982)
(-0.540842 1.06126 -0.251067)
(-0.576913 0.954531 -0.266058)
(-0.61182 0.84389 -0.2705)
(-0.650479 0.742898 -0.264544)
(-0.690436 0.646766 -0.254437)
(-0.723121 0.555592 -0.240803)
(-0.742544 0.463268 -0.229434)
(-0.746853 0.372841 -0.220912)
(-0.737432 0.290882 -0.219553)
(-0.714801 0.224113 -0.229372)
(-0.701026 0.152273 -0.220461)
(-0.690498 0.0572182 -0.207886)
(-0.692365 -0.0601713 -0.186889)
(-0.694075 -0.20381 -0.184072)
(-0.691803 -0.378299 -0.177147)
(-0.707911 -0.552136 -0.183017)
(-0.735028 -0.744091 -0.18823)
(-0.774156 -0.961021 -0.192311)
(-0.820805 -1.21436 -0.192585)
(-0.869484 -1.50236 -0.188994)
(-0.917895 -1.82722 -0.177391)
(-0.955482 -2.17243 -0.156928)
(-0.974191 -2.51166 -0.126565)
(-0.948168 -2.77643 -0.0920031)
(-0.863736 -2.86533 -0.0603816)
(-0.698594 -2.61391 -0.0495941)
(-0.454391 -1.84872 -0.0401025)
(-0.124992 -0.744587 0.000755079)
(0.0067063 -0.0897343 0.00308895)
(0.00927707 0.428085 0.202101)
(-0.00927163 0.996635 0.36808)
(-0.0838569 1.28091 0.3569)
(-0.156463 1.39177 0.248751)
(-0.200301 1.43617 0.130883)
(-0.235769 1.43649 0.0245766)
(-0.269167 1.41143 -0.05939)
(-0.298248 1.37189 -0.118508)
(-0.329147 1.31758 -0.162678)
(-0.361482 1.24723 -0.198153)
(-0.393734 1.16021 -0.218663)
(-0.426601 1.0595 -0.242198)
(-0.459105 0.947885 -0.256039)
(-0.490891 0.835428 -0.259712)
(-0.527642 0.729308 -0.249925)
(-0.566023 0.633643 -0.235199)
(-0.593813 0.540218 -0.217888)
(-0.604487 0.449007 -0.203663)
(-0.596387 0.364696 -0.195574)
(-0.572831 0.29123 -0.200064)
(-0.55634 0.223136 -0.206577)
(-0.562288 0.137368 -0.189356)
(-0.568906 0.0507962 -0.177627)
(-0.585377 -0.0522769 -0.164969)
(-0.607806 -0.170352 -0.155506)
(-0.609953 -0.326042 -0.146321)
(-0.612049 -0.497638 -0.145731)
(-0.637208 -0.680285 -0.152227)
(-0.675498 -0.887832 -0.157879)
(-0.722129 -1.12885 -0.164586)
(-0.774193 -1.41266 -0.165902)
(-0.825256 -1.73963 -0.160863)
(-0.870343 -2.10197 -0.144619)
(-0.901208 -2.48023 -0.11811)
(-0.895092 -2.82033 -0.0824478)
(-0.835232 -3.01856 -0.0504597)
(-0.685221 -2.90502 -0.0288549)
(-0.460545 -2.25728 -0.0374146)
(-0.134361 -1.05869 -0.0217555)
(0.0180994 -0.156195 -0.0106289)
(0.009857 0.442537 0.189849)
(0.00789445 1.06295 0.368988)
(-0.0320127 1.35768 0.36904)
(-0.0753985 1.46849 0.269208)
(-0.109577 1.49714 0.148784)
(-0.143476 1.48932 0.0334992)
(-0.172427 1.45323 -0.0565052)
(-0.197174 1.40736 -0.124182)
(-0.223548 1.35792 -0.169039)
(-0.251772 1.28334 -0.202241)
(-0.276249 1.19048 -0.226049)
(-0.300317 1.08027 -0.232867)
(-0.328744 0.964481 -0.237851)
(-0.361024 0.847714 -0.238585)
(-0.398123 0.73779 -0.228635)
(-0.435396 0.637733 -0.210688)
(-0.460803 0.546074 -0.191413)
(-0.462224 0.462085 -0.178706)
(-0.446202 0.384691 -0.175751)
(-0.429438 0.305304 -0.17979)
(-0.433223 0.219532 -0.177206)
(-0.449975 0.127061 -0.162572)
(-0.463268 0.0442201 -0.155284)
(-0.488542 -0.0480458 -0.146609)
(-0.523866 -0.147561 -0.136484)
(-0.545309 -0.273358 -0.125369)
(-0.54676 -0.434871 -0.112731)
(-0.558647 -0.616659 -0.116603)
(-0.592677 -0.813004 -0.125161)
(-0.638228 -1.04192 -0.134844)
(-0.688847 -1.31258 -0.141778)
(-0.742455 -1.63923 -0.143225)
(-0.791929 -2.01193 -0.134227)
(-0.831504 -2.42245 -0.111574)
(-0.839867 -2.82117 -0.0771595)
(-0.802523 -3.12286 -0.0393568)
(-0.674843 -3.13867 -0.0150573)
(-0.46665 -2.61887 -0.0193511)
(-0.148917 -1.39632 -0.0341942)
(0.0325746 -0.201239 -0.031613)
(0.0037455 0.434962 0.196102)
(0.0129326 1.12119 0.385621)
(0.00543044 1.4484 0.404437)
(-0.0159544 1.5573 0.29885)
(-0.0366452 1.56894 0.177319)
(-0.0562627 1.54309 0.0504499)
(-0.0753466 1.50335 -0.040924)
(-0.0834594 1.4553 -0.109912)
(-0.104774 1.40464 -0.154999)
(-0.13524 1.33157 -0.185461)
(-0.154368 1.241 -0.203287)
(-0.173472 1.13521 -0.213264)
(-0.198792 1.01684 -0.212112)
(-0.233716 0.899847 -0.215711)
(-0.271378 0.788032 -0.203433)
(-0.30402 0.688006 -0.188779)
(-0.320064 0.596757 -0.174006)
(-0.320037 0.507381 -0.166012)
(-0.318482 0.416743 -0.161732)
(-0.321696 0.316655 -0.158243)
(-0.33826 0.220378 -0.154691)
(-0.358297 0.125639 -0.143991)
(-0.373476 0.0421238 -0.140733)
(-0.402261 -0.0447359 -0.135052)
(-0.441933 -0.133749 -0.123453)
(-0.480099 -0.236304 -0.111126)
(-0.499092 -0.36869 -0.101581)
(-0.505548 -0.534004 -0.0932873)
(-0.52285 -0.725558 -0.0960252)
(-0.559818 -0.946944 -0.107347)
(-0.609052 -1.20782 -0.117328)
(-0.660239 -1.5267 -0.123611)
(-0.712329 -1.90605 -0.120146)
(-0.756607 -2.34432 -0.102717)
(-0.777505 -2.79751 -0.0705614)
(-0.759254 -3.19276 -0.0304827)
(-0.656808 -3.33689 -0.0033925)
(-0.46419 -2.95958 -0.00444597)
(-0.150626 -1.7581 -0.031022)
(0.0550004 -0.285673 -0.0467279)
(0.0144517 0.502148 0.169825)
(0.040614 1.23889 0.370345)
(0.0443735 1.59157 0.402501)
(0.0440187 1.69909 0.317058)
(0.0352546 1.70462 0.193478)
(0.0274465 1.66029 0.0601748)
(0.0242831 1.61517 -0.0398579)
(0.0170796 1.56254 -0.107423)
(0.0146515 1.50985 -0.144018)
(0.00501328 1.45731 -0.164224)
(-0.00931041 1.38033 -0.172892)
(-0.0301093 1.27836 -0.179776)
(-0.0615053 1.14941 -0.18269)
(-0.0995281 1.01345 -0.177899)
(-0.138975 0.888776 -0.180723)
(-0.172135 0.772733 -0.175334)
(-0.199773 0.661743 -0.163552)
(-0.214734 0.549714 -0.155435)
(-0.229049 0.438106 -0.148743)
(-0.241227 0.328331 -0.143768)
(-0.261726 0.22804 -0.141462)
(-0.283344 0.131456 -0.132574)
(-0.297658 0.045582 -0.132545)
(-0.326641 -0.0406222 -0.128015)
(-0.365703 -0.123934 -0.116149)
(-0.407664 -0.212927 -0.101903)
(-0.438493 -0.317086 -0.0930277)
(-0.461248 -0.448781 -0.0898452)
(-0.483465 -0.613561 -0.0852066)
(-0.509173 -0.818108 -0.0860602)
(-0.546984 -1.06539 -0.0933363)
(-0.589947 -1.37848 -0.104024)
(-0.635957 -1.76069 -0.109651)
(-0.68183 -2.2207 -0.100646)
(-0.712463 -2.72063 -0.0715249)
(-0.707898 -3.20867 -0.0283014)
(-0.637945 -3.48457 0.00697215)
(-0.479472 -3.26218 0.0156108)
(-0.182891 -2.10596 -0.0114514)
(0.0589715 -0.350958 -0.0344318)
(0.000906362 0.633705 0.190435)
(0.0360978 1.41285 0.381485)
(0.0600852 1.79684 0.431814)
(0.0752684 1.91775 0.357312)
(0.0814352 1.92324 0.235729)
(0.0907387 1.87612 0.0979273)
(0.108332 1.81771 -0.0049928)
(0.132113 1.75445 -0.0754888)
(0.157025 1.69847 -0.101531)
(0.155116 1.62706 -0.121131)
(0.130416 1.53048 -0.140713)
(0.0855686 1.40092 -0.15628)
(0.0340723 1.25417 -0.166551)
(-0.00617164 1.10192 -0.171216)
(-0.0431086 0.957927 -0.169846)
(-0.0812091 0.816441 -0.166624)
(-0.111358 0.689676 -0.166288)
(-0.133267 0.569457 -0.15861)
(-0.155089 0.455249 -0.15386)
(-0.172597 0.342883 -0.146933)
(-0.197299 0.24073 -0.143218)
(-0.219337 0.142733 -0.130642)
(-0.233422 0.0526178 -0.129646)
(-0.259509 -0.0353035 -0.127768)
(-0.294165 -0.118748 -0.116965)
(-0.33485 -0.198973 -0.101435)
(-0.367067 -0.288728 -0.0912519)
(-0.393395 -0.394946 -0.0889738)
(-0.424831 -0.521425 -0.0886551)
(-0.459416 -0.686336 -0.0904321)
(-0.501945 -0.895511 -0.0901264)
(-0.544823 -1.18135 -0.0905648)
(-0.578472 -1.55087 -0.0857684)
(-0.598519 -2.03197 -0.0795621)
(-0.628504 -2.58105 -0.0615903)
(-0.638858 -3.14903 -0.024779)
(-0.598313 -3.55606 0.011375)
(-0.481435 -3.51827 0.0313615)
(-0.204747 -2.46914 -0.00269666)
(0.0687486 -0.466333 -0.0531703)
(-0.00950594 0.634409 0.14752)
(0.0339178 1.44072 0.330016)
(0.0865198 1.86328 0.394581)
(0.119655 2.01776 0.345163)
(0.14214 2.04271 0.238438)
(0.159962 2.00584 0.109332)
(0.189841 1.94515 0.00542525)
(0.224306 1.86957 -0.0639338)
(0.252009 1.78344 -0.0973917)
(0.247805 1.67973 -0.124977)
(0.224651 1.55498 -0.139973)
(0.18545 1.41754 -0.1524)
(0.137382 1.27288 -0.165822)
(0.0870651 1.12353 -0.175397)
(0.0367154 0.968588 -0.181445)
(0.00364109 0.828643 -0.182003)
(-0.0246516 0.702723 -0.179684)
(-0.0527255 0.585383 -0.180267)
(-0.087008 0.472535 -0.178792)
(-0.11284 0.361526 -0.167944)
(-0.139427 0.257039 -0.159299)
(-0.164385 0.157808 -0.139837)
(-0.177947 0.0640703 -0.134977)
(-0.201678 -0.0272407 -0.132397)
(-0.227965 -0.113254 -0.124034)
(-0.263094 -0.192607 -0.109605)
(-0.296407 -0.269603 -0.0955582)
(-0.321401 -0.362411 -0.091335)
(-0.353363 -0.46526 -0.090036)
(-0.389421 -0.594822 -0.0937093)
(-0.439777 -0.752716 -0.10231)
(-0.496796 -0.976447 -0.114645)
(-0.563461 -1.28225 -0.123087)
(-0.596027 -1.72158 -0.108495)
(-0.582584 -2.27637 -0.0703864)
(-0.569456 -2.91605 -0.0296645)
(-0.55307 -3.46281 0.0142544)
(-0.476066 -3.64219 0.0530748)
(-0.245097 -2.79942 0.0392241)
(0.0427659 -0.719136 -0.00150406)
(-0.00490809 0.601125 0.130234)
(0.0495849 1.40155 0.294206)
(0.115864 1.84618 0.367188)
(0.160928 2.02741 0.335211)
(0.193316 2.06628 0.241256)
(0.218883 2.03668 0.122744)
(0.256235 1.97389 0.0212111)
(0.296428 1.89159 -0.0490342)
(0.331648 1.79177 -0.0875472)
(0.334328 1.6828 -0.115488)
(0.31064 1.56009 -0.136526)
(0.268261 1.42217 -0.155121)
(0.217081 1.2736 -0.172765)
(0.1684 1.11934 -0.187163)
(0.124099 0.97232 -0.199988)
(0.0899548 0.836393 -0.211128)
(0.0593152 0.707352 -0.221585)
(0.0244886 0.58985 -0.225986)
(-0.0187119 0.489102 -0.221406)
(-0.0529331 0.377186 -0.209915)
(-0.0856006 0.268974 -0.189445)
(-0.111862 0.169505 -0.163078)
(-0.127335 0.0718049 -0.148721)
(-0.148209 -0.0181165 -0.144018)
(-0.167373 -0.105961 -0.134416)
(-0.189452 -0.189195 -0.125985)
(-0.218118 -0.264376 -0.111553)
(-0.243644 -0.34747 -0.101657)
(-0.272398 -0.43646 -0.0965071)
(-0.302882 -0.546812 -0.0962217)
(-0.345806 -0.673352 -0.100675)
(-0.393214 -0.847215 -0.111105)
(-0.455811 -1.07445 -0.125805)
(-0.525801 -1.4128 -0.135911)
(-0.559357 -1.87901 -0.113191)
(-0.556177 -2.50638 -0.0594082)
(-0.547456 -3.12886 -0.0126446)
(-0.508568 -3.5035 0.0407405)
(-0.344155 -2.90788 0.0410994)
(-0.0310605 -0.81496 0.0115993)
(0.000695067 0.562711 0.0972229)
(0.0690952 1.33603 0.24239)
(0.149002 1.79734 0.321205)
(0.203367 2.00101 0.307039)
(0.245704 2.05316 0.228301)
(0.27464 2.03069 0.123524)
(0.313413 1.96827 0.0250632)
(0.354183 1.88561 -0.0467293)
(0.390838 1.7814 -0.0897686)
(0.402548 1.66637 -0.119025)
(0.385281 1.54122 -0.142118)
(0.345206 1.40358 -0.163309)
(0.296733 1.25874 -0.184867)
(0.250925 1.11166 -0.203905)
(0.207807 0.967476 -0.224274)
(0.176967 0.829096 -0.245148)
(0.144616 0.700746 -0.269999)
(0.115149 0.579511 -0.289331)
(0.0587683 0.474031 -0.286717)
(0.000456981 0.372901 -0.256658)
(-0.0326466 0.272356 -0.227117)
(-0.0612277 0.170047 -0.1936)
(-0.0743234 0.0746278 -0.169983)
(-0.0916703 -0.0135773 -0.158727)
(-0.109318 -0.0948723 -0.146991)
(-0.124289 -0.178692 -0.139083)
(-0.144651 -0.255953 -0.130426)
(-0.164167 -0.33905 -0.12172)
(-0.193992 -0.420127 -0.112663)
(-0.222446 -0.520107 -0.10711)
(-0.263029 -0.626974 -0.10801)
(-0.302037 -0.775219 -0.114055)
(-0.354487 -0.956662 -0.124323)
(-0.402796 -1.23098 -0.12971)
(-0.439625 -1.5877 -0.110093)
(-0.466144 -2.13507 -0.0645059)
(-0.500105 -2.75401 -0.0153176)
(-0.504531 -3.26136 0.0321827)
(-0.386198 -2.90048 0.0423509)
(-0.0873522 -0.890614 0.0125758)
(0.00455794 0.519429 0.0755728)
(0.0842996 1.26053 0.201433)
(0.176327 1.73619 0.284628)
(0.239823 1.96303 0.284857)
(0.290178 2.02886 0.220553)
(0.324503 2.01186 0.129844)
(0.36617 1.95131 0.0327635)
(0.408273 1.86931 -0.0394881)
(0.445984 1.76702 -0.088328)
(0.46231 1.65005 -0.11933)
(0.451287 1.52295 -0.143988)
(0.418623 1.3861 -0.168159)
(0.37789 1.24658 -0.192587)
(0.33722 1.1031 -0.217597)
(0.295857 0.961503 -0.246768)
(0.262827 0.820962 -0.277146)
(0.226717 0.687819 -0.309436)
(0.187873 0.55974 -0.332232)
(0.138614 0.435538 -0.332984)
(0.0848885 0.335613 -0.304155)
(0.0311226 0.244074 -0.255669)
(-0.00395043 0.159591 -0.21529)
(-0.014226 0.0706275 -0.19068)
(-0.024658 -0.00883369 -0.177954)
(-0.0390208 -0.0834932 -0.162448)
(-0.0519708 -0.161855 -0.153598)
(-0.07054 -0.238329 -0.145208)
(-0.0855234 -0.324479 -0.13743)
(-0.109306 -0.404909 -0.129408)
(-0.131903 -0.499366 -0.12148)
(-0.167903 -0.594613 -0.116189)
(-0.199969 -0.723528 -0.115824)
(-0.244475 -0.874325 -0.119365)
(-0.281952 -1.10839 -0.11801)
(-0.329083 -1.41811 -0.101769)
(-0.375872 -1.9199 -0.0613367)
(-0.439327 -2.52138 -0.0180939)
(-0.476611 -3.12938 0.0278802)
(-0.405851 -2.96875 0.0311719)
(-0.137979 -1.1156 -0.00102296)
(0.0102375 0.469729 0.0509397)
(0.0994837 1.16611 0.158814)
(0.200179 1.65481 0.243608)
(0.270874 1.90736 0.257352)
(0.329602 1.99138 0.208156)
(0.369487 1.98325 0.126585)
(0.414019 1.92497 0.0373655)
(0.457427 1.84335 -0.03466)
(0.494404 1.74211 -0.0862025)
(0.51358 1.62546 -0.12042)
(0.510157 1.4989 -0.147039)
(0.488508 1.36541 -0.172157)
(0.456681 1.2292 -0.19852)
(0.420748 1.0879 -0.228839)
(0.379443 0.944438 -0.264933)
(0.345538 0.801046 -0.298809)
(0.306567 0.66402 -0.330771)
(0.262925 0.530519 -0.353674)
(0.209418 0.405233 -0.353568)
(0.159572 0.283517 -0.328441)
(0.123223 0.185951 -0.285342)
(0.0833488 0.121382 -0.242325)
(0.065266 0.0584742 -0.206945)
(0.0577092 -0.0107258 -0.1897)
(0.0396375 -0.0726872 -0.176578)
(0.0255738 -0.145203 -0.168549)
(0.00358969 -0.216868 -0.162536)
(-0.0109427 -0.301719 -0.154257)
(-0.0347375 -0.377961 -0.146387)
(-0.0550266 -0.473711 -0.135593)
(-0.0902105 -0.565501 -0.12484)
(-0.116827 -0.691952 -0.116031)
(-0.159874 -0.822613 -0.110917)
(-0.18845 -1.03941 -0.10077)
(-0.239916 -1.32391 -0.0811115)
(-0.288817 -1.80238 -0.0409412)
(-0.371774 -2.40123 0.00118415)
(-0.428507 -3.08474 0.0424819)
(-0.388954 -3.09225 0.0368876)
(-0.147865 -1.3694 0.00440018)
(0.0104845 0.427649 0.0357128)
(0.110553 1.06726 0.120895)
(0.222595 1.56149 0.205695)
(0.295097 1.84398 0.232083)
(0.359861 1.95063 0.198354)
(0.406868 1.95624 0.128065)
(0.456515 1.90207 0.0460469)
(0.503026 1.82037 -0.0249077)
(0.540516 1.72005 -0.0778895)
(0.56137 1.60454 -0.115684)
(0.565186 1.48026 -0.145279)
(0.55436 1.34886 -0.172923)
(0.531831 1.21362 -0.202104)
(0.500094 1.07039 -0.236992)
(0.460785 0.925454 -0.275906)
(0.427954 0.781152 -0.307972)
(0.387226 0.641113 -0.336178)
(0.341397 0.502614 -0.356542)
(0.282652 0.369366 -0.357768)
(0.233838 0.241467 -0.343905)
(0.218507 0.141696 -0.29977)
(0.204276 0.0791687 -0.263699)
(0.178892 0.0326621 -0.229209)
(0.16215 -0.0222859 -0.204402)
(0.141004 -0.0763016 -0.187501)
(0.118566 -0.142566 -0.179873)
(0.0903504 -0.203307 -0.173064)
(0.0745243 -0.276017 -0.164409)
(0.047718 -0.34841 -0.159367)
(0.025273 -0.445371 -0.147721)
(-0.0131589 -0.530449 -0.135372)
(-0.0320571 -0.649986 -0.12416)
(-0.0720065 -0.782237 -0.113245)
(-0.0997681 -0.995897 -0.0924067)
(-0.156659 -1.27702 -0.0704399)
(-0.209964 -1.75979 -0.0342456)
(-0.310273 -2.37947 0.00479108)
(-0.384669 -3.15026 0.0402921)
(-0.383262 -3.30143 0.0335435)
(-0.159852 -1.65416 -0.0011397)
(0.00724102 0.373948 0.0163177)
(0.112606 0.956314 0.0859454)
(0.245861 1.43692 0.159485)
(0.321228 1.7506 0.199113)
(0.383875 1.88468 0.181783)
(0.435982 1.9091 0.125567)
(0.4904 1.8651 0.0528007)
(0.542086 1.78383 -0.0151129)
(0.581335 1.68556 -0.068529)
(0.604075 1.57142 -0.108771)
(0.613075 1.44975 -0.141581)
(0.610538 1.3198 -0.172695)
(0.594624 1.18395 -0.206478)
(0.569608 1.03917 -0.2439)
(0.537744 0.89676 -0.280094)
(0.509403 0.753647 -0.308306)
(0.467658 0.612132 -0.330198)
(0.418047 0.468257 -0.347226)
(0.359157 0.333104 -0.347701)
(0.32325 0.211335 -0.336677)
(0.334073 0.122046 -0.297116)
(0.332437 0.061035 -0.26641)
(0.309318 0.0103971 -0.236747)
(0.285115 -0.0391015 -0.211098)
(0.250207 -0.088335 -0.197064)
(0.226582 -0.152075 -0.186002)
(0.195803 -0.208869 -0.175397)
(0.171222 -0.285891 -0.175601)
(0.130035 -0.362312 -0.168705)
(0.106495 -0.468245 -0.163206)
(0.0662225 -0.564448 -0.146008)
(0.034257 -0.713668 -0.128155)
(-0.0153214 -0.851989 -0.111406)
(-0.034351 -1.08495 -0.0964851)
(-0.0950217 -1.36042 -0.0565399)
(-0.1352 -1.85159 -0.0154269)
(-0.229086 -2.49285 0.0269926)
(-0.312347 -3.37477 0.0674727)
(-0.342137 -3.70196 0.0625026)
(-0.149453 -2.16295 0.0160497)
(0.00592884 0.327635 0.00586991)
(0.10518 0.860111 0.062778)
(0.258014 1.31488 0.122365)
(0.352318 1.64651 0.161411)
(0.40827 1.81327 0.159639)
(0.46046 1.8608 0.120724)
(0.516729 1.83326 0.0630856)
(0.574649 1.75519 -0.00261745)
(0.62025 1.65945 -0.0547321)
(0.645072 1.54461 -0.0979148)
(0.65799 1.4225 -0.134717)
(0.659724 1.29103 -0.170816)
(0.649445 1.15335 -0.207056)
(0.635202 1.0106 -0.243119)
(0.613869 0.870487 -0.274017)
(0.590189 0.727133 -0.297369)
(0.547703 0.584644 -0.313814)
(0.502111 0.442581 -0.326894)
(0.455585 0.316683 -0.327331)
(0.436906 0.202431 -0.323735)
(0.466345 0.120077 -0.288255)
(0.4756 0.0564804 -0.264101)
(0.446061 0.00742053 -0.237615)
(0.418862 -0.0496916 -0.217172)
(0.375297 -0.09175 -0.204343)
(0.339383 -0.154041 -0.194895)
(0.293692 -0.210311 -0.185023)
(0.258103 -0.29548 -0.175197)
(0.202738 -0.378602 -0.163693)
(0.163305 -0.501261 -0.153967)
(0.0946655 -0.620051 -0.142836)
(0.0608682 -0.769404 -0.128575)
(0.0042239 -0.902958 -0.10124)
(-0.0112748 -1.12577 -0.081853)
(-0.0690211 -1.40366 -0.0527709)
(-0.0967331 -1.89633 -0.00587125)
(-0.183268 -2.57982 0.0270287)
(-0.268665 -3.58457 0.0900757)
(-0.320984 -4.13394 0.101205)
(-0.15334 -2.79354 0.0578828)
(0.00761538 0.282658 -0.000114787)
(0.0978039 0.756731 0.0446814)
(0.252241 1.18832 0.0953224)
(0.371891 1.51118 0.127285)
(0.435362 1.70683 0.130211)
(0.484706 1.77542 0.104914)
(0.53864 1.77041 0.0592245)
(0.596278 1.70469 0.00661747)
(0.648754 1.6123 -0.0437793)
(0.675809 1.49796 -0.0880362)
(0.691371 1.37607 -0.127759)
(0.696821 1.24473 -0.164908)
(0.694196 1.11079 -0.19975)
(0.691065 0.972606 -0.231051)
(0.678744 0.834935 -0.255515)
(0.662523 0.69351 -0.275922)
(0.628621 0.557145 -0.289018)
(0.596506 0.426268 -0.303425)
(0.561173 0.307697 -0.306347)
(0.556789 0.196154 -0.307907)
(0.604881 0.115268 -0.274292)
(0.62252 0.052192 -0.253695)
(0.589299 0.00208606 -0.235745)
(0.558285 -0.0499527 -0.223633)
(0.507343 -0.0925067 -0.212786)
(0.462374 -0.146138 -0.207608)
(0.402775 -0.193962 -0.200982)
(0.347298 -0.272215 -0.192463)
(0.266785 -0.366427 -0.176997)
(0.213221 -0.491419 -0.153996)
(0.153295 -0.596824 -0.125436)
(0.12499 -0.735964 -0.10714)
(0.0536013 -0.861989 -0.092693)
(0.0237546 -1.04973 -0.0786769)
(-0.0394521 -1.28496 -0.050183)
(-0.0512363 -1.77153 -0.00644743)
(-0.147427 -2.45696 0.0244167)
(-0.243837 -3.59485 0.0912854)
(-0.338754 -4.39369 0.119413)
(-0.179436 -3.31549 0.0823314)
(0.00357972 0.25325 -0.00260707)
(0.0842498 0.676584 0.0347151)
(0.23166 1.08239 0.0773161)
(0.373758 1.40282 0.108712)
(0.455381 1.61076 0.110273)
(0.501654 1.70278 0.0932105)
(0.561913 1.71173 0.0572408)
(0.619647 1.66319 0.0161192)
(0.672093 1.57342 -0.0311668)
(0.704153 1.46225 -0.0744714)
(0.723854 1.34057 -0.113049)
(0.735213 1.21241 -0.148113)
(0.739784 1.08263 -0.177915)
(0.744092 0.948422 -0.203406)
(0.739985 0.813718 -0.223903)
(0.735332 0.676882 -0.24338)
(0.715414 0.548888 -0.258763)
(0.69571 0.425554 -0.275581)
(0.670702 0.310026 -0.281676)
(0.680614 0.19824 -0.284859)
(0.748661 0.11936 -0.252952)
(0.776533 0.055706 -0.23759)
(0.741296 0.00607081 -0.226864)
(0.707521 -0.0430426 -0.222323)
(0.64886 -0.0806486 -0.21587)
(0.600039 -0.128218 -0.216436)
(0.524626 -0.159417 -0.213404)
(0.439279 -0.233435 -0.205904)
(0.33687 -0.32896 -0.178328)
(0.289118 -0.443403 -0.15546)
(0.209489 -0.529742 -0.127915)
(0.175138 -0.675046 -0.0998277)
(0.110301 -0.780061 -0.0739127)
(0.0935738 -0.976214 -0.056306)
(-0.00916277 -1.16591 -0.0515852)
(-0.00829208 -1.60068 -0.00515555)
(-0.105495 -2.26837 0.0208088)
(-0.208239 -3.48591 0.0857365)
(-0.337807 -4.50425 0.126388)
(-0.204039 -3.74092 0.0898314)
(0.00607794 0.210736 -0.00369578)
(0.0741666 0.581519 0.0261871)
(0.2073 0.957977 0.0626585)
(0.358287 1.26765 0.091879)
(0.462523 1.47897 0.0953218)
(0.513957 1.59385 0.0832741)
(0.567884 1.62071 0.0561175)
(0.626426 1.5835 0.0198407)
(0.681935 1.50612 -0.0201461)
(0.72142 1.4017 -0.0585937)
(0.746272 1.28752 -0.0936403)
(0.764645 1.16565 -0.123159)
(0.77561 1.04373 -0.147618)
(0.786805 0.916548 -0.168421)
(0.78948 0.790692 -0.186142)
(0.796537 0.662068 -0.205667)
(0.790392 0.539832 -0.223356)
(0.784344 0.42105 -0.242954)
(0.77097 0.308191 -0.248909)
(0.797954 0.19742 -0.253177)
(0.888337 0.118622 -0.220941)
(0.925846 0.0557347 -0.214738)
(0.890097 0.00532747 -0.211191)
(0.856915 -0.0405702 -0.213173)
(0.792323 -0.071666 -0.210938)
(0.745333 -0.108573 -0.216605)
(0.655767 -0.127002 -0.217064)
(0.533098 -0.185307 -0.210538)
(0.41332 -0.26863 -0.18195)
(0.375082 -0.381518 -0.156891)
(0.286463 -0.459404 -0.126951)
(0.249122 -0.589855 -0.0955048)
(0.159256 -0.680435 -0.0674672)
(0.14302 -0.874632 -0.0334999)
(0.0625465 -1.03782 -0.0280712)
(0.0498989 -1.44299 -0.0125433)
(-0.0714585 -2.04135 0.0216202)
(-0.157636 -3.31574 0.0735584)
(-0.338151 -4.53819 0.127767)
(-0.221856 -4.13124 0.0975511)
(0.00143246 0.195211 -0.00281358)
(0.0590202 0.528482 0.0242063)
(0.173383 0.869814 0.0567101)
(0.322691 1.17635 0.0849988)
(0.454856 1.38097 0.0923891)
(0.525224 1.51299 0.0826345)
(0.575335 1.55684 0.0630145)
(0.634332 1.53249 0.0343194)
(0.692967 1.46599 0.00261567)
(0.739137 1.36767 -0.0342242)
(0.773769 1.25708 -0.0639779)
(0.800051 1.14045 -0.0912955)
(0.817694 1.02248 -0.11182)
(0.835038 0.902213 -0.130876)
(0.844017 0.783429 -0.146089)
(0.856608 0.66364 -0.164332)
(0.858821 0.546572 -0.180509)
(0.864483 0.431919 -0.199681)
(0.865539 0.319668 -0.205847)
(0.909791 0.21109 -0.212475)
(1.02399 0.126612 -0.18304)
(1.07425 0.0655414 -0.184057)
(1.03847 0.0145274 -0.185182)
(1.00942 -0.0297925 -0.193057)
(0.943649 -0.05383 -0.193561)
(0.899147 -0.0833206 -0.204168)
(0.799304 -0.0902449 -0.207037)
(0.647742 -0.135119 -0.205918)
(0.492397 -0.186338 -0.179262)
(0.460132 -0.301836 -0.154087)
(0.365881 -0.367686 -0.124229)
(0.330974 -0.500759 -0.0919607)
(0.225955 -0.570826 -0.0569381)
(0.204558 -0.756924 -0.0348107)
(0.100355 -0.891108 -0.0049894)
(0.118882 -1.28296 -0.00923579)
(-0.0256095 -1.819 0.0190394)
(-0.10765 -3.12555 0.0599204)
(-0.330991 -4.52964 0.122923)
(-0.249337 -4.52786 0.110483)
(0.00642469 0.163302 -0.00235978)
(0.0464596 0.453992 0.0199906)
(0.140736 0.764791 0.0518098)
(0.27745 1.04257 0.077737)
(0.418412 1.24961 0.0905099)
(0.518282 1.37204 0.0833387)
(0.566499 1.44384 0.0670439)
(0.62184 1.42954 0.0451472)
(0.684545 1.37986 0.0176956)
(0.736907 1.29472 -0.00915185)
(0.779532 1.19578 -0.0358143)
(0.817448 1.08601 -0.060525)
(0.844611 0.976455 -0.0786174)
(0.870784 0.86306 -0.0949617)
(0.88633 0.754547 -0.109164)
(0.905545 0.644845 -0.125329)
(0.913449 0.539025 -0.138463)
(0.927041 0.430887 -0.154819)
(0.942103 0.323047 -0.160286)
(1.00195 0.214949 -0.166959)
(1.14136 0.12466 -0.142014)
(1.21094 0.066014 -0.146634)
(1.17461 0.0173652 -0.152797)
(1.15376 -0.0223259 -0.163376)
(1.08766 -0.0395437 -0.166005)
(1.05068 -0.059244 -0.178525)
(0.944572 -0.0549036 -0.177437)
(0.775231 -0.0824167 -0.184907)
(0.588909 -0.114105 -0.168645)
(0.549507 -0.209968 -0.143701)
(0.451316 -0.275228 -0.116556)
(0.424486 -0.403603 -0.0863955)
(0.303579 -0.46377 -0.0506253)
(0.285935 -0.648895 -0.0245995)
(0.155447 -0.75565 -0.00574213)
(0.187172 -1.13271 0.00574757)
(0.0107967 -1.6313 0.0116774)
(-0.0516676 -2.93115 0.0469784)
(-0.338531 -4.50287 0.117281)
(-0.27555 -4.95845 0.126974)
(-0.0039128 0.16786 0.000919555)
(0.0261306 0.452376 0.0275399)
(0.0913615 0.726331 0.0556693)
(0.21659 0.999011 0.0860169)
(0.366206 1.18689 0.100139)
(0.497728 1.30004 0.100846)
(0.567472 1.37391 0.0828468)
(0.612827 1.36755 0.0653793)
(0.682423 1.32237 0.0427621)
(0.74305 1.24361 0.0187293)
(0.794997 1.15341 -0.0016609)
(0.839322 1.04903 -0.0230044)
(0.874648 0.943399 -0.0372006)
(0.911102 0.835764 -0.0556379)
(0.936282 0.732 -0.0672779)
(0.96029 0.62957 -0.0809982)
(0.970929 0.533432 -0.0918519)
(0.986899 0.434282 -0.106926)
(1.01118 0.333201 -0.110488)
(1.08186 0.22728 -0.11385)
(1.24696 0.134345 -0.0929077)
(1.34317 0.0786606 -0.0997454)
(1.3115 0.0350674 -0.107867)
(1.29987 -0.00206392 -0.120149)
(1.23909 -0.0154992 -0.124047)
(1.21054 -0.0301795 -0.138305)
(1.09742 -0.0199775 -0.13608)
(0.915544 -0.0371165 -0.142459)
(0.697363 -0.0493536 -0.132346)
(0.649729 -0.11764 -0.12676)
(0.533662 -0.162205 -0.0979094)
(0.528046 -0.289705 -0.0780156)
(0.386818 -0.334278 -0.0451391)
(0.382843 -0.513697 -0.0211874)
(0.220609 -0.602887 -0.00233868)
(0.259476 -0.962737 0.00338788)
(0.0509078 -1.41887 -0.00195182)
(0.0185056 -2.71846 0.01584)
(-0.360001 -4.44619 0.100524)
(-0.304097 -5.43879 0.131962)
(0.0114117 0.158397 0.00439248)
(0.0154592 0.410048 0.0268537)
(0.0518838 0.670558 0.0642003)
(0.152434 0.885765 0.0866586)
(0.275892 1.06979 0.111304)
(0.435396 1.15893 0.116008)
(0.524701 1.23379 0.102181)
(0.57205 1.23635 0.0856246)
(0.643834 1.20253 0.068424)
(0.715741 1.13731 0.0486519)
(0.781332 1.05901 0.0300252)
(0.83692 0.968148 0.0141163)
(0.88361 0.876739 0.00451818)
(0.929449 0.780975 -0.00772899)
(0.963296 0.686066 -0.0178834)
(0.997848 0.590714 -0.0270271)
(1.01581 0.501872 -0.0403901)
(1.03333 0.412997 -0.0552085)
(1.06493 0.323781 -0.0559255)
(1.14458 0.219234 -0.0571428)
(1.33541 0.13159 -0.0424866)
(1.46364 0.0768669 -0.0479671)
(1.43482 0.0405137 -0.0542534)
(1.43303 0.00458378 -0.0689909)
(1.37514 0.00462818 -0.075038)
(1.35628 -0.00538163 -0.0916732)
(1.24574 0.0254756 -0.0885738)
(1.05805 0.00490977 -0.0976848)
(0.827111 0.012228 -0.0897969)
(0.791561 -0.0507543 -0.0925443)
(0.645937 -0.0587819 -0.075413)
(0.653226 -0.181698 -0.0595478)
(0.50556 -0.209113 -0.0351304)
(0.516109 -0.389505 -0.0187234)
(0.32913 -0.458895 -0.00106372)
(0.377828 -0.820956 0.0013359)
(0.133822 -1.22606 -0.00543086)
(0.116067 -2.52386 -0.0229137)
(-0.372686 -4.36533 0.0780414)
(-0.285733 -6.01231 0.131856)
(-0.021097 0.181114 0.0130739)
(-0.0192503 0.486139 0.046991)
(-0.0205704 0.702214 0.0791456)
(0.0503334 0.933309 0.124599)
(0.187152 1.0668 0.143639)
(0.360266 1.12555 0.160378)
(0.490579 1.16938 0.148035)
(0.5416 1.16467 0.131311)
(0.620037 1.1236 0.116701)
(0.701341 1.06465 0.102136)
(0.779095 0.990857 0.0874178)
(0.847585 0.908927 0.0722674)
(0.906127 0.826417 0.0605828)
(0.960076 0.739508 0.0491399)
(1.00111 0.653301 0.0406456)
(1.04164 0.565543 0.0302756)
(1.06415 0.479974 0.0237054)
(1.08862 0.400206 0.0146425)
(1.12208 0.322276 0.0145444)
(1.20615 0.225447 0.0174558)
(1.42371 0.149819 0.0310995)
(1.58552 0.096567 0.0197724)
(1.56569 0.0651833 0.0154136)
(1.58358 0.0319508 0.00047319)
(1.53607 0.0430555 -0.00414844)
(1.53787 0.0353848 -0.0226816)
(1.42311 0.0832668 -0.0227941)
(1.22974 0.0595391 -0.0408773)
(0.975048 0.0828131 -0.0371549)
(0.957227 0.019628 -0.042464)
(0.806516 0.0204792 -0.0310884)
(0.827083 -0.0628038 -0.0386898)
(0.658524 -0.0815314 -0.0342252)
(0.704984 -0.236301 -0.0150197)
(0.473766 -0.276948 -0.015541)
(0.557576 -0.616903 -0.0102667)
(0.233894 -0.963992 -0.0212145)
(0.323943 -2.20636 -0.0728176)
(-0.314434 -4.25041 0.0496853)
(-0.206199 -6.57816 0.130483)
(0.0380651 0.345757 0.0285553)
(-0.00402579 0.462103 0.0660129)
(-0.0653852 0.650636 0.10757)
(-0.0210535 0.774014 0.141536)
(0.0206594 0.942419 0.188025)
(0.216312 0.960773 0.210387)
(0.38578 1.00554 0.208145)
(0.461017 0.99037 0.191884)
(0.551735 0.960519 0.182566)
(0.651578 0.914058 0.17138)
(0.746898 0.858043 0.158709)
(0.832447 0.793771 0.146656)
(0.903257 0.727509 0.135629)
(0.968991 0.659276 0.126408)
(1.01999 0.590072 0.119453)
(1.07015 0.516914 0.112353)
(1.10252 0.44084 0.109294)
(1.13855 0.371343 0.106656)
(1.18076 0.2999 0.114569)
(1.2816 0.204518 0.11434)
(1.52321 0.147002 0.11864)
(1.71912 0.0906577 0.106584)
(1.71077 0.0615452 0.10121)
(1.75201 0.0342932 0.081826)
(1.71329 0.061999 0.0702403)
(1.73908 0.0582687 0.0468674)
(1.62618 0.120288 0.0378074)
(1.4543 0.102125 0.0207733)
(1.19454 0.146698 0.0151684)
(1.20156 0.0956657 0.0159051)
(1.05573 0.109856 0.00877961)
(1.13727 0.0182117 0.00573618)
(0.944843 0.0103004 0.0045556)
(1.06705 -0.12563 -0.000699741)
(0.797898 -0.174268 -0.00145434)
(0.939593 -0.467957 -0.0142085)
(0.55628 -0.798024 -0.0241951)
(0.691185 -1.86651 -0.0723789)
(-0.0620632 -4.03755 0.00174025)
(0.122897 -7.08549 0.114106)
(-0.19723 0.0934275 0.0452789)
(-0.233179 0.666522 0.113013)
(-0.191514 0.796917 0.178734)
(-0.169848 0.899009 0.243963)
(-0.0698512 0.924377 0.284121)
(0.0758233 0.938144 0.322212)
(0.280126 0.902008 0.321341)
(0.371822 0.867231 0.31086)
(0.487785 0.825998 0.298002)
(0.600216 0.783363 0.287146)
(0.712929 0.736286 0.273802)
(0.814644 0.683712 0.260262)
(0.904097 0.632247 0.247577)
(0.985698 0.578029 0.236949)
(1.04974 0.525375 0.22987)
(1.1122 0.466206 0.226113)
(1.16182 0.399723 0.229121)
(1.22342 0.343404 0.232285)
(1.28339 0.292869 0.241918)
(1.43204 0.206314 0.251127)
(1.72765 0.17322 0.260538)
(1.98355 0.111422 0.233756)
(2.02122 0.0802717 0.220371)
(2.12756 0.0553829 0.196646)
(2.11188 0.0670565 0.178593)
(2.17445 0.0629494 0.152504)
(2.06025 0.136449 0.129157)
(1.92518 0.115488 0.100203)
(1.64588 0.190036 0.0784424)
(1.7263 0.153635 0.0710051)
(1.57301 0.187289 0.0513814)
(1.7296 0.0915541 0.0541473)
(1.52982 0.0917515 0.0387341)
(1.72996 -0.0298179 0.0239851)
(1.40539 -0.0928862 0.0223901)
(1.6182 -0.302489 -0.00365853)
(1.1337 -0.535889 -0.00204389)
(1.35141 -1.34489 -0.0704351)
(0.509079 -3.55231 -0.0224667)
(0.59921 -6.95222 0.142985)
(-0.707424 0.814281 0.226416)
(-0.524586 0.418311 0.326998)
(-0.638763 0.57656 0.36562)
(-0.38569 0.585997 0.393042)
(-0.262494 0.577219 0.422129)
(0.00546226 0.620753 0.423171)
(0.233995 0.58996 0.443945)
(0.435906 0.56624 0.424738)
(0.617207 0.539422 0.412334)
(0.800819 0.514026 0.396269)
(0.978046 0.482591 0.379403)
(1.14983 0.450201 0.363723)
(1.30027 0.419807 0.348978)
(1.44342 0.394155 0.338294)
(1.55868 0.373222 0.333775)
(1.67835 0.338908 0.335329)
(1.79111 0.293305 0.349327)
(1.94937 0.266135 0.360606)
(2.11237 0.221362 0.367163)
(2.38101 0.131175 0.364861)
(2.756 0.104857 0.357489)
(3.12762 0.0437449 0.325027)
(3.21224 0.00886327 0.299461)
(3.38022 -0.0205001 0.265629)
(3.34052 -0.00551747 0.241919)
(3.46181 0.0111665 0.233213)
(3.30541 0.0923111 0.200444)
(3.26186 0.0871754 0.176959)
(2.93635 0.17354 0.141325)
(3.13603 0.166336 0.135446)
(2.95166 0.183592 0.111665)
(3.28915 0.116905 0.105683)
(3.0102 0.0758139 0.0950679)
(3.37905 0.00818255 0.0818023)
(2.89776 -0.0689413 0.0761497)
(3.27358 -0.223931 0.0461558)
(2.59697 -0.51035 0.0678985)
(2.9273 -1.06423 0.0193816)
(1.9828 -2.94783 -0.0295026)
(1.45707 -5.90966 0.196778)
(1.16024 1.4618 0.123082)
(1.73855 0.727351 0.170775)
(2.50281 0.597072 0.199643)
(2.92349 0.385652 0.212827)
(3.21827 0.309176 0.219386)
(3.47482 0.236682 0.231724)
(3.72606 0.214387 0.24462)
(3.94007 0.183126 0.25563)
(4.13011 0.170201 0.263542)
(4.32695 0.156216 0.26844)
(4.51489 0.146143 0.269962)
(4.71005 0.134312 0.269847)
(4.8724 0.12478 0.267983)
(5.033 0.115493 0.267978)
(5.14444 0.11311 0.274328)
(5.28581 0.106875 0.287886)
(5.41776 0.0811345 0.316856)
(5.63793 0.0754438 0.336479)
(5.89978 0.085146 0.338852)
(6.29325 0.0485101 0.331776)
(6.64598 0.0314487 0.317854)
(7.06933 0.00740784 0.272964)
(7.08384 -0.0126919 0.239036)
(7.18682 -0.0427829 0.216104)
(7.01205 -0.0385388 0.205062)
(7.02718 -0.046443 0.196708)
(6.70673 -0.00857598 0.17142)
(6.7074 0.00247146 0.152477)
(6.27791 0.0441031 0.12687)
(6.57502 0.0582884 0.119472)
(6.33924 0.0750627 0.110044)
(6.81757 0.0640411 0.100283)
(6.50366 0.0312141 0.0955876)
(6.91097 0.00147136 0.0865235)
(6.37646 -0.0270279 0.0845092)
(6.60144 -0.109596 0.0731896)
(5.76135 -0.250335 0.092505)
(5.7298 -0.564407 0.137681)
(4.35105 -1.08381 0.0648832)
(2.90182 -2.45991 0.277443)
(0.00129907 -0.000731135 0.00252201)
(0.0143492 -0.0044523 0.00685529)
(0.0293853 -0.00470301 0.00865798)
(0.0402637 -0.00473926 0.00808369)
(0.0464986 -0.0025326 0.00661101)
(0.0466158 -0.00371976 0.0043193)
(0.0422141 -0.00413939 0.00304672)
(0.0299626 -0.00405627 0.00156796)
(0.0187089 -0.000530808 -0.000985176)
(-0.00506026 0.00470331 -0.00434826)
(-0.0377804 -0.00249521 -0.00650366)
(-0.0820253 -0.00578637 -0.0043533)
(-0.133141 -0.00688976 -0.00562262)
(-0.196742 -0.00712888 -0.000161333)
(-0.260718 0.000317788 0.00233045)
(-0.333119 0.00408876 0.0281105)
(-0.415783 0.0025223 0.0610049)
(-0.515139 0.00399665 0.110509)
(-0.569957 0.00565939 0.185863)
(-0.680804 0.0142521 0.262963)
(-0.634767 0.0547792 0.322628)
(-0.525314 0.0468395 0.408247)
(-0.553816 0.0729596 0.475593)
(-0.560562 0.0838781 0.534644)
(-0.564022 0.0863452 0.588859)
(-0.511122 0.0815056 0.617768)
(-0.442303 0.0725971 0.632433)
(-0.343808 0.0683214 0.635959)
(-0.243631 0.0700235 0.618528)
(-0.128997 0.0849842 0.587539)
(-0.0324373 0.0927152 0.509132)
(0.0605266 0.11495 0.430521)
(0.144155 0.118792 0.303612)
(0.176322 0.0793777 0.204356)
(0.160962 0.058411 0.116511)
(0.125091 0.0312234 0.0578234)
(0.0828245 0.0161557 0.0253853)
(0.0455116 0.00994201 0.0119448)
(0.0221357 0.00439585 0.00489555)
(0.00266968 -0.00174832 -0.00194786)
(0.00418646 -0.0117915 0.00638521)
(0.0281471 -0.0227981 0.0202877)
(0.054255 -0.0198011 0.0275959)
(0.0721593 -0.0102204 0.029839)
(0.0765741 -0.001089 0.0291833)
(0.06536 0.00751382 0.029033)
(0.0435999 0.0230083 0.0306247)
(0.0039892 0.0344744 0.0227027)
(-0.0460012 0.0504453 0.0203748)
(-0.142705 0.0628041 0.0294252)
(-0.261577 0.0817796 0.034296)
(-0.394502 0.104882 0.0588981)
(-0.551488 0.136765 0.0702569)
(-0.725665 0.172876 0.0984702)
(-0.909003 0.210425 0.140844)
(-1.11144 0.221554 0.215898)
(-1.30445 0.215771 0.318185)
(-1.48724 0.21462 0.426979)
(-1.6088 0.212158 0.54995)
(-1.71895 0.217037 0.665561)
(-1.64096 0.246707 0.765069)
(-1.46905 0.212539 0.861335)
(-1.40697 0.215224 0.916337)
(-1.33835 0.193162 0.940256)
(-1.27734 0.160906 0.953862)
(-1.15939 0.121234 0.942483)
(-1.02279 0.0840524 0.924156)
(-0.853872 0.063298 0.891413)
(-0.67998 0.0621589 0.840848)
(-0.503759 0.0943177 0.776277)
(-0.334012 0.147535 0.684293)
(-0.15766 0.212471 0.597852)
(-0.0237102 0.253867 0.46062)
(0.0904462 0.24829 0.330112)
(0.163714 0.214748 0.238155)
(0.163329 0.163742 0.160404)
(0.137555 0.119645 0.107072)
(0.090366 0.0888299 0.0735759)
(0.0472381 0.0592556 0.0447653)
(0.00975294 0.0245007 0.0110068)
(0.00551327 -0.026811 0.0149684)
(0.0320174 -0.0404261 0.0386905)
(0.0590468 -0.0286837 0.0522703)
(0.0681466 -0.00220871 0.0543165)
(0.0578303 0.0262519 0.0584952)
(0.0327505 0.0608644 0.0565888)
(-0.0240714 0.100198 0.058815)
(-0.120069 0.145622 0.0583465)
(-0.243957 0.19354 0.0698359)
(-0.408976 0.240104 0.0774418)
(-0.598914 0.306474 0.0883429)
(-0.811363 0.370867 0.109293)
(-1.02771 0.432753 0.139405)
(-1.24856 0.47384 0.188089)
(-1.47165 0.488476 0.256082)
(-1.68164 0.471103 0.353174)
(-1.84343 0.454595 0.450081)
(-1.97901 0.439155 0.54668)
(-2.05593 0.428959 0.644072)
(-2.10594 0.411188 0.721979)
(-1.9714 0.397423 0.773829)
(-1.74986 0.348611 0.814165)
(-1.64458 0.310133 0.812888)
(-1.54376 0.251684 0.78689)
(-1.47924 0.193799 0.770012)
(-1.37206 0.132436 0.734607)
(-1.25272 0.0783663 0.687624)
(-1.10391 0.0419074 0.632755)
(-0.943138 0.0329083 0.570595)
(-0.770969 0.0505576 0.508309)
(-0.619522 0.106322 0.437754)
(-0.45791 0.187191 0.3902)
(-0.295009 0.259991 0.338057)
(-0.148593 0.321477 0.294066)
(-0.0302466 0.308948 0.227371)
(0.0443785 0.27911 0.181247)
(0.0741506 0.232082 0.143062)
(0.0615965 0.186203 0.109275)
(0.0372025 0.133274 0.0698537)
(0.00858883 0.0625882 0.0192496)
(0.0063729 -0.0353358 0.0274262)
(0.0283315 -0.0426178 0.0636196)
(0.0433227 -0.00983384 0.0816289)
(0.0372968 0.0359943 0.0857413)
(0.00574061 0.098013 0.0865786)
(-0.0570589 0.165236 0.0851015)
(-0.15891 0.242005 0.0874282)
(-0.308523 0.331579 0.0860024)
(-0.498039 0.423571 0.0884664)
(-0.718858 0.508751 0.0979786)
(-0.942074 0.586112 0.112644)
(-1.16174 0.640899 0.138049)
(-1.37168 0.666468 0.166998)
(-1.57141 0.66372 0.212966)
(-1.74953 0.645103 0.279964)
(-1.8926 0.619646 0.351768)
(-1.98957 0.603958 0.413711)
(-2.0703 0.58233 0.466332)
(-2.10176 0.56628 0.51301)
(-2.11061 0.533083 0.535771)
(-1.95393 0.493125 0.536428)
(-1.71349 0.416527 0.519828)
(-1.59571 0.353621 0.491146)
(-1.50989 0.272125 0.444723)
(-1.45967 0.205095 0.411607)
(-1.38198 0.129519 0.367555)
(-1.29258 0.0607638 0.320527)
(-1.17352 0.00954904 0.277122)
(-1.05483 -0.0200034 0.243243)
(-0.919204 -0.022871 0.211628)
(-0.780452 0.00688836 0.184577)
(-0.644944 0.0882803 0.172811)
(-0.509889 0.179501 0.178691)
(-0.370743 0.270376 0.205694)
(-0.224007 0.301303 0.191279)
(-0.0989092 0.311316 0.18244)
(-0.0225206 0.285312 0.161161)
(0.00721338 0.248291 0.129395)
(0.0145922 0.187436 0.0849997)
(0.00481342 0.0891088 0.0239821)
(0.00699196 -0.0327802 0.0480254)
(0.0246772 -0.0171802 0.097865)
(0.0181828 0.0364974 0.119502)
(-0.0117832 0.125105 0.117182)
(-0.0698958 0.219498 0.117152)
(-0.1669 0.329561 0.104267)
(-0.307088 0.449677 0.102641)
(-0.496058 0.573836 0.0931885)
(-0.715312 0.683211 0.0908878)
(-0.943863 0.760326 0.0937637)
(-1.15721 0.80605 0.103038)
(-1.35632 0.8161 0.119986)
(-1.52456 0.806515 0.145654)
(-1.66757 0.787247 0.182113)
(-1.78912 0.768855 0.225989)
(-1.88329 0.747856 0.262934)
(-1.94056 0.73374 0.285577)
(-1.99032 0.702681 0.299288)
(-2.00137 0.679799 0.302681)
(-2.0025 0.631368 0.278195)
(-1.85105 0.562125 0.230688)
(-1.60666 0.477351 0.190437)
(-1.49523 0.397129 0.150198)
(-1.42291 0.301782 0.115272)
(-1.39542 0.220399 0.0932744)
(-1.34536 0.138042 0.0751005)
(-1.27827 0.05691 0.0544484)
(-1.19246 -0.000810628 0.0470944)
(-1.10603 -0.062 0.0463328)
(-1.00005 -0.0831979 0.0537771)
(-0.88448 -0.0751647 0.0614541)
(-0.765462 -0.0232386 0.0809536)
(-0.651298 0.0705021 0.105211)
(-0.542847 0.189101 0.169774)
(-0.396093 0.266252 0.208999)
(-0.236353 0.301192 0.200732)
(-0.11934 0.307754 0.184021)
(-0.0493547 0.286942 0.148955)
(-0.0103967 0.227537 0.096842)
(0.000147063 0.108673 0.0278813)
(0.0111081 -0.0116996 0.0792572)
(0.0105305 0.0294439 0.141862)
(-0.0115539 0.121491 0.159014)
(-0.0610335 0.25139 0.147048)
(-0.150204 0.384854 0.127943)
(-0.268166 0.529607 0.107573)
(-0.428411 0.674146 0.0957119)
(-0.633362 0.789623 0.0808602)
(-0.867905 0.857274 0.0694402)
(-1.09354 0.89749 0.0711425)
(-1.27847 0.912939 0.0810426)
(-1.42437 0.911674 0.0935183)
(-1.53906 0.905923 0.103699)
(-1.63879 0.893741 0.116943)
(-1.72199 0.875134 0.130051)
(-1.77972 0.851296 0.132184)
(-1.81886 0.831038 0.118162)
(-1.84734 0.800327 0.092308)
(-1.84593 0.779389 0.0689861)
(-1.8412 0.722613 0.0313683)
(-1.68007 0.651974 -0.0176286)
(-1.44569 0.542428 -0.0561334)
(-1.35095 0.445553 -0.0775156)
(-1.3062 0.330858 -0.0949764)
(-1.29523 0.23142 -0.108139)
(-1.2805 0.138028 -0.117791)
(-1.23984 0.0448357 -0.120543)
(-1.1991 -0.0380043 -0.113001)
(-1.14482 -0.117024 -0.0769322)
(-1.06397 -0.172304 -0.0476485)
(-0.968718 -0.188418 -0.00969564)
(-0.854246 -0.153336 0.0247682)
(-0.748729 -0.0820833 0.0640068)
(-0.666628 0.0525119 0.131982)
(-0.547499 0.163351 0.201245)
(-0.364751 0.249962 0.215791)
(-0.200006 0.294432 0.203386)
(-0.0957476 0.300581 0.165755)
(-0.0283152 0.246468 0.106845)
(-0.0026568 0.117184 0.0318804)
(0.00425622 0.0132338 0.107455)
(0.000289287 0.091743 0.184636)
(-0.0326382 0.227059 0.189811)
(-0.101701 0.382644 0.161003)
(-0.206696 0.54353 0.130613)
(-0.33615 0.698214 0.0956169)
(-0.522062 0.821419 0.0775517)
(-0.755392 0.880398 0.0534347)
(-0.969386 0.925081 0.0514464)
(-1.13839 0.962638 0.0522788)
(-1.27043 0.991355 0.0534321)
(-1.37692 1.00472 0.0513349)
(-1.46069 1.00849 0.0449214)
(-1.53339 0.997087 0.0381713)
(-1.59086 0.979201 0.0260297)
(-1.62816 0.960889 0.00371168)
(-1.63993 0.937373 -0.0222872)
(-1.65461 0.914289 -0.0515783)
(-1.64979 0.895045 -0.0805419)
(-1.64217 0.840699 -0.107732)
(-1.53816 0.785763 -0.134929)
(-1.33807 0.6278 -0.190654)
(-1.25165 0.501012 -0.208356)
(-1.23307 0.369375 -0.220136)
(-1.24387 0.255362 -0.218999)
(-1.2531 0.138907 -0.216246)
(-1.23717 0.0315708 -0.207606)
(-1.21699 -0.0808467 -0.186617)
(-1.18429 -0.1919 -0.152712)
(-1.12119 -0.268541 -0.10028)
(-1.03835 -0.320547 -0.0603628)
(-0.953686 -0.320321 -0.00843748)
(-0.840905 -0.263676 0.0311812)
(-0.769399 -0.134991 0.0866229)
(-0.664692 0.0465469 0.173921)
(-0.467268 0.162082 0.22035)
(-0.270025 0.265235 0.235497)
(-0.129865 0.300497 0.191359)
(-0.0419461 0.259918 0.123666)
(-0.00337439 0.125209 0.0395626)
(0.00394879 0.0405311 0.133066)
(-0.00945322 0.169507 0.219665)
(-0.0515363 0.327265 0.208375)
(-0.129985 0.495318 0.153683)
(-0.24441 0.653833 0.102704)
(-0.398083 0.794344 0.0606461)
(-0.608251 0.870437 0.0489024)
(-0.803355 0.928692 0.03328)
(-0.958914 0.993458 0.0301608)
(-1.09069 1.04773 0.0228697)
(-1.19171 1.07701 0.0139091)
(-1.26862 1.08907 0.00273359)
(-1.33149 1.09198 -0.0167472)
(-1.38321 1.07749 -0.0312015)
(-1.41708 1.06201 -0.0598371)
(-1.44072 1.04425 -0.0928335)
(-1.44983 1.0208 -0.124997)
(-1.45624 0.981699 -0.150812)
(-1.45244 0.947602 -0.168887)
(-1.45546 0.877972 -0.182129)
(-1.425 0.813389 -0.192584)
(-1.2777 0.651302 -0.221704)
(-1.1934 0.500975 -0.251059)
(-1.19362 0.366457 -0.260899)
(-1.22017 0.242328 -0.263773)
(-1.24044 0.113618 -0.262103)
(-1.24065 -0.000295246 -0.255255)
(-1.25283 -0.141851 -0.24252)
(-1.22842 -0.263448 -0.209259)
(-1.20149 -0.398202 -0.168051)
(-1.1481 -0.51229 -0.102156)
(-1.05276 -0.551558 -0.0550937)
(-0.933076 -0.503294 0.00447328)
(-0.826771 -0.383588 0.048204)
(-0.765383 -0.14739 0.129952)
(-0.580579 0.0625187 0.195309)
(-0.330748 0.198378 0.21944)
(-0.163966 0.285379 0.199938)
(-0.0505171 0.262794 0.133668)
(-0.00435559 0.130218 0.0433966)
(0.00225716 0.0860129 0.157513)
(-0.0173377 0.263071 0.25391)
(-0.067065 0.440436 0.231106)
(-0.149486 0.605656 0.156257)
(-0.267492 0.75342 0.0919975)
(-0.43436 0.865582 0.0514841)
(-0.618421 0.939266 0.0350667)
(-0.772292 1.02386 0.0167052)
(-0.892441 1.0853 0.00526671)
(-0.991043 1.12923 -0.00961518)
(-1.0693 1.14783 -0.0317234)
(-1.12641 1.1539 -0.0586207)
(-1.1744 1.14549 -0.0831429)
(-1.21192 1.12488 -0.107765)
(-1.23375 1.09416 -0.135754)
(-1.24558 1.05444 -0.163824)
(-1.25003 1.01196 -0.186142)
(-1.26118 0.961139 -0.199929)
(-1.27729 0.911026 -0.205493)
(-1.29847 0.837882 -0.20235)
(-1.32325 0.766607 -0.199025)
(-1.25155 0.64308 -0.210961)
(-1.17881 0.476982 -0.254363)
(-1.18287 0.345649 -0.266953)
(-1.2177 0.211026 -0.279633)
(-1.23346 0.0676788 -0.282645)
(-1.25751 -0.068122 -0.285151)
(-1.26336 -0.223593 -0.278987)
(-1.29584 -0.388323 -0.265088)
(-1.29541 -0.566899 -0.226799)
(-1.22623 -0.702269 -0.172568)
(-1.12806 -0.786095 -0.101978)
(-1.01224 -0.777089 -0.0485833)
(-0.882523 -0.664263 0.00866453)
(-0.788675 -0.437358 0.0629253)
(-0.662841 -0.11572 0.155789)
(-0.415284 0.095801 0.200498)
(-0.19224 0.243946 0.214697)
(-0.0640105 0.258089 0.144391)
(-0.00410555 0.135398 0.0495795)
(0.00247564 0.137574 0.173145)
(-0.0202463 0.366106 0.27868)
(-0.0716538 0.557565 0.250029)
(-0.152576 0.719264 0.162542)
(-0.277003 0.855113 0.0867908)
(-0.431831 0.945632 0.0429378)
(-0.579084 1.03249 0.0186128)
(-0.696522 1.10826 -0.00179012)
(-0.792325 1.15973 -0.0303347)
(-0.868536 1.18191 -0.0553328)
(-0.925548 1.19004 -0.0857238)
(-0.969578 1.18103 -0.114765)
(-1.00589 1.15802 -0.144281)
(-1.03547 1.11926 -0.167589)
(-1.05237 1.06772 -0.189741)
(-1.06158 1.00326 -0.207298)
(-1.07043 0.937263 -0.217793)
(-1.09165 0.868736 -0.21939)
(-1.13104 0.810934 -0.213285)
(-1.18272 0.749034 -0.198992)
(-1.24281 0.680618 -0.188897)
(-1.23966 0.59025 -0.191999)
(-1.17804 0.430369 -0.242242)
(-1.16438 0.302931 -0.267613)
(-1.19783 0.157287 -0.286769)
(-1.20659 0.0209947 -0.295734)
(-1.225 -0.157305 -0.304594)
(-1.27836 -0.323738 -0.310746)
(-1.3217 -0.538393 -0.300307)
(-1.31285 -0.711725 -0.277983)
(-1.27655 -0.865583 -0.219502)
(-1.19556 -0.98472 -0.151643)
(-1.07913 -1.03528 -0.080313)
(-0.941973 -0.976511 -0.0189376)
(-0.827186 -0.769284 0.0277698)
(-0.704941 -0.41266 0.0855383)
(-0.474201 -0.050756 0.156421)
(-0.230052 0.14706 0.171732)
(-0.0710537 0.2355 0.13951)
(-0.00512661 0.133063 0.0473474)
(0.00363021 0.195579 0.181755)
(-0.0160561 0.475069 0.297825)
(-0.062816 0.676075 0.265555)
(-0.140184 0.832484 0.167617)
(-0.263044 0.946912 0.0934704)
(-0.391566 1.03671 0.0339259)
(-0.499986 1.11956 0.00525133)
(-0.592959 1.17961 -0.0352945)
(-0.670479 1.21016 -0.0664522)
(-0.729636 1.22168 -0.0921193)
(-0.775376 1.21487 -0.127879)
(-0.810669 1.1885 -0.162598)
(-0.841038 1.14479 -0.191952)
(-0.869211 1.08516 -0.212851)
(-0.890272 1.01101 -0.223804)
(-0.90719 0.927037 -0.229569)
(-0.927337 0.844647 -0.228551)
(-0.962386 0.767083 -0.221987)
(-1.0158 0.703741 -0.211744)
(-1.08748 0.64686 -0.197824)
(-1.16506 0.585834 -0.188236)
(-1.20034 0.509831 -0.189561)
(-1.14589 0.38066 -0.232964)
(-1.11594 0.248837 -0.266966)
(-1.12976 0.103851 -0.285297)
(-1.15546 -0.0446107 -0.29933)
(-1.1874 -0.218766 -0.312106)
(-1.24447 -0.437455 -0.321474)
(-1.28283 -0.63911 -0.320464)
(-1.2888 -0.835117 -0.284044)
(-1.27114 -1.019 -0.249874)
(-1.23013 -1.16761 -0.205814)
(-1.14782 -1.25882 -0.146359)
(-1.00772 -1.25336 -0.0779245)
(-0.856801 -1.12387 -0.011368)
(-0.722248 -0.768471 0.0355193)
(-0.541937 -0.315365 0.097953)
(-0.272174 0.0449002 0.139101)
(-0.0694425 0.188535 0.129637)
(-0.00636778 0.131097 0.0475972)
(0.00606609 0.246406 0.186113)
(-0.00740444 0.576725 0.312843)
(-0.0432568 0.78622 0.280848)
(-0.118923 0.927578 0.178756)
(-0.225132 1.0256 0.0952087)
(-0.320187 1.11672 0.0312613)
(-0.404946 1.19002 -0.0167537)
(-0.480815 1.23027 -0.0582636)
(-0.542691 1.24787 -0.0998315)
(-0.589827 1.244 -0.136174)
(-0.62816 1.21965 -0.167743)
(-0.660245 1.17557 -0.194725)
(-0.688672 1.11305 -0.224351)
(-0.718477 1.03341 -0.237078)
(-0.747882 0.94464 -0.23877)
(-0.776751 0.85152 -0.232582)
(-0.812339 0.766732 -0.223807)
(-0.860888 0.689751 -0.213262)
(-0.924161 0.626191 -0.203084)
(-0.9984 0.564574 -0.192868)
(-1.07164 0.503725 -0.191026)
(-1.11081 0.431279 -0.194255)
(-1.06393 0.33316 -0.230694)
(-1.02222 0.198067 -0.251064)
(-1.03321 0.051339 -0.271473)
(-1.04734 -0.107715 -0.287814)
(-1.11306 -0.292627 -0.304692)
(-1.16773 -0.504945 -0.316722)
(-1.19688 -0.711452 -0.29586)
(-1.21162 -0.922656 -0.278417)
(-1.21507 -1.13577 -0.248861)
(-1.2022 -1.33102 -0.199087)
(-1.16436 -1.48048 -0.14751)
(-1.07843 -1.5281 -0.0885928)
(-0.915728 -1.44744 -0.0331824)
(-0.760224 -1.1679 0.00876546)
(-0.553574 -0.669176 0.040853)
(-0.303025 -0.132166 0.0997012)
(-0.0942962 0.108201 0.0963465)
(0.000687511 0.116664 0.0413172)
(0.0103807 0.29401 0.184957)
(0.00791419 0.675278 0.323396)
(-0.0217129 0.889402 0.295439)
(-0.0840324 1.01237 0.187785)
(-0.16319 1.10772 0.0994539)
(-0.230663 1.18767 0.0262084)
(-0.299325 1.24567 -0.0312538)
(-0.359632 1.27221 -0.0873919)
(-0.409794 1.28065 -0.12696)
(-0.452555 1.2616 -0.163787)
(-0.486965 1.21953 -0.197288)
(-0.516403 1.15502 -0.227483)
(-0.547225 1.07403 -0.237002)
(-0.582914 0.978579 -0.244002)
(-0.621911 0.8805 -0.235626)
(-0.663807 0.787285 -0.223503)
(-0.712033 0.705196 -0.210289)
(-0.768889 0.632208 -0.199905)
(-0.832621 0.567759 -0.191667)
(-0.898781 0.501571 -0.18663)
(-0.955037 0.43821 -0.189227)
(-0.978725 0.368532 -0.197952)
(-0.93874 0.297019 -0.229228)
(-0.905684 0.168124 -0.22731)
(-0.903952 0.0183124 -0.243854)
(-0.939729 -0.144102 -0.258499)
(-0.998923 -0.34497 -0.276457)
(-1.04341 -0.535002 -0.274634)
(-1.08085 -0.742057 -0.268302)
(-1.10946 -0.96543 -0.253902)
(-1.13461 -1.20481 -0.216853)
(-1.14615 -1.44437 -0.194286)
(-1.13219 -1.65527 -0.162978)
(-1.08439 -1.78561 -0.125307)
(-0.967585 -1.76992 -0.0747432)
(-0.798857 -1.56543 -0.0109899)
(-0.594412 -1.07007 0.0154164)
(-0.340882 -0.431089 0.0449325)
(-0.105236 0.00770918 0.0588606)
(0.00483799 0.0908413 0.0353555)
(0.0133553 0.326882 0.185395)
(0.0177282 0.752472 0.333403)
(0.000767899 0.977471 0.310216)
(-0.0353171 1.09077 0.204418)
(-0.0848811 1.17452 0.105452)
(-0.134526 1.23423 0.0233476)
(-0.191228 1.27734 -0.0416694)
(-0.240998 1.29374 -0.099718)
(-0.284288 1.29494 -0.147156)
(-0.323032 1.26431 -0.187578)
(-0.356338 1.21074 -0.218885)
(-0.388442 1.13291 -0.236634)
(-0.421233 1.03226 -0.248343)
(-0.461796 0.924965 -0.235532)
(-0.508173 0.824155 -0.222666)
(-0.559064 0.734325 -0.20685)
(-0.614994 0.656516 -0.193612)
(-0.671614 0.584609 -0.183972)
(-0.728785 0.516968 -0.177527)
(-0.778306 0.447308 -0.177026)
(-0.812653 0.383113 -0.182006)
(-0.813364 0.325996 -0.197472)
(-0.784418 0.262248 -0.208772)
(-0.77626 0.145564 -0.206002)
(-0.78615 -0.00824755 -0.20789)
(-0.822081 -0.177917 -0.219893)
(-0.869489 -0.349162 -0.235176)
(-0.910488 -0.533579 -0.233262)
(-0.95231 -0.737042 -0.231656)
(-0.996833 -0.968413 -0.210661)
(-1.04017 -1.22732 -0.204999)
(-1.07393 -1.503 -0.187496)
(-1.08297 -1.76539 -0.162201)
(-1.05664 -1.97402 -0.127257)
(-0.98207 -2.05622 -0.0911138)
(-0.830353 -1.92806 -0.0475004)
(-0.619279 -1.5109 0.00252302)
(-0.36607 -0.780522 0.0220442)
(-0.108939 -0.121873 0.0335036)
(0.00166605 0.0555236 0.0224946)
(0.0146 0.360413 0.178967)
(0.0342885 0.835207 0.337519)
(0.0296568 1.07855 0.325823)
(0.015167 1.18625 0.219489)
(-0.00847267 1.24888 0.111555)
(-0.0435029 1.28014 0.0182286)
(-0.083901 1.29859 -0.0529756)
(-0.114684 1.30291 -0.111443)
(-0.150565 1.29464 -0.15571)
(-0.195896 1.25837 -0.192863)
(-0.231159 1.20089 -0.219996)
(-0.267636 1.1103 -0.239286)
(-0.306722 1.00019 -0.241037)
(-0.348784 0.881931 -0.226895)
(-0.399129 0.780773 -0.201358)
(-0.455961 0.691992 -0.18881)
(-0.514196 0.616243 -0.174647)
(-0.566427 0.543682 -0.166513)
(-0.610832 0.472665 -0.160906)
(-0.643023 0.402611 -0.163129)
(-0.652507 0.345127 -0.172761)
(-0.646766 0.293066 -0.187127)
(-0.637732 0.218018 -0.181301)
(-0.663424 0.10399 -0.175639)
(-0.682861 -0.0307192 -0.171672)
(-0.701464 -0.189446 -0.175335)
(-0.739814 -0.343832 -0.180094)
(-0.779322 -0.516262 -0.187578)
(-0.828476 -0.713884 -0.183083)
(-0.883647 -0.946857 -0.186399)
(-0.939004 -1.21572 -0.183462)
(-0.985327 -1.51115 -0.175897)
(-1.01423 -1.81615 -0.158145)
(-1.01436 -2.08975 -0.130849)
(-0.960515 -2.26973 -0.0957425)
(-0.848645 -2.24888 -0.0571399)
(-0.64199 -1.91655 -0.0257671)
(-0.375245 -1.18809 0.0125621)
(-0.120198 -0.333569 0.0116778)
(-0.0124224 0.0203584 0.0129446)
(0.0165462 0.366218 0.178678)
(0.0507192 0.886724 0.349336)
(0.0665186 1.15139 0.343883)
(0.0618713 1.26395 0.244352)
(0.0507939 1.3094 0.127397)
(0.0327443 1.3224 0.0221108)
(0.0139852 1.31864 -0.055227)
(-0.0081201 1.30972 -0.112631)
(-0.0420118 1.27441 -0.154246)
(-0.06764 1.22826 -0.185348)
(-0.105766 1.16373 -0.206883)
(-0.155895 1.08006 -0.218482)
(-0.199736 0.970839 -0.21828)
(-0.24305 0.854373 -0.210354)
(-0.292967 0.75044 -0.184722)
(-0.351579 0.665033 -0.169739)
(-0.407684 0.587986 -0.156926)
(-0.4525 0.51459 -0.148235)
(-0.485053 0.443639 -0.143768)
(-0.497532 0.380052 -0.150579)
(-0.497464 0.325527 -0.164592)
(-0.504379 0.25698 -0.164495)
(-0.523229 0.175501 -0.156209)
(-0.553655 0.0689419 -0.149928)
(-0.58506 -0.0336297 -0.14369)
(-0.605804 -0.177088 -0.136246)
(-0.629367 -0.324247 -0.138364)
(-0.669631 -0.48972 -0.139728)
(-0.72067 -0.680435 -0.147873)
(-0.779401 -0.909609 -0.156219)
(-0.838851 -1.17804 -0.162034)
(-0.894246 -1.48812 -0.16001)
(-0.936278 -1.82125 -0.148476)
(-0.955177 -2.15188 -0.125632)
(-0.927494 -2.4123 -0.093232)
(-0.837406 -2.5123 -0.0575708)
(-0.654995 -2.28932 -0.0260334)
(-0.400478 -1.61926 -0.00660887)
(-0.112815 -0.630665 0.00430392)
(0.00158763 -0.043022 0.000383655)
(0.0162524 0.376368 0.16051)
(0.0681008 0.941576 0.342301)
(0.10612 1.22668 0.355305)
(0.122448 1.33664 0.25768)
(0.12493 1.37485 0.133946)
(0.114629 1.37122 0.0169958)
(0.100276 1.3602 -0.0572349)
(0.0841468 1.33165 -0.113707)
(0.0654672 1.29621 -0.150503)
(0.0376882 1.2407 -0.175456)
(0.0157281 1.15737 -0.188085)
(-0.0194234 1.06805 -0.193728)
(-0.0770622 0.962768 -0.189038)
(-0.130006 0.846413 -0.178725)
(-0.182877 0.745819 -0.165282)
(-0.241797 0.65631 -0.147729)
(-0.297313 0.580098 -0.137805)
(-0.33388 0.509972 -0.131591)
(-0.35308 0.443786 -0.132403)
(-0.359536 0.378724 -0.141037)
(-0.372935 0.307007 -0.146422)
(-0.395772 0.223827 -0.142103)
(-0.423383 0.141391 -0.135894)
(-0.459276 0.0509863 -0.131225)
(-0.498244 -0.0401347 -0.121634)
(-0.528757 -0.154413 -0.112104)
(-0.548862 -0.299327 -0.0960634)
(-0.58267 -0.459546 -0.103813)
(-0.632026 -0.642976 -0.113839)
(-0.689665 -0.860434 -0.127311)
(-0.751301 -1.12318 -0.137579)
(-0.811913 -1.43735 -0.143113)
(-0.863241 -1.79059 -0.138857)
(-0.895963 -2.16286 -0.122038)
(-0.888182 -2.49645 -0.0919613)
(-0.821095 -2.70213 -0.0557199)
(-0.664225 -2.60617 -0.0249873)
(-0.426288 -2.02779 -0.0141917)
(-0.121535 -0.945688 0.00246528)
(0.0129853 -0.100253 -0.0201419)
(0.00958896 0.358013 0.16125)
(0.0650926 0.975837 0.346825)
(0.126611 1.28852 0.374326)
(0.165523 1.40385 0.283868)
(0.181442 1.43673 0.158934)
(0.187621 1.41373 0.0392928)
(0.191433 1.39574 -0.0399482)
(0.185751 1.36093 -0.0947483)
(0.174589 1.32094 -0.135563)
(0.154526 1.26828 -0.153925)
(0.127238 1.19835 -0.161185)
(0.0921855 1.10073 -0.161767)
(0.0355848 0.991601 -0.158156)
(-0.0229056 0.887045 -0.15143)
(-0.0754417 0.780251 -0.140499)
(-0.133606 0.688925 -0.129103)
(-0.178123 0.61367 -0.126336)
(-0.209073 0.538631 -0.122184)
(-0.23326 0.4615 -0.125172)
(-0.254553 0.376846 -0.127799)
(-0.281437 0.2879 -0.130473)
(-0.309224 0.200302 -0.125528)
(-0.340074 0.117846 -0.12279)
(-0.374963 0.0339248 -0.119434)
(-0.414985 -0.0468812 -0.111918)
(-0.461955 -0.140426 -0.102841)
(-0.492731 -0.263797 -0.0896302)
(-0.518066 -0.416584 -0.0813818)
(-0.556796 -0.592794 -0.0877864)
(-0.609159 -0.803713 -0.100511)
(-0.669881 -1.05797 -0.113354)
(-0.731659 -1.37327 -0.123215)
(-0.789507 -1.74162 -0.125354)
(-0.831795 -2.15218 -0.11478)
(-0.841059 -2.54859 -0.0889414)
(-0.795103 -2.85319 -0.0527344)
(-0.663441 -2.88227 -0.0228652)
(-0.444942 -2.42388 -0.00794534)
(-0.128468 -1.30966 -0.00630509)
(0.035712 -0.176736 -0.0370572)
(0.0188295 0.436084 0.14066)
(0.0866993 1.09107 0.319278)
(0.150994 1.42354 0.35892)
(0.209332 1.54178 0.285682)
(0.23669 1.56825 0.156447)
(0.254088 1.52904 0.0449179)
(0.277579 1.49097 -0.0372864)
(0.284248 1.45248 -0.0900308)
(0.29145 1.42368 -0.116419)
(0.281384 1.38132 -0.129921)
(0.256996 1.31504 -0.132282)
(0.215997 1.22109 -0.133315)
(0.163112 1.10353 -0.130816)
(0.0900567 0.983593 -0.127093)
(0.0208802 0.864692 -0.121866)
(-0.02456 0.759804 -0.115472)
(-0.0722693 0.658366 -0.110967)
(-0.114237 0.564031 -0.115358)
(-0.14933 0.466007 -0.115733)
(-0.179527 0.367583 -0.11591)
(-0.210648 0.274558 -0.118945)
(-0.240204 0.18596 -0.11417)
(-0.270126 0.103545 -0.114679)
(-0.302765 0.0224543 -0.1126)
(-0.339942 -0.0557521 -0.110849)
(-0.389517 -0.137281 -0.09932)
(-0.434165 -0.234141 -0.0874822)
(-0.469962 -0.36179 -0.0796922)
(-0.506777 -0.520153 -0.0747652)
(-0.552223 -0.718171 -0.0795209)
(-0.609181 -0.960729 -0.0909415)
(-0.668043 -1.26991 -0.105436)
(-0.724928 -1.6467 -0.117032)
(-0.772395 -2.08858 -0.116417)
(-0.792422 -2.54439 -0.0960997)
(-0.76562 -2.9453 -0.0561103)
(-0.664486 -3.10288 -0.023111)
(-0.469031 -2.77732 -0.00381052)
(-0.151526 -1.67638 -0.0116969)
(0.0506244 -0.250967 -0.0395181)
(0.00163088 0.560858 0.155373)
(0.0672016 1.25047 0.320195)
(0.148347 1.61121 0.36953)
(0.219271 1.7464 0.309835)
(0.263174 1.77497 0.189757)
(0.298356 1.73793 0.0783332)
(0.353396 1.68428 -0.0107415)
(0.39978 1.63311 -0.0551263)
(0.421573 1.58538 -0.0755892)
(0.402719 1.51631 -0.0918947)
(0.363017 1.42353 -0.104378)
(0.304705 1.30749 -0.1139)
(0.236549 1.17344 -0.116219)
(0.171309 1.02947 -0.115743)
(0.106053 0.904944 -0.119053)
(0.0399893 0.780042 -0.118553)
(-0.00455498 0.66864 -0.114136)
(-0.040415 0.561228 -0.1105)
(-0.0823164 0.457364 -0.115572)
(-0.115866 0.357615 -0.113848)
(-0.149952 0.264978 -0.115715)
(-0.180364 0.176643 -0.111107)
(-0.210125 0.0936828 -0.111394)
(-0.24104 0.0135916 -0.111159)
(-0.272509 -0.0660442 -0.114206)
(-0.318684 -0.143086 -0.102779)
(-0.36543 -0.22461 -0.0897154)
(-0.407742 -0.32645 -0.0835813)
(-0.452161 -0.453331 -0.0822958)
(-0.498335 -0.622021 -0.0828082)
(-0.55419 -0.838875 -0.0840032)
(-0.613649 -1.13525 -0.088586)
(-0.666788 -1.51193 -0.0924197)
(-0.70492 -1.98441 -0.0967917)
(-0.732587 -2.49256 -0.0894832)
(-0.726147 -2.97805 -0.0591784)
(-0.647433 -3.25958 -0.028545)
(-0.486123 -3.09392 0.00212024)
(-0.188663 -2.05595 -0.0162511)
(0.0575128 -0.349953 -0.0704047)
(-0.00450715 0.546061 0.118536)
(0.0647265 1.25596 0.273173)
(0.164928 1.65219 0.335516)
(0.249143 1.82025 0.297999)
(0.308446 1.86648 0.196683)
(0.354887 1.84476 0.0921745)
(0.418796 1.78892 0.00352841)
(0.470966 1.7135 -0.0438268)
(0.496919 1.62577 -0.0704985)
(0.478552 1.52757 -0.0896171)
(0.436858 1.41696 -0.10126)
(0.37754 1.29592 -0.113189)
(0.308074 1.16154 -0.121287)
(0.238198 1.0235 -0.130215)
(0.175109 0.886956 -0.133572)
(0.126148 0.762547 -0.132198)
(0.0738256 0.654058 -0.131714)
(0.0231246 0.54602 -0.127557)
(-0.0206442 0.453229 -0.12127)
(-0.0585319 0.350301 -0.122094)
(-0.0953869 0.259485 -0.121664)
(-0.128126 0.172028 -0.115563)
(-0.156589 0.0896279 -0.114579)
(-0.1868 0.00805098 -0.114208)
(-0.213621 -0.0718033 -0.11677)
(-0.250428 -0.150754 -0.110642)
(-0.295408 -0.225196 -0.0970713)
(-0.338799 -0.310699 -0.0880262)
(-0.387146 -0.412159 -0.0854417)
(-0.441301 -0.546685 -0.0901077)
(-0.509847 -0.720862 -0.101832)
(-0.583535 -0.969253 -0.11772)
(-0.660034 -1.3043 -0.130116)
(-0.699394 -1.76012 -0.124281)
(-0.696774 -2.29711 -0.103249)
(-0.67751 -2.85912 -0.0729263)
(-0.615874 -3.26551 -0.029938)
(-0.482876 -3.30461 0.0156055)
(-0.213846 -2.42264 0.0234738)
(0.0524251 -0.580559 -0.0127073)
(-0.000984821 0.524872 0.100826)
(0.0730274 1.22198 0.23629)
(0.179349 1.63343 0.304364)
(0.269057 1.82156 0.281885)
(0.339037 1.87581 0.200578)
(0.39514 1.85986 0.0993167)
(0.463066 1.79974 0.0140756)
(0.521583 1.71428 -0.0378462)
(0.554524 1.61352 -0.0670735)
(0.543935 1.50951 -0.0893219)
(0.503838 1.3984 -0.104265)
(0.441288 1.27642 -0.118563)
(0.368995 1.14428 -0.130568)
(0.301549 1.00904 -0.140224)
(0.238983 0.878091 -0.14639)
(0.186503 0.750168 -0.15152)
(0.143825 0.629004 -0.157349)
(0.104161 0.522313 -0.158608)
(0.0441451 0.434199 -0.150177)
(-0.00626859 0.345709 -0.136827)
(-0.0410713 0.252991 -0.136678)
(-0.0751001 0.164688 -0.128752)
(-0.10594 0.0825773 -0.121673)
(-0.135611 0.00377468 -0.122202)
(-0.159192 -0.0762172 -0.120034)
(-0.188301 -0.156417 -0.117415)
(-0.222667 -0.23364 -0.109836)
(-0.26209 -0.314178 -0.0995339)
(-0.309217 -0.40168 -0.0929731)
(-0.357817 -0.513924 -0.0937688)
(-0.42057 -0.652347 -0.102164)
(-0.49065 -0.849521 -0.118978)
(-0.577581 -1.11246 -0.142667)
(-0.65856 -1.48888 -0.164746)
(-0.690784 -1.96696 -0.155091)
(-0.672508 -2.53905 -0.118117)
(-0.630143 -3.03455 -0.0595063)
(-0.531103 -3.25695 -0.00459123)
(-0.310861 -2.5867 0.0215956)
(-0.0109006 -0.678256 0.00729001)
(0.00285836 0.487792 0.0652233)
(0.0849724 1.15581 0.187754)
(0.198952 1.58061 0.25815)
(0.294354 1.78791 0.250904)
(0.37245 1.85498 0.184766)
(0.432641 1.84614 0.0925669)
(0.499848 1.78266 0.0130837)
(0.557621 1.69537 -0.0411349)
(0.595437 1.58619 -0.0727956)
(0.595066 1.47555 -0.0953527)
(0.558661 1.35983 -0.11254)
(0.498962 1.23681 -0.130412)
(0.431592 1.1097 -0.144408)
(0.368017 0.981174 -0.156637)
(0.307538 0.853322 -0.164954)
(0.256105 0.729602 -0.173584)
(0.208156 0.6125 -0.184833)
(0.170832 0.498486 -0.193647)
(0.125024 0.397828 -0.195599)
(0.061652 0.320426 -0.173937)
(0.00761687 0.239857 -0.156423)
(-0.0256689 0.158163 -0.146237)
(-0.050984 0.0736007 -0.135417)
(-0.0808132 -0.00370893 -0.132823)
(-0.105637 -0.077737 -0.127739)
(-0.131009 -0.155461 -0.1236)
(-0.161293 -0.232914 -0.11855)
(-0.191673 -0.316185 -0.112494)
(-0.235274 -0.399882 -0.107145)
(-0.282996 -0.503458 -0.10416)
(-0.345199 -0.62292 -0.110555)
(-0.406829 -0.793042 -0.125895)
(-0.481165 -1.01001 -0.149351)
(-0.544172 -1.32114 -0.170202)
(-0.585846 -1.70362 -0.168547)
(-0.599748 -2.22281 -0.137355)
(-0.602759 -2.73783 -0.0788795)
(-0.544324 -3.09642 -0.0139761)
(-0.362058 -2.63983 0.0179845)
(-0.0640443 -0.743477 0.0167675)
(0.00533935 0.44903 0.0458623)
(0.0942416 1.08367 0.149891)
(0.214426 1.51701 0.221134)
(0.313742 1.74355 0.22547)
(0.402802 1.82318 0.173189)
(0.465372 1.82028 0.0924565)
(0.528849 1.75641 0.0168768)
(0.590372 1.66914 -0.0386296)
(0.630247 1.5592 -0.0745675)
(0.637095 1.44264 -0.0981893)
(0.607512 1.32289 -0.117463)
(0.554813 1.20087 -0.1371)
(0.49394 1.07838 -0.154644)
(0.434599 0.95349 -0.171203)
(0.376396 0.828749 -0.184955)
(0.326355 0.706398 -0.198205)
(0.278754 0.591193 -0.213313)
(0.236233 0.478286 -0.224474)
(0.191458 0.369086 -0.22631)
(0.140733 0.271514 -0.211183)
(0.0855061 0.200671 -0.188345)
(0.0357841 0.135359 -0.164091)
(0.00241216 0.059328 -0.148147)
(-0.0184199 -0.00675897 -0.14632)
(-0.0403342 -0.0773513 -0.136772)
(-0.0668396 -0.152152 -0.132395)
(-0.0960942 -0.22744 -0.126527)
(-0.124209 -0.310136 -0.12156)
(-0.162781 -0.392777 -0.117203)
(-0.200628 -0.492269 -0.114724)
(-0.254955 -0.599396 -0.118519)
(-0.30859 -0.749403 -0.130135)
(-0.375593 -0.934321 -0.152378)
(-0.430201 -1.20841 -0.173793)
(-0.485007 -1.55328 -0.179396)
(-0.521415 -2.04102 -0.152015)
(-0.554551 -2.55572 -0.0950568)
(-0.535123 -3.008 -0.0268953)
(-0.39915 -2.75423 0.00418271)
(-0.117094 -0.964874 -0.00304453)
(0.010717 0.4025 0.0283495)
(0.10556 0.991259 0.11118)
(0.22762 1.43012 0.181234)
(0.329222 1.67784 0.196323)
(0.421993 1.77421 0.158048)
(0.491668 1.77662 0.0915232)
(0.559379 1.72009 0.0189358)
(0.619543 1.633 -0.0365033)
(0.659739 1.52351 -0.0760343)
(0.67077 1.40313 -0.101525)
(0.64914 1.28015 -0.122331)
(0.606677 1.15826 -0.143967)
(0.554005 1.0379 -0.165378)
(0.500304 0.914959 -0.186904)
(0.446172 0.793406 -0.204554)
(0.399774 0.674416 -0.219322)
(0.350269 0.560636 -0.234266)
(0.303284 0.446377 -0.246636)
(0.253052 0.336619 -0.247874)
(0.208146 0.222178 -0.238107)
(0.170735 0.141151 -0.210158)
(0.120204 0.0830262 -0.185087)
(0.085952 0.0335189 -0.16175)
(0.0590683 -0.0185564 -0.155703)
(0.0258221 -0.0756751 -0.14807)
(-0.00014997 -0.145811 -0.145188)
(-0.0311882 -0.215744 -0.138662)
(-0.0569649 -0.29663 -0.129836)
(-0.0969758 -0.38067 -0.125905)
(-0.134252 -0.478328 -0.121157)
(-0.187216 -0.579923 -0.12282)
(-0.232654 -0.721832 -0.130893)
(-0.292336 -0.888079 -0.149276)
(-0.338309 -1.14703 -0.166926)
(-0.397284 -1.47121 -0.17544)
(-0.439455 -1.9457 -0.148035)
(-0.488003 -2.4642 -0.0942328)
(-0.496583 -2.99867 -0.0128093)
(-0.399365 -2.91038 0.0145923)
(-0.13484 -1.2373 -0.003157)
(0.00910756 0.36116 0.0151801)
(0.110923 0.895798 0.0783198)
(0.241403 1.32986 0.142839)
(0.340265 1.60285 0.167287)
(0.434851 1.7195 0.143802)
(0.5097 1.73728 0.089481)
(0.582338 1.68632 0.024622)
(0.645086 1.60078 -0.0295146)
(0.685834 1.49146 -0.0718619)
(0.699317 1.36931 -0.101101)
(0.686058 1.24405 -0.125202)
(0.65428 1.11965 -0.149684)
(0.609775 0.996423 -0.175407)
(0.563262 0.87319 -0.200499)
(0.516941 0.755316 -0.218535)
(0.474958 0.637971 -0.233382)
(0.425094 0.524501 -0.247676)
(0.375824 0.409242 -0.258928)
(0.316127 0.295237 -0.259824)
(0.275809 0.179302 -0.252606)
(0.26118 0.0958265 -0.214739)
(0.230366 0.0403467 -0.192444)
(0.193827 0.00343017 -0.172756)
(0.159754 -0.0421294 -0.158897)
(0.118067 -0.0886357 -0.157586)
(0.0800381 -0.148988 -0.155166)
(0.0436971 -0.201523 -0.150073)
(0.0101022 -0.285885 -0.145204)
(-0.0308358 -0.358567 -0.13847)
(-0.0603383 -0.456671 -0.132148)
(-0.112021 -0.553927 -0.128259)
(-0.152033 -0.691432 -0.128949)
(-0.213794 -0.85327 -0.145988)
(-0.257617 -1.11011 -0.161727)
(-0.323376 -1.43457 -0.173474)
(-0.370879 -1.91887 -0.148536)
(-0.439368 -2.46162 -0.0940378)
(-0.46545 -3.0819 -0.00479828)
(-0.399932 -3.12899 0.0224753)
(-0.149232 -1.52888 -0.011679)
(0.00887694 0.315074 0.00334882)
(0.109572 0.795062 0.0541622)
(0.252732 1.20319 0.105199)
(0.356454 1.49666 0.132185)
(0.445565 1.6369 0.121505)
(0.521864 1.6741 0.0826056)
(0.597491 1.63695 0.0275881)
(0.66425 1.55376 -0.0223725)
(0.706786 1.44729 -0.0665523)
(0.722763 1.32463 -0.0996143)
(0.715003 1.19799 -0.128227)
(0.690812 1.06972 -0.156786)
(0.655918 0.944723 -0.184534)
(0.622676 0.823441 -0.208526)
(0.58516 0.707568 -0.225265)
(0.548494 0.590805 -0.240517)
(0.499341 0.477052 -0.252332)
(0.446068 0.357958 -0.261366)
(0.385849 0.245042 -0.258364)
(0.356973 0.138369 -0.249415)
(0.365848 0.0642809 -0.203352)
(0.348297 0.0135659 -0.178392)
(0.311902 -0.0259453 -0.163963)
(0.268278 -0.0699644 -0.159713)
(0.21647 -0.114699 -0.154323)
(0.18198 -0.170272 -0.155605)
(0.128186 -0.221209 -0.156995)
(0.086956 -0.296744 -0.154083)
(0.0415637 -0.363733 -0.153419)
(0.0020016 -0.477199 -0.138869)
(-0.0489485 -0.593448 -0.134314)
(-0.0883083 -0.751178 -0.132071)
(-0.149544 -0.924089 -0.137253)
(-0.187833 -1.19631 -0.146989)
(-0.252406 -1.52246 -0.154003)
(-0.293456 -2.02837 -0.121954)
(-0.369863 -2.60144 -0.066802)
(-0.398645 -3.30686 0.0249235)
(-0.365233 -3.52911 0.0532763)
(-0.142165 -2.02645 0.0050172)
(0.00564344 0.281933 -0.000413154)
(0.0959431 0.711844 0.0406258)
(0.247739 1.09101 0.0816204)
(0.366426 1.38715 0.104586)
(0.45494 1.55029 0.099759)
(0.534982 1.60647 0.0729467)
(0.60909 1.58695 0.0301196)
(0.676579 1.51171 -0.0128402)
(0.724949 1.40813 -0.0584549)
(0.743147 1.2847 -0.0954201)
(0.740041 1.15571 -0.127847)
(0.724252 1.02574 -0.157397)
(0.701514 0.901444 -0.18311)
(0.679115 0.779775 -0.204122)
(0.649801 0.662137 -0.221056)
(0.619043 0.542931 -0.236177)
(0.570604 0.428195 -0.246251)
(0.521731 0.310251 -0.251351)
(0.469491 0.205899 -0.246374)
(0.456537 0.106371 -0.237913)
(0.48614 0.0436551 -0.182253)
(0.476924 -0.00482386 -0.164596)
(0.434348 -0.047399 -0.156676)
(0.386109 -0.0977864 -0.15469)
(0.326503 -0.13538 -0.155544)
(0.278731 -0.19278 -0.153178)
(0.221088 -0.245862 -0.150984)
(0.171418 -0.316957 -0.151957)
(0.0964104 -0.394716 -0.15011)
(0.031454 -0.511784 -0.140613)
(-0.0325119 -0.621538 -0.132489)
(-0.0679083 -0.794795 -0.120264)
(-0.13764 -0.966369 -0.128114)
(-0.165515 -1.24107 -0.127235)
(-0.22992 -1.57419 -0.135431)
(-0.262006 -2.10313 -0.0975983)
(-0.321286 -2.71914 -0.0415514)
(-0.338679 -3.54278 0.0526396)
(-0.341883 -3.96931 0.104743)
(-0.148257 -2.64463 0.0470563)
(0.00557248 0.237893 -0.00290999)
(0.0846136 0.616616 0.0294798)
(0.231992 0.971037 0.0633168)
(0.367049 1.25673 0.0848411)
(0.459036 1.44073 0.0811888)
(0.535963 1.51029 0.0609598)
(0.614604 1.5066 0.0260104)
(0.683457 1.44431 -0.00875426)
(0.732766 1.34722 -0.0522437)
(0.754527 1.22639 -0.0895796)
(0.758413 1.10094 -0.122092)
(0.752574 0.973586 -0.149375)
(0.738917 0.85112 -0.17121)
(0.725877 0.7284 -0.189822)
(0.703332 0.609736 -0.205223)
(0.680237 0.489558 -0.219846)
(0.639153 0.376662 -0.227132)
(0.601811 0.267506 -0.232815)
(0.560308 0.170469 -0.227476)
(0.563272 0.0785469 -0.212299)
(0.613915 0.0206645 -0.162356)
(0.6046 -0.0264768 -0.151367)
(0.554463 -0.0711881 -0.149525)
(0.506307 -0.119286 -0.153536)
(0.439929 -0.154564 -0.159321)
(0.385158 -0.205306 -0.161216)
(0.313672 -0.247435 -0.160446)
(0.247044 -0.320961 -0.154231)
(0.15867 -0.400026 -0.14913)
(0.0934901 -0.511173 -0.132948)
(0.00961652 -0.602424 -0.11358)
(-0.0376271 -0.75747 -0.108992)
(-0.101912 -0.90206 -0.113937)
(-0.13508 -1.16154 -0.118788)
(-0.206036 -1.4633 -0.119677)
(-0.226604 -1.99666 -0.0946188)
(-0.292787 -2.63027 -0.0381065)
(-0.308463 -3.58867 0.0550125)
(-0.344828 -4.24304 0.153085)
(-0.16867 -3.17665 0.0885075)
(0.00309529 0.210609 -0.0055574)
(0.0714583 0.543667 0.0232707)
(0.20618 0.870072 0.0514588)
(0.35444 1.1466 0.0739334)
(0.459229 1.33958 0.0709287)
(0.533439 1.43082 0.057162)
(0.612213 1.44042 0.0300243)
(0.683041 1.38906 -0.000602308)
(0.73838 1.29786 -0.0408499)
(0.767324 1.1828 -0.0752235)
(0.77973 1.05992 -0.105652)
(0.782176 0.934855 -0.129639)
(0.7764 0.812602 -0.148388)
(0.769861 0.69044 -0.164253)
(0.754154 0.572013 -0.177331)
(0.73962 0.453712 -0.190112)
(0.709944 0.344102 -0.199172)
(0.685869 0.241103 -0.205427)
(0.656746 0.149651 -0.199719)
(0.676486 0.061466 -0.184707)
(0.74368 0.0052664 -0.14246)
(0.73813 -0.0463853 -0.136441)
(0.68202 -0.0875853 -0.141442)
(0.634121 -0.131251 -0.152018)
(0.56327 -0.158406 -0.161906)
(0.505015 -0.200283 -0.170279)
(0.421435 -0.225725 -0.172132)
(0.333676 -0.290745 -0.167879)
(0.222879 -0.371925 -0.147302)
(0.154483 -0.478377 -0.129468)
(0.0625821 -0.561667 -0.101278)
(0.0166291 -0.695224 -0.0870442)
(-0.0694529 -0.821232 -0.0895219)
(-0.0897288 -1.04648 -0.103997)
(-0.167842 -1.32443 -0.112403)
(-0.178444 -1.82598 -0.0854153)
(-0.246908 -2.45312 -0.0367221)
(-0.26541 -3.48911 0.0610977)
(-0.34365 -4.36206 0.186732)
(-0.19353 -3.6092 0.119486)
(0.00451313 0.173116 -0.00705093)
(0.0609463 0.458483 0.015539)
(0.177977 0.754338 0.0407039)
(0.327413 1.01337 0.0615501)
(0.447412 1.20357 0.0620846)
(0.524599 1.31403 0.0508846)
(0.598836 1.34068 0.0317505)
(0.669247 1.30338 0.00697351)
(0.727756 1.22463 -0.0234421)
(0.766871 1.11625 -0.0570716)
(0.788993 1.00162 -0.0838245)
(0.801434 0.879673 -0.105335)
(0.803648 0.762349 -0.12161)
(0.80531 0.643834 -0.134343)
(0.795802 0.531749 -0.144926)
(0.790761 0.41945 -0.155026)
(0.773207 0.316092 -0.163889)
(0.764142 0.21784 -0.173956)
(0.747856 0.128777 -0.164619)
(0.781892 0.0388671 -0.156845)
(0.863728 -0.0208013 -0.122282)
(0.864714 -0.072124 -0.122317)
(0.808598 -0.108201 -0.130677)
(0.765306 -0.14495 -0.14672)
(0.691303 -0.161861 -0.158753)
(0.63546 -0.192757 -0.171146)
(0.540375 -0.200956 -0.174186)
(0.418578 -0.252747 -0.169327)
(0.29317 -0.326577 -0.151509)
(0.234206 -0.429329 -0.129638)
(0.134367 -0.497918 -0.100718)
(0.0812374 -0.626639 -0.0648423)
(-0.00307554 -0.719175 -0.0603064)
(-0.0414257 -0.94415 -0.0677702)
(-0.127122 -1.1529 -0.0857787)
(-0.112868 -1.64057 -0.0828864)
(-0.19832 -2.22821 -0.025944)
(-0.205596 -3.32476 0.067148)
(-0.332908 -4.39386 0.22213)
(-0.204163 -3.99996 0.151659)
(9.98897e-05 0.160884 -0.00697622)
(0.0461842 0.413577 0.0127837)
(0.143195 0.676757 0.0369417)
(0.284072 0.922706 0.0565836)
(0.422731 1.10099 0.0617847)
(0.513989 1.22136 0.0524899)
(0.583555 1.26322 0.0384694)
(0.655906 1.23678 0.0189265)
(0.717755 1.16926 -0.00426843)
(0.763831 1.06948 -0.0304854)
(0.800009 0.958845 -0.0563131)
(0.822817 0.840765 -0.0758511)
(0.835034 0.72606 -0.0909346)
(0.844615 0.611607 -0.104907)
(0.84334 0.503379 -0.112534)
(0.845344 0.397466 -0.120428)
(0.837354 0.299262 -0.128363)
(0.83827 0.204997 -0.13791)
(0.830409 0.113195 -0.131675)
(0.875703 0.0232442 -0.127661)
(0.9804 -0.0464063 -0.104902)
(0.995167 -0.0895628 -0.105321)
(0.940584 -0.121125 -0.115186)
(0.9031 -0.149949 -0.134311)
(0.828443 -0.156864 -0.147413)
(0.775693 -0.178616 -0.164589)
(0.672635 -0.1683 -0.164332)
(0.523933 -0.203144 -0.166834)
(0.370335 -0.251689 -0.156557)
(0.32011 -0.358622 -0.128937)
(0.211386 -0.416129 -0.106899)
(0.168902 -0.545818 -0.0616804)
(0.0511304 -0.614582 -0.0477104)
(0.0362697 -0.825294 -0.0335655)
(-0.0694052 -1.00066 -0.0478934)
(-0.0593285 -1.44626 -0.0645208)
(-0.137607 -1.98577 -0.0189083)
(-0.141938 -3.12004 0.0775131)
(-0.309172 -4.37782 0.25842)
(-0.211426 -4.38939 0.192716)
(0.00264684 0.132976 -0.00864917)
(0.0335048 0.352597 0.00674324)
(0.109903 0.583369 0.0303133)
(0.233185 0.80164 0.0509436)
(0.373511 0.970447 0.0591857)
(0.484907 1.07907 0.0539714)
(0.551755 1.14197 0.0417553)
(0.619527 1.12486 0.0273363)
(0.688945 1.07132 0.00939949)
(0.744087 0.986931 -0.0113524)
(0.78471 0.886635 -0.0295002)
(0.821838 0.776817 -0.0481404)
(0.847083 0.669471 -0.0641455)
(0.868781 0.56006 -0.0746096)
(0.876601 0.459445 -0.0880469)
(0.888416 0.36096 -0.100277)
(0.88856 0.269884 -0.107302)
(0.89667 0.178777 -0.110921)
(0.898541 0.0881487 -0.106168)
(0.951937 0.00250736 -0.103998)
(1.08388 -0.0735714 -0.0893356)
(1.12033 -0.109977 -0.087567)
(1.06711 -0.137268 -0.0973667)
(1.04188 -0.156711 -0.1169)
(0.966108 -0.154534 -0.131113)
(0.924444 -0.164552 -0.14966)
(0.820461 -0.138735 -0.150244)
(0.647348 -0.157108 -0.154804)
(0.462367 -0.184542 -0.148883)
(0.413396 -0.274743 -0.12887)
(0.304302 -0.331924 -0.102148)
(0.267008 -0.456973 -0.0727979)
(0.144648 -0.517568 -0.0417227)
(0.115378 -0.706052 -0.0293604)
(0.00158861 -0.861084 -0.0175885)
(0.0352358 -1.26737 -0.0179659)
(-0.0802336 -1.75932 -0.0130373)
(-0.0637273 -2.91338 0.095512)
(-0.29402 -4.33535 0.294974)
(-0.211339 -4.80708 0.241629)
(-0.00569237 0.140957 -0.00720444)
(0.010735 0.356139 0.00977537)
(0.0608645 0.560497 0.0361526)
(0.170693 0.759169 0.0552219)
(0.310453 0.909684 0.0699202)
(0.445759 0.999267 0.0692129)
(0.526311 1.063 0.0560721)
(0.586805 1.05074 0.0445912)
(0.663497 1.00404 0.0298102)
(0.729117 0.922693 0.013871)
(0.783175 0.832394 -0.00131529)
(0.826833 0.731069 -0.0180857)
(0.860648 0.631392 -0.0314219)
(0.893365 0.528087 -0.0537219)
(0.915751 0.432296 -0.0632551)
(0.935285 0.34105 -0.0753489)
(0.940689 0.253343 -0.0802582)
(0.951893 0.165746 -0.0869542)
(0.965559 0.0806629 -0.0818388)
(1.02817 -0.00175149 -0.0799942)
(1.18409 -0.0791385 -0.0674121)
(1.25011 -0.112245 -0.0635785)
(1.20267 -0.131113 -0.0722563)
(1.19094 -0.148816 -0.0920487)
(1.11897 -0.139292 -0.106454)
(1.08983 -0.138084 -0.126773)
(0.986963 -0.101895 -0.131134)
(0.79197 -0.112769 -0.139666)
(0.580713 -0.115853 -0.138398)
(0.529821 -0.19283 -0.12269)
(0.40444 -0.225971 -0.100882)
(0.393225 -0.352806 -0.0712035)
(0.250623 -0.394159 -0.0532535)
(0.238121 -0.580305 -0.0268557)
(0.084953 -0.686591 -0.0162371)
(0.130795 -1.07975 0.00155351)
(-0.0192299 -1.51415 0.0390019)
(0.0233464 -2.6672 0.0867297)
(-0.27182 -4.25015 0.319639)
(-0.210376 -5.25708 0.287478)
(0.00196126 0.134034 -0.00766045)
(0.00160731 0.324005 0.00503554)
(0.0188319 0.518066 0.0348579)
(0.10049 0.671801 0.0598275)
(0.218226 0.803139 0.0735037)
(0.368914 0.869882 0.0820997)
(0.464521 0.927816 0.0713517)
(0.524092 0.923141 0.0606028)
(0.605723 0.886624 0.0509834)
(0.681302 0.8205 0.0377546)
(0.75134 0.740955 0.0254925)
(0.812795 0.652966 0.0136546)
(0.861888 0.565336 -0.00375109)
(0.906725 0.475748 -0.0153324)
(0.938744 0.388113 -0.0259409)
(0.970522 0.302768 -0.0423165)
(0.980033 0.224994 -0.048837)
(0.999264 0.148187 -0.0570183)
(1.02558 0.0688619 -0.0542155)
(1.09692 -0.00974266 -0.0509633)
(1.28025 -0.083455 -0.039993)
(1.38514 -0.119764 -0.0367273)
(1.3398 -0.130556 -0.0428987)
(1.34209 -0.144698 -0.0611301)
(1.28063 -0.124143 -0.0736389)
(1.27142 -0.108975 -0.0918039)
(1.16886 -0.0654076 -0.094311)
(0.968083 -0.07237 -0.105606)
(0.729214 -0.0593848 -0.109157)
(0.689561 -0.121762 -0.108528)
(0.554333 -0.132899 -0.0908928)
(0.55482 -0.251768 -0.0713298)
(0.413287 -0.284239 -0.0502774)
(0.4181 -0.461254 -0.0390737)
(0.242069 -0.547171 -0.0240546)
(0.293821 -0.913967 -0.00463084)
(0.0883642 -1.30526 0.0448734)
(0.148275 -2.44542 0.116984)
(-0.25606 -4.14225 0.329419)
(-0.163575 -5.77532 0.326803)
(-0.0291626 0.160384 0.0016708)
(-0.041086 0.408282 0.0189857)
(-0.0431218 0.552785 0.0414203)
(0.00487307 0.720515 0.0842822)
(0.119592 0.810453 0.119161)
(0.287762 0.843093 0.11966)
(0.41302 0.870018 0.116212)
(0.477176 0.857515 0.102551)
(0.567919 0.817124 0.0949111)
(0.655944 0.757905 0.0855798)
(0.738343 0.686091 0.0753288)
(0.811551 0.605464 0.0574872)
(0.874125 0.524372 0.0468966)
(0.931223 0.442915 0.0348424)
(0.972781 0.365144 0.0271514)
(1.01491 0.287068 0.0161379)
(1.03888 0.217446 0.00869812)
(1.06376 0.151909 -0.00650371)
(1.0977 0.0865923 -0.00247789)
(1.18207 0.00424158 0.0011621)
(1.3898 -0.0577718 0.011035)
(1.53753 -0.0996645 0.0101267)
(1.5097 -0.106689 0.00479865)
(1.53382 -0.12099 -0.00952451)
(1.49137 -0.0938442 -0.0225838)
(1.50068 -0.0800433 -0.0431024)
(1.38724 -0.0329936 -0.0529424)
(1.18865 -0.0372745 -0.0654929)
(0.937544 -0.00985194 -0.0714253)
(0.915945 -0.0527714 -0.0744088)
(0.764274 -0.0521969 -0.0711811)
(0.793581 -0.147302 -0.0630653)
(0.632919 -0.162664 -0.0498371)
(0.681037 -0.322186 -0.0389838)
(0.457992 -0.368392 -0.0317978)
(0.546507 -0.713026 -0.0222898)
(0.250275 -1.02812 0.0318598)
(0.36738 -2.12459 0.0742328)
(-0.16487 -3.9675 0.353051)
(-0.0423981 -6.28676 0.3755)
(0.023398 0.338155 0.00899775)
(-0.0304193 0.41103 0.0316871)
(-0.103072 0.544876 0.0598881)
(-0.0598288 0.594362 0.0916546)
(-0.0240349 0.715741 0.141524)
(0.144199 0.719384 0.180274)
(0.304001 0.737644 0.173211)
(0.390671 0.720386 0.163584)
(0.49495 0.690122 0.160079)
(0.599664 0.642333 0.153419)
(0.701299 0.586454 0.140081)
(0.794418 0.523997 0.130593)
(0.873028 0.461168 0.119224)
(0.946435 0.397696 0.109629)
(1.00358 0.33573 0.100754)
(1.06117 0.273738 0.0914134)
(1.10042 0.21145 0.0829314)
(1.14967 0.155484 0.0774788)
(1.19607 0.0978059 0.0758389)
(1.29689 0.0193658 0.0762617)
(1.53972 -0.0215093 0.0837976)
(1.73747 -0.0791248 0.0739795)
(1.73237 -0.0910522 0.0674216)
(1.78373 -0.104943 0.0541312)
(1.75151 -0.0683649 0.0358904)
(1.78448 -0.0503869 0.0214406)
(1.68385 0.00860319 0.00708837)
(1.51322 -0.00729257 -0.00998491)
(1.25505 0.0435219 -0.0225636)
(1.28224 -0.00303485 -0.0275264)
(1.12957 0.00796237 -0.0226575)
(1.20631 -0.0657304 -0.0386813)
(1.02809 -0.0824076 -0.0330247)
(1.1518 -0.22252 -0.0380331)
(0.883109 -0.274057 -0.0297083)
(1.03139 -0.561325 -0.0350583)
(0.651707 -0.861366 0.020167)
(0.791774 -1.79223 0.0283734)
(0.105686 -3.76466 0.325856)
(0.283303 -6.73253 0.43076)
(-0.207629 0.0976667 0.0215808)
(-0.268168 0.622099 0.071271)
(-0.231802 0.703084 0.138744)
(-0.221744 0.760168 0.2101)
(-0.10637 0.725382 0.2547)
(0.0302316 0.730315 0.311412)
(0.212966 0.683866 0.306978)
(0.323374 0.649548 0.304178)
(0.451836 0.608084 0.295573)
(0.575654 0.564014 0.285651)
(0.700406 0.516263 0.27488)
(0.816785 0.4645 0.260402)
(0.921734 0.415117 0.246459)
(1.0216 0.364212 0.233515)
(1.10476 0.315742 0.22254)
(1.18876 0.264682 0.217545)
(1.2587 0.211737 0.211236)
(1.3397 0.16571 0.213303)
(1.42105 0.117569 0.217395)
(1.59284 0.0493127 0.212662)
(1.88328 0.0286279 0.210162)
(2.14082 -0.0294051 0.196589)
(2.18941 -0.0514385 0.181943)
(2.30212 -0.0742851 0.160601)
(2.29469 -0.0416248 0.135256)
(2.36692 -0.0289238 0.119639)
(2.24497 0.0420484 0.0951703)
(2.11713 0.0111697 0.068467)
(1.84627 0.0826417 0.0467682)
(1.93227 0.0450042 0.0398898)
(1.78222 0.0676401 0.0253578)
(1.9558 -0.00254788 0.0228802)
(1.7311 -0.00422133 0.00840302)
(1.93187 -0.1165 -0.00404961)
(1.60569 -0.176785 0.00433582)
(1.81171 -0.38134 -0.029447)
(1.33213 -0.600238 0.036663)
(1.5212 -1.30636 0.0073818)
(0.71466 -3.28568 0.274845)
(0.821414 -6.63908 0.515683)
(-0.723685 0.820842 0.21172)
(-0.534862 0.403113 0.307664)
(-0.633058 0.540923 0.356482)
(-0.373606 0.52023 0.390546)
(-0.239314 0.493894 0.429079)
(0.0487149 0.500464 0.425691)
(0.286627 0.466611 0.459486)
(0.498421 0.438994 0.443917)
(0.698725 0.411208 0.432814)
(0.898922 0.383936 0.415284)
(1.09444 0.3523 0.395588)
(1.28657 0.319094 0.380445)
(1.45853 0.28777 0.363745)
(1.62688 0.259254 0.348816)
(1.76969 0.233704 0.338379)
(1.91803 0.201765 0.337)
(2.04929 0.167531 0.350891)
(2.21888 0.145629 0.359144)
(2.39399 0.110618 0.358637)
(2.66975 0.036118 0.344761)
(3.0409 0.0127499 0.32719)
(3.4191 -0.0425062 0.2938)
(3.50174 -0.0701614 0.258299)
(3.67324 -0.092847 0.232802)
(3.62799 -0.0621481 0.221486)
(3.73252 -0.0414028 0.212354)
(3.56505 0.0347379 0.177622)
(3.52874 0.0263599 0.150575)
(3.20309 0.0977818 0.106503)
(3.4223 0.0836267 0.1012)
(3.23082 0.109311 0.0742948)
(3.57427 0.041325 0.0714238)
(3.28533 0.0147861 0.0623013)
(3.63361 -0.0299732 0.0367002)
(3.15986 -0.104317 0.0571781)
(3.49322 -0.253497 0.0192334)
(2.85781 -0.529731 0.094986)
(3.08544 -1.03955 0.0560601)
(2.22404 -2.79114 0.190903)
(1.71877 -5.66372 0.577491)
(1.15116 1.46682 0.122661)
(1.73221 0.744188 0.174351)
(2.50564 0.621086 0.208118)
(2.93534 0.412075 0.221691)
(3.2469 0.328341 0.229009)
(3.53335 0.253585 0.242417)
(3.80684 0.213609 0.25765)
(4.03695 0.176919 0.26939)
(4.24092 0.156965 0.276614)
(4.45061 0.137972 0.27996)
(4.6508 0.123998 0.280726)
(4.85865 0.108779 0.278701)
(5.03361 0.0960591 0.274631)
(5.21024 0.0836713 0.274443)
(5.34283 0.0757525 0.278458)
(5.4975 0.0667499 0.295089)
(5.62713 0.044923 0.326005)
(5.8202 0.039735 0.34537)
(6.0481 0.0457236 0.347846)
(6.41568 0.0190404 0.325157)
(6.75723 0.0098496 0.299986)
(7.16898 -0.0170655 0.256412)
(7.19688 -0.0381254 0.208978)
(7.32846 -0.0544082 0.20147)
(7.16267 -0.0500804 0.196504)
(7.16841 -0.051946 0.194042)
(6.82909 -0.0187089 0.167779)
(6.84424 -0.0086013 0.149161)
(6.42366 0.026202 0.115913)
(6.73453 0.0352775 0.104939)
(6.50248 0.0492588 0.0893574)
(6.96606 0.0403323 0.0785471)
(6.65429 0.0106056 0.0878657)
(7.03127 -0.00631059 0.0581564)
(6.51873 -0.0356039 0.0792645)
(6.71623 -0.115272 0.0402281)
(5.95498 -0.246039 0.11891)
(5.85284 -0.542564 0.158363)
(4.55543 -1.05565 0.220162)
(3.1557 -2.3838 0.61064)
(0.00116725 -0.000783436 0.000913646)
(0.0122911 -0.00327953 0.00308259)
(0.025202 -0.00365462 0.00416413)
(0.0349591 -0.00324832 0.00414742)
(0.0416472 -0.0027154 0.00315745)
(0.0435087 -0.00255198 0.00227486)
(0.0431787 -0.00405252 0.000953929)
(0.038412 -0.00281531 0.000483963)
(0.0314378 -0.00819211 -0.000456576)
(0.0157878 -0.00195038 -0.0038454)
(0.000113205 -0.00685804 -0.00650928)
(-0.0312715 0.000338048 -0.00594619)
(-0.072841 -0.00567363 -0.00580982)
(-0.119984 -0.00720364 -0.00496851)
(-0.173295 -0.00694621 -0.00122985)
(-0.236982 -0.000837454 0.00239979)
(-0.289346 0.00596481 0.00909812)
(-0.348283 0.0024431 0.0349768)
(-0.382954 -0.0134102 0.066287)
(-0.483543 -0.0134645 0.115232)
(-0.443388 0.0217052 0.148428)
(-0.30198 0.0254715 0.173984)
(-0.309878 0.0354666 0.201647)
(-0.326546 0.0532433 0.240925)
(-0.337607 0.0664293 0.285826)
(-0.313353 0.0787585 0.323288)
(-0.271645 0.0859095 0.341102)
(-0.203367 0.0923646 0.34233)
(-0.133553 0.0981758 0.32533)
(-0.0588752 0.104125 0.292465)
(0.0107051 0.107912 0.238294)
(0.0822966 0.107754 0.195131)
(0.125539 0.0776145 0.141695)
(0.133977 0.0525024 0.0840921)
(0.12306 0.0353688 0.0412029)
(0.0992688 0.0192673 0.015046)
(0.0731958 0.00921137 0.00335617)
(0.0443547 0.0035767 0.000765893)
(0.0210591 0.000313632 -0.0021126)
(0.00196877 -0.00250737 -0.00410346)
(0.00406578 -0.00893003 0.00144486)
(0.0249173 -0.0179372 0.00887999)
(0.0489622 -0.0155752 0.0130162)
(0.0660085 -0.00880992 0.0157005)
(0.0751277 -0.000578913 0.0156898)
(0.0725278 0.00549316 0.0180141)
(0.0652809 0.0147911 0.0186711)
(0.0410737 0.0210708 0.0209376)
(0.0148805 0.0408012 0.0186507)
(-0.0347599 0.0526341 0.0138743)
(-0.0956469 0.065645 0.022143)
(-0.191185 0.0782782 0.030643)
(-0.316292 0.0989329 0.0365591)
(-0.441854 0.124756 0.0477933)
(-0.579621 0.152633 0.066457)
(-0.731354 0.176942 0.100149)
(-0.885463 0.188568 0.16839)
(-1.04165 0.193017 0.234142)
(-1.14287 0.191882 0.312834)
(-1.24653 0.209611 0.389382)
(-1.18525 0.262724 0.436456)
(-1.02515 0.271069 0.509144)
(-0.97752 0.296682 0.54987)
(-0.931031 0.316196 0.583559)
(-0.888729 0.326884 0.621726)
(-0.803627 0.332676 0.643969)
(-0.697032 0.333486 0.641539)
(-0.558608 0.334108 0.613596)
(-0.419654 0.338751 0.559344)
(-0.277465 0.346301 0.487323)
(-0.142406 0.352997 0.397135)
(-0.029911 0.34636 0.311183)
(0.0588383 0.308379 0.223862)
(0.133348 0.262786 0.16858)
(0.159564 0.197945 0.1079)
(0.146045 0.13972 0.0692056)
(0.118848 0.0964052 0.0432183)
(0.079621 0.0670404 0.0294775)
(0.0431484 0.043609 0.0168819)
(0.00900065 0.018796 0.00351677)
(0.004821 -0.0198598 0.00507461)
(0.0303215 -0.0311733 0.0178279)
(0.0586516 -0.021707 0.0260131)
(0.0748912 -0.00167712 0.0301373)
(0.076741 0.0203654 0.034015)
(0.0662329 0.0443266 0.0368249)
(0.0395991 0.0761485 0.0350218)
(0.00186188 0.109331 0.036758)
(-0.062683 0.153059 0.0399586)
(-0.170012 0.188559 0.0460271)
(-0.290776 0.236677 0.0522606)
(-0.441301 0.276536 0.0627088)
(-0.607028 0.335578 0.0765278)
(-0.789299 0.382703 0.105347)
(-0.975424 0.41727 0.132535)
(-1.16554 0.438207 0.182335)
(-1.3222 0.449465 0.248871)
(-1.45813 0.466778 0.319411)
(-1.53879 0.491421 0.392184)
(-1.60362 0.5159 0.450413)
(-1.49702 0.548044 0.470377)
(-1.2923 0.562808 0.507822)
(-1.20363 0.587514 0.522234)
(-1.12786 0.587667 0.51907)
(-1.06757 0.585233 0.527536)
(-0.974139 0.57565 0.525372)
(-0.864552 0.562283 0.505149)
(-0.727404 0.545906 0.464437)
(-0.591442 0.53421 0.408405)
(-0.456676 0.525061 0.34105)
(-0.333153 0.517661 0.263232)
(-0.215158 0.499045 0.21055)
(-0.107038 0.473475 0.159122)
(-0.0289804 0.426547 0.129045)
(0.0236896 0.349551 0.101182)
(0.0616528 0.27327 0.0820059)
(0.0728024 0.210302 0.0631552)
(0.0577162 0.156881 0.0479029)
(0.036172 0.109959 0.0290254)
(0.00884443 0.0526323 0.00672504)
(0.00665822 -0.0251765 0.0111952)
(0.0336285 -0.0321489 0.0299522)
(0.0601511 -0.00892301 0.0417016)
(0.068497 0.0277719 0.0485866)
(0.0592101 0.0756243 0.0495956)
(0.0348023 0.119013 0.0507939)
(-0.010987 0.184309 0.0522072)
(-0.0903497 0.25438 0.0509591)
(-0.199082 0.319981 0.0564792)
(-0.340741 0.390927 0.0615479)
(-0.498812 0.463212 0.0694842)
(-0.677259 0.524354 0.0843837)
(-0.865921 0.571187 0.0937946)
(-1.05421 0.600154 0.110677)
(-1.2234 0.622717 0.13722)
(-1.37648 0.641538 0.182571)
(-1.49376 0.665764 0.23247)
(-1.59256 0.690267 0.277165)
(-1.63976 0.724503 0.316294)
(-1.67027 0.739683 0.337334)
(-1.54081 0.750028 0.311274)
(-1.31138 0.74592 0.312786)
(-1.20204 0.747289 0.295031)
(-1.11805 0.714419 0.267929)
(-1.05625 0.690978 0.256203)
(-0.974121 0.663755 0.242158)
(-0.883431 0.632126 0.221528)
(-0.769471 0.599014 0.192778)
(-0.660573 0.562743 0.156447)
(-0.551567 0.53339 0.128982)
(-0.455729 0.51423 0.103134)
(-0.366021 0.50849 0.0821342)
(-0.276615 0.490031 0.0702957)
(-0.190185 0.455664 0.0764369)
(-0.116063 0.396506 0.0857202)
(-0.0497035 0.336231 0.0835325)
(-0.00485396 0.271378 0.078721)
(0.0112261 0.218551 0.060815)
(0.0182131 0.158969 0.0392059)
(0.00556369 0.0758529 0.0101352)
(0.00803763 -0.0185614 0.0221917)
(0.0379667 -0.0115112 0.0464878)
(0.0605246 0.0302283 0.0596185)
(0.0634527 0.0930286 0.0656725)
(0.0342573 0.158865 0.0670884)
(-0.00632989 0.237492 0.0651794)
(-0.0677465 0.335517 0.0647023)
(-0.176527 0.439464 0.0547485)
(-0.31425 0.53627 0.0554622)
(-0.478772 0.615053 0.0567263)
(-0.652202 0.678298 0.0599802)
(-0.836876 0.717813 0.0646293)
(-1.00771 0.748468 0.0721845)
(-1.16036 0.772532 0.0877025)
(-1.29166 0.801675 0.103936)
(-1.41 0.82747 0.129524)
(-1.49382 0.852752 0.150551)
(-1.56009 0.874966 0.162275)
(-1.58911 0.903472 0.165021)
(-1.60023 0.908816 0.152489)
(-1.44513 0.899728 0.0950039)
(-1.19523 0.878295 0.073495)
(-1.0843 0.852387 0.0481711)
(-1.01191 0.790514 0.0174799)
(-0.960865 0.74378 0.00381399)
(-0.908125 0.691291 -0.00013755)
(-0.848698 0.63732 -0.00096612)
(-0.776141 0.581872 -0.00484789)
(-0.702147 0.530798 -0.00137567)
(-0.621269 0.480853 0.00857646)
(-0.540425 0.448441 0.0201279)
(-0.469761 0.439897 0.0358638)
(-0.407628 0.441452 0.0494111)
(-0.349428 0.449013 0.0695574)
(-0.269063 0.405235 0.0906554)
(-0.170971 0.355749 0.0927523)
(-0.0889942 0.306391 0.0856105)
(-0.0348925 0.262791 0.0709156)
(-0.00390115 0.198237 0.0449815)
(0.0017304 0.0952109 0.0105061)
(0.0119574 -0.00279769 0.0355868)
(0.043344 0.025166 0.0690433)
(0.0644899 0.0887322 0.0842975)
(0.0490249 0.178439 0.0829698)
(0.0104818 0.272905 0.0778007)
(-0.0323246 0.384596 0.0695012)
(-0.108097 0.510333 0.0615663)
(-0.236817 0.6165 0.0486959)
(-0.403143 0.692712 0.0424644)
(-0.583807 0.755366 0.0426904)
(-0.754156 0.805755 0.0449288)
(-0.908186 0.845933 0.0460629)
(-1.04071 0.884703 0.0449216)
(-1.15697 0.916247 0.0432404)
(-1.25234 0.946087 0.0407859)
(-1.33683 0.964704 0.0449497)
(-1.38741 0.986885 0.0318923)
(-1.42662 1.00326 0.0340612)
(-1.42595 1.02825 0.0236373)
(-1.41709 1.0379 0.0053427)
(-1.27097 1.03056 -0.0398264)
(-1.04351 0.96297 -0.0643087)
(-0.949479 0.899696 -0.0912779)
(-0.904862 0.809367 -0.120138)
(-0.885531 0.736082 -0.131407)
(-0.861368 0.656889 -0.135462)
(-0.830197 0.581671 -0.126021)
(-0.781038 0.506939 -0.122797)
(-0.743796 0.438572 -0.097677)
(-0.690755 0.381158 -0.0656662)
(-0.627359 0.335225 -0.0341992)
(-0.562633 0.311474 0.0027896)
(-0.494363 0.312852 0.0326343)
(-0.458344 0.345773 0.0726556)
(-0.403762 0.359566 0.0995974)
(-0.281459 0.335469 0.104672)
(-0.159681 0.31295 0.101049)
(-0.077803 0.281182 0.0823832)
(-0.0210158 0.218395 0.0526717)
(-0.000905114 0.10303 0.0137998)
(0.0136145 0.0127115 0.0464093)
(0.0485091 0.0666648 0.0937805)
(0.0710569 0.151666 0.100886)
(0.0580598 0.259408 0.0923192)
(0.0106593 0.378328 0.0825821)
(-0.0379946 0.501436 0.0640452)
(-0.138729 0.624316 0.0533017)
(-0.305867 0.6905 0.0289942)
(-0.469996 0.761601 0.0322768)
(-0.618317 0.82934 0.0302639)
(-0.751847 0.895444 0.0273571)
(-0.874721 0.953916 0.0200941)
(-0.978895 0.999445 0.0103822)
(-1.06708 1.03495 -0.0028646)
(-1.13648 1.06163 -0.0167218)
(-1.1901 1.0789 -0.0246714)
(-1.21593 1.09978 -0.0394013)
(-1.23269 1.10724 -0.0556849)
(-1.21882 1.12551 -0.0648265)
(-1.20881 1.11485 -0.0723298)
(-1.12279 1.09633 -0.10585)
(-0.930997 0.963012 -0.143011)
(-0.843965 0.866424 -0.158912)
(-0.82811 0.757875 -0.182539)
(-0.832986 0.674376 -0.186704)
(-0.838552 0.595039 -0.183835)
(-0.838356 0.519413 -0.16764)
(-0.825534 0.439079 -0.152288)
(-0.800262 0.354299 -0.12435)
(-0.762695 0.286214 -0.0814543)
(-0.711585 0.23418 -0.0521133)
(-0.651531 0.207762 -0.0214202)
(-0.582402 0.206738 0.0148224)
(-0.535824 0.238006 0.0450955)
(-0.490741 0.302168 0.104115)
(-0.371283 0.320359 0.112336)
(-0.218351 0.31939 0.114639)
(-0.107155 0.301282 0.0924794)
(-0.0323866 0.238847 0.0603537)
(-0.00177331 0.113136 0.0159137)
(0.0158887 0.0318377 0.0615539)
(0.0525011 0.117363 0.115805)
(0.0781093 0.221151 0.115988)
(0.0621902 0.336643 0.0906816)
(0.0151558 0.450305 0.0632847)
(-0.0454494 0.574826 0.039889)
(-0.177629 0.658208 0.0304173)
(-0.326562 0.734142 0.0150214)
(-0.448783 0.825313 0.0187633)
(-0.575624 0.908702 0.0110158)
(-0.684663 0.97747 0.00355704)
(-0.784012 1.03006 -0.00989066)
(-0.863052 1.07132 -0.0300964)
(-0.926932 1.10019 -0.0486621)
(-0.973167 1.11865 -0.066207)
(-1.00665 1.12676 -0.0831884)
(-1.01974 1.12882 -0.100074)
(-1.0252 1.11474 -0.108594)
(-1.01703 1.10337 -0.113138)
(-1.01416 1.06172 -0.104503)
(-0.99838 1.0277 -0.115813)
(-0.867614 0.897461 -0.146953)
(-0.784194 0.778162 -0.157673)
(-0.787884 0.681112 -0.174859)
(-0.814958 0.602061 -0.179276)
(-0.843644 0.528726 -0.175723)
(-0.866967 0.453869 -0.167631)
(-0.874488 0.370001 -0.160634)
(-0.867163 0.280289 -0.125806)
(-0.835429 0.199569 -0.100204)
(-0.792931 0.138603 -0.0690408)
(-0.73122 0.104127 -0.0362944)
(-0.659184 0.103307 -0.000316104)
(-0.594909 0.12894 0.0314342)
(-0.555929 0.2188 0.0741154)
(-0.446024 0.28678 0.124049)
(-0.273948 0.313095 0.125372)
(-0.138856 0.307968 0.107481)
(-0.0442857 0.251654 0.0689322)
(-0.00278084 0.119312 0.0203671)
(0.0163835 0.0625364 0.0754451)
(0.057069 0.18327 0.136824)
(0.0867943 0.306208 0.133573)
(0.0732032 0.423415 0.0954778)
(0.0297512 0.532323 0.0596592)
(-0.0495938 0.637632 0.0364638)
(-0.169102 0.712964 0.0219323)
(-0.285632 0.817679 0.00731638)
(-0.391516 0.903212 -0.000744258)
(-0.494623 0.977879 -0.0132452)
(-0.586029 1.02985 -0.0304419)
(-0.658552 1.06945 -0.0520235)
(-0.714134 1.09449 -0.0745765)
(-0.761219 1.10423 -0.0933911)
(-0.793352 1.1008 -0.107819)
(-0.815596 1.08295 -0.120096)
(-0.827192 1.05975 -0.128435)
(-0.840914 1.02281 -0.129976)
(-0.854074 0.987804 -0.124932)
(-0.867603 0.934386 -0.10883)
(-0.897298 0.891648 -0.0974803)
(-0.843914 0.808165 -0.115483)
(-0.775056 0.679477 -0.133167)
(-0.783592 0.604238 -0.143617)
(-0.823559 0.530751 -0.153838)
(-0.865655 0.460556 -0.152967)
(-0.903526 0.383126 -0.16635)
(-0.928108 0.289328 -0.158251)
(-0.929088 0.197875 -0.153514)
(-0.908934 0.110942 -0.115353)
(-0.868185 0.0552222 -0.0743976)
(-0.805392 0.0248737 -0.0427484)
(-0.734371 0.0161322 -0.0115263)
(-0.647339 0.0505712 0.0145464)
(-0.586753 0.115711 0.0520764)
(-0.49771 0.228649 0.0893674)
(-0.325348 0.284627 0.125496)
(-0.164489 0.310735 0.109264)
(-0.0513062 0.262474 0.0740629)
(-0.00325519 0.128394 0.0215886)
(0.0171587 0.0967735 0.0850001)
(0.0646564 0.258517 0.15596)
(0.10296 0.394961 0.148942)
(0.0905542 0.510667 0.101222)
(0.0412511 0.619453 0.058403)
(-0.0319812 0.69384 0.0322208)
(-0.123723 0.785998 0.0141575)
(-0.219068 0.879803 -0.00461412)
(-0.309592 0.954564 -0.0234647)
(-0.395945 1.01873 -0.0454193)
(-0.465084 1.05496 -0.0620752)
(-0.520189 1.078 -0.0880137)
(-0.565678 1.07751 -0.11241)
(-0.59943 1.05728 -0.130598)
(-0.626326 1.02589 -0.140095)
(-0.647499 0.977454 -0.143983)
(-0.665304 0.925869 -0.142654)
(-0.689116 0.869765 -0.134628)
(-0.723716 0.825342 -0.120621)
(-0.765991 0.781106 -0.097137)
(-0.826156 0.742544 -0.0751331)
(-0.845752 0.698694 -0.0791453)
(-0.793502 0.592639 -0.108851)
(-0.787191 0.532205 -0.115626)
(-0.83331 0.459796 -0.134777)
(-0.878239 0.389611 -0.139271)
(-0.928143 0.300527 -0.165098)
(-0.960116 0.207538 -0.181295)
(-0.974962 0.106754 -0.166779)
(-0.950471 0.0392158 -0.136235)
(-0.91492 -0.0326798 -0.0950313)
(-0.876391 -0.0960187 -0.0513256)
(-0.807058 -0.120938 -0.0139291)
(-0.73176 -0.0892953 0.0176068)
(-0.65039 -0.00995131 0.0359279)
(-0.54302 0.123722 0.0730023)
(-0.369595 0.229998 0.107964)
(-0.19033 0.290628 0.111811)
(-0.0633361 0.265145 0.0757028)
(-0.00293015 0.133252 0.0237582)
(0.0188945 0.141246 0.090825)
(0.0737802 0.34683 0.171632)
(0.120677 0.491833 0.16348)
(0.122914 0.604105 0.107363)
(0.0664775 0.696702 0.0617722)
(0.00250882 0.769852 0.0292297)
(-0.0604187 0.85118 0.0068761)
(-0.14176 0.925898 -0.0193123)
(-0.203673 0.981659 -0.0435383)
(-0.274697 1.03277 -0.0668926)
(-0.341794 1.05932 -0.0955178)
(-0.386751 1.06134 -0.122963)
(-0.426215 1.03457 -0.142195)
(-0.456816 0.989025 -0.157782)
(-0.48526 0.930091 -0.159647)
(-0.515538 0.861484 -0.154011)
(-0.545234 0.793049 -0.142705)
(-0.58308 0.729341 -0.128593)
(-0.632285 0.68146 -0.111616)
(-0.694269 0.643985 -0.0895224)
(-0.770929 0.614528 -0.0688207)
(-0.828367 0.587027 -0.0664115)
(-0.792853 0.524026 -0.0915721)
(-0.777794 0.461587 -0.102206)
(-0.820406 0.389275 -0.125631)
(-0.870816 0.310137 -0.151455)
(-0.929155 0.216862 -0.174277)
(-0.974686 0.114628 -0.195039)
(-0.978424 0.0320323 -0.187393)
(-0.987499 -0.0551244 -0.16354)
(-0.984946 -0.167152 -0.131275)
(-0.938504 -0.238512 -0.0864022)
(-0.864809 -0.276167 -0.0390284)
(-0.770634 -0.25645 0.00543595)
(-0.681597 -0.165049 0.0298662)
(-0.581632 -0.0139904 0.0506454)
(-0.408484 0.132374 0.0740641)
(-0.212017 0.243085 0.11056)
(-0.0677634 0.25593 0.0728024)
(-0.00389471 0.136143 0.0237237)
(0.020943 0.182265 0.0938196)
(0.0834399 0.430605 0.184493)
(0.143329 0.585852 0.177269)
(0.146104 0.686405 0.114283)
(0.104111 0.760142 0.0642364)
(0.0526646 0.838981 0.0262128)
(0.00722266 0.901228 -0.00364933)
(-0.0512622 0.960272 -0.0337777)
(-0.1152 1.00278 -0.0603654)
(-0.164384 1.02199 -0.0902531)
(-0.205635 1.03174 -0.116916)
(-0.257343 1.01778 -0.14282)
(-0.30326 0.979527 -0.164103)
(-0.334477 0.913455 -0.172909)
(-0.370278 0.839628 -0.165234)
(-0.409883 0.760409 -0.149758)
(-0.454119 0.690411 -0.13096)
(-0.504103 0.630561 -0.113379)
(-0.565609 0.588214 -0.0968935)
(-0.637913 0.553933 -0.0781812)
(-0.717796 0.526453 -0.0650191)
(-0.780476 0.50074 -0.064038)
(-0.756032 0.461475 -0.0858227)
(-0.737947 0.395159 -0.0963)
(-0.778457 0.318592 -0.126323)
(-0.830571 0.232709 -0.152855)
(-0.900225 0.134684 -0.192681)
(-0.931043 0.0420175 -0.201192)
(-0.967615 -0.0514329 -0.196856)
(-0.999983 -0.186719 -0.182137)
(-0.988383 -0.284853 -0.153109)
(-0.97313 -0.388535 -0.115841)
(-0.927583 -0.463237 -0.0645595)
(-0.849447 -0.475888 -0.0105765)
(-0.753497 -0.405019 0.0298734)
(-0.644899 -0.207076 0.0415255)
(-0.457254 0.00838274 0.0577732)
(-0.232647 0.163191 0.0772056)
(-0.0727748 0.231885 0.0696496)
(-0.00247696 0.134464 0.020745)
(0.0220432 0.223655 0.0942446)
(0.0932567 0.51352 0.193442)
(0.160146 0.675897 0.189467)
(0.177243 0.762372 0.122927)
(0.155778 0.832107 0.0673512)
(0.121012 0.895404 0.0215291)
(0.0738455 0.952433 -0.0141316)
(0.0290752 0.982652 -0.0469496)
(-0.00848812 1.01345 -0.0777873)
(-0.0553456 1.02273 -0.106182)
(-0.102492 1.00459 -0.132118)
(-0.135057 0.963795 -0.154747)
(-0.178788 0.912162 -0.168992)
(-0.229562 0.843679 -0.174629)
(-0.27373 0.761478 -0.160309)
(-0.325776 0.680731 -0.137294)
(-0.379858 0.614087 -0.114245)
(-0.438563 0.561735 -0.0976598)
(-0.50476 0.523969 -0.0829483)
(-0.578577 0.490182 -0.0721739)
(-0.650629 0.461883 -0.0651878)
(-0.701561 0.432883 -0.0681207)
(-0.681312 0.409316 -0.0873317)
(-0.668495 0.339158 -0.0944949)
(-0.705223 0.25455 -0.120233)
(-0.762903 0.164339 -0.154044)
(-0.819057 0.0595145 -0.177913)
(-0.869388 -0.0260265 -0.189153)
(-0.924897 -0.16459 -0.191428)
(-0.947077 -0.284537 -0.181342)
(-0.995027 -0.436551 -0.16209)
(-1.01201 -0.588659 -0.120886)
(-0.979333 -0.702868 -0.0789027)
(-0.897668 -0.753864 -0.0319144)
(-0.769926 -0.707272 0.0171207)
(-0.660551 -0.516662 0.0405798)
(-0.513186 -0.191232 0.0456368)
(-0.273758 0.0558679 0.0546881)
(-0.0730339 0.182293 0.0655842)
(-0.0035122 0.131308 0.0194668)
(0.0213831 0.246566 0.0960254)
(0.0964603 0.575377 0.203312)
(0.173453 0.747682 0.207444)
(0.207412 0.830738 0.140153)
(0.208227 0.885604 0.072163)
(0.188096 0.930193 0.0163087)
(0.151021 0.972207 -0.0247512)
(0.108694 0.999865 -0.0606011)
(0.0718764 1.01285 -0.0921145)
(0.0351198 1.00359 -0.119023)
(0.0058578 0.973503 -0.141072)
(-0.0377127 0.924126 -0.156732)
(-0.0799475 0.842654 -0.165755)
(-0.127146 0.772098 -0.161921)
(-0.192262 0.696522 -0.148331)
(-0.251971 0.617406 -0.120283)
(-0.312428 0.557952 -0.0983561)
(-0.372282 0.510415 -0.0837919)
(-0.437686 0.473503 -0.072166)
(-0.503667 0.438446 -0.0675155)
(-0.56212 0.407147 -0.0663776)
(-0.588941 0.382821 -0.0755634)
(-0.576113 0.36526 -0.0904141)
(-0.58261 0.291329 -0.0975035)
(-0.618342 0.202396 -0.11651)
(-0.67107 0.105619 -0.139011)
(-0.717999 0.0158432 -0.155637)
(-0.772552 -0.103681 -0.167207)
(-0.822194 -0.227598 -0.171732)
(-0.894492 -0.381701 -0.16875)
(-0.952828 -0.568695 -0.143066)
(-0.978177 -0.736306 -0.119305)
(-0.973572 -0.885444 -0.0871001)
(-0.92969 -0.977372 -0.0488198)
(-0.818789 -0.979239 -0.00625067)
(-0.66593 -0.844105 0.0345468)
(-0.518339 -0.516753 0.0442623)
(-0.313155 -0.0890356 0.0460317)
(-0.0886136 0.101824 0.0518423)
(0.00679962 0.118029 0.019549)
(0.0203932 0.267952 0.0903263)
(0.101443 0.635521 0.204523)
(0.188987 0.825261 0.213882)
(0.238851 0.905606 0.152336)
(0.257311 0.945428 0.0758919)
(0.25319 0.966971 0.0130816)
(0.228309 0.987367 -0.0322048)
(0.195856 1.00289 -0.0677384)
(0.165414 1.00842 -0.103066)
(0.128307 0.993119 -0.126908)
(0.0884754 0.954712 -0.143586)
(0.0479791 0.884513 -0.152976)
(0.006501 0.806322 -0.151031)
(-0.0389929 0.708404 -0.14124)
(-0.109264 0.640285 -0.124052)
(-0.183759 0.566934 -0.104877)
(-0.243499 0.513221 -0.0824991)
(-0.302818 0.468683 -0.0723159)
(-0.360256 0.429992 -0.0631077)
(-0.41541 0.392671 -0.0628133)
(-0.451565 0.362701 -0.0681267)
(-0.461384 0.348081 -0.0832923)
(-0.465541 0.312663 -0.0860829)
(-0.4951 0.240839 -0.0951996)
(-0.529785 0.156397 -0.0960931)
(-0.562691 0.0607015 -0.10966)
(-0.612846 -0.0299578 -0.12237)
(-0.661389 -0.145131 -0.135615)
(-0.730783 -0.278668 -0.144748)
(-0.807003 -0.455178 -0.13699)
(-0.870506 -0.631917 -0.129759)
(-0.920896 -0.827816 -0.11496)
(-0.940559 -1.01792 -0.092512)
(-0.923905 -1.17492 -0.0611562)
(-0.845412 -1.23729 -0.0221862)
(-0.70379 -1.15248 0.0129228)
(-0.508334 -0.865379 0.0423346)
(-0.332361 -0.361154 0.0369296)
(-0.117323 0.0143721 0.0258927)
(0.0121868 0.0963176 0.016673)
(0.0181843 0.260916 0.0867984)
(0.103915 0.662821 0.201482)
(0.202092 0.868283 0.214989)
(0.264213 0.952444 0.152223)
(0.29622 0.983737 0.0778274)
(0.302467 0.986025 0.0117422)
(0.294378 0.99109 -0.0300625)
(0.275077 0.992164 -0.0687116)
(0.247627 0.982193 -0.0945536)
(0.214033 0.958077 -0.114128)
(0.1745 0.913768 -0.133362)
(0.12696 0.852476 -0.13577)
(0.0712922 0.770449 -0.127753)
(0.0248379 0.678559 -0.113233)
(-0.0349516 0.593094 -0.0979327)
(-0.110378 0.53646 -0.0842722)
(-0.171239 0.482705 -0.0705263)
(-0.225568 0.439014 -0.0610535)
(-0.276089 0.397892 -0.0547067)
(-0.31523 0.363418 -0.0599364)
(-0.330778 0.339719 -0.0737278)
(-0.346337 0.309007 -0.0772375)
(-0.372829 0.258027 -0.0814072)
(-0.410396 0.19116 -0.0809427)
(-0.447396 0.12223 -0.081256)
(-0.476483 0.0284268 -0.0810081)
(-0.509479 -0.0640547 -0.0910081)
(-0.565379 -0.177586 -0.103547)
(-0.635713 -0.319345 -0.107367)
(-0.707779 -0.477578 -0.112462)
(-0.777711 -0.66414 -0.112014)
(-0.835789 -0.875118 -0.106335)
(-0.876267 -1.10035 -0.0920174)
(-0.88544 -1.31063 -0.0675366)
(-0.839533 -1.4513 -0.0340493)
(-0.726268 -1.44768 0.00298608)
(-0.530461 -1.21155 0.0326879)
(-0.325584 -0.716488 0.043182)
(-0.113346 -0.123086 0.0223338)
(0.00355326 0.0532045 0.00859995)
(0.0190768 0.265497 0.0707198)
(0.108433 0.699761 0.187954)
(0.217224 0.92018 0.205521)
(0.295564 1.00466 0.145842)
(0.336948 1.02536 0.0642946)
(0.357986 1.01125 -0.000530742)
(0.365698 1.00648 -0.0404749)
(0.349619 0.993588 -0.0672707)
(0.328852 0.977388 -0.0841143)
(0.298258 0.944497 -0.0958597)
(0.261139 0.89392 -0.0986406)
(0.213644 0.825924 -0.105825)
(0.156383 0.748013 -0.09986)
(0.0944564 0.667357 -0.0857038)
(0.0340347 0.582746 -0.0726152)
(-0.032817 0.522147 -0.0625862)
(-0.0987382 0.469182 -0.0551885)
(-0.146857 0.429569 -0.050837)
(-0.18494 0.390869 -0.0532243)
(-0.209623 0.356777 -0.0605669)
(-0.231826 0.318959 -0.0692686)
(-0.26164 0.265156 -0.0722493)
(-0.294125 0.209545 -0.0745977)
(-0.331306 0.148705 -0.0722928)
(-0.375243 0.0875449 -0.0683755)
(-0.402449 0.00464226 -0.0634778)
(-0.438093 -0.093092 -0.0626967)
(-0.493571 -0.208099 -0.0699805)
(-0.553159 -0.334795 -0.0780163)
(-0.621581 -0.486977 -0.0867369)
(-0.689534 -0.668304 -0.0934389)
(-0.755034 -0.889476 -0.0951564)
(-0.806186 -1.13693 -0.0888731)
(-0.834576 -1.3947 -0.0718799)
(-0.815251 -1.60463 -0.0433917)
(-0.733775 -1.6919 -0.00745845)
(-0.55801 -1.53999 0.0244844)
(-0.325351 -1.06107 0.0351247)
(-0.110213 -0.33576 0.0231282)
(-0.0115562 0.0282193 0.00325266)
(0.0126988 0.249371 0.081904)
(0.0963217 0.718372 0.194404)
(0.213068 0.957683 0.218206)
(0.304932 1.05084 0.161917)
(0.364648 1.0565 0.0792373)
(0.404031 1.04134 0.0135465)
(0.425828 1.01809 -0.0280324)
(0.422911 0.995025 -0.0524113)
(0.406512 0.970581 -0.0653515)
(0.376604 0.940945 -0.0726468)
(0.33809 0.89535 -0.0760358)
(0.287061 0.834224 -0.0759628)
(0.225244 0.760493 -0.0766967)
(0.162631 0.684615 -0.0652039)
(0.102884 0.612731 -0.0585818)
(0.0349221 0.548927 -0.0517461)
(-0.0180705 0.502082 -0.0477405)
(-0.0571143 0.451596 -0.0460005)
(-0.0963652 0.405239 -0.0516996)
(-0.129433 0.351977 -0.0588054)
(-0.16272 0.292684 -0.0663924)
(-0.1968 0.231043 -0.0678509)
(-0.229885 0.171749 -0.0703614)
(-0.266703 0.114221 -0.0667584)
(-0.311707 0.0502354 -0.0638127)
(-0.355443 -0.0143631 -0.0582719)
(-0.388442 -0.109936 -0.0495091)
(-0.428755 -0.21343 -0.0473517)
(-0.482464 -0.335439 -0.0536846)
(-0.542925 -0.48137 -0.0632911)
(-0.608986 -0.661263 -0.0719538)
(-0.674722 -0.888118 -0.0776541)
(-0.733771 -1.15498 -0.0772169)
(-0.775034 -1.45131 -0.0665415)
(-0.77817 -1.72423 -0.0442928)
(-0.728368 -1.89795 -0.0112398)
(-0.572053 -1.83825 0.0214906)
(-0.332509 -1.42435 0.0377607)
(-0.0924141 -0.643488 0.0268907)
(0.00415943 -0.0309043 -0.0101518)
(0.0190853 0.334007 0.0666285)
(0.101107 0.825362 0.16143)
(0.212865 1.08096 0.190816)
(0.307816 1.17628 0.143894)
(0.381324 1.17083 0.0655071)
(0.445128 1.14119 0.0086714)
(0.478496 1.09792 -0.0324541)
(0.489837 1.06993 -0.0547442)
(0.490436 1.05731 -0.063692)
(0.469829 1.03587 -0.0640473)
(0.430134 0.994181 -0.0605719)
(0.373462 0.929844 -0.057524)
(0.305952 0.84767 -0.0553958)
(0.235745 0.760685 -0.0569973)
(0.174423 0.675739 -0.0481008)
(0.118332 0.599991 -0.0412439)
(0.0515173 0.539917 -0.0398914)
(0.000610345 0.474504 -0.0400939)
(-0.0383506 0.404371 -0.0467977)
(-0.0774543 0.336023 -0.0513396)
(-0.112382 0.270176 -0.0616885)
(-0.147559 0.205026 -0.0624259)
(-0.178423 0.145979 -0.0659124)
(-0.216977 0.0869061 -0.0626831)
(-0.25673 0.0230927 -0.0616257)
(-0.300173 -0.031731 -0.0555456)
(-0.346296 -0.10111 -0.0477432)
(-0.387753 -0.195918 -0.0369014)
(-0.435108 -0.309872 -0.0348574)
(-0.490831 -0.451846 -0.0414727)
(-0.553749 -0.624193 -0.0528705)
(-0.617233 -0.849292 -0.0646987)
(-0.677483 -1.12657 -0.0738368)
(-0.726238 -1.4563 -0.0734525)
(-0.742632 -1.78773 -0.0577889)
(-0.714594 -2.05661 -0.0236988)
(-0.592962 -2.098 0.0169157)
(-0.372904 -1.77043 0.0355079)
(-0.0990026 -0.959856 0.0264379)
(0.0240684 -0.116974 -0.0205108)
(-0.00235199 0.44775 0.0907161)
(0.0701827 0.963686 0.180166)
(0.190908 1.24634 0.211651)
(0.293576 1.35683 0.172808)
(0.379012 1.36932 0.0990337)
(0.456297 1.33411 0.0404025)
(0.521127 1.27333 -0.00849839)
(0.574543 1.23018 -0.0279539)
(0.58657 1.1939 -0.0309968)
(0.552896 1.14202 -0.0310407)
(0.496774 1.07452 -0.0318524)
(0.423504 0.990153 -0.0341871)
(0.344584 0.89263 -0.0372802)
(0.271912 0.791095 -0.0412069)
(0.209831 0.694099 -0.0477444)
(0.157036 0.601345 -0.0500373)
(0.107658 0.522025 -0.044827)
(0.0500367 0.455506 -0.0458804)
(0.00142375 0.389826 -0.0482416)
(-0.0331912 0.314395 -0.0521051)
(-0.0711264 0.249246 -0.0578344)
(-0.10525 0.183782 -0.0607849)
(-0.135665 0.124477 -0.0634328)
(-0.17538 0.0635169 -0.0612452)
(-0.208961 0.00402987 -0.0621308)
(-0.245101 -0.0525596 -0.0608498)
(-0.294303 -0.110381 -0.0536182)
(-0.343709 -0.182876 -0.0468156)
(-0.392783 -0.276883 -0.0417527)
(-0.440606 -0.40365 -0.0372003)
(-0.498862 -0.568966 -0.0337456)
(-0.561339 -0.797538 -0.0349635)
(-0.621879 -1.08752 -0.038653)
(-0.672827 -1.45439 -0.0447199)
(-0.710666 -1.84311 -0.043109)
(-0.708141 -2.19561 -0.0239868)
(-0.604593 -2.33641 0.00774805)
(-0.412878 -2.10835 0.0469307)
(-0.132915 -1.27312 0.0116965)
(0.0357072 -0.170598 -0.044376)
(-0.00613426 0.423211 0.0511908)
(0.0656257 0.954327 0.154062)
(0.19431 1.26385 0.194476)
(0.305892 1.40276 0.176433)
(0.399748 1.44176 0.117015)
(0.478911 1.41267 0.0656913)
(0.552864 1.35276 0.0179453)
(0.610492 1.28272 -0.0104301)
(0.621457 1.20538 -0.0213938)
(0.589261 1.12672 -0.0301551)
(0.535352 1.04393 -0.035667)
(0.464419 0.956183 -0.0411953)
(0.386829 0.859883 -0.0465802)
(0.313285 0.763983 -0.0513728)
(0.250133 0.669712 -0.0541316)
(0.200037 0.580587 -0.0578819)
(0.152381 0.495641 -0.0636936)
(0.108493 0.419949 -0.0624077)
(0.0497222 0.362716 -0.0567471)
(0.000510194 0.299338 -0.0558665)
(-0.033125 0.230748 -0.058951)
(-0.0695365 0.166293 -0.0616011)
(-0.0996132 0.108933 -0.0637207)
(-0.13692 0.0444282 -0.0611419)
(-0.16767 -0.00938363 -0.0633131)
(-0.197768 -0.0704406 -0.0654423)
(-0.24026 -0.12568 -0.0616003)
(-0.288369 -0.186649 -0.0519667)
(-0.345059 -0.256404 -0.0474997)
(-0.405456 -0.35858 -0.0513224)
(-0.476911 -0.495742 -0.0610256)
(-0.549551 -0.697703 -0.0716098)
(-0.621984 -0.972068 -0.0786992)
(-0.666469 -1.34963 -0.0731088)
(-0.68427 -1.78938 -0.0637197)
(-0.679655 -2.22639 -0.0484361)
(-0.602771 -2.49082 -0.00880949)
(-0.422504 -2.40575 0.032968)
(-0.129142 -1.63348 0.0585178)
(0.0561947 -0.361559 -0.0258427)
(-0.00277884 0.401831 0.0442873)
(0.0698692 0.924382 0.131317)
(0.194327 1.24096 0.173088)
(0.311036 1.39408 0.163164)
(0.405954 1.44313 0.112915)
(0.483172 1.41544 0.0626595)
(0.565084 1.35472 0.0166112)
(0.626062 1.27225 -0.01325)
(0.646855 1.18383 -0.0263869)
(0.621244 1.10019 -0.0368023)
(0.567875 1.01615 -0.044533)
(0.494751 0.925916 -0.0521598)
(0.418018 0.830942 -0.0593519)
(0.350015 0.736269 -0.063049)
(0.289435 0.64566 -0.0658559)
(0.237131 0.556174 -0.0674432)
(0.191397 0.47098 -0.0721064)
(0.15164 0.389139 -0.0782316)
(0.105081 0.322297 -0.0798994)
(0.0481254 0.270421 -0.0671005)
(-0.00167402 0.212337 -0.065741)
(-0.0314894 0.147809 -0.0663626)
(-0.065448 0.0889772 -0.0673462)
(-0.100993 0.0284781 -0.0653279)
(-0.127556 -0.0258665 -0.0659316)
(-0.155613 -0.0856977 -0.0681827)
(-0.188705 -0.14402 -0.0661934)
(-0.227682 -0.205123 -0.0620866)
(-0.279059 -0.268218 -0.0552117)
(-0.334377 -0.350483 -0.0543714)
(-0.402124 -0.455903 -0.0598874)
(-0.478677 -0.617325 -0.0725306)
(-0.575062 -0.841344 -0.0925453)
(-0.663795 -1.17215 -0.116438)
(-0.706144 -1.58564 -0.121421)
(-0.70052 -2.05621 -0.106996)
(-0.644056 -2.4131 -0.0684812)
(-0.500071 -2.48627 -0.00847137)
(-0.223162 -1.82958 0.0314753)
(0.0180135 -0.43384 0.0147196)
(0.0088122 0.367328 0.0241316)
(0.0853061 0.862611 0.102152)
(0.202547 1.18439 0.142476)
(0.318954 1.35213 0.14086)
(0.417705 1.40855 0.100245)
(0.495715 1.39284 0.051748)
(0.576197 1.33174 0.00817482)
(0.63481 1.24723 -0.020451)
(0.660057 1.14881 -0.0345338)
(0.643828 1.05715 -0.044746)
(0.593393 0.966999 -0.0533375)
(0.523569 0.875328 -0.0628079)
(0.452442 0.785031 -0.0705891)
(0.389009 0.695432 -0.075119)
(0.330506 0.607487 -0.077848)
(0.280385 0.521137 -0.0801279)
(0.231544 0.43921 -0.0845394)
(0.194874 0.357198 -0.0911095)
(0.153559 0.28525 -0.0967371)
(0.101448 0.225616 -0.0930367)
(0.0454114 0.181543 -0.0801914)
(0.000543812 0.126646 -0.0745626)
(-0.0289155 0.0682997 -0.0752431)
(-0.0616645 0.0089356 -0.071601)
(-0.0887626 -0.0400356 -0.0704948)
(-0.115847 -0.0977921 -0.0694011)
(-0.147258 -0.153038 -0.0673171)
(-0.1797 -0.218745 -0.0652508)
(-0.22438 -0.281629 -0.0640913)
(-0.274435 -0.362432 -0.0640597)
(-0.341421 -0.457035 -0.0697815)
(-0.409639 -0.602114 -0.0838881)
(-0.493872 -0.793581 -0.106063)
(-0.570011 -1.07562 -0.130423)
(-0.629719 -1.42548 -0.14176)
(-0.661634 -1.88088 -0.133567)
(-0.647562 -2.27669 -0.0946768)
(-0.548273 -2.47512 -0.0254049)
(-0.293166 -1.94069 0.0277212)
(-0.0161372 -0.455344 0.0326254)
(0.0121547 0.348337 0.0142969)
(0.0929368 0.801892 0.0732109)
(0.206353 1.12401 0.118379)
(0.320465 1.30253 0.121338)
(0.423934 1.36921 0.0912283)
(0.503679 1.36183 0.0432795)
(0.582816 1.30004 0.00562136)
(0.64098 1.21531 -0.022911)
(0.669449 1.11396 -0.0391518)
(0.659873 1.01513 -0.0498508)
(0.61426 0.919817 -0.0603505)
(0.550649 0.827956 -0.0713582)
(0.485976 0.740334 -0.0807558)
(0.427569 0.652735 -0.0865665)
(0.372482 0.567809 -0.0901373)
(0.323788 0.483809 -0.0927688)
(0.275913 0.404782 -0.0986205)
(0.236123 0.325238 -0.105957)
(0.199421 0.24804 -0.112176)
(0.15815 0.176269 -0.107982)
(0.102784 0.130478 -0.0960485)
(0.0511536 0.0928574 -0.0900159)
(0.00910756 0.044694 -0.0814867)
(-0.0177977 -0.00478299 -0.0769279)
(-0.0405803 -0.0529543 -0.0753595)
(-0.0698222 -0.109352 -0.0728352)
(-0.101719 -0.161986 -0.0690906)
(-0.132552 -0.224078 -0.0677134)
(-0.171613 -0.287933 -0.0658112)
(-0.212905 -0.368253 -0.0677985)
(-0.270542 -0.456712 -0.0753373)
(-0.331626 -0.589836 -0.0913313)
(-0.409308 -0.763229 -0.118886)
(-0.482143 -1.02999 -0.151286)
(-0.558271 -1.36859 -0.177402)
(-0.614353 -1.82107 -0.173803)
(-0.635657 -2.23821 -0.135232)
(-0.575801 -2.52847 -0.055728)
(-0.366536 -2.13189 -0.00167596)
(-0.0744042 -0.633725 0.0161794)
(0.0127252 0.311026 0.00729031)
(0.0974603 0.719256 0.0476466)
(0.211279 1.03869 0.0929558)
(0.320982 1.23029 0.100087)
(0.428815 1.30985 0.0794207)
(0.509346 1.31205 0.0402696)
(0.584473 1.25463 0.00350656)
(0.644521 1.17187 -0.0263241)
(0.673917 1.07057 -0.0459871)
(0.669868 0.965796 -0.0567083)
(0.63122 0.865478 -0.0664546)
(0.575941 0.772149 -0.0783644)
(0.517797 0.684958 -0.090185)
(0.465307 0.59988 -0.098356)
(0.415051 0.519134 -0.102959)
(0.371289 0.438929 -0.107627)
(0.323182 0.363325 -0.11456)
(0.28139 0.284602 -0.122658)
(0.236992 0.209145 -0.125051)
(0.204117 0.121562 -0.125067)
(0.172499 0.0760057 -0.102736)
(0.117501 0.0418733 -0.0968053)
(0.0709437 0.0120893 -0.0898613)
(0.0366908 -0.0186732 -0.0878419)
(0.00360287 -0.0645672 -0.0823063)
(-0.0246068 -0.116126 -0.0776166)
(-0.0551044 -0.167247 -0.0718939)
(-0.0873248 -0.232121 -0.0687639)
(-0.128981 -0.2898 -0.0678041)
(-0.166271 -0.371412 -0.0678739)
(-0.22142 -0.45529 -0.0741281)
(-0.27327 -0.586557 -0.0889569)
(-0.344972 -0.748504 -0.119354)
(-0.412042 -1.01267 -0.156868)
(-0.495004 -1.34709 -0.192251)
(-0.560941 -1.80989 -0.194864)
(-0.599929 -2.25355 -0.158873)
(-0.569819 -2.63125 -0.0735178)
(-0.397914 -2.35703 -0.00405485)
(-0.105437 -0.875192 0.0178044)
(0.00792549 0.280366 0.00262463)
(0.0959299 0.643539 0.0293749)
(0.215739 0.946502 0.0691266)
(0.320441 1.15105 0.0786209)
(0.425847 1.24402 0.0670629)
(0.508868 1.25697 0.0396455)
(0.585752 1.20956 0.00496701)
(0.646196 1.13081 -0.0244796)
(0.676322 1.03127 -0.0468716)
(0.675313 0.923119 -0.0616863)
(0.644806 0.818032 -0.0747077)
(0.598753 0.719978 -0.0878149)
(0.548794 0.631334 -0.0991077)
(0.504528 0.547485 -0.106407)
(0.460412 0.469645 -0.111526)
(0.419975 0.391257 -0.118162)
(0.372587 0.317042 -0.126569)
(0.329558 0.238926 -0.134072)
(0.276813 0.161321 -0.133583)
(0.254304 0.0779612 -0.128682)
(0.242888 0.035949 -0.0927536)
(0.198626 0.00732789 -0.0874132)
(0.154253 -0.0173223 -0.0896989)
(0.107951 -0.0467102 -0.0896983)
(0.0633074 -0.0776318 -0.089167)
(0.0303687 -0.124743 -0.0845298)
(-0.01019 -0.171655 -0.0789492)
(-0.0390538 -0.230697 -0.0757307)
(-0.0790221 -0.290101 -0.06778)
(-0.116407 -0.365838 -0.0683756)
(-0.168476 -0.445101 -0.0739034)
(-0.21573 -0.573982 -0.0895263)
(-0.285365 -0.736271 -0.123298)
(-0.352354 -1.00819 -0.164605)
(-0.444546 -1.3537 -0.209568)
(-0.520438 -1.84385 -0.217243)
(-0.578608 -2.32815 -0.184355)
(-0.57199 -2.79266 -0.0844861)
(-0.438487 -2.63758 -0.0123575)
(-0.139155 -1.15268 0.00846028)
(0.00539768 0.241902 0.0010369)
(0.0870748 0.565711 0.0213187)
(0.212433 0.838881 0.0529662)
(0.319127 1.0517 0.0598446)
(0.421052 1.15709 0.0526006)
(0.505815 1.18421 0.0331915)
(0.582013 1.14882 0.00426235)
(0.643885 1.07559 -0.0225731)
(0.674703 0.979047 -0.0474045)
(0.676636 0.870553 -0.0658514)
(0.652242 0.764141 -0.0815707)
(0.616388 0.664174 -0.0954299)
(0.57696 0.575187 -0.105422)
(0.541617 0.491213 -0.112857)
(0.502806 0.413025 -0.119482)
(0.467249 0.334305 -0.127356)
(0.42119 0.260599 -0.133379)
(0.37583 0.181809 -0.138225)
(0.322422 0.106565 -0.13273)
(0.316145 0.0344106 -0.11732)
(0.331498 0.00622172 -0.0718946)
(0.285711 -0.0220715 -0.0677597)
(0.231357 -0.0507179 -0.0776002)
(0.186454 -0.0825295 -0.0872539)
(0.132724 -0.107446 -0.0873141)
(0.0883489 -0.147921 -0.0863384)
(0.0472786 -0.184545 -0.0870922)
(0.00900548 -0.247998 -0.0786779)
(-0.0347281 -0.31028 -0.0759909)
(-0.0665013 -0.401812 -0.0693295)
(-0.124697 -0.495069 -0.0715492)
(-0.17101 -0.648194 -0.0852298)
(-0.242067 -0.826814 -0.118444)
(-0.301104 -1.1206 -0.161247)
(-0.393907 -1.48135 -0.206443)
(-0.469968 -2.01086 -0.217441)
(-0.541412 -2.54494 -0.182842)
(-0.551747 -3.11409 -0.0789994)
(-0.437731 -3.08202 0.000733333)
(-0.137787 -1.64304 0.0149793)
(0.00394051 0.212046 -0.00279478)
(0.074306 0.49857 0.0161543)
(0.201254 0.746366 0.0378275)
(0.315868 0.956312 0.0511433)
(0.411016 1.07619 0.0449058)
(0.497409 1.11216 0.0303195)
(0.575906 1.09098 0.00444603)
(0.637107 1.02269 -0.0188199)
(0.6705 0.93094 -0.0448297)
(0.677161 0.824102 -0.0653838)
(0.662264 0.71919 -0.0816669)
(0.636957 0.61961 -0.0936156)
(0.606061 0.529109 -0.102515)
(0.577108 0.442174 -0.110153)
(0.543115 0.361192 -0.117888)
(0.511871 0.27993 -0.126218)
(0.46735 0.20481 -0.13194)
(0.42553 0.127273 -0.13183)
(0.378992 0.0604519 -0.117274)
(0.396075 0.00434332 -0.100672)
(0.423508 -0.0271126 -0.0560867)
(0.372083 -0.0639108 -0.0542408)
(0.315871 -0.0879625 -0.0660362)
(0.268617 -0.121454 -0.0781539)
(0.211866 -0.146163 -0.0831936)
(0.164165 -0.18356 -0.0834875)
(0.100616 -0.214929 -0.0813404)
(0.049241 -0.275885 -0.0832266)
(-0.00798036 -0.335497 -0.0808476)
(-0.0537344 -0.443385 -0.0718732)
(-0.125317 -0.543001 -0.0704149)
(-0.177947 -0.70605 -0.0874034)
(-0.249131 -0.887335 -0.123333)
(-0.297496 -1.19415 -0.162836)
(-0.386478 -1.5755 -0.210767)
(-0.455006 -2.15397 -0.215894)
(-0.536734 -2.75579 -0.175757)
(-0.543231 -3.44946 -0.0743219)
(-0.443091 -3.57022 0.0207855)
(-0.146814 -2.25831 0.046002)
(0.0043409 0.176521 -0.00504285)
(0.0638469 0.422405 0.0115243)
(0.18235 0.648366 0.0274951)
(0.305336 0.841406 0.0422987)
(0.399443 0.974616 0.0374126)
(0.481763 1.02108 0.025627)
(0.56001 1.01139 0.00665327)
(0.621663 0.95317 -0.0142321)
(0.660306 0.866752 -0.0397907)
(0.673343 0.766131 -0.0601638)
(0.667827 0.665076 -0.0759458)
(0.652146 0.566335 -0.0876035)
(0.628852 0.475544 -0.0963247)
(0.60662 0.386954 -0.104109)
(0.576819 0.305149 -0.111235)
(0.550873 0.223227 -0.118382)
(0.511267 0.148766 -0.121861)
(0.478118 0.0776101 -0.116828)
(0.447903 0.0191565 -0.0969685)
(0.472011 -0.0303551 -0.0835513)
(0.5048 -0.0745829 -0.0456656)
(0.459911 -0.104927 -0.0485187)
(0.400687 -0.12756 -0.0585121)
(0.350459 -0.157399 -0.0721328)
(0.289035 -0.178667 -0.0812808)
(0.235774 -0.215819 -0.0836202)
(0.16926 -0.242817 -0.0832125)
(0.102243 -0.293348 -0.0814316)
(0.0185094 -0.34854 -0.0773731)
(-0.033331 -0.450103 -0.0674008)
(-0.108005 -0.528797 -0.0678716)
(-0.161339 -0.677122 -0.0736588)
(-0.24054 -0.838087 -0.106217)
(-0.290124 -1.13333 -0.149988)
(-0.385565 -1.50794 -0.198265)
(-0.450995 -2.12342 -0.211369)
(-0.553111 -2.78103 -0.176286)
(-0.546576 -3.60631 -0.0710867)
(-0.471993 -3.93512 0.0439772)
(-0.177394 -2.81909 0.076486)
(0.0022994 0.155934 -0.00618518)
(0.0520742 0.367145 0.00954398)
(0.156175 0.569668 0.0211325)
(0.284674 0.748156 0.0377878)
(0.384157 0.881155 0.0344835)
(0.462212 0.943109 0.0247456)
(0.542787 0.942404 0.0108233)
(0.603752 0.894941 -0.00479212)
(0.646337 0.816002 -0.0273575)
(0.67012 0.718647 -0.0474698)
(0.67412 0.620354 -0.0637955)
(0.668332 0.522466 -0.0760493)
(0.652902 0.431254 -0.0849879)
(0.637057 0.343253 -0.0930059)
(0.613176 0.261409 -0.0989331)
(0.592246 0.182347 -0.106266)
(0.56008 0.110301 -0.103705)
(0.538175 0.0416623 -0.0967519)
(0.514029 -0.00978383 -0.0787319)
(0.544272 -0.070926 -0.0688796)
(0.589035 -0.112714 -0.0403734)
(0.5549 -0.139649 -0.0425385)
(0.491489 -0.156499 -0.0539263)
(0.441466 -0.18045 -0.0668266)
(0.373791 -0.191912 -0.0811234)
(0.319588 -0.221666 -0.0872959)
(0.241084 -0.230816 -0.0887724)
(0.161862 -0.282489 -0.089548)
(0.0589977 -0.343157 -0.0757839)
(0.00442265 -0.432123 -0.0604458)
(-0.0823033 -0.502085 -0.0531499)
(-0.146051 -0.620125 -0.0564225)
(-0.22764 -0.75316 -0.0866054)
(-0.266342 -1.03569 -0.123954)
(-0.376192 -1.39074 -0.182967)
(-0.431691 -2.01027 -0.205557)
(-0.548065 -2.6962 -0.18544)
(-0.546141 -3.62401 -0.0783662)
(-0.503773 -4.15141 0.0601621)
(-0.207356 -3.29293 0.125371)
(0.00279924 0.125024 -0.00755743)
(0.0420691 0.300725 0.00533197)
(0.129047 0.481386 0.0152686)
(0.252562 0.638063 0.0281259)
(0.359572 0.761923 0.0304092)
(0.436975 0.834689 0.0219248)
(0.510934 0.845553 0.0127114)
(0.57641 0.805454 0.000482661)
(0.622072 0.740536 -0.0166543)
(0.652597 0.650961 -0.034915)
(0.669614 0.557632 -0.0507387)
(0.674226 0.463148 -0.0634555)
(0.668843 0.375594 -0.0739838)
(0.661705 0.288435 -0.081747)
(0.644674 0.21292 -0.0901864)
(0.631294 0.138611 -0.091516)
(0.603578 0.0710577 -0.0846841)
(0.592701 0.0049811 -0.0804561)
(0.573656 -0.0497417 -0.064385)
(0.603987 -0.112605 -0.0598175)
(0.669983 -0.157229 -0.0406072)
(0.6476 -0.17698 -0.0378433)
(0.584974 -0.186728 -0.0492793)
(0.537332 -0.202027 -0.0631416)
(0.467195 -0.201809 -0.0790741)
(0.418475 -0.218512 -0.0894812)
(0.33093 -0.208758 -0.0982603)
(0.212177 -0.248163 -0.0943144)
(0.0950815 -0.318441 -0.0788044)
(0.050121 -0.400126 -0.0565599)
(-0.0267207 -0.471283 -0.0359893)
(-0.0874946 -0.571751 -0.0333824)
(-0.204898 -0.672505 -0.0552501)
(-0.246719 -0.912588 -0.105542)
(-0.346279 -1.23218 -0.154838)
(-0.39044 -1.85158 -0.199983)
(-0.523753 -2.53724 -0.191441)
(-0.518246 -3.55661 -0.0888948)
(-0.534278 -4.27862 0.0790826)
(-0.233993 -3.75235 0.16777)
(-0.00204784 0.116699 -0.0079803)
(0.0293045 0.272253 0.00293865)
(0.0956248 0.426751 0.0150968)
(0.206475 0.572478 0.0234157)
(0.324867 0.675327 0.0290785)
(0.4093 0.751044 0.0237104)
(0.477492 0.769806 0.0169508)
(0.544393 0.736252 0.00799838)
(0.600338 0.676288 -0.00539408)
(0.636644 0.596291 -0.0181044)
(0.663541 0.508642 -0.033608)
(0.6825 0.416944 -0.0483877)
(0.686182 0.329995 -0.0590902)
(0.689917 0.248371 -0.0734581)
(0.683422 0.169779 -0.0779374)
(0.674203 0.0950431 -0.0780882)
(0.651437 0.0309185 -0.0711774)
(0.642642 -0.0251818 -0.0688399)
(0.627841 -0.0884473 -0.0559873)
(0.662617 -0.144047 -0.0516265)
(0.751717 -0.19517 -0.0391082)
(0.750298 -0.203938 -0.0304547)
(0.686628 -0.208854 -0.0431722)
(0.645161 -0.215687 -0.0573663)
(0.574343 -0.205245 -0.0733625)
(0.534934 -0.210455 -0.0896689)
(0.437856 -0.188984 -0.0965002)
(0.279204 -0.215848 -0.0971989)
(0.140014 -0.254293 -0.0872793)
(0.0987278 -0.349458 -0.056772)
(0.0178145 -0.400727 -0.037097)
(-0.0236715 -0.535738 -0.018472)
(-0.140717 -0.592691 -0.0336935)
(-0.18773 -0.823335 -0.0600178)
(-0.332574 -1.0598 -0.134938)
(-0.336039 -1.64606 -0.182796)
(-0.472565 -2.33022 -0.196617)
(-0.462546 -3.42397 -0.10216)
(-0.544966 -4.33313 0.0993547)
(-0.260513 -4.21162 0.2293)
(0.000283831 0.0929807 -0.0103079)
(0.0160304 0.226217 -0.00184337)
(0.0649441 0.363668 0.00977162)
(0.15493 0.478135 0.0203924)
(0.268286 0.573824 0.0248645)
(0.367436 0.627811 0.0242379)
(0.4292 0.662089 0.0184223)
(0.493596 0.631725 0.0121804)
(0.557272 0.581663 0.00355937)
(0.606064 0.508133 -0.00966791)
(0.643611 0.433943 -0.0215095)
(0.669804 0.346931 -0.0331639)
(0.6894 0.267154 -0.0507631)
(0.70342 0.180322 -0.0598127)
(0.697398 0.111723 -0.0659187)
(0.699757 0.0431745 -0.06816)
(0.693337 -0.0109889 -0.0631)
(0.691072 -0.068805 -0.0631584)
(0.676283 -0.128382 -0.0510478)
(0.71665 -0.182284 -0.04627)
(0.829821 -0.231354 -0.0365075)
(0.853994 -0.235801 -0.0223624)
(0.789596 -0.23485 -0.0352324)
(0.758107 -0.233464 -0.0512756)
(0.689018 -0.21385 -0.0684735)
(0.659522 -0.204717 -0.0880075)
(0.55675 -0.177574 -0.0974327)
(0.382025 -0.183309 -0.100653)
(0.206693 -0.198702 -0.0965292)
(0.165783 -0.283281 -0.0664572)
(0.070029 -0.330651 -0.0385432)
(0.0460238 -0.462486 -0.0206115)
(-0.0710921 -0.5273 -0.0244186)
(-0.0997581 -0.735961 -0.0323018)
(-0.235562 -0.932335 -0.0866519)
(-0.274409 -1.45761 -0.149258)
(-0.420241 -2.07568 -0.194245)
(-0.373202 -3.24795 -0.119156)
(-0.551302 -4.34372 0.116076)
(-0.265227 -4.70466 0.311815)
(-0.00903411 0.101785 -0.0104899)
(0.000359954 0.23924 -0.00470123)
(0.0163436 0.354179 0.0126819)
(0.0896185 0.462299 0.0257771)
(0.202544 0.526804 0.030347)
(0.31415 0.563486 0.0325061)
(0.387932 0.590774 0.0260839)
(0.444931 0.561638 0.0210438)
(0.518434 0.513869 0.013754)
(0.580146 0.442493 0.00484559)
(0.629392 0.371162 -0.00964758)
(0.66734 0.293144 -0.0253704)
(0.688219 0.21485 -0.0336058)
(0.709041 0.140148 -0.0425562)
(0.730151 0.0797064 -0.0505508)
(0.740434 0.0175757 -0.056616)
(0.73673 -0.0322053 -0.0554815)
(0.734352 -0.0919778 -0.0569276)
(0.732697 -0.150491 -0.045657)
(0.778378 -0.201858 -0.040698)
(0.917835 -0.24922 -0.031032)
(0.970877 -0.25583 -0.0123439)
(0.910774 -0.24734 -0.024659)
(0.891792 -0.241496 -0.0426115)
(0.829827 -0.213742 -0.0593083)
(0.808337 -0.194527 -0.0817267)
(0.704491 -0.157098 -0.094859)
(0.511994 -0.151463 -0.0945557)
(0.308906 -0.147313 -0.106328)
(0.259567 -0.211707 -0.0697601)
(0.150126 -0.245728 -0.0481238)
(0.134515 -0.368168 -0.0226477)
(0.0088004 -0.420954 -0.0246171)
(0.00546546 -0.624321 -0.0239576)
(-0.144688 -0.787559 -0.0541262)
(-0.119714 -1.26884 -0.100504)
(-0.355978 -1.82576 -0.156377)
(-0.287494 -2.97853 -0.13083)
(-0.531962 -4.27268 0.134455)
(-0.247232 -5.20594 0.418224)
(-4.01951e-05 0.10173 -0.0128097)
(-0.0152314 0.218485 -0.00876701)
(-0.0171531 0.321031 0.00139288)
(0.0214028 0.395831 0.0244518)
(0.101986 0.460711 0.0369889)
(0.236151 0.455247 0.0360224)
(0.31538 0.479872 0.0326931)
(0.374788 0.45131 0.0267257)
(0.454617 0.411337 0.0236652)
(0.527663 0.349165 0.0122466)
(0.596218 0.28486 0.00181986)
(0.643738 0.210718 -0.0071307)
(0.683466 0.149216 -0.0192552)
(0.728266 0.0962304 -0.0264134)
(0.748053 0.041955 -0.0339526)
(0.771922 -0.00977368 -0.0450869)
(0.780236 -0.0582702 -0.0473287)
(0.781848 -0.114135 -0.0487228)
(0.791783 -0.165447 -0.0406109)
(0.84842 -0.218757 -0.0336106)
(1.01305 -0.262437 -0.0240875)
(1.10348 -0.278474 -0.00124996)
(1.05255 -0.263818 -0.0161496)
(1.04785 -0.2533 -0.0332123)
(0.99487 -0.211764 -0.0509311)
(0.988456 -0.187528 -0.075479)
(0.882872 -0.132239 -0.0910911)
(0.688969 -0.127193 -0.0866483)
(0.461271 -0.0992149 -0.105978)
(0.419112 -0.158777 -0.083485)
(0.285665 -0.163996 -0.0654265)
(0.289718 -0.291696 -0.0349255)
(0.147062 -0.315951 -0.0286896)
(0.154989 -0.519689 -0.0319056)
(-0.00196758 -0.638613 -0.0470772)
(0.0579205 -1.09548 -0.0587571)
(-0.161397 -1.58141 -0.106417)
(-0.127085 -2.76287 -0.127073)
(-0.532672 -4.12386 0.131934)
(-0.162238 -5.72146 0.5372)
(-0.0364101 0.130291 -0.000214775)
(-0.0643827 0.305857 -0.00508385)
(-0.0900667 0.363138 0.00614475)
(-0.0517994 0.434381 0.0263778)
(0.0111564 0.465323 0.0623995)
(0.137903 0.449187 0.0635234)
(0.262828 0.431367 0.0599142)
(0.322208 0.399113 0.0512812)
(0.418162 0.352992 0.0443597)
(0.503362 0.296273 0.0401473)
(0.578161 0.230244 0.0332429)
(0.646808 0.168899 0.0240122)
(0.712842 0.118825 0.0170563)
(0.76848 0.0648208 0.00913977)
(0.807929 0.0187419 0.000507589)
(0.843987 -0.0220453 -0.00909373)
(0.853589 -0.0672152 -0.0213109)
(0.866079 -0.10581 -0.0280309)
(0.891118 -0.154834 -0.0222454)
(0.958809 -0.208547 -0.0176929)
(1.15197 -0.243731 -0.00987869)
(1.28405 -0.271495 0.018088)
(1.25684 -0.256416 0.00259777)
(1.27895 -0.244876 -0.0132649)
(1.23746 -0.198889 -0.0307745)
(1.24704 -0.168586 -0.0573668)
(1.1389 -0.102552 -0.0709321)
(0.941496 -0.103571 -0.0667763)
(0.690963 -0.0607082 -0.0897022)
(0.662678 -0.108362 -0.080297)
(0.509242 -0.0983455 -0.0743691)
(0.534749 -0.198633 -0.0598791)
(0.376986 -0.219123 -0.0358842)
(0.418404 -0.386181 -0.0309305)
(0.195561 -0.455197 -0.0594656)
(0.301359 -0.86469 -0.0478917)
(-0.00275527 -1.26714 -0.0585762)
(0.199055 -2.3805 -0.116219)
(-0.401781 -3.94915 0.124441)
(-0.033958 -6.17206 0.6873)
(0.0161418 0.306354 0.00646615)
(-0.064001 0.323409 0.00526788)
(-0.156723 0.390238 0.0118042)
(-0.135763 0.35971 0.0344463)
(-0.106422 0.384414 0.0588863)
(0.0302664 0.369097 0.106794)
(0.154809 0.333556 0.0946354)
(0.254081 0.303092 0.0909113)
(0.36493 0.263905 0.0915954)
(0.468181 0.214435 0.0884285)
(0.572572 0.168802 0.080904)
(0.674388 0.126777 0.0732403)
(0.758202 0.0834831 0.0633522)
(0.837088 0.0444317 0.0538129)
(0.897567 0.00701137 0.0430543)
(0.955459 -0.0244922 0.0318235)
(0.991645 -0.060894 0.0194992)
(1.03435 -0.0809717 0.0096937)
(1.06572 -0.123486 0.00523844)
(1.16696 -0.186919 0.0097667)
(1.38971 -0.215196 0.0128281)
(1.57032 -0.248469 0.0391357)
(1.57273 -0.239831 0.0267431)
(1.62457 -0.235079 0.0145372)
(1.59764 -0.18012 -0.00197054)
(1.63983 -0.148384 -0.019436)
(1.52216 -0.0738853 -0.0294944)
(1.34344 -0.0836593 -0.033089)
(1.08216 -0.0267937 -0.0590876)
(1.08487 -0.0653886 -0.061599)
(0.926894 -0.0442491 -0.0600497)
(0.989814 -0.128471 -0.0617776)
(0.806338 -0.14536 -0.0551943)
(0.921552 -0.289077 -0.0693747)
(0.648825 -0.344357 -0.0498722)
(0.803951 -0.684039 -0.0680434)
(0.394894 -1.03815 -0.0128485)
(0.657327 -2.04221 -0.0753974)
(-0.11876 -3.72354 0.117756)
(0.365723 -6.55599 0.89372)
(-0.224713 0.0964841 0.0263928)
(-0.317953 0.533047 0.0529046)
(-0.296722 0.548115 0.0938568)
(-0.288964 0.537429 0.133762)
(-0.164471 0.448915 0.173864)
(-0.0332353 0.385396 0.207886)
(0.146232 0.333522 0.213783)
(0.276484 0.283617 0.21861)
(0.421251 0.236455 0.211367)
(0.563109 0.189184 0.203851)
(0.707789 0.151139 0.192887)
(0.841861 0.113585 0.179198)
(0.965252 0.0824057 0.163699)
(1.08164 0.048267 0.147849)
(1.18097 0.0205424 0.131061)
(1.27363 -0.00502446 0.116683)
(1.34412 -0.0219658 0.102729)
(1.42739 -0.0431752 0.0921711)
(1.49061 -0.0684446 0.0788952)
(1.63721 -0.12913 0.0717183)
(1.91735 -0.144298 0.0592441)
(2.17459 -0.190065 0.0838036)
(2.20763 -0.201574 0.079809)
(2.31275 -0.200107 0.0761314)
(2.29216 -0.144721 0.0578149)
(2.35685 -0.122263 0.0436845)
(2.21769 -0.0525116 0.0330074)
(2.07426 -0.0737125 0.0293521)
(1.78904 -0.0125455 -0.00722036)
(1.85909 -0.0377159 -0.0105002)
(1.67456 -0.017491 -0.0194088)
(1.8141 -0.0767081 -0.0265593)
(1.57445 -0.0726223 -0.034321)
(1.77485 -0.184795 -0.0538034)
(1.4068 -0.234759 -0.0399239)
(1.6468 -0.456732 -0.116948)
(1.08283 -0.690288 -0.00315154)
(1.42307 -1.53439 -0.0257037)
(0.474899 -3.3072 0.183379)
(0.930332 -6.42788 1.17809)
(-0.691701 0.819411 0.228312)
(-0.476641 0.35132 0.2315)
(-0.547886 0.453257 0.253547)
(-0.271541 0.402111 0.263493)
(-0.1259 0.345726 0.257877)
(0.193849 0.307718 0.299619)
(0.472664 0.260533 0.316021)
(0.696802 0.22222 0.313515)
(0.920842 0.187437 0.312153)
(1.13929 0.158799 0.30256)
(1.35611 0.126468 0.285593)
(1.5712 0.0973644 0.269127)
(1.75733 0.0718437 0.250627)
(1.9399 0.0510945 0.233472)
(2.09414 0.0346404 0.21621)
(2.2531 0.0179085 0.203439)
(2.38579 0.011513 0.198622)
(2.53545 0.00988921 0.191258)
(2.67389 -0.00952621 0.177847)
(2.91944 -0.0775056 0.150663)
(3.24676 -0.0878593 0.122375)
(3.59157 -0.143292 0.119386)
(3.64568 -0.170439 0.114023)
(3.80895 -0.164767 0.124648)
(3.73947 -0.118237 0.115483)
(3.82334 -0.0896472 0.113153)
(3.61528 -0.0182935 0.0930359)
(3.5583 -0.029421 0.0928862)
(3.20463 0.0285885 0.0470627)
(3.408 0.00963191 0.0388345)
(3.17792 0.0226577 0.0180642)
(3.49516 -0.022641 0.0162242)
(3.14058 -0.0312581 0.0141044)
(3.49298 -0.0791035 -0.00762156)
(2.94235 -0.137233 0.0276208)
(3.3926 -0.298654 -0.0317039)
(2.60111 -0.521957 0.0697713)
(3.09469 -1.17219 0.0785371)
(2.00044 -2.80599 0.17634)
(1.87481 -5.53657 1.49862)
(1.16724 1.44926 0.156255)
(1.75889 0.72993 0.177267)
(2.54443 0.614733 0.1956)
(2.98588 0.413752 0.189856)
(3.32589 0.32123 0.178947)
(3.64894 0.249943 0.180096)
(3.9491 0.19391 0.18974)
(4.19331 0.151306 0.197865)
(4.40662 0.124455 0.202983)
(4.62196 0.0999691 0.205266)
(4.82405 0.0841724 0.206051)
(5.03275 0.0635268 0.204144)
(5.20513 0.046632 0.198796)
(5.38549 0.0335263 0.195127)
(5.52318 0.0241344 0.191606)
(5.68323 0.0195059 0.193442)
(5.80108 0.00421088 0.205306)
(5.95844 0.00318541 0.210011)
(6.14173 0.0160685 0.191724)
(6.45483 -0.0171656 0.163197)
(6.74894 -0.0268893 0.12423)
(7.14057 -0.0495545 0.100206)
(7.13786 -0.0684897 0.0832195)
(7.27867 -0.0731427 0.102901)
(7.08534 -0.0574832 0.106308)
(7.10358 -0.0581006 0.11469)
(6.74452 -0.0231126 0.0995789)
(6.76518 -0.0178492 0.104581)
(6.32746 0.0143818 0.0769573)
(6.65444 0.0142182 0.0667499)
(6.38023 0.0252291 0.0461113)
(6.84854 0.0144909 0.0313955)
(6.45156 -0.0024658 0.0473107)
(6.86405 -0.0220934 0.00827445)
(6.23612 -0.0363725 0.0486008)
(6.59052 -0.138713 0.00923415)
(5.66533 -0.231518 0.0832675)
(5.89435 -0.556748 0.20246)
(4.42414 -1.03283 0.237667)
(3.33565 -2.37564 1.57281)
(-0.000282445 -0.00061716 -0.000882053)
(0.00573279 -0.00225155 -0.000800304)
(0.0124776 -0.00290428 -0.000452649)
(0.0178545 -0.00306649 -0.000671079)
(0.0223646 -0.00252248 -0.000851282)
(0.0240774 -0.00296959 -0.00134056)
(0.0250677 -0.00406208 -0.0015489)
(0.0226403 -0.00436486 -0.00213566)
(0.0220576 -0.00527055 -0.00375752)
(0.0155366 -0.00488653 -0.00347136)
(0.0103329 -0.00542373 -0.00512758)
(-0.00145058 -0.00800836 -0.0065156)
(-0.0184244 -0.0125677 -0.00564905)
(-0.0426347 -0.0174193 -0.00367219)
(-0.0694128 -0.0180707 -0.00439874)
(-0.105637 -0.0172508 -0.00224452)
(-0.131869 -0.000206434 -0.00118832)
(-0.176865 -0.00453258 0.00307366)
(-0.173375 -0.00947261 -0.00460297)
(-0.235348 -0.0271391 0.0144414)
(-0.205527 -0.0200173 0.020066)
(-0.101954 -0.0222878 0.0379051)
(-0.109736 -0.00682076 0.0246759)
(-0.108492 -0.00240513 0.0371516)
(-0.127434 0.00363444 0.0482197)
(-0.121607 0.0117994 0.05792)
(-0.110179 0.0220435 0.0624041)
(-0.0735877 0.0325943 0.0589332)
(-0.0391216 0.0398482 0.0542341)
(0.00451742 0.0508656 0.0405395)
(0.0487651 0.0489522 0.0319888)
(0.0857415 0.0387537 0.0251805)
(0.101798 0.0285978 0.0126836)
(0.0990092 0.0147283 0.00548606)
(0.0856779 0.00598922 -0.000693107)
(0.0679095 -0.00195439 -0.0033191)
(0.0493586 -0.00595928 -0.00429157)
(0.0294664 -0.00537523 -0.00514641)
(0.0157068 -0.00394907 -0.00553495)
(0.00214403 -0.00256864 -0.00354845)
(0.000519611 -0.00672356 -0.00160821)
(0.0108926 -0.0121658 -0.000686205)
(0.0234482 -0.0107548 0.000347997)
(0.0334454 -0.00672541 0.000730832)
(0.039403 -0.00271763 0.00197167)
(0.0394017 -0.000502701 0.00214804)
(0.0387179 0.00329252 0.00369676)
(0.0318865 0.00486491 0.00316097)
(0.0250823 0.0103461 0.00751586)
(0.00793974 0.0160011 0.00418335)
(-0.0151601 0.02458 0.00845929)
(-0.0521765 0.0319311 -0.000766659)
(-0.0983587 0.0425389 0.00416437)
(-0.150685 0.0614798 0.00691353)
(-0.208062 0.0751386 0.0115946)
(-0.265991 0.0840071 0.0184906)
(-0.342009 0.0927713 0.0442019)
(-0.447161 0.0947063 0.0591363)
(-0.491563 0.101126 0.0766718)
(-0.578467 0.100783 0.0974954)
(-0.530122 0.129424 0.0933661)
(-0.398068 0.144447 0.125444)
(-0.387481 0.190417 0.134682)
(-0.372741 0.213676 0.14524)
(-0.365063 0.238073 0.157066)
(-0.326248 0.25941 0.163371)
(-0.27862 0.280411 0.164787)
(-0.20612 0.295499 0.153105)
(-0.131354 0.301714 0.133456)
(-0.0576869 0.30509 0.109925)
(0.00572012 0.290418 0.0770043)
(0.0688369 0.25959 0.0464127)
(0.106658 0.212153 0.0390401)
(0.119231 0.159966 0.0264233)
(0.114658 0.109715 0.0131296)
(0.0963595 0.0700835 0.00551933)
(0.0772677 0.0416498 0.00110522)
(0.0530393 0.0267822 0.000137566)
(0.0317272 0.0168815 -0.00120742)
(0.0077773 0.0085137 -0.00122816)
(0.000552473 -0.0138893 -0.00203745)
(0.0144552 -0.0213638 0.000387521)
(0.0316145 -0.0163501 0.0027733)
(0.0414072 -0.00456659 0.0048501)
(0.0440096 0.00430097 0.0063621)
(0.0422289 0.0152899 0.00789526)
(0.0352828 0.0301169 0.0087498)
(0.0214174 0.0445367 0.0102569)
(0.00587335 0.0685562 0.00207498)
(-0.0242732 0.0897044 0.00530615)
(-0.0616363 0.116308 0.00839542)
(-0.113999 0.148703 0.0134061)
(-0.168606 0.182161 0.0182459)
(-0.246772 0.211231 0.0325272)
(-0.340755 0.231668 0.0361138)
(-0.437111 0.245244 0.0425899)
(-0.519614 0.250592 0.0595035)
(-0.607705 0.269946 0.0785493)
(-0.647032 0.300914 0.0963833)
(-0.719047 0.336243 0.115953)
(-0.656316 0.374414 0.103943)
(-0.49756 0.405463 0.124105)
(-0.463794 0.462436 0.1248)
(-0.437842 0.492519 0.123389)
(-0.421163 0.524558 0.126608)
(-0.377973 0.545815 0.125115)
(-0.329892 0.560276 0.120363)
(-0.263445 0.563037 0.105003)
(-0.198004 0.552933 0.0828551)
(-0.131559 0.532425 0.0595342)
(-0.0765199 0.500123 0.0399196)
(-0.0315084 0.452426 0.0278475)
(0.00152289 0.379977 0.0177339)
(0.0239252 0.307246 0.00914896)
(0.0380636 0.227925 0.0107224)
(0.0445756 0.163212 0.0109455)
(0.04547 0.115957 0.00731813)
(0.0368646 0.0791762 0.00517638)
(0.0264196 0.0530931 0.00169338)
(0.00771231 0.0271798 -0.00103783)
(0.000896509 -0.0163344 -0.00133245)
(0.0167563 -0.0244939 0.00151908)
(0.0371925 -0.0118891 0.00441085)
(0.044239 0.00518389 0.00756399)
(0.042533 0.0294249 0.00827234)
(0.0387989 0.0538327 0.00945164)
(0.0269875 0.0890782 0.00929248)
(0.00879078 0.122395 0.00622471)
(-0.0179437 0.166765 0.0107804)
(-0.0636065 0.206987 0.0132465)
(-0.109132 0.251077 0.0175559)
(-0.173879 0.289023 0.0253874)
(-0.256404 0.318339 0.027782)
(-0.346379 0.33541 0.0294365)
(-0.431707 0.356634 0.0322875)
(-0.510862 0.37959 0.0367615)
(-0.57782 0.410248 0.0522199)
(-0.652783 0.439045 0.0625468)
(-0.678312 0.481822 0.0723227)
(-0.736969 0.527738 0.078167)
(-0.663028 0.560578 0.0454737)
(-0.483106 0.583011 0.0457831)
(-0.43551 0.624856 0.0395182)
(-0.409577 0.630721 0.0294936)
(-0.393861 0.643917 0.0276206)
(-0.359703 0.643932 0.0226458)
(-0.32335 0.636554 0.0191303)
(-0.273512 0.617388 0.0114762)
(-0.225659 0.591506 -0.000378264)
(-0.179715 0.55827 -0.00764378)
(-0.148956 0.516844 -0.0125173)
(-0.123179 0.471665 -0.0111641)
(-0.0991465 0.411707 -0.00514157)
(-0.0764265 0.349748 0.00270151)
(-0.0526693 0.269965 0.00600781)
(-0.022364 0.202587 0.0106653)
(-0.00120362 0.148125 0.0110352)
(0.00772321 0.112063 0.00832391)
(0.0160971 0.0791728 0.00385963)
(0.00599944 0.0397906 -0.000835217)
(-0.000217616 -0.0139225 0.000783067)
(0.0216542 -0.0130391 0.0034067)
(0.0447991 0.00383441 0.00788771)
(0.0533991 0.0379572 0.00870741)
(0.0510895 0.0749603 0.00870635)
(0.0452138 0.12106 0.0158551)
(0.0278519 0.175304 0.0140222)
(4.12574e-05 0.235135 0.00696241)
(-0.0329597 0.29167 0.00828505)
(-0.0856364 0.339771 0.0104447)
(-0.14471 0.378253 0.013302)
(-0.222205 0.39859 0.0159038)
(-0.296837 0.421511 0.0167667)
(-0.371769 0.445621 0.0216907)
(-0.442868 0.475615 0.0215466)
(-0.510741 0.508129 0.0220617)
(-0.564827 0.536783 0.026476)
(-0.621286 0.571273 0.0246317)
(-0.627079 0.620076 0.0186763)
(-0.670821 0.667544 0.0264555)
(-0.597979 0.694707 -0.00643224)
(-0.411734 0.701313 -0.016959)
(-0.360062 0.713747 -0.0288584)
(-0.343618 0.68577 -0.0366268)
(-0.340079 0.669201 -0.036522)
(-0.325189 0.642531 -0.0423723)
(-0.308697 0.610754 -0.043409)
(-0.277449 0.573604 -0.0471425)
(-0.250298 0.532295 -0.0402502)
(-0.224363 0.492077 -0.031864)
(-0.204905 0.446608 -0.0216565)
(-0.19462 0.413109 -0.0145912)
(-0.185462 0.374842 -0.0071964)
(-0.178013 0.34376 0.00473698)
(-0.154635 0.279315 0.0140215)
(-0.10471 0.210093 0.0149436)
(-0.0530402 0.162381 0.0141647)
(-0.0175027 0.132127 0.0120303)
(0.00248002 0.0982401 0.00652387)
(0.00305314 0.0498478 -0.000897345)
(0.00534452 -0.0065751 0.000749431)
(0.027475 0.00353051 0.00791719)
(0.0581548 0.0305974 0.00718599)
(0.0694457 0.0826288 0.0102777)
(0.0646364 0.140025 0.0152625)
(0.0611451 0.20327 0.0190905)
(0.0455192 0.277996 0.0141786)
(0.0128683 0.334372 0.00611869)
(-0.0388873 0.380086 0.00583804)
(-0.108076 0.414661 0.00819464)
(-0.177828 0.444378 0.0103195)
(-0.243779 0.471169 0.0105649)
(-0.302659 0.504008 0.00892327)
(-0.361102 0.532185 0.00587052)
(-0.410074 0.561944 0.000383605)
(-0.462416 0.590335 -0.00540571)
(-0.494152 0.620378 -0.00883971)
(-0.527782 0.651233 -0.00833362)
(-0.527155 0.700548 -0.0095888)
(-0.558126 0.736683 -0.0095015)
(-0.488631 0.759886 -0.0406192)
(-0.320108 0.712288 -0.0537197)
(-0.285379 0.694444 -0.0647143)
(-0.290787 0.635301 -0.0756719)
(-0.301864 0.595508 -0.0771686)
(-0.306066 0.552375 -0.0763718)
(-0.305512 0.510013 -0.0734578)
(-0.294398 0.467564 -0.0666784)
(-0.280508 0.420447 -0.0645676)
(-0.268674 0.381392 -0.0430838)
(-0.25913 0.337473 -0.0314803)
(-0.247924 0.306602 -0.0160554)
(-0.233605 0.280075 -0.005659)
(-0.239975 0.268176 0.00602468)
(-0.242318 0.243482 0.0174222)
(-0.176065 0.194534 0.0151288)
(-0.0935839 0.163403 0.0158579)
(-0.0409556 0.137814 0.0124255)
(-0.0051535 0.106295 0.00723116)
(0.00211131 0.0535544 -0.00141956)
(0.00610137 0.00110166 0.0016559)
(0.0374555 0.0172308 0.0105084)
(0.0800712 0.0580777 0.0108355)
(0.103657 0.114185 0.0132656)
(0.0985266 0.18111 0.0187443)
(0.0956797 0.253786 0.02104)
(0.0604813 0.323851 0.0147813)
(-0.00211065 0.351522 -0.000400923)
(-0.0552566 0.395277 0.00442565)
(-0.112727 0.431989 0.00502036)
(-0.161338 0.476025 0.00499479)
(-0.211976 0.518073 0.00305519)
(-0.258094 0.558364 -0.000468067)
(-0.305072 0.591746 -0.00527353)
(-0.344239 0.625045 -0.0136147)
(-0.379271 0.649769 -0.0187939)
(-0.400432 0.677756 -0.0252966)
(-0.418888 0.689793 -0.0284781)
(-0.404814 0.715352 -0.0272089)
(-0.425417 0.728068 -0.017532)
(-0.416694 0.747803 -0.0365542)
(-0.281042 0.639419 -0.0569668)
(-0.233356 0.593416 -0.062039)
(-0.256357 0.529834 -0.0732589)
(-0.278253 0.48858 -0.0727601)
(-0.299562 0.449909 -0.0715308)
(-0.315055 0.41511 -0.0672968)
(-0.320737 0.380187 -0.0595595)
(-0.31997 0.343022 -0.046037)
(-0.320382 0.308325 -0.0297583)
(-0.317211 0.274863 -0.016272)
(-0.308998 0.246506 -0.00324858)
(-0.293917 0.225684 0.00448467)
(-0.288263 0.210093 0.0119806)
(-0.290868 0.220488 0.0203467)
(-0.228133 0.195257 0.0218153)
(-0.128141 0.169653 0.0226391)
(-0.0561537 0.149174 0.0174243)
(-0.0103176 0.115833 0.0110948)
(0.00215076 0.0588651 0.000337763)
(0.00691857 0.00829543 0.0044526)
(0.0449068 0.0360285 0.0144366)
(0.098689 0.0850926 0.0140544)
(0.124885 0.141453 0.012115)
(0.127248 0.201578 0.0130578)
(0.117659 0.275279 0.0145359)
(0.0575524 0.30991 0.00457567)
(0.00566589 0.354126 -0.00388339)
(-0.025298 0.40036 0.000494244)
(-0.0752608 0.454275 -0.00114321)
(-0.117179 0.49946 -0.00152061)
(-0.160056 0.53781 -0.00805106)
(-0.196323 0.572005 -0.0135921)
(-0.228403 0.599398 -0.0220153)
(-0.254597 0.626152 -0.0263375)
(-0.283506 0.641415 -0.0308652)
(-0.30046 0.653997 -0.0339289)
(-0.318158 0.651422 -0.0332574)
(-0.313953 0.648219 -0.0305265)
(-0.326409 0.621235 -0.0149408)
(-0.366238 0.628555 -0.0179493)
(-0.282399 0.542359 -0.0376391)
(-0.218171 0.466319 -0.0403432)
(-0.243729 0.42415 -0.0515656)
(-0.273554 0.389704 -0.0544765)
(-0.305552 0.364187 -0.0552809)
(-0.33129 0.338896 -0.0558331)
(-0.348702 0.312386 -0.0479819)
(-0.359391 0.284767 -0.0379095)
(-0.366335 0.254169 -0.0154762)
(-0.367526 0.222365 -0.00608502)
(-0.357596 0.197214 0.00333272)
(-0.342219 0.184215 0.0105933)
(-0.323261 0.173986 0.0144821)
(-0.329443 0.195281 0.0240931)
(-0.278078 0.199147 0.021761)
(-0.162332 0.175428 0.0231599)
(-0.0747745 0.158691 0.0178213)
(-0.0154653 0.123235 0.0107322)
(0.0031043 0.0629657 -0.000436965)
(0.00557204 0.0225943 0.0070392)
(0.0536351 0.0676938 0.0181143)
(0.119314 0.124202 0.0195241)
(0.151618 0.180307 0.014052)
(0.160214 0.24157 0.0144044)
(0.131643 0.296268 0.0146961)
(0.0763578 0.328485 0.00459457)
(0.0355331 0.387329 -0.00321417)
(0.00859772 0.425172 -0.00919322)
(-0.0255461 0.466489 -0.00875842)
(-0.0650045 0.50374 -0.0129954)
(-0.0967844 0.531925 -0.018209)
(-0.122785 0.555097 -0.0259754)
(-0.147535 0.569219 -0.0322157)
(-0.170569 0.57489 -0.0345171)
(-0.196137 0.571522 -0.0350436)
(-0.217291 0.566054 -0.0338003)
(-0.243354 0.548796 -0.0291618)
(-0.263188 0.534907 -0.0231174)
(-0.276767 0.498936 -0.00930564)
(-0.327634 0.490304 0.00086113)
(-0.305205 0.456739 -0.0122186)
(-0.235357 0.362194 -0.0208909)
(-0.242126 0.344784 -0.0278564)
(-0.277354 0.320397 -0.0352684)
(-0.313858 0.305164 -0.0391443)
(-0.349072 0.287566 -0.0440812)
(-0.3742 0.265595 -0.0393682)
(-0.394959 0.242144 -0.0232928)
(-0.411871 0.208689 -0.00692434)
(-0.413535 0.183352 0.00280375)
(-0.400137 0.160057 0.00941131)
(-0.384288 0.14657 0.014062)
(-0.35513 0.146596 0.0235454)
(-0.34394 0.15969 0.0268112)
(-0.308463 0.194963 0.0305543)
(-0.198201 0.178867 0.0267569)
(-0.090205 0.168722 0.0251347)
(-0.020552 0.133916 0.0140531)
(0.00400868 0.0699173 0.00179619)
(0.00754334 0.0389219 0.00950499)
(0.0627168 0.105587 0.0256419)
(0.138161 0.166104 0.0244296)
(0.177369 0.220192 0.0153269)
(0.181188 0.275478 0.0159509)
(0.150687 0.309276 0.0154341)
(0.107317 0.354782 0.00584944)
(0.0747356 0.40203 -0.00583022)
(0.0446001 0.441156 -0.0128035)
(0.0198613 0.467787 -0.0236757)
(-0.00606552 0.492117 -0.0208731)
(-0.0363678 0.505506 -0.0312208)
(-0.0595515 0.513861 -0.0365243)
(-0.0826502 0.506098 -0.0421518)
(-0.105221 0.491775 -0.0423446)
(-0.132188 0.468814 -0.0390875)
(-0.159076 0.446276 -0.033616)
(-0.189518 0.419715 -0.0259319)
(-0.220375 0.40242 -0.0172184)
(-0.248488 0.382937 -0.0035173)
(-0.300607 0.367155 0.00964458)
(-0.329747 0.366117 0.0061535)
(-0.265321 0.298664 -0.0100874)
(-0.239101 0.291408 -0.0127244)
(-0.278257 0.273674 -0.0239257)
(-0.31558 0.265576 -0.0304216)
(-0.356558 0.246872 -0.0398135)
(-0.389535 0.230506 -0.0328052)
(-0.419043 0.2006 -0.0240293)
(-0.433808 0.173607 -0.0075602)
(-0.4389 0.145254 -0.00835884)
(-0.432581 0.122565 -0.0155739)
(-0.412527 0.103358 -0.0116896)
(-0.385498 0.10438 -0.00801436)
(-0.364709 0.117549 0.0155431)
(-0.332023 0.165337 0.0260961)
(-0.228853 0.17604 0.0261098)
(-0.108434 0.168979 0.0220155)
(-0.0264309 0.141785 0.0133591)
(0.00493574 0.0744322 0.000711631)
(0.00869634 0.0630273 0.0120955)
(0.0719328 0.149946 0.0318925)
(0.156293 0.21383 0.0310986)
(0.202161 0.263595 0.0194527)
(0.201234 0.303084 0.0119897)
(0.175216 0.335928 0.0157204)
(0.147561 0.376416 0.00491942)
(0.116555 0.414521 -0.00247119)
(0.0915879 0.44399 -0.0103449)
(0.063737 0.465978 -0.0263736)
(0.0357625 0.472546 -0.0352094)
(0.0173292 0.473495 -0.045355)
(-0.00494403 0.462207 -0.0467874)
(-0.0332069 0.439508 -0.0487618)
(-0.0603865 0.412271 -0.0474671)
(-0.0918209 0.379944 -0.0409608)
(-0.124249 0.350884 -0.0322656)
(-0.159845 0.323375 -0.0228508)
(-0.193552 0.30555 -0.014112)
(-0.230232 0.293861 -0.00122714)
(-0.280013 0.282567 0.00893234)
(-0.324333 0.286921 0.0108998)
(-0.269775 0.267068 -0.00327851)
(-0.232142 0.256211 -0.00447274)
(-0.266977 0.243407 -0.0171303)
(-0.307049 0.231436 -0.025127)
(-0.353585 0.216587 -0.034028)
(-0.390848 0.193947 -0.0310579)
(-0.424189 0.168152 -0.0191142)
(-0.447172 0.137702 -0.0283009)
(-0.460825 0.102614 -0.0300435)
(-0.46096 0.0739197 -0.0159536)
(-0.445744 0.0572246 -0.0114357)
(-0.41101 0.0543916 -0.00250001)
(-0.372435 0.0683653 0.00234366)
(-0.340875 0.117526 0.0248695)
(-0.25359 0.155996 0.029344)
(-0.12571 0.166509 0.024258)
(-0.0296998 0.146789 0.0152984)
(0.00448806 0.0803748 0.00250338)
(0.00997859 0.0821074 0.0128072)
(0.0779266 0.189723 0.0359042)
(0.170429 0.256467 0.0344974)
(0.216018 0.295722 0.0185271)
(0.220117 0.323709 0.0108338)
(0.204527 0.356395 0.00836632)
(0.182308 0.3886 0.00711617)
(0.156493 0.413507 -0.00537641)
(0.129927 0.434634 -0.0110574)
(0.105671 0.443783 -0.0220726)
(0.0830433 0.448012 -0.033483)
(0.054806 0.437782 -0.0498968)
(0.0284415 0.414178 -0.0544079)
(0.0047201 0.379903 -0.0547174)
(-0.0256633 0.346998 -0.0480718)
(-0.0613193 0.314688 -0.0391913)
(-0.097919 0.288856 -0.0277498)
(-0.135535 0.266268 -0.0177916)
(-0.171097 0.256169 -0.0095761)
(-0.21282 0.246503 0.00185207)
(-0.260679 0.241664 0.00851902)
(-0.301502 0.242772 0.0112305)
(-0.253865 0.245107 -0.000394137)
(-0.214214 0.230792 0.000284283)
(-0.247413 0.215093 -0.0122014)
(-0.284977 0.199421 -0.0209131)
(-0.334305 0.182963 -0.0287444)
(-0.375167 0.159517 -0.0223713)
(-0.412994 0.131767 -0.0369586)
(-0.445277 0.0961283 -0.043656)
(-0.466106 0.0606636 -0.0363848)
(-0.468253 0.0339907 -0.0467175)
(-0.46003 0.0122806 -0.0377582)
(-0.438837 0.00836933 -0.0353403)
(-0.398988 0.0170172 -0.0245552)
(-0.355439 0.0629364 -0.00232448)
(-0.267043 0.118772 0.0263012)
(-0.139929 0.153704 0.0257879)
(-0.036028 0.145122 0.0149007)
(0.00554283 0.0833397 0.00241315)
(0.0105615 0.104217 0.011816)
(0.0831463 0.231304 0.0381887)
(0.176913 0.299052 0.0373925)
(0.227813 0.328518 0.0193156)
(0.242535 0.351082 0.00639427)
(0.235183 0.375022 0.000867227)
(0.215027 0.398154 -0.00322479)
(0.19092 0.413366 -0.0039822)
(0.170053 0.423676 -0.0134815)
(0.146822 0.426416 -0.0242406)
(0.120493 0.418014 -0.033505)
(0.0938651 0.399675 -0.0406864)
(0.061371 0.372315 -0.0532484)
(0.0287427 0.337185 -0.0542718)
(0.000493838 0.297092 -0.0483579)
(-0.0350689 0.269567 -0.0351507)
(-0.0749617 0.246924 -0.0223488)
(-0.111936 0.230128 -0.013136)
(-0.148617 0.225086 -0.00475866)
(-0.191501 0.216076 0.00234325)
(-0.233799 0.21633 0.0076282)
(-0.265366 0.213895 0.008829)
(-0.221584 0.232531 0.000854232)
(-0.190652 0.210196 0.00280973)
(-0.217989 0.188924 -0.00862295)
(-0.25421 0.167799 -0.0165064)
(-0.302418 0.144799 -0.0209946)
(-0.346247 0.121966 -0.0316564)
(-0.391508 0.0892586 -0.0443848)
(-0.430434 0.0544157 -0.0448189)
(-0.453262 0.0234886 -0.0657839)
(-0.474637 -0.0142335 -0.0477292)
(-0.48014 -0.0526745 -0.0336014)
(-0.463746 -0.0734844 -0.0112138)
(-0.421979 -0.0619118 -0.00380759)
(-0.374517 -0.0158541 -0.00692283)
(-0.28785 0.0679746 0.00348608)
(-0.155597 0.125258 0.0316271)
(-0.0411502 0.139489 0.0147923)
(0.00518597 0.0872356 0.00383132)
(0.0102485 0.110952 0.0110478)
(0.0818505 0.25438 0.0406245)
(0.177348 0.325072 0.0413133)
(0.233946 0.351881 0.0223116)
(0.259505 0.366222 0.00409864)
(0.259808 0.378818 -0.00546827)
(0.242203 0.391228 -0.0115544)
(0.219934 0.400383 -0.0145957)
(0.199891 0.406099 -0.0176305)
(0.177559 0.401338 -0.0217032)
(0.154011 0.387269 -0.0273903)
(0.122364 0.363914 -0.0386398)
(0.088603 0.332224 -0.0400432)
(0.0513353 0.300062 -0.0474926)
(0.01971 0.266208 -0.0459084)
(-0.0108296 0.235707 -0.0298681)
(-0.0519645 0.219137 -0.0174232)
(-0.0854556 0.205259 -0.0093809)
(-0.122021 0.201028 -0.00175848)
(-0.161405 0.194891 0.00224767)
(-0.199039 0.193859 0.00592583)
(-0.211803 0.196471 0.00401885)
(-0.1775 0.22376 0.000536584)
(-0.165684 0.192251 0.00109748)
(-0.188844 0.163799 -0.00486381)
(-0.220585 0.133814 -0.0122634)
(-0.263687 0.110597 -0.0150854)
(-0.307146 0.0812814 -0.0332364)
(-0.355291 0.0504114 -0.0399246)
(-0.391433 0.021375 -0.0627822)
(-0.436956 -0.0193916 -0.0463035)
(-0.478856 -0.0723045 -0.0379999)
(-0.495103 -0.117876 -0.023138)
(-0.481536 -0.150541 -0.0119848)
(-0.439772 -0.152893 0.00856453)
(-0.379133 -0.113229 0.00743038)
(-0.294751 -0.0129766 0.0010295)
(-0.173009 0.0819001 0.0176419)
(-0.0460651 0.123893 0.0205491)
(0.00659138 0.086364 0.0023329)
(0.00908314 0.12114 0.00867818)
(0.0810977 0.278692 0.0396786)
(0.17785 0.354184 0.0424556)
(0.240762 0.378371 0.0230587)
(0.273481 0.385103 0.00260691)
(0.279403 0.384983 -0.0113588)
(0.267954 0.387913 -0.0209702)
(0.251025 0.391014 -0.0235857)
(0.232838 0.39078 -0.0261427)
(0.209433 0.381413 -0.0283267)
(0.183106 0.364326 -0.0298675)
(0.15209 0.336177 -0.0284398)
(0.115708 0.306437 -0.0290187)
(0.0778115 0.270607 -0.0305883)
(0.0395752 0.244953 -0.0357777)
(0.00826533 0.213567 -0.0252705)
(-0.0253001 0.196353 -0.0121077)
(-0.0588988 0.186127 -0.00643164)
(-0.0905818 0.181198 0.000298535)
(-0.12731 0.174074 0.00210411)
(-0.1532 0.173084 0.00274863)
(-0.148232 0.194389 -0.00243418)
(-0.131997 0.199827 -0.000532776)
(-0.146791 0.16844 -0.000927281)
(-0.164271 0.136909 -0.00430073)
(-0.186543 0.102555 -0.00821336)
(-0.223983 0.0756774 -0.0204801)
(-0.266123 0.0444795 -0.0285859)
(-0.304312 0.018162 -0.0481564)
(-0.35526 -0.0187883 -0.0415326)
(-0.413356 -0.072063 -0.0389978)
(-0.46084 -0.123694 -0.0288243)
(-0.490579 -0.175537 -0.0176591)
(-0.492651 -0.216789 -0.00188298)
(-0.457641 -0.235875 0.0140023)
(-0.390409 -0.206306 0.0215016)
(-0.300676 -0.117001 0.0189731)
(-0.183719 0.0259052 -0.00128479)
(-0.0547749 0.103387 0.0272441)
(0.00552749 0.0891929 0.00381821)
(0.00677056 0.102299 0.0092906)
(0.0748623 0.273151 0.0401487)
(0.171932 0.354698 0.0420174)
(0.239534 0.379712 0.0226765)
(0.279511 0.381423 -0.000762821)
(0.293846 0.377271 -0.014978)
(0.290055 0.375533 -0.0211735)
(0.274788 0.370817 -0.0249125)
(0.256227 0.363012 -0.0271459)
(0.234337 0.351211 -0.0279283)
(0.208052 0.331695 -0.0274122)
(0.174903 0.307897 -0.0246076)
(0.136483 0.27708 -0.0201432)
(0.0981809 0.247613 -0.0133825)
(0.0606763 0.220691 -0.018413)
(0.0269457 0.203094 -0.014586)
(-0.000957317 0.182819 -0.00800761)
(-0.0261875 0.174167 -0.00254941)
(-0.0586099 0.163222 0.00272657)
(-0.0885361 0.162529 0.000989564)
(-0.0909825 0.172732 -0.00275763)
(-0.0923462 0.182873 -0.00372399)
(-0.10463 0.167751 -0.00386764)
(-0.123653 0.140721 -0.00408563)
(-0.143023 0.116088 -0.00418099)
(-0.161198 0.0785392 -0.00698364)
(-0.190361 0.0495893 -0.0141672)
(-0.221206 0.0181477 -0.031027)
(-0.264164 -0.0135126 -0.0318627)
(-0.319017 -0.0620704 -0.0347044)
(-0.374525 -0.110788 -0.0307231)
(-0.427521 -0.168152 -0.0260891)
(-0.465698 -0.226969 -0.0155986)
(-0.48155 -0.282249 -0.00197429)
(-0.459342 -0.315564 0.0156384)
(-0.399537 -0.305252 0.0281435)
(-0.294578 -0.226722 0.0317981)
(-0.184588 -0.0733354 0.0192317)
(-0.0631048 0.0585522 0.0196173)
(0.00702162 0.0791123 0.00771753)
(0.00773667 0.108664 0.00335989)
(0.074571 0.286078 0.0337906)
(0.170433 0.371493 0.0386247)
(0.244251 0.394063 0.0181992)
(0.29381 0.390027 -0.0066704)
(0.317264 0.376959 -0.0152364)
(0.315808 0.367719 -0.0232786)
(0.301111 0.357039 -0.0249649)
(0.285058 0.348186 -0.0240514)
(0.26296 0.333062 -0.0214885)
(0.237777 0.312407 -0.0184482)
(0.204612 0.285667 -0.0139763)
(0.164582 0.257308 -0.00993143)
(0.124951 0.228116 -0.00637494)
(0.0890629 0.205633 -0.00345894)
(0.0552524 0.190322 -0.00506965)
(0.024847 0.179998 -0.00121986)
(-0.000295873 0.175622 0.00107592)
(-0.0212181 0.169063 0.000655951)
(-0.0326489 0.171806 -0.00108275)
(-0.0439669 0.173636 -0.0037237)
(-0.0611539 0.157579 -0.00614401)
(-0.0788703 0.139838 -0.00681341)
(-0.0998636 0.116268 -0.00653199)
(-0.123031 0.0949286 -0.00785793)
(-0.141534 0.062741 -0.00664684)
(-0.162294 0.0286494 -0.0161205)
(-0.19434 -0.00420899 -0.018086)
(-0.234841 -0.046481 -0.0222238)
(-0.284775 -0.0889654 -0.0233356)
(-0.338842 -0.137237 -0.0248238)
(-0.391268 -0.194099 -0.0223245)
(-0.433912 -0.25657 -0.0161919)
(-0.459064 -0.322462 -0.00404524)
(-0.449208 -0.372126 0.0125585)
(-0.399368 -0.386238 0.0295929)
(-0.30489 -0.322817 0.0426589)
(-0.189415 -0.176414 0.0321151)
(-0.0606846 0.0140609 0.00954691)
(0.00633317 0.07532 0.0129151)
(-0.00245801 0.0820736 0.0152868)
(0.0535469 0.267932 0.0405553)
(0.151189 0.363898 0.0464135)
(0.232851 0.389056 0.026101)
(0.292166 0.387206 0.00420767)
(0.327546 0.367375 -0.00942393)
(0.337842 0.350735 -0.0153425)
(0.327515 0.332397 -0.0160677)
(0.310247 0.319959 -0.0144586)
(0.285767 0.311023 -0.0110379)
(0.257468 0.300665 -0.00810548)
(0.223127 0.285519 -0.00533357)
(0.18289 0.266095 -0.00264575)
(0.145249 0.246008 -0.000960451)
(0.113804 0.226042 -0.00081939)
(0.0854944 0.21551 -0.00336507)
(0.064974 0.212313 0.00275246)
(0.0435634 0.208651 0.00318804)
(0.0200677 0.200385 0.00158667)
(0.000612342 0.1883 -0.00224275)
(-0.0190514 0.164437 -0.0056434)
(-0.0389408 0.14218 -0.00812125)
(-0.0583347 0.119369 -0.00842411)
(-0.079242 0.096913 -0.00927843)
(-0.10364 0.0755048 -0.0091106)
(-0.128176 0.0530847 -0.00626491)
(-0.148171 0.0175718 -0.00463293)
(-0.174441 -0.0180807 -0.0070791)
(-0.209356 -0.0595134 -0.00991677)
(-0.249824 -0.107425 -0.013605)
(-0.296486 -0.159957 -0.0152817)
(-0.345963 -0.22368 -0.0150753)
(-0.390784 -0.294117 -0.0109172)
(-0.422815 -0.372522 -0.00160816)
(-0.425999 -0.438453 0.0136291)
(-0.386451 -0.471186 0.0304768)
(-0.296752 -0.427423 0.0555842)
(-0.184591 -0.296554 0.0491786)
(-0.0575644 -0.0672253 0.0155189)
(0.00535686 0.0560873 0.00329354)
(-0.00275648 0.153017 0.00496126)
(0.0500381 0.354887 0.0194529)
(0.141174 0.454164 0.0305017)
(0.226035 0.475942 0.0110247)
(0.294081 0.464639 0.00395974)
(0.335318 0.432372 -0.0125773)
(0.350884 0.39624 -0.0159854)
(0.346505 0.382132 -0.0187087)
(0.344114 0.389785 -0.0151791)
(0.329923 0.394225 -0.010701)
(0.304373 0.390022 -0.00468967)
(0.266655 0.37536 -0.000114589)
(0.22302 0.350542 0.00340111)
(0.179314 0.323099 0.00453245)
(0.146977 0.294808 0.00346618)
(0.125006 0.270516 0.000325781)
(0.0989755 0.251568 9.4891e-05)
(0.0681604 0.231698 0.00731033)
(0.0397461 0.211583 0.00338528)
(0.0131967 0.185742 0.00186661)
(-0.00878846 0.159205 -0.00574201)
(-0.0258262 0.130647 -0.00746905)
(-0.0442085 0.1068 -0.00879388)
(-0.0630725 0.0825923 -0.0102694)
(-0.0834665 0.0607539 -0.00686716)
(-0.110925 0.0392601 -0.0043134)
(-0.136365 0.0129656 -0.00252805)
(-0.161913 -0.0232497 0.00321808)
(-0.19782 -0.0622563 0.00277075)
(-0.236628 -0.10603 -0.000311705)
(-0.278606 -0.151024 -0.00560041)
(-0.321273 -0.210788 -0.00927915)
(-0.362703 -0.280592 -0.0104158)
(-0.395562 -0.365981 -0.00470205)
(-0.401485 -0.448572 0.00895537)
(-0.371265 -0.516192 0.0307242)
(-0.304078 -0.516927 0.0623959)
(-0.190521 -0.390982 0.0593556)
(-0.0509624 -0.17555 0.0348558)
(0.00798807 0.0243477 0.00442197)
(-0.017674 0.235061 0.0235739)
(0.0199453 0.47545 0.0425149)
(0.1101 0.58547 0.050869)
(0.195951 0.624685 0.0356669)
(0.268041 0.615512 0.0248418)
(0.316764 0.584996 0.00762528)
(0.361003 0.539722 -0.00157191)
(0.399393 0.513691 -0.00227703)
(0.403159 0.504278 0.0044682)
(0.370404 0.485878 0.00885394)
(0.327485 0.460126 0.0111648)
(0.276018 0.42703 0.0119472)
(0.2244 0.388267 0.0116894)
(0.181692 0.348388 0.0104033)
(0.149273 0.312995 0.00819137)
(0.125796 0.276694 0.00381797)
(0.107475 0.244759 -0.000726533)
(0.0837731 0.216416 -0.00218681)
(0.0529682 0.197682 0.00281247)
(0.0261341 0.171183 -6.89365e-05)
(0.00205491 0.148819 -0.00355894)
(-0.0167791 0.118149 -0.00739391)
(-0.0326034 0.0940968 -0.00862527)
(-0.0511726 0.069565 -0.0105192)
(-0.0705777 0.0445377 -0.00502427)
(-0.0950829 0.0192584 -0.00748105)
(-0.122554 -0.000366148 -0.00643865)
(-0.150102 -0.0267329 -0.00359011)
(-0.175959 -0.0576715 0.000893339)
(-0.199591 -0.103406 0.0057933)
(-0.233591 -0.158395 0.0110572)
(-0.273417 -0.233305 0.0142671)
(-0.313151 -0.317054 0.0167545)
(-0.350356 -0.420898 0.0205164)
(-0.377528 -0.519574 0.0289235)
(-0.376454 -0.618646 0.0459812)
(-0.305119 -0.646044 0.0689792)
(-0.2249 -0.542055 0.0834952)
(-0.0876778 -0.257653 0.0411538)
(0.0144662 0.0129698 0.00294757)
(0.000878842 0.20502 -0.00106753)
(0.0395576 0.448857 0.036486)
(0.114564 0.574631 0.0489522)
(0.200498 0.631927 0.0450192)
(0.272015 0.637288 0.0367272)
(0.32219 0.618763 0.0255817)
(0.361524 0.582646 0.0188061)
(0.394366 0.538904 0.00883998)
(0.400016 0.496581 0.0105128)
(0.370564 0.460582 0.00960053)
(0.331833 0.426583 0.00920351)
(0.28343 0.393234 0.00732928)
(0.234219 0.356479 0.00544703)
(0.193311 0.32332 0.00298703)
(0.162494 0.291194 0.00190897)
(0.141025 0.26078 -0.000501301)
(0.119887 0.229518 -0.003006)
(0.100158 0.1989 -0.00624908)
(0.0714207 0.178179 -0.00775584)
(0.0386549 0.157939 -0.00120654)
(0.0103975 0.134855 -0.00422271)
(-0.0100038 0.107797 -0.00773874)
(-0.0231795 0.082856 -0.00943989)
(-0.0427562 0.0560097 -0.00938263)
(-0.0619772 0.0314628 -0.00685946)
(-0.080396 0.00596108 -0.00978924)
(-0.100661 -0.0119843 -0.010368)
(-0.127808 -0.0307539 -0.00619234)
(-0.168206 -0.0486471 -0.00299713)
(-0.208763 -0.0837478 -0.00380318)
(-0.249445 -0.130515 -0.00651407)
(-0.28393 -0.200363 -0.0073467)
(-0.31363 -0.290329 -0.00530437)
(-0.329641 -0.426547 0.00419922)
(-0.342127 -0.576135 0.0143041)
(-0.337986 -0.717689 0.0257977)
(-0.284191 -0.79158 0.0494145)
(-0.173058 -0.759028 0.0642773)
(-0.0522788 -0.467517 0.0684758)
(0.00101414 -0.100586 -0.00735678)
(0.000605362 0.219613 0.00185902)
(0.0375194 0.438543 0.032475)
(0.105819 0.562235 0.0433768)
(0.184482 0.618573 0.0414835)
(0.254534 0.625003 0.0265389)
(0.30813 0.60338 0.0207562)
(0.353037 0.565658 0.0117413)
(0.39098 0.524579 0.00454101)
(0.402387 0.480649 0.00478004)
(0.378305 0.447055 0.00376412)
(0.338947 0.414746 0.00305392)
(0.287607 0.379034 0.00156667)
(0.238998 0.343121 -0.000235208)
(0.20221 0.309605 -0.00144474)
(0.172102 0.27868 -0.00240651)
(0.1481 0.24645 -0.00405871)
(0.127209 0.214441 -0.00640917)
(0.111142 0.179946 -0.00967838)
(0.0875658 0.153411 -0.0108963)
(0.055405 0.133855 -0.0115844)
(0.0218876 0.116131 -0.00642512)
(-0.000630342 0.0918921 -0.0082472)
(-0.0170529 0.0651247 -0.0112654)
(-0.0349724 0.0404279 -0.00979544)
(-0.0515335 0.0172763 -0.00891473)
(-0.0664329 -0.00532685 -0.0110917)
(-0.0818975 -0.0255993 -0.0111712)
(-0.101011 -0.0483199 -0.0103517)
(-0.130407 -0.0643062 -0.0071371)
(-0.163449 -0.0822407 -0.00481849)
(-0.203189 -0.101419 -0.00460803)
(-0.247693 -0.144039 -0.00565329)
(-0.310355 -0.203298 -0.00900479)
(-0.365418 -0.310928 -0.0146122)
(-0.382484 -0.443531 -0.0138704)
(-0.373502 -0.604374 -0.00768704)
(-0.328232 -0.725689 0.00706122)
(-0.227874 -0.753285 0.030416)
(-0.0626634 -0.540045 0.0427192)
(0.0231546 -0.109763 0.0190613)
(0.00682258 0.196534 0.00251878)
(0.0457294 0.395442 0.0262751)
(0.107631 0.52714 0.036199)
(0.182999 0.588843 0.0354514)
(0.25014 0.60597 0.0235941)
(0.302006 0.589028 0.0151908)
(0.348364 0.55318 0.00635839)
(0.383875 0.510203 0.000114109)
(0.398027 0.459704 0.000145887)
(0.381081 0.420061 -9.15286e-05)
(0.340981 0.382227 -0.000738017)
(0.291263 0.344795 -0.00320316)
(0.247052 0.311665 -0.00482061)
(0.213136 0.280378 -0.00590073)
(0.184171 0.250643 -0.00604712)
(0.161031 0.220486 -0.00694744)
(0.135861 0.191025 -0.00869414)
(0.118691 0.1574 -0.0122696)
(0.101307 0.125842 -0.0166478)
(0.0737156 0.104624 -0.0160608)
(0.0377967 0.0924129 -0.0151182)
(0.00648139 0.0721397 -0.0123179)
(-0.00806263 0.0487875 -0.0149332)
(-0.0237679 0.0252637 -0.0117658)
(-0.039613 0.00481963 -0.0114449)
(-0.0528103 -0.0151506 -0.0110378)
(-0.0691039 -0.0348129 -0.0105894)
(-0.0850271 -0.0594305 -0.0102824)
(-0.109044 -0.0794481 -0.0100184)
(-0.134912 -0.104331 -0.00974875)
(-0.172453 -0.126084 -0.0104817)
(-0.207136 -0.166275 -0.0131234)
(-0.252369 -0.210947 -0.0177776)
(-0.291425 -0.283062 -0.022616)
(-0.325178 -0.371881 -0.0244764)
(-0.350743 -0.521643 -0.0232793)
(-0.344939 -0.645018 -0.0107119)
(-0.273234 -0.706642 0.0111759)
(-0.102609 -0.511144 0.0380971)
(0.00633919 -0.0762044 0.0228912)
(0.0021989 0.188039 0.00142755)
(0.0495009 0.361518 0.0138645)
(0.112153 0.494267 0.030002)
(0.177217 0.557003 0.0296242)
(0.244976 0.578605 0.0218311)
(0.294304 0.565392 0.0121115)
(0.34149 0.530976 0.00354384)
(0.375211 0.485712 -0.00192006)
(0.390514 0.434101 -0.00302004)
(0.378085 0.390128 -0.00354641)
(0.340606 0.350468 -0.00508672)
(0.295213 0.313887 -0.00757672)
(0.255137 0.28134 -0.00926238)
(0.224081 0.250269 -0.00992728)
(0.196446 0.221728 -0.00987186)
(0.172852 0.191473 -0.0102832)
(0.147517 0.162845 -0.0119665)
(0.127012 0.130846 -0.0151072)
(0.112304 0.100381 -0.019468)
(0.0959535 0.0655141 -0.0200114)
(0.0601411 0.0602918 -0.0168404)
(0.0240419 0.0470973 -0.0165712)
(0.00338266 0.0291193 -0.0161405)
(-0.0116563 0.0103741 -0.0102843)
(-0.0237789 -0.00701301 -0.0128422)
(-0.0360987 -0.0270445 -0.0104456)
(-0.0530079 -0.0444424 -0.0106818)
(-0.0669938 -0.0677442 -0.00908075)
(-0.0870104 -0.0872328 -0.00985188)
(-0.105645 -0.114407 -0.0102237)
(-0.134869 -0.137053 -0.013275)
(-0.163984 -0.177294 -0.0172819)
(-0.204845 -0.224215 -0.0262409)
(-0.242745 -0.308551 -0.0375306)
(-0.286313 -0.415739 -0.0504411)
(-0.325341 -0.578098 -0.0544661)
(-0.339567 -0.709851 -0.0448288)
(-0.30622 -0.786729 -0.0134788)
(-0.163881 -0.606161 0.0118154)
(-0.029034 -0.137697 0.0137021)
(-0.000239208 0.167029 -0.00047008)
(0.0517925 0.321136 0.00541303)
(0.115226 0.444361 0.0228711)
(0.172599 0.512287 0.0224164)
(0.239667 0.537742 0.0179884)
(0.287108 0.531788 0.00631532)
(0.332202 0.498557 0.000920389)
(0.363845 0.454331 -0.00619405)
(0.381507 0.404032 -0.00858003)
(0.375 0.354508 -0.0083864)
(0.341032 0.310632 -0.00849233)
(0.298709 0.273198 -0.0108569)
(0.261769 0.242546 -0.0131103)
(0.234378 0.213111 -0.0138849)
(0.208278 0.186446 -0.0135217)
(0.186093 0.157258 -0.0145082)
(0.158804 0.129867 -0.0169575)
(0.13868 0.0978565 -0.0205922)
(0.115589 0.071016 -0.0226397)
(0.109507 0.0255504 -0.0245551)
(0.092613 0.0240508 -0.0148316)
(0.0459561 0.0153324 -0.0175958)
(0.0241538 0.00419596 -0.0201641)
(0.00877871 -0.00537923 -0.0158287)
(-0.00798199 -0.0170696 -0.0148614)
(-0.020012 -0.0364784 -0.0103847)
(-0.0371671 -0.053634 -0.00954811)
(-0.0509399 -0.0771867 -0.00926695)
(-0.0709483 -0.0958151 -0.00845194)
(-0.0864149 -0.125956 -0.00866934)
(-0.113672 -0.150898 -0.0113405)
(-0.136881 -0.196921 -0.0165031)
(-0.173954 -0.246138 -0.0290941)
(-0.209708 -0.342446 -0.0447837)
(-0.260495 -0.461817 -0.0647077)
(-0.306439 -0.646931 -0.0731588)
(-0.327924 -0.796886 -0.0656788)
(-0.302825 -0.901739 -0.0325921)
(-0.181224 -0.732681 0.00145453)
(-0.0501075 -0.230388 0.0138338)
(-0.00600484 0.151644 -0.000386325)
(0.0483768 0.289433 0.00119766)
(0.116441 0.397117 0.0168888)
(0.167806 0.471758 0.0161578)
(0.234665 0.499628 0.0136985)
(0.279704 0.49884 0.00831499)
(0.321061 0.468839 0.000237939)
(0.354675 0.428834 -0.00685261)
(0.369986 0.380144 -0.010604)
(0.363239 0.326718 -0.0127525)
(0.33627 0.278025 -0.0145966)
(0.303547 0.237743 -0.0166301)
(0.272424 0.20603 -0.0165094)
(0.247221 0.175919 -0.0161012)
(0.221822 0.149277 -0.0160949)
(0.19919 0.12071 -0.0178544)
(0.171369 0.0960203 -0.0212181)
(0.151412 0.0661288 -0.0245714)
(0.121611 0.0354471 -0.0244314)
(0.127108 0.00249563 -0.0228408)
(0.125633 -0.00178422 -0.00627003)
(0.0772361 -0.00701562 -0.00888267)
(0.0537024 -0.0129861 -0.018295)
(0.0375694 -0.0234713 -0.018987)
(0.0156432 -0.0299737 -0.0156166)
(-0.00163585 -0.0465973 -0.0114397)
(-0.0210959 -0.0585608 -0.0108123)
(-0.0334686 -0.0834388 -0.00550294)
(-0.0540061 -0.0984026 -0.00835483)
(-0.0678484 -0.12649 -0.00655548)
(-0.0926853 -0.147472 -0.0116797)
(-0.112706 -0.194877 -0.0165059)
(-0.151155 -0.249838 -0.03382)
(-0.191436 -0.362025 -0.0537609)
(-0.255002 -0.503563 -0.0809154)
(-0.314212 -0.723217 -0.0925055)
(-0.346675 -0.904802 -0.0873416)
(-0.333477 -1.0465 -0.0508216)
(-0.226126 -0.880311 -0.0174835)
(-0.0791101 -0.304687 0.00631638)
(-0.00581932 0.128243 -0.00247723)
(0.0430698 0.253776 -0.000733689)
(0.113325 0.33807 0.0131113)
(0.164573 0.421713 0.0130086)
(0.224429 0.452446 0.0110041)
(0.269769 0.453375 0.00578976)
(0.311408 0.431038 -0.00117562)
(0.344357 0.391709 -0.0077975)
(0.357748 0.345047 -0.0130181)
(0.35263 0.293183 -0.0165021)
(0.330358 0.246302 -0.018777)
(0.303566 0.205199 -0.0199422)
(0.27656 0.171207 -0.0200503)
(0.255466 0.13946 -0.0204481)
(0.232806 0.11138 -0.0209759)
(0.214051 0.0815193 -0.0229281)
(0.186564 0.0566351 -0.0243461)
(0.16152 0.026818 -0.0257352)
(0.134752 0.00193641 -0.0231877)
(0.152706 -0.0255216 -0.0127211)
(0.161513 -0.033365 0.00473626)
(0.1102 -0.0350768 -0.00348056)
(0.0810131 -0.0364498 -0.0137745)
(0.064145 -0.0465031 -0.0179603)
(0.0409636 -0.0520213 -0.0197695)
(0.0237189 -0.0665795 -0.0134076)
(-0.000742193 -0.0744029 -0.00884905)
(-0.0152352 -0.102836 -0.00961707)
(-0.033088 -0.121904 -0.00519839)
(-0.0442591 -0.164993 -0.00712383)
(-0.0704826 -0.208684 -0.0111105)
(-0.0919246 -0.28762 -0.0179613)
(-0.133117 -0.371188 -0.0368524)
(-0.173418 -0.519825 -0.0584951)
(-0.246563 -0.696471 -0.0881584)
(-0.316537 -0.970926 -0.100504)
(-0.366214 -1.20069 -0.094928)
(-0.353404 -1.39854 -0.0588668)
(-0.240045 -1.22403 -0.0135224)
(-0.0878984 -0.531541 0.00817809)
(-0.00475367 0.114598 -0.00344765)
(0.031191 0.22504 -0.00104363)
(0.105408 0.295884 0.00588528)
(0.165049 0.373874 0.0121363)
(0.213161 0.412674 0.00949886)
(0.259091 0.414111 0.00718857)
(0.298636 0.398763 -0.000292242)
(0.330664 0.361298 -0.00771483)
(0.346139 0.316065 -0.0130018)
(0.343972 0.265698 -0.0168275)
(0.328307 0.219882 -0.0188519)
(0.307349 0.178624 -0.0199966)
(0.284261 0.144058 -0.0203983)
(0.264694 0.110724 -0.0208698)
(0.241684 0.0813436 -0.0218938)
(0.224231 0.0498362 -0.0237735)
(0.1975 0.0211525 -0.0252172)
(0.178983 -0.00669289 -0.0240592)
(0.152163 -0.0235561 -0.0135298)
(0.172787 -0.0553559 -0.00429087)
(0.195747 -0.0674669 0.0030556)
(0.151312 -0.0709091 -0.000466598)
(0.117334 -0.0664224 -0.00840007)
(0.0961185 -0.0758098 -0.0136313)
(0.0690134 -0.0788335 -0.0173574)
(0.0493439 -0.0953416 -0.0156328)
(0.0166449 -0.103122 -0.0144823)
(-0.00535784 -0.13212 -0.00947924)
(-0.0362725 -0.159252 -0.00735697)
(-0.066032 -0.21705 -0.00697069)
(-0.107611 -0.272085 -0.0202855)
(-0.131043 -0.369869 -0.0294053)
(-0.171535 -0.469634 -0.0539047)
(-0.204615 -0.651551 -0.077613)
(-0.281152 -0.878114 -0.110954)
(-0.355603 -1.22958 -0.122442)
(-0.416944 -1.54558 -0.113764)
(-0.397588 -1.82829 -0.066499)
(-0.255475 -1.68392 -0.0169757)
(-0.0908069 -0.931894 0.015654)
(-0.00290905 0.0945489 -0.00415506)
(0.0242499 0.187808 -0.00173432)
(0.0912786 0.254725 0.0020896)
(0.157733 0.314188 0.00929752)
(0.20035 0.360207 0.0073398)
(0.243137 0.363202 0.00387373)
(0.286279 0.352596 -0.00030403)
(0.314527 0.319464 -0.00477349)
(0.330095 0.277753 -0.0115486)
(0.332239 0.229194 -0.0156456)
(0.322035 0.185283 -0.0187778)
(0.307004 0.143636 -0.0205803)
(0.287469 0.108917 -0.0215152)
(0.271079 0.074143 -0.0224017)
(0.249577 0.0447944 -0.0227866)
(0.232314 0.011403 -0.0235585)
(0.209797 -0.0112758 -0.0236026)
(0.197544 -0.0361292 -0.0179884)
(0.167994 -0.0572117 -0.00352268)
(0.188603 -0.0851518 -0.00589703)
(0.225318 -0.101444 0.00267335)
(0.188873 -0.101903 0.00142683)
(0.152036 -0.0999892 -0.00489599)
(0.127194 -0.105874 -0.00975074)
(0.0960927 -0.10941 -0.0146994)
(0.0738149 -0.12482 -0.0143735)
(0.0366789 -0.129637 -0.0137017)
(0.00376179 -0.15615 -0.0152861)
(-0.0392725 -0.18001 -0.0111811)
(-0.0702174 -0.23556 -0.00676613)
(-0.117833 -0.272597 -0.016067)
(-0.14561 -0.358576 -0.0270828)
(-0.195598 -0.446032 -0.0520387)
(-0.241884 -0.642449 -0.0783045)
(-0.340596 -0.899923 -0.116944)
(-0.438076 -1.33947 -0.131466)
(-0.529699 -1.75407 -0.123146)
(-0.51619 -2.15174 -0.0622771)
(-0.347154 -2.05713 -0.0249882)
(-0.125464 -1.2684 0.0151603)
(-0.00255005 0.0861525 -0.00467483)
(0.0170185 0.16584 -0.00139114)
(0.0726981 0.225986 -0.000326093)
(0.144364 0.272913 0.0078422)
(0.188017 0.316184 0.00692912)
(0.22542 0.328403 0.00342191)
(0.268752 0.317056 0.000501847)
(0.297893 0.285936 -0.00434358)
(0.315298 0.247011 -0.00720631)
(0.321235 0.200874 -0.0132054)
(0.317659 0.157991 -0.0169121)
(0.308084 0.11712 -0.020136)
(0.292559 0.0815328 -0.0218532)
(0.278776 0.0478455 -0.0234515)
(0.257873 0.015666 -0.0236255)
(0.246773 -0.0116799 -0.0256229)
(0.228561 -0.0305288 -0.0193871)
(0.213166 -0.0580123 -0.0125737)
(0.183277 -0.0814628 -0.00209921)
(0.206874 -0.108755 -0.0068783)
(0.257486 -0.126327 0.00124277)
(0.2302 -0.124071 0.00331037)
(0.18949 -0.122907 -0.00280504)
(0.162589 -0.126555 -0.00627409)
(0.125372 -0.124174 -0.0144088)
(0.104736 -0.137163 -0.0144818)
(0.060386 -0.136105 -0.0158001)
(0.020187 -0.154815 -0.0171421)
(-0.0368916 -0.183668 -0.0129984)
(-0.0720961 -0.232997 -0.00521245)
(-0.125943 -0.255474 -0.0173747)
(-0.156688 -0.336289 -0.0220967)
(-0.218171 -0.415572 -0.0443193)
(-0.26689 -0.620704 -0.0762603)
(-0.393115 -0.904494 -0.11966)
(-0.516733 -1.41016 -0.140185)
(-0.639472 -1.91787 -0.137265)
(-0.640777 -2.42376 -0.0628024)
(-0.438852 -2.3778 -0.0235312)
(-0.160202 -1.59633 0.0340902)
(-0.000875827 0.0670758 -0.00513193)
(0.0120286 0.130604 -0.00202556)
(0.0516055 0.187561 -0.00173639)
(0.121373 0.220122 0.00221425)
(0.172823 0.252375 0.00533855)
(0.206101 0.272566 0.00167047)
(0.243915 0.264462 0.000127486)
(0.273791 0.235466 -0.00287628)
(0.294136 0.201108 -0.00755158)
(0.304485 0.158731 -0.0111321)
(0.307077 0.120077 -0.0164699)
(0.303318 0.0795111 -0.0203618)
(0.293009 0.0475873 -0.0239398)
(0.281806 0.0112655 -0.026078)
(0.267133 -0.0123808 -0.0290701)
(0.263268 -0.0340371 -0.0266586)
(0.241082 -0.055197 -0.017061)
(0.224827 -0.082244 -0.0107747)
(0.195905 -0.106515 -0.00466283)
(0.220316 -0.132884 -0.00724546)
(0.287136 -0.152896 -0.000592691)
(0.268944 -0.148356 0.00594555)
(0.224983 -0.145003 -0.0017815)
(0.201352 -0.146452 -0.00522888)
(0.160688 -0.133741 -0.0138856)
(0.138325 -0.143124 -0.0165022)
(0.0957388 -0.127527 -0.0253255)
(0.0338215 -0.138736 -0.0230271)
(-0.0367579 -0.178096 -0.0136806)
(-0.0545805 -0.221985 -0.00189149)
(-0.116887 -0.245144 -0.000963198)
(-0.158616 -0.313964 -0.0198609)
(-0.232021 -0.377025 -0.0424987)
(-0.293193 -0.577473 -0.0691318)
(-0.433603 -0.868785 -0.122556)
(-0.580816 -1.44061 -0.152892)
(-0.748838 -2.03334 -0.154376)
(-0.76995 -2.66442 -0.0694896)
(-0.569242 -2.7017 -0.0217568)
(-0.218328 -2.0153 0.0451453)
(-0.00382602 0.0652105 -0.00524895)
(0.00653523 0.122388 -0.00237197)
(0.0292035 0.169909 -0.000856231)
(0.0863445 0.20369 -1.12721e-05)
(0.1505 0.215998 0.00282519)
(0.188834 0.234854 0.00215579)
(0.218767 0.229821 0.000544365)
(0.250869 0.200997 -0.00119152)
(0.27622 0.168615 -0.00553591)
(0.292125 0.128345 -0.0103431)
(0.299212 0.0913956 -0.0137017)
(0.302318 0.054124 -0.0206752)
(0.29537 0.0190023 -0.0240966)
(0.291562 -0.00879879 -0.0308101)
(0.286183 -0.0294272 -0.0309035)
(0.279121 -0.054316 -0.0280286)
(0.256887 -0.0765442 -0.017742)
(0.238578 -0.100454 -0.0130201)
(0.210408 -0.127525 -0.00661356)
(0.235816 -0.149064 -0.00824871)
(0.318448 -0.17537 0.000430576)
(0.313979 -0.164757 0.00852291)
(0.265871 -0.160271 -0.000383373)
(0.248612 -0.158222 -0.00495874)
(0.203527 -0.139422 -0.0134743)
(0.188273 -0.143632 -0.0215547)
(0.143621 -0.112616 -0.031481)
(0.0499863 -0.119222 -0.0298121)
(-0.0357834 -0.14559 -0.0190731)
(-0.0482635 -0.202706 -0.00361371)
(-0.11199 -0.223549 0.00420292)
(-0.141899 -0.302639 -0.00994976)
(-0.234557 -0.346421 -0.0289465)
(-0.298776 -0.529863 -0.0726149)
(-0.475515 -0.803606 -0.120378)
(-0.635599 -1.40646 -0.160778)
(-0.838733 -2.09025 -0.173877)
(-0.893985 -2.85996 -0.0758991)
(-0.709099 -3.01933 -0.0136523)
(-0.294596 -2.49423 0.080436)
(-0.00117484 0.0477501 -0.005666)
(4.25506e-05 0.0942777 -0.00405329)
(0.0116514 0.135625 -0.0016597)
(0.0504332 0.162301 -0.00134423)
(0.110343 0.168498 0.000350169)
(0.162182 0.167485 0.000847811)
(0.185887 0.172808 -0.000133455)
(0.216503 0.142998 -0.00202211)
(0.24742 0.115066 -0.00490935)
(0.268901 0.0786027 -0.0108601)
(0.285591 0.0448949 -0.0166834)
(0.292216 0.00904024 -0.0210802)
(0.294772 -0.0145018 -0.0296978)
(0.301304 -0.0367505 -0.0324593)
(0.29262 -0.058885 -0.0282726)
(0.289349 -0.0827253 -0.0235206)
(0.269481 -0.103491 -0.015143)
(0.250137 -0.126392 -0.0161884)
(0.224391 -0.15217 -0.00830012)
(0.247958 -0.171992 -0.00848648)
(0.348546 -0.200743 0.000634402)
(0.360697 -0.187879 0.0112211)
(0.306483 -0.180916 0.000473822)
(0.298045 -0.174394 -0.00548835)
(0.251208 -0.149925 -0.0142586)
(0.245005 -0.143473 -0.0269185)
(0.20312 -0.109286 -0.0349416)
(0.086047 -0.0975885 -0.0323416)
(-0.0288977 -0.117943 -0.0298791)
(-0.0336021 -0.164107 -0.0092277)
(-0.105428 -0.192555 0.00108279)
(-0.13177 -0.278389 0.00125173)
(-0.212885 -0.319321 -0.0275638)
(-0.283397 -0.50052 -0.0447565)
(-0.476065 -0.736475 -0.123249)
(-0.672625 -1.33824 -0.165901)
(-0.928632 -2.06957 -0.185016)
(-1.01022 -3.00746 -0.0855228)
(-0.882111 -3.33115 0.00696706)
(-0.382526 -3.06243 0.148978)
(-0.00830091 0.0555548 -0.00560023)
(-0.00977997 0.107337 -0.00541189)
(-0.0135506 0.1367 -0.00500831)
(0.00890486 0.1606 0.00511135)
(0.0620956 0.164043 -0.000753675)
(0.128782 0.137736 0.00311822)
(0.16121 0.139907 -7.2152e-05)
(0.186415 0.108099 -0.0013615)
(0.227372 0.0805247 -0.00453555)
(0.254805 0.0404442 -0.00931447)
(0.275552 0.0108728 -0.0183)
(0.296589 -0.0166666 -0.0264912)
(0.309882 -0.0355171 -0.0261312)
(0.313705 -0.0592114 -0.0193881)
(0.310022 -0.0780676 -0.022566)
(0.30712 -0.100583 -0.0216308)
(0.288654 -0.121582 -0.0192854)
(0.268734 -0.14162 -0.0174743)
(0.24587 -0.167833 -0.0101876)
(0.267912 -0.186345 -0.00731095)
(0.385447 -0.215572 0.00103494)
(0.416736 -0.203885 0.0140381)
(0.360501 -0.19407 0.00192314)
(0.362499 -0.185647 -0.00567278)
(0.317603 -0.156435 -0.013777)
(0.317158 -0.140394 -0.0315464)
(0.282431 -0.0992536 -0.0373568)
(0.137428 -0.0791723 -0.0333408)
(0.00161949 -0.0816664 -0.0415144)
(-0.00795636 -0.132223 -0.0125599)
(-0.099274 -0.152532 -0.00425853)
(-0.108238 -0.23495 -0.00092817)
(-0.20732 -0.266195 -0.0136763)
(-0.249492 -0.456202 -0.0417301)
(-0.458159 -0.656893 -0.0928629)
(-0.66533 -1.22837 -0.158297)
(-1.01051 -1.96972 -0.199125)
(-1.1333 -3.04839 -0.0864014)
(-1.08092 -3.61053 0.0531366)
(-0.507631 -3.68895 0.262766)
(-0.00152698 0.0555264 -0.00527354)
(-0.0203235 0.0869119 -0.00837619)
(-0.0381002 0.115463 -0.00807734)
(-0.0248602 0.114971 -0.00563302)
(-0.00236651 0.123853 0.00835482)
(0.0711269 0.0835819 -0.0012707)
(0.11864 0.0746953 -0.000218231)
(0.144964 0.0445386 -0.00415759)
(0.190356 0.0163689 -0.00589913)
(0.227334 -0.0125498 -0.0137632)
(0.269393 -0.0333865 -0.0206951)
(0.29742 -0.0545757 -0.0225669)
(0.314069 -0.074312 -0.0201092)
(0.32746 -0.0922531 -0.0217102)
(0.324987 -0.107181 -0.0220493)
(0.324907 -0.124015 -0.0214893)
(0.312287 -0.144044 -0.0240142)
(0.294845 -0.161604 -0.0215989)
(0.275692 -0.188201 -0.0130704)
(0.297448 -0.208512 -0.0081736)
(0.431994 -0.237604 0.00018843)
(0.485261 -0.231253 0.0189639)
(0.425873 -0.21689 0.00294174)
(0.439632 -0.204182 -0.00627691)
(0.400367 -0.166193 -0.0146551)
(0.412095 -0.137366 -0.0344325)
(0.379861 -0.0844588 -0.0371947)
(0.223899 -0.0674317 -0.0304159)
(0.047391 -0.0468911 -0.0450521)
(0.040856 -0.106111 -0.0305176)
(-0.0507291 -0.112835 -0.0206954)
(-0.0533729 -0.211448 -0.00614224)
(-0.170264 -0.218602 -0.0187109)
(-0.20036 -0.399751 -0.0347802)
(-0.380511 -0.593352 -0.0797426)
(-0.588659 -1.12569 -0.114064)
(-1.02392 -1.84331 -0.177466)
(-1.24092 -3.036 -0.106293)
(-1.33703 -3.83018 0.111712)
(-0.626659 -4.36351 0.426163)
(-0.0354533 0.0773295 0.000608644)
(-0.0559951 0.151439 -0.00946239)
(-0.0822653 0.144052 -0.00840335)
(-0.0772877 0.144793 -0.00250169)
(-0.0510552 0.115688 -0.000307088)
(0.0185519 0.0898813 0.0135327)
(0.0871186 0.0439714 0.0031024)
(0.119924 0.0142073 0.00052308)
(0.184563 -0.0135625 -0.0068518)
(0.239528 -0.0381827 -0.00724067)
(0.285326 -0.0620589 -0.00965074)
(0.323544 -0.0864281 -0.00660799)
(0.351665 -0.103515 -0.00957075)
(0.370539 -0.120906 -0.0109931)
(0.377 -0.132869 -0.01649)
(0.378441 -0.143411 -0.0210058)
(0.367186 -0.156754 -0.0276303)
(0.353683 -0.171856 -0.0214846)
(0.337922 -0.196147 -0.0196142)
(0.361641 -0.224183 -0.0104623)
(0.513027 -0.247405 -0.00499996)
(0.593606 -0.253586 0.021774)
(0.540928 -0.231145 0.0048165)
(0.570565 -0.216979 -0.00462205)
(0.540761 -0.170069 -0.0144467)
(0.561919 -0.130805 -0.0293306)
(0.521747 -0.0684237 -0.0332516)
(0.350957 -0.0607714 -0.0237138)
(0.147513 -0.0243224 -0.0454182)
(0.134157 -0.0657182 -0.0342226)
(0.0147993 -0.0672962 -0.0368124)
(0.0430901 -0.161588 -0.0276267)
(-0.0757915 -0.179056 -0.0218302)
(-0.119833 -0.341196 -0.0321044)
(-0.310683 -0.452912 -0.0883819)
(-0.451426 -0.98014 -0.0899404)
(-0.979301 -1.60852 -0.135576)
(-1.25781 -2.88228 -0.0654677)
(-1.58826 -3.94267 0.1415)
(-0.753695 -4.95244 0.660834)
(0.00512713 0.227172 0.00632379)
(-0.0651111 0.183764 -0.00492312)
(-0.134761 0.186705 -0.00612613)
(-0.133071 0.101669 -0.00471016)
(-0.119044 0.0793011 0.00236368)
(-0.0366804 0.0343073 0.0167857)
(0.034765 -0.00501531 0.0104195)
(0.108677 -0.0260634 0.0072181)
(0.186952 -0.0493147 0.00797562)
(0.254637 -0.0761293 0.00691083)
(0.320853 -0.0969308 0.0079625)
(0.376972 -0.116012 0.003634)
(0.419895 -0.131234 9.44403e-05)
(0.455856 -0.143618 -0.00465675)
(0.475399 -0.152298 -0.0102416)
(0.489715 -0.158958 -0.016463)
(0.487934 -0.1639 -0.0224137)
(0.481959 -0.172422 -0.027489)
(0.470517 -0.200174 -0.0224901)
(0.504197 -0.234011 -0.0190677)
(0.67404 -0.248303 -0.0155366)
(0.786347 -0.274655 0.0164972)
(0.742823 -0.247356 0.00469777)
(0.786181 -0.225693 -0.00578954)
(0.766825 -0.170109 -0.0112026)
(0.800979 -0.120662 -0.0232984)
(0.742422 -0.049362 -0.0252615)
(0.571602 -0.0564003 -0.0153523)
(0.351316 -0.00552241 -0.0381774)
(0.341644 -0.0420911 -0.0319183)
(0.209181 -0.0341052 -0.0380513)
(0.232985 -0.102363 -0.0391212)
(0.0989268 -0.147414 -0.0422063)
(0.13548 -0.286294 -0.0581393)
(-0.0826393 -0.377639 -0.0743509)
(-0.160773 -0.8431 -0.100956)
(-0.699354 -1.40374 -0.0951997)
(-1.06956 -2.67263 -0.0278138)
(-1.71659 -3.96811 0.267592)
(-0.743702 -5.44467 0.958133)
(-0.202953 0.0898426 0.0238398)
(-0.269526 0.306589 0.0294279)
(-0.23777 0.273266 0.0330125)
(-0.218641 0.226392 0.0340612)
(-0.111873 0.0945879 0.0434584)
(-0.0137903 0.0617143 0.053003)
(0.124399 0.00797005 0.0550545)
(0.216444 -0.0226124 0.0605881)
(0.317316 -0.048471 0.0557701)
(0.41408 -0.0725375 0.0550199)
(0.505243 -0.0933907 0.0472536)
(0.586443 -0.112031 0.0414901)
(0.653855 -0.124128 0.0323832)
(0.711371 -0.136256 0.0225916)
(0.751179 -0.14362 0.0110196)
(0.782962 -0.148816 -0.00215732)
(0.797566 -0.148631 -0.00928105)
(0.801517 -0.151692 -0.0193109)
(0.799105 -0.166442 -0.0299411)
(0.864737 -0.212577 -0.0192965)
(1.04949 -0.212923 -0.0177942)
(1.20206 -0.255985 0.0060239)
(1.18761 -0.236141 0.00559992)
(1.24914 -0.211971 0.00840357)
(1.22729 -0.153087 -0.000937582)
(1.26992 -0.108217 -0.00164372)
(1.17271 -0.0409702 -0.00462127)
(1.00473 -0.0596965 0.00169427)
(0.765603 -0.00414418 -0.0252846)
(0.770447 -0.0309423 -0.0223088)
(0.621908 -0.0187568 -0.0368308)
(0.666574 -0.0626002 -0.0278926)
(0.485994 -0.0692302 -0.0458156)
(0.551099 -0.157337 -0.0596808)
(0.255075 -0.235147 -0.0870512)
(0.274739 -0.498648 -0.132176)
(-0.224452 -0.937827 -0.0953526)
(-0.433595 -2.25085 -0.0177719)
(-1.55347 -3.77114 0.419185)
(-0.610438 -5.44777 1.34731)
(-0.403951 0.74282 0.132066)
(-0.20641 0.22607 0.0876789)
(-0.200566 0.271941 0.0765803)
(-0.0405691 0.212855 0.0646019)
(0.108885 0.134786 0.0243257)
(0.380812 0.0941248 0.0835547)
(0.549151 0.0526888 0.074882)
(0.720289 0.0222452 0.0802791)
(0.874847 0.000564222 0.0862266)
(1.01593 -0.0175223 0.0881956)
(1.14752 -0.0321237 0.0830968)
(1.27299 -0.0459006 0.0720145)
(1.37547 -0.0576556 0.060121)
(1.47032 -0.0684846 0.0498915)
(1.54016 -0.0770331 0.0370475)
(1.60398 -0.0821287 0.0234893)
(1.64277 -0.0758734 0.00859318)
(1.68456 -0.0727354 -0.00319967)
(1.71824 -0.0915617 -0.012434)
(1.82431 -0.144711 -0.0232731)
(2.03907 -0.145294 -0.0274005)
(2.24144 -0.196184 -0.00688851)
(2.23109 -0.193812 0.00998223)
(2.29842 -0.170592 0.0177561)
(2.23054 -0.111472 0.0125203)
(2.26172 -0.0659172 0.0147094)
(2.11733 -0.00611884 0.0137353)
(1.98794 -0.0204957 0.0215526)
(1.72783 0.0285159 -0.00383722)
(1.80241 -0.000957074 -0.0068918)
(1.63468 0.00455445 -0.016012)
(1.7648 -0.0372292 -0.0117598)
(1.53108 -0.0292202 -0.0178537)
(1.6764 -0.0633354 -0.0170538)
(1.29737 -0.108856 -0.0241284)
(1.52429 -0.262714 -0.0595546)
(0.851524 -0.557751 -0.0149414)
(1.10707 -1.65237 -0.067586)
(-0.216085 -3.21453 0.350267)
(0.087869 -5.04657 1.70342)
(1.15073 1.15749 0.0990891)
(1.63846 0.487544 0.0948467)
(2.34437 0.411192 0.0934711)
(2.66779 0.230465 0.0802456)
(2.93609 0.19671 0.0613916)
(3.18974 0.111761 0.0548339)
(3.41153 0.0778975 0.0542736)
(3.57459 0.0508208 0.0568245)
(3.71394 0.0316205 0.0586916)
(3.85251 0.0154007 0.0605632)
(3.98052 0.00945327 0.0620204)
(4.10675 0.00139533 0.0628073)
(4.20706 -0.0047378 0.0608049)
(4.30884 -0.0110763 0.0566267)
(4.38106 -0.0164272 0.0490907)
(4.45578 -0.0211606 0.0388438)
(4.49319 -0.0254653 0.032973)
(4.55573 -0.0181656 0.0226131)
(4.62785 -0.0237098 -0.000674149)
(4.80117 -0.0489243 -0.0053205)
(5.01062 -0.0511053 -0.0196568)
(5.23348 -0.0749985 -0.0189695)
(5.18716 -0.0849004 -0.00157385)
(5.21827 -0.0760605 0.0165587)
(5.046 -0.056102 0.0179738)
(5.00393 -0.0391473 0.0238711)
(4.78387 -0.00545444 0.0197039)
(4.72734 -0.00371285 0.0323205)
(4.45047 0.0218194 0.01674)
(4.64146 0.0127294 0.0110677)
(4.4845 0.0131501 -0.00466336)
(4.73626 -0.00377469 -0.00621892)
(4.43004 -0.0164158 -0.00356659)
(4.66643 -0.0285273 -0.0125068)
(4.12262 -0.0464878 0.0117965)
(4.41438 -0.137362 -0.0320401)
(3.48991 -0.228368 0.0635819)
(3.90648 -0.583782 -0.010118)
(1.97069 -1.1961 0.241383)
(1.25588 -2.24634 1.62747)
)
;
boundaryField
{
movingWall
{
type fixedValue;
value uniform (10 0 0);
}
fixedWalls
{
type noSlip;
}
frontAndBack
{
type noSlip;
}
}
// ************************************************************************* //
| [
"you@example.com"
] | you@example.com | |
fb06865b8ba96189706566ac2584fc970b5d1824 | 59f6357ab880b3dd2f0c15ae7c8e82820ecf7484 | /rover.cpp | 288d79b3a81832b978ffedfb329bff13a6485b38 | [] | no_license | marcindus/dojo | 7d7c8bdb761499960b6f0fb824874c5e05c643bf | db7e8b6b378e2f7c2ac88c3254823bf67313745d | refs/heads/master | 2020-08-24T00:01:28.356064 | 2020-04-21T06:39:03 | 2020-04-21T06:39:03 | 216,728,652 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,339 | cpp | #include <gmock/gmock.h>
#include <string>
#include <vector>
#include <deque>
template <class T>
void print_container(T const& v) {
for(auto i : v) std::cout << i << " ";
std::cout << std::endl;
}
struct Coordinates {
int x;
int y;
Coordinates(int x, int y) : x(x), y(y) {};
};
struct Buffer
{
Buffer() {};
std::deque<char> buffer{'N','W','S','E'};
char tmp;
void rotate_right() {
tmp = buffer.front();
buffer.pop_front();
buffer.push_back(tmp);
}
void rotate_left() {
tmp = buffer.back();
buffer.pop_back();
buffer.push_front(tmp);
}
char get_current() {
return buffer.front();
}
};
struct Rover {
Coordinates coords = Coordinates(0,0);
Buffer buf;
Rover(int x, int y) : coords(x,y) {};
Rover() {};
void executeCommand(std::string str) {
for( auto i : str) {
if(i =='R') this->turnRight();
else if(i =='L') this->turnLeft();
else if(i =='M') this->goForward();
}
}
void goForward() {
if(buf.get_current() == 'N') coords.y++;
else if(buf.get_current() == 'W') coords.x++;
else if(buf.get_current() == 'S') coords.y--;
else if(buf.get_current() == 'E') coords.x--;
else {}
}
char getDirection() {
return 'N';
}
std::string get_position() {
std::stringstream str;
str << coords.x << ' ' << coords.y << ' ' << buf.get_current();
return str.str();
}
void turnRight() {
buf.rotate_right();
}
void turnLeft() {
buf.rotate_left();
}
};
//---------------------------------------------------------------------
using namespace ::testing;
TEST(Empty, acceptance) {
Rover rover(1,2);
rover.executeCommand("LMLMLMLMM");
EXPECT_EQ(rover.get_position(), "1 3 N");
}
TEST(Empty, testParser) {
Rover rover;
rover.executeCommand("RMMMM");
}
TEST(Empty, goForward) {
Rover rover;
rover.goForward();
EXPECT_EQ(rover.get_position(), "0 1 N");
}
TEST(Empty, turnRightAndGoForward)
{
Rover rover;
rover.turnRight();
rover.goForward();
rover.goForward();
rover.goForward();
rover.goForward();
EXPECT_EQ(rover.get_position(), "4 0 W");
}
TEST(Empty, turnRightAndGoForwardLeftForward)
{
Rover rover;
rover.turnRight();
rover.goForward();
rover.turnLeft();
rover.goForward();
EXPECT_EQ(rover.get_position(), "1 1 N");
}
TEST(Empty, sanity)
{
Rover rover;
EXPECT_EQ(rover.get_position(), "0 0 N");
}
TEST(Empty, turnRightAndBack)
{
Rover rover;
rover.turnRight();
rover.turnLeft();
EXPECT_EQ(rover.get_position(), "0 0 N");
}
TEST(Empty, turnRight2times)
{
Rover rover;
rover.turnRight();
rover.turnRight();
EXPECT_EQ(rover.get_position(), "0 0 S");
}
TEST(Empty, bufferInitialPosition) {
Buffer buffer;
EXPECT_EQ(buffer.get_current(), 'N');
}
TEST(Empty, bufferRotateright) {
Buffer buffer;
EXPECT_EQ(buffer.get_current(), 'N');
buffer.rotate_right();
EXPECT_EQ(buffer.get_current(), 'W');
}
TEST(Empty, bufferRotateLeft) {
Buffer buffer;
EXPECT_EQ(buffer.get_current(), 'N');
buffer.rotate_left();
EXPECT_EQ(buffer.get_current(), 'E');
}
| [
"marcin.dus@nokia.com"
] | marcin.dus@nokia.com |
5566c96bcfc83ea045ca36f900137eb0049a2e93 | df1a31f1a8222c22649995d2d6eb195f41008b31 | /src/qt/masternodemanager.cpp | cdd85935989b2afec51648f215e5d227a1059a13 | [
"MIT"
] | permissive | ApollonWrock/ApollonCoin | 7f1f077ba5414e2c1f8c8a3a42d72085e9b226d3 | ee1ea5be1bd3deec0e203e16805c359477d3a80b | refs/heads/master | 2020-03-18T14:59:29.490470 | 2018-05-27T14:27:57 | 2018-05-27T14:27:57 | 134,879,857 | 0 | 0 | null | 2018-05-25T16:21:40 | 2018-05-25T16:21:40 | null | UTF-8 | C++ | false | false | 13,084 | cpp | #include "masternodemanager.h"
#include "ui_masternodemanager.h"
#include "addeditadrenalinenode.h"
#include "adrenalinenodeconfigdialog.h"
#include "sync.h"
#include "clientmodel.h"
#include "walletmodel.h"
#include "activemasternode.h"
#include "masternodeconfig.h"
#include "masternodeman.h"
#include "masternode.h"
#include "walletdb.h"
#include "wallet.h"
#include "init.h"
#include "rpcserver.h"
#include <boost/lexical_cast.hpp>
#include <fstream>
using namespace json_spirit;
using namespace std;
#include <QAbstractItemDelegate>
#include <QClipboard>
#include <QPainter>
#include <QTimer>
#include <QDebug>
#include <QScrollArea>
#include <QScroller>
#include <QDateTime>
#include <QApplication>
#include <QClipboard>
#include <QMessageBox>
#include <QItemSelectionModel>
MasternodeManager::MasternodeManager(QWidget *parent) :
QWidget(parent),
ui(new Ui::MasternodeManager),
clientModel(0),
walletModel(0)
{
ui->setupUi(this);
ui->editButton->setEnabled(false);
ui->startButton->setEnabled(false);
int columnAddressWidth = 200;
int columnProtocolWidth = 60;
int columnStatusWidth = 80;
int columnActiveWidth = 130;
int columnLastSeenWidth = 130;
ui->tableWidgetMasternodes->setColumnWidth(0, columnAddressWidth);
ui->tableWidgetMasternodes->setColumnWidth(1, columnProtocolWidth);
ui->tableWidgetMasternodes->setColumnWidth(2, columnStatusWidth);
ui->tableWidgetMasternodes->setColumnWidth(3, columnActiveWidth);
ui->tableWidgetMasternodes->setColumnWidth(4, columnLastSeenWidth);
ui->tableWidgetMasternodes->setContextMenuPolicy(Qt::CustomContextMenu);
QAction *copyAddressAction = new QAction(tr("Copy Address"), this);
QAction *copyPubkeyAction = new QAction(tr("Copy Pubkey"), this);
contextMenu = new QMenu();
contextMenu->addAction(copyAddressAction);
contextMenu->addAction(copyPubkeyAction);
connect(ui->tableWidgetMasternodes, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(showContextMenu(const QPoint&)));
connect(copyAddressAction, SIGNAL(triggered()), this, SLOT(copyAddress()));
connect(copyPubkeyAction, SIGNAL(triggered()), this, SLOT(copyPubkey()));
ui->tableWidgetMasternodes->horizontalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents);
ui->tableWidget_2->horizontalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents);
timer = new QTimer(this);
connect(timer, SIGNAL(timeout()), this, SLOT(updateNodeList()));
if(!GetBoolArg("-reindexaddr", false))
timer->start(30000);
updateNodeList();
}
MasternodeManager::~MasternodeManager()
{
delete ui;
}
void MasternodeManager::on_tableWidget_2_itemSelectionChanged()
{
if(ui->tableWidget_2->selectedItems().count() > 0)
{
ui->editButton->setEnabled(true);
ui->startButton->setEnabled(true);
}
}
void MasternodeManager::updateAdrenalineNode(QString alias, QString addr, QString privkey, QString txHash, QString txIndex, QString rewardAddress, QString rewardPercentage, QString status)
{
LOCK(cs_adrenaline);
bool bFound = false;
int nodeRow = 0;
for(int i=0; i < ui->tableWidget_2->rowCount(); i++)
{
if(ui->tableWidget_2->item(i, 0)->text() == alias)
{
bFound = true;
nodeRow = i;
break;
}
}
if(nodeRow == 0 && !bFound)
ui->tableWidget_2->insertRow(0);
QTableWidgetItem *aliasItem = new QTableWidgetItem(alias);
QTableWidgetItem *addrItem = new QTableWidgetItem(addr);
QTableWidgetItem *rewardAddressItem = new QTableWidgetItem(rewardAddress);
QTableWidgetItem *rewardPercentageItem = new QTableWidgetItem(rewardPercentage);
QTableWidgetItem *statusItem = new QTableWidgetItem(status);
ui->tableWidget_2->setItem(nodeRow, 0, aliasItem);
ui->tableWidget_2->setItem(nodeRow, 1, addrItem);
ui->tableWidget_2->setItem(nodeRow, 2, rewardPercentageItem);
ui->tableWidget_2->setItem(nodeRow, 3, rewardAddressItem);
ui->tableWidget_2->setItem(nodeRow, 4, statusItem);
}
static QString seconds_to_DHMS(quint32 duration)
{
QString res;
int seconds = (int) (duration % 60);
duration /= 60;
int minutes = (int) (duration % 60);
duration /= 60;
int hours = (int) (duration % 24);
int days = (int) (duration / 24);
if((hours == 0)&&(days == 0))
return res.sprintf("%02dm:%02ds", minutes, seconds);
if (days == 0)
return res.sprintf("%02dh:%02dm:%02ds", hours, minutes, seconds);
return res.sprintf("%dd %02dh:%02dm:%02ds", days, hours, minutes, seconds);
}
void MasternodeManager::updateNodeList()
{
static int64_t nTimeListUpdated = GetTime();
int64_t nSecondsToWait = nTimeListUpdated - GetTime() + 30;
if (nSecondsToWait > 0) return;
TRY_LOCK(cs_masternodes, lockMasternodes);
if(!lockMasternodes) return;
ui->countLabel->setText("Updating...");
ui->tableWidgetMasternodes->setSortingEnabled(false);
ui->tableWidgetMasternodes->clearContents();
ui->tableWidgetMasternodes->setRowCount(0);
std::vector<CMasternode> vMasternodes = mnodeman.GetFullMasternodeVector();
BOOST_FOREACH(CMasternode& mn, vMasternodes)
{
// populate list
// Address, Protocol, Status, Active Seconds, Last Seen, Pub Key
QTableWidgetItem* addressItem = new QTableWidgetItem(QString::fromStdString(mn.addr.ToString()));
QTableWidgetItem* protocolItem = new QTableWidgetItem(QString::number(mn.protocolVersion));
QTableWidgetItem* statusItem = new QTableWidgetItem(QString::number(mn.IsEnabled()));
QTableWidgetItem* activeSecondsItem = new QTableWidgetItem(seconds_to_DHMS((qint64)(mn.lastTimeSeen - mn.sigTime)));
QTableWidgetItem* lastSeenItem = new QTableWidgetItem(QString::fromStdString(DateTimeStrFormat(mn.lastTimeSeen)));
CScript pubkey;
pubkey =GetScriptForDestination(mn.pubkey.GetID());
CTxDestination address1;
ExtractDestination(pubkey, address1);
CApolloncoinAddress address2(address1);
QTableWidgetItem *pubkeyItem = new QTableWidgetItem(QString::fromStdString(address2.ToString()));
ui->tableWidgetMasternodes->insertRow(0);
ui->tableWidgetMasternodes->setItem(0, 0, addressItem);
ui->tableWidgetMasternodes->setItem(0, 1, protocolItem);
ui->tableWidgetMasternodes->setItem(0, 2, statusItem);
ui->tableWidgetMasternodes->setItem(0, 3, activeSecondsItem);
ui->tableWidgetMasternodes->setItem(0, 4, lastSeenItem);
ui->tableWidgetMasternodes->setItem(0, 5, pubkeyItem);
}
ui->countLabel->setText(QString::number(ui->tableWidgetMasternodes->rowCount()));
ui->tableWidgetMasternodes->setSortingEnabled(true);
}
void MasternodeManager::setClientModel(ClientModel *model)
{
this->clientModel = model;
if(model)
{
}
}
void MasternodeManager::setWalletModel(WalletModel *model)
{
this->walletModel = model;
if(model && model->getOptionsModel())
{
}
}
void MasternodeManager::on_createButton_clicked()
{
AddEditAdrenalineNode* aenode = new AddEditAdrenalineNode();
aenode->exec();
}
void MasternodeManager::on_startButton_clicked()
{
// start the node
QItemSelectionModel* selectionModel = ui->tableWidget_2->selectionModel();
QModelIndexList selected = selectionModel->selectedRows();
if(selected.count() == 0)
return;
QModelIndex index = selected.at(0);
int r = index.row();
std::string sAlias = ui->tableWidget_2->item(r, 0)->text().toStdString();
if(pwalletMain->IsLocked()) {
}
std::string statusObj;
statusObj += "<center>Alias: " + sAlias;
BOOST_FOREACH(CMasternodeConfig::CMasternodeEntry mne, masternodeConfig.getEntries()) {
if(mne.getAlias() == sAlias) {
std::string errorMessage;
bool result = activeMasternode.Register(mne.getIp(), mne.getPrivKey(), mne.getTxHash(), mne.getOutputIndex(), mne.getRewardAddress(), mne.getRewardPercentage(), errorMessage);
if(result) {
statusObj += "<br>Successfully started masternode." ;
} else {
statusObj += "<br>Failed to start masternode.<br>Error: " + errorMessage;
}
break;
}
}
statusObj += "</center>";
pwalletMain->Lock();
QMessageBox msg;
msg.setText(QString::fromStdString(statusObj));
msg.exec();
}
void MasternodeManager::on_startAllButton_clicked()
{
if(pwalletMain->IsLocked()) {
}
std::vector<CMasternodeConfig::CMasternodeEntry> mnEntries;
int total = 0;
int successful = 0;
int fail = 0;
std::string statusObj;
BOOST_FOREACH(CMasternodeConfig::CMasternodeEntry mne, masternodeConfig.getEntries()) {
total++;
std::string errorMessage;
std::string strRewardAddress = mne.getRewardAddress();
std::string strRewardPercentage = mne.getRewardPercentage();
bool result = activeMasternode.Register(mne.getIp(), mne.getPrivKey(), mne.getTxHash(), mne.getOutputIndex(), strRewardAddress, strRewardPercentage, errorMessage);
if(result) {
successful++;
} else {
fail++;
statusObj += "\nFailed to start " + mne.getAlias() + ". Error: " + errorMessage;
}
}
pwalletMain->Lock();
std::string returnObj;
returnObj = "Successfully started " + boost::lexical_cast<std::string>(successful) + " masternodes, failed to start " +
boost::lexical_cast<std::string>(fail) + ", total " + boost::lexical_cast<std::string>(total);
if (fail > 0)
returnObj += statusObj;
QMessageBox msg;
msg.setText(QString::fromStdString(returnObj));
msg.exec();
}
void MasternodeManager::on_UpdateButton_clicked()
{
BOOST_FOREACH(CMasternodeConfig::CMasternodeEntry mne, masternodeConfig.getEntries()) {
std::string errorMessage;
std::string strRewardAddress = mne.getRewardAddress();
std::string strRewardPercentage = mne.getRewardPercentage();
std::vector<CMasternode> vMasternodes = mnodeman.GetFullMasternodeVector();
if (errorMessage == ""){
updateAdrenalineNode(QString::fromStdString(mne.getAlias()), QString::fromStdString(mne.getIp()), QString::fromStdString(mne.getPrivKey()), QString::fromStdString(mne.getTxHash()),
QString::fromStdString(mne.getOutputIndex()), QString::fromStdString(strRewardAddress), QString::fromStdString(strRewardPercentage), QString::fromStdString("Not in the masternode list."));
}
else {
updateAdrenalineNode(QString::fromStdString(mne.getAlias()), QString::fromStdString(mne.getIp()), QString::fromStdString(mne.getPrivKey()), QString::fromStdString(mne.getTxHash()),
QString::fromStdString(mne.getOutputIndex()), QString::fromStdString(strRewardAddress), QString::fromStdString(strRewardPercentage), QString::fromStdString(errorMessage));
}
BOOST_FOREACH(CMasternode& mn, vMasternodes) {
if (mn.addr.ToString().c_str() == mne.getIp()){
updateAdrenalineNode(QString::fromStdString(mne.getAlias()), QString::fromStdString(mne.getIp()), QString::fromStdString(mne.getPrivKey()), QString::fromStdString(mne.getTxHash()),
QString::fromStdString(mne.getOutputIndex()), QString::fromStdString(strRewardAddress), QString::fromStdString(strRewardPercentage), QString::fromStdString("Masternode is Running."));
}
}
}
}
void MasternodeManager::showContextMenu(const QPoint& point)
{
QTableWidgetItem* item = ui->tableWidgetMasternodes->itemAt(point);
if (item) contextMenu->exec(QCursor::pos());
}
void MasternodeManager::copyAddress()
{
std::string sData;
int row;
QItemSelectionModel* selectionModel = ui->tableWidgetMasternodes->selectionModel();
QModelIndexList selectedRows = selectionModel->selectedRows();
if(selectedRows.count() == 0)
return;
for (int i = 0; i < selectedRows.count(); i++)
{
QModelIndex index = selectedRows.at(i);
row = index.row();
sData += ui->tableWidgetMasternodes->item(row, 0)->text().toStdString();
if (i < selectedRows.count()-1)
sData += "\n";
}
QApplication::clipboard()->setText(QString::fromStdString(sData));
}
void MasternodeManager::copyPubkey()
{
std::string sData;
int row;
QItemSelectionModel* selectionModel = ui->tableWidgetMasternodes->selectionModel();
QModelIndexList selectedRows = selectionModel->selectedRows();
if(selectedRows.count() == 0)
return;
for (int i = 0; i < selectedRows.count(); i++)
{
QModelIndex index = selectedRows.at(i);
row = index.row();
sData += ui->tableWidgetMasternodes->item(row, 5)->text().toStdString();
if (i < selectedRows.count()-1)
sData += "\n";
}
QApplication::clipboard()->setText(QString::fromStdString(sData));
} | [
"apollondeveloper@gmail.com"
] | apollondeveloper@gmail.com |
e688a2b4dbe3c27d947426660379f5864cdf8101 | 8b3825b8c30eaaf0a8dd3135eb3cab3deed738cd | /CMAKE_Add.cpp | 2394035e5e0831d640ea9af669beddf31385e9c6 | [] | no_license | sand-sea/hello_cmake | d74aa451e251b851ea189ffaf8b8a667b999e364 | 26f76bc6a16bd1eb3ed48c60a0a1a89bbe3a0be8 | refs/heads/master | 2023-01-14T03:18:55.031628 | 2020-11-18T03:24:08 | 2020-11-18T03:24:08 | 313,810,927 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 105 | cpp | #include <iostream>
int main()
{
int a = 0, b = 1;
using namespace std;
cout<<a+b<<endl;
return 0;
} | [
"hlb@git.com"
] | hlb@git.com |
7b44180f10c5baad164f300191f76604ce72027c | 6f74a7991f4da24be99a67489e55402b33e75d62 | /classes/game/item/DoubleBombItem.h | 54ac9003fcc56b0bd1e4a928e38a78e889758493 | [] | no_license | codemage128/unity-to-cocos2d-apk-clone | 73a73514ae1029b6710b93aeb139cec5c01a126d | c81b5367dc8a8312a90a3a4b9c94c9437f89d15a | refs/heads/master | 2023-08-03T06:26:41.345990 | 2020-07-23T12:57:18 | 2020-07-23T12:57:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,278 | h | #ifndef __ENGINE_DOUBLEBOMBITEM_H__
#define __ENGINE_DOUBLEBOMBITEM_H__
#include "../SpecialItem.h"
class DoubleBombItem: public BombItem, public IComboItem {
private:
std::vector<cocos2d::Node*>* _shakePanels;// GameObject[] _shakePanels;
public:
// ParticleSystem[] CloseParticles;
cocos2d::Sprite* GlowSprite=nullptr;
// Transform Shadow;
// GameObject MainContainer;
// ParticleSystem Sparks;
// ParticleSystem StarGlow;
protected:
MatchGroup* ComboMatchGroup=nullptr;
int ComboMergeScores=0;
std::vector<Cell*> _neigbours;
cocos2d::Vec2 _scorepos;
int _score = 0;
public:
void SetComboGroup(MatchGroup* mgroup) override { this->ComboMatchGroup = mgroup; }
bool CanBeCapturedByJelly() override { return false; }
void RemoveSelf() override;
void AddScore(int v) override { this->ComboMergeScores += v; }
ItemType GetItemType() override { return ItemType::DoubleBomb; }
int GetScore() override { return 1000 + this->ComboMergeScores; }
bool CanRaiseScore() override { return false; }
void OnBeforeRemove() override;
void AddShakeReferences(std::vector<cocos2d::Node*>* panels);
protected:
void OnExplodeSelf() override;
void PlayExplodeParticle() override;
/*IEnumerator*/void ExplodeCells() override;
};
#endif //__ENGINE_DOUBLEBOMBITEM_H__ | [
"futuredev1001@yandex.com"
] | futuredev1001@yandex.com |
835c4531ad059275fc06ad90f804e53d044e6b2d | de37567052063b952fb60149d29a1ff32acb8614 | /2021-6/2021-6-2-258.cpp | c3d9c042070d841e6f7ef0881d124b3955f1fe31 | [] | no_license | zlun-yan/leetcode | 317d12d4ea0d2fc43deab5b14e5a814405151b2f | 099904927e53abdcd0bf6df2f66f557c64744f36 | refs/heads/master | 2023-05-11T11:51:17.664764 | 2021-06-10T02:31:13 | 2021-06-10T02:31:13 | 369,766,958 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 916 | cpp | //
// Created by ZlunYan on 2021/6/2.
//
#include <iostream>
using namespace std;
// 对于一个数 asdf 我们这个函数要求的是 a + s + d + f
// 而这个数 asdf 实际上是这样求出来的 a * 1000+ s * 100 + d * 10+ f
// 那么对上面那个算式就可以分为: a * 999 + s * 99 + d * 9 + (a + s + d + f)
// 可以发现 a * 999 和 s * 99 和 d * 9 都是 9 的倍数, 也就是说 模9为0
// 最终模9求出来的就是 (a + s + d + f) % 9
// 能够被9整除的整数,各位上的数字加起来也必然能被9整除,所以,连续累加起来,最终必然就是9。
// 不能被9整除的整数,各位上的数字加起来,结果对9取模,和初始数对9取摸,是一样的,所以,连续累加起来,最终必然就是初始数对9取摸。
int addDigits(int num) {
return (num - 1) % 9 + 1;
}
int main () {
cout << addDigits(38) << endl;
return 0;
} | [
"842162085@qq.com"
] | 842162085@qq.com |
31dc23190efb0219adbf2a43bcd036d7bd397b9b | af2f5806cdb788749a9987a4294a8e270aab3ec8 | /Project/23_BomberMan/Class/PathManager.h | 8733dce905a6394bbe5d474dfaf7ef42bb9edbf6 | [] | no_license | pdpdds/SDLProgramming | 65f53bf7a7d28952780a06b4a1b80b4a80aeea95 | f69683aa41908f8f1b3b80b7076ca0e7908f59da | refs/heads/master | 2021-01-18T22:35:12.116696 | 2020-12-31T06:22:53 | 2020-12-31T06:22:53 | 37,397,842 | 12 | 13 | null | null | null | null | UTF-8 | C++ | false | false | 4,350 | h | #ifndef PATH_MANAGER_H
#define PATH_MANAGER_H
#pragma warning (disable:4786)
//-----------------------------------------------------------------------------
//
// Name: PathManager.h
//
// Author: Mat Buckland (www.ai-junkie.com)
//
// Desc: a template class to manage a number of graph searches, and to
// distribute the calculation of each search over several update-steps
//-----------------------------------------------------------------------------
#include <list>
#include <cassert>
#include <algorithm>
template <typename path_planner>
class PathManager
{
private:
//a container of all the active search requests
std::list<path_planner*> m_SearchRequests;
//this is the total number of search cycles allocated to the manager.
//Each update-step these are divided equally amongst all registered path
//requests
unsigned int m_iNumSearchCyclesPerUpdate;
public:
PathManager(unsigned int NumCyclesPerUpdate):m_iNumSearchCyclesPerUpdate(NumCyclesPerUpdate){}
//every time this is called the total amount of search cycles available will
//be shared out equally between all the active path requests. If a search
//completes successfully or fails the method will notify the relevant bot
void UpdateSearches();
//a path planner should call this method to register a search with the
//manager. (The method checks to ensure the path planner is only registered
//once)
void Register(path_planner* pPathPlanner);
void UnRegister(path_planner* pPathPlanner);
//returns the amount of path requests currently active.
int GetNumActiveSearches()const{return m_SearchRequests.size();}
};
///////////////////////////////////////////////////////////////////////////////
//------------------------- UpdateSearches ------------------------------------
//
// This method iterates through all the active path planning requests
// updating their searches until the user specified total number of search
// cycles has been satisfied.
//
// If a path is found or the search is unsuccessful the relevant agent is
// notified accordingly by Telegram
//-----------------------------------------------------------------------------
template <typename path_planner>
inline void PathManager<path_planner>::UpdateSearches()
{
int NumCyclesRemaining = m_iNumSearchCyclesPerUpdate;
//iterate through the search requests until either all requests have been
//fulfilled or there are no search cycles remaining for this update-step.
typename std::list<path_planner*>::iterator curPath = m_SearchRequests.begin();
while (NumCyclesRemaining-- && !m_SearchRequests.empty())
{
//make one search cycle of this path request
int result = (*curPath)->CycleOnce();
//if the search has terminated remove from the list
if ( (result == target_found) || (result == target_not_found) )
{
//remove this path from the path list
curPath = m_SearchRequests.erase(curPath);
}
//move on to the next
else
{
++curPath;
}
//the iterator may now be pointing to the end of the list. If this is so,
// it must be reset to the beginning.
if (curPath == m_SearchRequests.end())
{
curPath = m_SearchRequests.begin();
}
}//end while
}
//--------------------------- Register ----------------------------------------
//
// this is called to register a search with the manager.
//-----------------------------------------------------------------------------
template <typename path_planner>
inline void PathManager<path_planner>::Register(path_planner* pPathPlanner)
{
//make sure the bot does not already have a current search in the queue
if(std::find(m_SearchRequests.begin(),
m_SearchRequests.end(),
pPathPlanner) == m_SearchRequests.end())
{
//add to the list
m_SearchRequests.push_back(pPathPlanner);
}
}
//----------------------------- UnRegister ------------------------------------
//-----------------------------------------------------------------------------
template <typename path_planner>
inline void PathManager<path_planner>::UnRegister(path_planner* pPathPlanner)
{
m_SearchRequests.remove(pPathPlanner);
}
#endif | [
"juhang3@daum.net"
] | juhang3@daum.net |
c5f9d111057c11016d944c4b91a59b74c8b9880b | 2edc8f86d8971d07f4cbf10072a44cf43170b17a | /unknown/src/practice/20061213/after/nya/panic.cc | a2d656d936726bccb65122aef3121b29e70b15c1 | [] | no_license | nya3jp/icpc | b9527da381d6f9cead905b540541f03505eb79c3 | deb82dcdece5815e404f5ea33956d52a57e67158 | refs/heads/master | 2021-01-20T10:41:22.834961 | 2012-10-25T11:11:54 | 2012-10-25T11:19:37 | 4,337,683 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,450 | cc | #include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
#define REP(i,n) for(int i = 0; i < (int)(n); i++)
#define N 20
int adj[N][N];
int ints;
inline bool at(int bits, int pos) {
return ((bits & (1<<pos)) != 0);
}
void solve() {
int nRooms, iPanicRoom;
cin >> nRooms >> iPanicRoom;
REP(i, nRooms) REP(j, nRooms)
adj[i][j] = 0;
ints = 0;
REP(iRoom, nRooms) {
string intruder;
cin >> intruder;
if (intruder == "I")
ints |= 1<<iRoom;
int nDoors;
cin >> nDoors;
REP(i, nDoors) {
int iNextRoom;
cin >> iNextRoom;
adj[iRoom][iNextRoom]++;
}
}
const int IMPOSSIBLE = 10000000;
int res = IMPOSSIBLE;
REP(secure, 1<<nRooms) {
if (at(secure, iPanicRoom) && ((secure & ints) == 0)) {
int local = 0;
REP(i, nRooms) REP(j, nRooms) {
if (!at(secure, i) && at(secure, j)) {
if (adj[i][j] > 0)
local = IMPOSSIBLE;
local += adj[j][i];
}
}
res <?= local;
}
}
if (res == IMPOSSIBLE) {
cout << "PANIC ROOM BREACH" << endl;
}
else {
cout << res << endl;
}
}
int main() {
int nCases;
cin >> nCases;
while(nCases-- > 0)
solve();
return 0;
}
| [
"takahashi.shuhei@gmail.com"
] | takahashi.shuhei@gmail.com |
eca5cd872e45f167b3e5798a7048bd4814df7143 | 9b7197187ff4beb4efdab509502ee0a2b99672db | /C++_Solutions/Problems/ACM/Berkeley 2017/8.cc | ff0a4e6dd85221624923475ca43780670f7bdb81 | [] | no_license | j316chuck/Competitive-Programming | 0c0dfede3e9cbd435301b2b3de7b19cdfff6888f | eabf4d32590fcc423b5a0dab9cdc23ba85fae79f | refs/heads/master | 2020-05-23T07:54:23.806710 | 2018-06-01T03:04:14 | 2018-06-01T03:04:14 | 80,460,910 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,164 | cc | #include <cstdlib>
#include <cstdio>
#include <climits>
#include <stdarg.h>
#include <cstring>
#include <iostream>
#include <cctype>
#include <string>
#include <sstream>
#include <vector>
#include <list>
#include <stack>
#include <queue>
#include <map>
#include <set>
#include <bitset>
#include <algorithm>
#include <cmath>
#include <unordered_map>
#include <unordered_set>
using namespace std;
const int maxn = 48;
short dp[maxn][maxn][maxn][maxn];
int n, m, r, c, t;
int dfs(int r1, int r2, int c1, int c2) {
/*if (r1 > r || r2 < r || c1 > r || c2 < r) {
return -1;
}*/
if (dp[r1][r2][c1][c2] != -1) {
//cout << "DP: " << dp[r1][r2][c1][c2] << " r1: " << r1 << " r2: " << r2 << " c1: " << c1 << " c2: " << c2 << endl;
return dp[r1][r2][c1][c2];
}
dp[r1][r2][c1][c2] = 0;
for (int i = r - 1; i >= r1; i--) {
if (!dfs(i + 1, r2, c1, c2)) {
//cout << "DP: " << 1 << " r1: " << r1 << " r2: " << r2 << " c1: " << c1 << " c2: " << c2 << endl;
return dp[r1][r2][c1][c2] = 1;
}
}
for (int i = r + 1; i <= r2; i++) {
if (!dfs(r1, i - 1, c1, c2)) {
//cout << "DP: " << 1 << " r1: " << r1 << " r2: " << r2 << " c1: " << c1 << " c2: " << c2 << endl;
return dp[r1][r2][c1][c2] = 1;
}
}
for (int i = c - 1; i >= c1; i--) {
if (!dfs(r1, r2, i + 1, c2)) {
//cout << "DP: " << 1 << " r1: " << r1 << " r2: " << r2 << " c1: " << c1 << " c2: " << c2 << endl;
return dp[r1][r2][c1][c2] = 1;
}
}
for (int i = c + 1; i <= c2; i++) {
if (!dfs(r1, r2, c1, i - 1)) {
dp[r1][r2][c1][c2] = 1;
}
}
return dp[r1][r2][c1][c2];
}
int main() {
//freopen("input.in", "r", stdin);
//freopen("output.out", "w", stdout);
cin >> t;
for (int i = 0; i < t; i++) {
cin >> n >> m >> r >> c;
memset(dp, -1, sizeof(dp));
dp[r][r][c][c] = 0;
if (dfs(0, n - 1, 0, m - 1)) {
cout << "Bob" << endl;
} else {
cout << "Alice" << endl;
}
//cout << endl << endl;
}
return 0;
}
| [
"chuck.tang98@gmail.com"
] | chuck.tang98@gmail.com |
585fbbfc34936fc17e8c606810566f68caed5fb6 | 54998e998ead341b57bb530d06dea849b6d86ebd | /AC/P3956.cpp | 415ca0687871a254f7c48f861d05d7ff86312d18 | [] | no_license | Jyf624761709/Luogu | 5c6fd5b4c5cad8ddbce29ac2241d5026ca76d314 | 04ecd892f7c0743b2ad2aa98339e92f70017427f | refs/heads/master | 2020-03-19T06:37:22.470354 | 2018-06-04T14:39:16 | 2018-06-04T14:39:16 | 136,039,683 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,615 | cpp | #include<cstdio>
#include<iostream>
#include<algorithm>
#include<cstring>
#include<queue>
#include<map>
const int inf=2147483647;
const int ine=-2147482647;
using namespace std;
#define in(t) freopen("t.in","r",stdin)
#define out(t) freopen("t.out","w",stdout)
#define me(a) memset(a,-1,sizeof(a))
//inline
//register
typedef long long ll;
int m,n,mp[102][102],f[102][102];
template <typename _Tp>
inline void read(_Tp &x){
int w=1;char c=0;x=0;
while (c^'-'&&(c<'0'||c>'9')) c=getchar();
if (c=='-') w=-1, c=getchar();
while(c>='0'&&c<='9') x=(x<<1)+(x<<3)+c-'0',c=getchar();
x*=w;
}
void dfs(int i,int j,int k,bool ok){
f[i][j]=k;
if(i==m&&j==m)
return;
int t=mp[i][j];
if(i-1>0){
if(mp[i-1][j]==t)
if(f[i-1][j]>k)
dfs(i-1,j,k,1);
if(mp[i-1][j]!=-1&&mp[i-1][j]!=t)
if(f[i-1][j]>k+1)
dfs(i-1,j,k+1,1);
if(mp[i-1][j]==-1&&ok)
if(f[i-1][j]>k+2){
mp[i-1][j]=t;
dfs(i-1,j,k+2,0);
mp[i-1][j]=-1;
}
}
if(j-1>0){
if(mp[i][j-1]==t)
if(f[i][j-1]>k)
dfs(i,j-1,k,1);
if(mp[i][j-1]!=-1&&mp[i][j-1]!=t)
if(f[i][j-1]>k+1)
dfs(i,j-1,k+1,1);
if(mp[i][j-1]==-1&&ok)
if(f[i][j-1]>k+2){
mp[i][j-1]=t;
dfs(i,j-1,k+2,0);
mp[i][j-1]=-1;
}
}
if(j+1<=m){
if(mp[i][j+1]==t)
if(f[i][j+1]>k)
dfs(i,j+1,k,1);
if(mp[i][j+1]!=-1&&mp[i][j+1]!=t)
if(f[i][j+1]>k+1)
dfs(i,j+1,k+1,1);
if(mp[i][j+1]==-1&&ok)
if(f[i][j+1]>k+2){
mp[i][j+1]=t;
dfs(i,j+1,k+2,0);
mp[i][j+1]=-1;
}
}
if(i+1<=m){
if(mp[i+1][j]==t)
if(f[i+1][j]>k)
dfs(i+1,j,k,1);
if(mp[i+1][j]!=-1&&mp[i+1][j]!=t)
if(f[i+1][j]>k+1)
dfs(i+1,j,k+1,1);
if(mp[i+1][j]==-1&&ok)
if(f[i+1][j]>k+2){
mp[i+1][j]=t;
dfs(i+1,j,k+2,0);
mp[i+1][j]=-1;
}
}
}
int main(){
me(mp);
read(m);read(n);
for(register int i=1;i<=m;++i)
for(register int j=1;j<=m;++j)
f[i][j]=inf;
int x,y,c;
for(register int i=1;i<=n;++i){
read(x);read(y);read(c);
mp[x][y]=c;
}
dfs(1,1,0,1);
if(f[m][m]<inf)
printf("%d",f[m][m]);
else
printf("-1");
return 0;
}
| [
"39914137+Jyf624761709@users.noreply.github.com"
] | 39914137+Jyf624761709@users.noreply.github.com |
041218f151950fb8932c8b2ded8c7c312195e58b | 8ec4b24e26e8da172187d0924e129652c3b3c2bc | /Andreeva_smo/request.cpp | 9f711fa64a287359bc5c1391dbbf22f97264bd05 | [] | no_license | eliizaveta/SMO | d5ee4f2fe24232d6e2e4003badc340b2b983fee5 | 6153ba41264d087b87c868b53b742c93cebda813 | refs/heads/main | 2023-01-28T11:16:40.609132 | 2020-12-11T18:10:44 | 2020-12-11T18:10:44 | 317,992,947 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 611 | cpp | #include "request.h"
Andreeva_smo::Request::Request() {
this->waitTime = 0.0;
this->sourceNum = 0;
this->requestNum = 0;
}
Andreeva_smo::Request::Request(float waitTime, int sourceNum, int requestNum) {
this->waitTime = waitTime;
this->sourceNum = sourceNum;
this->requestNum = requestNum;
}
float Andreeva_smo::Request::getWaitTime() const { return waitTime; }
int Andreeva_smo::Request::getSourceNum() const { return sourceNum; }
int Andreeva_smo::Request::getRequestNum() const { return requestNum; }
void Andreeva_smo::Request::setWaitTime(float value) { waitTime = value; }
| [
"lizand2000@yandex.ru"
] | lizand2000@yandex.ru |
071887238bff2474e3196ddb74af99dc829c378b | 12bde528e9fdae91a3eb29048761946afdd9c393 | /Chapter 02/Node_Chain/main.cpp | 1f1e62b40d8f429a4d08fe4f2bdf54d6f192ed40 | [] | no_license | alvarohenriquecz/Algorithms_C-Plus-Plus_Part1 | 9b58aa497b63c65d9be55d0a6642c109f86c32d9 | 4f0db1fb8dd4cef8c800952bcad862f0bc53a802 | refs/heads/master | 2022-11-14T08:39:41.954377 | 2020-07-04T03:25:21 | 2020-07-04T03:25:21 | 274,179,658 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,276 | cpp | // Project: Node_Chain.cbp
// File : main.cpp
#include <iostream>
using namespace std;
class Node
{
public:
int Value;
Node * Next;
};
void PrintNode(Node * node)
{
// It will print the initial node
// until it finds NULL for the NEXT pointer
// that indicate the end of the Node Chain
while(node != NULL)
{
cout << node->Value << "->";
node = node->Next;
}
cout << "NULL" << endl;
}
int main()
{
// +------+------+
// | 7 | NULL |
// +------+------+
Node * node1 = new Node;
node1->Value = 7;
// +------+------+
// | 14 | NULL |
// +------+------+
Node * node2 = new Node;
node2->Value = 14;
// +------+------+
// | 21 | NULL |
// +------+------+
Node * node3 = new Node;
node3->Value = 21;
// +------+------+ +------+------+ +------+------+
// | 7 | +---->| 14 | NULL | | 21 | NULL |
// +------+------+ +------+------+ +------+------+
node1->Next = node2;
// +------+------+ +------+------+ +------+------+
// | 7 | +---->| 14 | +---->| 21 | NULL |
// +------+------+ +------+------+ +------+------+
node2->Next = node3;
// Print the node
PrintNode(node1);
return 0;
} | [
"alvarohenriquecz@gmail.com"
] | alvarohenriquecz@gmail.com |
dabc7d3a2385f218a290d9162d2c5327876f7359 | 4f9228f2aef6b8ce6f54487c26b42a7980d49ded | /test.cpp | 3a3fd665b05d0ff729f4def945f9d476de64fa72 | [
"MIT"
] | permissive | mariokonrad/subprocess | bffcd1253c0fab51437430f5cfa7704817123e3a | 8bd1ed76297d2465c57ed64c9f272078cbd32866 | refs/heads/master | 2020-12-22T14:19:27.723717 | 2016-05-29T21:38:31 | 2016-05-29T21:38:31 | 59,964,045 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,189 | cpp | #include "subprocess.hpp"
#include <algorithm>
#include <iostream>
#include <sstream>
#include <iterator>
#define CATCH_CONFIG_MAIN
#include "catch.hpp"
TEST_CASE("single", "")
{
utils::subprocess p{{"ls", "-a", "subprocess.hpp"}};
std::ostringstream os;
p.exec();
p.out() >> std::noskipws;
std::copy(std::istream_iterator<char>{p.out()}, std::istream_iterator<char>{},
std::ostream_iterator<char>{os});
p.wait();
REQUIRE("subprocess.hpp\n" == os.str());
}
TEST_CASE("single_repeated_execution_failure", "")
{
utils::subprocess p{{"ls", "-a", "subprocess.hpp"}};
std::ostringstream os;
p.exec();
REQUIRE_THROWS(p.exec());
p.out() >> std::noskipws;
std::copy(std::istream_iterator<char>{p.out()}, std::istream_iterator<char>{},
std::ostream_iterator<char>{os});
p.wait();
REQUIRE("subprocess.hpp\n" == os.str());
}
TEST_CASE("single_repeated_execution", "")
{
utils::subprocess p{{"ls", "-a", "subprocess.hpp"}};
std::ostringstream os0;
p.exec();
p.out() >> std::noskipws;
std::copy(std::istream_iterator<char>{p.out()}, std::istream_iterator<char>{},
std::ostream_iterator<char>{os0});
p.wait();
REQUIRE("subprocess.hpp\n" == os0.str());
std::ostringstream os1;
p.exec();
p.out() >> std::noskipws;
std::copy(std::istream_iterator<char>{p.out()}, std::istream_iterator<char>{},
std::ostream_iterator<char>{os1});
p.wait();
REQUIRE("subprocess.hpp\n" == os1.str());
}
TEST_CASE("two_subprocesses_exec", "")
{
utils::subprocess p0{{"cat"}};
utils::subprocess p1{{"sort", "-r"}};
p0.exec(p1.exec());
p0.in() << "a"
<< "\n"
<< "b"
<< "\n"
<< "c"
<< "\n";
p0.close_in();
p0.out() >> std::noskipws;
std::copy(std::istream_iterator<char>{p0.out()}, std::istream_iterator<char>{},
std::ostream_iterator<char>{p1.in()});
std::ostringstream os;
p1.out() >> std::noskipws;
std::copy(std::istream_iterator<char>{p1.out()}, std::istream_iterator<char>{},
std::ostream_iterator<char>{os});
p1.wait();
REQUIRE("c\nb\na\n" == os.str());
}
TEST_CASE("two_subprocesses_stream", "")
{
utils::subprocess p0{{"cat"}};
utils::subprocess p1{{"sort", "-r"}};
p0 >> p1;
p0.in() << "a"
<< "\n"
<< "b"
<< "\n"
<< "c"
<< "\n";
p0.close_in();
p0.out() >> std::noskipws;
std::copy(std::istream_iterator<char>{p0.out()}, std::istream_iterator<char>{},
std::ostream_iterator<char>{p1.in()});
std::ostringstream os;
p1.out() >> std::noskipws;
std::copy(std::istream_iterator<char>{p1.out()}, std::istream_iterator<char>{},
std::ostream_iterator<char>{os});
p1.wait();
REQUIRE("c\nb\na\n" == os.str());
}
TEST_CASE("two_subprocesses_function_operator", "")
{
utils::subprocess p0{{"cat"}};
utils::subprocess p1{{"sort", "-r"}};
p0(p1());
p0.in() << "a"
<< "\n"
<< "b"
<< "\n"
<< "c"
<< "\n";
p0.close_in();
p0.out() >> std::noskipws;
std::copy(std::istream_iterator<char>{p0.out()}, std::istream_iterator<char>{},
std::ostream_iterator<char>{p1.in()});
std::ostringstream os;
p1.out() >> std::noskipws;
std::copy(std::istream_iterator<char>{p1.out()}, std::istream_iterator<char>{},
std::ostream_iterator<char>{os});
p1.wait();
REQUIRE("c\nb\na\n" == os.str());
}
| [
"mario.konrad@gmx.net"
] | mario.konrad@gmx.net |
86a5d36dc61458bec4b5adb90f3668d1b2318688 | 8fe1d3a1ab8de1d763579f7c585cfa65d1b32855 | /Upsolving/AtCoder/B049/codes/C.cpp | af54a60e4da5f658be0a9706ba7e853349444c10 | [] | no_license | edsomjr/TEP | 1920655075227e335e85741e2bbc2845177cf76e | f5885e1089ea9371777805b742ae22b4d67c8c48 | refs/heads/master | 2023-07-19T14:25:11.132962 | 2023-07-07T22:04:28 | 2023-07-07T22:04:28 | 63,184,807 | 389 | 178 | null | 2023-09-13T16:05:58 | 2016-07-12T18:57:19 | TeX | UTF-8 | C++ | false | false | 702 | cpp | #include <bits/stdc++.h>
using namespace std;
vector<pair<string, size_t>> words {
{ "dream", 5 }, { "dreamer", 7 }, { "erase", 5 }, { "eraser", 6 } };
bool solve(string& s)
{
while (not s.empty())
{
bool ok = false;
for (auto [w, size] : words)
{
if (size <= s.size() and s.substr(s.size() - size) == w)
{
ok = true;
while (size--)
s.pop_back();
}
}
if (not ok)
return false;
}
return true;
}
int main()
{
ios::sync_with_stdio(false);
string s;
cin >> s;
cout << (solve(s) ? "YES" : "NO") << '\n';
return 0;
}
| [
"edsomjr@gmail.com"
] | edsomjr@gmail.com |
e3ac88d4299940a722ba44ef24d944e34b377ac1 | 9ed0524a83e769c647052485edd734e884f94aa5 | /5일차-Running Game/Engine/Animation.cpp | cf9c8d390762b427137d2247cfc8c75b12a30f57 | [] | no_license | cometj03/Game-Programming-2020 | cab79dc38c6679540632815531a9ce0458cdeae5 | f07b5cfcca3970df7b0d830c65c58643e258fb8b | refs/heads/master | 2022-12-07T07:23:42.032066 | 2020-08-19T06:51:53 | 2020-08-19T06:51:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 975 | cpp | #include "stdafx.h"
#include "Animation.h"
Animation::Animation(int fps) {
this->fps = fps;
maxFrame = 0;
currentFrame = 0;
timeChecker = 0;
height = 0;
width = 0;
color = D3DCOLOR_ARGB(255, 255, 255, 255);
}
Animation::~Animation() {
for (auto& sprite : spriteVector) {
SAFE_DELETE(sprite);
}
}
void Animation::Render() {
Object::Render();
if (maxFrame > 0) {
spriteVector[currentFrame]->setColor(color);
spriteVector[currentFrame]->Render();
}
}
void Animation::Update(float dTime) {
timeChecker += dTime;
if (timeChecker > 1.f / fps) {
timeChecker = 0;
currentFrame++;
if (currentFrame == maxFrame) {
currentFrame = 0;
}
}
}
void Animation::AddFrame(const char* path) {
spriteVector.push_back(new Sprite(path));
AddChild(spriteVector[maxFrame]);
if (maxFrame == 0) {
rect = spriteVector[maxFrame]->getRect();
width = spriteVector[maxFrame]->getWidth();
height = spriteVector[maxFrame]->getHeight();
}
maxFrame++;
} | [
"harryjung1001@gmail.com"
] | harryjung1001@gmail.com |
6bc9d8c0e8540804dff691c8a6126076428fade6 | 69b7796d276703936b8ae0fe82cb931d704ed432 | /api/src/globalGPUCount.cpp | a4b92c585a69baed55542454dc8ab41949b6b81c | [] | no_license | owensgroup/dcgn | 6038bfa1815baea6e89c97c957c6f3a4e6e7545d | d5cadbeacb4223775e8ccc87dbae346724bee214 | refs/heads/master | 2021-05-29T14:45:48.439038 | 2011-03-21T22:55:41 | 2011-03-21T22:55:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 157 | cpp | #include <dcgn/dcgn.h>
#include <dcgn/MPIWorker.h>
namespace dcgn
{
int globalGPUCount()
{
return mpiWorker->getGlobalGPUCount();
}
}
| [
"cpunerd@gmail.com@0566f383-6757-26d6-4a9c-121651c89c67"
] | cpunerd@gmail.com@0566f383-6757-26d6-4a9c-121651c89c67 |
3a3bc2d960ed70e79385a9d91ced8d50332d4334 | f82afd39a9087ec6df0334d8b7e7be7314111782 | /2sem/task2/5/main.cpp | e02cc20eb9e0fdcb2d1c3bdf36e188fec3c61a49 | [] | no_license | NTWay/study | 34e2be62b120cb26622596bee6b7ae01ade674c4 | 64b07e718fd84229d590eea115a2275332bfee83 | refs/heads/master | 2022-01-10T07:23:02.297617 | 2019-03-30T14:38:05 | 2019-03-30T14:38:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,113 | cpp | #include <fstream>
#include <iostream>
#include <cassert>
#include <unordered_set>
/******************************************************************************/
typedef unsigned char uc;
typedef unsigned long long ull;
using std::string;
using std::min;
using std::unordered_set;
const int INF = 2147483647;
const ull GOAL = 1147797409030816545;
/******************************************************************************/
struct State {
inline State();
inline State(const State &state);
inline State &operator=(const State &state);
inline State up() const;
inline State down() const;
inline State left() const;
inline State right() const;
// Returns heuristic (Linear conflict)
int heuristic() const;
// Returns true if goal may be achieved from this state
bool isSolvable() const;
// Returns true if state is goal
bool isGoal() const;
// Sets plate
inline void setAt(int place, uc value);
// Gets plate
inline uc getAt(int place) const;
// Stores info about state. 4 bits per one plate
ull data;
// Stores position of empty plate
int nullPos;
// Stores path to current state
string path;
};
/******************************************************************************/
const ull AntiMasks[] = {
0xFFFFFFFFFFFFFFF0, 0xFFFFFFFFFFFFFF0F, 0xFFFFFFFFFFFFF0FF,
0xFFFFFFFFFFFF0FFF, 0xFFFFFFFFFFF0FFFF, 0xFFFFFFFFFF0FFFFF,
0xFFFFFFFFF0FFFFFF, 0xFFFFFFFF0FFFFFFF, 0xFFFFFFF0FFFFFFFF,
0xFFFFFF0FFFFFFFFF, 0xFFFFF0FFFFFFFFFF, 0xFFFF0FFFFFFFFFFF,
0xFFF0FFFFFFFFFFFF, 0xFF0FFFFFFFFFFFFF, 0xF0FFFFFFFFFFFFFF,
0x0FFFFFFFFFFFFFFF
};
const ull Masks[] = {
0x000000000000000F, 0x00000000000000F0, 0x0000000000000F00,
0x000000000000F000, 0x00000000000F0000, 0x0000000000F00000,
0x000000000F000000, 0x00000000F0000000, 0x0000000F00000000,
0x000000F000000000, 0x00000F0000000000, 0x0000F00000000000,
0x000F000000000000, 0x00F0000000000000, 0x0F00000000000000,
0xF000000000000000
};
/******************************************************************************/
// Function object of IDA* algorithm
class IDAStar {
public:
// Returns minimal path to goal
string operator()(const State &start) {
// Limit of search
int limit = start.heuristic();
ans_ = "";
while (ans_ == "") {
visited_.emplace(start.data);
newLimit_ = INF;
search(start, limit, 1);
limit = newLimit_;
visited_.clear();
}
return ans_;
}
private:
// Expands state. Returns true if goal is achieved and false otherwise
// g is length of the path to the current state
bool visit(const State &state, int limit, int g) {
// Stop search in current branch if goal was achieved
if (state.isGoal()) {
if (ans_ == "" || state.path.size() < ans_.size())
ans_ = state.path;
return true;
}
// If state was not used before
if (visited_.find(state.data) == visited_.end()) {
// Visiting it or stopping search if it's further than limit
// Supposed distance to node
int f = g + state.heuristic();
if (f <= limit) {
// Recursively launching search
visited_.emplace(state.data);
search(state, limit, g + 1);
visited_.erase(state.data);
} else {
// Updating limit
newLimit_ = min(newLimit_, f);
}
}
return false;
}
void search(const State &state, int limit, int g) {
// Expanding any possible state. Stopping search in
// current branch if goal was achieved
if (state.nullPos >= 4)
if (visit(state.up(), limit, g))
return;
if (state.nullPos <= 11)
if (visit(state.down(), limit, g))
return;
if (state.nullPos % 4 != 0)
if (visit(state.left(), limit, g))
return;
if (state.nullPos % 4 != 3)
if (visit(state.right(), limit, g))
return;
}
// Used for updating limit
int newLimit_;
// Stores visited in current path states
unordered_set<ull> visited_;
// Stores answer if it was found or empty string otherwise
string ans_;
};
/******************************************************************************/
int main() {
// Setting initial state
State start;
for (int i = 0; i < 16; i++) {
int x;
scanf("%d", &x);
if (x == 0)
start.nullPos = i;
start.setAt(i, static_cast<uc>(x));
}
if (start.isGoal()) {
// If it is goal IDA* will not be launched
printf("%d", 0);
} else if (start.isSolvable()) {
// Launching IDA* if initial state is solvable
IDAStar ida;
string ans = ida(start);
printf("%lu\n%s", ans.size(), ans.c_str());
} else {
// Printing -1 if it is not solvable
printf("%d", -1);
}
return 0;
}
/****************************STATE*********************************************/
State::State() :
data(0),
path("") {}
State::State(const State &state) :
data(state.data),
nullPos(state.nullPos),
path(state.path) {}
void State::setAt(int place, uc value)
{
data = (data & AntiMasks[place]) |
(static_cast<ull>(value) << (place << 2));
}
uc State::getAt(int place) const
{
return static_cast<uc>((data & Masks[place]) >> (place << 2));
}
State State::up() const
{
assert(nullPos >= 4);
State result(*this);
int trg = nullPos - 4;
uc c = getAt(trg);
result.setAt(trg, 0);
result.setAt(nullPos, c);
result.nullPos = trg;
result.path += 'D';
assert(result.path.size() != 0);
return result;
}
State State::down() const
{
assert(nullPos <= 11);
State result(*this);
int trg = nullPos + 4;
uc c = getAt(trg);
result.setAt(trg, 0);
result.setAt(nullPos, c);
result.nullPos = trg;
result.path += 'U';
assert(result.path.size() != 0);
return result;
}
State State::left() const
{
assert(nullPos % 4 != 0);
State result(*this);
int trg = nullPos - 1;
uc c = getAt(trg);
result.setAt(trg, 0);
result.setAt(nullPos, c);
result.nullPos = trg;
result.path += 'R';
assert(result.path.size() != 0);
return result;
}
State State::right() const
{
assert(nullPos % 4 != 3);
State result(*this);
int trg = nullPos + 1;
uc c = getAt(trg);
result.setAt(trg, 0);
result.setAt(nullPos, c);
result.nullPos = trg;
result.path += 'L';
assert(result.path.size() != 0);
return result;
}
int State::heuristic() const
{
int heuristic = 0;
for (int i = 0; i < 16; i++) {
if (getAt(i) == 0)
continue;
heuristic += abs(i % 4 - (getAt(i) - 1) % 4)
+ abs(i / 4 - (getAt(i) - 1) / 4);
}
for (int i = 0; i < 4; i++)
for (int j = 0; j < 4; j++)
for (int k = j + 1; k < 4; k++) {
int jp = 4 * i + j;
int kp = 4 * i + k;
int jg = getAt(jp) - 1;
int kg = getAt(kp) - 1;
if (jp != nullPos && kp != nullPos
&& jg / 4 == i && kg / 4 == i && jg > kg) {
heuristic += 2;
}
}
return heuristic;
}
bool State::isSolvable() const
{
int inversions = 0;
for (int i = 0; i < 16; i++)
for (int j = i + 1; j < 16; j++)
if (getAt(i) != 0 && getAt(j) != 0 && getAt(i) > getAt(j))
inversions++;
return (inversions % 2 == 0) == (nullPos / 4 % 2 == 1);
}
bool State::isGoal() const
{
return data == GOAL;
}
State &State::operator=(const State &state)
{
data = state.data;
nullPos = state.nullPos;
path = state.path;
return *this;
} | [
"valentiay@yndex.ru"
] | valentiay@yndex.ru |
f0b54055bde9ca2cb55244bef4c452b44e583601 | fa4acf2d045779a8bf1c4d76836b8a873aed2108 | /src/fmgen/opna.cpp | f7aafdf2682057e792fb3ff088f41268d7b212f3 | [] | no_license | toyoshim/quasi88nc | 6b7942433a1b7d705054934d442c3838f451e9b7 | 1c702749e36ed478ae6d46092744c96a6246f34c | refs/heads/master | 2021-01-13T02:05:47.641082 | 2012-07-25T16:47:27 | 2012-07-25T16:47:27 | 13,995,813 | 1 | 0 | null | null | null | null | EUC-JP | C++ | false | false | 43,006 | cpp | // ---------------------------------------------------------------------------
// OPN/A/B interface with ADPCM support
// Copyright (C) cisc 1998, 2001.
// ---------------------------------------------------------------------------
// $Id: opna.cpp,v 1.68 2003/06/12 14:03:44 cisc Exp $
#include "headers.h"
#include "misc.h"
#include "opna.h"
#include "fmgeninl.h"
// forQUASI88
extern "C" {
#include <stdio.h>
#include "quasi88.h"
#include "file-op.h"
}
#define BUILD_OPN
#define BUILD_OPNA
#define BUILD_OPNB
// TOFIX:
// OPN ch3 が常にPrepareの対象となってしまう障害
// ---------------------------------------------------------------------------
// OPNA: ADPCM データの格納方式の違い (8bit/1bit) をエミュレートしない
// このオプションを有効にすると ADPCM メモリへのアクセス(特に 8bit モード)が
// 多少軽くなるかも
//
#define NO_BITTYPE_EMULATION // comment in for QUASI88
#ifdef BUILD_OPNA
//#include "file.h" // comment out for QUASI88
#endif
namespace FM
{
// ---------------------------------------------------------------------------
// OPNBase
#if defined(BUILD_OPN) || defined(BUILD_OPNA) || defined (BUILD_OPNB)
uint32 OPNBase::lfotable[8]; // OPNA/B 用
OPNBase::OPNBase()
{
prescale = 0;
}
// パラメータセット
void OPNBase::SetParameter(Channel4* ch, uint addr, uint data)
{
const static uint slottable[4] = { 0, 2, 1, 3 };
const static uint8 sltable[16] =
{
0, 4, 8, 12, 16, 20, 24, 28,
32, 36, 40, 44, 48, 52, 56, 124,
};
if ((addr & 3) < 3)
{
uint slot = slottable[(addr >> 2) & 3];
Operator* op = &ch->op[slot];
switch ((addr >> 4) & 15)
{
case 3: // 30-3E DT/MULTI
op->SetDT((data >> 4) & 0x07);
op->SetMULTI(data & 0x0f);
break;
case 4: // 40-4E TL
op->SetTL(data & 0x7f, (regtc & 0x80) && (csmch == ch));
break;
case 5: // 50-5E KS/AR
op->SetKS((data >> 6) & 3);
op->SetAR((data & 0x1f) * 2);
break;
case 6: // 60-6E DR/AMON
op->SetDR((data & 0x1f) * 2);
op->SetAMON((data & 0x80) != 0);
break;
case 7: // 70-7E SR
op->SetSR((data & 0x1f) * 2);
break;
case 8: // 80-8E SL/RR
op->SetSL(sltable[(data >> 4) & 15]);
op->SetRR((data & 0x0f) * 4 + 2);
break;
case 9: // 90-9E SSG-EC
op->SetSSGEC(data & 0x0f);
break;
}
}
}
// リセット
void OPNBase::Reset()
{
status = 0;
SetPrescaler(0);
Timer::Reset();
psg.Reset();
}
// プリスケーラ設定
void OPNBase::SetPrescaler(uint p)
{
static const char table[3][2] = { { 6, 4 }, { 3, 2 }, { 2, 1 } };
static const uint8 table2[8] = { 108, 77, 71, 67, 62, 44, 8, 5 };
// 512
if (prescale != p)
{
prescale = p;
assert(0 <= prescale && prescale < 3);
uint fmclock = clock / table[p][0] / 12;
rate = psgrate;
// 合成周波数と出力周波数の比
assert(fmclock < (0x80000000 >> FM_RATIOBITS));
uint ratio = ((fmclock << FM_RATIOBITS) + rate/2) / rate;
SetTimerBase(fmclock);
// MakeTimeTable(ratio);
chip.SetRatio(ratio);
psg.SetClock(clock / table[p][1], psgrate);
for (int i=0; i<8; i++)
{
lfotable[i] = (ratio << (2+FM_LFOCBITS-FM_RATIOBITS)) / table2[i];
}
}
}
// 初期化
bool OPNBase::Init(uint c, uint r)
{
clock = c;
psgrate = r;
return true;
}
// 音量設定
void OPNBase::SetVolumeFM(int db)
{
db = Min(db, 20);
if (db > -192)
fmvolume = int(16384.0 * pow(10.0, db / 40.0));
else
fmvolume = 0;
}
// タイマー時間処理
void OPNBase::TimerA()
{
if (regtc & 0x80)
{
csmch->KeyControl(0x00);
csmch->KeyControl(0x0f);
}
}
#endif // defined(BUILD_OPN) || defined(BUILD_OPNA) || defined (BUILD_OPNB)
// ---------------------------------------------------------------------------
// YM2203
//
#ifdef BUILD_OPN
OPN::OPN()
{
SetVolumeFM(0);
SetVolumePSG(0);
csmch = &ch[2];
for (int i=0; i<3; i++)
{
ch[i].SetChip(&chip);
ch[i].SetType(typeN);
}
}
// 初期化
bool OPN::Init(uint c, uint r, bool ip, const char*)
{
if (!SetRate(c, r, ip))
return false;
Reset();
SetVolumeFM(0);
SetVolumePSG(0);
SetChannelMask(0);
return true;
}
// サンプリングレート変更
bool OPN::SetRate(uint c, uint r, bool)
{
OPNBase::Init(c, r);
RebuildTimeTable();
return true;
}
// リセット
void OPN::Reset()
{
int i;
for (i=0x20; i<0x28; i++) SetReg(i, 0);
for (i=0x30; i<0xc0; i++) SetReg(i, 0);
OPNBase::Reset();
ch[0].Reset();
ch[1].Reset();
ch[2].Reset();
}
// レジスタ読み込み
uint OPN::GetReg(uint addr)
{
if (addr < 0x10)
return psg.GetReg(addr);
else
return 0;
}
// レジスタアレイにデータを設定
void OPN::SetReg(uint addr, uint data)
{
// LOG2("reg[%.2x] <- %.2x\n", addr, data);
if (addr >= 0x100)
return;
int c = addr & 3;
switch (addr)
{
case 0: case 1: case 2: case 3: case 4: case 5: case 6: case 7:
case 8: case 9: case 10: case 11: case 12: case 13: case 14: case 15:
psg.SetReg(addr, data);
break;
case 0x24: case 0x25:
SetTimerA(addr, data);
break;
case 0x26:
SetTimerB(data);
break;
case 0x27:
SetTimerControl(data);
break;
case 0x28: // Key On/Off
if ((data & 3) < 3)
ch[data & 3].KeyControl(data >> 4);
break;
case 0x2d: case 0x2e: case 0x2f:
SetPrescaler(addr-0x2d);
break;
// F-Number
case 0xa0: case 0xa1: case 0xa2:
fnum[c] = data + fnum2[c] * 0x100;
break;
case 0xa4: case 0xa5: case 0xa6:
fnum2[c] = uint8(data);
break;
case 0xa8: case 0xa9: case 0xaa:
fnum3[c] = data + fnum2[c+3] * 0x100;
break;
case 0xac: case 0xad: case 0xae:
fnum2[c+3] = uint8(data);
break;
case 0xb0: case 0xb1: case 0xb2:
ch[c].SetFB((data >> 3) & 7);
ch[c].SetAlgorithm(data & 7);
break;
default:
if (c < 3)
{
if ((addr & 0xf0) == 0x60)
data &= 0x1f;
OPNBase::SetParameter(&ch[c], addr, data);
}
break;
}
}
// ステータスフラグ設定
void OPN::SetStatus(uint bits)
{
if (!(status & bits))
{
status |= bits;
Intr(true);
}
}
void OPN::ResetStatus(uint bit)
{
status &= ~bit;
if (!status)
Intr(false);
}
// マスク設定
void OPN::SetChannelMask(uint mask)
{
for (int i=0; i<3; i++)
ch[i].Mute(!!(mask & (1 << i)));
psg.SetChannelMask(mask >> 6);
}
// 合成(2ch)
void OPN::Mix(Sample* buffer, int nsamples)
{
#define IStoSample(s) ((Limit(s, 0x7fff, -0x8000) * fmvolume) >> 14)
psg.Mix(buffer, nsamples);
// Set F-Number
ch[0].SetFNum(fnum[0]);
ch[1].SetFNum(fnum[1]);
if (!(regtc & 0xc0))
ch[2].SetFNum(fnum[2]);
else
{ // 効果音
ch[2].op[0].SetFNum(fnum3[1]);
ch[2].op[1].SetFNum(fnum3[2]);
ch[2].op[2].SetFNum(fnum3[0]);
ch[2].op[3].SetFNum(fnum[2]);
}
int actch = (((ch[2].Prepare() << 2) | ch[1].Prepare()) << 2) | ch[0].Prepare();
if (actch & 0x15)
{
Sample* limit = buffer + nsamples * 2;
for (Sample* dest = buffer; dest < limit; dest+=2)
{
ISample s = 0;
if (actch & 0x01) s = ch[0].Calc();
if (actch & 0x04) s += ch[1].Calc();
if (actch & 0x10) s += ch[2].Calc();
s = IStoSample(s);
StoreSample(dest[0], s);
StoreSample(dest[1], s);
}
}
#undef IStoSample
}
#endif // BUILD_OPN
// ---------------------------------------------------------------------------
// YM2608/2610 common part
// ---------------------------------------------------------------------------
#if defined(BUILD_OPNA) || defined(BUILD_OPNB)
int OPNABase::amtable[FM_LFOENTS] = { -1, };
int OPNABase::pmtable[FM_LFOENTS];
int32 OPNABase::tltable[FM_TLENTS+FM_TLPOS];
bool OPNABase::tablehasmade = false;
OPNABase::OPNABase()
{
adpcmbuf = 0;
memaddr = 0;
startaddr = 0;
deltan = 256;
adpcmvol = 0;
control2 = 0;
MakeTable2();
BuildLFOTable();
for (int i=0; i<6; i++)
{
ch[i].SetChip(&chip);
ch[i].SetType(typeN);
}
}
OPNABase::~OPNABase()
{
}
// ---------------------------------------------------------------------------
// 初期化
//
bool OPNABase::Init(uint c, uint r, bool)
{
RebuildTimeTable();
Reset();
SetVolumeFM(0);
SetVolumePSG(0);
SetChannelMask(0);
return true;
}
// ---------------------------------------------------------------------------
// テーブル作成
//
void OPNABase::MakeTable2()
{
if (!tablehasmade)
{
for (int i=-FM_TLPOS; i<FM_TLENTS; i++)
{
tltable[i+FM_TLPOS] = uint(65536. * pow(2.0, i * -16. / FM_TLENTS))-1;
}
tablehasmade = true;
}
}
// ---------------------------------------------------------------------------
// リセット
//
void OPNABase::Reset()
{
int i;
OPNBase::Reset();
for (i=0x20; i<0x28; i++) SetReg(i, 0);
for (i=0x30; i<0xc0; i++) SetReg(i, 0);
for (i=0x130; i<0x1c0; i++) SetReg(i, 0);
for (i=0x100; i<0x110; i++) SetReg(i, 0);
for (i=0x10; i<0x20; i++) SetReg(i, 0);
for (i=0; i<6; i++)
{
pan[i] = 3;
ch[i].Reset();
}
stmask = ~0x1c;
statusnext = 0;
memaddr = 0;
adpcmd = 127;
adpcmx = 0;
lfocount = 0;
adpcmplay = false;
adplc = 0;
adpld = 0x100;
status = 0;
UpdateStatus();
}
// ---------------------------------------------------------------------------
// サンプリングレート変更
//
bool OPNABase::SetRate(uint c, uint r, bool)
{
c /= 2; // 従来版との互換性を重視したけりゃコメントアウトしよう
OPNBase::Init(c, r);
adplbase = int(8192. * (clock/72.) / r);
adpld = deltan * adplbase >> 16;
RebuildTimeTable();
lfodcount = reg22 & 0x08 ? lfotable[reg22 & 7] : 0;
return true;
}
// ---------------------------------------------------------------------------
// チャンネルマスクの設定
//
void OPNABase::SetChannelMask(uint mask)
{
for (int i=0; i<6; i++)
ch[i].Mute(!!(mask & (1 << i)));
psg.SetChannelMask(mask >> 6);
adpcmmask_ = (mask & (1 << 9)) != 0;
rhythmmask_ = (mask >> 10) & ((1 << 6) - 1);
}
// ---------------------------------------------------------------------------
// レジスタアレイにデータを設定
//
void OPNABase::SetReg(uint addr, uint data)
{
int c = addr & 3;
switch (addr)
{
uint modified;
// Timer -----------------------------------------------------------------
case 0x24: case 0x25:
SetTimerA(addr, data);
break;
case 0x26:
SetTimerB(data);
break;
case 0x27:
SetTimerControl(data);
break;
// Misc ------------------------------------------------------------------
case 0x28: // Key On/Off
if ((data & 3) < 3)
{
c = (data & 3) + (data & 4 ? 3 : 0);
ch[c].KeyControl(data >> 4);
}
break;
// Status Mask -----------------------------------------------------------
case 0x29:
reg29 = data;
// UpdateStatus(); //?
break;
// Prescaler -------------------------------------------------------------
case 0x2d: case 0x2e: case 0x2f:
SetPrescaler(addr-0x2d);
break;
// F-Number --------------------------------------------------------------
case 0x1a0: case 0x1a1: case 0x1a2:
c += 3;
case 0xa0: case 0xa1: case 0xa2:
fnum[c] = data + fnum2[c] * 0x100;
ch[c].SetFNum(fnum[c]);
break;
case 0x1a4: case 0x1a5: case 0x1a6:
c += 3;
case 0xa4 : case 0xa5: case 0xa6:
fnum2[c] = uint8(data);
break;
case 0xa8: case 0xa9: case 0xaa:
fnum3[c] = data + fnum2[c+6] * 0x100;
break;
case 0xac : case 0xad: case 0xae:
fnum2[c+6] = uint8(data);
break;
// Algorithm -------------------------------------------------------------
case 0x1b0: case 0x1b1: case 0x1b2:
c += 3;
case 0xb0: case 0xb1: case 0xb2:
ch[c].SetFB((data >> 3) & 7);
ch[c].SetAlgorithm(data & 7);
break;
case 0x1b4: case 0x1b5: case 0x1b6:
c += 3;
case 0xb4: case 0xb5: case 0xb6:
pan[c] = (data >> 6) & 3;
ch[c].SetMS(data);
break;
// LFO -------------------------------------------------------------------
case 0x22:
modified = reg22 ^ data;
reg22 = data;
if (modified & 0x8)
lfocount = 0;
lfodcount = reg22 & 8 ? lfotable[reg22 & 7] : 0;
break;
// PSG -------------------------------------------------------------------
case 0: case 1: case 2: case 3: case 4: case 5: case 6: case 7:
case 8: case 9: case 10: case 11: case 12: case 13: case 14: case 15:
psg.SetReg(addr, data);
break;
// 音色 ------------------------------------------------------------------
default:
if (c < 3)
{
if (addr & 0x100)
c += 3;
OPNBase::SetParameter(&ch[c], addr, data);
}
break;
}
}
// ---------------------------------------------------------------------------
// ADPCM B
//
void OPNABase::SetADPCMBReg(uint addr, uint data)
{
switch (addr)
{
case 0x00: // Control Register 1
if ((data & 0x80) && !adpcmplay)
{
adpcmplay = true;
memaddr = startaddr;
adpcmx = 0, adpcmd = 127;
adplc = 0;
}
if (data & 1)
{
adpcmplay = false;
}
control1 = data;
break;
case 0x01: // Control Register 2
control2 = data;
granuality = control2 & 2 ? 1 : 4;
break;
case 0x02: // Start Address L
case 0x03: // Start Address H
adpcmreg[addr - 0x02 + 0] = data;
startaddr = (adpcmreg[1]*256+adpcmreg[0]) << 6;
memaddr = startaddr;
// LOG1(" startaddr %.6x", startaddr);
break;
case 0x04: // Stop Address L
case 0x05: // Stop Address H
adpcmreg[addr - 0x04 + 2] = data;
stopaddr = (adpcmreg[3]*256+adpcmreg[2] + 1) << 6;
// LOG1(" stopaddr %.6x", stopaddr);
break;
case 0x08: // ADPCM data
if ((control1 & 0x60) == 0x60)
{
// LOG2(" Wr [0x%.5x] = %.2x", memaddr, data);
WriteRAM(data);
}
break;
case 0x09: // delta-N L
case 0x0a: // delta-N H
adpcmreg[addr - 0x09 + 4] = data;
deltan = adpcmreg[5]*256+adpcmreg[4];
deltan = Max(256, deltan);
adpld = deltan * adplbase >> 16;
break;
case 0x0b: // Level Control
adpcmlevel = data;
adpcmvolume = (adpcmvol * adpcmlevel) >> 12;
break;
case 0x0c: // Limit Address L
case 0x0d: // Limit Address H
adpcmreg[addr - 0x0c + 6] = data;
limitaddr = (adpcmreg[7]*256+adpcmreg[6] + 1) << 6;
// LOG1(" limitaddr %.6x", limitaddr);
break;
case 0x10: // Flag Control
if (data & 0x80)
{
status = 0;
UpdateStatus();
}
else
{
stmask = ~(data & 0x1f);
// UpdateStatus(); //???
}
break;
}
}
// ---------------------------------------------------------------------------
// レジスタ取得
//
uint OPNA::GetReg(uint addr)
{
if (addr < 0x10)
return psg.GetReg(addr);
if (addr == 0x108)
{
// LOG1("%d:reg[108] -> ", Diag::GetCPUTick());
uint data = adpcmreadbuf & 0xff;
adpcmreadbuf >>= 8;
if ((control1 & 0x60) == 0x20)
{
adpcmreadbuf |= ReadRAM() << 8;
// LOG2("Rd [0x%.6x:%.2x] ", memaddr, adpcmreadbuf >> 8);
}
// LOG0("%.2x\n");
return data;
}
if (addr == 0xff)
return 1;
return 0;
}
// ---------------------------------------------------------------------------
// ステータスフラグ設定
//
void OPNABase::SetStatus(uint bits)
{
if (!(status & bits))
{
// LOG2("SetStatus(%.2x %.2x)\n", bits, stmask);
status |= bits & stmask;
UpdateStatus();
}
// else
// LOG1("SetStatus(%.2x) - ignored\n", bits);
}
void OPNABase::ResetStatus(uint bits)
{
status &= ~bits;
// LOG1("ResetStatus(%.2x)\n", bits);
UpdateStatus();
}
inline void OPNABase::UpdateStatus()
{
// LOG2("%d:INT = %d\n", Diag::GetCPUTick(), (status & stmask & reg29) != 0);
Intr((status & stmask & reg29) != 0);
}
// ---------------------------------------------------------------------------
// ADPCM RAM への書込み操作
//
void OPNABase::WriteRAM(uint data)
{
#ifndef NO_BITTYPE_EMULATION
if (!(control2 & 2))
{
// 1 bit mode
adpcmbuf[(memaddr >> 4) & 0x3ffff] = data;
memaddr += 16;
}
else
{
// 8 bit mode
uint8* p = &adpcmbuf[(memaddr >> 4) & 0x7fff];
uint bank = (memaddr >> 1) & 7;
uint8 mask = 1 << bank;
data <<= bank;
p[0x00000] = (p[0x00000] & ~mask) | (uint8(data) & mask); data >>= 1;
p[0x08000] = (p[0x08000] & ~mask) | (uint8(data) & mask); data >>= 1;
p[0x10000] = (p[0x10000] & ~mask) | (uint8(data) & mask); data >>= 1;
p[0x18000] = (p[0x18000] & ~mask) | (uint8(data) & mask); data >>= 1;
p[0x20000] = (p[0x20000] & ~mask) | (uint8(data) & mask); data >>= 1;
p[0x28000] = (p[0x28000] & ~mask) | (uint8(data) & mask); data >>= 1;
p[0x30000] = (p[0x30000] & ~mask) | (uint8(data) & mask); data >>= 1;
p[0x38000] = (p[0x38000] & ~mask) | (uint8(data) & mask);
memaddr += 2;
}
#else
adpcmbuf[(memaddr >> granuality) & 0x3ffff] = data;
memaddr += 1 << granuality;
#endif
if (memaddr == stopaddr)
{
SetStatus(4);
statusnext = 0x04; // EOS
memaddr &= 0x3fffff;
}
if (memaddr == limitaddr)
{
// LOG1("Limit ! (%.8x)\n", limitaddr);
memaddr = 0;
}
SetStatus(8);
}
// ---------------------------------------------------------------------------
// ADPCM RAM からの読み込み操作
//
uint OPNABase::ReadRAM()
{
uint data;
#ifndef NO_BITTYPE_EMULATION
if (!(control2 & 2))
{
// 1 bit mode
data = adpcmbuf[(memaddr >> 4) & 0x3ffff];
memaddr += 16;
}
else
{
// 8 bit mode
uint8* p = &adpcmbuf[(memaddr >> 4) & 0x7fff];
uint bank = (memaddr >> 1) & 7;
uint8 mask = 1 << bank;
data = (p[0x38000] & mask);
data = data * 2 + (p[0x30000] & mask);
data = data * 2 + (p[0x28000] & mask);
data = data * 2 + (p[0x20000] & mask);
data = data * 2 + (p[0x18000] & mask);
data = data * 2 + (p[0x10000] & mask);
data = data * 2 + (p[0x08000] & mask);
data = data * 2 + (p[0x00000] & mask);
data >>= bank;
memaddr += 2;
}
#else
data = adpcmbuf[(memaddr >> granuality) & 0x3ffff];
memaddr += 1 << granuality;
#endif
if (memaddr == stopaddr)
{
SetStatus(4);
statusnext = 0x04; // EOS
memaddr &= 0x3fffff;
}
if (memaddr == limitaddr)
{
// LOG1("Limit ! (%.8x)\n", limitaddr);
memaddr = 0;
}
if (memaddr < stopaddr)
SetStatus(8);
return data;
}
#if defined(macintosh) && defined(__SC__)
/* なんで inline にできないの……… */
int OPNABase::DecodeADPCMBSample(uint data)
#else
inline int OPNABase::DecodeADPCMBSample(uint data)
#endif
{
static const int table1[16] =
{
1, 3, 5, 7, 9, 11, 13, 15,
-1, -3, -5, -7, -9, -11, -13, -15,
};
static const int table2[16] =
{
57, 57, 57, 57, 77, 102, 128, 153,
57, 57, 57, 57, 77, 102, 128, 153,
};
adpcmx = Limit(adpcmx + table1[data] * adpcmd / 8, 32767, -32768);
adpcmd = Limit(adpcmd * table2[data] / 64, 24576, 127);
return adpcmx;
}
// ---------------------------------------------------------------------------
// ADPCM RAM からの nibble 読み込み及び ADPCM 展開
//
int OPNABase::ReadRAMN()
{
uint data;
if (granuality > 0)
{
#ifndef NO_BITTYPE_EMULATION
if (!(control2 & 2))
{
data = adpcmbuf[(memaddr >> 4) & 0x3ffff];
memaddr += 8;
if (memaddr & 8)
return DecodeADPCMBSample(data >> 4);
data &= 0x0f;
}
else
{
uint8* p = &adpcmbuf[(memaddr >> 4) & 0x7fff] + ((~memaddr & 1) << 17);
uint bank = (memaddr >> 1) & 7;
uint8 mask = 1 << bank;
data = (p[0x18000] & mask);
data = data * 2 + (p[0x10000] & mask);
data = data * 2 + (p[0x08000] & mask);
data = data * 2 + (p[0x00000] & mask);
data >>= bank;
memaddr ++;
if (memaddr & 1)
return DecodeADPCMBSample(data);
}
#else
data = adpcmbuf[(memaddr >> granuality) & adpcmmask];
memaddr += 1 << (granuality-1);
if (memaddr & (1 << (granuality-1)))
return DecodeADPCMBSample(data >> 4);
data &= 0x0f;
#endif
}
else
{
data = adpcmbuf[(memaddr >> 1) & adpcmmask];
++memaddr;
if (memaddr & 1)
return DecodeADPCMBSample(data >> 4);
data &= 0x0f;
}
DecodeADPCMBSample(data);
// check
if (memaddr == stopaddr)
{
if (control1 & 0x10)
{
memaddr = startaddr;
data = adpcmx;
adpcmx = 0, adpcmd = 127;
return data;
}
else
{
memaddr &= adpcmmask; //0x3fffff;
SetStatus(adpcmnotice);
adpcmplay = false;
}
}
if (memaddr == limitaddr)
memaddr = 0;
return adpcmx;
}
// ---------------------------------------------------------------------------
// 拡張ステータスを読みこむ
//
uint OPNABase::ReadStatusEx()
{
uint r = ((status | 8) & stmask) | (adpcmplay ? 0x20 : 0);
status |= statusnext;
statusnext = 0;
return r;
}
// ---------------------------------------------------------------------------
// ADPCM 展開
//
inline void OPNABase::DecodeADPCMB()
{
apout0 = apout1;
int n = (ReadRAMN() * adpcmvolume) >> 13;
apout1 = adpcmout + n;
adpcmout = n;
}
// ---------------------------------------------------------------------------
// ADPCM 合成
//
void OPNABase::ADPCMBMix(Sample* dest, uint count)
{
uint maskl = control2 & 0x80 ? -1 : 0;
uint maskr = control2 & 0x40 ? -1 : 0;
if (adpcmmask_)
{
maskl = maskr = 0;
}
if (adpcmplay)
{
// LOG2("ADPCM Play: %d DeltaN: %d\n", adpld, deltan);
if (adpld <= 8192) // fplay < fsamp
{
for (; count>0; count--)
{
if (adplc < 0)
{
adplc += 8192;
DecodeADPCMB();
if (!adpcmplay)
break;
}
int s = (adplc * apout0 + (8192-adplc) * apout1) >> 13;
StoreSample(dest[0], s & maskl);
StoreSample(dest[1], s & maskr);
dest += 2;
adplc -= adpld;
}
for (; count>0 && apout0; count--)
{
if (adplc < 0)
{
apout0 = apout1, apout1 = 0;
adplc += 8192;
}
int s = (adplc * apout1) >> 13;
StoreSample(dest[0], s & maskl);
StoreSample(dest[1], s & maskr);
dest += 2;
adplc -= adpld;
}
}
else // fplay > fsamp (adpld = fplay/famp*8192)
{
int t = (-8192*8192)/adpld;
for (; count>0; count--)
{
int s = apout0 * (8192+adplc);
while (adplc < 0)
{
DecodeADPCMB();
if (!adpcmplay)
goto stop;
s -= apout0 * Max(adplc, t);
adplc -= t;
}
adplc -= 8192;
s >>= 13;
StoreSample(dest[0], s & maskl);
StoreSample(dest[1], s & maskr);
dest += 2;
}
stop:
;
}
}
if (!adpcmplay)
{
apout0 = apout1 = adpcmout = 0;
adplc = 0;
}
}
// ---------------------------------------------------------------------------
// 合成
// in: buffer 合成先
// nsamples 合成サンプル数
//
void OPNABase::FMMix(Sample* buffer, int nsamples)
{
if (fmvolume > 0)
{
// 準備
// Set F-Number
if (!(regtc & 0xc0))
csmch->SetFNum(fnum[csmch-ch]);
else
{
// 効果音モード
csmch->op[0].SetFNum(fnum3[1]); csmch->op[1].SetFNum(fnum3[2]);
csmch->op[2].SetFNum(fnum3[0]); csmch->op[3].SetFNum(fnum[2]);
}
int act = (((ch[2].Prepare() << 2) | ch[1].Prepare()) << 2) | ch[0].Prepare();
if (reg29 & 0x80)
act |= (ch[3].Prepare() | ((ch[4].Prepare() | (ch[5].Prepare() << 2)) << 2)) << 6;
if (!(reg22 & 0x08))
act &= 0x555;
if (act & 0x555)
{
Mix6(buffer, nsamples, act);
}
}
}
// ---------------------------------------------------------------------------
void OPNABase::MixSubSL(int activech, ISample** dest)
{
if (activech & 0x001) (*dest[0] = ch[0].CalcL());
if (activech & 0x004) (*dest[1] += ch[1].CalcL());
if (activech & 0x010) (*dest[2] += ch[2].CalcL());
if (activech & 0x040) (*dest[3] += ch[3].CalcL());
if (activech & 0x100) (*dest[4] += ch[4].CalcL());
if (activech & 0x400) (*dest[5] += ch[5].CalcL());
}
inline void OPNABase::MixSubS(int activech, ISample** dest)
{
if (activech & 0x001) (*dest[0] = ch[0].Calc());
if (activech & 0x004) (*dest[1] += ch[1].Calc());
if (activech & 0x010) (*dest[2] += ch[2].Calc());
if (activech & 0x040) (*dest[3] += ch[3].Calc());
if (activech & 0x100) (*dest[4] += ch[4].Calc());
if (activech & 0x400) (*dest[5] += ch[5].Calc());
}
// ---------------------------------------------------------------------------
void OPNABase::BuildLFOTable()
{
if (amtable[0] == -1)
{
for (int c=0; c<256; c++)
{
int v;
if (c < 0x40) v = c * 2 + 0x80;
else if (c < 0xc0) v = 0x7f - (c - 0x40) * 2 + 0x80;
else v = (c - 0xc0) * 2;
pmtable[c] = c;
if (c < 0x80) v = 0xff - c * 2;
else v = (c - 0x80) * 2;
amtable[c] = v & ~3;
}
}
}
// ---------------------------------------------------------------------------
inline void OPNABase::LFO()
{
// LOG3("%4d - %8d, %8d\n", c, lfocount, lfodcount);
// Operator::SetPML(pmtable[(lfocount >> (FM_LFOCBITS+1)) & 0xff]);
// Operator::SetAML(amtable[(lfocount >> (FM_LFOCBITS+1)) & 0xff]);
chip.SetPML(pmtable[(lfocount >> (FM_LFOCBITS+1)) & 0xff]);
chip.SetAML(amtable[(lfocount >> (FM_LFOCBITS+1)) & 0xff]);
lfocount += lfodcount;
}
// ---------------------------------------------------------------------------
// 合成
//
#define IStoSample(s) ((Limit(s, 0x7fff, -0x8000) * fmvolume) >> 14)
void OPNABase::Mix6(Sample* buffer, int nsamples, int activech)
{
// Mix
ISample ibuf[4];
ISample* idest[6];
idest[0] = &ibuf[pan[0]];
idest[1] = &ibuf[pan[1]];
idest[2] = &ibuf[pan[2]];
idest[3] = &ibuf[pan[3]];
idest[4] = &ibuf[pan[4]];
idest[5] = &ibuf[pan[5]];
Sample* limit = buffer + nsamples * 2;
for (Sample* dest = buffer; dest < limit; dest+=2)
{
ibuf[1] = ibuf[2] = ibuf[3] = 0;
if (activech & 0xaaa)
LFO(), MixSubSL(activech, idest);
else
MixSubS(activech, idest);
StoreSample(dest[0], IStoSample(ibuf[2] + ibuf[3]));
StoreSample(dest[1], IStoSample(ibuf[1] + ibuf[3]));
}
}
#endif // defined(BUILD_OPNA) || defined(BUILD_OPNB)
// ---------------------------------------------------------------------------
// YM2608(OPNA)
// ---------------------------------------------------------------------------
#ifdef BUILD_OPNA
// ---------------------------------------------------------------------------
// 構築
//
OPNA::OPNA()
{
for (int i=0; i<6; i++)
{
rhythm[i].sample = 0;
rhythm[i].pos = 0;
rhythm[i].size = 0;
rhythm[i].volume = 0;
}
rhythmtvol = 0;
adpcmmask = 0x3ffff;
adpcmnotice = 4;
csmch = &ch[2];
}
// ---------------------------------------------------------------------------
OPNA::~OPNA()
{
delete[] adpcmbuf;
for (int i=0; i<6; i++)
delete[] rhythm[i].sample;
}
// ---------------------------------------------------------------------------
// 初期化
//
bool OPNA::Init(uint c, uint r, bool ipflag, const char* path)
{
rate = 8000;
LoadRhythmSample(path);
if (!adpcmbuf)
adpcmbuf = new uint8[0x40000];
if (!adpcmbuf)
return false;
if (!SetRate(c, r, ipflag))
return false;
if (!OPNABase::Init(c, r, ipflag))
return false;
Reset();
SetVolumeADPCM(0);
SetVolumeRhythmTotal(0);
for (int i=0; i<6; i++)
SetVolumeRhythm(0, 0);
return true;
}
// ---------------------------------------------------------------------------
// リセット
//
void OPNA::Reset()
{
reg29 = 0x1f;
rhythmkey = 0;
limitaddr = 0x3ffff;
OPNABase::Reset();
}
// ---------------------------------------------------------------------------
// サンプリングレート変更
//
bool OPNA::SetRate(uint c, uint r, bool ipflag)
{
if (!OPNABase::SetRate(c, r, ipflag))
return false;
for (int i=0; i<6; i++)
{
rhythm[i].step = rhythm[i].rate * 1024 / r;
}
return true;
}
// ---------------------------------------------------------------------------
// リズム音を読みこむ
//
bool OPNA::LoadRhythmSample(const char* path)
{
static const char* rhythmname[6] =
{
"BD", "SD", "TOP", "HH", "TOM", "RIM",
};
#if 1 // forQUASI88
static const char* rhythmname_lower[6] =
{
"bd", "sd", "top", "hh", "tom", "rim",
};
#endif
int i;
for (i=0; i<6; i++)
rhythm[i].pos = ~0;
#if 0 // forQUASI88
for (i=0; i<6; i++)
{
FileIO file;
uint32 fsize;
char buf[MAX_PATH] = "";
if (path)
strncpy(buf, path, MAX_PATH);
strncat(buf, "2608_", MAX_PATH);
strncat(buf, rhythmname[i], MAX_PATH);
strncat(buf, ".WAV", MAX_PATH);
if (!file.Open(buf, FileIO::readonly))
{
if (i != 5)
break;
if (path)
strncpy(buf, path, MAX_PATH);
strncpy(buf, "2608_RYM.WAV", MAX_PATH);
if (!file.Open(buf, FileIO::readonly))
break;
}
struct
{
uint32 chunksize;
uint16 tag;
uint16 nch;
uint32 rate;
uint32 avgbytes;
uint16 align;
uint16 bps;
uint16 size;
} whdr;
file.Seek(0x10, FileIO::begin);
file.Read(&whdr, sizeof(whdr));
uint8 subchunkname[4];
fsize = 4 + whdr.chunksize - sizeof(whdr);
do
{
file.Seek(fsize, FileIO::current);
file.Read(&subchunkname, 4);
file.Read(&fsize, 4);
} while (memcmp("data", subchunkname, 4));
fsize /= 2;
if (fsize >= 0x100000 || whdr.tag != 1 || whdr.nch != 1)
break;
fsize = Max(fsize, (1<<31)/1024);
delete rhythm[i].sample;
rhythm[i].sample = new int16[fsize];
if (!rhythm[i].sample)
break;
file.Read(rhythm[i].sample, fsize * 2);
rhythm[i].rate = whdr.rate;
rhythm[i].step = rhythm[i].rate * 1024 / rate;
rhythm[i].pos = rhythm[i].size = fsize * 1024;
}
#else // forQUASI88
for (i=0; i<6; i++)
{
OSD_FILE *file;
uint32 fsize;
char buf[1024] = "";
const char *dir = osd_dir_rom();
char romfile[16];
if( dir==NULL ) break;
sprintf( romfile, "2608_%s.WAV", rhythmname[i] );
if( osd_path_join( dir, romfile, buf, 1024 ) == FALSE ) break;
file = osd_fopen( FTYPE_ROM, buf, "rb" );
if( file==NULL ){
sprintf( romfile, "2608_%s.wav", rhythmname_lower[i] );
if( osd_path_join( dir, romfile, buf, 1024 ) ){
file = osd_fopen( FTYPE_ROM, buf, "rb" );
}
}
if( file==NULL ){
break;
}
struct
{
uint8 chunksize[4];
uint8 tag[2];
uint8 nch[2];
uint8 rate[4];
uint8 avgbytes[4];
uint8 align[2];
uint8 bps[2];
uint8 size[2];
} whdr;
osd_fseek(file, 0x10, SEEK_SET);
osd_fread(&whdr, sizeof(whdr), 1, file);
uint32 whdr_chunksize = (uint32)whdr.chunksize[0] +
((uint32)whdr.chunksize[1]<< 8)+
((uint32)whdr.chunksize[2]<<16)+
((uint32)whdr.chunksize[3]<<24);
uint16 whdr_tag = (uint16)whdr.tag[0] +
((uint16)whdr.tag[1]<< 8);
uint16 whdr_nch = (uint16)whdr.nch[0] +
((uint16)whdr.nch[1]<< 8);
uint32 whdr_rate = (uint32)whdr.rate[0] +
((uint32)whdr.rate[1]<< 8)+
((uint32)whdr.rate[2]<<16)+
((uint32)whdr.rate[3]<<24);
uint8 subchunkname[4];
uint8 fsize_lsb1st[4];
fsize = 4 + whdr_chunksize - sizeof(whdr);
do
{
osd_fseek(file, fsize, SEEK_CUR);
osd_fread(subchunkname, 4, 1, file);
osd_fread(fsize_lsb1st, 4, 1, file);
fsize = (uint32)fsize_lsb1st[0] +
((uint32)fsize_lsb1st[1]<< 8)+
((uint32)fsize_lsb1st[2]<<16)+
((uint32)fsize_lsb1st[3]<<24);
} while (memcmp("data", subchunkname, 4));
fsize /= 2;
if (fsize >= 0x100000 || whdr_tag != 1 || whdr_nch != 1)
break;
fsize = Max(fsize, (1<<31)/1024);
delete rhythm[i].sample;
rhythm[i].sample = new int16[fsize];
if (!rhythm[i].sample)
break;
for(uint32 j=0; j<fsize; j++ ){
uint8 pcm[2];
osd_fread(pcm, 2, 1, file);
rhythm[i].sample[j] = (int16)( (uint16)pcm[0] +
((uint16)pcm[1]<< 8) );
}
#if 0
printf("%s (%x): ", buf,fsize);
printf("\t%04x %04x %04x %04x .. ",
rhythm[i].sample[0]&0xffff,rhythm[i].sample[1]&0xffff,
rhythm[i].sample[2]&0xffff,rhythm[i].sample[3]&0xffff);
printf("%04x %04x %04x %04x \n",
rhythm[i].sample[fsize-4]&0xffff,rhythm[i].sample[fsize-3]&0xffff,
rhythm[i].sample[fsize-2]&0xffff,rhythm[i].sample[fsize-1]&0xffff);
#endif
rhythm[i].rate = whdr_rate;
rhythm[i].step = rhythm[i].rate * 1024 / rate;
rhythm[i].pos = rhythm[i].size = fsize * 1024;
osd_fclose( file );
}
if( verbose_proc ){
if( i== 6 ) printf("(Loading Rhythm file is success[OK])..");
else printf("(Loading Rhythm file is failure[FAILED])..");
}
#endif // forQUASI88
if (i != 6)
{
for (i=0; i<6; i++)
{
delete[] rhythm[i].sample;
rhythm[i].sample = 0;
}
return false;
}
return true;
}
// ---------------------------------------------------------------------------
// レジスタアレイにデータを設定
//
void OPNA::SetReg(uint addr, uint data)
{
addr &= 0x1ff;
switch (addr)
{
case 0x29:
reg29 = data;
// UpdateStatus(); //?
break;
// Rhythm ----------------------------------------------------------------
case 0x10: // DM/KEYON
if (!(data & 0x80)) // KEY ON
{
rhythmkey |= data & 0x3f;
if (data & 0x01) rhythm[0].pos = 0;
if (data & 0x02) rhythm[1].pos = 0;
if (data & 0x04) rhythm[2].pos = 0;
if (data & 0x08) rhythm[3].pos = 0;
if (data & 0x10) rhythm[4].pos = 0;
if (data & 0x20) rhythm[5].pos = 0;
}
else
{ // DUMP
rhythmkey &= ~data;
}
break;
case 0x11:
rhythmtl = ~data & 63;
break;
case 0x18: // Bass Drum
case 0x19: // Snare Drum
case 0x1a: // Top Cymbal
case 0x1b: // Hihat
case 0x1c: // Tom-tom
case 0x1d: // Rim shot
rhythm[addr & 7].pan = (data >> 6) & 3;
rhythm[addr & 7].level = ~data & 31;
break;
case 0x100: case 0x101:
case 0x102: case 0x103:
case 0x104: case 0x105:
case 0x108: case 0x109:
case 0x10a: case 0x10b:
case 0x10c: case 0x10d:
case 0x110:
OPNABase::SetADPCMBReg(addr - 0x100, data);
break;
default:
OPNABase::SetReg(addr, data);
break;
}
}
// ---------------------------------------------------------------------------
// リズム合成
//
void OPNA::RhythmMix(Sample* buffer, uint count)
{
if (rhythmtvol < 128 && rhythm[0].sample && (rhythmkey & 0x3f))
{
Sample* limit = buffer + count * 2;
for (int i=0; i<6; i++)
{
Rhythm& r = rhythm[i];
if ((rhythmkey & (1 << i)) && r.level < 128)
{
int db = Limit(rhythmtl+rhythmtvol+r.level+r.volume, 127, -31);
int vol = tltable[FM_TLPOS+(db << (FM_TLBITS-7))] >> 4;
int maskl = -((r.pan >> 1) & 1);
int maskr = -(r.pan & 1);
if (rhythmmask_ & (1 << i))
{
maskl = maskr = 0;
}
for (Sample* dest = buffer; dest<limit && r.pos < r.size; dest+=2)
{
int sample = (r.sample[r.pos / 1024] * vol) >> 12;
r.pos += r.step;
StoreSample(dest[0], sample & maskl);
StoreSample(dest[1], sample & maskr);
}
}
}
}
}
// ---------------------------------------------------------------------------
// 音量設定
//
void OPNA::SetVolumeRhythmTotal(int db)
{
db = Min(db, 20);
rhythmtvol = -(db * 2 / 3);
}
void OPNA::SetVolumeRhythm(int index, int db)
{
db = Min(db, 20);
rhythm[index].volume = -(db * 2 / 3);
}
void OPNA::SetVolumeADPCM(int db)
{
db = Min(db, 20);
if (db > -192)
adpcmvol = int(65536.0 * pow(10.0, db / 40.0));
else
adpcmvol = 0;
adpcmvolume = (adpcmvol * adpcmlevel) >> 12;
}
// ---------------------------------------------------------------------------
// 合成
// in: buffer 合成先
// nsamples 合成サンプル数
//
void OPNA::Mix(Sample* buffer, int nsamples)
{
FMMix(buffer, nsamples);
psg.Mix(buffer, nsamples);
ADPCMBMix(buffer, nsamples);
RhythmMix(buffer, nsamples);
}
#endif // BUILD_OPNA
// ---------------------------------------------------------------------------
// YM2610(OPNB)
// ---------------------------------------------------------------------------
#ifdef BUILD_OPNB
// ---------------------------------------------------------------------------
// 構築
//
OPNB::OPNB()
{
adpcmabuf = 0;
adpcmasize = 0;
for (int i=0; i<6; i++)
{
adpcma[i].pan = 0;
adpcma[i].level = 0;
adpcma[i].volume = 0;
adpcma[i].pos = 0;
adpcma[i].step = 0;
adpcma[i].volume = 0;
adpcma[i].start = 0;
adpcma[i].stop = 0;
adpcma[i].adpcmx = 0;
adpcma[i].adpcmd = 0;
}
adpcmatl = 0;
adpcmakey = 0;
adpcmatvol = 0;
adpcmmask = 0;
adpcmnotice = 0x8000;
granuality = -1;
csmch = &ch[2];
InitADPCMATable();
}
OPNB::~OPNB()
{
}
// ---------------------------------------------------------------------------
// 初期化
//
bool OPNB::Init(uint c, uint r, bool ipflag,
uint8 *_adpcma, int _adpcma_size,
uint8 *_adpcmb, int _adpcmb_size)
{
int i;
if (!SetRate(c, r, ipflag))
return false;
if (!OPNABase::Init(c, r, ipflag))
return false;
adpcmabuf = _adpcma;
adpcmasize = _adpcma_size;
adpcmbuf = _adpcmb;
for (i=0; i<=24; i++) // max 16M bytes
{
if (_adpcmb_size <= (1 << i))
{
adpcmmask = (1 << i) - 1;
break;
}
}
// adpcmmask = _adpcmb_size - 1;
limitaddr = adpcmmask;
Reset();
SetVolumeFM(0);
SetVolumePSG(0);
SetVolumeADPCMB(0);
SetVolumeADPCMATotal(0);
for (i=0; i<6; i++)
SetVolumeADPCMA(0, 0);
SetChannelMask(0);
return true;
}
// ---------------------------------------------------------------------------
// リセット
//
void OPNB::Reset()
{
OPNABase::Reset();
stmask = ~0;
adpcmakey = 0;
reg29 = ~0;
for (int i=0; i<6; i++)
{
adpcma[i].pan = 0;
adpcma[i].level = 0;
adpcma[i].volume = 0;
adpcma[i].pos = 0;
adpcma[i].step = 0;
adpcma[i].volume = 0;
adpcma[i].start = 0;
adpcma[i].stop = 0;
adpcma[i].adpcmx = 0;
adpcma[i].adpcmd = 0;
}
}
// ---------------------------------------------------------------------------
// サンプリングレート変更
//
bool OPNB::SetRate(uint c, uint r, bool ipflag)
{
if (!OPNABase::SetRate(c, r, ipflag))
return false;
adpcmastep = int(double(c) / 54 * 8192 / r);
return true;
}
// ---------------------------------------------------------------------------
// レジスタアレイにデータを設定
//
void OPNB::SetReg(uint addr, uint data)
{
addr &= 0x1ff;
switch (addr)
{
// omitted registers
case 0x29:
case 0x2d: case 0x2e: case 0x2f:
break;
// ADPCM A ---------------------------------------------------------------
case 0x100: // DM/KEYON
if (!(data & 0x80)) // KEY ON
{
adpcmakey |= data & 0x3f;
for (int c=0; c<6; c++)
{
if (data & (1<<c))
{
ResetStatus(0x100 << c);
adpcma[c].pos = adpcma[c].start;
// adpcma[c].step = 0x10000 - adpcma[c].step;
adpcma[c].step = 0;
adpcma[c].adpcmx = 0;
adpcma[c].adpcmd = 0;
adpcma[c].nibble = 0;
}
}
}
else
{ // DUMP
adpcmakey &= ~data;
}
break;
case 0x101:
adpcmatl = ~data & 63;
break;
case 0x108: case 0x109: case 0x10a:
case 0x10b: case 0x10c: case 0x10d:
adpcma[addr & 7].pan = (data >> 6) & 3;
adpcma[addr & 7].level = ~data & 31;
break;
case 0x110: case 0x111: case 0x112: // START ADDRESS (L)
case 0x113: case 0x114: case 0x115:
case 0x118: case 0x119: case 0x11a: // START ADDRESS (H)
case 0x11b: case 0x11c: case 0x11d:
adpcmareg[addr - 0x110] = data;
adpcma[addr & 7].pos = adpcma[addr & 7].start =
(adpcmareg[(addr&7)+8]*256+adpcmareg[addr&7]) << 9;
break;
case 0x120: case 0x121: case 0x122: // END ADDRESS (L)
case 0x123: case 0x124: case 0x125:
case 0x128: case 0x129: case 0x12a: // END ADDRESS (H)
case 0x12b: case 0x12c: case 0x12d:
adpcmareg[addr - 0x110] = data;
adpcma[addr & 7].stop =
(adpcmareg[(addr&7)+24]*256+adpcmareg[(addr&7)+16] + 1) << 9;
break;
// ADPCMB -----------------------------------------------------------------
case 0x10:
if ((data & 0x80) && !adpcmplay)
{
adpcmplay = true;
memaddr = startaddr;
adpcmx = 0, adpcmd = 127;
adplc = 0;
}
if (data & 1)
adpcmplay = false;
control1 = data & 0x91;
break;
case 0x11: // Control Register 2
control2 = data & 0xc0;
break;
case 0x12: // Start Address L
case 0x13: // Start Address H
adpcmreg[addr - 0x12 + 0] = data;
startaddr = (adpcmreg[1]*256+adpcmreg[0]) << 9;
memaddr = startaddr;
break;
case 0x14: // Stop Address L
case 0x15: // Stop Address H
adpcmreg[addr - 0x14 + 2] = data;
stopaddr = (adpcmreg[3]*256+adpcmreg[2] + 1) << 9;
// LOG1(" stopaddr %.6x", stopaddr);
break;
case 0x19: // delta-N L
case 0x1a: // delta-N H
adpcmreg[addr - 0x19 + 4] = data;
deltan = adpcmreg[5]*256+adpcmreg[4];
deltan = Max(256, deltan);
adpld = deltan * adplbase >> 16;
break;
case 0x1b: // Level Control
adpcmlevel = data;
adpcmvolume = (adpcmvol * adpcmlevel) >> 12;
break;
case 0x1c: // Flag Control
stmask = ~((data & 0xbf) << 8);
status &= stmask;
UpdateStatus();
break;
default:
OPNABase::SetReg(addr, data);
break;
}
// LOG0("\n");
}
// ---------------------------------------------------------------------------
// レジスタ取得
//
uint OPNB::GetReg(uint addr)
{
if (addr < 0x10)
return psg.GetReg(addr);
return 0;
}
// ---------------------------------------------------------------------------
// 拡張ステータスを読みこむ
//
uint OPNB::ReadStatusEx()
{
return (status & stmask) >> 8;
}
// ---------------------------------------------------------------------------
// YM2610
//
int OPNB::jedi_table[(48+1)*16];
void OPNB::InitADPCMATable()
{
const static int8 table2[] =
{
1, 3, 5, 7, 9, 11, 13, 15,
-1, -3, -5, -7, -9,-11,-13,-15,
};
for (int i=0; i<=48; i++)
{
int s = int(16.0 * pow (1.1, i) * 3);
for (int j=0; j<16; j++)
{
jedi_table[i*16+j] = s * table2[j] / 8;
}
}
}
// ---------------------------------------------------------------------------
// ADPCMA 合成
//
void OPNB::ADPCMAMix(Sample* buffer, uint count)
{
const static int decode_tableA1[16] =
{
-1*16, -1*16, -1*16, -1*16, 2*16, 5*16, 7*16, 9*16,
-1*16, -1*16, -1*16, -1*16, 2*16, 5*16, 7*16, 9*16
};
if (adpcmatvol < 128 && (adpcmakey & 0x3f))
{
Sample* limit = buffer + count * 2;
for (int i=0; i<6; i++)
{
ADPCMA& r = adpcma[i];
if ((adpcmakey & (1 << i)) && r.level < 128)
{
uint maskl = r.pan & 2 ? -1 : 0;
uint maskr = r.pan & 1 ? -1 : 0;
if (rhythmmask_ & (1 << i))
{
maskl = maskr = 0;
}
int db = Limit(adpcmatl+adpcmatvol+r.level+r.volume, 127, -31);
int vol = tltable[FM_TLPOS+(db << (FM_TLBITS-7))] >> 4;
Sample* dest = buffer;
for ( ; dest<limit; dest+=2)
{
r.step += adpcmastep;
if (r.pos >= r.stop)
{
SetStatus(0x100 << i);
adpcmakey &= ~(1<<i);
break;
}
for (; r.step > 0x10000; r.step -= 0x10000)
{
int data;
if (!(r.pos & 1))
{
r.nibble = adpcmabuf[r.pos>>1];
data = r.nibble >> 4;
}
else
{
data = r.nibble & 0x0f;
}
r.pos++;
r.adpcmx += jedi_table[r.adpcmd + data];
r.adpcmx = Limit(r.adpcmx, 2048*3-1, -2048*3);
r.adpcmd += decode_tableA1[data];
r.adpcmd = Limit(r.adpcmd, 48*16, 0);
}
int sample = (r.adpcmx * vol) >> 10;
StoreSample(dest[0], sample & maskl);
StoreSample(dest[1], sample & maskr);
}
}
}
}
}
// ---------------------------------------------------------------------------
// 音量設定
//
void OPNB::SetVolumeADPCMATotal(int db)
{
db = Min(db, 20);
adpcmatvol = -(db * 2 / 3);
}
void OPNB::SetVolumeADPCMA(int index, int db)
{
db = Min(db, 20);
adpcma[index].volume = -(db * 2 / 3);
}
void OPNB::SetVolumeADPCMB(int db)
{
db = Min(db, 20);
if (db > -192)
adpcmvol = int(65536.0 * pow(10, db / 40.0));
else
adpcmvol = 0;
}
// ---------------------------------------------------------------------------
// 合成
// in: buffer 合成先
// nsamples 合成サンプル数
//
void OPNB::Mix(Sample* buffer, int nsamples)
{
FMMix(buffer, nsamples);
psg.Mix(buffer, nsamples);
ADPCMBMix(buffer, nsamples);
ADPCMAMix(buffer, nsamples);
}
#endif // BUILD_OPNB
} // namespace FM
| [
"toyoshim@gmail.com"
] | toyoshim@gmail.com |
cca05fd302a7cb49f88339ba7f86f757183cc7d3 | c7a2a0ec31a9bc1bfb3023dbd94cb483b8b91943 | /www/Article/data/tplcache/dafeff7b0b91fb4ff838ced32fba369b.inc | 64844edb5ac29d847d4e59683cf89946a9536b2c | [
"Apache-2.0"
] | permissive | zhenhewangluo/appMarket | 65d0315792349aceca41b7fa0791d91f75c0d37e | 8eba29eccc61d3e0f70302d57764f73a041f3330 | refs/heads/master | 2020-09-01T09:43:58.958040 | 2019-11-01T07:13:14 | 2019-11-01T07:13:14 | 218,930,167 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 628 | inc | {dede:noteinfo notename="安卓哥资讯2" channelid="1" macthtype="string"
refurl="http://www.apkge.com/news/page1.html" sourcelang="utf-8" cosort="asc"
isref="yes" exptime="10" usemore="0" /}
{dede:listrule sourcetype="batch" rssurl="http://" regxurl="http://www.apkge.com/news/page(*).html"
startid="1" endid="2" addv="1" urlrule="area" musthas="target"
nothas="" listpic="1" usemore="0"}
{dede:addurls}{/dede:addurls}
{dede:batchrule}{/dede:batchrule}
{dede:regxrule}{/dede:regxrule}
{dede:areastart}<div id="left">{/dede:areastart}
{dede:areaend}<div id="pager">{/dede:areaend}
{/dede:listrule}
| [
"7731226@qq.com"
] | 7731226@qq.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.