diff --git a/enginecustom/Light.ps b/enginecustom/Light.ps new file mode 100644 index 0000000..7941e19 --- /dev/null +++ b/enginecustom/Light.ps @@ -0,0 +1,84 @@ +//////////////////////////////////////////////////////////////////////////////// +// Filename: light.ps +//////////////////////////////////////////////////////////////////////////////// + +///////////// +// DEFINES // +///////////// +#define NUM_LIGHTS 4 + +///////////// +// GLOBALS // +///////////// +Texture2D shaderTexture : register(t0); +SamplerState SampleType : register(s0); +cbuffer LightBuffer +{ + float4 ambientColor; + float3 lightDirection; + float padding; + float specularPower; + float4 specularColor; +}; + +cbuffer LightColorBuffer +{ + float4 diffuseColor[NUM_LIGHTS]; +}; + + +////////////// +// TYPEDEFS // +////////////// +struct PixelInputType +{ + float4 position : SV_POSITION; + float2 tex : TEXCOORD0; + float3 normal : NORMAL; + float3 lightPos[NUM_LIGHTS] : TEXCOORD1; +}; + + +//////////////////////////////////////////////////////////////////////////////// +// Pixel Shader +//////////////////////////////////////////////////////////////////////////////// +float4 LightPixelShader(PixelInputType input) : SV_TARGET +{ + float4 textureColor; + float3 lightDir; + float4 color; + float3 reflection; + float4 specular; + float lightIntensity[NUM_LIGHTS]; + float4 colorArray[NUM_LIGHTS]; + float4 colorSum; + int i; + + // Sample the pixel color from the texture using the sampler at this texture coordinate location. + textureColor = shaderTexture.Sample(SampleType, input.tex); + + for(i=0; i +using namespace DirectX; + + +//////////////////////////////////////////////////////////////////////////////// +// Class name: LightClass +//////////////////////////////////////////////////////////////////////////////// +class LightClass +{ +public: + LightClass(); + LightClass(const LightClass&); + ~LightClass(); + + void SetAmbientColor(float, float, float, float); + void SetDiffuseColor(float, float, float, float); + void SetDirection(float, float, float); + void SetSpecularColor(float, float, float, float); + void SetSpecularPower(float); + void SetPosition(float, float, float); + + XMFLOAT4 GetAmbientColor(); + XMFLOAT4 GetDiffuseColor(); + XMFLOAT3 GetDirection(); + XMFLOAT4 GetSpecularColor(); + float GetSpecularPower(); + XMFLOAT4 GetPosition(); + +private: + XMFLOAT4 m_ambientColor; + XMFLOAT4 m_diffuseColor; + XMFLOAT3 m_direction; + XMFLOAT4 m_specularColor; + float m_specularPower; + XMFLOAT4 m_position; +}; + +#endif \ No newline at end of file diff --git a/enginecustom/Lightshaderclass.cpp b/enginecustom/Lightshaderclass.cpp new file mode 100644 index 0000000..392cdac --- /dev/null +++ b/enginecustom/Lightshaderclass.cpp @@ -0,0 +1,516 @@ +//////////////////////////////////////////////////////////////////////////////// +// Filename: lightshaderclass.cpp +//////////////////////////////////////////////////////////////////////////////// +#include "lightshaderclass.h" + + +LightShaderClass::LightShaderClass() +{ + m_vertexShader = 0; + m_pixelShader = 0; + m_layout = 0; + m_sampleState = 0; + m_matrixBuffer = 0; + m_cameraBuffer = 0; + m_lightBuffer = 0; + m_lightColorBuffer = 0; + m_lightPositionBuffer = 0; +} + + +LightShaderClass::LightShaderClass(const LightShaderClass& other) +{ +} + + +LightShaderClass::~LightShaderClass() +{ +} + + +bool LightShaderClass::Initialize(ID3D11Device* device, HWND hwnd) +{ + wchar_t vsFilename[128]; + wchar_t psFilename[128]; + int error; + bool result; + + // Set the filename of the vertex shader. + error = wcscpy_s(vsFilename, 128, L"light.vs"); + if (error != 0) + { + return false; + } + + // Set the filename of the pixel shader. + error = wcscpy_s(psFilename, 128, L"light.ps"); + if (error != 0) + { + return false; + } + // Initialize the vertex and pixel shaders. + result = InitializeShader(device, hwnd, vsFilename, psFilename); + if (!result) + { + return false; + } + + return true; +} + + +void LightShaderClass::Shutdown() +{ + // Shutdown the vertex and pixel shaders as well as the related objects. + ShutdownShader(); + + return; +} + +bool LightShaderClass::Render(ID3D11DeviceContext* deviceContext, int indexCount, XMMATRIX worldMatrix, XMMATRIX viewMatrix, XMMATRIX projectionMatrix, + ID3D11ShaderResourceView* texture, XMFLOAT4 diffuseColor[], XMFLOAT4 lightPosition[]) +{ + bool result; + + + // Set the shader parameters that it will use for rendering. + result = SetShaderParameters(deviceContext, worldMatrix, viewMatrix, projectionMatrix, texture, diffuseColor, lightPosition); + if(!result) + { + return false; + } + + // Now render the prepared buffers with the shader. + RenderShader(deviceContext, indexCount); + + return true; +} + + +bool LightShaderClass::InitializeShader(ID3D11Device* device, HWND hwnd, WCHAR* vsFilename, WCHAR* psFilename) +{ + HRESULT result; + ID3D10Blob* errorMessage; + ID3D10Blob* vertexShaderBuffer; + ID3D10Blob* pixelShaderBuffer; + D3D11_INPUT_ELEMENT_DESC polygonLayout[3]; + unsigned int numElements; + D3D11_SAMPLER_DESC samplerDesc; + D3D11_BUFFER_DESC matrixBufferDesc; + D3D11_BUFFER_DESC cameraBufferDesc; + D3D11_BUFFER_DESC lightColorBufferDesc; + D3D11_BUFFER_DESC lightPositionBufferDesc; + + + // Initialize the pointers this function will use to null. + errorMessage = 0; + vertexShaderBuffer = 0; + pixelShaderBuffer = 0; + + // Compile the vertex shader code. + result = D3DCompileFromFile(vsFilename, NULL, NULL, "LightVertexShader", "vs_5_0", D3D10_SHADER_ENABLE_STRICTNESS, 0, &vertexShaderBuffer, &errorMessage); + if (FAILED(result)) + { + // If the shader failed to compile it should have writen something to the error message. + if (errorMessage) + { + OutputShaderErrorMessage(errorMessage, hwnd, vsFilename); + } + // If there was nothing in the error message then it simply could not find the shader file itself. + else + { + MessageBox(hwnd, vsFilename, L"Missing Shader File", MB_OK); + } + + return false; + } + + // Compile the pixel shader code. + result = D3DCompileFromFile(psFilename, NULL, NULL, "LightPixelShader", "ps_5_0", D3D10_SHADER_ENABLE_STRICTNESS, 0, &pixelShaderBuffer, &errorMessage); + if (FAILED(result)) + { + // If the shader failed to compile it should have writen something to the error message. + if (errorMessage) + { + OutputShaderErrorMessage(errorMessage, hwnd, psFilename); + } + // If there was nothing in the error message then it simply could not find the file itself. + else + { + MessageBox(hwnd, psFilename, L"Missing Shader File", MB_OK); + } + + return false; + } + + // Create the vertex shader from the buffer. + result = device->CreateVertexShader(vertexShaderBuffer->GetBufferPointer(), vertexShaderBuffer->GetBufferSize(), NULL, &m_vertexShader); + if (FAILED(result)) + { + return false; + } + + // Create the pixel shader from the buffer. + result = device->CreatePixelShader(pixelShaderBuffer->GetBufferPointer(), pixelShaderBuffer->GetBufferSize(), NULL, &m_pixelShader); + if (FAILED(result)) + { + return false; + } + + // Create the vertex input layout description. + // This setup needs to match the VertexType stucture in the ModelClass and in the shader. + polygonLayout[0].SemanticName = "POSITION"; + polygonLayout[0].SemanticIndex = 0; + polygonLayout[0].Format = DXGI_FORMAT_R32G32B32_FLOAT; + polygonLayout[0].InputSlot = 0; + polygonLayout[0].AlignedByteOffset = 0; + polygonLayout[0].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; + polygonLayout[0].InstanceDataStepRate = 0; + + polygonLayout[1].SemanticName = "TEXCOORD"; + polygonLayout[1].SemanticIndex = 0; + polygonLayout[1].Format = DXGI_FORMAT_R32G32_FLOAT; + polygonLayout[1].InputSlot = 0; + polygonLayout[1].AlignedByteOffset = D3D11_APPEND_ALIGNED_ELEMENT; + polygonLayout[1].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; + polygonLayout[1].InstanceDataStepRate = 0; + + polygonLayout[2].SemanticName = "NORMAL"; + polygonLayout[2].SemanticIndex = 0; + polygonLayout[2].Format = DXGI_FORMAT_R32G32B32_FLOAT; + polygonLayout[2].InputSlot = 0; + polygonLayout[2].AlignedByteOffset = D3D11_APPEND_ALIGNED_ELEMENT; + polygonLayout[2].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; + polygonLayout[2].InstanceDataStepRate = 0; + + // Get a count of the elements in the layout. + numElements = sizeof(polygonLayout) / sizeof(polygonLayout[0]); + + // Create the vertex input layout. + result = device->CreateInputLayout(polygonLayout, numElements, vertexShaderBuffer->GetBufferPointer(), vertexShaderBuffer->GetBufferSize(), + &m_layout); + if (FAILED(result)) + { + return false; + } + + // Release the vertex shader buffer and pixel shader buffer since they are no longer needed. + vertexShaderBuffer->Release(); + vertexShaderBuffer = 0; + + pixelShaderBuffer->Release(); + pixelShaderBuffer = 0; + + // Create a texture sampler state description. + samplerDesc.Filter = D3D11_FILTER_MIN_MAG_MIP_LINEAR; + samplerDesc.AddressU = D3D11_TEXTURE_ADDRESS_WRAP; + samplerDesc.AddressV = D3D11_TEXTURE_ADDRESS_WRAP; + samplerDesc.AddressW = D3D11_TEXTURE_ADDRESS_WRAP; + samplerDesc.MipLODBias = 0.0f; + samplerDesc.MaxAnisotropy = 1; + samplerDesc.ComparisonFunc = D3D11_COMPARISON_ALWAYS; + samplerDesc.BorderColor[0] = 0; + samplerDesc.BorderColor[1] = 0; + samplerDesc.BorderColor[2] = 0; + samplerDesc.BorderColor[3] = 0; + samplerDesc.MinLOD = 0; + samplerDesc.MaxLOD = D3D11_FLOAT32_MAX; + + // Create the texture sampler state. + result = device->CreateSamplerState(&samplerDesc, &m_sampleState); + if (FAILED(result)) + { + return false; + } + + // Setup the description of the dynamic matrix constant buffer that is in the vertex shader. + matrixBufferDesc.Usage = D3D11_USAGE_DYNAMIC; + matrixBufferDesc.ByteWidth = sizeof(MatrixBufferType); + matrixBufferDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; + matrixBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + matrixBufferDesc.MiscFlags = 0; + matrixBufferDesc.StructureByteStride = 0; + + // Create the constant buffer pointer so we can access the vertex shader constant buffer from within this class. + result = device->CreateBuffer(&matrixBufferDesc, NULL, &m_matrixBuffer); + if (FAILED(result)) + { + return false; + } + + + + // Setup the description of the camera dynamic constant buffer that is in the vertex shader. + cameraBufferDesc.Usage = D3D11_USAGE_DYNAMIC; + cameraBufferDesc.ByteWidth = sizeof(CameraBufferType); + cameraBufferDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; + cameraBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + cameraBufferDesc.MiscFlags = 0; + cameraBufferDesc.StructureByteStride = 0; + + // Create the camera constant buffer pointer so we can access the vertex shader constant buffer from within this class. + result = device->CreateBuffer(&cameraBufferDesc, NULL, &m_cameraBuffer); + if (FAILED(result)) + { + return false; + } + + // Setup the description of the dynamic constant buffer that is in the pixel shader. + lightColorBufferDesc.Usage = D3D11_USAGE_DYNAMIC; + lightColorBufferDesc.ByteWidth = sizeof(LightColorBufferType); + lightColorBufferDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; + lightColorBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + lightColorBufferDesc.MiscFlags = 0; + lightColorBufferDesc.StructureByteStride = 0; + + // Create the constant buffer pointer so we can access the pixel shader constant buffer from within this class. + result = device->CreateBuffer(&lightColorBufferDesc, NULL, &m_lightColorBuffer); + if (FAILED(result)) + { + return false; + } + + // Setup the description of the dynamic constant buffer that is in the vertex shader. + lightPositionBufferDesc.Usage = D3D11_USAGE_DYNAMIC; + lightPositionBufferDesc.ByteWidth = sizeof(LightPositionBufferType); + lightPositionBufferDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; + lightPositionBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + lightPositionBufferDesc.MiscFlags = 0; + lightPositionBufferDesc.StructureByteStride = 0; + + // Create the constant buffer pointer so we can access the vertex shader constant buffer from within this class. + result = device->CreateBuffer(&lightPositionBufferDesc, NULL, &m_lightPositionBuffer); + if (FAILED(result)) + { + return false; + } + + return true; +} + + +void LightShaderClass::ShutdownShader() +{ + // Release the light constant buffers. + if (m_lightColorBuffer) + { + m_lightColorBuffer->Release(); + m_lightColorBuffer = 0; + } + + if (m_lightPositionBuffer) + { + m_lightPositionBuffer->Release(); + m_lightPositionBuffer = 0; + } + + // Release the light constant buffer. + if (m_lightBuffer) + { + m_lightBuffer->Release(); + m_lightBuffer = 0; + } + + // Release the camera constant buffer. + if (m_cameraBuffer) + { + m_cameraBuffer->Release(); + m_cameraBuffer = 0; + } + + // Release the matrix constant buffer. + if (m_matrixBuffer) + { + m_matrixBuffer->Release(); + m_matrixBuffer = 0; + } + + // Release the sampler state. + if (m_sampleState) + { + m_sampleState->Release(); + m_sampleState = 0; + } + + // Release the layout. + if (m_layout) + { + m_layout->Release(); + m_layout = 0; + } + + // Release the pixel shader. + if (m_pixelShader) + { + m_pixelShader->Release(); + m_pixelShader = 0; + } + + // Release the vertex shader. + if (m_vertexShader) + { + m_vertexShader->Release(); + m_vertexShader = 0; + } + + return; +} + + +void LightShaderClass::OutputShaderErrorMessage(ID3D10Blob* errorMessage, HWND hwnd, WCHAR* shaderFilename) +{ + char* compileErrors; + unsigned __int64 bufferSize, i; + ofstream fout; + + + // Get a pointer to the error message text buffer. + compileErrors = (char*)(errorMessage->GetBufferPointer()); + + // Get the length of the message. + bufferSize = errorMessage->GetBufferSize(); + + // Open a file to write the error message to. + fout.open("shader-error.txt"); + + // Write out the error message. + for (i = 0; i < bufferSize; i++) + { + fout << compileErrors[i]; + } + + // Close the file. + fout.close(); + + // Release the error message. + errorMessage->Release(); + errorMessage = 0; + + // Pop a message up on the screen to notify the user to check the text file for compile errors. + MessageBox(hwnd, L"Error compiling shader. Check shader-error.txt for message.", shaderFilename, MB_OK); + + return; +} + + +bool LightShaderClass::SetShaderParameters(ID3D11DeviceContext* deviceContext, XMMATRIX worldMatrix, XMMATRIX viewMatrix, XMMATRIX projectionMatrix, + ID3D11ShaderResourceView* texture, XMFLOAT4 diffuseColor[], XMFLOAT4 lightPosition[]) +{ + HRESULT result; + D3D11_MAPPED_SUBRESOURCE mappedResource; + unsigned int bufferNumber; + MatrixBufferType* dataPtr; + LightPositionBufferType* dataPtr2; + LightColorBufferType* dataPtr3; + + // Transpose the matrices to prepare them for the shader. + worldMatrix = XMMatrixTranspose(worldMatrix); + viewMatrix = XMMatrixTranspose(viewMatrix); + projectionMatrix = XMMatrixTranspose(projectionMatrix); + + // Lock the constant buffer so it can be written to. + result = deviceContext->Map(m_matrixBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); + if (FAILED(result)) + { + return false; + } + + // Get a pointer to the data in the constant buffer. + dataPtr = (MatrixBufferType*)mappedResource.pData; + + // Copy the matrices into the constant buffer. + dataPtr->world = worldMatrix; + dataPtr->view = viewMatrix; + dataPtr->projection = projectionMatrix; + + // Unlock the constant buffer. + deviceContext->Unmap(m_matrixBuffer, 0); + + // Set the position of the constant buffer in the vertex shader. + bufferNumber = 0; + + // Now set the constant buffer in the vertex shader with the updated values. + deviceContext->VSSetConstantBuffers(bufferNumber, 1, &m_matrixBuffer); + + // Lock the camera constant buffer so it can be written to. + result = deviceContext->Map(m_cameraBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); + if (FAILED(result)) + { + return false; + } + + // Lock the light position constant buffer so it can be written to. + result = deviceContext->Map(m_lightPositionBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); + if (FAILED(result)) + { + return false; + } + + // Get a pointer to the data in the constant buffer. + dataPtr2 = (LightPositionBufferType*)mappedResource.pData; + + // Copy the light position variables into the constant buffer. + dataPtr2->lightPosition[0] = lightPosition[0]; + dataPtr2->lightPosition[1] = lightPosition[1]; + dataPtr2->lightPosition[2] = lightPosition[2]; + dataPtr2->lightPosition[3] = lightPosition[3]; + + // Unlock the constant buffer. + deviceContext->Unmap(m_lightPositionBuffer, 0); + + // Set the position of the constant buffer in the vertex shader. + bufferNumber = 1; + + // Finally set the constant buffer in the vertex shader with the updated values. + deviceContext->VSSetConstantBuffers(bufferNumber, 1, &m_lightPositionBuffer); + + // Set shader texture resource in the pixel shader. + deviceContext->PSSetShaderResources(0, 1, &texture); + + // Lock the light color constant buffer so it can be written to. + result = deviceContext->Map(m_lightColorBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); + if (FAILED(result)) + { + return false; + } + + // Get a pointer to the data in the constant buffer. + dataPtr3 = (LightColorBufferType*)mappedResource.pData; + + // Copy the light color variables into the constant buffer. + dataPtr3->diffuseColor[0] = diffuseColor[0]; + dataPtr3->diffuseColor[1] = diffuseColor[1]; + dataPtr3->diffuseColor[2] = diffuseColor[2]; + dataPtr3->diffuseColor[3] = diffuseColor[3]; + + // Unlock the constant buffer. + deviceContext->Unmap(m_lightColorBuffer, 0); + + // Set the position of the constant buffer in the pixel shader. + bufferNumber = 0; + + // Finally set the constant buffer in the pixel shader with the updated values. + deviceContext->PSSetConstantBuffers(bufferNumber, 1, &m_lightColorBuffer); + + + return true; +} + + +void LightShaderClass::RenderShader(ID3D11DeviceContext* deviceContext, int indexCount) +{ + // Set the vertex input layout. + deviceContext->IASetInputLayout(m_layout); + + // Set the vertex and pixel shaders that will be used to render this triangle. + deviceContext->VSSetShader(m_vertexShader, NULL, 0); + deviceContext->PSSetShader(m_pixelShader, NULL, 0); + + // Set the sampler state in the pixel shader. + deviceContext->PSSetSamplers(0, 1, &m_sampleState); + + // Render the triangle. + deviceContext->DrawIndexed(indexCount, 0, 0); + + return; +} diff --git a/enginecustom/Lightshaderclass.h b/enginecustom/Lightshaderclass.h new file mode 100644 index 0000000..8e338b3 --- /dev/null +++ b/enginecustom/Lightshaderclass.h @@ -0,0 +1,92 @@ +//////////////////////////////////////////////////////////////////////////////// +// Filename: lightshaderclass.h +//////////////////////////////////////////////////////////////////////////////// +#ifndef _LIGHTSHADERCLASS_H_ +#define _LIGHTSHADERCLASS_H_ + + +///////////// +// GLOBALS // +///////////// +const int NUM_LIGHTS = 4; + +////////////// +// INCLUDES // +////////////// +#include +#include +#include +#include +using namespace DirectX; +using namespace std; + + +//////////////////////////////////////////////////////////////////////////////// +// Class name: LightShaderClass +//////////////////////////////////////////////////////////////////////////////// +class LightShaderClass +{ +private: + struct MatrixBufferType + { + XMMATRIX world; + XMMATRIX view; + XMMATRIX projection; + }; + + struct CameraBufferType + { + XMFLOAT3 cameraPosition; + float padding; + }; + + struct LightBufferType + { + XMFLOAT4 ambientColor; + XMFLOAT4 diffuseColor; + XMFLOAT3 lightDirection; + float padding; // Added extra padding so structure is a multiple of 16 for CreateBuffer function requirements. + float specularPower; + XMFLOAT4 specularColor; + }; + + struct LightColorBufferType + { + XMFLOAT4 diffuseColor[NUM_LIGHTS]; + }; + + struct LightPositionBufferType + { + XMFLOAT4 lightPosition[NUM_LIGHTS]; + }; + +public: + LightShaderClass(); + LightShaderClass(const LightShaderClass&); + ~LightShaderClass(); + + bool Initialize(ID3D11Device*, HWND); + void Shutdown(); + bool Render(ID3D11DeviceContext*, int, XMMATRIX, XMMATRIX, XMMATRIX, ID3D11ShaderResourceView*, XMFLOAT4[], XMFLOAT4[]); + +private: + bool InitializeShader(ID3D11Device*, HWND, WCHAR*, WCHAR*); + void ShutdownShader(); + void OutputShaderErrorMessage(ID3D10Blob*, HWND, WCHAR*); + + bool SetShaderParameters(ID3D11DeviceContext*, XMMATRIX, XMMATRIX, XMMATRIX, ID3D11ShaderResourceView*, XMFLOAT4[], XMFLOAT4[]); + void RenderShader(ID3D11DeviceContext*, int); + +private: + ID3D11VertexShader* m_vertexShader; + ID3D11PixelShader* m_pixelShader; + ID3D11InputLayout* m_layout; + ID3D11SamplerState* m_sampleState; + ID3D11Buffer* m_matrixBuffer; + ID3D11Buffer* m_cameraBuffer; + ID3D11Buffer* m_lightBuffer; + ID3D11Buffer* m_lightColorBuffer; + ID3D11Buffer* m_lightPositionBuffer; +}; + +#endif \ No newline at end of file diff --git a/enginecustom/Multitexture.ps b/enginecustom/Multitexture.ps new file mode 100644 index 0000000..f4f160d --- /dev/null +++ b/enginecustom/Multitexture.ps @@ -0,0 +1,45 @@ +//////////////////////////////////////////////////////////////////////////////// +// Filename: multitexture.ps +//////////////////////////////////////////////////////////////////////////////// + + +///////////// +// GLOBALS // +///////////// + +Texture2D shaderTexture1 : register(t0); +Texture2D shaderTexture2 : register(t1); +SamplerState SampleType : register(s0); + + +////////////// +// TYPEDEFS // +////////////// +struct PixelInputType +{ + float4 position : SV_POSITION; + float2 tex : TEXCOORD0; +}; + + +//////////////////////////////////////////////////////////////////////////////// +// Pixel Shader +//////////////////////////////////////////////////////////////////////////////// +float4 MultiTexturePixelShader(PixelInputType input) : SV_TARGET +{ + float4 color1; + float4 color2; + float4 blendColor; + + // Sample the pixel color from the textures using the sampler at this texture coordinate location. + color1 = shaderTexture1.Sample(SampleType, input.tex); + color2 = shaderTexture2.Sample(SampleType, input.tex); + + // Combine the two textures together. + blendColor = color1 * color2 * 2.0; + + // Saturate the final color. + blendColor = saturate(blendColor); + + return blendColor; +} diff --git a/enginecustom/Multitexture.vs b/enginecustom/Multitexture.vs new file mode 100644 index 0000000..f1261a6 --- /dev/null +++ b/enginecustom/Multitexture.vs @@ -0,0 +1,54 @@ +//////////////////////////////////////////////////////////////////////////////// +// Filename: multitexture.vs +//////////////////////////////////////////////////////////////////////////////// + + +///////////// +// GLOBALS // +///////////// +cbuffer MatrixBuffer +{ + matrix worldMatrix; + matrix viewMatrix; + matrix projectionMatrix; +}; + + +////////////// +// TYPEDEFS // +////////////// +struct VertexInputType +{ + float4 position : POSITION; + float2 tex : TEXCOORD0; + float3 normal : NORMAL; +}; + +struct PixelInputType +{ + float4 position : SV_POSITION; + float2 tex : TEXCOORD0; +}; + + +//////////////////////////////////////////////////////////////////////////////// +// Vertex Shader +//////////////////////////////////////////////////////////////////////////////// +PixelInputType MultiTextureVertexShader(VertexInputType input) +{ + PixelInputType output; + + + // Change the position vector to be 4 units for proper matrix calculations. + input.position.w = 1.0f; + + // Calculate the position of the vertex against the world, view, and projection matrices. + output.position = mul(input.position, worldMatrix); + output.position = mul(output.position, viewMatrix); + output.position = mul(output.position, projectionMatrix); + + // Store the texture coordinates for the pixel shader. + output.tex = input.tex; + + return output; +} diff --git a/enginecustom/Multitextureshaderclass.cpp b/enginecustom/Multitextureshaderclass.cpp new file mode 100644 index 0000000..7a9f63d --- /dev/null +++ b/enginecustom/Multitextureshaderclass.cpp @@ -0,0 +1,373 @@ +//////////////////////////////////////////////////////////////////////////////// +// Filename: multitextureshaderclass.cpp +//////////////////////////////////////////////////////////////////////////////// +#include "multitextureshaderclass.h" + + +MultiTextureShaderClass::MultiTextureShaderClass() +{ + m_vertexShader = 0; + m_pixelShader = 0; + m_layout = 0; + m_matrixBuffer = 0; + m_sampleState = 0; +} + + +MultiTextureShaderClass::MultiTextureShaderClass(const MultiTextureShaderClass& other) +{ +} + + +MultiTextureShaderClass::~MultiTextureShaderClass() +{ +} + + +bool MultiTextureShaderClass::Initialize(ID3D11Device* device, HWND hwnd) +{ + bool result; + wchar_t vsFilename[128]; + wchar_t psFilename[128]; + int error; + + // Set the filename of the vertex shader. + error = wcscpy_s(vsFilename, 128, L"multitexture.vs"); + if (error != 0) + { + return false; + } + + // Set the filename of the pixel shader. + error = wcscpy_s(psFilename, 128, L"multitexture.ps"); + if (error != 0) + { + return false; + } + + // Initialize the vertex and pixel shaders. + result = InitializeShader(device, hwnd, vsFilename, psFilename); + if (!result) + { + return false; + } + + return true; +} + +void MultiTextureShaderClass::Shutdown() +{ + // Shutdown the vertex and pixel shaders as well as the related objects. + ShutdownShader(); + + return; +} + +bool MultiTextureShaderClass::Render(ID3D11DeviceContext* deviceContext, int indexCount, XMMATRIX worldMatrix, XMMATRIX viewMatrix, + XMMATRIX projectionMatrix, ID3D11ShaderResourceView* texture1, ID3D11ShaderResourceView* texture2) +{ + bool result; + + + // Set the shader parameters that it will use for rendering. + result = SetShaderParameters(deviceContext, worldMatrix, viewMatrix, projectionMatrix, texture1, texture2); + if (!result) + { + return false; + } + + // Now render the prepared buffers with the shader. + RenderShader(deviceContext, indexCount); + + return true; +} + +bool MultiTextureShaderClass::InitializeShader(ID3D11Device* device, HWND hwnd, WCHAR* vsFilename, WCHAR* psFilename) +{ + HRESULT result; + ID3D10Blob* errorMessage; + ID3D10Blob* vertexShaderBuffer; + ID3D10Blob* pixelShaderBuffer; + D3D11_INPUT_ELEMENT_DESC polygonLayout[3]; + unsigned int numElements; + D3D11_BUFFER_DESC matrixBufferDesc; + D3D11_SAMPLER_DESC samplerDesc; + + + // Initialize the pointers this function will use to null. + errorMessage = 0; + vertexShaderBuffer = 0; + pixelShaderBuffer = 0; + + // Compile the vertex shader code. + result = D3DCompileFromFile(vsFilename, NULL, NULL, "MultiTextureVertexShader", "vs_5_0", D3D10_SHADER_ENABLE_STRICTNESS, 0, + &vertexShaderBuffer, &errorMessage); + if (FAILED(result)) + { + // If the shader failed to compile it should have writen something to the error message. + if (errorMessage) + { + OutputShaderErrorMessage(errorMessage, hwnd, vsFilename); + } + // If there was nothing in the error message then it simply could not find the shader file itself. + else + { + MessageBox(hwnd, vsFilename, L"Missing Shader File", MB_OK); + } + + return false; + } + + // Compile the pixel shader code. + result = D3DCompileFromFile(psFilename, NULL, NULL, "MultiTexturePixelShader", "ps_5_0", D3D10_SHADER_ENABLE_STRICTNESS, 0, + &pixelShaderBuffer, &errorMessage); + if (FAILED(result)) + { + // If the shader failed to compile it should have writen something to the error message. + if (errorMessage) + { + OutputShaderErrorMessage(errorMessage, hwnd, psFilename); + } + // If there was nothing in the error message then it simply could not find the file itself. + else + { + MessageBox(hwnd, psFilename, L"Missing Shader File", MB_OK); + } + + return false; + } + + // Create the vertex shader from the buffer. + result = device->CreateVertexShader(vertexShaderBuffer->GetBufferPointer(), vertexShaderBuffer->GetBufferSize(), NULL, &m_vertexShader); + if (FAILED(result)) + { + return false; + } + + // Create the pixel shader from the buffer. + result = device->CreatePixelShader(pixelShaderBuffer->GetBufferPointer(), pixelShaderBuffer->GetBufferSize(), NULL, &m_pixelShader); + if (FAILED(result)) + { + return false; + } + + // Create the vertex input layout description. + polygonLayout[0].SemanticName = "POSITION"; + polygonLayout[0].SemanticIndex = 0; + polygonLayout[0].Format = DXGI_FORMAT_R32G32B32_FLOAT; + polygonLayout[0].InputSlot = 0; + polygonLayout[0].AlignedByteOffset = 0; + polygonLayout[0].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; + polygonLayout[0].InstanceDataStepRate = 0; + + polygonLayout[1].SemanticName = "TEXCOORD"; + polygonLayout[1].SemanticIndex = 0; + polygonLayout[1].Format = DXGI_FORMAT_R32G32_FLOAT; + polygonLayout[1].InputSlot = 0; + polygonLayout[1].AlignedByteOffset = D3D11_APPEND_ALIGNED_ELEMENT; + polygonLayout[1].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; + polygonLayout[1].InstanceDataStepRate = 0; + + polygonLayout[2].SemanticName = "NORMAL"; + polygonLayout[2].SemanticIndex = 0; + polygonLayout[2].Format = DXGI_FORMAT_R32G32B32_FLOAT; + polygonLayout[2].InputSlot = 0; + polygonLayout[2].AlignedByteOffset = D3D11_APPEND_ALIGNED_ELEMENT; + polygonLayout[2].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; + polygonLayout[2].InstanceDataStepRate = 0; + + // Get a count of the elements in the layout. + numElements = sizeof(polygonLayout) / sizeof(polygonLayout[0]); + + // Create the vertex input layout. + result = device->CreateInputLayout(polygonLayout, numElements, vertexShaderBuffer->GetBufferPointer(), + vertexShaderBuffer->GetBufferSize(), &m_layout); + if (FAILED(result)) + { + return false; + } + + // Release the vertex shader buffer and pixel shader buffer since they are no longer needed. + vertexShaderBuffer->Release(); + vertexShaderBuffer = 0; + + pixelShaderBuffer->Release(); + pixelShaderBuffer = 0; + + // Setup the description of the dynamic matrix constant buffer that is in the vertex shader. + matrixBufferDesc.Usage = D3D11_USAGE_DYNAMIC; + matrixBufferDesc.ByteWidth = sizeof(MatrixBufferType); + matrixBufferDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; + matrixBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + matrixBufferDesc.MiscFlags = 0; + matrixBufferDesc.StructureByteStride = 0; + + // Create the constant buffer pointer so we can access the vertex shader constant buffer from within this class. + result = device->CreateBuffer(&matrixBufferDesc, NULL, &m_matrixBuffer); + if (FAILED(result)) + { + return false; + } + + // Create a texture sampler state description. + samplerDesc.Filter = D3D11_FILTER_MIN_MAG_MIP_LINEAR; + samplerDesc.AddressU = D3D11_TEXTURE_ADDRESS_WRAP; + samplerDesc.AddressV = D3D11_TEXTURE_ADDRESS_WRAP; + samplerDesc.AddressW = D3D11_TEXTURE_ADDRESS_WRAP; + samplerDesc.MipLODBias = 0.0f; + samplerDesc.MaxAnisotropy = 1; + samplerDesc.ComparisonFunc = D3D11_COMPARISON_ALWAYS; + samplerDesc.BorderColor[0] = 0; + samplerDesc.BorderColor[1] = 0; + samplerDesc.BorderColor[2] = 0; + samplerDesc.BorderColor[3] = 0; + samplerDesc.MinLOD = 0; + samplerDesc.MaxLOD = D3D11_FLOAT32_MAX; + + // Create the texture sampler state. + result = device->CreateSamplerState(&samplerDesc, &m_sampleState); + if (FAILED(result)) + { + return false; + } + + return true; +} + +void MultiTextureShaderClass::ShutdownShader() +{ + // Release the sampler state. + if (m_sampleState) + { + m_sampleState->Release(); + m_sampleState = 0; + } + + // Release the matrix constant buffer. + if (m_matrixBuffer) + { + m_matrixBuffer->Release(); + m_matrixBuffer = 0; + } + + // Release the layout. + if (m_layout) + { + m_layout->Release(); + m_layout = 0; + } + + // Release the pixel shader. + if (m_pixelShader) + { + m_pixelShader->Release(); + m_pixelShader = 0; + } + + // Release the vertex shader. + if (m_vertexShader) + { + m_vertexShader->Release(); + m_vertexShader = 0; + } + + return; +} + +void MultiTextureShaderClass::OutputShaderErrorMessage(ID3D10Blob* errorMessage, HWND hwnd, WCHAR* shaderFilename) +{ + char* compileErrors; + unsigned long long bufferSize, i; + ofstream fout; + + + // Get a pointer to the error message text buffer. + compileErrors = (char*)(errorMessage->GetBufferPointer()); + + // Get the length of the message. + bufferSize = errorMessage->GetBufferSize(); + + // Open a file to write the error message to. + fout.open("shader-error.txt"); + + // Write out the error message. + for (i = 0; i < bufferSize; i++) + { + fout << compileErrors[i]; + } + + // Close the file. + fout.close(); + + // Release the error message. + errorMessage->Release(); + errorMessage = 0; + + // Pop a message up on the screen to notify the user to check the text file for compile errors. + MessageBox(hwnd, L"Error compiling shader. Check shader-error.txt for message.", shaderFilename, MB_OK); + + return; +} + +bool MultiTextureShaderClass::SetShaderParameters(ID3D11DeviceContext* deviceContext, XMMATRIX worldMatrix, XMMATRIX viewMatrix, + XMMATRIX projectionMatrix, ID3D11ShaderResourceView* texture1, ID3D11ShaderResourceView* texture2) +{ + HRESULT result; + D3D11_MAPPED_SUBRESOURCE mappedResource; + MatrixBufferType* dataPtr; + unsigned int bufferNumber; + + + // Transpose the matrices to prepare them for the shader. + worldMatrix = XMMatrixTranspose(worldMatrix); + viewMatrix = XMMatrixTranspose(viewMatrix); + projectionMatrix = XMMatrixTranspose(projectionMatrix); + + // Lock the constant buffer so it can be written to. + result = deviceContext->Map(m_matrixBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); + if (FAILED(result)) + { + return false; + } + + // Get a pointer to the data in the constant buffer. + dataPtr = (MatrixBufferType*)mappedResource.pData; + + // Copy the matrices into the constant buffer. + dataPtr->world = worldMatrix; + dataPtr->view = viewMatrix; + dataPtr->projection = projectionMatrix; + + // Unlock the constant buffer. + deviceContext->Unmap(m_matrixBuffer, 0); + + // Set the position of the constant buffer in the vertex shader. + bufferNumber = 0; + + // Finally set the constant buffer in the vertex shader with the updated values. + deviceContext->VSSetConstantBuffers(bufferNumber, 1, &m_matrixBuffer); + + // Set shader texture resources in the pixel shader. + deviceContext->PSSetShaderResources(0, 1, &texture1); + deviceContext->PSSetShaderResources(1, 1, &texture2); + + return true; +} + +void MultiTextureShaderClass::RenderShader(ID3D11DeviceContext* deviceContext, int indexCount) +{ + // Set the vertex input layout. + deviceContext->IASetInputLayout(m_layout); + + // Set the vertex and pixel shaders that will be used to render this triangle. + deviceContext->VSSetShader(m_vertexShader, NULL, 0); + deviceContext->PSSetShader(m_pixelShader, NULL, 0); + + // Set the sampler state in the pixel shader. + deviceContext->PSSetSamplers(0, 1, &m_sampleState); + + // Render the triangle. + deviceContext->DrawIndexed(indexCount, 0, 0); + + return; +} diff --git a/enginecustom/Multitextureshaderclass.h b/enginecustom/Multitextureshaderclass.h new file mode 100644 index 0000000..c22ff53 --- /dev/null +++ b/enginecustom/Multitextureshaderclass.h @@ -0,0 +1,57 @@ +//////////////////////////////////////////////////////////////////////////////// +// Filename: multitextureshaderclass.h +//////////////////////////////////////////////////////////////////////////////// +#ifndef _MULTITEXTURESHADERCLASS_H_ +#define _MULTITEXTURESHADERCLASS_H_ + + +////////////// +// INCLUDES // +////////////// +#include +#include +#include +#include +using namespace DirectX; +using namespace std; + + +//////////////////////////////////////////////////////////////////////////////// +// Class name: MultiTextureShaderClass +//////////////////////////////////////////////////////////////////////////////// +class MultiTextureShaderClass +{ +private: + struct MatrixBufferType + { + XMMATRIX world; + XMMATRIX view; + XMMATRIX projection; + }; + +public: + MultiTextureShaderClass(); + MultiTextureShaderClass(const MultiTextureShaderClass&); + ~MultiTextureShaderClass(); + + bool Initialize(ID3D11Device*, HWND); + void Shutdown(); + bool Render(ID3D11DeviceContext*, int, XMMATRIX, XMMATRIX, XMMATRIX, ID3D11ShaderResourceView*, ID3D11ShaderResourceView*); + +private: + bool InitializeShader(ID3D11Device*, HWND, WCHAR*, WCHAR*); + void ShutdownShader(); + void OutputShaderErrorMessage(ID3D10Blob*, HWND, WCHAR*); + + bool SetShaderParameters(ID3D11DeviceContext*, XMMATRIX, XMMATRIX, XMMATRIX, ID3D11ShaderResourceView*, ID3D11ShaderResourceView*); + void RenderShader(ID3D11DeviceContext*, int); + +private: + ID3D11VertexShader* m_vertexShader; + ID3D11PixelShader* m_pixelShader; + ID3D11InputLayout* m_layout; + ID3D11Buffer* m_matrixBuffer; + ID3D11SamplerState* m_sampleState; +}; + +#endif diff --git a/enginecustom/Spriteclass.cpp b/enginecustom/Spriteclass.cpp new file mode 100644 index 0000000..14e17bf --- /dev/null +++ b/enginecustom/Spriteclass.cpp @@ -0,0 +1,421 @@ +#include "spriteclass.h" + + +SpriteClass::SpriteClass() +{ + m_vertexBuffer = 0; + m_indexBuffer = 0; + m_Textures = 0; +} + + +SpriteClass::SpriteClass(const SpriteClass& other) +{ +} + + +SpriteClass::~SpriteClass() +{ +} + +bool SpriteClass::Initialize(ID3D11Device* device, ID3D11DeviceContext* deviceContext, int screenWidth, int screenHeight, char* spriteFilename, int renderX, int renderY) +{ + bool result; + + + // Store the screen size. + m_screenWidth = screenWidth; + m_screenHeight = screenHeight; + + // Store where the sprite should be rendered to. + m_renderX = renderX; + m_renderY = renderY; + + // Initialize the frame time for this sprite object. + m_frameTime = 0; + + // Initialize the vertex and index buffer that hold the geometry for the sprite bitmap. + result = InitializeBuffers(device); + if (!result) + { + return false; + } + + // Load the textures for this sprite. + result = LoadTextures(device, deviceContext, spriteFilename); + if (!result) + { + return false; + } + + return true; +} + + +void SpriteClass::Shutdown() +{ + // Release the textures used for this sprite. + ReleaseTextures(); + + // Release the vertex and index buffers. + ShutdownBuffers(); + + return; +} + + +bool SpriteClass::Render(ID3D11DeviceContext* deviceContext) +{ + bool result; + + + // Update the buffers if the position of the sprite has changed from its original position. + result = UpdateBuffers(deviceContext); + if (!result) + { + return false; + } + + // Put the vertex and index buffers on the graphics pipeline to prepare them for drawing. + RenderBuffers(deviceContext); + + return true; +} + +void SpriteClass::Update(float frameTime) +{ + // Increment the frame time each frame. + m_frameTime += frameTime; + + // Check if the frame time has reached the cycle time. + if (m_frameTime >= m_cycleTime) + { + // If it has then reset the frame time and cycle to the next sprite in the texture array. + m_frameTime -= m_cycleTime; + + m_currentTexture++; + + // If we are at the last sprite texture then go back to the beginning of the texture array to the first texture again. + if (m_currentTexture == m_textureCount) + { + m_currentTexture = 0; + } + } + + return; +} + + +int SpriteClass::GetIndexCount() +{ + return m_indexCount; +} + +ID3D11ShaderResourceView* SpriteClass::GetTexture() +{ + return m_Textures[m_currentTexture].GetTexture(); +} + + +bool SpriteClass::InitializeBuffers(ID3D11Device* device) +{ + VertexType* vertices; + unsigned long* indices; + D3D11_BUFFER_DESC vertexBufferDesc, indexBufferDesc; + D3D11_SUBRESOURCE_DATA vertexData, indexData; + HRESULT result; + int i; + + + // Initialize the previous rendering position to negative one. + m_prevPosX = -1; + m_prevPosY = -1; + + // Set the number of vertices in the vertex array. + m_vertexCount = 6; + + // Set the number of indices in the index array. + m_indexCount = m_vertexCount; + + // Create the vertex array. + vertices = new VertexType[m_vertexCount]; + + // Create the index array. + indices = new unsigned long[m_indexCount]; + + // Initialize vertex array to zeros at first. + memset(vertices, 0, (sizeof(VertexType) * m_vertexCount)); + + // Load the index array with data. + for (i = 0; i < m_indexCount; i++) + { + indices[i] = i; + } + + // Set up the description of the dynamic vertex buffer. + vertexBufferDesc.Usage = D3D11_USAGE_DYNAMIC; + vertexBufferDesc.ByteWidth = sizeof(VertexType) * m_vertexCount; + vertexBufferDesc.BindFlags = D3D11_BIND_VERTEX_BUFFER; + vertexBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + vertexBufferDesc.MiscFlags = 0; + vertexBufferDesc.StructureByteStride = 0; + + // Give the subresource structure a pointer to the vertex data. + vertexData.pSysMem = vertices; + vertexData.SysMemPitch = 0; + vertexData.SysMemSlicePitch = 0; + + // Now finally create the vertex buffer. + result = device->CreateBuffer(&vertexBufferDesc, &vertexData, &m_vertexBuffer); + if (FAILED(result)) + { + return false; + } + + // Set up the description of the index buffer. + indexBufferDesc.Usage = D3D11_USAGE_DEFAULT; + indexBufferDesc.ByteWidth = sizeof(unsigned long) * m_indexCount; + indexBufferDesc.BindFlags = D3D11_BIND_INDEX_BUFFER; + indexBufferDesc.CPUAccessFlags = 0; + indexBufferDesc.MiscFlags = 0; + indexBufferDesc.StructureByteStride = 0; + + // Give the subresource structure a pointer to the index data. + indexData.pSysMem = indices; + indexData.SysMemPitch = 0; + indexData.SysMemSlicePitch = 0; + + // Create the index buffer. + result = device->CreateBuffer(&indexBufferDesc, &indexData, &m_indexBuffer); + if (FAILED(result)) + { + return false; + } + + // Release the arrays now that the vertex and index buffers have been created and loaded. + delete[] vertices; + vertices = 0; + + delete[] indices; + indices = 0; + + return true; +} + + +void SpriteClass::ShutdownBuffers() +{ + // Release the index buffer. + if (m_indexBuffer) + { + m_indexBuffer->Release(); + m_indexBuffer = 0; + } + + // Release the vertex buffer. + if (m_vertexBuffer) + { + m_vertexBuffer->Release(); + m_vertexBuffer = 0; + } + + return; +} + + +bool SpriteClass::UpdateBuffers(ID3D11DeviceContext* deviceContent) +{ + float left, right, top, bottom; + VertexType* vertices; + D3D11_MAPPED_SUBRESOURCE mappedResource; + VertexType* dataPtr; + HRESULT result; + + + // If the position we are rendering this bitmap to hasn't changed then don't update the vertex buffer. + if ((m_prevPosX == m_renderX) && (m_prevPosY == m_renderY)) + { + return true; + } + + // If the rendering location has changed then store the new position and update the vertex buffer. + m_prevPosX = m_renderX; + m_prevPosY = m_renderY; + + // Create the vertex array. + vertices = new VertexType[m_vertexCount]; + + // Calculate the screen coordinates of the left side of the bitmap. + left = (float)((m_screenWidth / 2) * -1) + (float)m_renderX; + + // Calculate the screen coordinates of the right side of the bitmap. + right = left + (float)m_bitmapWidth; + + // Calculate the screen coordinates of the top of the bitmap. + top = (float)(m_screenHeight / 2) - (float)m_renderY; + + // Calculate the screen coordinates of the bottom of the bitmap. + bottom = top - (float)m_bitmapHeight; + + // Load the vertex array with data. + // First triangle. + vertices[0].position = XMFLOAT3(left, top, 0.0f); // Top left. + vertices[0].texture = XMFLOAT2(0.0f, 0.0f); + + vertices[1].position = XMFLOAT3(right, bottom, 0.0f); // Bottom right. + vertices[1].texture = XMFLOAT2(1.0f, 1.0f); + + vertices[2].position = XMFLOAT3(left, bottom, 0.0f); // Bottom left. + vertices[2].texture = XMFLOAT2(0.0f, 1.0f); + + // Second triangle. + vertices[3].position = XMFLOAT3(left, top, 0.0f); // Top left. + vertices[3].texture = XMFLOAT2(0.0f, 0.0f); + + vertices[4].position = XMFLOAT3(right, top, 0.0f); // Top right. + vertices[4].texture = XMFLOAT2(1.0f, 0.0f); + + vertices[5].position = XMFLOAT3(right, bottom, 0.0f); // Bottom right. + vertices[5].texture = XMFLOAT2(1.0f, 1.0f); + + // Lock the vertex buffer. + result = deviceContent->Map(m_vertexBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); + if (FAILED(result)) + { + return false; + } + + // Get a pointer to the data in the constant buffer. + dataPtr = (VertexType*)mappedResource.pData; + + // Copy the data into the vertex buffer. + memcpy(dataPtr, (void*)vertices, (sizeof(VertexType) * m_vertexCount)); + + // Unlock the vertex buffer. + deviceContent->Unmap(m_vertexBuffer, 0); + + // Release the pointer reference. + dataPtr = 0; + + // Release the vertex array as it is no longer needed. + delete[] vertices; + vertices = 0; + + return true; +} + + +void SpriteClass::RenderBuffers(ID3D11DeviceContext* deviceContext) +{ + unsigned int stride; + unsigned int offset; + + + // Set vertex buffer stride and offset. + stride = sizeof(VertexType); + offset = 0; + + // Set the vertex buffer to active in the input assembler so it can be rendered. + deviceContext->IASetVertexBuffers(0, 1, &m_vertexBuffer, &stride, &offset); + + // Set the index buffer to active in the input assembler so it can be rendered. + deviceContext->IASetIndexBuffer(m_indexBuffer, DXGI_FORMAT_R32_UINT, 0); + + // Set the type of primitive that should be rendered from this vertex buffer, in this case triangles. + deviceContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST); + + return; +} + +bool SpriteClass::LoadTextures(ID3D11Device* device, ID3D11DeviceContext* deviceContext, char* filename) +{ + char textureFilename[128]; + std::ifstream fin; + int i, j; + char input; + bool result; + + + // Open the sprite info data file. + fin.open(filename); + if (fin.fail()) + { + return false; + } + + // Read in the number of textures. + fin >> m_textureCount; + + // Create and initialize the texture array with the texture count from the file. + m_Textures = new TextureClass[m_textureCount]; + + // Read to start of next line. + fin.get(input); + + // Read in each texture file name. + for (i = 0; i < m_textureCount; i++) + { + j = 0; + fin.get(input); + while (input != '\n') + { + textureFilename[j] = input; + j++; + fin.get(input); + } + textureFilename[j] = '\0'; + + // Once you have the filename then load the texture in the texture array. + result = m_Textures[i].Initialize(device, deviceContext, textureFilename); + if (!result) + { + return false; + } + } + + // Read in the cycle time. + fin >> m_cycleTime; + + // Convert the integer milliseconds to float representation. + m_cycleTime = m_cycleTime * 0.001f; + + // Close the file. + fin.close(); + + // Get the dimensions of the first texture and use that as the dimensions of the 2D sprite images. + m_bitmapWidth = m_Textures[0].GetWidth(); + m_bitmapHeight = m_Textures[0].GetHeight(); + + // Set the starting texture in the cycle to be the first one in the list. + m_currentTexture = 0; + + return true; +} + +void SpriteClass::ReleaseTextures() +{ + int i; + + + // Release the texture objects. + if (m_Textures) + { + for (i = 0; i < m_textureCount; i++) + { + m_Textures[i].Shutdown(); + } + + delete[] m_Textures; + m_Textures = 0; + } + + return; +} + + +void SpriteClass::SetRenderLocation(int x, int y) +{ + m_renderX = x; + m_renderY = y; + return; +} diff --git a/enginecustom/Spriteclass.h b/enginecustom/Spriteclass.h new file mode 100644 index 0000000..5cf28cf --- /dev/null +++ b/enginecustom/Spriteclass.h @@ -0,0 +1,63 @@ +#ifndef _SPRITECLASS_H_ +#define _SPRITECLASS_H_ + + +////////////// +// INCLUDES // +////////////// +#include +#include +using namespace DirectX; + + +/////////////////////// +// MY CLASS INCLUDES // +/////////////////////// +#include "textureclass.h" + + +//////////////////////////////////////////////////////////////////////////////// +// Class name: SpriteClass +//////////////////////////////////////////////////////////////////////////////// +class SpriteClass +{ +private: + struct VertexType + { + XMFLOAT3 position; + XMFLOAT2 texture; + }; + +public: + SpriteClass(); + SpriteClass(const SpriteClass&); + ~SpriteClass(); + + bool Initialize(ID3D11Device*, ID3D11DeviceContext*, int, int, char*, int, int); + void Shutdown(); + bool Render(ID3D11DeviceContext*); + void Update(float); + + int GetIndexCount(); + ID3D11ShaderResourceView* GetTexture(); + + void SetRenderLocation(int, int); + +private: + bool InitializeBuffers(ID3D11Device*); + void ShutdownBuffers(); + bool UpdateBuffers(ID3D11DeviceContext*); + void RenderBuffers(ID3D11DeviceContext*); + + bool LoadTextures(ID3D11Device*, ID3D11DeviceContext*, char*); + void ReleaseTextures(); + +private: + ID3D11Buffer* m_vertexBuffer, * m_indexBuffer; + int m_vertexCount, m_indexCount, m_screenWidth, m_screenHeight, m_bitmapWidth, m_bitmapHeight, m_renderX, m_renderY, m_prevPosX, m_prevPosY; + TextureClass* m_Textures; + float m_frameTime, m_cycleTime; + int m_currentTexture, m_textureCount; +}; + +#endif \ No newline at end of file diff --git a/enginecustom/Systemclass.cpp b/enginecustom/Systemclass.cpp index d4ee758..5b04bb6 100644 --- a/enginecustom/Systemclass.cpp +++ b/enginecustom/Systemclass.cpp @@ -282,9 +282,9 @@ void SystemClass::InitializeWindows(int& screenWidth, int& screenHeight) } else { - // If windowed then set it to 800x600 resolution. - screenWidth = 800; - screenHeight = 600; + // If windowed then set it to 1600x900 resolution. + screenWidth = 1600; + screenHeight = 900; // Place the window in the middle of the screen. posX = (GetSystemMetrics(SM_CXSCREEN) - screenWidth) / 2; diff --git a/enginecustom/Timerclass.cpp b/enginecustom/Timerclass.cpp new file mode 100644 index 0000000..1b21aa6 --- /dev/null +++ b/enginecustom/Timerclass.cpp @@ -0,0 +1,63 @@ +#include "timerclass.h" + + +TimerClass::TimerClass() +{ +} + + +TimerClass::TimerClass(const TimerClass& other) +{ +} + + +TimerClass::~TimerClass() +{ +} + +bool TimerClass::Initialize() +{ + INT64 frequency; + + + // Get the cycles per second speed for this system. + QueryPerformanceFrequency((LARGE_INTEGER*)&frequency); + if (frequency == 0) + { + return false; + } + + // Store it in floating point. + m_frequency = (float)frequency; + + // Get the initial start time. + QueryPerformanceCounter((LARGE_INTEGER*)&m_startTime); + + return true; +} + +void TimerClass::Frame() +{ + INT64 currentTime; + INT64 elapsedTicks; + + + // Query the current time. + QueryPerformanceCounter((LARGE_INTEGER*)¤tTime); + + // Calculate the difference in time since the last time we queried for the current time. + elapsedTicks = currentTime - m_startTime; + + // Calculate the frame time. + m_frameTime = (float)elapsedTicks / m_frequency; + + // Restart the timer. + m_startTime = currentTime; + + return; +} + +float TimerClass::GetTime() +{ + return m_frameTime; +} diff --git a/enginecustom/Timerclass.h b/enginecustom/Timerclass.h new file mode 100644 index 0000000..d0c5cb7 --- /dev/null +++ b/enginecustom/Timerclass.h @@ -0,0 +1,32 @@ +#ifndef _TIMERCLASS_H_ +#define _TIMERCLASS_H_ + + +////////////// +// INCLUDES // +////////////// +#include + + +//////////////////////////////////////////////////////////////////////////////// +// Class name: TimerClass +//////////////////////////////////////////////////////////////////////////////// +class TimerClass +{ +public: + TimerClass(); + TimerClass(const TimerClass&); + ~TimerClass(); + + bool Initialize(); + void Frame(); + + float GetTime(); + +private: + float m_frequency; + INT64 m_startTime; + float m_frameTime; +}; + +#endif \ No newline at end of file diff --git a/enginecustom/applicationclass.cpp b/enginecustom/applicationclass.cpp index 5cfad25..2c8f347 100644 --- a/enginecustom/applicationclass.cpp +++ b/enginecustom/applicationclass.cpp @@ -3,10 +3,23 @@ ApplicationClass::ApplicationClass() { m_Direct3D = 0; - m_Camera = 0; + m_Camera = 0; + m_MultiTextureShader = 0; m_Model = 0; m_LightShader = 0; + m_Light = 0; + m_TextureShader = 0; + m_Bitmap = 0; + m_Sprite = 0; + m_Timer = 0; m_Lights = 0; + m_FontShader = 0; + m_Font = 0; + m_TextString1 = 0; + m_TextString2 = 0; + m_TextString3 = 0; + m_Fps = 0; + m_FpsString = 0; } @@ -22,8 +35,12 @@ ApplicationClass::~ApplicationClass() bool ApplicationClass::Initialize(int screenWidth, int screenHeight, HWND hwnd) { + char testString1[32], testString2[32], testString3[32]; char modelFilename[128]; - char textureFilename[128]; + char textureFilename1[128], textureFilename2[128]; + char bitmapFilename[128]; + char spriteFilename[128]; + char fpsString[32]; bool result; // Create the Direct3D object. @@ -48,25 +65,131 @@ bool ApplicationClass::Initialize(int screenWidth, int screenHeight, HWND hwnd) } // Set the initial position of the camera. - m_Camera->SetPosition(0.0f, 0.0f, -10.0f); + m_Camera->SetPosition(0.0f, 0.0f, -12.0f); m_Camera->SetRotation(0.0f, 0.0f, 0.0f); + // Create and initialize the font shader object. + m_FontShader = new FontShaderClass; + + result = m_FontShader->Initialize(m_Direct3D->GetDevice(), hwnd); + if (!result) + { + MessageBox(hwnd, L"Could not initialize the font shader object.", L"Error", MB_OK); + return false; + } + + // Create and initialize the font object. + m_Font = new FontClass; + + result = m_Font->Initialize(m_Direct3D->GetDevice(), m_Direct3D->GetDeviceContext(), 0); + if (!result) + { + return false; + } + + // Set the strings we want to display. + strcpy_s(testString1, "Yo"); + strcpy_s(testString2, "Les"); + strcpy_s(testString3, "Noobs !"); + + // Create and initialize the first text object. + m_TextString1 = new TextClass; + + result = m_TextString1->Initialize(m_Direct3D->GetDevice(), m_Direct3D->GetDeviceContext(), screenWidth, screenHeight, 32, m_Font, testString1, 25, screenHeight / 2 - m_Font->GetFontHeight(), 1.0f, 1.0f, 1.0f); + if (!result) + { + return false; + } + + // Create and initialize the second text object. + m_TextString2 = new TextClass; + + result = m_TextString2->Initialize(m_Direct3D->GetDevice(), m_Direct3D->GetDeviceContext(), screenWidth, screenHeight, 32, m_Font, testString2, 250, screenHeight / 2 - m_Font->GetFontHeight(), 0.0f, 1.0f, 1.0f); + if (!result) + { + return false; + } + + // Create and initialize the second text object. + m_TextString3 = new TextClass; + + result = m_TextString3->Initialize(m_Direct3D->GetDevice(), m_Direct3D->GetDeviceContext(), screenWidth, screenHeight, 32, m_Font, testString3, screenWidth / 2 - m_Font->GetSentencePixelLength(testString3), screenHeight / 2 - m_Font->GetFontHeight(), 1.0f, 1.0f, 0.0f); + if (!result) + { + return false; + } + + // Create and initialize the texture shader object. + m_TextureShader = new TextureShaderClass; + + result = m_TextureShader->Initialize(m_Direct3D->GetDevice(), hwnd); + if (!result) + { + MessageBox(hwnd, L"Could not initialize the texture shader object.", L"Error", MB_OK); + return false; + } + + // Set the sprite info file we will be using. + strcpy_s(spriteFilename, "sprite_data_01.txt"); + + // Create and initialize the sprite object. + m_Sprite = new SpriteClass; + + result = m_Sprite->Initialize(m_Direct3D->GetDevice(), m_Direct3D->GetDeviceContext(), screenWidth, screenHeight, spriteFilename, 50, 50); + if (!result) + { + return false; + } + + // Create and initialize the timer object. + m_Timer = new TimerClass; + + result = m_Timer->Initialize(); + if (!result) + { + return false; + } + + // Set the file name of the bitmap file. + strcpy_s(bitmapFilename, "stone01.tga"); + + // Create and initialize the bitmap object. + m_Bitmap = new BitmapClass; + + result = m_Bitmap->Initialize(m_Direct3D->GetDevice(), m_Direct3D->GetDeviceContext(), screenWidth, screenHeight, bitmapFilename, 50, 50); + if (!result) + { + return false; + } + + // Create and initialize the multitexture shader object. + m_MultiTextureShader = new MultiTextureShaderClass; + + result = m_MultiTextureShader->Initialize(m_Direct3D->GetDevice(), hwnd); + if (!result) + { + MessageBox(hwnd, L"Could not initialize the multitexture shader object.", L"Error", MB_OK); + return false; + } + // Set the file name of the model. strcpy_s(modelFilename, "cube.txt"); - // Set the name of the texture file that we will be loading. - strcpy_s(textureFilename, "stone01.tga"); + // Set the file name of the textures. + strcpy_s(textureFilename1, "stone01.tga"); + strcpy_s(textureFilename2, "moss01.tga"); // Create and initialize the model object. m_Model = new ModelClass; - result = m_Model->Initialize(m_Direct3D->GetDevice(), m_Direct3D->GetDeviceContext(), modelFilename, textureFilename); + result = m_Model->Initialize(m_Direct3D->GetDevice(), m_Direct3D->GetDeviceContext(), modelFilename, textureFilename1, textureFilename2); if (!result) { MessageBox(hwnd, L"Could not initialize the model object.", L"Error", MB_OK); return false; } + // Create and initialize the light shader object. m_LightShader = new LightShaderClass; @@ -76,6 +199,7 @@ bool ApplicationClass::Initialize(int screenWidth, int screenHeight, HWND hwnd) MessageBox(hwnd, L"Could not initialize the light shader object.", L"Error", MB_OK); return false; } + // Set the number of lights we will use. m_numLights = 4; @@ -94,11 +218,25 @@ bool ApplicationClass::Initialize(int screenWidth, int screenHeight, HWND hwnd) m_Lights[3].SetDiffuseColor(1.0f, 1.0f, 1.0f, 1.0f); // White m_Lights[3].SetPosition(3.0f, 1.0f, -3.0f); - // Create and initialize the light object. - m_Light = new LightClass; - m_Light->SetDiffuseColor(1.0f, 1.0f, 1.0f, 1.0f); - m_Light->SetDirection(0.0f, -1.0f, 1.0f); + // Create and initialize the fps object. + m_Fps = new FpsClass(); + + m_Fps->Initialize(); + + // Set the initial fps and fps string. + m_previousFps = -1; + strcpy_s(fpsString, "Fps: 0"); + + // Create and initialize the text object for the fps string. + m_FpsString = new TextClass; + + result = m_FpsString->Initialize(m_Direct3D->GetDevice(), m_Direct3D->GetDeviceContext(), screenWidth, screenHeight, 32, m_Font, fpsString, 10, 10, 0.0f, 1.0f, 0.0f); + if (!result) + { + return false; + } + return true; } @@ -106,11 +244,88 @@ bool ApplicationClass::Initialize(int screenWidth, int screenHeight, HWND hwnd) void ApplicationClass::Shutdown() { - // Release the light object. - if (m_Lights) + // Release the text object for the fps string. + if (m_FpsString) { - delete m_Lights; - m_Lights = 0; + m_FpsString->Shutdown(); + delete m_FpsString; + m_FpsString = 0; + } + + // Release the fps object. + if (m_Fps) + { + delete m_Fps; + m_Fps = 0; + } + + + // Release the text string objects. + if (m_TextString3) + { + m_TextString3->Shutdown(); + delete m_TextString3; + m_TextString3 = 0; + } + + if (m_TextString2) + { + m_TextString2->Shutdown(); + delete m_TextString2; + m_TextString2 = 0; + } + + if (m_TextString1) + { + m_TextString1->Shutdown(); + delete m_TextString1; + m_TextString1 = 0; + } + + // Release the font object. + if (m_Font) + { + m_Font->Shutdown(); + delete m_Font; + m_Font = 0; + } + + // Release the font shader object. + if (m_FontShader) + { + m_FontShader->Shutdown(); + delete m_FontShader; + m_FontShader = 0; + } + + // Release the timer object. + if (m_Timer) + { + delete m_Timer; + m_Timer = 0; + } + + // Release the sprite object. + if (m_Sprite) + { + m_Sprite->Shutdown(); + delete m_Sprite; + m_Sprite = 0; + } + + // Release the light objects. + if(m_Lights) + { + delete [] m_Lights; + m_Lights = 0; + } + + // Release the light shader object. + if (m_LightShader) + { + m_LightShader->Shutdown(); + delete m_LightShader; + m_LightShader = 0; } // Release the light shader object. @@ -129,20 +344,27 @@ void ApplicationClass::Shutdown() m_Model = 0; } - // Release the camera object. - if (m_Camera) + // Release the multitexture shader object. + if (m_MultiTextureShader) { - delete m_Camera; - m_Camera = 0; - } + m_MultiTextureShader->Shutdown(); + delete m_MultiTextureShader; + m_MultiTextureShader = 0; + // Release the bitmap object. + if (m_Bitmap) + { + m_Bitmap->Shutdown(); + delete m_Bitmap; + m_Bitmap = 0; + } - // Release the D3D object. - if (m_Direct3D) - { - m_Direct3D->Shutdown(); - delete m_Direct3D; - m_Direct3D = 0; - } + // Release the texture shader object. + if (m_TextureShader) + { + m_TextureShader->Shutdown(); + delete m_TextureShader; + m_TextureShader = 0; + } // Liberez la memoire pour chaque cube for (auto cube : m_cubes) @@ -160,15 +382,43 @@ void ApplicationClass::Shutdown() } m_terrainChunk.clear(); + + // Release the camera object. + if (m_Camera) + { + delete m_Camera; + m_Camera = 0; + } + + // Release the D3D object. + if (m_Direct3D) + { + m_Direct3D->Shutdown(); + delete m_Direct3D; + m_Direct3D = 0; + } + return; + } } bool ApplicationClass::Frame() { + float frameTime; static float rotation = 0.0f; + static float x = 2.f; + static float y = 0.f; + static float z = 0.f; bool result; + // Update the frames per second each frame. + result = UpdateFps(); + if (!result) + { + return false; + } + // Update the rotation variable each frame. rotation -= 0.0174532925f * speed; if (rotation < 0.0f) @@ -176,20 +426,38 @@ bool ApplicationClass::Frame() rotation += 360.0f; } + // Update the x position variable each frame. + x -= 0.0174532925f * 0.54672f; + + y -= 0.0174532925f * 0.8972f; + + // Update the z position variable each frame. + z -= 0.0174532925f * 0.8972f; + + // Render the graphics scene. - result = Render(rotation); + result = Render(rotation, x, y, z); if (!result) { return false; } + // Update the system stats. + m_Timer->Frame(); + + // Get the current frame time. + frameTime = m_Timer->GetTime(); + + // Update the sprite object using the frame time. + m_Sprite->Update(frameTime); + return true; } -bool ApplicationClass::Render(float rotation) +bool ApplicationClass::Render(float rotation, float x, float y, float z) { - XMMATRIX worldMatrix, rotateMatrix, translateMatrix, scaleMatrix, srMatrix, viewMatrix, projectionMatrix;; + XMMATRIX worldMatrix, viewMatrix, orthoMatrix, projectionMatrix, rotateMatrix, translateMatrix, scaleMatrix, srMatrix; XMFLOAT4 diffuseColor[4], lightPosition[4]; int i; bool result; @@ -204,6 +472,112 @@ bool ApplicationClass::Render(float rotation) m_Direct3D->GetWorldMatrix(worldMatrix); viewMatrix = m_Camera->GetViewMatrix(); m_Direct3D->GetProjectionMatrix(projectionMatrix); + m_Direct3D->GetOrthoMatrix(orthoMatrix); + + // Disable the Z buffer and enable alpha blending for 2D rendering. + m_Direct3D->TurnZBufferOff(); + m_Direct3D->EnableAlphaBlending(); + + // Render the fps text string using the font shader. + m_FpsString->Render(m_Direct3D->GetDeviceContext()); + + result = m_FontShader->Render(m_Direct3D->GetDeviceContext(), m_FpsString->GetIndexCount(), worldMatrix, viewMatrix, orthoMatrix, + m_Font->GetTexture(), m_FpsString->GetPixelColor()); + if (!result) + { + return false; + } + + // Render the first text string using the font shader. + m_TextString1->Render(m_Direct3D->GetDeviceContext()); + + result = m_FontShader->Render(m_Direct3D->GetDeviceContext(), m_TextString1->GetIndexCount(), worldMatrix, viewMatrix, orthoMatrix, + m_Font->GetTexture(), m_TextString1->GetPixelColor()); + if (!result) + { + return false; + } + + // Render the second text string using the font shader. + m_TextString2->Render(m_Direct3D->GetDeviceContext()); + + result = m_FontShader->Render(m_Direct3D->GetDeviceContext(), m_TextString2->GetIndexCount(), worldMatrix, viewMatrix, orthoMatrix, + m_Font->GetTexture(), m_TextString2->GetPixelColor()); + if (!result) + { + return false; + } + + // Render the second text string using the font shader. + m_TextString3->Render(m_Direct3D->GetDeviceContext()); + + result = m_FontShader->Render(m_Direct3D->GetDeviceContext(), m_TextString3->GetIndexCount(), worldMatrix, viewMatrix, orthoMatrix, + m_Font->GetTexture(), m_TextString3->GetPixelColor()); + if (!result) + { + return false; + } + + // Put the sprite vertex and index buffers on the graphics pipeline to prepare them for drawing. + result = m_Sprite->Render(m_Direct3D->GetDeviceContext()); + if (!result) + { + return false; + } + + // Render the sprite with the texture shader. + result = m_TextureShader->Render(m_Direct3D->GetDeviceContext(), m_Sprite->GetIndexCount(), worldMatrix, viewMatrix, orthoMatrix, m_Sprite->GetTexture()); + if (!result) + { + return false; + } + + // Put the bitmap vertex and index buffers on the graphics pipeline to prepare them for drawing. + result = m_Bitmap->Render(m_Direct3D->GetDeviceContext()); + if (!result) + { + return false; + } + + m_Bitmap->SetRenderLocation(1200, 50); + + // Render the bitmap with the texture shader. + result = m_TextureShader->Render(m_Direct3D->GetDeviceContext(), m_Bitmap->GetIndexCount(), worldMatrix, viewMatrix, orthoMatrix, m_Bitmap->GetTexture()); + if (!result) + { + return false; + } + + // Get the light properties. + for (i = 0; i < m_numLights; i++) + { + // Create the diffuse color array from the four light colors. + diffuseColor[i] = m_Lights[i].GetDiffuseColor(); + + // Create the light position array from the four light positions. + lightPosition[i] = m_Lights[i].GetPosition(); + } + + + + scaleMatrix = XMMatrixScaling(0.5f, 0.5f, 0.5f); // Build the scaling matrix. + rotateMatrix = XMMatrixRotationY(rotation); // Build the rotation matrix. + translateMatrix = XMMatrixTranslation(x, y, z); // Build the translation matrix. + + // Multiply the scale, rotation, and translation matrices together to create the final world transformation matrix. + srMatrix = XMMatrixMultiply(scaleMatrix, rotateMatrix); + worldMatrix = XMMatrixMultiply(srMatrix, translateMatrix); + + // Render the model using the multitexture shader. + m_Model->Render(m_Direct3D->GetDeviceContext()); + + scaleMatrix = XMMatrixScaling(2.0f, 2.0f, 2.0f); // Build the scaling matrix. + rotateMatrix = XMMatrixRotationY(-rotation); // Build the rotation matrix. + translateMatrix = XMMatrixTranslation(-x, -y, -z); // Build the translation matrix. + + // Multiply the scale, rotation, and translation matrices together to create the final world transformation matrix. + srMatrix = XMMatrixMultiply(scaleMatrix, rotateMatrix); + worldMatrix = XMMatrixMultiply(srMatrix, translateMatrix); // Get the light properties. for (i = 0; i < m_numLights; i++) @@ -217,7 +591,15 @@ bool ApplicationClass::Render(float rotation) // Put the model vertex and index buffers on the graphics pipeline to prepare them for drawing. m_Model->Render(m_Direct3D->GetDeviceContext()); - + // Render the model using the light shader. + result = m_LightShader->Render(m_Direct3D->GetDeviceContext(), m_Model->GetIndexCount(), worldMatrix, viewMatrix, projectionMatrix, m_Model->GetTexture(0), + diffuseColor, lightPosition); + + if (!result) + { + return false; + } + for (auto cube : m_cubes) { cube->Render(m_Direct3D->GetDeviceContext()); @@ -236,7 +618,7 @@ bool ApplicationClass::Render(float rotation) srMatrix = XMMatrixMultiply(scaleMatrix, rotateMatrix); worldMatrix = XMMatrixMultiply(srMatrix, translateMatrix); - result = m_LightShader->Render(m_Direct3D->GetDeviceContext(), cube->GetIndexCount(), worldMatrix, viewMatrix, projectionMatrix, cube->GetTexture(), + result = m_LightShader->Render(m_Direct3D->GetDeviceContext(), cube->GetIndexCount(), worldMatrix, viewMatrix, projectionMatrix, cube->GetTexture(0), diffuseColor, lightPosition); if (!result) { @@ -256,7 +638,7 @@ bool ApplicationClass::Render(float rotation) srMatrix = XMMatrixMultiply(scaleMatrix, rotateMatrix); worldMatrix = XMMatrixMultiply(srMatrix, translateMatrix); - result = m_LightShader->Render(m_Direct3D->GetDeviceContext(), m_Model->GetIndexCount(), worldMatrix, viewMatrix, projectionMatrix, m_Model->GetTexture(), + result = m_LightShader->Render(m_Direct3D->GetDeviceContext(), m_Model->GetIndexCount(), worldMatrix, viewMatrix, projectionMatrix, m_Model->GetTexture(0), diffuseColor, lightPosition); if (!result) { @@ -264,6 +646,17 @@ bool ApplicationClass::Render(float rotation) } } + // Render the model using the multitexture shader. + result = m_MultiTextureShader->Render(m_Direct3D->GetDeviceContext(), m_Model->GetIndexCount(), worldMatrix, viewMatrix, projectionMatrix, + m_Model->GetTexture(0), m_Model->GetTexture(1)); + if (!result) + { + return false; + } + + // Enable the Z buffer and disable alpha blending now that 2D rendering is complete. + m_Direct3D->TurnZBufferOn(); + m_Direct3D->DisableAlphaBlending(); // Present the rendered scene to the screen. m_Direct3D->EndScene(); @@ -308,8 +701,6 @@ void ApplicationClass::GenerateTerrain() } - - void ApplicationClass::AddCube() { char modelFilename[128]; @@ -348,4 +739,72 @@ void ApplicationClass::DeleteTerrain() delete cube; } m_terrainChunk.clear(); +bool ApplicationClass::UpdateFps() +{ + int fps; + char tempString[16], finalString[16]; + float red, green, blue; + bool result; + + + // Update the fps each frame. + m_Fps->Frame(); + + // Get the current fps. + fps = m_Fps->GetFps(); + + // Check if the fps from the previous frame was the same, if so don't need to update the text string. + if (m_previousFps == fps) + { + return true; + } + + // Store the fps for checking next frame. + m_previousFps = fps; + + // Truncate the fps to below 100,000. + if (fps > 99999) + { + fps = 99999; + } + + // Convert the fps integer to string format. + sprintf_s(tempString, "%d", fps); + + // Setup the fps string. + strcpy_s(finalString, "Fps: "); + strcat_s(finalString, tempString); + + // If fps is 60 or above set the fps color to green. + if (fps >= 60) + { + red = 0.0f; + green = 1.0f; + blue = 0.0f; + } + + // If fps is below 60 set the fps color to yellow. + if (fps < 60) + { + red = 1.0f; + green = 1.0f; + blue = 0.0f; + } + + // If fps is below 30 set the fps color to red. + if (fps < 30) + { + red = 1.0f; + green = 0.0f; + blue = 0.0f; + } + + // Update the sentence vertex buffer with the new string information. + result = m_FpsString->UpdateText(m_Direct3D->GetDeviceContext(), m_Font, finalString, 10, 10, red, green, blue); + if (!result) + { + return false; + } + + return true; } \ No newline at end of file diff --git a/enginecustom/applicationclass.h b/enginecustom/applicationclass.h index a78e80d..4665024 100644 --- a/enginecustom/applicationclass.h +++ b/enginecustom/applicationclass.h @@ -12,6 +12,15 @@ #include "lightclass.h" #include +#include "multitextureshaderclass.h" +#include "bitmapclass.h" +#include "textureshaderclass.h" +#include "spriteclass.h" +#include "timerclass.h" +#include "fontshaderclass.h" +#include "fontclass.h" +#include "textclass.h" +#include "fpsclass.h" ///////////// // GLOBALS // @@ -55,21 +64,32 @@ public: private: - bool Render(float); - + bool Render(float, float, float, float); + bool UpdateFps(); private: D3DClass* m_Direct3D; CameraClass* m_Camera; - ModelClass* m_Model; IDXGISwapChain* m_swapChain; - LightShaderClass* m_LightShader; - LightClass* m_Light; float speed = 0.1f; Object* m_SelectedObject; - LightClass* m_Lights; - int m_numLights; std::vector m_cubes; std::vector m_terrainChunk; + LightShaderClass* m_LightShader; + LightClass* m_Light; + MultiTextureShaderClass* m_MultiTextureShader; + ModelClass* m_Model; + TextureShaderClass* m_TextureShader; + BitmapClass* m_Bitmap; + SpriteClass* m_Sprite; + TimerClass* m_Timer; + LightClass* m_Lights; + int m_numLights; + FontShaderClass* m_FontShader; + FontClass* m_Font; + TextClass *m_TextString1, *m_TextString2, *m_TextString3; + FpsClass* m_Fps; + TextClass* m_FpsString; + int m_previousFps; }; #endif \ No newline at end of file diff --git a/enginecustom/bitmapclass.cpp b/enginecustom/bitmapclass.cpp new file mode 100644 index 0000000..ce25cb2 --- /dev/null +++ b/enginecustom/bitmapclass.cpp @@ -0,0 +1,333 @@ +#include "bitmapclass.h" + +BitmapClass::BitmapClass() +{ + m_vertexBuffer = 0; + m_indexBuffer = 0; + m_Texture = 0; +} + + +BitmapClass::BitmapClass(const BitmapClass& other) +{ +} + + +BitmapClass::~BitmapClass() +{ +} + + +bool BitmapClass::Initialize(ID3D11Device* device, ID3D11DeviceContext* deviceContext, int screenWidth, int screenHeight, char* textureFilename, int renderX, int renderY) +{ + bool result; + + // Store the screen size. + m_screenWidth = screenWidth; + m_screenHeight = screenHeight; + + // Store where the bitmap should be rendered to. + m_renderX = renderX; + m_renderY = renderY; + + // Initialize the vertex and index buffer that hold the geometry for the bitmap quad. + result = InitializeBuffers(device); + if (!result) + { + return false; + } + + // Load the texture for this bitmap. + result = LoadTexture(device, deviceContext, textureFilename); + if (!result) + { + return false; + } + + return true; +} + +void BitmapClass::Shutdown() +{ + // Release the bitmap texture. + ReleaseTexture(); + + // Release the vertex and index buffers. + ShutdownBuffers(); + + return; +} + +bool BitmapClass::Render(ID3D11DeviceContext* deviceContext) +{ + bool result; + + + // Update the buffers if the position of the bitmap has changed from its original position. + result = UpdateBuffers(deviceContext); + if (!result) + { + return false; + } + + // Put the vertex and index buffers on the graphics pipeline to prepare them for drawing. + RenderBuffers(deviceContext); + + return true; +} + +int BitmapClass::GetIndexCount() +{ + return m_indexCount; +} + +ID3D11ShaderResourceView* BitmapClass::GetTexture() +{ + return m_Texture->GetTexture(); +} + +bool BitmapClass::InitializeBuffers(ID3D11Device* device) +{ + VertexType* vertices; + unsigned long* indices; + D3D11_BUFFER_DESC vertexBufferDesc, indexBufferDesc; + D3D11_SUBRESOURCE_DATA vertexData, indexData; + HRESULT result; + int i; + + // Initialize the previous rendering position to negative one. + m_prevPosX = -1; + m_prevPosY = -1; + + // Set the number of vertices in the vertex array. + m_vertexCount = 6; + + // Set the number of indices in the index array. + m_indexCount = m_vertexCount; + + // Create the vertex array. + vertices = new VertexType[m_vertexCount]; + + // Create the index array. + indices = new unsigned long[m_indexCount]; + + // Initialize vertex array to zeros at first. + memset(vertices, 0, (sizeof(VertexType) * m_vertexCount)); + + // Load the index array with data. + for (i = 0; i < m_indexCount; i++) + { + indices[i] = i; + } + + // Set up the description of the dynamic vertex buffer. + vertexBufferDesc.Usage = D3D11_USAGE_DYNAMIC; + vertexBufferDesc.ByteWidth = sizeof(VertexType) * m_vertexCount; + vertexBufferDesc.BindFlags = D3D11_BIND_VERTEX_BUFFER; + vertexBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + vertexBufferDesc.MiscFlags = 0; + vertexBufferDesc.StructureByteStride = 0; + + // Give the subresource structure a pointer to the vertex data. + vertexData.pSysMem = vertices; + vertexData.SysMemPitch = 0; + vertexData.SysMemSlicePitch = 0; + + // Now finally create the vertex buffer. + result = device->CreateBuffer(&vertexBufferDesc, &vertexData, &m_vertexBuffer); + if (FAILED(result)) + { + return false; + } + + // Set up the description of the index buffer. + indexBufferDesc.Usage = D3D11_USAGE_DEFAULT; + indexBufferDesc.ByteWidth = sizeof(unsigned long) * m_indexCount; + indexBufferDesc.BindFlags = D3D11_BIND_INDEX_BUFFER; + indexBufferDesc.CPUAccessFlags = 0; + indexBufferDesc.MiscFlags = 0; + indexBufferDesc.StructureByteStride = 0; + + // Give the subresource structure a pointer to the index data. + indexData.pSysMem = indices; + indexData.SysMemPitch = 0; + indexData.SysMemSlicePitch = 0; + + // Create the index buffer. + result = device->CreateBuffer(&indexBufferDesc, &indexData, &m_indexBuffer); + if (FAILED(result)) + { + return false; + } + + // Release the arrays now that the vertex and index buffers have been created and loaded. + delete[] vertices; + vertices = 0; + + delete[] indices; + indices = 0; + + return true; +} + +void BitmapClass::ShutdownBuffers() +{ + // Release the index buffer. + if (m_indexBuffer) + { + m_indexBuffer->Release(); + m_indexBuffer = 0; + } + + // Release the vertex buffer. + if (m_vertexBuffer) + { + m_vertexBuffer->Release(); + m_vertexBuffer = 0; + } + + return; +} + +bool BitmapClass::UpdateBuffers(ID3D11DeviceContext* deviceContent) +{ + float left, right, top, bottom; + VertexType* vertices; + D3D11_MAPPED_SUBRESOURCE mappedResource; + VertexType* dataPtr; + HRESULT result; + + // If the position we are rendering this bitmap to hasn't changed then don't update the vertex buffer. + if ((m_prevPosX == m_renderX) && (m_prevPosY == m_renderY)) + { + return true; + } + + // If the rendering location has changed then store the new position and update the vertex buffer. + m_prevPosX = m_renderX; + m_prevPosY = m_renderY; + + // Create the vertex array. + vertices = new VertexType[m_vertexCount]; + + // Calculate the screen coordinates of the left side of the bitmap. + left = (float)((m_screenWidth / 2) * -1) + (float)m_renderX; + + // Calculate the screen coordinates of the right side of the bitmap. + right = left + (float)m_bitmapWidth; + + // Calculate the screen coordinates of the top of the bitmap. + top = (float)(m_screenHeight / 2) - (float)m_renderY; + + // Calculate the screen coordinates of the bottom of the bitmap. + bottom = top - (float)m_bitmapHeight; + + // Load the vertex array with data. +// First triangle. + vertices[0].position = XMFLOAT3(left, top, 0.0f); // Top left. + vertices[0].texture = XMFLOAT2(0.0f, 0.0f); + + vertices[1].position = XMFLOAT3(right, bottom, 0.0f); // Bottom right. + vertices[1].texture = XMFLOAT2(1.0f, 1.0f); + + vertices[2].position = XMFLOAT3(left, bottom, 0.0f); // Bottom left. + vertices[2].texture = XMFLOAT2(0.0f, 1.0f); + + // Second triangle. + vertices[3].position = XMFLOAT3(left, top, 0.0f); // Top left. + vertices[3].texture = XMFLOAT2(0.0f, 0.0f); + + vertices[4].position = XMFLOAT3(right, top, 0.0f); // Top right. + vertices[4].texture = XMFLOAT2(1.0f, 0.0f); + + vertices[5].position = XMFLOAT3(right, bottom, 0.0f); // Bottom right. + vertices[5].texture = XMFLOAT2(1.0f, 1.0f); + + // Lock the vertex buffer. + result = deviceContent->Map(m_vertexBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); + if (FAILED(result)) + { + return false; + } + + // Get a pointer to the data in the constant buffer. + dataPtr = (VertexType*)mappedResource.pData; + + // Copy the data into the vertex buffer. + memcpy(dataPtr, (void*)vertices, (sizeof(VertexType) * m_vertexCount)); + + // Unlock the vertex buffer. + deviceContent->Unmap(m_vertexBuffer, 0); + + // Release the pointer reference. + dataPtr = 0; + + // Release the vertex array as it is no longer needed. + delete[] vertices; + vertices = 0; + + return true; +} + +void BitmapClass::RenderBuffers(ID3D11DeviceContext* deviceContext) +{ + unsigned int stride; + unsigned int offset; + + + // Set vertex buffer stride and offset. + stride = sizeof(VertexType); + offset = 0; + + // Set the vertex buffer to active in the input assembler so it can be rendered. + deviceContext->IASetVertexBuffers(0, 1, &m_vertexBuffer, &stride, &offset); + + // Set the index buffer to active in the input assembler so it can be rendered. + deviceContext->IASetIndexBuffer(m_indexBuffer, DXGI_FORMAT_R32_UINT, 0); + + // Set the type of primitive that should be rendered from this vertex buffer, in this case triangles. + deviceContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST); + + return; +} + +bool BitmapClass::LoadTexture(ID3D11Device* device, ID3D11DeviceContext* deviceContext, char* filename) +{ + bool result; + + + // Create and initialize the texture object. + m_Texture = new TextureClass; + + result = m_Texture->Initialize(device, deviceContext, filename); + if (!result) + { + return false; + } + + // Store the size in pixels that this bitmap should be rendered at. + m_bitmapWidth = m_Texture->GetWidth(); + m_bitmapHeight = m_Texture->GetHeight(); + + return true; +} + +void BitmapClass::ReleaseTexture() +{ + // Release the texture object. + if (m_Texture) + { + m_Texture->Shutdown(); + delete m_Texture; + m_Texture = 0; + } + + return; +} + +void BitmapClass::SetRenderLocation(int x, int y) +{ + m_renderX = x; + m_renderY = y; + return; +} \ No newline at end of file diff --git a/enginecustom/bitmapclass.h b/enginecustom/bitmapclass.h new file mode 100644 index 0000000..9af076c --- /dev/null +++ b/enginecustom/bitmapclass.h @@ -0,0 +1,58 @@ +#ifndef _BITMAPCLASS_H_ +#define _BITMAPCLASS_H_ + + +////////////// +// INCLUDES // +////////////// +#include +using namespace DirectX; + + +/////////////////////// +// MY CLASS INCLUDES // +/////////////////////// +#include "textureclass.h" + + +//////////////////////////////////////////////////////////////////////////////// +// Class name: BitmapClass +//////////////////////////////////////////////////////////////////////////////// +class BitmapClass +{ +private: + struct VertexType + { + XMFLOAT3 position; + XMFLOAT2 texture; + }; + +public: + BitmapClass(); + BitmapClass(const BitmapClass&); + ~BitmapClass(); + + bool Initialize(ID3D11Device*, ID3D11DeviceContext*, int, int, char*, int, int); + void Shutdown(); + bool Render(ID3D11DeviceContext*); + + int GetIndexCount(); + ID3D11ShaderResourceView* GetTexture(); + + void SetRenderLocation(int, int); + +private: + bool InitializeBuffers(ID3D11Device*); + void ShutdownBuffers(); + bool UpdateBuffers(ID3D11DeviceContext*); + void RenderBuffers(ID3D11DeviceContext*); + + bool LoadTexture(ID3D11Device*, ID3D11DeviceContext*, char*); + void ReleaseTexture(); +private: + ID3D11Buffer* m_vertexBuffer, * m_indexBuffer; + int m_vertexCount, m_indexCount, m_screenWidth, m_screenHeight, m_bitmapWidth, m_bitmapHeight, m_renderX, m_renderY, m_prevPosX, m_prevPosY; + TextureClass* m_Texture; +}; + +#endif \ No newline at end of file diff --git a/enginecustom/cube.txt b/enginecustom/cube.txt index 00b34ba..f8040ca 100644 --- a/enginecustom/cube.txt +++ b/enginecustom/cube.txt @@ -37,4 +37,4 @@ Data: -1.0 -1.0 1.0 0.0 1.0 0.0 -1.0 0.0 -1.0 -1.0 1.0 0.0 1.0 0.0 -1.0 0.0 1.0 -1.0 -1.0 1.0 0.0 0.0 -1.0 0.0 - 1.0 -1.0 1.0 1.0 1.0 0.0 -1.0 0.0 \ No newline at end of file + 1.0 -1.0 1.0 1.0 1.0 0.0 -1.0 0.0 diff --git a/enginecustom/d3dclass.cpp b/enginecustom/d3dclass.cpp index b7af78b..3b5fb3f 100644 --- a/enginecustom/d3dclass.cpp +++ b/enginecustom/d3dclass.cpp @@ -14,6 +14,9 @@ D3DClass::D3DClass() m_depthStencilState = 0; m_depthStencilView = 0; m_rasterState = 0; + m_depthDisabledStencilState = 0; + m_alphaEnableBlendingState = 0; + m_alphaDisableBlendingState = 0; } @@ -46,7 +49,8 @@ bool D3DClass::Initialize(int screenWidth, int screenHeight, bool vsync, HWND hw D3D11_DEPTH_STENCIL_VIEW_DESC depthStencilViewDesc; D3D11_RASTERIZER_DESC rasterDesc; float fieldOfView, screenAspect; - + D3D11_DEPTH_STENCIL_DESC depthDisabledStencilDesc; + D3D11_BLEND_DESC blendStateDescription; // Store the vsync setting. m_vsync_enabled = vsync; @@ -346,6 +350,63 @@ bool D3DClass::Initialize(int screenWidth, int screenHeight, bool vsync, HWND hw // Create an orthographic projection matrix for 2D rendering. m_orthoMatrix = XMMatrixOrthographicLH((float)screenWidth, (float)screenHeight, screenNear, screenDepth); + // Clear the second depth stencil state before setting the parameters. + ZeroMemory(&depthDisabledStencilDesc, sizeof(depthDisabledStencilDesc)); + + // Now create a second depth stencil state which turns off the Z buffer for 2D rendering. The only difference is + // that DepthEnable is set to false, all other parameters are the same as the other depth stencil state. + depthDisabledStencilDesc.DepthEnable = false; + depthDisabledStencilDesc.DepthWriteMask = D3D11_DEPTH_WRITE_MASK_ALL; + depthDisabledStencilDesc.DepthFunc = D3D11_COMPARISON_LESS; + depthDisabledStencilDesc.StencilEnable = true; + depthDisabledStencilDesc.StencilReadMask = 0xFF; + depthDisabledStencilDesc.StencilWriteMask = 0xFF; + depthDisabledStencilDesc.FrontFace.StencilFailOp = D3D11_STENCIL_OP_KEEP; + depthDisabledStencilDesc.FrontFace.StencilDepthFailOp = D3D11_STENCIL_OP_INCR; + depthDisabledStencilDesc.FrontFace.StencilPassOp = D3D11_STENCIL_OP_KEEP; + depthDisabledStencilDesc.FrontFace.StencilFunc = D3D11_COMPARISON_ALWAYS; + depthDisabledStencilDesc.BackFace.StencilFailOp = D3D11_STENCIL_OP_KEEP; + depthDisabledStencilDesc.BackFace.StencilDepthFailOp = D3D11_STENCIL_OP_DECR; + depthDisabledStencilDesc.BackFace.StencilPassOp = D3D11_STENCIL_OP_KEEP; + depthDisabledStencilDesc.BackFace.StencilFunc = D3D11_COMPARISON_ALWAYS; + + // Create the state using the device. + result = m_device->CreateDepthStencilState(&depthDisabledStencilDesc, &m_depthDisabledStencilState); + if (FAILED(result)) + { + return false; + } + + // Clear the blend state description. + ZeroMemory(&blendStateDescription, sizeof(D3D11_BLEND_DESC)); + + // Create an alpha enabled blend state description. + blendStateDescription.RenderTarget[0].BlendEnable = TRUE; + blendStateDescription.RenderTarget[0].SrcBlend = D3D11_BLEND_ONE; + blendStateDescription.RenderTarget[0].DestBlend = D3D11_BLEND_INV_SRC_ALPHA; + blendStateDescription.RenderTarget[0].BlendOp = D3D11_BLEND_OP_ADD; + blendStateDescription.RenderTarget[0].SrcBlendAlpha = D3D11_BLEND_ONE; + blendStateDescription.RenderTarget[0].DestBlendAlpha = D3D11_BLEND_ZERO; + blendStateDescription.RenderTarget[0].BlendOpAlpha = D3D11_BLEND_OP_ADD; + blendStateDescription.RenderTarget[0].RenderTargetWriteMask = 0x0f; + + // Create the blend state using the description. + result = m_device->CreateBlendState(&blendStateDescription, &m_alphaEnableBlendingState); + if (FAILED(result)) + { + return false; + } + + // Modify the description to create an alpha disabled blend state description. + blendStateDescription.RenderTarget[0].BlendEnable = FALSE; + + // Create the blend state using the description. + result = m_device->CreateBlendState(&blendStateDescription, &m_alphaDisableBlendingState); + if (FAILED(result)) + { + return false; + } + return true; } @@ -358,6 +419,24 @@ void D3DClass::Shutdown() m_swapChain->SetFullscreenState(false, NULL); } + if (m_alphaEnableBlendingState) + { + m_alphaEnableBlendingState->Release(); + m_alphaEnableBlendingState = 0; + } + + if (m_alphaDisableBlendingState) + { + m_alphaDisableBlendingState->Release(); + m_alphaDisableBlendingState = 0; + } + + if (m_depthDisabledStencilState) + { + m_depthDisabledStencilState->Release(); + m_depthDisabledStencilState = 0; + } + if (m_rasterState) { m_rasterState->Release(); @@ -598,4 +677,51 @@ void D3DClass::ResizeSwapChain(int newWidth, int newHeight) m_viewport.Width = static_cast(newWidth); m_viewport.Height = static_cast(newHeight); m_deviceContext->RSSetViewports(1, &m_viewport); -} \ No newline at end of file +} + +void D3DClass::TurnZBufferOn() +{ + m_deviceContext->OMSetDepthStencilState(m_depthStencilState, 1); + return; +} + + +void D3DClass::TurnZBufferOff() +{ + m_deviceContext->OMSetDepthStencilState(m_depthDisabledStencilState, 1); + return; +} + +void D3DClass::EnableAlphaBlending() +{ + float blendFactor[4]; + + + // Setup the blend factor. + blendFactor[0] = 0.0f; + blendFactor[1] = 0.0f; + blendFactor[2] = 0.0f; + blendFactor[3] = 0.0f; + + // Turn on the alpha blending. + m_deviceContext->OMSetBlendState(m_alphaEnableBlendingState, blendFactor, 0xffffffff); + + return; +} + +void D3DClass::DisableAlphaBlending() +{ + float blendFactor[4]; + + + // Setup the blend factor. + blendFactor[0] = 0.0f; + blendFactor[1] = 0.0f; + blendFactor[2] = 0.0f; + blendFactor[3] = 0.0f; + + // Turn off the alpha blending. + m_deviceContext->OMSetBlendState(m_alphaDisableBlendingState, blendFactor, 0xffffffff); + + return; +} diff --git a/enginecustom/d3dclass.h b/enginecustom/d3dclass.h index da6c73f..e4d5f85 100644 --- a/enginecustom/d3dclass.h +++ b/enginecustom/d3dclass.h @@ -16,11 +16,13 @@ ////////////// // INCLUDES // ////////////// -#include -#include #include "imguiManager.h" -using namespace DirectX; +#include "d3d11.h" +#include "fontshaderclass.h" +#include "fontclass.h" +#include "textclass.h" +using namespace DirectX; //////////////////////////////////////////////////////////////////////////////// // Class name: D3DClass @@ -56,6 +58,12 @@ public: void ReleaseResources(); void ResetResources(int newWidth, int newHeight); + + void TurnZBufferOn(); + void TurnZBufferOff(); + + void EnableAlphaBlending(); + void DisableAlphaBlending(); private: bool m_vsync_enabled; @@ -72,6 +80,9 @@ private: XMMATRIX m_worldMatrix; XMMATRIX m_orthoMatrix; D3D11_VIEWPORT m_viewport; + ID3D11DepthStencilState* m_depthDisabledStencilState; + ID3D11BlendState* m_alphaEnableBlendingState; + ID3D11BlendState* m_alphaDisableBlendingState; }; #endif \ No newline at end of file diff --git a/enginecustom/enginecustom.vcxproj b/enginecustom/enginecustom.vcxproj index 3781146..626a022 100644 --- a/enginecustom/enginecustom.vcxproj +++ b/enginecustom/enginecustom.vcxproj @@ -21,6 +21,7 @@ + @@ -32,18 +33,26 @@ + + + - - + + + + + + + - + @@ -56,17 +65,32 @@ + + + + + + + + + + + + + + + @@ -88,11 +112,18 @@ + + + + + + + 17.0 diff --git a/enginecustom/font.ps b/enginecustom/font.ps new file mode 100644 index 0000000..7de7ce3 --- /dev/null +++ b/enginecustom/font.ps @@ -0,0 +1,47 @@ +///////////// +// GLOBALS // +///////////// +Texture2D shaderTexture : register(t0); +SamplerState SampleType : register(s0); + +cbuffer PixelBuffer +{ + float4 pixelColor; +}; + + +////////////// +// TYPEDEFS // +////////////// +struct PixelInputType +{ + float4 position : SV_POSITION; + float2 tex : TEXCOORD0; +}; + +//////////////////////////////////////////////////////////////////////////////// +// Pixel Shader +//////////////////////////////////////////////////////////////////////////////// +float4 FontPixelShader(PixelInputType input) : SV_TARGET +{ + float4 color; + + + // Sample the texture pixel at this location. + color = shaderTexture.Sample(SampleType, input.tex); + + // If the color is black on the texture then treat this pixel as transparent. + if(color.r == 0.0f) + { + color.a = 0.0f; + } + + // If the color is other than black on the texture then this is a pixel in the font so draw it using the font pixel color. + else + { + color.a = 1.0f; + color = color * pixelColor; + } + + return color; +} diff --git a/enginecustom/font.vs b/enginecustom/font.vs new file mode 100644 index 0000000..0b71af3 --- /dev/null +++ b/enginecustom/font.vs @@ -0,0 +1,48 @@ +///////////// +// GLOBALS // +///////////// +cbuffer MatrixBuffer +{ + matrix worldMatrix; + matrix viewMatrix; + matrix projectionMatrix; +}; + + +////////////// +// TYPEDEFS // +////////////// +struct VertexInputType +{ + float4 position : POSITION; + float2 tex : TEXCOORD0; +}; + +struct PixelInputType +{ + float4 position : SV_POSITION; + float2 tex : TEXCOORD0; +}; + + +//////////////////////////////////////////////////////////////////////////////// +// Vertex Shader +//////////////////////////////////////////////////////////////////////////////// +PixelInputType FontVertexShader(VertexInputType input) +{ + PixelInputType output; + + + // Change the position vector to be 4 units for proper matrix calculations. + input.position.w = 1.0f; + + // Calculate the position of the vertex against the world, view, and projection matrices. + output.position = mul(input.position, worldMatrix); + output.position = mul(output.position, viewMatrix); + output.position = mul(output.position, projectionMatrix); + + // Store the texture coordinates for the pixel shader. + output.tex = input.tex; + + return output; +} diff --git a/enginecustom/font01.tga b/enginecustom/font01.tga new file mode 100644 index 0000000..042989d Binary files /dev/null and b/enginecustom/font01.tga differ diff --git a/enginecustom/font01.txt b/enginecustom/font01.txt new file mode 100644 index 0000000..b96a96f --- /dev/null +++ b/enginecustom/font01.txt @@ -0,0 +1,95 @@ +32 0.0 0.0 0 +33 ! 0.0 0.00390625 4 +34 " 0.0048828125 0.0107421875 6 +35 # 0.01171875 0.025390625 14 +36 $ 0.0263671875 0.0390625 13 +37 % 0.0400390625 0.0546875 15 +38 & 0.0556640625 0.0693359375 14 +39 ' 0.0703125 0.0732421875 3 +40 ( 0.07421875 0.0791015625 5 +41 ) 0.080078125 0.0849609375 5 +42 * 0.0859375 0.091796875 6 +43 + 0.0927734375 0.103515625 11 +44 , 0.1044921875 0.107421875 3 +45 - 0.1083984375 0.1142578125 6 +46 . 0.115234375 0.1181640625 3 +47 / 0.119140625 0.126953125 8 +48 0 0.1279296875 0.1416015625 14 +49 1 0.142578125 0.146484375 4 +50 2 0.1474609375 0.1591796875 12 +51 3 0.16015625 0.1708984375 11 +52 4 0.171875 0.1845703125 13 +53 5 0.185546875 0.1962890625 11 +54 6 0.197265625 0.2099609375 13 +55 7 0.2109375 0.22265625 12 +56 8 0.2236328125 0.236328125 13 +57 9 0.2373046875 0.2490234375 12 +58 : 0.25 0.2529296875 3 +59 ; 0.25390625 0.2568359375 3 +60 < 0.2578125 0.267578125 10 +61 = 0.2685546875 0.279296875 11 +62 > 0.2802734375 0.2900390625 10 +63 ? 0.291015625 0.302734375 12 +64 @ 0.3037109375 0.3173828125 14 +65 A 0.318359375 0.33203125 14 +66 B 0.3330078125 0.3447265625 12 +67 C 0.345703125 0.3564453125 11 +68 D 0.357421875 0.3701171875 13 +69 E 0.37109375 0.3818359375 11 +70 F 0.3828125 0.3935546875 11 +71 G 0.39453125 0.40625 12 +72 H 0.4072265625 0.41796875 11 +73 I 0.4189453125 0.421875 3 +74 J 0.4228515625 0.4326171875 10 +75 K 0.43359375 0.4443359375 11 +76 L 0.4453125 0.4541015625 9 +77 M 0.455078125 0.4697265625 15 +78 N 0.470703125 0.482421875 12 +79 O 0.4833984375 0.49609375 13 +80 P 0.4970703125 0.5078125 12 +81 Q 0.509765625 0.5224609375 13 +82 R 0.5234375 0.53515625 12 +83 S 0.5361328125 0.548828125 13 +84 T 0.5498046875 0.5615234375 12 +85 U 0.5625 0.57421875 12 +86 V 0.5751953125 0.5888671875 14 +87 W 0.58984375 0.609375 20 +88 X 0.6103515625 0.6220703125 12 +89 Y 0.623046875 0.6357421875 13 +90 Z 0.63671875 0.6474609375 11 +91 [ 0.6484375 0.654296875 6 +92 \ 0.6552734375 0.6630859375 8 +93 ] 0.6640625 0.6689453125 5 +94 ^ 0.669921875 0.6806640625 11 +95 _ 0.681640625 0.6904296875 9 +96 ` 0.69140625 0.6962890625 5 +97 a 0.697265625 0.70703125 10 +98 b 0.7080078125 0.7177734375 10 +99 c 0.71875 0.7275390625 9 +100 d 0.728515625 0.73828125 10 +101 e 0.7392578125 0.748046875 9 +102 f 0.7490234375 0.755859375 7 +103 g 0.7568359375 0.7666015625 10 +104 h 0.767578125 0.7763671875 9 +105 i 0.77734375 0.7802734375 3 +106 j 0.78125 0.7861328125 5 +107 k 0.787109375 0.796875 10 +108 l 0.7978515625 0.80078125 3 +109 m 0.8017578125 0.8154296875 14 +110 n 0.81640625 0.826171875 10 +111 o 0.8271484375 0.8369140625 10 +112 p 0.837890625 0.84765625 10 +113 q 0.8486328125 0.8583984375 10 +114 r 0.859375 0.8671875 8 +115 s 0.8681640625 0.8779296875 10 +116 t 0.87890625 0.8857421875 7 +117 u 0.88671875 0.8955078125 9 +118 v 0.896484375 0.908203125 12 +119 w 0.9091796875 0.9248046875 16 +120 x 0.92578125 0.935546875 10 +121 y 0.9365234375 0.9453125 9 +122 z 0.9462890625 0.9560546875 10 +123 { 0.95703125 0.9638671875 7 +124 | 0.96484375 0.966796875 2 +125 } 0.9677734375 0.974609375 7 +126 ~ 0.9755859375 0.986328125 11 diff --git a/enginecustom/fontclass.cpp b/enginecustom/fontclass.cpp new file mode 100644 index 0000000..68b4f4b --- /dev/null +++ b/enginecustom/fontclass.cpp @@ -0,0 +1,252 @@ +#include "fontclass.h" + +FontClass::FontClass() +{ + m_Font = 0; + m_Texture = 0; +} + + +FontClass::FontClass(const FontClass& other) +{ +} + + +FontClass::~FontClass() +{ +} + +bool FontClass::Initialize(ID3D11Device* device, ID3D11DeviceContext* deviceContext, int fontChoice) +{ + char fontFilename[128]; + char fontTextureFilename[128]; + bool result; + + // Choose one of the available fonts, and default to the first font otherwise. + switch (fontChoice) + { + case 0: + { + strcpy_s(fontFilename, "font01.txt"); + strcpy_s(fontTextureFilename, "font01.tga"); + m_fontHeight = 32.0f; + m_spaceSize = 3; + break; + } + default: + { + strcpy_s(fontFilename, "font01.txt"); + strcpy_s(fontTextureFilename, "font01.tga"); + m_fontHeight = 32.0f; + m_spaceSize = 3; + break; + } + } + + // Load in the text file containing the font data. + result = LoadFontData(fontFilename); + if (!result) + { + return false; + } + + // Load the texture that has the font characters on it. + result = LoadTexture(device, deviceContext, fontTextureFilename); + if (!result) + { + return false; + } + + return true; +} + +void FontClass::Shutdown() +{ + // Release the font texture. + ReleaseTexture(); + + // Release the font data. + ReleaseFontData(); + + return; +} + +bool FontClass::LoadFontData(char* filename) +{ + std::ifstream fin; + int i; + char temp; + + // Create the font spacing buffer. + m_Font = new FontType[95]; + + // Read in the font size and spacing between chars. + fin.open(filename); + if (fin.fail()) + { + return false; + } + + // Read in the 95 used ascii characters for text. + for (i = 0; i < 95; i++) + { + fin.get(temp); + while (temp != ' ') + { + fin.get(temp); + } + fin.get(temp); + while (temp != ' ') + { + fin.get(temp); + } + + fin >> m_Font[i].left; + fin >> m_Font[i].right; + fin >> m_Font[i].size; + } + + // Close the file. + fin.close(); + + return true; +} + +void FontClass::ReleaseFontData() +{ + // Release the font data array. + if (m_Font) + { + delete[] m_Font; + m_Font = 0; + } + + return; +} + +bool FontClass::LoadTexture(ID3D11Device* device, ID3D11DeviceContext* deviceContext, char* filename) +{ + bool result; + + + // Create and initialize the font texture object. + m_Texture = new TextureClass; + + result = m_Texture->Initialize(device, deviceContext, filename); + if (!result) + { + return false; + } + + return true; +} + +void FontClass::ReleaseTexture() +{ + // Release the texture object. + if (m_Texture) + { + m_Texture->Shutdown(); + delete m_Texture; + m_Texture = 0; + } + + return; +} + +ID3D11ShaderResourceView* FontClass::GetTexture() +{ + return m_Texture->GetTexture(); +} + +void FontClass::BuildVertexArray(void* vertices, char* sentence, float drawX, float drawY) +{ + VertexType* vertexPtr; + int numLetters, index, i, letter; + + + // Coerce the input vertices into a VertexType structure. + vertexPtr = (VertexType*)vertices; + + // Get the number of letters in the sentence. + numLetters = (int)strlen(sentence); + + // Initialize the index to the vertex array. + index = 0; + + // Draw each letter onto a quad. + for (i = 0; i < numLetters; i++) + { + letter = ((int)sentence[i]) - 32; + + // If the letter is a space then just move over three pixels. + if (letter == 0) + { + drawX = drawX + m_spaceSize; + } + else + { + // First triangle in quad. + vertexPtr[index].position = XMFLOAT3(drawX, drawY, 0.0f); // Top left. + vertexPtr[index].texture = XMFLOAT2(m_Font[letter].left, 0.0f); + index++; + + vertexPtr[index].position = XMFLOAT3((drawX + m_Font[letter].size), (drawY - m_fontHeight), 0.0f); // Bottom right. + vertexPtr[index].texture = XMFLOAT2(m_Font[letter].right, 1.0f); + index++; + + vertexPtr[index].position = XMFLOAT3(drawX, (drawY - m_fontHeight), 0.0f); // Bottom left. + vertexPtr[index].texture = XMFLOAT2(m_Font[letter].left, 1.0f); + index++; + + // Second triangle in quad. + vertexPtr[index].position = XMFLOAT3(drawX, drawY, 0.0f); // Top left. + vertexPtr[index].texture = XMFLOAT2(m_Font[letter].left, 0.0f); + index++; + + vertexPtr[index].position = XMFLOAT3(drawX + m_Font[letter].size, drawY, 0.0f); // Top right. + vertexPtr[index].texture = XMFLOAT2(m_Font[letter].right, 0.0f); + index++; + + vertexPtr[index].position = XMFLOAT3((drawX + m_Font[letter].size), (drawY - m_fontHeight), 0.0f); // Bottom right. + vertexPtr[index].texture = XMFLOAT2(m_Font[letter].right, 1.0f); + index++; + + // Update the x location for drawing by the size of the letter and one pixel. + drawX = drawX + m_Font[letter].size + 1.0f; + } + } + + return; +} + +int FontClass::GetSentencePixelLength(char* sentence) +{ + int pixelLength, numLetters, i, letter; + + + pixelLength = 0; + numLetters = (int)strlen(sentence); + + for (i = 0; i < numLetters; i++) + { + letter = ((int)sentence[i]) - 32; + + // If the letter is a space then count it as three pixels. + if (letter == 0) + { + pixelLength += m_spaceSize; + } + else + { + pixelLength += (m_Font[letter].size + 1); + } + } + + return pixelLength; +} + +int FontClass::GetFontHeight() +{ + return (int)m_fontHeight; +} diff --git a/enginecustom/fontclass.h b/enginecustom/fontclass.h new file mode 100644 index 0000000..cd5a11e --- /dev/null +++ b/enginecustom/fontclass.h @@ -0,0 +1,64 @@ +#ifndef _FONTCLASS_H_ +#define _FONTCLASS_H_ + + +////////////// +// INCLUDES // +////////////// +#include +#include +using namespace DirectX; + + +/////////////////////// +// MY CLASS INCLUDES // +/////////////////////// +#include "textureclass.h" + + +//////////////////////////////////////////////////////////////////////////////// +// Class name: FontClass +//////////////////////////////////////////////////////////////////////////////// +class FontClass +{ +private: + struct FontType + { + float left, right; + int size; + }; + + struct VertexType + { + XMFLOAT3 position; + XMFLOAT2 texture; + }; + +public: + FontClass(); + FontClass(const FontClass&); + ~FontClass(); + + bool Initialize(ID3D11Device*, ID3D11DeviceContext*, int); + void Shutdown(); + + ID3D11ShaderResourceView* GetTexture(); + + void BuildVertexArray(void*, char*, float, float); + int GetSentencePixelLength(char*); + int GetFontHeight(); + +private: + bool LoadFontData(char*); + void ReleaseFontData(); + bool LoadTexture(ID3D11Device*, ID3D11DeviceContext*, char*); + void ReleaseTexture(); + +private: + FontType* m_Font; + TextureClass* m_Texture; + float m_fontHeight; + int m_spaceSize; +}; + +#endif \ No newline at end of file diff --git a/enginecustom/fontshaderclass.cpp b/enginecustom/fontshaderclass.cpp new file mode 100644 index 0000000..21978f1 --- /dev/null +++ b/enginecustom/fontshaderclass.cpp @@ -0,0 +1,408 @@ +#include "fontshaderclass.h" + + +FontShaderClass::FontShaderClass() +{ + m_vertexShader = 0; + m_pixelShader = 0; + m_layout = 0; + m_matrixBuffer = 0; + m_sampleState = 0; + m_pixelBuffer = 0; +} + + +FontShaderClass::FontShaderClass(const FontShaderClass& other) +{ +} + + +FontShaderClass::~FontShaderClass() +{ +} + + +bool FontShaderClass::Initialize(ID3D11Device* device, HWND hwnd) +{ + bool result; + wchar_t vsFilename[128]; + wchar_t psFilename[128]; + int error; + + // Set the filename of the vertex shader. + error = wcscpy_s(vsFilename, 128, L"font.vs"); + if (error != 0) + { + return false; + } + + // Set the filename of the pixel shader. + error = wcscpy_s(psFilename, 128, L"font.ps"); + if (error != 0) + { + return false; + } + + // Initialize the vertex and pixel shaders. + result = InitializeShader(device, hwnd, vsFilename, psFilename); + if (!result) + { + return false; + } + + return true; +} + +void FontShaderClass::Shutdown() +{ + // Shutdown the vertex and pixel shaders as well as the related objects. + ShutdownShader(); + + return; +} + +bool FontShaderClass::Render(ID3D11DeviceContext* deviceContext, int indexCount, XMMATRIX worldMatrix, XMMATRIX viewMatrix, + XMMATRIX projectionMatrix, ID3D11ShaderResourceView* texture, XMFLOAT4 pixelColor) +{ + bool result; + + + // Set the shader parameters that it will use for rendering. + result = SetShaderParameters(deviceContext, worldMatrix, viewMatrix, projectionMatrix, texture, pixelColor); + if (!result) + { + return false; + } + + // Now render the prepared buffers with the shader. + RenderShader(deviceContext, indexCount); + + return true; +} + +bool FontShaderClass::InitializeShader(ID3D11Device* device, HWND hwnd, WCHAR* vsFilename, WCHAR* psFilename) +{ + HRESULT result; + ID3D10Blob* errorMessage; + ID3D10Blob* vertexShaderBuffer; + ID3D10Blob* pixelShaderBuffer; + D3D11_INPUT_ELEMENT_DESC polygonLayout[2]; + unsigned int numElements; + D3D11_BUFFER_DESC matrixBufferDesc; + D3D11_SAMPLER_DESC samplerDesc; + D3D11_BUFFER_DESC pixelBufferDesc; + + + // Initialize the pointers this function will use to null. + errorMessage = 0; + vertexShaderBuffer = 0; + pixelShaderBuffer = 0; + + // Compile the vertex shader code. + result = D3DCompileFromFile(vsFilename, NULL, NULL, "FontVertexShader", "vs_5_0", D3D10_SHADER_ENABLE_STRICTNESS, 0, + &vertexShaderBuffer, &errorMessage); + if (FAILED(result)) + { + // If the shader failed to compile it should have writen something to the error message. + if (errorMessage) + { + OutputShaderErrorMessage(errorMessage, hwnd, vsFilename); + } + // If there was nothing in the error message then it simply could not find the shader file itself. + else + { + MessageBox(hwnd, vsFilename, L"Missing Shader File", MB_OK); + } + + return false; + } + + // Compile the pixel shader code. + result = D3DCompileFromFile(psFilename, NULL, NULL, "FontPixelShader", "ps_5_0", D3D10_SHADER_ENABLE_STRICTNESS, 0, + &pixelShaderBuffer, &errorMessage); + if (FAILED(result)) + { + // If the shader failed to compile it should have writen something to the error message. + if (errorMessage) + { + OutputShaderErrorMessage(errorMessage, hwnd, psFilename); + } + // If there was nothing in the error message then it simply could not find the file itself. + else + { + MessageBox(hwnd, psFilename, L"Missing Shader File", MB_OK); + } + + return false; + } + + // Create the vertex shader from the buffer. + result = device->CreateVertexShader(vertexShaderBuffer->GetBufferPointer(), vertexShaderBuffer->GetBufferSize(), NULL, &m_vertexShader); + if (FAILED(result)) + { + return false; + } + + // Create the pixel shader from the buffer. + result = device->CreatePixelShader(pixelShaderBuffer->GetBufferPointer(), pixelShaderBuffer->GetBufferSize(), NULL, &m_pixelShader); + if (FAILED(result)) + { + return false; + } + + // Create the vertex input layout description. + polygonLayout[0].SemanticName = "POSITION"; + polygonLayout[0].SemanticIndex = 0; + polygonLayout[0].Format = DXGI_FORMAT_R32G32B32_FLOAT; + polygonLayout[0].InputSlot = 0; + polygonLayout[0].AlignedByteOffset = 0; + polygonLayout[0].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; + polygonLayout[0].InstanceDataStepRate = 0; + + polygonLayout[1].SemanticName = "TEXCOORD"; + polygonLayout[1].SemanticIndex = 0; + polygonLayout[1].Format = DXGI_FORMAT_R32G32_FLOAT; + polygonLayout[1].InputSlot = 0; + polygonLayout[1].AlignedByteOffset = D3D11_APPEND_ALIGNED_ELEMENT; + polygonLayout[1].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; + polygonLayout[1].InstanceDataStepRate = 0; + + // Get a count of the elements in the layout. + numElements = sizeof(polygonLayout) / sizeof(polygonLayout[0]); + + // Create the vertex input layout. + result = device->CreateInputLayout(polygonLayout, numElements, vertexShaderBuffer->GetBufferPointer(), + vertexShaderBuffer->GetBufferSize(), &m_layout); + if (FAILED(result)) + { + return false; + } + + // Release the vertex shader buffer and pixel shader buffer since they are no longer needed. + vertexShaderBuffer->Release(); + vertexShaderBuffer = 0; + + pixelShaderBuffer->Release(); + pixelShaderBuffer = 0; + + // Setup the description of the dynamic matrix constant buffer that is in the vertex shader. + matrixBufferDesc.Usage = D3D11_USAGE_DYNAMIC; + matrixBufferDesc.ByteWidth = sizeof(MatrixBufferType); + matrixBufferDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; + matrixBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + matrixBufferDesc.MiscFlags = 0; + matrixBufferDesc.StructureByteStride = 0; + + // Create the constant buffer pointer so we can access the vertex shader constant buffer from within this class. + result = device->CreateBuffer(&matrixBufferDesc, NULL, &m_matrixBuffer); + if (FAILED(result)) + { + return false; + } + + // Create a texture sampler state description. + samplerDesc.Filter = D3D11_FILTER_MIN_MAG_MIP_LINEAR; + samplerDesc.AddressU = D3D11_TEXTURE_ADDRESS_WRAP; + samplerDesc.AddressV = D3D11_TEXTURE_ADDRESS_WRAP; + samplerDesc.AddressW = D3D11_TEXTURE_ADDRESS_WRAP; + samplerDesc.MipLODBias = 0.0f; + samplerDesc.MaxAnisotropy = 1; + samplerDesc.ComparisonFunc = D3D11_COMPARISON_ALWAYS; + samplerDesc.BorderColor[0] = 0; + samplerDesc.BorderColor[1] = 0; + samplerDesc.BorderColor[2] = 0; + samplerDesc.BorderColor[3] = 0; + samplerDesc.MinLOD = 0; + samplerDesc.MaxLOD = D3D11_FLOAT32_MAX; + + // Create the texture sampler state. + result = device->CreateSamplerState(&samplerDesc, &m_sampleState); + if (FAILED(result)) + { + return false; + } + + // Setup the description of the dynamic pixel constant buffer that is in the pixel shader. + pixelBufferDesc.Usage = D3D11_USAGE_DYNAMIC; + pixelBufferDesc.ByteWidth = sizeof(PixelBufferType); + pixelBufferDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; + pixelBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + pixelBufferDesc.MiscFlags = 0; + pixelBufferDesc.StructureByteStride = 0; + + // Create the pixel constant buffer pointer so we can access the pixel shader constant buffer from within this class. + result = device->CreateBuffer(&pixelBufferDesc, NULL, &m_pixelBuffer); + if (FAILED(result)) + { + return false; + } + + return true; +} + +void FontShaderClass::ShutdownShader() +{ + // Release the pixel constant buffer. + if (m_pixelBuffer) + { + m_pixelBuffer->Release(); + m_pixelBuffer = 0; + } + + // Release the sampler state. + if (m_sampleState) + { + m_sampleState->Release(); + m_sampleState = 0; + } + + // Release the matrix constant buffer. + if (m_matrixBuffer) + { + m_matrixBuffer->Release(); + m_matrixBuffer = 0; + } + + // Release the layout. + if (m_layout) + { + m_layout->Release(); + m_layout = 0; + } + + // Release the pixel shader. + if (m_pixelShader) + { + m_pixelShader->Release(); + m_pixelShader = 0; + } + + // Release the vertex shader. + if (m_vertexShader) + { + m_vertexShader->Release(); + m_vertexShader = 0; + } + + return; +} + +void FontShaderClass::OutputShaderErrorMessage(ID3D10Blob* errorMessage, HWND hwnd, WCHAR* shaderFilename) +{ + char* compileErrors; + unsigned long long bufferSize, i; + ofstream fout; + + + // Get a pointer to the error message text buffer. + compileErrors = (char*)(errorMessage->GetBufferPointer()); + + // Get the length of the message. + bufferSize = errorMessage->GetBufferSize(); + + // Open a file to write the error message to. + fout.open("shader-error.txt"); + + // Write out the error message. + for (i = 0; i < bufferSize; i++) + { + fout << compileErrors[i]; + } + + // Close the file. + fout.close(); + + // Release the error message. + errorMessage->Release(); + errorMessage = 0; + + // Pop a message up on the screen to notify the user to check the text file for compile errors. + MessageBox(hwnd, L"Error compiling shader. Check shader-error.txt for message.", shaderFilename, MB_OK); + + return; +} + +bool FontShaderClass::SetShaderParameters(ID3D11DeviceContext* deviceContext, XMMATRIX worldMatrix, XMMATRIX viewMatrix, + XMMATRIX projectionMatrix, ID3D11ShaderResourceView* texture, XMFLOAT4 pixelColor) +{ + HRESULT result; + D3D11_MAPPED_SUBRESOURCE mappedResource; + MatrixBufferType* dataPtr; + unsigned int bufferNumber; + PixelBufferType* dataPtr2; + + + // Transpose the matrices to prepare them for the shader. + worldMatrix = XMMatrixTranspose(worldMatrix); + viewMatrix = XMMatrixTranspose(viewMatrix); + projectionMatrix = XMMatrixTranspose(projectionMatrix); + + // Lock the constant buffer so it can be written to. + result = deviceContext->Map(m_matrixBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); + if (FAILED(result)) + { + return false; + } + + // Get a pointer to the data in the constant buffer. + dataPtr = (MatrixBufferType*)mappedResource.pData; + + // Copy the matrices into the constant buffer. + dataPtr->world = worldMatrix; + dataPtr->view = viewMatrix; + dataPtr->projection = projectionMatrix; + + // Unlock the constant buffer. + deviceContext->Unmap(m_matrixBuffer, 0); + + // Set the position of the constant buffer in the vertex shader. + bufferNumber = 0; + + // Finally set the constant buffer in the vertex shader with the updated values. + deviceContext->VSSetConstantBuffers(bufferNumber, 1, &m_matrixBuffer); + + // Set shader texture resource in the pixel shader. + deviceContext->PSSetShaderResources(0, 1, &texture); + + // Lock the pixel constant buffer so it can be written to. + result = deviceContext->Map(m_pixelBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); + if (FAILED(result)) + { + return false; + } + + // Get a pointer to the data in the pixel constant buffer. + dataPtr2 = (PixelBufferType*)mappedResource.pData; + + // Copy the pixel color into the pixel constant buffer. + dataPtr2->pixelColor = pixelColor; + + // Unlock the pixel constant buffer. + deviceContext->Unmap(m_pixelBuffer, 0); + + // Set the position of the pixel constant buffer in the pixel shader. + bufferNumber = 0; + + // Now set the pixel constant buffer in the pixel shader with the updated value. + deviceContext->PSSetConstantBuffers(bufferNumber, 1, &m_pixelBuffer); + + return true; +} + +void FontShaderClass::RenderShader(ID3D11DeviceContext* deviceContext, int indexCount) +{ + // Set the vertex input layout. + deviceContext->IASetInputLayout(m_layout); + + // Set the vertex and pixel shaders that will be used to render this triangle. + deviceContext->VSSetShader(m_vertexShader, NULL, 0); + deviceContext->PSSetShader(m_pixelShader, NULL, 0); + + // Set the sampler state in the pixel shader. + deviceContext->PSSetSamplers(0, 1, &m_sampleState); + + // Render the triangle. + deviceContext->DrawIndexed(indexCount, 0, 0); + + return; +} \ No newline at end of file diff --git a/enginecustom/fontshaderclass.h b/enginecustom/fontshaderclass.h new file mode 100644 index 0000000..8a0221d --- /dev/null +++ b/enginecustom/fontshaderclass.h @@ -0,0 +1,60 @@ +#ifndef _FONTSHADERCLASS_H_ +#define _FONTSHADERCLASS_H_ + + +////////////// +// INCLUDES // +////////////// +#include +#include +#include +#include +using namespace DirectX; +using namespace std; + + +//////////////////////////////////////////////////////////////////////////////// +// Class name: FontShaderClass +//////////////////////////////////////////////////////////////////////////////// +class FontShaderClass +{ +private: + struct MatrixBufferType + { + XMMATRIX world; + XMMATRIX view; + XMMATRIX projection; + }; + + struct PixelBufferType + { + XMFLOAT4 pixelColor; + }; + +public: + FontShaderClass(); + FontShaderClass(const FontShaderClass&); + ~FontShaderClass(); + + bool Initialize(ID3D11Device*, HWND); + void Shutdown(); + bool Render(ID3D11DeviceContext*, int, XMMATRIX, XMMATRIX, XMMATRIX, ID3D11ShaderResourceView*, XMFLOAT4); + +private: + bool InitializeShader(ID3D11Device*, HWND, WCHAR*, WCHAR*); + void ShutdownShader(); + void OutputShaderErrorMessage(ID3D10Blob*, HWND, WCHAR*); + + bool SetShaderParameters(ID3D11DeviceContext*, XMMATRIX, XMMATRIX, XMMATRIX, ID3D11ShaderResourceView*, XMFLOAT4); + void RenderShader(ID3D11DeviceContext*, int); + +private: + ID3D11VertexShader* m_vertexShader; + ID3D11PixelShader* m_pixelShader; + ID3D11InputLayout* m_layout; + ID3D11Buffer* m_matrixBuffer; + ID3D11SamplerState* m_sampleState; + ID3D11Buffer* m_pixelBuffer; +}; + +#endif \ No newline at end of file diff --git a/enginecustom/fpsclass.cpp b/enginecustom/fpsclass.cpp new file mode 100644 index 0000000..ac24c3e --- /dev/null +++ b/enginecustom/fpsclass.cpp @@ -0,0 +1,46 @@ +#include "fpsclass.h" + + +FpsClass::FpsClass() +{ +} + + +FpsClass::FpsClass(const FpsClass& other) +{ +} + + +FpsClass::~FpsClass() +{ +} + +void FpsClass::Initialize() +{ + m_fps = 0; + m_count = 0; + + m_startTime = timeGetTime(); + + return; +} + +void FpsClass::Frame() +{ + m_count++; + + if (timeGetTime() >= (m_startTime + 1000)) + { + m_fps = m_count; + m_count = 0; + + m_startTime = timeGetTime(); + } + + return; +} + +int FpsClass::GetFps() +{ + return m_fps; +} \ No newline at end of file diff --git a/enginecustom/fpsclass.h b/enginecustom/fpsclass.h new file mode 100644 index 0000000..af3451b --- /dev/null +++ b/enginecustom/fpsclass.h @@ -0,0 +1,36 @@ +#ifndef _FPSCLASS_H_ +#define _FPSCLASS_H_ + + +///////////// +// LINKING // +///////////// +#pragma comment(lib, "winmm.lib") + + +////////////// +// INCLUDES // +////////////// +#include +#include + +//////////////////////////////////////////////////////////////////////////////// +// Class name: FpsClass +//////////////////////////////////////////////////////////////////////////////// +class FpsClass +{ +public: + FpsClass(); + FpsClass(const FpsClass&); + ~FpsClass(); + + void Initialize(); + void Frame(); + int GetFps(); + +private: + int m_fps, m_count; + unsigned long m_startTime; +}; + +#endif \ No newline at end of file diff --git a/enginecustom/light.ps b/enginecustom/light.ps index d105334..7941e19 100644 --- a/enginecustom/light.ps +++ b/enginecustom/light.ps @@ -2,18 +2,24 @@ // Filename: light.ps //////////////////////////////////////////////////////////////////////////////// - ///////////// // DEFINES // ///////////// #define NUM_LIGHTS 4 - ///////////// // GLOBALS // ///////////// Texture2D shaderTexture : register(t0); SamplerState SampleType : register(s0); +cbuffer LightBuffer +{ + float4 ambientColor; + float3 lightDirection; + float padding; + float specularPower; + float4 specularColor; +}; cbuffer LightColorBuffer { @@ -38,27 +44,29 @@ struct PixelInputType //////////////////////////////////////////////////////////////////////////////// float4 LightPixelShader(PixelInputType input) : SV_TARGET { - float4 textureColor; - float lightIntensity[NUM_LIGHTS]; - float4 colorArray[NUM_LIGHTS]; - float4 colorSum; + float4 textureColor; + float3 lightDir; float4 color; - int i; + float3 reflection; + float4 specular; + float lightIntensity[NUM_LIGHTS]; + float4 colorArray[NUM_LIGHTS]; + float4 colorSum; + int i; - - // Sample the texture pixel at this location. + // Sample the pixel color from the texture using the sampler at this texture coordinate location. textureColor = shaderTexture.Sample(SampleType, input.tex); - for(i=0; iCreateVertexShader(vertexShaderBuffer->GetBufferPointer(), vertexShaderBuffer->GetBufferSize(), NULL, &m_vertexShader); - if(FAILED(result)) - { - return false; - } + if (FAILED(result)) + { + return false; + } // Create the pixel shader from the buffer. result = device->CreatePixelShader(pixelShaderBuffer->GetBufferPointer(), pixelShaderBuffer->GetBufferSize(), NULL, &m_pixelShader); - if(FAILED(result)) - { - return false; - } + if (FAILED(result)) + { + return false; + } - // Create the vertex input layout description. - // This setup needs to match the VertexType stucture in the ModelClass and in the shader. - polygonLayout[0].SemanticName = "POSITION"; - polygonLayout[0].SemanticIndex = 0; - polygonLayout[0].Format = DXGI_FORMAT_R32G32B32_FLOAT; - polygonLayout[0].InputSlot = 0; - polygonLayout[0].AlignedByteOffset = 0; - polygonLayout[0].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; - polygonLayout[0].InstanceDataStepRate = 0; + // Create the vertex input layout description. + // This setup needs to match the VertexType stucture in the ModelClass and in the shader. + polygonLayout[0].SemanticName = "POSITION"; + polygonLayout[0].SemanticIndex = 0; + polygonLayout[0].Format = DXGI_FORMAT_R32G32B32_FLOAT; + polygonLayout[0].InputSlot = 0; + polygonLayout[0].AlignedByteOffset = 0; + polygonLayout[0].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; + polygonLayout[0].InstanceDataStepRate = 0; - polygonLayout[1].SemanticName = "TEXCOORD"; - polygonLayout[1].SemanticIndex = 0; - polygonLayout[1].Format = DXGI_FORMAT_R32G32_FLOAT; - polygonLayout[1].InputSlot = 0; - polygonLayout[1].AlignedByteOffset = D3D11_APPEND_ALIGNED_ELEMENT; - polygonLayout[1].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; - polygonLayout[1].InstanceDataStepRate = 0; + polygonLayout[1].SemanticName = "TEXCOORD"; + polygonLayout[1].SemanticIndex = 0; + polygonLayout[1].Format = DXGI_FORMAT_R32G32_FLOAT; + polygonLayout[1].InputSlot = 0; + polygonLayout[1].AlignedByteOffset = D3D11_APPEND_ALIGNED_ELEMENT; + polygonLayout[1].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; + polygonLayout[1].InstanceDataStepRate = 0; - polygonLayout[2].SemanticName = "NORMAL"; - polygonLayout[2].SemanticIndex = 0; - polygonLayout[2].Format = DXGI_FORMAT_R32G32B32_FLOAT; - polygonLayout[2].InputSlot = 0; - polygonLayout[2].AlignedByteOffset = D3D11_APPEND_ALIGNED_ELEMENT; - polygonLayout[2].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; - polygonLayout[2].InstanceDataStepRate = 0; + polygonLayout[2].SemanticName = "NORMAL"; + polygonLayout[2].SemanticIndex = 0; + polygonLayout[2].Format = DXGI_FORMAT_R32G32B32_FLOAT; + polygonLayout[2].InputSlot = 0; + polygonLayout[2].AlignedByteOffset = D3D11_APPEND_ALIGNED_ELEMENT; + polygonLayout[2].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; + polygonLayout[2].InstanceDataStepRate = 0; - // Get a count of the elements in the layout. + // Get a count of the elements in the layout. numElements = sizeof(polygonLayout) / sizeof(polygonLayout[0]); - // Create the vertex input layout. - result = device->CreateInputLayout(polygonLayout, numElements, vertexShaderBuffer->GetBufferPointer(), vertexShaderBuffer->GetBufferSize(), - &m_layout); - if(FAILED(result)) - { - return false; - } + // Create the vertex input layout. + result = device->CreateInputLayout(polygonLayout, numElements, vertexShaderBuffer->GetBufferPointer(), vertexShaderBuffer->GetBufferSize(), + &m_layout); + if (FAILED(result)) + { + return false; + } - // Release the vertex shader buffer and pixel shader buffer since they are no longer needed. - vertexShaderBuffer->Release(); - vertexShaderBuffer = 0; + // Release the vertex shader buffer and pixel shader buffer since they are no longer needed. + vertexShaderBuffer->Release(); + vertexShaderBuffer = 0; - pixelShaderBuffer->Release(); - pixelShaderBuffer = 0; + pixelShaderBuffer->Release(); + pixelShaderBuffer = 0; - // Create a texture sampler state description. + // Create a texture sampler state description. samplerDesc.Filter = D3D11_FILTER_MIN_MAG_MIP_LINEAR; samplerDesc.AddressU = D3D11_TEXTURE_ADDRESS_WRAP; samplerDesc.AddressV = D3D11_TEXTURE_ADDRESS_WRAP; @@ -213,289 +210,307 @@ bool LightShaderClass::InitializeShader(ID3D11Device* device, HWND hwnd, WCHAR* samplerDesc.MaxAnisotropy = 1; samplerDesc.ComparisonFunc = D3D11_COMPARISON_ALWAYS; samplerDesc.BorderColor[0] = 0; - samplerDesc.BorderColor[1] = 0; - samplerDesc.BorderColor[2] = 0; - samplerDesc.BorderColor[3] = 0; + samplerDesc.BorderColor[1] = 0; + samplerDesc.BorderColor[2] = 0; + samplerDesc.BorderColor[3] = 0; samplerDesc.MinLOD = 0; samplerDesc.MaxLOD = D3D11_FLOAT32_MAX; - // Create the texture sampler state. + // Create the texture sampler state. result = device->CreateSamplerState(&samplerDesc, &m_sampleState); - if(FAILED(result)) - { - return false; - } + if (FAILED(result)) + { + return false; + } - // Setup the description of the dynamic matrix constant buffer that is in the vertex shader. + // Setup the description of the dynamic matrix constant buffer that is in the vertex shader. matrixBufferDesc.Usage = D3D11_USAGE_DYNAMIC; - matrixBufferDesc.ByteWidth = sizeof(MatrixBufferType); + matrixBufferDesc.ByteWidth = sizeof(MatrixBufferType); matrixBufferDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; matrixBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; matrixBufferDesc.MiscFlags = 0; - matrixBufferDesc.StructureByteStride = 0; + matrixBufferDesc.StructureByteStride = 0; - // Create the constant buffer pointer so we can access the vertex shader constant buffer from within this class. - result = device->CreateBuffer(&matrixBufferDesc, NULL, &m_matrixBuffer); - if(FAILED(result)) - { - return false; - } - // Setup the description of the dynamic constant buffer that is in the pixel shader. - lightColorBufferDesc.Usage = D3D11_USAGE_DYNAMIC; - lightColorBufferDesc.ByteWidth = sizeof(LightColorBufferType); - lightColorBufferDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; - lightColorBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; - lightColorBufferDesc.MiscFlags = 0; - lightColorBufferDesc.StructureByteStride = 0; + // Create the constant buffer pointer so we can access the vertex shader constant buffer from within this class. + result = device->CreateBuffer(&matrixBufferDesc, NULL, &m_matrixBuffer); + if (FAILED(result)) + { + return false; + } - // Create the constant buffer pointer so we can access the pixel shader constant buffer from within this class. - result = device->CreateBuffer(&lightColorBufferDesc, NULL, &m_lightColorBuffer); - if (FAILED(result)) - { - return false; - } - // Setup the description of the dynamic constant buffer that is in the vertex shader. - lightPositionBufferDesc.Usage = D3D11_USAGE_DYNAMIC; - lightPositionBufferDesc.ByteWidth = sizeof(LightPositionBufferType); - lightPositionBufferDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; - lightPositionBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; - lightPositionBufferDesc.MiscFlags = 0; - lightPositionBufferDesc.StructureByteStride = 0; - // Create the constant buffer pointer so we can access the vertex shader constant buffer from within this class. - result = device->CreateBuffer(&lightPositionBufferDesc, NULL, &m_lightPositionBuffer); - if (FAILED(result)) - { - return false; - } - // Setup the description of the light dynamic constant buffer that is in the pixel shader. - // Note that ByteWidth always needs to be a multiple of 16 if using D3D11_BIND_CONSTANT_BUFFER or CreateBuffer will fail. - lightBufferDesc.Usage = D3D11_USAGE_DYNAMIC; - lightBufferDesc.ByteWidth = sizeof(LightBufferType); - lightBufferDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; - lightBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; - lightBufferDesc.MiscFlags = 0; - lightBufferDesc.StructureByteStride = 0; + // Setup the description of the camera dynamic constant buffer that is in the vertex shader. + cameraBufferDesc.Usage = D3D11_USAGE_DYNAMIC; + cameraBufferDesc.ByteWidth = sizeof(CameraBufferType); + cameraBufferDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; + cameraBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + cameraBufferDesc.MiscFlags = 0; + cameraBufferDesc.StructureByteStride = 0; - // Create the constant buffer pointer so we can access the vertex shader constant buffer from within this class. - result = device->CreateBuffer(&lightBufferDesc, NULL, &m_lightBuffer); - if(FAILED(result)) - { - return false; - } + // Create the camera constant buffer pointer so we can access the vertex shader constant buffer from within this class. + result = device->CreateBuffer(&cameraBufferDesc, NULL, &m_cameraBuffer); + if (FAILED(result)) + { + return false; + } - return true; + // Setup the description of the dynamic constant buffer that is in the pixel shader. + lightColorBufferDesc.Usage = D3D11_USAGE_DYNAMIC; + lightColorBufferDesc.ByteWidth = sizeof(LightColorBufferType); + lightColorBufferDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; + lightColorBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + lightColorBufferDesc.MiscFlags = 0; + lightColorBufferDesc.StructureByteStride = 0; + + // Create the constant buffer pointer so we can access the pixel shader constant buffer from within this class. + result = device->CreateBuffer(&lightColorBufferDesc, NULL, &m_lightColorBuffer); + if (FAILED(result)) + { + return false; + } + + // Setup the description of the dynamic constant buffer that is in the vertex shader. + lightPositionBufferDesc.Usage = D3D11_USAGE_DYNAMIC; + lightPositionBufferDesc.ByteWidth = sizeof(LightPositionBufferType); + lightPositionBufferDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; + lightPositionBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + lightPositionBufferDesc.MiscFlags = 0; + lightPositionBufferDesc.StructureByteStride = 0; + + // Create the constant buffer pointer so we can access the vertex shader constant buffer from within this class. + result = device->CreateBuffer(&lightPositionBufferDesc, NULL, &m_lightPositionBuffer); + if (FAILED(result)) + { + return false; + } + + return true; } void LightShaderClass::ShutdownShader() { - // Release the light constant buffers. - if (m_lightColorBuffer) - { - m_lightColorBuffer->Release(); - m_lightColorBuffer = 0; - } + // Release the light constant buffers. + if (m_lightColorBuffer) + { + m_lightColorBuffer->Release(); + m_lightColorBuffer = 0; + } - if (m_lightPositionBuffer) - { - m_lightPositionBuffer->Release(); - m_lightPositionBuffer = 0; - } - // Release the light constant buffer. - if(m_lightBuffer) - { - m_lightBuffer->Release(); - m_lightBuffer = 0; - } + if (m_lightPositionBuffer) + { + m_lightPositionBuffer->Release(); + m_lightPositionBuffer = 0; + } - // Release the matrix constant buffer. - if(m_matrixBuffer) - { - m_matrixBuffer->Release(); - m_matrixBuffer = 0; - } + // Release the light constant buffer. + if (m_lightBuffer) + { + m_lightBuffer->Release(); + m_lightBuffer = 0; + } - // Release the sampler state. - if(m_sampleState) - { - m_sampleState->Release(); - m_sampleState = 0; - } + // Release the camera constant buffer. + if (m_cameraBuffer) + { + m_cameraBuffer->Release(); + m_cameraBuffer = 0; + } - // Release the layout. - if(m_layout) - { - m_layout->Release(); - m_layout = 0; - } + // Release the matrix constant buffer. + if (m_matrixBuffer) + { + m_matrixBuffer->Release(); + m_matrixBuffer = 0; + } - // Release the pixel shader. - if(m_pixelShader) - { - m_pixelShader->Release(); - m_pixelShader = 0; - } + // Release the sampler state. + if (m_sampleState) + { + m_sampleState->Release(); + m_sampleState = 0; + } - // Release the vertex shader. - if(m_vertexShader) - { - m_vertexShader->Release(); - m_vertexShader = 0; - } + // Release the layout. + if (m_layout) + { + m_layout->Release(); + m_layout = 0; + } - return; + // Release the pixel shader. + if (m_pixelShader) + { + m_pixelShader->Release(); + m_pixelShader = 0; + } + + // Release the vertex shader. + if (m_vertexShader) + { + m_vertexShader->Release(); + m_vertexShader = 0; + } + + return; } void LightShaderClass::OutputShaderErrorMessage(ID3D10Blob* errorMessage, HWND hwnd, WCHAR* shaderFilename) { - char* compileErrors; - unsigned __int64 bufferSize, i; - ofstream fout; + char* compileErrors; + unsigned __int64 bufferSize, i; + ofstream fout; - // Get a pointer to the error message text buffer. - compileErrors = (char*)(errorMessage->GetBufferPointer()); + // Get a pointer to the error message text buffer. + compileErrors = (char*)(errorMessage->GetBufferPointer()); - // Get the length of the message. - bufferSize = errorMessage->GetBufferSize(); + // Get the length of the message. + bufferSize = errorMessage->GetBufferSize(); - // Open a file to write the error message to. - fout.open("shader-error.txt"); + // Open a file to write the error message to. + fout.open("shader-error.txt"); - // Write out the error message. - for(i=0; iRelease(); - errorMessage = 0; + // Release the error message. + errorMessage->Release(); + errorMessage = 0; - // Pop a message up on the screen to notify the user to check the text file for compile errors. - MessageBox(hwnd, L"Error compiling shader. Check shader-error.txt for message.", shaderFilename, MB_OK); + // Pop a message up on the screen to notify the user to check the text file for compile errors. + MessageBox(hwnd, L"Error compiling shader. Check shader-error.txt for message.", shaderFilename, MB_OK); - return; + return; } bool LightShaderClass::SetShaderParameters(ID3D11DeviceContext* deviceContext, XMMATRIX worldMatrix, XMMATRIX viewMatrix, XMMATRIX projectionMatrix, - ID3D11ShaderResourceView* texture, XMFLOAT4 diffuseColor[], XMFLOAT4 lightPosition[]) + ID3D11ShaderResourceView* texture, XMFLOAT4 diffuseColor[], XMFLOAT4 lightPosition[]) { - HRESULT result; - D3D11_MAPPED_SUBRESOURCE mappedResource; - unsigned int bufferNumber; - MatrixBufferType* dataPtr; - LightPositionBufferType* dataPtr2; - LightColorBufferType* dataPtr3; + HRESULT result; + D3D11_MAPPED_SUBRESOURCE mappedResource; + unsigned int bufferNumber; + MatrixBufferType* dataPtr; + LightPositionBufferType* dataPtr2; + LightColorBufferType* dataPtr3; + + // Transpose the matrices to prepare them for the shader. + worldMatrix = XMMatrixTranspose(worldMatrix); + viewMatrix = XMMatrixTranspose(viewMatrix); + projectionMatrix = XMMatrixTranspose(projectionMatrix); + + // Lock the constant buffer so it can be written to. + result = deviceContext->Map(m_matrixBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); + if (FAILED(result)) + { + return false; + } + + // Get a pointer to the data in the constant buffer. + dataPtr = (MatrixBufferType*)mappedResource.pData; + + // Copy the matrices into the constant buffer. + dataPtr->world = worldMatrix; + dataPtr->view = viewMatrix; + dataPtr->projection = projectionMatrix; + + // Unlock the constant buffer. + deviceContext->Unmap(m_matrixBuffer, 0); + + // Set the position of the constant buffer in the vertex shader. + bufferNumber = 0; + + // Now set the constant buffer in the vertex shader with the updated values. + deviceContext->VSSetConstantBuffers(bufferNumber, 1, &m_matrixBuffer); + + // Lock the camera constant buffer so it can be written to. + result = deviceContext->Map(m_cameraBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); + if (FAILED(result)) + { + return false; + } + + // Lock the light position constant buffer so it can be written to. + result = deviceContext->Map(m_lightPositionBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); + if (FAILED(result)) + { + return false; + } + + // Get a pointer to the data in the constant buffer. + dataPtr2 = (LightPositionBufferType*)mappedResource.pData; + + // Copy the light position variables into the constant buffer. + dataPtr2->lightPosition[0] = lightPosition[0]; + dataPtr2->lightPosition[1] = lightPosition[1]; + dataPtr2->lightPosition[2] = lightPosition[2]; + dataPtr2->lightPosition[3] = lightPosition[3]; + + // Unlock the constant buffer. + deviceContext->Unmap(m_lightPositionBuffer, 0); + + // Set the position of the constant buffer in the vertex shader. + bufferNumber = 1; + + // Finally set the constant buffer in the vertex shader with the updated values. + deviceContext->VSSetConstantBuffers(bufferNumber, 1, &m_lightPositionBuffer); + + // Set shader texture resource in the pixel shader. + deviceContext->PSSetShaderResources(0, 1, &texture); + + // Lock the light color constant buffer so it can be written to. + result = deviceContext->Map(m_lightColorBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); + if (FAILED(result)) + { + return false; + } + + // Get a pointer to the data in the constant buffer. + dataPtr3 = (LightColorBufferType*)mappedResource.pData; + + // Copy the light color variables into the constant buffer. + dataPtr3->diffuseColor[0] = diffuseColor[0]; + dataPtr3->diffuseColor[1] = diffuseColor[1]; + dataPtr3->diffuseColor[2] = diffuseColor[2]; + dataPtr3->diffuseColor[3] = diffuseColor[3]; + + // Unlock the constant buffer. + deviceContext->Unmap(m_lightColorBuffer, 0); + + // Set the position of the constant buffer in the pixel shader. + bufferNumber = 0; + + // Finally set the constant buffer in the pixel shader with the updated values. + deviceContext->PSSetConstantBuffers(bufferNumber, 1, &m_lightColorBuffer); - // Transpose the matrices to prepare them for the shader. - worldMatrix = XMMatrixTranspose(worldMatrix); - viewMatrix = XMMatrixTranspose(viewMatrix); - projectionMatrix = XMMatrixTranspose(projectionMatrix); - - // Lock the constant buffer so it can be written to. - result = deviceContext->Map(m_matrixBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); - if (FAILED(result)) - { - return false; - } - - // Get a pointer to the data in the constant buffer. - dataPtr = (MatrixBufferType*)mappedResource.pData; - - // Copy the matrices into the constant buffer. - dataPtr->world = worldMatrix; - dataPtr->view = viewMatrix; - dataPtr->projection = projectionMatrix; - - // Unlock the constant buffer. - deviceContext->Unmap(m_matrixBuffer, 0); - - // Set the position of the constant buffer in the vertex shader. - bufferNumber = 0; - - // Now set the constant buffer in the vertex shader with the updated values. - deviceContext->VSSetConstantBuffers(bufferNumber, 1, &m_matrixBuffer); - - // Lock the light position constant buffer so it can be written to. - result = deviceContext->Map(m_lightPositionBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); - if (FAILED(result)) - { - return false; - } - - // Get a pointer to the data in the constant buffer. - dataPtr2 = (LightPositionBufferType*)mappedResource.pData; - - // Copy the light position variables into the constant buffer. - dataPtr2->lightPosition[0] = lightPosition[0]; - dataPtr2->lightPosition[1] = lightPosition[1]; - dataPtr2->lightPosition[2] = lightPosition[2]; - dataPtr2->lightPosition[3] = lightPosition[3]; - - // Unlock the constant buffer. - deviceContext->Unmap(m_lightPositionBuffer, 0); - - // Set the position of the constant buffer in the vertex shader. - bufferNumber = 1; - - // Finally set the constant buffer in the vertex shader with the updated values. - deviceContext->VSSetConstantBuffers(bufferNumber, 1, &m_lightPositionBuffer); - - // Set shader texture resource in the pixel shader. - deviceContext->PSSetShaderResources(0, 1, &texture); - - // Lock the light color constant buffer so it can be written to. - result = deviceContext->Map(m_lightColorBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); - if (FAILED(result)) - { - return false; - } - - // Get a pointer to the data in the constant buffer. - dataPtr3 = (LightColorBufferType*)mappedResource.pData; - - // Copy the light color variables into the constant buffer. - dataPtr3->diffuseColor[0] = diffuseColor[0]; - dataPtr3->diffuseColor[1] = diffuseColor[1]; - dataPtr3->diffuseColor[2] = diffuseColor[2]; - dataPtr3->diffuseColor[3] = diffuseColor[3]; - - // Unlock the constant buffer. - deviceContext->Unmap(m_lightColorBuffer, 0); - - // Set the position of the constant buffer in the pixel shader. - bufferNumber = 0; - - // Finally set the constant buffer in the pixel shader with the updated values. - deviceContext->PSSetConstantBuffers(bufferNumber, 1, &m_lightColorBuffer); - - return true; + return true; } void LightShaderClass::RenderShader(ID3D11DeviceContext* deviceContext, int indexCount) { - // Set the vertex input layout. - deviceContext->IASetInputLayout(m_layout); + // Set the vertex input layout. + deviceContext->IASetInputLayout(m_layout); // Set the vertex and pixel shaders that will be used to render this triangle. deviceContext->VSSetShader(m_vertexShader, NULL, 0); deviceContext->PSSetShader(m_pixelShader, NULL, 0); - // Set the sampler state in the pixel shader. - deviceContext->PSSetSamplers(0, 1, &m_sampleState); + // Set the sampler state in the pixel shader. + deviceContext->PSSetSamplers(0, 1, &m_sampleState); - // Render the triangle. - deviceContext->DrawIndexed(indexCount, 0, 0); + // Render the triangle. + deviceContext->DrawIndexed(indexCount, 0, 0); - return; -} \ No newline at end of file + return; +} diff --git a/enginecustom/lightshaderclass.h b/enginecustom/lightshaderclass.h index 0dd1925..8e338b3 100644 --- a/enginecustom/lightshaderclass.h +++ b/enginecustom/lightshaderclass.h @@ -4,12 +4,12 @@ #ifndef _LIGHTSHADERCLASS_H_ #define _LIGHTSHADERCLASS_H_ + ///////////// // GLOBALS // ///////////// const int NUM_LIGHTS = 4; - ////////////// // INCLUDES // ////////////// @@ -27,58 +27,66 @@ using namespace std; class LightShaderClass { private: - struct MatrixBufferType - { - XMMATRIX world; - XMMATRIX view; - XMMATRIX projection; - }; - struct LightColorBufferType - { - XMFLOAT4 diffuseColor[NUM_LIGHTS]; - }; - - struct LightPositionBufferType - { - XMFLOAT4 lightPosition[NUM_LIGHTS]; - }; + struct MatrixBufferType + { + XMMATRIX world; + XMMATRIX view; + XMMATRIX projection; + }; + struct CameraBufferType + { + XMFLOAT3 cameraPosition; + float padding; + }; struct LightBufferType { + XMFLOAT4 ambientColor; XMFLOAT4 diffuseColor; XMFLOAT3 lightDirection; float padding; // Added extra padding so structure is a multiple of 16 for CreateBuffer function requirements. + float specularPower; + XMFLOAT4 specularColor; }; + struct LightColorBufferType + { + XMFLOAT4 diffuseColor[NUM_LIGHTS]; + }; + + struct LightPositionBufferType + { + XMFLOAT4 lightPosition[NUM_LIGHTS]; + }; + public: - LightShaderClass(); - LightShaderClass(const LightShaderClass&); - ~LightShaderClass(); + LightShaderClass(); + LightShaderClass(const LightShaderClass&); + ~LightShaderClass(); bool Initialize(ID3D11Device*, HWND); void Shutdown(); - bool Render(ID3D11DeviceContext*, int, XMMATRIX, XMMATRIX, XMMATRIX, ID3D11ShaderResourceView*, XMFLOAT4[], XMFLOAT4[]); - + bool Render(ID3D11DeviceContext*, int, XMMATRIX, XMMATRIX, XMMATRIX, ID3D11ShaderResourceView*, XMFLOAT4[], XMFLOAT4[]); private: - bool InitializeShader(ID3D11Device*, HWND, WCHAR*, WCHAR*); - void ShutdownShader(); - void OutputShaderErrorMessage(ID3D10Blob*, HWND, WCHAR*); + bool InitializeShader(ID3D11Device*, HWND, WCHAR*, WCHAR*); + void ShutdownShader(); + void OutputShaderErrorMessage(ID3D10Blob*, HWND, WCHAR*); - bool SetShaderParameters(ID3D11DeviceContext*, XMMATRIX, XMMATRIX, XMMATRIX, ID3D11ShaderResourceView*, XMFLOAT4[], XMFLOAT4[]); + bool SetShaderParameters(ID3D11DeviceContext*, XMMATRIX, XMMATRIX, XMMATRIX, ID3D11ShaderResourceView*, XMFLOAT4[], XMFLOAT4[]); void RenderShader(ID3D11DeviceContext*, int); private: - ID3D11VertexShader* m_vertexShader; - ID3D11PixelShader* m_pixelShader; - ID3D11InputLayout* m_layout; - ID3D11SamplerState* m_sampleState; - ID3D11Buffer* m_matrixBuffer; - ID3D11Buffer* m_lightBuffer; - - ID3D11Buffer* m_lightColorBuffer; - ID3D11Buffer* m_lightPositionBuffer; + ID3D11VertexShader* m_vertexShader; + ID3D11PixelShader* m_pixelShader; + ID3D11InputLayout* m_layout; + ID3D11SamplerState* m_sampleState; + ID3D11Buffer* m_matrixBuffer; + ID3D11Buffer* m_cameraBuffer; + ID3D11Buffer* m_lightBuffer; + ID3D11Buffer* m_lightColorBuffer; + ID3D11Buffer* m_lightPositionBuffer; }; #endif \ No newline at end of file diff --git a/enginecustom/modelclass.cpp b/enginecustom/modelclass.cpp index 25846f3..8cc6963 100644 --- a/enginecustom/modelclass.cpp +++ b/enginecustom/modelclass.cpp @@ -5,7 +5,7 @@ ModelClass::ModelClass() { m_vertexBuffer = 0; m_indexBuffer = 0; - m_Texture = 0; + m_Textures = 0; m_model = 0; } @@ -19,7 +19,7 @@ ModelClass::~ModelClass() { } -bool ModelClass::Initialize(ID3D11Device* device, ID3D11DeviceContext* deviceContext, char* modelFilename, char* textureFilename) +bool ModelClass::Initialize(ID3D11Device* device, ID3D11DeviceContext* deviceContext, char* modelFilename, char* textureFilename1, char* textureFilename2) { bool result; @@ -36,8 +36,8 @@ bool ModelClass::Initialize(ID3D11Device* device, ID3D11DeviceContext* deviceCon { return false; } - // Load the texture for this model. - result = LoadTexture(device, deviceContext, textureFilename); + // Load the textures for this model. + result = LoadTextures(device, deviceContext, textureFilename1, textureFilename2); if (!result) { return false; @@ -49,8 +49,8 @@ bool ModelClass::Initialize(ID3D11Device* device, ID3D11DeviceContext* deviceCon void ModelClass::Shutdown() { - // Release the model texture. - ReleaseTexture(); + // Release the model textures. + ReleaseTextures(); // Shutdown the vertex and index buffers. ShutdownBuffers(); @@ -76,9 +76,9 @@ int ModelClass::GetIndexCount() return m_indexCount; } -ID3D11ShaderResourceView* ModelClass::GetTexture() +ID3D11ShaderResourceView* ModelClass::GetTexture(int index) { - return m_Texture->GetTexture(); + return m_Textures[index].GetTexture(); } @@ -89,7 +89,7 @@ bool ModelClass::InitializeBuffers(ID3D11Device* device) D3D11_BUFFER_DESC vertexBufferDesc, indexBufferDesc; D3D11_SUBRESOURCE_DATA vertexData, indexData; HRESULT result; - + int i; // Create the vertex array. vertices = new VertexType[m_vertexCount]; @@ -98,7 +98,7 @@ bool ModelClass::InitializeBuffers(ID3D11Device* device) indices = new unsigned long[m_indexCount]; // Load the vertex array and index array with data. - for (int i = 0; i < m_vertexCount; i++) + for (i = 0; i < m_vertexCount; i++) { vertices[i].position = XMFLOAT3(m_model[i].x, m_model[i].y, m_model[i].z); vertices[i].texture = XMFLOAT2(m_model[i].tu, m_model[i].tv); @@ -107,31 +107,6 @@ bool ModelClass::InitializeBuffers(ID3D11Device* device) indices[i] = i; } - - //// Create the vertex array. - //vertices = new VertexType[m_vertexCount]; - - //// Create the index array. - //indices = new unsigned long[m_indexCount]; - - //// Load the vertex array with data. - //vertices[0].position = XMFLOAT3(-1.0f, -1.0f, 0.0f); // Bottom left. - //vertices[0].texture = XMFLOAT2(0.0f, 1.0f); - //vertices[0].normal = XMFLOAT3(0.0f, 0.0f, -1.0f); - - //vertices[1].position = XMFLOAT3(0.0f, 1.0f, 0.0f); // Top middle. - //vertices[1].texture = XMFLOAT2(0.5f, 0.0f); - //vertices[1].normal = XMFLOAT3(0.0f, 0.0f, -1.0f); - - //vertices[2].position = XMFLOAT3(1.0f, -1.0f, 0.0f); // Bottom right. - //vertices[2].texture = XMFLOAT2(1.0f, 1.0f); - //vertices[2].normal = XMFLOAT3(0.0f, 0.0f, -1.0f); - - //// Load the index array with data. - //indices[0] = 0; // Bottom left. - //indices[1] = 1; // Top middle. - //indices[2] = 2; // Bottom right. - // Set up the description of the static vertex buffer. vertexBufferDesc.Usage = D3D11_USAGE_DEFAULT; vertexBufferDesc.ByteWidth = sizeof(VertexType) * m_vertexCount; @@ -225,15 +200,21 @@ void ModelClass::RenderBuffers(ID3D11DeviceContext* deviceContext) return; } -bool ModelClass::LoadTexture(ID3D11Device* device, ID3D11DeviceContext* deviceContext, char* filename) +bool ModelClass::LoadTextures(ID3D11Device* device, ID3D11DeviceContext* deviceContext, char* filename1, char* filename2) { bool result; - // Create and initialize the texture object. - m_Texture = new TextureClass; + // Create and initialize the texture object array. + m_Textures = new TextureClass[2]; - result = m_Texture->Initialize(device, deviceContext, filename); + result = m_Textures[0].Initialize(device, deviceContext, filename1); + if (!result) + { + return false; + } + + result = m_Textures[1].Initialize(device, deviceContext, filename2); if (!result) { return false; @@ -242,14 +223,16 @@ bool ModelClass::LoadTexture(ID3D11Device* device, ID3D11DeviceContext* deviceCo return true; } -void ModelClass::ReleaseTexture() +void ModelClass::ReleaseTextures() { - // Release the texture object. - if (m_Texture) + // Release the texture object array. + if (m_Textures) { - m_Texture->Shutdown(); - delete m_Texture; - m_Texture = 0; + m_Textures[0].Shutdown(); + m_Textures[1].Shutdown(); + + delete[] m_Textures; + m_Textures = 0; } return; diff --git a/enginecustom/modelclass.h b/enginecustom/modelclass.h index e4609a4..98f9ed2 100644 --- a/enginecustom/modelclass.h +++ b/enginecustom/modelclass.h @@ -8,7 +8,9 @@ #include #include #include +#include #include +#include using namespace DirectX; using namespace std; @@ -39,35 +41,50 @@ protected: float nx, ny, nz; }; + struct Vertex { + float x, y, z; + }; + + struct Texture { + float u, v; + }; + + struct Normal { + float nx, ny, nz; + }; + + struct Face { + int v1, v2, v3; + int t1, t2, t3; + int n1, n2, n3; + }; public: ModelClass(); ModelClass(const ModelClass&); ~ModelClass(); - bool Initialize(ID3D11Device*, ID3D11DeviceContext*, char*, char*); + bool Initialize(ID3D11Device*, ID3D11DeviceContext*, char*, char*, char*); void Shutdown(); void Render(ID3D11DeviceContext*); int GetIndexCount(); - - ID3D11ShaderResourceView* GetTexture(); + ID3D11ShaderResourceView* GetTexture(int); private: bool InitializeBuffers(ID3D11Device*); void ShutdownBuffers(); void RenderBuffers(ID3D11DeviceContext*); - bool LoadTexture(ID3D11Device*, ID3D11DeviceContext*, char*); - void ReleaseTexture(); + bool LoadTextures(ID3D11Device*, ID3D11DeviceContext*, char*, char*); + void ReleaseTextures(); bool LoadModel(char*); void ReleaseModel(); private: ID3D11Buffer* m_vertexBuffer, * m_indexBuffer; - TextureClass* m_Texture; - -protected: + int m_vertexCount, m_indexCount; + TextureClass* m_Textures; ModelType* m_model; int m_vertexCount, m_indexCount; }; diff --git a/enginecustom/moss01.tga b/enginecustom/moss01.tga new file mode 100644 index 0000000..68fb9e3 Binary files /dev/null and b/enginecustom/moss01.tga differ diff --git a/enginecustom/papier.tga b/enginecustom/papier.tga new file mode 100644 index 0000000..4f0b9b9 Binary files /dev/null and b/enginecustom/papier.tga differ diff --git a/enginecustom/plane.txt b/enginecustom/plane.txt new file mode 100644 index 0000000..18bf5d2 --- /dev/null +++ b/enginecustom/plane.txt @@ -0,0 +1,3754 @@ +Vertex Count: 3750 + +Data: + +-5 -0 -4.6 0 0.96 0 1 -0 +-4.6 -0 -5 0.04 1 0 1 -0 +-5 -0 -5 0 1 0 1 -0 +-4.6 -0 -4.6 0.04 0.96 0 1 -0 +-4.6 -0 -5 0.04 1 0 1 -0 +-5 -0 -4.6 0 0.96 0 1 -0 +-4.6 -0 -4.6 0.04 0.96 0 1 -0 +-4.2 -0 -5 0.08 1 0 1 -0 +-4.6 -0 -5 0.04 1 0 1 -0 +-4.2 -0 -4.6 0.08 0.96 0 1 -0 +-4.2 -0 -5 0.08 1 0 1 -0 +-4.6 -0 -4.6 0.04 0.96 0 1 -0 +-4.2 -0 -4.6 0.08 0.96 0 1 -0 +-3.8 -0 -5 0.12 1 0 1 -0 +-4.2 -0 -5 0.08 1 0 1 -0 +-3.8 -0 -4.6 0.12 0.96 0 1 -0 +-3.8 -0 -5 0.12 1 0 1 -0 +-4.2 -0 -4.6 0.08 0.96 0 1 -0 +-3.8 -0 -4.6 0.12 0.96 0 1 -0 +-3.4 -0 -5 0.16 1 0 1 -0 +-3.8 -0 -5 0.12 1 0 1 -0 +-3.4 -0 -4.6 0.16 0.96 0 1 -0 +-3.4 -0 -5 0.16 1 0 1 -0 +-3.8 -0 -4.6 0.12 0.96 0 1 -0 +-3.4 -0 -4.6 0.16 0.96 0 1 -0 +-3 -0 -5 0.2 1 0 1 -0 +-3.4 -0 -5 0.16 1 0 1 -0 +-3 -0 -4.6 0.2 0.96 0 1 -0 +-3 -0 -5 0.2 1 0 1 -0 +-3.4 -0 -4.6 0.16 0.96 0 1 -0 +-3 -0 -4.6 0.2 0.96 0 1 -0 +-2.6 -0 -5 0.24 1 0 1 -0 +-3 -0 -5 0.2 1 0 1 -0 +-2.6 -0 -4.6 0.24 0.96 0 1 -0 +-2.6 -0 -5 0.24 1 0 1 -0 +-3 -0 -4.6 0.2 0.96 0 1 -0 +-2.6 -0 -4.6 0.24 0.96 0 1 -0 +-2.2 -0 -5 0.28 1 0 1 -0 +-2.6 -0 -5 0.24 1 0 1 -0 +-2.2 -0 -4.6 0.28 0.96 0 1 -0 +-2.2 -0 -5 0.28 1 0 1 -0 +-2.6 -0 -4.6 0.24 0.96 0 1 -0 +-2.2 -0 -4.6 0.28 0.96 0 1 -0 +-1.8 -0 -5 0.32 1 0 1 -0 +-2.2 -0 -5 0.28 1 0 1 -0 +-1.8 -0 -4.6 0.32 0.96 0 1 -0 +-1.8 -0 -5 0.32 1 0 1 -0 +-2.2 -0 -4.6 0.28 0.96 0 1 -0 +-1.8 -0 -4.6 0.32 0.96 0 1 -0 +-1.4 -0 -5 0.36 1 0 1 -0 +-1.8 -0 -5 0.32 1 0 1 -0 +-1.4 -0 -4.6 0.36 0.96 0 1 -0 +-1.4 -0 -5 0.36 1 0 1 -0 +-1.8 -0 -4.6 0.32 0.96 0 1 -0 +-1.4 -0 -4.6 0.36 0.96 0 1 -0 +-1 -0 -5 0.4 1 0 1 -0 +-1.4 -0 -5 0.36 1 0 1 -0 +-1 -0 -4.6 0.4 0.96 0 1 -0 +-1 -0 -5 0.4 1 0 1 -0 +-1.4 -0 -4.6 0.36 0.96 0 1 -0 +-1 -0 -4.6 0.4 0.96 0 1 -0 +-0.6 -0 -5 0.44 1 0 1 -0 +-1 -0 -5 0.4 1 0 1 -0 +-0.6 -0 -4.6 0.44 0.96 0 1 -0 +-0.6 -0 -5 0.44 1 0 1 -0 +-1 -0 -4.6 0.4 0.96 0 1 -0 +-0.6 -0 -4.6 0.44 0.96 0 1 -0 +-0.2 -0 -5 0.48 1 0 1 -0 +-0.6 -0 -5 0.44 1 0 1 -0 +-0.2 -0 -4.6 0.48 0.96 0 1 -0 +-0.2 -0 -5 0.48 1 0 1 -0 +-0.6 -0 -4.6 0.44 0.96 0 1 -0 +-0.2 -0 -4.6 0.48 0.96 0 1 -0 +0.2 -0 -5 0.52 1 0 1 -0 +-0.2 -0 -5 0.48 1 0 1 -0 +0.2 -0 -4.6 0.52 0.96 0 1 -0 +0.2 -0 -5 0.52 1 0 1 -0 +-0.2 -0 -4.6 0.48 0.96 0 1 -0 +0.2 -0 -4.6 0.52 0.96 0 1 -0 +0.6 -0 -5 0.56 1 0 1 -0 +0.2 -0 -5 0.52 1 0 1 -0 +0.6 -0 -4.6 0.56 0.96 0 1 -0 +0.6 -0 -5 0.56 1 0 1 -0 +0.2 -0 -4.6 0.52 0.96 0 1 -0 +0.6 -0 -4.6 0.56 0.96 0 1 -0 +1 -0 -5 0.6 1 0 1 -0 +0.6 -0 -5 0.56 1 0 1 -0 +1 -0 -4.6 0.6 0.96 0 1 -0 +1 -0 -5 0.6 1 0 1 -0 +0.6 -0 -4.6 0.56 0.96 0 1 -0 +1 -0 -4.6 0.6 0.96 0 1 -0 +1.4 -0 -5 0.64 1 0 1 -0 +1 -0 -5 0.6 1 0 1 -0 +1.4 -0 -4.6 0.64 0.96 0 1 -0 +1.4 -0 -5 0.64 1 0 1 -0 +1 -0 -4.6 0.6 0.96 0 1 -0 +1.4 -0 -4.6 0.64 0.96 0 1 -0 +1.8 -0 -5 0.68 1 0 1 -0 +1.4 -0 -5 0.64 1 0 1 -0 +1.8 -0 -4.6 0.68 0.96 0 1 -0 +1.8 -0 -5 0.68 1 0 1 -0 +1.4 -0 -4.6 0.64 0.96 0 1 -0 +1.8 -0 -4.6 0.68 0.96 0 1 -0 +2.2 -0 -5 0.72 1 0 1 -0 +1.8 -0 -5 0.68 1 0 1 -0 +2.2 -0 -4.6 0.72 0.96 0 1 -0 +2.2 -0 -5 0.72 1 0 1 -0 +1.8 -0 -4.6 0.68 0.96 0 1 -0 +2.2 -0 -4.6 0.72 0.96 0 1 -0 +2.6 -0 -5 0.76 1 0 1 -0 +2.2 -0 -5 0.72 1 0 1 -0 +2.6 -0 -4.6 0.76 0.96 0 1 -0 +2.6 -0 -5 0.76 1 0 1 -0 +2.2 -0 -4.6 0.72 0.96 0 1 -0 +2.6 -0 -4.6 0.76 0.96 0 1 -0 +3 -0 -5 0.8 1 0 1 -0 +2.6 -0 -5 0.76 1 0 1 -0 +3 -0 -4.6 0.8 0.96 0 1 -0 +3 -0 -5 0.8 1 0 1 -0 +2.6 -0 -4.6 0.76 0.96 0 1 -0 +3 -0 -4.6 0.8 0.96 0 1 -0 +3.4 -0 -5 0.84 1 0 1 -0 +3 -0 -5 0.8 1 0 1 -0 +3.4 -0 -4.6 0.84 0.96 0 1 -0 +3.4 -0 -5 0.84 1 0 1 -0 +3 -0 -4.6 0.8 0.96 0 1 -0 +3.4 -0 -4.6 0.84 0.96 0 1 -0 +3.8 -0 -5 0.88 1 0 1 -0 +3.4 -0 -5 0.84 1 0 1 -0 +3.8 -0 -4.6 0.88 0.96 0 1 -0 +3.8 -0 -5 0.88 1 0 1 -0 +3.4 -0 -4.6 0.84 0.96 0 1 -0 +3.8 -0 -4.6 0.88 0.96 0 1 -0 +4.2 -0 -5 0.92 1 0 1 -0 +3.8 -0 -5 0.88 1 0 1 -0 +4.2 -0 -4.6 0.92 0.96 0 1 -0 +4.2 -0 -5 0.92 1 0 1 -0 +3.8 -0 -4.6 0.88 0.96 0 1 -0 +4.2 -0 -4.6 0.92 0.96 0 1 -0 +4.6 -0 -5 0.96 1 0 1 -0 +4.2 -0 -5 0.92 1 0 1 -0 +4.6 -0 -4.6 0.96 0.96 0 1 -0 +4.6 -0 -5 0.96 1 0 1 -0 +4.2 -0 -4.6 0.92 0.96 0 1 -0 +4.6 -0 -4.6 0.96 0.96 0 1 -0 +5 -0 -5 1 1 0 1 -0 +4.6 -0 -5 0.96 1 0 1 -0 +5 -0 -4.6 1 0.96 0 1 -0 +5 -0 -5 1 1 0 1 -0 +4.6 -0 -4.6 0.96 0.96 0 1 -0 +-5 -0 -4.2 0 0.92 0 1 -0 +-4.6 -0 -4.6 0.04 0.96 0 1 -0 +-5 -0 -4.6 0 0.96 0 1 -0 +-4.6 -0 -4.2 0.04 0.92 0 1 -0 +-4.6 -0 -4.6 0.04 0.96 0 1 -0 +-5 -0 -4.2 0 0.92 0 1 -0 +-4.6 -0 -4.2 0.04 0.92 0 1 -0 +-4.2 -0 -4.6 0.08 0.96 0 1 -0 +-4.6 -0 -4.6 0.04 0.96 0 1 -0 +-4.2 -0 -4.2 0.08 0.92 0 1 -0 +-4.2 -0 -4.6 0.08 0.96 0 1 -0 +-4.6 -0 -4.2 0.04 0.92 0 1 -0 +-4.2 -0 -4.2 0.08 0.92 0 1 -0 +-3.8 -0 -4.6 0.12 0.96 0 1 -0 +-4.2 -0 -4.6 0.08 0.96 0 1 -0 +-3.8 -0 -4.2 0.12 0.92 0 1 -0 +-3.8 -0 -4.6 0.12 0.96 0 1 -0 +-4.2 -0 -4.2 0.08 0.92 0 1 -0 +-3.8 -0 -4.2 0.12 0.92 0 1 -0 +-3.4 -0 -4.6 0.16 0.96 0 1 -0 +-3.8 -0 -4.6 0.12 0.96 0 1 -0 +-3.4 -0 -4.2 0.16 0.92 0 1 -0 +-3.4 -0 -4.6 0.16 0.96 0 1 -0 +-3.8 -0 -4.2 0.12 0.92 0 1 -0 +-3.4 -0 -4.2 0.16 0.92 0 1 -0 +-3 -0 -4.6 0.2 0.96 0 1 -0 +-3.4 -0 -4.6 0.16 0.96 0 1 -0 +-3 -0 -4.2 0.2 0.92 0 1 -0 +-3 -0 -4.6 0.2 0.96 0 1 -0 +-3.4 -0 -4.2 0.16 0.92 0 1 -0 +-3 -0 -4.2 0.2 0.92 0 1 -0 +-2.6 -0 -4.6 0.24 0.96 0 1 -0 +-3 -0 -4.6 0.2 0.96 0 1 -0 +-2.6 -0 -4.2 0.24 0.92 0 1 -0 +-2.6 -0 -4.6 0.24 0.96 0 1 -0 +-3 -0 -4.2 0.2 0.92 0 1 -0 +-2.6 -0 -4.2 0.24 0.92 0 1 -0 +-2.2 -0 -4.6 0.28 0.96 0 1 -0 +-2.6 -0 -4.6 0.24 0.96 0 1 -0 +-2.2 -0 -4.2 0.28 0.92 0 1 -0 +-2.2 -0 -4.6 0.28 0.96 0 1 -0 +-2.6 -0 -4.2 0.24 0.92 0 1 -0 +-2.2 -0 -4.2 0.28 0.92 0 1 -0 +-1.8 -0 -4.6 0.32 0.96 0 1 -0 +-2.2 -0 -4.6 0.28 0.96 0 1 -0 +-1.8 -0 -4.2 0.32 0.92 0 1 -0 +-1.8 -0 -4.6 0.32 0.96 0 1 -0 +-2.2 -0 -4.2 0.28 0.92 0 1 -0 +-1.8 -0 -4.2 0.32 0.92 0 1 -0 +-1.4 -0 -4.6 0.36 0.96 0 1 -0 +-1.8 -0 -4.6 0.32 0.96 0 1 -0 +-1.4 -0 -4.2 0.36 0.92 0 1 -0 +-1.4 -0 -4.6 0.36 0.96 0 1 -0 +-1.8 -0 -4.2 0.32 0.92 0 1 -0 +-1.4 -0 -4.2 0.36 0.92 0 1 -0 +-1 -0 -4.6 0.4 0.96 0 1 -0 +-1.4 -0 -4.6 0.36 0.96 0 1 -0 +-1 -0 -4.2 0.4 0.92 0 1 -0 +-1 -0 -4.6 0.4 0.96 0 1 -0 +-1.4 -0 -4.2 0.36 0.92 0 1 -0 +-1 -0 -4.2 0.4 0.92 0 1 -0 +-0.6 -0 -4.6 0.44 0.96 0 1 -0 +-1 -0 -4.6 0.4 0.96 0 1 -0 +-0.6 -0 -4.2 0.44 0.92 0 1 -0 +-0.6 -0 -4.6 0.44 0.96 0 1 -0 +-1 -0 -4.2 0.4 0.92 0 1 -0 +-0.6 -0 -4.2 0.44 0.92 0 1 -0 +-0.2 -0 -4.6 0.48 0.96 0 1 -0 +-0.6 -0 -4.6 0.44 0.96 0 1 -0 +-0.2 -0 -4.2 0.48 0.92 0 1 -0 +-0.2 -0 -4.6 0.48 0.96 0 1 -0 +-0.6 -0 -4.2 0.44 0.92 0 1 -0 +-0.2 -0 -4.2 0.48 0.92 0 1 -0 +0.2 -0 -4.6 0.52 0.96 0 1 -0 +-0.2 -0 -4.6 0.48 0.96 0 1 -0 +0.2 -0 -4.2 0.52 0.92 0 1 -0 +0.2 -0 -4.6 0.52 0.96 0 1 -0 +-0.2 -0 -4.2 0.48 0.92 0 1 -0 +0.2 -0 -4.2 0.52 0.92 0 1 -0 +0.6 -0 -4.6 0.56 0.96 0 1 -0 +0.2 -0 -4.6 0.52 0.96 0 1 -0 +0.6 -0 -4.2 0.56 0.92 0 1 -0 +0.6 -0 -4.6 0.56 0.96 0 1 -0 +0.2 -0 -4.2 0.52 0.92 0 1 -0 +0.6 -0 -4.2 0.56 0.92 0 1 -0 +1 -0 -4.6 0.6 0.96 0 1 -0 +0.6 -0 -4.6 0.56 0.96 0 1 -0 +1 -0 -4.2 0.6 0.92 0 1 -0 +1 -0 -4.6 0.6 0.96 0 1 -0 +0.6 -0 -4.2 0.56 0.92 0 1 -0 +1 -0 -4.2 0.6 0.92 0 1 -0 +1.4 -0 -4.6 0.64 0.96 0 1 -0 +1 -0 -4.6 0.6 0.96 0 1 -0 +1.4 -0 -4.2 0.64 0.92 0 1 -0 +1.4 -0 -4.6 0.64 0.96 0 1 -0 +1 -0 -4.2 0.6 0.92 0 1 -0 +1.4 -0 -4.2 0.64 0.92 0 1 -0 +1.8 -0 -4.6 0.68 0.96 0 1 -0 +1.4 -0 -4.6 0.64 0.96 0 1 -0 +1.8 -0 -4.2 0.68 0.92 0 1 -0 +1.8 -0 -4.6 0.68 0.96 0 1 -0 +1.4 -0 -4.2 0.64 0.92 0 1 -0 +1.8 -0 -4.2 0.68 0.92 0 1 -0 +2.2 -0 -4.6 0.72 0.96 0 1 -0 +1.8 -0 -4.6 0.68 0.96 0 1 -0 +2.2 -0 -4.2 0.72 0.92 0 1 -0 +2.2 -0 -4.6 0.72 0.96 0 1 -0 +1.8 -0 -4.2 0.68 0.92 0 1 -0 +2.2 -0 -4.2 0.72 0.92 0 1 -0 +2.6 -0 -4.6 0.76 0.96 0 1 -0 +2.2 -0 -4.6 0.72 0.96 0 1 -0 +2.6 -0 -4.2 0.76 0.92 0 1 -0 +2.6 -0 -4.6 0.76 0.96 0 1 -0 +2.2 -0 -4.2 0.72 0.92 0 1 -0 +2.6 -0 -4.2 0.76 0.92 0 1 -0 +3 -0 -4.6 0.8 0.96 0 1 -0 +2.6 -0 -4.6 0.76 0.96 0 1 -0 +3 -0 -4.2 0.8 0.92 0 1 -0 +3 -0 -4.6 0.8 0.96 0 1 -0 +2.6 -0 -4.2 0.76 0.92 0 1 -0 +3 -0 -4.2 0.8 0.92 0 1 -0 +3.4 -0 -4.6 0.84 0.96 0 1 -0 +3 -0 -4.6 0.8 0.96 0 1 -0 +3.4 -0 -4.2 0.84 0.92 0 1 -0 +3.4 -0 -4.6 0.84 0.96 0 1 -0 +3 -0 -4.2 0.8 0.92 0 1 -0 +3.4 -0 -4.2 0.84 0.92 0 1 -0 +3.8 -0 -4.6 0.88 0.96 0 1 -0 +3.4 -0 -4.6 0.84 0.96 0 1 -0 +3.8 -0 -4.2 0.88 0.92 0 1 -0 +3.8 -0 -4.6 0.88 0.96 0 1 -0 +3.4 -0 -4.2 0.84 0.92 0 1 -0 +3.8 -0 -4.2 0.88 0.92 0 1 -0 +4.2 -0 -4.6 0.92 0.96 0 1 -0 +3.8 -0 -4.6 0.88 0.96 0 1 -0 +4.2 -0 -4.2 0.92 0.92 0 1 -0 +4.2 -0 -4.6 0.92 0.96 0 1 -0 +3.8 -0 -4.2 0.88 0.92 0 1 -0 +4.2 -0 -4.2 0.92 0.92 0 1 -0 +4.6 -0 -4.6 0.96 0.96 0 1 -0 +4.2 -0 -4.6 0.92 0.96 0 1 -0 +4.6 -0 -4.2 0.96 0.92 0 1 -0 +4.6 -0 -4.6 0.96 0.96 0 1 -0 +4.2 -0 -4.2 0.92 0.92 0 1 -0 +4.6 -0 -4.2 0.96 0.92 0 1 -0 +5 -0 -4.6 1 0.96 0 1 -0 +4.6 -0 -4.6 0.96 0.96 0 1 -0 +5 -0 -4.2 1 0.92 0 1 -0 +5 -0 -4.6 1 0.96 0 1 -0 +4.6 -0 -4.2 0.96 0.92 0 1 -0 +-5 -0 -3.8 0 0.88 0 1 -0 +-4.6 -0 -4.2 0.04 0.92 0 1 -0 +-5 -0 -4.2 0 0.92 0 1 -0 +-4.6 -0 -3.8 0.04 0.88 0 1 -0 +-4.6 -0 -4.2 0.04 0.92 0 1 -0 +-5 -0 -3.8 0 0.88 0 1 -0 +-4.6 -0 -3.8 0.04 0.88 0 1 -0 +-4.2 -0 -4.2 0.08 0.92 0 1 -0 +-4.6 -0 -4.2 0.04 0.92 0 1 -0 +-4.2 -0 -3.8 0.08 0.88 0 1 -0 +-4.2 -0 -4.2 0.08 0.92 0 1 -0 +-4.6 -0 -3.8 0.04 0.88 0 1 -0 +-4.2 -0 -3.8 0.08 0.88 0 1 -0 +-3.8 -0 -4.2 0.12 0.92 0 1 -0 +-4.2 -0 -4.2 0.08 0.92 0 1 -0 +-3.8 -0 -3.8 0.12 0.88 0 1 -0 +-3.8 -0 -4.2 0.12 0.92 0 1 -0 +-4.2 -0 -3.8 0.08 0.88 0 1 -0 +-3.8 -0 -3.8 0.12 0.88 0 1 -0 +-3.4 -0 -4.2 0.16 0.92 0 1 -0 +-3.8 -0 -4.2 0.12 0.92 0 1 -0 +-3.4 -0 -3.8 0.16 0.88 0 1 -0 +-3.4 -0 -4.2 0.16 0.92 0 1 -0 +-3.8 -0 -3.8 0.12 0.88 0 1 -0 +-3.4 -0 -3.8 0.16 0.88 0 1 -0 +-3 -0 -4.2 0.2 0.92 0 1 -0 +-3.4 -0 -4.2 0.16 0.92 0 1 -0 +-3 -0 -3.8 0.2 0.88 0 1 -0 +-3 -0 -4.2 0.2 0.92 0 1 -0 +-3.4 -0 -3.8 0.16 0.88 0 1 -0 +-3 -0 -3.8 0.2 0.88 0 1 -0 +-2.6 -0 -4.2 0.24 0.92 0 1 -0 +-3 -0 -4.2 0.2 0.92 0 1 -0 +-2.6 -0 -3.8 0.24 0.88 0 1 -0 +-2.6 -0 -4.2 0.24 0.92 0 1 -0 +-3 -0 -3.8 0.2 0.88 0 1 -0 +-2.6 -0 -3.8 0.24 0.88 0 1 -0 +-2.2 -0 -4.2 0.28 0.92 0 1 -0 +-2.6 -0 -4.2 0.24 0.92 0 1 -0 +-2.2 -0 -3.8 0.28 0.88 0 1 -0 +-2.2 -0 -4.2 0.28 0.92 0 1 -0 +-2.6 -0 -3.8 0.24 0.88 0 1 -0 +-2.2 -0 -3.8 0.28 0.88 0 1 -0 +-1.8 -0 -4.2 0.32 0.92 0 1 -0 +-2.2 -0 -4.2 0.28 0.92 0 1 -0 +-1.8 -0 -3.8 0.32 0.88 0 1 -0 +-1.8 -0 -4.2 0.32 0.92 0 1 -0 +-2.2 -0 -3.8 0.28 0.88 0 1 -0 +-1.8 -0 -3.8 0.32 0.88 0 1 -0 +-1.4 -0 -4.2 0.36 0.92 0 1 -0 +-1.8 -0 -4.2 0.32 0.92 0 1 -0 +-1.4 -0 -3.8 0.36 0.88 0 1 -0 +-1.4 -0 -4.2 0.36 0.92 0 1 -0 +-1.8 -0 -3.8 0.32 0.88 0 1 -0 +-1.4 -0 -3.8 0.36 0.88 0 1 -0 +-1 -0 -4.2 0.4 0.92 0 1 -0 +-1.4 -0 -4.2 0.36 0.92 0 1 -0 +-1 -0 -3.8 0.4 0.88 0 1 -0 +-1 -0 -4.2 0.4 0.92 0 1 -0 +-1.4 -0 -3.8 0.36 0.88 0 1 -0 +-1 -0 -3.8 0.4 0.88 0 1 -0 +-0.6 -0 -4.2 0.44 0.92 0 1 -0 +-1 -0 -4.2 0.4 0.92 0 1 -0 +-0.6 -0 -3.8 0.44 0.88 0 1 -0 +-0.6 -0 -4.2 0.44 0.92 0 1 -0 +-1 -0 -3.8 0.4 0.88 0 1 -0 +-0.6 -0 -3.8 0.44 0.88 0 1 -0 +-0.2 -0 -4.2 0.48 0.92 0 1 -0 +-0.6 -0 -4.2 0.44 0.92 0 1 -0 +-0.2 -0 -3.8 0.48 0.88 0 1 -0 +-0.2 -0 -4.2 0.48 0.92 0 1 -0 +-0.6 -0 -3.8 0.44 0.88 0 1 -0 +-0.2 -0 -3.8 0.48 0.88 0 1 -0 +0.2 -0 -4.2 0.52 0.92 0 1 -0 +-0.2 -0 -4.2 0.48 0.92 0 1 -0 +0.2 -0 -3.8 0.52 0.88 0 1 -0 +0.2 -0 -4.2 0.52 0.92 0 1 -0 +-0.2 -0 -3.8 0.48 0.88 0 1 -0 +0.2 -0 -3.8 0.52 0.88 0 1 -0 +0.6 -0 -4.2 0.56 0.92 0 1 -0 +0.2 -0 -4.2 0.52 0.92 0 1 -0 +0.6 -0 -3.8 0.56 0.88 0 1 -0 +0.6 -0 -4.2 0.56 0.92 0 1 -0 +0.2 -0 -3.8 0.52 0.88 0 1 -0 +0.6 -0 -3.8 0.56 0.88 0 1 -0 +1 -0 -4.2 0.6 0.92 0 1 -0 +0.6 -0 -4.2 0.56 0.92 0 1 -0 +1 -0 -3.8 0.6 0.88 0 1 -0 +1 -0 -4.2 0.6 0.92 0 1 -0 +0.6 -0 -3.8 0.56 0.88 0 1 -0 +1 -0 -3.8 0.6 0.88 0 1 -0 +1.4 -0 -4.2 0.64 0.92 0 1 -0 +1 -0 -4.2 0.6 0.92 0 1 -0 +1.4 -0 -3.8 0.64 0.88 0 1 -0 +1.4 -0 -4.2 0.64 0.92 0 1 -0 +1 -0 -3.8 0.6 0.88 0 1 -0 +1.4 -0 -3.8 0.64 0.88 0 1 -0 +1.8 -0 -4.2 0.68 0.92 0 1 -0 +1.4 -0 -4.2 0.64 0.92 0 1 -0 +1.8 -0 -3.8 0.68 0.88 0 1 -0 +1.8 -0 -4.2 0.68 0.92 0 1 -0 +1.4 -0 -3.8 0.64 0.88 0 1 -0 +1.8 -0 -3.8 0.68 0.88 0 1 -0 +2.2 -0 -4.2 0.72 0.92 0 1 -0 +1.8 -0 -4.2 0.68 0.92 0 1 -0 +2.2 -0 -3.8 0.72 0.88 0 1 -0 +2.2 -0 -4.2 0.72 0.92 0 1 -0 +1.8 -0 -3.8 0.68 0.88 0 1 -0 +2.2 -0 -3.8 0.72 0.88 0 1 -0 +2.6 -0 -4.2 0.76 0.92 0 1 -0 +2.2 -0 -4.2 0.72 0.92 0 1 -0 +2.6 -0 -3.8 0.76 0.88 0 1 -0 +2.6 -0 -4.2 0.76 0.92 0 1 -0 +2.2 -0 -3.8 0.72 0.88 0 1 -0 +2.6 -0 -3.8 0.76 0.88 0 1 -0 +3 -0 -4.2 0.8 0.92 0 1 -0 +2.6 -0 -4.2 0.76 0.92 0 1 -0 +3 -0 -3.8 0.8 0.88 0 1 -0 +3 -0 -4.2 0.8 0.92 0 1 -0 +2.6 -0 -3.8 0.76 0.88 0 1 -0 +3 -0 -3.8 0.8 0.88 0 1 -0 +3.4 -0 -4.2 0.84 0.92 0 1 -0 +3 -0 -4.2 0.8 0.92 0 1 -0 +3.4 -0 -3.8 0.84 0.88 0 1 -0 +3.4 -0 -4.2 0.84 0.92 0 1 -0 +3 -0 -3.8 0.8 0.88 0 1 -0 +3.4 -0 -3.8 0.84 0.88 0 1 -0 +3.8 -0 -4.2 0.88 0.92 0 1 -0 +3.4 -0 -4.2 0.84 0.92 0 1 -0 +3.8 -0 -3.8 0.88 0.88 0 1 -0 +3.8 -0 -4.2 0.88 0.92 0 1 -0 +3.4 -0 -3.8 0.84 0.88 0 1 -0 +3.8 -0 -3.8 0.88 0.88 0 1 -0 +4.2 -0 -4.2 0.92 0.92 0 1 -0 +3.8 -0 -4.2 0.88 0.92 0 1 -0 +4.2 -0 -3.8 0.92 0.88 0 1 -0 +4.2 -0 -4.2 0.92 0.92 0 1 -0 +3.8 -0 -3.8 0.88 0.88 0 1 -0 +4.2 -0 -3.8 0.92 0.88 0 1 -0 +4.6 -0 -4.2 0.96 0.92 0 1 -0 +4.2 -0 -4.2 0.92 0.92 0 1 -0 +4.6 -0 -3.8 0.96 0.88 0 1 -0 +4.6 -0 -4.2 0.96 0.92 0 1 -0 +4.2 -0 -3.8 0.92 0.88 0 1 -0 +4.6 -0 -3.8 0.96 0.88 0 1 -0 +5 -0 -4.2 1 0.92 0 1 -0 +4.6 -0 -4.2 0.96 0.92 0 1 -0 +5 -0 -3.8 1 0.88 0 1 -0 +5 -0 -4.2 1 0.92 0 1 -0 +4.6 -0 -3.8 0.96 0.88 0 1 -0 +-5 -0 -3.4 0 0.84 0 1 -0 +-4.6 -0 -3.8 0.04 0.88 0 1 -0 +-5 -0 -3.8 0 0.88 0 1 -0 +-4.6 -0 -3.4 0.04 0.84 0 1 -0 +-4.6 -0 -3.8 0.04 0.88 0 1 -0 +-5 -0 -3.4 0 0.84 0 1 -0 +-4.6 -0 -3.4 0.04 0.84 0 1 -0 +-4.2 -0 -3.8 0.08 0.88 0 1 -0 +-4.6 -0 -3.8 0.04 0.88 0 1 -0 +-4.2 -0 -3.4 0.08 0.84 0 1 -0 +-4.2 -0 -3.8 0.08 0.88 0 1 -0 +-4.6 -0 -3.4 0.04 0.84 0 1 -0 +-4.2 -0 -3.4 0.08 0.84 0 1 -0 +-3.8 -0 -3.8 0.12 0.88 0 1 -0 +-4.2 -0 -3.8 0.08 0.88 0 1 -0 +-3.8 -0 -3.4 0.12 0.84 0 1 -0 +-3.8 -0 -3.8 0.12 0.88 0 1 -0 +-4.2 -0 -3.4 0.08 0.84 0 1 -0 +-3.8 -0 -3.4 0.12 0.84 0 1 -0 +-3.4 -0 -3.8 0.16 0.88 0 1 -0 +-3.8 -0 -3.8 0.12 0.88 0 1 -0 +-3.4 -0 -3.4 0.16 0.84 0 1 -0 +-3.4 -0 -3.8 0.16 0.88 0 1 -0 +-3.8 -0 -3.4 0.12 0.84 0 1 -0 +-3.4 -0 -3.4 0.16 0.84 0 1 -0 +-3 -0 -3.8 0.2 0.88 0 1 -0 +-3.4 -0 -3.8 0.16 0.88 0 1 -0 +-3 -0 -3.4 0.2 0.84 0 1 -0 +-3 -0 -3.8 0.2 0.88 0 1 -0 +-3.4 -0 -3.4 0.16 0.84 0 1 -0 +-3 -0 -3.4 0.2 0.84 0 1 -0 +-2.6 -0 -3.8 0.24 0.88 0 1 -0 +-3 -0 -3.8 0.2 0.88 0 1 -0 +-2.6 -0 -3.4 0.24 0.84 0 1 -0 +-2.6 -0 -3.8 0.24 0.88 0 1 -0 +-3 -0 -3.4 0.2 0.84 0 1 -0 +-2.6 -0 -3.4 0.24 0.84 0 1 -0 +-2.2 -0 -3.8 0.28 0.88 0 1 -0 +-2.6 -0 -3.8 0.24 0.88 0 1 -0 +-2.2 -0 -3.4 0.28 0.84 0 1 -0 +-2.2 -0 -3.8 0.28 0.88 0 1 -0 +-2.6 -0 -3.4 0.24 0.84 0 1 -0 +-2.2 -0 -3.4 0.28 0.84 0 1 -0 +-1.8 -0 -3.8 0.32 0.88 0 1 -0 +-2.2 -0 -3.8 0.28 0.88 0 1 -0 +-1.8 -0 -3.4 0.32 0.84 0 1 -0 +-1.8 -0 -3.8 0.32 0.88 0 1 -0 +-2.2 -0 -3.4 0.28 0.84 0 1 -0 +-1.8 -0 -3.4 0.32 0.84 0 1 -0 +-1.4 -0 -3.8 0.36 0.88 0 1 -0 +-1.8 -0 -3.8 0.32 0.88 0 1 -0 +-1.4 -0 -3.4 0.36 0.84 0 1 -0 +-1.4 -0 -3.8 0.36 0.88 0 1 -0 +-1.8 -0 -3.4 0.32 0.84 0 1 -0 +-1.4 -0 -3.4 0.36 0.84 0 1 -0 +-1 -0 -3.8 0.4 0.88 0 1 -0 +-1.4 -0 -3.8 0.36 0.88 0 1 -0 +-1 -0 -3.4 0.4 0.84 0 1 -0 +-1 -0 -3.8 0.4 0.88 0 1 -0 +-1.4 -0 -3.4 0.36 0.84 0 1 -0 +-1 -0 -3.4 0.4 0.84 0 1 -0 +-0.6 -0 -3.8 0.44 0.88 0 1 -0 +-1 -0 -3.8 0.4 0.88 0 1 -0 +-0.6 -0 -3.4 0.44 0.84 0 1 -0 +-0.6 -0 -3.8 0.44 0.88 0 1 -0 +-1 -0 -3.4 0.4 0.84 0 1 -0 +-0.6 -0 -3.4 0.44 0.84 0 1 -0 +-0.2 -0 -3.8 0.48 0.88 0 1 -0 +-0.6 -0 -3.8 0.44 0.88 0 1 -0 +-0.2 -0 -3.4 0.48 0.84 0 1 -0 +-0.2 -0 -3.8 0.48 0.88 0 1 -0 +-0.6 -0 -3.4 0.44 0.84 0 1 -0 +-0.2 -0 -3.4 0.48 0.84 0 1 -0 +0.2 -0 -3.8 0.52 0.88 0 1 -0 +-0.2 -0 -3.8 0.48 0.88 0 1 -0 +0.2 -0 -3.4 0.52 0.84 0 1 -0 +0.2 -0 -3.8 0.52 0.88 0 1 -0 +-0.2 -0 -3.4 0.48 0.84 0 1 -0 +0.2 -0 -3.4 0.52 0.84 0 1 -0 +0.6 -0 -3.8 0.56 0.88 0 1 -0 +0.2 -0 -3.8 0.52 0.88 0 1 -0 +0.6 -0 -3.4 0.56 0.84 0 1 -0 +0.6 -0 -3.8 0.56 0.88 0 1 -0 +0.2 -0 -3.4 0.52 0.84 0 1 -0 +0.6 -0 -3.4 0.56 0.84 0 1 -0 +1 -0 -3.8 0.6 0.88 0 1 -0 +0.6 -0 -3.8 0.56 0.88 0 1 -0 +1 -0 -3.4 0.6 0.84 0 1 -0 +1 -0 -3.8 0.6 0.88 0 1 -0 +0.6 -0 -3.4 0.56 0.84 0 1 -0 +1 -0 -3.4 0.6 0.84 0 1 -0 +1.4 -0 -3.8 0.64 0.88 0 1 -0 +1 -0 -3.8 0.6 0.88 0 1 -0 +1.4 -0 -3.4 0.64 0.84 0 1 -0 +1.4 -0 -3.8 0.64 0.88 0 1 -0 +1 -0 -3.4 0.6 0.84 0 1 -0 +1.4 -0 -3.4 0.64 0.84 0 1 -0 +1.8 -0 -3.8 0.68 0.88 0 1 -0 +1.4 -0 -3.8 0.64 0.88 0 1 -0 +1.8 -0 -3.4 0.68 0.84 0 1 -0 +1.8 -0 -3.8 0.68 0.88 0 1 -0 +1.4 -0 -3.4 0.64 0.84 0 1 -0 +1.8 -0 -3.4 0.68 0.84 0 1 -0 +2.2 -0 -3.8 0.72 0.88 0 1 -0 +1.8 -0 -3.8 0.68 0.88 0 1 -0 +2.2 -0 -3.4 0.72 0.84 0 1 -0 +2.2 -0 -3.8 0.72 0.88 0 1 -0 +1.8 -0 -3.4 0.68 0.84 0 1 -0 +2.2 -0 -3.4 0.72 0.84 0 1 -0 +2.6 -0 -3.8 0.76 0.88 0 1 -0 +2.2 -0 -3.8 0.72 0.88 0 1 -0 +2.6 -0 -3.4 0.76 0.84 0 1 -0 +2.6 -0 -3.8 0.76 0.88 0 1 -0 +2.2 -0 -3.4 0.72 0.84 0 1 -0 +2.6 -0 -3.4 0.76 0.84 0 1 -0 +3 -0 -3.8 0.8 0.88 0 1 -0 +2.6 -0 -3.8 0.76 0.88 0 1 -0 +3 -0 -3.4 0.8 0.84 0 1 -0 +3 -0 -3.8 0.8 0.88 0 1 -0 +2.6 -0 -3.4 0.76 0.84 0 1 -0 +3 -0 -3.4 0.8 0.84 0 1 -0 +3.4 -0 -3.8 0.84 0.88 0 1 -0 +3 -0 -3.8 0.8 0.88 0 1 -0 +3.4 -0 -3.4 0.84 0.84 0 1 -0 +3.4 -0 -3.8 0.84 0.88 0 1 -0 +3 -0 -3.4 0.8 0.84 0 1 -0 +3.4 -0 -3.4 0.84 0.84 0 1 -0 +3.8 -0 -3.8 0.88 0.88 0 1 -0 +3.4 -0 -3.8 0.84 0.88 0 1 -0 +3.8 -0 -3.4 0.88 0.84 0 1 -0 +3.8 -0 -3.8 0.88 0.88 0 1 -0 +3.4 -0 -3.4 0.84 0.84 0 1 -0 +3.8 -0 -3.4 0.88 0.84 0 1 -0 +4.2 -0 -3.8 0.92 0.88 0 1 -0 +3.8 -0 -3.8 0.88 0.88 0 1 -0 +4.2 -0 -3.4 0.92 0.84 0 1 -0 +4.2 -0 -3.8 0.92 0.88 0 1 -0 +3.8 -0 -3.4 0.88 0.84 0 1 -0 +4.2 -0 -3.4 0.92 0.84 0 1 -0 +4.6 -0 -3.8 0.96 0.88 0 1 -0 +4.2 -0 -3.8 0.92 0.88 0 1 -0 +4.6 -0 -3.4 0.96 0.84 0 1 -0 +4.6 -0 -3.8 0.96 0.88 0 1 -0 +4.2 -0 -3.4 0.92 0.84 0 1 -0 +4.6 -0 -3.4 0.96 0.84 0 1 -0 +5 -0 -3.8 1 0.88 0 1 -0 +4.6 -0 -3.8 0.96 0.88 0 1 -0 +5 -0 -3.4 1 0.84 0 1 -0 +5 -0 -3.8 1 0.88 0 1 -0 +4.6 -0 -3.4 0.96 0.84 0 1 -0 +-5 -0 -3 0 0.8 0 1 -0 +-4.6 -0 -3.4 0.04 0.84 0 1 -0 +-5 -0 -3.4 0 0.84 0 1 -0 +-4.6 -0 -3 0.04 0.8 0 1 -0 +-4.6 -0 -3.4 0.04 0.84 0 1 -0 +-5 -0 -3 0 0.8 0 1 -0 +-4.6 -0 -3 0.04 0.8 0 1 -0 +-4.2 -0 -3.4 0.08 0.84 0 1 -0 +-4.6 -0 -3.4 0.04 0.84 0 1 -0 +-4.2 -0 -3 0.08 0.8 0 1 -0 +-4.2 -0 -3.4 0.08 0.84 0 1 -0 +-4.6 -0 -3 0.04 0.8 0 1 -0 +-4.2 -0 -3 0.08 0.8 0 1 -0 +-3.8 -0 -3.4 0.12 0.84 0 1 -0 +-4.2 -0 -3.4 0.08 0.84 0 1 -0 +-3.8 -0 -3 0.12 0.8 0 1 -0 +-3.8 -0 -3.4 0.12 0.84 0 1 -0 +-4.2 -0 -3 0.08 0.8 0 1 -0 +-3.8 -0 -3 0.12 0.8 0 1 -0 +-3.4 -0 -3.4 0.16 0.84 0 1 -0 +-3.8 -0 -3.4 0.12 0.84 0 1 -0 +-3.4 -0 -3 0.16 0.8 0 1 -0 +-3.4 -0 -3.4 0.16 0.84 0 1 -0 +-3.8 -0 -3 0.12 0.8 0 1 -0 +-3.4 -0 -3 0.16 0.8 0 1 -0 +-3 -0 -3.4 0.2 0.84 0 1 -0 +-3.4 -0 -3.4 0.16 0.84 0 1 -0 +-3 -0 -3 0.2 0.8 0 1 -0 +-3 -0 -3.4 0.2 0.84 0 1 -0 +-3.4 -0 -3 0.16 0.8 0 1 -0 +-3 -0 -3 0.2 0.8 0 1 -0 +-2.6 -0 -3.4 0.24 0.84 0 1 -0 +-3 -0 -3.4 0.2 0.84 0 1 -0 +-2.6 -0 -3 0.24 0.8 0 1 -0 +-2.6 -0 -3.4 0.24 0.84 0 1 -0 +-3 -0 -3 0.2 0.8 0 1 -0 +-2.6 -0 -3 0.24 0.8 0 1 -0 +-2.2 -0 -3.4 0.28 0.84 0 1 -0 +-2.6 -0 -3.4 0.24 0.84 0 1 -0 +-2.2 -0 -3 0.28 0.8 0 1 -0 +-2.2 -0 -3.4 0.28 0.84 0 1 -0 +-2.6 -0 -3 0.24 0.8 0 1 -0 +-2.2 -0 -3 0.28 0.8 0 1 -0 +-1.8 -0 -3.4 0.32 0.84 0 1 -0 +-2.2 -0 -3.4 0.28 0.84 0 1 -0 +-1.8 -0 -3 0.32 0.8 0 1 -0 +-1.8 -0 -3.4 0.32 0.84 0 1 -0 +-2.2 -0 -3 0.28 0.8 0 1 -0 +-1.8 -0 -3 0.32 0.8 0 1 -0 +-1.4 -0 -3.4 0.36 0.84 0 1 -0 +-1.8 -0 -3.4 0.32 0.84 0 1 -0 +-1.4 -0 -3 0.36 0.8 0 1 -0 +-1.4 -0 -3.4 0.36 0.84 0 1 -0 +-1.8 -0 -3 0.32 0.8 0 1 -0 +-1.4 -0 -3 0.36 0.8 0 1 -0 +-1 -0 -3.4 0.4 0.84 0 1 -0 +-1.4 -0 -3.4 0.36 0.84 0 1 -0 +-1 -0 -3 0.4 0.8 0 1 -0 +-1 -0 -3.4 0.4 0.84 0 1 -0 +-1.4 -0 -3 0.36 0.8 0 1 -0 +-1 -0 -3 0.4 0.8 0 1 -0 +-0.6 -0 -3.4 0.44 0.84 0 1 -0 +-1 -0 -3.4 0.4 0.84 0 1 -0 +-0.6 -0 -3 0.44 0.8 0 1 -0 +-0.6 -0 -3.4 0.44 0.84 0 1 -0 +-1 -0 -3 0.4 0.8 0 1 -0 +-0.6 -0 -3 0.44 0.8 0 1 -0 +-0.2 -0 -3.4 0.48 0.84 0 1 -0 +-0.6 -0 -3.4 0.44 0.84 0 1 -0 +-0.2 -0 -3 0.48 0.8 0 1 -0 +-0.2 -0 -3.4 0.48 0.84 0 1 -0 +-0.6 -0 -3 0.44 0.8 0 1 -0 +-0.2 -0 -3 0.48 0.8 0 1 -0 +0.2 -0 -3.4 0.52 0.84 0 1 -0 +-0.2 -0 -3.4 0.48 0.84 0 1 -0 +0.2 -0 -3 0.52 0.8 0 1 -0 +0.2 -0 -3.4 0.52 0.84 0 1 -0 +-0.2 -0 -3 0.48 0.8 0 1 -0 +0.2 -0 -3 0.52 0.8 0 1 -0 +0.6 -0 -3.4 0.56 0.84 0 1 -0 +0.2 -0 -3.4 0.52 0.84 0 1 -0 +0.6 -0 -3 0.56 0.8 0 1 -0 +0.6 -0 -3.4 0.56 0.84 0 1 -0 +0.2 -0 -3 0.52 0.8 0 1 -0 +0.6 -0 -3 0.56 0.8 0 1 -0 +1 -0 -3.4 0.6 0.84 0 1 -0 +0.6 -0 -3.4 0.56 0.84 0 1 -0 +1 -0 -3 0.6 0.8 0 1 -0 +1 -0 -3.4 0.6 0.84 0 1 -0 +0.6 -0 -3 0.56 0.8 0 1 -0 +1 -0 -3 0.6 0.8 0 1 -0 +1.4 -0 -3.4 0.64 0.84 0 1 -0 +1 -0 -3.4 0.6 0.84 0 1 -0 +1.4 -0 -3 0.64 0.8 0 1 -0 +1.4 -0 -3.4 0.64 0.84 0 1 -0 +1 -0 -3 0.6 0.8 0 1 -0 +1.4 -0 -3 0.64 0.8 0 1 -0 +1.8 -0 -3.4 0.68 0.84 0 1 -0 +1.4 -0 -3.4 0.64 0.84 0 1 -0 +1.8 -0 -3 0.68 0.8 0 1 -0 +1.8 -0 -3.4 0.68 0.84 0 1 -0 +1.4 -0 -3 0.64 0.8 0 1 -0 +1.8 -0 -3 0.68 0.8 0 1 -0 +2.2 -0 -3.4 0.72 0.84 0 1 -0 +1.8 -0 -3.4 0.68 0.84 0 1 -0 +2.2 -0 -3 0.72 0.8 0 1 -0 +2.2 -0 -3.4 0.72 0.84 0 1 -0 +1.8 -0 -3 0.68 0.8 0 1 -0 +2.2 -0 -3 0.72 0.8 0 1 -0 +2.6 -0 -3.4 0.76 0.84 0 1 -0 +2.2 -0 -3.4 0.72 0.84 0 1 -0 +2.6 -0 -3 0.76 0.8 0 1 -0 +2.6 -0 -3.4 0.76 0.84 0 1 -0 +2.2 -0 -3 0.72 0.8 0 1 -0 +2.6 -0 -3 0.76 0.8 0 1 -0 +3 -0 -3.4 0.8 0.84 0 1 -0 +2.6 -0 -3.4 0.76 0.84 0 1 -0 +3 -0 -3 0.8 0.8 0 1 -0 +3 -0 -3.4 0.8 0.84 0 1 -0 +2.6 -0 -3 0.76 0.8 0 1 -0 +3 -0 -3 0.8 0.8 0 1 -0 +3.4 -0 -3.4 0.84 0.84 0 1 -0 +3 -0 -3.4 0.8 0.84 0 1 -0 +3.4 -0 -3 0.84 0.8 0 1 -0 +3.4 -0 -3.4 0.84 0.84 0 1 -0 +3 -0 -3 0.8 0.8 0 1 -0 +3.4 -0 -3 0.84 0.8 0 1 -0 +3.8 -0 -3.4 0.88 0.84 0 1 -0 +3.4 -0 -3.4 0.84 0.84 0 1 -0 +3.8 -0 -3 0.88 0.8 0 1 -0 +3.8 -0 -3.4 0.88 0.84 0 1 -0 +3.4 -0 -3 0.84 0.8 0 1 -0 +3.8 -0 -3 0.88 0.8 0 1 -0 +4.2 -0 -3.4 0.92 0.84 0 1 -0 +3.8 -0 -3.4 0.88 0.84 0 1 -0 +4.2 -0 -3 0.92 0.8 0 1 -0 +4.2 -0 -3.4 0.92 0.84 0 1 -0 +3.8 -0 -3 0.88 0.8 0 1 -0 +4.2 -0 -3 0.92 0.8 0 1 -0 +4.6 -0 -3.4 0.96 0.84 0 1 -0 +4.2 -0 -3.4 0.92 0.84 0 1 -0 +4.6 -0 -3 0.96 0.8 0 1 -0 +4.6 -0 -3.4 0.96 0.84 0 1 -0 +4.2 -0 -3 0.92 0.8 0 1 -0 +4.6 -0 -3 0.96 0.8 0 1 -0 +5 -0 -3.4 1 0.84 0 1 -0 +4.6 -0 -3.4 0.96 0.84 0 1 -0 +5 -0 -3 1 0.8 0 1 -0 +5 -0 -3.4 1 0.84 0 1 -0 +4.6 -0 -3 0.96 0.8 0 1 -0 +-5 -0 -2.6 0 0.76 0 1 -0 +-4.6 -0 -3 0.04 0.8 0 1 -0 +-5 -0 -3 0 0.8 0 1 -0 +-4.6 -0 -2.6 0.04 0.76 0 1 -0 +-4.6 -0 -3 0.04 0.8 0 1 -0 +-5 -0 -2.6 0 0.76 0 1 -0 +-4.6 -0 -2.6 0.04 0.76 0 1 -0 +-4.2 -0 -3 0.08 0.8 0 1 -0 +-4.6 -0 -3 0.04 0.8 0 1 -0 +-4.2 -0 -2.6 0.08 0.76 0 1 -0 +-4.2 -0 -3 0.08 0.8 0 1 -0 +-4.6 -0 -2.6 0.04 0.76 0 1 -0 +-4.2 -0 -2.6 0.08 0.76 0 1 -0 +-3.8 -0 -3 0.12 0.8 0 1 -0 +-4.2 -0 -3 0.08 0.8 0 1 -0 +-3.8 -0 -2.6 0.12 0.76 0 1 -0 +-3.8 -0 -3 0.12 0.8 0 1 -0 +-4.2 -0 -2.6 0.08 0.76 0 1 -0 +-3.8 -0 -2.6 0.12 0.76 0 1 -0 +-3.4 -0 -3 0.16 0.8 0 1 -0 +-3.8 -0 -3 0.12 0.8 0 1 -0 +-3.4 -0 -2.6 0.16 0.76 0 1 -0 +-3.4 -0 -3 0.16 0.8 0 1 -0 +-3.8 -0 -2.6 0.12 0.76 0 1 -0 +-3.4 -0 -2.6 0.16 0.76 0 1 -0 +-3 -0 -3 0.2 0.8 0 1 -0 +-3.4 -0 -3 0.16 0.8 0 1 -0 +-3 -0 -2.6 0.2 0.76 0 1 -0 +-3 -0 -3 0.2 0.8 0 1 -0 +-3.4 -0 -2.6 0.16 0.76 0 1 -0 +-3 -0 -2.6 0.2 0.76 0 1 -0 +-2.6 -0 -3 0.24 0.8 0 1 -0 +-3 -0 -3 0.2 0.8 0 1 -0 +-2.6 -0 -2.6 0.24 0.76 0 1 -0 +-2.6 -0 -3 0.24 0.8 0 1 -0 +-3 -0 -2.6 0.2 0.76 0 1 -0 +-2.6 -0 -2.6 0.24 0.76 0 1 -0 +-2.2 -0 -3 0.28 0.8 0 1 -0 +-2.6 -0 -3 0.24 0.8 0 1 -0 +-2.2 -0 -2.6 0.28 0.76 0 1 -0 +-2.2 -0 -3 0.28 0.8 0 1 -0 +-2.6 -0 -2.6 0.24 0.76 0 1 -0 +-2.2 -0 -2.6 0.28 0.76 0 1 -0 +-1.8 -0 -3 0.32 0.8 0 1 -0 +-2.2 -0 -3 0.28 0.8 0 1 -0 +-1.8 -0 -2.6 0.32 0.76 0 1 -0 +-1.8 -0 -3 0.32 0.8 0 1 -0 +-2.2 -0 -2.6 0.28 0.76 0 1 -0 +-1.8 -0 -2.6 0.32 0.76 0 1 -0 +-1.4 -0 -3 0.36 0.8 0 1 -0 +-1.8 -0 -3 0.32 0.8 0 1 -0 +-1.4 -0 -2.6 0.36 0.76 0 1 -0 +-1.4 -0 -3 0.36 0.8 0 1 -0 +-1.8 -0 -2.6 0.32 0.76 0 1 -0 +-1.4 -0 -2.6 0.36 0.76 0 1 -0 +-1 -0 -3 0.4 0.8 0 1 -0 +-1.4 -0 -3 0.36 0.8 0 1 -0 +-1 -0 -2.6 0.4 0.76 0 1 -0 +-1 -0 -3 0.4 0.8 0 1 -0 +-1.4 -0 -2.6 0.36 0.76 0 1 -0 +-1 -0 -2.6 0.4 0.76 0 1 -0 +-0.6 -0 -3 0.44 0.8 0 1 -0 +-1 -0 -3 0.4 0.8 0 1 -0 +-0.6 -0 -2.6 0.44 0.76 0 1 -0 +-0.6 -0 -3 0.44 0.8 0 1 -0 +-1 -0 -2.6 0.4 0.76 0 1 -0 +-0.6 -0 -2.6 0.44 0.76 0 1 -0 +-0.2 -0 -3 0.48 0.8 0 1 -0 +-0.6 -0 -3 0.44 0.8 0 1 -0 +-0.2 -0 -2.6 0.48 0.76 0 1 -0 +-0.2 -0 -3 0.48 0.8 0 1 -0 +-0.6 -0 -2.6 0.44 0.76 0 1 -0 +-0.2 -0 -2.6 0.48 0.76 0 1 -0 +0.2 -0 -3 0.52 0.8 0 1 -0 +-0.2 -0 -3 0.48 0.8 0 1 -0 +0.2 -0 -2.6 0.52 0.76 0 1 -0 +0.2 -0 -3 0.52 0.8 0 1 -0 +-0.2 -0 -2.6 0.48 0.76 0 1 -0 +0.2 -0 -2.6 0.52 0.76 0 1 -0 +0.6 -0 -3 0.56 0.8 0 1 -0 +0.2 -0 -3 0.52 0.8 0 1 -0 +0.6 -0 -2.6 0.56 0.76 0 1 -0 +0.6 -0 -3 0.56 0.8 0 1 -0 +0.2 -0 -2.6 0.52 0.76 0 1 -0 +0.6 -0 -2.6 0.56 0.76 0 1 -0 +1 -0 -3 0.6 0.8 0 1 -0 +0.6 -0 -3 0.56 0.8 0 1 -0 +1 -0 -2.6 0.6 0.76 0 1 -0 +1 -0 -3 0.6 0.8 0 1 -0 +0.6 -0 -2.6 0.56 0.76 0 1 -0 +1 -0 -2.6 0.6 0.76 0 1 -0 +1.4 -0 -3 0.64 0.8 0 1 -0 +1 -0 -3 0.6 0.8 0 1 -0 +1.4 -0 -2.6 0.64 0.76 0 1 -0 +1.4 -0 -3 0.64 0.8 0 1 -0 +1 -0 -2.6 0.6 0.76 0 1 -0 +1.4 -0 -2.6 0.64 0.76 0 1 -0 +1.8 -0 -3 0.68 0.8 0 1 -0 +1.4 -0 -3 0.64 0.8 0 1 -0 +1.8 -0 -2.6 0.68 0.76 0 1 -0 +1.8 -0 -3 0.68 0.8 0 1 -0 +1.4 -0 -2.6 0.64 0.76 0 1 -0 +1.8 -0 -2.6 0.68 0.76 0 1 -0 +2.2 -0 -3 0.72 0.8 0 1 -0 +1.8 -0 -3 0.68 0.8 0 1 -0 +2.2 -0 -2.6 0.72 0.76 0 1 -0 +2.2 -0 -3 0.72 0.8 0 1 -0 +1.8 -0 -2.6 0.68 0.76 0 1 -0 +2.2 -0 -2.6 0.72 0.76 0 1 -0 +2.6 -0 -3 0.76 0.8 0 1 -0 +2.2 -0 -3 0.72 0.8 0 1 -0 +2.6 -0 -2.6 0.76 0.76 0 1 -0 +2.6 -0 -3 0.76 0.8 0 1 -0 +2.2 -0 -2.6 0.72 0.76 0 1 -0 +2.6 -0 -2.6 0.76 0.76 0 1 -0 +3 -0 -3 0.8 0.8 0 1 -0 +2.6 -0 -3 0.76 0.8 0 1 -0 +3 -0 -2.6 0.8 0.76 0 1 -0 +3 -0 -3 0.8 0.8 0 1 -0 +2.6 -0 -2.6 0.76 0.76 0 1 -0 +3 -0 -2.6 0.8 0.76 0 1 -0 +3.4 -0 -3 0.84 0.8 0 1 -0 +3 -0 -3 0.8 0.8 0 1 -0 +3.4 -0 -2.6 0.84 0.76 0 1 -0 +3.4 -0 -3 0.84 0.8 0 1 -0 +3 -0 -2.6 0.8 0.76 0 1 -0 +3.4 -0 -2.6 0.84 0.76 0 1 -0 +3.8 -0 -3 0.88 0.8 0 1 -0 +3.4 -0 -3 0.84 0.8 0 1 -0 +3.8 -0 -2.6 0.88 0.76 0 1 -0 +3.8 -0 -3 0.88 0.8 0 1 -0 +3.4 -0 -2.6 0.84 0.76 0 1 -0 +3.8 -0 -2.6 0.88 0.76 0 1 -0 +4.2 -0 -3 0.92 0.8 0 1 -0 +3.8 -0 -3 0.88 0.8 0 1 -0 +4.2 -0 -2.6 0.92 0.76 0 1 -0 +4.2 -0 -3 0.92 0.8 0 1 -0 +3.8 -0 -2.6 0.88 0.76 0 1 -0 +4.2 -0 -2.6 0.92 0.76 0 1 -0 +4.6 -0 -3 0.96 0.8 0 1 -0 +4.2 -0 -3 0.92 0.8 0 1 -0 +4.6 -0 -2.6 0.96 0.76 0 1 -0 +4.6 -0 -3 0.96 0.8 0 1 -0 +4.2 -0 -2.6 0.92 0.76 0 1 -0 +4.6 -0 -2.6 0.96 0.76 0 1 -0 +5 -0 -3 1 0.8 0 1 -0 +4.6 -0 -3 0.96 0.8 0 1 -0 +5 -0 -2.6 1 0.76 0 1 -0 +5 -0 -3 1 0.8 0 1 -0 +4.6 -0 -2.6 0.96 0.76 0 1 -0 +-5 -0 -2.2 0 0.72 0 1 -0 +-4.6 -0 -2.6 0.04 0.76 0 1 -0 +-5 -0 -2.6 0 0.76 0 1 -0 +-4.6 -0 -2.2 0.04 0.72 0 1 -0 +-4.6 -0 -2.6 0.04 0.76 0 1 -0 +-5 -0 -2.2 0 0.72 0 1 -0 +-4.6 -0 -2.2 0.04 0.72 0 1 -0 +-4.2 -0 -2.6 0.08 0.76 0 1 -0 +-4.6 -0 -2.6 0.04 0.76 0 1 -0 +-4.2 -0 -2.2 0.08 0.72 0 1 -0 +-4.2 -0 -2.6 0.08 0.76 0 1 -0 +-4.6 -0 -2.2 0.04 0.72 0 1 -0 +-4.2 -0 -2.2 0.08 0.72 0 1 -0 +-3.8 -0 -2.6 0.12 0.76 0 1 -0 +-4.2 -0 -2.6 0.08 0.76 0 1 -0 +-3.8 -0 -2.2 0.12 0.72 0 1 -0 +-3.8 -0 -2.6 0.12 0.76 0 1 -0 +-4.2 -0 -2.2 0.08 0.72 0 1 -0 +-3.8 -0 -2.2 0.12 0.72 0 1 -0 +-3.4 -0 -2.6 0.16 0.76 0 1 -0 +-3.8 -0 -2.6 0.12 0.76 0 1 -0 +-3.4 -0 -2.2 0.16 0.72 0 1 -0 +-3.4 -0 -2.6 0.16 0.76 0 1 -0 +-3.8 -0 -2.2 0.12 0.72 0 1 -0 +-3.4 -0 -2.2 0.16 0.72 0 1 -0 +-3 -0 -2.6 0.2 0.76 0 1 -0 +-3.4 -0 -2.6 0.16 0.76 0 1 -0 +-3 -0 -2.2 0.2 0.72 0 1 -0 +-3 -0 -2.6 0.2 0.76 0 1 -0 +-3.4 -0 -2.2 0.16 0.72 0 1 -0 +-3 -0 -2.2 0.2 0.72 0 1 -0 +-2.6 -0 -2.6 0.24 0.76 0 1 -0 +-3 -0 -2.6 0.2 0.76 0 1 -0 +-2.6 -0 -2.2 0.24 0.72 0 1 -0 +-2.6 -0 -2.6 0.24 0.76 0 1 -0 +-3 -0 -2.2 0.2 0.72 0 1 -0 +-2.6 -0 -2.2 0.24 0.72 0 1 -0 +-2.2 -0 -2.6 0.28 0.76 0 1 -0 +-2.6 -0 -2.6 0.24 0.76 0 1 -0 +-2.2 -0 -2.2 0.28 0.72 0 1 -0 +-2.2 -0 -2.6 0.28 0.76 0 1 -0 +-2.6 -0 -2.2 0.24 0.72 0 1 -0 +-2.2 -0 -2.2 0.28 0.72 0 1 -0 +-1.8 -0 -2.6 0.32 0.76 0 1 -0 +-2.2 -0 -2.6 0.28 0.76 0 1 -0 +-1.8 -0 -2.2 0.32 0.72 0 1 -0 +-1.8 -0 -2.6 0.32 0.76 0 1 -0 +-2.2 -0 -2.2 0.28 0.72 0 1 -0 +-1.8 -0 -2.2 0.32 0.72 0 1 -0 +-1.4 -0 -2.6 0.36 0.76 0 1 -0 +-1.8 -0 -2.6 0.32 0.76 0 1 -0 +-1.4 -0 -2.2 0.36 0.72 0 1 -0 +-1.4 -0 -2.6 0.36 0.76 0 1 -0 +-1.8 -0 -2.2 0.32 0.72 0 1 -0 +-1.4 -0 -2.2 0.36 0.72 0 1 -0 +-1 -0 -2.6 0.4 0.76 0 1 -0 +-1.4 -0 -2.6 0.36 0.76 0 1 -0 +-1 -0 -2.2 0.4 0.72 0 1 -0 +-1 -0 -2.6 0.4 0.76 0 1 -0 +-1.4 -0 -2.2 0.36 0.72 0 1 -0 +-1 -0 -2.2 0.4 0.72 0 1 -0 +-0.6 -0 -2.6 0.44 0.76 0 1 -0 +-1 -0 -2.6 0.4 0.76 0 1 -0 +-0.6 -0 -2.2 0.44 0.72 0 1 -0 +-0.6 -0 -2.6 0.44 0.76 0 1 -0 +-1 -0 -2.2 0.4 0.72 0 1 -0 +-0.6 -0 -2.2 0.44 0.72 0 1 -0 +-0.2 -0 -2.6 0.48 0.76 0 1 -0 +-0.6 -0 -2.6 0.44 0.76 0 1 -0 +-0.2 -0 -2.2 0.48 0.72 0 1 -0 +-0.2 -0 -2.6 0.48 0.76 0 1 -0 +-0.6 -0 -2.2 0.44 0.72 0 1 -0 +-0.2 -0 -2.2 0.48 0.72 0 1 -0 +0.2 -0 -2.6 0.52 0.76 0 1 -0 +-0.2 -0 -2.6 0.48 0.76 0 1 -0 +0.2 -0 -2.2 0.52 0.72 0 1 -0 +0.2 -0 -2.6 0.52 0.76 0 1 -0 +-0.2 -0 -2.2 0.48 0.72 0 1 -0 +0.2 -0 -2.2 0.52 0.72 0 1 -0 +0.6 -0 -2.6 0.56 0.76 0 1 -0 +0.2 -0 -2.6 0.52 0.76 0 1 -0 +0.6 -0 -2.2 0.56 0.72 0 1 -0 +0.6 -0 -2.6 0.56 0.76 0 1 -0 +0.2 -0 -2.2 0.52 0.72 0 1 -0 +0.6 -0 -2.2 0.56 0.72 0 1 -0 +1 -0 -2.6 0.6 0.76 0 1 -0 +0.6 -0 -2.6 0.56 0.76 0 1 -0 +1 -0 -2.2 0.6 0.72 0 1 -0 +1 -0 -2.6 0.6 0.76 0 1 -0 +0.6 -0 -2.2 0.56 0.72 0 1 -0 +1 -0 -2.2 0.6 0.72 0 1 -0 +1.4 -0 -2.6 0.64 0.76 0 1 -0 +1 -0 -2.6 0.6 0.76 0 1 -0 +1.4 -0 -2.2 0.64 0.72 0 1 -0 +1.4 -0 -2.6 0.64 0.76 0 1 -0 +1 -0 -2.2 0.6 0.72 0 1 -0 +1.4 -0 -2.2 0.64 0.72 0 1 -0 +1.8 -0 -2.6 0.68 0.76 0 1 -0 +1.4 -0 -2.6 0.64 0.76 0 1 -0 +1.8 -0 -2.2 0.68 0.72 0 1 -0 +1.8 -0 -2.6 0.68 0.76 0 1 -0 +1.4 -0 -2.2 0.64 0.72 0 1 -0 +1.8 -0 -2.2 0.68 0.72 0 1 -0 +2.2 -0 -2.6 0.72 0.76 0 1 -0 +1.8 -0 -2.6 0.68 0.76 0 1 -0 +2.2 -0 -2.2 0.72 0.72 0 1 -0 +2.2 -0 -2.6 0.72 0.76 0 1 -0 +1.8 -0 -2.2 0.68 0.72 0 1 -0 +2.2 -0 -2.2 0.72 0.72 0 1 -0 +2.6 -0 -2.6 0.76 0.76 0 1 -0 +2.2 -0 -2.6 0.72 0.76 0 1 -0 +2.6 -0 -2.2 0.76 0.72 0 1 -0 +2.6 -0 -2.6 0.76 0.76 0 1 -0 +2.2 -0 -2.2 0.72 0.72 0 1 -0 +2.6 -0 -2.2 0.76 0.72 0 1 -0 +3 -0 -2.6 0.8 0.76 0 1 -0 +2.6 -0 -2.6 0.76 0.76 0 1 -0 +3 -0 -2.2 0.8 0.72 0 1 -0 +3 -0 -2.6 0.8 0.76 0 1 -0 +2.6 -0 -2.2 0.76 0.72 0 1 -0 +3 -0 -2.2 0.8 0.72 0 1 -0 +3.4 -0 -2.6 0.84 0.76 0 1 -0 +3 -0 -2.6 0.8 0.76 0 1 -0 +3.4 -0 -2.2 0.84 0.72 0 1 -0 +3.4 -0 -2.6 0.84 0.76 0 1 -0 +3 -0 -2.2 0.8 0.72 0 1 -0 +3.4 -0 -2.2 0.84 0.72 0 1 -0 +3.8 -0 -2.6 0.88 0.76 0 1 -0 +3.4 -0 -2.6 0.84 0.76 0 1 -0 +3.8 -0 -2.2 0.88 0.72 0 1 -0 +3.8 -0 -2.6 0.88 0.76 0 1 -0 +3.4 -0 -2.2 0.84 0.72 0 1 -0 +3.8 -0 -2.2 0.88 0.72 0 1 -0 +4.2 -0 -2.6 0.92 0.76 0 1 -0 +3.8 -0 -2.6 0.88 0.76 0 1 -0 +4.2 -0 -2.2 0.92 0.72 0 1 -0 +4.2 -0 -2.6 0.92 0.76 0 1 -0 +3.8 -0 -2.2 0.88 0.72 0 1 -0 +4.2 -0 -2.2 0.92 0.72 0 1 -0 +4.6 -0 -2.6 0.96 0.76 0 1 -0 +4.2 -0 -2.6 0.92 0.76 0 1 -0 +4.6 -0 -2.2 0.96 0.72 0 1 -0 +4.6 -0 -2.6 0.96 0.76 0 1 -0 +4.2 -0 -2.2 0.92 0.72 0 1 -0 +4.6 -0 -2.2 0.96 0.72 0 1 -0 +5 -0 -2.6 1 0.76 0 1 -0 +4.6 -0 -2.6 0.96 0.76 0 1 -0 +5 -0 -2.2 1 0.72 0 1 -0 +5 -0 -2.6 1 0.76 0 1 -0 +4.6 -0 -2.2 0.96 0.72 0 1 -0 +-5 -0 -1.8 0 0.68 0 1 -0 +-4.6 -0 -2.2 0.04 0.72 0 1 -0 +-5 -0 -2.2 0 0.72 0 1 -0 +-4.6 -0 -1.8 0.04 0.68 0 1 -0 +-4.6 -0 -2.2 0.04 0.72 0 1 -0 +-5 -0 -1.8 0 0.68 0 1 -0 +-4.6 -0 -1.8 0.04 0.68 0 1 -0 +-4.2 -0 -2.2 0.08 0.72 0 1 -0 +-4.6 -0 -2.2 0.04 0.72 0 1 -0 +-4.2 -0 -1.8 0.08 0.68 0 1 -0 +-4.2 -0 -2.2 0.08 0.72 0 1 -0 +-4.6 -0 -1.8 0.04 0.68 0 1 -0 +-4.2 -0 -1.8 0.08 0.68 0 1 -0 +-3.8 -0 -2.2 0.12 0.72 0 1 -0 +-4.2 -0 -2.2 0.08 0.72 0 1 -0 +-3.8 -0 -1.8 0.12 0.68 0 1 -0 +-3.8 -0 -2.2 0.12 0.72 0 1 -0 +-4.2 -0 -1.8 0.08 0.68 0 1 -0 +-3.8 -0 -1.8 0.12 0.68 0 1 -0 +-3.4 -0 -2.2 0.16 0.72 0 1 -0 +-3.8 -0 -2.2 0.12 0.72 0 1 -0 +-3.4 -0 -1.8 0.16 0.68 0 1 -0 +-3.4 -0 -2.2 0.16 0.72 0 1 -0 +-3.8 -0 -1.8 0.12 0.68 0 1 -0 +-3.4 -0 -1.8 0.16 0.68 0 1 -0 +-3 -0 -2.2 0.2 0.72 0 1 -0 +-3.4 -0 -2.2 0.16 0.72 0 1 -0 +-3 -0 -1.8 0.2 0.68 0 1 -0 +-3 -0 -2.2 0.2 0.72 0 1 -0 +-3.4 -0 -1.8 0.16 0.68 0 1 -0 +-3 -0 -1.8 0.2 0.68 0 1 -0 +-2.6 -0 -2.2 0.24 0.72 0 1 -0 +-3 -0 -2.2 0.2 0.72 0 1 -0 +-2.6 -0 -1.8 0.24 0.68 0 1 -0 +-2.6 -0 -2.2 0.24 0.72 0 1 -0 +-3 -0 -1.8 0.2 0.68 0 1 -0 +-2.6 -0 -1.8 0.24 0.68 0 1 -0 +-2.2 -0 -2.2 0.28 0.72 0 1 -0 +-2.6 -0 -2.2 0.24 0.72 0 1 -0 +-2.2 -0 -1.8 0.28 0.68 0 1 -0 +-2.2 -0 -2.2 0.28 0.72 0 1 -0 +-2.6 -0 -1.8 0.24 0.68 0 1 -0 +-2.2 -0 -1.8 0.28 0.68 0 1 -0 +-1.8 -0 -2.2 0.32 0.72 0 1 -0 +-2.2 -0 -2.2 0.28 0.72 0 1 -0 +-1.8 -0 -1.8 0.32 0.68 0 1 -0 +-1.8 -0 -2.2 0.32 0.72 0 1 -0 +-2.2 -0 -1.8 0.28 0.68 0 1 -0 +-1.8 -0 -1.8 0.32 0.68 0 1 -0 +-1.4 -0 -2.2 0.36 0.72 0 1 -0 +-1.8 -0 -2.2 0.32 0.72 0 1 -0 +-1.4 -0 -1.8 0.36 0.68 0 1 -0 +-1.4 -0 -2.2 0.36 0.72 0 1 -0 +-1.8 -0 -1.8 0.32 0.68 0 1 -0 +-1.4 -0 -1.8 0.36 0.68 0 1 -0 +-1 -0 -2.2 0.4 0.72 0 1 -0 +-1.4 -0 -2.2 0.36 0.72 0 1 -0 +-1 -0 -1.8 0.4 0.68 0 1 -0 +-1 -0 -2.2 0.4 0.72 0 1 -0 +-1.4 -0 -1.8 0.36 0.68 0 1 -0 +-1 -0 -1.8 0.4 0.68 0 1 -0 +-0.6 -0 -2.2 0.44 0.72 0 1 -0 +-1 -0 -2.2 0.4 0.72 0 1 -0 +-0.6 -0 -1.8 0.44 0.68 0 1 -0 +-0.6 -0 -2.2 0.44 0.72 0 1 -0 +-1 -0 -1.8 0.4 0.68 0 1 -0 +-0.6 -0 -1.8 0.44 0.68 0 1 -0 +-0.2 -0 -2.2 0.48 0.72 0 1 -0 +-0.6 -0 -2.2 0.44 0.72 0 1 -0 +-0.2 -0 -1.8 0.48 0.68 0 1 -0 +-0.2 -0 -2.2 0.48 0.72 0 1 -0 +-0.6 -0 -1.8 0.44 0.68 0 1 -0 +-0.2 -0 -1.8 0.48 0.68 0 1 -0 +0.2 -0 -2.2 0.52 0.72 0 1 -0 +-0.2 -0 -2.2 0.48 0.72 0 1 -0 +0.2 -0 -1.8 0.52 0.68 0 1 -0 +0.2 -0 -2.2 0.52 0.72 0 1 -0 +-0.2 -0 -1.8 0.48 0.68 0 1 -0 +0.2 -0 -1.8 0.52 0.68 0 1 -0 +0.6 -0 -2.2 0.56 0.72 0 1 -0 +0.2 -0 -2.2 0.52 0.72 0 1 -0 +0.6 -0 -1.8 0.56 0.68 0 1 -0 +0.6 -0 -2.2 0.56 0.72 0 1 -0 +0.2 -0 -1.8 0.52 0.68 0 1 -0 +0.6 -0 -1.8 0.56 0.68 0 1 -0 +1 -0 -2.2 0.6 0.72 0 1 -0 +0.6 -0 -2.2 0.56 0.72 0 1 -0 +1 -0 -1.8 0.6 0.68 0 1 -0 +1 -0 -2.2 0.6 0.72 0 1 -0 +0.6 -0 -1.8 0.56 0.68 0 1 -0 +1 -0 -1.8 0.6 0.68 0 1 -0 +1.4 -0 -2.2 0.64 0.72 0 1 -0 +1 -0 -2.2 0.6 0.72 0 1 -0 +1.4 -0 -1.8 0.64 0.68 0 1 -0 +1.4 -0 -2.2 0.64 0.72 0 1 -0 +1 -0 -1.8 0.6 0.68 0 1 -0 +1.4 -0 -1.8 0.64 0.68 0 1 -0 +1.8 -0 -2.2 0.68 0.72 0 1 -0 +1.4 -0 -2.2 0.64 0.72 0 1 -0 +1.8 -0 -1.8 0.68 0.68 0 1 -0 +1.8 -0 -2.2 0.68 0.72 0 1 -0 +1.4 -0 -1.8 0.64 0.68 0 1 -0 +1.8 -0 -1.8 0.68 0.68 0 1 -0 +2.2 -0 -2.2 0.72 0.72 0 1 -0 +1.8 -0 -2.2 0.68 0.72 0 1 -0 +2.2 -0 -1.8 0.72 0.68 0 1 -0 +2.2 -0 -2.2 0.72 0.72 0 1 -0 +1.8 -0 -1.8 0.68 0.68 0 1 -0 +2.2 -0 -1.8 0.72 0.68 0 1 -0 +2.6 -0 -2.2 0.76 0.72 0 1 -0 +2.2 -0 -2.2 0.72 0.72 0 1 -0 +2.6 -0 -1.8 0.76 0.68 0 1 -0 +2.6 -0 -2.2 0.76 0.72 0 1 -0 +2.2 -0 -1.8 0.72 0.68 0 1 -0 +2.6 -0 -1.8 0.76 0.68 0 1 -0 +3 -0 -2.2 0.8 0.72 0 1 -0 +2.6 -0 -2.2 0.76 0.72 0 1 -0 +3 -0 -1.8 0.8 0.68 0 1 -0 +3 -0 -2.2 0.8 0.72 0 1 -0 +2.6 -0 -1.8 0.76 0.68 0 1 -0 +3 -0 -1.8 0.8 0.68 0 1 -0 +3.4 -0 -2.2 0.84 0.72 0 1 -0 +3 -0 -2.2 0.8 0.72 0 1 -0 +3.4 -0 -1.8 0.84 0.68 0 1 -0 +3.4 -0 -2.2 0.84 0.72 0 1 -0 +3 -0 -1.8 0.8 0.68 0 1 -0 +3.4 -0 -1.8 0.84 0.68 0 1 -0 +3.8 -0 -2.2 0.88 0.72 0 1 -0 +3.4 -0 -2.2 0.84 0.72 0 1 -0 +3.8 -0 -1.8 0.88 0.68 0 1 -0 +3.8 -0 -2.2 0.88 0.72 0 1 -0 +3.4 -0 -1.8 0.84 0.68 0 1 -0 +3.8 -0 -1.8 0.88 0.68 0 1 -0 +4.2 -0 -2.2 0.92 0.72 0 1 -0 +3.8 -0 -2.2 0.88 0.72 0 1 -0 +4.2 -0 -1.8 0.92 0.68 0 1 -0 +4.2 -0 -2.2 0.92 0.72 0 1 -0 +3.8 -0 -1.8 0.88 0.68 0 1 -0 +4.2 -0 -1.8 0.92 0.68 0 1 -0 +4.6 -0 -2.2 0.96 0.72 0 1 -0 +4.2 -0 -2.2 0.92 0.72 0 1 -0 +4.6 -0 -1.8 0.96 0.68 0 1 -0 +4.6 -0 -2.2 0.96 0.72 0 1 -0 +4.2 -0 -1.8 0.92 0.68 0 1 -0 +4.6 -0 -1.8 0.96 0.68 0 1 -0 +5 -0 -2.2 1 0.72 0 1 -0 +4.6 -0 -2.2 0.96 0.72 0 1 -0 +5 -0 -1.8 1 0.68 0 1 -0 +5 -0 -2.2 1 0.72 0 1 -0 +4.6 -0 -1.8 0.96 0.68 0 1 -0 +-5 -0 -1.4 0 0.64 0 1 -0 +-4.6 -0 -1.8 0.04 0.68 0 1 -0 +-5 -0 -1.8 0 0.68 0 1 -0 +-4.6 -0 -1.4 0.04 0.64 0 1 -0 +-4.6 -0 -1.8 0.04 0.68 0 1 -0 +-5 -0 -1.4 0 0.64 0 1 -0 +-4.6 -0 -1.4 0.04 0.64 0 1 -0 +-4.2 -0 -1.8 0.08 0.68 0 1 -0 +-4.6 -0 -1.8 0.04 0.68 0 1 -0 +-4.2 -0 -1.4 0.08 0.64 0 1 -0 +-4.2 -0 -1.8 0.08 0.68 0 1 -0 +-4.6 -0 -1.4 0.04 0.64 0 1 -0 +-4.2 -0 -1.4 0.08 0.64 0 1 -0 +-3.8 -0 -1.8 0.12 0.68 0 1 -0 +-4.2 -0 -1.8 0.08 0.68 0 1 -0 +-3.8 -0 -1.4 0.12 0.64 0 1 -0 +-3.8 -0 -1.8 0.12 0.68 0 1 -0 +-4.2 -0 -1.4 0.08 0.64 0 1 -0 +-3.8 -0 -1.4 0.12 0.64 0 1 -0 +-3.4 -0 -1.8 0.16 0.68 0 1 -0 +-3.8 -0 -1.8 0.12 0.68 0 1 -0 +-3.4 -0 -1.4 0.16 0.64 0 1 -0 +-3.4 -0 -1.8 0.16 0.68 0 1 -0 +-3.8 -0 -1.4 0.12 0.64 0 1 -0 +-3.4 -0 -1.4 0.16 0.64 0 1 -0 +-3 -0 -1.8 0.2 0.68 0 1 -0 +-3.4 -0 -1.8 0.16 0.68 0 1 -0 +-3 -0 -1.4 0.2 0.64 0 1 -0 +-3 -0 -1.8 0.2 0.68 0 1 -0 +-3.4 -0 -1.4 0.16 0.64 0 1 -0 +-3 -0 -1.4 0.2 0.64 0 1 -0 +-2.6 -0 -1.8 0.24 0.68 0 1 -0 +-3 -0 -1.8 0.2 0.68 0 1 -0 +-2.6 -0 -1.4 0.24 0.64 0 1 -0 +-2.6 -0 -1.8 0.24 0.68 0 1 -0 +-3 -0 -1.4 0.2 0.64 0 1 -0 +-2.6 -0 -1.4 0.24 0.64 0 1 -0 +-2.2 -0 -1.8 0.28 0.68 0 1 -0 +-2.6 -0 -1.8 0.24 0.68 0 1 -0 +-2.2 -0 -1.4 0.28 0.64 0 1 -0 +-2.2 -0 -1.8 0.28 0.68 0 1 -0 +-2.6 -0 -1.4 0.24 0.64 0 1 -0 +-2.2 -0 -1.4 0.28 0.64 0 1 -0 +-1.8 -0 -1.8 0.32 0.68 0 1 -0 +-2.2 -0 -1.8 0.28 0.68 0 1 -0 +-1.8 -0 -1.4 0.32 0.64 0 1 -0 +-1.8 -0 -1.8 0.32 0.68 0 1 -0 +-2.2 -0 -1.4 0.28 0.64 0 1 -0 +-1.8 -0 -1.4 0.32 0.64 0 1 -0 +-1.4 -0 -1.8 0.36 0.68 0 1 -0 +-1.8 -0 -1.8 0.32 0.68 0 1 -0 +-1.4 -0 -1.4 0.36 0.64 0 1 -0 +-1.4 -0 -1.8 0.36 0.68 0 1 -0 +-1.8 -0 -1.4 0.32 0.64 0 1 -0 +-1.4 -0 -1.4 0.36 0.64 0 1 -0 +-1 -0 -1.8 0.4 0.68 0 1 -0 +-1.4 -0 -1.8 0.36 0.68 0 1 -0 +-1 -0 -1.4 0.4 0.64 0 1 -0 +-1 -0 -1.8 0.4 0.68 0 1 -0 +-1.4 -0 -1.4 0.36 0.64 0 1 -0 +-1 -0 -1.4 0.4 0.64 0 1 -0 +-0.6 -0 -1.8 0.44 0.68 0 1 -0 +-1 -0 -1.8 0.4 0.68 0 1 -0 +-0.6 -0 -1.4 0.44 0.64 0 1 -0 +-0.6 -0 -1.8 0.44 0.68 0 1 -0 +-1 -0 -1.4 0.4 0.64 0 1 -0 +-0.6 -0 -1.4 0.44 0.64 0 1 -0 +-0.2 -0 -1.8 0.48 0.68 0 1 -0 +-0.6 -0 -1.8 0.44 0.68 0 1 -0 +-0.2 -0 -1.4 0.48 0.64 0 1 -0 +-0.2 -0 -1.8 0.48 0.68 0 1 -0 +-0.6 -0 -1.4 0.44 0.64 0 1 -0 +-0.2 -0 -1.4 0.48 0.64 0 1 -0 +0.2 -0 -1.8 0.52 0.68 0 1 -0 +-0.2 -0 -1.8 0.48 0.68 0 1 -0 +0.2 -0 -1.4 0.52 0.64 0 1 -0 +0.2 -0 -1.8 0.52 0.68 0 1 -0 +-0.2 -0 -1.4 0.48 0.64 0 1 -0 +0.2 -0 -1.4 0.52 0.64 0 1 -0 +0.6 -0 -1.8 0.56 0.68 0 1 -0 +0.2 -0 -1.8 0.52 0.68 0 1 -0 +0.6 -0 -1.4 0.56 0.64 0 1 -0 +0.6 -0 -1.8 0.56 0.68 0 1 -0 +0.2 -0 -1.4 0.52 0.64 0 1 -0 +0.6 -0 -1.4 0.56 0.64 0 1 -0 +1 -0 -1.8 0.6 0.68 0 1 -0 +0.6 -0 -1.8 0.56 0.68 0 1 -0 +1 -0 -1.4 0.6 0.64 0 1 -0 +1 -0 -1.8 0.6 0.68 0 1 -0 +0.6 -0 -1.4 0.56 0.64 0 1 -0 +1 -0 -1.4 0.6 0.64 0 1 -0 +1.4 -0 -1.8 0.64 0.68 0 1 -0 +1 -0 -1.8 0.6 0.68 0 1 -0 +1.4 -0 -1.4 0.64 0.64 0 1 -0 +1.4 -0 -1.8 0.64 0.68 0 1 -0 +1 -0 -1.4 0.6 0.64 0 1 -0 +1.4 -0 -1.4 0.64 0.64 0 1 -0 +1.8 -0 -1.8 0.68 0.68 0 1 -0 +1.4 -0 -1.8 0.64 0.68 0 1 -0 +1.8 -0 -1.4 0.68 0.64 0 1 -0 +1.8 -0 -1.8 0.68 0.68 0 1 -0 +1.4 -0 -1.4 0.64 0.64 0 1 -0 +1.8 -0 -1.4 0.68 0.64 0 1 -0 +2.2 -0 -1.8 0.72 0.68 0 1 -0 +1.8 -0 -1.8 0.68 0.68 0 1 -0 +2.2 -0 -1.4 0.72 0.64 0 1 -0 +2.2 -0 -1.8 0.72 0.68 0 1 -0 +1.8 -0 -1.4 0.68 0.64 0 1 -0 +2.2 -0 -1.4 0.72 0.64 0 1 -0 +2.6 -0 -1.8 0.76 0.68 0 1 -0 +2.2 -0 -1.8 0.72 0.68 0 1 -0 +2.6 -0 -1.4 0.76 0.64 0 1 -0 +2.6 -0 -1.8 0.76 0.68 0 1 -0 +2.2 -0 -1.4 0.72 0.64 0 1 -0 +2.6 -0 -1.4 0.76 0.64 0 1 -0 +3 -0 -1.8 0.8 0.68 0 1 -0 +2.6 -0 -1.8 0.76 0.68 0 1 -0 +3 -0 -1.4 0.8 0.64 0 1 -0 +3 -0 -1.8 0.8 0.68 0 1 -0 +2.6 -0 -1.4 0.76 0.64 0 1 -0 +3 -0 -1.4 0.8 0.64 0 1 -0 +3.4 -0 -1.8 0.84 0.68 0 1 -0 +3 -0 -1.8 0.8 0.68 0 1 -0 +3.4 -0 -1.4 0.84 0.64 0 1 -0 +3.4 -0 -1.8 0.84 0.68 0 1 -0 +3 -0 -1.4 0.8 0.64 0 1 -0 +3.4 -0 -1.4 0.84 0.64 0 1 -0 +3.8 -0 -1.8 0.88 0.68 0 1 -0 +3.4 -0 -1.8 0.84 0.68 0 1 -0 +3.8 -0 -1.4 0.88 0.64 0 1 -0 +3.8 -0 -1.8 0.88 0.68 0 1 -0 +3.4 -0 -1.4 0.84 0.64 0 1 -0 +3.8 -0 -1.4 0.88 0.64 0 1 -0 +4.2 -0 -1.8 0.92 0.68 0 1 -0 +3.8 -0 -1.8 0.88 0.68 0 1 -0 +4.2 -0 -1.4 0.92 0.64 0 1 -0 +4.2 -0 -1.8 0.92 0.68 0 1 -0 +3.8 -0 -1.4 0.88 0.64 0 1 -0 +4.2 -0 -1.4 0.92 0.64 0 1 -0 +4.6 -0 -1.8 0.96 0.68 0 1 -0 +4.2 -0 -1.8 0.92 0.68 0 1 -0 +4.6 -0 -1.4 0.96 0.64 0 1 -0 +4.6 -0 -1.8 0.96 0.68 0 1 -0 +4.2 -0 -1.4 0.92 0.64 0 1 -0 +4.6 -0 -1.4 0.96 0.64 0 1 -0 +5 -0 -1.8 1 0.68 0 1 -0 +4.6 -0 -1.8 0.96 0.68 0 1 -0 +5 -0 -1.4 1 0.64 0 1 -0 +5 -0 -1.8 1 0.68 0 1 -0 +4.6 -0 -1.4 0.96 0.64 0 1 -0 +-5 -0 -1 0 0.6 0 1 -0 +-4.6 -0 -1.4 0.04 0.64 0 1 -0 +-5 -0 -1.4 0 0.64 0 1 -0 +-4.6 -0 -1 0.04 0.6 0 1 -0 +-4.6 -0 -1.4 0.04 0.64 0 1 -0 +-5 -0 -1 0 0.6 0 1 -0 +-4.6 -0 -1 0.04 0.6 0 1 -0 +-4.2 -0 -1.4 0.08 0.64 0 1 -0 +-4.6 -0 -1.4 0.04 0.64 0 1 -0 +-4.2 -0 -1 0.08 0.6 0 1 -0 +-4.2 -0 -1.4 0.08 0.64 0 1 -0 +-4.6 -0 -1 0.04 0.6 0 1 -0 +-4.2 -0 -1 0.08 0.6 0 1 -0 +-3.8 -0 -1.4 0.12 0.64 0 1 -0 +-4.2 -0 -1.4 0.08 0.64 0 1 -0 +-3.8 -0 -1 0.12 0.6 0 1 -0 +-3.8 -0 -1.4 0.12 0.64 0 1 -0 +-4.2 -0 -1 0.08 0.6 0 1 -0 +-3.8 -0 -1 0.12 0.6 0 1 -0 +-3.4 -0 -1.4 0.16 0.64 0 1 -0 +-3.8 -0 -1.4 0.12 0.64 0 1 -0 +-3.4 -0 -1 0.16 0.6 0 1 -0 +-3.4 -0 -1.4 0.16 0.64 0 1 -0 +-3.8 -0 -1 0.12 0.6 0 1 -0 +-3.4 -0 -1 0.16 0.6 0 1 -0 +-3 -0 -1.4 0.2 0.64 0 1 -0 +-3.4 -0 -1.4 0.16 0.64 0 1 -0 +-3 -0 -1 0.2 0.6 0 1 -0 +-3 -0 -1.4 0.2 0.64 0 1 -0 +-3.4 -0 -1 0.16 0.6 0 1 -0 +-3 -0 -1 0.2 0.6 0 1 -0 +-2.6 -0 -1.4 0.24 0.64 0 1 -0 +-3 -0 -1.4 0.2 0.64 0 1 -0 +-2.6 -0 -1 0.24 0.6 0 1 -0 +-2.6 -0 -1.4 0.24 0.64 0 1 -0 +-3 -0 -1 0.2 0.6 0 1 -0 +-2.6 -0 -1 0.24 0.6 0 1 -0 +-2.2 -0 -1.4 0.28 0.64 0 1 -0 +-2.6 -0 -1.4 0.24 0.64 0 1 -0 +-2.2 -0 -1 0.28 0.6 0 1 -0 +-2.2 -0 -1.4 0.28 0.64 0 1 -0 +-2.6 -0 -1 0.24 0.6 0 1 -0 +-2.2 -0 -1 0.28 0.6 0 1 -0 +-1.8 -0 -1.4 0.32 0.64 0 1 -0 +-2.2 -0 -1.4 0.28 0.64 0 1 -0 +-1.8 -0 -1 0.32 0.6 0 1 -0 +-1.8 -0 -1.4 0.32 0.64 0 1 -0 +-2.2 -0 -1 0.28 0.6 0 1 -0 +-1.8 -0 -1 0.32 0.6 0 1 -0 +-1.4 -0 -1.4 0.36 0.64 0 1 -0 +-1.8 -0 -1.4 0.32 0.64 0 1 -0 +-1.4 -0 -1 0.36 0.6 0 1 -0 +-1.4 -0 -1.4 0.36 0.64 0 1 -0 +-1.8 -0 -1 0.32 0.6 0 1 -0 +-1.4 -0 -1 0.36 0.6 0 1 -0 +-1 -0 -1.4 0.4 0.64 0 1 -0 +-1.4 -0 -1.4 0.36 0.64 0 1 -0 +-1 -0 -1 0.4 0.6 0 1 -0 +-1 -0 -1.4 0.4 0.64 0 1 -0 +-1.4 -0 -1 0.36 0.6 0 1 -0 +-1 -0 -1 0.4 0.6 0 1 -0 +-0.6 -0 -1.4 0.44 0.64 0 1 -0 +-1 -0 -1.4 0.4 0.64 0 1 -0 +-0.6 -0 -1 0.44 0.6 0 1 -0 +-0.6 -0 -1.4 0.44 0.64 0 1 -0 +-1 -0 -1 0.4 0.6 0 1 -0 +-0.6 -0 -1 0.44 0.6 0 1 -0 +-0.2 -0 -1.4 0.48 0.64 0 1 -0 +-0.6 -0 -1.4 0.44 0.64 0 1 -0 +-0.2 -0 -1 0.48 0.6 0 1 -0 +-0.2 -0 -1.4 0.48 0.64 0 1 -0 +-0.6 -0 -1 0.44 0.6 0 1 -0 +-0.2 -0 -1 0.48 0.6 0 1 -0 +0.2 -0 -1.4 0.52 0.64 0 1 -0 +-0.2 -0 -1.4 0.48 0.64 0 1 -0 +0.2 -0 -1 0.52 0.6 0 1 -0 +0.2 -0 -1.4 0.52 0.64 0 1 -0 +-0.2 -0 -1 0.48 0.6 0 1 -0 +0.2 -0 -1 0.52 0.6 0 1 -0 +0.6 -0 -1.4 0.56 0.64 0 1 -0 +0.2 -0 -1.4 0.52 0.64 0 1 -0 +0.6 -0 -1 0.56 0.6 0 1 -0 +0.6 -0 -1.4 0.56 0.64 0 1 -0 +0.2 -0 -1 0.52 0.6 0 1 -0 +0.6 -0 -1 0.56 0.6 0 1 -0 +1 -0 -1.4 0.6 0.64 0 1 -0 +0.6 -0 -1.4 0.56 0.64 0 1 -0 +1 -0 -1 0.6 0.6 0 1 -0 +1 -0 -1.4 0.6 0.64 0 1 -0 +0.6 -0 -1 0.56 0.6 0 1 -0 +1 -0 -1 0.6 0.6 0 1 -0 +1.4 -0 -1.4 0.64 0.64 0 1 -0 +1 -0 -1.4 0.6 0.64 0 1 -0 +1.4 -0 -1 0.64 0.6 0 1 -0 +1.4 -0 -1.4 0.64 0.64 0 1 -0 +1 -0 -1 0.6 0.6 0 1 -0 +1.4 -0 -1 0.64 0.6 0 1 -0 +1.8 -0 -1.4 0.68 0.64 0 1 -0 +1.4 -0 -1.4 0.64 0.64 0 1 -0 +1.8 -0 -1 0.68 0.6 0 1 -0 +1.8 -0 -1.4 0.68 0.64 0 1 -0 +1.4 -0 -1 0.64 0.6 0 1 -0 +1.8 -0 -1 0.68 0.6 0 1 -0 +2.2 -0 -1.4 0.72 0.64 0 1 -0 +1.8 -0 -1.4 0.68 0.64 0 1 -0 +2.2 -0 -1 0.72 0.6 0 1 -0 +2.2 -0 -1.4 0.72 0.64 0 1 -0 +1.8 -0 -1 0.68 0.6 0 1 -0 +2.2 -0 -1 0.72 0.6 0 1 -0 +2.6 -0 -1.4 0.76 0.64 0 1 -0 +2.2 -0 -1.4 0.72 0.64 0 1 -0 +2.6 -0 -1 0.76 0.6 0 1 -0 +2.6 -0 -1.4 0.76 0.64 0 1 -0 +2.2 -0 -1 0.72 0.6 0 1 -0 +2.6 -0 -1 0.76 0.6 0 1 -0 +3 -0 -1.4 0.8 0.64 0 1 -0 +2.6 -0 -1.4 0.76 0.64 0 1 -0 +3 -0 -1 0.8 0.6 0 1 -0 +3 -0 -1.4 0.8 0.64 0 1 -0 +2.6 -0 -1 0.76 0.6 0 1 -0 +3 -0 -1 0.8 0.6 0 1 -0 +3.4 -0 -1.4 0.84 0.64 0 1 -0 +3 -0 -1.4 0.8 0.64 0 1 -0 +3.4 -0 -1 0.84 0.6 0 1 -0 +3.4 -0 -1.4 0.84 0.64 0 1 -0 +3 -0 -1 0.8 0.6 0 1 -0 +3.4 -0 -1 0.84 0.6 0 1 -0 +3.8 -0 -1.4 0.88 0.64 0 1 -0 +3.4 -0 -1.4 0.84 0.64 0 1 -0 +3.8 -0 -1 0.88 0.6 0 1 -0 +3.8 -0 -1.4 0.88 0.64 0 1 -0 +3.4 -0 -1 0.84 0.6 0 1 -0 +3.8 -0 -1 0.88 0.6 0 1 -0 +4.2 -0 -1.4 0.92 0.64 0 1 -0 +3.8 -0 -1.4 0.88 0.64 0 1 -0 +4.2 -0 -1 0.92 0.6 0 1 -0 +4.2 -0 -1.4 0.92 0.64 0 1 -0 +3.8 -0 -1 0.88 0.6 0 1 -0 +4.2 -0 -1 0.92 0.6 0 1 -0 +4.6 -0 -1.4 0.96 0.64 0 1 -0 +4.2 -0 -1.4 0.92 0.64 0 1 -0 +4.6 -0 -1 0.96 0.6 0 1 -0 +4.6 -0 -1.4 0.96 0.64 0 1 -0 +4.2 -0 -1 0.92 0.6 0 1 -0 +4.6 -0 -1 0.96 0.6 0 1 -0 +5 -0 -1.4 1 0.64 0 1 -0 +4.6 -0 -1.4 0.96 0.64 0 1 -0 +5 -0 -1 1 0.6 0 1 -0 +5 -0 -1.4 1 0.64 0 1 -0 +4.6 -0 -1 0.96 0.6 0 1 -0 +-5 -0 -0.6 0 0.56 0 1 -0 +-4.6 -0 -1 0.04 0.6 0 1 -0 +-5 -0 -1 0 0.6 0 1 -0 +-4.6 -0 -0.6 0.04 0.56 0 1 -0 +-4.6 -0 -1 0.04 0.6 0 1 -0 +-5 -0 -0.6 0 0.56 0 1 -0 +-4.6 -0 -0.6 0.04 0.56 0 1 -0 +-4.2 -0 -1 0.08 0.6 0 1 -0 +-4.6 -0 -1 0.04 0.6 0 1 -0 +-4.2 -0 -0.6 0.08 0.56 0 1 -0 +-4.2 -0 -1 0.08 0.6 0 1 -0 +-4.6 -0 -0.6 0.04 0.56 0 1 -0 +-4.2 -0 -0.6 0.08 0.56 0 1 -0 +-3.8 -0 -1 0.12 0.6 0 1 -0 +-4.2 -0 -1 0.08 0.6 0 1 -0 +-3.8 -0 -0.6 0.12 0.56 0 1 -0 +-3.8 -0 -1 0.12 0.6 0 1 -0 +-4.2 -0 -0.6 0.08 0.56 0 1 -0 +-3.8 -0 -0.6 0.12 0.56 0 1 -0 +-3.4 -0 -1 0.16 0.6 0 1 -0 +-3.8 -0 -1 0.12 0.6 0 1 -0 +-3.4 -0 -0.6 0.16 0.56 0 1 -0 +-3.4 -0 -1 0.16 0.6 0 1 -0 +-3.8 -0 -0.6 0.12 0.56 0 1 -0 +-3.4 -0 -0.6 0.16 0.56 0 1 -0 +-3 -0 -1 0.2 0.6 0 1 -0 +-3.4 -0 -1 0.16 0.6 0 1 -0 +-3 -0 -0.6 0.2 0.56 0 1 -0 +-3 -0 -1 0.2 0.6 0 1 -0 +-3.4 -0 -0.6 0.16 0.56 0 1 -0 +-3 -0 -0.6 0.2 0.56 0 1 -0 +-2.6 -0 -1 0.24 0.6 0 1 -0 +-3 -0 -1 0.2 0.6 0 1 -0 +-2.6 -0 -0.6 0.24 0.56 0 1 -0 +-2.6 -0 -1 0.24 0.6 0 1 -0 +-3 -0 -0.6 0.2 0.56 0 1 -0 +-2.6 -0 -0.6 0.24 0.56 0 1 -0 +-2.2 -0 -1 0.28 0.6 0 1 -0 +-2.6 -0 -1 0.24 0.6 0 1 -0 +-2.2 -0 -0.6 0.28 0.56 0 1 -0 +-2.2 -0 -1 0.28 0.6 0 1 -0 +-2.6 -0 -0.6 0.24 0.56 0 1 -0 +-2.2 -0 -0.6 0.28 0.56 0 1 -0 +-1.8 -0 -1 0.32 0.6 0 1 -0 +-2.2 -0 -1 0.28 0.6 0 1 -0 +-1.8 -0 -0.6 0.32 0.56 0 1 -0 +-1.8 -0 -1 0.32 0.6 0 1 -0 +-2.2 -0 -0.6 0.28 0.56 0 1 -0 +-1.8 -0 -0.6 0.32 0.56 0 1 -0 +-1.4 -0 -1 0.36 0.6 0 1 -0 +-1.8 -0 -1 0.32 0.6 0 1 -0 +-1.4 -0 -0.6 0.36 0.56 0 1 -0 +-1.4 -0 -1 0.36 0.6 0 1 -0 +-1.8 -0 -0.6 0.32 0.56 0 1 -0 +-1.4 -0 -0.6 0.36 0.56 0 1 -0 +-1 -0 -1 0.4 0.6 0 1 -0 +-1.4 -0 -1 0.36 0.6 0 1 -0 +-1 -0 -0.6 0.4 0.56 0 1 -0 +-1 -0 -1 0.4 0.6 0 1 -0 +-1.4 -0 -0.6 0.36 0.56 0 1 -0 +-1 -0 -0.6 0.4 0.56 0 1 -0 +-0.6 -0 -1 0.44 0.6 0 1 -0 +-1 -0 -1 0.4 0.6 0 1 -0 +-0.6 -0 -0.6 0.44 0.56 0 1 -0 +-0.6 -0 -1 0.44 0.6 0 1 -0 +-1 -0 -0.6 0.4 0.56 0 1 -0 +-0.6 -0 -0.6 0.44 0.56 0 1 -0 +-0.2 -0 -1 0.48 0.6 0 1 -0 +-0.6 -0 -1 0.44 0.6 0 1 -0 +-0.2 -0 -0.6 0.48 0.56 0 1 -0 +-0.2 -0 -1 0.48 0.6 0 1 -0 +-0.6 -0 -0.6 0.44 0.56 0 1 -0 +-0.2 -0 -0.6 0.48 0.56 0 1 -0 +0.2 -0 -1 0.52 0.6 0 1 -0 +-0.2 -0 -1 0.48 0.6 0 1 -0 +0.2 -0 -0.6 0.52 0.56 0 1 -0 +0.2 -0 -1 0.52 0.6 0 1 -0 +-0.2 -0 -0.6 0.48 0.56 0 1 -0 +0.2 -0 -0.6 0.52 0.56 0 1 -0 +0.6 -0 -1 0.56 0.6 0 1 -0 +0.2 -0 -1 0.52 0.6 0 1 -0 +0.6 -0 -0.6 0.56 0.56 0 1 -0 +0.6 -0 -1 0.56 0.6 0 1 -0 +0.2 -0 -0.6 0.52 0.56 0 1 -0 +0.6 -0 -0.6 0.56 0.56 0 1 -0 +1 -0 -1 0.6 0.6 0 1 -0 +0.6 -0 -1 0.56 0.6 0 1 -0 +1 -0 -0.6 0.6 0.56 0 1 -0 +1 -0 -1 0.6 0.6 0 1 -0 +0.6 -0 -0.6 0.56 0.56 0 1 -0 +1 -0 -0.6 0.6 0.56 0 1 -0 +1.4 -0 -1 0.64 0.6 0 1 -0 +1 -0 -1 0.6 0.6 0 1 -0 +1.4 -0 -0.6 0.64 0.56 0 1 -0 +1.4 -0 -1 0.64 0.6 0 1 -0 +1 -0 -0.6 0.6 0.56 0 1 -0 +1.4 -0 -0.6 0.64 0.56 0 1 -0 +1.8 -0 -1 0.68 0.6 0 1 -0 +1.4 -0 -1 0.64 0.6 0 1 -0 +1.8 -0 -0.6 0.68 0.56 0 1 -0 +1.8 -0 -1 0.68 0.6 0 1 -0 +1.4 -0 -0.6 0.64 0.56 0 1 -0 +1.8 -0 -0.6 0.68 0.56 0 1 -0 +2.2 -0 -1 0.72 0.6 0 1 -0 +1.8 -0 -1 0.68 0.6 0 1 -0 +2.2 -0 -0.6 0.72 0.56 0 1 -0 +2.2 -0 -1 0.72 0.6 0 1 -0 +1.8 -0 -0.6 0.68 0.56 0 1 -0 +2.2 -0 -0.6 0.72 0.56 0 1 -0 +2.6 -0 -1 0.76 0.6 0 1 -0 +2.2 -0 -1 0.72 0.6 0 1 -0 +2.6 -0 -0.6 0.76 0.56 0 1 -0 +2.6 -0 -1 0.76 0.6 0 1 -0 +2.2 -0 -0.6 0.72 0.56 0 1 -0 +2.6 -0 -0.6 0.76 0.56 0 1 -0 +3 -0 -1 0.8 0.6 0 1 -0 +2.6 -0 -1 0.76 0.6 0 1 -0 +3 -0 -0.6 0.8 0.56 0 1 -0 +3 -0 -1 0.8 0.6 0 1 -0 +2.6 -0 -0.6 0.76 0.56 0 1 -0 +3 -0 -0.6 0.8 0.56 0 1 -0 +3.4 -0 -1 0.84 0.6 0 1 -0 +3 -0 -1 0.8 0.6 0 1 -0 +3.4 -0 -0.6 0.84 0.56 0 1 -0 +3.4 -0 -1 0.84 0.6 0 1 -0 +3 -0 -0.6 0.8 0.56 0 1 -0 +3.4 -0 -0.6 0.84 0.56 0 1 -0 +3.8 -0 -1 0.88 0.6 0 1 -0 +3.4 -0 -1 0.84 0.6 0 1 -0 +3.8 -0 -0.6 0.88 0.56 0 1 -0 +3.8 -0 -1 0.88 0.6 0 1 -0 +3.4 -0 -0.6 0.84 0.56 0 1 -0 +3.8 -0 -0.6 0.88 0.56 0 1 -0 +4.2 -0 -1 0.92 0.6 0 1 -0 +3.8 -0 -1 0.88 0.6 0 1 -0 +4.2 -0 -0.6 0.92 0.56 0 1 -0 +4.2 -0 -1 0.92 0.6 0 1 -0 +3.8 -0 -0.6 0.88 0.56 0 1 -0 +4.2 -0 -0.6 0.92 0.56 0 1 -0 +4.6 -0 -1 0.96 0.6 0 1 -0 +4.2 -0 -1 0.92 0.6 0 1 -0 +4.6 -0 -0.6 0.96 0.56 0 1 -0 +4.6 -0 -1 0.96 0.6 0 1 -0 +4.2 -0 -0.6 0.92 0.56 0 1 -0 +4.6 -0 -0.6 0.96 0.56 0 1 -0 +5 -0 -1 1 0.6 0 1 -0 +4.6 -0 -1 0.96 0.6 0 1 -0 +5 -0 -0.6 1 0.56 0 1 -0 +5 -0 -1 1 0.6 0 1 -0 +4.6 -0 -0.6 0.96 0.56 0 1 -0 +-5 -0 -0.2 0 0.52 0 1 -0 +-4.6 -0 -0.6 0.04 0.56 0 1 -0 +-5 -0 -0.6 0 0.56 0 1 -0 +-4.6 -0 -0.2 0.04 0.52 0 1 -0 +-4.6 -0 -0.6 0.04 0.56 0 1 -0 +-5 -0 -0.2 0 0.52 0 1 -0 +-4.6 -0 -0.2 0.04 0.52 0 1 -0 +-4.2 -0 -0.6 0.08 0.56 0 1 -0 +-4.6 -0 -0.6 0.04 0.56 0 1 -0 +-4.2 -0 -0.2 0.08 0.52 0 1 -0 +-4.2 -0 -0.6 0.08 0.56 0 1 -0 +-4.6 -0 -0.2 0.04 0.52 0 1 -0 +-4.2 -0 -0.2 0.08 0.52 0 1 -0 +-3.8 -0 -0.6 0.12 0.56 0 1 -0 +-4.2 -0 -0.6 0.08 0.56 0 1 -0 +-3.8 -0 -0.2 0.12 0.52 0 1 -0 +-3.8 -0 -0.6 0.12 0.56 0 1 -0 +-4.2 -0 -0.2 0.08 0.52 0 1 -0 +-3.8 -0 -0.2 0.12 0.52 0 1 -0 +-3.4 -0 -0.6 0.16 0.56 0 1 -0 +-3.8 -0 -0.6 0.12 0.56 0 1 -0 +-3.4 -0 -0.2 0.16 0.52 0 1 -0 +-3.4 -0 -0.6 0.16 0.56 0 1 -0 +-3.8 -0 -0.2 0.12 0.52 0 1 -0 +-3.4 -0 -0.2 0.16 0.52 0 1 -0 +-3 -0 -0.6 0.2 0.56 0 1 -0 +-3.4 -0 -0.6 0.16 0.56 0 1 -0 +-3 -0 -0.2 0.2 0.52 0 1 -0 +-3 -0 -0.6 0.2 0.56 0 1 -0 +-3.4 -0 -0.2 0.16 0.52 0 1 -0 +-3 -0 -0.2 0.2 0.52 0 1 -0 +-2.6 -0 -0.6 0.24 0.56 0 1 -0 +-3 -0 -0.6 0.2 0.56 0 1 -0 +-2.6 -0 -0.2 0.24 0.52 0 1 -0 +-2.6 -0 -0.6 0.24 0.56 0 1 -0 +-3 -0 -0.2 0.2 0.52 0 1 -0 +-2.6 -0 -0.2 0.24 0.52 0 1 -0 +-2.2 -0 -0.6 0.28 0.56 0 1 -0 +-2.6 -0 -0.6 0.24 0.56 0 1 -0 +-2.2 -0 -0.2 0.28 0.52 0 1 -0 +-2.2 -0 -0.6 0.28 0.56 0 1 -0 +-2.6 -0 -0.2 0.24 0.52 0 1 -0 +-2.2 -0 -0.2 0.28 0.52 0 1 -0 +-1.8 -0 -0.6 0.32 0.56 0 1 -0 +-2.2 -0 -0.6 0.28 0.56 0 1 -0 +-1.8 -0 -0.2 0.32 0.52 0 1 -0 +-1.8 -0 -0.6 0.32 0.56 0 1 -0 +-2.2 -0 -0.2 0.28 0.52 0 1 -0 +-1.8 -0 -0.2 0.32 0.52 0 1 -0 +-1.4 -0 -0.6 0.36 0.56 0 1 -0 +-1.8 -0 -0.6 0.32 0.56 0 1 -0 +-1.4 -0 -0.2 0.36 0.52 0 1 -0 +-1.4 -0 -0.6 0.36 0.56 0 1 -0 +-1.8 -0 -0.2 0.32 0.52 0 1 -0 +-1.4 -0 -0.2 0.36 0.52 0 1 -0 +-1 -0 -0.6 0.4 0.56 0 1 -0 +-1.4 -0 -0.6 0.36 0.56 0 1 -0 +-1 -0 -0.2 0.4 0.52 0 1 -0 +-1 -0 -0.6 0.4 0.56 0 1 -0 +-1.4 -0 -0.2 0.36 0.52 0 1 -0 +-1 -0 -0.2 0.4 0.52 0 1 -0 +-0.6 -0 -0.6 0.44 0.56 0 1 -0 +-1 -0 -0.6 0.4 0.56 0 1 -0 +-0.6 -0 -0.2 0.44 0.52 0 1 -0 +-0.6 -0 -0.6 0.44 0.56 0 1 -0 +-1 -0 -0.2 0.4 0.52 0 1 -0 +-0.6 -0 -0.2 0.44 0.52 0 1 -0 +-0.2 -0 -0.6 0.48 0.56 0 1 -0 +-0.6 -0 -0.6 0.44 0.56 0 1 -0 +-0.2 -0 -0.2 0.48 0.52 0 1 -0 +-0.2 -0 -0.6 0.48 0.56 0 1 -0 +-0.6 -0 -0.2 0.44 0.52 0 1 -0 +-0.2 -0 -0.2 0.48 0.52 0 1 -0 +0.2 -0 -0.6 0.52 0.56 0 1 -0 +-0.2 -0 -0.6 0.48 0.56 0 1 -0 +0.2 -0 -0.2 0.52 0.52 0 1 -0 +0.2 -0 -0.6 0.52 0.56 0 1 -0 +-0.2 -0 -0.2 0.48 0.52 0 1 -0 +0.2 -0 -0.2 0.52 0.52 0 1 -0 +0.6 -0 -0.6 0.56 0.56 0 1 -0 +0.2 -0 -0.6 0.52 0.56 0 1 -0 +0.6 -0 -0.2 0.56 0.52 0 1 -0 +0.6 -0 -0.6 0.56 0.56 0 1 -0 +0.2 -0 -0.2 0.52 0.52 0 1 -0 +0.6 -0 -0.2 0.56 0.52 0 1 -0 +1 -0 -0.6 0.6 0.56 0 1 -0 +0.6 -0 -0.6 0.56 0.56 0 1 -0 +1 -0 -0.2 0.6 0.52 0 1 -0 +1 -0 -0.6 0.6 0.56 0 1 -0 +0.6 -0 -0.2 0.56 0.52 0 1 -0 +1 -0 -0.2 0.6 0.52 0 1 -0 +1.4 -0 -0.6 0.64 0.56 0 1 -0 +1 -0 -0.6 0.6 0.56 0 1 -0 +1.4 -0 -0.2 0.64 0.52 0 1 -0 +1.4 -0 -0.6 0.64 0.56 0 1 -0 +1 -0 -0.2 0.6 0.52 0 1 -0 +1.4 -0 -0.2 0.64 0.52 0 1 -0 +1.8 -0 -0.6 0.68 0.56 0 1 -0 +1.4 -0 -0.6 0.64 0.56 0 1 -0 +1.8 -0 -0.2 0.68 0.52 0 1 -0 +1.8 -0 -0.6 0.68 0.56 0 1 -0 +1.4 -0 -0.2 0.64 0.52 0 1 -0 +1.8 -0 -0.2 0.68 0.52 0 1 -0 +2.2 -0 -0.6 0.72 0.56 0 1 -0 +1.8 -0 -0.6 0.68 0.56 0 1 -0 +2.2 -0 -0.2 0.72 0.52 0 1 -0 +2.2 -0 -0.6 0.72 0.56 0 1 -0 +1.8 -0 -0.2 0.68 0.52 0 1 -0 +2.2 -0 -0.2 0.72 0.52 0 1 -0 +2.6 -0 -0.6 0.76 0.56 0 1 -0 +2.2 -0 -0.6 0.72 0.56 0 1 -0 +2.6 -0 -0.2 0.76 0.52 0 1 -0 +2.6 -0 -0.6 0.76 0.56 0 1 -0 +2.2 -0 -0.2 0.72 0.52 0 1 -0 +2.6 -0 -0.2 0.76 0.52 0 1 -0 +3 -0 -0.6 0.8 0.56 0 1 -0 +2.6 -0 -0.6 0.76 0.56 0 1 -0 +3 -0 -0.2 0.8 0.52 0 1 -0 +3 -0 -0.6 0.8 0.56 0 1 -0 +2.6 -0 -0.2 0.76 0.52 0 1 -0 +3 -0 -0.2 0.8 0.52 0 1 -0 +3.4 -0 -0.6 0.84 0.56 0 1 -0 +3 -0 -0.6 0.8 0.56 0 1 -0 +3.4 -0 -0.2 0.84 0.52 0 1 -0 +3.4 -0 -0.6 0.84 0.56 0 1 -0 +3 -0 -0.2 0.8 0.52 0 1 -0 +3.4 -0 -0.2 0.84 0.52 0 1 -0 +3.8 -0 -0.6 0.88 0.56 0 1 -0 +3.4 -0 -0.6 0.84 0.56 0 1 -0 +3.8 -0 -0.2 0.88 0.52 0 1 -0 +3.8 -0 -0.6 0.88 0.56 0 1 -0 +3.4 -0 -0.2 0.84 0.52 0 1 -0 +3.8 -0 -0.2 0.88 0.52 0 1 -0 +4.2 -0 -0.6 0.92 0.56 0 1 -0 +3.8 -0 -0.6 0.88 0.56 0 1 -0 +4.2 -0 -0.2 0.92 0.52 0 1 -0 +4.2 -0 -0.6 0.92 0.56 0 1 -0 +3.8 -0 -0.2 0.88 0.52 0 1 -0 +4.2 -0 -0.2 0.92 0.52 0 1 -0 +4.6 -0 -0.6 0.96 0.56 0 1 -0 +4.2 -0 -0.6 0.92 0.56 0 1 -0 +4.6 -0 -0.2 0.96 0.52 0 1 -0 +4.6 -0 -0.6 0.96 0.56 0 1 -0 +4.2 -0 -0.2 0.92 0.52 0 1 -0 +4.6 -0 -0.2 0.96 0.52 0 1 -0 +5 -0 -0.6 1 0.56 0 1 -0 +4.6 -0 -0.6 0.96 0.56 0 1 -0 +5 -0 -0.2 1 0.52 0 1 -0 +5 -0 -0.6 1 0.56 0 1 -0 +4.6 -0 -0.2 0.96 0.52 0 1 -0 +-5 0 0.2 0 0.48 0 1 -0 +-4.6 -0 -0.2 0.04 0.52 0 1 -0 +-5 -0 -0.2 0 0.52 0 1 -0 +-4.6 0 0.2 0.04 0.48 0 1 -0 +-4.6 -0 -0.2 0.04 0.52 0 1 -0 +-5 0 0.2 0 0.48 0 1 -0 +-4.6 0 0.2 0.04 0.48 0 1 -0 +-4.2 -0 -0.2 0.08 0.52 0 1 -0 +-4.6 -0 -0.2 0.04 0.52 0 1 -0 +-4.2 0 0.2 0.08 0.48 0 1 -0 +-4.2 -0 -0.2 0.08 0.52 0 1 -0 +-4.6 0 0.2 0.04 0.48 0 1 -0 +-4.2 0 0.2 0.08 0.48 0 1 -0 +-3.8 -0 -0.2 0.12 0.52 0 1 -0 +-4.2 -0 -0.2 0.08 0.52 0 1 -0 +-3.8 0 0.2 0.12 0.48 0 1 -0 +-3.8 -0 -0.2 0.12 0.52 0 1 -0 +-4.2 0 0.2 0.08 0.48 0 1 -0 +-3.8 0 0.2 0.12 0.48 0 1 -0 +-3.4 -0 -0.2 0.16 0.52 0 1 -0 +-3.8 -0 -0.2 0.12 0.52 0 1 -0 +-3.4 0 0.2 0.16 0.48 0 1 -0 +-3.4 -0 -0.2 0.16 0.52 0 1 -0 +-3.8 0 0.2 0.12 0.48 0 1 -0 +-3.4 0 0.2 0.16 0.48 0 1 -0 +-3 -0 -0.2 0.2 0.52 0 1 -0 +-3.4 -0 -0.2 0.16 0.52 0 1 -0 +-3 0 0.2 0.2 0.48 0 1 -0 +-3 -0 -0.2 0.2 0.52 0 1 -0 +-3.4 0 0.2 0.16 0.48 0 1 -0 +-3 0 0.2 0.2 0.48 0 1 -0 +-2.6 -0 -0.2 0.24 0.52 0 1 -0 +-3 -0 -0.2 0.2 0.52 0 1 -0 +-2.6 0 0.2 0.24 0.48 0 1 -0 +-2.6 -0 -0.2 0.24 0.52 0 1 -0 +-3 0 0.2 0.2 0.48 0 1 -0 +-2.6 0 0.2 0.24 0.48 0 1 -0 +-2.2 -0 -0.2 0.28 0.52 0 1 -0 +-2.6 -0 -0.2 0.24 0.52 0 1 -0 +-2.2 0 0.2 0.28 0.48 0 1 -0 +-2.2 -0 -0.2 0.28 0.52 0 1 -0 +-2.6 0 0.2 0.24 0.48 0 1 -0 +-2.2 0 0.2 0.28 0.48 0 1 -0 +-1.8 -0 -0.2 0.32 0.52 0 1 -0 +-2.2 -0 -0.2 0.28 0.52 0 1 -0 +-1.8 0 0.2 0.32 0.48 0 1 -0 +-1.8 -0 -0.2 0.32 0.52 0 1 -0 +-2.2 0 0.2 0.28 0.48 0 1 -0 +-1.8 0 0.2 0.32 0.48 0 1 -0 +-1.4 -0 -0.2 0.36 0.52 0 1 -0 +-1.8 -0 -0.2 0.32 0.52 0 1 -0 +-1.4 0 0.2 0.36 0.48 0 1 -0 +-1.4 -0 -0.2 0.36 0.52 0 1 -0 +-1.8 0 0.2 0.32 0.48 0 1 -0 +-1.4 0 0.2 0.36 0.48 0 1 -0 +-1 -0 -0.2 0.4 0.52 0 1 -0 +-1.4 -0 -0.2 0.36 0.52 0 1 -0 +-1 0 0.2 0.4 0.48 0 1 -0 +-1 -0 -0.2 0.4 0.52 0 1 -0 +-1.4 0 0.2 0.36 0.48 0 1 -0 +-1 0 0.2 0.4 0.48 0 1 -0 +-0.6 -0 -0.2 0.44 0.52 0 1 -0 +-1 -0 -0.2 0.4 0.52 0 1 -0 +-0.6 0 0.2 0.44 0.48 0 1 -0 +-0.6 -0 -0.2 0.44 0.52 0 1 -0 +-1 0 0.2 0.4 0.48 0 1 -0 +-0.6 0 0.2 0.44 0.48 0 1 -0 +-0.2 -0 -0.2 0.48 0.52 0 1 -0 +-0.6 -0 -0.2 0.44 0.52 0 1 -0 +-0.2 0 0.2 0.48 0.48 0 1 -0 +-0.2 -0 -0.2 0.48 0.52 0 1 -0 +-0.6 0 0.2 0.44 0.48 0 1 -0 +-0.2 0 0.2 0.48 0.48 0 1 -0 +0.2 -0 -0.2 0.52 0.52 0 1 -0 +-0.2 -0 -0.2 0.48 0.52 0 1 -0 +0.2 0 0.2 0.52 0.48 0 1 -0 +0.2 -0 -0.2 0.52 0.52 0 1 -0 +-0.2 0 0.2 0.48 0.48 0 1 -0 +0.2 0 0.2 0.52 0.48 0 1 -0 +0.6 -0 -0.2 0.56 0.52 0 1 -0 +0.2 -0 -0.2 0.52 0.52 0 1 -0 +0.6 0 0.2 0.56 0.48 0 1 -0 +0.6 -0 -0.2 0.56 0.52 0 1 -0 +0.2 0 0.2 0.52 0.48 0 1 -0 +0.6 0 0.2 0.56 0.48 0 1 -0 +1 -0 -0.2 0.6 0.52 0 1 -0 +0.6 -0 -0.2 0.56 0.52 0 1 -0 +1 0 0.2 0.6 0.48 0 1 -0 +1 -0 -0.2 0.6 0.52 0 1 -0 +0.6 0 0.2 0.56 0.48 0 1 -0 +1 0 0.2 0.6 0.48 0 1 -0 +1.4 -0 -0.2 0.64 0.52 0 1 -0 +1 -0 -0.2 0.6 0.52 0 1 -0 +1.4 0 0.2 0.64 0.48 0 1 -0 +1.4 -0 -0.2 0.64 0.52 0 1 -0 +1 0 0.2 0.6 0.48 0 1 -0 +1.4 0 0.2 0.64 0.48 0 1 -0 +1.8 -0 -0.2 0.68 0.52 0 1 -0 +1.4 -0 -0.2 0.64 0.52 0 1 -0 +1.8 0 0.2 0.68 0.48 0 1 -0 +1.8 -0 -0.2 0.68 0.52 0 1 -0 +1.4 0 0.2 0.64 0.48 0 1 -0 +1.8 0 0.2 0.68 0.48 0 1 -0 +2.2 -0 -0.2 0.72 0.52 0 1 -0 +1.8 -0 -0.2 0.68 0.52 0 1 -0 +2.2 0 0.2 0.72 0.48 0 1 -0 +2.2 -0 -0.2 0.72 0.52 0 1 -0 +1.8 0 0.2 0.68 0.48 0 1 -0 +2.2 0 0.2 0.72 0.48 0 1 -0 +2.6 -0 -0.2 0.76 0.52 0 1 -0 +2.2 -0 -0.2 0.72 0.52 0 1 -0 +2.6 0 0.2 0.76 0.48 0 1 -0 +2.6 -0 -0.2 0.76 0.52 0 1 -0 +2.2 0 0.2 0.72 0.48 0 1 -0 +2.6 0 0.2 0.76 0.48 0 1 -0 +3 -0 -0.2 0.8 0.52 0 1 -0 +2.6 -0 -0.2 0.76 0.52 0 1 -0 +3 0 0.2 0.8 0.48 0 1 -0 +3 -0 -0.2 0.8 0.52 0 1 -0 +2.6 0 0.2 0.76 0.48 0 1 -0 +3 0 0.2 0.8 0.48 0 1 -0 +3.4 -0 -0.2 0.84 0.52 0 1 -0 +3 -0 -0.2 0.8 0.52 0 1 -0 +3.4 0 0.2 0.84 0.48 0 1 -0 +3.4 -0 -0.2 0.84 0.52 0 1 -0 +3 0 0.2 0.8 0.48 0 1 -0 +3.4 0 0.2 0.84 0.48 0 1 -0 +3.8 -0 -0.2 0.88 0.52 0 1 -0 +3.4 -0 -0.2 0.84 0.52 0 1 -0 +3.8 0 0.2 0.88 0.48 0 1 -0 +3.8 -0 -0.2 0.88 0.52 0 1 -0 +3.4 0 0.2 0.84 0.48 0 1 -0 +3.8 0 0.2 0.88 0.48 0 1 -0 +4.2 -0 -0.2 0.92 0.52 0 1 -0 +3.8 -0 -0.2 0.88 0.52 0 1 -0 +4.2 0 0.2 0.92 0.48 0 1 -0 +4.2 -0 -0.2 0.92 0.52 0 1 -0 +3.8 0 0.2 0.88 0.48 0 1 -0 +4.2 0 0.2 0.92 0.48 0 1 -0 +4.6 -0 -0.2 0.96 0.52 0 1 -0 +4.2 -0 -0.2 0.92 0.52 0 1 -0 +4.6 0 0.2 0.96 0.48 0 1 -0 +4.6 -0 -0.2 0.96 0.52 0 1 -0 +4.2 0 0.2 0.92 0.48 0 1 -0 +4.6 0 0.2 0.96 0.48 0 1 -0 +5 -0 -0.2 1 0.52 0 1 -0 +4.6 -0 -0.2 0.96 0.52 0 1 -0 +5 0 0.2 1 0.48 0 1 -0 +5 -0 -0.2 1 0.52 0 1 -0 +4.6 0 0.2 0.96 0.48 0 1 -0 +-5 0 0.6 0 0.44 0 1 -0 +-4.6 0 0.2 0.04 0.48 0 1 -0 +-5 0 0.2 0 0.48 0 1 -0 +-4.6 0 0.6 0.04 0.44 0 1 -0 +-4.6 0 0.2 0.04 0.48 0 1 -0 +-5 0 0.6 0 0.44 0 1 -0 +-4.6 0 0.6 0.04 0.44 0 1 -0 +-4.2 0 0.2 0.08 0.48 0 1 -0 +-4.6 0 0.2 0.04 0.48 0 1 -0 +-4.2 0 0.6 0.08 0.44 0 1 -0 +-4.2 0 0.2 0.08 0.48 0 1 -0 +-4.6 0 0.6 0.04 0.44 0 1 -0 +-4.2 0 0.6 0.08 0.44 0 1 -0 +-3.8 0 0.2 0.12 0.48 0 1 -0 +-4.2 0 0.2 0.08 0.48 0 1 -0 +-3.8 0 0.6 0.12 0.44 0 1 -0 +-3.8 0 0.2 0.12 0.48 0 1 -0 +-4.2 0 0.6 0.08 0.44 0 1 -0 +-3.8 0 0.6 0.12 0.44 0 1 -0 +-3.4 0 0.2 0.16 0.48 0 1 -0 +-3.8 0 0.2 0.12 0.48 0 1 -0 +-3.4 0 0.6 0.16 0.44 0 1 -0 +-3.4 0 0.2 0.16 0.48 0 1 -0 +-3.8 0 0.6 0.12 0.44 0 1 -0 +-3.4 0 0.6 0.16 0.44 0 1 -0 +-3 0 0.2 0.2 0.48 0 1 -0 +-3.4 0 0.2 0.16 0.48 0 1 -0 +-3 0 0.6 0.2 0.44 0 1 -0 +-3 0 0.2 0.2 0.48 0 1 -0 +-3.4 0 0.6 0.16 0.44 0 1 -0 +-3 0 0.6 0.2 0.44 0 1 -0 +-2.6 0 0.2 0.24 0.48 0 1 -0 +-3 0 0.2 0.2 0.48 0 1 -0 +-2.6 0 0.6 0.24 0.44 0 1 -0 +-2.6 0 0.2 0.24 0.48 0 1 -0 +-3 0 0.6 0.2 0.44 0 1 -0 +-2.6 0 0.6 0.24 0.44 0 1 -0 +-2.2 0 0.2 0.28 0.48 0 1 -0 +-2.6 0 0.2 0.24 0.48 0 1 -0 +-2.2 0 0.6 0.28 0.44 0 1 -0 +-2.2 0 0.2 0.28 0.48 0 1 -0 +-2.6 0 0.6 0.24 0.44 0 1 -0 +-2.2 0 0.6 0.28 0.44 0 1 -0 +-1.8 0 0.2 0.32 0.48 0 1 -0 +-2.2 0 0.2 0.28 0.48 0 1 -0 +-1.8 0 0.6 0.32 0.44 0 1 -0 +-1.8 0 0.2 0.32 0.48 0 1 -0 +-2.2 0 0.6 0.28 0.44 0 1 -0 +-1.8 0 0.6 0.32 0.44 0 1 -0 +-1.4 0 0.2 0.36 0.48 0 1 -0 +-1.8 0 0.2 0.32 0.48 0 1 -0 +-1.4 0 0.6 0.36 0.44 0 1 -0 +-1.4 0 0.2 0.36 0.48 0 1 -0 +-1.8 0 0.6 0.32 0.44 0 1 -0 +-1.4 0 0.6 0.36 0.44 0 1 -0 +-1 0 0.2 0.4 0.48 0 1 -0 +-1.4 0 0.2 0.36 0.48 0 1 -0 +-1 0 0.6 0.4 0.44 0 1 -0 +-1 0 0.2 0.4 0.48 0 1 -0 +-1.4 0 0.6 0.36 0.44 0 1 -0 +-1 0 0.6 0.4 0.44 0 1 -0 +-0.6 0 0.2 0.44 0.48 0 1 -0 +-1 0 0.2 0.4 0.48 0 1 -0 +-0.6 0 0.6 0.44 0.44 0 1 -0 +-0.6 0 0.2 0.44 0.48 0 1 -0 +-1 0 0.6 0.4 0.44 0 1 -0 +-0.6 0 0.6 0.44 0.44 0 1 -0 +-0.2 0 0.2 0.48 0.48 0 1 -0 +-0.6 0 0.2 0.44 0.48 0 1 -0 +-0.2 0 0.6 0.48 0.44 0 1 -0 +-0.2 0 0.2 0.48 0.48 0 1 -0 +-0.6 0 0.6 0.44 0.44 0 1 -0 +-0.2 0 0.6 0.48 0.44 0 1 -0 +0.2 0 0.2 0.52 0.48 0 1 -0 +-0.2 0 0.2 0.48 0.48 0 1 -0 +0.2 0 0.6 0.52 0.44 0 1 -0 +0.2 0 0.2 0.52 0.48 0 1 -0 +-0.2 0 0.6 0.48 0.44 0 1 -0 +0.2 0 0.6 0.52 0.44 0 1 -0 +0.6 0 0.2 0.56 0.48 0 1 -0 +0.2 0 0.2 0.52 0.48 0 1 -0 +0.6 0 0.6 0.56 0.44 0 1 -0 +0.6 0 0.2 0.56 0.48 0 1 -0 +0.2 0 0.6 0.52 0.44 0 1 -0 +0.6 0 0.6 0.56 0.44 0 1 -0 +1 0 0.2 0.6 0.48 0 1 -0 +0.6 0 0.2 0.56 0.48 0 1 -0 +1 0 0.6 0.6 0.44 0 1 -0 +1 0 0.2 0.6 0.48 0 1 -0 +0.6 0 0.6 0.56 0.44 0 1 -0 +1 0 0.6 0.6 0.44 0 1 -0 +1.4 0 0.2 0.64 0.48 0 1 -0 +1 0 0.2 0.6 0.48 0 1 -0 +1.4 0 0.6 0.64 0.44 0 1 -0 +1.4 0 0.2 0.64 0.48 0 1 -0 +1 0 0.6 0.6 0.44 0 1 -0 +1.4 0 0.6 0.64 0.44 0 1 -0 +1.8 0 0.2 0.68 0.48 0 1 -0 +1.4 0 0.2 0.64 0.48 0 1 -0 +1.8 0 0.6 0.68 0.44 0 1 -0 +1.8 0 0.2 0.68 0.48 0 1 -0 +1.4 0 0.6 0.64 0.44 0 1 -0 +1.8 0 0.6 0.68 0.44 0 1 -0 +2.2 0 0.2 0.72 0.48 0 1 -0 +1.8 0 0.2 0.68 0.48 0 1 -0 +2.2 0 0.6 0.72 0.44 0 1 -0 +2.2 0 0.2 0.72 0.48 0 1 -0 +1.8 0 0.6 0.68 0.44 0 1 -0 +2.2 0 0.6 0.72 0.44 0 1 -0 +2.6 0 0.2 0.76 0.48 0 1 -0 +2.2 0 0.2 0.72 0.48 0 1 -0 +2.6 0 0.6 0.76 0.44 0 1 -0 +2.6 0 0.2 0.76 0.48 0 1 -0 +2.2 0 0.6 0.72 0.44 0 1 -0 +2.6 0 0.6 0.76 0.44 0 1 -0 +3 0 0.2 0.8 0.48 0 1 -0 +2.6 0 0.2 0.76 0.48 0 1 -0 +3 0 0.6 0.8 0.44 0 1 -0 +3 0 0.2 0.8 0.48 0 1 -0 +2.6 0 0.6 0.76 0.44 0 1 -0 +3 0 0.6 0.8 0.44 0 1 -0 +3.4 0 0.2 0.84 0.48 0 1 -0 +3 0 0.2 0.8 0.48 0 1 -0 +3.4 0 0.6 0.84 0.44 0 1 -0 +3.4 0 0.2 0.84 0.48 0 1 -0 +3 0 0.6 0.8 0.44 0 1 -0 +3.4 0 0.6 0.84 0.44 0 1 -0 +3.8 0 0.2 0.88 0.48 0 1 -0 +3.4 0 0.2 0.84 0.48 0 1 -0 +3.8 0 0.6 0.88 0.44 0 1 -0 +3.8 0 0.2 0.88 0.48 0 1 -0 +3.4 0 0.6 0.84 0.44 0 1 -0 +3.8 0 0.6 0.88 0.44 0 1 -0 +4.2 0 0.2 0.92 0.48 0 1 -0 +3.8 0 0.2 0.88 0.48 0 1 -0 +4.2 0 0.6 0.92 0.44 0 1 -0 +4.2 0 0.2 0.92 0.48 0 1 -0 +3.8 0 0.6 0.88 0.44 0 1 -0 +4.2 0 0.6 0.92 0.44 0 1 -0 +4.6 0 0.2 0.96 0.48 0 1 -0 +4.2 0 0.2 0.92 0.48 0 1 -0 +4.6 0 0.6 0.96 0.44 0 1 -0 +4.6 0 0.2 0.96 0.48 0 1 -0 +4.2 0 0.6 0.92 0.44 0 1 -0 +4.6 0 0.6 0.96 0.44 0 1 -0 +5 0 0.2 1 0.48 0 1 -0 +4.6 0 0.2 0.96 0.48 0 1 -0 +5 0 0.6 1 0.44 0 1 -0 +5 0 0.2 1 0.48 0 1 -0 +4.6 0 0.6 0.96 0.44 0 1 -0 +-5 0 1 0 0.4 0 1 -0 +-4.6 0 0.6 0.04 0.44 0 1 -0 +-5 0 0.6 0 0.44 0 1 -0 +-4.6 0 1 0.04 0.4 0 1 -0 +-4.6 0 0.6 0.04 0.44 0 1 -0 +-5 0 1 0 0.4 0 1 -0 +-4.6 0 1 0.04 0.4 0 1 -0 +-4.2 0 0.6 0.08 0.44 0 1 -0 +-4.6 0 0.6 0.04 0.44 0 1 -0 +-4.2 0 1 0.08 0.4 0 1 -0 +-4.2 0 0.6 0.08 0.44 0 1 -0 +-4.6 0 1 0.04 0.4 0 1 -0 +-4.2 0 1 0.08 0.4 0 1 -0 +-3.8 0 0.6 0.12 0.44 0 1 -0 +-4.2 0 0.6 0.08 0.44 0 1 -0 +-3.8 0 1 0.12 0.4 0 1 -0 +-3.8 0 0.6 0.12 0.44 0 1 -0 +-4.2 0 1 0.08 0.4 0 1 -0 +-3.8 0 1 0.12 0.4 0 1 -0 +-3.4 0 0.6 0.16 0.44 0 1 -0 +-3.8 0 0.6 0.12 0.44 0 1 -0 +-3.4 0 1 0.16 0.4 0 1 -0 +-3.4 0 0.6 0.16 0.44 0 1 -0 +-3.8 0 1 0.12 0.4 0 1 -0 +-3.4 0 1 0.16 0.4 0 1 -0 +-3 0 0.6 0.2 0.44 0 1 -0 +-3.4 0 0.6 0.16 0.44 0 1 -0 +-3 0 1 0.2 0.4 0 1 -0 +-3 0 0.6 0.2 0.44 0 1 -0 +-3.4 0 1 0.16 0.4 0 1 -0 +-3 0 1 0.2 0.4 0 1 -0 +-2.6 0 0.6 0.24 0.44 0 1 -0 +-3 0 0.6 0.2 0.44 0 1 -0 +-2.6 0 1 0.24 0.4 0 1 -0 +-2.6 0 0.6 0.24 0.44 0 1 -0 +-3 0 1 0.2 0.4 0 1 -0 +-2.6 0 1 0.24 0.4 0 1 -0 +-2.2 0 0.6 0.28 0.44 0 1 -0 +-2.6 0 0.6 0.24 0.44 0 1 -0 +-2.2 0 1 0.28 0.4 0 1 -0 +-2.2 0 0.6 0.28 0.44 0 1 -0 +-2.6 0 1 0.24 0.4 0 1 -0 +-2.2 0 1 0.28 0.4 0 1 -0 +-1.8 0 0.6 0.32 0.44 0 1 -0 +-2.2 0 0.6 0.28 0.44 0 1 -0 +-1.8 0 1 0.32 0.4 0 1 -0 +-1.8 0 0.6 0.32 0.44 0 1 -0 +-2.2 0 1 0.28 0.4 0 1 -0 +-1.8 0 1 0.32 0.4 0 1 -0 +-1.4 0 0.6 0.36 0.44 0 1 -0 +-1.8 0 0.6 0.32 0.44 0 1 -0 +-1.4 0 1 0.36 0.4 0 1 -0 +-1.4 0 0.6 0.36 0.44 0 1 -0 +-1.8 0 1 0.32 0.4 0 1 -0 +-1.4 0 1 0.36 0.4 0 1 -0 +-1 0 0.6 0.4 0.44 0 1 -0 +-1.4 0 0.6 0.36 0.44 0 1 -0 +-1 0 1 0.4 0.4 0 1 -0 +-1 0 0.6 0.4 0.44 0 1 -0 +-1.4 0 1 0.36 0.4 0 1 -0 +-1 0 1 0.4 0.4 0 1 -0 +-0.6 0 0.6 0.44 0.44 0 1 -0 +-1 0 0.6 0.4 0.44 0 1 -0 +-0.6 0 1 0.44 0.4 0 1 -0 +-0.6 0 0.6 0.44 0.44 0 1 -0 +-1 0 1 0.4 0.4 0 1 -0 +-0.6 0 1 0.44 0.4 0 1 -0 +-0.2 0 0.6 0.48 0.44 0 1 -0 +-0.6 0 0.6 0.44 0.44 0 1 -0 +-0.2 0 1 0.48 0.4 0 1 -0 +-0.2 0 0.6 0.48 0.44 0 1 -0 +-0.6 0 1 0.44 0.4 0 1 -0 +-0.2 0 1 0.48 0.4 0 1 -0 +0.2 0 0.6 0.52 0.44 0 1 -0 +-0.2 0 0.6 0.48 0.44 0 1 -0 +0.2 0 1 0.52 0.4 0 1 -0 +0.2 0 0.6 0.52 0.44 0 1 -0 +-0.2 0 1 0.48 0.4 0 1 -0 +0.2 0 1 0.52 0.4 0 1 -0 +0.6 0 0.6 0.56 0.44 0 1 -0 +0.2 0 0.6 0.52 0.44 0 1 -0 +0.6 0 1 0.56 0.4 0 1 -0 +0.6 0 0.6 0.56 0.44 0 1 -0 +0.2 0 1 0.52 0.4 0 1 -0 +0.6 0 1 0.56 0.4 0 1 -0 +1 0 0.6 0.6 0.44 0 1 -0 +0.6 0 0.6 0.56 0.44 0 1 -0 +1 0 1 0.6 0.4 0 1 -0 +1 0 0.6 0.6 0.44 0 1 -0 +0.6 0 1 0.56 0.4 0 1 -0 +1 0 1 0.6 0.4 0 1 -0 +1.4 0 0.6 0.64 0.44 0 1 -0 +1 0 0.6 0.6 0.44 0 1 -0 +1.4 0 1 0.64 0.4 0 1 -0 +1.4 0 0.6 0.64 0.44 0 1 -0 +1 0 1 0.6 0.4 0 1 -0 +1.4 0 1 0.64 0.4 0 1 -0 +1.8 0 0.6 0.68 0.44 0 1 -0 +1.4 0 0.6 0.64 0.44 0 1 -0 +1.8 0 1 0.68 0.4 0 1 -0 +1.8 0 0.6 0.68 0.44 0 1 -0 +1.4 0 1 0.64 0.4 0 1 -0 +1.8 0 1 0.68 0.4 0 1 -0 +2.2 0 0.6 0.72 0.44 0 1 -0 +1.8 0 0.6 0.68 0.44 0 1 -0 +2.2 0 1 0.72 0.4 0 1 -0 +2.2 0 0.6 0.72 0.44 0 1 -0 +1.8 0 1 0.68 0.4 0 1 -0 +2.2 0 1 0.72 0.4 0 1 -0 +2.6 0 0.6 0.76 0.44 0 1 -0 +2.2 0 0.6 0.72 0.44 0 1 -0 +2.6 0 1 0.76 0.4 0 1 -0 +2.6 0 0.6 0.76 0.44 0 1 -0 +2.2 0 1 0.72 0.4 0 1 -0 +2.6 0 1 0.76 0.4 0 1 -0 +3 0 0.6 0.8 0.44 0 1 -0 +2.6 0 0.6 0.76 0.44 0 1 -0 +3 0 1 0.8 0.4 0 1 -0 +3 0 0.6 0.8 0.44 0 1 -0 +2.6 0 1 0.76 0.4 0 1 -0 +3 0 1 0.8 0.4 0 1 -0 +3.4 0 0.6 0.84 0.44 0 1 -0 +3 0 0.6 0.8 0.44 0 1 -0 +3.4 0 1 0.84 0.4 0 1 -0 +3.4 0 0.6 0.84 0.44 0 1 -0 +3 0 1 0.8 0.4 0 1 -0 +3.4 0 1 0.84 0.4 0 1 -0 +3.8 0 0.6 0.88 0.44 0 1 -0 +3.4 0 0.6 0.84 0.44 0 1 -0 +3.8 0 1 0.88 0.4 0 1 -0 +3.8 0 0.6 0.88 0.44 0 1 -0 +3.4 0 1 0.84 0.4 0 1 -0 +3.8 0 1 0.88 0.4 0 1 -0 +4.2 0 0.6 0.92 0.44 0 1 -0 +3.8 0 0.6 0.88 0.44 0 1 -0 +4.2 0 1 0.92 0.4 0 1 -0 +4.2 0 0.6 0.92 0.44 0 1 -0 +3.8 0 1 0.88 0.4 0 1 -0 +4.2 0 1 0.92 0.4 0 1 -0 +4.6 0 0.6 0.96 0.44 0 1 -0 +4.2 0 0.6 0.92 0.44 0 1 -0 +4.6 0 1 0.96 0.4 0 1 -0 +4.6 0 0.6 0.96 0.44 0 1 -0 +4.2 0 1 0.92 0.4 0 1 -0 +4.6 0 1 0.96 0.4 0 1 -0 +5 0 0.6 1 0.44 0 1 -0 +4.6 0 0.6 0.96 0.44 0 1 -0 +5 0 1 1 0.4 0 1 -0 +5 0 0.6 1 0.44 0 1 -0 +4.6 0 1 0.96 0.4 0 1 -0 +-5 0 1.4 0 0.36 0 1 -0 +-4.6 0 1 0.04 0.4 0 1 -0 +-5 0 1 0 0.4 0 1 -0 +-4.6 0 1.4 0.04 0.36 0 1 -0 +-4.6 0 1 0.04 0.4 0 1 -0 +-5 0 1.4 0 0.36 0 1 -0 +-4.6 0 1.4 0.04 0.36 0 1 -0 +-4.2 0 1 0.08 0.4 0 1 -0 +-4.6 0 1 0.04 0.4 0 1 -0 +-4.2 0 1.4 0.08 0.36 0 1 -0 +-4.2 0 1 0.08 0.4 0 1 -0 +-4.6 0 1.4 0.04 0.36 0 1 -0 +-4.2 0 1.4 0.08 0.36 0 1 -0 +-3.8 0 1 0.12 0.4 0 1 -0 +-4.2 0 1 0.08 0.4 0 1 -0 +-3.8 0 1.4 0.12 0.36 0 1 -0 +-3.8 0 1 0.12 0.4 0 1 -0 +-4.2 0 1.4 0.08 0.36 0 1 -0 +-3.8 0 1.4 0.12 0.36 0 1 -0 +-3.4 0 1 0.16 0.4 0 1 -0 +-3.8 0 1 0.12 0.4 0 1 -0 +-3.4 0 1.4 0.16 0.36 0 1 -0 +-3.4 0 1 0.16 0.4 0 1 -0 +-3.8 0 1.4 0.12 0.36 0 1 -0 +-3.4 0 1.4 0.16 0.36 0 1 -0 +-3 0 1 0.2 0.4 0 1 -0 +-3.4 0 1 0.16 0.4 0 1 -0 +-3 0 1.4 0.2 0.36 0 1 -0 +-3 0 1 0.2 0.4 0 1 -0 +-3.4 0 1.4 0.16 0.36 0 1 -0 +-3 0 1.4 0.2 0.36 0 1 -0 +-2.6 0 1 0.24 0.4 0 1 -0 +-3 0 1 0.2 0.4 0 1 -0 +-2.6 0 1.4 0.24 0.36 0 1 -0 +-2.6 0 1 0.24 0.4 0 1 -0 +-3 0 1.4 0.2 0.36 0 1 -0 +-2.6 0 1.4 0.24 0.36 0 1 -0 +-2.2 0 1 0.28 0.4 0 1 -0 +-2.6 0 1 0.24 0.4 0 1 -0 +-2.2 0 1.4 0.28 0.36 0 1 -0 +-2.2 0 1 0.28 0.4 0 1 -0 +-2.6 0 1.4 0.24 0.36 0 1 -0 +-2.2 0 1.4 0.28 0.36 0 1 -0 +-1.8 0 1 0.32 0.4 0 1 -0 +-2.2 0 1 0.28 0.4 0 1 -0 +-1.8 0 1.4 0.32 0.36 0 1 -0 +-1.8 0 1 0.32 0.4 0 1 -0 +-2.2 0 1.4 0.28 0.36 0 1 -0 +-1.8 0 1.4 0.32 0.36 0 1 -0 +-1.4 0 1 0.36 0.4 0 1 -0 +-1.8 0 1 0.32 0.4 0 1 -0 +-1.4 0 1.4 0.36 0.36 0 1 -0 +-1.4 0 1 0.36 0.4 0 1 -0 +-1.8 0 1.4 0.32 0.36 0 1 -0 +-1.4 0 1.4 0.36 0.36 0 1 -0 +-1 0 1 0.4 0.4 0 1 -0 +-1.4 0 1 0.36 0.4 0 1 -0 +-1 0 1.4 0.4 0.36 0 1 -0 +-1 0 1 0.4 0.4 0 1 -0 +-1.4 0 1.4 0.36 0.36 0 1 -0 +-1 0 1.4 0.4 0.36 0 1 -0 +-0.6 0 1 0.44 0.4 0 1 -0 +-1 0 1 0.4 0.4 0 1 -0 +-0.6 0 1.4 0.44 0.36 0 1 -0 +-0.6 0 1 0.44 0.4 0 1 -0 +-1 0 1.4 0.4 0.36 0 1 -0 +-0.6 0 1.4 0.44 0.36 0 1 -0 +-0.2 0 1 0.48 0.4 0 1 -0 +-0.6 0 1 0.44 0.4 0 1 -0 +-0.2 0 1.4 0.48 0.36 0 1 -0 +-0.2 0 1 0.48 0.4 0 1 -0 +-0.6 0 1.4 0.44 0.36 0 1 -0 +-0.2 0 1.4 0.48 0.36 0 1 -0 +0.2 0 1 0.52 0.4 0 1 -0 +-0.2 0 1 0.48 0.4 0 1 -0 +0.2 0 1.4 0.52 0.36 0 1 -0 +0.2 0 1 0.52 0.4 0 1 -0 +-0.2 0 1.4 0.48 0.36 0 1 -0 +0.2 0 1.4 0.52 0.36 0 1 -0 +0.6 0 1 0.56 0.4 0 1 -0 +0.2 0 1 0.52 0.4 0 1 -0 +0.6 0 1.4 0.56 0.36 0 1 -0 +0.6 0 1 0.56 0.4 0 1 -0 +0.2 0 1.4 0.52 0.36 0 1 -0 +0.6 0 1.4 0.56 0.36 0 1 -0 +1 0 1 0.6 0.4 0 1 -0 +0.6 0 1 0.56 0.4 0 1 -0 +1 0 1.4 0.6 0.36 0 1 -0 +1 0 1 0.6 0.4 0 1 -0 +0.6 0 1.4 0.56 0.36 0 1 -0 +1 0 1.4 0.6 0.36 0 1 -0 +1.4 0 1 0.64 0.4 0 1 -0 +1 0 1 0.6 0.4 0 1 -0 +1.4 0 1.4 0.64 0.36 0 1 -0 +1.4 0 1 0.64 0.4 0 1 -0 +1 0 1.4 0.6 0.36 0 1 -0 +1.4 0 1.4 0.64 0.36 0 1 -0 +1.8 0 1 0.68 0.4 0 1 -0 +1.4 0 1 0.64 0.4 0 1 -0 +1.8 0 1.4 0.68 0.36 0 1 -0 +1.8 0 1 0.68 0.4 0 1 -0 +1.4 0 1.4 0.64 0.36 0 1 -0 +1.8 0 1.4 0.68 0.36 0 1 -0 +2.2 0 1 0.72 0.4 0 1 -0 +1.8 0 1 0.68 0.4 0 1 -0 +2.2 0 1.4 0.72 0.36 0 1 -0 +2.2 0 1 0.72 0.4 0 1 -0 +1.8 0 1.4 0.68 0.36 0 1 -0 +2.2 0 1.4 0.72 0.36 0 1 -0 +2.6 0 1 0.76 0.4 0 1 -0 +2.2 0 1 0.72 0.4 0 1 -0 +2.6 0 1.4 0.76 0.36 0 1 -0 +2.6 0 1 0.76 0.4 0 1 -0 +2.2 0 1.4 0.72 0.36 0 1 -0 +2.6 0 1.4 0.76 0.36 0 1 -0 +3 0 1 0.8 0.4 0 1 -0 +2.6 0 1 0.76 0.4 0 1 -0 +3 0 1.4 0.8 0.36 0 1 -0 +3 0 1 0.8 0.4 0 1 -0 +2.6 0 1.4 0.76 0.36 0 1 -0 +3 0 1.4 0.8 0.36 0 1 -0 +3.4 0 1 0.84 0.4 0 1 -0 +3 0 1 0.8 0.4 0 1 -0 +3.4 0 1.4 0.84 0.36 0 1 -0 +3.4 0 1 0.84 0.4 0 1 -0 +3 0 1.4 0.8 0.36 0 1 -0 +3.4 0 1.4 0.84 0.36 0 1 -0 +3.8 0 1 0.88 0.4 0 1 -0 +3.4 0 1 0.84 0.4 0 1 -0 +3.8 0 1.4 0.88 0.36 0 1 -0 +3.8 0 1 0.88 0.4 0 1 -0 +3.4 0 1.4 0.84 0.36 0 1 -0 +3.8 0 1.4 0.88 0.36 0 1 -0 +4.2 0 1 0.92 0.4 0 1 -0 +3.8 0 1 0.88 0.4 0 1 -0 +4.2 0 1.4 0.92 0.36 0 1 -0 +4.2 0 1 0.92 0.4 0 1 -0 +3.8 0 1.4 0.88 0.36 0 1 -0 +4.2 0 1.4 0.92 0.36 0 1 -0 +4.6 0 1 0.96 0.4 0 1 -0 +4.2 0 1 0.92 0.4 0 1 -0 +4.6 0 1.4 0.96 0.36 0 1 -0 +4.6 0 1 0.96 0.4 0 1 -0 +4.2 0 1.4 0.92 0.36 0 1 -0 +4.6 0 1.4 0.96 0.36 0 1 -0 +5 0 1 1 0.4 0 1 -0 +4.6 0 1 0.96 0.4 0 1 -0 +5 0 1.4 1 0.36 0 1 -0 +5 0 1 1 0.4 0 1 -0 +4.6 0 1.4 0.96 0.36 0 1 -0 +-5 0 1.8 0 0.32 0 1 -0 +-4.6 0 1.4 0.04 0.36 0 1 -0 +-5 0 1.4 0 0.36 0 1 -0 +-4.6 0 1.8 0.04 0.32 0 1 -0 +-4.6 0 1.4 0.04 0.36 0 1 -0 +-5 0 1.8 0 0.32 0 1 -0 +-4.6 0 1.8 0.04 0.32 0 1 -0 +-4.2 0 1.4 0.08 0.36 0 1 -0 +-4.6 0 1.4 0.04 0.36 0 1 -0 +-4.2 0 1.8 0.08 0.32 0 1 -0 +-4.2 0 1.4 0.08 0.36 0 1 -0 +-4.6 0 1.8 0.04 0.32 0 1 -0 +-4.2 0 1.8 0.08 0.32 0 1 -0 +-3.8 0 1.4 0.12 0.36 0 1 -0 +-4.2 0 1.4 0.08 0.36 0 1 -0 +-3.8 0 1.8 0.12 0.32 0 1 -0 +-3.8 0 1.4 0.12 0.36 0 1 -0 +-4.2 0 1.8 0.08 0.32 0 1 -0 +-3.8 0 1.8 0.12 0.32 0 1 -0 +-3.4 0 1.4 0.16 0.36 0 1 -0 +-3.8 0 1.4 0.12 0.36 0 1 -0 +-3.4 0 1.8 0.16 0.32 0 1 -0 +-3.4 0 1.4 0.16 0.36 0 1 -0 +-3.8 0 1.8 0.12 0.32 0 1 -0 +-3.4 0 1.8 0.16 0.32 0 1 -0 +-3 0 1.4 0.2 0.36 0 1 -0 +-3.4 0 1.4 0.16 0.36 0 1 -0 +-3 0 1.8 0.2 0.32 0 1 -0 +-3 0 1.4 0.2 0.36 0 1 -0 +-3.4 0 1.8 0.16 0.32 0 1 -0 +-3 0 1.8 0.2 0.32 0 1 -0 +-2.6 0 1.4 0.24 0.36 0 1 -0 +-3 0 1.4 0.2 0.36 0 1 -0 +-2.6 0 1.8 0.24 0.32 0 1 -0 +-2.6 0 1.4 0.24 0.36 0 1 -0 +-3 0 1.8 0.2 0.32 0 1 -0 +-2.6 0 1.8 0.24 0.32 0 1 -0 +-2.2 0 1.4 0.28 0.36 0 1 -0 +-2.6 0 1.4 0.24 0.36 0 1 -0 +-2.2 0 1.8 0.28 0.32 0 1 -0 +-2.2 0 1.4 0.28 0.36 0 1 -0 +-2.6 0 1.8 0.24 0.32 0 1 -0 +-2.2 0 1.8 0.28 0.32 0 1 -0 +-1.8 0 1.4 0.32 0.36 0 1 -0 +-2.2 0 1.4 0.28 0.36 0 1 -0 +-1.8 0 1.8 0.32 0.32 0 1 -0 +-1.8 0 1.4 0.32 0.36 0 1 -0 +-2.2 0 1.8 0.28 0.32 0 1 -0 +-1.8 0 1.8 0.32 0.32 0 1 -0 +-1.4 0 1.4 0.36 0.36 0 1 -0 +-1.8 0 1.4 0.32 0.36 0 1 -0 +-1.4 0 1.8 0.36 0.32 0 1 -0 +-1.4 0 1.4 0.36 0.36 0 1 -0 +-1.8 0 1.8 0.32 0.32 0 1 -0 +-1.4 0 1.8 0.36 0.32 0 1 -0 +-1 0 1.4 0.4 0.36 0 1 -0 +-1.4 0 1.4 0.36 0.36 0 1 -0 +-1 0 1.8 0.4 0.32 0 1 -0 +-1 0 1.4 0.4 0.36 0 1 -0 +-1.4 0 1.8 0.36 0.32 0 1 -0 +-1 0 1.8 0.4 0.32 0 1 -0 +-0.6 0 1.4 0.44 0.36 0 1 -0 +-1 0 1.4 0.4 0.36 0 1 -0 +-0.6 0 1.8 0.44 0.32 0 1 -0 +-0.6 0 1.4 0.44 0.36 0 1 -0 +-1 0 1.8 0.4 0.32 0 1 -0 +-0.6 0 1.8 0.44 0.32 0 1 -0 +-0.2 0 1.4 0.48 0.36 0 1 -0 +-0.6 0 1.4 0.44 0.36 0 1 -0 +-0.2 0 1.8 0.48 0.32 0 1 -0 +-0.2 0 1.4 0.48 0.36 0 1 -0 +-0.6 0 1.8 0.44 0.32 0 1 -0 +-0.2 0 1.8 0.48 0.32 0 1 -0 +0.2 0 1.4 0.52 0.36 0 1 -0 +-0.2 0 1.4 0.48 0.36 0 1 -0 +0.2 0 1.8 0.52 0.32 0 1 -0 +0.2 0 1.4 0.52 0.36 0 1 -0 +-0.2 0 1.8 0.48 0.32 0 1 -0 +0.2 0 1.8 0.52 0.32 0 1 -0 +0.6 0 1.4 0.56 0.36 0 1 -0 +0.2 0 1.4 0.52 0.36 0 1 -0 +0.6 0 1.8 0.56 0.32 0 1 -0 +0.6 0 1.4 0.56 0.36 0 1 -0 +0.2 0 1.8 0.52 0.32 0 1 -0 +0.6 0 1.8 0.56 0.32 0 1 -0 +1 0 1.4 0.6 0.36 0 1 -0 +0.6 0 1.4 0.56 0.36 0 1 -0 +1 0 1.8 0.6 0.32 0 1 -0 +1 0 1.4 0.6 0.36 0 1 -0 +0.6 0 1.8 0.56 0.32 0 1 -0 +1 0 1.8 0.6 0.32 0 1 -0 +1.4 0 1.4 0.64 0.36 0 1 -0 +1 0 1.4 0.6 0.36 0 1 -0 +1.4 0 1.8 0.64 0.32 0 1 -0 +1.4 0 1.4 0.64 0.36 0 1 -0 +1 0 1.8 0.6 0.32 0 1 -0 +1.4 0 1.8 0.64 0.32 0 1 -0 +1.8 0 1.4 0.68 0.36 0 1 -0 +1.4 0 1.4 0.64 0.36 0 1 -0 +1.8 0 1.8 0.68 0.32 0 1 -0 +1.8 0 1.4 0.68 0.36 0 1 -0 +1.4 0 1.8 0.64 0.32 0 1 -0 +1.8 0 1.8 0.68 0.32 0 1 -0 +2.2 0 1.4 0.72 0.36 0 1 -0 +1.8 0 1.4 0.68 0.36 0 1 -0 +2.2 0 1.8 0.72 0.32 0 1 -0 +2.2 0 1.4 0.72 0.36 0 1 -0 +1.8 0 1.8 0.68 0.32 0 1 -0 +2.2 0 1.8 0.72 0.32 0 1 -0 +2.6 0 1.4 0.76 0.36 0 1 -0 +2.2 0 1.4 0.72 0.36 0 1 -0 +2.6 0 1.8 0.76 0.32 0 1 -0 +2.6 0 1.4 0.76 0.36 0 1 -0 +2.2 0 1.8 0.72 0.32 0 1 -0 +2.6 0 1.8 0.76 0.32 0 1 -0 +3 0 1.4 0.8 0.36 0 1 -0 +2.6 0 1.4 0.76 0.36 0 1 -0 +3 0 1.8 0.8 0.32 0 1 -0 +3 0 1.4 0.8 0.36 0 1 -0 +2.6 0 1.8 0.76 0.32 0 1 -0 +3 0 1.8 0.8 0.32 0 1 -0 +3.4 0 1.4 0.84 0.36 0 1 -0 +3 0 1.4 0.8 0.36 0 1 -0 +3.4 0 1.8 0.84 0.32 0 1 -0 +3.4 0 1.4 0.84 0.36 0 1 -0 +3 0 1.8 0.8 0.32 0 1 -0 +3.4 0 1.8 0.84 0.32 0 1 -0 +3.8 0 1.4 0.88 0.36 0 1 -0 +3.4 0 1.4 0.84 0.36 0 1 -0 +3.8 0 1.8 0.88 0.32 0 1 -0 +3.8 0 1.4 0.88 0.36 0 1 -0 +3.4 0 1.8 0.84 0.32 0 1 -0 +3.8 0 1.8 0.88 0.32 0 1 -0 +4.2 0 1.4 0.92 0.36 0 1 -0 +3.8 0 1.4 0.88 0.36 0 1 -0 +4.2 0 1.8 0.92 0.32 0 1 -0 +4.2 0 1.4 0.92 0.36 0 1 -0 +3.8 0 1.8 0.88 0.32 0 1 -0 +4.2 0 1.8 0.92 0.32 0 1 -0 +4.6 0 1.4 0.96 0.36 0 1 -0 +4.2 0 1.4 0.92 0.36 0 1 -0 +4.6 0 1.8 0.96 0.32 0 1 -0 +4.6 0 1.4 0.96 0.36 0 1 -0 +4.2 0 1.8 0.92 0.32 0 1 -0 +4.6 0 1.8 0.96 0.32 0 1 -0 +5 0 1.4 1 0.36 0 1 -0 +4.6 0 1.4 0.96 0.36 0 1 -0 +5 0 1.8 1 0.32 0 1 -0 +5 0 1.4 1 0.36 0 1 -0 +4.6 0 1.8 0.96 0.32 0 1 -0 +-5 0 2.2 0 0.28 0 1 -0 +-4.6 0 1.8 0.04 0.32 0 1 -0 +-5 0 1.8 0 0.32 0 1 -0 +-4.6 0 2.2 0.04 0.28 0 1 -0 +-4.6 0 1.8 0.04 0.32 0 1 -0 +-5 0 2.2 0 0.28 0 1 -0 +-4.6 0 2.2 0.04 0.28 0 1 -0 +-4.2 0 1.8 0.08 0.32 0 1 -0 +-4.6 0 1.8 0.04 0.32 0 1 -0 +-4.2 0 2.2 0.08 0.28 0 1 -0 +-4.2 0 1.8 0.08 0.32 0 1 -0 +-4.6 0 2.2 0.04 0.28 0 1 -0 +-4.2 0 2.2 0.08 0.28 0 1 -0 +-3.8 0 1.8 0.12 0.32 0 1 -0 +-4.2 0 1.8 0.08 0.32 0 1 -0 +-3.8 0 2.2 0.12 0.28 0 1 -0 +-3.8 0 1.8 0.12 0.32 0 1 -0 +-4.2 0 2.2 0.08 0.28 0 1 -0 +-3.8 0 2.2 0.12 0.28 0 1 -0 +-3.4 0 1.8 0.16 0.32 0 1 -0 +-3.8 0 1.8 0.12 0.32 0 1 -0 +-3.4 0 2.2 0.16 0.28 0 1 -0 +-3.4 0 1.8 0.16 0.32 0 1 -0 +-3.8 0 2.2 0.12 0.28 0 1 -0 +-3.4 0 2.2 0.16 0.28 0 1 -0 +-3 0 1.8 0.2 0.32 0 1 -0 +-3.4 0 1.8 0.16 0.32 0 1 -0 +-3 0 2.2 0.2 0.28 0 1 -0 +-3 0 1.8 0.2 0.32 0 1 -0 +-3.4 0 2.2 0.16 0.28 0 1 -0 +-3 0 2.2 0.2 0.28 0 1 -0 +-2.6 0 1.8 0.24 0.32 0 1 -0 +-3 0 1.8 0.2 0.32 0 1 -0 +-2.6 0 2.2 0.24 0.28 0 1 -0 +-2.6 0 1.8 0.24 0.32 0 1 -0 +-3 0 2.2 0.2 0.28 0 1 -0 +-2.6 0 2.2 0.24 0.28 0 1 -0 +-2.2 0 1.8 0.28 0.32 0 1 -0 +-2.6 0 1.8 0.24 0.32 0 1 -0 +-2.2 0 2.2 0.28 0.28 0 1 -0 +-2.2 0 1.8 0.28 0.32 0 1 -0 +-2.6 0 2.2 0.24 0.28 0 1 -0 +-2.2 0 2.2 0.28 0.28 0 1 -0 +-1.8 0 1.8 0.32 0.32 0 1 -0 +-2.2 0 1.8 0.28 0.32 0 1 -0 +-1.8 0 2.2 0.32 0.28 0 1 -0 +-1.8 0 1.8 0.32 0.32 0 1 -0 +-2.2 0 2.2 0.28 0.28 0 1 -0 +-1.8 0 2.2 0.32 0.28 0 1 -0 +-1.4 0 1.8 0.36 0.32 0 1 -0 +-1.8 0 1.8 0.32 0.32 0 1 -0 +-1.4 0 2.2 0.36 0.28 0 1 -0 +-1.4 0 1.8 0.36 0.32 0 1 -0 +-1.8 0 2.2 0.32 0.28 0 1 -0 +-1.4 0 2.2 0.36 0.28 0 1 -0 +-1 0 1.8 0.4 0.32 0 1 -0 +-1.4 0 1.8 0.36 0.32 0 1 -0 +-1 0 2.2 0.4 0.28 0 1 -0 +-1 0 1.8 0.4 0.32 0 1 -0 +-1.4 0 2.2 0.36 0.28 0 1 -0 +-1 0 2.2 0.4 0.28 0 1 -0 +-0.6 0 1.8 0.44 0.32 0 1 -0 +-1 0 1.8 0.4 0.32 0 1 -0 +-0.6 0 2.2 0.44 0.28 0 1 -0 +-0.6 0 1.8 0.44 0.32 0 1 -0 +-1 0 2.2 0.4 0.28 0 1 -0 +-0.6 0 2.2 0.44 0.28 0 1 -0 +-0.2 0 1.8 0.48 0.32 0 1 -0 +-0.6 0 1.8 0.44 0.32 0 1 -0 +-0.2 0 2.2 0.48 0.28 0 1 -0 +-0.2 0 1.8 0.48 0.32 0 1 -0 +-0.6 0 2.2 0.44 0.28 0 1 -0 +-0.2 0 2.2 0.48 0.28 0 1 -0 +0.2 0 1.8 0.52 0.32 0 1 -0 +-0.2 0 1.8 0.48 0.32 0 1 -0 +0.2 0 2.2 0.52 0.28 0 1 -0 +0.2 0 1.8 0.52 0.32 0 1 -0 +-0.2 0 2.2 0.48 0.28 0 1 -0 +0.2 0 2.2 0.52 0.28 0 1 -0 +0.6 0 1.8 0.56 0.32 0 1 -0 +0.2 0 1.8 0.52 0.32 0 1 -0 +0.6 0 2.2 0.56 0.28 0 1 -0 +0.6 0 1.8 0.56 0.32 0 1 -0 +0.2 0 2.2 0.52 0.28 0 1 -0 +0.6 0 2.2 0.56 0.28 0 1 -0 +1 0 1.8 0.6 0.32 0 1 -0 +0.6 0 1.8 0.56 0.32 0 1 -0 +1 0 2.2 0.6 0.28 0 1 -0 +1 0 1.8 0.6 0.32 0 1 -0 +0.6 0 2.2 0.56 0.28 0 1 -0 +1 0 2.2 0.6 0.28 0 1 -0 +1.4 0 1.8 0.64 0.32 0 1 -0 +1 0 1.8 0.6 0.32 0 1 -0 +1.4 0 2.2 0.64 0.28 0 1 -0 +1.4 0 1.8 0.64 0.32 0 1 -0 +1 0 2.2 0.6 0.28 0 1 -0 +1.4 0 2.2 0.64 0.28 0 1 -0 +1.8 0 1.8 0.68 0.32 0 1 -0 +1.4 0 1.8 0.64 0.32 0 1 -0 +1.8 0 2.2 0.68 0.28 0 1 -0 +1.8 0 1.8 0.68 0.32 0 1 -0 +1.4 0 2.2 0.64 0.28 0 1 -0 +1.8 0 2.2 0.68 0.28 0 1 -0 +2.2 0 1.8 0.72 0.32 0 1 -0 +1.8 0 1.8 0.68 0.32 0 1 -0 +2.2 0 2.2 0.72 0.28 0 1 -0 +2.2 0 1.8 0.72 0.32 0 1 -0 +1.8 0 2.2 0.68 0.28 0 1 -0 +2.2 0 2.2 0.72 0.28 0 1 -0 +2.6 0 1.8 0.76 0.32 0 1 -0 +2.2 0 1.8 0.72 0.32 0 1 -0 +2.6 0 2.2 0.76 0.28 0 1 -0 +2.6 0 1.8 0.76 0.32 0 1 -0 +2.2 0 2.2 0.72 0.28 0 1 -0 +2.6 0 2.2 0.76 0.28 0 1 -0 +3 0 1.8 0.8 0.32 0 1 -0 +2.6 0 1.8 0.76 0.32 0 1 -0 +3 0 2.2 0.8 0.28 0 1 -0 +3 0 1.8 0.8 0.32 0 1 -0 +2.6 0 2.2 0.76 0.28 0 1 -0 +3 0 2.2 0.8 0.28 0 1 -0 +3.4 0 1.8 0.84 0.32 0 1 -0 +3 0 1.8 0.8 0.32 0 1 -0 +3.4 0 2.2 0.84 0.28 0 1 -0 +3.4 0 1.8 0.84 0.32 0 1 -0 +3 0 2.2 0.8 0.28 0 1 -0 +3.4 0 2.2 0.84 0.28 0 1 -0 +3.8 0 1.8 0.88 0.32 0 1 -0 +3.4 0 1.8 0.84 0.32 0 1 -0 +3.8 0 2.2 0.88 0.28 0 1 -0 +3.8 0 1.8 0.88 0.32 0 1 -0 +3.4 0 2.2 0.84 0.28 0 1 -0 +3.8 0 2.2 0.88 0.28 0 1 -0 +4.2 0 1.8 0.92 0.32 0 1 -0 +3.8 0 1.8 0.88 0.32 0 1 -0 +4.2 0 2.2 0.92 0.28 0 1 -0 +4.2 0 1.8 0.92 0.32 0 1 -0 +3.8 0 2.2 0.88 0.28 0 1 -0 +4.2 0 2.2 0.92 0.28 0 1 -0 +4.6 0 1.8 0.96 0.32 0 1 -0 +4.2 0 1.8 0.92 0.32 0 1 -0 +4.6 0 2.2 0.96 0.28 0 1 -0 +4.6 0 1.8 0.96 0.32 0 1 -0 +4.2 0 2.2 0.92 0.28 0 1 -0 +4.6 0 2.2 0.96 0.28 0 1 -0 +5 0 1.8 1 0.32 0 1 -0 +4.6 0 1.8 0.96 0.32 0 1 -0 +5 0 2.2 1 0.28 0 1 -0 +5 0 1.8 1 0.32 0 1 -0 +4.6 0 2.2 0.96 0.28 0 1 -0 +-5 0 2.6 0 0.24 0 1 -0 +-4.6 0 2.2 0.04 0.28 0 1 -0 +-5 0 2.2 0 0.28 0 1 -0 +-4.6 0 2.6 0.04 0.24 0 1 -0 +-4.6 0 2.2 0.04 0.28 0 1 -0 +-5 0 2.6 0 0.24 0 1 -0 +-4.6 0 2.6 0.04 0.24 0 1 -0 +-4.2 0 2.2 0.08 0.28 0 1 -0 +-4.6 0 2.2 0.04 0.28 0 1 -0 +-4.2 0 2.6 0.08 0.24 0 1 -0 +-4.2 0 2.2 0.08 0.28 0 1 -0 +-4.6 0 2.6 0.04 0.24 0 1 -0 +-4.2 0 2.6 0.08 0.24 0 1 -0 +-3.8 0 2.2 0.12 0.28 0 1 -0 +-4.2 0 2.2 0.08 0.28 0 1 -0 +-3.8 0 2.6 0.12 0.24 0 1 -0 +-3.8 0 2.2 0.12 0.28 0 1 -0 +-4.2 0 2.6 0.08 0.24 0 1 -0 +-3.8 0 2.6 0.12 0.24 0 1 -0 +-3.4 0 2.2 0.16 0.28 0 1 -0 +-3.8 0 2.2 0.12 0.28 0 1 -0 +-3.4 0 2.6 0.16 0.24 0 1 -0 +-3.4 0 2.2 0.16 0.28 0 1 -0 +-3.8 0 2.6 0.12 0.24 0 1 -0 +-3.4 0 2.6 0.16 0.24 0 1 -0 +-3 0 2.2 0.2 0.28 0 1 -0 +-3.4 0 2.2 0.16 0.28 0 1 -0 +-3 0 2.6 0.2 0.24 0 1 -0 +-3 0 2.2 0.2 0.28 0 1 -0 +-3.4 0 2.6 0.16 0.24 0 1 -0 +-3 0 2.6 0.2 0.24 0 1 -0 +-2.6 0 2.2 0.24 0.28 0 1 -0 +-3 0 2.2 0.2 0.28 0 1 -0 +-2.6 0 2.6 0.24 0.24 0 1 -0 +-2.6 0 2.2 0.24 0.28 0 1 -0 +-3 0 2.6 0.2 0.24 0 1 -0 +-2.6 0 2.6 0.24 0.24 0 1 -0 +-2.2 0 2.2 0.28 0.28 0 1 -0 +-2.6 0 2.2 0.24 0.28 0 1 -0 +-2.2 0 2.6 0.28 0.24 0 1 -0 +-2.2 0 2.2 0.28 0.28 0 1 -0 +-2.6 0 2.6 0.24 0.24 0 1 -0 +-2.2 0 2.6 0.28 0.24 0 1 -0 +-1.8 0 2.2 0.32 0.28 0 1 -0 +-2.2 0 2.2 0.28 0.28 0 1 -0 +-1.8 0 2.6 0.32 0.24 0 1 -0 +-1.8 0 2.2 0.32 0.28 0 1 -0 +-2.2 0 2.6 0.28 0.24 0 1 -0 +-1.8 0 2.6 0.32 0.24 0 1 -0 +-1.4 0 2.2 0.36 0.28 0 1 -0 +-1.8 0 2.2 0.32 0.28 0 1 -0 +-1.4 0 2.6 0.36 0.24 0 1 -0 +-1.4 0 2.2 0.36 0.28 0 1 -0 +-1.8 0 2.6 0.32 0.24 0 1 -0 +-1.4 0 2.6 0.36 0.24 0 1 -0 +-1 0 2.2 0.4 0.28 0 1 -0 +-1.4 0 2.2 0.36 0.28 0 1 -0 +-1 0 2.6 0.4 0.24 0 1 -0 +-1 0 2.2 0.4 0.28 0 1 -0 +-1.4 0 2.6 0.36 0.24 0 1 -0 +-1 0 2.6 0.4 0.24 0 1 -0 +-0.6 0 2.2 0.44 0.28 0 1 -0 +-1 0 2.2 0.4 0.28 0 1 -0 +-0.6 0 2.6 0.44 0.24 0 1 -0 +-0.6 0 2.2 0.44 0.28 0 1 -0 +-1 0 2.6 0.4 0.24 0 1 -0 +-0.6 0 2.6 0.44 0.24 0 1 -0 +-0.2 0 2.2 0.48 0.28 0 1 -0 +-0.6 0 2.2 0.44 0.28 0 1 -0 +-0.2 0 2.6 0.48 0.24 0 1 -0 +-0.2 0 2.2 0.48 0.28 0 1 -0 +-0.6 0 2.6 0.44 0.24 0 1 -0 +-0.2 0 2.6 0.48 0.24 0 1 -0 +0.2 0 2.2 0.52 0.28 0 1 -0 +-0.2 0 2.2 0.48 0.28 0 1 -0 +0.2 0 2.6 0.52 0.24 0 1 -0 +0.2 0 2.2 0.52 0.28 0 1 -0 +-0.2 0 2.6 0.48 0.24 0 1 -0 +0.2 0 2.6 0.52 0.24 0 1 -0 +0.6 0 2.2 0.56 0.28 0 1 -0 +0.2 0 2.2 0.52 0.28 0 1 -0 +0.6 0 2.6 0.56 0.24 0 1 -0 +0.6 0 2.2 0.56 0.28 0 1 -0 +0.2 0 2.6 0.52 0.24 0 1 -0 +0.6 0 2.6 0.56 0.24 0 1 -0 +1 0 2.2 0.6 0.28 0 1 -0 +0.6 0 2.2 0.56 0.28 0 1 -0 +1 0 2.6 0.6 0.24 0 1 -0 +1 0 2.2 0.6 0.28 0 1 -0 +0.6 0 2.6 0.56 0.24 0 1 -0 +1 0 2.6 0.6 0.24 0 1 -0 +1.4 0 2.2 0.64 0.28 0 1 -0 +1 0 2.2 0.6 0.28 0 1 -0 +1.4 0 2.6 0.64 0.24 0 1 -0 +1.4 0 2.2 0.64 0.28 0 1 -0 +1 0 2.6 0.6 0.24 0 1 -0 +1.4 0 2.6 0.64 0.24 0 1 -0 +1.8 0 2.2 0.68 0.28 0 1 -0 +1.4 0 2.2 0.64 0.28 0 1 -0 +1.8 0 2.6 0.68 0.24 0 1 -0 +1.8 0 2.2 0.68 0.28 0 1 -0 +1.4 0 2.6 0.64 0.24 0 1 -0 +1.8 0 2.6 0.68 0.24 0 1 -0 +2.2 0 2.2 0.72 0.28 0 1 -0 +1.8 0 2.2 0.68 0.28 0 1 -0 +2.2 0 2.6 0.72 0.24 0 1 -0 +2.2 0 2.2 0.72 0.28 0 1 -0 +1.8 0 2.6 0.68 0.24 0 1 -0 +2.2 0 2.6 0.72 0.24 0 1 -0 +2.6 0 2.2 0.76 0.28 0 1 -0 +2.2 0 2.2 0.72 0.28 0 1 -0 +2.6 0 2.6 0.76 0.24 0 1 -0 +2.6 0 2.2 0.76 0.28 0 1 -0 +2.2 0 2.6 0.72 0.24 0 1 -0 +2.6 0 2.6 0.76 0.24 0 1 -0 +3 0 2.2 0.8 0.28 0 1 -0 +2.6 0 2.2 0.76 0.28 0 1 -0 +3 0 2.6 0.8 0.24 0 1 -0 +3 0 2.2 0.8 0.28 0 1 -0 +2.6 0 2.6 0.76 0.24 0 1 -0 +3 0 2.6 0.8 0.24 0 1 -0 +3.4 0 2.2 0.84 0.28 0 1 -0 +3 0 2.2 0.8 0.28 0 1 -0 +3.4 0 2.6 0.84 0.24 0 1 -0 +3.4 0 2.2 0.84 0.28 0 1 -0 +3 0 2.6 0.8 0.24 0 1 -0 +3.4 0 2.6 0.84 0.24 0 1 -0 +3.8 0 2.2 0.88 0.28 0 1 -0 +3.4 0 2.2 0.84 0.28 0 1 -0 +3.8 0 2.6 0.88 0.24 0 1 -0 +3.8 0 2.2 0.88 0.28 0 1 -0 +3.4 0 2.6 0.84 0.24 0 1 -0 +3.8 0 2.6 0.88 0.24 0 1 -0 +4.2 0 2.2 0.92 0.28 0 1 -0 +3.8 0 2.2 0.88 0.28 0 1 -0 +4.2 0 2.6 0.92 0.24 0 1 -0 +4.2 0 2.2 0.92 0.28 0 1 -0 +3.8 0 2.6 0.88 0.24 0 1 -0 +4.2 0 2.6 0.92 0.24 0 1 -0 +4.6 0 2.2 0.96 0.28 0 1 -0 +4.2 0 2.2 0.92 0.28 0 1 -0 +4.6 0 2.6 0.96 0.24 0 1 -0 +4.6 0 2.2 0.96 0.28 0 1 -0 +4.2 0 2.6 0.92 0.24 0 1 -0 +4.6 0 2.6 0.96 0.24 0 1 -0 +5 0 2.2 1 0.28 0 1 -0 +4.6 0 2.2 0.96 0.28 0 1 -0 +5 0 2.6 1 0.24 0 1 -0 +5 0 2.2 1 0.28 0 1 -0 +4.6 0 2.6 0.96 0.24 0 1 -0 +-5 0 3 0 0.2 0 1 -0 +-4.6 0 2.6 0.04 0.24 0 1 -0 +-5 0 2.6 0 0.24 0 1 -0 +-4.6 0 3 0.04 0.2 0 1 -0 +-4.6 0 2.6 0.04 0.24 0 1 -0 +-5 0 3 0 0.2 0 1 -0 +-4.6 0 3 0.04 0.2 0 1 -0 +-4.2 0 2.6 0.08 0.24 0 1 -0 +-4.6 0 2.6 0.04 0.24 0 1 -0 +-4.2 0 3 0.08 0.2 0 1 -0 +-4.2 0 2.6 0.08 0.24 0 1 -0 +-4.6 0 3 0.04 0.2 0 1 -0 +-4.2 0 3 0.08 0.2 0 1 -0 +-3.8 0 2.6 0.12 0.24 0 1 -0 +-4.2 0 2.6 0.08 0.24 0 1 -0 +-3.8 0 3 0.12 0.2 0 1 -0 +-3.8 0 2.6 0.12 0.24 0 1 -0 +-4.2 0 3 0.08 0.2 0 1 -0 +-3.8 0 3 0.12 0.2 0 1 -0 +-3.4 0 2.6 0.16 0.24 0 1 -0 +-3.8 0 2.6 0.12 0.24 0 1 -0 +-3.4 0 3 0.16 0.2 0 1 -0 +-3.4 0 2.6 0.16 0.24 0 1 -0 +-3.8 0 3 0.12 0.2 0 1 -0 +-3.4 0 3 0.16 0.2 0 1 -0 +-3 0 2.6 0.2 0.24 0 1 -0 +-3.4 0 2.6 0.16 0.24 0 1 -0 +-3 0 3 0.2 0.2 0 1 -0 +-3 0 2.6 0.2 0.24 0 1 -0 +-3.4 0 3 0.16 0.2 0 1 -0 +-3 0 3 0.2 0.2 0 1 -0 +-2.6 0 2.6 0.24 0.24 0 1 -0 +-3 0 2.6 0.2 0.24 0 1 -0 +-2.6 0 3 0.24 0.2 0 1 -0 +-2.6 0 2.6 0.24 0.24 0 1 -0 +-3 0 3 0.2 0.2 0 1 -0 +-2.6 0 3 0.24 0.2 0 1 -0 +-2.2 0 2.6 0.28 0.24 0 1 -0 +-2.6 0 2.6 0.24 0.24 0 1 -0 +-2.2 0 3 0.28 0.2 0 1 -0 +-2.2 0 2.6 0.28 0.24 0 1 -0 +-2.6 0 3 0.24 0.2 0 1 -0 +-2.2 0 3 0.28 0.2 0 1 -0 +-1.8 0 2.6 0.32 0.24 0 1 -0 +-2.2 0 2.6 0.28 0.24 0 1 -0 +-1.8 0 3 0.32 0.2 0 1 -0 +-1.8 0 2.6 0.32 0.24 0 1 -0 +-2.2 0 3 0.28 0.2 0 1 -0 +-1.8 0 3 0.32 0.2 0 1 -0 +-1.4 0 2.6 0.36 0.24 0 1 -0 +-1.8 0 2.6 0.32 0.24 0 1 -0 +-1.4 0 3 0.36 0.2 0 1 -0 +-1.4 0 2.6 0.36 0.24 0 1 -0 +-1.8 0 3 0.32 0.2 0 1 -0 +-1.4 0 3 0.36 0.2 0 1 -0 +-1 0 2.6 0.4 0.24 0 1 -0 +-1.4 0 2.6 0.36 0.24 0 1 -0 +-1 0 3 0.4 0.2 0 1 -0 +-1 0 2.6 0.4 0.24 0 1 -0 +-1.4 0 3 0.36 0.2 0 1 -0 +-1 0 3 0.4 0.2 0 1 -0 +-0.6 0 2.6 0.44 0.24 0 1 -0 +-1 0 2.6 0.4 0.24 0 1 -0 +-0.6 0 3 0.44 0.2 0 1 -0 +-0.6 0 2.6 0.44 0.24 0 1 -0 +-1 0 3 0.4 0.2 0 1 -0 +-0.6 0 3 0.44 0.2 0 1 -0 +-0.2 0 2.6 0.48 0.24 0 1 -0 +-0.6 0 2.6 0.44 0.24 0 1 -0 +-0.2 0 3 0.48 0.2 0 1 -0 +-0.2 0 2.6 0.48 0.24 0 1 -0 +-0.6 0 3 0.44 0.2 0 1 -0 +-0.2 0 3 0.48 0.2 0 1 -0 +0.2 0 2.6 0.52 0.24 0 1 -0 +-0.2 0 2.6 0.48 0.24 0 1 -0 +0.2 0 3 0.52 0.2 0 1 -0 +0.2 0 2.6 0.52 0.24 0 1 -0 +-0.2 0 3 0.48 0.2 0 1 -0 +0.2 0 3 0.52 0.2 0 1 -0 +0.6 0 2.6 0.56 0.24 0 1 -0 +0.2 0 2.6 0.52 0.24 0 1 -0 +0.6 0 3 0.56 0.2 0 1 -0 +0.6 0 2.6 0.56 0.24 0 1 -0 +0.2 0 3 0.52 0.2 0 1 -0 +0.6 0 3 0.56 0.2 0 1 -0 +1 0 2.6 0.6 0.24 0 1 -0 +0.6 0 2.6 0.56 0.24 0 1 -0 +1 0 3 0.6 0.2 0 1 -0 +1 0 2.6 0.6 0.24 0 1 -0 +0.6 0 3 0.56 0.2 0 1 -0 +1 0 3 0.6 0.2 0 1 -0 +1.4 0 2.6 0.64 0.24 0 1 -0 +1 0 2.6 0.6 0.24 0 1 -0 +1.4 0 3 0.64 0.2 0 1 -0 +1.4 0 2.6 0.64 0.24 0 1 -0 +1 0 3 0.6 0.2 0 1 -0 +1.4 0 3 0.64 0.2 0 1 -0 +1.8 0 2.6 0.68 0.24 0 1 -0 +1.4 0 2.6 0.64 0.24 0 1 -0 +1.8 0 3 0.68 0.2 0 1 -0 +1.8 0 2.6 0.68 0.24 0 1 -0 +1.4 0 3 0.64 0.2 0 1 -0 +1.8 0 3 0.68 0.2 0 1 -0 +2.2 0 2.6 0.72 0.24 0 1 -0 +1.8 0 2.6 0.68 0.24 0 1 -0 +2.2 0 3 0.72 0.2 0 1 -0 +2.2 0 2.6 0.72 0.24 0 1 -0 +1.8 0 3 0.68 0.2 0 1 -0 +2.2 0 3 0.72 0.2 0 1 -0 +2.6 0 2.6 0.76 0.24 0 1 -0 +2.2 0 2.6 0.72 0.24 0 1 -0 +2.6 0 3 0.76 0.2 0 1 -0 +2.6 0 2.6 0.76 0.24 0 1 -0 +2.2 0 3 0.72 0.2 0 1 -0 +2.6 0 3 0.76 0.2 0 1 -0 +3 0 2.6 0.8 0.24 0 1 -0 +2.6 0 2.6 0.76 0.24 0 1 -0 +3 0 3 0.8 0.2 0 1 -0 +3 0 2.6 0.8 0.24 0 1 -0 +2.6 0 3 0.76 0.2 0 1 -0 +3 0 3 0.8 0.2 0 1 -0 +3.4 0 2.6 0.84 0.24 0 1 -0 +3 0 2.6 0.8 0.24 0 1 -0 +3.4 0 3 0.84 0.2 0 1 -0 +3.4 0 2.6 0.84 0.24 0 1 -0 +3 0 3 0.8 0.2 0 1 -0 +3.4 0 3 0.84 0.2 0 1 -0 +3.8 0 2.6 0.88 0.24 0 1 -0 +3.4 0 2.6 0.84 0.24 0 1 -0 +3.8 0 3 0.88 0.2 0 1 -0 +3.8 0 2.6 0.88 0.24 0 1 -0 +3.4 0 3 0.84 0.2 0 1 -0 +3.8 0 3 0.88 0.2 0 1 -0 +4.2 0 2.6 0.92 0.24 0 1 -0 +3.8 0 2.6 0.88 0.24 0 1 -0 +4.2 0 3 0.92 0.2 0 1 -0 +4.2 0 2.6 0.92 0.24 0 1 -0 +3.8 0 3 0.88 0.2 0 1 -0 +4.2 0 3 0.92 0.2 0 1 -0 +4.6 0 2.6 0.96 0.24 0 1 -0 +4.2 0 2.6 0.92 0.24 0 1 -0 +4.6 0 3 0.96 0.2 0 1 -0 +4.6 0 2.6 0.96 0.24 0 1 -0 +4.2 0 3 0.92 0.2 0 1 -0 +4.6 0 3 0.96 0.2 0 1 -0 +5 0 2.6 1 0.24 0 1 -0 +4.6 0 2.6 0.96 0.24 0 1 -0 +5 0 3 1 0.2 0 1 -0 +5 0 2.6 1 0.24 0 1 -0 +4.6 0 3 0.96 0.2 0 1 -0 +-5 0 3.4 0 0.16 0 1 -0 +-4.6 0 3 0.04 0.2 0 1 -0 +-5 0 3 0 0.2 0 1 -0 +-4.6 0 3.4 0.04 0.16 0 1 -0 +-4.6 0 3 0.04 0.2 0 1 -0 +-5 0 3.4 0 0.16 0 1 -0 +-4.6 0 3.4 0.04 0.16 0 1 -0 +-4.2 0 3 0.08 0.2 0 1 -0 +-4.6 0 3 0.04 0.2 0 1 -0 +-4.2 0 3.4 0.08 0.16 0 1 -0 +-4.2 0 3 0.08 0.2 0 1 -0 +-4.6 0 3.4 0.04 0.16 0 1 -0 +-4.2 0 3.4 0.08 0.16 0 1 -0 +-3.8 0 3 0.12 0.2 0 1 -0 +-4.2 0 3 0.08 0.2 0 1 -0 +-3.8 0 3.4 0.12 0.16 0 1 -0 +-3.8 0 3 0.12 0.2 0 1 -0 +-4.2 0 3.4 0.08 0.16 0 1 -0 +-3.8 0 3.4 0.12 0.16 0 1 -0 +-3.4 0 3 0.16 0.2 0 1 -0 +-3.8 0 3 0.12 0.2 0 1 -0 +-3.4 0 3.4 0.16 0.16 0 1 -0 +-3.4 0 3 0.16 0.2 0 1 -0 +-3.8 0 3.4 0.12 0.16 0 1 -0 +-3.4 0 3.4 0.16 0.16 0 1 -0 +-3 0 3 0.2 0.2 0 1 -0 +-3.4 0 3 0.16 0.2 0 1 -0 +-3 0 3.4 0.2 0.16 0 1 -0 +-3 0 3 0.2 0.2 0 1 -0 +-3.4 0 3.4 0.16 0.16 0 1 -0 +-3 0 3.4 0.2 0.16 0 1 -0 +-2.6 0 3 0.24 0.2 0 1 -0 +-3 0 3 0.2 0.2 0 1 -0 +-2.6 0 3.4 0.24 0.16 0 1 -0 +-2.6 0 3 0.24 0.2 0 1 -0 +-3 0 3.4 0.2 0.16 0 1 -0 +-2.6 0 3.4 0.24 0.16 0 1 -0 +-2.2 0 3 0.28 0.2 0 1 -0 +-2.6 0 3 0.24 0.2 0 1 -0 +-2.2 0 3.4 0.28 0.16 0 1 -0 +-2.2 0 3 0.28 0.2 0 1 -0 +-2.6 0 3.4 0.24 0.16 0 1 -0 +-2.2 0 3.4 0.28 0.16 0 1 -0 +-1.8 0 3 0.32 0.2 0 1 -0 +-2.2 0 3 0.28 0.2 0 1 -0 +-1.8 0 3.4 0.32 0.16 0 1 -0 +-1.8 0 3 0.32 0.2 0 1 -0 +-2.2 0 3.4 0.28 0.16 0 1 -0 +-1.8 0 3.4 0.32 0.16 0 1 -0 +-1.4 0 3 0.36 0.2 0 1 -0 +-1.8 0 3 0.32 0.2 0 1 -0 +-1.4 0 3.4 0.36 0.16 0 1 -0 +-1.4 0 3 0.36 0.2 0 1 -0 +-1.8 0 3.4 0.32 0.16 0 1 -0 +-1.4 0 3.4 0.36 0.16 0 1 -0 +-1 0 3 0.4 0.2 0 1 -0 +-1.4 0 3 0.36 0.2 0 1 -0 +-1 0 3.4 0.4 0.16 0 1 -0 +-1 0 3 0.4 0.2 0 1 -0 +-1.4 0 3.4 0.36 0.16 0 1 -0 +-1 0 3.4 0.4 0.16 0 1 -0 +-0.6 0 3 0.44 0.2 0 1 -0 +-1 0 3 0.4 0.2 0 1 -0 +-0.6 0 3.4 0.44 0.16 0 1 -0 +-0.6 0 3 0.44 0.2 0 1 -0 +-1 0 3.4 0.4 0.16 0 1 -0 +-0.6 0 3.4 0.44 0.16 0 1 -0 +-0.2 0 3 0.48 0.2 0 1 -0 +-0.6 0 3 0.44 0.2 0 1 -0 +-0.2 0 3.4 0.48 0.16 0 1 -0 +-0.2 0 3 0.48 0.2 0 1 -0 +-0.6 0 3.4 0.44 0.16 0 1 -0 +-0.2 0 3.4 0.48 0.16 0 1 -0 +0.2 0 3 0.52 0.2 0 1 -0 +-0.2 0 3 0.48 0.2 0 1 -0 +0.2 0 3.4 0.52 0.16 0 1 -0 +0.2 0 3 0.52 0.2 0 1 -0 +-0.2 0 3.4 0.48 0.16 0 1 -0 +0.2 0 3.4 0.52 0.16 0 1 -0 +0.6 0 3 0.56 0.2 0 1 -0 +0.2 0 3 0.52 0.2 0 1 -0 +0.6 0 3.4 0.56 0.16 0 1 -0 +0.6 0 3 0.56 0.2 0 1 -0 +0.2 0 3.4 0.52 0.16 0 1 -0 +0.6 0 3.4 0.56 0.16 0 1 -0 +1 0 3 0.6 0.2 0 1 -0 +0.6 0 3 0.56 0.2 0 1 -0 +1 0 3.4 0.6 0.16 0 1 -0 +1 0 3 0.6 0.2 0 1 -0 +0.6 0 3.4 0.56 0.16 0 1 -0 +1 0 3.4 0.6 0.16 0 1 -0 +1.4 0 3 0.64 0.2 0 1 -0 +1 0 3 0.6 0.2 0 1 -0 +1.4 0 3.4 0.64 0.16 0 1 -0 +1.4 0 3 0.64 0.2 0 1 -0 +1 0 3.4 0.6 0.16 0 1 -0 +1.4 0 3.4 0.64 0.16 0 1 -0 +1.8 0 3 0.68 0.2 0 1 -0 +1.4 0 3 0.64 0.2 0 1 -0 +1.8 0 3.4 0.68 0.16 0 1 -0 +1.8 0 3 0.68 0.2 0 1 -0 +1.4 0 3.4 0.64 0.16 0 1 -0 +1.8 0 3.4 0.68 0.16 0 1 -0 +2.2 0 3 0.72 0.2 0 1 -0 +1.8 0 3 0.68 0.2 0 1 -0 +2.2 0 3.4 0.72 0.16 0 1 -0 +2.2 0 3 0.72 0.2 0 1 -0 +1.8 0 3.4 0.68 0.16 0 1 -0 +2.2 0 3.4 0.72 0.16 0 1 -0 +2.6 0 3 0.76 0.2 0 1 -0 +2.2 0 3 0.72 0.2 0 1 -0 +2.6 0 3.4 0.76 0.16 0 1 -0 +2.6 0 3 0.76 0.2 0 1 -0 +2.2 0 3.4 0.72 0.16 0 1 -0 +2.6 0 3.4 0.76 0.16 0 1 -0 +3 0 3 0.8 0.2 0 1 -0 +2.6 0 3 0.76 0.2 0 1 -0 +3 0 3.4 0.8 0.16 0 1 -0 +3 0 3 0.8 0.2 0 1 -0 +2.6 0 3.4 0.76 0.16 0 1 -0 +3 0 3.4 0.8 0.16 0 1 -0 +3.4 0 3 0.84 0.2 0 1 -0 +3 0 3 0.8 0.2 0 1 -0 +3.4 0 3.4 0.84 0.16 0 1 -0 +3.4 0 3 0.84 0.2 0 1 -0 +3 0 3.4 0.8 0.16 0 1 -0 +3.4 0 3.4 0.84 0.16 0 1 -0 +3.8 0 3 0.88 0.2 0 1 -0 +3.4 0 3 0.84 0.2 0 1 -0 +3.8 0 3.4 0.88 0.16 0 1 -0 +3.8 0 3 0.88 0.2 0 1 -0 +3.4 0 3.4 0.84 0.16 0 1 -0 +3.8 0 3.4 0.88 0.16 0 1 -0 +4.2 0 3 0.92 0.2 0 1 -0 +3.8 0 3 0.88 0.2 0 1 -0 +4.2 0 3.4 0.92 0.16 0 1 -0 +4.2 0 3 0.92 0.2 0 1 -0 +3.8 0 3.4 0.88 0.16 0 1 -0 +4.2 0 3.4 0.92 0.16 0 1 -0 +4.6 0 3 0.96 0.2 0 1 -0 +4.2 0 3 0.92 0.2 0 1 -0 +4.6 0 3.4 0.96 0.16 0 1 -0 +4.6 0 3 0.96 0.2 0 1 -0 +4.2 0 3.4 0.92 0.16 0 1 -0 +4.6 0 3.4 0.96 0.16 0 1 -0 +5 0 3 1 0.2 0 1 -0 +4.6 0 3 0.96 0.2 0 1 -0 +5 0 3.4 1 0.16 0 1 -0 +5 0 3 1 0.2 0 1 -0 +4.6 0 3.4 0.96 0.16 0 1 -0 +-5 0 3.8 0 0.12 0 1 -0 +-4.6 0 3.4 0.04 0.16 0 1 -0 +-5 0 3.4 0 0.16 0 1 -0 +-4.6 0 3.8 0.04 0.12 0 1 -0 +-4.6 0 3.4 0.04 0.16 0 1 -0 +-5 0 3.8 0 0.12 0 1 -0 +-4.6 0 3.8 0.04 0.12 0 1 -0 +-4.2 0 3.4 0.08 0.16 0 1 -0 +-4.6 0 3.4 0.04 0.16 0 1 -0 +-4.2 0 3.8 0.08 0.12 0 1 -0 +-4.2 0 3.4 0.08 0.16 0 1 -0 +-4.6 0 3.8 0.04 0.12 0 1 -0 +-4.2 0 3.8 0.08 0.12 0 1 -0 +-3.8 0 3.4 0.12 0.16 0 1 -0 +-4.2 0 3.4 0.08 0.16 0 1 -0 +-3.8 0 3.8 0.12 0.12 0 1 -0 +-3.8 0 3.4 0.12 0.16 0 1 -0 +-4.2 0 3.8 0.08 0.12 0 1 -0 +-3.8 0 3.8 0.12 0.12 0 1 -0 +-3.4 0 3.4 0.16 0.16 0 1 -0 +-3.8 0 3.4 0.12 0.16 0 1 -0 +-3.4 0 3.8 0.16 0.12 0 1 -0 +-3.4 0 3.4 0.16 0.16 0 1 -0 +-3.8 0 3.8 0.12 0.12 0 1 -0 +-3.4 0 3.8 0.16 0.12 0 1 -0 +-3 0 3.4 0.2 0.16 0 1 -0 +-3.4 0 3.4 0.16 0.16 0 1 -0 +-3 0 3.8 0.2 0.12 0 1 -0 +-3 0 3.4 0.2 0.16 0 1 -0 +-3.4 0 3.8 0.16 0.12 0 1 -0 +-3 0 3.8 0.2 0.12 0 1 -0 +-2.6 0 3.4 0.24 0.16 0 1 -0 +-3 0 3.4 0.2 0.16 0 1 -0 +-2.6 0 3.8 0.24 0.12 0 1 -0 +-2.6 0 3.4 0.24 0.16 0 1 -0 +-3 0 3.8 0.2 0.12 0 1 -0 +-2.6 0 3.8 0.24 0.12 0 1 -0 +-2.2 0 3.4 0.28 0.16 0 1 -0 +-2.6 0 3.4 0.24 0.16 0 1 -0 +-2.2 0 3.8 0.28 0.12 0 1 -0 +-2.2 0 3.4 0.28 0.16 0 1 -0 +-2.6 0 3.8 0.24 0.12 0 1 -0 +-2.2 0 3.8 0.28 0.12 0 1 -0 +-1.8 0 3.4 0.32 0.16 0 1 -0 +-2.2 0 3.4 0.28 0.16 0 1 -0 +-1.8 0 3.8 0.32 0.12 0 1 -0 +-1.8 0 3.4 0.32 0.16 0 1 -0 +-2.2 0 3.8 0.28 0.12 0 1 -0 +-1.8 0 3.8 0.32 0.12 0 1 -0 +-1.4 0 3.4 0.36 0.16 0 1 -0 +-1.8 0 3.4 0.32 0.16 0 1 -0 +-1.4 0 3.8 0.36 0.12 0 1 -0 +-1.4 0 3.4 0.36 0.16 0 1 -0 +-1.8 0 3.8 0.32 0.12 0 1 -0 +-1.4 0 3.8 0.36 0.12 0 1 -0 +-1 0 3.4 0.4 0.16 0 1 -0 +-1.4 0 3.4 0.36 0.16 0 1 -0 +-1 0 3.8 0.4 0.12 0 1 -0 +-1 0 3.4 0.4 0.16 0 1 -0 +-1.4 0 3.8 0.36 0.12 0 1 -0 +-1 0 3.8 0.4 0.12 0 1 -0 +-0.6 0 3.4 0.44 0.16 0 1 -0 +-1 0 3.4 0.4 0.16 0 1 -0 +-0.6 0 3.8 0.44 0.12 0 1 -0 +-0.6 0 3.4 0.44 0.16 0 1 -0 +-1 0 3.8 0.4 0.12 0 1 -0 +-0.6 0 3.8 0.44 0.12 0 1 -0 +-0.2 0 3.4 0.48 0.16 0 1 -0 +-0.6 0 3.4 0.44 0.16 0 1 -0 +-0.2 0 3.8 0.48 0.12 0 1 -0 +-0.2 0 3.4 0.48 0.16 0 1 -0 +-0.6 0 3.8 0.44 0.12 0 1 -0 +-0.2 0 3.8 0.48 0.12 0 1 -0 +0.2 0 3.4 0.52 0.16 0 1 -0 +-0.2 0 3.4 0.48 0.16 0 1 -0 +0.2 0 3.8 0.52 0.12 0 1 -0 +0.2 0 3.4 0.52 0.16 0 1 -0 +-0.2 0 3.8 0.48 0.12 0 1 -0 +0.2 0 3.8 0.52 0.12 0 1 -0 +0.6 0 3.4 0.56 0.16 0 1 -0 +0.2 0 3.4 0.52 0.16 0 1 -0 +0.6 0 3.8 0.56 0.12 0 1 -0 +0.6 0 3.4 0.56 0.16 0 1 -0 +0.2 0 3.8 0.52 0.12 0 1 -0 +0.6 0 3.8 0.56 0.12 0 1 -0 +1 0 3.4 0.6 0.16 0 1 -0 +0.6 0 3.4 0.56 0.16 0 1 -0 +1 0 3.8 0.6 0.12 0 1 -0 +1 0 3.4 0.6 0.16 0 1 -0 +0.6 0 3.8 0.56 0.12 0 1 -0 +1 0 3.8 0.6 0.12 0 1 -0 +1.4 0 3.4 0.64 0.16 0 1 -0 +1 0 3.4 0.6 0.16 0 1 -0 +1.4 0 3.8 0.64 0.12 0 1 -0 +1.4 0 3.4 0.64 0.16 0 1 -0 +1 0 3.8 0.6 0.12 0 1 -0 +1.4 0 3.8 0.64 0.12 0 1 -0 +1.8 0 3.4 0.68 0.16 0 1 -0 +1.4 0 3.4 0.64 0.16 0 1 -0 +1.8 0 3.8 0.68 0.12 0 1 -0 +1.8 0 3.4 0.68 0.16 0 1 -0 +1.4 0 3.8 0.64 0.12 0 1 -0 +1.8 0 3.8 0.68 0.12 0 1 -0 +2.2 0 3.4 0.72 0.16 0 1 -0 +1.8 0 3.4 0.68 0.16 0 1 -0 +2.2 0 3.8 0.72 0.12 0 1 -0 +2.2 0 3.4 0.72 0.16 0 1 -0 +1.8 0 3.8 0.68 0.12 0 1 -0 +2.2 0 3.8 0.72 0.12 0 1 -0 +2.6 0 3.4 0.76 0.16 0 1 -0 +2.2 0 3.4 0.72 0.16 0 1 -0 +2.6 0 3.8 0.76 0.12 0 1 -0 +2.6 0 3.4 0.76 0.16 0 1 -0 +2.2 0 3.8 0.72 0.12 0 1 -0 +2.6 0 3.8 0.76 0.12 0 1 -0 +3 0 3.4 0.8 0.16 0 1 -0 +2.6 0 3.4 0.76 0.16 0 1 -0 +3 0 3.8 0.8 0.12 0 1 -0 +3 0 3.4 0.8 0.16 0 1 -0 +2.6 0 3.8 0.76 0.12 0 1 -0 +3 0 3.8 0.8 0.12 0 1 -0 +3.4 0 3.4 0.84 0.16 0 1 -0 +3 0 3.4 0.8 0.16 0 1 -0 +3.4 0 3.8 0.84 0.12 0 1 -0 +3.4 0 3.4 0.84 0.16 0 1 -0 +3 0 3.8 0.8 0.12 0 1 -0 +3.4 0 3.8 0.84 0.12 0 1 -0 +3.8 0 3.4 0.88 0.16 0 1 -0 +3.4 0 3.4 0.84 0.16 0 1 -0 +3.8 0 3.8 0.88 0.12 0 1 -0 +3.8 0 3.4 0.88 0.16 0 1 -0 +3.4 0 3.8 0.84 0.12 0 1 -0 +3.8 0 3.8 0.88 0.12 0 1 -0 +4.2 0 3.4 0.92 0.16 0 1 -0 +3.8 0 3.4 0.88 0.16 0 1 -0 +4.2 0 3.8 0.92 0.12 0 1 -0 +4.2 0 3.4 0.92 0.16 0 1 -0 +3.8 0 3.8 0.88 0.12 0 1 -0 +4.2 0 3.8 0.92 0.12 0 1 -0 +4.6 0 3.4 0.96 0.16 0 1 -0 +4.2 0 3.4 0.92 0.16 0 1 -0 +4.6 0 3.8 0.96 0.12 0 1 -0 +4.6 0 3.4 0.96 0.16 0 1 -0 +4.2 0 3.8 0.92 0.12 0 1 -0 +4.6 0 3.8 0.96 0.12 0 1 -0 +5 0 3.4 1 0.16 0 1 -0 +4.6 0 3.4 0.96 0.16 0 1 -0 +5 0 3.8 1 0.12 0 1 -0 +5 0 3.4 1 0.16 0 1 -0 +4.6 0 3.8 0.96 0.12 0 1 -0 +-5 0 4.2 0 0.08 0 1 -0 +-4.6 0 3.8 0.04 0.12 0 1 -0 +-5 0 3.8 0 0.12 0 1 -0 +-4.6 0 4.2 0.04 0.08 0 1 -0 +-4.6 0 3.8 0.04 0.12 0 1 -0 +-5 0 4.2 0 0.08 0 1 -0 +-4.6 0 4.2 0.04 0.08 0 1 -0 +-4.2 0 3.8 0.08 0.12 0 1 -0 +-4.6 0 3.8 0.04 0.12 0 1 -0 +-4.2 0 4.2 0.08 0.08 0 1 -0 +-4.2 0 3.8 0.08 0.12 0 1 -0 +-4.6 0 4.2 0.04 0.08 0 1 -0 +-4.2 0 4.2 0.08 0.08 0 1 -0 +-3.8 0 3.8 0.12 0.12 0 1 -0 +-4.2 0 3.8 0.08 0.12 0 1 -0 +-3.8 0 4.2 0.12 0.08 0 1 -0 +-3.8 0 3.8 0.12 0.12 0 1 -0 +-4.2 0 4.2 0.08 0.08 0 1 -0 +-3.8 0 4.2 0.12 0.08 0 1 -0 +-3.4 0 3.8 0.16 0.12 0 1 -0 +-3.8 0 3.8 0.12 0.12 0 1 -0 +-3.4 0 4.2 0.16 0.08 0 1 -0 +-3.4 0 3.8 0.16 0.12 0 1 -0 +-3.8 0 4.2 0.12 0.08 0 1 -0 +-3.4 0 4.2 0.16 0.08 0 1 -0 +-3 0 3.8 0.2 0.12 0 1 -0 +-3.4 0 3.8 0.16 0.12 0 1 -0 +-3 0 4.2 0.2 0.08 0 1 -0 +-3 0 3.8 0.2 0.12 0 1 -0 +-3.4 0 4.2 0.16 0.08 0 1 -0 +-3 0 4.2 0.2 0.08 0 1 -0 +-2.6 0 3.8 0.24 0.12 0 1 -0 +-3 0 3.8 0.2 0.12 0 1 -0 +-2.6 0 4.2 0.24 0.08 0 1 -0 +-2.6 0 3.8 0.24 0.12 0 1 -0 +-3 0 4.2 0.2 0.08 0 1 -0 +-2.6 0 4.2 0.24 0.08 0 1 -0 +-2.2 0 3.8 0.28 0.12 0 1 -0 +-2.6 0 3.8 0.24 0.12 0 1 -0 +-2.2 0 4.2 0.28 0.08 0 1 -0 +-2.2 0 3.8 0.28 0.12 0 1 -0 +-2.6 0 4.2 0.24 0.08 0 1 -0 +-2.2 0 4.2 0.28 0.08 0 1 -0 +-1.8 0 3.8 0.32 0.12 0 1 -0 +-2.2 0 3.8 0.28 0.12 0 1 -0 +-1.8 0 4.2 0.32 0.08 0 1 -0 +-1.8 0 3.8 0.32 0.12 0 1 -0 +-2.2 0 4.2 0.28 0.08 0 1 -0 +-1.8 0 4.2 0.32 0.08 0 1 -0 +-1.4 0 3.8 0.36 0.12 0 1 -0 +-1.8 0 3.8 0.32 0.12 0 1 -0 +-1.4 0 4.2 0.36 0.08 0 1 -0 +-1.4 0 3.8 0.36 0.12 0 1 -0 +-1.8 0 4.2 0.32 0.08 0 1 -0 +-1.4 0 4.2 0.36 0.08 0 1 -0 +-1 0 3.8 0.4 0.12 0 1 -0 +-1.4 0 3.8 0.36 0.12 0 1 -0 +-1 0 4.2 0.4 0.08 0 1 -0 +-1 0 3.8 0.4 0.12 0 1 -0 +-1.4 0 4.2 0.36 0.08 0 1 -0 +-1 0 4.2 0.4 0.08 0 1 -0 +-0.6 0 3.8 0.44 0.12 0 1 -0 +-1 0 3.8 0.4 0.12 0 1 -0 +-0.6 0 4.2 0.44 0.08 0 1 -0 +-0.6 0 3.8 0.44 0.12 0 1 -0 +-1 0 4.2 0.4 0.08 0 1 -0 +-0.6 0 4.2 0.44 0.08 0 1 -0 +-0.2 0 3.8 0.48 0.12 0 1 -0 +-0.6 0 3.8 0.44 0.12 0 1 -0 +-0.2 0 4.2 0.48 0.08 0 1 -0 +-0.2 0 3.8 0.48 0.12 0 1 -0 +-0.6 0 4.2 0.44 0.08 0 1 -0 +-0.2 0 4.2 0.48 0.08 0 1 -0 +0.2 0 3.8 0.52 0.12 0 1 -0 +-0.2 0 3.8 0.48 0.12 0 1 -0 +0.2 0 4.2 0.52 0.08 0 1 -0 +0.2 0 3.8 0.52 0.12 0 1 -0 +-0.2 0 4.2 0.48 0.08 0 1 -0 +0.2 0 4.2 0.52 0.08 0 1 -0 +0.6 0 3.8 0.56 0.12 0 1 -0 +0.2 0 3.8 0.52 0.12 0 1 -0 +0.6 0 4.2 0.56 0.08 0 1 -0 +0.6 0 3.8 0.56 0.12 0 1 -0 +0.2 0 4.2 0.52 0.08 0 1 -0 +0.6 0 4.2 0.56 0.08 0 1 -0 +1 0 3.8 0.6 0.12 0 1 -0 +0.6 0 3.8 0.56 0.12 0 1 -0 +1 0 4.2 0.6 0.08 0 1 -0 +1 0 3.8 0.6 0.12 0 1 -0 +0.6 0 4.2 0.56 0.08 0 1 -0 +1 0 4.2 0.6 0.08 0 1 -0 +1.4 0 3.8 0.64 0.12 0 1 -0 +1 0 3.8 0.6 0.12 0 1 -0 +1.4 0 4.2 0.64 0.08 0 1 -0 +1.4 0 3.8 0.64 0.12 0 1 -0 +1 0 4.2 0.6 0.08 0 1 -0 +1.4 0 4.2 0.64 0.08 0 1 -0 +1.8 0 3.8 0.68 0.12 0 1 -0 +1.4 0 3.8 0.64 0.12 0 1 -0 +1.8 0 4.2 0.68 0.08 0 1 -0 +1.8 0 3.8 0.68 0.12 0 1 -0 +1.4 0 4.2 0.64 0.08 0 1 -0 +1.8 0 4.2 0.68 0.08 0 1 -0 +2.2 0 3.8 0.72 0.12 0 1 -0 +1.8 0 3.8 0.68 0.12 0 1 -0 +2.2 0 4.2 0.72 0.08 0 1 -0 +2.2 0 3.8 0.72 0.12 0 1 -0 +1.8 0 4.2 0.68 0.08 0 1 -0 +2.2 0 4.2 0.72 0.08 0 1 -0 +2.6 0 3.8 0.76 0.12 0 1 -0 +2.2 0 3.8 0.72 0.12 0 1 -0 +2.6 0 4.2 0.76 0.08 0 1 -0 +2.6 0 3.8 0.76 0.12 0 1 -0 +2.2 0 4.2 0.72 0.08 0 1 -0 +2.6 0 4.2 0.76 0.08 0 1 -0 +3 0 3.8 0.8 0.12 0 1 -0 +2.6 0 3.8 0.76 0.12 0 1 -0 +3 0 4.2 0.8 0.08 0 1 -0 +3 0 3.8 0.8 0.12 0 1 -0 +2.6 0 4.2 0.76 0.08 0 1 -0 +3 0 4.2 0.8 0.08 0 1 -0 +3.4 0 3.8 0.84 0.12 0 1 -0 +3 0 3.8 0.8 0.12 0 1 -0 +3.4 0 4.2 0.84 0.08 0 1 -0 +3.4 0 3.8 0.84 0.12 0 1 -0 +3 0 4.2 0.8 0.08 0 1 -0 +3.4 0 4.2 0.84 0.08 0 1 -0 +3.8 0 3.8 0.88 0.12 0 1 -0 +3.4 0 3.8 0.84 0.12 0 1 -0 +3.8 0 4.2 0.88 0.08 0 1 -0 +3.8 0 3.8 0.88 0.12 0 1 -0 +3.4 0 4.2 0.84 0.08 0 1 -0 +3.8 0 4.2 0.88 0.08 0 1 -0 +4.2 0 3.8 0.92 0.12 0 1 -0 +3.8 0 3.8 0.88 0.12 0 1 -0 +4.2 0 4.2 0.92 0.08 0 1 -0 +4.2 0 3.8 0.92 0.12 0 1 -0 +3.8 0 4.2 0.88 0.08 0 1 -0 +4.2 0 4.2 0.92 0.08 0 1 -0 +4.6 0 3.8 0.96 0.12 0 1 -0 +4.2 0 3.8 0.92 0.12 0 1 -0 +4.6 0 4.2 0.96 0.08 0 1 -0 +4.6 0 3.8 0.96 0.12 0 1 -0 +4.2 0 4.2 0.92 0.08 0 1 -0 +4.6 0 4.2 0.96 0.08 0 1 -0 +5 0 3.8 1 0.12 0 1 -0 +4.6 0 3.8 0.96 0.12 0 1 -0 +5 0 4.2 1 0.08 0 1 -0 +5 0 3.8 1 0.12 0 1 -0 +4.6 0 4.2 0.96 0.08 0 1 -0 +-5 0 4.6 0 0.04 0 1 -0 +-4.6 0 4.2 0.04 0.08 0 1 -0 +-5 0 4.2 0 0.08 0 1 -0 +-4.6 0 4.6 0.04 0.04 0 1 -0 +-4.6 0 4.2 0.04 0.08 0 1 -0 +-5 0 4.6 0 0.04 0 1 -0 +-4.6 0 4.6 0.04 0.04 0 1 -0 +-4.2 0 4.2 0.08 0.08 0 1 -0 +-4.6 0 4.2 0.04 0.08 0 1 -0 +-4.2 0 4.6 0.08 0.04 0 1 -0 +-4.2 0 4.2 0.08 0.08 0 1 -0 +-4.6 0 4.6 0.04 0.04 0 1 -0 +-4.2 0 4.6 0.08 0.04 0 1 -0 +-3.8 0 4.2 0.12 0.08 0 1 -0 +-4.2 0 4.2 0.08 0.08 0 1 -0 +-3.8 0 4.6 0.12 0.04 0 1 -0 +-3.8 0 4.2 0.12 0.08 0 1 -0 +-4.2 0 4.6 0.08 0.04 0 1 -0 +-3.8 0 4.6 0.12 0.04 0 1 -0 +-3.4 0 4.2 0.16 0.08 0 1 -0 +-3.8 0 4.2 0.12 0.08 0 1 -0 +-3.4 0 4.6 0.16 0.04 0 1 -0 +-3.4 0 4.2 0.16 0.08 0 1 -0 +-3.8 0 4.6 0.12 0.04 0 1 -0 +-3.4 0 4.6 0.16 0.04 0 1 -0 +-3 0 4.2 0.2 0.08 0 1 -0 +-3.4 0 4.2 0.16 0.08 0 1 -0 +-3 0 4.6 0.2 0.04 0 1 -0 +-3 0 4.2 0.2 0.08 0 1 -0 +-3.4 0 4.6 0.16 0.04 0 1 -0 +-3 0 4.6 0.2 0.04 0 1 -0 +-2.6 0 4.2 0.24 0.08 0 1 -0 +-3 0 4.2 0.2 0.08 0 1 -0 +-2.6 0 4.6 0.24 0.04 0 1 -0 +-2.6 0 4.2 0.24 0.08 0 1 -0 +-3 0 4.6 0.2 0.04 0 1 -0 +-2.6 0 4.6 0.24 0.04 0 1 -0 +-2.2 0 4.2 0.28 0.08 0 1 -0 +-2.6 0 4.2 0.24 0.08 0 1 -0 +-2.2 0 4.6 0.28 0.04 0 1 -0 +-2.2 0 4.2 0.28 0.08 0 1 -0 +-2.6 0 4.6 0.24 0.04 0 1 -0 +-2.2 0 4.6 0.28 0.04 0 1 -0 +-1.8 0 4.2 0.32 0.08 0 1 -0 +-2.2 0 4.2 0.28 0.08 0 1 -0 +-1.8 0 4.6 0.32 0.04 0 1 -0 +-1.8 0 4.2 0.32 0.08 0 1 -0 +-2.2 0 4.6 0.28 0.04 0 1 -0 +-1.8 0 4.6 0.32 0.04 0 1 -0 +-1.4 0 4.2 0.36 0.08 0 1 -0 +-1.8 0 4.2 0.32 0.08 0 1 -0 +-1.4 0 4.6 0.36 0.04 0 1 -0 +-1.4 0 4.2 0.36 0.08 0 1 -0 +-1.8 0 4.6 0.32 0.04 0 1 -0 +-1.4 0 4.6 0.36 0.04 0 1 -0 +-1 0 4.2 0.4 0.08 0 1 -0 +-1.4 0 4.2 0.36 0.08 0 1 -0 +-1 0 4.6 0.4 0.04 0 1 -0 +-1 0 4.2 0.4 0.08 0 1 -0 +-1.4 0 4.6 0.36 0.04 0 1 -0 +-1 0 4.6 0.4 0.04 0 1 -0 +-0.6 0 4.2 0.44 0.08 0 1 -0 +-1 0 4.2 0.4 0.08 0 1 -0 +-0.6 0 4.6 0.44 0.04 0 1 -0 +-0.6 0 4.2 0.44 0.08 0 1 -0 +-1 0 4.6 0.4 0.04 0 1 -0 +-0.6 0 4.6 0.44 0.04 0 1 -0 +-0.2 0 4.2 0.48 0.08 0 1 -0 +-0.6 0 4.2 0.44 0.08 0 1 -0 +-0.2 0 4.6 0.48 0.04 0 1 -0 +-0.2 0 4.2 0.48 0.08 0 1 -0 +-0.6 0 4.6 0.44 0.04 0 1 -0 +-0.2 0 4.6 0.48 0.04 0 1 -0 +0.2 0 4.2 0.52 0.08 0 1 -0 +-0.2 0 4.2 0.48 0.08 0 1 -0 +0.2 0 4.6 0.52 0.04 0 1 -0 +0.2 0 4.2 0.52 0.08 0 1 -0 +-0.2 0 4.6 0.48 0.04 0 1 -0 +0.2 0 4.6 0.52 0.04 0 1 -0 +0.6 0 4.2 0.56 0.08 0 1 -0 +0.2 0 4.2 0.52 0.08 0 1 -0 +0.6 0 4.6 0.56 0.04 0 1 -0 +0.6 0 4.2 0.56 0.08 0 1 -0 +0.2 0 4.6 0.52 0.04 0 1 -0 +0.6 0 4.6 0.56 0.04 0 1 -0 +1 0 4.2 0.6 0.08 0 1 -0 +0.6 0 4.2 0.56 0.08 0 1 -0 +1 0 4.6 0.6 0.04 0 1 -0 +1 0 4.2 0.6 0.08 0 1 -0 +0.6 0 4.6 0.56 0.04 0 1 -0 +1 0 4.6 0.6 0.04 0 1 -0 +1.4 0 4.2 0.64 0.08 0 1 -0 +1 0 4.2 0.6 0.08 0 1 -0 +1.4 0 4.6 0.64 0.04 0 1 -0 +1.4 0 4.2 0.64 0.08 0 1 -0 +1 0 4.6 0.6 0.04 0 1 -0 +1.4 0 4.6 0.64 0.04 0 1 -0 +1.8 0 4.2 0.68 0.08 0 1 -0 +1.4 0 4.2 0.64 0.08 0 1 -0 +1.8 0 4.6 0.68 0.04 0 1 -0 +1.8 0 4.2 0.68 0.08 0 1 -0 +1.4 0 4.6 0.64 0.04 0 1 -0 +1.8 0 4.6 0.68 0.04 0 1 -0 +2.2 0 4.2 0.72 0.08 0 1 -0 +1.8 0 4.2 0.68 0.08 0 1 -0 +2.2 0 4.6 0.72 0.04 0 1 -0 +2.2 0 4.2 0.72 0.08 0 1 -0 +1.8 0 4.6 0.68 0.04 0 1 -0 +2.2 0 4.6 0.72 0.04 0 1 -0 +2.6 0 4.2 0.76 0.08 0 1 -0 +2.2 0 4.2 0.72 0.08 0 1 -0 +2.6 0 4.6 0.76 0.04 0 1 -0 +2.6 0 4.2 0.76 0.08 0 1 -0 +2.2 0 4.6 0.72 0.04 0 1 -0 +2.6 0 4.6 0.76 0.04 0 1 -0 +3 0 4.2 0.8 0.08 0 1 -0 +2.6 0 4.2 0.76 0.08 0 1 -0 +3 0 4.6 0.8 0.04 0 1 -0 +3 0 4.2 0.8 0.08 0 1 -0 +2.6 0 4.6 0.76 0.04 0 1 -0 +3 0 4.6 0.8 0.04 0 1 -0 +3.4 0 4.2 0.84 0.08 0 1 -0 +3 0 4.2 0.8 0.08 0 1 -0 +3.4 0 4.6 0.84 0.04 0 1 -0 +3.4 0 4.2 0.84 0.08 0 1 -0 +3 0 4.6 0.8 0.04 0 1 -0 +3.4 0 4.6 0.84 0.04 0 1 -0 +3.8 0 4.2 0.88 0.08 0 1 -0 +3.4 0 4.2 0.84 0.08 0 1 -0 +3.8 0 4.6 0.88 0.04 0 1 -0 +3.8 0 4.2 0.88 0.08 0 1 -0 +3.4 0 4.6 0.84 0.04 0 1 -0 +3.8 0 4.6 0.88 0.04 0 1 -0 +4.2 0 4.2 0.92 0.08 0 1 -0 +3.8 0 4.2 0.88 0.08 0 1 -0 +4.2 0 4.6 0.92 0.04 0 1 -0 +4.2 0 4.2 0.92 0.08 0 1 -0 +3.8 0 4.6 0.88 0.04 0 1 -0 +4.2 0 4.6 0.92 0.04 0 1 -0 +4.6 0 4.2 0.96 0.08 0 1 -0 +4.2 0 4.2 0.92 0.08 0 1 -0 +4.6 0 4.6 0.96 0.04 0 1 -0 +4.6 0 4.2 0.96 0.08 0 1 -0 +4.2 0 4.6 0.92 0.04 0 1 -0 +4.6 0 4.6 0.96 0.04 0 1 -0 +5 0 4.2 1 0.08 0 1 -0 +4.6 0 4.2 0.96 0.08 0 1 -0 +5 0 4.6 1 0.04 0 1 -0 +5 0 4.2 1 0.08 0 1 -0 +4.6 0 4.6 0.96 0.04 0 1 -0 +-5 0 5 0 0 0 1 -0 +-4.6 0 4.6 0.04 0.04 0 1 -0 +-5 0 4.6 0 0.04 0 1 -0 +-4.6 0 5 0.04 0 0 1 -0 +-4.6 0 4.6 0.04 0.04 0 1 -0 +-5 0 5 0 0 0 1 -0 +-4.6 0 5 0.04 0 0 1 -0 +-4.2 0 4.6 0.08 0.04 0 1 -0 +-4.6 0 4.6 0.04 0.04 0 1 -0 +-4.2 0 5 0.08 0 0 1 -0 +-4.2 0 4.6 0.08 0.04 0 1 -0 +-4.6 0 5 0.04 0 0 1 -0 +-4.2 0 5 0.08 0 0 1 -0 +-3.8 0 4.6 0.12 0.04 0 1 -0 +-4.2 0 4.6 0.08 0.04 0 1 -0 +-3.8 0 5 0.12 0 0 1 -0 +-3.8 0 4.6 0.12 0.04 0 1 -0 +-4.2 0 5 0.08 0 0 1 -0 +-3.8 0 5 0.12 0 0 1 -0 +-3.4 0 4.6 0.16 0.04 0 1 -0 +-3.8 0 4.6 0.12 0.04 0 1 -0 +-3.4 0 5 0.16 0 0 1 -0 +-3.4 0 4.6 0.16 0.04 0 1 -0 +-3.8 0 5 0.12 0 0 1 -0 +-3.4 0 5 0.16 0 0 1 -0 +-3 0 4.6 0.2 0.04 0 1 -0 +-3.4 0 4.6 0.16 0.04 0 1 -0 +-3 0 5 0.2 0 0 1 -0 +-3 0 4.6 0.2 0.04 0 1 -0 +-3.4 0 5 0.16 0 0 1 -0 +-3 0 5 0.2 0 0 1 -0 +-2.6 0 4.6 0.24 0.04 0 1 -0 +-3 0 4.6 0.2 0.04 0 1 -0 +-2.6 0 5 0.24 0 0 1 -0 +-2.6 0 4.6 0.24 0.04 0 1 -0 +-3 0 5 0.2 0 0 1 -0 +-2.6 0 5 0.24 0 0 1 -0 +-2.2 0 4.6 0.28 0.04 0 1 -0 +-2.6 0 4.6 0.24 0.04 0 1 -0 +-2.2 0 5 0.28 0 0 1 -0 +-2.2 0 4.6 0.28 0.04 0 1 -0 +-2.6 0 5 0.24 0 0 1 -0 +-2.2 0 5 0.28 0 0 1 -0 +-1.8 0 4.6 0.32 0.04 0 1 -0 +-2.2 0 4.6 0.28 0.04 0 1 -0 +-1.8 0 5 0.32 0 0 1 -0 +-1.8 0 4.6 0.32 0.04 0 1 -0 +-2.2 0 5 0.28 0 0 1 -0 +-1.8 0 5 0.32 0 0 1 -0 +-1.4 0 4.6 0.36 0.04 0 1 -0 +-1.8 0 4.6 0.32 0.04 0 1 -0 +-1.4 0 5 0.36 0 0 1 -0 +-1.4 0 4.6 0.36 0.04 0 1 -0 +-1.8 0 5 0.32 0 0 1 -0 +-1.4 0 5 0.36 0 0 1 -0 +-1 0 4.6 0.4 0.04 0 1 -0 +-1.4 0 4.6 0.36 0.04 0 1 -0 +-1 0 5 0.4 0 0 1 -0 +-1 0 4.6 0.4 0.04 0 1 -0 +-1.4 0 5 0.36 0 0 1 -0 +-1 0 5 0.4 0 0 1 -0 +-0.6 0 4.6 0.44 0.04 0 1 -0 +-1 0 4.6 0.4 0.04 0 1 -0 +-0.6 0 5 0.44 0 0 1 -0 +-0.6 0 4.6 0.44 0.04 0 1 -0 +-1 0 5 0.4 0 0 1 -0 +-0.6 0 5 0.44 0 0 1 -0 +-0.2 0 4.6 0.48 0.04 0 1 -0 +-0.6 0 4.6 0.44 0.04 0 1 -0 +-0.2 0 5 0.48 0 0 1 -0 +-0.2 0 4.6 0.48 0.04 0 1 -0 +-0.6 0 5 0.44 0 0 1 -0 +-0.2 0 5 0.48 0 0 1 -0 +0.2 0 4.6 0.52 0.04 0 1 -0 +-0.2 0 4.6 0.48 0.04 0 1 -0 +0.2 0 5 0.52 0 0 1 -0 +0.2 0 4.6 0.52 0.04 0 1 -0 +-0.2 0 5 0.48 0 0 1 -0 +0.2 0 5 0.52 0 0 1 -0 +0.6 0 4.6 0.56 0.04 0 1 -0 +0.2 0 4.6 0.52 0.04 0 1 -0 +0.6 0 5 0.56 0 0 1 -0 +0.6 0 4.6 0.56 0.04 0 1 -0 +0.2 0 5 0.52 0 0 1 -0 +0.6 0 5 0.56 0 0 1 -0 +1 0 4.6 0.6 0.04 0 1 -0 +0.6 0 4.6 0.56 0.04 0 1 -0 +1 0 5 0.6 0 0 1 -0 +1 0 4.6 0.6 0.04 0 1 -0 +0.6 0 5 0.56 0 0 1 -0 +1 0 5 0.6 0 0 1 -0 +1.4 0 4.6 0.64 0.04 0 1 -0 +1 0 4.6 0.6 0.04 0 1 -0 +1.4 0 5 0.64 0 0 1 -0 +1.4 0 4.6 0.64 0.04 0 1 -0 +1 0 5 0.6 0 0 1 -0 +1.4 0 5 0.64 0 0 1 -0 +1.8 0 4.6 0.68 0.04 0 1 -0 +1.4 0 4.6 0.64 0.04 0 1 -0 +1.8 0 5 0.68 0 0 1 -0 +1.8 0 4.6 0.68 0.04 0 1 -0 +1.4 0 5 0.64 0 0 1 -0 +1.8 0 5 0.68 0 0 1 -0 +2.2 0 4.6 0.72 0.04 0 1 -0 +1.8 0 4.6 0.68 0.04 0 1 -0 +2.2 0 5 0.72 0 0 1 -0 +2.2 0 4.6 0.72 0.04 0 1 -0 +1.8 0 5 0.68 0 0 1 -0 +2.2 0 5 0.72 0 0 1 -0 +2.6 0 4.6 0.76 0.04 0 1 -0 +2.2 0 4.6 0.72 0.04 0 1 -0 +2.6 0 5 0.76 0 0 1 -0 +2.6 0 4.6 0.76 0.04 0 1 -0 +2.2 0 5 0.72 0 0 1 -0 +2.6 0 5 0.76 0 0 1 -0 +3 0 4.6 0.8 0.04 0 1 -0 +2.6 0 4.6 0.76 0.04 0 1 -0 +3 0 5 0.8 0 0 1 -0 +3 0 4.6 0.8 0.04 0 1 -0 +2.6 0 5 0.76 0 0 1 -0 +3 0 5 0.8 0 0 1 -0 +3.4 0 4.6 0.84 0.04 0 1 -0 +3 0 4.6 0.8 0.04 0 1 -0 +3.4 0 5 0.84 0 0 1 -0 +3.4 0 4.6 0.84 0.04 0 1 -0 +3 0 5 0.8 0 0 1 -0 +3.4 0 5 0.84 0 0 1 -0 +3.8 0 4.6 0.88 0.04 0 1 -0 +3.4 0 4.6 0.84 0.04 0 1 -0 +3.8 0 5 0.88 0 0 1 -0 +3.8 0 4.6 0.88 0.04 0 1 -0 +3.4 0 5 0.84 0 0 1 -0 +3.8 0 5 0.88 0 0 1 -0 +4.2 0 4.6 0.92 0.04 0 1 -0 +3.8 0 4.6 0.88 0.04 0 1 -0 +4.2 0 5 0.92 0 0 1 -0 +4.2 0 4.6 0.92 0.04 0 1 -0 +3.8 0 5 0.88 0 0 1 -0 +4.2 0 5 0.92 0 0 1 -0 +4.6 0 4.6 0.96 0.04 0 1 -0 +4.2 0 4.6 0.92 0.04 0 1 -0 +4.6 0 5 0.96 0 0 1 -0 +4.6 0 4.6 0.96 0.04 0 1 -0 +4.2 0 5 0.92 0 0 1 -0 +4.6 0 5 0.96 0 0 1 -0 +5 0 4.6 1 0.04 0 1 -0 +4.6 0 4.6 0.96 0.04 0 1 -0 +5 0 5 1 0 0 1 -0 +5 0 4.6 1 0.04 0 1 -0 +4.6 0 5 0.96 0 0 1 -0 diff --git a/enginecustom/shader-error.txt b/enginecustom/shader-error.txt index 4c786cf..a0b1877 100644 Binary files a/enginecustom/shader-error.txt and b/enginecustom/shader-error.txt differ diff --git a/enginecustom/sphere.txt b/enginecustom/sphere.txt new file mode 100644 index 0000000..724cec3 --- /dev/null +++ b/enginecustom/sphere.txt @@ -0,0 +1,14704 @@ +Vertex Count: 14700 + +Data: + +0.124345 -0.992115 0.015708 1.04003 0.996057 0.124426 -0.992115 0.015059 +0.060818 -0.998027 0.015615 1.08003 0.999013 0.067186 -0.997612 0.016026 +0.062295 -0.998027 0.00787 1.04003 0.999013 0.068665 -0.997612 0.007485 +0.121396 -0.992115 0.031169 1.08003 0.996057 0.121558 -0.992115 0.03053 +0.060818 -0.998027 0.015615 1.08003 0.999013 0.067186 -0.997612 0.016026 +0.124345 -0.992115 0.015708 1.04003 0.996057 0.124426 -0.992115 0.015059 +0.121396 -0.992115 0.031169 1.08003 0.996057 0.121558 -0.992115 0.03053 +0.058381 -0.998027 0.023115 1.12003 0.999013 0.064648 -0.997612 0.024322 +0.060818 -0.998027 0.015615 1.08003 0.999013 0.067186 -0.997612 0.016026 +0.116532 -0.992115 0.046138 1.12003 0.996057 0.116772 -0.992114 0.045533 +0.058381 -0.998027 0.023115 1.12003 0.999013 0.064648 -0.997612 0.024322 +0.121396 -0.992115 0.031169 1.08003 0.996057 0.121558 -0.992115 0.03053 +0.116532 -0.992115 0.046138 1.12003 0.996057 0.116772 -0.992114 0.045533 +0.055024 -0.998027 0.03025 1.16003 0.999013 0.06109 -0.997612 0.032235 +0.058381 -0.998027 0.023115 1.12003 0.999013 0.064648 -0.997612 0.024322 +0.10983 -0.992115 0.06038 1.16003 0.996057 0.110145 -0.992115 0.059806 +0.055024 -0.998027 0.03025 1.16003 0.999013 0.06109 -0.997612 0.032235 +0.116532 -0.992115 0.046138 1.12003 0.996057 0.116772 -0.992114 0.045533 +0.10983 -0.992115 0.06038 1.16003 0.996057 0.110145 -0.992115 0.059806 +0.050799 -0.998027 0.036907 1.20003 0.999013 0.056568 -0.997612 0.039636 +0.055024 -0.998027 0.03025 1.16003 0.999013 0.06109 -0.997612 0.032235 +0.101397 -0.992115 0.073669 1.20003 0.996057 0.101781 -0.992115 0.07314 +0.050799 -0.998027 0.036907 1.20003 0.999013 0.056568 -0.997612 0.039636 +0.10983 -0.992115 0.06038 1.16003 0.996057 0.110145 -0.992115 0.059806 +0.101397 -0.992115 0.073669 1.20003 0.996057 0.101781 -0.992115 0.07314 +0.045772 -0.998027 0.042983 1.24003 0.999013 0.051155 -0.997612 0.046413 +0.050799 -0.998027 0.036907 1.20003 0.999013 0.056568 -0.997612 0.039636 +0.091364 -0.992115 0.085797 1.24003 0.996057 0.091811 -0.992115 0.085319 +0.045772 -0.998027 0.042983 1.24003 0.999013 0.051155 -0.997612 0.046413 +0.101397 -0.992115 0.073669 1.20003 0.996057 0.101781 -0.992115 0.07314 +0.091364 -0.992115 0.085797 1.24003 0.996057 0.091811 -0.992115 0.085319 +0.040024 -0.998027 0.048381 1.28003 0.999013 0.044934 -0.997612 0.052457 +0.045772 -0.998027 0.042983 1.24003 0.999013 0.051155 -0.997612 0.046413 +0.07989 -0.992115 0.096571 1.28003 0.996057 0.080394 -0.992115 0.096153 +0.040024 -0.998027 0.048381 1.28003 0.999013 0.044934 -0.997612 0.052457 +0.091364 -0.992115 0.085797 1.24003 0.996057 0.091811 -0.992115 0.085319 +0.07989 -0.992115 0.096571 1.28003 0.996057 0.080394 -0.992115 0.096153 +0.033645 -0.998027 0.053016 1.32003 0.999013 0.038005 -0.997612 0.057675 +0.040024 -0.998027 0.048381 1.28003 0.999013 0.044934 -0.997612 0.052457 +0.067157 -0.992115 0.105822 1.32003 0.996057 0.067709 -0.992115 0.105471 +0.033645 -0.998027 0.053016 1.32003 0.999013 0.038005 -0.997612 0.057675 +0.07989 -0.992115 0.096571 1.28003 0.996057 0.080394 -0.992115 0.096153 +0.067157 -0.992115 0.105822 1.32003 0.996057 0.067709 -0.992115 0.105471 +0.026735 -0.998027 0.056815 1.36003 0.999013 0.030477 -0.997612 0.061984 +0.033645 -0.998027 0.053016 1.32003 0.999013 0.038005 -0.997612 0.057675 +0.053364 -0.992115 0.113405 1.36003 0.996057 0.053956 -0.992115 0.113126 +0.026735 -0.998027 0.056815 1.36003 0.999013 0.030477 -0.997612 0.061984 +0.067157 -0.992115 0.105822 1.32003 0.996057 0.067709 -0.992115 0.105471 +0.053364 -0.992115 0.113405 1.36003 0.996057 0.053956 -0.992115 0.113126 +0.019403 -0.998027 0.059717 1.40003 0.999013 0.022468 -0.997612 0.065316 +0.026735 -0.998027 0.056815 1.36003 0.999013 0.030477 -0.997612 0.061984 +0.03873 -0.992115 0.119199 1.40003 0.996057 0.039352 -0.992114 0.118998 +0.019403 -0.998027 0.059717 1.40003 0.999013 0.022468 -0.997612 0.065316 +0.053364 -0.992115 0.113405 1.36003 0.996057 0.053956 -0.992115 0.113126 +0.03873 -0.992115 0.119199 1.40003 0.996057 0.039352 -0.992114 0.118998 +0.011766 -0.998027 0.061678 1.44003 0.999013 0.014105 -0.997612 0.067618 +0.019403 -0.998027 0.059717 1.40003 0.999013 0.022468 -0.997612 0.065316 +0.023485 -0.992115 0.123113 1.44003 0.996057 0.024127 -0.992114 0.122992 +0.011766 -0.998027 0.061678 1.44003 0.999013 0.014105 -0.997612 0.067618 +0.03873 -0.992115 0.119199 1.40003 0.996057 0.039352 -0.992114 0.118998 +0.023485 -0.992115 0.123113 1.44003 0.996057 0.024127 -0.992114 0.122992 +0.003943 -0.998027 0.062667 1.48003 0.999013 0.005519 -0.997612 0.068852 +0.011766 -0.998027 0.061678 1.44003 0.999013 0.014105 -0.997612 0.067618 +0.00787 -0.992115 0.125086 1.48003 0.996057 0.008522 -0.992115 0.125044 +0.003943 -0.998027 0.062667 1.48003 0.999013 0.005519 -0.997612 0.068852 +0.023485 -0.992115 0.123113 1.44003 0.996057 0.024127 -0.992114 0.122992 +0.00787 -0.992115 0.125086 1.48003 0.996057 0.008522 -0.992115 0.125044 +-0.003943 -0.998027 0.062667 1.52003 0.999013 -0.003154 -0.997612 0.069 +0.003943 -0.998027 0.062667 1.48003 0.999013 0.005519 -0.997612 0.068852 +-0.00787 -0.992115 0.125086 1.52003 0.996057 -0.007217 -0.992115 0.125126 +-0.003943 -0.998027 0.062667 1.52003 0.999013 -0.003154 -0.997612 0.069 +0.00787 -0.992115 0.125086 1.48003 0.996057 0.008522 -0.992115 0.125044 +-0.00787 -0.992115 0.125086 -0.479969 0.996057 -0.007217 -0.992115 0.125126 +-0.011766 -0.998027 0.061678 -0.439969 0.999013 -0.011777 -0.997612 0.068061 +-0.003943 -0.998027 0.062667 -0.47997 0.999013 -0.003154 -0.997612 0.069 +-0.023485 -0.992115 0.123113 -0.439969 0.996057 -0.022843 -0.992115 0.123235 +-0.011766 -0.998027 0.061678 -0.439969 0.999013 -0.011777 -0.997612 0.068061 +-0.00787 -0.992115 0.125086 -0.479969 0.996057 -0.007217 -0.992115 0.125126 +-0.023485 -0.992115 0.123113 -0.439969 0.996057 -0.022843 -0.992115 0.123235 +-0.019403 -0.998027 0.059717 -0.399969 0.999013 -0.020214 -0.997612 0.066048 +-0.011766 -0.998027 0.061678 -0.439969 0.999013 -0.011777 -0.997612 0.068061 +-0.03873 -0.992115 0.119199 -0.399969 0.996057 -0.038108 -0.992115 0.1194 +-0.019403 -0.998027 0.059717 -0.399969 0.999013 -0.020214 -0.997612 0.066048 +-0.023485 -0.992115 0.123113 -0.439969 0.996057 -0.022843 -0.992115 0.123235 +-0.03873 -0.992115 0.119199 -0.399969 0.996057 -0.038108 -0.992115 0.1194 +-0.026735 -0.998027 0.056815 -0.359969 0.999013 -0.028333 -0.997612 0.062993 +-0.019403 -0.998027 0.059717 -0.399969 0.999013 -0.020214 -0.997612 0.066048 +-0.053364 -0.992115 0.113405 -0.359969 0.996057 -0.052773 -0.992115 0.113683 +-0.026735 -0.998027 0.056815 -0.359969 0.999013 -0.028333 -0.997612 0.062993 +-0.03873 -0.992115 0.119199 -0.399969 0.996057 -0.038108 -0.992115 0.1194 +-0.053364 -0.992115 0.113405 -0.359969 0.996057 -0.052773 -0.992115 0.113683 +-0.033645 -0.998027 0.053016 -0.319969 0.999013 -0.036005 -0.997612 0.058947 +-0.026735 -0.998027 0.056815 -0.359969 0.999013 -0.028333 -0.997612 0.062993 +-0.067157 -0.992115 0.105822 -0.319968 0.996057 -0.066605 -0.992115 0.106173 +-0.033645 -0.998027 0.053016 -0.319969 0.999013 -0.036005 -0.997612 0.058947 +-0.053364 -0.992115 0.113405 -0.359969 0.996057 -0.052773 -0.992115 0.113683 +-0.067157 -0.992115 0.105822 -0.319968 0.996057 -0.066605 -0.992115 0.106173 +-0.040024 -0.998027 0.048381 -0.279968 0.999013 -0.043109 -0.997612 0.053967 +-0.033645 -0.998027 0.053016 -0.319969 0.999013 -0.036005 -0.997612 0.058947 +-0.07989 -0.992115 0.096571 -0.279968 0.996057 -0.079386 -0.992115 0.096986 +-0.040024 -0.998027 0.048381 -0.279968 0.999013 -0.043109 -0.997612 0.053967 +-0.067157 -0.992115 0.105822 -0.319968 0.996057 -0.066605 -0.992115 0.106173 +-0.07989 -0.992115 0.096571 -0.279968 0.996057 -0.079386 -0.992115 0.096986 +-0.045772 -0.998027 0.042983 -0.239968 0.999013 -0.049533 -0.997612 0.048139 +-0.040024 -0.998027 0.048381 -0.279968 0.999013 -0.043109 -0.997612 0.053967 +-0.091364 -0.992115 0.085797 -0.239968 0.996057 -0.090916 -0.992114 0.086274 +-0.045772 -0.998027 0.042983 -0.239968 0.999013 -0.049533 -0.997612 0.048139 +-0.07989 -0.992115 0.096571 -0.279968 0.996057 -0.079386 -0.992115 0.096986 +-0.091364 -0.992115 0.085797 -0.239968 0.996057 -0.090916 -0.992114 0.086274 +-0.050799 -0.998027 0.036907 -0.199968 0.999013 -0.055176 -0.997612 0.041552 +-0.045772 -0.998027 0.042983 -0.239968 0.999013 -0.049533 -0.997612 0.048139 +-0.101397 -0.992115 0.073669 -0.199968 0.996057 -0.101012 -0.992115 0.074197 +-0.050799 -0.998027 0.036907 -0.199968 0.999013 -0.055176 -0.997612 0.041552 +-0.091364 -0.992115 0.085797 -0.239968 0.996057 -0.090916 -0.992114 0.086274 +-0.101397 -0.992115 0.073669 -0.199968 0.996057 -0.101012 -0.992115 0.074197 +-0.055024 -0.998027 0.03025 -0.159968 0.999013 -0.059948 -0.997612 0.034307 +-0.050799 -0.998027 0.036907 -0.199968 0.999013 -0.055176 -0.997612 0.041552 +-0.10983 -0.992115 0.06038 -0.159968 0.996057 -0.109515 -0.992115 0.060953 +-0.055024 -0.998027 0.03025 -0.159968 0.999013 -0.059948 -0.997612 0.034307 +-0.101397 -0.992115 0.073669 -0.199968 0.996057 -0.101012 -0.992115 0.074197 +-0.10983 -0.992115 0.06038 -0.159968 0.996057 -0.109515 -0.992115 0.060953 +-0.058381 -0.998027 0.023115 -0.119967 0.999013 -0.063776 -0.997612 0.026525 +-0.055024 -0.998027 0.03025 -0.159968 0.999013 -0.059948 -0.997612 0.034307 +-0.116532 -0.992115 0.046138 -0.119968 0.996057 -0.116291 -0.992115 0.046745 +-0.058381 -0.998027 0.023115 -0.119967 0.999013 -0.063776 -0.997612 0.026525 +-0.10983 -0.992115 0.06038 -0.159968 0.996057 -0.109515 -0.992115 0.060953 +-0.116532 -0.992115 0.046138 -0.119968 0.996057 -0.116291 -0.992115 0.046745 +-0.060818 -0.998027 0.015615 -0.079967 0.999013 -0.066597 -0.997612 0.01832 +-0.058381 -0.998027 0.023115 -0.119967 0.999013 -0.063776 -0.997612 0.026525 +-0.121396 -0.992115 0.031169 -0.079968 0.996057 -0.121233 -0.992115 0.031801 +-0.060818 -0.998027 0.015615 -0.079967 0.999013 -0.066597 -0.997612 0.01832 +-0.116532 -0.992115 0.046138 -0.119968 0.996057 -0.116291 -0.992115 0.046745 +-0.121396 -0.992115 0.031169 -0.079968 0.996057 -0.121233 -0.992115 0.031801 +-0.062295 -0.998027 0.00787 -0.039967 0.999013 -0.068368 -0.997612 0.009832 +-0.060818 -0.998027 0.015615 -0.079967 0.999013 -0.066597 -0.997612 0.01832 +-0.124345 -0.992115 0.015708 -0.039968 0.996057 -0.124263 -0.992115 0.016357 +-0.062295 -0.998027 0.00787 -0.039967 0.999013 -0.068368 -0.997612 0.009832 +-0.121396 -0.992115 0.031169 -0.079968 0.996057 -0.121233 -0.992115 0.031801 +-0.124345 -0.992115 0.015708 -0.039968 0.996057 -0.124263 -0.992115 0.016357 +-0.062791 -0.998027 -0 3.3e-005 0.999013 -0.069061 -0.997612 0.001184 +-0.062295 -0.998027 0.00787 -0.039967 0.999013 -0.068368 -0.997612 0.009832 +-0.125333 -0.992115 -0 3.3e-005 0.996057 -0.125333 -0.992115 0.000653 +-0.062791 -0.998027 -0 3.3e-005 0.999013 -0.069061 -0.997612 0.001184 +-0.124345 -0.992115 0.015708 -0.039968 0.996057 -0.124263 -0.992115 0.016357 +-0.125333 -0.992115 -0 3.3e-005 0.996057 -0.125333 -0.992115 0.000653 +-0.062295 -0.998027 -0.00787 0.040033 0.999013 -0.068665 -0.997612 -0.007482 +-0.062791 -0.998027 -0 3.3e-005 0.999013 -0.069061 -0.997612 0.001184 +-0.124345 -0.992115 -0.015708 0.040033 0.996057 -0.124426 -0.992115 -0.015059 +-0.062295 -0.998027 -0.00787 0.040033 0.999013 -0.068665 -0.997612 -0.007482 +-0.125333 -0.992115 -0 3.3e-005 0.996057 -0.125333 -0.992115 0.000653 +-0.124345 -0.992115 -0.015708 0.040033 0.996057 -0.124426 -0.992115 -0.015059 +-0.060818 -0.998027 -0.015615 0.080034 0.999013 -0.067186 -0.997612 -0.016022 +-0.062295 -0.998027 -0.00787 0.040033 0.999013 -0.068665 -0.997612 -0.007482 +-0.121396 -0.992115 -0.031169 0.080033 0.996057 -0.121558 -0.992115 -0.03053 +-0.060818 -0.998027 -0.015615 0.080034 0.999013 -0.067186 -0.997612 -0.016022 +-0.124345 -0.992115 -0.015708 0.040033 0.996057 -0.124426 -0.992115 -0.015059 +-0.121396 -0.992115 -0.031169 0.080033 0.996057 -0.121558 -0.992115 -0.03053 +-0.058381 -0.998027 -0.023115 0.120034 0.999013 -0.064648 -0.997612 -0.024321 +-0.060818 -0.998027 -0.015615 0.080034 0.999013 -0.067186 -0.997612 -0.016022 +-0.116532 -0.992115 -0.046138 0.120033 0.996057 -0.116772 -0.992114 -0.045534 +-0.058381 -0.998027 -0.023115 0.120034 0.999013 -0.064648 -0.997612 -0.024321 +-0.121396 -0.992115 -0.031169 0.080033 0.996057 -0.121558 -0.992115 -0.03053 +-0.116532 -0.992115 -0.046138 0.120033 0.996057 -0.116772 -0.992114 -0.045534 +-0.055024 -0.998027 -0.03025 0.160034 0.999013 -0.06109 -0.997612 -0.032235 +-0.058381 -0.998027 -0.023115 0.120034 0.999013 -0.064648 -0.997612 -0.024321 +-0.10983 -0.992115 -0.06038 0.160033 0.996057 -0.110145 -0.992115 -0.059806 +-0.055024 -0.998027 -0.03025 0.160034 0.999013 -0.06109 -0.997612 -0.032235 +-0.116532 -0.992115 -0.046138 0.120033 0.996057 -0.116772 -0.992114 -0.045534 +-0.10983 -0.992115 -0.06038 0.160033 0.996057 -0.110145 -0.992115 -0.059806 +-0.050799 -0.998027 -0.036907 0.200034 0.999013 -0.056568 -0.997612 -0.039636 +-0.055024 -0.998027 -0.03025 0.160034 0.999013 -0.06109 -0.997612 -0.032235 +-0.101397 -0.992115 -0.073669 0.200033 0.996057 -0.101781 -0.992115 -0.07314 +-0.050799 -0.998027 -0.036907 0.200034 0.999013 -0.056568 -0.997612 -0.039636 +-0.10983 -0.992115 -0.06038 0.160033 0.996057 -0.110145 -0.992115 -0.059806 +-0.101397 -0.992115 -0.073669 0.200033 0.996057 -0.101781 -0.992115 -0.07314 +-0.045772 -0.998027 -0.042983 0.240034 0.999013 -0.051155 -0.997612 -0.046413 +-0.050799 -0.998027 -0.036907 0.200034 0.999013 -0.056568 -0.997612 -0.039636 +-0.091364 -0.992115 -0.085797 0.240033 0.996057 -0.091811 -0.992115 -0.085319 +-0.045772 -0.998027 -0.042983 0.240034 0.999013 -0.051155 -0.997612 -0.046413 +-0.101397 -0.992115 -0.073669 0.200033 0.996057 -0.101781 -0.992115 -0.07314 +-0.091364 -0.992115 -0.085797 0.240033 0.996057 -0.091811 -0.992115 -0.085319 +-0.040024 -0.998027 -0.048381 0.280034 0.999013 -0.044934 -0.997612 -0.052457 +-0.045772 -0.998027 -0.042983 0.240034 0.999013 -0.051155 -0.997612 -0.046413 +-0.07989 -0.992115 -0.096571 0.280033 0.996057 -0.080394 -0.992115 -0.096153 +-0.040024 -0.998027 -0.048381 0.280034 0.999013 -0.044934 -0.997612 -0.052457 +-0.091364 -0.992115 -0.085797 0.240033 0.996057 -0.091811 -0.992115 -0.085319 +-0.07989 -0.992115 -0.096571 0.280033 0.996057 -0.080394 -0.992115 -0.096153 +-0.033645 -0.998027 -0.053016 0.320034 0.999013 -0.038005 -0.997612 -0.057675 +-0.040024 -0.998027 -0.048381 0.280034 0.999013 -0.044934 -0.997612 -0.052457 +-0.067157 -0.992115 -0.105822 0.320033 0.996057 -0.067709 -0.992115 -0.105471 +-0.033645 -0.998027 -0.053016 0.320034 0.999013 -0.038005 -0.997612 -0.057675 +-0.07989 -0.992115 -0.096571 0.280033 0.996057 -0.080394 -0.992115 -0.096153 +-0.067157 -0.992115 -0.105822 0.320033 0.996057 -0.067709 -0.992115 -0.105471 +-0.026735 -0.998027 -0.056815 0.360034 0.999013 -0.030477 -0.997612 -0.061984 +-0.033645 -0.998027 -0.053016 0.320034 0.999013 -0.038005 -0.997612 -0.057675 +-0.053364 -0.992115 -0.113405 0.360033 0.996057 -0.053956 -0.992115 -0.113126 +-0.026735 -0.998027 -0.056815 0.360034 0.999013 -0.030477 -0.997612 -0.061984 +-0.067157 -0.992115 -0.105822 0.320033 0.996057 -0.067709 -0.992115 -0.105471 +-0.053364 -0.992115 -0.113405 0.360033 0.996057 -0.053956 -0.992115 -0.113126 +-0.019403 -0.998027 -0.059717 0.400034 0.999013 -0.022468 -0.997612 -0.065316 +-0.026735 -0.998027 -0.056815 0.360034 0.999013 -0.030477 -0.997612 -0.061984 +-0.03873 -0.992115 -0.119199 0.400033 0.996057 -0.039352 -0.992115 -0.118996 +-0.019403 -0.998027 -0.059717 0.400034 0.999013 -0.022468 -0.997612 -0.065316 +-0.053364 -0.992115 -0.113405 0.360033 0.996057 -0.053956 -0.992115 -0.113126 +-0.03873 -0.992115 -0.119199 0.400033 0.996057 -0.039352 -0.992115 -0.118996 +-0.011766 -0.998027 -0.061678 0.440034 0.999013 -0.014105 -0.997612 -0.067616 +-0.019403 -0.998027 -0.059717 0.400034 0.999013 -0.022468 -0.997612 -0.065316 +-0.023485 -0.992115 -0.123113 0.440033 0.996057 -0.024127 -0.992115 -0.122989 +-0.011766 -0.998027 -0.061678 0.440034 0.999013 -0.014105 -0.997612 -0.067616 +-0.03873 -0.992115 -0.119199 0.400033 0.996057 -0.039352 -0.992115 -0.118996 +-0.023485 -0.992115 -0.123113 0.440033 0.996057 -0.024127 -0.992115 -0.122989 +-0.003943 -0.998027 -0.062667 0.480033 0.999013 -0.005519 -0.997612 -0.06885 +-0.011766 -0.998027 -0.061678 0.440034 0.999013 -0.014105 -0.997612 -0.067616 +-0.00787 -0.992115 -0.125086 0.480033 0.996057 -0.008522 -0.992115 -0.125044 +-0.003943 -0.998027 -0.062667 0.480033 0.999013 -0.005519 -0.997612 -0.06885 +-0.023485 -0.992115 -0.123113 0.440033 0.996057 -0.024127 -0.992115 -0.122989 +-0.00787 -0.992115 -0.125086 0.480033 0.996057 -0.008522 -0.992115 -0.125044 +0.003943 -0.998027 -0.062667 0.520033 0.999013 0.003154 -0.997612 -0.068999 +-0.003943 -0.998027 -0.062667 0.480033 0.999013 -0.005519 -0.997612 -0.06885 +0.00787 -0.992115 -0.125086 0.520033 0.996057 0.007217 -0.992115 -0.125126 +0.003943 -0.998027 -0.062667 0.520033 0.999013 0.003154 -0.997612 -0.068999 +-0.00787 -0.992115 -0.125086 0.480033 0.996057 -0.008522 -0.992115 -0.125044 +0.00787 -0.992115 -0.125086 0.520033 0.996057 0.007217 -0.992115 -0.125126 +0.011766 -0.998027 -0.061678 0.560033 0.999013 0.011777 -0.997612 -0.06806 +0.003943 -0.998027 -0.062667 0.520033 0.999013 0.003154 -0.997612 -0.068999 +0.023485 -0.992115 -0.123113 0.560032 0.996057 0.022843 -0.992115 -0.123235 +0.011766 -0.998027 -0.061678 0.560033 0.999013 0.011777 -0.997612 -0.06806 +0.00787 -0.992115 -0.125086 0.520033 0.996057 0.007217 -0.992115 -0.125126 +0.023485 -0.992115 -0.123113 0.560032 0.996057 0.022843 -0.992115 -0.123235 +0.019403 -0.998027 -0.059717 0.600033 0.999013 0.020215 -0.997612 -0.066048 +0.011766 -0.998027 -0.061678 0.560033 0.999013 0.011777 -0.997612 -0.06806 +0.03873 -0.992115 -0.119199 0.600032 0.996057 0.038108 -0.992115 -0.1194 +0.019403 -0.998027 -0.059717 0.600033 0.999013 0.020215 -0.997612 -0.066048 +0.023485 -0.992115 -0.123113 0.560032 0.996057 0.022843 -0.992115 -0.123235 +0.03873 -0.992115 -0.119199 0.600032 0.996057 0.038108 -0.992115 -0.1194 +0.026735 -0.998027 -0.056815 0.640033 0.999013 0.028333 -0.997612 -0.062993 +0.019403 -0.998027 -0.059717 0.600033 0.999013 0.020215 -0.997612 -0.066048 +0.053364 -0.992115 -0.113405 0.640032 0.996057 0.052773 -0.992115 -0.113683 +0.026735 -0.998027 -0.056815 0.640033 0.999013 0.028333 -0.997612 -0.062993 +0.03873 -0.992115 -0.119199 0.600032 0.996057 0.038108 -0.992115 -0.1194 +0.053364 -0.992115 -0.113405 0.640032 0.996057 0.052773 -0.992115 -0.113683 +0.033645 -0.998027 -0.053016 0.680032 0.999013 0.036005 -0.997612 -0.058947 +0.026735 -0.998027 -0.056815 0.640033 0.999013 0.028333 -0.997612 -0.062993 +0.067157 -0.992115 -0.105822 0.680032 0.996057 0.066605 -0.992115 -0.106173 +0.033645 -0.998027 -0.053016 0.680032 0.999013 0.036005 -0.997612 -0.058947 +0.053364 -0.992115 -0.113405 0.640032 0.996057 0.052773 -0.992115 -0.113683 +0.067157 -0.992115 -0.105822 0.680032 0.996057 0.066605 -0.992115 -0.106173 +0.040024 -0.998027 -0.048381 0.720032 0.999013 0.043109 -0.997612 -0.053968 +0.033645 -0.998027 -0.053016 0.680032 0.999013 0.036005 -0.997612 -0.058947 +0.07989 -0.992115 -0.096571 0.720032 0.996057 0.079386 -0.992115 -0.096987 +0.040024 -0.998027 -0.048381 0.720032 0.999013 0.043109 -0.997612 -0.053968 +0.067157 -0.992115 -0.105822 0.680032 0.996057 0.066605 -0.992115 -0.106173 +0.07989 -0.992115 -0.096571 0.720032 0.996057 0.079386 -0.992115 -0.096987 +0.045772 -0.998027 -0.042983 0.760032 0.999013 0.049533 -0.997612 -0.048139 +0.040024 -0.998027 -0.048381 0.720032 0.999013 0.043109 -0.997612 -0.053968 +0.091364 -0.992115 -0.085797 0.760032 0.996057 0.090916 -0.992115 -0.086274 +0.045772 -0.998027 -0.042983 0.760032 0.999013 0.049533 -0.997612 -0.048139 +0.07989 -0.992115 -0.096571 0.720032 0.996057 0.079386 -0.992115 -0.096987 +0.091364 -0.992115 -0.085797 0.760032 0.996057 0.090916 -0.992115 -0.086274 +0.050799 -0.998027 -0.036907 0.800032 0.999013 0.055176 -0.997612 -0.041551 +0.045772 -0.998027 -0.042983 0.760032 0.999013 0.049533 -0.997612 -0.048139 +0.101397 -0.992115 -0.073669 0.800032 0.996057 0.101012 -0.992115 -0.074197 +0.050799 -0.998027 -0.036907 0.800032 0.999013 0.055176 -0.997612 -0.041551 +0.091364 -0.992115 -0.085797 0.760032 0.996057 0.090916 -0.992115 -0.086274 +0.101397 -0.992115 -0.073669 0.800032 0.996057 0.101012 -0.992115 -0.074197 +0.055024 -0.998027 -0.03025 0.840031 0.999013 0.059948 -0.997612 -0.034306 +0.050799 -0.998027 -0.036907 0.800032 0.999013 0.055176 -0.997612 -0.041551 +0.10983 -0.992115 -0.06038 0.840032 0.996057 0.109515 -0.992115 -0.060954 +0.055024 -0.998027 -0.03025 0.840031 0.999013 0.059948 -0.997612 -0.034306 +0.101397 -0.992115 -0.073669 0.800032 0.996057 0.101012 -0.992115 -0.074197 +0.10983 -0.992115 -0.06038 0.840032 0.996057 0.109515 -0.992115 -0.060954 +0.058381 -0.998027 -0.023115 0.880031 0.999013 0.063776 -0.997612 -0.026525 +0.055024 -0.998027 -0.03025 0.840031 0.999013 0.059948 -0.997612 -0.034306 +0.116532 -0.992115 -0.046138 0.880031 0.996057 0.116291 -0.992115 -0.046744 +0.058381 -0.998027 -0.023115 0.880031 0.999013 0.063776 -0.997612 -0.026525 +0.10983 -0.992115 -0.06038 0.840032 0.996057 0.109515 -0.992115 -0.060954 +0.116532 -0.992115 -0.046138 0.880031 0.996057 0.116291 -0.992115 -0.046744 +0.060818 -0.998027 -0.015615 0.920031 0.999013 0.066597 -0.997612 -0.018323 +0.058381 -0.998027 -0.023115 0.880031 0.999013 0.063776 -0.997612 -0.026525 +0.121396 -0.992115 -0.031169 0.920031 0.996057 0.121233 -0.992115 -0.031802 +0.060818 -0.998027 -0.015615 0.920031 0.999013 0.066597 -0.997612 -0.018323 +0.116532 -0.992115 -0.046138 0.880031 0.996057 0.116291 -0.992115 -0.046744 +0.121396 -0.992115 -0.031169 0.920031 0.996057 0.121233 -0.992115 -0.031802 +0.062295 -0.998027 -0.00787 0.960031 0.999013 0.068368 -0.997612 -0.009834 +0.060818 -0.998027 -0.015615 0.920031 0.999013 0.066597 -0.997612 -0.018323 +0.124345 -0.992115 -0.015708 0.960031 0.996057 0.124263 -0.992115 -0.016356 +0.062295 -0.998027 -0.00787 0.960031 0.999013 0.068368 -0.997612 -0.009834 +0.121396 -0.992115 -0.031169 0.920031 0.996057 0.121233 -0.992115 -0.031802 +0.124345 -0.992115 -0.015708 0.960031 0.996057 0.124263 -0.992115 -0.016356 +0.062791 -0.998027 -0 1.00003 0.999013 0.069062 -0.997612 -0.001184 +0.062295 -0.998027 -0.00787 0.960031 0.999013 0.068368 -0.997612 -0.009834 +0.125333 -0.992115 -0 1.00003 0.996057 0.125333 -0.992115 -0.000653 +0.062791 -0.998027 -0 1.00003 0.999013 0.069062 -0.997612 -0.001184 +0.124345 -0.992115 -0.015708 0.960031 0.996057 0.124263 -0.992115 -0.016356 +0.125333 -0.992115 -0 1.00003 0.996057 0.125333 -0.992115 -0.000653 +0.062295 -0.998027 0.00787 1.04003 0.999013 0.068665 -0.997612 0.007485 +0.062791 -0.998027 -0 1.00003 0.999013 0.069062 -0.997612 -0.001184 +0.124345 -0.992115 0.015708 1.04003 0.996057 0.124426 -0.992115 0.015059 +0.062295 -0.998027 0.00787 1.04003 0.999013 0.068665 -0.997612 0.007485 +0.125333 -0.992115 -0 1.00003 0.996057 0.125333 -0.992115 -0.000653 +0.185904 -0.982287 0.023485 1.04003 0.991144 0.185984 -0.982287 0.022842 +0.121396 -0.992115 0.031169 1.08003 0.996057 0.121558 -0.992115 0.03053 +0.124345 -0.992115 0.015708 1.04003 0.996057 0.124426 -0.992115 0.015059 +0.181495 -0.982287 0.0466 1.08003 0.991144 0.181655 -0.982287 0.045972 +0.121396 -0.992115 0.031169 1.08003 0.996057 0.121558 -0.992115 0.03053 +0.185904 -0.982287 0.023485 1.04003 0.991144 0.185984 -0.982287 0.022842 +0.181495 -0.982287 0.0466 1.08003 0.991144 0.181655 -0.982287 0.045972 +0.116532 -0.992115 0.046138 1.12003 0.996057 0.116772 -0.992114 0.045533 +0.121396 -0.992115 0.031169 1.08003 0.996057 0.121558 -0.992115 0.03053 +0.174223 -0.982287 0.06898 1.12003 0.991144 0.17446 -0.982287 0.068379 +0.116532 -0.992115 0.046138 1.12003 0.996057 0.116772 -0.992114 0.045533 +0.181495 -0.982287 0.0466 1.08003 0.991144 0.181655 -0.982287 0.045972 +0.174223 -0.982287 0.06898 1.12003 0.991144 0.17446 -0.982287 0.068379 +0.10983 -0.992115 0.06038 1.16003 0.996057 0.110145 -0.992115 0.059806 +0.116532 -0.992115 0.046138 1.12003 0.996057 0.116772 -0.992114 0.045533 +0.164204 -0.982287 0.090272 1.16003 0.991144 0.164515 -0.982287 0.089702 +0.10983 -0.992115 0.06038 1.16003 0.996057 0.110145 -0.992115 0.059806 +0.174223 -0.982287 0.06898 1.12003 0.991144 0.17446 -0.982287 0.068379 +0.164204 -0.982287 0.090272 1.16003 0.991144 0.164515 -0.982287 0.089702 +0.101397 -0.992115 0.073669 1.20003 0.996057 0.101781 -0.992115 0.07314 +0.10983 -0.992115 0.06038 1.16003 0.996057 0.110145 -0.992115 0.059806 +0.151595 -0.982287 0.11014 1.20003 0.991144 0.151974 -0.982287 0.109616 +0.101397 -0.992115 0.073669 1.20003 0.996057 0.101781 -0.992115 0.07314 +0.164204 -0.982287 0.090272 1.16003 0.991144 0.164515 -0.982287 0.089702 +0.151595 -0.982287 0.11014 1.20003 0.991144 0.151974 -0.982287 0.109616 +0.091364 -0.992115 0.085797 1.24003 0.996057 0.091811 -0.992115 0.085319 +0.101397 -0.992115 0.073669 1.20003 0.996057 0.101781 -0.992115 0.07314 +0.136595 -0.982287 0.128271 1.24003 0.991144 0.137038 -0.982287 0.127799 +0.091364 -0.992115 0.085797 1.24003 0.996057 0.091811 -0.992115 0.085319 +0.151595 -0.982287 0.11014 1.20003 0.991144 0.151974 -0.982287 0.109616 +0.136595 -0.982287 0.128271 1.24003 0.991144 0.137038 -0.982287 0.127799 +0.07989 -0.992115 0.096571 1.28003 0.996057 0.080394 -0.992115 0.096153 +0.091364 -0.992115 0.085797 1.24003 0.996057 0.091811 -0.992115 0.085319 +0.119441 -0.982287 0.14438 1.28003 0.991144 0.11994 -0.982287 0.143967 +0.07989 -0.992115 0.096571 1.28003 0.996057 0.080394 -0.992115 0.096153 +0.136595 -0.982287 0.128271 1.24003 0.991144 0.137038 -0.982287 0.127799 +0.119441 -0.982287 0.14438 1.28003 0.991144 0.11994 -0.982287 0.143967 +0.067157 -0.992115 0.105822 1.32003 0.996057 0.067709 -0.992115 0.105471 +0.07989 -0.992115 0.096571 1.28003 0.996057 0.080394 -0.992115 0.096153 +0.100404 -0.982287 0.158211 1.32003 0.991144 0.10095 -0.982287 0.157865 +0.067157 -0.992115 0.105822 1.32003 0.996057 0.067709 -0.992115 0.105471 +0.119441 -0.982287 0.14438 1.28003 0.991144 0.11994 -0.982287 0.143967 +0.100404 -0.982287 0.158211 1.32003 0.991144 0.10095 -0.982287 0.157865 +0.053364 -0.992115 0.113405 1.36003 0.996057 0.053956 -0.992115 0.113126 +0.067157 -0.992115 0.105822 1.32003 0.996057 0.067709 -0.992115 0.105471 +0.079783 -0.982287 0.169548 1.36003 0.991144 0.080368 -0.982287 0.169271 +0.053364 -0.992115 0.113405 1.36003 0.996057 0.053956 -0.992115 0.113126 +0.100404 -0.982287 0.158211 1.32003 0.991144 0.10095 -0.982287 0.157865 +0.079783 -0.982287 0.169548 1.36003 0.991144 0.080368 -0.982287 0.169271 +0.03873 -0.992115 0.119199 1.40003 0.996057 0.039352 -0.992114 0.118998 +0.053364 -0.992115 0.113405 1.36003 0.996057 0.053956 -0.992115 0.113126 +0.057904 -0.982287 0.17821 1.40003 0.991144 0.058519 -0.982287 0.17801 +0.03873 -0.992115 0.119199 1.40003 0.996057 0.039352 -0.992114 0.118998 +0.079783 -0.982287 0.169548 1.36003 0.991144 0.080368 -0.982287 0.169271 +0.057904 -0.982287 0.17821 1.40003 0.991144 0.058519 -0.982287 0.17801 +0.023485 -0.992115 0.123113 1.44003 0.996057 0.024127 -0.992114 0.122992 +0.03873 -0.992115 0.119199 1.40003 0.996057 0.039352 -0.992114 0.118998 +0.035112 -0.982287 0.184062 1.44003 0.991144 0.035747 -0.982288 0.183939 +0.023485 -0.992115 0.123113 1.44003 0.996057 0.024127 -0.992114 0.122992 +0.057904 -0.982287 0.17821 1.40003 0.991144 0.058519 -0.982287 0.17801 +0.035112 -0.982287 0.184062 1.44003 0.991144 0.035747 -0.982288 0.183939 +0.00787 -0.992115 0.125086 1.48003 0.996057 0.008522 -0.992115 0.125044 +0.023485 -0.992115 0.123113 1.44003 0.996057 0.024127 -0.992114 0.122992 +0.011766 -0.982287 0.187012 1.48003 0.991144 0.012412 -0.982287 0.18697 +0.00787 -0.992115 0.125086 1.48003 0.996057 0.008522 -0.992115 0.125044 +0.035112 -0.982287 0.184062 1.44003 0.991144 0.035747 -0.982288 0.183939 +0.011766 -0.982287 0.187012 1.48003 0.991144 0.012412 -0.982287 0.18697 +-0.00787 -0.992115 0.125086 1.52003 0.996057 -0.007217 -0.992115 0.125126 +0.00787 -0.992115 0.125086 1.48003 0.996057 0.008522 -0.992115 0.125044 +-0.011766 -0.982287 0.187012 1.52003 0.991144 -0.01112 -0.982287 0.187051 +-0.00787 -0.992115 0.125086 1.52003 0.996057 -0.007217 -0.992115 0.125126 +0.011766 -0.982287 0.187012 1.48003 0.991144 0.012412 -0.982287 0.18697 +-0.011766 -0.982287 0.187012 -0.479969 0.991144 -0.01112 -0.982287 0.187051 +-0.023485 -0.992115 0.123113 -0.439969 0.996057 -0.022843 -0.992115 0.123235 +-0.00787 -0.992115 0.125086 -0.479969 0.996057 -0.007217 -0.992115 0.125126 +-0.035112 -0.982287 0.184062 -0.439969 0.991144 -0.034476 -0.982287 0.184183 +-0.023485 -0.992115 0.123113 -0.439969 0.996057 -0.022843 -0.992115 0.123235 +-0.011766 -0.982287 0.187012 -0.479969 0.991144 -0.01112 -0.982287 0.187051 +-0.035112 -0.982287 0.184062 -0.439969 0.991144 -0.034476 -0.982287 0.184183 +-0.03873 -0.992115 0.119199 -0.399969 0.996057 -0.038108 -0.992115 0.1194 +-0.023485 -0.992115 0.123113 -0.439969 0.996057 -0.022843 -0.992115 0.123235 +-0.057904 -0.982287 0.17821 -0.399969 0.991144 -0.057288 -0.982287 0.17841 +-0.03873 -0.992115 0.119199 -0.399969 0.996057 -0.038108 -0.992115 0.1194 +-0.035112 -0.982287 0.184062 -0.439969 0.991144 -0.034476 -0.982287 0.184183 +-0.057904 -0.982287 0.17821 -0.399969 0.991144 -0.057288 -0.982287 0.17841 +-0.053364 -0.992115 0.113405 -0.359969 0.996057 -0.052773 -0.992115 0.113683 +-0.03873 -0.992115 0.119199 -0.399969 0.996057 -0.038108 -0.992115 0.1194 +-0.079783 -0.982287 0.169548 -0.359968 0.991144 -0.079197 -0.982287 0.169823 +-0.053364 -0.992115 0.113405 -0.359969 0.996057 -0.052773 -0.992115 0.113683 +-0.057904 -0.982287 0.17821 -0.399969 0.991144 -0.057288 -0.982287 0.17841 +-0.079783 -0.982287 0.169548 -0.359968 0.991144 -0.079197 -0.982287 0.169823 +-0.067157 -0.992115 0.105822 -0.319968 0.996057 -0.066605 -0.992115 0.106173 +-0.053364 -0.992115 0.113405 -0.359969 0.996057 -0.052773 -0.992115 0.113683 +-0.100404 -0.982287 0.158211 -0.319968 0.991144 -0.099857 -0.982287 0.158558 +-0.067157 -0.992115 0.105822 -0.319968 0.996057 -0.066605 -0.992115 0.106173 +-0.079783 -0.982287 0.169548 -0.359968 0.991144 -0.079197 -0.982287 0.169823 +-0.100404 -0.982287 0.158211 -0.319968 0.991144 -0.099857 -0.982287 0.158558 +-0.07989 -0.992115 0.096571 -0.279968 0.996057 -0.079386 -0.992115 0.096986 +-0.067157 -0.992115 0.105822 -0.319968 0.996057 -0.066605 -0.992115 0.106173 +-0.119441 -0.982287 0.14438 -0.279968 0.991144 -0.118942 -0.982287 0.144792 +-0.07989 -0.992115 0.096571 -0.279968 0.996057 -0.079386 -0.992115 0.096986 +-0.100404 -0.982287 0.158211 -0.319968 0.991144 -0.099857 -0.982287 0.158558 +-0.119441 -0.982287 0.14438 -0.279968 0.991144 -0.118942 -0.982287 0.144792 +-0.091364 -0.992115 0.085797 -0.239968 0.996057 -0.090916 -0.992114 0.086274 +-0.07989 -0.992115 0.096571 -0.279968 0.996057 -0.079386 -0.992115 0.096986 +-0.136595 -0.982287 0.128271 -0.239968 0.991144 -0.136152 -0.982287 0.128742 +-0.091364 -0.992115 0.085797 -0.239968 0.996057 -0.090916 -0.992114 0.086274 +-0.119441 -0.982287 0.14438 -0.279968 0.991144 -0.118942 -0.982287 0.144792 +-0.136595 -0.982287 0.128271 -0.239968 0.991144 -0.136152 -0.982287 0.128742 +-0.101397 -0.992115 0.073669 -0.199968 0.996057 -0.101012 -0.992115 0.074197 +-0.091364 -0.992115 0.085797 -0.239968 0.996057 -0.090916 -0.992114 0.086274 +-0.151595 -0.982287 0.11014 -0.199968 0.991144 -0.151214 -0.982287 0.110662 +-0.101397 -0.992115 0.073669 -0.199968 0.996057 -0.101012 -0.992115 0.074197 +-0.136595 -0.982287 0.128271 -0.239968 0.991144 -0.136152 -0.982287 0.128742 +-0.151595 -0.982287 0.11014 -0.199968 0.991144 -0.151214 -0.982287 0.110662 +-0.10983 -0.992115 0.06038 -0.159968 0.996057 -0.109515 -0.992115 0.060953 +-0.101397 -0.992115 0.073669 -0.199968 0.996057 -0.101012 -0.992115 0.074197 +-0.164204 -0.982287 0.090272 -0.159968 0.991144 -0.163891 -0.982287 0.090839 +-0.10983 -0.992115 0.06038 -0.159968 0.996057 -0.109515 -0.992115 0.060953 +-0.151595 -0.982287 0.11014 -0.199968 0.991144 -0.151214 -0.982287 0.110662 +-0.164204 -0.982287 0.090272 -0.159968 0.991144 -0.163891 -0.982287 0.090839 +-0.116532 -0.992115 0.046138 -0.119968 0.996057 -0.116291 -0.992115 0.046745 +-0.10983 -0.992115 0.06038 -0.159968 0.996057 -0.109515 -0.992115 0.060953 +-0.174223 -0.982287 0.06898 -0.119968 0.991144 -0.173984 -0.982287 0.069581 +-0.116532 -0.992115 0.046138 -0.119968 0.996057 -0.116291 -0.992115 0.046745 +-0.164204 -0.982287 0.090272 -0.159968 0.991144 -0.163891 -0.982287 0.090839 +-0.174223 -0.982287 0.06898 -0.119968 0.991144 -0.173984 -0.982287 0.069581 +-0.121396 -0.992115 0.031169 -0.079968 0.996057 -0.121233 -0.992115 0.031801 +-0.116532 -0.992115 0.046138 -0.119968 0.996057 -0.116291 -0.992115 0.046745 +-0.181495 -0.982287 0.0466 -0.079968 0.991144 -0.181333 -0.982287 0.047225 +-0.121396 -0.992115 0.031169 -0.079968 0.996057 -0.121233 -0.992115 0.031801 +-0.174223 -0.982287 0.06898 -0.119968 0.991144 -0.173984 -0.982287 0.069581 +-0.181495 -0.982287 0.0466 -0.079968 0.991144 -0.181333 -0.982287 0.047225 +-0.124345 -0.992115 0.015708 -0.039968 0.996057 -0.124263 -0.992115 0.016357 +-0.121396 -0.992115 0.031169 -0.079968 0.996057 -0.121233 -0.992115 0.031801 +-0.185904 -0.982287 0.023485 -0.039968 0.991144 -0.185822 -0.982287 0.024127 +-0.124345 -0.992115 0.015708 -0.039968 0.996057 -0.124263 -0.992115 0.016357 +-0.181495 -0.982287 0.0466 -0.079968 0.991144 -0.181333 -0.982287 0.047225 +-0.185904 -0.982287 0.023485 -0.039968 0.991144 -0.185822 -0.982287 0.024127 +-0.125333 -0.992115 -0 3.3e-005 0.996057 -0.125333 -0.992115 0.000653 +-0.124345 -0.992115 0.015708 -0.039968 0.996057 -0.124263 -0.992115 0.016357 +-0.187381 -0.982287 -0 3.2e-005 0.991144 -0.187381 -0.982287 0.000647 +-0.125333 -0.992115 -0 3.3e-005 0.996057 -0.125333 -0.992115 0.000653 +-0.185904 -0.982287 0.023485 -0.039968 0.991144 -0.185822 -0.982287 0.024127 +-0.187381 -0.982287 -0 3.2e-005 0.991144 -0.187381 -0.982287 0.000647 +-0.124345 -0.992115 -0.015708 0.040033 0.996057 -0.124426 -0.992115 -0.015059 +-0.125333 -0.992115 -0 3.3e-005 0.996057 -0.125333 -0.992115 0.000653 +-0.185904 -0.982287 -0.023485 0.040032 0.991144 -0.185984 -0.982287 -0.022842 +-0.124345 -0.992115 -0.015708 0.040033 0.996057 -0.124426 -0.992115 -0.015059 +-0.187381 -0.982287 -0 3.2e-005 0.991144 -0.187381 -0.982287 0.000647 +-0.185904 -0.982287 -0.023485 0.040032 0.991144 -0.185984 -0.982287 -0.022842 +-0.121396 -0.992115 -0.031169 0.080033 0.996057 -0.121558 -0.992115 -0.03053 +-0.124345 -0.992115 -0.015708 0.040033 0.996057 -0.124426 -0.992115 -0.015059 +-0.181495 -0.982287 -0.0466 0.080032 0.991144 -0.181655 -0.982287 -0.045972 +-0.121396 -0.992115 -0.031169 0.080033 0.996057 -0.121558 -0.992115 -0.03053 +-0.185904 -0.982287 -0.023485 0.040032 0.991144 -0.185984 -0.982287 -0.022842 +-0.181495 -0.982287 -0.0466 0.080032 0.991144 -0.181655 -0.982287 -0.045972 +-0.116532 -0.992115 -0.046138 0.120033 0.996057 -0.116772 -0.992114 -0.045534 +-0.121396 -0.992115 -0.031169 0.080033 0.996057 -0.121558 -0.992115 -0.03053 +-0.174223 -0.982287 -0.06898 0.120032 0.991144 -0.17446 -0.982287 -0.068379 +-0.116532 -0.992115 -0.046138 0.120033 0.996057 -0.116772 -0.992114 -0.045534 +-0.181495 -0.982287 -0.0466 0.080032 0.991144 -0.181655 -0.982287 -0.045972 +-0.174223 -0.982287 -0.06898 0.120032 0.991144 -0.17446 -0.982287 -0.068379 +-0.10983 -0.992115 -0.06038 0.160033 0.996057 -0.110145 -0.992115 -0.059806 +-0.116532 -0.992115 -0.046138 0.120033 0.996057 -0.116772 -0.992114 -0.045534 +-0.164204 -0.982287 -0.090272 0.160033 0.991144 -0.164515 -0.982287 -0.089703 +-0.10983 -0.992115 -0.06038 0.160033 0.996057 -0.110145 -0.992115 -0.059806 +-0.174223 -0.982287 -0.06898 0.120032 0.991144 -0.17446 -0.982287 -0.068379 +-0.164204 -0.982287 -0.090272 0.160033 0.991144 -0.164515 -0.982287 -0.089703 +-0.101397 -0.992115 -0.073669 0.200033 0.996057 -0.101781 -0.992115 -0.07314 +-0.10983 -0.992115 -0.06038 0.160033 0.996057 -0.110145 -0.992115 -0.059806 +-0.151595 -0.982287 -0.11014 0.200033 0.991144 -0.151974 -0.982287 -0.109616 +-0.101397 -0.992115 -0.073669 0.200033 0.996057 -0.101781 -0.992115 -0.07314 +-0.164204 -0.982287 -0.090272 0.160033 0.991144 -0.164515 -0.982287 -0.089703 +-0.151595 -0.982287 -0.11014 0.200033 0.991144 -0.151974 -0.982287 -0.109616 +-0.091364 -0.992115 -0.085797 0.240033 0.996057 -0.091811 -0.992115 -0.085319 +-0.101397 -0.992115 -0.073669 0.200033 0.996057 -0.101781 -0.992115 -0.07314 +-0.136595 -0.982287 -0.128271 0.240033 0.991144 -0.137038 -0.982287 -0.1278 +-0.091364 -0.992115 -0.085797 0.240033 0.996057 -0.091811 -0.992115 -0.085319 +-0.151595 -0.982287 -0.11014 0.200033 0.991144 -0.151974 -0.982287 -0.109616 +-0.136595 -0.982287 -0.128271 0.240033 0.991144 -0.137038 -0.982287 -0.1278 +-0.07989 -0.992115 -0.096571 0.280033 0.996057 -0.080394 -0.992115 -0.096153 +-0.091364 -0.992115 -0.085797 0.240033 0.996057 -0.091811 -0.992115 -0.085319 +-0.119441 -0.982287 -0.14438 0.280033 0.991144 -0.11994 -0.982287 -0.143966 +-0.07989 -0.992115 -0.096571 0.280033 0.996057 -0.080394 -0.992115 -0.096153 +-0.136595 -0.982287 -0.128271 0.240033 0.991144 -0.137038 -0.982287 -0.1278 +-0.119441 -0.982287 -0.14438 0.280033 0.991144 -0.11994 -0.982287 -0.143966 +-0.067157 -0.992115 -0.105822 0.320033 0.996057 -0.067709 -0.992115 -0.105471 +-0.07989 -0.992115 -0.096571 0.280033 0.996057 -0.080394 -0.992115 -0.096153 +-0.100404 -0.982287 -0.158211 0.320033 0.991144 -0.10095 -0.982287 -0.157865 +-0.067157 -0.992115 -0.105822 0.320033 0.996057 -0.067709 -0.992115 -0.105471 +-0.119441 -0.982287 -0.14438 0.280033 0.991144 -0.11994 -0.982287 -0.143966 +-0.100404 -0.982287 -0.158211 0.320033 0.991144 -0.10095 -0.982287 -0.157865 +-0.053364 -0.992115 -0.113405 0.360033 0.996057 -0.053956 -0.992115 -0.113126 +-0.067157 -0.992115 -0.105822 0.320033 0.996057 -0.067709 -0.992115 -0.105471 +-0.079783 -0.982287 -0.169548 0.360033 0.991144 -0.080368 -0.982287 -0.169272 +-0.053364 -0.992115 -0.113405 0.360033 0.996057 -0.053956 -0.992115 -0.113126 +-0.100404 -0.982287 -0.158211 0.320033 0.991144 -0.10095 -0.982287 -0.157865 +-0.079783 -0.982287 -0.169548 0.360033 0.991144 -0.080368 -0.982287 -0.169272 +-0.03873 -0.992115 -0.119199 0.400033 0.996057 -0.039352 -0.992115 -0.118996 +-0.053364 -0.992115 -0.113405 0.360033 0.996057 -0.053956 -0.992115 -0.113126 +-0.057904 -0.982287 -0.17821 0.400032 0.991144 -0.058519 -0.982287 -0.178009 +-0.03873 -0.992115 -0.119199 0.400033 0.996057 -0.039352 -0.992115 -0.118996 +-0.079783 -0.982287 -0.169548 0.360033 0.991144 -0.080368 -0.982287 -0.169272 +-0.057904 -0.982287 -0.17821 0.400032 0.991144 -0.058519 -0.982287 -0.178009 +-0.023485 -0.992115 -0.123113 0.440033 0.996057 -0.024127 -0.992115 -0.122989 +-0.03873 -0.992115 -0.119199 0.400033 0.996057 -0.039352 -0.992115 -0.118996 +-0.035112 -0.982287 -0.184062 0.440032 0.991144 -0.035747 -0.982287 -0.183941 +-0.023485 -0.992115 -0.123113 0.440033 0.996057 -0.024127 -0.992115 -0.122989 +-0.057904 -0.982287 -0.17821 0.400032 0.991144 -0.058519 -0.982287 -0.178009 +-0.035112 -0.982287 -0.184062 0.440032 0.991144 -0.035747 -0.982287 -0.183941 +-0.00787 -0.992115 -0.125086 0.480033 0.996057 -0.008522 -0.992115 -0.125044 +-0.023485 -0.992115 -0.123113 0.440033 0.996057 -0.024127 -0.992115 -0.122989 +-0.011766 -0.982287 -0.187012 0.480032 0.991144 -0.012412 -0.982287 -0.18697 +-0.00787 -0.992115 -0.125086 0.480033 0.996057 -0.008522 -0.992115 -0.125044 +-0.035112 -0.982287 -0.184062 0.440032 0.991144 -0.035747 -0.982287 -0.183941 +-0.011766 -0.982287 -0.187012 0.480032 0.991144 -0.012412 -0.982287 -0.18697 +0.00787 -0.992115 -0.125086 0.520033 0.996057 0.007217 -0.992115 -0.125126 +-0.00787 -0.992115 -0.125086 0.480033 0.996057 -0.008522 -0.992115 -0.125044 +0.011766 -0.982287 -0.187012 0.520032 0.991144 0.01112 -0.982287 -0.187052 +0.00787 -0.992115 -0.125086 0.520033 0.996057 0.007217 -0.992115 -0.125126 +-0.011766 -0.982287 -0.187012 0.480032 0.991144 -0.012412 -0.982287 -0.18697 +0.011766 -0.982287 -0.187012 0.520032 0.991144 0.01112 -0.982287 -0.187052 +0.023485 -0.992115 -0.123113 0.560032 0.996057 0.022843 -0.992115 -0.123235 +0.00787 -0.992115 -0.125086 0.520033 0.996057 0.007217 -0.992115 -0.125126 +0.035112 -0.982287 -0.184062 0.560032 0.991144 0.034476 -0.982287 -0.184183 +0.023485 -0.992115 -0.123113 0.560032 0.996057 0.022843 -0.992115 -0.123235 +0.011766 -0.982287 -0.187012 0.520032 0.991144 0.01112 -0.982287 -0.187052 +0.035112 -0.982287 -0.184062 0.560032 0.991144 0.034476 -0.982287 -0.184183 +0.03873 -0.992115 -0.119199 0.600032 0.996057 0.038108 -0.992115 -0.1194 +0.023485 -0.992115 -0.123113 0.560032 0.996057 0.022843 -0.992115 -0.123235 +0.057904 -0.982287 -0.17821 0.600032 0.991144 0.057288 -0.982287 -0.17841 +0.03873 -0.992115 -0.119199 0.600032 0.996057 0.038108 -0.992115 -0.1194 +0.035112 -0.982287 -0.184062 0.560032 0.991144 0.034476 -0.982287 -0.184183 +0.057904 -0.982287 -0.17821 0.600032 0.991144 0.057288 -0.982287 -0.17841 +0.053364 -0.992115 -0.113405 0.640032 0.996057 0.052773 -0.992115 -0.113683 +0.03873 -0.992115 -0.119199 0.600032 0.996057 0.038108 -0.992115 -0.1194 +0.079783 -0.982287 -0.169548 0.640032 0.991144 0.079197 -0.982287 -0.169822 +0.053364 -0.992115 -0.113405 0.640032 0.996057 0.052773 -0.992115 -0.113683 +0.057904 -0.982287 -0.17821 0.600032 0.991144 0.057288 -0.982287 -0.17841 +0.079783 -0.982287 -0.169548 0.640032 0.991144 0.079197 -0.982287 -0.169822 +0.067157 -0.992115 -0.105822 0.680032 0.996057 0.066605 -0.992115 -0.106173 +0.053364 -0.992115 -0.113405 0.640032 0.996057 0.052773 -0.992115 -0.113683 +0.100404 -0.982287 -0.158211 0.680032 0.991144 0.099857 -0.982287 -0.158558 +0.067157 -0.992115 -0.105822 0.680032 0.996057 0.066605 -0.992115 -0.106173 +0.079783 -0.982287 -0.169548 0.640032 0.991144 0.079197 -0.982287 -0.169822 +0.100404 -0.982287 -0.158211 0.680032 0.991144 0.099857 -0.982287 -0.158558 +0.07989 -0.992115 -0.096571 0.720032 0.996057 0.079386 -0.992115 -0.096987 +0.067157 -0.992115 -0.105822 0.680032 0.996057 0.066605 -0.992115 -0.106173 +0.119441 -0.982287 -0.14438 0.720032 0.991144 0.118942 -0.982287 -0.144791 +0.07989 -0.992115 -0.096571 0.720032 0.996057 0.079386 -0.992115 -0.096987 +0.100404 -0.982287 -0.158211 0.680032 0.991144 0.099857 -0.982287 -0.158558 +0.119441 -0.982287 -0.14438 0.720032 0.991144 0.118942 -0.982287 -0.144791 +0.091364 -0.992115 -0.085797 0.760032 0.996057 0.090916 -0.992115 -0.086274 +0.07989 -0.992115 -0.096571 0.720032 0.996057 0.079386 -0.992115 -0.096987 +0.136595 -0.982287 -0.128271 0.760032 0.991144 0.136152 -0.982287 -0.128742 +0.091364 -0.992115 -0.085797 0.760032 0.996057 0.090916 -0.992115 -0.086274 +0.119441 -0.982287 -0.14438 0.720032 0.991144 0.118942 -0.982287 -0.144791 +0.136595 -0.982287 -0.128271 0.760032 0.991144 0.136152 -0.982287 -0.128742 +0.101397 -0.992115 -0.073669 0.800032 0.996057 0.101012 -0.992115 -0.074197 +0.091364 -0.992115 -0.085797 0.760032 0.996057 0.090916 -0.992115 -0.086274 +0.151595 -0.982287 -0.11014 0.800032 0.991144 0.151214 -0.982287 -0.110665 +0.101397 -0.992115 -0.073669 0.800032 0.996057 0.101012 -0.992115 -0.074197 +0.136595 -0.982287 -0.128271 0.760032 0.991144 0.136152 -0.982287 -0.128742 +0.151595 -0.982287 -0.11014 0.800032 0.991144 0.151214 -0.982287 -0.110665 +0.10983 -0.992115 -0.06038 0.840032 0.996057 0.109515 -0.992115 -0.060954 +0.101397 -0.992115 -0.073669 0.800032 0.996057 0.101012 -0.992115 -0.074197 +0.164204 -0.982287 -0.090272 0.840032 0.991144 0.163891 -0.982287 -0.090839 +0.10983 -0.992115 -0.06038 0.840032 0.996057 0.109515 -0.992115 -0.060954 +0.151595 -0.982287 -0.11014 0.800032 0.991144 0.151214 -0.982287 -0.110665 +0.164204 -0.982287 -0.090272 0.840032 0.991144 0.163891 -0.982287 -0.090839 +0.116532 -0.992115 -0.046138 0.880031 0.996057 0.116291 -0.992115 -0.046744 +0.10983 -0.992115 -0.06038 0.840032 0.996057 0.109515 -0.992115 -0.060954 +0.174223 -0.982287 -0.06898 0.880032 0.991144 0.173984 -0.982287 -0.069581 +0.116532 -0.992115 -0.046138 0.880031 0.996057 0.116291 -0.992115 -0.046744 +0.164204 -0.982287 -0.090272 0.840032 0.991144 0.163891 -0.982287 -0.090839 +0.174223 -0.982287 -0.06898 0.880032 0.991144 0.173984 -0.982287 -0.069581 +0.121396 -0.992115 -0.031169 0.920031 0.996057 0.121233 -0.992115 -0.031802 +0.116532 -0.992115 -0.046138 0.880031 0.996057 0.116291 -0.992115 -0.046744 +0.181494 -0.982287 -0.0466 0.920032 0.991144 0.181333 -0.982287 -0.047227 +0.121396 -0.992115 -0.031169 0.920031 0.996057 0.121233 -0.992115 -0.031802 +0.174223 -0.982287 -0.06898 0.880032 0.991144 0.173984 -0.982287 -0.069581 +0.181494 -0.982287 -0.0466 0.920032 0.991144 0.181333 -0.982287 -0.047227 +0.124345 -0.992115 -0.015708 0.960031 0.996057 0.124263 -0.992115 -0.016356 +0.121396 -0.992115 -0.031169 0.920031 0.996057 0.121233 -0.992115 -0.031802 +0.185904 -0.982287 -0.023485 0.960031 0.991144 0.185822 -0.982287 -0.024128 +0.124345 -0.992115 -0.015708 0.960031 0.996057 0.124263 -0.992115 -0.016356 +0.181494 -0.982287 -0.0466 0.920032 0.991144 0.181333 -0.982287 -0.047227 +0.185904 -0.982287 -0.023485 0.960031 0.991144 0.185822 -0.982287 -0.024128 +0.125333 -0.992115 -0 1.00003 0.996057 0.125333 -0.992115 -0.000653 +0.124345 -0.992115 -0.015708 0.960031 0.996057 0.124263 -0.992115 -0.016356 +0.187381 -0.982287 -0 1.00003 0.991144 0.187381 -0.982287 -0.000649 +0.125333 -0.992115 -0 1.00003 0.996057 0.125333 -0.992115 -0.000653 +0.185904 -0.982287 -0.023485 0.960031 0.991144 0.185822 -0.982287 -0.024128 +0.187381 -0.982287 -0 1.00003 0.991144 0.187381 -0.982287 -0.000649 +0.124345 -0.992115 0.015708 1.04003 0.996057 0.124426 -0.992115 0.015059 +0.125333 -0.992115 -0 1.00003 0.996057 0.125333 -0.992115 -0.000653 +0.185904 -0.982287 0.023485 1.04003 0.991144 0.185984 -0.982287 0.022842 +0.124345 -0.992115 0.015708 1.04003 0.996057 0.124426 -0.992115 0.015059 +0.187381 -0.982287 -0 1.00003 0.991144 0.187381 -0.982287 -0.000649 +0.246729 -0.968583 0.031169 1.04003 0.984292 0.246808 -0.968583 0.030534 +0.181495 -0.982287 0.0466 1.08003 0.991144 0.181655 -0.982287 0.045972 +0.185904 -0.982287 0.023485 1.04003 0.991144 0.185984 -0.982287 0.022842 +0.240877 -0.968583 0.061847 1.08003 0.984292 0.241034 -0.968583 0.061227 +0.181495 -0.982287 0.0466 1.08003 0.991144 0.181655 -0.982287 0.045972 +0.246729 -0.968583 0.031169 1.04003 0.984292 0.246808 -0.968583 0.030534 +0.240877 -0.968583 0.061847 1.08003 0.984292 0.241034 -0.968583 0.061227 +0.174223 -0.982287 0.06898 1.12003 0.991144 0.17446 -0.982287 0.068379 +0.181495 -0.982287 0.0466 1.08003 0.991144 0.181655 -0.982287 0.045972 +0.231226 -0.968583 0.091549 1.12003 0.984292 0.231459 -0.968583 0.090956 +0.174223 -0.982287 0.06898 1.12003 0.991144 0.17446 -0.982287 0.068379 +0.240877 -0.968583 0.061847 1.08003 0.984292 0.241034 -0.968583 0.061227 +0.231226 -0.968583 0.091549 1.12003 0.984292 0.231459 -0.968583 0.090956 +0.164204 -0.982287 0.090272 1.16003 0.991144 0.164515 -0.982287 0.089702 +0.174223 -0.982287 0.06898 1.12003 0.991144 0.17446 -0.982287 0.068379 +0.217929 -0.968583 0.119807 1.16003 0.984292 0.218235 -0.968583 0.119248 +0.164204 -0.982287 0.090272 1.16003 0.991144 0.164515 -0.982287 0.089702 +0.231226 -0.968583 0.091549 1.12003 0.984292 0.231459 -0.968583 0.090956 +0.217929 -0.968583 0.119807 1.16003 0.984292 0.218235 -0.968583 0.119248 +0.151595 -0.982287 0.11014 1.20003 0.991144 0.151974 -0.982287 0.109616 +0.164204 -0.982287 0.090272 1.16003 0.991144 0.164515 -0.982287 0.089702 +0.201195 -0.968583 0.146176 1.20003 0.984292 0.201568 -0.968583 0.145659 +0.151595 -0.982287 0.11014 1.20003 0.991144 0.151974 -0.982287 0.109616 +0.217929 -0.968583 0.119807 1.16003 0.984292 0.218235 -0.968583 0.119248 +0.201195 -0.968583 0.146176 1.20003 0.984292 0.201568 -0.968583 0.145659 +0.136595 -0.982287 0.128271 1.24003 0.991144 0.137038 -0.982287 0.127799 +0.151595 -0.982287 0.11014 1.20003 0.991144 0.151974 -0.982287 0.109616 +0.181287 -0.968583 0.17024 1.24003 0.984292 0.181723 -0.968583 0.169774 +0.136595 -0.982287 0.128271 1.24003 0.991144 0.137038 -0.982287 0.127799 +0.201195 -0.968583 0.146176 1.20003 0.984292 0.201568 -0.968583 0.145659 +0.181287 -0.968583 0.17024 1.24003 0.984292 0.181723 -0.968583 0.169774 +0.119441 -0.982287 0.14438 1.28003 0.991144 0.11994 -0.982287 0.143967 +0.136595 -0.982287 0.128271 1.24003 0.991144 0.137038 -0.982287 0.127799 +0.158521 -0.968583 0.191619 1.28003 0.984292 0.159012 -0.968583 0.191211 +0.119441 -0.982287 0.14438 1.28003 0.991144 0.11994 -0.982287 0.143967 +0.181287 -0.968583 0.17024 1.24003 0.984292 0.181723 -0.968583 0.169774 +0.158521 -0.968583 0.191619 1.28003 0.984292 0.159012 -0.968583 0.191211 +0.100404 -0.982287 0.158211 1.32003 0.991144 0.10095 -0.982287 0.157865 +0.119441 -0.982287 0.14438 1.28003 0.991144 0.11994 -0.982287 0.143967 +0.133255 -0.968583 0.209976 1.32003 0.984292 0.133793 -0.968583 0.209633 +0.100404 -0.982287 0.158211 1.32003 0.991144 0.10095 -0.982287 0.157865 +0.158521 -0.968583 0.191619 1.28003 0.984292 0.159012 -0.968583 0.191211 +0.133255 -0.968583 0.209976 1.32003 0.984292 0.133793 -0.968583 0.209633 +0.079783 -0.982287 0.169548 1.36003 0.991144 0.080368 -0.982287 0.169271 +0.100404 -0.982287 0.158211 1.32003 0.991144 0.10095 -0.982287 0.157865 +0.105887 -0.968583 0.225022 1.36003 0.984292 0.106464 -0.968584 0.224748 +0.079783 -0.982287 0.169548 1.36003 0.991144 0.080368 -0.982287 0.169271 +0.133255 -0.968583 0.209976 1.32003 0.984292 0.133793 -0.968583 0.209633 +0.105887 -0.968583 0.225022 1.36003 0.984292 0.106464 -0.968584 0.224748 +0.057904 -0.982287 0.17821 1.40003 0.991144 0.058519 -0.982287 0.17801 +0.079783 -0.982287 0.169548 1.36003 0.991144 0.080368 -0.982287 0.169271 +0.076849 -0.968583 0.236518 1.40003 0.984292 0.077456 -0.968584 0.236319 +0.057904 -0.982287 0.17821 1.40003 0.991144 0.058519 -0.982287 0.17801 +0.105887 -0.968583 0.225022 1.36003 0.984292 0.106464 -0.968584 0.224748 +0.076849 -0.968583 0.236518 1.40003 0.984292 0.077456 -0.968584 0.236319 +0.035112 -0.982287 0.184062 1.44003 0.991144 0.035747 -0.982288 0.183939 +0.057904 -0.982287 0.17821 1.40003 0.991144 0.058519 -0.982287 0.17801 +0.0466 -0.968583 0.244285 1.44003 0.984292 0.047226 -0.968583 0.244164 +0.035112 -0.982287 0.184062 1.44003 0.991144 0.035747 -0.982288 0.183939 +0.076849 -0.968583 0.236518 1.40003 0.984292 0.077456 -0.968584 0.236319 +0.0466 -0.968583 0.244285 1.44003 0.984292 0.047226 -0.968583 0.244164 +0.011766 -0.982287 0.187012 1.48003 0.991144 0.012412 -0.982287 0.18697 +0.035112 -0.982287 0.184062 1.44003 0.991144 0.035747 -0.982288 0.183939 +0.015615 -0.968583 0.248199 1.48003 0.984292 0.016252 -0.968583 0.248158 +0.011766 -0.982287 0.187012 1.48003 0.991144 0.012412 -0.982287 0.18697 +0.0466 -0.968583 0.244285 1.44003 0.984292 0.047226 -0.968583 0.244164 +0.015615 -0.968583 0.248199 1.48003 0.984292 0.016252 -0.968583 0.248158 +-0.011766 -0.982287 0.187012 1.52003 0.991144 -0.01112 -0.982287 0.187051 +0.011766 -0.982287 0.187012 1.48003 0.991144 0.012412 -0.982287 0.18697 +-0.015615 -0.968583 0.248199 1.52003 0.984292 -0.014978 -0.968583 0.248238 +-0.011766 -0.982287 0.187012 1.52003 0.991144 -0.01112 -0.982287 0.187051 +0.015615 -0.968583 0.248199 1.48003 0.984292 0.016252 -0.968583 0.248158 +-0.015615 -0.968583 0.248199 -0.479968 0.984292 -0.014978 -0.968583 0.248238 +-0.035112 -0.982287 0.184062 -0.439969 0.991144 -0.034476 -0.982287 0.184183 +-0.011766 -0.982287 0.187012 -0.479969 0.991144 -0.01112 -0.982287 0.187051 +-0.0466 -0.968583 0.244285 -0.439968 0.984292 -0.045973 -0.968583 0.244403 +-0.035112 -0.982287 0.184062 -0.439969 0.991144 -0.034476 -0.982287 0.184183 +-0.015615 -0.968583 0.248199 -0.479968 0.984292 -0.014978 -0.968583 0.248238 +-0.0466 -0.968583 0.244285 -0.439968 0.984292 -0.045973 -0.968583 0.244403 +-0.057904 -0.982287 0.17821 -0.399969 0.991144 -0.057288 -0.982287 0.17841 +-0.035112 -0.982287 0.184062 -0.439969 0.991144 -0.034476 -0.982287 0.184183 +-0.076849 -0.968583 0.236518 -0.399968 0.984292 -0.076242 -0.968583 0.236714 +-0.057904 -0.982287 0.17821 -0.399969 0.991144 -0.057288 -0.982287 0.17841 +-0.0466 -0.968583 0.244285 -0.439968 0.984292 -0.045973 -0.968583 0.244403 +-0.076849 -0.968583 0.236518 -0.399968 0.984292 -0.076242 -0.968583 0.236714 +-0.079783 -0.982287 0.169548 -0.359968 0.991144 -0.079197 -0.982287 0.169823 +-0.057904 -0.982287 0.17821 -0.399969 0.991144 -0.057288 -0.982287 0.17841 +-0.105887 -0.968583 0.225021 -0.359968 0.984292 -0.105309 -0.968583 0.225291 +-0.079783 -0.982287 0.169548 -0.359968 0.991144 -0.079197 -0.982287 0.169823 +-0.076849 -0.968583 0.236518 -0.399968 0.984292 -0.076242 -0.968583 0.236714 +-0.105887 -0.968583 0.225021 -0.359968 0.984292 -0.105309 -0.968583 0.225291 +-0.100404 -0.982287 0.158211 -0.319968 0.991144 -0.099857 -0.982287 0.158558 +-0.079783 -0.982287 0.169548 -0.359968 0.991144 -0.079197 -0.982287 0.169823 +-0.133255 -0.968583 0.209976 -0.319968 0.984292 -0.132715 -0.968583 0.210317 +-0.100404 -0.982287 0.158211 -0.319968 0.991144 -0.099857 -0.982287 0.158558 +-0.105887 -0.968583 0.225021 -0.359968 0.984292 -0.105309 -0.968583 0.225291 +-0.133255 -0.968583 0.209976 -0.319968 0.984292 -0.132715 -0.968583 0.210317 +-0.119441 -0.982287 0.14438 -0.279968 0.991144 -0.118942 -0.982287 0.144792 +-0.100404 -0.982287 0.158211 -0.319968 0.991144 -0.099857 -0.982287 0.158558 +-0.158521 -0.968583 0.191619 -0.279968 0.984292 -0.158028 -0.968583 0.192024 +-0.119441 -0.982287 0.14438 -0.279968 0.991144 -0.118942 -0.982287 0.144792 +-0.133255 -0.968583 0.209976 -0.319968 0.984292 -0.132715 -0.968583 0.210317 +-0.158521 -0.968583 0.191619 -0.279968 0.984292 -0.158028 -0.968583 0.192024 +-0.136595 -0.982287 0.128271 -0.239968 0.991144 -0.136152 -0.982287 0.128742 +-0.119441 -0.982287 0.14438 -0.279968 0.991144 -0.118942 -0.982287 0.144792 +-0.181287 -0.968583 0.17024 -0.239968 0.984292 -0.180849 -0.968584 0.170704 +-0.136595 -0.982287 0.128271 -0.239968 0.991144 -0.136152 -0.982287 0.128742 +-0.158521 -0.968583 0.191619 -0.279968 0.984292 -0.158028 -0.968583 0.192024 +-0.181287 -0.968583 0.17024 -0.239968 0.984292 -0.180849 -0.968584 0.170704 +-0.151595 -0.982287 0.11014 -0.199968 0.991144 -0.151214 -0.982287 0.110662 +-0.136595 -0.982287 0.128271 -0.239968 0.991144 -0.136152 -0.982287 0.128742 +-0.201194 -0.968583 0.146176 -0.199968 0.984292 -0.200818 -0.968583 0.146692 +-0.151595 -0.982287 0.11014 -0.199968 0.991144 -0.151214 -0.982287 0.110662 +-0.181287 -0.968583 0.17024 -0.239968 0.984292 -0.180849 -0.968584 0.170704 +-0.201194 -0.968583 0.146176 -0.199968 0.984292 -0.200818 -0.968583 0.146692 +-0.164204 -0.982287 0.090272 -0.159968 0.991144 -0.163891 -0.982287 0.090839 +-0.151595 -0.982287 0.11014 -0.199968 0.991144 -0.151214 -0.982287 0.110662 +-0.217929 -0.968583 0.119807 -0.159968 0.984292 -0.21762 -0.968583 0.120366 +-0.164204 -0.982287 0.090272 -0.159968 0.991144 -0.163891 -0.982287 0.090839 +-0.201194 -0.968583 0.146176 -0.199968 0.984292 -0.200818 -0.968583 0.146692 +-0.217929 -0.968583 0.119807 -0.159968 0.984292 -0.21762 -0.968583 0.120366 +-0.174223 -0.982287 0.06898 -0.119968 0.991144 -0.173984 -0.982287 0.069581 +-0.164204 -0.982287 0.090272 -0.159968 0.991144 -0.163891 -0.982287 0.090839 +-0.231226 -0.968583 0.091549 -0.119968 0.984292 -0.23099 -0.968583 0.092141 +-0.174223 -0.982287 0.06898 -0.119968 0.991144 -0.173984 -0.982287 0.069581 +-0.217929 -0.968583 0.119807 -0.159968 0.984292 -0.21762 -0.968583 0.120366 +-0.231226 -0.968583 0.091549 -0.119968 0.984292 -0.23099 -0.968583 0.092141 +-0.181495 -0.982287 0.0466 -0.079968 0.991144 -0.181333 -0.982287 0.047225 +-0.174223 -0.982287 0.06898 -0.119968 0.991144 -0.173984 -0.982287 0.069581 +-0.240877 -0.968583 0.061847 -0.079968 0.984292 -0.240717 -0.968583 0.062464 +-0.181495 -0.982287 0.0466 -0.079968 0.991144 -0.181333 -0.982287 0.047225 +-0.231226 -0.968583 0.091549 -0.119968 0.984292 -0.23099 -0.968583 0.092141 +-0.240877 -0.968583 0.061847 -0.079968 0.984292 -0.240717 -0.968583 0.062464 +-0.185904 -0.982287 0.023485 -0.039968 0.991144 -0.185822 -0.982287 0.024127 +-0.181495 -0.982287 0.0466 -0.079968 0.991144 -0.181333 -0.982287 0.047225 +-0.246729 -0.968583 0.031169 -0.039968 0.984292 -0.246647 -0.968583 0.031802 +-0.185904 -0.982287 0.023485 -0.039968 0.991144 -0.185822 -0.982287 0.024127 +-0.240877 -0.968583 0.061847 -0.079968 0.984292 -0.240717 -0.968583 0.062464 +-0.246729 -0.968583 0.031169 -0.039968 0.984292 -0.246647 -0.968583 0.031802 +-0.187381 -0.982287 -0 3.2e-005 0.991144 -0.187381 -0.982287 0.000647 +-0.185904 -0.982287 0.023485 -0.039968 0.991144 -0.185822 -0.982287 0.024127 +-0.24869 -0.968583 -0 3.2e-005 0.984292 -0.248688 -0.968583 0.000637 +-0.187381 -0.982287 -0 3.2e-005 0.991144 -0.187381 -0.982287 0.000647 +-0.246729 -0.968583 0.031169 -0.039968 0.984292 -0.246647 -0.968583 0.031802 +-0.24869 -0.968583 -0 3.2e-005 0.984292 -0.248688 -0.968583 0.000637 +-0.185904 -0.982287 -0.023485 0.040032 0.991144 -0.185984 -0.982287 -0.022842 +-0.187381 -0.982287 -0 3.2e-005 0.991144 -0.187381 -0.982287 0.000647 +-0.246729 -0.968583 -0.031169 0.040032 0.984292 -0.246807 -0.968583 -0.030536 +-0.185904 -0.982287 -0.023485 0.040032 0.991144 -0.185984 -0.982287 -0.022842 +-0.24869 -0.968583 -0 3.2e-005 0.984292 -0.248688 -0.968583 0.000637 +-0.246729 -0.968583 -0.031169 0.040032 0.984292 -0.246807 -0.968583 -0.030536 +-0.181495 -0.982287 -0.0466 0.080032 0.991144 -0.181655 -0.982287 -0.045972 +-0.185904 -0.982287 -0.023485 0.040032 0.991144 -0.185984 -0.982287 -0.022842 +-0.240877 -0.968583 -0.061847 0.080032 0.984292 -0.241034 -0.968583 -0.061228 +-0.181495 -0.982287 -0.0466 0.080032 0.991144 -0.181655 -0.982287 -0.045972 +-0.246729 -0.968583 -0.031169 0.040032 0.984292 -0.246807 -0.968583 -0.030536 +-0.240877 -0.968583 -0.061847 0.080032 0.984292 -0.241034 -0.968583 -0.061228 +-0.174223 -0.982287 -0.06898 0.120032 0.991144 -0.17446 -0.982287 -0.068379 +-0.181495 -0.982287 -0.0466 0.080032 0.991144 -0.181655 -0.982287 -0.045972 +-0.231226 -0.968583 -0.091549 0.120032 0.984292 -0.23146 -0.968583 -0.090956 +-0.174223 -0.982287 -0.06898 0.120032 0.991144 -0.17446 -0.982287 -0.068379 +-0.240877 -0.968583 -0.061847 0.080032 0.984292 -0.241034 -0.968583 -0.061228 +-0.231226 -0.968583 -0.091549 0.120032 0.984292 -0.23146 -0.968583 -0.090956 +-0.164204 -0.982287 -0.090272 0.160033 0.991144 -0.164515 -0.982287 -0.089703 +-0.174223 -0.982287 -0.06898 0.120032 0.991144 -0.17446 -0.982287 -0.068379 +-0.217929 -0.968583 -0.119807 0.160032 0.984292 -0.218235 -0.968583 -0.119248 +-0.164204 -0.982287 -0.090272 0.160033 0.991144 -0.164515 -0.982287 -0.089703 +-0.231226 -0.968583 -0.091549 0.120032 0.984292 -0.23146 -0.968583 -0.090956 +-0.217929 -0.968583 -0.119807 0.160032 0.984292 -0.218235 -0.968583 -0.119248 +-0.151595 -0.982287 -0.11014 0.200033 0.991144 -0.151974 -0.982287 -0.109616 +-0.164204 -0.982287 -0.090272 0.160033 0.991144 -0.164515 -0.982287 -0.089703 +-0.201194 -0.968583 -0.146176 0.200032 0.984292 -0.201568 -0.968583 -0.145659 +-0.151595 -0.982287 -0.11014 0.200033 0.991144 -0.151974 -0.982287 -0.109616 +-0.217929 -0.968583 -0.119807 0.160032 0.984292 -0.218235 -0.968583 -0.119248 +-0.201194 -0.968583 -0.146176 0.200032 0.984292 -0.201568 -0.968583 -0.145659 +-0.136595 -0.982287 -0.128271 0.240033 0.991144 -0.137038 -0.982287 -0.1278 +-0.151595 -0.982287 -0.11014 0.200033 0.991144 -0.151974 -0.982287 -0.109616 +-0.181287 -0.968583 -0.17024 0.240032 0.984292 -0.181723 -0.968583 -0.169775 +-0.136595 -0.982287 -0.128271 0.240033 0.991144 -0.137038 -0.982287 -0.1278 +-0.201194 -0.968583 -0.146176 0.200032 0.984292 -0.201568 -0.968583 -0.145659 +-0.181287 -0.968583 -0.17024 0.240032 0.984292 -0.181723 -0.968583 -0.169775 +-0.119441 -0.982287 -0.14438 0.280033 0.991144 -0.11994 -0.982287 -0.143966 +-0.136595 -0.982287 -0.128271 0.240033 0.991144 -0.137038 -0.982287 -0.1278 +-0.158521 -0.968583 -0.191619 0.280032 0.984292 -0.159012 -0.968583 -0.191211 +-0.119441 -0.982287 -0.14438 0.280033 0.991144 -0.11994 -0.982287 -0.143966 +-0.181287 -0.968583 -0.17024 0.240032 0.984292 -0.181723 -0.968583 -0.169775 +-0.158521 -0.968583 -0.191619 0.280032 0.984292 -0.159012 -0.968583 -0.191211 +-0.100404 -0.982287 -0.158211 0.320033 0.991144 -0.10095 -0.982287 -0.157865 +-0.119441 -0.982287 -0.14438 0.280033 0.991144 -0.11994 -0.982287 -0.143966 +-0.133255 -0.968583 -0.209976 0.320032 0.984292 -0.133793 -0.968583 -0.209633 +-0.100404 -0.982287 -0.158211 0.320033 0.991144 -0.10095 -0.982287 -0.157865 +-0.158521 -0.968583 -0.191619 0.280032 0.984292 -0.159012 -0.968583 -0.191211 +-0.133255 -0.968583 -0.209976 0.320032 0.984292 -0.133793 -0.968583 -0.209633 +-0.079783 -0.982287 -0.169548 0.360033 0.991144 -0.080368 -0.982287 -0.169272 +-0.100404 -0.982287 -0.158211 0.320033 0.991144 -0.10095 -0.982287 -0.157865 +-0.105887 -0.968583 -0.225021 0.360032 0.984292 -0.106464 -0.968584 -0.224748 +-0.079783 -0.982287 -0.169548 0.360033 0.991144 -0.080368 -0.982287 -0.169272 +-0.133255 -0.968583 -0.209976 0.320032 0.984292 -0.133793 -0.968583 -0.209633 +-0.105887 -0.968583 -0.225021 0.360032 0.984292 -0.106464 -0.968584 -0.224748 +-0.057904 -0.982287 -0.17821 0.400032 0.991144 -0.058519 -0.982287 -0.178009 +-0.079783 -0.982287 -0.169548 0.360033 0.991144 -0.080368 -0.982287 -0.169272 +-0.076849 -0.968583 -0.236518 0.400032 0.984292 -0.077456 -0.968583 -0.23632 +-0.057904 -0.982287 -0.17821 0.400032 0.991144 -0.058519 -0.982287 -0.178009 +-0.105887 -0.968583 -0.225021 0.360032 0.984292 -0.106464 -0.968584 -0.224748 +-0.076849 -0.968583 -0.236518 0.400032 0.984292 -0.077456 -0.968583 -0.23632 +-0.035112 -0.982287 -0.184062 0.440032 0.991144 -0.035747 -0.982287 -0.183941 +-0.057904 -0.982287 -0.17821 0.400032 0.991144 -0.058519 -0.982287 -0.178009 +-0.0466 -0.968583 -0.244285 0.440032 0.984292 -0.047226 -0.968583 -0.244164 +-0.035112 -0.982287 -0.184062 0.440032 0.991144 -0.035747 -0.982287 -0.183941 +-0.076849 -0.968583 -0.236518 0.400032 0.984292 -0.077456 -0.968583 -0.23632 +-0.0466 -0.968583 -0.244285 0.440032 0.984292 -0.047226 -0.968583 -0.244164 +-0.011766 -0.982287 -0.187012 0.480032 0.991144 -0.012412 -0.982287 -0.18697 +-0.035112 -0.982287 -0.184062 0.440032 0.991144 -0.035747 -0.982287 -0.183941 +-0.015615 -0.968583 -0.248199 0.480032 0.984292 -0.016252 -0.968583 -0.248157 +-0.011766 -0.982287 -0.187012 0.480032 0.991144 -0.012412 -0.982287 -0.18697 +-0.0466 -0.968583 -0.244285 0.440032 0.984292 -0.047226 -0.968583 -0.244164 +-0.015615 -0.968583 -0.248199 0.480032 0.984292 -0.016252 -0.968583 -0.248157 +0.011766 -0.982287 -0.187012 0.520032 0.991144 0.01112 -0.982287 -0.187052 +-0.011766 -0.982287 -0.187012 0.480032 0.991144 -0.012412 -0.982287 -0.18697 +0.015615 -0.968583 -0.248199 0.520032 0.984292 0.014978 -0.968583 -0.248238 +0.011766 -0.982287 -0.187012 0.520032 0.991144 0.01112 -0.982287 -0.187052 +-0.015615 -0.968583 -0.248199 0.480032 0.984292 -0.016252 -0.968583 -0.248157 +0.015615 -0.968583 -0.248199 0.520032 0.984292 0.014978 -0.968583 -0.248238 +0.035112 -0.982287 -0.184062 0.560032 0.991144 0.034476 -0.982287 -0.184183 +0.011766 -0.982287 -0.187012 0.520032 0.991144 0.01112 -0.982287 -0.187052 +0.0466 -0.968583 -0.244285 0.560032 0.984292 0.045973 -0.968583 -0.244404 +0.035112 -0.982287 -0.184062 0.560032 0.991144 0.034476 -0.982287 -0.184183 +0.015615 -0.968583 -0.248199 0.520032 0.984292 0.014978 -0.968583 -0.248238 +0.0466 -0.968583 -0.244285 0.560032 0.984292 0.045973 -0.968583 -0.244404 +0.057904 -0.982287 -0.17821 0.600032 0.991144 0.057288 -0.982287 -0.17841 +0.035112 -0.982287 -0.184062 0.560032 0.991144 0.034476 -0.982287 -0.184183 +0.076849 -0.968583 -0.236518 0.600032 0.984292 0.076242 -0.968583 -0.236714 +0.057904 -0.982287 -0.17821 0.600032 0.991144 0.057288 -0.982287 -0.17841 +0.0466 -0.968583 -0.244285 0.560032 0.984292 0.045973 -0.968583 -0.244404 +0.076849 -0.968583 -0.236518 0.600032 0.984292 0.076242 -0.968583 -0.236714 +0.079783 -0.982287 -0.169548 0.640032 0.991144 0.079197 -0.982287 -0.169822 +0.057904 -0.982287 -0.17821 0.600032 0.991144 0.057288 -0.982287 -0.17841 +0.105887 -0.968583 -0.225021 0.640032 0.984292 0.105309 -0.968583 -0.225292 +0.079783 -0.982287 -0.169548 0.640032 0.991144 0.079197 -0.982287 -0.169822 +0.076849 -0.968583 -0.236518 0.600032 0.984292 0.076242 -0.968583 -0.236714 +0.105887 -0.968583 -0.225021 0.640032 0.984292 0.105309 -0.968583 -0.225292 +0.100404 -0.982287 -0.158211 0.680032 0.991144 0.099857 -0.982287 -0.158558 +0.079783 -0.982287 -0.169548 0.640032 0.991144 0.079197 -0.982287 -0.169822 +0.133255 -0.968583 -0.209976 0.680032 0.984292 0.132715 -0.968583 -0.210317 +0.100404 -0.982287 -0.158211 0.680032 0.991144 0.099857 -0.982287 -0.158558 +0.105887 -0.968583 -0.225021 0.640032 0.984292 0.105309 -0.968583 -0.225292 +0.133255 -0.968583 -0.209976 0.680032 0.984292 0.132715 -0.968583 -0.210317 +0.119441 -0.982287 -0.14438 0.720032 0.991144 0.118942 -0.982287 -0.144791 +0.100404 -0.982287 -0.158211 0.680032 0.991144 0.099857 -0.982287 -0.158558 +0.158521 -0.968583 -0.191619 0.720032 0.984292 0.158028 -0.968583 -0.192024 +0.119441 -0.982287 -0.14438 0.720032 0.991144 0.118942 -0.982287 -0.144791 +0.133255 -0.968583 -0.209976 0.680032 0.984292 0.132715 -0.968583 -0.210317 +0.158521 -0.968583 -0.191619 0.720032 0.984292 0.158028 -0.968583 -0.192024 +0.136595 -0.982287 -0.128271 0.760032 0.991144 0.136152 -0.982287 -0.128742 +0.119441 -0.982287 -0.14438 0.720032 0.991144 0.118942 -0.982287 -0.144791 +0.181287 -0.968583 -0.17024 0.760032 0.984292 0.180849 -0.968583 -0.170704 +0.136595 -0.982287 -0.128271 0.760032 0.991144 0.136152 -0.982287 -0.128742 +0.158521 -0.968583 -0.191619 0.720032 0.984292 0.158028 -0.968583 -0.192024 +0.181287 -0.968583 -0.17024 0.760032 0.984292 0.180849 -0.968583 -0.170704 +0.151595 -0.982287 -0.11014 0.800032 0.991144 0.151214 -0.982287 -0.110665 +0.136595 -0.982287 -0.128271 0.760032 0.991144 0.136152 -0.982287 -0.128742 +0.201194 -0.968583 -0.146176 0.800032 0.984292 0.200818 -0.968583 -0.146691 +0.151595 -0.982287 -0.11014 0.800032 0.991144 0.151214 -0.982287 -0.110665 +0.181287 -0.968583 -0.17024 0.760032 0.984292 0.180849 -0.968583 -0.170704 +0.201194 -0.968583 -0.146176 0.800032 0.984292 0.200818 -0.968583 -0.146691 +0.164204 -0.982287 -0.090272 0.840032 0.991144 0.163891 -0.982287 -0.090839 +0.151595 -0.982287 -0.11014 0.800032 0.991144 0.151214 -0.982287 -0.110665 +0.217929 -0.968583 -0.119807 0.840032 0.984292 0.21762 -0.968583 -0.120366 +0.164204 -0.982287 -0.090272 0.840032 0.991144 0.163891 -0.982287 -0.090839 +0.201194 -0.968583 -0.146176 0.800032 0.984292 0.200818 -0.968583 -0.146691 +0.217929 -0.968583 -0.119807 0.840032 0.984292 0.21762 -0.968583 -0.120366 +0.174223 -0.982287 -0.06898 0.880032 0.991144 0.173984 -0.982287 -0.069581 +0.164204 -0.982287 -0.090272 0.840032 0.991144 0.163891 -0.982287 -0.090839 +0.231226 -0.968583 -0.091549 0.880032 0.984292 0.23099 -0.968583 -0.092142 +0.174223 -0.982287 -0.06898 0.880032 0.991144 0.173984 -0.982287 -0.069581 +0.217929 -0.968583 -0.119807 0.840032 0.984292 0.21762 -0.968583 -0.120366 +0.231226 -0.968583 -0.091549 0.880032 0.984292 0.23099 -0.968583 -0.092142 +0.181494 -0.982287 -0.0466 0.920032 0.991144 0.181333 -0.982287 -0.047227 +0.174223 -0.982287 -0.06898 0.880032 0.991144 0.173984 -0.982287 -0.069581 +0.240877 -0.968583 -0.061847 0.920032 0.984292 0.240717 -0.968583 -0.062465 +0.181494 -0.982287 -0.0466 0.920032 0.991144 0.181333 -0.982287 -0.047227 +0.231226 -0.968583 -0.091549 0.880032 0.984292 0.23099 -0.968583 -0.092142 +0.240877 -0.968583 -0.061847 0.920032 0.984292 0.240717 -0.968583 -0.062465 +0.185904 -0.982287 -0.023485 0.960031 0.991144 0.185822 -0.982287 -0.024128 +0.181494 -0.982287 -0.0466 0.920032 0.991144 0.181333 -0.982287 -0.047227 +0.246729 -0.968583 -0.031169 0.960032 0.984292 0.246648 -0.968583 -0.031802 +0.185904 -0.982287 -0.023485 0.960031 0.991144 0.185822 -0.982287 -0.024128 +0.240877 -0.968583 -0.061847 0.920032 0.984292 0.240717 -0.968583 -0.062465 +0.246729 -0.968583 -0.031169 0.960032 0.984292 0.246648 -0.968583 -0.031802 +0.187381 -0.982287 -0 1.00003 0.991144 0.187381 -0.982287 -0.000649 +0.185904 -0.982287 -0.023485 0.960031 0.991144 0.185822 -0.982287 -0.024128 +0.24869 -0.968583 -0 1.00003 0.984292 0.248689 -0.968583 -0.000639 +0.187381 -0.982287 -0 1.00003 0.991144 0.187381 -0.982287 -0.000649 +0.246729 -0.968583 -0.031169 0.960032 0.984292 0.246648 -0.968583 -0.031802 +0.24869 -0.968583 -0 1.00003 0.984292 0.248689 -0.968583 -0.000639 +0.185904 -0.982287 0.023485 1.04003 0.991144 0.185984 -0.982287 0.022842 +0.187381 -0.982287 -0 1.00003 0.991144 0.187381 -0.982287 -0.000649 +0.246729 -0.968583 0.031169 1.04003 0.984292 0.246808 -0.968583 0.030534 +0.185904 -0.982287 0.023485 1.04003 0.991144 0.185984 -0.982287 0.022842 +0.24869 -0.968583 -0 1.00003 0.984292 0.248689 -0.968583 -0.000639 +0.306581 -0.951057 0.03873 1.04003 0.975528 0.306658 -0.951057 0.038107 +0.240877 -0.968583 0.061847 1.08003 0.984292 0.241034 -0.968583 0.061227 +0.246729 -0.968583 0.031169 1.04003 0.984292 0.246808 -0.968583 0.030534 +0.299309 -0.951057 0.076849 1.08003 0.975528 0.299463 -0.951057 0.076242 +0.240877 -0.968583 0.061847 1.08003 0.984292 0.241034 -0.968583 0.061227 +0.306581 -0.951057 0.03873 1.04003 0.975528 0.306658 -0.951057 0.038107 +0.299309 -0.951057 0.076849 1.08003 0.975528 0.299463 -0.951057 0.076242 +0.231226 -0.968583 0.091549 1.12003 0.984292 0.231459 -0.968583 0.090956 +0.240877 -0.968583 0.061847 1.08003 0.984292 0.241034 -0.968583 0.061227 +0.287317 -0.951057 0.113757 1.12003 0.975528 0.287546 -0.951057 0.113175 +0.231226 -0.968583 0.091549 1.12003 0.984292 0.231459 -0.968583 0.090956 +0.299309 -0.951057 0.076849 1.08003 0.975528 0.299463 -0.951057 0.076242 +0.287317 -0.951057 0.113757 1.12003 0.975528 0.287546 -0.951057 0.113175 +0.217929 -0.968583 0.119807 1.16003 0.984292 0.218235 -0.968583 0.119248 +0.231226 -0.968583 0.091549 1.12003 0.984292 0.231459 -0.968583 0.090956 +0.270794 -0.951057 0.14887 1.16003 0.975528 0.271094 -0.951057 0.14832 +0.217929 -0.968583 0.119807 1.16003 0.984292 0.218235 -0.968583 0.119248 +0.287317 -0.951057 0.113757 1.12003 0.975528 0.287546 -0.951057 0.113175 +0.270794 -0.951057 0.14887 1.16003 0.975528 0.271094 -0.951057 0.14832 +0.201195 -0.968583 0.146176 1.20003 0.984292 0.201568 -0.968583 0.145659 +0.217929 -0.968583 0.119807 1.16003 0.984292 0.218235 -0.968583 0.119248 +0.25 -0.951057 0.181636 1.20003 0.975528 0.250367 -0.951057 0.181128 +0.201195 -0.968583 0.146176 1.20003 0.984292 0.201568 -0.968583 0.145659 +0.270794 -0.951057 0.14887 1.16003 0.975528 0.271094 -0.951057 0.14832 +0.25 -0.951057 0.181636 1.20003 0.975528 0.250367 -0.951057 0.181128 +0.181287 -0.968583 0.17024 1.24003 0.984292 0.181723 -0.968583 0.169774 +0.201195 -0.968583 0.146176 1.20003 0.984292 0.201568 -0.968583 0.145659 +0.225264 -0.951057 0.211537 1.24003 0.975528 0.225692 -0.951057 0.211079 +0.181287 -0.968583 0.17024 1.24003 0.984292 0.181723 -0.968583 0.169774 +0.25 -0.951057 0.181636 1.20003 0.975528 0.250367 -0.951057 0.181128 +0.225264 -0.951057 0.211537 1.24003 0.975528 0.225692 -0.951057 0.211079 +0.158521 -0.968583 0.191619 1.28003 0.984292 0.159012 -0.968583 0.191211 +0.181287 -0.968583 0.17024 1.24003 0.984292 0.181723 -0.968583 0.169774 +0.196975 -0.951057 0.238102 1.28003 0.975528 0.197457 -0.951057 0.237701 +0.158521 -0.968583 0.191619 1.28003 0.984292 0.159012 -0.968583 0.191211 +0.225264 -0.951057 0.211537 1.24003 0.975528 0.225692 -0.951057 0.211079 +0.196975 -0.951057 0.238102 1.28003 0.975528 0.197457 -0.951057 0.237701 +0.133255 -0.968583 0.209976 1.32003 0.984292 0.133793 -0.968583 0.209633 +0.158521 -0.968583 0.191619 1.28003 0.984292 0.159012 -0.968583 0.191211 +0.16558 -0.951057 0.260912 1.32003 0.975528 0.166108 -0.951057 0.260575 +0.133255 -0.968583 0.209976 1.32003 0.984292 0.133793 -0.968583 0.209633 +0.196975 -0.951057 0.238102 1.28003 0.975528 0.197457 -0.951057 0.237701 +0.16558 -0.951057 0.260912 1.32003 0.975528 0.166108 -0.951057 0.260575 +0.105887 -0.968583 0.225022 1.36003 0.984292 0.106464 -0.968584 0.224748 +0.133255 -0.968583 0.209976 1.32003 0.984292 0.133793 -0.968583 0.209633 +0.131573 -0.951057 0.279607 1.36003 0.975528 0.132139 -0.951057 0.279339 +0.105887 -0.968583 0.225022 1.36003 0.984292 0.106464 -0.968584 0.224748 +0.16558 -0.951057 0.260912 1.32003 0.975528 0.166108 -0.951057 0.260575 +0.131573 -0.951057 0.279607 1.36003 0.975528 0.132139 -0.951057 0.279339 +0.076849 -0.968583 0.236518 1.40003 0.984292 0.077456 -0.968584 0.236319 +0.105887 -0.968583 0.225022 1.36003 0.984292 0.106464 -0.968584 0.224748 +0.095492 -0.951057 0.293893 1.40003 0.975528 0.096087 -0.951057 0.293697 +0.076849 -0.968583 0.236518 1.40003 0.984292 0.077456 -0.968584 0.236319 +0.131573 -0.951057 0.279607 1.36003 0.975528 0.132139 -0.951057 0.279339 +0.095492 -0.951057 0.293893 1.40003 0.975528 0.096087 -0.951057 0.293697 +0.0466 -0.968583 0.244285 1.44003 0.984292 0.047226 -0.968583 0.244164 +0.076849 -0.968583 0.236518 1.40003 0.984292 0.077456 -0.968584 0.236319 +0.057904 -0.951057 0.303544 1.44003 0.975528 0.058519 -0.951057 0.303424 +0.0466 -0.968583 0.244285 1.44003 0.984292 0.047226 -0.968583 0.244164 +0.095492 -0.951057 0.293893 1.40003 0.975528 0.096087 -0.951057 0.293697 +0.057904 -0.951057 0.303544 1.44003 0.975528 0.058519 -0.951057 0.303424 +0.015615 -0.968583 0.248199 1.48003 0.984292 0.016252 -0.968583 0.248158 +0.0466 -0.968583 0.244285 1.44003 0.984292 0.047226 -0.968583 0.244164 +0.019403 -0.951057 0.308407 1.48003 0.975528 0.020029 -0.951057 0.308367 +0.015615 -0.968583 0.248199 1.48003 0.984292 0.016252 -0.968583 0.248158 +0.057904 -0.951057 0.303544 1.44003 0.975528 0.058519 -0.951057 0.303424 +0.019403 -0.951057 0.308407 1.48003 0.975528 0.020029 -0.951057 0.308367 +-0.015615 -0.968583 0.248199 1.52003 0.984292 -0.014978 -0.968583 0.248238 +0.015615 -0.968583 0.248199 1.48003 0.984292 0.016252 -0.968583 0.248158 +-0.019403 -0.951057 0.308407 1.52003 0.975528 -0.018778 -0.951057 0.308445 +-0.015615 -0.968583 0.248199 1.52003 0.984292 -0.014978 -0.968583 0.248238 +0.019403 -0.951057 0.308407 1.48003 0.975528 0.020029 -0.951057 0.308367 +-0.019403 -0.951057 0.308407 -0.479968 0.975528 -0.018778 -0.951057 0.308445 +-0.0466 -0.968583 0.244285 -0.439968 0.984292 -0.045973 -0.968583 0.244403 +-0.015615 -0.968583 0.248199 -0.479968 0.984292 -0.014978 -0.968583 0.248238 +-0.057904 -0.951057 0.303544 -0.439968 0.975528 -0.057288 -0.951057 0.30366 +-0.0466 -0.968583 0.244285 -0.439968 0.984292 -0.045973 -0.968583 0.244403 +-0.019403 -0.951057 0.308407 -0.479968 0.975528 -0.018778 -0.951057 0.308445 +-0.057904 -0.951057 0.303544 -0.439968 0.975528 -0.057288 -0.951057 0.30366 +-0.076849 -0.968583 0.236518 -0.399968 0.984292 -0.076242 -0.968583 0.236714 +-0.0466 -0.968583 0.244285 -0.439968 0.984292 -0.045973 -0.968583 0.244403 +-0.095492 -0.951057 0.293893 -0.399968 0.975528 -0.094895 -0.951057 0.294085 +-0.076849 -0.968583 0.236518 -0.399968 0.984292 -0.076242 -0.968583 0.236714 +-0.057904 -0.951057 0.303544 -0.439968 0.975528 -0.057288 -0.951057 0.30366 +-0.095492 -0.951057 0.293893 -0.399968 0.975528 -0.094895 -0.951057 0.294085 +-0.105887 -0.968583 0.225021 -0.359968 0.984292 -0.105309 -0.968583 0.225291 +-0.076849 -0.968583 0.236518 -0.399968 0.984292 -0.076242 -0.968583 0.236714 +-0.131573 -0.951057 0.279607 -0.359968 0.975528 -0.131006 -0.951057 0.279872 +-0.105887 -0.968583 0.225021 -0.359968 0.984292 -0.105309 -0.968583 0.225291 +-0.095492 -0.951057 0.293893 -0.399968 0.975528 -0.094895 -0.951057 0.294085 +-0.131573 -0.951057 0.279607 -0.359968 0.975528 -0.131006 -0.951057 0.279872 +-0.133255 -0.968583 0.209976 -0.319968 0.984292 -0.132715 -0.968583 0.210317 +-0.105887 -0.968583 0.225021 -0.359968 0.984292 -0.105309 -0.968583 0.225291 +-0.16558 -0.951057 0.260912 -0.319968 0.975528 -0.16505 -0.951057 0.261246 +-0.133255 -0.968583 0.209976 -0.319968 0.984292 -0.132715 -0.968583 0.210317 +-0.131573 -0.951057 0.279607 -0.359968 0.975528 -0.131006 -0.951057 0.279872 +-0.16558 -0.951057 0.260912 -0.319968 0.975528 -0.16505 -0.951057 0.261246 +-0.158521 -0.968583 0.191619 -0.279968 0.984292 -0.158028 -0.968583 0.192024 +-0.133255 -0.968583 0.209976 -0.319968 0.984292 -0.132715 -0.968583 0.210317 +-0.196975 -0.951057 0.238102 -0.279968 0.975528 -0.196491 -0.951057 0.2385 +-0.158521 -0.968583 0.191619 -0.279968 0.984292 -0.158028 -0.968583 0.192024 +-0.16558 -0.951057 0.260912 -0.319968 0.975528 -0.16505 -0.951057 0.261246 +-0.196975 -0.951057 0.238102 -0.279968 0.975528 -0.196491 -0.951057 0.2385 +-0.181287 -0.968583 0.17024 -0.239968 0.984292 -0.180849 -0.968584 0.170704 +-0.158521 -0.968583 0.191619 -0.279968 0.984292 -0.158028 -0.968583 0.192024 +-0.225264 -0.951057 0.211537 -0.239968 0.975528 -0.224834 -0.951057 0.211992 +-0.181287 -0.968583 0.17024 -0.239968 0.984292 -0.180849 -0.968584 0.170704 +-0.196975 -0.951057 0.238102 -0.279968 0.975528 -0.196491 -0.951057 0.2385 +-0.225264 -0.951057 0.211537 -0.239968 0.975528 -0.224834 -0.951057 0.211992 +-0.201194 -0.968583 0.146176 -0.199968 0.984292 -0.200818 -0.968583 0.146692 +-0.181287 -0.968583 0.17024 -0.239968 0.984292 -0.180849 -0.968584 0.170704 +-0.25 -0.951057 0.181636 -0.199968 0.975528 -0.249631 -0.951057 0.182141 +-0.201194 -0.968583 0.146176 -0.199968 0.984292 -0.200818 -0.968583 0.146692 +-0.225264 -0.951057 0.211537 -0.239968 0.975528 -0.224834 -0.951057 0.211992 +-0.25 -0.951057 0.181636 -0.199968 0.975528 -0.249631 -0.951057 0.182141 +-0.217929 -0.968583 0.119807 -0.159968 0.984292 -0.21762 -0.968583 0.120366 +-0.201194 -0.968583 0.146176 -0.199968 0.984292 -0.200818 -0.968583 0.146692 +-0.270794 -0.951057 0.14887 -0.159968 0.975528 -0.270491 -0.951057 0.149419 +-0.217929 -0.968583 0.119807 -0.159968 0.984292 -0.21762 -0.968583 0.120366 +-0.25 -0.951057 0.181636 -0.199968 0.975528 -0.249631 -0.951057 0.182141 +-0.270794 -0.951057 0.14887 -0.159968 0.975528 -0.270491 -0.951057 0.149419 +-0.231226 -0.968583 0.091549 -0.119968 0.984292 -0.23099 -0.968583 0.092141 +-0.217929 -0.968583 0.119807 -0.159968 0.984292 -0.21762 -0.968583 0.120366 +-0.287317 -0.951057 0.113757 -0.119968 0.975528 -0.287085 -0.951057 0.114339 +-0.231226 -0.968583 0.091549 -0.119968 0.984292 -0.23099 -0.968583 0.092141 +-0.270794 -0.951057 0.14887 -0.159968 0.975528 -0.270491 -0.951057 0.149419 +-0.287317 -0.951057 0.113757 -0.119968 0.975528 -0.287085 -0.951057 0.114339 +-0.240877 -0.968583 0.061847 -0.079968 0.984292 -0.240717 -0.968583 0.062464 +-0.231226 -0.968583 0.091549 -0.119968 0.984292 -0.23099 -0.968583 0.092141 +-0.299309 -0.951057 0.076849 -0.079968 0.975528 -0.299152 -0.951057 0.077456 +-0.240877 -0.968583 0.061847 -0.079968 0.984292 -0.240717 -0.968583 0.062464 +-0.287317 -0.951057 0.113757 -0.119968 0.975528 -0.287085 -0.951057 0.114339 +-0.299309 -0.951057 0.076849 -0.079968 0.975528 -0.299152 -0.951057 0.077456 +-0.246729 -0.968583 0.031169 -0.039968 0.984292 -0.246647 -0.968583 0.031802 +-0.240877 -0.968583 0.061847 -0.079968 0.984292 -0.240717 -0.968583 0.062464 +-0.306581 -0.951057 0.03873 -0.039968 0.975528 -0.306501 -0.951057 0.039352 +-0.246729 -0.968583 0.031169 -0.039968 0.984292 -0.246647 -0.968583 0.031802 +-0.299309 -0.951057 0.076849 -0.079968 0.975528 -0.299152 -0.951057 0.077456 +-0.306581 -0.951057 0.03873 -0.039968 0.975528 -0.306501 -0.951057 0.039352 +-0.24869 -0.968583 -0 3.2e-005 0.984292 -0.248688 -0.968583 0.000637 +-0.246729 -0.968583 0.031169 -0.039968 0.984292 -0.246647 -0.968583 0.031802 +-0.309017 -0.951057 -0 3.2e-005 0.975528 -0.309016 -0.951057 0.000627 +-0.24869 -0.968583 -0 3.2e-005 0.984292 -0.248688 -0.968583 0.000637 +-0.306581 -0.951057 0.03873 -0.039968 0.975528 -0.306501 -0.951057 0.039352 +-0.309017 -0.951057 -0 3.2e-005 0.975528 -0.309016 -0.951057 0.000627 +-0.246729 -0.968583 -0.031169 0.040032 0.984292 -0.246807 -0.968583 -0.030536 +-0.24869 -0.968583 -0 3.2e-005 0.984292 -0.248688 -0.968583 0.000637 +-0.30658 -0.951057 -0.03873 0.040032 0.975528 -0.306658 -0.951057 -0.038109 +-0.246729 -0.968583 -0.031169 0.040032 0.984292 -0.246807 -0.968583 -0.030536 +-0.309017 -0.951057 -0 3.2e-005 0.975528 -0.309016 -0.951057 0.000627 +-0.30658 -0.951057 -0.03873 0.040032 0.975528 -0.306658 -0.951057 -0.038109 +-0.240877 -0.968583 -0.061847 0.080032 0.984292 -0.241034 -0.968583 -0.061228 +-0.246729 -0.968583 -0.031169 0.040032 0.984292 -0.246807 -0.968583 -0.030536 +-0.299309 -0.951057 -0.076849 0.080032 0.975528 -0.299463 -0.951057 -0.076242 +-0.240877 -0.968583 -0.061847 0.080032 0.984292 -0.241034 -0.968583 -0.061228 +-0.30658 -0.951057 -0.03873 0.040032 0.975528 -0.306658 -0.951057 -0.038109 +-0.299309 -0.951057 -0.076849 0.080032 0.975528 -0.299463 -0.951057 -0.076242 +-0.231226 -0.968583 -0.091549 0.120032 0.984292 -0.23146 -0.968583 -0.090956 +-0.240877 -0.968583 -0.061847 0.080032 0.984292 -0.241034 -0.968583 -0.061228 +-0.287317 -0.951057 -0.113757 0.120032 0.975528 -0.287546 -0.951057 -0.113175 +-0.231226 -0.968583 -0.091549 0.120032 0.984292 -0.23146 -0.968583 -0.090956 +-0.299309 -0.951057 -0.076849 0.080032 0.975528 -0.299463 -0.951057 -0.076242 +-0.287317 -0.951057 -0.113757 0.120032 0.975528 -0.287546 -0.951057 -0.113175 +-0.217929 -0.968583 -0.119807 0.160032 0.984292 -0.218235 -0.968583 -0.119248 +-0.231226 -0.968583 -0.091549 0.120032 0.984292 -0.23146 -0.968583 -0.090956 +-0.270794 -0.951057 -0.14887 0.160032 0.975528 -0.271094 -0.951057 -0.14832 +-0.217929 -0.968583 -0.119807 0.160032 0.984292 -0.218235 -0.968583 -0.119248 +-0.287317 -0.951057 -0.113757 0.120032 0.975528 -0.287546 -0.951057 -0.113175 +-0.270794 -0.951057 -0.14887 0.160032 0.975528 -0.271094 -0.951057 -0.14832 +-0.201194 -0.968583 -0.146176 0.200032 0.984292 -0.201568 -0.968583 -0.145659 +-0.217929 -0.968583 -0.119807 0.160032 0.984292 -0.218235 -0.968583 -0.119248 +-0.25 -0.951057 -0.181636 0.200032 0.975528 -0.250367 -0.951057 -0.181127 +-0.201194 -0.968583 -0.146176 0.200032 0.984292 -0.201568 -0.968583 -0.145659 +-0.270794 -0.951057 -0.14887 0.160032 0.975528 -0.271094 -0.951057 -0.14832 +-0.25 -0.951057 -0.181636 0.200032 0.975528 -0.250367 -0.951057 -0.181127 +-0.181287 -0.968583 -0.17024 0.240032 0.984292 -0.181723 -0.968583 -0.169775 +-0.201194 -0.968583 -0.146176 0.200032 0.984292 -0.201568 -0.968583 -0.145659 +-0.225264 -0.951057 -0.211537 0.240032 0.975528 -0.225692 -0.951057 -0.21108 +-0.181287 -0.968583 -0.17024 0.240032 0.984292 -0.181723 -0.968583 -0.169775 +-0.25 -0.951057 -0.181636 0.200032 0.975528 -0.250367 -0.951057 -0.181127 +-0.225264 -0.951057 -0.211537 0.240032 0.975528 -0.225692 -0.951057 -0.21108 +-0.158521 -0.968583 -0.191619 0.280032 0.984292 -0.159012 -0.968583 -0.191211 +-0.181287 -0.968583 -0.17024 0.240032 0.984292 -0.181723 -0.968583 -0.169775 +-0.196975 -0.951057 -0.238102 0.280032 0.975528 -0.197457 -0.951057 -0.237701 +-0.158521 -0.968583 -0.191619 0.280032 0.984292 -0.159012 -0.968583 -0.191211 +-0.225264 -0.951057 -0.211537 0.240032 0.975528 -0.225692 -0.951057 -0.21108 +-0.196975 -0.951057 -0.238102 0.280032 0.975528 -0.197457 -0.951057 -0.237701 +-0.133255 -0.968583 -0.209976 0.320032 0.984292 -0.133793 -0.968583 -0.209633 +-0.158521 -0.968583 -0.191619 0.280032 0.984292 -0.159012 -0.968583 -0.191211 +-0.16558 -0.951057 -0.260912 0.320032 0.975528 -0.166108 -0.951057 -0.260575 +-0.133255 -0.968583 -0.209976 0.320032 0.984292 -0.133793 -0.968583 -0.209633 +-0.196975 -0.951057 -0.238102 0.280032 0.975528 -0.197457 -0.951057 -0.237701 +-0.16558 -0.951057 -0.260912 0.320032 0.975528 -0.166108 -0.951057 -0.260575 +-0.105887 -0.968583 -0.225021 0.360032 0.984292 -0.106464 -0.968584 -0.224748 +-0.133255 -0.968583 -0.209976 0.320032 0.984292 -0.133793 -0.968583 -0.209633 +-0.131573 -0.951057 -0.279607 0.360032 0.975528 -0.132139 -0.951057 -0.279339 +-0.105887 -0.968583 -0.225021 0.360032 0.984292 -0.106464 -0.968584 -0.224748 +-0.16558 -0.951057 -0.260912 0.320032 0.975528 -0.166108 -0.951057 -0.260575 +-0.131573 -0.951057 -0.279607 0.360032 0.975528 -0.132139 -0.951057 -0.279339 +-0.076849 -0.968583 -0.236518 0.400032 0.984292 -0.077456 -0.968583 -0.23632 +-0.105887 -0.968583 -0.225021 0.360032 0.984292 -0.106464 -0.968584 -0.224748 +-0.095492 -0.951057 -0.293893 0.400032 0.975528 -0.096087 -0.951057 -0.293698 +-0.076849 -0.968583 -0.236518 0.400032 0.984292 -0.077456 -0.968583 -0.23632 +-0.131573 -0.951057 -0.279607 0.360032 0.975528 -0.132139 -0.951057 -0.279339 +-0.095492 -0.951057 -0.293893 0.400032 0.975528 -0.096087 -0.951057 -0.293698 +-0.0466 -0.968583 -0.244285 0.440032 0.984292 -0.047226 -0.968583 -0.244164 +-0.076849 -0.968583 -0.236518 0.400032 0.984292 -0.077456 -0.968583 -0.23632 +-0.057904 -0.951057 -0.303544 0.440032 0.975528 -0.058519 -0.951057 -0.303425 +-0.0466 -0.968583 -0.244285 0.440032 0.984292 -0.047226 -0.968583 -0.244164 +-0.095492 -0.951057 -0.293893 0.400032 0.975528 -0.096087 -0.951057 -0.293698 +-0.057904 -0.951057 -0.303544 0.440032 0.975528 -0.058519 -0.951057 -0.303425 +-0.015615 -0.968583 -0.248199 0.480032 0.984292 -0.016252 -0.968583 -0.248157 +-0.0466 -0.968583 -0.244285 0.440032 0.984292 -0.047226 -0.968583 -0.244164 +-0.019403 -0.951057 -0.308407 0.480032 0.975528 -0.020028 -0.951057 -0.308367 +-0.015615 -0.968583 -0.248199 0.480032 0.984292 -0.016252 -0.968583 -0.248157 +-0.057904 -0.951057 -0.303544 0.440032 0.975528 -0.058519 -0.951057 -0.303425 +-0.019403 -0.951057 -0.308407 0.480032 0.975528 -0.020028 -0.951057 -0.308367 +0.015615 -0.968583 -0.248199 0.520032 0.984292 0.014978 -0.968583 -0.248238 +-0.015615 -0.968583 -0.248199 0.480032 0.984292 -0.016252 -0.968583 -0.248157 +0.019403 -0.951057 -0.308407 0.520032 0.975528 0.018778 -0.951056 -0.308446 +0.015615 -0.968583 -0.248199 0.520032 0.984292 0.014978 -0.968583 -0.248238 +-0.019403 -0.951057 -0.308407 0.480032 0.975528 -0.020028 -0.951057 -0.308367 +0.019403 -0.951057 -0.308407 0.520032 0.975528 0.018778 -0.951056 -0.308446 +0.0466 -0.968583 -0.244285 0.560032 0.984292 0.045973 -0.968583 -0.244404 +0.015615 -0.968583 -0.248199 0.520032 0.984292 0.014978 -0.968583 -0.248238 +0.057904 -0.951057 -0.303544 0.560032 0.975528 0.057288 -0.951057 -0.30366 +0.0466 -0.968583 -0.244285 0.560032 0.984292 0.045973 -0.968583 -0.244404 +0.019403 -0.951057 -0.308407 0.520032 0.975528 0.018778 -0.951056 -0.308446 +0.057904 -0.951057 -0.303544 0.560032 0.975528 0.057288 -0.951057 -0.30366 +0.076849 -0.968583 -0.236518 0.600032 0.984292 0.076242 -0.968583 -0.236714 +0.0466 -0.968583 -0.244285 0.560032 0.984292 0.045973 -0.968583 -0.244404 +0.095492 -0.951057 -0.293893 0.600032 0.975528 0.094895 -0.951057 -0.294085 +0.076849 -0.968583 -0.236518 0.600032 0.984292 0.076242 -0.968583 -0.236714 +0.057904 -0.951057 -0.303544 0.560032 0.975528 0.057288 -0.951057 -0.30366 +0.095492 -0.951057 -0.293893 0.600032 0.975528 0.094895 -0.951057 -0.294085 +0.105887 -0.968583 -0.225021 0.640032 0.984292 0.105309 -0.968583 -0.225292 +0.076849 -0.968583 -0.236518 0.600032 0.984292 0.076242 -0.968583 -0.236714 +0.131573 -0.951057 -0.279607 0.640032 0.975528 0.131006 -0.951057 -0.279872 +0.105887 -0.968583 -0.225021 0.640032 0.984292 0.105309 -0.968583 -0.225292 +0.095492 -0.951057 -0.293893 0.600032 0.975528 0.094895 -0.951057 -0.294085 +0.131573 -0.951057 -0.279607 0.640032 0.975528 0.131006 -0.951057 -0.279872 +0.133255 -0.968583 -0.209976 0.680032 0.984292 0.132715 -0.968583 -0.210317 +0.105887 -0.968583 -0.225021 0.640032 0.984292 0.105309 -0.968583 -0.225292 +0.16558 -0.951057 -0.260912 0.680032 0.975528 0.16505 -0.951057 -0.261246 +0.133255 -0.968583 -0.209976 0.680032 0.984292 0.132715 -0.968583 -0.210317 +0.131573 -0.951057 -0.279607 0.640032 0.975528 0.131006 -0.951057 -0.279872 +0.16558 -0.951057 -0.260912 0.680032 0.975528 0.16505 -0.951057 -0.261246 +0.158521 -0.968583 -0.191619 0.720032 0.984292 0.158028 -0.968583 -0.192024 +0.133255 -0.968583 -0.209976 0.680032 0.984292 0.132715 -0.968583 -0.210317 +0.196975 -0.951057 -0.238102 0.720032 0.975528 0.196491 -0.951057 -0.2385 +0.158521 -0.968583 -0.191619 0.720032 0.984292 0.158028 -0.968583 -0.192024 +0.16558 -0.951057 -0.260912 0.680032 0.975528 0.16505 -0.951057 -0.261246 +0.196975 -0.951057 -0.238102 0.720032 0.975528 0.196491 -0.951057 -0.2385 +0.181287 -0.968583 -0.17024 0.760032 0.984292 0.180849 -0.968583 -0.170704 +0.158521 -0.968583 -0.191619 0.720032 0.984292 0.158028 -0.968583 -0.192024 +0.225264 -0.951057 -0.211537 0.760032 0.975528 0.224834 -0.951057 -0.211992 +0.181287 -0.968583 -0.17024 0.760032 0.984292 0.180849 -0.968583 -0.170704 +0.196975 -0.951057 -0.238102 0.720032 0.975528 0.196491 -0.951057 -0.2385 +0.225264 -0.951057 -0.211537 0.760032 0.975528 0.224834 -0.951057 -0.211992 +0.201194 -0.968583 -0.146176 0.800032 0.984292 0.200818 -0.968583 -0.146691 +0.181287 -0.968583 -0.17024 0.760032 0.984292 0.180849 -0.968583 -0.170704 +0.25 -0.951057 -0.181636 0.800032 0.975528 0.249631 -0.951057 -0.182141 +0.201194 -0.968583 -0.146176 0.800032 0.984292 0.200818 -0.968583 -0.146691 +0.225264 -0.951057 -0.211537 0.760032 0.975528 0.224834 -0.951057 -0.211992 +0.25 -0.951057 -0.181636 0.800032 0.975528 0.249631 -0.951057 -0.182141 +0.217929 -0.968583 -0.119807 0.840032 0.984292 0.21762 -0.968583 -0.120366 +0.201194 -0.968583 -0.146176 0.800032 0.984292 0.200818 -0.968583 -0.146691 +0.270794 -0.951057 -0.14887 0.840032 0.975528 0.270491 -0.951057 -0.149419 +0.217929 -0.968583 -0.119807 0.840032 0.984292 0.21762 -0.968583 -0.120366 +0.25 -0.951057 -0.181636 0.800032 0.975528 0.249631 -0.951057 -0.182141 +0.270794 -0.951057 -0.14887 0.840032 0.975528 0.270491 -0.951057 -0.149419 +0.231226 -0.968583 -0.091549 0.880032 0.984292 0.23099 -0.968583 -0.092142 +0.217929 -0.968583 -0.119807 0.840032 0.984292 0.21762 -0.968583 -0.120366 +0.287317 -0.951057 -0.113757 0.880032 0.975528 0.287085 -0.951057 -0.114339 +0.231226 -0.968583 -0.091549 0.880032 0.984292 0.23099 -0.968583 -0.092142 +0.270794 -0.951057 -0.14887 0.840032 0.975528 0.270491 -0.951057 -0.149419 +0.287317 -0.951057 -0.113757 0.880032 0.975528 0.287085 -0.951057 -0.114339 +0.240877 -0.968583 -0.061847 0.920032 0.984292 0.240717 -0.968583 -0.062465 +0.231226 -0.968583 -0.091549 0.880032 0.984292 0.23099 -0.968583 -0.092142 +0.299309 -0.951057 -0.076849 0.920032 0.975528 0.299152 -0.951057 -0.077456 +0.240877 -0.968583 -0.061847 0.920032 0.984292 0.240717 -0.968583 -0.062465 +0.287317 -0.951057 -0.113757 0.880032 0.975528 0.287085 -0.951057 -0.114339 +0.299309 -0.951057 -0.076849 0.920032 0.975528 0.299152 -0.951057 -0.077456 +0.246729 -0.968583 -0.031169 0.960032 0.984292 0.246648 -0.968583 -0.031802 +0.240877 -0.968583 -0.061847 0.920032 0.984292 0.240717 -0.968583 -0.062465 +0.30658 -0.951057 -0.03873 0.960032 0.975528 0.306501 -0.951057 -0.039351 +0.246729 -0.968583 -0.031169 0.960032 0.984292 0.246648 -0.968583 -0.031802 +0.299309 -0.951057 -0.076849 0.920032 0.975528 0.299152 -0.951057 -0.077456 +0.30658 -0.951057 -0.03873 0.960032 0.975528 0.306501 -0.951057 -0.039351 +0.24869 -0.968583 -0 1.00003 0.984292 0.248689 -0.968583 -0.000639 +0.246729 -0.968583 -0.031169 0.960032 0.984292 0.246648 -0.968583 -0.031802 +0.309017 -0.951057 -0 1.00003 0.975528 0.309016 -0.951057 -0.000627 +0.24869 -0.968583 -0 1.00003 0.984292 0.248689 -0.968583 -0.000639 +0.30658 -0.951057 -0.03873 0.960032 0.975528 0.306501 -0.951057 -0.039351 +0.309017 -0.951057 -0 1.00003 0.975528 0.309016 -0.951057 -0.000627 +0.246729 -0.968583 0.031169 1.04003 0.984292 0.246808 -0.968583 0.030534 +0.24869 -0.968583 -0 1.00003 0.984292 0.248689 -0.968583 -0.000639 +0.306581 -0.951057 0.03873 1.04003 0.975528 0.306658 -0.951057 0.038107 +0.246729 -0.968583 0.031169 1.04003 0.984292 0.246808 -0.968583 0.030534 +0.309017 -0.951057 -0 1.00003 0.975528 0.309016 -0.951057 -0.000627 +0.365222 -0.929776 0.046138 1.04003 0.964888 0.365297 -0.929777 0.045529 +0.299309 -0.951057 0.076849 1.08003 0.975528 0.299463 -0.951057 0.076242 +0.306581 -0.951057 0.03873 1.04003 0.975528 0.306658 -0.951057 0.038107 +0.35656 -0.929776 0.091549 1.08003 0.964888 0.35671 -0.929777 0.090956 +0.299309 -0.951057 0.076849 1.08003 0.975528 0.299463 -0.951057 0.076242 +0.365222 -0.929776 0.046138 1.04003 0.964888 0.365297 -0.929777 0.045529 +0.35656 -0.929776 0.091549 1.08003 0.964888 0.35671 -0.929777 0.090956 +0.287317 -0.951057 0.113757 1.12003 0.975528 0.287546 -0.951057 0.113175 +0.299309 -0.951057 0.076849 1.08003 0.975528 0.299463 -0.951057 0.076242 +0.342274 -0.929776 0.135516 1.12003 0.964888 0.342498 -0.929777 0.134947 +0.287317 -0.951057 0.113757 1.12003 0.975528 0.287546 -0.951057 0.113175 +0.35656 -0.929776 0.091549 1.08003 0.964888 0.35671 -0.929777 0.090956 +0.342274 -0.929776 0.135516 1.12003 0.964888 0.342498 -0.929777 0.134947 +0.270794 -0.951057 0.14887 1.16003 0.975528 0.271094 -0.951057 0.14832 +0.287317 -0.951057 0.113757 1.12003 0.975528 0.287546 -0.951057 0.113175 +0.32259 -0.929776 0.177346 1.16003 0.964888 0.322884 -0.929777 0.176808 +0.270794 -0.951057 0.14887 1.16003 0.975528 0.271094 -0.951057 0.14832 +0.342274 -0.929776 0.135516 1.12003 0.964888 0.342498 -0.929777 0.134947 +0.32259 -0.929776 0.177346 1.16003 0.964888 0.322884 -0.929777 0.176808 +0.25 -0.951057 0.181636 1.20003 0.975528 0.250367 -0.951057 0.181128 +0.270794 -0.951057 0.14887 1.16003 0.975528 0.271094 -0.951057 0.14832 +0.297819 -0.929776 0.216378 1.20003 0.964888 0.298178 -0.929777 0.215882 +0.25 -0.951057 0.181636 1.20003 0.975528 0.250367 -0.951057 0.181128 +0.32259 -0.929776 0.177346 1.16003 0.964888 0.322884 -0.929777 0.176808 +0.297819 -0.929776 0.216378 1.20003 0.964888 0.298178 -0.929777 0.215882 +0.225264 -0.951057 0.211537 1.24003 0.975528 0.225692 -0.951057 0.211079 +0.25 -0.951057 0.181636 1.20003 0.975528 0.250367 -0.951057 0.181128 +0.268351 -0.929776 0.251999 1.24003 0.964888 0.268769 -0.929777 0.251551 +0.225264 -0.951057 0.211537 1.24003 0.975528 0.225692 -0.951057 0.211079 +0.297819 -0.929776 0.216378 1.20003 0.964888 0.298178 -0.929777 0.215882 +0.268351 -0.929776 0.251999 1.24003 0.964888 0.268769 -0.929777 0.251551 +0.196975 -0.951057 0.238102 1.28003 0.975528 0.197457 -0.951057 0.237701 +0.225264 -0.951057 0.211537 1.24003 0.975528 0.225692 -0.951057 0.211079 +0.234652 -0.929776 0.283645 1.28003 0.964888 0.235122 -0.929777 0.283254 +0.196975 -0.951057 0.238102 1.28003 0.975528 0.197457 -0.951057 0.237701 +0.268351 -0.929776 0.251999 1.24003 0.964888 0.268769 -0.929777 0.251551 +0.234652 -0.929776 0.283645 1.28003 0.964888 0.235122 -0.929777 0.283254 +0.16558 -0.951057 0.260912 1.32003 0.975528 0.166108 -0.951057 0.260575 +0.196975 -0.951057 0.238102 1.28003 0.975528 0.197457 -0.951057 0.237701 +0.197251 -0.929776 0.310818 1.32003 0.964888 0.197767 -0.929777 0.310489 +0.16558 -0.951057 0.260912 1.32003 0.975528 0.166108 -0.951057 0.260575 +0.234652 -0.929776 0.283645 1.28003 0.964888 0.235122 -0.929777 0.283254 +0.197251 -0.929776 0.310818 1.32003 0.964888 0.197767 -0.929777 0.310489 +0.131573 -0.951057 0.279607 1.36003 0.975528 0.132139 -0.951057 0.279339 +0.16558 -0.951057 0.260912 1.32003 0.975528 0.166108 -0.951057 0.260575 +0.15674 -0.929776 0.333089 1.36003 0.964888 0.157293 -0.929777 0.332827 +0.131573 -0.951057 0.279607 1.36003 0.975528 0.132139 -0.951057 0.279339 +0.197251 -0.929776 0.310818 1.32003 0.964888 0.197767 -0.929777 0.310489 +0.15674 -0.929776 0.333089 1.36003 0.964888 0.157293 -0.929777 0.332827 +0.095492 -0.951057 0.293893 1.40003 0.975528 0.096087 -0.951057 0.293697 +0.131573 -0.951057 0.279607 1.36003 0.975528 0.132139 -0.951057 0.279339 +0.113757 -0.929776 0.350108 1.40003 0.964888 0.114339 -0.929777 0.349917 +0.095492 -0.951057 0.293893 1.40003 0.975528 0.096087 -0.951057 0.293697 +0.15674 -0.929776 0.333089 1.36003 0.964888 0.157293 -0.929777 0.332827 +0.113757 -0.929776 0.350108 1.40003 0.964888 0.114339 -0.929777 0.349917 +0.057904 -0.951057 0.303544 1.44003 0.975528 0.058519 -0.951057 0.303424 +0.095492 -0.951057 0.293893 1.40003 0.975528 0.096087 -0.951057 0.293697 +0.06898 -0.929776 0.361604 1.44003 0.964888 0.069581 -0.929777 0.361488 +0.057904 -0.951057 0.303544 1.44003 0.975528 0.058519 -0.951057 0.303424 +0.113757 -0.929776 0.350108 1.40003 0.964888 0.114339 -0.929777 0.349917 +0.06898 -0.929776 0.361604 1.44003 0.964888 0.069581 -0.929777 0.361488 +0.019403 -0.951057 0.308407 1.48003 0.975528 0.020029 -0.951057 0.308367 +0.057904 -0.951057 0.303544 1.44003 0.975528 0.058519 -0.951057 0.303424 +0.023115 -0.929776 0.367398 1.48003 0.964888 0.023726 -0.929777 0.367358 +0.019403 -0.951057 0.308407 1.48003 0.975528 0.020029 -0.951057 0.308367 +0.06898 -0.929776 0.361604 1.44003 0.964888 0.069581 -0.929777 0.361488 +0.023115 -0.929776 0.367398 1.48003 0.964888 0.023726 -0.929777 0.367358 +-0.019403 -0.951057 0.308407 1.52003 0.975528 -0.018778 -0.951057 0.308445 +0.019403 -0.951057 0.308407 1.48003 0.975528 0.020029 -0.951057 0.308367 +-0.023115 -0.929776 0.367398 1.52003 0.964888 -0.022504 -0.929777 0.367435 +-0.019403 -0.951057 0.308407 1.52003 0.975528 -0.018778 -0.951057 0.308445 +0.023115 -0.929776 0.367398 1.48003 0.964888 0.023726 -0.929777 0.367358 +-0.023115 -0.929776 0.367398 -0.479968 0.964888 -0.022504 -0.929777 0.367435 +-0.057904 -0.951057 0.303544 -0.439968 0.975528 -0.057288 -0.951057 0.30366 +-0.019403 -0.951057 0.308407 -0.479968 0.975528 -0.018778 -0.951057 0.308445 +-0.06898 -0.929776 0.361604 -0.439968 0.964888 -0.068378 -0.929777 0.361717 +-0.057904 -0.951057 0.303544 -0.439968 0.975528 -0.057288 -0.951057 0.30366 +-0.023115 -0.929776 0.367398 -0.479968 0.964888 -0.022504 -0.929777 0.367435 +-0.06898 -0.929776 0.361604 -0.439968 0.964888 -0.068378 -0.929777 0.361717 +-0.095492 -0.951057 0.293893 -0.399968 0.975528 -0.094895 -0.951057 0.294085 +-0.057904 -0.951057 0.303544 -0.439968 0.975528 -0.057288 -0.951057 0.30366 +-0.113757 -0.929776 0.350107 -0.399968 0.964888 -0.113174 -0.929777 0.350295 +-0.095492 -0.951057 0.293893 -0.399968 0.975528 -0.094895 -0.951057 0.294085 +-0.06898 -0.929776 0.361604 -0.439968 0.964888 -0.068378 -0.929777 0.361717 +-0.113757 -0.929776 0.350107 -0.399968 0.964888 -0.113174 -0.929777 0.350295 +-0.131573 -0.951057 0.279607 -0.359968 0.975528 -0.131006 -0.951057 0.279872 +-0.095492 -0.951057 0.293893 -0.399968 0.975528 -0.094895 -0.951057 0.294085 +-0.15674 -0.929776 0.333089 -0.359968 0.964888 -0.156185 -0.929777 0.333348 +-0.131573 -0.951057 0.279607 -0.359968 0.975528 -0.131006 -0.951057 0.279872 +-0.113757 -0.929776 0.350107 -0.399968 0.964888 -0.113174 -0.929777 0.350295 +-0.15674 -0.929776 0.333089 -0.359968 0.964888 -0.156185 -0.929777 0.333348 +-0.16558 -0.951057 0.260912 -0.319968 0.975528 -0.16505 -0.951057 0.261246 +-0.131573 -0.951057 0.279607 -0.359968 0.975528 -0.131006 -0.951057 0.279872 +-0.197251 -0.929776 0.310818 -0.319968 0.964888 -0.196733 -0.929777 0.311144 +-0.16558 -0.951057 0.260912 -0.319968 0.975528 -0.16505 -0.951057 0.261246 +-0.15674 -0.929776 0.333089 -0.359968 0.964888 -0.156185 -0.929777 0.333348 +-0.197251 -0.929776 0.310818 -0.319968 0.964888 -0.196733 -0.929777 0.311144 +-0.196975 -0.951057 0.238102 -0.279968 0.975528 -0.196491 -0.951057 0.2385 +-0.16558 -0.951057 0.260912 -0.319968 0.975528 -0.16505 -0.951057 0.261246 +-0.234652 -0.929776 0.283645 -0.279968 0.964888 -0.234179 -0.929777 0.284034 +-0.196975 -0.951057 0.238102 -0.279968 0.975528 -0.196491 -0.951057 0.2385 +-0.197251 -0.929776 0.310818 -0.319968 0.964888 -0.196733 -0.929777 0.311144 +-0.234652 -0.929776 0.283645 -0.279968 0.964888 -0.234179 -0.929777 0.284034 +-0.225264 -0.951057 0.211537 -0.239968 0.975528 -0.224834 -0.951057 0.211992 +-0.196975 -0.951057 0.238102 -0.279968 0.975528 -0.196491 -0.951057 0.2385 +-0.268351 -0.929776 0.251999 -0.239968 0.964888 -0.267931 -0.929777 0.252444 +-0.225264 -0.951057 0.211537 -0.239968 0.975528 -0.224834 -0.951057 0.211992 +-0.234652 -0.929776 0.283645 -0.279968 0.964888 -0.234179 -0.929777 0.284034 +-0.268351 -0.929776 0.251999 -0.239968 0.964888 -0.267931 -0.929777 0.252444 +-0.25 -0.951057 0.181636 -0.199968 0.975528 -0.249631 -0.951057 0.182141 +-0.225264 -0.951057 0.211537 -0.239968 0.975528 -0.224834 -0.951057 0.211992 +-0.297819 -0.929776 0.216378 -0.199968 0.964888 -0.297458 -0.929777 0.216872 +-0.25 -0.951057 0.181636 -0.199968 0.975528 -0.249631 -0.951057 0.182141 +-0.268351 -0.929776 0.251999 -0.239968 0.964888 -0.267931 -0.929777 0.252444 +-0.297819 -0.929776 0.216378 -0.199968 0.964888 -0.297458 -0.929777 0.216872 +-0.270794 -0.951057 0.14887 -0.159968 0.975528 -0.270491 -0.951057 0.149419 +-0.25 -0.951057 0.181636 -0.199968 0.975528 -0.249631 -0.951057 0.182141 +-0.32259 -0.929776 0.177345 -0.159968 0.964888 -0.322294 -0.929777 0.177881 +-0.270794 -0.951057 0.14887 -0.159968 0.975528 -0.270491 -0.951057 0.149419 +-0.297819 -0.929776 0.216378 -0.199968 0.964888 -0.297458 -0.929777 0.216872 +-0.32259 -0.929776 0.177345 -0.159968 0.964888 -0.322294 -0.929777 0.177881 +-0.287317 -0.951057 0.113757 -0.119968 0.975528 -0.287085 -0.951057 0.114339 +-0.270794 -0.951057 0.14887 -0.159968 0.975528 -0.270491 -0.951057 0.149419 +-0.342274 -0.929776 0.135516 -0.119968 0.964888 -0.342047 -0.929777 0.136084 +-0.287317 -0.951057 0.113757 -0.119968 0.975528 -0.287085 -0.951057 0.114339 +-0.32259 -0.929776 0.177345 -0.159968 0.964888 -0.322294 -0.929777 0.177881 +-0.342274 -0.929776 0.135516 -0.119968 0.964888 -0.342047 -0.929777 0.136084 +-0.299309 -0.951057 0.076849 -0.079968 0.975528 -0.299152 -0.951057 0.077456 +-0.287317 -0.951057 0.113757 -0.119968 0.975528 -0.287085 -0.951057 0.114339 +-0.356559 -0.929776 0.091549 -0.079968 0.964888 -0.356406 -0.929777 0.092141 +-0.299309 -0.951057 0.076849 -0.079968 0.975528 -0.299152 -0.951057 0.077456 +-0.342274 -0.929776 0.135516 -0.119968 0.964888 -0.342047 -0.929777 0.136084 +-0.356559 -0.929776 0.091549 -0.079968 0.964888 -0.356406 -0.929777 0.092141 +-0.306581 -0.951057 0.03873 -0.039968 0.975528 -0.306501 -0.951057 0.039352 +-0.299309 -0.951057 0.076849 -0.079968 0.975528 -0.299152 -0.951057 0.077456 +-0.365222 -0.929776 0.046138 -0.039968 0.964888 -0.365144 -0.929777 0.046746 +-0.306581 -0.951057 0.03873 -0.039968 0.975528 -0.306501 -0.951057 0.039352 +-0.356559 -0.929776 0.091549 -0.079968 0.964888 -0.356406 -0.929777 0.092141 +-0.365222 -0.929776 0.046138 -0.039968 0.964888 -0.365144 -0.929777 0.046746 +-0.309017 -0.951057 -0 3.2e-005 0.975528 -0.309016 -0.951057 0.000627 +-0.306581 -0.951057 0.03873 -0.039968 0.975528 -0.306501 -0.951057 0.039352 +-0.368125 -0.929776 -0 3.2e-005 0.964888 -0.368123 -0.929777 0.000613 +-0.309017 -0.951057 -0 3.2e-005 0.975528 -0.309016 -0.951057 0.000627 +-0.365222 -0.929776 0.046138 -0.039968 0.964888 -0.365144 -0.929777 0.046746 +-0.368125 -0.929776 -0 3.2e-005 0.964888 -0.368123 -0.929777 0.000613 +-0.30658 -0.951057 -0.03873 0.040032 0.975528 -0.306658 -0.951057 -0.038109 +-0.309017 -0.951057 -0 3.2e-005 0.975528 -0.309016 -0.951057 0.000627 +-0.365222 -0.929776 -0.046138 0.040032 0.964888 -0.365297 -0.929777 -0.04553 +-0.30658 -0.951057 -0.03873 0.040032 0.975528 -0.306658 -0.951057 -0.038109 +-0.368125 -0.929776 -0 3.2e-005 0.964888 -0.368123 -0.929777 0.000613 +-0.365222 -0.929776 -0.046138 0.040032 0.964888 -0.365297 -0.929777 -0.04553 +-0.299309 -0.951057 -0.076849 0.080032 0.975528 -0.299463 -0.951057 -0.076242 +-0.30658 -0.951057 -0.03873 0.040032 0.975528 -0.306658 -0.951057 -0.038109 +-0.356559 -0.929776 -0.091549 0.080032 0.964888 -0.35671 -0.929777 -0.090955 +-0.299309 -0.951057 -0.076849 0.080032 0.975528 -0.299463 -0.951057 -0.076242 +-0.365222 -0.929776 -0.046138 0.040032 0.964888 -0.365297 -0.929777 -0.04553 +-0.356559 -0.929776 -0.091549 0.080032 0.964888 -0.35671 -0.929777 -0.090955 +-0.287317 -0.951057 -0.113757 0.120032 0.975528 -0.287546 -0.951057 -0.113175 +-0.299309 -0.951057 -0.076849 0.080032 0.975528 -0.299463 -0.951057 -0.076242 +-0.342274 -0.929776 -0.135516 0.120032 0.964888 -0.342498 -0.929777 -0.134946 +-0.287317 -0.951057 -0.113757 0.120032 0.975528 -0.287546 -0.951057 -0.113175 +-0.356559 -0.929776 -0.091549 0.080032 0.964888 -0.35671 -0.929777 -0.090955 +-0.342274 -0.929776 -0.135516 0.120032 0.964888 -0.342498 -0.929777 -0.134946 +-0.270794 -0.951057 -0.14887 0.160032 0.975528 -0.271094 -0.951057 -0.14832 +-0.287317 -0.951057 -0.113757 0.120032 0.975528 -0.287546 -0.951057 -0.113175 +-0.32259 -0.929776 -0.177345 0.160032 0.964888 -0.322884 -0.929777 -0.176809 +-0.270794 -0.951057 -0.14887 0.160032 0.975528 -0.271094 -0.951057 -0.14832 +-0.342274 -0.929776 -0.135516 0.120032 0.964888 -0.342498 -0.929777 -0.134946 +-0.32259 -0.929776 -0.177345 0.160032 0.964888 -0.322884 -0.929777 -0.176809 +-0.25 -0.951057 -0.181636 0.200032 0.975528 -0.250367 -0.951057 -0.181127 +-0.270794 -0.951057 -0.14887 0.160032 0.975528 -0.271094 -0.951057 -0.14832 +-0.297819 -0.929776 -0.216378 0.200032 0.964888 -0.298178 -0.929777 -0.215882 +-0.25 -0.951057 -0.181636 0.200032 0.975528 -0.250367 -0.951057 -0.181127 +-0.32259 -0.929776 -0.177345 0.160032 0.964888 -0.322884 -0.929777 -0.176809 +-0.297819 -0.929776 -0.216378 0.200032 0.964888 -0.298178 -0.929777 -0.215882 +-0.225264 -0.951057 -0.211537 0.240032 0.975528 -0.225692 -0.951057 -0.21108 +-0.25 -0.951057 -0.181636 0.200032 0.975528 -0.250367 -0.951057 -0.181127 +-0.268351 -0.929776 -0.251999 0.240032 0.964888 -0.26877 -0.929777 -0.251551 +-0.225264 -0.951057 -0.211537 0.240032 0.975528 -0.225692 -0.951057 -0.21108 +-0.297819 -0.929776 -0.216378 0.200032 0.964888 -0.298178 -0.929777 -0.215882 +-0.268351 -0.929776 -0.251999 0.240032 0.964888 -0.26877 -0.929777 -0.251551 +-0.196975 -0.951057 -0.238102 0.280032 0.975528 -0.197457 -0.951057 -0.237701 +-0.225264 -0.951057 -0.211537 0.240032 0.975528 -0.225692 -0.951057 -0.21108 +-0.234651 -0.929776 -0.283645 0.280032 0.964888 -0.235122 -0.929777 -0.283253 +-0.196975 -0.951057 -0.238102 0.280032 0.975528 -0.197457 -0.951057 -0.237701 +-0.268351 -0.929776 -0.251999 0.240032 0.964888 -0.26877 -0.929777 -0.251551 +-0.234651 -0.929776 -0.283645 0.280032 0.964888 -0.235122 -0.929777 -0.283253 +-0.16558 -0.951057 -0.260912 0.320032 0.975528 -0.166108 -0.951057 -0.260575 +-0.196975 -0.951057 -0.238102 0.280032 0.975528 -0.197457 -0.951057 -0.237701 +-0.197251 -0.929776 -0.310818 0.320032 0.964888 -0.197767 -0.929777 -0.310488 +-0.16558 -0.951057 -0.260912 0.320032 0.975528 -0.166108 -0.951057 -0.260575 +-0.234651 -0.929776 -0.283645 0.280032 0.964888 -0.235122 -0.929777 -0.283253 +-0.197251 -0.929776 -0.310818 0.320032 0.964888 -0.197767 -0.929777 -0.310488 +-0.131573 -0.951057 -0.279607 0.360032 0.975528 -0.132139 -0.951057 -0.279339 +-0.16558 -0.951057 -0.260912 0.320032 0.975528 -0.166108 -0.951057 -0.260575 +-0.15674 -0.929776 -0.333089 0.360032 0.964888 -0.157293 -0.929777 -0.332827 +-0.131573 -0.951057 -0.279607 0.360032 0.975528 -0.132139 -0.951057 -0.279339 +-0.197251 -0.929776 -0.310818 0.320032 0.964888 -0.197767 -0.929777 -0.310488 +-0.15674 -0.929776 -0.333089 0.360032 0.964888 -0.157293 -0.929777 -0.332827 +-0.095492 -0.951057 -0.293893 0.400032 0.975528 -0.096087 -0.951057 -0.293698 +-0.131573 -0.951057 -0.279607 0.360032 0.975528 -0.132139 -0.951057 -0.279339 +-0.113757 -0.929776 -0.350107 0.400032 0.964888 -0.114339 -0.929777 -0.349916 +-0.095492 -0.951057 -0.293893 0.400032 0.975528 -0.096087 -0.951057 -0.293698 +-0.15674 -0.929776 -0.333089 0.360032 0.964888 -0.157293 -0.929777 -0.332827 +-0.113757 -0.929776 -0.350107 0.400032 0.964888 -0.114339 -0.929777 -0.349916 +-0.057904 -0.951057 -0.303544 0.440032 0.975528 -0.058519 -0.951057 -0.303425 +-0.095492 -0.951057 -0.293893 0.400032 0.975528 -0.096087 -0.951057 -0.293698 +-0.06898 -0.929776 -0.361604 0.440032 0.964888 -0.069581 -0.929777 -0.361488 +-0.057904 -0.951057 -0.303544 0.440032 0.975528 -0.058519 -0.951057 -0.303425 +-0.113757 -0.929776 -0.350107 0.400032 0.964888 -0.114339 -0.929777 -0.349916 +-0.06898 -0.929776 -0.361604 0.440032 0.964888 -0.069581 -0.929777 -0.361488 +-0.019403 -0.951057 -0.308407 0.480032 0.975528 -0.020028 -0.951057 -0.308367 +-0.057904 -0.951057 -0.303544 0.440032 0.975528 -0.058519 -0.951057 -0.303425 +-0.023115 -0.929776 -0.367398 0.480032 0.964888 -0.023726 -0.929777 -0.367358 +-0.019403 -0.951057 -0.308407 0.480032 0.975528 -0.020028 -0.951057 -0.308367 +-0.06898 -0.929776 -0.361604 0.440032 0.964888 -0.069581 -0.929777 -0.361488 +-0.023115 -0.929776 -0.367398 0.480032 0.964888 -0.023726 -0.929777 -0.367358 +0.019403 -0.951057 -0.308407 0.520032 0.975528 0.018778 -0.951056 -0.308446 +-0.019403 -0.951057 -0.308407 0.480032 0.975528 -0.020028 -0.951057 -0.308367 +0.023115 -0.929776 -0.367398 0.520032 0.964888 0.022504 -0.929777 -0.367435 +0.019403 -0.951057 -0.308407 0.520032 0.975528 0.018778 -0.951056 -0.308446 +-0.023115 -0.929776 -0.367398 0.480032 0.964888 -0.023726 -0.929777 -0.367358 +0.023115 -0.929776 -0.367398 0.520032 0.964888 0.022504 -0.929777 -0.367435 +0.057904 -0.951057 -0.303544 0.560032 0.975528 0.057288 -0.951057 -0.30366 +0.019403 -0.951057 -0.308407 0.520032 0.975528 0.018778 -0.951056 -0.308446 +0.06898 -0.929776 -0.361604 0.560032 0.964888 0.068378 -0.929777 -0.361718 +0.057904 -0.951057 -0.303544 0.560032 0.975528 0.057288 -0.951057 -0.30366 +0.023115 -0.929776 -0.367398 0.520032 0.964888 0.022504 -0.929777 -0.367435 +0.06898 -0.929776 -0.361604 0.560032 0.964888 0.068378 -0.929777 -0.361718 +0.095492 -0.951057 -0.293893 0.600032 0.975528 0.094895 -0.951057 -0.294085 +0.057904 -0.951057 -0.303544 0.560032 0.975528 0.057288 -0.951057 -0.30366 +0.113757 -0.929776 -0.350107 0.600032 0.964888 0.113174 -0.929777 -0.350295 +0.095492 -0.951057 -0.293893 0.600032 0.975528 0.094895 -0.951057 -0.294085 +0.06898 -0.929776 -0.361604 0.560032 0.964888 0.068378 -0.929777 -0.361718 +0.113757 -0.929776 -0.350107 0.600032 0.964888 0.113174 -0.929777 -0.350295 +0.131573 -0.951057 -0.279607 0.640032 0.975528 0.131006 -0.951057 -0.279872 +0.095492 -0.951057 -0.293893 0.600032 0.975528 0.094895 -0.951057 -0.294085 +0.15674 -0.929776 -0.333089 0.640032 0.964888 0.156185 -0.929777 -0.333348 +0.131573 -0.951057 -0.279607 0.640032 0.975528 0.131006 -0.951057 -0.279872 +0.113757 -0.929776 -0.350107 0.600032 0.964888 0.113174 -0.929777 -0.350295 +0.15674 -0.929776 -0.333089 0.640032 0.964888 0.156185 -0.929777 -0.333348 +0.16558 -0.951057 -0.260912 0.680032 0.975528 0.16505 -0.951057 -0.261246 +0.131573 -0.951057 -0.279607 0.640032 0.975528 0.131006 -0.951057 -0.279872 +0.197251 -0.929776 -0.310818 0.680032 0.964888 0.196733 -0.929777 -0.311145 +0.16558 -0.951057 -0.260912 0.680032 0.975528 0.16505 -0.951057 -0.261246 +0.15674 -0.929776 -0.333089 0.640032 0.964888 0.156185 -0.929777 -0.333348 +0.197251 -0.929776 -0.310818 0.680032 0.964888 0.196733 -0.929777 -0.311145 +0.196975 -0.951057 -0.238102 0.720032 0.975528 0.196491 -0.951057 -0.2385 +0.16558 -0.951057 -0.260912 0.680032 0.975528 0.16505 -0.951057 -0.261246 +0.234651 -0.929776 -0.283645 0.720032 0.964888 0.234179 -0.929777 -0.284034 +0.196975 -0.951057 -0.238102 0.720032 0.975528 0.196491 -0.951057 -0.2385 +0.197251 -0.929776 -0.310818 0.680032 0.964888 0.196733 -0.929777 -0.311145 +0.234651 -0.929776 -0.283645 0.720032 0.964888 0.234179 -0.929777 -0.284034 +0.225264 -0.951057 -0.211537 0.760032 0.975528 0.224834 -0.951057 -0.211992 +0.196975 -0.951057 -0.238102 0.720032 0.975528 0.196491 -0.951057 -0.2385 +0.268351 -0.929776 -0.251999 0.760032 0.964888 0.267931 -0.929777 -0.252444 +0.225264 -0.951057 -0.211537 0.760032 0.975528 0.224834 -0.951057 -0.211992 +0.234651 -0.929776 -0.283645 0.720032 0.964888 0.234179 -0.929777 -0.284034 +0.268351 -0.929776 -0.251999 0.760032 0.964888 0.267931 -0.929777 -0.252444 +0.25 -0.951057 -0.181636 0.800032 0.975528 0.249631 -0.951057 -0.182141 +0.225264 -0.951057 -0.211537 0.760032 0.975528 0.224834 -0.951057 -0.211992 +0.297819 -0.929776 -0.216378 0.800032 0.964888 0.297458 -0.929777 -0.216872 +0.25 -0.951057 -0.181636 0.800032 0.975528 0.249631 -0.951057 -0.182141 +0.268351 -0.929776 -0.251999 0.760032 0.964888 0.267931 -0.929777 -0.252444 +0.297819 -0.929776 -0.216378 0.800032 0.964888 0.297458 -0.929777 -0.216872 +0.270794 -0.951057 -0.14887 0.840032 0.975528 0.270491 -0.951057 -0.149419 +0.25 -0.951057 -0.181636 0.800032 0.975528 0.249631 -0.951057 -0.182141 +0.32259 -0.929776 -0.177345 0.840032 0.964888 0.322294 -0.929777 -0.177882 +0.270794 -0.951057 -0.14887 0.840032 0.975528 0.270491 -0.951057 -0.149419 +0.297819 -0.929776 -0.216378 0.800032 0.964888 0.297458 -0.929777 -0.216872 +0.32259 -0.929776 -0.177345 0.840032 0.964888 0.322294 -0.929777 -0.177882 +0.287317 -0.951057 -0.113757 0.880032 0.975528 0.287085 -0.951057 -0.114339 +0.270794 -0.951057 -0.14887 0.840032 0.975528 0.270491 -0.951057 -0.149419 +0.342274 -0.929776 -0.135516 0.880032 0.964888 0.342047 -0.929777 -0.136085 +0.287317 -0.951057 -0.113757 0.880032 0.975528 0.287085 -0.951057 -0.114339 +0.32259 -0.929776 -0.177345 0.840032 0.964888 0.322294 -0.929777 -0.177882 +0.342274 -0.929776 -0.135516 0.880032 0.964888 0.342047 -0.929777 -0.136085 +0.299309 -0.951057 -0.076849 0.920032 0.975528 0.299152 -0.951057 -0.077456 +0.287317 -0.951057 -0.113757 0.880032 0.975528 0.287085 -0.951057 -0.114339 +0.356559 -0.929776 -0.091549 0.920032 0.964888 0.356406 -0.929777 -0.092142 +0.299309 -0.951057 -0.076849 0.920032 0.975528 0.299152 -0.951057 -0.077456 +0.342274 -0.929776 -0.135516 0.880032 0.964888 0.342047 -0.929777 -0.136085 +0.356559 -0.929776 -0.091549 0.920032 0.964888 0.356406 -0.929777 -0.092142 +0.30658 -0.951057 -0.03873 0.960032 0.975528 0.306501 -0.951057 -0.039351 +0.299309 -0.951057 -0.076849 0.920032 0.975528 0.299152 -0.951057 -0.077456 +0.365222 -0.929776 -0.046138 0.960032 0.964888 0.365144 -0.929777 -0.046746 +0.30658 -0.951057 -0.03873 0.960032 0.975528 0.306501 -0.951057 -0.039351 +0.356559 -0.929776 -0.091549 0.920032 0.964888 0.356406 -0.929777 -0.092142 +0.365222 -0.929776 -0.046138 0.960032 0.964888 0.365144 -0.929777 -0.046746 +0.309017 -0.951057 -0 1.00003 0.975528 0.309016 -0.951057 -0.000627 +0.30658 -0.951057 -0.03873 0.960032 0.975528 0.306501 -0.951057 -0.039351 +0.368125 -0.929776 -0 1.00003 0.964888 0.368123 -0.929777 -0.000614 +0.309017 -0.951057 -0 1.00003 0.975528 0.309016 -0.951057 -0.000627 +0.365222 -0.929776 -0.046138 0.960032 0.964888 0.365144 -0.929777 -0.046746 +0.368125 -0.929776 -0 1.00003 0.964888 0.368123 -0.929777 -0.000614 +0.306581 -0.951057 0.03873 1.04003 0.975528 0.306658 -0.951057 0.038107 +0.309017 -0.951057 -0 1.00003 0.975528 0.309016 -0.951057 -0.000627 +0.365222 -0.929776 0.046138 1.04003 0.964888 0.365297 -0.929777 0.045529 +0.306581 -0.951057 0.03873 1.04003 0.975528 0.306658 -0.951057 0.038107 +0.368125 -0.929776 -0 1.00003 0.964888 0.368123 -0.929777 -0.000614 +0.422422 -0.904827 0.053364 1.04003 0.952414 0.422495 -0.904828 0.052771 +0.35656 -0.929776 0.091549 1.08003 0.964888 0.35671 -0.929777 0.090956 +0.365222 -0.929776 0.046138 1.04003 0.964888 0.365297 -0.929777 0.045529 +0.412403 -0.904827 0.105887 1.08003 0.952414 0.412549 -0.904828 0.10531 +0.35656 -0.929776 0.091549 1.08003 0.964888 0.35671 -0.929777 0.090956 +0.422422 -0.904827 0.053364 1.04003 0.952414 0.422495 -0.904828 0.052771 +0.412403 -0.904827 0.105887 1.08003 0.952414 0.412549 -0.904828 0.10531 +0.342274 -0.929776 0.135516 1.12003 0.964888 0.342498 -0.929777 0.134947 +0.35656 -0.929776 0.091549 1.08003 0.964888 0.35671 -0.929777 0.090956 +0.39588 -0.904827 0.15674 1.12003 0.952414 0.396097 -0.904828 0.156185 +0.342274 -0.929776 0.135516 1.12003 0.964888 0.342498 -0.929777 0.134947 +0.412403 -0.904827 0.105887 1.08003 0.952414 0.412549 -0.904828 0.10531 +0.39588 -0.904827 0.15674 1.12003 0.952414 0.396097 -0.904828 0.156185 +0.32259 -0.929776 0.177346 1.16003 0.964888 0.322884 -0.929777 0.176808 +0.342274 -0.929776 0.135516 1.12003 0.964888 0.342498 -0.929777 0.134947 +0.373114 -0.904827 0.205121 1.16003 0.952414 0.373399 -0.904828 0.204597 +0.32259 -0.929776 0.177346 1.16003 0.964888 0.322884 -0.929777 0.176808 +0.39588 -0.904827 0.15674 1.12003 0.952414 0.396097 -0.904828 0.156185 +0.373114 -0.904827 0.205121 1.16003 0.952414 0.373399 -0.904828 0.204597 +0.297819 -0.929776 0.216378 1.20003 0.964888 0.298178 -0.929777 0.215882 +0.32259 -0.929776 0.177346 1.16003 0.964888 0.322884 -0.929777 0.176808 +0.344463 -0.904827 0.250267 1.20003 0.952414 0.344812 -0.904828 0.249784 +0.297819 -0.929776 0.216378 1.20003 0.964888 0.298178 -0.929777 0.215882 +0.373114 -0.904827 0.205121 1.16003 0.952414 0.373399 -0.904828 0.204597 +0.344463 -0.904827 0.250267 1.20003 0.952414 0.344812 -0.904828 0.249784 +0.268351 -0.929776 0.251999 1.24003 0.964888 0.268769 -0.929777 0.251551 +0.297819 -0.929776 0.216378 1.20003 0.964888 0.298178 -0.929777 0.215882 +0.31038 -0.904827 0.291466 1.24003 0.952414 0.310787 -0.904828 0.29103 +0.268351 -0.929776 0.251999 1.24003 0.964888 0.268769 -0.929777 0.251551 +0.344463 -0.904827 0.250267 1.20003 0.952414 0.344812 -0.904828 0.249784 +0.31038 -0.904827 0.291466 1.24003 0.952414 0.310787 -0.904828 0.29103 +0.234652 -0.929776 0.283645 1.28003 0.964888 0.235122 -0.929777 0.283254 +0.268351 -0.929776 0.251999 1.24003 0.964888 0.268769 -0.929777 0.251551 +0.271402 -0.904827 0.328069 1.28003 0.952414 0.27186 -0.904828 0.327687 +0.234652 -0.929776 0.283645 1.28003 0.964888 0.235122 -0.929777 0.283254 +0.31038 -0.904827 0.291466 1.24003 0.952414 0.310787 -0.904828 0.29103 +0.271402 -0.904827 0.328069 1.28003 0.952414 0.27186 -0.904828 0.327687 +0.197251 -0.929776 0.310818 1.32003 0.964888 0.197767 -0.929777 0.310489 +0.234652 -0.929776 0.283645 1.28003 0.964888 0.235122 -0.929777 0.283254 +0.228144 -0.904827 0.359498 1.32003 0.952414 0.228646 -0.904828 0.359177 +0.197251 -0.929776 0.310818 1.32003 0.964888 0.197767 -0.929777 0.310489 +0.271402 -0.904827 0.328069 1.28003 0.952414 0.27186 -0.904828 0.327687 +0.228144 -0.904827 0.359498 1.32003 0.952414 0.228646 -0.904828 0.359177 +0.15674 -0.929776 0.333089 1.36003 0.964888 0.157293 -0.929777 0.332827 +0.197251 -0.929776 0.310818 1.32003 0.964888 0.197767 -0.929777 0.310489 +0.181288 -0.904827 0.385257 1.36003 0.952414 0.181826 -0.904828 0.385002 +0.15674 -0.929776 0.333089 1.36003 0.964888 0.157293 -0.929777 0.332827 +0.228144 -0.904827 0.359498 1.32003 0.952414 0.228646 -0.904828 0.359177 +0.181288 -0.904827 0.385257 1.36003 0.952414 0.181826 -0.904828 0.385002 +0.113757 -0.929776 0.350108 1.40003 0.964888 0.114339 -0.929777 0.349917 +0.15674 -0.929776 0.333089 1.36003 0.964888 0.157293 -0.929777 0.332827 +0.131573 -0.904827 0.404941 1.40003 0.952414 0.132139 -0.904828 0.404755 +0.113757 -0.929776 0.350108 1.40003 0.964888 0.114339 -0.929777 0.349917 +0.181288 -0.904827 0.385257 1.36003 0.952414 0.181826 -0.904828 0.385002 +0.131573 -0.904827 0.404941 1.40003 0.952414 0.132139 -0.904828 0.404755 +0.06898 -0.929776 0.361604 1.44003 0.964888 0.069581 -0.929777 0.361488 +0.113757 -0.929776 0.350108 1.40003 0.964888 0.114339 -0.929777 0.349917 +0.079783 -0.904827 0.418238 1.44003 0.952414 0.080368 -0.904828 0.418124 +0.06898 -0.929776 0.361604 1.44003 0.964888 0.069581 -0.929777 0.361488 +0.131573 -0.904827 0.404941 1.40003 0.952414 0.132139 -0.904828 0.404755 +0.079783 -0.904827 0.418238 1.44003 0.952414 0.080368 -0.904828 0.418124 +0.023115 -0.929776 0.367398 1.48003 0.964888 0.023726 -0.929777 0.367358 +0.06898 -0.929776 0.361604 1.44003 0.964888 0.069581 -0.929777 0.361488 +0.026735 -0.904827 0.424939 1.48003 0.952414 0.027329 -0.904828 0.4249 +0.023115 -0.929776 0.367398 1.48003 0.964888 0.023726 -0.929777 0.367358 +0.079783 -0.904827 0.418238 1.44003 0.952414 0.080368 -0.904828 0.418124 +0.026735 -0.904827 0.424939 1.48003 0.952414 0.027329 -0.904828 0.4249 +-0.023115 -0.929776 0.367398 1.52003 0.964888 -0.022504 -0.929777 0.367435 +0.023115 -0.929776 0.367398 1.48003 0.964888 0.023726 -0.929777 0.367358 +-0.026735 -0.904827 0.424939 1.52003 0.952414 -0.02614 -0.904828 0.424975 +-0.023115 -0.929776 0.367398 1.52003 0.964888 -0.022504 -0.929777 0.367435 +0.026735 -0.904827 0.424939 1.48003 0.952414 0.027329 -0.904828 0.4249 +-0.026735 -0.904827 0.424939 -0.479968 0.952414 -0.02614 -0.904828 0.424975 +-0.06898 -0.929776 0.361604 -0.439968 0.964888 -0.068378 -0.929777 0.361717 +-0.023115 -0.929776 0.367398 -0.479968 0.964888 -0.022504 -0.929777 0.367435 +-0.079783 -0.904827 0.418238 -0.439968 0.952414 -0.079198 -0.904828 0.418348 +-0.06898 -0.929776 0.361604 -0.439968 0.964888 -0.068378 -0.929777 0.361717 +-0.026735 -0.904827 0.424939 -0.479968 0.952414 -0.02614 -0.904828 0.424975 +-0.079783 -0.904827 0.418238 -0.439968 0.952414 -0.079198 -0.904828 0.418348 +-0.113757 -0.929776 0.350107 -0.399968 0.964888 -0.113174 -0.929777 0.350295 +-0.06898 -0.929776 0.361604 -0.439968 0.964888 -0.068378 -0.929777 0.361717 +-0.131573 -0.904827 0.40494 -0.399968 0.952414 -0.131006 -0.904828 0.405123 +-0.113757 -0.929776 0.350107 -0.399968 0.964888 -0.113174 -0.929777 0.350295 +-0.079783 -0.904827 0.418238 -0.439968 0.952414 -0.079198 -0.904828 0.418348 +-0.131573 -0.904827 0.40494 -0.399968 0.952414 -0.131006 -0.904828 0.405123 +-0.15674 -0.929776 0.333089 -0.359968 0.964888 -0.156185 -0.929777 0.333348 +-0.113757 -0.929776 0.350107 -0.399968 0.964888 -0.113174 -0.929777 0.350295 +-0.181288 -0.904827 0.385257 -0.359968 0.952414 -0.180748 -0.904828 0.385509 +-0.15674 -0.929776 0.333089 -0.359968 0.964888 -0.156185 -0.929777 0.333348 +-0.131573 -0.904827 0.40494 -0.399968 0.952414 -0.131006 -0.904828 0.405123 +-0.181288 -0.904827 0.385257 -0.359968 0.952414 -0.180748 -0.904828 0.385509 +-0.197251 -0.929776 0.310818 -0.319968 0.964888 -0.196733 -0.929777 0.311144 +-0.15674 -0.929776 0.333089 -0.359968 0.964888 -0.156185 -0.929777 0.333348 +-0.228144 -0.904827 0.359498 -0.319968 0.952414 -0.22764 -0.904828 0.359815 +-0.197251 -0.929776 0.310818 -0.319968 0.964888 -0.196733 -0.929777 0.311144 +-0.181288 -0.904827 0.385257 -0.359968 0.952414 -0.180748 -0.904828 0.385509 +-0.228144 -0.904827 0.359498 -0.319968 0.952414 -0.22764 -0.904828 0.359815 +-0.234652 -0.929776 0.283645 -0.279968 0.964888 -0.234179 -0.929777 0.284034 +-0.197251 -0.929776 0.310818 -0.319968 0.964888 -0.196733 -0.929777 0.311144 +-0.271402 -0.904827 0.328069 -0.279968 0.952414 -0.270942 -0.904828 0.328447 +-0.234652 -0.929776 0.283645 -0.279968 0.964888 -0.234179 -0.929777 0.284034 +-0.228144 -0.904827 0.359498 -0.319968 0.952414 -0.22764 -0.904828 0.359815 +-0.271402 -0.904827 0.328069 -0.279968 0.952414 -0.270942 -0.904828 0.328447 +-0.268351 -0.929776 0.251999 -0.239968 0.964888 -0.267931 -0.929777 0.252444 +-0.234652 -0.929776 0.283645 -0.279968 0.964888 -0.234179 -0.929777 0.284034 +-0.31038 -0.904827 0.291466 -0.239968 0.952414 -0.309971 -0.904828 0.2919 +-0.268351 -0.929776 0.251999 -0.239968 0.964888 -0.267931 -0.929777 0.252444 +-0.271402 -0.904827 0.328069 -0.279968 0.952414 -0.270942 -0.904828 0.328447 +-0.31038 -0.904827 0.291466 -0.239968 0.952414 -0.309971 -0.904828 0.2919 +-0.297819 -0.929776 0.216378 -0.199968 0.964888 -0.297458 -0.929777 0.216872 +-0.268351 -0.929776 0.251999 -0.239968 0.964888 -0.267931 -0.929777 0.252444 +-0.344463 -0.904827 0.250267 -0.199968 0.952414 -0.344111 -0.904828 0.250748 +-0.297819 -0.929776 0.216378 -0.199968 0.964888 -0.297458 -0.929777 0.216872 +-0.31038 -0.904827 0.291466 -0.239968 0.952414 -0.309971 -0.904828 0.2919 +-0.344463 -0.904827 0.250267 -0.199968 0.952414 -0.344111 -0.904828 0.250748 +-0.32259 -0.929776 0.177345 -0.159968 0.964888 -0.322294 -0.929777 0.177881 +-0.297819 -0.929776 0.216378 -0.199968 0.964888 -0.297458 -0.929777 0.216872 +-0.373113 -0.904827 0.205121 -0.159968 0.952414 -0.372825 -0.904828 0.205642 +-0.32259 -0.929776 0.177345 -0.159968 0.964888 -0.322294 -0.929777 0.177881 +-0.344463 -0.904827 0.250267 -0.199968 0.952414 -0.344111 -0.904828 0.250748 +-0.373113 -0.904827 0.205121 -0.159968 0.952414 -0.372825 -0.904828 0.205642 +-0.342274 -0.929776 0.135516 -0.119968 0.964888 -0.342047 -0.929777 0.136084 +-0.32259 -0.929776 0.177345 -0.159968 0.964888 -0.322294 -0.929777 0.177881 +-0.39588 -0.904827 0.15674 -0.119968 0.952414 -0.395659 -0.904828 0.157293 +-0.342274 -0.929776 0.135516 -0.119968 0.964888 -0.342047 -0.929777 0.136084 +-0.373113 -0.904827 0.205121 -0.159968 0.952414 -0.372825 -0.904828 0.205642 +-0.39588 -0.904827 0.15674 -0.119968 0.952414 -0.395659 -0.904828 0.157293 +-0.356559 -0.929776 0.091549 -0.079968 0.964888 -0.356406 -0.929777 0.092141 +-0.342274 -0.929776 0.135516 -0.119968 0.964888 -0.342047 -0.929777 0.136084 +-0.412403 -0.904827 0.105887 -0.079968 0.952414 -0.412253 -0.904828 0.106463 +-0.356559 -0.929776 0.091549 -0.079968 0.964888 -0.356406 -0.929777 0.092141 +-0.39588 -0.904827 0.15674 -0.119968 0.952414 -0.395659 -0.904828 0.157293 +-0.412403 -0.904827 0.105887 -0.079968 0.952414 -0.412253 -0.904828 0.106463 +-0.365222 -0.929776 0.046138 -0.039968 0.964888 -0.365144 -0.929777 0.046746 +-0.356559 -0.929776 0.091549 -0.079968 0.964888 -0.356406 -0.929777 0.092141 +-0.422422 -0.904827 0.053364 -0.039968 0.952414 -0.422346 -0.904828 0.053955 +-0.365222 -0.929776 0.046138 -0.039968 0.964888 -0.365144 -0.929777 0.046746 +-0.412403 -0.904827 0.105887 -0.079968 0.952414 -0.412253 -0.904828 0.106463 +-0.422422 -0.904827 0.053364 -0.039968 0.952414 -0.422346 -0.904828 0.053955 +-0.368125 -0.929776 -0 3.2e-005 0.964888 -0.368123 -0.929777 0.000613 +-0.365222 -0.929776 0.046138 -0.039968 0.964888 -0.365144 -0.929777 0.046746 +-0.42578 -0.904827 -0 3.2e-005 0.952414 -0.425778 -0.904828 0.000596 +-0.368125 -0.929776 -0 3.2e-005 0.964888 -0.368123 -0.929777 0.000613 +-0.422422 -0.904827 0.053364 -0.039968 0.952414 -0.422346 -0.904828 0.053955 +-0.42578 -0.904827 -0 3.2e-005 0.952414 -0.425778 -0.904828 0.000596 +-0.365222 -0.929776 -0.046138 0.040032 0.964888 -0.365297 -0.929777 -0.04553 +-0.368125 -0.929776 -0 3.2e-005 0.964888 -0.368123 -0.929777 0.000613 +-0.422422 -0.904827 -0.053364 0.040032 0.952414 -0.422495 -0.904828 -0.052773 +-0.365222 -0.929776 -0.046138 0.040032 0.964888 -0.365297 -0.929777 -0.04553 +-0.42578 -0.904827 -0 3.2e-005 0.952414 -0.425778 -0.904828 0.000596 +-0.422422 -0.904827 -0.053364 0.040032 0.952414 -0.422495 -0.904828 -0.052773 +-0.356559 -0.929776 -0.091549 0.080032 0.964888 -0.35671 -0.929777 -0.090955 +-0.365222 -0.929776 -0.046138 0.040032 0.964888 -0.365297 -0.929777 -0.04553 +-0.412403 -0.904827 -0.105887 0.080032 0.952414 -0.412549 -0.904828 -0.105309 +-0.356559 -0.929776 -0.091549 0.080032 0.964888 -0.35671 -0.929777 -0.090955 +-0.422422 -0.904827 -0.053364 0.040032 0.952414 -0.422495 -0.904828 -0.052773 +-0.412403 -0.904827 -0.105887 0.080032 0.952414 -0.412549 -0.904828 -0.105309 +-0.342274 -0.929776 -0.135516 0.120032 0.964888 -0.342498 -0.929777 -0.134946 +-0.356559 -0.929776 -0.091549 0.080032 0.964888 -0.35671 -0.929777 -0.090955 +-0.39588 -0.904827 -0.15674 0.120032 0.952414 -0.396097 -0.904828 -0.156186 +-0.342274 -0.929776 -0.135516 0.120032 0.964888 -0.342498 -0.929777 -0.134946 +-0.412403 -0.904827 -0.105887 0.080032 0.952414 -0.412549 -0.904828 -0.105309 +-0.39588 -0.904827 -0.15674 0.120032 0.952414 -0.396097 -0.904828 -0.156186 +-0.32259 -0.929776 -0.177345 0.160032 0.964888 -0.322884 -0.929777 -0.176809 +-0.342274 -0.929776 -0.135516 0.120032 0.964888 -0.342498 -0.929777 -0.134946 +-0.373113 -0.904827 -0.205121 0.160032 0.952414 -0.373399 -0.904828 -0.204598 +-0.32259 -0.929776 -0.177345 0.160032 0.964888 -0.322884 -0.929777 -0.176809 +-0.39588 -0.904827 -0.15674 0.120032 0.952414 -0.396097 -0.904828 -0.156186 +-0.373113 -0.904827 -0.205121 0.160032 0.952414 -0.373399 -0.904828 -0.204598 +-0.297819 -0.929776 -0.216378 0.200032 0.964888 -0.298178 -0.929777 -0.215882 +-0.32259 -0.929776 -0.177345 0.160032 0.964888 -0.322884 -0.929777 -0.176809 +-0.344463 -0.904827 -0.250267 0.200032 0.952414 -0.344812 -0.904828 -0.249784 +-0.297819 -0.929776 -0.216378 0.200032 0.964888 -0.298178 -0.929777 -0.215882 +-0.373113 -0.904827 -0.205121 0.160032 0.952414 -0.373399 -0.904828 -0.204598 +-0.344463 -0.904827 -0.250267 0.200032 0.952414 -0.344812 -0.904828 -0.249784 +-0.268351 -0.929776 -0.251999 0.240032 0.964888 -0.26877 -0.929777 -0.251551 +-0.297819 -0.929776 -0.216378 0.200032 0.964888 -0.298178 -0.929777 -0.215882 +-0.31038 -0.904827 -0.291466 0.240032 0.952414 -0.310786 -0.904828 -0.291031 +-0.268351 -0.929776 -0.251999 0.240032 0.964888 -0.26877 -0.929777 -0.251551 +-0.344463 -0.904827 -0.250267 0.200032 0.952414 -0.344812 -0.904828 -0.249784 +-0.31038 -0.904827 -0.291466 0.240032 0.952414 -0.310786 -0.904828 -0.291031 +-0.234651 -0.929776 -0.283645 0.280032 0.964888 -0.235122 -0.929777 -0.283253 +-0.268351 -0.929776 -0.251999 0.240032 0.964888 -0.26877 -0.929777 -0.251551 +-0.271402 -0.904827 -0.328069 0.280032 0.952414 -0.27186 -0.904828 -0.327688 +-0.234651 -0.929776 -0.283645 0.280032 0.964888 -0.235122 -0.929777 -0.283253 +-0.31038 -0.904827 -0.291466 0.240032 0.952414 -0.310786 -0.904828 -0.291031 +-0.271402 -0.904827 -0.328069 0.280032 0.952414 -0.27186 -0.904828 -0.327688 +-0.197251 -0.929776 -0.310818 0.320032 0.964888 -0.197767 -0.929777 -0.310488 +-0.234651 -0.929776 -0.283645 0.280032 0.964888 -0.235122 -0.929777 -0.283253 +-0.228144 -0.904827 -0.359498 0.320032 0.952414 -0.228646 -0.904828 -0.359176 +-0.197251 -0.929776 -0.310818 0.320032 0.964888 -0.197767 -0.929777 -0.310488 +-0.271402 -0.904827 -0.328069 0.280032 0.952414 -0.27186 -0.904828 -0.327688 +-0.228144 -0.904827 -0.359498 0.320032 0.952414 -0.228646 -0.904828 -0.359176 +-0.15674 -0.929776 -0.333089 0.360032 0.964888 -0.157293 -0.929777 -0.332827 +-0.197251 -0.929776 -0.310818 0.320032 0.964888 -0.197767 -0.929777 -0.310488 +-0.181288 -0.904827 -0.385257 0.360032 0.952414 -0.181826 -0.904827 -0.385002 +-0.15674 -0.929776 -0.333089 0.360032 0.964888 -0.157293 -0.929777 -0.332827 +-0.228144 -0.904827 -0.359498 0.320032 0.952414 -0.228646 -0.904828 -0.359176 +-0.181288 -0.904827 -0.385257 0.360032 0.952414 -0.181826 -0.904827 -0.385002 +-0.113757 -0.929776 -0.350107 0.400032 0.964888 -0.114339 -0.929777 -0.349916 +-0.15674 -0.929776 -0.333089 0.360032 0.964888 -0.157293 -0.929777 -0.332827 +-0.131573 -0.904827 -0.40494 0.400032 0.952414 -0.132139 -0.904827 -0.404755 +-0.113757 -0.929776 -0.350107 0.400032 0.964888 -0.114339 -0.929777 -0.349916 +-0.181288 -0.904827 -0.385257 0.360032 0.952414 -0.181826 -0.904827 -0.385002 +-0.131573 -0.904827 -0.40494 0.400032 0.952414 -0.132139 -0.904827 -0.404755 +-0.06898 -0.929776 -0.361604 0.440032 0.964888 -0.069581 -0.929777 -0.361488 +-0.113757 -0.929776 -0.350107 0.400032 0.964888 -0.114339 -0.929777 -0.349916 +-0.079783 -0.904827 -0.418238 0.440032 0.952414 -0.080368 -0.904827 -0.418125 +-0.06898 -0.929776 -0.361604 0.440032 0.964888 -0.069581 -0.929777 -0.361488 +-0.131573 -0.904827 -0.40494 0.400032 0.952414 -0.132139 -0.904827 -0.404755 +-0.079783 -0.904827 -0.418238 0.440032 0.952414 -0.080368 -0.904827 -0.418125 +-0.023115 -0.929776 -0.367398 0.480032 0.964888 -0.023726 -0.929777 -0.367358 +-0.06898 -0.929776 -0.361604 0.440032 0.964888 -0.069581 -0.929777 -0.361488 +-0.026735 -0.904827 -0.424939 0.480032 0.952414 -0.027329 -0.904828 -0.4249 +-0.023115 -0.929776 -0.367398 0.480032 0.964888 -0.023726 -0.929777 -0.367358 +-0.079783 -0.904827 -0.418238 0.440032 0.952414 -0.080368 -0.904827 -0.418125 +-0.026735 -0.904827 -0.424939 0.480032 0.952414 -0.027329 -0.904828 -0.4249 +0.023115 -0.929776 -0.367398 0.520032 0.964888 0.022504 -0.929777 -0.367435 +-0.023115 -0.929776 -0.367398 0.480032 0.964888 -0.023726 -0.929777 -0.367358 +0.026735 -0.904827 -0.424939 0.520032 0.952414 0.02614 -0.904827 -0.424976 +0.023115 -0.929776 -0.367398 0.520032 0.964888 0.022504 -0.929777 -0.367435 +-0.026735 -0.904827 -0.424939 0.480032 0.952414 -0.027329 -0.904828 -0.4249 +0.026735 -0.904827 -0.424939 0.520032 0.952414 0.02614 -0.904827 -0.424976 +0.06898 -0.929776 -0.361604 0.560032 0.964888 0.068378 -0.929777 -0.361718 +0.023115 -0.929776 -0.367398 0.520032 0.964888 0.022504 -0.929777 -0.367435 +0.079783 -0.904827 -0.418238 0.560032 0.952414 0.079198 -0.904827 -0.418348 +0.06898 -0.929776 -0.361604 0.560032 0.964888 0.068378 -0.929777 -0.361718 +0.026735 -0.904827 -0.424939 0.520032 0.952414 0.02614 -0.904827 -0.424976 +0.079783 -0.904827 -0.418238 0.560032 0.952414 0.079198 -0.904827 -0.418348 +0.113757 -0.929776 -0.350107 0.600032 0.964888 0.113174 -0.929777 -0.350295 +0.06898 -0.929776 -0.361604 0.560032 0.964888 0.068378 -0.929777 -0.361718 +0.131573 -0.904827 -0.40494 0.600032 0.952414 0.131006 -0.904827 -0.405123 +0.113757 -0.929776 -0.350107 0.600032 0.964888 0.113174 -0.929777 -0.350295 +0.079783 -0.904827 -0.418238 0.560032 0.952414 0.079198 -0.904827 -0.418348 +0.131573 -0.904827 -0.40494 0.600032 0.952414 0.131006 -0.904827 -0.405123 +0.15674 -0.929776 -0.333089 0.640032 0.964888 0.156185 -0.929777 -0.333348 +0.113757 -0.929776 -0.350107 0.600032 0.964888 0.113174 -0.929777 -0.350295 +0.181288 -0.904827 -0.385257 0.640032 0.952414 0.180748 -0.904827 -0.385509 +0.15674 -0.929776 -0.333089 0.640032 0.964888 0.156185 -0.929777 -0.333348 +0.131573 -0.904827 -0.40494 0.600032 0.952414 0.131006 -0.904827 -0.405123 +0.181288 -0.904827 -0.385257 0.640032 0.952414 0.180748 -0.904827 -0.385509 +0.197251 -0.929776 -0.310818 0.680032 0.964888 0.196733 -0.929777 -0.311145 +0.15674 -0.929776 -0.333089 0.640032 0.964888 0.156185 -0.929777 -0.333348 +0.228144 -0.904827 -0.359497 0.680032 0.952414 0.22764 -0.904827 -0.359815 +0.197251 -0.929776 -0.310818 0.680032 0.964888 0.196733 -0.929777 -0.311145 +0.181288 -0.904827 -0.385257 0.640032 0.952414 0.180748 -0.904827 -0.385509 +0.228144 -0.904827 -0.359497 0.680032 0.952414 0.22764 -0.904827 -0.359815 +0.234651 -0.929776 -0.283645 0.720032 0.964888 0.234179 -0.929777 -0.284034 +0.197251 -0.929776 -0.310818 0.680032 0.964888 0.196733 -0.929777 -0.311145 +0.271402 -0.904827 -0.328069 0.720032 0.952414 0.270942 -0.904827 -0.328448 +0.234651 -0.929776 -0.283645 0.720032 0.964888 0.234179 -0.929777 -0.284034 +0.228144 -0.904827 -0.359497 0.680032 0.952414 0.22764 -0.904827 -0.359815 +0.271402 -0.904827 -0.328069 0.720032 0.952414 0.270942 -0.904827 -0.328448 +0.268351 -0.929776 -0.251999 0.760032 0.964888 0.267931 -0.929777 -0.252444 +0.234651 -0.929776 -0.283645 0.720032 0.964888 0.234179 -0.929777 -0.284034 +0.31038 -0.904827 -0.291466 0.760032 0.952414 0.309971 -0.904828 -0.291899 +0.268351 -0.929776 -0.251999 0.760032 0.964888 0.267931 -0.929777 -0.252444 +0.271402 -0.904827 -0.328069 0.720032 0.952414 0.270942 -0.904827 -0.328448 +0.31038 -0.904827 -0.291466 0.760032 0.952414 0.309971 -0.904828 -0.291899 +0.297819 -0.929776 -0.216378 0.800032 0.964888 0.297458 -0.929777 -0.216872 +0.268351 -0.929776 -0.251999 0.760032 0.964888 0.267931 -0.929777 -0.252444 +0.344463 -0.904827 -0.250267 0.800032 0.952414 0.344112 -0.904828 -0.250748 +0.297819 -0.929776 -0.216378 0.800032 0.964888 0.297458 -0.929777 -0.216872 +0.31038 -0.904827 -0.291466 0.760032 0.952414 0.309971 -0.904828 -0.291899 +0.344463 -0.904827 -0.250267 0.800032 0.952414 0.344112 -0.904828 -0.250748 +0.32259 -0.929776 -0.177345 0.840032 0.964888 0.322294 -0.929777 -0.177882 +0.297819 -0.929776 -0.216378 0.800032 0.964888 0.297458 -0.929777 -0.216872 +0.373113 -0.904827 -0.205121 0.840032 0.952414 0.372825 -0.904827 -0.205642 +0.32259 -0.929776 -0.177345 0.840032 0.964888 0.322294 -0.929777 -0.177882 +0.344463 -0.904827 -0.250267 0.800032 0.952414 0.344112 -0.904828 -0.250748 +0.373113 -0.904827 -0.205121 0.840032 0.952414 0.372825 -0.904827 -0.205642 +0.342274 -0.929776 -0.135516 0.880032 0.964888 0.342047 -0.929777 -0.136085 +0.32259 -0.929776 -0.177345 0.840032 0.964888 0.322294 -0.929777 -0.177882 +0.39588 -0.904827 -0.15674 0.880032 0.952414 0.395659 -0.904828 -0.157293 +0.342274 -0.929776 -0.135516 0.880032 0.964888 0.342047 -0.929777 -0.136085 +0.373113 -0.904827 -0.205121 0.840032 0.952414 0.372825 -0.904827 -0.205642 +0.39588 -0.904827 -0.15674 0.880032 0.952414 0.395659 -0.904828 -0.157293 +0.356559 -0.929776 -0.091549 0.920032 0.964888 0.356406 -0.929777 -0.092142 +0.342274 -0.929776 -0.135516 0.880032 0.964888 0.342047 -0.929777 -0.136085 +0.412403 -0.904827 -0.105887 0.920032 0.952414 0.412253 -0.904828 -0.106464 +0.356559 -0.929776 -0.091549 0.920032 0.964888 0.356406 -0.929777 -0.092142 +0.39588 -0.904827 -0.15674 0.880032 0.952414 0.395659 -0.904828 -0.157293 +0.412403 -0.904827 -0.105887 0.920032 0.952414 0.412253 -0.904828 -0.106464 +0.365222 -0.929776 -0.046138 0.960032 0.964888 0.365144 -0.929777 -0.046746 +0.356559 -0.929776 -0.091549 0.920032 0.964888 0.356406 -0.929777 -0.092142 +0.422422 -0.904827 -0.053364 0.960032 0.952414 0.422346 -0.904828 -0.053956 +0.365222 -0.929776 -0.046138 0.960032 0.964888 0.365144 -0.929777 -0.046746 +0.412403 -0.904827 -0.105887 0.920032 0.952414 0.412253 -0.904828 -0.106464 +0.422422 -0.904827 -0.053364 0.960032 0.952414 0.422346 -0.904828 -0.053956 +0.368125 -0.929776 -0 1.00003 0.964888 0.368123 -0.929777 -0.000614 +0.365222 -0.929776 -0.046138 0.960032 0.964888 0.365144 -0.929777 -0.046746 +0.425779 -0.904827 -0 1.00003 0.952414 0.425778 -0.904828 -0.000597 +0.368125 -0.929776 -0 1.00003 0.964888 0.368123 -0.929777 -0.000614 +0.422422 -0.904827 -0.053364 0.960032 0.952414 0.422346 -0.904828 -0.053956 +0.425779 -0.904827 -0 1.00003 0.952414 0.425778 -0.904828 -0.000597 +0.365222 -0.929776 0.046138 1.04003 0.964888 0.365297 -0.929777 0.045529 +0.368125 -0.929776 -0 1.00003 0.964888 0.368123 -0.929777 -0.000614 +0.422422 -0.904827 0.053364 1.04003 0.952414 0.422495 -0.904828 0.052771 +0.365222 -0.929776 0.046138 1.04003 0.964888 0.365297 -0.929777 0.045529 +0.425779 -0.904827 -0 1.00003 0.952414 0.425778 -0.904828 -0.000597 +0.477955 -0.876307 0.06038 1.04003 0.938153 0.478025 -0.876308 0.059805 +0.412403 -0.904827 0.105887 1.08003 0.952414 0.412549 -0.904828 0.10531 +0.422422 -0.904827 0.053364 1.04003 0.952414 0.422495 -0.904828 0.052771 +0.466619 -0.876307 0.119807 1.08003 0.938153 0.46676 -0.876308 0.119248 +0.412403 -0.904827 0.105887 1.08003 0.952414 0.412549 -0.904828 0.10531 +0.477955 -0.876307 0.06038 1.04003 0.938153 0.478025 -0.876308 0.059805 +0.466619 -0.876307 0.119807 1.08003 0.938153 0.46676 -0.876308 0.119248 +0.39588 -0.904827 0.15674 1.12003 0.952414 0.396097 -0.904828 0.156185 +0.412403 -0.904827 0.105887 1.08003 0.952414 0.412549 -0.904828 0.10531 +0.447924 -0.876307 0.177346 1.12003 0.938153 0.448134 -0.876308 0.176808 +0.39588 -0.904827 0.15674 1.12003 0.952414 0.396097 -0.904828 0.156185 +0.466619 -0.876307 0.119807 1.08003 0.938153 0.46676 -0.876308 0.119248 +0.447924 -0.876307 0.177346 1.12003 0.938153 0.448134 -0.876308 0.176808 +0.373114 -0.904827 0.205121 1.16003 0.952414 0.373399 -0.904828 0.204597 +0.39588 -0.904827 0.15674 1.12003 0.952414 0.396097 -0.904828 0.156185 +0.422164 -0.876307 0.232087 1.16003 0.938153 0.42244 -0.876308 0.23158 +0.373114 -0.904827 0.205121 1.16003 0.952414 0.373399 -0.904828 0.204597 +0.447924 -0.876307 0.177346 1.12003 0.938153 0.448134 -0.876308 0.176808 +0.422164 -0.876307 0.232087 1.16003 0.938153 0.42244 -0.876308 0.23158 +0.344463 -0.904827 0.250267 1.20003 0.952414 0.344812 -0.904828 0.249784 +0.373114 -0.904827 0.205121 1.16003 0.952414 0.373399 -0.904828 0.204597 +0.389747 -0.876307 0.283168 1.20003 0.938153 0.390084 -0.876308 0.282699 +0.344463 -0.904827 0.250267 1.20003 0.952414 0.344812 -0.904828 0.249784 +0.422164 -0.876307 0.232087 1.16003 0.938153 0.42244 -0.876308 0.23158 +0.389747 -0.876307 0.283168 1.20003 0.938153 0.390084 -0.876308 0.282699 +0.31038 -0.904827 0.291466 1.24003 0.952414 0.310787 -0.904828 0.29103 +0.344463 -0.904827 0.250267 1.20003 0.952414 0.344812 -0.904828 0.249784 +0.351184 -0.876307 0.329783 1.24003 0.938153 0.351577 -0.876308 0.329361 +0.31038 -0.904827 0.291466 1.24003 0.952414 0.310787 -0.904828 0.29103 +0.389747 -0.876307 0.283168 1.20003 0.938153 0.390084 -0.876308 0.282699 +0.351184 -0.876307 0.329783 1.24003 0.938153 0.351577 -0.876308 0.329361 +0.271402 -0.904827 0.328069 1.28003 0.952414 0.27186 -0.904828 0.327687 +0.31038 -0.904827 0.291466 1.24003 0.952414 0.310787 -0.904828 0.29103 +0.307082 -0.876307 0.371198 1.28003 0.938153 0.307525 -0.876307 0.370829 +0.271402 -0.904827 0.328069 1.28003 0.952414 0.27186 -0.904828 0.327687 +0.351184 -0.876307 0.329783 1.24003 0.938153 0.351577 -0.876308 0.329361 +0.307082 -0.876307 0.371198 1.28003 0.938153 0.307525 -0.876307 0.370829 +0.228144 -0.904827 0.359498 1.32003 0.952414 0.228646 -0.904828 0.359177 +0.271402 -0.904827 0.328069 1.28003 0.952414 0.27186 -0.904828 0.327687 +0.258137 -0.876307 0.406759 1.32003 0.938153 0.258623 -0.876308 0.406447 +0.228144 -0.904827 0.359498 1.32003 0.952414 0.228646 -0.904828 0.359177 +0.307082 -0.876307 0.371198 1.28003 0.938153 0.307525 -0.876307 0.370829 +0.258137 -0.876307 0.406759 1.32003 0.938153 0.258623 -0.876308 0.406447 +0.181288 -0.904827 0.385257 1.36003 0.952414 0.181826 -0.904828 0.385002 +0.228144 -0.904827 0.359498 1.32003 0.952414 0.228646 -0.904828 0.359177 +0.205121 -0.876307 0.435904 1.36003 0.938153 0.205642 -0.876308 0.435656 +0.181288 -0.904827 0.385257 1.36003 0.952414 0.181826 -0.904828 0.385002 +0.258137 -0.876307 0.406759 1.32003 0.938153 0.258623 -0.876308 0.406447 +0.205121 -0.876307 0.435904 1.36003 0.938153 0.205642 -0.876308 0.435656 +0.131573 -0.904827 0.404941 1.40003 0.952414 0.132139 -0.904828 0.404755 +0.181288 -0.904827 0.385257 1.36003 0.952414 0.181826 -0.904828 0.385002 +0.14887 -0.876307 0.458175 1.40003 0.938153 0.149418 -0.876308 0.457995 +0.131573 -0.904827 0.404941 1.40003 0.952414 0.132139 -0.904828 0.404755 +0.205121 -0.876307 0.435904 1.36003 0.938153 0.205642 -0.876308 0.435656 +0.14887 -0.876307 0.458175 1.40003 0.938153 0.149418 -0.876308 0.457995 +0.079783 -0.904827 0.418238 1.44003 0.952414 0.080368 -0.904828 0.418124 +0.131573 -0.904827 0.404941 1.40003 0.952414 0.132139 -0.904828 0.404755 +0.090272 -0.876307 0.473221 1.44003 0.938153 0.090838 -0.876308 0.47311 +0.079783 -0.904827 0.418238 1.44003 0.952414 0.080368 -0.904828 0.418124 +0.14887 -0.876307 0.458175 1.40003 0.938153 0.149418 -0.876308 0.457995 +0.090272 -0.876307 0.473221 1.44003 0.938153 0.090838 -0.876308 0.47311 +0.026735 -0.904827 0.424939 1.48003 0.952414 0.027329 -0.904828 0.4249 +0.079783 -0.904827 0.418238 1.44003 0.952414 0.080368 -0.904828 0.418124 +0.03025 -0.876307 0.480803 1.48003 0.938153 0.030825 -0.876308 0.480764 +0.026735 -0.904827 0.424939 1.48003 0.952414 0.027329 -0.904828 0.4249 +0.090272 -0.876307 0.473221 1.44003 0.938153 0.090838 -0.876308 0.47311 +0.03025 -0.876307 0.480803 1.48003 0.938153 0.030825 -0.876308 0.480764 +-0.026735 -0.904827 0.424939 1.52003 0.952414 -0.02614 -0.904828 0.424975 +0.026735 -0.904827 0.424939 1.48003 0.952414 0.027329 -0.904828 0.4249 +-0.03025 -0.876307 0.480803 1.52003 0.938153 -0.029674 -0.876307 0.480838 +-0.026735 -0.904827 0.424939 1.52003 0.952414 -0.02614 -0.904828 0.424975 +0.03025 -0.876307 0.480803 1.48003 0.938153 0.030825 -0.876308 0.480764 +-0.03025 -0.876307 0.480803 -0.479968 0.938153 -0.029674 -0.876307 0.480838 +-0.079783 -0.904827 0.418238 -0.439968 0.952414 -0.079198 -0.904828 0.418348 +-0.026735 -0.904827 0.424939 -0.479968 0.952414 -0.02614 -0.904828 0.424975 +-0.090272 -0.876307 0.473221 -0.439968 0.938153 -0.089705 -0.876308 0.473327 +-0.079783 -0.904827 0.418238 -0.439968 0.952414 -0.079198 -0.904828 0.418348 +-0.03025 -0.876307 0.480803 -0.479968 0.938153 -0.029674 -0.876307 0.480838 +-0.090272 -0.876307 0.473221 -0.439968 0.938153 -0.089705 -0.876308 0.473327 +-0.131573 -0.904827 0.40494 -0.399968 0.952414 -0.131006 -0.904828 0.405123 +-0.079783 -0.904827 0.418238 -0.439968 0.952414 -0.079198 -0.904828 0.418348 +-0.14887 -0.876307 0.458175 -0.399968 0.938153 -0.148321 -0.876308 0.458351 +-0.131573 -0.904827 0.40494 -0.399968 0.952414 -0.131006 -0.904828 0.405123 +-0.090272 -0.876307 0.473221 -0.439968 0.938153 -0.089705 -0.876308 0.473327 +-0.14887 -0.876307 0.458175 -0.399968 0.938153 -0.148321 -0.876308 0.458351 +-0.181288 -0.904827 0.385257 -0.359968 0.952414 -0.180748 -0.904828 0.385509 +-0.131573 -0.904827 0.40494 -0.399968 0.952414 -0.131006 -0.904828 0.405123 +-0.205121 -0.876307 0.435904 -0.359968 0.938153 -0.204598 -0.876308 0.436148 +-0.181288 -0.904827 0.385257 -0.359968 0.952414 -0.180748 -0.904828 0.385509 +-0.14887 -0.876307 0.458175 -0.399968 0.938153 -0.148321 -0.876308 0.458351 +-0.205121 -0.876307 0.435904 -0.359968 0.938153 -0.204598 -0.876308 0.436148 +-0.228144 -0.904827 0.359498 -0.319968 0.952414 -0.22764 -0.904828 0.359815 +-0.181288 -0.904827 0.385257 -0.359968 0.952414 -0.180748 -0.904828 0.385509 +-0.258137 -0.876307 0.406758 -0.319968 0.938153 -0.257648 -0.876308 0.407065 +-0.228144 -0.904827 0.359498 -0.319968 0.952414 -0.22764 -0.904828 0.359815 +-0.205121 -0.876307 0.435904 -0.359968 0.938153 -0.204598 -0.876308 0.436148 +-0.258137 -0.876307 0.406758 -0.319968 0.938153 -0.257648 -0.876308 0.407065 +-0.271402 -0.904827 0.328069 -0.279968 0.952414 -0.270942 -0.904828 0.328447 +-0.228144 -0.904827 0.359498 -0.319968 0.952414 -0.22764 -0.904828 0.359815 +-0.307082 -0.876307 0.371198 -0.279968 0.938153 -0.306636 -0.876308 0.371564 +-0.271402 -0.904827 0.328069 -0.279968 0.952414 -0.270942 -0.904828 0.328447 +-0.258137 -0.876307 0.406758 -0.319968 0.938153 -0.257648 -0.876308 0.407065 +-0.307082 -0.876307 0.371198 -0.279968 0.938153 -0.306636 -0.876308 0.371564 +-0.31038 -0.904827 0.291466 -0.239968 0.952414 -0.309971 -0.904828 0.2919 +-0.271402 -0.904827 0.328069 -0.279968 0.952414 -0.270942 -0.904828 0.328447 +-0.351184 -0.876307 0.329783 -0.239968 0.938153 -0.350787 -0.876308 0.330202 +-0.31038 -0.904827 0.291466 -0.239968 0.952414 -0.309971 -0.904828 0.2919 +-0.307082 -0.876307 0.371198 -0.279968 0.938153 -0.306636 -0.876308 0.371564 +-0.351184 -0.876307 0.329783 -0.239968 0.938153 -0.350787 -0.876308 0.330202 +-0.344463 -0.904827 0.250267 -0.199968 0.952414 -0.344111 -0.904828 0.250748 +-0.31038 -0.904827 0.291466 -0.239968 0.952414 -0.309971 -0.904828 0.2919 +-0.389747 -0.876307 0.283168 -0.199968 0.938153 -0.389406 -0.876308 0.283633 +-0.344463 -0.904827 0.250267 -0.199968 0.952414 -0.344111 -0.904828 0.250748 +-0.351184 -0.876307 0.329783 -0.239968 0.938153 -0.350787 -0.876308 0.330202 +-0.389747 -0.876307 0.283168 -0.199968 0.938153 -0.389406 -0.876308 0.283633 +-0.373113 -0.904827 0.205121 -0.159968 0.952414 -0.372825 -0.904828 0.205642 +-0.344463 -0.904827 0.250267 -0.199968 0.952414 -0.344111 -0.904828 0.250748 +-0.422164 -0.876307 0.232087 -0.159968 0.938153 -0.421884 -0.876308 0.232591 +-0.373113 -0.904827 0.205121 -0.159968 0.952414 -0.372825 -0.904828 0.205642 +-0.389747 -0.876307 0.283168 -0.199968 0.938153 -0.389406 -0.876308 0.283633 +-0.422164 -0.876307 0.232087 -0.159968 0.938153 -0.421884 -0.876308 0.232591 +-0.39588 -0.904827 0.15674 -0.119968 0.952414 -0.395659 -0.904828 0.157293 +-0.373113 -0.904827 0.205121 -0.159968 0.952414 -0.372825 -0.904828 0.205642 +-0.447924 -0.876307 0.177345 -0.119968 0.938153 -0.447709 -0.876308 0.17788 +-0.39588 -0.904827 0.15674 -0.119968 0.952414 -0.395659 -0.904828 0.157293 +-0.422164 -0.876307 0.232087 -0.159968 0.938153 -0.421884 -0.876308 0.232591 +-0.447924 -0.876307 0.177345 -0.119968 0.938153 -0.447709 -0.876308 0.17788 +-0.412403 -0.904827 0.105887 -0.079968 0.952414 -0.412253 -0.904828 0.106463 +-0.39588 -0.904827 0.15674 -0.119968 0.952414 -0.395659 -0.904828 0.157293 +-0.466619 -0.876307 0.119807 -0.079968 0.938153 -0.466473 -0.876308 0.120365 +-0.412403 -0.904827 0.105887 -0.079968 0.952414 -0.412253 -0.904828 0.106463 +-0.447924 -0.876307 0.177345 -0.119968 0.938153 -0.447709 -0.876308 0.17788 +-0.466619 -0.876307 0.119807 -0.079968 0.938153 -0.466473 -0.876308 0.120365 +-0.422422 -0.904827 0.053364 -0.039968 0.952414 -0.422346 -0.904828 0.053955 +-0.412403 -0.904827 0.105887 -0.079968 0.952414 -0.412253 -0.904828 0.106463 +-0.477955 -0.876307 0.06038 -0.039968 0.938153 -0.477881 -0.876307 0.060952 +-0.422422 -0.904827 0.053364 -0.039968 0.952414 -0.422346 -0.904828 0.053955 +-0.466619 -0.876307 0.119807 -0.079968 0.938153 -0.466473 -0.876308 0.120365 +-0.477955 -0.876307 0.06038 -0.039968 0.938153 -0.477881 -0.876307 0.060952 +-0.42578 -0.904827 -0 3.2e-005 0.952414 -0.425778 -0.904828 0.000596 +-0.422422 -0.904827 0.053364 -0.039968 0.952414 -0.422346 -0.904828 0.053955 +-0.481754 -0.876307 -0 3.2e-005 0.938153 -0.481752 -0.876307 0.000577 +-0.42578 -0.904827 -0 3.2e-005 0.952414 -0.425778 -0.904828 0.000596 +-0.477955 -0.876307 0.06038 -0.039968 0.938153 -0.477881 -0.876307 0.060952 +-0.481754 -0.876307 -0 3.2e-005 0.938153 -0.481752 -0.876307 0.000577 +-0.422422 -0.904827 -0.053364 0.040032 0.952414 -0.422495 -0.904828 -0.052773 +-0.42578 -0.904827 -0 3.2e-005 0.952414 -0.425778 -0.904828 0.000596 +-0.477955 -0.876307 -0.06038 0.040032 0.938153 -0.478025 -0.876308 -0.059806 +-0.422422 -0.904827 -0.053364 0.040032 0.952414 -0.422495 -0.904828 -0.052773 +-0.481754 -0.876307 -0 3.2e-005 0.938153 -0.481752 -0.876307 0.000577 +-0.477955 -0.876307 -0.06038 0.040032 0.938153 -0.478025 -0.876308 -0.059806 +-0.412403 -0.904827 -0.105887 0.080032 0.952414 -0.412549 -0.904828 -0.105309 +-0.422422 -0.904827 -0.053364 0.040032 0.952414 -0.422495 -0.904828 -0.052773 +-0.466619 -0.876307 -0.119807 0.080032 0.938153 -0.46676 -0.876308 -0.119248 +-0.412403 -0.904827 -0.105887 0.080032 0.952414 -0.412549 -0.904828 -0.105309 +-0.477955 -0.876307 -0.06038 0.040032 0.938153 -0.478025 -0.876308 -0.059806 +-0.466619 -0.876307 -0.119807 0.080032 0.938153 -0.46676 -0.876308 -0.119248 +-0.39588 -0.904827 -0.15674 0.120032 0.952414 -0.396097 -0.904828 -0.156186 +-0.412403 -0.904827 -0.105887 0.080032 0.952414 -0.412549 -0.904828 -0.105309 +-0.447924 -0.876307 -0.177346 0.120032 0.938153 -0.448134 -0.876308 -0.176808 +-0.39588 -0.904827 -0.15674 0.120032 0.952414 -0.396097 -0.904828 -0.156186 +-0.466619 -0.876307 -0.119807 0.080032 0.938153 -0.46676 -0.876308 -0.119248 +-0.447924 -0.876307 -0.177346 0.120032 0.938153 -0.448134 -0.876308 -0.176808 +-0.373113 -0.904827 -0.205121 0.160032 0.952414 -0.373399 -0.904828 -0.204598 +-0.39588 -0.904827 -0.15674 0.120032 0.952414 -0.396097 -0.904828 -0.156186 +-0.422164 -0.876307 -0.232087 0.160032 0.938153 -0.42244 -0.876308 -0.231581 +-0.373113 -0.904827 -0.205121 0.160032 0.952414 -0.373399 -0.904828 -0.204598 +-0.447924 -0.876307 -0.177346 0.120032 0.938153 -0.448134 -0.876308 -0.176808 +-0.422164 -0.876307 -0.232087 0.160032 0.938153 -0.42244 -0.876308 -0.231581 +-0.344463 -0.904827 -0.250267 0.200032 0.952414 -0.344812 -0.904828 -0.249784 +-0.373113 -0.904827 -0.205121 0.160032 0.952414 -0.373399 -0.904828 -0.204598 +-0.389747 -0.876307 -0.283168 0.200032 0.938153 -0.390084 -0.876308 -0.2827 +-0.344463 -0.904827 -0.250267 0.200032 0.952414 -0.344812 -0.904828 -0.249784 +-0.422164 -0.876307 -0.232087 0.160032 0.938153 -0.42244 -0.876308 -0.231581 +-0.389747 -0.876307 -0.283168 0.200032 0.938153 -0.390084 -0.876308 -0.2827 +-0.31038 -0.904827 -0.291466 0.240032 0.952414 -0.310786 -0.904828 -0.291031 +-0.344463 -0.904827 -0.250267 0.200032 0.952414 -0.344812 -0.904828 -0.249784 +-0.351183 -0.876307 -0.329783 0.240032 0.938153 -0.351577 -0.876308 -0.329361 +-0.31038 -0.904827 -0.291466 0.240032 0.952414 -0.310786 -0.904828 -0.291031 +-0.389747 -0.876307 -0.283168 0.200032 0.938153 -0.390084 -0.876308 -0.2827 +-0.351183 -0.876307 -0.329783 0.240032 0.938153 -0.351577 -0.876308 -0.329361 +-0.271402 -0.904827 -0.328069 0.280032 0.952414 -0.27186 -0.904828 -0.327688 +-0.31038 -0.904827 -0.291466 0.240032 0.952414 -0.310786 -0.904828 -0.291031 +-0.307081 -0.876307 -0.371198 0.280032 0.938153 -0.307525 -0.876308 -0.370828 +-0.271402 -0.904827 -0.328069 0.280032 0.952414 -0.27186 -0.904828 -0.327688 +-0.351183 -0.876307 -0.329783 0.240032 0.938153 -0.351577 -0.876308 -0.329361 +-0.307081 -0.876307 -0.371198 0.280032 0.938153 -0.307525 -0.876308 -0.370828 +-0.228144 -0.904827 -0.359498 0.320032 0.952414 -0.228646 -0.904828 -0.359176 +-0.271402 -0.904827 -0.328069 0.280032 0.952414 -0.27186 -0.904828 -0.327688 +-0.258137 -0.876307 -0.406758 0.320032 0.938153 -0.258622 -0.876307 -0.406448 +-0.228144 -0.904827 -0.359498 0.320032 0.952414 -0.228646 -0.904828 -0.359176 +-0.307081 -0.876307 -0.371198 0.280032 0.938153 -0.307525 -0.876308 -0.370828 +-0.258137 -0.876307 -0.406758 0.320032 0.938153 -0.258622 -0.876307 -0.406448 +-0.181288 -0.904827 -0.385257 0.360032 0.952414 -0.181826 -0.904827 -0.385002 +-0.228144 -0.904827 -0.359498 0.320032 0.952414 -0.228646 -0.904828 -0.359176 +-0.205121 -0.876307 -0.435904 0.360032 0.938153 -0.205642 -0.876308 -0.435656 +-0.181288 -0.904827 -0.385257 0.360032 0.952414 -0.181826 -0.904827 -0.385002 +-0.258137 -0.876307 -0.406758 0.320032 0.938153 -0.258622 -0.876307 -0.406448 +-0.205121 -0.876307 -0.435904 0.360032 0.938153 -0.205642 -0.876308 -0.435656 +-0.131573 -0.904827 -0.40494 0.400032 0.952414 -0.132139 -0.904827 -0.404755 +-0.181288 -0.904827 -0.385257 0.360032 0.952414 -0.181826 -0.904827 -0.385002 +-0.14887 -0.876307 -0.458175 0.400032 0.938153 -0.149418 -0.876308 -0.457995 +-0.131573 -0.904827 -0.40494 0.400032 0.952414 -0.132139 -0.904827 -0.404755 +-0.205121 -0.876307 -0.435904 0.360032 0.938153 -0.205642 -0.876308 -0.435656 +-0.14887 -0.876307 -0.458175 0.400032 0.938153 -0.149418 -0.876308 -0.457995 +-0.079783 -0.904827 -0.418238 0.440032 0.952414 -0.080368 -0.904827 -0.418125 +-0.131573 -0.904827 -0.40494 0.400032 0.952414 -0.132139 -0.904827 -0.404755 +-0.090272 -0.876307 -0.473221 0.440032 0.938153 -0.090838 -0.876308 -0.47311 +-0.079783 -0.904827 -0.418238 0.440032 0.952414 -0.080368 -0.904827 -0.418125 +-0.14887 -0.876307 -0.458175 0.400032 0.938153 -0.149418 -0.876308 -0.457995 +-0.090272 -0.876307 -0.473221 0.440032 0.938153 -0.090838 -0.876308 -0.47311 +-0.026735 -0.904827 -0.424939 0.480032 0.952414 -0.027329 -0.904828 -0.4249 +-0.079783 -0.904827 -0.418238 0.440032 0.952414 -0.080368 -0.904827 -0.418125 +-0.03025 -0.876307 -0.480803 0.480032 0.938153 -0.030825 -0.876307 -0.480765 +-0.026735 -0.904827 -0.424939 0.480032 0.952414 -0.027329 -0.904828 -0.4249 +-0.090272 -0.876307 -0.473221 0.440032 0.938153 -0.090838 -0.876308 -0.47311 +-0.03025 -0.876307 -0.480803 0.480032 0.938153 -0.030825 -0.876307 -0.480765 +0.026735 -0.904827 -0.424939 0.520032 0.952414 0.02614 -0.904827 -0.424976 +-0.026735 -0.904827 -0.424939 0.480032 0.952414 -0.027329 -0.904828 -0.4249 +0.03025 -0.876307 -0.480803 0.520032 0.938153 0.029674 -0.876308 -0.480837 +0.026735 -0.904827 -0.424939 0.520032 0.952414 0.02614 -0.904827 -0.424976 +-0.03025 -0.876307 -0.480803 0.480032 0.938153 -0.030825 -0.876307 -0.480765 +0.03025 -0.876307 -0.480803 0.520032 0.938153 0.029674 -0.876308 -0.480837 +0.079783 -0.904827 -0.418238 0.560032 0.952414 0.079198 -0.904827 -0.418348 +0.026735 -0.904827 -0.424939 0.520032 0.952414 0.02614 -0.904827 -0.424976 +0.090272 -0.876307 -0.473221 0.560032 0.938153 0.089705 -0.876308 -0.473327 +0.079783 -0.904827 -0.418238 0.560032 0.952414 0.079198 -0.904827 -0.418348 +0.03025 -0.876307 -0.480803 0.520032 0.938153 0.029674 -0.876308 -0.480837 +0.090272 -0.876307 -0.473221 0.560032 0.938153 0.089705 -0.876308 -0.473327 +0.131573 -0.904827 -0.40494 0.600032 0.952414 0.131006 -0.904827 -0.405123 +0.079783 -0.904827 -0.418238 0.560032 0.952414 0.079198 -0.904827 -0.418348 +0.14887 -0.876307 -0.458175 0.600032 0.938153 0.148321 -0.876308 -0.458351 +0.131573 -0.904827 -0.40494 0.600032 0.952414 0.131006 -0.904827 -0.405123 +0.090272 -0.876307 -0.473221 0.560032 0.938153 0.089705 -0.876308 -0.473327 +0.14887 -0.876307 -0.458175 0.600032 0.938153 0.148321 -0.876308 -0.458351 +0.181288 -0.904827 -0.385257 0.640032 0.952414 0.180748 -0.904827 -0.385509 +0.131573 -0.904827 -0.40494 0.600032 0.952414 0.131006 -0.904827 -0.405123 +0.205121 -0.876307 -0.435904 0.640032 0.938153 0.204598 -0.876308 -0.436148 +0.181288 -0.904827 -0.385257 0.640032 0.952414 0.180748 -0.904827 -0.385509 +0.14887 -0.876307 -0.458175 0.600032 0.938153 0.148321 -0.876308 -0.458351 +0.205121 -0.876307 -0.435904 0.640032 0.938153 0.204598 -0.876308 -0.436148 +0.228144 -0.904827 -0.359497 0.680032 0.952414 0.22764 -0.904827 -0.359815 +0.181288 -0.904827 -0.385257 0.640032 0.952414 0.180748 -0.904827 -0.385509 +0.258137 -0.876307 -0.406758 0.680032 0.938153 0.257649 -0.876308 -0.407066 +0.228144 -0.904827 -0.359497 0.680032 0.952414 0.22764 -0.904827 -0.359815 +0.205121 -0.876307 -0.435904 0.640032 0.938153 0.204598 -0.876308 -0.436148 +0.258137 -0.876307 -0.406758 0.680032 0.938153 0.257649 -0.876308 -0.407066 +0.271402 -0.904827 -0.328069 0.720032 0.952414 0.270942 -0.904827 -0.328448 +0.228144 -0.904827 -0.359497 0.680032 0.952414 0.22764 -0.904827 -0.359815 +0.307081 -0.876307 -0.371198 0.720032 0.938153 0.306636 -0.876307 -0.371564 +0.271402 -0.904827 -0.328069 0.720032 0.952414 0.270942 -0.904827 -0.328448 +0.258137 -0.876307 -0.406758 0.680032 0.938153 0.257649 -0.876308 -0.407066 +0.307081 -0.876307 -0.371198 0.720032 0.938153 0.306636 -0.876307 -0.371564 +0.31038 -0.904827 -0.291466 0.760032 0.952414 0.309971 -0.904828 -0.291899 +0.271402 -0.904827 -0.328069 0.720032 0.952414 0.270942 -0.904827 -0.328448 +0.351183 -0.876307 -0.329783 0.760032 0.938153 0.350787 -0.876307 -0.330202 +0.31038 -0.904827 -0.291466 0.760032 0.952414 0.309971 -0.904828 -0.291899 +0.307081 -0.876307 -0.371198 0.720032 0.938153 0.306636 -0.876307 -0.371564 +0.351183 -0.876307 -0.329783 0.760032 0.938153 0.350787 -0.876307 -0.330202 +0.344463 -0.904827 -0.250267 0.800032 0.952414 0.344112 -0.904828 -0.250748 +0.31038 -0.904827 -0.291466 0.760032 0.952414 0.309971 -0.904828 -0.291899 +0.389747 -0.876307 -0.283168 0.800032 0.938153 0.389406 -0.876308 -0.283633 +0.344463 -0.904827 -0.250267 0.800032 0.952414 0.344112 -0.904828 -0.250748 +0.351183 -0.876307 -0.329783 0.760032 0.938153 0.350787 -0.876307 -0.330202 +0.389747 -0.876307 -0.283168 0.800032 0.938153 0.389406 -0.876308 -0.283633 +0.373113 -0.904827 -0.205121 0.840032 0.952414 0.372825 -0.904827 -0.205642 +0.344463 -0.904827 -0.250267 0.800032 0.952414 0.344112 -0.904828 -0.250748 +0.422164 -0.876307 -0.232087 0.840032 0.938153 0.421885 -0.876308 -0.232591 +0.373113 -0.904827 -0.205121 0.840032 0.952414 0.372825 -0.904827 -0.205642 +0.389747 -0.876307 -0.283168 0.800032 0.938153 0.389406 -0.876308 -0.283633 +0.422164 -0.876307 -0.232087 0.840032 0.938153 0.421885 -0.876308 -0.232591 +0.39588 -0.904827 -0.15674 0.880032 0.952414 0.395659 -0.904828 -0.157293 +0.373113 -0.904827 -0.205121 0.840032 0.952414 0.372825 -0.904827 -0.205642 +0.447923 -0.876307 -0.177345 0.880032 0.938153 0.447709 -0.876307 -0.177882 +0.39588 -0.904827 -0.15674 0.880032 0.952414 0.395659 -0.904828 -0.157293 +0.422164 -0.876307 -0.232087 0.840032 0.938153 0.421885 -0.876308 -0.232591 +0.447923 -0.876307 -0.177345 0.880032 0.938153 0.447709 -0.876307 -0.177882 +0.412403 -0.904827 -0.105887 0.920032 0.952414 0.412253 -0.904828 -0.106464 +0.39588 -0.904827 -0.15674 0.880032 0.952414 0.395659 -0.904828 -0.157293 +0.466619 -0.876307 -0.119807 0.920032 0.938153 0.466473 -0.876308 -0.120366 +0.412403 -0.904827 -0.105887 0.920032 0.952414 0.412253 -0.904828 -0.106464 +0.447923 -0.876307 -0.177345 0.880032 0.938153 0.447709 -0.876307 -0.177882 +0.466619 -0.876307 -0.119807 0.920032 0.938153 0.466473 -0.876308 -0.120366 +0.422422 -0.904827 -0.053364 0.960032 0.952414 0.422346 -0.904828 -0.053956 +0.412403 -0.904827 -0.105887 0.920032 0.952414 0.412253 -0.904828 -0.106464 +0.477955 -0.876307 -0.06038 0.960032 0.938153 0.477881 -0.876308 -0.060952 +0.422422 -0.904827 -0.053364 0.960032 0.952414 0.422346 -0.904828 -0.053956 +0.466619 -0.876307 -0.119807 0.920032 0.938153 0.466473 -0.876308 -0.120366 +0.477955 -0.876307 -0.06038 0.960032 0.938153 0.477881 -0.876308 -0.060952 +0.425779 -0.904827 -0 1.00003 0.952414 0.425778 -0.904828 -0.000597 +0.422422 -0.904827 -0.053364 0.960032 0.952414 0.422346 -0.904828 -0.053956 +0.481754 -0.876307 -0 1.00003 0.938153 0.481752 -0.876308 -0.000579 +0.425779 -0.904827 -0 1.00003 0.952414 0.425778 -0.904828 -0.000597 +0.477955 -0.876307 -0.06038 0.960032 0.938153 0.477881 -0.876308 -0.060952 +0.481754 -0.876307 -0 1.00003 0.938153 0.481752 -0.876308 -0.000579 +0.422422 -0.904827 0.053364 1.04003 0.952414 0.422495 -0.904828 0.052771 +0.425779 -0.904827 -0 1.00003 0.952414 0.425778 -0.904828 -0.000597 +0.477955 -0.876307 0.06038 1.04003 0.938153 0.478025 -0.876308 0.059805 +0.422422 -0.904827 0.053364 1.04003 0.952414 0.422495 -0.904828 0.052771 +0.481754 -0.876307 -0 1.00003 0.938153 0.481752 -0.876308 -0.000579 +0.531602 -0.844328 0.067157 1.04003 0.922164 0.53167 -0.844329 0.066603 +0.466619 -0.876307 0.119807 1.08003 0.938153 0.46676 -0.876308 0.119248 +0.477955 -0.876307 0.06038 1.04003 0.938153 0.478025 -0.876308 0.059805 +0.518993 -0.844328 0.133255 1.08003 0.922164 0.519129 -0.844329 0.132716 +0.466619 -0.876307 0.119807 1.08003 0.938153 0.46676 -0.876308 0.119248 +0.531602 -0.844328 0.067157 1.04003 0.922164 0.53167 -0.844329 0.066603 +0.518993 -0.844328 0.133255 1.08003 0.922164 0.519129 -0.844329 0.132716 +0.447924 -0.876307 0.177346 1.12003 0.938153 0.448134 -0.876308 0.176808 +0.466619 -0.876307 0.119807 1.08003 0.938153 0.46676 -0.876308 0.119248 +0.4982 -0.844328 0.197251 1.12003 0.922164 0.498402 -0.844329 0.196734 +0.447924 -0.876307 0.177346 1.12003 0.938153 0.448134 -0.876308 0.176808 +0.518993 -0.844328 0.133255 1.08003 0.922164 0.519129 -0.844329 0.132716 +0.4982 -0.844328 0.197251 1.12003 0.922164 0.498402 -0.844329 0.196734 +0.422164 -0.876307 0.232087 1.16003 0.938153 0.42244 -0.876308 0.23158 +0.447924 -0.876307 0.177346 1.12003 0.938153 0.448134 -0.876308 0.176808 +0.469549 -0.844328 0.258137 1.16003 0.922164 0.469815 -0.844329 0.257649 +0.422164 -0.876307 0.232087 1.16003 0.938153 0.42244 -0.876308 0.23158 +0.4982 -0.844328 0.197251 1.12003 0.922164 0.498402 -0.844329 0.196734 +0.469549 -0.844328 0.258137 1.16003 0.922164 0.469815 -0.844329 0.257649 +0.389747 -0.876307 0.283168 1.20003 0.938153 0.390084 -0.876308 0.282699 +0.422164 -0.876307 0.232087 1.16003 0.938153 0.42244 -0.876308 0.23158 +0.433493 -0.844328 0.314951 1.20003 0.922164 0.433818 -0.844329 0.3145 +0.389747 -0.876307 0.283168 1.20003 0.938153 0.390084 -0.876308 0.282699 +0.469549 -0.844328 0.258137 1.16003 0.922164 0.469815 -0.844329 0.257649 +0.433493 -0.844328 0.314951 1.20003 0.922164 0.433818 -0.844329 0.3145 +0.351184 -0.876307 0.329783 1.24003 0.938153 0.351577 -0.876308 0.329361 +0.389747 -0.876307 0.283168 1.20003 0.938153 0.390084 -0.876308 0.282699 +0.390601 -0.844328 0.366799 1.24003 0.922164 0.39098 -0.844329 0.366392 +0.351184 -0.876307 0.329783 1.24003 0.938153 0.351577 -0.876308 0.329361 +0.433493 -0.844328 0.314951 1.20003 0.922164 0.433818 -0.844329 0.3145 +0.390601 -0.844328 0.366799 1.24003 0.922164 0.39098 -0.844329 0.366392 +0.307082 -0.876307 0.371198 1.28003 0.938153 0.307525 -0.876307 0.370829 +0.351184 -0.876307 0.329783 1.24003 0.938153 0.351577 -0.876308 0.329361 +0.341549 -0.844328 0.412862 1.28003 0.922164 0.341976 -0.844329 0.412506 +0.307082 -0.876307 0.371198 1.28003 0.938153 0.307525 -0.876307 0.370829 +0.390601 -0.844328 0.366799 1.24003 0.922164 0.39098 -0.844329 0.366392 +0.341549 -0.844328 0.412862 1.28003 0.922164 0.341976 -0.844329 0.412506 +0.258137 -0.876307 0.406759 1.32003 0.938153 0.258623 -0.876308 0.406447 +0.307082 -0.876307 0.371198 1.28003 0.938153 0.307525 -0.876307 0.370829 +0.287111 -0.844328 0.452414 1.32003 0.922164 0.287579 -0.844329 0.452114 +0.258137 -0.876307 0.406759 1.32003 0.938153 0.258623 -0.876308 0.406447 +0.341549 -0.844328 0.412862 1.28003 0.922164 0.341976 -0.844329 0.412506 +0.287111 -0.844328 0.452414 1.32003 0.922164 0.287579 -0.844329 0.452114 +0.205121 -0.876307 0.435904 1.36003 0.938153 0.205642 -0.876308 0.435656 +0.258137 -0.876307 0.406759 1.32003 0.938153 0.258623 -0.876308 0.406447 +0.228144 -0.844328 0.484831 1.36003 0.922164 0.228646 -0.844329 0.484592 +0.205121 -0.876307 0.435904 1.36003 0.938153 0.205642 -0.876308 0.435656 +0.287111 -0.844328 0.452414 1.32003 0.922164 0.287579 -0.844329 0.452114 +0.228144 -0.844328 0.484831 1.36003 0.922164 0.228646 -0.844329 0.484592 +0.14887 -0.876307 0.458175 1.40003 0.938153 0.149418 -0.876308 0.457995 +0.205121 -0.876307 0.435904 1.36003 0.938153 0.205642 -0.876308 0.435656 +0.16558 -0.844328 0.509602 1.40003 0.922164 0.166107 -0.844329 0.509428 +0.14887 -0.876307 0.458175 1.40003 0.938153 0.149418 -0.876308 0.457995 +0.228144 -0.844328 0.484831 1.36003 0.922164 0.228646 -0.844329 0.484592 +0.16558 -0.844328 0.509602 1.40003 0.922164 0.166107 -0.844329 0.509428 +0.090272 -0.876307 0.473221 1.44003 0.938153 0.090838 -0.876308 0.47311 +0.14887 -0.876307 0.458175 1.40003 0.938153 0.149418 -0.876308 0.457995 +0.100404 -0.844328 0.526336 1.44003 0.922164 0.100949 -0.844329 0.52623 +0.090272 -0.876307 0.473221 1.44003 0.938153 0.090838 -0.876308 0.47311 +0.16558 -0.844328 0.509602 1.40003 0.922164 0.166107 -0.844329 0.509428 +0.100404 -0.844328 0.526336 1.44003 0.922164 0.100949 -0.844329 0.52623 +0.03025 -0.876307 0.480803 1.48003 0.938153 0.030825 -0.876308 0.480764 +0.090272 -0.876307 0.473221 1.44003 0.938153 0.090838 -0.876308 0.47311 +0.033645 -0.844328 0.53477 1.48003 0.922164 0.034199 -0.844329 0.534733 +0.03025 -0.876307 0.480803 1.48003 0.938153 0.030825 -0.876308 0.480764 +0.100404 -0.844328 0.526336 1.44003 0.922164 0.100949 -0.844329 0.52623 +0.033645 -0.844328 0.53477 1.48003 0.922164 0.034199 -0.844329 0.534733 +-0.03025 -0.876307 0.480803 1.52003 0.938153 -0.029674 -0.876307 0.480838 +0.03025 -0.876307 0.480803 1.48003 0.938153 0.030825 -0.876308 0.480764 +-0.033645 -0.844328 0.53477 1.52003 0.922164 -0.03309 -0.844329 0.534803 +-0.03025 -0.876307 0.480803 1.52003 0.938153 -0.029674 -0.876307 0.480838 +0.033645 -0.844328 0.53477 1.48003 0.922164 0.034199 -0.844329 0.534733 +-0.033645 -0.844328 0.53477 -0.479968 0.922164 -0.03309 -0.844329 0.534803 +-0.090272 -0.876307 0.473221 -0.439968 0.938153 -0.089705 -0.876308 0.473327 +-0.03025 -0.876307 0.480803 -0.479968 0.938153 -0.029674 -0.876307 0.480838 +-0.100404 -0.844328 0.526336 -0.439968 0.922164 -0.099858 -0.844329 0.526438 +-0.090272 -0.876307 0.473221 -0.439968 0.938153 -0.089705 -0.876308 0.473327 +-0.033645 -0.844328 0.53477 -0.479968 0.922164 -0.03309 -0.844329 0.534803 +-0.100404 -0.844328 0.526336 -0.439968 0.922164 -0.099858 -0.844329 0.526438 +-0.14887 -0.876307 0.458175 -0.399968 0.938153 -0.148321 -0.876308 0.458351 +-0.090272 -0.876307 0.473221 -0.439968 0.938153 -0.089705 -0.876308 0.473327 +-0.16558 -0.844328 0.509602 -0.399968 0.922164 -0.16505 -0.844329 0.509772 +-0.14887 -0.876307 0.458175 -0.399968 0.938153 -0.148321 -0.876308 0.458351 +-0.100404 -0.844328 0.526336 -0.439968 0.922164 -0.099858 -0.844329 0.526438 +-0.16558 -0.844328 0.509602 -0.399968 0.922164 -0.16505 -0.844329 0.509772 +-0.205121 -0.876307 0.435904 -0.359968 0.938153 -0.204598 -0.876308 0.436148 +-0.14887 -0.876307 0.458175 -0.399968 0.938153 -0.148321 -0.876308 0.458351 +-0.228144 -0.844328 0.484831 -0.359968 0.922164 -0.227641 -0.844329 0.485066 +-0.205121 -0.876307 0.435904 -0.359968 0.938153 -0.204598 -0.876308 0.436148 +-0.16558 -0.844328 0.509602 -0.399968 0.922164 -0.16505 -0.844329 0.509772 +-0.228144 -0.844328 0.484831 -0.359968 0.922164 -0.227641 -0.844329 0.485066 +-0.258137 -0.876307 0.406758 -0.319968 0.938153 -0.257648 -0.876308 0.407065 +-0.205121 -0.876307 0.435904 -0.359968 0.938153 -0.204598 -0.876308 0.436148 +-0.287111 -0.844328 0.452414 -0.319968 0.922164 -0.28664 -0.844329 0.45271 +-0.258137 -0.876307 0.406758 -0.319968 0.938153 -0.257648 -0.876308 0.407065 +-0.228144 -0.844328 0.484831 -0.359968 0.922164 -0.227641 -0.844329 0.485066 +-0.287111 -0.844328 0.452414 -0.319968 0.922164 -0.28664 -0.844329 0.45271 +-0.307082 -0.876307 0.371198 -0.279968 0.938153 -0.306636 -0.876308 0.371564 +-0.258137 -0.876307 0.406758 -0.319968 0.938153 -0.257648 -0.876308 0.407065 +-0.341549 -0.844328 0.412862 -0.279968 0.922164 -0.34112 -0.844329 0.413215 +-0.307082 -0.876307 0.371198 -0.279968 0.938153 -0.306636 -0.876308 0.371564 +-0.287111 -0.844328 0.452414 -0.319968 0.922164 -0.28664 -0.844329 0.45271 +-0.341549 -0.844328 0.412862 -0.279968 0.922164 -0.34112 -0.844329 0.413215 +-0.351184 -0.876307 0.329783 -0.239968 0.938153 -0.350787 -0.876308 0.330202 +-0.307082 -0.876307 0.371198 -0.279968 0.938153 -0.306636 -0.876308 0.371564 +-0.390601 -0.844328 0.366799 -0.239968 0.922164 -0.390219 -0.844329 0.367202 +-0.351184 -0.876307 0.329783 -0.239968 0.938153 -0.350787 -0.876308 0.330202 +-0.341549 -0.844328 0.412862 -0.279968 0.922164 -0.34112 -0.844329 0.413215 +-0.390601 -0.844328 0.366799 -0.239968 0.922164 -0.390219 -0.844329 0.367202 +-0.389747 -0.876307 0.283168 -0.199968 0.938153 -0.389406 -0.876308 0.283633 +-0.351184 -0.876307 0.329783 -0.239968 0.938153 -0.350787 -0.876308 0.330202 +-0.433493 -0.844328 0.314951 -0.199968 0.922164 -0.433165 -0.844329 0.315399 +-0.389747 -0.876307 0.283168 -0.199968 0.938153 -0.389406 -0.876308 0.283633 +-0.390601 -0.844328 0.366799 -0.239968 0.922164 -0.390219 -0.844329 0.367202 +-0.433493 -0.844328 0.314951 -0.199968 0.922164 -0.433165 -0.844329 0.315399 +-0.422164 -0.876307 0.232087 -0.159968 0.938153 -0.421884 -0.876308 0.232591 +-0.389747 -0.876307 0.283168 -0.199968 0.938153 -0.389406 -0.876308 0.283633 +-0.469549 -0.844328 0.258137 -0.159968 0.922164 -0.469279 -0.844329 0.258623 +-0.422164 -0.876307 0.232087 -0.159968 0.938153 -0.421884 -0.876308 0.232591 +-0.433493 -0.844328 0.314951 -0.199968 0.922164 -0.433165 -0.844329 0.315399 +-0.469549 -0.844328 0.258137 -0.159968 0.922164 -0.469279 -0.844329 0.258623 +-0.447924 -0.876307 0.177345 -0.119968 0.938153 -0.447709 -0.876308 0.17788 +-0.422164 -0.876307 0.232087 -0.159968 0.938153 -0.421884 -0.876308 0.232591 +-0.4982 -0.844328 0.197251 -0.119968 0.922164 -0.497993 -0.844329 0.197767 +-0.447924 -0.876307 0.177345 -0.119968 0.938153 -0.447709 -0.876308 0.17788 +-0.469549 -0.844328 0.258137 -0.159968 0.922164 -0.469279 -0.844329 0.258623 +-0.4982 -0.844328 0.197251 -0.119968 0.922164 -0.497993 -0.844329 0.197767 +-0.466619 -0.876307 0.119807 -0.079968 0.938153 -0.466473 -0.876308 0.120365 +-0.447924 -0.876307 0.177345 -0.119968 0.938153 -0.447709 -0.876308 0.17788 +-0.518993 -0.844328 0.133255 -0.079968 0.922164 -0.518853 -0.844329 0.133793 +-0.466619 -0.876307 0.119807 -0.079968 0.938153 -0.466473 -0.876308 0.120365 +-0.4982 -0.844328 0.197251 -0.119968 0.922164 -0.497993 -0.844329 0.197767 +-0.518993 -0.844328 0.133255 -0.079968 0.922164 -0.518853 -0.844329 0.133793 +-0.477955 -0.876307 0.06038 -0.039968 0.938153 -0.477881 -0.876307 0.060952 +-0.466619 -0.876307 0.119807 -0.079968 0.938153 -0.466473 -0.876308 0.120365 +-0.531602 -0.844328 0.067157 -0.039968 0.922164 -0.53153 -0.844329 0.067708 +-0.477955 -0.876307 0.06038 -0.039968 0.938153 -0.477881 -0.876307 0.060952 +-0.518993 -0.844328 0.133255 -0.079968 0.922164 -0.518853 -0.844329 0.133793 +-0.531602 -0.844328 0.067157 -0.039968 0.922164 -0.53153 -0.844329 0.067708 +-0.481754 -0.876307 -0 3.2e-005 0.938153 -0.481752 -0.876307 0.000577 +-0.477955 -0.876307 0.06038 -0.039968 0.938153 -0.477881 -0.876307 0.060952 +-0.535827 -0.844328 -0 3.2e-005 0.922164 -0.535825 -0.844329 0.000556 +-0.481754 -0.876307 -0 3.2e-005 0.938153 -0.481752 -0.876307 0.000577 +-0.531602 -0.844328 0.067157 -0.039968 0.922164 -0.53153 -0.844329 0.067708 +-0.535827 -0.844328 -0 3.2e-005 0.922164 -0.535825 -0.844329 0.000556 +-0.477955 -0.876307 -0.06038 0.040032 0.938153 -0.478025 -0.876308 -0.059806 +-0.481754 -0.876307 -0 3.2e-005 0.938153 -0.481752 -0.876307 0.000577 +-0.531602 -0.844328 -0.067157 0.040032 0.922164 -0.53167 -0.844329 -0.066605 +-0.477955 -0.876307 -0.06038 0.040032 0.938153 -0.478025 -0.876308 -0.059806 +-0.535827 -0.844328 -0 3.2e-005 0.922164 -0.535825 -0.844329 0.000556 +-0.531602 -0.844328 -0.067157 0.040032 0.922164 -0.53167 -0.844329 -0.066605 +-0.466619 -0.876307 -0.119807 0.080032 0.938153 -0.46676 -0.876308 -0.119248 +-0.477955 -0.876307 -0.06038 0.040032 0.938153 -0.478025 -0.876308 -0.059806 +-0.518993 -0.844328 -0.133255 0.080032 0.922164 -0.519129 -0.844329 -0.132716 +-0.466619 -0.876307 -0.119807 0.080032 0.938153 -0.46676 -0.876308 -0.119248 +-0.531602 -0.844328 -0.067157 0.040032 0.922164 -0.53167 -0.844329 -0.066605 +-0.518993 -0.844328 -0.133255 0.080032 0.922164 -0.519129 -0.844329 -0.132716 +-0.447924 -0.876307 -0.177346 0.120032 0.938153 -0.448134 -0.876308 -0.176808 +-0.466619 -0.876307 -0.119807 0.080032 0.938153 -0.46676 -0.876308 -0.119248 +-0.498199 -0.844328 -0.197251 0.120032 0.922164 -0.498402 -0.844329 -0.196734 +-0.447924 -0.876307 -0.177346 0.120032 0.938153 -0.448134 -0.876308 -0.176808 +-0.518993 -0.844328 -0.133255 0.080032 0.922164 -0.519129 -0.844329 -0.132716 +-0.498199 -0.844328 -0.197251 0.120032 0.922164 -0.498402 -0.844329 -0.196734 +-0.422164 -0.876307 -0.232087 0.160032 0.938153 -0.42244 -0.876308 -0.231581 +-0.447924 -0.876307 -0.177346 0.120032 0.938153 -0.448134 -0.876308 -0.176808 +-0.469549 -0.844328 -0.258137 0.160032 0.922164 -0.469815 -0.844329 -0.257648 +-0.422164 -0.876307 -0.232087 0.160032 0.938153 -0.42244 -0.876308 -0.231581 +-0.498199 -0.844328 -0.197251 0.120032 0.922164 -0.498402 -0.844329 -0.196734 +-0.469549 -0.844328 -0.258137 0.160032 0.922164 -0.469815 -0.844329 -0.257648 +-0.389747 -0.876307 -0.283168 0.200032 0.938153 -0.390084 -0.876308 -0.2827 +-0.422164 -0.876307 -0.232087 0.160032 0.938153 -0.42244 -0.876308 -0.231581 +-0.433493 -0.844328 -0.314951 0.200032 0.922164 -0.433818 -0.844329 -0.3145 +-0.389747 -0.876307 -0.283168 0.200032 0.938153 -0.390084 -0.876308 -0.2827 +-0.469549 -0.844328 -0.258137 0.160032 0.922164 -0.469815 -0.844329 -0.257648 +-0.433493 -0.844328 -0.314951 0.200032 0.922164 -0.433818 -0.844329 -0.3145 +-0.351183 -0.876307 -0.329783 0.240032 0.938153 -0.351577 -0.876308 -0.329361 +-0.389747 -0.876307 -0.283168 0.200032 0.938153 -0.390084 -0.876308 -0.2827 +-0.390601 -0.844328 -0.366799 0.240032 0.922164 -0.39098 -0.844329 -0.366392 +-0.351183 -0.876307 -0.329783 0.240032 0.938153 -0.351577 -0.876308 -0.329361 +-0.433493 -0.844328 -0.314951 0.200032 0.922164 -0.433818 -0.844329 -0.3145 +-0.390601 -0.844328 -0.366799 0.240032 0.922164 -0.39098 -0.844329 -0.366392 +-0.307081 -0.876307 -0.371198 0.280032 0.938153 -0.307525 -0.876308 -0.370828 +-0.351183 -0.876307 -0.329783 0.240032 0.938153 -0.351577 -0.876308 -0.329361 +-0.341549 -0.844328 -0.412862 0.280032 0.922164 -0.341976 -0.844329 -0.412507 +-0.307081 -0.876307 -0.371198 0.280032 0.938153 -0.307525 -0.876308 -0.370828 +-0.390601 -0.844328 -0.366799 0.240032 0.922164 -0.39098 -0.844329 -0.366392 +-0.341549 -0.844328 -0.412862 0.280032 0.922164 -0.341976 -0.844329 -0.412507 +-0.258137 -0.876307 -0.406758 0.320032 0.938153 -0.258622 -0.876307 -0.406448 +-0.307081 -0.876307 -0.371198 0.280032 0.938153 -0.307525 -0.876308 -0.370828 +-0.28711 -0.844328 -0.452414 0.320032 0.922164 -0.287578 -0.844329 -0.452114 +-0.258137 -0.876307 -0.406758 0.320032 0.938153 -0.258622 -0.876307 -0.406448 +-0.341549 -0.844328 -0.412862 0.280032 0.922164 -0.341976 -0.844329 -0.412507 +-0.28711 -0.844328 -0.452414 0.320032 0.922164 -0.287578 -0.844329 -0.452114 +-0.205121 -0.876307 -0.435904 0.360032 0.938153 -0.205642 -0.876308 -0.435656 +-0.258137 -0.876307 -0.406758 0.320032 0.938153 -0.258622 -0.876307 -0.406448 +-0.228144 -0.844328 -0.484831 0.360032 0.922164 -0.228646 -0.844329 -0.484593 +-0.205121 -0.876307 -0.435904 0.360032 0.938153 -0.205642 -0.876308 -0.435656 +-0.28711 -0.844328 -0.452414 0.320032 0.922164 -0.287578 -0.844329 -0.452114 +-0.228144 -0.844328 -0.484831 0.360032 0.922164 -0.228646 -0.844329 -0.484593 +-0.14887 -0.876307 -0.458175 0.400032 0.938153 -0.149418 -0.876308 -0.457995 +-0.205121 -0.876307 -0.435904 0.360032 0.938153 -0.205642 -0.876308 -0.435656 +-0.16558 -0.844328 -0.509602 0.400032 0.922164 -0.166108 -0.844329 -0.509428 +-0.14887 -0.876307 -0.458175 0.400032 0.938153 -0.149418 -0.876308 -0.457995 +-0.228144 -0.844328 -0.484831 0.360032 0.922164 -0.228646 -0.844329 -0.484593 +-0.16558 -0.844328 -0.509602 0.400032 0.922164 -0.166108 -0.844329 -0.509428 +-0.090272 -0.876307 -0.473221 0.440032 0.938153 -0.090838 -0.876308 -0.47311 +-0.14887 -0.876307 -0.458175 0.400032 0.938153 -0.149418 -0.876308 -0.457995 +-0.100404 -0.844328 -0.526336 0.440032 0.922164 -0.10095 -0.844329 -0.52623 +-0.090272 -0.876307 -0.473221 0.440032 0.938153 -0.090838 -0.876308 -0.47311 +-0.16558 -0.844328 -0.509602 0.400032 0.922164 -0.166108 -0.844329 -0.509428 +-0.100404 -0.844328 -0.526336 0.440032 0.922164 -0.10095 -0.844329 -0.52623 +-0.03025 -0.876307 -0.480803 0.480032 0.938153 -0.030825 -0.876307 -0.480765 +-0.090272 -0.876307 -0.473221 0.440032 0.938153 -0.090838 -0.876308 -0.47311 +-0.033645 -0.844328 -0.53477 0.480032 0.922164 -0.034199 -0.844329 -0.534733 +-0.03025 -0.876307 -0.480803 0.480032 0.938153 -0.030825 -0.876307 -0.480765 +-0.100404 -0.844328 -0.526336 0.440032 0.922164 -0.10095 -0.844329 -0.52623 +-0.033645 -0.844328 -0.53477 0.480032 0.922164 -0.034199 -0.844329 -0.534733 +0.03025 -0.876307 -0.480803 0.520032 0.938153 0.029674 -0.876308 -0.480837 +-0.03025 -0.876307 -0.480803 0.480032 0.938153 -0.030825 -0.876307 -0.480765 +0.033645 -0.844328 -0.53477 0.520032 0.922164 0.03309 -0.844329 -0.534802 +0.03025 -0.876307 -0.480803 0.520032 0.938153 0.029674 -0.876308 -0.480837 +-0.033645 -0.844328 -0.53477 0.480032 0.922164 -0.034199 -0.844329 -0.534733 +0.033645 -0.844328 -0.53477 0.520032 0.922164 0.03309 -0.844329 -0.534802 +0.090272 -0.876307 -0.473221 0.560032 0.938153 0.089705 -0.876308 -0.473327 +0.03025 -0.876307 -0.480803 0.520032 0.938153 0.029674 -0.876308 -0.480837 +0.100404 -0.844328 -0.526336 0.560032 0.922164 0.099858 -0.844329 -0.526438 +0.090272 -0.876307 -0.473221 0.560032 0.938153 0.089705 -0.876308 -0.473327 +0.033645 -0.844328 -0.53477 0.520032 0.922164 0.03309 -0.844329 -0.534802 +0.100404 -0.844328 -0.526336 0.560032 0.922164 0.099858 -0.844329 -0.526438 +0.14887 -0.876307 -0.458175 0.600032 0.938153 0.148321 -0.876308 -0.458351 +0.090272 -0.876307 -0.473221 0.560032 0.938153 0.089705 -0.876308 -0.473327 +0.16558 -0.844328 -0.509602 0.600032 0.922164 0.165051 -0.844329 -0.509772 +0.14887 -0.876307 -0.458175 0.600032 0.938153 0.148321 -0.876308 -0.458351 +0.100404 -0.844328 -0.526336 0.560032 0.922164 0.099858 -0.844329 -0.526438 +0.16558 -0.844328 -0.509602 0.600032 0.922164 0.165051 -0.844329 -0.509772 +0.205121 -0.876307 -0.435904 0.640032 0.938153 0.204598 -0.876308 -0.436148 +0.14887 -0.876307 -0.458175 0.600032 0.938153 0.148321 -0.876308 -0.458351 +0.228144 -0.844328 -0.484831 0.640032 0.922164 0.22764 -0.844329 -0.485066 +0.205121 -0.876307 -0.435904 0.640032 0.938153 0.204598 -0.876308 -0.436148 +0.16558 -0.844328 -0.509602 0.600032 0.922164 0.165051 -0.844329 -0.509772 +0.228144 -0.844328 -0.484831 0.640032 0.922164 0.22764 -0.844329 -0.485066 +0.258137 -0.876307 -0.406758 0.680032 0.938153 0.257649 -0.876308 -0.407066 +0.205121 -0.876307 -0.435904 0.640032 0.938153 0.204598 -0.876308 -0.436148 +0.28711 -0.844328 -0.452414 0.680032 0.922164 0.28664 -0.844329 -0.45271 +0.258137 -0.876307 -0.406758 0.680032 0.938153 0.257649 -0.876308 -0.407066 +0.228144 -0.844328 -0.484831 0.640032 0.922164 0.22764 -0.844329 -0.485066 +0.28711 -0.844328 -0.452414 0.680032 0.922164 0.28664 -0.844329 -0.45271 +0.307081 -0.876307 -0.371198 0.720032 0.938153 0.306636 -0.876307 -0.371564 +0.258137 -0.876307 -0.406758 0.680032 0.938153 0.257649 -0.876308 -0.407066 +0.341549 -0.844328 -0.412862 0.720032 0.922164 0.34112 -0.844329 -0.413215 +0.307081 -0.876307 -0.371198 0.720032 0.938153 0.306636 -0.876307 -0.371564 +0.28711 -0.844328 -0.452414 0.680032 0.922164 0.28664 -0.844329 -0.45271 +0.341549 -0.844328 -0.412862 0.720032 0.922164 0.34112 -0.844329 -0.413215 +0.351183 -0.876307 -0.329783 0.760032 0.938153 0.350787 -0.876307 -0.330202 +0.307081 -0.876307 -0.371198 0.720032 0.938153 0.306636 -0.876307 -0.371564 +0.390601 -0.844328 -0.366799 0.760032 0.922164 0.39022 -0.844329 -0.367203 +0.351183 -0.876307 -0.329783 0.760032 0.938153 0.350787 -0.876307 -0.330202 +0.341549 -0.844328 -0.412862 0.720032 0.922164 0.34112 -0.844329 -0.413215 +0.390601 -0.844328 -0.366799 0.760032 0.922164 0.39022 -0.844329 -0.367203 +0.389747 -0.876307 -0.283168 0.800032 0.938153 0.389406 -0.876308 -0.283633 +0.351183 -0.876307 -0.329783 0.760032 0.938153 0.350787 -0.876307 -0.330202 +0.433493 -0.844328 -0.314951 0.800032 0.922164 0.433165 -0.844329 -0.315399 +0.389747 -0.876307 -0.283168 0.800032 0.938153 0.389406 -0.876308 -0.283633 +0.390601 -0.844328 -0.366799 0.760032 0.922164 0.39022 -0.844329 -0.367203 +0.433493 -0.844328 -0.314951 0.800032 0.922164 0.433165 -0.844329 -0.315399 +0.422164 -0.876307 -0.232087 0.840032 0.938153 0.421885 -0.876308 -0.232591 +0.389747 -0.876307 -0.283168 0.800032 0.938153 0.389406 -0.876308 -0.283633 +0.469549 -0.844328 -0.258137 0.840032 0.922164 0.46928 -0.844329 -0.258623 +0.422164 -0.876307 -0.232087 0.840032 0.938153 0.421885 -0.876308 -0.232591 +0.433493 -0.844328 -0.314951 0.800032 0.922164 0.433165 -0.844329 -0.315399 +0.469549 -0.844328 -0.258137 0.840032 0.922164 0.46928 -0.844329 -0.258623 +0.447923 -0.876307 -0.177345 0.880032 0.938153 0.447709 -0.876307 -0.177882 +0.422164 -0.876307 -0.232087 0.840032 0.938153 0.421885 -0.876308 -0.232591 +0.498199 -0.844328 -0.197251 0.880032 0.922164 0.497993 -0.844329 -0.197767 +0.447923 -0.876307 -0.177345 0.880032 0.938153 0.447709 -0.876307 -0.177882 +0.469549 -0.844328 -0.258137 0.840032 0.922164 0.46928 -0.844329 -0.258623 +0.498199 -0.844328 -0.197251 0.880032 0.922164 0.497993 -0.844329 -0.197767 +0.466619 -0.876307 -0.119807 0.920032 0.938153 0.466473 -0.876308 -0.120366 +0.447923 -0.876307 -0.177345 0.880032 0.938153 0.447709 -0.876307 -0.177882 +0.518993 -0.844328 -0.133255 0.920032 0.922164 0.518853 -0.844329 -0.133793 +0.466619 -0.876307 -0.119807 0.920032 0.938153 0.466473 -0.876308 -0.120366 +0.498199 -0.844328 -0.197251 0.880032 0.922164 0.497993 -0.844329 -0.197767 +0.518993 -0.844328 -0.133255 0.920032 0.922164 0.518853 -0.844329 -0.133793 +0.477955 -0.876307 -0.06038 0.960032 0.938153 0.477881 -0.876308 -0.060952 +0.466619 -0.876307 -0.119807 0.920032 0.938153 0.466473 -0.876308 -0.120366 +0.531602 -0.844328 -0.067157 0.960032 0.922164 0.531531 -0.844329 -0.067708 +0.477955 -0.876307 -0.06038 0.960032 0.938153 0.477881 -0.876308 -0.060952 +0.518993 -0.844328 -0.133255 0.920032 0.922164 0.518853 -0.844329 -0.133793 +0.531602 -0.844328 -0.067157 0.960032 0.922164 0.531531 -0.844329 -0.067708 +0.481754 -0.876307 -0 1.00003 0.938153 0.481752 -0.876308 -0.000579 +0.477955 -0.876307 -0.06038 0.960032 0.938153 0.477881 -0.876308 -0.060952 +0.535827 -0.844328 -0 1.00003 0.922164 0.535825 -0.844329 -0.000558 +0.481754 -0.876307 -0 1.00003 0.938153 0.481752 -0.876308 -0.000579 +0.531602 -0.844328 -0.067157 0.960032 0.922164 0.531531 -0.844329 -0.067708 +0.535827 -0.844328 -0 1.00003 0.922164 0.535825 -0.844329 -0.000558 +0.477955 -0.876307 0.06038 1.04003 0.938153 0.478025 -0.876308 0.059805 +0.481754 -0.876307 -0 1.00003 0.938153 0.481752 -0.876308 -0.000579 +0.531602 -0.844328 0.067157 1.04003 0.922164 0.53167 -0.844329 0.066603 +0.477955 -0.876307 0.06038 1.04003 0.938153 0.478025 -0.876308 0.059805 +0.535827 -0.844328 -0 1.00003 0.922164 0.535825 -0.844329 -0.000558 +0.583151 -0.809017 0.073669 1.04003 0.904508 0.583216 -0.809018 0.073138 +0.518993 -0.844328 0.133255 1.08003 0.922164 0.519129 -0.844329 0.132716 +0.531602 -0.844328 0.067157 1.04003 0.922164 0.53167 -0.844329 0.066603 +0.569319 -0.809017 0.146176 1.08003 0.904508 0.56945 -0.809018 0.14566 +0.518993 -0.844328 0.133255 1.08003 0.922164 0.519129 -0.844329 0.132716 +0.583151 -0.809017 0.073669 1.04003 0.904508 0.583216 -0.809018 0.073138 +0.569319 -0.809017 0.146176 1.08003 0.904508 0.56945 -0.809018 0.14566 +0.4982 -0.844328 0.197251 1.12003 0.922164 0.498402 -0.844329 0.196734 +0.518993 -0.844328 0.133255 1.08003 0.922164 0.519129 -0.844329 0.132716 +0.54651 -0.809017 0.216378 1.12003 0.904508 0.546703 -0.809018 0.215882 +0.4982 -0.844328 0.197251 1.12003 0.922164 0.498402 -0.844329 0.196734 +0.569319 -0.809017 0.146176 1.08003 0.904508 0.56945 -0.809018 0.14566 +0.54651 -0.809017 0.216378 1.12003 0.904508 0.546703 -0.809018 0.215882 +0.469549 -0.844328 0.258137 1.16003 0.922164 0.469815 -0.844329 0.257649 +0.4982 -0.844328 0.197251 1.12003 0.922164 0.498402 -0.844329 0.196734 +0.515081 -0.809017 0.283168 1.16003 0.904508 0.515335 -0.809018 0.282701 +0.469549 -0.844328 0.258137 1.16003 0.922164 0.469815 -0.844329 0.257649 +0.54651 -0.809017 0.216378 1.12003 0.904508 0.546703 -0.809018 0.215882 +0.515081 -0.809017 0.283168 1.16003 0.904508 0.515335 -0.809018 0.282701 +0.433493 -0.844328 0.314951 1.20003 0.922164 0.433818 -0.844329 0.3145 +0.469549 -0.844328 0.258137 1.16003 0.922164 0.469815 -0.844329 0.257649 +0.475529 -0.809017 0.345492 1.20003 0.904508 0.47584 -0.809018 0.34506 +0.433493 -0.844328 0.314951 1.20003 0.922164 0.433818 -0.844329 0.3145 +0.515081 -0.809017 0.283168 1.16003 0.904508 0.515335 -0.809018 0.282701 +0.475529 -0.809017 0.345492 1.20003 0.904508 0.47584 -0.809018 0.34506 +0.390601 -0.844328 0.366799 1.24003 0.922164 0.39098 -0.844329 0.366392 +0.433493 -0.844328 0.314951 1.20003 0.922164 0.433818 -0.844329 0.3145 +0.428477 -0.809017 0.402367 1.24003 0.904508 0.42884 -0.809018 0.401978 +0.390601 -0.844328 0.366799 1.24003 0.922164 0.39098 -0.844329 0.366392 +0.475529 -0.809017 0.345492 1.20003 0.904508 0.47584 -0.809018 0.34506 +0.428477 -0.809017 0.402367 1.24003 0.904508 0.42884 -0.809018 0.401978 +0.341549 -0.844328 0.412862 1.28003 0.922164 0.341976 -0.844329 0.412506 +0.390601 -0.844328 0.366799 1.24003 0.922164 0.39098 -0.844329 0.366392 +0.374669 -0.809017 0.452897 1.28003 0.904508 0.375078 -0.809018 0.452556 +0.341549 -0.844328 0.412862 1.28003 0.922164 0.341976 -0.844329 0.412506 +0.428477 -0.809017 0.402367 1.24003 0.904508 0.42884 -0.809018 0.401978 +0.374669 -0.809017 0.452897 1.28003 0.904508 0.375078 -0.809018 0.452556 +0.287111 -0.844328 0.452414 1.32003 0.922164 0.287579 -0.844329 0.452114 +0.341549 -0.844328 0.412862 1.28003 0.922164 0.341976 -0.844329 0.412506 +0.314951 -0.809017 0.496284 1.32003 0.904508 0.3154 -0.809018 0.495997 +0.287111 -0.844328 0.452414 1.32003 0.922164 0.287579 -0.844329 0.452114 +0.374669 -0.809017 0.452897 1.28003 0.904508 0.375078 -0.809018 0.452556 +0.314951 -0.809017 0.496284 1.32003 0.904508 0.3154 -0.809018 0.495997 +0.228144 -0.844328 0.484831 1.36003 0.922164 0.228646 -0.844329 0.484592 +0.287111 -0.844328 0.452414 1.32003 0.922164 0.287579 -0.844329 0.452114 +0.250267 -0.809017 0.531845 1.36003 0.904508 0.250748 -0.809018 0.531616 +0.228144 -0.844328 0.484831 1.36003 0.922164 0.228646 -0.844329 0.484592 +0.314951 -0.809017 0.496284 1.32003 0.904508 0.3154 -0.809018 0.495997 +0.250267 -0.809017 0.531845 1.36003 0.904508 0.250748 -0.809018 0.531616 +0.16558 -0.844328 0.509602 1.40003 0.922164 0.166107 -0.844329 0.509428 +0.228144 -0.844328 0.484831 1.36003 0.922164 0.228646 -0.844329 0.484592 +0.181636 -0.809017 0.559018 1.40003 0.904508 0.182141 -0.809018 0.558851 +0.16558 -0.844328 0.509602 1.40003 0.922164 0.166107 -0.844329 0.509428 +0.250267 -0.809017 0.531845 1.36003 0.904508 0.250748 -0.809018 0.531616 +0.181636 -0.809017 0.559018 1.40003 0.904508 0.182141 -0.809018 0.558851 +0.100404 -0.844328 0.526336 1.44003 0.922164 0.100949 -0.844329 0.52623 +0.16558 -0.844328 0.509602 1.40003 0.922164 0.166107 -0.844329 0.509428 +0.11014 -0.809017 0.577375 1.44003 0.904508 0.110663 -0.809018 0.577273 +0.100404 -0.844328 0.526336 1.44003 0.922164 0.100949 -0.844329 0.52623 +0.181636 -0.809017 0.559018 1.40003 0.904508 0.182141 -0.809018 0.558851 +0.11014 -0.809017 0.577375 1.44003 0.904508 0.110663 -0.809018 0.577273 +0.033645 -0.844328 0.53477 1.48003 0.922164 0.034199 -0.844329 0.534733 +0.100404 -0.844328 0.526336 1.44003 0.922164 0.100949 -0.844329 0.52623 +0.036907 -0.809017 0.586626 1.48003 0.904508 0.037438 -0.809018 0.586591 +0.033645 -0.844328 0.53477 1.48003 0.922164 0.034199 -0.844329 0.534733 +0.11014 -0.809017 0.577375 1.44003 0.904508 0.110663 -0.809018 0.577273 +0.036907 -0.809017 0.586626 1.48003 0.904508 0.037438 -0.809018 0.586591 +-0.033645 -0.844328 0.53477 1.52003 0.922164 -0.03309 -0.844329 0.534803 +0.033645 -0.844328 0.53477 1.48003 0.922164 0.034199 -0.844329 0.534733 +-0.036907 -0.809017 0.586626 1.52003 0.904508 -0.036376 -0.809018 0.586657 +-0.033645 -0.844328 0.53477 1.52003 0.922164 -0.03309 -0.844329 0.534803 +0.036907 -0.809017 0.586626 1.48003 0.904508 0.037438 -0.809018 0.586591 +-0.036907 -0.809017 0.586626 -0.479968 0.904508 -0.036376 -0.809018 0.586657 +-0.100404 -0.844328 0.526336 -0.439968 0.922164 -0.099858 -0.844329 0.526438 +-0.033645 -0.844328 0.53477 -0.479968 0.922164 -0.03309 -0.844329 0.534803 +-0.11014 -0.809017 0.577374 -0.439968 0.904508 -0.109617 -0.809018 0.577472 +-0.100404 -0.844328 0.526336 -0.439968 0.922164 -0.099858 -0.844329 0.526438 +-0.036907 -0.809017 0.586626 -0.479968 0.904508 -0.036376 -0.809018 0.586657 +-0.11014 -0.809017 0.577374 -0.439968 0.904508 -0.109617 -0.809018 0.577472 +-0.16558 -0.844328 0.509602 -0.399968 0.922164 -0.16505 -0.844329 0.509772 +-0.100404 -0.844328 0.526336 -0.439968 0.922164 -0.099858 -0.844329 0.526438 +-0.181636 -0.809017 0.559017 -0.399968 0.904508 -0.181129 -0.809018 0.55918 +-0.16558 -0.844328 0.509602 -0.399968 0.922164 -0.16505 -0.844329 0.509772 +-0.11014 -0.809017 0.577374 -0.439968 0.904508 -0.109617 -0.809018 0.577472 +-0.181636 -0.809017 0.559017 -0.399968 0.904508 -0.181129 -0.809018 0.55918 +-0.228144 -0.844328 0.484831 -0.359968 0.922164 -0.227641 -0.844329 0.485066 +-0.16558 -0.844328 0.509602 -0.399968 0.922164 -0.16505 -0.844329 0.509772 +-0.250267 -0.809017 0.531844 -0.359968 0.904508 -0.249784 -0.809018 0.532069 +-0.228144 -0.844328 0.484831 -0.359968 0.922164 -0.227641 -0.844329 0.485066 +-0.181636 -0.809017 0.559017 -0.399968 0.904508 -0.181129 -0.809018 0.55918 +-0.250267 -0.809017 0.531844 -0.359968 0.904508 -0.249784 -0.809018 0.532069 +-0.287111 -0.844328 0.452414 -0.319968 0.922164 -0.28664 -0.844329 0.45271 +-0.228144 -0.844328 0.484831 -0.359968 0.922164 -0.227641 -0.844329 0.485066 +-0.314951 -0.809017 0.496284 -0.319968 0.904508 -0.314501 -0.809018 0.496568 +-0.287111 -0.844328 0.452414 -0.319968 0.922164 -0.28664 -0.844329 0.45271 +-0.250267 -0.809017 0.531844 -0.359968 0.904508 -0.249784 -0.809018 0.532069 +-0.314951 -0.809017 0.496284 -0.319968 0.904508 -0.314501 -0.809018 0.496568 +-0.341549 -0.844328 0.412862 -0.279968 0.922164 -0.34112 -0.844329 0.413215 +-0.287111 -0.844328 0.452414 -0.319968 0.922164 -0.28664 -0.844329 0.45271 +-0.374669 -0.809017 0.452897 -0.279968 0.904508 -0.374258 -0.809018 0.453234 +-0.341549 -0.844328 0.412862 -0.279968 0.922164 -0.34112 -0.844329 0.413215 +-0.314951 -0.809017 0.496284 -0.319968 0.904508 -0.314501 -0.809018 0.496568 +-0.374669 -0.809017 0.452897 -0.279968 0.904508 -0.374258 -0.809018 0.453234 +-0.390601 -0.844328 0.366799 -0.239968 0.922164 -0.390219 -0.844329 0.367202 +-0.341549 -0.844328 0.412862 -0.279968 0.922164 -0.34112 -0.844329 0.413215 +-0.428477 -0.809017 0.402367 -0.239968 0.904508 -0.428112 -0.809018 0.402754 +-0.390601 -0.844328 0.366799 -0.239968 0.922164 -0.390219 -0.844329 0.367202 +-0.374669 -0.809017 0.452897 -0.279968 0.904508 -0.374258 -0.809018 0.453234 +-0.428477 -0.809017 0.402367 -0.239968 0.904508 -0.428112 -0.809018 0.402754 +-0.433493 -0.844328 0.314951 -0.199968 0.922164 -0.433165 -0.844329 0.315399 +-0.390601 -0.844328 0.366799 -0.239968 0.922164 -0.390219 -0.844329 0.367202 +-0.475529 -0.809017 0.345492 -0.199968 0.904508 -0.475214 -0.809018 0.345921 +-0.433493 -0.844328 0.314951 -0.199968 0.922164 -0.433165 -0.844329 0.315399 +-0.428477 -0.809017 0.402367 -0.239968 0.904508 -0.428112 -0.809018 0.402754 +-0.475529 -0.809017 0.345492 -0.199968 0.904508 -0.475214 -0.809018 0.345921 +-0.469549 -0.844328 0.258137 -0.159968 0.922164 -0.469279 -0.844329 0.258623 +-0.433493 -0.844328 0.314951 -0.199968 0.922164 -0.433165 -0.844329 0.315399 +-0.515081 -0.809017 0.283168 -0.159968 0.904508 -0.514822 -0.809018 0.283633 +-0.469549 -0.844328 0.258137 -0.159968 0.922164 -0.469279 -0.844329 0.258623 +-0.475529 -0.809017 0.345492 -0.199968 0.904508 -0.475214 -0.809018 0.345921 +-0.515081 -0.809017 0.283168 -0.159968 0.904508 -0.514822 -0.809018 0.283633 +-0.4982 -0.844328 0.197251 -0.119968 0.922164 -0.497993 -0.844329 0.197767 +-0.469549 -0.844328 0.258137 -0.159968 0.922164 -0.469279 -0.844329 0.258623 +-0.546509 -0.809017 0.216378 -0.119968 0.904508 -0.546311 -0.809018 0.216872 +-0.4982 -0.844328 0.197251 -0.119968 0.922164 -0.497993 -0.844329 0.197767 +-0.515081 -0.809017 0.283168 -0.159968 0.904508 -0.514822 -0.809018 0.283633 +-0.546509 -0.809017 0.216378 -0.119968 0.904508 -0.546311 -0.809018 0.216872 +-0.518993 -0.844328 0.133255 -0.079968 0.922164 -0.518853 -0.844329 0.133793 +-0.4982 -0.844328 0.197251 -0.119968 0.922164 -0.497993 -0.844329 0.197767 +-0.569319 -0.809017 0.146176 -0.079968 0.904508 -0.569185 -0.809018 0.146691 +-0.518993 -0.844328 0.133255 -0.079968 0.922164 -0.518853 -0.844329 0.133793 +-0.546509 -0.809017 0.216378 -0.119968 0.904508 -0.546311 -0.809018 0.216872 +-0.569319 -0.809017 0.146176 -0.079968 0.904508 -0.569185 -0.809018 0.146691 +-0.531602 -0.844328 0.067157 -0.039968 0.922164 -0.53153 -0.844329 0.067708 +-0.518993 -0.844328 0.133255 -0.079968 0.922164 -0.518853 -0.844329 0.133793 +-0.583151 -0.809017 0.073669 -0.039968 0.904508 -0.583082 -0.809018 0.074197 +-0.531602 -0.844328 0.067157 -0.039968 0.922164 -0.53153 -0.844329 0.067708 +-0.569319 -0.809017 0.146176 -0.079968 0.904508 -0.569185 -0.809018 0.146691 +-0.583151 -0.809017 0.073669 -0.039968 0.904508 -0.583082 -0.809018 0.074197 +-0.535827 -0.844328 -0 3.2e-005 0.922164 -0.535825 -0.844329 0.000556 +-0.531602 -0.844328 0.067157 -0.039968 0.922164 -0.53153 -0.844329 0.067708 +-0.587786 -0.809017 -0 3.2e-005 0.904508 -0.587784 -0.809018 0.000532 +-0.535827 -0.844328 -0 3.2e-005 0.922164 -0.535825 -0.844329 0.000556 +-0.583151 -0.809017 0.073669 -0.039968 0.904508 -0.583082 -0.809018 0.074197 +-0.587786 -0.809017 -0 3.2e-005 0.904508 -0.587784 -0.809018 0.000532 +-0.531602 -0.844328 -0.067157 0.040032 0.922164 -0.53167 -0.844329 -0.066605 +-0.535827 -0.844328 -0 3.2e-005 0.922164 -0.535825 -0.844329 0.000556 +-0.583151 -0.809017 -0.073669 0.040032 0.904508 -0.583216 -0.809018 -0.07314 +-0.531602 -0.844328 -0.067157 0.040032 0.922164 -0.53167 -0.844329 -0.066605 +-0.587786 -0.809017 -0 3.2e-005 0.904508 -0.587784 -0.809018 0.000532 +-0.583151 -0.809017 -0.073669 0.040032 0.904508 -0.583216 -0.809018 -0.07314 +-0.518993 -0.844328 -0.133255 0.080032 0.922164 -0.519129 -0.844329 -0.132716 +-0.531602 -0.844328 -0.067157 0.040032 0.922164 -0.53167 -0.844329 -0.066605 +-0.569319 -0.809017 -0.146176 0.080032 0.904508 -0.56945 -0.809018 -0.14566 +-0.518993 -0.844328 -0.133255 0.080032 0.922164 -0.519129 -0.844329 -0.132716 +-0.583151 -0.809017 -0.073669 0.040032 0.904508 -0.583216 -0.809018 -0.07314 +-0.569319 -0.809017 -0.146176 0.080032 0.904508 -0.56945 -0.809018 -0.14566 +-0.498199 -0.844328 -0.197251 0.120032 0.922164 -0.498402 -0.844329 -0.196734 +-0.518993 -0.844328 -0.133255 0.080032 0.922164 -0.519129 -0.844329 -0.132716 +-0.546509 -0.809017 -0.216378 0.120032 0.904508 -0.546703 -0.809018 -0.215883 +-0.498199 -0.844328 -0.197251 0.120032 0.922164 -0.498402 -0.844329 -0.196734 +-0.569319 -0.809017 -0.146176 0.080032 0.904508 -0.56945 -0.809018 -0.14566 +-0.546509 -0.809017 -0.216378 0.120032 0.904508 -0.546703 -0.809018 -0.215883 +-0.469549 -0.844328 -0.258137 0.160032 0.922164 -0.469815 -0.844329 -0.257648 +-0.498199 -0.844328 -0.197251 0.120032 0.922164 -0.498402 -0.844329 -0.196734 +-0.51508 -0.809017 -0.283168 0.160032 0.904508 -0.515335 -0.809018 -0.282701 +-0.469549 -0.844328 -0.258137 0.160032 0.922164 -0.469815 -0.844329 -0.257648 +-0.546509 -0.809017 -0.216378 0.120032 0.904508 -0.546703 -0.809018 -0.215883 +-0.51508 -0.809017 -0.283168 0.160032 0.904508 -0.515335 -0.809018 -0.282701 +-0.433493 -0.844328 -0.314951 0.200032 0.922164 -0.433818 -0.844329 -0.3145 +-0.469549 -0.844328 -0.258137 0.160032 0.922164 -0.469815 -0.844329 -0.257648 +-0.475528 -0.809017 -0.345492 0.200032 0.904508 -0.47584 -0.809018 -0.34506 +-0.433493 -0.844328 -0.314951 0.200032 0.922164 -0.433818 -0.844329 -0.3145 +-0.51508 -0.809017 -0.283168 0.160032 0.904508 -0.515335 -0.809018 -0.282701 +-0.475528 -0.809017 -0.345492 0.200032 0.904508 -0.47584 -0.809018 -0.34506 +-0.390601 -0.844328 -0.366799 0.240032 0.922164 -0.39098 -0.844329 -0.366392 +-0.433493 -0.844328 -0.314951 0.200032 0.922164 -0.433818 -0.844329 -0.3145 +-0.428477 -0.809017 -0.402367 0.240032 0.904508 -0.42884 -0.809018 -0.401978 +-0.390601 -0.844328 -0.366799 0.240032 0.922164 -0.39098 -0.844329 -0.366392 +-0.475528 -0.809017 -0.345492 0.200032 0.904508 -0.47584 -0.809018 -0.34506 +-0.428477 -0.809017 -0.402367 0.240032 0.904508 -0.42884 -0.809018 -0.401978 +-0.341549 -0.844328 -0.412862 0.280032 0.922164 -0.341976 -0.844329 -0.412507 +-0.390601 -0.844328 -0.366799 0.240032 0.922164 -0.39098 -0.844329 -0.366392 +-0.374669 -0.809017 -0.452897 0.280032 0.904508 -0.375078 -0.809018 -0.452556 +-0.341549 -0.844328 -0.412862 0.280032 0.922164 -0.341976 -0.844329 -0.412507 +-0.428477 -0.809017 -0.402367 0.240032 0.904508 -0.42884 -0.809018 -0.401978 +-0.374669 -0.809017 -0.452897 0.280032 0.904508 -0.375078 -0.809018 -0.452556 +-0.28711 -0.844328 -0.452414 0.320032 0.922164 -0.287578 -0.844329 -0.452114 +-0.341549 -0.844328 -0.412862 0.280032 0.922164 -0.341976 -0.844329 -0.412507 +-0.314951 -0.809017 -0.496284 0.320032 0.904508 -0.3154 -0.809018 -0.495997 +-0.28711 -0.844328 -0.452414 0.320032 0.922164 -0.287578 -0.844329 -0.452114 +-0.374669 -0.809017 -0.452897 0.280032 0.904508 -0.375078 -0.809018 -0.452556 +-0.314951 -0.809017 -0.496284 0.320032 0.904508 -0.3154 -0.809018 -0.495997 +-0.228144 -0.844328 -0.484831 0.360032 0.922164 -0.228646 -0.844329 -0.484593 +-0.28711 -0.844328 -0.452414 0.320032 0.922164 -0.287578 -0.844329 -0.452114 +-0.250267 -0.809017 -0.531844 0.360032 0.904508 -0.250748 -0.809018 -0.531616 +-0.228144 -0.844328 -0.484831 0.360032 0.922164 -0.228646 -0.844329 -0.484593 +-0.314951 -0.809017 -0.496284 0.320032 0.904508 -0.3154 -0.809018 -0.495997 +-0.250267 -0.809017 -0.531844 0.360032 0.904508 -0.250748 -0.809018 -0.531616 +-0.16558 -0.844328 -0.509602 0.400032 0.922164 -0.166108 -0.844329 -0.509428 +-0.228144 -0.844328 -0.484831 0.360032 0.922164 -0.228646 -0.844329 -0.484593 +-0.181636 -0.809017 -0.559017 0.400032 0.904508 -0.182142 -0.809018 -0.558851 +-0.16558 -0.844328 -0.509602 0.400032 0.922164 -0.166108 -0.844329 -0.509428 +-0.250267 -0.809017 -0.531844 0.360032 0.904508 -0.250748 -0.809018 -0.531616 +-0.181636 -0.809017 -0.559017 0.400032 0.904508 -0.182142 -0.809018 -0.558851 +-0.100404 -0.844328 -0.526336 0.440032 0.922164 -0.10095 -0.844329 -0.52623 +-0.16558 -0.844328 -0.509602 0.400032 0.922164 -0.166108 -0.844329 -0.509428 +-0.11014 -0.809017 -0.577374 0.440032 0.904508 -0.110663 -0.809018 -0.577273 +-0.100404 -0.844328 -0.526336 0.440032 0.922164 -0.10095 -0.844329 -0.52623 +-0.181636 -0.809017 -0.559017 0.400032 0.904508 -0.182142 -0.809018 -0.558851 +-0.11014 -0.809017 -0.577374 0.440032 0.904508 -0.110663 -0.809018 -0.577273 +-0.033645 -0.844328 -0.53477 0.480032 0.922164 -0.034199 -0.844329 -0.534733 +-0.100404 -0.844328 -0.526336 0.440032 0.922164 -0.10095 -0.844329 -0.52623 +-0.036907 -0.809017 -0.586626 0.480032 0.904508 -0.037438 -0.809018 -0.586591 +-0.033645 -0.844328 -0.53477 0.480032 0.922164 -0.034199 -0.844329 -0.534733 +-0.11014 -0.809017 -0.577374 0.440032 0.904508 -0.110663 -0.809018 -0.577273 +-0.036907 -0.809017 -0.586626 0.480032 0.904508 -0.037438 -0.809018 -0.586591 +0.033645 -0.844328 -0.53477 0.520032 0.922164 0.03309 -0.844329 -0.534802 +-0.033645 -0.844328 -0.53477 0.480032 0.922164 -0.034199 -0.844329 -0.534733 +0.036907 -0.809017 -0.586626 0.520032 0.904508 0.036376 -0.809018 -0.586658 +0.033645 -0.844328 -0.53477 0.520032 0.922164 0.03309 -0.844329 -0.534802 +-0.036907 -0.809017 -0.586626 0.480032 0.904508 -0.037438 -0.809018 -0.586591 +0.036907 -0.809017 -0.586626 0.520032 0.904508 0.036376 -0.809018 -0.586658 +0.100404 -0.844328 -0.526336 0.560032 0.922164 0.099858 -0.844329 -0.526438 +0.033645 -0.844328 -0.53477 0.520032 0.922164 0.03309 -0.844329 -0.534802 +0.11014 -0.809017 -0.577374 0.560032 0.904508 0.109617 -0.809018 -0.577473 +0.100404 -0.844328 -0.526336 0.560032 0.922164 0.099858 -0.844329 -0.526438 +0.036907 -0.809017 -0.586626 0.520032 0.904508 0.036376 -0.809018 -0.586658 +0.11014 -0.809017 -0.577374 0.560032 0.904508 0.109617 -0.809018 -0.577473 +0.16558 -0.844328 -0.509602 0.600032 0.922164 0.165051 -0.844329 -0.509772 +0.100404 -0.844328 -0.526336 0.560032 0.922164 0.099858 -0.844329 -0.526438 +0.181636 -0.809017 -0.559017 0.600032 0.904508 0.181129 -0.809018 -0.55918 +0.16558 -0.844328 -0.509602 0.600032 0.922164 0.165051 -0.844329 -0.509772 +0.11014 -0.809017 -0.577374 0.560032 0.904508 0.109617 -0.809018 -0.577473 +0.181636 -0.809017 -0.559017 0.600032 0.904508 0.181129 -0.809018 -0.55918 +0.228144 -0.844328 -0.484831 0.640032 0.922164 0.22764 -0.844329 -0.485066 +0.16558 -0.844328 -0.509602 0.600032 0.922164 0.165051 -0.844329 -0.509772 +0.250267 -0.809017 -0.531844 0.640032 0.904508 0.249785 -0.809018 -0.532069 +0.228144 -0.844328 -0.484831 0.640032 0.922164 0.22764 -0.844329 -0.485066 +0.181636 -0.809017 -0.559017 0.600032 0.904508 0.181129 -0.809018 -0.55918 +0.250267 -0.809017 -0.531844 0.640032 0.904508 0.249785 -0.809018 -0.532069 +0.28711 -0.844328 -0.452414 0.680032 0.922164 0.28664 -0.844329 -0.45271 +0.228144 -0.844328 -0.484831 0.640032 0.922164 0.22764 -0.844329 -0.485066 +0.314951 -0.809017 -0.496284 0.680032 0.904508 0.314501 -0.809018 -0.496568 +0.28711 -0.844328 -0.452414 0.680032 0.922164 0.28664 -0.844329 -0.45271 +0.250267 -0.809017 -0.531844 0.640032 0.904508 0.249785 -0.809018 -0.532069 +0.314951 -0.809017 -0.496284 0.680032 0.904508 0.314501 -0.809018 -0.496568 +0.341549 -0.844328 -0.412862 0.720032 0.922164 0.34112 -0.844329 -0.413215 +0.28711 -0.844328 -0.452414 0.680032 0.922164 0.28664 -0.844329 -0.45271 +0.374669 -0.809017 -0.452896 0.720032 0.904508 0.374258 -0.809018 -0.453234 +0.341549 -0.844328 -0.412862 0.720032 0.922164 0.34112 -0.844329 -0.413215 +0.314951 -0.809017 -0.496284 0.680032 0.904508 0.314501 -0.809018 -0.496568 +0.374669 -0.809017 -0.452896 0.720032 0.904508 0.374258 -0.809018 -0.453234 +0.390601 -0.844328 -0.366799 0.760032 0.922164 0.39022 -0.844329 -0.367203 +0.341549 -0.844328 -0.412862 0.720032 0.922164 0.34112 -0.844329 -0.413215 +0.428477 -0.809017 -0.402367 0.760032 0.904508 0.428112 -0.809018 -0.402754 +0.390601 -0.844328 -0.366799 0.760032 0.922164 0.39022 -0.844329 -0.367203 +0.374669 -0.809017 -0.452896 0.720032 0.904508 0.374258 -0.809018 -0.453234 +0.428477 -0.809017 -0.402367 0.760032 0.904508 0.428112 -0.809018 -0.402754 +0.433493 -0.844328 -0.314951 0.800032 0.922164 0.433165 -0.844329 -0.315399 +0.390601 -0.844328 -0.366799 0.760032 0.922164 0.39022 -0.844329 -0.367203 +0.475528 -0.809017 -0.345492 0.800032 0.904508 0.475214 -0.809018 -0.345921 +0.433493 -0.844328 -0.314951 0.800032 0.922164 0.433165 -0.844329 -0.315399 +0.428477 -0.809017 -0.402367 0.760032 0.904508 0.428112 -0.809018 -0.402754 +0.475528 -0.809017 -0.345492 0.800032 0.904508 0.475214 -0.809018 -0.345921 +0.469549 -0.844328 -0.258137 0.840032 0.922164 0.46928 -0.844329 -0.258623 +0.433493 -0.844328 -0.314951 0.800032 0.922164 0.433165 -0.844329 -0.315399 +0.51508 -0.809017 -0.283168 0.840032 0.904508 0.514822 -0.809018 -0.283634 +0.469549 -0.844328 -0.258137 0.840032 0.922164 0.46928 -0.844329 -0.258623 +0.475528 -0.809017 -0.345492 0.800032 0.904508 0.475214 -0.809018 -0.345921 +0.51508 -0.809017 -0.283168 0.840032 0.904508 0.514822 -0.809018 -0.283634 +0.498199 -0.844328 -0.197251 0.880032 0.922164 0.497993 -0.844329 -0.197767 +0.469549 -0.844328 -0.258137 0.840032 0.922164 0.46928 -0.844329 -0.258623 +0.546509 -0.809017 -0.216378 0.880032 0.904508 0.546312 -0.809018 -0.216873 +0.498199 -0.844328 -0.197251 0.880032 0.922164 0.497993 -0.844329 -0.197767 +0.51508 -0.809017 -0.283168 0.840032 0.904508 0.514822 -0.809018 -0.283634 +0.546509 -0.809017 -0.216378 0.880032 0.904508 0.546312 -0.809018 -0.216873 +0.518993 -0.844328 -0.133255 0.920032 0.922164 0.518853 -0.844329 -0.133793 +0.498199 -0.844328 -0.197251 0.880032 0.922164 0.497993 -0.844329 -0.197767 +0.569319 -0.809017 -0.146176 0.920032 0.904508 0.569186 -0.809018 -0.146691 +0.518993 -0.844328 -0.133255 0.920032 0.922164 0.518853 -0.844329 -0.133793 +0.546509 -0.809017 -0.216378 0.880032 0.904508 0.546312 -0.809018 -0.216873 +0.569319 -0.809017 -0.146176 0.920032 0.904508 0.569186 -0.809018 -0.146691 +0.531602 -0.844328 -0.067157 0.960032 0.922164 0.531531 -0.844329 -0.067708 +0.518993 -0.844328 -0.133255 0.920032 0.922164 0.518853 -0.844329 -0.133793 +0.58315 -0.809017 -0.073669 0.960032 0.904508 0.583083 -0.809018 -0.074197 +0.531602 -0.844328 -0.067157 0.960032 0.922164 0.531531 -0.844329 -0.067708 +0.569319 -0.809017 -0.146176 0.920032 0.904508 0.569186 -0.809018 -0.146691 +0.58315 -0.809017 -0.073669 0.960032 0.904508 0.583083 -0.809018 -0.074197 +0.535827 -0.844328 -0 1.00003 0.922164 0.535825 -0.844329 -0.000558 +0.531602 -0.844328 -0.067157 0.960032 0.922164 0.531531 -0.844329 -0.067708 +0.587785 -0.809017 -0 1.00003 0.904508 0.587784 -0.809018 -0.000535 +0.535827 -0.844328 -0 1.00003 0.922164 0.535825 -0.844329 -0.000558 +0.58315 -0.809017 -0.073669 0.960032 0.904508 0.583083 -0.809018 -0.074197 +0.587785 -0.809017 -0 1.00003 0.904508 0.587784 -0.809018 -0.000535 +0.531602 -0.844328 0.067157 1.04003 0.922164 0.53167 -0.844329 0.066603 +0.535827 -0.844328 -0 1.00003 0.922164 0.535825 -0.844329 -0.000558 +0.583151 -0.809017 0.073669 1.04003 0.904508 0.583216 -0.809018 0.073138 +0.531602 -0.844328 0.067157 1.04003 0.922164 0.53167 -0.844329 0.066603 +0.587785 -0.809017 -0 1.00003 0.904508 0.587784 -0.809018 -0.000535 +0.632398 -0.770513 0.079891 1.04003 0.885257 0.63246 -0.770515 0.079385 +0.569319 -0.809017 0.146176 1.08003 0.904508 0.56945 -0.809018 0.14566 +0.583151 -0.809017 0.073669 1.04003 0.904508 0.583216 -0.809018 0.073138 +0.617399 -0.770513 0.158521 1.08003 0.885257 0.617522 -0.770515 0.15803 +0.569319 -0.809017 0.146176 1.08003 0.904508 0.56945 -0.809018 0.14566 +0.632398 -0.770513 0.079891 1.04003 0.885257 0.63246 -0.770515 0.079385 +0.617399 -0.770513 0.158521 1.08003 0.885257 0.617522 -0.770515 0.15803 +0.54651 -0.809017 0.216378 1.12003 0.904508 0.546703 -0.809018 0.215882 +0.569319 -0.809017 0.146176 1.08003 0.904508 0.56945 -0.809018 0.14566 +0.592662 -0.770513 0.234652 1.12003 0.885257 0.592846 -0.770515 0.234179 +0.54651 -0.809017 0.216378 1.12003 0.904508 0.546703 -0.809018 0.215882 +0.617399 -0.770513 0.158521 1.08003 0.885257 0.617522 -0.770515 0.15803 +0.592662 -0.770513 0.234652 1.12003 0.885257 0.592846 -0.770515 0.234179 +0.515081 -0.809017 0.283168 1.16003 0.904508 0.515335 -0.809018 0.282701 +0.54651 -0.809017 0.216378 1.12003 0.904508 0.546703 -0.809018 0.215882 +0.558579 -0.770513 0.307082 1.16003 0.885257 0.558821 -0.770515 0.306636 +0.515081 -0.809017 0.283168 1.16003 0.904508 0.515335 -0.809018 0.282701 +0.592662 -0.770513 0.234652 1.12003 0.885257 0.592846 -0.770515 0.234179 +0.558579 -0.770513 0.307082 1.16003 0.885257 0.558821 -0.770515 0.306636 +0.475529 -0.809017 0.345492 1.20003 0.904508 0.47584 -0.809018 0.34506 +0.515081 -0.809017 0.283168 1.16003 0.904508 0.515335 -0.809018 0.282701 +0.515687 -0.770513 0.374669 1.20003 0.885257 0.515983 -0.770515 0.374257 +0.475529 -0.809017 0.345492 1.20003 0.904508 0.47584 -0.809018 0.34506 +0.558579 -0.770513 0.307082 1.16003 0.885257 0.558821 -0.770515 0.306636 +0.515687 -0.770513 0.374669 1.20003 0.885257 0.515983 -0.770515 0.374257 +0.428477 -0.809017 0.402367 1.24003 0.904508 0.42884 -0.809018 0.401978 +0.475529 -0.809017 0.345492 1.20003 0.904508 0.47584 -0.809018 0.34506 +0.464663 -0.770513 0.436347 1.24003 0.885257 0.465008 -0.770514 0.435977 +0.428477 -0.809017 0.402367 1.24003 0.904508 0.42884 -0.809018 0.401978 +0.515687 -0.770513 0.374669 1.20003 0.885257 0.515983 -0.770515 0.374257 +0.464663 -0.770513 0.436347 1.24003 0.885257 0.465008 -0.770514 0.435977 +0.374669 -0.809017 0.452897 1.28003 0.904508 0.375078 -0.809018 0.452556 +0.428477 -0.809017 0.402367 1.24003 0.904508 0.42884 -0.809018 0.401978 +0.40631 -0.770513 0.491144 1.28003 0.885257 0.406699 -0.770515 0.490819 +0.374669 -0.809017 0.452897 1.28003 0.904508 0.375078 -0.809018 0.452556 +0.464663 -0.770513 0.436347 1.24003 0.885257 0.465008 -0.770514 0.435977 +0.40631 -0.770513 0.491144 1.28003 0.885257 0.406699 -0.770515 0.490819 +0.314951 -0.809017 0.496284 1.32003 0.904508 0.3154 -0.809018 0.495997 +0.374669 -0.809017 0.452897 1.28003 0.904508 0.375078 -0.809018 0.452556 +0.341549 -0.770513 0.538195 1.32003 0.885257 0.341976 -0.770515 0.537922 +0.314951 -0.809017 0.496284 1.32003 0.904508 0.3154 -0.809018 0.495997 +0.40631 -0.770513 0.491144 1.28003 0.885257 0.406699 -0.770515 0.490819 +0.341549 -0.770513 0.538195 1.32003 0.885257 0.341976 -0.770515 0.537922 +0.250267 -0.809017 0.531845 1.36003 0.904508 0.250748 -0.809018 0.531616 +0.314951 -0.809017 0.496284 1.32003 0.904508 0.3154 -0.809018 0.495997 +0.271402 -0.770513 0.576759 1.36003 0.885257 0.27186 -0.770515 0.576541 +0.250267 -0.809017 0.531845 1.36003 0.904508 0.250748 -0.809018 0.531616 +0.341549 -0.770513 0.538195 1.32003 0.885257 0.341976 -0.770515 0.537922 +0.271402 -0.770513 0.576759 1.36003 0.885257 0.27186 -0.770515 0.576541 +0.181636 -0.809017 0.559018 1.40003 0.904508 0.182141 -0.809018 0.558851 +0.250267 -0.809017 0.531845 1.36003 0.904508 0.250748 -0.809018 0.531616 +0.196975 -0.770513 0.606227 1.40003 0.885257 0.197456 -0.770515 0.606068 +0.181636 -0.809017 0.559018 1.40003 0.904508 0.182141 -0.809018 0.558851 +0.271402 -0.770513 0.576759 1.36003 0.885257 0.27186 -0.770515 0.576541 +0.196975 -0.770513 0.606227 1.40003 0.885257 0.197456 -0.770515 0.606068 +0.11014 -0.809017 0.577375 1.44003 0.904508 0.110663 -0.809018 0.577273 +0.181636 -0.809017 0.559018 1.40003 0.904508 0.182141 -0.809018 0.558851 +0.119441 -0.770513 0.626134 1.44003 0.885257 0.119939 -0.770515 0.626037 +0.11014 -0.809017 0.577375 1.44003 0.904508 0.110663 -0.809018 0.577273 +0.196975 -0.770513 0.606227 1.40003 0.885257 0.197456 -0.770515 0.606068 +0.119441 -0.770513 0.626134 1.44003 0.885257 0.119939 -0.770515 0.626037 +0.036907 -0.809017 0.586626 1.48003 0.904508 0.037438 -0.809018 0.586591 +0.11014 -0.809017 0.577375 1.44003 0.904508 0.110663 -0.809018 0.577273 +0.040024 -0.770513 0.636167 1.48003 0.885257 0.04053 -0.770515 0.636133 +0.036907 -0.809017 0.586626 1.48003 0.904508 0.037438 -0.809018 0.586591 +0.119441 -0.770513 0.626134 1.44003 0.885257 0.119939 -0.770515 0.626037 +0.040024 -0.770513 0.636167 1.48003 0.885257 0.04053 -0.770515 0.636133 +-0.036907 -0.809017 0.586626 1.52003 0.904508 -0.036376 -0.809018 0.586657 +0.036907 -0.809017 0.586626 1.48003 0.904508 0.037438 -0.809018 0.586591 +-0.040024 -0.770513 0.636167 1.52003 0.885257 -0.039518 -0.770514 0.636196 +-0.036907 -0.809017 0.586626 1.52003 0.904508 -0.036376 -0.809018 0.586657 +0.040024 -0.770513 0.636167 1.48003 0.885257 0.04053 -0.770515 0.636133 +-0.040024 -0.770513 0.636167 -0.479968 0.885257 -0.039518 -0.770514 0.636196 +-0.11014 -0.809017 0.577374 -0.439968 0.904508 -0.109617 -0.809018 0.577472 +-0.036907 -0.809017 0.586626 -0.479968 0.904508 -0.036376 -0.809018 0.586657 +-0.119441 -0.770513 0.626134 -0.439968 0.885257 -0.118943 -0.770514 0.626227 +-0.11014 -0.809017 0.577374 -0.439968 0.904508 -0.109617 -0.809018 0.577472 +-0.040024 -0.770513 0.636167 -0.479968 0.885257 -0.039518 -0.770514 0.636196 +-0.119441 -0.770513 0.626134 -0.439968 0.885257 -0.118943 -0.770514 0.626227 +-0.181636 -0.809017 0.559017 -0.399968 0.904508 -0.181129 -0.809018 0.55918 +-0.11014 -0.809017 0.577374 -0.439968 0.904508 -0.109617 -0.809018 0.577472 +-0.196975 -0.770513 0.606227 -0.399968 0.885257 -0.196492 -0.770515 0.606381 +-0.181636 -0.809017 0.559017 -0.399968 0.904508 -0.181129 -0.809018 0.55918 +-0.119441 -0.770513 0.626134 -0.439968 0.885257 -0.118943 -0.770514 0.626227 +-0.196975 -0.770513 0.606227 -0.399968 0.885257 -0.196492 -0.770515 0.606381 +-0.250267 -0.809017 0.531844 -0.359968 0.904508 -0.249784 -0.809018 0.532069 +-0.181636 -0.809017 0.559017 -0.399968 0.904508 -0.181129 -0.809018 0.55918 +-0.271402 -0.770513 0.576759 -0.359968 0.885257 -0.270943 -0.770514 0.576973 +-0.250267 -0.809017 0.531844 -0.359968 0.904508 -0.249784 -0.809018 0.532069 +-0.196975 -0.770513 0.606227 -0.399968 0.885257 -0.196492 -0.770515 0.606381 +-0.271402 -0.770513 0.576759 -0.359968 0.885257 -0.270943 -0.770514 0.576973 +-0.314951 -0.809017 0.496284 -0.319968 0.904508 -0.314501 -0.809018 0.496568 +-0.250267 -0.809017 0.531844 -0.359968 0.904508 -0.249784 -0.809018 0.532069 +-0.341549 -0.770513 0.538195 -0.319968 0.885257 -0.34112 -0.770515 0.538465 +-0.314951 -0.809017 0.496284 -0.319968 0.904508 -0.314501 -0.809018 0.496568 +-0.271402 -0.770513 0.576759 -0.359968 0.885257 -0.270943 -0.770514 0.576973 +-0.341549 -0.770513 0.538195 -0.319968 0.885257 -0.34112 -0.770515 0.538465 +-0.374669 -0.809017 0.452897 -0.279968 0.904508 -0.374258 -0.809018 0.453234 +-0.314951 -0.809017 0.496284 -0.319968 0.904508 -0.314501 -0.809018 0.496568 +-0.40631 -0.770513 0.491144 -0.279968 0.885257 -0.405917 -0.770515 0.491465 +-0.374669 -0.809017 0.452897 -0.279968 0.904508 -0.374258 -0.809018 0.453234 +-0.341549 -0.770513 0.538195 -0.319968 0.885257 -0.34112 -0.770515 0.538465 +-0.40631 -0.770513 0.491144 -0.279968 0.885257 -0.405917 -0.770515 0.491465 +-0.428477 -0.809017 0.402367 -0.239968 0.904508 -0.428112 -0.809018 0.402754 +-0.374669 -0.809017 0.452897 -0.279968 0.904508 -0.374258 -0.809018 0.453234 +-0.464662 -0.770513 0.436347 -0.239968 0.885257 -0.464314 -0.770514 0.436715 +-0.428477 -0.809017 0.402367 -0.239968 0.904508 -0.428112 -0.809018 0.402754 +-0.40631 -0.770513 0.491144 -0.279968 0.885257 -0.405917 -0.770515 0.491465 +-0.464662 -0.770513 0.436347 -0.239968 0.885257 -0.464314 -0.770514 0.436715 +-0.475529 -0.809017 0.345492 -0.199968 0.904508 -0.475214 -0.809018 0.345921 +-0.428477 -0.809017 0.402367 -0.239968 0.904508 -0.428112 -0.809018 0.402754 +-0.515687 -0.770513 0.374669 -0.199968 0.885257 -0.515387 -0.770515 0.375077 +-0.475529 -0.809017 0.345492 -0.199968 0.904508 -0.475214 -0.809018 0.345921 +-0.464662 -0.770513 0.436347 -0.239968 0.885257 -0.464314 -0.770514 0.436715 +-0.515687 -0.770513 0.374669 -0.199968 0.885257 -0.515387 -0.770515 0.375077 +-0.515081 -0.809017 0.283168 -0.159968 0.904508 -0.514822 -0.809018 0.283633 +-0.475529 -0.809017 0.345492 -0.199968 0.904508 -0.475214 -0.809018 0.345921 +-0.558579 -0.770513 0.307082 -0.159968 0.885257 -0.558333 -0.770515 0.307525 +-0.515081 -0.809017 0.283168 -0.159968 0.904508 -0.514822 -0.809018 0.283633 +-0.515687 -0.770513 0.374669 -0.199968 0.885257 -0.515387 -0.770515 0.375077 +-0.558579 -0.770513 0.307082 -0.159968 0.885257 -0.558333 -0.770515 0.307525 +-0.546509 -0.809017 0.216378 -0.119968 0.904508 -0.546311 -0.809018 0.216872 +-0.515081 -0.809017 0.283168 -0.159968 0.904508 -0.514822 -0.809018 0.283633 +-0.592662 -0.770513 0.234652 -0.119968 0.885257 -0.592474 -0.770515 0.235122 +-0.546509 -0.809017 0.216378 -0.119968 0.904508 -0.546311 -0.809018 0.216872 +-0.558579 -0.770513 0.307082 -0.159968 0.885257 -0.558333 -0.770515 0.307525 +-0.592662 -0.770513 0.234652 -0.119968 0.885257 -0.592474 -0.770515 0.235122 +-0.569319 -0.809017 0.146176 -0.079968 0.904508 -0.569185 -0.809018 0.146691 +-0.546509 -0.809017 0.216378 -0.119968 0.904508 -0.546311 -0.809018 0.216872 +-0.617399 -0.770513 0.158521 -0.079968 0.885257 -0.61727 -0.770515 0.159011 +-0.569319 -0.809017 0.146176 -0.079968 0.904508 -0.569185 -0.809018 0.146691 +-0.592662 -0.770513 0.234652 -0.119968 0.885257 -0.592474 -0.770515 0.235122 +-0.617399 -0.770513 0.158521 -0.079968 0.885257 -0.61727 -0.770515 0.159011 +-0.583151 -0.809017 0.073669 -0.039968 0.904508 -0.583082 -0.809018 0.074197 +-0.569319 -0.809017 0.146176 -0.079968 0.904508 -0.569185 -0.809018 0.146691 +-0.632398 -0.770513 0.07989 -0.039968 0.885257 -0.632333 -0.770514 0.080393 +-0.583151 -0.809017 0.073669 -0.039968 0.904508 -0.583082 -0.809018 0.074197 +-0.617399 -0.770513 0.158521 -0.079968 0.885257 -0.61727 -0.770515 0.159011 +-0.632398 -0.770513 0.07989 -0.039968 0.885257 -0.632333 -0.770514 0.080393 +-0.587786 -0.809017 -0 3.2e-005 0.904508 -0.587784 -0.809018 0.000532 +-0.583151 -0.809017 0.073669 -0.039968 0.904508 -0.583082 -0.809018 0.074197 +-0.637424 -0.770513 -0 3.2e-005 0.885257 -0.637422 -0.770515 0.000507 +-0.587786 -0.809017 -0 3.2e-005 0.904508 -0.587784 -0.809018 0.000532 +-0.632398 -0.770513 0.07989 -0.039968 0.885257 -0.632333 -0.770514 0.080393 +-0.637424 -0.770513 -0 3.2e-005 0.885257 -0.637422 -0.770515 0.000507 +-0.583151 -0.809017 -0.073669 0.040032 0.904508 -0.583216 -0.809018 -0.07314 +-0.587786 -0.809017 -0 3.2e-005 0.904508 -0.587784 -0.809018 0.000532 +-0.632398 -0.770513 -0.079891 0.040032 0.885257 -0.632459 -0.770515 -0.079387 +-0.583151 -0.809017 -0.073669 0.040032 0.904508 -0.583216 -0.809018 -0.07314 +-0.637424 -0.770513 -0 3.2e-005 0.885257 -0.637422 -0.770515 0.000507 +-0.632398 -0.770513 -0.079891 0.040032 0.885257 -0.632459 -0.770515 -0.079387 +-0.569319 -0.809017 -0.146176 0.080032 0.904508 -0.56945 -0.809018 -0.14566 +-0.583151 -0.809017 -0.073669 0.040032 0.904508 -0.583216 -0.809018 -0.07314 +-0.617399 -0.770513 -0.158521 0.080032 0.885257 -0.617522 -0.770515 -0.158029 +-0.569319 -0.809017 -0.146176 0.080032 0.904508 -0.56945 -0.809018 -0.14566 +-0.632398 -0.770513 -0.079891 0.040032 0.885257 -0.632459 -0.770515 -0.079387 +-0.617399 -0.770513 -0.158521 0.080032 0.885257 -0.617522 -0.770515 -0.158029 +-0.546509 -0.809017 -0.216378 0.120032 0.904508 -0.546703 -0.809018 -0.215883 +-0.569319 -0.809017 -0.146176 0.080032 0.904508 -0.56945 -0.809018 -0.14566 +-0.592662 -0.770513 -0.234652 0.120032 0.885257 -0.592847 -0.770515 -0.23418 +-0.546509 -0.809017 -0.216378 0.120032 0.904508 -0.546703 -0.809018 -0.215883 +-0.617399 -0.770513 -0.158521 0.080032 0.885257 -0.617522 -0.770515 -0.158029 +-0.592662 -0.770513 -0.234652 0.120032 0.885257 -0.592847 -0.770515 -0.23418 +-0.51508 -0.809017 -0.283168 0.160032 0.904508 -0.515335 -0.809018 -0.282701 +-0.546509 -0.809017 -0.216378 0.120032 0.904508 -0.546703 -0.809018 -0.215883 +-0.558579 -0.770513 -0.307082 0.160032 0.885257 -0.558821 -0.770515 -0.306636 +-0.51508 -0.809017 -0.283168 0.160032 0.904508 -0.515335 -0.809018 -0.282701 +-0.592662 -0.770513 -0.234652 0.120032 0.885257 -0.592847 -0.770515 -0.23418 +-0.558579 -0.770513 -0.307082 0.160032 0.885257 -0.558821 -0.770515 -0.306636 +-0.475528 -0.809017 -0.345492 0.200032 0.904508 -0.47584 -0.809018 -0.34506 +-0.51508 -0.809017 -0.283168 0.160032 0.904508 -0.515335 -0.809018 -0.282701 +-0.515687 -0.770513 -0.374669 0.200032 0.885257 -0.515983 -0.770515 -0.374257 +-0.475528 -0.809017 -0.345492 0.200032 0.904508 -0.47584 -0.809018 -0.34506 +-0.558579 -0.770513 -0.307082 0.160032 0.885257 -0.558821 -0.770515 -0.306636 +-0.515687 -0.770513 -0.374669 0.200032 0.885257 -0.515983 -0.770515 -0.374257 +-0.428477 -0.809017 -0.402367 0.240032 0.904508 -0.42884 -0.809018 -0.401978 +-0.475528 -0.809017 -0.345492 0.200032 0.904508 -0.47584 -0.809018 -0.34506 +-0.464662 -0.770513 -0.436347 0.240032 0.885257 -0.465008 -0.770514 -0.435977 +-0.428477 -0.809017 -0.402367 0.240032 0.904508 -0.42884 -0.809018 -0.401978 +-0.515687 -0.770513 -0.374669 0.200032 0.885257 -0.515983 -0.770515 -0.374257 +-0.464662 -0.770513 -0.436347 0.240032 0.885257 -0.465008 -0.770514 -0.435977 +-0.374669 -0.809017 -0.452897 0.280032 0.904508 -0.375078 -0.809018 -0.452556 +-0.428477 -0.809017 -0.402367 0.240032 0.904508 -0.42884 -0.809018 -0.401978 +-0.406309 -0.770513 -0.491144 0.280032 0.885257 -0.406699 -0.770515 -0.490819 +-0.374669 -0.809017 -0.452897 0.280032 0.904508 -0.375078 -0.809018 -0.452556 +-0.464662 -0.770513 -0.436347 0.240032 0.885257 -0.465008 -0.770514 -0.435977 +-0.406309 -0.770513 -0.491144 0.280032 0.885257 -0.406699 -0.770515 -0.490819 +-0.314951 -0.809017 -0.496284 0.320032 0.904508 -0.3154 -0.809018 -0.495997 +-0.374669 -0.809017 -0.452897 0.280032 0.904508 -0.375078 -0.809018 -0.452556 +-0.341549 -0.770513 -0.538195 0.320032 0.885257 -0.341976 -0.770515 -0.537922 +-0.314951 -0.809017 -0.496284 0.320032 0.904508 -0.3154 -0.809018 -0.495997 +-0.406309 -0.770513 -0.491144 0.280032 0.885257 -0.406699 -0.770515 -0.490819 +-0.341549 -0.770513 -0.538195 0.320032 0.885257 -0.341976 -0.770515 -0.537922 +-0.250267 -0.809017 -0.531844 0.360032 0.904508 -0.250748 -0.809018 -0.531616 +-0.314951 -0.809017 -0.496284 0.320032 0.904508 -0.3154 -0.809018 -0.495997 +-0.271402 -0.770513 -0.576759 0.360032 0.885257 -0.27186 -0.770514 -0.576542 +-0.250267 -0.809017 -0.531844 0.360032 0.904508 -0.250748 -0.809018 -0.531616 +-0.341549 -0.770513 -0.538195 0.320032 0.885257 -0.341976 -0.770515 -0.537922 +-0.271402 -0.770513 -0.576759 0.360032 0.885257 -0.27186 -0.770514 -0.576542 +-0.181636 -0.809017 -0.559017 0.400032 0.904508 -0.182142 -0.809018 -0.558851 +-0.250267 -0.809017 -0.531844 0.360032 0.904508 -0.250748 -0.809018 -0.531616 +-0.196975 -0.770513 -0.606227 0.400032 0.885257 -0.197456 -0.770514 -0.606068 +-0.181636 -0.809017 -0.559017 0.400032 0.904508 -0.182142 -0.809018 -0.558851 +-0.271402 -0.770513 -0.576759 0.360032 0.885257 -0.27186 -0.770514 -0.576542 +-0.196975 -0.770513 -0.606227 0.400032 0.885257 -0.197456 -0.770514 -0.606068 +-0.11014 -0.809017 -0.577374 0.440032 0.904508 -0.110663 -0.809018 -0.577273 +-0.181636 -0.809017 -0.559017 0.400032 0.904508 -0.182142 -0.809018 -0.558851 +-0.119441 -0.770513 -0.626134 0.440032 0.885257 -0.119939 -0.770514 -0.626037 +-0.11014 -0.809017 -0.577374 0.440032 0.904508 -0.110663 -0.809018 -0.577273 +-0.196975 -0.770513 -0.606227 0.400032 0.885257 -0.197456 -0.770514 -0.606068 +-0.119441 -0.770513 -0.626134 0.440032 0.885257 -0.119939 -0.770514 -0.626037 +-0.036907 -0.809017 -0.586626 0.480032 0.904508 -0.037438 -0.809018 -0.586591 +-0.11014 -0.809017 -0.577374 0.440032 0.904508 -0.110663 -0.809018 -0.577273 +-0.040024 -0.770513 -0.636166 0.480032 0.885257 -0.04053 -0.770514 -0.636133 +-0.036907 -0.809017 -0.586626 0.480032 0.904508 -0.037438 -0.809018 -0.586591 +-0.119441 -0.770513 -0.626134 0.440032 0.885257 -0.119939 -0.770514 -0.626037 +-0.040024 -0.770513 -0.636166 0.480032 0.885257 -0.04053 -0.770514 -0.636133 +0.036907 -0.809017 -0.586626 0.520032 0.904508 0.036376 -0.809018 -0.586658 +-0.036907 -0.809017 -0.586626 0.480032 0.904508 -0.037438 -0.809018 -0.586591 +0.040024 -0.770513 -0.636166 0.520032 0.885257 0.039518 -0.770514 -0.636197 +0.036907 -0.809017 -0.586626 0.520032 0.904508 0.036376 -0.809018 -0.586658 +-0.040024 -0.770513 -0.636166 0.480032 0.885257 -0.04053 -0.770514 -0.636133 +0.040024 -0.770513 -0.636166 0.520032 0.885257 0.039518 -0.770514 -0.636197 +0.11014 -0.809017 -0.577374 0.560032 0.904508 0.109617 -0.809018 -0.577473 +0.036907 -0.809017 -0.586626 0.520032 0.904508 0.036376 -0.809018 -0.586658 +0.119441 -0.770513 -0.626134 0.560032 0.885257 0.118943 -0.770514 -0.626227 +0.11014 -0.809017 -0.577374 0.560032 0.904508 0.109617 -0.809018 -0.577473 +0.040024 -0.770513 -0.636166 0.520032 0.885257 0.039518 -0.770514 -0.636197 +0.119441 -0.770513 -0.626134 0.560032 0.885257 0.118943 -0.770514 -0.626227 +0.181636 -0.809017 -0.559017 0.600032 0.904508 0.181129 -0.809018 -0.55918 +0.11014 -0.809017 -0.577374 0.560032 0.904508 0.109617 -0.809018 -0.577473 +0.196975 -0.770513 -0.606226 0.600032 0.885257 0.196492 -0.770514 -0.606381 +0.181636 -0.809017 -0.559017 0.600032 0.904508 0.181129 -0.809018 -0.55918 +0.119441 -0.770513 -0.626134 0.560032 0.885257 0.118943 -0.770514 -0.626227 +0.196975 -0.770513 -0.606226 0.600032 0.885257 0.196492 -0.770514 -0.606381 +0.250267 -0.809017 -0.531844 0.640032 0.904508 0.249785 -0.809018 -0.532069 +0.181636 -0.809017 -0.559017 0.600032 0.904508 0.181129 -0.809018 -0.55918 +0.271402 -0.770513 -0.576759 0.640032 0.885257 0.270943 -0.770514 -0.576973 +0.250267 -0.809017 -0.531844 0.640032 0.904508 0.249785 -0.809018 -0.532069 +0.196975 -0.770513 -0.606226 0.600032 0.885257 0.196492 -0.770514 -0.606381 +0.271402 -0.770513 -0.576759 0.640032 0.885257 0.270943 -0.770514 -0.576973 +0.314951 -0.809017 -0.496284 0.680032 0.904508 0.314501 -0.809018 -0.496568 +0.250267 -0.809017 -0.531844 0.640032 0.904508 0.249785 -0.809018 -0.532069 +0.341549 -0.770513 -0.538195 0.680032 0.885257 0.34112 -0.770514 -0.538465 +0.314951 -0.809017 -0.496284 0.680032 0.904508 0.314501 -0.809018 -0.496568 +0.271402 -0.770513 -0.576759 0.640032 0.885257 0.270943 -0.770514 -0.576973 +0.341549 -0.770513 -0.538195 0.680032 0.885257 0.34112 -0.770514 -0.538465 +0.374669 -0.809017 -0.452896 0.720032 0.904508 0.374258 -0.809018 -0.453234 +0.314951 -0.809017 -0.496284 0.680032 0.904508 0.314501 -0.809018 -0.496568 +0.406309 -0.770513 -0.491144 0.720032 0.885257 0.405918 -0.770514 -0.491465 +0.374669 -0.809017 -0.452896 0.720032 0.904508 0.374258 -0.809018 -0.453234 +0.341549 -0.770513 -0.538195 0.680032 0.885257 0.34112 -0.770514 -0.538465 +0.406309 -0.770513 -0.491144 0.720032 0.885257 0.405918 -0.770514 -0.491465 +0.428477 -0.809017 -0.402367 0.760032 0.904508 0.428112 -0.809018 -0.402754 +0.374669 -0.809017 -0.452896 0.720032 0.904508 0.374258 -0.809018 -0.453234 +0.464662 -0.770513 -0.436347 0.760032 0.885257 0.464314 -0.770514 -0.436715 +0.428477 -0.809017 -0.402367 0.760032 0.904508 0.428112 -0.809018 -0.402754 +0.406309 -0.770513 -0.491144 0.720032 0.885257 0.405918 -0.770514 -0.491465 +0.464662 -0.770513 -0.436347 0.760032 0.885257 0.464314 -0.770514 -0.436715 +0.475528 -0.809017 -0.345492 0.800032 0.904508 0.475214 -0.809018 -0.345921 +0.428477 -0.809017 -0.402367 0.760032 0.904508 0.428112 -0.809018 -0.402754 +0.515687 -0.770513 -0.374668 0.800032 0.885257 0.515388 -0.770514 -0.375078 +0.475528 -0.809017 -0.345492 0.800032 0.904508 0.475214 -0.809018 -0.345921 +0.464662 -0.770513 -0.436347 0.760032 0.885257 0.464314 -0.770514 -0.436715 +0.515687 -0.770513 -0.374668 0.800032 0.885257 0.515388 -0.770514 -0.375078 +0.51508 -0.809017 -0.283168 0.840032 0.904508 0.514822 -0.809018 -0.283634 +0.475528 -0.809017 -0.345492 0.800032 0.904508 0.475214 -0.809018 -0.345921 +0.558579 -0.770513 -0.307081 0.840032 0.885257 0.558334 -0.770514 -0.307525 +0.51508 -0.809017 -0.283168 0.840032 0.904508 0.514822 -0.809018 -0.283634 +0.515687 -0.770513 -0.374668 0.800032 0.885257 0.515388 -0.770514 -0.375078 +0.558579 -0.770513 -0.307081 0.840032 0.885257 0.558334 -0.770514 -0.307525 +0.546509 -0.809017 -0.216378 0.880032 0.904508 0.546312 -0.809018 -0.216873 +0.51508 -0.809017 -0.283168 0.840032 0.904508 0.514822 -0.809018 -0.283634 +0.592662 -0.770513 -0.234651 0.880032 0.885257 0.592474 -0.770514 -0.235122 +0.546509 -0.809017 -0.216378 0.880032 0.904508 0.546312 -0.809018 -0.216873 +0.558579 -0.770513 -0.307081 0.840032 0.885257 0.558334 -0.770514 -0.307525 +0.592662 -0.770513 -0.234651 0.880032 0.885257 0.592474 -0.770514 -0.235122 +0.569319 -0.809017 -0.146176 0.920032 0.904508 0.569186 -0.809018 -0.146691 +0.546509 -0.809017 -0.216378 0.880032 0.904508 0.546312 -0.809018 -0.216873 +0.617398 -0.770513 -0.158521 0.920032 0.885257 0.617271 -0.770514 -0.159011 +0.569319 -0.809017 -0.146176 0.920032 0.904508 0.569186 -0.809018 -0.146691 +0.592662 -0.770513 -0.234651 0.880032 0.885257 0.592474 -0.770514 -0.235122 +0.617398 -0.770513 -0.158521 0.920032 0.885257 0.617271 -0.770514 -0.159011 +0.58315 -0.809017 -0.073669 0.960032 0.904508 0.583083 -0.809018 -0.074197 +0.569319 -0.809017 -0.146176 0.920032 0.904508 0.569186 -0.809018 -0.146691 +0.632398 -0.770513 -0.07989 0.960032 0.885257 0.632333 -0.770514 -0.080393 +0.58315 -0.809017 -0.073669 0.960032 0.904508 0.583083 -0.809018 -0.074197 +0.617398 -0.770513 -0.158521 0.920032 0.885257 0.617271 -0.770514 -0.159011 +0.632398 -0.770513 -0.07989 0.960032 0.885257 0.632333 -0.770514 -0.080393 +0.587785 -0.809017 -0 1.00003 0.904508 0.587784 -0.809018 -0.000535 +0.58315 -0.809017 -0.073669 0.960032 0.904508 0.583083 -0.809018 -0.074197 +0.637424 -0.770513 -0 1.00003 0.885257 0.637423 -0.770514 -0.00051 +0.587785 -0.809017 -0 1.00003 0.904508 0.587784 -0.809018 -0.000535 +0.632398 -0.770513 -0.07989 0.960032 0.885257 0.632333 -0.770514 -0.080393 +0.637424 -0.770513 -0 1.00003 0.885257 0.637423 -0.770514 -0.00051 +0.583151 -0.809017 0.073669 1.04003 0.904508 0.583216 -0.809018 0.073138 +0.587785 -0.809017 -0 1.00003 0.904508 0.587784 -0.809018 -0.000535 +0.632398 -0.770513 0.079891 1.04003 0.885257 0.63246 -0.770515 0.079385 +0.583151 -0.809017 0.073669 1.04003 0.904508 0.583216 -0.809018 0.073138 +0.637424 -0.770513 -0 1.00003 0.885257 0.637423 -0.770514 -0.00051 +0.67915 -0.728969 0.085797 1.04003 0.864484 0.679207 -0.728971 0.085318 +0.617399 -0.770513 0.158521 1.08003 0.885257 0.617522 -0.770515 0.15803 +0.632398 -0.770513 0.079891 1.04003 0.885257 0.63246 -0.770515 0.079385 +0.663042 -0.728969 0.17024 1.08003 0.864484 0.663158 -0.72897 0.169775 +0.617399 -0.770513 0.158521 1.08003 0.885257 0.617522 -0.770515 0.15803 +0.67915 -0.728969 0.085797 1.04003 0.864484 0.679207 -0.728971 0.085318 +0.663042 -0.728969 0.17024 1.08003 0.864484 0.663158 -0.72897 0.169775 +0.592662 -0.770513 0.234652 1.12003 0.885257 0.592846 -0.770515 0.234179 +0.617399 -0.770513 0.158521 1.08003 0.885257 0.617522 -0.770515 0.15803 +0.636477 -0.728969 0.251999 1.12003 0.864484 0.63665 -0.728971 0.251552 +0.592662 -0.770513 0.234652 1.12003 0.885257 0.592846 -0.770515 0.234179 +0.663042 -0.728969 0.17024 1.08003 0.864484 0.663158 -0.72897 0.169775 +0.636477 -0.728969 0.251999 1.12003 0.864484 0.63665 -0.728971 0.251552 +0.558579 -0.770513 0.307082 1.16003 0.885257 0.558821 -0.770515 0.306636 +0.592662 -0.770513 0.234652 1.12003 0.885257 0.592846 -0.770515 0.234179 +0.599874 -0.728969 0.329783 1.16003 0.864484 0.600102 -0.72897 0.329362 +0.558579 -0.770513 0.307082 1.16003 0.885257 0.558821 -0.770515 0.306636 +0.636477 -0.728969 0.251999 1.12003 0.864484 0.63665 -0.728971 0.251552 +0.599874 -0.728969 0.329783 1.16003 0.864484 0.600102 -0.72897 0.329362 +0.515687 -0.770513 0.374669 1.20003 0.885257 0.515983 -0.770515 0.374257 +0.558579 -0.770513 0.307082 1.16003 0.885257 0.558821 -0.770515 0.306636 +0.553811 -0.728969 0.402367 1.20003 0.864484 0.554091 -0.72897 0.401978 +0.515687 -0.770513 0.374669 1.20003 0.885257 0.515983 -0.770515 0.374257 +0.599874 -0.728969 0.329783 1.16003 0.864484 0.600102 -0.72897 0.329362 +0.553811 -0.728969 0.402367 1.20003 0.864484 0.554091 -0.72897 0.401978 +0.464663 -0.770513 0.436347 1.24003 0.885257 0.465008 -0.770514 0.435977 +0.515687 -0.770513 0.374669 1.20003 0.885257 0.515983 -0.770515 0.374257 +0.499014 -0.728969 0.468605 1.24003 0.864484 0.49934 -0.72897 0.468254 +0.464663 -0.770513 0.436347 1.24003 0.885257 0.465008 -0.770514 0.435977 +0.553811 -0.728969 0.402367 1.20003 0.864484 0.554091 -0.72897 0.401978 +0.499014 -0.728969 0.468605 1.24003 0.864484 0.49934 -0.72897 0.468254 +0.40631 -0.770513 0.491144 1.28003 0.885257 0.406699 -0.770515 0.490819 +0.464663 -0.770513 0.436347 1.24003 0.885257 0.465008 -0.770514 0.435977 +0.436347 -0.728969 0.527453 1.28003 0.864484 0.436715 -0.728971 0.527145 +0.40631 -0.770513 0.491144 1.28003 0.885257 0.406699 -0.770515 0.490819 +0.499014 -0.728969 0.468605 1.24003 0.864484 0.49934 -0.72897 0.468254 +0.436347 -0.728969 0.527453 1.28003 0.864484 0.436715 -0.728971 0.527145 +0.341549 -0.770513 0.538195 1.32003 0.885257 0.341976 -0.770515 0.537922 +0.40631 -0.770513 0.491144 1.28003 0.885257 0.406699 -0.770515 0.490819 +0.366799 -0.728969 0.577983 1.32003 0.864484 0.367203 -0.72897 0.577724 +0.341549 -0.770513 0.538195 1.32003 0.885257 0.341976 -0.770515 0.537922 +0.436347 -0.728969 0.527453 1.28003 0.864484 0.436715 -0.728971 0.527145 +0.366799 -0.728969 0.577983 1.32003 0.864484 0.367203 -0.72897 0.577724 +0.271402 -0.770513 0.576759 1.36003 0.885257 0.27186 -0.770515 0.576541 +0.341549 -0.770513 0.538195 1.32003 0.885257 0.341976 -0.770515 0.537922 +0.291466 -0.728969 0.619397 1.36003 0.864484 0.291899 -0.72897 0.619191 +0.271402 -0.770513 0.576759 1.36003 0.885257 0.27186 -0.770515 0.576541 +0.366799 -0.728969 0.577983 1.32003 0.864484 0.367203 -0.72897 0.577724 +0.291466 -0.728969 0.619397 1.36003 0.864484 0.291899 -0.72897 0.619191 +0.196975 -0.770513 0.606227 1.40003 0.885257 0.197456 -0.770515 0.606068 +0.271402 -0.770513 0.576759 1.36003 0.885257 0.27186 -0.770515 0.576541 +0.211537 -0.728969 0.651044 1.40003 0.864484 0.211992 -0.72897 0.650893 +0.196975 -0.770513 0.606227 1.40003 0.885257 0.197456 -0.770515 0.606068 +0.291466 -0.728969 0.619397 1.36003 0.864484 0.291899 -0.72897 0.619191 +0.211537 -0.728969 0.651044 1.40003 0.864484 0.211992 -0.72897 0.650893 +0.119441 -0.770513 0.626134 1.44003 0.885257 0.119939 -0.770515 0.626037 +0.196975 -0.770513 0.606227 1.40003 0.885257 0.197456 -0.770515 0.606068 +0.128271 -0.728969 0.672423 1.44003 0.864484 0.128742 -0.72897 0.67233 +0.119441 -0.770513 0.626134 1.44003 0.885257 0.119939 -0.770515 0.626037 +0.211537 -0.728969 0.651044 1.40003 0.864484 0.211992 -0.72897 0.650893 +0.128271 -0.728969 0.672423 1.44003 0.864484 0.128742 -0.72897 0.67233 +0.040024 -0.770513 0.636167 1.48003 0.885257 0.04053 -0.770515 0.636133 +0.119441 -0.770513 0.626134 1.44003 0.885257 0.119939 -0.770515 0.626037 +0.042983 -0.728969 0.683197 1.48003 0.864484 0.043461 -0.728971 0.683164 +0.040024 -0.770513 0.636167 1.48003 0.885257 0.04053 -0.770515 0.636133 +0.128271 -0.728969 0.672423 1.44003 0.864484 0.128742 -0.72897 0.67233 +0.042983 -0.728969 0.683197 1.48003 0.864484 0.043461 -0.728971 0.683164 +-0.040024 -0.770513 0.636167 1.52003 0.885257 -0.039518 -0.770514 0.636196 +0.040024 -0.770513 0.636167 1.48003 0.885257 0.04053 -0.770515 0.636133 +-0.042983 -0.728969 0.683197 1.52003 0.864484 -0.042504 -0.72897 0.683225 +-0.040024 -0.770513 0.636167 1.52003 0.885257 -0.039518 -0.770514 0.636196 +0.042983 -0.728969 0.683197 1.48003 0.864484 0.043461 -0.728971 0.683164 +-0.042983 -0.728969 0.683197 -0.479968 0.864484 -0.042504 -0.72897 0.683225 +-0.119441 -0.770513 0.626134 -0.439968 0.885257 -0.118943 -0.770514 0.626227 +-0.040024 -0.770513 0.636167 -0.479968 0.885257 -0.039518 -0.770514 0.636196 +-0.128272 -0.728969 0.672422 -0.439968 0.864484 -0.1278 -0.72897 0.67251 +-0.119441 -0.770513 0.626134 -0.439968 0.885257 -0.118943 -0.770514 0.626227 +-0.042983 -0.728969 0.683197 -0.479968 0.864484 -0.042504 -0.72897 0.683225 +-0.128272 -0.728969 0.672422 -0.439968 0.864484 -0.1278 -0.72897 0.67251 +-0.196975 -0.770513 0.606227 -0.399968 0.885257 -0.196492 -0.770515 0.606381 +-0.119441 -0.770513 0.626134 -0.439968 0.885257 -0.118943 -0.770514 0.626227 +-0.211537 -0.728969 0.651044 -0.399968 0.864484 -0.21108 -0.72897 0.651189 +-0.196975 -0.770513 0.606227 -0.399968 0.885257 -0.196492 -0.770515 0.606381 +-0.128272 -0.728969 0.672422 -0.439968 0.864484 -0.1278 -0.72897 0.67251 +-0.211537 -0.728969 0.651044 -0.399968 0.864484 -0.21108 -0.72897 0.651189 +-0.271402 -0.770513 0.576759 -0.359968 0.885257 -0.270943 -0.770514 0.576973 +-0.196975 -0.770513 0.606227 -0.399968 0.885257 -0.196492 -0.770515 0.606381 +-0.291466 -0.728969 0.619397 -0.359968 0.864484 -0.291032 -0.72897 0.619599 +-0.271402 -0.770513 0.576759 -0.359968 0.885257 -0.270943 -0.770514 0.576973 +-0.211537 -0.728969 0.651044 -0.399968 0.864484 -0.21108 -0.72897 0.651189 +-0.291466 -0.728969 0.619397 -0.359968 0.864484 -0.291032 -0.72897 0.619599 +-0.341549 -0.770513 0.538195 -0.319968 0.885257 -0.34112 -0.770515 0.538465 +-0.271402 -0.770513 0.576759 -0.359968 0.885257 -0.270943 -0.770514 0.576973 +-0.366799 -0.728969 0.577983 -0.319968 0.864484 -0.366393 -0.72897 0.578238 +-0.341549 -0.770513 0.538195 -0.319968 0.885257 -0.34112 -0.770515 0.538465 +-0.291466 -0.728969 0.619397 -0.359968 0.864484 -0.291032 -0.72897 0.619599 +-0.366799 -0.728969 0.577983 -0.319968 0.864484 -0.366393 -0.72897 0.578238 +-0.40631 -0.770513 0.491144 -0.279968 0.885257 -0.405917 -0.770515 0.491465 +-0.341549 -0.770513 0.538195 -0.319968 0.885257 -0.34112 -0.770515 0.538465 +-0.436347 -0.728969 0.527453 -0.279968 0.864484 -0.435976 -0.72897 0.527757 +-0.40631 -0.770513 0.491144 -0.279968 0.885257 -0.405917 -0.770515 0.491465 +-0.366799 -0.728969 0.577983 -0.319968 0.864484 -0.366393 -0.72897 0.578238 +-0.436347 -0.728969 0.527453 -0.279968 0.864484 -0.435976 -0.72897 0.527757 +-0.464662 -0.770513 0.436347 -0.239968 0.885257 -0.464314 -0.770514 0.436715 +-0.40631 -0.770513 0.491144 -0.279968 0.885257 -0.405917 -0.770515 0.491465 +-0.499014 -0.728969 0.468605 -0.239968 0.864484 -0.498684 -0.72897 0.468953 +-0.464662 -0.770513 0.436347 -0.239968 0.885257 -0.464314 -0.770514 0.436715 +-0.436347 -0.728969 0.527453 -0.279968 0.864484 -0.435976 -0.72897 0.527757 +-0.499014 -0.728969 0.468605 -0.239968 0.864484 -0.498684 -0.72897 0.468953 +-0.515687 -0.770513 0.374669 -0.199968 0.885257 -0.515387 -0.770515 0.375077 +-0.464662 -0.770513 0.436347 -0.239968 0.885257 -0.464314 -0.770514 0.436715 +-0.553811 -0.728969 0.402367 -0.199968 0.864484 -0.553527 -0.72897 0.402753 +-0.515687 -0.770513 0.374669 -0.199968 0.885257 -0.515387 -0.770515 0.375077 +-0.499014 -0.728969 0.468605 -0.239968 0.864484 -0.498684 -0.72897 0.468953 +-0.553811 -0.728969 0.402367 -0.199968 0.864484 -0.553527 -0.72897 0.402753 +-0.558579 -0.770513 0.307082 -0.159968 0.885257 -0.558333 -0.770515 0.307525 +-0.515687 -0.770513 0.374669 -0.199968 0.885257 -0.515387 -0.770515 0.375077 +-0.599874 -0.728969 0.329783 -0.159968 0.864484 -0.599641 -0.72897 0.330202 +-0.558579 -0.770513 0.307082 -0.159968 0.885257 -0.558333 -0.770515 0.307525 +-0.553811 -0.728969 0.402367 -0.199968 0.864484 -0.553527 -0.72897 0.402753 +-0.599874 -0.728969 0.329783 -0.159968 0.864484 -0.599641 -0.72897 0.330202 +-0.592662 -0.770513 0.234652 -0.119968 0.885257 -0.592474 -0.770515 0.235122 +-0.558579 -0.770513 0.307082 -0.159968 0.885257 -0.558333 -0.770515 0.307525 +-0.636476 -0.728969 0.251999 -0.119968 0.864484 -0.636297 -0.72897 0.252443 +-0.592662 -0.770513 0.234652 -0.119968 0.885257 -0.592474 -0.770515 0.235122 +-0.599874 -0.728969 0.329783 -0.159968 0.864484 -0.599641 -0.72897 0.330202 +-0.636476 -0.728969 0.251999 -0.119968 0.864484 -0.636297 -0.72897 0.252443 +-0.617399 -0.770513 0.158521 -0.079968 0.885257 -0.61727 -0.770515 0.159011 +-0.592662 -0.770513 0.234652 -0.119968 0.885257 -0.592474 -0.770515 0.235122 +-0.663041 -0.728969 0.17024 -0.079968 0.864484 -0.66292 -0.72897 0.170704 +-0.617399 -0.770513 0.158521 -0.079968 0.885257 -0.61727 -0.770515 0.159011 +-0.636476 -0.728969 0.251999 -0.119968 0.864484 -0.636297 -0.72897 0.252443 +-0.663041 -0.728969 0.17024 -0.079968 0.864484 -0.66292 -0.72897 0.170704 +-0.632398 -0.770513 0.07989 -0.039968 0.885257 -0.632333 -0.770514 0.080393 +-0.617399 -0.770513 0.158521 -0.079968 0.885257 -0.61727 -0.770515 0.159011 +-0.67915 -0.728969 0.085797 -0.039968 0.864484 -0.679087 -0.72897 0.086272 +-0.632398 -0.770513 0.07989 -0.039968 0.885257 -0.632333 -0.770514 0.080393 +-0.663041 -0.728969 0.17024 -0.079968 0.864484 -0.66292 -0.72897 0.170704 +-0.67915 -0.728969 0.085797 -0.039968 0.864484 -0.679087 -0.72897 0.086272 +-0.637424 -0.770513 -0 3.2e-005 0.885257 -0.637422 -0.770515 0.000507 +-0.632398 -0.770513 0.07989 -0.039968 0.885257 -0.632333 -0.770514 0.080393 +-0.684548 -0.728969 -0 3.2e-005 0.864484 -0.684546 -0.72897 0.000479 +-0.637424 -0.770513 -0 3.2e-005 0.885257 -0.637422 -0.770515 0.000507 +-0.67915 -0.728969 0.085797 -0.039968 0.864484 -0.679087 -0.72897 0.086272 +-0.684548 -0.728969 -0 3.2e-005 0.864484 -0.684546 -0.72897 0.000479 +-0.632398 -0.770513 -0.079891 0.040032 0.885257 -0.632459 -0.770515 -0.079387 +-0.637424 -0.770513 -0 3.2e-005 0.885257 -0.637422 -0.770515 0.000507 +-0.67915 -0.728969 -0.085797 0.040032 0.864484 -0.679208 -0.72897 -0.08532 +-0.632398 -0.770513 -0.079891 0.040032 0.885257 -0.632459 -0.770515 -0.079387 +-0.684548 -0.728969 -0 3.2e-005 0.864484 -0.684546 -0.72897 0.000479 +-0.67915 -0.728969 -0.085797 0.040032 0.864484 -0.679208 -0.72897 -0.08532 +-0.617399 -0.770513 -0.158521 0.080032 0.885257 -0.617522 -0.770515 -0.158029 +-0.632398 -0.770513 -0.079891 0.040032 0.885257 -0.632459 -0.770515 -0.079387 +-0.663041 -0.728969 -0.17024 0.080032 0.864484 -0.663159 -0.72897 -0.169775 +-0.617399 -0.770513 -0.158521 0.080032 0.885257 -0.617522 -0.770515 -0.158029 +-0.67915 -0.728969 -0.085797 0.040032 0.864484 -0.679208 -0.72897 -0.08532 +-0.663041 -0.728969 -0.17024 0.080032 0.864484 -0.663159 -0.72897 -0.169775 +-0.592662 -0.770513 -0.234652 0.120032 0.885257 -0.592847 -0.770515 -0.23418 +-0.617399 -0.770513 -0.158521 0.080032 0.885257 -0.617522 -0.770515 -0.158029 +-0.636476 -0.728969 -0.251999 0.120032 0.864484 -0.636651 -0.72897 -0.251552 +-0.592662 -0.770513 -0.234652 0.120032 0.885257 -0.592847 -0.770515 -0.23418 +-0.663041 -0.728969 -0.17024 0.080032 0.864484 -0.663159 -0.72897 -0.169775 +-0.636476 -0.728969 -0.251999 0.120032 0.864484 -0.636651 -0.72897 -0.251552 +-0.558579 -0.770513 -0.307082 0.160032 0.885257 -0.558821 -0.770515 -0.306636 +-0.592662 -0.770513 -0.234652 0.120032 0.885257 -0.592847 -0.770515 -0.23418 +-0.599874 -0.728969 -0.329783 0.160032 0.864484 -0.600103 -0.72897 -0.329362 +-0.558579 -0.770513 -0.307082 0.160032 0.885257 -0.558821 -0.770515 -0.306636 +-0.636476 -0.728969 -0.251999 0.120032 0.864484 -0.636651 -0.72897 -0.251552 +-0.599874 -0.728969 -0.329783 0.160032 0.864484 -0.600103 -0.72897 -0.329362 +-0.515687 -0.770513 -0.374669 0.200032 0.885257 -0.515983 -0.770515 -0.374257 +-0.558579 -0.770513 -0.307082 0.160032 0.885257 -0.558821 -0.770515 -0.306636 +-0.553811 -0.728969 -0.402367 0.200032 0.864484 -0.554091 -0.72897 -0.401978 +-0.515687 -0.770513 -0.374669 0.200032 0.885257 -0.515983 -0.770515 -0.374257 +-0.599874 -0.728969 -0.329783 0.160032 0.864484 -0.600103 -0.72897 -0.329362 +-0.553811 -0.728969 -0.402367 0.200032 0.864484 -0.554091 -0.72897 -0.401978 +-0.464662 -0.770513 -0.436347 0.240032 0.885257 -0.465008 -0.770514 -0.435977 +-0.515687 -0.770513 -0.374669 0.200032 0.885257 -0.515983 -0.770515 -0.374257 +-0.499014 -0.728969 -0.468605 0.240032 0.864484 -0.49934 -0.72897 -0.468254 +-0.464662 -0.770513 -0.436347 0.240032 0.885257 -0.465008 -0.770514 -0.435977 +-0.553811 -0.728969 -0.402367 0.200032 0.864484 -0.554091 -0.72897 -0.401978 +-0.499014 -0.728969 -0.468605 0.240032 0.864484 -0.49934 -0.72897 -0.468254 +-0.406309 -0.770513 -0.491144 0.280032 0.885257 -0.406699 -0.770515 -0.490819 +-0.464662 -0.770513 -0.436347 0.240032 0.885257 -0.465008 -0.770514 -0.435977 +-0.436347 -0.728969 -0.527453 0.280032 0.864484 -0.436715 -0.72897 -0.527145 +-0.406309 -0.770513 -0.491144 0.280032 0.885257 -0.406699 -0.770515 -0.490819 +-0.499014 -0.728969 -0.468605 0.240032 0.864484 -0.49934 -0.72897 -0.468254 +-0.436347 -0.728969 -0.527453 0.280032 0.864484 -0.436715 -0.72897 -0.527145 +-0.341549 -0.770513 -0.538195 0.320032 0.885257 -0.341976 -0.770515 -0.537922 +-0.406309 -0.770513 -0.491144 0.280032 0.885257 -0.406699 -0.770515 -0.490819 +-0.366799 -0.728969 -0.577983 0.320032 0.864484 -0.367202 -0.72897 -0.577724 +-0.341549 -0.770513 -0.538195 0.320032 0.885257 -0.341976 -0.770515 -0.537922 +-0.436347 -0.728969 -0.527453 0.280032 0.864484 -0.436715 -0.72897 -0.527145 +-0.366799 -0.728969 -0.577983 0.320032 0.864484 -0.367202 -0.72897 -0.577724 +-0.271402 -0.770513 -0.576759 0.360032 0.885257 -0.27186 -0.770514 -0.576542 +-0.341549 -0.770513 -0.538195 0.320032 0.885257 -0.341976 -0.770515 -0.537922 +-0.291466 -0.728969 -0.619397 0.360032 0.864484 -0.291899 -0.72897 -0.619191 +-0.271402 -0.770513 -0.576759 0.360032 0.885257 -0.27186 -0.770514 -0.576542 +-0.366799 -0.728969 -0.577983 0.320032 0.864484 -0.367202 -0.72897 -0.577724 +-0.291466 -0.728969 -0.619397 0.360032 0.864484 -0.291899 -0.72897 -0.619191 +-0.196975 -0.770513 -0.606227 0.400032 0.885257 -0.197456 -0.770514 -0.606068 +-0.271402 -0.770513 -0.576759 0.360032 0.885257 -0.27186 -0.770514 -0.576542 +-0.211537 -0.728969 -0.651043 0.400032 0.864484 -0.211992 -0.72897 -0.650893 +-0.196975 -0.770513 -0.606227 0.400032 0.885257 -0.197456 -0.770514 -0.606068 +-0.291466 -0.728969 -0.619397 0.360032 0.864484 -0.291899 -0.72897 -0.619191 +-0.211537 -0.728969 -0.651043 0.400032 0.864484 -0.211992 -0.72897 -0.650893 +-0.119441 -0.770513 -0.626134 0.440032 0.885257 -0.119939 -0.770514 -0.626037 +-0.196975 -0.770513 -0.606227 0.400032 0.885257 -0.197456 -0.770514 -0.606068 +-0.128271 -0.728969 -0.672422 0.440032 0.864484 -0.128742 -0.72897 -0.67233 +-0.119441 -0.770513 -0.626134 0.440032 0.885257 -0.119939 -0.770514 -0.626037 +-0.211537 -0.728969 -0.651043 0.400032 0.864484 -0.211992 -0.72897 -0.650893 +-0.128271 -0.728969 -0.672422 0.440032 0.864484 -0.128742 -0.72897 -0.67233 +-0.040024 -0.770513 -0.636166 0.480032 0.885257 -0.04053 -0.770514 -0.636133 +-0.119441 -0.770513 -0.626134 0.440032 0.885257 -0.119939 -0.770514 -0.626037 +-0.042983 -0.728969 -0.683197 0.480032 0.864484 -0.043461 -0.72897 -0.683165 +-0.040024 -0.770513 -0.636166 0.480032 0.885257 -0.04053 -0.770514 -0.636133 +-0.128271 -0.728969 -0.672422 0.440032 0.864484 -0.128742 -0.72897 -0.67233 +-0.042983 -0.728969 -0.683197 0.480032 0.864484 -0.043461 -0.72897 -0.683165 +0.040024 -0.770513 -0.636166 0.520032 0.885257 0.039518 -0.770514 -0.636197 +-0.040024 -0.770513 -0.636166 0.480032 0.885257 -0.04053 -0.770514 -0.636133 +0.042983 -0.728969 -0.683197 0.520032 0.864484 0.042504 -0.72897 -0.683225 +0.040024 -0.770513 -0.636166 0.520032 0.885257 0.039518 -0.770514 -0.636197 +-0.042983 -0.728969 -0.683197 0.480032 0.864484 -0.043461 -0.72897 -0.683165 +0.042983 -0.728969 -0.683197 0.520032 0.864484 0.042504 -0.72897 -0.683225 +0.119441 -0.770513 -0.626134 0.560032 0.885257 0.118943 -0.770514 -0.626227 +0.040024 -0.770513 -0.636166 0.520032 0.885257 0.039518 -0.770514 -0.636197 +0.128271 -0.728969 -0.672422 0.560032 0.864484 0.1278 -0.72897 -0.67251 +0.119441 -0.770513 -0.626134 0.560032 0.885257 0.118943 -0.770514 -0.626227 +0.042983 -0.728969 -0.683197 0.520032 0.864484 0.042504 -0.72897 -0.683225 +0.128271 -0.728969 -0.672422 0.560032 0.864484 0.1278 -0.72897 -0.67251 +0.196975 -0.770513 -0.606226 0.600032 0.885257 0.196492 -0.770514 -0.606381 +0.119441 -0.770513 -0.626134 0.560032 0.885257 0.118943 -0.770514 -0.626227 +0.211537 -0.728969 -0.651043 0.600032 0.864484 0.21108 -0.72897 -0.651189 +0.196975 -0.770513 -0.606226 0.600032 0.885257 0.196492 -0.770514 -0.606381 +0.128271 -0.728969 -0.672422 0.560032 0.864484 0.1278 -0.72897 -0.67251 +0.211537 -0.728969 -0.651043 0.600032 0.864484 0.21108 -0.72897 -0.651189 +0.271402 -0.770513 -0.576759 0.640032 0.885257 0.270943 -0.770514 -0.576973 +0.196975 -0.770513 -0.606226 0.600032 0.885257 0.196492 -0.770514 -0.606381 +0.291466 -0.728969 -0.619397 0.640032 0.864484 0.291032 -0.72897 -0.619599 +0.271402 -0.770513 -0.576759 0.640032 0.885257 0.270943 -0.770514 -0.576973 +0.211537 -0.728969 -0.651043 0.600032 0.864484 0.21108 -0.72897 -0.651189 +0.291466 -0.728969 -0.619397 0.640032 0.864484 0.291032 -0.72897 -0.619599 +0.341549 -0.770513 -0.538195 0.680032 0.885257 0.34112 -0.770514 -0.538465 +0.271402 -0.770513 -0.576759 0.640032 0.885257 0.270943 -0.770514 -0.576973 +0.366799 -0.728969 -0.577982 0.680032 0.864484 0.366393 -0.72897 -0.578238 +0.341549 -0.770513 -0.538195 0.680032 0.885257 0.34112 -0.770514 -0.538465 +0.291466 -0.728969 -0.619397 0.640032 0.864484 0.291032 -0.72897 -0.619599 +0.366799 -0.728969 -0.577982 0.680032 0.864484 0.366393 -0.72897 -0.578238 +0.406309 -0.770513 -0.491144 0.720032 0.885257 0.405918 -0.770514 -0.491465 +0.341549 -0.770513 -0.538195 0.680032 0.885257 0.34112 -0.770514 -0.538465 +0.436347 -0.728969 -0.527453 0.720032 0.864484 0.435977 -0.72897 -0.527757 +0.406309 -0.770513 -0.491144 0.720032 0.885257 0.405918 -0.770514 -0.491465 +0.366799 -0.728969 -0.577982 0.680032 0.864484 0.366393 -0.72897 -0.578238 +0.436347 -0.728969 -0.527453 0.720032 0.864484 0.435977 -0.72897 -0.527757 +0.464662 -0.770513 -0.436347 0.760032 0.885257 0.464314 -0.770514 -0.436715 +0.406309 -0.770513 -0.491144 0.720032 0.885257 0.405918 -0.770514 -0.491465 +0.499014 -0.728969 -0.468605 0.760032 0.864484 0.498684 -0.72897 -0.468953 +0.464662 -0.770513 -0.436347 0.760032 0.885257 0.464314 -0.770514 -0.436715 +0.436347 -0.728969 -0.527453 0.720032 0.864484 0.435977 -0.72897 -0.527757 +0.499014 -0.728969 -0.468605 0.760032 0.864484 0.498684 -0.72897 -0.468953 +0.515687 -0.770513 -0.374668 0.800032 0.885257 0.515388 -0.770514 -0.375078 +0.464662 -0.770513 -0.436347 0.760032 0.885257 0.464314 -0.770514 -0.436715 +0.55381 -0.728969 -0.402367 0.800032 0.864484 0.553527 -0.72897 -0.402753 +0.515687 -0.770513 -0.374668 0.800032 0.885257 0.515388 -0.770514 -0.375078 +0.499014 -0.728969 -0.468605 0.760032 0.864484 0.498684 -0.72897 -0.468953 +0.55381 -0.728969 -0.402367 0.800032 0.864484 0.553527 -0.72897 -0.402753 +0.558579 -0.770513 -0.307081 0.840032 0.885257 0.558334 -0.770514 -0.307525 +0.515687 -0.770513 -0.374668 0.800032 0.885257 0.515388 -0.770514 -0.375078 +0.599873 -0.728969 -0.329783 0.840032 0.864484 0.599641 -0.72897 -0.330202 +0.558579 -0.770513 -0.307081 0.840032 0.885257 0.558334 -0.770514 -0.307525 +0.55381 -0.728969 -0.402367 0.800032 0.864484 0.553527 -0.72897 -0.402753 +0.599873 -0.728969 -0.329783 0.840032 0.864484 0.599641 -0.72897 -0.330202 +0.592662 -0.770513 -0.234651 0.880032 0.885257 0.592474 -0.770514 -0.235122 +0.558579 -0.770513 -0.307081 0.840032 0.885257 0.558334 -0.770514 -0.307525 +0.636476 -0.728969 -0.251999 0.880032 0.864484 0.636298 -0.72897 -0.252444 +0.592662 -0.770513 -0.234651 0.880032 0.885257 0.592474 -0.770514 -0.235122 +0.599873 -0.728969 -0.329783 0.840032 0.864484 0.599641 -0.72897 -0.330202 +0.636476 -0.728969 -0.251999 0.880032 0.864484 0.636298 -0.72897 -0.252444 +0.617398 -0.770513 -0.158521 0.920032 0.885257 0.617271 -0.770514 -0.159011 +0.592662 -0.770513 -0.234651 0.880032 0.885257 0.592474 -0.770514 -0.235122 +0.663041 -0.728969 -0.17024 0.920032 0.864484 0.66292 -0.72897 -0.170704 +0.617398 -0.770513 -0.158521 0.920032 0.885257 0.617271 -0.770514 -0.159011 +0.636476 -0.728969 -0.251999 0.880032 0.864484 0.636298 -0.72897 -0.252444 +0.663041 -0.728969 -0.17024 0.920032 0.864484 0.66292 -0.72897 -0.170704 +0.632398 -0.770513 -0.07989 0.960032 0.885257 0.632333 -0.770514 -0.080393 +0.617398 -0.770513 -0.158521 0.920032 0.885257 0.617271 -0.770514 -0.159011 +0.679149 -0.728969 -0.085797 0.960032 0.864484 0.679088 -0.72897 -0.086272 +0.632398 -0.770513 -0.07989 0.960032 0.885257 0.632333 -0.770514 -0.080393 +0.663041 -0.728969 -0.17024 0.920032 0.864484 0.66292 -0.72897 -0.170704 +0.679149 -0.728969 -0.085797 0.960032 0.864484 0.679088 -0.72897 -0.086272 +0.637424 -0.770513 -0 1.00003 0.885257 0.637423 -0.770514 -0.00051 +0.632398 -0.770513 -0.07989 0.960032 0.885257 0.632333 -0.770514 -0.080393 +0.684547 -0.728969 -0 1.00003 0.864484 0.684546 -0.72897 -0.000482 +0.637424 -0.770513 -0 1.00003 0.885257 0.637423 -0.770514 -0.00051 +0.679149 -0.728969 -0.085797 0.960032 0.864484 0.679088 -0.72897 -0.086272 +0.684547 -0.728969 -0 1.00003 0.864484 0.684546 -0.72897 -0.000482 +0.632398 -0.770513 0.079891 1.04003 0.885257 0.63246 -0.770515 0.079385 +0.637424 -0.770513 -0 1.00003 0.885257 0.637423 -0.770514 -0.00051 +0.67915 -0.728969 0.085797 1.04003 0.864484 0.679207 -0.728971 0.085318 +0.632398 -0.770513 0.079891 1.04003 0.885257 0.63246 -0.770515 0.079385 +0.684547 -0.728969 -0 1.00003 0.864484 0.684546 -0.72897 -0.000482 +0.723221 -0.684547 0.091364 1.04003 0.842274 0.723275 -0.684549 0.090914 +0.663042 -0.728969 0.17024 1.08003 0.864484 0.663158 -0.72897 0.169775 +0.67915 -0.728969 0.085797 1.04003 0.864484 0.679207 -0.728971 0.085318 +0.706068 -0.684547 0.181287 1.08003 0.842274 0.706177 -0.684549 0.180851 +0.663042 -0.728969 0.17024 1.08003 0.864484 0.663158 -0.72897 0.169775 +0.723221 -0.684547 0.091364 1.04003 0.842274 0.723275 -0.684549 0.090914 +0.706068 -0.684547 0.181287 1.08003 0.842274 0.706177 -0.684549 0.180851 +0.636477 -0.728969 0.251999 1.12003 0.864484 0.63665 -0.728971 0.251552 +0.663042 -0.728969 0.17024 1.08003 0.864484 0.663158 -0.72897 0.169775 +0.677779 -0.684547 0.268352 1.12003 0.842274 0.677942 -0.684549 0.267932 +0.636477 -0.728969 0.251999 1.12003 0.864484 0.63665 -0.728971 0.251552 +0.706068 -0.684547 0.181287 1.08003 0.842274 0.706177 -0.684549 0.180851 +0.677779 -0.684547 0.268352 1.12003 0.842274 0.677942 -0.684549 0.267932 +0.599874 -0.728969 0.329783 1.16003 0.864484 0.600102 -0.72897 0.329362 +0.636477 -0.728969 0.251999 1.12003 0.864484 0.63665 -0.728971 0.251552 +0.638801 -0.684547 0.351184 1.16003 0.842274 0.639015 -0.684549 0.350788 +0.599874 -0.728969 0.329783 1.16003 0.864484 0.600102 -0.72897 0.329362 +0.677779 -0.684547 0.268352 1.12003 0.842274 0.677942 -0.684549 0.267932 +0.638801 -0.684547 0.351184 1.16003 0.842274 0.639015 -0.684549 0.350788 +0.553811 -0.728969 0.402367 1.20003 0.864484 0.554091 -0.72897 0.401978 +0.599874 -0.728969 0.329783 1.16003 0.864484 0.600102 -0.72897 0.329362 +0.589749 -0.684547 0.428477 1.20003 0.842274 0.590011 -0.684549 0.428112 +0.553811 -0.728969 0.402367 1.20003 0.864484 0.554091 -0.72897 0.401978 +0.638801 -0.684547 0.351184 1.16003 0.842274 0.639015 -0.684549 0.350788 +0.589749 -0.684547 0.428477 1.20003 0.842274 0.590011 -0.684549 0.428112 +0.499014 -0.728969 0.468605 1.24003 0.864484 0.49934 -0.72897 0.468254 +0.553811 -0.728969 0.402367 1.20003 0.864484 0.554091 -0.72897 0.401978 +0.531396 -0.684547 0.499014 1.24003 0.842274 0.531702 -0.684549 0.498684 +0.499014 -0.728969 0.468605 1.24003 0.864484 0.49934 -0.72897 0.468254 +0.589749 -0.684547 0.428477 1.20003 0.842274 0.590011 -0.684549 0.428112 +0.531396 -0.684547 0.499014 1.24003 0.842274 0.531702 -0.684549 0.498684 +0.436347 -0.728969 0.527453 1.28003 0.864484 0.436715 -0.728971 0.527145 +0.499014 -0.728969 0.468605 1.24003 0.864484 0.49934 -0.72897 0.468254 +0.464663 -0.684547 0.561681 1.28003 0.842274 0.465008 -0.684549 0.561391 +0.436347 -0.728969 0.527453 1.28003 0.864484 0.436715 -0.728971 0.527145 +0.531396 -0.684547 0.499014 1.24003 0.842274 0.531702 -0.684549 0.498684 +0.464663 -0.684547 0.561681 1.28003 0.842274 0.465008 -0.684549 0.561391 +0.366799 -0.728969 0.577983 1.32003 0.864484 0.367203 -0.72897 0.577724 +0.436347 -0.728969 0.527453 1.28003 0.864484 0.436715 -0.728971 0.527145 +0.390601 -0.684547 0.615489 1.32003 0.842274 0.39098 -0.684549 0.615246 +0.366799 -0.728969 0.577983 1.32003 0.864484 0.367203 -0.72897 0.577724 +0.464663 -0.684547 0.561681 1.28003 0.842274 0.465008 -0.684549 0.561391 +0.390601 -0.684547 0.615489 1.32003 0.842274 0.39098 -0.684549 0.615246 +0.291466 -0.728969 0.619397 1.36003 0.864484 0.291899 -0.72897 0.619191 +0.366799 -0.728969 0.577983 1.32003 0.864484 0.367203 -0.72897 0.577724 +0.31038 -0.684547 0.659591 1.36003 0.842274 0.310786 -0.684549 0.659397 +0.291466 -0.728969 0.619397 1.36003 0.864484 0.291899 -0.72897 0.619191 +0.390601 -0.684547 0.615489 1.32003 0.842274 0.39098 -0.684549 0.615246 +0.31038 -0.684547 0.659591 1.36003 0.842274 0.310786 -0.684549 0.659397 +0.211537 -0.728969 0.651044 1.40003 0.864484 0.211992 -0.72897 0.650893 +0.291466 -0.728969 0.619397 1.36003 0.864484 0.291899 -0.72897 0.619191 +0.225264 -0.684547 0.693291 1.40003 0.842274 0.225691 -0.684549 0.69315 +0.211537 -0.728969 0.651044 1.40003 0.864484 0.211992 -0.72897 0.650893 +0.31038 -0.684547 0.659591 1.36003 0.842274 0.310786 -0.684549 0.659397 +0.225264 -0.684547 0.693291 1.40003 0.842274 0.225691 -0.684549 0.69315 +0.128271 -0.728969 0.672423 1.44003 0.864484 0.128742 -0.72897 0.67233 +0.211537 -0.728969 0.651044 1.40003 0.864484 0.211992 -0.72897 0.650893 +0.136595 -0.684547 0.716057 1.44003 0.842274 0.137037 -0.684549 0.715971 +0.128271 -0.728969 0.672423 1.44003 0.864484 0.128742 -0.72897 0.67233 +0.225264 -0.684547 0.693291 1.40003 0.842274 0.225691 -0.684549 0.69315 +0.136595 -0.684547 0.716057 1.44003 0.842274 0.137037 -0.684549 0.715971 +0.042983 -0.728969 0.683197 1.48003 0.864484 0.043461 -0.728971 0.683164 +0.128271 -0.728969 0.672423 1.44003 0.864484 0.128742 -0.72897 0.67233 +0.045772 -0.684547 0.727531 1.48003 0.842274 0.046221 -0.684549 0.7275 +0.042983 -0.728969 0.683197 1.48003 0.864484 0.043461 -0.728971 0.683164 +0.136595 -0.684547 0.716057 1.44003 0.842274 0.137037 -0.684549 0.715971 +0.045772 -0.684547 0.727531 1.48003 0.842274 0.046221 -0.684549 0.7275 +-0.042983 -0.728969 0.683197 1.52003 0.864484 -0.042504 -0.72897 0.683225 +0.042983 -0.728969 0.683197 1.48003 0.864484 0.043461 -0.728971 0.683164 +-0.045772 -0.684547 0.727531 1.52003 0.842274 -0.045323 -0.684549 0.727557 +-0.042983 -0.728969 0.683197 1.52003 0.864484 -0.042504 -0.72897 0.683225 +0.045772 -0.684547 0.727531 1.48003 0.842274 0.046221 -0.684549 0.7275 +-0.045772 -0.684547 0.727531 -0.479968 0.842274 -0.045323 -0.684549 0.727557 +-0.128272 -0.728969 0.672422 -0.439968 0.864484 -0.1278 -0.72897 0.67251 +-0.042983 -0.728969 0.683197 -0.479968 0.864484 -0.042504 -0.72897 0.683225 +-0.136595 -0.684547 0.716057 -0.439968 0.842274 -0.136153 -0.684549 0.716139 +-0.128272 -0.728969 0.672422 -0.439968 0.864484 -0.1278 -0.72897 0.67251 +-0.045772 -0.684547 0.727531 -0.479968 0.842274 -0.045323 -0.684549 0.727557 +-0.136595 -0.684547 0.716057 -0.439968 0.842274 -0.136153 -0.684549 0.716139 +-0.211537 -0.728969 0.651044 -0.399968 0.864484 -0.21108 -0.72897 0.651189 +-0.128272 -0.728969 0.672422 -0.439968 0.864484 -0.1278 -0.72897 0.67251 +-0.225264 -0.684547 0.693291 -0.399968 0.842274 -0.224835 -0.684549 0.693428 +-0.211537 -0.728969 0.651044 -0.399968 0.864484 -0.21108 -0.72897 0.651189 +-0.136595 -0.684547 0.716057 -0.439968 0.842274 -0.136153 -0.684549 0.716139 +-0.225264 -0.684547 0.693291 -0.399968 0.842274 -0.224835 -0.684549 0.693428 +-0.291466 -0.728969 0.619397 -0.359968 0.864484 -0.291032 -0.72897 0.619599 +-0.211537 -0.728969 0.651044 -0.399968 0.864484 -0.21108 -0.72897 0.651189 +-0.31038 -0.684547 0.659591 -0.359968 0.842274 -0.309972 -0.684549 0.65978 +-0.291466 -0.728969 0.619397 -0.359968 0.864484 -0.291032 -0.72897 0.619599 +-0.225264 -0.684547 0.693291 -0.399968 0.842274 -0.224835 -0.684549 0.693428 +-0.31038 -0.684547 0.659591 -0.359968 0.842274 -0.309972 -0.684549 0.65978 +-0.366799 -0.728969 0.577983 -0.319968 0.864484 -0.366393 -0.72897 0.578238 +-0.291466 -0.728969 0.619397 -0.359968 0.864484 -0.291032 -0.72897 0.619599 +-0.390601 -0.684547 0.615489 -0.319968 0.842274 -0.39022 -0.684549 0.615728 +-0.366799 -0.728969 0.577983 -0.319968 0.864484 -0.366393 -0.72897 0.578238 +-0.31038 -0.684547 0.659591 -0.359968 0.842274 -0.309972 -0.684549 0.65978 +-0.390601 -0.684547 0.615489 -0.319968 0.842274 -0.39022 -0.684549 0.615728 +-0.436347 -0.728969 0.527453 -0.279968 0.864484 -0.435976 -0.72897 0.527757 +-0.366799 -0.728969 0.577983 -0.319968 0.864484 -0.366393 -0.72897 0.578238 +-0.464663 -0.684547 0.56168 -0.279968 0.842274 -0.464314 -0.684549 0.561966 +-0.436347 -0.728969 0.527453 -0.279968 0.864484 -0.435976 -0.72897 0.527757 +-0.390601 -0.684547 0.615489 -0.319968 0.842274 -0.39022 -0.684549 0.615728 +-0.464663 -0.684547 0.56168 -0.279968 0.842274 -0.464314 -0.684549 0.561966 +-0.499014 -0.728969 0.468605 -0.239968 0.864484 -0.498684 -0.72897 0.468953 +-0.436347 -0.728969 0.527453 -0.279968 0.864484 -0.435976 -0.72897 0.527757 +-0.531396 -0.684547 0.499014 -0.239968 0.842274 -0.531086 -0.684548 0.49934 +-0.499014 -0.728969 0.468605 -0.239968 0.864484 -0.498684 -0.72897 0.468953 +-0.464663 -0.684547 0.56168 -0.279968 0.842274 -0.464314 -0.684549 0.561966 +-0.531396 -0.684547 0.499014 -0.239968 0.842274 -0.531086 -0.684548 0.49934 +-0.553811 -0.728969 0.402367 -0.199968 0.864484 -0.553527 -0.72897 0.402753 +-0.499014 -0.728969 0.468605 -0.239968 0.864484 -0.498684 -0.72897 0.468953 +-0.589749 -0.684547 0.428477 -0.199968 0.842274 -0.589483 -0.684548 0.42884 +-0.553811 -0.728969 0.402367 -0.199968 0.864484 -0.553527 -0.72897 0.402753 +-0.531396 -0.684547 0.499014 -0.239968 0.842274 -0.531086 -0.684548 0.49934 +-0.589749 -0.684547 0.428477 -0.199968 0.842274 -0.589483 -0.684548 0.42884 +-0.599874 -0.728969 0.329783 -0.159968 0.864484 -0.599641 -0.72897 0.330202 +-0.553811 -0.728969 0.402367 -0.199968 0.864484 -0.553527 -0.72897 0.402753 +-0.638801 -0.684547 0.351184 -0.159968 0.842274 -0.638582 -0.684549 0.351577 +-0.599874 -0.728969 0.329783 -0.159968 0.864484 -0.599641 -0.72897 0.330202 +-0.589749 -0.684547 0.428477 -0.199968 0.842274 -0.589483 -0.684548 0.42884 +-0.638801 -0.684547 0.351184 -0.159968 0.842274 -0.638582 -0.684549 0.351577 +-0.636476 -0.728969 0.251999 -0.119968 0.864484 -0.636297 -0.72897 0.252443 +-0.599874 -0.728969 0.329783 -0.159968 0.864484 -0.599641 -0.72897 0.330202 +-0.677778 -0.684547 0.268351 -0.119968 0.842274 -0.677611 -0.684548 0.268769 +-0.636476 -0.728969 0.251999 -0.119968 0.864484 -0.636297 -0.72897 0.252443 +-0.638801 -0.684547 0.351184 -0.159968 0.842274 -0.638582 -0.684549 0.351577 +-0.677778 -0.684547 0.268351 -0.119968 0.842274 -0.677611 -0.684548 0.268769 +-0.663041 -0.728969 0.17024 -0.079968 0.864484 -0.66292 -0.72897 0.170704 +-0.636476 -0.728969 0.251999 -0.119968 0.864484 -0.636297 -0.72897 0.252443 +-0.706067 -0.684547 0.181287 -0.079968 0.842274 -0.705953 -0.684549 0.181723 +-0.663041 -0.728969 0.17024 -0.079968 0.864484 -0.66292 -0.72897 0.170704 +-0.677778 -0.684547 0.268351 -0.119968 0.842274 -0.677611 -0.684548 0.268769 +-0.706067 -0.684547 0.181287 -0.079968 0.842274 -0.705953 -0.684549 0.181723 +-0.67915 -0.728969 0.085797 -0.039968 0.864484 -0.679087 -0.72897 0.086272 +-0.663041 -0.728969 0.17024 -0.079968 0.864484 -0.66292 -0.72897 0.170704 +-0.723221 -0.684547 0.091364 -0.039968 0.842274 -0.723163 -0.684549 0.09181 +-0.67915 -0.728969 0.085797 -0.039968 0.864484 -0.679087 -0.72897 0.086272 +-0.706067 -0.684547 0.181287 -0.079968 0.842274 -0.705953 -0.684549 0.181723 +-0.723221 -0.684547 0.091364 -0.039968 0.842274 -0.723163 -0.684549 0.09181 +-0.684548 -0.728969 -0 3.2e-005 0.864484 -0.684546 -0.72897 0.000479 +-0.67915 -0.728969 0.085797 -0.039968 0.864484 -0.679087 -0.72897 0.086272 +-0.728969 -0.684547 -0 3.2e-005 0.842274 -0.728967 -0.684549 0.00045 +-0.684548 -0.728969 -0 3.2e-005 0.864484 -0.684546 -0.72897 0.000479 +-0.723221 -0.684547 0.091364 -0.039968 0.842274 -0.723163 -0.684549 0.09181 +-0.728969 -0.684547 -0 3.2e-005 0.842274 -0.728967 -0.684549 0.00045 +-0.67915 -0.728969 -0.085797 0.040032 0.864484 -0.679208 -0.72897 -0.08532 +-0.684548 -0.728969 -0 3.2e-005 0.864484 -0.684546 -0.72897 0.000479 +-0.723221 -0.684547 -0.091364 0.040032 0.842274 -0.723275 -0.684549 -0.090917 +-0.67915 -0.728969 -0.085797 0.040032 0.864484 -0.679208 -0.72897 -0.08532 +-0.728969 -0.684547 -0 3.2e-005 0.842274 -0.728967 -0.684549 0.00045 +-0.723221 -0.684547 -0.091364 0.040032 0.842274 -0.723275 -0.684549 -0.090917 +-0.663041 -0.728969 -0.17024 0.080032 0.864484 -0.663159 -0.72897 -0.169775 +-0.67915 -0.728969 -0.085797 0.040032 0.864484 -0.679208 -0.72897 -0.08532 +-0.706067 -0.684547 -0.181287 0.080032 0.842274 -0.706177 -0.684549 -0.180851 +-0.663041 -0.728969 -0.17024 0.080032 0.864484 -0.663159 -0.72897 -0.169775 +-0.723221 -0.684547 -0.091364 0.040032 0.842274 -0.723275 -0.684549 -0.090917 +-0.706067 -0.684547 -0.181287 0.080032 0.842274 -0.706177 -0.684549 -0.180851 +-0.636476 -0.728969 -0.251999 0.120032 0.864484 -0.636651 -0.72897 -0.251552 +-0.663041 -0.728969 -0.17024 0.080032 0.864484 -0.663159 -0.72897 -0.169775 +-0.677778 -0.684547 -0.268351 0.120032 0.842274 -0.677942 -0.684549 -0.267932 +-0.636476 -0.728969 -0.251999 0.120032 0.864484 -0.636651 -0.72897 -0.251552 +-0.706067 -0.684547 -0.181287 0.080032 0.842274 -0.706177 -0.684549 -0.180851 +-0.677778 -0.684547 -0.268351 0.120032 0.842274 -0.677942 -0.684549 -0.267932 +-0.599874 -0.728969 -0.329783 0.160032 0.864484 -0.600103 -0.72897 -0.329362 +-0.636476 -0.728969 -0.251999 0.120032 0.864484 -0.636651 -0.72897 -0.251552 +-0.6388 -0.684547 -0.351184 0.160032 0.842274 -0.639016 -0.684548 -0.350788 +-0.599874 -0.728969 -0.329783 0.160032 0.864484 -0.600103 -0.72897 -0.329362 +-0.677778 -0.684547 -0.268351 0.120032 0.842274 -0.677942 -0.684549 -0.267932 +-0.6388 -0.684547 -0.351184 0.160032 0.842274 -0.639016 -0.684548 -0.350788 +-0.553811 -0.728969 -0.402367 0.200032 0.864484 -0.554091 -0.72897 -0.401978 +-0.599874 -0.728969 -0.329783 0.160032 0.864484 -0.600103 -0.72897 -0.329362 +-0.589748 -0.684547 -0.428477 0.200032 0.842274 -0.590011 -0.684548 -0.428112 +-0.553811 -0.728969 -0.402367 0.200032 0.864484 -0.554091 -0.72897 -0.401978 +-0.6388 -0.684547 -0.351184 0.160032 0.842274 -0.639016 -0.684548 -0.350788 +-0.589748 -0.684547 -0.428477 0.200032 0.842274 -0.590011 -0.684548 -0.428112 +-0.499014 -0.728969 -0.468605 0.240032 0.864484 -0.49934 -0.72897 -0.468254 +-0.553811 -0.728969 -0.402367 0.200032 0.864484 -0.554091 -0.72897 -0.401978 +-0.531395 -0.684547 -0.499014 0.240032 0.842274 -0.531702 -0.684548 -0.498684 +-0.499014 -0.728969 -0.468605 0.240032 0.864484 -0.49934 -0.72897 -0.468254 +-0.589748 -0.684547 -0.428477 0.200032 0.842274 -0.590011 -0.684548 -0.428112 +-0.531395 -0.684547 -0.499014 0.240032 0.842274 -0.531702 -0.684548 -0.498684 +-0.436347 -0.728969 -0.527453 0.280032 0.864484 -0.436715 -0.72897 -0.527145 +-0.499014 -0.728969 -0.468605 0.240032 0.864484 -0.49934 -0.72897 -0.468254 +-0.464662 -0.684547 -0.56168 0.280032 0.842274 -0.465008 -0.684548 -0.561392 +-0.436347 -0.728969 -0.527453 0.280032 0.864484 -0.436715 -0.72897 -0.527145 +-0.531395 -0.684547 -0.499014 0.240032 0.842274 -0.531702 -0.684548 -0.498684 +-0.464662 -0.684547 -0.56168 0.280032 0.842274 -0.465008 -0.684548 -0.561392 +-0.366799 -0.728969 -0.577983 0.320032 0.864484 -0.367202 -0.72897 -0.577724 +-0.436347 -0.728969 -0.527453 0.280032 0.864484 -0.436715 -0.72897 -0.527145 +-0.390601 -0.684547 -0.615489 0.320032 0.842274 -0.39098 -0.684549 -0.615246 +-0.366799 -0.728969 -0.577983 0.320032 0.864484 -0.367202 -0.72897 -0.577724 +-0.464662 -0.684547 -0.56168 0.280032 0.842274 -0.465008 -0.684548 -0.561392 +-0.390601 -0.684547 -0.615489 0.320032 0.842274 -0.39098 -0.684549 -0.615246 +-0.291466 -0.728969 -0.619397 0.360032 0.864484 -0.291899 -0.72897 -0.619191 +-0.366799 -0.728969 -0.577983 0.320032 0.864484 -0.367202 -0.72897 -0.577724 +-0.31038 -0.684547 -0.659591 0.360032 0.842274 -0.310786 -0.684549 -0.659398 +-0.291466 -0.728969 -0.619397 0.360032 0.864484 -0.291899 -0.72897 -0.619191 +-0.390601 -0.684547 -0.615489 0.320032 0.842274 -0.39098 -0.684549 -0.615246 +-0.31038 -0.684547 -0.659591 0.360032 0.842274 -0.310786 -0.684549 -0.659398 +-0.211537 -0.728969 -0.651043 0.400032 0.864484 -0.211992 -0.72897 -0.650893 +-0.291466 -0.728969 -0.619397 0.360032 0.864484 -0.291899 -0.72897 -0.619191 +-0.225264 -0.684547 -0.693291 0.400032 0.842274 -0.225692 -0.684548 -0.69315 +-0.211537 -0.728969 -0.651043 0.400032 0.864484 -0.211992 -0.72897 -0.650893 +-0.31038 -0.684547 -0.659591 0.360032 0.842274 -0.310786 -0.684549 -0.659398 +-0.225264 -0.684547 -0.693291 0.400032 0.842274 -0.225692 -0.684548 -0.69315 +-0.128271 -0.728969 -0.672422 0.440032 0.864484 -0.128742 -0.72897 -0.67233 +-0.211537 -0.728969 -0.651043 0.400032 0.864484 -0.211992 -0.72897 -0.650893 +-0.136595 -0.684547 -0.716057 0.440032 0.842274 -0.137037 -0.684548 -0.715971 +-0.128271 -0.728969 -0.672422 0.440032 0.864484 -0.128742 -0.72897 -0.67233 +-0.225264 -0.684547 -0.693291 0.400032 0.842274 -0.225692 -0.684548 -0.69315 +-0.136595 -0.684547 -0.716057 0.440032 0.842274 -0.137037 -0.684548 -0.715971 +-0.042983 -0.728969 -0.683197 0.480032 0.864484 -0.043461 -0.72897 -0.683165 +-0.128271 -0.728969 -0.672422 0.440032 0.864484 -0.128742 -0.72897 -0.67233 +-0.045772 -0.684547 -0.72753 0.480032 0.842274 -0.046221 -0.684549 -0.7275 +-0.042983 -0.728969 -0.683197 0.480032 0.864484 -0.043461 -0.72897 -0.683165 +-0.136595 -0.684547 -0.716057 0.440032 0.842274 -0.137037 -0.684548 -0.715971 +-0.045772 -0.684547 -0.72753 0.480032 0.842274 -0.046221 -0.684549 -0.7275 +0.042983 -0.728969 -0.683197 0.520032 0.864484 0.042504 -0.72897 -0.683225 +-0.042983 -0.728969 -0.683197 0.480032 0.864484 -0.043461 -0.72897 -0.683165 +0.045772 -0.684547 -0.72753 0.520032 0.842274 0.045323 -0.684549 -0.727557 +0.042983 -0.728969 -0.683197 0.520032 0.864484 0.042504 -0.72897 -0.683225 +-0.045772 -0.684547 -0.72753 0.480032 0.842274 -0.046221 -0.684549 -0.7275 +0.045772 -0.684547 -0.72753 0.520032 0.842274 0.045323 -0.684549 -0.727557 +0.128271 -0.728969 -0.672422 0.560032 0.864484 0.1278 -0.72897 -0.67251 +0.042983 -0.728969 -0.683197 0.520032 0.864484 0.042504 -0.72897 -0.683225 +0.136595 -0.684547 -0.716057 0.560032 0.842274 0.136153 -0.684549 -0.716139 +0.128271 -0.728969 -0.672422 0.560032 0.864484 0.1278 -0.72897 -0.67251 +0.045772 -0.684547 -0.72753 0.520032 0.842274 0.045323 -0.684549 -0.727557 +0.136595 -0.684547 -0.716057 0.560032 0.842274 0.136153 -0.684549 -0.716139 +0.211537 -0.728969 -0.651043 0.600032 0.864484 0.21108 -0.72897 -0.651189 +0.128271 -0.728969 -0.672422 0.560032 0.864484 0.1278 -0.72897 -0.67251 +0.225264 -0.684547 -0.693291 0.600032 0.842274 0.224836 -0.684548 -0.693428 +0.211537 -0.728969 -0.651043 0.600032 0.864484 0.21108 -0.72897 -0.651189 +0.136595 -0.684547 -0.716057 0.560032 0.842274 0.136153 -0.684549 -0.716139 +0.225264 -0.684547 -0.693291 0.600032 0.842274 0.224836 -0.684548 -0.693428 +0.291466 -0.728969 -0.619397 0.640032 0.864484 0.291032 -0.72897 -0.619599 +0.211537 -0.728969 -0.651043 0.600032 0.864484 0.21108 -0.72897 -0.651189 +0.31038 -0.684547 -0.659591 0.640032 0.842274 0.309972 -0.684548 -0.659781 +0.291466 -0.728969 -0.619397 0.640032 0.864484 0.291032 -0.72897 -0.619599 +0.225264 -0.684547 -0.693291 0.600032 0.842274 0.224836 -0.684548 -0.693428 +0.31038 -0.684547 -0.659591 0.640032 0.842274 0.309972 -0.684548 -0.659781 +0.366799 -0.728969 -0.577982 0.680032 0.864484 0.366393 -0.72897 -0.578238 +0.291466 -0.728969 -0.619397 0.640032 0.864484 0.291032 -0.72897 -0.619599 +0.390601 -0.684547 -0.615489 0.680032 0.842274 0.39022 -0.684548 -0.615729 +0.366799 -0.728969 -0.577982 0.680032 0.864484 0.366393 -0.72897 -0.578238 +0.31038 -0.684547 -0.659591 0.640032 0.842274 0.309972 -0.684548 -0.659781 +0.390601 -0.684547 -0.615489 0.680032 0.842274 0.39022 -0.684548 -0.615729 +0.436347 -0.728969 -0.527453 0.720032 0.864484 0.435977 -0.72897 -0.527757 +0.366799 -0.728969 -0.577982 0.680032 0.864484 0.366393 -0.72897 -0.578238 +0.464662 -0.684547 -0.56168 0.720032 0.842274 0.464314 -0.684549 -0.561965 +0.436347 -0.728969 -0.527453 0.720032 0.864484 0.435977 -0.72897 -0.527757 +0.390601 -0.684547 -0.615489 0.680032 0.842274 0.39022 -0.684548 -0.615729 +0.464662 -0.684547 -0.56168 0.720032 0.842274 0.464314 -0.684549 -0.561965 +0.499014 -0.728969 -0.468605 0.760032 0.864484 0.498684 -0.72897 -0.468953 +0.436347 -0.728969 -0.527453 0.720032 0.864484 0.435977 -0.72897 -0.527757 +0.531395 -0.684547 -0.499013 0.760032 0.842274 0.531086 -0.684548 -0.49934 +0.499014 -0.728969 -0.468605 0.760032 0.864484 0.498684 -0.72897 -0.468953 +0.464662 -0.684547 -0.56168 0.720032 0.842274 0.464314 -0.684549 -0.561965 +0.531395 -0.684547 -0.499013 0.760032 0.842274 0.531086 -0.684548 -0.49934 +0.55381 -0.728969 -0.402367 0.800032 0.864484 0.553527 -0.72897 -0.402753 +0.499014 -0.728969 -0.468605 0.760032 0.864484 0.498684 -0.72897 -0.468953 +0.589748 -0.684547 -0.428477 0.800032 0.842274 0.589482 -0.684549 -0.42884 +0.55381 -0.728969 -0.402367 0.800032 0.864484 0.553527 -0.72897 -0.402753 +0.531395 -0.684547 -0.499013 0.760032 0.842274 0.531086 -0.684548 -0.49934 +0.589748 -0.684547 -0.428477 0.800032 0.842274 0.589482 -0.684549 -0.42884 +0.599873 -0.728969 -0.329783 0.840032 0.864484 0.599641 -0.72897 -0.330202 +0.55381 -0.728969 -0.402367 0.800032 0.864484 0.553527 -0.72897 -0.402753 +0.6388 -0.684547 -0.351183 0.840032 0.842274 0.638582 -0.684548 -0.351577 +0.599873 -0.728969 -0.329783 0.840032 0.864484 0.599641 -0.72897 -0.330202 +0.589748 -0.684547 -0.428477 0.800032 0.842274 0.589482 -0.684549 -0.42884 +0.6388 -0.684547 -0.351183 0.840032 0.842274 0.638582 -0.684548 -0.351577 +0.636476 -0.728969 -0.251999 0.880032 0.864484 0.636298 -0.72897 -0.252444 +0.599873 -0.728969 -0.329783 0.840032 0.864484 0.599641 -0.72897 -0.330202 +0.677778 -0.684547 -0.268351 0.880032 0.842274 0.677611 -0.684548 -0.268769 +0.636476 -0.728969 -0.251999 0.880032 0.864484 0.636298 -0.72897 -0.252444 +0.6388 -0.684547 -0.351183 0.840032 0.842274 0.638582 -0.684548 -0.351577 +0.677778 -0.684547 -0.268351 0.880032 0.842274 0.677611 -0.684548 -0.268769 +0.663041 -0.728969 -0.17024 0.920032 0.864484 0.66292 -0.72897 -0.170704 +0.636476 -0.728969 -0.251999 0.880032 0.864484 0.636298 -0.72897 -0.252444 +0.706067 -0.684547 -0.181287 0.920032 0.842274 0.705954 -0.684548 -0.181723 +0.663041 -0.728969 -0.17024 0.920032 0.864484 0.66292 -0.72897 -0.170704 +0.677778 -0.684547 -0.268351 0.880032 0.842274 0.677611 -0.684548 -0.268769 +0.706067 -0.684547 -0.181287 0.920032 0.842274 0.705954 -0.684548 -0.181723 +0.679149 -0.728969 -0.085797 0.960032 0.864484 0.679088 -0.72897 -0.086272 +0.663041 -0.728969 -0.17024 0.920032 0.864484 0.66292 -0.72897 -0.170704 +0.723221 -0.684547 -0.091364 0.960032 0.842274 0.723163 -0.684548 -0.09181 +0.679149 -0.728969 -0.085797 0.960032 0.864484 0.679088 -0.72897 -0.086272 +0.706067 -0.684547 -0.181287 0.920032 0.842274 0.705954 -0.684548 -0.181723 +0.723221 -0.684547 -0.091364 0.960032 0.842274 0.723163 -0.684548 -0.09181 +0.684547 -0.728969 -0 1.00003 0.864484 0.684546 -0.72897 -0.000482 +0.679149 -0.728969 -0.085797 0.960032 0.864484 0.679088 -0.72897 -0.086272 +0.728969 -0.684547 -0 1.00003 0.842274 0.728967 -0.684548 -0.000453 +0.684547 -0.728969 -0 1.00003 0.864484 0.684546 -0.72897 -0.000482 +0.723221 -0.684547 -0.091364 0.960032 0.842274 0.723163 -0.684548 -0.09181 +0.728969 -0.684547 -0 1.00003 0.842274 0.728967 -0.684548 -0.000453 +0.67915 -0.728969 0.085797 1.04003 0.864484 0.679207 -0.728971 0.085318 +0.684547 -0.728969 -0 1.00003 0.864484 0.684546 -0.72897 -0.000482 +0.723221 -0.684547 0.091364 1.04003 0.842274 0.723275 -0.684549 0.090914 +0.67915 -0.728969 0.085797 1.04003 0.864484 0.679207 -0.728971 0.085318 +0.728969 -0.684547 -0 1.00003 0.842274 0.728967 -0.684548 -0.000453 +0.764438 -0.637424 0.096571 1.04003 0.818712 0.764489 -0.637426 0.096152 +0.706068 -0.684547 0.181287 1.08003 0.842274 0.706177 -0.684549 0.180851 +0.723221 -0.684547 0.091364 1.04003 0.842274 0.723275 -0.684549 0.090914 +0.746307 -0.637424 0.191619 1.08003 0.818712 0.746409 -0.637425 0.191213 +0.706068 -0.684547 0.181287 1.08003 0.842274 0.706177 -0.684549 0.180851 +0.764438 -0.637424 0.096571 1.04003 0.818712 0.764489 -0.637426 0.096152 +0.746307 -0.637424 0.191619 1.08003 0.818712 0.746409 -0.637425 0.191213 +0.677779 -0.684547 0.268352 1.12003 0.842274 0.677942 -0.684549 0.267932 +0.706068 -0.684547 0.181287 1.08003 0.842274 0.706177 -0.684549 0.180851 +0.716406 -0.637424 0.283645 1.12003 0.818712 0.716558 -0.637426 0.283255 +0.677779 -0.684547 0.268352 1.12003 0.842274 0.677942 -0.684549 0.267932 +0.746307 -0.637424 0.191619 1.08003 0.818712 0.746409 -0.637425 0.191213 +0.716406 -0.637424 0.283645 1.12003 0.818712 0.716558 -0.637426 0.283255 +0.638801 -0.684547 0.351184 1.16003 0.842274 0.639015 -0.684549 0.350788 +0.677779 -0.684547 0.268352 1.12003 0.842274 0.677942 -0.684549 0.267932 +0.675207 -0.637424 0.371198 1.16003 0.818712 0.675406 -0.637426 0.37083 +0.638801 -0.684547 0.351184 1.16003 0.842274 0.639015 -0.684549 0.350788 +0.716406 -0.637424 0.283645 1.12003 0.818712 0.716558 -0.637426 0.283255 +0.675207 -0.637424 0.371198 1.16003 0.818712 0.675406 -0.637426 0.37083 +0.589749 -0.684547 0.428477 1.20003 0.842274 0.590011 -0.684549 0.428112 +0.638801 -0.684547 0.351184 1.16003 0.842274 0.639015 -0.684549 0.350788 +0.623359 -0.637424 0.452897 1.20003 0.818712 0.623604 -0.637425 0.452556 +0.589749 -0.684547 0.428477 1.20003 0.842274 0.590011 -0.684549 0.428112 +0.675207 -0.637424 0.371198 1.16003 0.818712 0.675406 -0.637426 0.37083 +0.623359 -0.637424 0.452897 1.20003 0.818712 0.623604 -0.637425 0.452556 +0.531396 -0.684547 0.499014 1.24003 0.842274 0.531702 -0.684549 0.498684 +0.589749 -0.684547 0.428477 1.20003 0.842274 0.590011 -0.684549 0.428112 +0.561681 -0.637424 0.527453 1.24003 0.818712 0.561966 -0.637426 0.527146 +0.531396 -0.684547 0.499014 1.24003 0.842274 0.531702 -0.684549 0.498684 +0.623359 -0.637424 0.452897 1.20003 0.818712 0.623604 -0.637425 0.452556 +0.561681 -0.637424 0.527453 1.24003 0.818712 0.561966 -0.637426 0.527146 +0.464663 -0.684547 0.561681 1.28003 0.842274 0.465008 -0.684549 0.561391 +0.531396 -0.684547 0.499014 1.24003 0.842274 0.531702 -0.684549 0.498684 +0.491144 -0.637424 0.593691 1.28003 0.818712 0.491466 -0.637426 0.593422 +0.464663 -0.684547 0.561681 1.28003 0.842274 0.465008 -0.684549 0.561391 +0.561681 -0.637424 0.527453 1.24003 0.818712 0.561966 -0.637426 0.527146 +0.491144 -0.637424 0.593691 1.28003 0.818712 0.491466 -0.637426 0.593422 +0.390601 -0.684547 0.615489 1.32003 0.842274 0.39098 -0.684549 0.615246 +0.464663 -0.684547 0.561681 1.28003 0.842274 0.465008 -0.684549 0.561391 +0.412862 -0.637424 0.650567 1.32003 0.818712 0.413215 -0.637425 0.65034 +0.390601 -0.684547 0.615489 1.32003 0.842274 0.39098 -0.684549 0.615246 +0.491144 -0.637424 0.593691 1.28003 0.818712 0.491466 -0.637426 0.593422 +0.412862 -0.637424 0.650567 1.32003 0.818712 0.413215 -0.637425 0.65034 +0.31038 -0.684547 0.659591 1.36003 0.842274 0.310786 -0.684549 0.659397 +0.390601 -0.684547 0.615489 1.32003 0.842274 0.39098 -0.684549 0.615246 +0.328069 -0.637424 0.697182 1.36003 0.818712 0.328447 -0.637425 0.697002 +0.31038 -0.684547 0.659591 1.36003 0.842274 0.310786 -0.684549 0.659397 +0.412862 -0.637424 0.650567 1.32003 0.818712 0.413215 -0.637425 0.65034 +0.328069 -0.637424 0.697182 1.36003 0.818712 0.328447 -0.637425 0.697002 +0.225264 -0.684547 0.693291 1.40003 0.842274 0.225691 -0.684549 0.69315 +0.31038 -0.684547 0.659591 1.36003 0.842274 0.310786 -0.684549 0.659397 +0.238102 -0.637424 0.732802 1.40003 0.818712 0.2385 -0.637425 0.732671 +0.225264 -0.684547 0.693291 1.40003 0.842274 0.225691 -0.684549 0.69315 +0.328069 -0.637424 0.697182 1.36003 0.818712 0.328447 -0.637425 0.697002 +0.238102 -0.637424 0.732802 1.40003 0.818712 0.2385 -0.637425 0.732671 +0.136595 -0.684547 0.716057 1.44003 0.842274 0.137037 -0.684549 0.715971 +0.225264 -0.684547 0.693291 1.40003 0.842274 0.225691 -0.684549 0.69315 +0.14438 -0.637424 0.756866 1.44003 0.818712 0.144791 -0.637425 0.756786 +0.136595 -0.684547 0.716057 1.44003 0.842274 0.137037 -0.684549 0.715971 +0.238102 -0.637424 0.732802 1.40003 0.818712 0.2385 -0.637425 0.732671 +0.14438 -0.637424 0.756866 1.44003 0.818712 0.144791 -0.637425 0.756786 +0.045772 -0.684547 0.727531 1.48003 0.842274 0.046221 -0.684549 0.7275 +0.136595 -0.684547 0.716057 1.44003 0.842274 0.137037 -0.684549 0.715971 +0.048381 -0.637424 0.768994 1.48003 0.818712 0.048799 -0.637425 0.768965 +0.045772 -0.684547 0.727531 1.48003 0.842274 0.046221 -0.684549 0.7275 +0.14438 -0.637424 0.756866 1.44003 0.818712 0.144791 -0.637425 0.756786 +0.048381 -0.637424 0.768994 1.48003 0.818712 0.048799 -0.637425 0.768965 +-0.045772 -0.684547 0.727531 1.52003 0.842274 -0.045323 -0.684549 0.727557 +0.045772 -0.684547 0.727531 1.48003 0.842274 0.046221 -0.684549 0.7275 +-0.048381 -0.637424 0.768993 1.52003 0.818712 -0.047963 -0.637425 0.769018 +-0.045772 -0.684547 0.727531 1.52003 0.842274 -0.045323 -0.684549 0.727557 +0.048381 -0.637424 0.768994 1.48003 0.818712 0.048799 -0.637425 0.768965 +-0.048381 -0.637424 0.768993 -0.479968 0.818712 -0.047963 -0.637425 0.769018 +-0.136595 -0.684547 0.716057 -0.439968 0.842274 -0.136153 -0.684549 0.716139 +-0.045772 -0.684547 0.727531 -0.479968 0.842274 -0.045323 -0.684549 0.727557 +-0.14438 -0.637424 0.756866 -0.439968 0.818712 -0.143968 -0.637426 0.756943 +-0.136595 -0.684547 0.716057 -0.439968 0.842274 -0.136153 -0.684549 0.716139 +-0.048381 -0.637424 0.768993 -0.479968 0.818712 -0.047963 -0.637425 0.769018 +-0.14438 -0.637424 0.756866 -0.439968 0.818712 -0.143968 -0.637426 0.756943 +-0.225264 -0.684547 0.693291 -0.399968 0.842274 -0.224835 -0.684549 0.693428 +-0.136595 -0.684547 0.716057 -0.439968 0.842274 -0.136153 -0.684549 0.716139 +-0.238102 -0.637424 0.732802 -0.399968 0.818712 -0.237703 -0.637426 0.73293 +-0.225264 -0.684547 0.693291 -0.399968 0.842274 -0.224835 -0.684549 0.693428 +-0.14438 -0.637424 0.756866 -0.439968 0.818712 -0.143968 -0.637426 0.756943 +-0.238102 -0.637424 0.732802 -0.399968 0.818712 -0.237703 -0.637426 0.73293 +-0.31038 -0.684547 0.659591 -0.359968 0.842274 -0.309972 -0.684549 0.65978 +-0.225264 -0.684547 0.693291 -0.399968 0.842274 -0.224835 -0.684549 0.693428 +-0.328069 -0.637424 0.697182 -0.359968 0.818712 -0.327689 -0.637425 0.697358 +-0.31038 -0.684547 0.659591 -0.359968 0.842274 -0.309972 -0.684549 0.65978 +-0.238102 -0.637424 0.732802 -0.399968 0.818712 -0.237703 -0.637426 0.73293 +-0.328069 -0.637424 0.697182 -0.359968 0.818712 -0.327689 -0.637425 0.697358 +-0.390601 -0.684547 0.615489 -0.319968 0.842274 -0.39022 -0.684549 0.615728 +-0.31038 -0.684547 0.659591 -0.359968 0.842274 -0.309972 -0.684549 0.65978 +-0.412862 -0.637424 0.650566 -0.319968 0.818712 -0.412507 -0.637425 0.650789 +-0.390601 -0.684547 0.615489 -0.319968 0.842274 -0.39022 -0.684549 0.615728 +-0.328069 -0.637424 0.697182 -0.359968 0.818712 -0.327689 -0.637425 0.697358 +-0.412862 -0.637424 0.650566 -0.319968 0.818712 -0.412507 -0.637425 0.650789 +-0.464663 -0.684547 0.56168 -0.279968 0.842274 -0.464314 -0.684549 0.561966 +-0.390601 -0.684547 0.615489 -0.319968 0.842274 -0.39022 -0.684549 0.615728 +-0.491144 -0.637424 0.593691 -0.279968 0.818712 -0.49082 -0.637425 0.593957 +-0.464663 -0.684547 0.56168 -0.279968 0.842274 -0.464314 -0.684549 0.561966 +-0.412862 -0.637424 0.650566 -0.319968 0.818712 -0.412507 -0.637425 0.650789 +-0.491144 -0.637424 0.593691 -0.279968 0.818712 -0.49082 -0.637425 0.593957 +-0.531396 -0.684547 0.499014 -0.239968 0.842274 -0.531086 -0.684548 0.49934 +-0.464663 -0.684547 0.56168 -0.279968 0.842274 -0.464314 -0.684549 0.561966 +-0.56168 -0.637424 0.527453 -0.239968 0.818712 -0.561392 -0.637425 0.527757 +-0.531396 -0.684547 0.499014 -0.239968 0.842274 -0.531086 -0.684548 0.49934 +-0.491144 -0.637424 0.593691 -0.279968 0.818712 -0.49082 -0.637425 0.593957 +-0.56168 -0.637424 0.527453 -0.239968 0.818712 -0.561392 -0.637425 0.527757 +-0.589749 -0.684547 0.428477 -0.199968 0.842274 -0.589483 -0.684548 0.42884 +-0.531396 -0.684547 0.499014 -0.239968 0.842274 -0.531086 -0.684548 0.49934 +-0.623359 -0.637424 0.452897 -0.199968 0.818712 -0.623111 -0.637426 0.453234 +-0.589749 -0.684547 0.428477 -0.199968 0.842274 -0.589483 -0.684548 0.42884 +-0.56168 -0.637424 0.527453 -0.239968 0.818712 -0.561392 -0.637425 0.527757 +-0.623359 -0.637424 0.452897 -0.199968 0.818712 -0.623111 -0.637426 0.453234 +-0.638801 -0.684547 0.351184 -0.159968 0.842274 -0.638582 -0.684549 0.351577 +-0.589749 -0.684547 0.428477 -0.199968 0.842274 -0.589483 -0.684548 0.42884 +-0.675206 -0.637424 0.371198 -0.159968 0.818712 -0.675003 -0.637426 0.371564 +-0.638801 -0.684547 0.351184 -0.159968 0.842274 -0.638582 -0.684549 0.351577 +-0.623359 -0.637424 0.452897 -0.199968 0.818712 -0.623111 -0.637426 0.453234 +-0.675206 -0.637424 0.371198 -0.159968 0.818712 -0.675003 -0.637426 0.371564 +-0.677778 -0.684547 0.268351 -0.119968 0.842274 -0.677611 -0.684548 0.268769 +-0.638801 -0.684547 0.351184 -0.159968 0.842274 -0.638582 -0.684549 0.351577 +-0.716406 -0.637424 0.283645 -0.119968 0.818712 -0.71625 -0.637425 0.284034 +-0.677778 -0.684547 0.268351 -0.119968 0.842274 -0.677611 -0.684548 0.268769 +-0.675206 -0.637424 0.371198 -0.159968 0.818712 -0.675003 -0.637426 0.371564 +-0.716406 -0.637424 0.283645 -0.119968 0.818712 -0.71625 -0.637425 0.284034 +-0.706067 -0.684547 0.181287 -0.079968 0.842274 -0.705953 -0.684549 0.181723 +-0.677778 -0.684547 0.268351 -0.119968 0.842274 -0.677611 -0.684548 0.268769 +-0.746307 -0.637424 0.191619 -0.079968 0.818712 -0.746201 -0.637425 0.192024 +-0.706067 -0.684547 0.181287 -0.079968 0.842274 -0.705953 -0.684549 0.181723 +-0.716406 -0.637424 0.283645 -0.119968 0.818712 -0.71625 -0.637425 0.284034 +-0.746307 -0.637424 0.191619 -0.079968 0.818712 -0.746201 -0.637425 0.192024 +-0.723221 -0.684547 0.091364 -0.039968 0.842274 -0.723163 -0.684549 0.09181 +-0.706067 -0.684547 0.181287 -0.079968 0.842274 -0.705953 -0.684549 0.181723 +-0.764438 -0.637424 0.096571 -0.039968 0.818712 -0.764383 -0.637426 0.096987 +-0.723221 -0.684547 0.091364 -0.039968 0.842274 -0.723163 -0.684549 0.09181 +-0.746307 -0.637424 0.191619 -0.079968 0.818712 -0.746201 -0.637425 0.192024 +-0.764438 -0.637424 0.096571 -0.039968 0.818712 -0.764383 -0.637426 0.096987 +-0.728969 -0.684547 -0 3.2e-005 0.842274 -0.728967 -0.684549 0.00045 +-0.723221 -0.684547 0.091364 -0.039968 0.842274 -0.723163 -0.684549 0.09181 +-0.770514 -0.637424 -0 3.2e-005 0.818712 -0.770512 -0.637426 0.000419 +-0.728969 -0.684547 -0 3.2e-005 0.842274 -0.728967 -0.684549 0.00045 +-0.764438 -0.637424 0.096571 -0.039968 0.818712 -0.764383 -0.637426 0.096987 +-0.770514 -0.637424 -0 3.2e-005 0.818712 -0.770512 -0.637426 0.000419 +-0.723221 -0.684547 -0.091364 0.040032 0.842274 -0.723275 -0.684549 -0.090917 +-0.728969 -0.684547 -0 3.2e-005 0.842274 -0.728967 -0.684549 0.00045 +-0.764438 -0.637424 -0.096571 0.040032 0.818712 -0.764489 -0.637425 -0.096155 +-0.723221 -0.684547 -0.091364 0.040032 0.842274 -0.723275 -0.684549 -0.090917 +-0.770514 -0.637424 -0 3.2e-005 0.818712 -0.770512 -0.637426 0.000419 +-0.764438 -0.637424 -0.096571 0.040032 0.818712 -0.764489 -0.637425 -0.096155 +-0.706067 -0.684547 -0.181287 0.080032 0.842274 -0.706177 -0.684549 -0.180851 +-0.723221 -0.684547 -0.091364 0.040032 0.842274 -0.723275 -0.684549 -0.090917 +-0.746307 -0.637424 -0.191619 0.080032 0.818712 -0.746409 -0.637426 -0.191213 +-0.706067 -0.684547 -0.181287 0.080032 0.842274 -0.706177 -0.684549 -0.180851 +-0.764438 -0.637424 -0.096571 0.040032 0.818712 -0.764489 -0.637425 -0.096155 +-0.746307 -0.637424 -0.191619 0.080032 0.818712 -0.746409 -0.637426 -0.191213 +-0.677778 -0.684547 -0.268351 0.120032 0.842274 -0.677942 -0.684549 -0.267932 +-0.706067 -0.684547 -0.181287 0.080032 0.842274 -0.706177 -0.684549 -0.180851 +-0.716406 -0.637424 -0.283645 0.120032 0.818712 -0.716558 -0.637425 -0.283255 +-0.677778 -0.684547 -0.268351 0.120032 0.842274 -0.677942 -0.684549 -0.267932 +-0.746307 -0.637424 -0.191619 0.080032 0.818712 -0.746409 -0.637426 -0.191213 +-0.716406 -0.637424 -0.283645 0.120032 0.818712 -0.716558 -0.637425 -0.283255 +-0.6388 -0.684547 -0.351184 0.160032 0.842274 -0.639016 -0.684548 -0.350788 +-0.677778 -0.684547 -0.268351 0.120032 0.842274 -0.677942 -0.684549 -0.267932 +-0.675206 -0.637424 -0.371198 0.160032 0.818712 -0.675407 -0.637425 -0.37083 +-0.6388 -0.684547 -0.351184 0.160032 0.842274 -0.639016 -0.684548 -0.350788 +-0.716406 -0.637424 -0.283645 0.120032 0.818712 -0.716558 -0.637425 -0.283255 +-0.675206 -0.637424 -0.371198 0.160032 0.818712 -0.675407 -0.637425 -0.37083 +-0.589748 -0.684547 -0.428477 0.200032 0.842274 -0.590011 -0.684548 -0.428112 +-0.6388 -0.684547 -0.351184 0.160032 0.842274 -0.639016 -0.684548 -0.350788 +-0.623359 -0.637424 -0.452897 0.200032 0.818712 -0.623603 -0.637425 -0.452557 +-0.589748 -0.684547 -0.428477 0.200032 0.842274 -0.590011 -0.684548 -0.428112 +-0.675206 -0.637424 -0.371198 0.160032 0.818712 -0.675407 -0.637425 -0.37083 +-0.623359 -0.637424 -0.452897 0.200032 0.818712 -0.623603 -0.637425 -0.452557 +-0.531395 -0.684547 -0.499014 0.240032 0.842274 -0.531702 -0.684548 -0.498684 +-0.589748 -0.684547 -0.428477 0.200032 0.842274 -0.590011 -0.684548 -0.428112 +-0.56168 -0.637424 -0.527453 0.240032 0.818712 -0.561966 -0.637425 -0.527147 +-0.531395 -0.684547 -0.499014 0.240032 0.842274 -0.531702 -0.684548 -0.498684 +-0.623359 -0.637424 -0.452897 0.200032 0.818712 -0.623603 -0.637425 -0.452557 +-0.56168 -0.637424 -0.527453 0.240032 0.818712 -0.561966 -0.637425 -0.527147 +-0.464662 -0.684547 -0.56168 0.280032 0.842274 -0.465008 -0.684548 -0.561392 +-0.531395 -0.684547 -0.499014 0.240032 0.842274 -0.531702 -0.684548 -0.498684 +-0.491144 -0.637424 -0.593691 0.280032 0.818712 -0.491466 -0.637425 -0.593422 +-0.464662 -0.684547 -0.56168 0.280032 0.842274 -0.465008 -0.684548 -0.561392 +-0.56168 -0.637424 -0.527453 0.240032 0.818712 -0.561966 -0.637425 -0.527147 +-0.491144 -0.637424 -0.593691 0.280032 0.818712 -0.491466 -0.637425 -0.593422 +-0.390601 -0.684547 -0.615489 0.320032 0.842274 -0.39098 -0.684549 -0.615246 +-0.464662 -0.684547 -0.56168 0.280032 0.842274 -0.465008 -0.684548 -0.561392 +-0.412862 -0.637424 -0.650566 0.320032 0.818712 -0.413214 -0.637425 -0.650341 +-0.390601 -0.684547 -0.615489 0.320032 0.842274 -0.39098 -0.684549 -0.615246 +-0.491144 -0.637424 -0.593691 0.280032 0.818712 -0.491466 -0.637425 -0.593422 +-0.412862 -0.637424 -0.650566 0.320032 0.818712 -0.413214 -0.637425 -0.650341 +-0.31038 -0.684547 -0.659591 0.360032 0.842274 -0.310786 -0.684549 -0.659398 +-0.390601 -0.684547 -0.615489 0.320032 0.842274 -0.39098 -0.684549 -0.615246 +-0.328069 -0.637424 -0.697182 0.360032 0.818712 -0.328447 -0.637425 -0.697002 +-0.31038 -0.684547 -0.659591 0.360032 0.842274 -0.310786 -0.684549 -0.659398 +-0.412862 -0.637424 -0.650566 0.320032 0.818712 -0.413214 -0.637425 -0.650341 +-0.328069 -0.637424 -0.697182 0.360032 0.818712 -0.328447 -0.637425 -0.697002 +-0.225264 -0.684547 -0.693291 0.400032 0.842274 -0.225692 -0.684548 -0.69315 +-0.31038 -0.684547 -0.659591 0.360032 0.842274 -0.310786 -0.684549 -0.659398 +-0.238102 -0.637424 -0.732802 0.400032 0.818712 -0.2385 -0.637426 -0.732671 +-0.225264 -0.684547 -0.693291 0.400032 0.842274 -0.225692 -0.684548 -0.69315 +-0.328069 -0.637424 -0.697182 0.360032 0.818712 -0.328447 -0.637425 -0.697002 +-0.238102 -0.637424 -0.732802 0.400032 0.818712 -0.2385 -0.637426 -0.732671 +-0.136595 -0.684547 -0.716057 0.440032 0.842274 -0.137037 -0.684548 -0.715971 +-0.225264 -0.684547 -0.693291 0.400032 0.842274 -0.225692 -0.684548 -0.69315 +-0.14438 -0.637424 -0.756866 0.440032 0.818712 -0.144791 -0.637425 -0.756786 +-0.136595 -0.684547 -0.716057 0.440032 0.842274 -0.137037 -0.684548 -0.715971 +-0.238102 -0.637424 -0.732802 0.400032 0.818712 -0.2385 -0.637426 -0.732671 +-0.14438 -0.637424 -0.756866 0.440032 0.818712 -0.144791 -0.637425 -0.756786 +-0.045772 -0.684547 -0.72753 0.480032 0.842274 -0.046221 -0.684549 -0.7275 +-0.136595 -0.684547 -0.716057 0.440032 0.842274 -0.137037 -0.684548 -0.715971 +-0.048381 -0.637424 -0.768993 0.480032 0.818712 -0.048799 -0.637425 -0.768965 +-0.045772 -0.684547 -0.72753 0.480032 0.842274 -0.046221 -0.684549 -0.7275 +-0.14438 -0.637424 -0.756866 0.440032 0.818712 -0.144791 -0.637425 -0.756786 +-0.048381 -0.637424 -0.768993 0.480032 0.818712 -0.048799 -0.637425 -0.768965 +0.045772 -0.684547 -0.72753 0.520032 0.842274 0.045323 -0.684549 -0.727557 +-0.045772 -0.684547 -0.72753 0.480032 0.842274 -0.046221 -0.684549 -0.7275 +0.048381 -0.637424 -0.768993 0.520032 0.818712 0.047963 -0.637425 -0.769018 +0.045772 -0.684547 -0.72753 0.520032 0.842274 0.045323 -0.684549 -0.727557 +-0.048381 -0.637424 -0.768993 0.480032 0.818712 -0.048799 -0.637425 -0.768965 +0.048381 -0.637424 -0.768993 0.520032 0.818712 0.047963 -0.637425 -0.769018 +0.136595 -0.684547 -0.716057 0.560032 0.842274 0.136153 -0.684549 -0.716139 +0.045772 -0.684547 -0.72753 0.520032 0.842274 0.045323 -0.684549 -0.727557 +0.14438 -0.637424 -0.756866 0.560032 0.818712 0.143968 -0.637425 -0.756943 +0.136595 -0.684547 -0.716057 0.560032 0.842274 0.136153 -0.684549 -0.716139 +0.048381 -0.637424 -0.768993 0.520032 0.818712 0.047963 -0.637425 -0.769018 +0.14438 -0.637424 -0.756866 0.560032 0.818712 0.143968 -0.637425 -0.756943 +0.225264 -0.684547 -0.693291 0.600032 0.842274 0.224836 -0.684548 -0.693428 +0.136595 -0.684547 -0.716057 0.560032 0.842274 0.136153 -0.684549 -0.716139 +0.238102 -0.637424 -0.732802 0.600032 0.818712 0.237703 -0.637425 -0.73293 +0.225264 -0.684547 -0.693291 0.600032 0.842274 0.224836 -0.684548 -0.693428 +0.14438 -0.637424 -0.756866 0.560032 0.818712 0.143968 -0.637425 -0.756943 +0.238102 -0.637424 -0.732802 0.600032 0.818712 0.237703 -0.637425 -0.73293 +0.31038 -0.684547 -0.659591 0.640032 0.842274 0.309972 -0.684548 -0.659781 +0.225264 -0.684547 -0.693291 0.600032 0.842274 0.224836 -0.684548 -0.693428 +0.328069 -0.637424 -0.697181 0.640032 0.818712 0.327689 -0.637425 -0.697358 +0.31038 -0.684547 -0.659591 0.640032 0.842274 0.309972 -0.684548 -0.659781 +0.238102 -0.637424 -0.732802 0.600032 0.818712 0.237703 -0.637425 -0.73293 +0.328069 -0.637424 -0.697181 0.640032 0.818712 0.327689 -0.637425 -0.697358 +0.390601 -0.684547 -0.615489 0.680032 0.842274 0.39022 -0.684548 -0.615729 +0.31038 -0.684547 -0.659591 0.640032 0.842274 0.309972 -0.684548 -0.659781 +0.412862 -0.637424 -0.650566 0.680032 0.818712 0.412507 -0.637425 -0.650789 +0.390601 -0.684547 -0.615489 0.680032 0.842274 0.39022 -0.684548 -0.615729 +0.328069 -0.637424 -0.697181 0.640032 0.818712 0.327689 -0.637425 -0.697358 +0.412862 -0.637424 -0.650566 0.680032 0.818712 0.412507 -0.637425 -0.650789 +0.464662 -0.684547 -0.56168 0.720032 0.842274 0.464314 -0.684549 -0.561965 +0.390601 -0.684547 -0.615489 0.680032 0.842274 0.39022 -0.684548 -0.615729 +0.491144 -0.637424 -0.593691 0.720032 0.818712 0.49082 -0.637425 -0.593957 +0.464662 -0.684547 -0.56168 0.720032 0.842274 0.464314 -0.684549 -0.561965 +0.412862 -0.637424 -0.650566 0.680032 0.818712 0.412507 -0.637425 -0.650789 +0.491144 -0.637424 -0.593691 0.720032 0.818712 0.49082 -0.637425 -0.593957 +0.531395 -0.684547 -0.499013 0.760032 0.842274 0.531086 -0.684548 -0.49934 +0.464662 -0.684547 -0.56168 0.720032 0.842274 0.464314 -0.684549 -0.561965 +0.56168 -0.637424 -0.527453 0.760032 0.818712 0.561393 -0.637425 -0.527757 +0.531395 -0.684547 -0.499013 0.760032 0.842274 0.531086 -0.684548 -0.49934 +0.491144 -0.637424 -0.593691 0.720032 0.818712 0.49082 -0.637425 -0.593957 +0.56168 -0.637424 -0.527453 0.760032 0.818712 0.561393 -0.637425 -0.527757 +0.589748 -0.684547 -0.428477 0.800032 0.842274 0.589482 -0.684549 -0.42884 +0.531395 -0.684547 -0.499013 0.760032 0.842274 0.531086 -0.684548 -0.49934 +0.623358 -0.637424 -0.452896 0.800032 0.818712 0.623111 -0.637425 -0.453234 +0.589748 -0.684547 -0.428477 0.800032 0.842274 0.589482 -0.684549 -0.42884 +0.56168 -0.637424 -0.527453 0.760032 0.818712 0.561393 -0.637425 -0.527757 +0.623358 -0.637424 -0.452896 0.800032 0.818712 0.623111 -0.637425 -0.453234 +0.6388 -0.684547 -0.351183 0.840032 0.842274 0.638582 -0.684548 -0.351577 +0.589748 -0.684547 -0.428477 0.800032 0.842274 0.589482 -0.684549 -0.42884 +0.675206 -0.637424 -0.371198 0.840032 0.818712 0.675003 -0.637425 -0.371564 +0.6388 -0.684547 -0.351183 0.840032 0.842274 0.638582 -0.684548 -0.351577 +0.623358 -0.637424 -0.452896 0.800032 0.818712 0.623111 -0.637425 -0.453234 +0.675206 -0.637424 -0.371198 0.840032 0.818712 0.675003 -0.637425 -0.371564 +0.677778 -0.684547 -0.268351 0.880032 0.842274 0.677611 -0.684548 -0.268769 +0.6388 -0.684547 -0.351183 0.840032 0.842274 0.638582 -0.684548 -0.351577 +0.716405 -0.637424 -0.283645 0.880032 0.818712 0.71625 -0.637425 -0.284034 +0.677778 -0.684547 -0.268351 0.880032 0.842274 0.677611 -0.684548 -0.268769 +0.675206 -0.637424 -0.371198 0.840032 0.818712 0.675003 -0.637425 -0.371564 +0.716405 -0.637424 -0.283645 0.880032 0.818712 0.71625 -0.637425 -0.284034 +0.706067 -0.684547 -0.181287 0.920032 0.842274 0.705954 -0.684548 -0.181723 +0.677778 -0.684547 -0.268351 0.880032 0.842274 0.677611 -0.684548 -0.268769 +0.746306 -0.637424 -0.191619 0.920032 0.818712 0.746201 -0.637425 -0.192024 +0.706067 -0.684547 -0.181287 0.920032 0.842274 0.705954 -0.684548 -0.181723 +0.716405 -0.637424 -0.283645 0.880032 0.818712 0.71625 -0.637425 -0.284034 +0.746306 -0.637424 -0.191619 0.920032 0.818712 0.746201 -0.637425 -0.192024 +0.723221 -0.684547 -0.091364 0.960032 0.842274 0.723163 -0.684548 -0.09181 +0.706067 -0.684547 -0.181287 0.920032 0.842274 0.705954 -0.684548 -0.181723 +0.764438 -0.637424 -0.096571 0.960032 0.818712 0.764384 -0.637425 -0.096987 +0.723221 -0.684547 -0.091364 0.960032 0.842274 0.723163 -0.684548 -0.09181 +0.746306 -0.637424 -0.191619 0.920032 0.818712 0.746201 -0.637425 -0.192024 +0.764438 -0.637424 -0.096571 0.960032 0.818712 0.764384 -0.637425 -0.096987 +0.728969 -0.684547 -0 1.00003 0.842274 0.728967 -0.684548 -0.000453 +0.723221 -0.684547 -0.091364 0.960032 0.842274 0.723163 -0.684548 -0.09181 +0.770513 -0.637424 -0 1.00003 0.818712 0.770512 -0.637425 -0.000422 +0.728969 -0.684547 -0 1.00003 0.842274 0.728967 -0.684548 -0.000453 +0.764438 -0.637424 -0.096571 0.960032 0.818712 0.764384 -0.637425 -0.096987 +0.770513 -0.637424 -0 1.00003 0.818712 0.770512 -0.637425 -0.000422 +0.723221 -0.684547 0.091364 1.04003 0.842274 0.723275 -0.684549 0.090914 +0.728969 -0.684547 -0 1.00003 0.842274 0.728967 -0.684548 -0.000453 +0.764438 -0.637424 0.096571 1.04003 0.818712 0.764489 -0.637426 0.096152 +0.723221 -0.684547 0.091364 1.04003 0.842274 0.723275 -0.684549 0.090914 +0.770513 -0.637424 -0 1.00003 0.818712 0.770512 -0.637425 -0.000422 +0.802639 -0.587785 0.101397 1.04003 0.793893 0.802686 -0.587786 0.10101 +0.746307 -0.637424 0.191619 1.08003 0.818712 0.746409 -0.637425 0.191213 +0.764438 -0.637424 0.096571 1.04003 0.818712 0.764489 -0.637426 0.096152 +0.783601 -0.587785 0.201195 1.08003 0.793893 0.783695 -0.587787 0.20082 +0.746307 -0.637424 0.191619 1.08003 0.818712 0.746409 -0.637425 0.191213 +0.802639 -0.587785 0.101397 1.04003 0.793893 0.802686 -0.587786 0.10101 +0.783601 -0.587785 0.201195 1.08003 0.793893 0.783695 -0.587787 0.20082 +0.716406 -0.637424 0.283645 1.12003 0.818712 0.716558 -0.637426 0.283255 +0.746307 -0.637424 0.191619 1.08003 0.818712 0.746409 -0.637425 0.191213 +0.752206 -0.587785 0.297819 1.12003 0.793893 0.752346 -0.587787 0.29746 +0.716406 -0.637424 0.283645 1.12003 0.818712 0.716558 -0.637426 0.283255 +0.783601 -0.587785 0.201195 1.08003 0.793893 0.783695 -0.587787 0.20082 +0.752206 -0.587785 0.297819 1.12003 0.793893 0.752346 -0.587787 0.29746 +0.675207 -0.637424 0.371198 1.16003 0.818712 0.675406 -0.637426 0.37083 +0.716406 -0.637424 0.283645 1.12003 0.818712 0.716558 -0.637426 0.283255 +0.708948 -0.587785 0.389747 1.16003 0.793893 0.709132 -0.587786 0.389408 +0.675207 -0.637424 0.371198 1.16003 0.818712 0.675406 -0.637426 0.37083 +0.752206 -0.587785 0.297819 1.12003 0.793893 0.752346 -0.587787 0.29746 +0.708948 -0.587785 0.389747 1.16003 0.793893 0.709132 -0.587786 0.389408 +0.623359 -0.637424 0.452897 1.20003 0.818712 0.623604 -0.637425 0.452556 +0.675207 -0.637424 0.371198 1.16003 0.818712 0.675406 -0.637426 0.37083 +0.654509 -0.587785 0.475529 1.20003 0.793893 0.654735 -0.587787 0.475215 +0.623359 -0.637424 0.452897 1.20003 0.818712 0.623604 -0.637425 0.452556 +0.708948 -0.587785 0.389747 1.16003 0.793893 0.709132 -0.587786 0.389408 +0.654509 -0.587785 0.475529 1.20003 0.793893 0.654735 -0.587787 0.475215 +0.561681 -0.637424 0.527453 1.24003 0.818712 0.561966 -0.637426 0.527146 +0.623359 -0.637424 0.452897 1.20003 0.818712 0.623604 -0.637425 0.452556 +0.589749 -0.587785 0.553811 1.24003 0.793893 0.590011 -0.587787 0.553528 +0.561681 -0.637424 0.527453 1.24003 0.818712 0.561966 -0.637426 0.527146 +0.654509 -0.587785 0.475529 1.20003 0.793893 0.654735 -0.587787 0.475215 +0.589749 -0.587785 0.553811 1.24003 0.793893 0.590011 -0.587787 0.553528 +0.491144 -0.637424 0.593691 1.28003 0.818712 0.491466 -0.637426 0.593422 +0.561681 -0.637424 0.527453 1.24003 0.818712 0.561966 -0.637426 0.527146 +0.515687 -0.587785 0.623359 1.28003 0.793893 0.515984 -0.587787 0.623111 +0.491144 -0.637424 0.593691 1.28003 0.818712 0.491466 -0.637426 0.593422 +0.589749 -0.587785 0.553811 1.24003 0.793893 0.590011 -0.587787 0.553528 +0.515687 -0.587785 0.623359 1.28003 0.793893 0.515984 -0.587787 0.623111 +0.412862 -0.637424 0.650567 1.32003 0.818712 0.413215 -0.637425 0.65034 +0.491144 -0.637424 0.593691 1.28003 0.818712 0.491466 -0.637426 0.593422 +0.433493 -0.587785 0.683076 1.32003 0.793893 0.433818 -0.587787 0.682868 +0.412862 -0.637424 0.650567 1.32003 0.818712 0.413215 -0.637425 0.65034 +0.515687 -0.587785 0.623359 1.28003 0.793893 0.515984 -0.587787 0.623111 +0.433493 -0.587785 0.683076 1.32003 0.793893 0.433818 -0.587787 0.682868 +0.328069 -0.637424 0.697182 1.36003 0.818712 0.328447 -0.637425 0.697002 +0.412862 -0.637424 0.650567 1.32003 0.818712 0.413215 -0.637425 0.65034 +0.344463 -0.587785 0.732021 1.36003 0.793893 0.344811 -0.587787 0.731855 +0.328069 -0.637424 0.697182 1.36003 0.818712 0.328447 -0.637425 0.697002 +0.433493 -0.587785 0.683076 1.32003 0.793893 0.433818 -0.587787 0.682868 +0.344463 -0.587785 0.732021 1.36003 0.793893 0.344811 -0.587787 0.731855 +0.238102 -0.637424 0.732802 1.40003 0.818712 0.2385 -0.637425 0.732671 +0.328069 -0.637424 0.697182 1.36003 0.818712 0.328447 -0.637425 0.697002 +0.25 -0.587785 0.769422 1.40003 0.793893 0.250367 -0.587787 0.7693 +0.238102 -0.637424 0.732802 1.40003 0.818712 0.2385 -0.637425 0.732671 +0.344463 -0.587785 0.732021 1.36003 0.793893 0.344811 -0.587787 0.731855 +0.25 -0.587785 0.769422 1.40003 0.793893 0.250367 -0.587787 0.7693 +0.14438 -0.637424 0.756866 1.44003 0.818712 0.144791 -0.637425 0.756786 +0.238102 -0.637424 0.732802 1.40003 0.818712 0.2385 -0.637425 0.732671 +0.151595 -0.587785 0.794688 1.44003 0.793893 0.151974 -0.587787 0.794613 +0.14438 -0.637424 0.756866 1.44003 0.818712 0.144791 -0.637425 0.756786 +0.25 -0.587785 0.769422 1.40003 0.793893 0.250367 -0.587787 0.7693 +0.151595 -0.587785 0.794688 1.44003 0.793893 0.151974 -0.587787 0.794613 +0.048381 -0.637424 0.768994 1.48003 0.818712 0.048799 -0.637425 0.768965 +0.14438 -0.637424 0.756866 1.44003 0.818712 0.144791 -0.637425 0.756786 +0.050799 -0.587785 0.807421 1.48003 0.793893 0.051184 -0.587787 0.807395 +0.048381 -0.637424 0.768994 1.48003 0.818712 0.048799 -0.637425 0.768965 +0.151595 -0.587785 0.794688 1.44003 0.793893 0.151974 -0.587787 0.794613 +0.050799 -0.587785 0.807421 1.48003 0.793893 0.051184 -0.587787 0.807395 +-0.048381 -0.637424 0.768993 1.52003 0.818712 -0.047963 -0.637425 0.769018 +0.048381 -0.637424 0.768994 1.48003 0.818712 0.048799 -0.637425 0.768965 +-0.050799 -0.587785 0.807421 1.52003 0.793893 -0.050413 -0.587787 0.807444 +-0.048381 -0.637424 0.768993 1.52003 0.818712 -0.047963 -0.637425 0.769018 +0.050799 -0.587785 0.807421 1.48003 0.793893 0.051184 -0.587787 0.807395 +-0.050799 -0.587785 0.807421 -0.479968 0.793893 -0.050413 -0.587787 0.807444 +-0.14438 -0.637424 0.756866 -0.439968 0.818712 -0.143968 -0.637426 0.756943 +-0.048381 -0.637424 0.768993 -0.479968 0.818712 -0.047963 -0.637425 0.769018 +-0.151595 -0.587785 0.794688 -0.439968 0.793893 -0.151215 -0.587787 0.794758 +-0.14438 -0.637424 0.756866 -0.439968 0.818712 -0.143968 -0.637426 0.756943 +-0.050799 -0.587785 0.807421 -0.479968 0.793893 -0.050413 -0.587787 0.807444 +-0.151595 -0.587785 0.794688 -0.439968 0.793893 -0.151215 -0.587787 0.794758 +-0.238102 -0.637424 0.732802 -0.399968 0.818712 -0.237703 -0.637426 0.73293 +-0.14438 -0.637424 0.756866 -0.439968 0.818712 -0.143968 -0.637426 0.756943 +-0.25 -0.587785 0.769422 -0.399968 0.793893 -0.249632 -0.587787 0.769539 +-0.238102 -0.637424 0.732802 -0.399968 0.818712 -0.237703 -0.637426 0.73293 +-0.151595 -0.587785 0.794688 -0.439968 0.793893 -0.151215 -0.587787 0.794758 +-0.25 -0.587785 0.769422 -0.399968 0.793893 -0.249632 -0.587787 0.769539 +-0.328069 -0.637424 0.697182 -0.359968 0.818712 -0.327689 -0.637425 0.697358 +-0.238102 -0.637424 0.732802 -0.399968 0.818712 -0.237703 -0.637426 0.73293 +-0.344463 -0.587785 0.732021 -0.359968 0.793893 -0.344113 -0.587787 0.732184 +-0.328069 -0.637424 0.697182 -0.359968 0.818712 -0.327689 -0.637425 0.697358 +-0.25 -0.587785 0.769422 -0.399968 0.793893 -0.249632 -0.587787 0.769539 +-0.344463 -0.587785 0.732021 -0.359968 0.793893 -0.344113 -0.587787 0.732184 +-0.412862 -0.637424 0.650566 -0.319968 0.818712 -0.412507 -0.637425 0.650789 +-0.328069 -0.637424 0.697182 -0.359968 0.818712 -0.327689 -0.637425 0.697358 +-0.433493 -0.587785 0.683076 -0.319968 0.793893 -0.433166 -0.587787 0.683282 +-0.412862 -0.637424 0.650566 -0.319968 0.818712 -0.412507 -0.637425 0.650789 +-0.344463 -0.587785 0.732021 -0.359968 0.793893 -0.344113 -0.587787 0.732184 +-0.433493 -0.587785 0.683076 -0.319968 0.793893 -0.433166 -0.587787 0.683282 +-0.491144 -0.637424 0.593691 -0.279968 0.818712 -0.49082 -0.637425 0.593957 +-0.412862 -0.637424 0.650566 -0.319968 0.818712 -0.412507 -0.637425 0.650789 +-0.515687 -0.587785 0.623359 -0.279968 0.793893 -0.515388 -0.587787 0.623604 +-0.491144 -0.637424 0.593691 -0.279968 0.818712 -0.49082 -0.637425 0.593957 +-0.433493 -0.587785 0.683076 -0.319968 0.793893 -0.433166 -0.587787 0.683282 +-0.515687 -0.587785 0.623359 -0.279968 0.793893 -0.515388 -0.587787 0.623604 +-0.56168 -0.637424 0.527453 -0.239968 0.818712 -0.561392 -0.637425 0.527757 +-0.491144 -0.637424 0.593691 -0.279968 0.818712 -0.49082 -0.637425 0.593957 +-0.589749 -0.587785 0.553811 -0.239968 0.793893 -0.589482 -0.587787 0.554091 +-0.56168 -0.637424 0.527453 -0.239968 0.818712 -0.561392 -0.637425 0.527757 +-0.515687 -0.587785 0.623359 -0.279968 0.793893 -0.515388 -0.587787 0.623604 +-0.589749 -0.587785 0.553811 -0.239968 0.793893 -0.589482 -0.587787 0.554091 +-0.623359 -0.637424 0.452897 -0.199968 0.818712 -0.623111 -0.637426 0.453234 +-0.56168 -0.637424 0.527453 -0.239968 0.818712 -0.561392 -0.637425 0.527757 +-0.654509 -0.587785 0.475529 -0.199968 0.793893 -0.65428 -0.587787 0.47584 +-0.623359 -0.637424 0.452897 -0.199968 0.818712 -0.623111 -0.637426 0.453234 +-0.589749 -0.587785 0.553811 -0.239968 0.793893 -0.589482 -0.587787 0.554091 +-0.654509 -0.587785 0.475529 -0.199968 0.793893 -0.65428 -0.587787 0.47584 +-0.675206 -0.637424 0.371198 -0.159968 0.818712 -0.675003 -0.637426 0.371564 +-0.623359 -0.637424 0.452897 -0.199968 0.818712 -0.623111 -0.637426 0.453234 +-0.708948 -0.587785 0.389747 -0.159968 0.793893 -0.70876 -0.587787 0.390085 +-0.675206 -0.637424 0.371198 -0.159968 0.818712 -0.675003 -0.637426 0.371564 +-0.654509 -0.587785 0.475529 -0.199968 0.793893 -0.65428 -0.587787 0.47584 +-0.708948 -0.587785 0.389747 -0.159968 0.793893 -0.70876 -0.587787 0.390085 +-0.716406 -0.637424 0.283645 -0.119968 0.818712 -0.71625 -0.637425 0.284034 +-0.675206 -0.637424 0.371198 -0.159968 0.818712 -0.675003 -0.637426 0.371564 +-0.752206 -0.587785 0.297819 -0.119968 0.793893 -0.752062 -0.587787 0.298178 +-0.716406 -0.637424 0.283645 -0.119968 0.818712 -0.71625 -0.637425 0.284034 +-0.708948 -0.587785 0.389747 -0.159968 0.793893 -0.70876 -0.587787 0.390085 +-0.752206 -0.587785 0.297819 -0.119968 0.793893 -0.752062 -0.587787 0.298178 +-0.746307 -0.637424 0.191619 -0.079968 0.818712 -0.746201 -0.637425 0.192024 +-0.716406 -0.637424 0.283645 -0.119968 0.818712 -0.71625 -0.637425 0.284034 +-0.783601 -0.587785 0.201194 -0.079968 0.793893 -0.783503 -0.587787 0.201568 +-0.746307 -0.637424 0.191619 -0.079968 0.818712 -0.746201 -0.637425 0.192024 +-0.752206 -0.587785 0.297819 -0.119968 0.793893 -0.752062 -0.587787 0.298178 +-0.783601 -0.587785 0.201194 -0.079968 0.793893 -0.783503 -0.587787 0.201568 +-0.764438 -0.637424 0.096571 -0.039968 0.818712 -0.764383 -0.637426 0.096987 +-0.746307 -0.637424 0.191619 -0.079968 0.818712 -0.746201 -0.637425 0.192024 +-0.802638 -0.587785 0.101397 -0.039968 0.793893 -0.802588 -0.587787 0.10178 +-0.764438 -0.637424 0.096571 -0.039968 0.818712 -0.764383 -0.637426 0.096987 +-0.783601 -0.587785 0.201194 -0.079968 0.793893 -0.783503 -0.587787 0.201568 +-0.802638 -0.587785 0.101397 -0.039968 0.793893 -0.802588 -0.587787 0.10178 +-0.770514 -0.637424 -0 3.2e-005 0.818712 -0.770512 -0.637426 0.000419 +-0.764438 -0.637424 0.096571 -0.039968 0.818712 -0.764383 -0.637426 0.096987 +-0.809018 -0.587785 -0 3.2e-005 0.793893 -0.809016 -0.587786 0.000386 +-0.770514 -0.637424 -0 3.2e-005 0.818712 -0.770512 -0.637426 0.000419 +-0.802638 -0.587785 0.101397 -0.039968 0.793893 -0.802588 -0.587787 0.10178 +-0.809018 -0.587785 -0 3.2e-005 0.793893 -0.809016 -0.587786 0.000386 +-0.764438 -0.637424 -0.096571 0.040032 0.818712 -0.764489 -0.637425 -0.096155 +-0.770514 -0.637424 -0 3.2e-005 0.818712 -0.770512 -0.637426 0.000419 +-0.802638 -0.587785 -0.101397 0.040032 0.793893 -0.802685 -0.587787 -0.101013 +-0.764438 -0.637424 -0.096571 0.040032 0.818712 -0.764489 -0.637425 -0.096155 +-0.809018 -0.587785 -0 3.2e-005 0.793893 -0.809016 -0.587786 0.000386 +-0.802638 -0.587785 -0.101397 0.040032 0.793893 -0.802685 -0.587787 -0.101013 +-0.746307 -0.637424 -0.191619 0.080032 0.818712 -0.746409 -0.637426 -0.191213 +-0.764438 -0.637424 -0.096571 0.040032 0.818712 -0.764489 -0.637425 -0.096155 +-0.783601 -0.587785 -0.201195 0.080032 0.793893 -0.783695 -0.587787 -0.20082 +-0.746307 -0.637424 -0.191619 0.080032 0.818712 -0.746409 -0.637426 -0.191213 +-0.802638 -0.587785 -0.101397 0.040032 0.793893 -0.802685 -0.587787 -0.101013 +-0.783601 -0.587785 -0.201195 0.080032 0.793893 -0.783695 -0.587787 -0.20082 +-0.716406 -0.637424 -0.283645 0.120032 0.818712 -0.716558 -0.637425 -0.283255 +-0.746307 -0.637424 -0.191619 0.080032 0.818712 -0.746409 -0.637426 -0.191213 +-0.752205 -0.587785 -0.297819 0.120032 0.793893 -0.752346 -0.587787 -0.29746 +-0.716406 -0.637424 -0.283645 0.120032 0.818712 -0.716558 -0.637425 -0.283255 +-0.783601 -0.587785 -0.201195 0.080032 0.793893 -0.783695 -0.587787 -0.20082 +-0.752205 -0.587785 -0.297819 0.120032 0.793893 -0.752346 -0.587787 -0.29746 +-0.675206 -0.637424 -0.371198 0.160032 0.818712 -0.675407 -0.637425 -0.37083 +-0.716406 -0.637424 -0.283645 0.120032 0.818712 -0.716558 -0.637425 -0.283255 +-0.708947 -0.587785 -0.389747 0.160032 0.793893 -0.709132 -0.587786 -0.389408 +-0.675206 -0.637424 -0.371198 0.160032 0.818712 -0.675407 -0.637425 -0.37083 +-0.752205 -0.587785 -0.297819 0.120032 0.793893 -0.752346 -0.587787 -0.29746 +-0.708947 -0.587785 -0.389747 0.160032 0.793893 -0.709132 -0.587786 -0.389408 +-0.623359 -0.637424 -0.452897 0.200032 0.818712 -0.623603 -0.637425 -0.452557 +-0.675206 -0.637424 -0.371198 0.160032 0.818712 -0.675407 -0.637425 -0.37083 +-0.654509 -0.587785 -0.475529 0.200032 0.793893 -0.654734 -0.587787 -0.475215 +-0.623359 -0.637424 -0.452897 0.200032 0.818712 -0.623603 -0.637425 -0.452557 +-0.708947 -0.587785 -0.389747 0.160032 0.793893 -0.709132 -0.587786 -0.389408 +-0.654509 -0.587785 -0.475529 0.200032 0.793893 -0.654734 -0.587787 -0.475215 +-0.56168 -0.637424 -0.527453 0.240032 0.818712 -0.561966 -0.637425 -0.527147 +-0.623359 -0.637424 -0.452897 0.200032 0.818712 -0.623603 -0.637425 -0.452557 +-0.589748 -0.587785 -0.553811 0.240032 0.793893 -0.590011 -0.587787 -0.553528 +-0.56168 -0.637424 -0.527453 0.240032 0.818712 -0.561966 -0.637425 -0.527147 +-0.654509 -0.587785 -0.475529 0.200032 0.793893 -0.654734 -0.587787 -0.475215 +-0.589748 -0.587785 -0.553811 0.240032 0.793893 -0.590011 -0.587787 -0.553528 +-0.491144 -0.637424 -0.593691 0.280032 0.818712 -0.491466 -0.637425 -0.593422 +-0.56168 -0.637424 -0.527453 0.240032 0.818712 -0.561966 -0.637425 -0.527147 +-0.515687 -0.587785 -0.623359 0.280032 0.793893 -0.515984 -0.587787 -0.623111 +-0.491144 -0.637424 -0.593691 0.280032 0.818712 -0.491466 -0.637425 -0.593422 +-0.589748 -0.587785 -0.553811 0.240032 0.793893 -0.590011 -0.587787 -0.553528 +-0.515687 -0.587785 -0.623359 0.280032 0.793893 -0.515984 -0.587787 -0.623111 +-0.412862 -0.637424 -0.650566 0.320032 0.818712 -0.413214 -0.637425 -0.650341 +-0.491144 -0.637424 -0.593691 0.280032 0.818712 -0.491466 -0.637425 -0.593422 +-0.433493 -0.587785 -0.683076 0.320032 0.793893 -0.433818 -0.587786 -0.682868 +-0.412862 -0.637424 -0.650566 0.320032 0.818712 -0.413214 -0.637425 -0.650341 +-0.515687 -0.587785 -0.623359 0.280032 0.793893 -0.515984 -0.587787 -0.623111 +-0.433493 -0.587785 -0.683076 0.320032 0.793893 -0.433818 -0.587786 -0.682868 +-0.328069 -0.637424 -0.697182 0.360032 0.818712 -0.328447 -0.637425 -0.697002 +-0.412862 -0.637424 -0.650566 0.320032 0.818712 -0.413214 -0.637425 -0.650341 +-0.344463 -0.587785 -0.732021 0.360032 0.793893 -0.344811 -0.587787 -0.731855 +-0.328069 -0.637424 -0.697182 0.360032 0.818712 -0.328447 -0.637425 -0.697002 +-0.433493 -0.587785 -0.683076 0.320032 0.793893 -0.433818 -0.587786 -0.682868 +-0.344463 -0.587785 -0.732021 0.360032 0.793893 -0.344811 -0.587787 -0.731855 +-0.238102 -0.637424 -0.732802 0.400032 0.818712 -0.2385 -0.637426 -0.732671 +-0.328069 -0.637424 -0.697182 0.360032 0.818712 -0.328447 -0.637425 -0.697002 +-0.25 -0.587785 -0.769421 0.400032 0.793893 -0.250367 -0.587787 -0.7693 +-0.238102 -0.637424 -0.732802 0.400032 0.818712 -0.2385 -0.637426 -0.732671 +-0.344463 -0.587785 -0.732021 0.360032 0.793893 -0.344811 -0.587787 -0.731855 +-0.25 -0.587785 -0.769421 0.400032 0.793893 -0.250367 -0.587787 -0.7693 +-0.14438 -0.637424 -0.756866 0.440032 0.818712 -0.144791 -0.637425 -0.756786 +-0.238102 -0.637424 -0.732802 0.400032 0.818712 -0.2385 -0.637426 -0.732671 +-0.151595 -0.587785 -0.794687 0.440032 0.793893 -0.151974 -0.587787 -0.794614 +-0.14438 -0.637424 -0.756866 0.440032 0.818712 -0.144791 -0.637425 -0.756786 +-0.25 -0.587785 -0.769421 0.400032 0.793893 -0.250367 -0.587787 -0.7693 +-0.151595 -0.587785 -0.794687 0.440032 0.793893 -0.151974 -0.587787 -0.794614 +-0.048381 -0.637424 -0.768993 0.480032 0.818712 -0.048799 -0.637425 -0.768965 +-0.14438 -0.637424 -0.756866 0.440032 0.818712 -0.144791 -0.637425 -0.756786 +-0.050799 -0.587785 -0.807421 0.480032 0.793893 -0.051184 -0.587787 -0.807395 +-0.048381 -0.637424 -0.768993 0.480032 0.818712 -0.048799 -0.637425 -0.768965 +-0.151595 -0.587785 -0.794687 0.440032 0.793893 -0.151974 -0.587787 -0.794614 +-0.050799 -0.587785 -0.807421 0.480032 0.793893 -0.051184 -0.587787 -0.807395 +0.048381 -0.637424 -0.768993 0.520032 0.818712 0.047963 -0.637425 -0.769018 +-0.048381 -0.637424 -0.768993 0.480032 0.818712 -0.048799 -0.637425 -0.768965 +0.050799 -0.587785 -0.807421 0.520032 0.793893 0.050413 -0.587786 -0.807444 +0.048381 -0.637424 -0.768993 0.520032 0.818712 0.047963 -0.637425 -0.769018 +-0.050799 -0.587785 -0.807421 0.480032 0.793893 -0.051184 -0.587787 -0.807395 +0.050799 -0.587785 -0.807421 0.520032 0.793893 0.050413 -0.587786 -0.807444 +0.14438 -0.637424 -0.756866 0.560032 0.818712 0.143968 -0.637425 -0.756943 +0.048381 -0.637424 -0.768993 0.520032 0.818712 0.047963 -0.637425 -0.769018 +0.151595 -0.587785 -0.794687 0.560032 0.793893 0.151215 -0.587787 -0.794759 +0.14438 -0.637424 -0.756866 0.560032 0.818712 0.143968 -0.637425 -0.756943 +0.050799 -0.587785 -0.807421 0.520032 0.793893 0.050413 -0.587786 -0.807444 +0.151595 -0.587785 -0.794687 0.560032 0.793893 0.151215 -0.587787 -0.794759 +0.238102 -0.637424 -0.732802 0.600032 0.818712 0.237703 -0.637425 -0.73293 +0.14438 -0.637424 -0.756866 0.560032 0.818712 0.143968 -0.637425 -0.756943 +0.25 -0.587785 -0.769421 0.600032 0.793893 0.249633 -0.587786 -0.769539 +0.238102 -0.637424 -0.732802 0.600032 0.818712 0.237703 -0.637425 -0.73293 +0.151595 -0.587785 -0.794687 0.560032 0.793893 0.151215 -0.587787 -0.794759 +0.25 -0.587785 -0.769421 0.600032 0.793893 0.249633 -0.587786 -0.769539 +0.328069 -0.637424 -0.697181 0.640032 0.818712 0.327689 -0.637425 -0.697358 +0.238102 -0.637424 -0.732802 0.600032 0.818712 0.237703 -0.637425 -0.73293 +0.344463 -0.587785 -0.732021 0.640032 0.793893 0.344113 -0.587786 -0.732184 +0.328069 -0.637424 -0.697181 0.640032 0.818712 0.327689 -0.637425 -0.697358 +0.25 -0.587785 -0.769421 0.600032 0.793893 0.249633 -0.587786 -0.769539 +0.344463 -0.587785 -0.732021 0.640032 0.793893 0.344113 -0.587786 -0.732184 +0.412862 -0.637424 -0.650566 0.680032 0.818712 0.412507 -0.637425 -0.650789 +0.328069 -0.637424 -0.697181 0.640032 0.818712 0.327689 -0.637425 -0.697358 +0.433493 -0.587785 -0.683076 0.680032 0.793893 0.433166 -0.587787 -0.683282 +0.412862 -0.637424 -0.650566 0.680032 0.818712 0.412507 -0.637425 -0.650789 +0.344463 -0.587785 -0.732021 0.640032 0.793893 0.344113 -0.587786 -0.732184 +0.433493 -0.587785 -0.683076 0.680032 0.793893 0.433166 -0.587787 -0.683282 +0.491144 -0.637424 -0.593691 0.720032 0.818712 0.49082 -0.637425 -0.593957 +0.412862 -0.637424 -0.650566 0.680032 0.818712 0.412507 -0.637425 -0.650789 +0.515687 -0.587785 -0.623358 0.720032 0.793893 0.515389 -0.587786 -0.623604 +0.491144 -0.637424 -0.593691 0.720032 0.818712 0.49082 -0.637425 -0.593957 +0.433493 -0.587785 -0.683076 0.680032 0.793893 0.433166 -0.587787 -0.683282 +0.515687 -0.587785 -0.623358 0.720032 0.793893 0.515389 -0.587786 -0.623604 +0.56168 -0.637424 -0.527453 0.760032 0.818712 0.561393 -0.637425 -0.527757 +0.491144 -0.637424 -0.593691 0.720032 0.818712 0.49082 -0.637425 -0.593957 +0.589748 -0.587785 -0.55381 0.760032 0.793893 0.589483 -0.587787 -0.554091 +0.56168 -0.637424 -0.527453 0.760032 0.818712 0.561393 -0.637425 -0.527757 +0.515687 -0.587785 -0.623358 0.720032 0.793893 0.515389 -0.587786 -0.623604 +0.589748 -0.587785 -0.55381 0.760032 0.793893 0.589483 -0.587787 -0.554091 +0.623358 -0.637424 -0.452896 0.800032 0.818712 0.623111 -0.637425 -0.453234 +0.56168 -0.637424 -0.527453 0.760032 0.818712 0.561393 -0.637425 -0.527757 +0.654509 -0.587785 -0.475528 0.800032 0.793893 0.654281 -0.587787 -0.47584 +0.623358 -0.637424 -0.452896 0.800032 0.818712 0.623111 -0.637425 -0.453234 +0.589748 -0.587785 -0.55381 0.760032 0.793893 0.589483 -0.587787 -0.554091 +0.654509 -0.587785 -0.475528 0.800032 0.793893 0.654281 -0.587787 -0.47584 +0.675206 -0.637424 -0.371198 0.840032 0.818712 0.675003 -0.637425 -0.371564 +0.623358 -0.637424 -0.452896 0.800032 0.818712 0.623111 -0.637425 -0.453234 +0.708947 -0.587785 -0.389747 0.840032 0.793893 0.70876 -0.587787 -0.390085 +0.675206 -0.637424 -0.371198 0.840032 0.818712 0.675003 -0.637425 -0.371564 +0.654509 -0.587785 -0.475528 0.800032 0.793893 0.654281 -0.587787 -0.47584 +0.708947 -0.587785 -0.389747 0.840032 0.793893 0.70876 -0.587787 -0.390085 +0.716405 -0.637424 -0.283645 0.880032 0.818712 0.71625 -0.637425 -0.284034 +0.675206 -0.637424 -0.371198 0.840032 0.818712 0.675003 -0.637425 -0.371564 +0.752205 -0.587785 -0.297819 0.880032 0.793893 0.752062 -0.587787 -0.298178 +0.716405 -0.637424 -0.283645 0.880032 0.818712 0.71625 -0.637425 -0.284034 +0.708947 -0.587785 -0.389747 0.840032 0.793893 0.70876 -0.587787 -0.390085 +0.752205 -0.587785 -0.297819 0.880032 0.793893 0.752062 -0.587787 -0.298178 +0.746306 -0.637424 -0.191619 0.920032 0.818712 0.746201 -0.637425 -0.192024 +0.716405 -0.637424 -0.283645 0.880032 0.818712 0.71625 -0.637425 -0.284034 +0.7836 -0.587785 -0.201194 0.920032 0.793893 0.783503 -0.587787 -0.201568 +0.746306 -0.637424 -0.191619 0.920032 0.818712 0.746201 -0.637425 -0.192024 +0.752205 -0.587785 -0.297819 0.880032 0.793893 0.752062 -0.587787 -0.298178 +0.7836 -0.587785 -0.201194 0.920032 0.793893 0.783503 -0.587787 -0.201568 +0.764438 -0.637424 -0.096571 0.960032 0.818712 0.764384 -0.637425 -0.096987 +0.746306 -0.637424 -0.191619 0.920032 0.818712 0.746201 -0.637425 -0.192024 +0.802638 -0.587785 -0.101397 0.960032 0.793893 0.802588 -0.587787 -0.10178 +0.764438 -0.637424 -0.096571 0.960032 0.818712 0.764384 -0.637425 -0.096987 +0.7836 -0.587785 -0.201194 0.920032 0.793893 0.783503 -0.587787 -0.201568 +0.802638 -0.587785 -0.101397 0.960032 0.793893 0.802588 -0.587787 -0.10178 +0.770513 -0.637424 -0 1.00003 0.818712 0.770512 -0.637425 -0.000422 +0.764438 -0.637424 -0.096571 0.960032 0.818712 0.764384 -0.637425 -0.096987 +0.809017 -0.587785 -0 1.00003 0.793893 0.809016 -0.587786 -0.00039 +0.770513 -0.637424 -0 1.00003 0.818712 0.770512 -0.637425 -0.000422 +0.802638 -0.587785 -0.101397 0.960032 0.793893 0.802588 -0.587787 -0.10178 +0.809017 -0.587785 -0 1.00003 0.793893 0.809016 -0.587786 -0.00039 +0.764438 -0.637424 0.096571 1.04003 0.818712 0.764489 -0.637426 0.096152 +0.770513 -0.637424 -0 1.00003 0.818712 0.770512 -0.637425 -0.000422 +0.802639 -0.587785 0.101397 1.04003 0.793893 0.802686 -0.587786 0.10101 +0.764438 -0.637424 0.096571 1.04003 0.818712 0.764489 -0.637426 0.096152 +0.809017 -0.587785 -0 1.00003 0.793893 0.809016 -0.587786 -0.00039 +0.837671 -0.535827 0.105823 1.04003 0.767913 0.837714 -0.535828 0.105469 +0.783601 -0.587785 0.201195 1.08003 0.793893 0.783695 -0.587787 0.20082 +0.802639 -0.587785 0.101397 1.04003 0.793893 0.802686 -0.587786 0.10101 +0.817803 -0.535827 0.209976 1.08003 0.767913 0.817888 -0.535828 0.209635 +0.783601 -0.587785 0.201195 1.08003 0.793893 0.783695 -0.587787 0.20082 +0.837671 -0.535827 0.105823 1.04003 0.767913 0.837714 -0.535828 0.105469 +0.817803 -0.535827 0.209976 1.08003 0.767913 0.817888 -0.535828 0.209635 +0.752206 -0.587785 0.297819 1.12003 0.793893 0.752346 -0.587787 0.29746 +0.783601 -0.587785 0.201195 1.08003 0.793893 0.783695 -0.587787 0.20082 +0.785037 -0.535827 0.310818 1.12003 0.767913 0.785165 -0.535828 0.31049 +0.752206 -0.587785 0.297819 1.12003 0.793893 0.752346 -0.587787 0.29746 +0.817803 -0.535827 0.209976 1.08003 0.767913 0.817888 -0.535828 0.209635 +0.785037 -0.535827 0.310818 1.12003 0.767913 0.785165 -0.535828 0.31049 +0.708948 -0.587785 0.389747 1.16003 0.793893 0.709132 -0.587786 0.389408 +0.752206 -0.587785 0.297819 1.12003 0.793893 0.752346 -0.587787 0.29746 +0.739891 -0.535827 0.406759 1.16003 0.767913 0.740059 -0.535828 0.406449 +0.708948 -0.587785 0.389747 1.16003 0.793893 0.709132 -0.587786 0.389408 +0.785037 -0.535827 0.310818 1.12003 0.767913 0.785165 -0.535828 0.31049 +0.739891 -0.535827 0.406759 1.16003 0.767913 0.740059 -0.535828 0.406449 +0.654509 -0.587785 0.475529 1.20003 0.793893 0.654735 -0.587787 0.475215 +0.708948 -0.587785 0.389747 1.16003 0.793893 0.709132 -0.587786 0.389408 +0.683076 -0.535827 0.496284 1.20003 0.767913 0.683282 -0.535828 0.495998 +0.654509 -0.587785 0.475529 1.20003 0.793893 0.654735 -0.587787 0.475215 +0.739891 -0.535827 0.406759 1.16003 0.767913 0.740059 -0.535828 0.406449 +0.683076 -0.535827 0.496284 1.20003 0.767913 0.683282 -0.535828 0.495998 +0.589749 -0.587785 0.553811 1.24003 0.793893 0.590011 -0.587787 0.553528 +0.654509 -0.587785 0.475529 1.20003 0.793893 0.654735 -0.587787 0.475215 +0.615489 -0.535827 0.577983 1.24003 0.767913 0.615729 -0.535829 0.577725 +0.589749 -0.587785 0.553811 1.24003 0.793893 0.590011 -0.587787 0.553528 +0.683076 -0.535827 0.496284 1.20003 0.767913 0.683282 -0.535828 0.495998 +0.615489 -0.535827 0.577983 1.24003 0.767913 0.615729 -0.535829 0.577725 +0.515687 -0.587785 0.623359 1.28003 0.793893 0.515984 -0.587787 0.623111 +0.589749 -0.587785 0.553811 1.24003 0.793893 0.590011 -0.587787 0.553528 +0.538195 -0.535827 0.650567 1.28003 0.767913 0.538466 -0.535829 0.65034 +0.515687 -0.587785 0.623359 1.28003 0.793893 0.515984 -0.587787 0.623111 +0.615489 -0.535827 0.577983 1.24003 0.767913 0.615729 -0.535829 0.577725 +0.538195 -0.535827 0.650567 1.28003 0.767913 0.538466 -0.535829 0.65034 +0.433493 -0.587785 0.683076 1.32003 0.793893 0.433818 -0.587787 0.682868 +0.515687 -0.587785 0.623359 1.28003 0.793893 0.515984 -0.587787 0.623111 +0.452414 -0.535827 0.71289 1.32003 0.767913 0.45271 -0.535828 0.7127 +0.433493 -0.587785 0.683076 1.32003 0.793893 0.433818 -0.587787 0.682868 +0.538195 -0.535827 0.650567 1.28003 0.767913 0.538466 -0.535829 0.65034 +0.452414 -0.535827 0.71289 1.32003 0.767913 0.45271 -0.535828 0.7127 +0.344463 -0.587785 0.732021 1.36003 0.793893 0.344811 -0.587787 0.731855 +0.433493 -0.587785 0.683076 1.32003 0.793893 0.433818 -0.587787 0.682868 +0.359498 -0.535827 0.763972 1.36003 0.767913 0.359815 -0.535829 0.76382 +0.344463 -0.587785 0.732021 1.36003 0.793893 0.344811 -0.587787 0.731855 +0.452414 -0.535827 0.71289 1.32003 0.767913 0.45271 -0.535828 0.7127 +0.359498 -0.535827 0.763972 1.36003 0.767913 0.359815 -0.535829 0.76382 +0.25 -0.587785 0.769422 1.40003 0.793893 0.250367 -0.587787 0.7693 +0.344463 -0.587785 0.732021 1.36003 0.793893 0.344811 -0.587787 0.731855 +0.260912 -0.535827 0.803004 1.40003 0.767913 0.261246 -0.535829 0.802894 +0.25 -0.587785 0.769422 1.40003 0.793893 0.250367 -0.587787 0.7693 +0.359498 -0.535827 0.763972 1.36003 0.767913 0.359815 -0.535829 0.76382 +0.260912 -0.535827 0.803004 1.40003 0.767913 0.261246 -0.535829 0.802894 +0.151595 -0.587785 0.794688 1.44003 0.793893 0.151974 -0.587787 0.794613 +0.25 -0.587785 0.769422 1.40003 0.793893 0.250367 -0.587787 0.7693 +0.158211 -0.535827 0.829373 1.44003 0.767913 0.158557 -0.535828 0.829306 +0.151595 -0.587785 0.794688 1.44003 0.793893 0.151974 -0.587787 0.794613 +0.260912 -0.535827 0.803004 1.40003 0.767913 0.261246 -0.535829 0.802894 +0.158211 -0.535827 0.829373 1.44003 0.767913 0.158557 -0.535828 0.829306 +0.050799 -0.587785 0.807421 1.48003 0.793893 0.051184 -0.587787 0.807395 +0.151595 -0.587785 0.794688 1.44003 0.793893 0.151974 -0.587787 0.794613 +0.053016 -0.535827 0.842663 1.48003 0.767913 0.053367 -0.535828 0.842639 +0.050799 -0.587785 0.807421 1.48003 0.793893 0.051184 -0.587787 0.807395 +0.158211 -0.535827 0.829373 1.44003 0.767913 0.158557 -0.535828 0.829306 +0.053016 -0.535827 0.842663 1.48003 0.767913 0.053367 -0.535828 0.842639 +-0.050799 -0.587785 0.807421 1.52003 0.793893 -0.050413 -0.587787 0.807444 +0.050799 -0.587785 0.807421 1.48003 0.793893 0.051184 -0.587787 0.807395 +-0.053016 -0.535827 0.842663 1.52003 0.767913 -0.052665 -0.535828 0.842683 +-0.050799 -0.587785 0.807421 1.52003 0.793893 -0.050413 -0.587787 0.807444 +0.053016 -0.535827 0.842663 1.48003 0.767913 0.053367 -0.535828 0.842639 +-0.053016 -0.535827 0.842663 -0.479968 0.767913 -0.052665 -0.535828 0.842683 +-0.151595 -0.587785 0.794688 -0.439968 0.793893 -0.151215 -0.587787 0.794758 +-0.050799 -0.587785 0.807421 -0.479968 0.793893 -0.050413 -0.587787 0.807444 +-0.158211 -0.535827 0.829373 -0.439968 0.767913 -0.157865 -0.535828 0.829437 +-0.151595 -0.587785 0.794688 -0.439968 0.793893 -0.151215 -0.587787 0.794758 +-0.053016 -0.535827 0.842663 -0.479968 0.767913 -0.052665 -0.535828 0.842683 +-0.158211 -0.535827 0.829373 -0.439968 0.767913 -0.157865 -0.535828 0.829437 +-0.25 -0.587785 0.769422 -0.399968 0.793893 -0.249632 -0.587787 0.769539 +-0.151595 -0.587785 0.794688 -0.439968 0.793893 -0.151215 -0.587787 0.794758 +-0.260912 -0.535827 0.803004 -0.399968 0.767913 -0.260577 -0.535828 0.803111 +-0.25 -0.587785 0.769422 -0.399968 0.793893 -0.249632 -0.587787 0.769539 +-0.158211 -0.535827 0.829373 -0.439968 0.767913 -0.157865 -0.535828 0.829437 +-0.260912 -0.535827 0.803004 -0.399968 0.767913 -0.260577 -0.535828 0.803111 +-0.344463 -0.587785 0.732021 -0.359968 0.793893 -0.344113 -0.587787 0.732184 +-0.25 -0.587785 0.769422 -0.399968 0.793893 -0.249632 -0.587787 0.769539 +-0.359498 -0.535827 0.763971 -0.359968 0.767913 -0.359179 -0.535828 0.76412 +-0.344463 -0.587785 0.732021 -0.359968 0.793893 -0.344113 -0.587787 0.732184 +-0.260912 -0.535827 0.803004 -0.399968 0.767913 -0.260577 -0.535828 0.803111 +-0.359498 -0.535827 0.763971 -0.359968 0.767913 -0.359179 -0.535828 0.76412 +-0.433493 -0.587785 0.683076 -0.319968 0.793893 -0.433166 -0.587787 0.683282 +-0.344463 -0.587785 0.732021 -0.359968 0.793893 -0.344113 -0.587787 0.732184 +-0.452414 -0.535827 0.71289 -0.319968 0.767913 -0.452116 -0.535828 0.713077 +-0.433493 -0.587785 0.683076 -0.319968 0.793893 -0.433166 -0.587787 0.683282 +-0.359498 -0.535827 0.763971 -0.359968 0.767913 -0.359179 -0.535828 0.76412 +-0.452414 -0.535827 0.71289 -0.319968 0.767913 -0.452116 -0.535828 0.713077 +-0.515687 -0.587785 0.623359 -0.279968 0.793893 -0.515388 -0.587787 0.623604 +-0.433493 -0.587785 0.683076 -0.319968 0.793893 -0.433166 -0.587787 0.683282 +-0.538195 -0.535827 0.650566 -0.279968 0.767913 -0.537923 -0.535828 0.65079 +-0.515687 -0.587785 0.623359 -0.279968 0.793893 -0.515388 -0.587787 0.623604 +-0.452414 -0.535827 0.71289 -0.319968 0.767913 -0.452116 -0.535828 0.713077 +-0.538195 -0.535827 0.650566 -0.279968 0.767913 -0.537923 -0.535828 0.65079 +-0.589749 -0.587785 0.553811 -0.239968 0.793893 -0.589482 -0.587787 0.554091 +-0.515687 -0.587785 0.623359 -0.279968 0.793893 -0.515388 -0.587787 0.623604 +-0.615489 -0.535827 0.577983 -0.239968 0.767913 -0.615247 -0.535828 0.578238 +-0.589749 -0.587785 0.553811 -0.239968 0.793893 -0.589482 -0.587787 0.554091 +-0.538195 -0.535827 0.650566 -0.279968 0.767913 -0.537923 -0.535828 0.65079 +-0.615489 -0.535827 0.577983 -0.239968 0.767913 -0.615247 -0.535828 0.578238 +-0.654509 -0.587785 0.475529 -0.199968 0.793893 -0.65428 -0.587787 0.47584 +-0.589749 -0.587785 0.553811 -0.239968 0.793893 -0.589482 -0.587787 0.554091 +-0.683076 -0.535827 0.496284 -0.199968 0.767913 -0.682868 -0.535828 0.496567 +-0.654509 -0.587785 0.475529 -0.199968 0.793893 -0.65428 -0.587787 0.47584 +-0.615489 -0.535827 0.577983 -0.239968 0.767913 -0.615247 -0.535828 0.578238 +-0.683076 -0.535827 0.496284 -0.199968 0.767913 -0.682868 -0.535828 0.496567 +-0.708948 -0.587785 0.389747 -0.159968 0.793893 -0.70876 -0.587787 0.390085 +-0.654509 -0.587785 0.475529 -0.199968 0.793893 -0.65428 -0.587787 0.47584 +-0.739891 -0.535827 0.406758 -0.159968 0.767913 -0.73972 -0.535828 0.407066 +-0.708948 -0.587785 0.389747 -0.159968 0.793893 -0.70876 -0.587787 0.390085 +-0.683076 -0.535827 0.496284 -0.199968 0.767913 -0.682868 -0.535828 0.496567 +-0.739891 -0.535827 0.406758 -0.159968 0.767913 -0.73972 -0.535828 0.407066 +-0.752206 -0.587785 0.297819 -0.119968 0.793893 -0.752062 -0.587787 0.298178 +-0.708948 -0.587785 0.389747 -0.159968 0.793893 -0.70876 -0.587787 0.390085 +-0.785037 -0.535827 0.310818 -0.119968 0.767913 -0.784906 -0.535829 0.311145 +-0.752206 -0.587785 0.297819 -0.119968 0.793893 -0.752062 -0.587787 0.298178 +-0.739891 -0.535827 0.406758 -0.159968 0.767913 -0.73972 -0.535828 0.407066 +-0.785037 -0.535827 0.310818 -0.119968 0.767913 -0.784906 -0.535829 0.311145 +-0.783601 -0.587785 0.201194 -0.079968 0.793893 -0.783503 -0.587787 0.201568 +-0.752206 -0.587785 0.297819 -0.119968 0.793893 -0.752062 -0.587787 0.298178 +-0.817802 -0.535827 0.209976 -0.079968 0.767913 -0.817713 -0.535829 0.210317 +-0.783601 -0.587785 0.201194 -0.079968 0.793893 -0.783503 -0.587787 0.201568 +-0.785037 -0.535827 0.310818 -0.119968 0.767913 -0.784906 -0.535829 0.311145 +-0.817802 -0.535827 0.209976 -0.079968 0.767913 -0.817713 -0.535829 0.210317 +-0.802638 -0.587785 0.101397 -0.039968 0.793893 -0.802588 -0.587787 0.10178 +-0.783601 -0.587785 0.201194 -0.079968 0.793893 -0.783503 -0.587787 0.201568 +-0.837671 -0.535827 0.105822 -0.039968 0.767913 -0.837625 -0.535828 0.106171 +-0.802638 -0.587785 0.101397 -0.039968 0.793893 -0.802588 -0.587787 0.10178 +-0.817802 -0.535827 0.209976 -0.079968 0.767913 -0.817713 -0.535829 0.210317 +-0.837671 -0.535827 0.105822 -0.039968 0.767913 -0.837625 -0.535828 0.106171 +-0.809018 -0.587785 -0 3.2e-005 0.793893 -0.809016 -0.587786 0.000386 +-0.802638 -0.587785 0.101397 -0.039968 0.793893 -0.802588 -0.587787 0.10178 +-0.844329 -0.535827 -0 3.2e-005 0.767913 -0.844327 -0.535829 0.000352 +-0.809018 -0.587785 -0 3.2e-005 0.793893 -0.809016 -0.587786 0.000386 +-0.837671 -0.535827 0.105822 -0.039968 0.767913 -0.837625 -0.535828 0.106171 +-0.844329 -0.535827 -0 3.2e-005 0.767913 -0.844327 -0.535829 0.000352 +-0.802638 -0.587785 -0.101397 0.040032 0.793893 -0.802685 -0.587787 -0.101013 +-0.809018 -0.587785 -0 3.2e-005 0.793893 -0.809016 -0.587786 0.000386 +-0.837671 -0.535827 -0.105823 0.040032 0.767913 -0.837713 -0.535829 -0.105473 +-0.802638 -0.587785 -0.101397 0.040032 0.793893 -0.802685 -0.587787 -0.101013 +-0.844329 -0.535827 -0 3.2e-005 0.767913 -0.844327 -0.535829 0.000352 +-0.837671 -0.535827 -0.105823 0.040032 0.767913 -0.837713 -0.535829 -0.105473 +-0.783601 -0.587785 -0.201195 0.080032 0.793893 -0.783695 -0.587787 -0.20082 +-0.802638 -0.587785 -0.101397 0.040032 0.793893 -0.802685 -0.587787 -0.101013 +-0.817802 -0.535827 -0.209976 0.080032 0.767913 -0.817889 -0.535828 -0.209635 +-0.783601 -0.587785 -0.201195 0.080032 0.793893 -0.783695 -0.587787 -0.20082 +-0.837671 -0.535827 -0.105823 0.040032 0.767913 -0.837713 -0.535829 -0.105473 +-0.817802 -0.535827 -0.209976 0.080032 0.767913 -0.817889 -0.535828 -0.209635 +-0.752205 -0.587785 -0.297819 0.120032 0.793893 -0.752346 -0.587787 -0.29746 +-0.783601 -0.587785 -0.201195 0.080032 0.793893 -0.783695 -0.587787 -0.20082 +-0.785037 -0.535827 -0.310818 0.120032 0.767913 -0.785165 -0.535828 -0.31049 +-0.752205 -0.587785 -0.297819 0.120032 0.793893 -0.752346 -0.587787 -0.29746 +-0.817802 -0.535827 -0.209976 0.080032 0.767913 -0.817889 -0.535828 -0.209635 +-0.785037 -0.535827 -0.310818 0.120032 0.767913 -0.785165 -0.535828 -0.31049 +-0.708947 -0.587785 -0.389747 0.160032 0.793893 -0.709132 -0.587786 -0.389408 +-0.752205 -0.587785 -0.297819 0.120032 0.793893 -0.752346 -0.587787 -0.29746 +-0.739891 -0.535827 -0.406758 0.160032 0.767913 -0.740059 -0.535828 -0.406449 +-0.708947 -0.587785 -0.389747 0.160032 0.793893 -0.709132 -0.587786 -0.389408 +-0.785037 -0.535827 -0.310818 0.120032 0.767913 -0.785165 -0.535828 -0.31049 +-0.739891 -0.535827 -0.406758 0.160032 0.767913 -0.740059 -0.535828 -0.406449 +-0.654509 -0.587785 -0.475529 0.200032 0.793893 -0.654734 -0.587787 -0.475215 +-0.708947 -0.587785 -0.389747 0.160032 0.793893 -0.709132 -0.587786 -0.389408 +-0.683076 -0.535827 -0.496284 0.200032 0.767913 -0.683281 -0.535829 -0.495998 +-0.654509 -0.587785 -0.475529 0.200032 0.793893 -0.654734 -0.587787 -0.475215 +-0.739891 -0.535827 -0.406758 0.160032 0.767913 -0.740059 -0.535828 -0.406449 +-0.683076 -0.535827 -0.496284 0.200032 0.767913 -0.683281 -0.535829 -0.495998 +-0.589748 -0.587785 -0.553811 0.240032 0.793893 -0.590011 -0.587787 -0.553528 +-0.654509 -0.587785 -0.475529 0.200032 0.793893 -0.654734 -0.587787 -0.475215 +-0.615489 -0.535827 -0.577983 0.240032 0.767913 -0.615729 -0.535828 -0.577725 +-0.589748 -0.587785 -0.553811 0.240032 0.793893 -0.590011 -0.587787 -0.553528 +-0.683076 -0.535827 -0.496284 0.200032 0.767913 -0.683281 -0.535829 -0.495998 +-0.615489 -0.535827 -0.577983 0.240032 0.767913 -0.615729 -0.535828 -0.577725 +-0.515687 -0.587785 -0.623359 0.280032 0.793893 -0.515984 -0.587787 -0.623111 +-0.589748 -0.587785 -0.553811 0.240032 0.793893 -0.590011 -0.587787 -0.553528 +-0.538195 -0.535827 -0.650566 0.280032 0.767913 -0.538465 -0.535828 -0.650341 +-0.515687 -0.587785 -0.623359 0.280032 0.793893 -0.515984 -0.587787 -0.623111 +-0.615489 -0.535827 -0.577983 0.240032 0.767913 -0.615729 -0.535828 -0.577725 +-0.538195 -0.535827 -0.650566 0.280032 0.767913 -0.538465 -0.535828 -0.650341 +-0.433493 -0.587785 -0.683076 0.320032 0.793893 -0.433818 -0.587786 -0.682868 +-0.515687 -0.587785 -0.623359 0.280032 0.793893 -0.515984 -0.587787 -0.623111 +-0.452414 -0.535827 -0.71289 0.320032 0.767913 -0.45271 -0.535828 -0.712701 +-0.433493 -0.587785 -0.683076 0.320032 0.793893 -0.433818 -0.587786 -0.682868 +-0.538195 -0.535827 -0.650566 0.280032 0.767913 -0.538465 -0.535828 -0.650341 +-0.452414 -0.535827 -0.71289 0.320032 0.767913 -0.45271 -0.535828 -0.712701 +-0.344463 -0.587785 -0.732021 0.360032 0.793893 -0.344811 -0.587787 -0.731855 +-0.433493 -0.587785 -0.683076 0.320032 0.793893 -0.433818 -0.587786 -0.682868 +-0.359497 -0.535827 -0.763971 0.360032 0.767913 -0.359815 -0.535828 -0.76382 +-0.344463 -0.587785 -0.732021 0.360032 0.793893 -0.344811 -0.587787 -0.731855 +-0.452414 -0.535827 -0.71289 0.320032 0.767913 -0.45271 -0.535828 -0.712701 +-0.359497 -0.535827 -0.763971 0.360032 0.767913 -0.359815 -0.535828 -0.76382 +-0.25 -0.587785 -0.769421 0.400032 0.793893 -0.250367 -0.587787 -0.7693 +-0.344463 -0.587785 -0.732021 0.360032 0.793893 -0.344811 -0.587787 -0.731855 +-0.260912 -0.535827 -0.803004 0.400032 0.767913 -0.261246 -0.535828 -0.802894 +-0.25 -0.587785 -0.769421 0.400032 0.793893 -0.250367 -0.587787 -0.7693 +-0.359497 -0.535827 -0.763971 0.360032 0.767913 -0.359815 -0.535828 -0.76382 +-0.260912 -0.535827 -0.803004 0.400032 0.767913 -0.261246 -0.535828 -0.802894 +-0.151595 -0.587785 -0.794687 0.440032 0.793893 -0.151974 -0.587787 -0.794614 +-0.25 -0.587785 -0.769421 0.400032 0.793893 -0.250367 -0.587787 -0.7693 +-0.158211 -0.535827 -0.829373 0.440032 0.767913 -0.158557 -0.535828 -0.829306 +-0.151595 -0.587785 -0.794687 0.440032 0.793893 -0.151974 -0.587787 -0.794614 +-0.260912 -0.535827 -0.803004 0.400032 0.767913 -0.261246 -0.535828 -0.802894 +-0.158211 -0.535827 -0.829373 0.440032 0.767913 -0.158557 -0.535828 -0.829306 +-0.050799 -0.587785 -0.807421 0.480032 0.793893 -0.051184 -0.587787 -0.807395 +-0.151595 -0.587785 -0.794687 0.440032 0.793893 -0.151974 -0.587787 -0.794614 +-0.053016 -0.535827 -0.842662 0.480032 0.767913 -0.053367 -0.535828 -0.842639 +-0.050799 -0.587785 -0.807421 0.480032 0.793893 -0.051184 -0.587787 -0.807395 +-0.158211 -0.535827 -0.829373 0.440032 0.767913 -0.158557 -0.535828 -0.829306 +-0.053016 -0.535827 -0.842662 0.480032 0.767913 -0.053367 -0.535828 -0.842639 +0.050799 -0.587785 -0.807421 0.520032 0.793893 0.050413 -0.587786 -0.807444 +-0.050799 -0.587785 -0.807421 0.480032 0.793893 -0.051184 -0.587787 -0.807395 +0.053016 -0.535827 -0.842662 0.520032 0.767913 0.052665 -0.535828 -0.842683 +0.050799 -0.587785 -0.807421 0.520032 0.793893 0.050413 -0.587786 -0.807444 +-0.053016 -0.535827 -0.842662 0.480032 0.767913 -0.053367 -0.535828 -0.842639 +0.053016 -0.535827 -0.842662 0.520032 0.767913 0.052665 -0.535828 -0.842683 +0.151595 -0.587785 -0.794687 0.560032 0.793893 0.151215 -0.587787 -0.794759 +0.050799 -0.587785 -0.807421 0.520032 0.793893 0.050413 -0.587786 -0.807444 +0.158211 -0.535827 -0.829373 0.560032 0.767913 0.157865 -0.535828 -0.829438 +0.151595 -0.587785 -0.794687 0.560032 0.793893 0.151215 -0.587787 -0.794759 +0.053016 -0.535827 -0.842662 0.520032 0.767913 0.052665 -0.535828 -0.842683 +0.158211 -0.535827 -0.829373 0.560032 0.767913 0.157865 -0.535828 -0.829438 +0.25 -0.587785 -0.769421 0.600032 0.793893 0.249633 -0.587786 -0.769539 +0.151595 -0.587785 -0.794687 0.560032 0.793893 0.151215 -0.587787 -0.794759 +0.260912 -0.535827 -0.803004 0.600032 0.767913 0.260577 -0.535829 -0.803111 +0.25 -0.587785 -0.769421 0.600032 0.793893 0.249633 -0.587786 -0.769539 +0.158211 -0.535827 -0.829373 0.560032 0.767913 0.157865 -0.535828 -0.829438 +0.260912 -0.535827 -0.803004 0.600032 0.767913 0.260577 -0.535829 -0.803111 +0.344463 -0.587785 -0.732021 0.640032 0.793893 0.344113 -0.587786 -0.732184 +0.25 -0.587785 -0.769421 0.600032 0.793893 0.249633 -0.587786 -0.769539 +0.359498 -0.535827 -0.763971 0.640032 0.767913 0.359178 -0.535828 -0.76412 +0.344463 -0.587785 -0.732021 0.640032 0.793893 0.344113 -0.587786 -0.732184 +0.260912 -0.535827 -0.803004 0.600032 0.767913 0.260577 -0.535829 -0.803111 +0.359498 -0.535827 -0.763971 0.640032 0.767913 0.359178 -0.535828 -0.76412 +0.433493 -0.587785 -0.683076 0.680032 0.793893 0.433166 -0.587787 -0.683282 +0.344463 -0.587785 -0.732021 0.640032 0.793893 0.344113 -0.587786 -0.732184 +0.452414 -0.535827 -0.71289 0.680032 0.767913 0.452116 -0.535828 -0.713077 +0.433493 -0.587785 -0.683076 0.680032 0.793893 0.433166 -0.587787 -0.683282 +0.359498 -0.535827 -0.763971 0.640032 0.767913 0.359178 -0.535828 -0.76412 +0.452414 -0.535827 -0.71289 0.680032 0.767913 0.452116 -0.535828 -0.713077 +0.515687 -0.587785 -0.623358 0.720032 0.793893 0.515389 -0.587786 -0.623604 +0.433493 -0.587785 -0.683076 0.680032 0.793893 0.433166 -0.587787 -0.683282 +0.538195 -0.535827 -0.650566 0.720032 0.767913 0.537923 -0.535828 -0.650789 +0.515687 -0.587785 -0.623358 0.720032 0.793893 0.515389 -0.587786 -0.623604 +0.452414 -0.535827 -0.71289 0.680032 0.767913 0.452116 -0.535828 -0.713077 +0.538195 -0.535827 -0.650566 0.720032 0.767913 0.537923 -0.535828 -0.650789 +0.589748 -0.587785 -0.55381 0.760032 0.793893 0.589483 -0.587787 -0.554091 +0.515687 -0.587785 -0.623358 0.720032 0.793893 0.515389 -0.587786 -0.623604 +0.615489 -0.535827 -0.577982 0.760032 0.767913 0.615247 -0.535828 -0.578238 +0.589748 -0.587785 -0.55381 0.760032 0.793893 0.589483 -0.587787 -0.554091 +0.538195 -0.535827 -0.650566 0.720032 0.767913 0.537923 -0.535828 -0.650789 +0.615489 -0.535827 -0.577982 0.760032 0.767913 0.615247 -0.535828 -0.578238 +0.654509 -0.587785 -0.475528 0.800032 0.793893 0.654281 -0.587787 -0.47584 +0.589748 -0.587785 -0.55381 0.760032 0.793893 0.589483 -0.587787 -0.554091 +0.683076 -0.535827 -0.496284 0.800032 0.767913 0.682868 -0.535828 -0.496567 +0.654509 -0.587785 -0.475528 0.800032 0.793893 0.654281 -0.587787 -0.47584 +0.615489 -0.535827 -0.577982 0.760032 0.767913 0.615247 -0.535828 -0.578238 +0.683076 -0.535827 -0.496284 0.800032 0.767913 0.682868 -0.535828 -0.496567 +0.708947 -0.587785 -0.389747 0.840032 0.793893 0.70876 -0.587787 -0.390085 +0.654509 -0.587785 -0.475528 0.800032 0.793893 0.654281 -0.587787 -0.47584 +0.73989 -0.535827 -0.406758 0.840032 0.767913 0.73972 -0.535828 -0.407066 +0.708947 -0.587785 -0.389747 0.840032 0.793893 0.70876 -0.587787 -0.390085 +0.683076 -0.535827 -0.496284 0.800032 0.767913 0.682868 -0.535828 -0.496567 +0.73989 -0.535827 -0.406758 0.840032 0.767913 0.73972 -0.535828 -0.407066 +0.752205 -0.587785 -0.297819 0.880032 0.793893 0.752062 -0.587787 -0.298178 +0.708947 -0.587785 -0.389747 0.840032 0.793893 0.70876 -0.587787 -0.390085 +0.785036 -0.535827 -0.310818 0.880032 0.767913 0.784906 -0.535828 -0.311145 +0.752205 -0.587785 -0.297819 0.880032 0.793893 0.752062 -0.587787 -0.298178 +0.73989 -0.535827 -0.406758 0.840032 0.767913 0.73972 -0.535828 -0.407066 +0.785036 -0.535827 -0.310818 0.880032 0.767913 0.784906 -0.535828 -0.311145 +0.7836 -0.587785 -0.201194 0.920032 0.793893 0.783503 -0.587787 -0.201568 +0.752205 -0.587785 -0.297819 0.880032 0.793893 0.752062 -0.587787 -0.298178 +0.817802 -0.535827 -0.209976 0.920032 0.767913 0.817714 -0.535828 -0.210317 +0.7836 -0.587785 -0.201194 0.920032 0.793893 0.783503 -0.587787 -0.201568 +0.785036 -0.535827 -0.310818 0.880032 0.767913 0.784906 -0.535828 -0.311145 +0.817802 -0.535827 -0.209976 0.920032 0.767913 0.817714 -0.535828 -0.210317 +0.802638 -0.587785 -0.101397 0.960032 0.793893 0.802588 -0.587787 -0.10178 +0.7836 -0.587785 -0.201194 0.920032 0.793893 0.783503 -0.587787 -0.201568 +0.83767 -0.535827 -0.105822 0.960032 0.767913 0.837625 -0.535828 -0.106172 +0.802638 -0.587785 -0.101397 0.960032 0.793893 0.802588 -0.587787 -0.10178 +0.817802 -0.535827 -0.209976 0.920032 0.767913 0.817714 -0.535828 -0.210317 +0.83767 -0.535827 -0.105822 0.960032 0.767913 0.837625 -0.535828 -0.106172 +0.809017 -0.587785 -0 1.00003 0.793893 0.809016 -0.587786 -0.00039 +0.802638 -0.587785 -0.101397 0.960032 0.793893 0.802588 -0.587787 -0.10178 +0.844328 -0.535827 -0 1.00003 0.767913 0.844327 -0.535828 -0.000356 +0.809017 -0.587785 -0 1.00003 0.793893 0.809016 -0.587786 -0.00039 +0.83767 -0.535827 -0.105822 0.960032 0.767913 0.837625 -0.535828 -0.106172 +0.844328 -0.535827 -0 1.00003 0.767913 0.844327 -0.535828 -0.000356 +0.802639 -0.587785 0.101397 1.04003 0.793893 0.802686 -0.587786 0.10101 +0.809017 -0.587785 -0 1.00003 0.793893 0.809016 -0.587786 -0.00039 +0.837671 -0.535827 0.105823 1.04003 0.767913 0.837714 -0.535828 0.105469 +0.802639 -0.587785 0.101397 1.04003 0.793893 0.802686 -0.587786 0.10101 +0.844328 -0.535827 -0 1.00003 0.767913 0.844327 -0.535828 -0.000356 +0.869398 -0.481753 0.109831 1.04003 0.740877 0.869437 -0.481754 0.109513 +0.817803 -0.535827 0.209976 1.08003 0.767913 0.817888 -0.535828 0.209635 +0.837671 -0.535827 0.105823 1.04003 0.767913 0.837714 -0.535828 0.105469 +0.848777 -0.481753 0.217929 1.08003 0.740877 0.848854 -0.481755 0.217622 +0.817803 -0.535827 0.209976 1.08003 0.767913 0.817888 -0.535828 0.209635 +0.869398 -0.481753 0.109831 1.04003 0.740877 0.869437 -0.481754 0.109513 +0.848777 -0.481753 0.217929 1.08003 0.740877 0.848854 -0.481755 0.217622 +0.785037 -0.535827 0.310818 1.12003 0.767913 0.785165 -0.535828 0.31049 +0.817803 -0.535827 0.209976 1.08003 0.767913 0.817888 -0.535828 0.209635 +0.81477 -0.481753 0.32259 1.12003 0.740877 0.814885 -0.481755 0.322296 +0.785037 -0.535827 0.310818 1.12003 0.767913 0.785165 -0.535828 0.31049 +0.848777 -0.481753 0.217929 1.08003 0.740877 0.848854 -0.481755 0.217622 +0.81477 -0.481753 0.32259 1.12003 0.740877 0.814885 -0.481755 0.322296 +0.739891 -0.535827 0.406759 1.16003 0.767913 0.740059 -0.535828 0.406449 +0.785037 -0.535827 0.310818 1.12003 0.767913 0.785165 -0.535828 0.31049 +0.767914 -0.481753 0.422164 1.16003 0.740877 0.768065 -0.481755 0.421887 +0.739891 -0.535827 0.406759 1.16003 0.767913 0.740059 -0.535828 0.406449 +0.81477 -0.481753 0.32259 1.12003 0.740877 0.814885 -0.481755 0.322296 +0.767914 -0.481753 0.422164 1.16003 0.740877 0.768065 -0.481755 0.421887 +0.683076 -0.535827 0.496284 1.20003 0.767913 0.683282 -0.535828 0.495998 +0.739891 -0.535827 0.406759 1.16003 0.767913 0.740059 -0.535828 0.406449 +0.708948 -0.481753 0.515081 1.20003 0.740877 0.709132 -0.481755 0.514824 +0.683076 -0.535827 0.496284 1.20003 0.767913 0.683282 -0.535828 0.495998 +0.767914 -0.481753 0.422164 1.16003 0.740877 0.768065 -0.481755 0.421887 +0.708948 -0.481753 0.515081 1.20003 0.740877 0.709132 -0.481755 0.514824 +0.615489 -0.535827 0.577983 1.24003 0.767913 0.615729 -0.535829 0.577725 +0.683076 -0.535827 0.496284 1.20003 0.767913 0.683282 -0.535828 0.495998 +0.638801 -0.481753 0.599874 1.24003 0.740877 0.639016 -0.481755 0.599642 +0.615489 -0.535827 0.577983 1.24003 0.767913 0.615729 -0.535829 0.577725 +0.708948 -0.481753 0.515081 1.20003 0.740877 0.709132 -0.481755 0.514824 +0.638801 -0.481753 0.599874 1.24003 0.740877 0.639016 -0.481755 0.599642 +0.538195 -0.535827 0.650567 1.28003 0.767913 0.538466 -0.535829 0.65034 +0.615489 -0.535827 0.577983 1.24003 0.767913 0.615729 -0.535829 0.577725 +0.558579 -0.481753 0.675207 1.28003 0.740877 0.558822 -0.481755 0.675004 +0.538195 -0.535827 0.650567 1.28003 0.767913 0.538466 -0.535829 0.65034 +0.638801 -0.481753 0.599874 1.24003 0.740877 0.639016 -0.481755 0.599642 +0.558579 -0.481753 0.675207 1.28003 0.740877 0.558822 -0.481755 0.675004 +0.452414 -0.535827 0.71289 1.32003 0.767913 0.45271 -0.535828 0.7127 +0.538195 -0.535827 0.650567 1.28003 0.767913 0.538466 -0.535829 0.65034 +0.469549 -0.481753 0.739891 1.32003 0.740877 0.469815 -0.481755 0.73972 +0.452414 -0.535827 0.71289 1.32003 0.767913 0.45271 -0.535828 0.7127 +0.558579 -0.481753 0.675207 1.28003 0.740877 0.558822 -0.481755 0.675004 +0.469549 -0.481753 0.739891 1.32003 0.740877 0.469815 -0.481755 0.73972 +0.359498 -0.535827 0.763972 1.36003 0.767913 0.359815 -0.535829 0.76382 +0.452414 -0.535827 0.71289 1.32003 0.767913 0.45271 -0.535828 0.7127 +0.373114 -0.481753 0.792907 1.36003 0.740877 0.373399 -0.481755 0.792771 +0.359498 -0.535827 0.763972 1.36003 0.767913 0.359815 -0.535829 0.76382 +0.469549 -0.481753 0.739891 1.32003 0.740877 0.469815 -0.481755 0.73972 +0.373114 -0.481753 0.792907 1.36003 0.740877 0.373399 -0.481755 0.792771 +0.260912 -0.535827 0.803004 1.40003 0.767913 0.261246 -0.535829 0.802894 +0.359498 -0.535827 0.763972 1.36003 0.767913 0.359815 -0.535829 0.76382 +0.270794 -0.481753 0.833418 1.40003 0.740877 0.271094 -0.481755 0.833319 +0.260912 -0.535827 0.803004 1.40003 0.767913 0.261246 -0.535829 0.802894 +0.373114 -0.481753 0.792907 1.36003 0.740877 0.373399 -0.481755 0.792771 +0.270794 -0.481753 0.833418 1.40003 0.740877 0.271094 -0.481755 0.833319 +0.158211 -0.535827 0.829373 1.44003 0.767913 0.158557 -0.535828 0.829306 +0.260912 -0.535827 0.803004 1.40003 0.767913 0.261246 -0.535829 0.802894 +0.164204 -0.481753 0.860786 1.44003 0.740877 0.164514 -0.481755 0.860725 +0.158211 -0.535827 0.829373 1.44003 0.767913 0.158557 -0.535828 0.829306 +0.270794 -0.481753 0.833418 1.40003 0.740877 0.271094 -0.481755 0.833319 +0.164204 -0.481753 0.860786 1.44003 0.740877 0.164514 -0.481755 0.860725 +0.053016 -0.535827 0.842663 1.48003 0.767913 0.053367 -0.535828 0.842639 +0.158211 -0.535827 0.829373 1.44003 0.767913 0.158557 -0.535828 0.829306 +0.055024 -0.481753 0.874578 1.48003 0.740877 0.055339 -0.481755 0.874557 +0.053016 -0.535827 0.842663 1.48003 0.767913 0.053367 -0.535828 0.842639 +0.164204 -0.481753 0.860786 1.44003 0.740877 0.164514 -0.481755 0.860725 +0.055024 -0.481753 0.874578 1.48003 0.740877 0.055339 -0.481755 0.874557 +-0.053016 -0.535827 0.842663 1.52003 0.767913 -0.052665 -0.535828 0.842683 +0.053016 -0.535827 0.842663 1.48003 0.767913 0.053367 -0.535828 0.842639 +-0.055024 -0.481753 0.874578 1.52003 0.740877 -0.054708 -0.481755 0.874597 +-0.053016 -0.535827 0.842663 1.52003 0.767913 -0.052665 -0.535828 0.842683 +0.055024 -0.481753 0.874578 1.48003 0.740877 0.055339 -0.481755 0.874557 +-0.055024 -0.481753 0.874578 -0.479968 0.740877 -0.054708 -0.481755 0.874597 +-0.158211 -0.535827 0.829373 -0.439968 0.767913 -0.157865 -0.535828 0.829437 +-0.053016 -0.535827 0.842663 -0.479968 0.767913 -0.052665 -0.535828 0.842683 +-0.164204 -0.481753 0.860786 -0.439968 0.740877 -0.163892 -0.481755 0.860843 +-0.158211 -0.535827 0.829373 -0.439968 0.767913 -0.157865 -0.535828 0.829437 +-0.055024 -0.481753 0.874578 -0.479968 0.740877 -0.054708 -0.481755 0.874597 +-0.164204 -0.481753 0.860786 -0.439968 0.740877 -0.163892 -0.481755 0.860843 +-0.260912 -0.535827 0.803004 -0.399968 0.767913 -0.260577 -0.535828 0.803111 +-0.158211 -0.535827 0.829373 -0.439968 0.767913 -0.157865 -0.535828 0.829437 +-0.270794 -0.481753 0.833418 -0.399968 0.740877 -0.270493 -0.481755 0.833514 +-0.260912 -0.535827 0.803004 -0.399968 0.767913 -0.260577 -0.535828 0.803111 +-0.164204 -0.481753 0.860786 -0.439968 0.740877 -0.163892 -0.481755 0.860843 +-0.270794 -0.481753 0.833418 -0.399968 0.740877 -0.270493 -0.481755 0.833514 +-0.359498 -0.535827 0.763971 -0.359968 0.767913 -0.359179 -0.535828 0.76412 +-0.260912 -0.535827 0.803004 -0.399968 0.767913 -0.260577 -0.535828 0.803111 +-0.373114 -0.481753 0.792907 -0.359968 0.740877 -0.372827 -0.481755 0.79304 +-0.359498 -0.535827 0.763971 -0.359968 0.767913 -0.359179 -0.535828 0.76412 +-0.270794 -0.481753 0.833418 -0.399968 0.740877 -0.270493 -0.481755 0.833514 +-0.373114 -0.481753 0.792907 -0.359968 0.740877 -0.372827 -0.481755 0.79304 +-0.452414 -0.535827 0.71289 -0.319968 0.767913 -0.452116 -0.535828 0.713077 +-0.359498 -0.535827 0.763971 -0.359968 0.767913 -0.359179 -0.535828 0.76412 +-0.469549 -0.481753 0.739891 -0.319968 0.740877 -0.469281 -0.481755 0.740059 +-0.452414 -0.535827 0.71289 -0.319968 0.767913 -0.452116 -0.535828 0.713077 +-0.373114 -0.481753 0.792907 -0.359968 0.740877 -0.372827 -0.481755 0.79304 +-0.469549 -0.481753 0.739891 -0.319968 0.740877 -0.469281 -0.481755 0.740059 +-0.538195 -0.535827 0.650566 -0.279968 0.767913 -0.537923 -0.535828 0.65079 +-0.452414 -0.535827 0.71289 -0.319968 0.767913 -0.452116 -0.535828 0.713077 +-0.558579 -0.481753 0.675206 -0.279968 0.740877 -0.558335 -0.481755 0.675407 +-0.538195 -0.535827 0.650566 -0.279968 0.767913 -0.537923 -0.535828 0.65079 +-0.469549 -0.481753 0.739891 -0.319968 0.740877 -0.469281 -0.481755 0.740059 +-0.558579 -0.481753 0.675206 -0.279968 0.740877 -0.558335 -0.481755 0.675407 +-0.615489 -0.535827 0.577983 -0.239968 0.767913 -0.615247 -0.535828 0.578238 +-0.538195 -0.535827 0.650566 -0.279968 0.767913 -0.537923 -0.535828 0.65079 +-0.638801 -0.481753 0.599874 -0.239968 0.740877 -0.638583 -0.481755 0.600103 +-0.615489 -0.535827 0.577983 -0.239968 0.767913 -0.615247 -0.535828 0.578238 +-0.558579 -0.481753 0.675206 -0.279968 0.740877 -0.558335 -0.481755 0.675407 +-0.638801 -0.481753 0.599874 -0.239968 0.740877 -0.638583 -0.481755 0.600103 +-0.683076 -0.535827 0.496284 -0.199968 0.767913 -0.682868 -0.535828 0.496567 +-0.615489 -0.535827 0.577983 -0.239968 0.767913 -0.615247 -0.535828 0.578238 +-0.708948 -0.481753 0.51508 -0.199968 0.740877 -0.70876 -0.481755 0.515336 +-0.683076 -0.535827 0.496284 -0.199968 0.767913 -0.682868 -0.535828 0.496567 +-0.638801 -0.481753 0.599874 -0.239968 0.740877 -0.638583 -0.481755 0.600103 +-0.708948 -0.481753 0.51508 -0.199968 0.740877 -0.70876 -0.481755 0.515336 +-0.739891 -0.535827 0.406758 -0.159968 0.767913 -0.73972 -0.535828 0.407066 +-0.683076 -0.535827 0.496284 -0.199968 0.767913 -0.682868 -0.535828 0.496567 +-0.767914 -0.481753 0.422164 -0.159968 0.740877 -0.76776 -0.481755 0.422441 +-0.739891 -0.535827 0.406758 -0.159968 0.767913 -0.73972 -0.535828 0.407066 +-0.708948 -0.481753 0.51508 -0.199968 0.740877 -0.70876 -0.481755 0.515336 +-0.767914 -0.481753 0.422164 -0.159968 0.740877 -0.76776 -0.481755 0.422441 +-0.785037 -0.535827 0.310818 -0.119968 0.767913 -0.784906 -0.535829 0.311145 +-0.739891 -0.535827 0.406758 -0.159968 0.767913 -0.73972 -0.535828 0.407066 +-0.81477 -0.481753 0.32259 -0.119968 0.740877 -0.814652 -0.481755 0.322884 +-0.785037 -0.535827 0.310818 -0.119968 0.767913 -0.784906 -0.535829 0.311145 +-0.767914 -0.481753 0.422164 -0.159968 0.740877 -0.76776 -0.481755 0.422441 +-0.81477 -0.481753 0.32259 -0.119968 0.740877 -0.814652 -0.481755 0.322884 +-0.817802 -0.535827 0.209976 -0.079968 0.767913 -0.817713 -0.535829 0.210317 +-0.785037 -0.535827 0.310818 -0.119968 0.767913 -0.784906 -0.535829 0.311145 +-0.848777 -0.481753 0.217929 -0.079968 0.740877 -0.848697 -0.481755 0.218235 +-0.817802 -0.535827 0.209976 -0.079968 0.767913 -0.817713 -0.535829 0.210317 +-0.81477 -0.481753 0.32259 -0.119968 0.740877 -0.814652 -0.481755 0.322884 +-0.848777 -0.481753 0.217929 -0.079968 0.740877 -0.848697 -0.481755 0.218235 +-0.837671 -0.535827 0.105822 -0.039968 0.767913 -0.837625 -0.535828 0.106171 +-0.817802 -0.535827 0.209976 -0.079968 0.767913 -0.817713 -0.535829 0.210317 +-0.869397 -0.481753 0.10983 -0.039968 0.740877 -0.869356 -0.481755 0.110144 +-0.837671 -0.535827 0.105822 -0.039968 0.767913 -0.837625 -0.535828 0.106171 +-0.848777 -0.481753 0.217929 -0.079968 0.740877 -0.848697 -0.481755 0.218235 +-0.869397 -0.481753 0.10983 -0.039968 0.740877 -0.869356 -0.481755 0.110144 +-0.844329 -0.535827 -0 3.2e-005 0.767913 -0.844327 -0.535829 0.000352 +-0.837671 -0.535827 0.105822 -0.039968 0.767913 -0.837625 -0.535828 0.106171 +-0.876307 -0.481753 -0 3.2e-005 0.740877 -0.876306 -0.481755 0.000316 +-0.844329 -0.535827 -0 3.2e-005 0.767913 -0.844327 -0.535829 0.000352 +-0.869397 -0.481753 0.10983 -0.039968 0.740877 -0.869356 -0.481755 0.110144 +-0.876307 -0.481753 -0 3.2e-005 0.740877 -0.876306 -0.481755 0.000316 +-0.837671 -0.535827 -0.105823 0.040032 0.767913 -0.837713 -0.535829 -0.105473 +-0.844329 -0.535827 -0 3.2e-005 0.767913 -0.844327 -0.535829 0.000352 +-0.869397 -0.481753 -0.109831 0.040032 0.740877 -0.869436 -0.481755 -0.109516 +-0.837671 -0.535827 -0.105823 0.040032 0.767913 -0.837713 -0.535829 -0.105473 +-0.876307 -0.481753 -0 3.2e-005 0.740877 -0.876306 -0.481755 0.000316 +-0.869397 -0.481753 -0.109831 0.040032 0.740877 -0.869436 -0.481755 -0.109516 +-0.817802 -0.535827 -0.209976 0.080032 0.767913 -0.817889 -0.535828 -0.209635 +-0.837671 -0.535827 -0.105823 0.040032 0.767913 -0.837713 -0.535829 -0.105473 +-0.848776 -0.481753 -0.217929 0.080032 0.740877 -0.848854 -0.481755 -0.217622 +-0.817802 -0.535827 -0.209976 0.080032 0.767913 -0.817889 -0.535828 -0.209635 +-0.869397 -0.481753 -0.109831 0.040032 0.740877 -0.869436 -0.481755 -0.109516 +-0.848776 -0.481753 -0.217929 0.080032 0.740877 -0.848854 -0.481755 -0.217622 +-0.785037 -0.535827 -0.310818 0.120032 0.767913 -0.785165 -0.535828 -0.31049 +-0.817802 -0.535827 -0.209976 0.080032 0.767913 -0.817889 -0.535828 -0.209635 +-0.81477 -0.481753 -0.32259 0.120032 0.740877 -0.814885 -0.481755 -0.322296 +-0.785037 -0.535827 -0.310818 0.120032 0.767913 -0.785165 -0.535828 -0.31049 +-0.848776 -0.481753 -0.217929 0.080032 0.740877 -0.848854 -0.481755 -0.217622 +-0.81477 -0.481753 -0.32259 0.120032 0.740877 -0.814885 -0.481755 -0.322296 +-0.739891 -0.535827 -0.406758 0.160032 0.767913 -0.740059 -0.535828 -0.406449 +-0.785037 -0.535827 -0.310818 0.120032 0.767913 -0.785165 -0.535828 -0.31049 +-0.767914 -0.481753 -0.422164 0.160032 0.740877 -0.768065 -0.481755 -0.421887 +-0.739891 -0.535827 -0.406758 0.160032 0.767913 -0.740059 -0.535828 -0.406449 +-0.81477 -0.481753 -0.32259 0.120032 0.740877 -0.814885 -0.481755 -0.322296 +-0.767914 -0.481753 -0.422164 0.160032 0.740877 -0.768065 -0.481755 -0.421887 +-0.683076 -0.535827 -0.496284 0.200032 0.767913 -0.683281 -0.535829 -0.495998 +-0.739891 -0.535827 -0.406758 0.160032 0.767913 -0.740059 -0.535828 -0.406449 +-0.708947 -0.481753 -0.515081 0.200032 0.740877 -0.709132 -0.481755 -0.514824 +-0.683076 -0.535827 -0.496284 0.200032 0.767913 -0.683281 -0.535829 -0.495998 +-0.767914 -0.481753 -0.422164 0.160032 0.740877 -0.768065 -0.481755 -0.421887 +-0.708947 -0.481753 -0.515081 0.200032 0.740877 -0.709132 -0.481755 -0.514824 +-0.615489 -0.535827 -0.577983 0.240032 0.767913 -0.615729 -0.535828 -0.577725 +-0.683076 -0.535827 -0.496284 0.200032 0.767913 -0.683281 -0.535829 -0.495998 +-0.6388 -0.481753 -0.599874 0.240032 0.740877 -0.639016 -0.481755 -0.599642 +-0.615489 -0.535827 -0.577983 0.240032 0.767913 -0.615729 -0.535828 -0.577725 +-0.708947 -0.481753 -0.515081 0.200032 0.740877 -0.709132 -0.481755 -0.514824 +-0.6388 -0.481753 -0.599874 0.240032 0.740877 -0.639016 -0.481755 -0.599642 +-0.538195 -0.535827 -0.650566 0.280032 0.767913 -0.538465 -0.535828 -0.650341 +-0.615489 -0.535827 -0.577983 0.240032 0.767913 -0.615729 -0.535828 -0.577725 +-0.558579 -0.481753 -0.675206 0.280032 0.740877 -0.558822 -0.481755 -0.675004 +-0.538195 -0.535827 -0.650566 0.280032 0.767913 -0.538465 -0.535828 -0.650341 +-0.6388 -0.481753 -0.599874 0.240032 0.740877 -0.639016 -0.481755 -0.599642 +-0.558579 -0.481753 -0.675206 0.280032 0.740877 -0.558822 -0.481755 -0.675004 +-0.452414 -0.535827 -0.71289 0.320032 0.767913 -0.45271 -0.535828 -0.712701 +-0.538195 -0.535827 -0.650566 0.280032 0.767913 -0.538465 -0.535828 -0.650341 +-0.469549 -0.481753 -0.739891 0.320032 0.740877 -0.469815 -0.481755 -0.73972 +-0.452414 -0.535827 -0.71289 0.320032 0.767913 -0.45271 -0.535828 -0.712701 +-0.558579 -0.481753 -0.675206 0.280032 0.740877 -0.558822 -0.481755 -0.675004 +-0.469549 -0.481753 -0.739891 0.320032 0.740877 -0.469815 -0.481755 -0.73972 +-0.359497 -0.535827 -0.763971 0.360032 0.767913 -0.359815 -0.535828 -0.76382 +-0.452414 -0.535827 -0.71289 0.320032 0.767913 -0.45271 -0.535828 -0.712701 +-0.373113 -0.481753 -0.792906 0.360032 0.740877 -0.373399 -0.481755 -0.792771 +-0.359497 -0.535827 -0.763971 0.360032 0.767913 -0.359815 -0.535828 -0.76382 +-0.469549 -0.481753 -0.739891 0.320032 0.740877 -0.469815 -0.481755 -0.73972 +-0.373113 -0.481753 -0.792906 0.360032 0.740877 -0.373399 -0.481755 -0.792771 +-0.260912 -0.535827 -0.803004 0.400032 0.767913 -0.261246 -0.535828 -0.802894 +-0.359497 -0.535827 -0.763971 0.360032 0.767913 -0.359815 -0.535828 -0.76382 +-0.270794 -0.481753 -0.833418 0.400032 0.740877 -0.271094 -0.481755 -0.833319 +-0.260912 -0.535827 -0.803004 0.400032 0.767913 -0.261246 -0.535828 -0.802894 +-0.373113 -0.481753 -0.792906 0.360032 0.740877 -0.373399 -0.481755 -0.792771 +-0.270794 -0.481753 -0.833418 0.400032 0.740877 -0.271094 -0.481755 -0.833319 +-0.158211 -0.535827 -0.829373 0.440032 0.767913 -0.158557 -0.535828 -0.829306 +-0.260912 -0.535827 -0.803004 0.400032 0.767913 -0.261246 -0.535828 -0.802894 +-0.164203 -0.481753 -0.860785 0.440032 0.740877 -0.164514 -0.481755 -0.860725 +-0.158211 -0.535827 -0.829373 0.440032 0.767913 -0.158557 -0.535828 -0.829306 +-0.270794 -0.481753 -0.833418 0.400032 0.740877 -0.271094 -0.481755 -0.833319 +-0.164203 -0.481753 -0.860785 0.440032 0.740877 -0.164514 -0.481755 -0.860725 +-0.053016 -0.535827 -0.842662 0.480032 0.767913 -0.053367 -0.535828 -0.842639 +-0.158211 -0.535827 -0.829373 0.440032 0.767913 -0.158557 -0.535828 -0.829306 +-0.055024 -0.481753 -0.874578 0.480032 0.740877 -0.055339 -0.481755 -0.874557 +-0.053016 -0.535827 -0.842662 0.480032 0.767913 -0.053367 -0.535828 -0.842639 +-0.164203 -0.481753 -0.860785 0.440032 0.740877 -0.164514 -0.481755 -0.860725 +-0.055024 -0.481753 -0.874578 0.480032 0.740877 -0.055339 -0.481755 -0.874557 +0.053016 -0.535827 -0.842662 0.520032 0.767913 0.052665 -0.535828 -0.842683 +-0.053016 -0.535827 -0.842662 0.480032 0.767913 -0.053367 -0.535828 -0.842639 +0.055024 -0.481753 -0.874578 0.520032 0.740877 0.054708 -0.481755 -0.874597 +0.053016 -0.535827 -0.842662 0.520032 0.767913 0.052665 -0.535828 -0.842683 +-0.055024 -0.481753 -0.874578 0.480032 0.740877 -0.055339 -0.481755 -0.874557 +0.055024 -0.481753 -0.874578 0.520032 0.740877 0.054708 -0.481755 -0.874597 +0.158211 -0.535827 -0.829373 0.560032 0.767913 0.157865 -0.535828 -0.829438 +0.053016 -0.535827 -0.842662 0.520032 0.767913 0.052665 -0.535828 -0.842683 +0.164204 -0.481753 -0.860785 0.560032 0.740877 0.163892 -0.481755 -0.860844 +0.158211 -0.535827 -0.829373 0.560032 0.767913 0.157865 -0.535828 -0.829438 +0.055024 -0.481753 -0.874578 0.520032 0.740877 0.054708 -0.481755 -0.874597 +0.164204 -0.481753 -0.860785 0.560032 0.740877 0.163892 -0.481755 -0.860844 +0.260912 -0.535827 -0.803004 0.600032 0.767913 0.260577 -0.535829 -0.803111 +0.158211 -0.535827 -0.829373 0.560032 0.767913 0.157865 -0.535828 -0.829438 +0.270794 -0.481753 -0.833417 0.600032 0.740877 0.270493 -0.481755 -0.833514 +0.260912 -0.535827 -0.803004 0.600032 0.767913 0.260577 -0.535829 -0.803111 +0.164204 -0.481753 -0.860785 0.560032 0.740877 0.163892 -0.481755 -0.860844 +0.270794 -0.481753 -0.833417 0.600032 0.740877 0.270493 -0.481755 -0.833514 +0.359498 -0.535827 -0.763971 0.640032 0.767913 0.359178 -0.535828 -0.76412 +0.260912 -0.535827 -0.803004 0.600032 0.767913 0.260577 -0.535829 -0.803111 +0.373113 -0.481753 -0.792906 0.640032 0.740877 0.372827 -0.481755 -0.79304 +0.359498 -0.535827 -0.763971 0.640032 0.767913 0.359178 -0.535828 -0.76412 +0.270794 -0.481753 -0.833417 0.600032 0.740877 0.270493 -0.481755 -0.833514 +0.373113 -0.481753 -0.792906 0.640032 0.740877 0.372827 -0.481755 -0.79304 +0.452414 -0.535827 -0.71289 0.680032 0.767913 0.452116 -0.535828 -0.713077 +0.359498 -0.535827 -0.763971 0.640032 0.767913 0.359178 -0.535828 -0.76412 +0.469549 -0.481753 -0.73989 0.680032 0.740877 0.469281 -0.481755 -0.740059 +0.452414 -0.535827 -0.71289 0.680032 0.767913 0.452116 -0.535828 -0.713077 +0.373113 -0.481753 -0.792906 0.640032 0.740877 0.372827 -0.481755 -0.79304 +0.469549 -0.481753 -0.73989 0.680032 0.740877 0.469281 -0.481755 -0.740059 +0.538195 -0.535827 -0.650566 0.720032 0.767913 0.537923 -0.535828 -0.650789 +0.452414 -0.535827 -0.71289 0.680032 0.767913 0.452116 -0.535828 -0.713077 +0.558579 -0.481753 -0.675206 0.720032 0.740877 0.558334 -0.481755 -0.675407 +0.538195 -0.535827 -0.650566 0.720032 0.767913 0.537923 -0.535828 -0.650789 +0.469549 -0.481753 -0.73989 0.680032 0.740877 0.469281 -0.481755 -0.740059 +0.558579 -0.481753 -0.675206 0.720032 0.740877 0.558334 -0.481755 -0.675407 +0.615489 -0.535827 -0.577982 0.760032 0.767913 0.615247 -0.535828 -0.578238 +0.538195 -0.535827 -0.650566 0.720032 0.767913 0.537923 -0.535828 -0.650789 +0.6388 -0.481753 -0.599873 0.760032 0.740877 0.638583 -0.481754 -0.600103 +0.615489 -0.535827 -0.577982 0.760032 0.767913 0.615247 -0.535828 -0.578238 +0.558579 -0.481753 -0.675206 0.720032 0.740877 0.558334 -0.481755 -0.675407 +0.6388 -0.481753 -0.599873 0.760032 0.740877 0.638583 -0.481754 -0.600103 +0.683076 -0.535827 -0.496284 0.800032 0.767913 0.682868 -0.535828 -0.496567 +0.615489 -0.535827 -0.577982 0.760032 0.767913 0.615247 -0.535828 -0.578238 +0.708947 -0.481753 -0.51508 0.800032 0.740877 0.708761 -0.481755 -0.515336 +0.683076 -0.535827 -0.496284 0.800032 0.767913 0.682868 -0.535828 -0.496567 +0.6388 -0.481753 -0.599873 0.760032 0.740877 0.638583 -0.481754 -0.600103 +0.708947 -0.481753 -0.51508 0.800032 0.740877 0.708761 -0.481755 -0.515336 +0.73989 -0.535827 -0.406758 0.840032 0.767913 0.73972 -0.535828 -0.407066 +0.683076 -0.535827 -0.496284 0.800032 0.767913 0.682868 -0.535828 -0.496567 +0.767914 -0.481753 -0.422164 0.840032 0.740877 0.767761 -0.481754 -0.422441 +0.73989 -0.535827 -0.406758 0.840032 0.767913 0.73972 -0.535828 -0.407066 +0.708947 -0.481753 -0.51508 0.800032 0.740877 0.708761 -0.481755 -0.515336 +0.767914 -0.481753 -0.422164 0.840032 0.740877 0.767761 -0.481754 -0.422441 +0.785036 -0.535827 -0.310818 0.880032 0.767913 0.784906 -0.535828 -0.311145 +0.73989 -0.535827 -0.406758 0.840032 0.767913 0.73972 -0.535828 -0.407066 +0.814769 -0.481753 -0.32259 0.880032 0.740877 0.814652 -0.481755 -0.322884 +0.785036 -0.535827 -0.310818 0.880032 0.767913 0.784906 -0.535828 -0.311145 +0.767914 -0.481753 -0.422164 0.840032 0.740877 0.767761 -0.481754 -0.422441 +0.814769 -0.481753 -0.32259 0.880032 0.740877 0.814652 -0.481755 -0.322884 +0.817802 -0.535827 -0.209976 0.920032 0.767913 0.817714 -0.535828 -0.210317 +0.785036 -0.535827 -0.310818 0.880032 0.767913 0.784906 -0.535828 -0.311145 +0.848776 -0.481753 -0.217929 0.920032 0.740877 0.848697 -0.481754 -0.218235 +0.817802 -0.535827 -0.209976 0.920032 0.767913 0.817714 -0.535828 -0.210317 +0.814769 -0.481753 -0.32259 0.880032 0.740877 0.814652 -0.481755 -0.322884 +0.848776 -0.481753 -0.217929 0.920032 0.740877 0.848697 -0.481754 -0.218235 +0.83767 -0.535827 -0.105822 0.960032 0.767913 0.837625 -0.535828 -0.106172 +0.817802 -0.535827 -0.209976 0.920032 0.767913 0.817714 -0.535828 -0.210317 +0.869397 -0.481753 -0.10983 0.960032 0.740877 0.869356 -0.481755 -0.110144 +0.83767 -0.535827 -0.105822 0.960032 0.767913 0.837625 -0.535828 -0.106172 +0.848776 -0.481753 -0.217929 0.920032 0.740877 0.848697 -0.481754 -0.218235 +0.869397 -0.481753 -0.10983 0.960032 0.740877 0.869356 -0.481755 -0.110144 +0.844328 -0.535827 -0 1.00003 0.767913 0.844327 -0.535828 -0.000356 +0.83767 -0.535827 -0.105822 0.960032 0.767913 0.837625 -0.535828 -0.106172 +0.876307 -0.481753 -0 1.00003 0.740877 0.876306 -0.481755 -0.00032 +0.844328 -0.535827 -0 1.00003 0.767913 0.844327 -0.535828 -0.000356 +0.869397 -0.481753 -0.10983 0.960032 0.740877 0.869356 -0.481755 -0.110144 +0.876307 -0.481753 -0 1.00003 0.740877 0.876306 -0.481755 -0.00032 +0.837671 -0.535827 0.105823 1.04003 0.767913 0.837714 -0.535828 0.105469 +0.844328 -0.535827 -0 1.00003 0.767913 0.844327 -0.535828 -0.000356 +0.869398 -0.481753 0.109831 1.04003 0.740877 0.869437 -0.481754 0.109513 +0.837671 -0.535827 0.105823 1.04003 0.767913 0.837714 -0.535828 0.105469 +0.876307 -0.481753 -0 1.00003 0.740877 0.876306 -0.481755 -0.00032 +0.897693 -0.425779 0.113405 1.04003 0.71289 0.897727 -0.425781 0.113124 +0.848777 -0.481753 0.217929 1.08003 0.740877 0.848854 -0.481755 0.217622 +0.869398 -0.481753 0.109831 1.04003 0.740877 0.869437 -0.481754 0.109513 +0.876401 -0.425779 0.225022 1.08003 0.71289 0.876469 -0.425781 0.22475 +0.848777 -0.481753 0.217929 1.08003 0.740877 0.848854 -0.481755 0.217622 +0.897693 -0.425779 0.113405 1.04003 0.71289 0.897727 -0.425781 0.113124 +0.876401 -0.425779 0.225022 1.08003 0.71289 0.876469 -0.425781 0.22475 +0.81477 -0.481753 0.32259 1.12003 0.740877 0.814885 -0.481755 0.322296 +0.848777 -0.481753 0.217929 1.08003 0.740877 0.848854 -0.481755 0.217622 +0.841288 -0.425779 0.333089 1.12003 0.71289 0.841389 -0.425781 0.332829 +0.81477 -0.481753 0.32259 1.12003 0.740877 0.814885 -0.481755 0.322296 +0.876401 -0.425779 0.225022 1.08003 0.71289 0.876469 -0.425781 0.22475 +0.841288 -0.425779 0.333089 1.12003 0.71289 0.841389 -0.425781 0.332829 +0.767914 -0.481753 0.422164 1.16003 0.740877 0.768065 -0.481755 0.421887 +0.81477 -0.481753 0.32259 1.12003 0.740877 0.814885 -0.481755 0.322296 +0.792907 -0.425779 0.435904 1.16003 0.71289 0.79304 -0.42578 0.435658 +0.767914 -0.481753 0.422164 1.16003 0.740877 0.768065 -0.481755 0.421887 +0.841288 -0.425779 0.333089 1.12003 0.71289 0.841389 -0.425781 0.332829 +0.792907 -0.425779 0.435904 1.16003 0.71289 0.79304 -0.42578 0.435658 +0.708948 -0.481753 0.515081 1.20003 0.740877 0.709132 -0.481755 0.514824 +0.767914 -0.481753 0.422164 1.16003 0.740877 0.768065 -0.481755 0.421887 +0.732021 -0.425779 0.531845 1.20003 0.71289 0.732184 -0.425781 0.531617 +0.708948 -0.481753 0.515081 1.20003 0.740877 0.709132 -0.481755 0.514824 +0.792907 -0.425779 0.435904 1.16003 0.71289 0.79304 -0.42578 0.435658 +0.732021 -0.425779 0.531845 1.20003 0.71289 0.732184 -0.425781 0.531617 +0.638801 -0.481753 0.599874 1.24003 0.740877 0.639016 -0.481755 0.599642 +0.708948 -0.481753 0.515081 1.20003 0.740877 0.709132 -0.481755 0.514824 +0.659591 -0.425779 0.619397 1.24003 0.71289 0.659782 -0.425781 0.619192 +0.638801 -0.481753 0.599874 1.24003 0.740877 0.639016 -0.481755 0.599642 +0.732021 -0.425779 0.531845 1.20003 0.71289 0.732184 -0.425781 0.531617 +0.659591 -0.425779 0.619397 1.24003 0.71289 0.659782 -0.425781 0.619192 +0.558579 -0.481753 0.675207 1.28003 0.740877 0.558822 -0.481755 0.675004 +0.638801 -0.481753 0.599874 1.24003 0.740877 0.639016 -0.481755 0.599642 +0.576759 -0.425779 0.697182 1.28003 0.71289 0.576974 -0.425781 0.697002 +0.558579 -0.481753 0.675207 1.28003 0.740877 0.558822 -0.481755 0.675004 +0.659591 -0.425779 0.619397 1.24003 0.71289 0.659782 -0.425781 0.619192 +0.576759 -0.425779 0.697182 1.28003 0.71289 0.576974 -0.425781 0.697002 +0.469549 -0.481753 0.739891 1.32003 0.740877 0.469815 -0.481755 0.73972 +0.558579 -0.481753 0.675207 1.28003 0.740877 0.558822 -0.481755 0.675004 +0.484831 -0.425779 0.763972 1.32003 0.71289 0.485066 -0.425781 0.76382 +0.469549 -0.481753 0.739891 1.32003 0.740877 0.469815 -0.481755 0.73972 +0.576759 -0.425779 0.697182 1.28003 0.71289 0.576974 -0.425781 0.697002 +0.484831 -0.425779 0.763972 1.32003 0.71289 0.485066 -0.425781 0.76382 +0.373114 -0.481753 0.792907 1.36003 0.740877 0.373399 -0.481755 0.792771 +0.469549 -0.481753 0.739891 1.32003 0.740877 0.469815 -0.481755 0.73972 +0.385257 -0.425779 0.818713 1.36003 0.71289 0.385509 -0.42578 0.818593 +0.373114 -0.481753 0.792907 1.36003 0.740877 0.373399 -0.481755 0.792771 +0.484831 -0.425779 0.763972 1.32003 0.71289 0.485066 -0.425781 0.76382 +0.385257 -0.425779 0.818713 1.36003 0.71289 0.385509 -0.42578 0.818593 +0.270794 -0.481753 0.833418 1.40003 0.740877 0.271094 -0.481755 0.833319 +0.373114 -0.481753 0.792907 1.36003 0.740877 0.373399 -0.481755 0.792771 +0.279607 -0.425779 0.860542 1.40003 0.71289 0.279873 -0.425781 0.860455 +0.270794 -0.481753 0.833418 1.40003 0.740877 0.271094 -0.481755 0.833319 +0.385257 -0.425779 0.818713 1.36003 0.71289 0.385509 -0.42578 0.818593 +0.279607 -0.425779 0.860542 1.40003 0.71289 0.279873 -0.425781 0.860455 +0.164204 -0.481753 0.860786 1.44003 0.740877 0.164514 -0.481755 0.860725 +0.270794 -0.481753 0.833418 1.40003 0.740877 0.271094 -0.481755 0.833319 +0.169548 -0.425779 0.888801 1.44003 0.71289 0.169822 -0.425781 0.888747 +0.164204 -0.481753 0.860786 1.44003 0.740877 0.164514 -0.481755 0.860725 +0.279607 -0.425779 0.860542 1.40003 0.71289 0.279873 -0.425781 0.860455 +0.169548 -0.425779 0.888801 1.44003 0.71289 0.169822 -0.425781 0.888747 +0.055024 -0.481753 0.874578 1.48003 0.740877 0.055339 -0.481755 0.874557 +0.164204 -0.481753 0.860786 1.44003 0.740877 0.164514 -0.481755 0.860725 +0.056815 -0.425779 0.903042 1.48003 0.71289 0.057093 -0.425781 0.903023 +0.055024 -0.481753 0.874578 1.48003 0.740877 0.055339 -0.481755 0.874557 +0.169548 -0.425779 0.888801 1.44003 0.71289 0.169822 -0.425781 0.888747 +0.056815 -0.425779 0.903042 1.48003 0.71289 0.057093 -0.425781 0.903023 +-0.055024 -0.481753 0.874578 1.52003 0.740877 -0.054708 -0.481755 0.874597 +0.055024 -0.481753 0.874578 1.48003 0.740877 0.055339 -0.481755 0.874557 +-0.056815 -0.425779 0.903042 1.52003 0.71289 -0.056536 -0.425781 0.903058 +-0.055024 -0.481753 0.874578 1.52003 0.740877 -0.054708 -0.481755 0.874597 +0.056815 -0.425779 0.903042 1.48003 0.71289 0.057093 -0.425781 0.903023 +-0.056815 -0.425779 0.903042 -0.479968 0.71289 -0.056536 -0.425781 0.903058 +-0.164204 -0.481753 0.860786 -0.439968 0.740877 -0.163892 -0.481755 0.860843 +-0.055024 -0.481753 0.874578 -0.479968 0.740877 -0.054708 -0.481755 0.874597 +-0.169548 -0.425779 0.888801 -0.439968 0.71289 -0.169273 -0.425781 0.888852 +-0.164204 -0.481753 0.860786 -0.439968 0.740877 -0.163892 -0.481755 0.860843 +-0.056815 -0.425779 0.903042 -0.479968 0.71289 -0.056536 -0.425781 0.903058 +-0.169548 -0.425779 0.888801 -0.439968 0.71289 -0.169273 -0.425781 0.888852 +-0.270794 -0.481753 0.833418 -0.399968 0.740877 -0.270493 -0.481755 0.833514 +-0.164204 -0.481753 0.860786 -0.439968 0.740877 -0.163892 -0.481755 0.860843 +-0.279607 -0.425779 0.860542 -0.399968 0.71289 -0.279341 -0.425781 0.860627 +-0.270794 -0.481753 0.833418 -0.399968 0.740877 -0.270493 -0.481755 0.833514 +-0.169548 -0.425779 0.888801 -0.439968 0.71289 -0.169273 -0.425781 0.888852 +-0.279607 -0.425779 0.860542 -0.399968 0.71289 -0.279341 -0.425781 0.860627 +-0.373114 -0.481753 0.792907 -0.359968 0.740877 -0.372827 -0.481755 0.79304 +-0.270794 -0.481753 0.833418 -0.399968 0.740877 -0.270493 -0.481755 0.833514 +-0.385257 -0.425779 0.818713 -0.359968 0.71289 -0.385003 -0.425781 0.81883 +-0.373114 -0.481753 0.792907 -0.359968 0.740877 -0.372827 -0.481755 0.79304 +-0.279607 -0.425779 0.860542 -0.399968 0.71289 -0.279341 -0.425781 0.860627 +-0.385257 -0.425779 0.818713 -0.359968 0.71289 -0.385003 -0.425781 0.81883 +-0.469549 -0.481753 0.739891 -0.319968 0.740877 -0.469281 -0.481755 0.740059 +-0.373114 -0.481753 0.792907 -0.359968 0.740877 -0.372827 -0.481755 0.79304 +-0.484831 -0.425779 0.763971 -0.319968 0.71289 -0.484594 -0.425781 0.76412 +-0.469549 -0.481753 0.739891 -0.319968 0.740877 -0.469281 -0.481755 0.740059 +-0.385257 -0.425779 0.818713 -0.359968 0.71289 -0.385003 -0.425781 0.81883 +-0.484831 -0.425779 0.763971 -0.319968 0.71289 -0.484594 -0.425781 0.76412 +-0.558579 -0.481753 0.675206 -0.279968 0.740877 -0.558335 -0.481755 0.675407 +-0.469549 -0.481753 0.739891 -0.319968 0.740877 -0.469281 -0.481755 0.740059 +-0.576759 -0.425779 0.697182 -0.279968 0.71289 -0.576543 -0.425781 0.697359 +-0.558579 -0.481753 0.675206 -0.279968 0.740877 -0.558335 -0.481755 0.675407 +-0.484831 -0.425779 0.763971 -0.319968 0.71289 -0.484594 -0.425781 0.76412 +-0.576759 -0.425779 0.697182 -0.279968 0.71289 -0.576543 -0.425781 0.697359 +-0.638801 -0.481753 0.599874 -0.239968 0.740877 -0.638583 -0.481755 0.600103 +-0.558579 -0.481753 0.675206 -0.279968 0.740877 -0.558335 -0.481755 0.675407 +-0.659591 -0.425779 0.619397 -0.239968 0.71289 -0.659399 -0.425781 0.6196 +-0.638801 -0.481753 0.599874 -0.239968 0.740877 -0.638583 -0.481755 0.600103 +-0.576759 -0.425779 0.697182 -0.279968 0.71289 -0.576543 -0.425781 0.697359 +-0.659591 -0.425779 0.619397 -0.239968 0.71289 -0.659399 -0.425781 0.6196 +-0.708948 -0.481753 0.51508 -0.199968 0.740877 -0.70876 -0.481755 0.515336 +-0.638801 -0.481753 0.599874 -0.239968 0.740877 -0.638583 -0.481755 0.600103 +-0.732021 -0.425779 0.531844 -0.199968 0.71289 -0.731856 -0.425781 0.53207 +-0.708948 -0.481753 0.51508 -0.199968 0.740877 -0.70876 -0.481755 0.515336 +-0.659591 -0.425779 0.619397 -0.239968 0.71289 -0.659399 -0.425781 0.6196 +-0.732021 -0.425779 0.531844 -0.199968 0.71289 -0.731856 -0.425781 0.53207 +-0.767914 -0.481753 0.422164 -0.159968 0.740877 -0.76776 -0.481755 0.422441 +-0.708948 -0.481753 0.51508 -0.199968 0.740877 -0.70876 -0.481755 0.515336 +-0.792907 -0.425779 0.435904 -0.159968 0.71289 -0.792771 -0.42578 0.436149 +-0.767914 -0.481753 0.422164 -0.159968 0.740877 -0.76776 -0.481755 0.422441 +-0.732021 -0.425779 0.531844 -0.199968 0.71289 -0.731856 -0.425781 0.53207 +-0.792907 -0.425779 0.435904 -0.159968 0.71289 -0.792771 -0.42578 0.436149 +-0.81477 -0.481753 0.32259 -0.119968 0.740877 -0.814652 -0.481755 0.322884 +-0.767914 -0.481753 0.422164 -0.159968 0.740877 -0.76776 -0.481755 0.422441 +-0.841287 -0.425779 0.333089 -0.119968 0.71289 -0.841184 -0.42578 0.333349 +-0.81477 -0.481753 0.32259 -0.119968 0.740877 -0.814652 -0.481755 0.322884 +-0.792907 -0.425779 0.435904 -0.159968 0.71289 -0.792771 -0.42578 0.436149 +-0.841287 -0.425779 0.333089 -0.119968 0.71289 -0.841184 -0.42578 0.333349 +-0.848777 -0.481753 0.217929 -0.079968 0.740877 -0.848697 -0.481755 0.218235 +-0.81477 -0.481753 0.32259 -0.119968 0.740877 -0.814652 -0.481755 0.322884 +-0.876401 -0.425779 0.225021 -0.079968 0.71289 -0.87633 -0.425781 0.225292 +-0.848777 -0.481753 0.217929 -0.079968 0.740877 -0.848697 -0.481755 0.218235 +-0.841287 -0.425779 0.333089 -0.119968 0.71289 -0.841184 -0.42578 0.333349 +-0.876401 -0.425779 0.225021 -0.079968 0.71289 -0.87633 -0.425781 0.225292 +-0.869397 -0.481753 0.10983 -0.039968 0.740877 -0.869356 -0.481755 0.110144 +-0.848777 -0.481753 0.217929 -0.079968 0.740877 -0.848697 -0.481755 0.218235 +-0.897693 -0.425779 0.113405 -0.039968 0.71289 -0.897657 -0.42578 0.113682 +-0.869397 -0.481753 0.10983 -0.039968 0.740877 -0.869356 -0.481755 0.110144 +-0.876401 -0.425779 0.225021 -0.079968 0.71289 -0.87633 -0.425781 0.225292 +-0.897693 -0.425779 0.113405 -0.039968 0.71289 -0.897657 -0.42578 0.113682 +-0.876307 -0.481753 -0 3.2e-005 0.740877 -0.876306 -0.481755 0.000316 +-0.869397 -0.481753 0.10983 -0.039968 0.740877 -0.869356 -0.481755 0.110144 +-0.904828 -0.425779 -0 3.2e-005 0.71289 -0.904827 -0.42578 0.000279 +-0.876307 -0.481753 -0 3.2e-005 0.740877 -0.876306 -0.481755 0.000316 +-0.897693 -0.425779 0.113405 -0.039968 0.71289 -0.897657 -0.42578 0.113682 +-0.904828 -0.425779 -0 3.2e-005 0.71289 -0.904827 -0.42578 0.000279 +-0.869397 -0.481753 -0.109831 0.040032 0.740877 -0.869436 -0.481755 -0.109516 +-0.876307 -0.481753 -0 3.2e-005 0.740877 -0.876306 -0.481755 0.000316 +-0.897693 -0.425779 -0.113405 0.040032 0.71289 -0.897727 -0.42578 -0.113127 +-0.869397 -0.481753 -0.109831 0.040032 0.740877 -0.869436 -0.481755 -0.109516 +-0.904828 -0.425779 -0 3.2e-005 0.71289 -0.904827 -0.42578 0.000279 +-0.897693 -0.425779 -0.113405 0.040032 0.71289 -0.897727 -0.42578 -0.113127 +-0.848776 -0.481753 -0.217929 0.080032 0.740877 -0.848854 -0.481755 -0.217622 +-0.869397 -0.481753 -0.109831 0.040032 0.740877 -0.869436 -0.481755 -0.109516 +-0.876401 -0.425779 -0.225022 0.080032 0.71289 -0.876469 -0.42578 -0.22475 +-0.848776 -0.481753 -0.217929 0.080032 0.740877 -0.848854 -0.481755 -0.217622 +-0.897693 -0.425779 -0.113405 0.040032 0.71289 -0.897727 -0.42578 -0.113127 +-0.876401 -0.425779 -0.225022 0.080032 0.71289 -0.876469 -0.42578 -0.22475 +-0.81477 -0.481753 -0.32259 0.120032 0.740877 -0.814885 -0.481755 -0.322296 +-0.848776 -0.481753 -0.217929 0.080032 0.740877 -0.848854 -0.481755 -0.217622 +-0.841287 -0.425779 -0.333089 0.120032 0.71289 -0.841389 -0.425781 -0.332829 +-0.81477 -0.481753 -0.32259 0.120032 0.740877 -0.814885 -0.481755 -0.322296 +-0.876401 -0.425779 -0.225022 0.080032 0.71289 -0.876469 -0.42578 -0.22475 +-0.841287 -0.425779 -0.333089 0.120032 0.71289 -0.841389 -0.425781 -0.332829 +-0.767914 -0.481753 -0.422164 0.160032 0.740877 -0.768065 -0.481755 -0.421887 +-0.81477 -0.481753 -0.32259 0.120032 0.740877 -0.814885 -0.481755 -0.322296 +-0.792906 -0.425779 -0.435904 0.160032 0.71289 -0.79304 -0.425781 -0.435659 +-0.767914 -0.481753 -0.422164 0.160032 0.740877 -0.768065 -0.481755 -0.421887 +-0.841287 -0.425779 -0.333089 0.120032 0.71289 -0.841389 -0.425781 -0.332829 +-0.792906 -0.425779 -0.435904 0.160032 0.71289 -0.79304 -0.425781 -0.435659 +-0.708947 -0.481753 -0.515081 0.200032 0.740877 -0.709132 -0.481755 -0.514824 +-0.767914 -0.481753 -0.422164 0.160032 0.740877 -0.768065 -0.481755 -0.421887 +-0.732021 -0.425779 -0.531844 0.200032 0.71289 -0.732184 -0.425781 -0.531618 +-0.708947 -0.481753 -0.515081 0.200032 0.740877 -0.709132 -0.481755 -0.514824 +-0.792906 -0.425779 -0.435904 0.160032 0.71289 -0.79304 -0.425781 -0.435659 +-0.732021 -0.425779 -0.531844 0.200032 0.71289 -0.732184 -0.425781 -0.531618 +-0.6388 -0.481753 -0.599874 0.240032 0.740877 -0.639016 -0.481755 -0.599642 +-0.708947 -0.481753 -0.515081 0.200032 0.740877 -0.709132 -0.481755 -0.514824 +-0.659591 -0.425779 -0.619397 0.240032 0.71289 -0.659781 -0.425781 -0.619193 +-0.6388 -0.481753 -0.599874 0.240032 0.740877 -0.639016 -0.481755 -0.599642 +-0.732021 -0.425779 -0.531844 0.200032 0.71289 -0.732184 -0.425781 -0.531618 +-0.659591 -0.425779 -0.619397 0.240032 0.71289 -0.659781 -0.425781 -0.619193 +-0.558579 -0.481753 -0.675206 0.280032 0.740877 -0.558822 -0.481755 -0.675004 +-0.6388 -0.481753 -0.599874 0.240032 0.740877 -0.639016 -0.481755 -0.599642 +-0.576759 -0.425779 -0.697182 0.280032 0.71289 -0.576974 -0.425781 -0.697002 +-0.558579 -0.481753 -0.675206 0.280032 0.740877 -0.558822 -0.481755 -0.675004 +-0.659591 -0.425779 -0.619397 0.240032 0.71289 -0.659781 -0.425781 -0.619193 +-0.576759 -0.425779 -0.697182 0.280032 0.71289 -0.576974 -0.425781 -0.697002 +-0.469549 -0.481753 -0.739891 0.320032 0.740877 -0.469815 -0.481755 -0.73972 +-0.558579 -0.481753 -0.675206 0.280032 0.740877 -0.558822 -0.481755 -0.675004 +-0.484831 -0.425779 -0.763971 0.320032 0.71289 -0.485066 -0.42578 -0.763821 +-0.469549 -0.481753 -0.739891 0.320032 0.740877 -0.469815 -0.481755 -0.73972 +-0.576759 -0.425779 -0.697182 0.280032 0.71289 -0.576974 -0.425781 -0.697002 +-0.484831 -0.425779 -0.763971 0.320032 0.71289 -0.485066 -0.42578 -0.763821 +-0.373113 -0.481753 -0.792906 0.360032 0.740877 -0.373399 -0.481755 -0.792771 +-0.469549 -0.481753 -0.739891 0.320032 0.740877 -0.469815 -0.481755 -0.73972 +-0.385257 -0.425779 -0.818712 0.360032 0.71289 -0.385509 -0.42578 -0.818593 +-0.373113 -0.481753 -0.792906 0.360032 0.740877 -0.373399 -0.481755 -0.792771 +-0.484831 -0.425779 -0.763971 0.320032 0.71289 -0.485066 -0.42578 -0.763821 +-0.385257 -0.425779 -0.818712 0.360032 0.71289 -0.385509 -0.42578 -0.818593 +-0.270794 -0.481753 -0.833418 0.400032 0.740877 -0.271094 -0.481755 -0.833319 +-0.373113 -0.481753 -0.792906 0.360032 0.740877 -0.373399 -0.481755 -0.792771 +-0.279607 -0.425779 -0.860542 0.400032 0.71289 -0.279873 -0.425781 -0.860454 +-0.270794 -0.481753 -0.833418 0.400032 0.740877 -0.271094 -0.481755 -0.833319 +-0.385257 -0.425779 -0.818712 0.360032 0.71289 -0.385509 -0.42578 -0.818593 +-0.279607 -0.425779 -0.860542 0.400032 0.71289 -0.279873 -0.425781 -0.860454 +-0.164203 -0.481753 -0.860785 0.440032 0.740877 -0.164514 -0.481755 -0.860725 +-0.270794 -0.481753 -0.833418 0.400032 0.740877 -0.271094 -0.481755 -0.833319 +-0.169548 -0.425779 -0.8888 0.440032 0.71289 -0.169822 -0.425781 -0.888747 +-0.164203 -0.481753 -0.860785 0.440032 0.740877 -0.164514 -0.481755 -0.860725 +-0.279607 -0.425779 -0.860542 0.400032 0.71289 -0.279873 -0.425781 -0.860454 +-0.169548 -0.425779 -0.8888 0.440032 0.71289 -0.169822 -0.425781 -0.888747 +-0.055024 -0.481753 -0.874578 0.480032 0.740877 -0.055339 -0.481755 -0.874557 +-0.164203 -0.481753 -0.860785 0.440032 0.740877 -0.164514 -0.481755 -0.860725 +-0.056814 -0.425779 -0.903042 0.480032 0.71289 -0.057093 -0.425781 -0.903023 +-0.055024 -0.481753 -0.874578 0.480032 0.740877 -0.055339 -0.481755 -0.874557 +-0.169548 -0.425779 -0.8888 0.440032 0.71289 -0.169822 -0.425781 -0.888747 +-0.056814 -0.425779 -0.903042 0.480032 0.71289 -0.057093 -0.425781 -0.903023 +0.055024 -0.481753 -0.874578 0.520032 0.740877 0.054708 -0.481755 -0.874597 +-0.055024 -0.481753 -0.874578 0.480032 0.740877 -0.055339 -0.481755 -0.874557 +0.056815 -0.425779 -0.903042 0.520032 0.71289 0.056535 -0.425781 -0.903058 +0.055024 -0.481753 -0.874578 0.520032 0.740877 0.054708 -0.481755 -0.874597 +-0.056814 -0.425779 -0.903042 0.480032 0.71289 -0.057093 -0.425781 -0.903023 +0.056815 -0.425779 -0.903042 0.520032 0.71289 0.056535 -0.425781 -0.903058 +0.164204 -0.481753 -0.860785 0.560032 0.740877 0.163892 -0.481755 -0.860844 +0.055024 -0.481753 -0.874578 0.520032 0.740877 0.054708 -0.481755 -0.874597 +0.169548 -0.425779 -0.8888 0.560032 0.71289 0.169273 -0.42578 -0.888852 +0.164204 -0.481753 -0.860785 0.560032 0.740877 0.163892 -0.481755 -0.860844 +0.056815 -0.425779 -0.903042 0.520032 0.71289 0.056535 -0.425781 -0.903058 +0.169548 -0.425779 -0.8888 0.560032 0.71289 0.169273 -0.42578 -0.888852 +0.270794 -0.481753 -0.833417 0.600032 0.740877 0.270493 -0.481755 -0.833514 +0.164204 -0.481753 -0.860785 0.560032 0.740877 0.163892 -0.481755 -0.860844 +0.279607 -0.425779 -0.860542 0.600032 0.71289 0.279341 -0.42578 -0.860627 +0.270794 -0.481753 -0.833417 0.600032 0.740877 0.270493 -0.481755 -0.833514 +0.169548 -0.425779 -0.8888 0.560032 0.71289 0.169273 -0.42578 -0.888852 +0.279607 -0.425779 -0.860542 0.600032 0.71289 0.279341 -0.42578 -0.860627 +0.373113 -0.481753 -0.792906 0.640032 0.740877 0.372827 -0.481755 -0.79304 +0.270794 -0.481753 -0.833417 0.600032 0.740877 0.270493 -0.481755 -0.833514 +0.385257 -0.425779 -0.818712 0.640032 0.71289 0.385004 -0.425781 -0.81883 +0.373113 -0.481753 -0.792906 0.640032 0.740877 0.372827 -0.481755 -0.79304 +0.279607 -0.425779 -0.860542 0.600032 0.71289 0.279341 -0.42578 -0.860627 +0.385257 -0.425779 -0.818712 0.640032 0.71289 0.385004 -0.425781 -0.81883 +0.469549 -0.481753 -0.73989 0.680032 0.740877 0.469281 -0.481755 -0.740059 +0.373113 -0.481753 -0.792906 0.640032 0.740877 0.372827 -0.481755 -0.79304 +0.484831 -0.425779 -0.763971 0.680032 0.71289 0.484594 -0.425781 -0.76412 +0.469549 -0.481753 -0.73989 0.680032 0.740877 0.469281 -0.481755 -0.740059 +0.385257 -0.425779 -0.818712 0.640032 0.71289 0.385004 -0.425781 -0.81883 +0.484831 -0.425779 -0.763971 0.680032 0.71289 0.484594 -0.425781 -0.76412 +0.558579 -0.481753 -0.675206 0.720032 0.740877 0.558334 -0.481755 -0.675407 +0.469549 -0.481753 -0.73989 0.680032 0.740877 0.469281 -0.481755 -0.740059 +0.576759 -0.425779 -0.697181 0.720032 0.71289 0.576543 -0.42578 -0.697359 +0.558579 -0.481753 -0.675206 0.720032 0.740877 0.558334 -0.481755 -0.675407 +0.484831 -0.425779 -0.763971 0.680032 0.71289 0.484594 -0.425781 -0.76412 +0.576759 -0.425779 -0.697181 0.720032 0.71289 0.576543 -0.42578 -0.697359 +0.6388 -0.481753 -0.599873 0.760032 0.740877 0.638583 -0.481754 -0.600103 +0.558579 -0.481753 -0.675206 0.720032 0.740877 0.558334 -0.481755 -0.675407 +0.659591 -0.425779 -0.619397 0.760032 0.71289 0.659399 -0.42578 -0.6196 +0.6388 -0.481753 -0.599873 0.760032 0.740877 0.638583 -0.481754 -0.600103 +0.576759 -0.425779 -0.697181 0.720032 0.71289 0.576543 -0.42578 -0.697359 +0.659591 -0.425779 -0.619397 0.760032 0.71289 0.659399 -0.42578 -0.6196 +0.708947 -0.481753 -0.51508 0.800032 0.740877 0.708761 -0.481755 -0.515336 +0.6388 -0.481753 -0.599873 0.760032 0.740877 0.638583 -0.481754 -0.600103 +0.732021 -0.425779 -0.531844 0.800032 0.71289 0.731856 -0.42578 -0.53207 +0.708947 -0.481753 -0.51508 0.800032 0.740877 0.708761 -0.481755 -0.515336 +0.659591 -0.425779 -0.619397 0.760032 0.71289 0.659399 -0.42578 -0.6196 +0.732021 -0.425779 -0.531844 0.800032 0.71289 0.731856 -0.42578 -0.53207 +0.767914 -0.481753 -0.422164 0.840032 0.740877 0.767761 -0.481754 -0.422441 +0.708947 -0.481753 -0.51508 0.800032 0.740877 0.708761 -0.481755 -0.515336 +0.792906 -0.425779 -0.435904 0.840032 0.71289 0.792771 -0.42578 -0.436148 +0.767914 -0.481753 -0.422164 0.840032 0.740877 0.767761 -0.481754 -0.422441 +0.732021 -0.425779 -0.531844 0.800032 0.71289 0.731856 -0.42578 -0.53207 +0.792906 -0.425779 -0.435904 0.840032 0.71289 0.792771 -0.42578 -0.436148 +0.814769 -0.481753 -0.32259 0.880032 0.740877 0.814652 -0.481755 -0.322884 +0.767914 -0.481753 -0.422164 0.840032 0.740877 0.767761 -0.481754 -0.422441 +0.841287 -0.425779 -0.333089 0.880032 0.71289 0.841184 -0.42578 -0.333349 +0.814769 -0.481753 -0.32259 0.880032 0.740877 0.814652 -0.481755 -0.322884 +0.792906 -0.425779 -0.435904 0.840032 0.71289 0.792771 -0.42578 -0.436148 +0.841287 -0.425779 -0.333089 0.880032 0.71289 0.841184 -0.42578 -0.333349 +0.848776 -0.481753 -0.217929 0.920032 0.740877 0.848697 -0.481754 -0.218235 +0.814769 -0.481753 -0.32259 0.880032 0.740877 0.814652 -0.481755 -0.322884 +0.8764 -0.425779 -0.225021 0.920032 0.71289 0.87633 -0.42578 -0.225292 +0.848776 -0.481753 -0.217929 0.920032 0.740877 0.848697 -0.481754 -0.218235 +0.841287 -0.425779 -0.333089 0.880032 0.71289 0.841184 -0.42578 -0.333349 +0.8764 -0.425779 -0.225021 0.920032 0.71289 0.87633 -0.42578 -0.225292 +0.869397 -0.481753 -0.10983 0.960032 0.740877 0.869356 -0.481755 -0.110144 +0.848776 -0.481753 -0.217929 0.920032 0.740877 0.848697 -0.481754 -0.218235 +0.897692 -0.425779 -0.113405 0.960032 0.71289 0.897657 -0.425781 -0.113682 +0.869397 -0.481753 -0.10983 0.960032 0.740877 0.869356 -0.481755 -0.110144 +0.8764 -0.425779 -0.225021 0.920032 0.71289 0.87633 -0.42578 -0.225292 +0.897692 -0.425779 -0.113405 0.960032 0.71289 0.897657 -0.425781 -0.113682 +0.876307 -0.481753 -0 1.00003 0.740877 0.876306 -0.481755 -0.00032 +0.869397 -0.481753 -0.10983 0.960032 0.740877 0.869356 -0.481755 -0.110144 +0.904827 -0.425779 -0 1.00003 0.71289 0.904827 -0.42578 -0.000283 +0.876307 -0.481753 -0 1.00003 0.740877 0.876306 -0.481755 -0.00032 +0.897692 -0.425779 -0.113405 0.960032 0.71289 0.897657 -0.425781 -0.113682 +0.904827 -0.425779 -0 1.00003 0.71289 0.904827 -0.42578 -0.000283 +0.869398 -0.481753 0.109831 1.04003 0.740877 0.869437 -0.481754 0.109513 +0.876307 -0.481753 -0 1.00003 0.740877 0.876306 -0.481755 -0.00032 +0.897693 -0.425779 0.113405 1.04003 0.71289 0.897727 -0.425781 0.113124 +0.869398 -0.481753 0.109831 1.04003 0.740877 0.869437 -0.481754 0.109513 +0.904827 -0.425779 -0 1.00003 0.71289 0.904827 -0.42578 -0.000283 +0.922446 -0.368124 0.116532 1.04003 0.684062 0.922475 -0.368126 0.116288 +0.876401 -0.425779 0.225022 1.08003 0.71289 0.876469 -0.425781 0.22475 +0.897693 -0.425779 0.113405 1.04003 0.71289 0.897727 -0.425781 0.113124 +0.900567 -0.368124 0.231226 1.08003 0.684062 0.900625 -0.368126 0.230992 +0.876401 -0.425779 0.225022 1.08003 0.71289 0.876469 -0.425781 0.22475 +0.922446 -0.368124 0.116532 1.04003 0.684062 0.922475 -0.368126 0.116288 +0.900567 -0.368124 0.231226 1.08003 0.684062 0.900625 -0.368126 0.230992 +0.841288 -0.425779 0.333089 1.12003 0.71289 0.841389 -0.425781 0.332829 +0.876401 -0.425779 0.225022 1.08003 0.71289 0.876469 -0.425781 0.22475 +0.864485 -0.368124 0.342274 1.12003 0.684062 0.864573 -0.368126 0.342049 +0.841288 -0.425779 0.333089 1.12003 0.71289 0.841389 -0.425781 0.332829 +0.900567 -0.368124 0.231226 1.08003 0.684062 0.900625 -0.368126 0.230992 +0.864485 -0.368124 0.342274 1.12003 0.684062 0.864573 -0.368126 0.342049 +0.792907 -0.425779 0.435904 1.16003 0.71289 0.79304 -0.42578 0.435658 +0.841288 -0.425779 0.333089 1.12003 0.71289 0.841389 -0.425781 0.332829 +0.81477 -0.368124 0.447924 1.16003 0.684062 0.814885 -0.368126 0.447711 +0.792907 -0.425779 0.435904 1.16003 0.71289 0.79304 -0.42578 0.435658 +0.864485 -0.368124 0.342274 1.12003 0.684062 0.864573 -0.368126 0.342049 +0.81477 -0.368124 0.447924 1.16003 0.684062 0.814885 -0.368126 0.447711 +0.732021 -0.425779 0.531845 1.20003 0.71289 0.732184 -0.425781 0.531617 +0.792907 -0.425779 0.435904 1.16003 0.71289 0.79304 -0.42578 0.435658 +0.752206 -0.368124 0.54651 1.20003 0.684062 0.752347 -0.368126 0.546313 +0.732021 -0.425779 0.531845 1.20003 0.71289 0.732184 -0.425781 0.531617 +0.81477 -0.368124 0.447924 1.16003 0.684062 0.814885 -0.368126 0.447711 +0.752206 -0.368124 0.54651 1.20003 0.684062 0.752347 -0.368126 0.546313 +0.659591 -0.425779 0.619397 1.24003 0.71289 0.659782 -0.425781 0.619192 +0.732021 -0.425779 0.531845 1.20003 0.71289 0.732184 -0.425781 0.531617 +0.677779 -0.368124 0.636476 1.24003 0.684062 0.677943 -0.368126 0.636299 +0.659591 -0.425779 0.619397 1.24003 0.71289 0.659782 -0.425781 0.619192 +0.752206 -0.368124 0.54651 1.20003 0.684062 0.752347 -0.368126 0.546313 +0.677779 -0.368124 0.636476 1.24003 0.684062 0.677943 -0.368126 0.636299 +0.576759 -0.425779 0.697182 1.28003 0.71289 0.576974 -0.425781 0.697002 +0.659591 -0.425779 0.619397 1.24003 0.71289 0.659782 -0.425781 0.619192 +0.592662 -0.368124 0.716406 1.28003 0.684062 0.592848 -0.368126 0.716251 +0.576759 -0.425779 0.697182 1.28003 0.71289 0.576974 -0.425781 0.697002 +0.677779 -0.368124 0.636476 1.24003 0.684062 0.677943 -0.368126 0.636299 +0.592662 -0.368124 0.716406 1.28003 0.684062 0.592848 -0.368126 0.716251 +0.484831 -0.425779 0.763972 1.32003 0.71289 0.485066 -0.425781 0.76382 +0.576759 -0.425779 0.697182 1.28003 0.71289 0.576974 -0.425781 0.697002 +0.4982 -0.368124 0.785037 1.32003 0.684062 0.498403 -0.368126 0.784907 +0.484831 -0.425779 0.763972 1.32003 0.71289 0.485066 -0.425781 0.76382 +0.592662 -0.368124 0.716406 1.28003 0.684062 0.592848 -0.368126 0.716251 +0.4982 -0.368124 0.785037 1.32003 0.684062 0.498403 -0.368126 0.784907 +0.385257 -0.425779 0.818713 1.36003 0.71289 0.385509 -0.42578 0.818593 +0.484831 -0.425779 0.763972 1.32003 0.71289 0.485066 -0.425781 0.76382 +0.39588 -0.368124 0.841288 1.36003 0.684062 0.396098 -0.368126 0.841184 +0.385257 -0.425779 0.818713 1.36003 0.71289 0.385509 -0.42578 0.818593 +0.4982 -0.368124 0.785037 1.32003 0.684062 0.498403 -0.368126 0.784907 +0.39588 -0.368124 0.841288 1.36003 0.684062 0.396098 -0.368126 0.841184 +0.279607 -0.425779 0.860542 1.40003 0.71289 0.279873 -0.425781 0.860455 +0.385257 -0.425779 0.818713 1.36003 0.71289 0.385509 -0.42578 0.818593 +0.287317 -0.368124 0.884271 1.40003 0.684062 0.287546 -0.368126 0.884195 +0.279607 -0.425779 0.860542 1.40003 0.71289 0.279873 -0.425781 0.860455 +0.39588 -0.368124 0.841288 1.36003 0.684062 0.396098 -0.368126 0.841184 +0.287317 -0.368124 0.884271 1.40003 0.684062 0.287546 -0.368126 0.884195 +0.169548 -0.425779 0.888801 1.44003 0.71289 0.169822 -0.425781 0.888747 +0.279607 -0.425779 0.860542 1.40003 0.71289 0.279873 -0.425781 0.860455 +0.174223 -0.368124 0.913308 1.44003 0.684062 0.17446 -0.368126 0.913262 +0.169548 -0.425779 0.888801 1.44003 0.71289 0.169822 -0.425781 0.888747 +0.287317 -0.368124 0.884271 1.40003 0.684062 0.287546 -0.368126 0.884195 +0.174223 -0.368124 0.913308 1.44003 0.684062 0.17446 -0.368126 0.913262 +0.056815 -0.425779 0.903042 1.48003 0.71289 0.057093 -0.425781 0.903023 +0.169548 -0.425779 0.888801 1.44003 0.71289 0.169822 -0.425781 0.888747 +0.058381 -0.368124 0.927943 1.48003 0.684062 0.058622 -0.368126 0.927926 +0.056815 -0.425779 0.903042 1.48003 0.71289 0.057093 -0.425781 0.903023 +0.174223 -0.368124 0.913308 1.44003 0.684062 0.17446 -0.368126 0.913262 +0.058381 -0.368124 0.927943 1.48003 0.684062 0.058622 -0.368126 0.927926 +-0.056815 -0.425779 0.903042 1.52003 0.71289 -0.056536 -0.425781 0.903058 +0.056815 -0.425779 0.903042 1.48003 0.71289 0.057093 -0.425781 0.903023 +-0.058381 -0.368124 0.927943 1.52003 0.684062 -0.05814 -0.368126 0.927956 +-0.056815 -0.425779 0.903042 1.52003 0.71289 -0.056536 -0.425781 0.903058 +0.058381 -0.368124 0.927943 1.48003 0.684062 0.058622 -0.368126 0.927926 +-0.058381 -0.368124 0.927943 -0.479968 0.684062 -0.05814 -0.368126 0.927956 +-0.169548 -0.425779 0.888801 -0.439968 0.71289 -0.169273 -0.425781 0.888852 +-0.056815 -0.425779 0.903042 -0.479968 0.71289 -0.056536 -0.425781 0.903058 +-0.174223 -0.368124 0.913308 -0.439968 0.684062 -0.173985 -0.368126 0.913352 +-0.169548 -0.425779 0.888801 -0.439968 0.71289 -0.169273 -0.425781 0.888852 +-0.058381 -0.368124 0.927943 -0.479968 0.684062 -0.05814 -0.368126 0.927956 +-0.174223 -0.368124 0.913308 -0.439968 0.684062 -0.173985 -0.368126 0.913352 +-0.279607 -0.425779 0.860542 -0.399968 0.71289 -0.279341 -0.425781 0.860627 +-0.169548 -0.425779 0.888801 -0.439968 0.71289 -0.169273 -0.425781 0.888852 +-0.287317 -0.368124 0.884271 -0.399968 0.684062 -0.287087 -0.368126 0.884344 +-0.279607 -0.425779 0.860542 -0.399968 0.71289 -0.279341 -0.425781 0.860627 +-0.174223 -0.368124 0.913308 -0.439968 0.684062 -0.173985 -0.368126 0.913352 +-0.287317 -0.368124 0.884271 -0.399968 0.684062 -0.287087 -0.368126 0.884344 +-0.385257 -0.425779 0.818713 -0.359968 0.71289 -0.385003 -0.425781 0.81883 +-0.279607 -0.425779 0.860542 -0.399968 0.71289 -0.279341 -0.425781 0.860627 +-0.39588 -0.368124 0.841288 -0.359968 0.684062 -0.395661 -0.368126 0.841389 +-0.385257 -0.425779 0.818713 -0.359968 0.71289 -0.385003 -0.425781 0.81883 +-0.287317 -0.368124 0.884271 -0.399968 0.684062 -0.287087 -0.368126 0.884344 +-0.39588 -0.368124 0.841288 -0.359968 0.684062 -0.395661 -0.368126 0.841389 +-0.484831 -0.425779 0.763971 -0.319968 0.71289 -0.484594 -0.425781 0.76412 +-0.385257 -0.425779 0.818713 -0.359968 0.71289 -0.385003 -0.425781 0.81883 +-0.4982 -0.368124 0.785037 -0.319968 0.684062 -0.497995 -0.368126 0.785165 +-0.484831 -0.425779 0.763971 -0.319968 0.71289 -0.484594 -0.425781 0.76412 +-0.39588 -0.368124 0.841288 -0.359968 0.684062 -0.395661 -0.368126 0.841389 +-0.4982 -0.368124 0.785037 -0.319968 0.684062 -0.497995 -0.368126 0.785165 +-0.576759 -0.425779 0.697182 -0.279968 0.71289 -0.576543 -0.425781 0.697359 +-0.484831 -0.425779 0.763971 -0.319968 0.71289 -0.484594 -0.425781 0.76412 +-0.592662 -0.368124 0.716406 -0.279968 0.684062 -0.592475 -0.368126 0.716559 +-0.576759 -0.425779 0.697182 -0.279968 0.71289 -0.576543 -0.425781 0.697359 +-0.4982 -0.368124 0.785037 -0.319968 0.684062 -0.497995 -0.368126 0.785165 +-0.592662 -0.368124 0.716406 -0.279968 0.684062 -0.592475 -0.368126 0.716559 +-0.659591 -0.425779 0.619397 -0.239968 0.71289 -0.659399 -0.425781 0.6196 +-0.576759 -0.425779 0.697182 -0.279968 0.71289 -0.576543 -0.425781 0.697359 +-0.677778 -0.368124 0.636476 -0.239968 0.684062 -0.677612 -0.368126 0.636651 +-0.659591 -0.425779 0.619397 -0.239968 0.71289 -0.659399 -0.425781 0.6196 +-0.592662 -0.368124 0.716406 -0.279968 0.684062 -0.592475 -0.368126 0.716559 +-0.677778 -0.368124 0.636476 -0.239968 0.684062 -0.677612 -0.368126 0.636651 +-0.732021 -0.425779 0.531844 -0.199968 0.71289 -0.731856 -0.425781 0.53207 +-0.659591 -0.425779 0.619397 -0.239968 0.71289 -0.659399 -0.425781 0.6196 +-0.752206 -0.368124 0.546509 -0.199968 0.684062 -0.752063 -0.368125 0.546704 +-0.732021 -0.425779 0.531844 -0.199968 0.71289 -0.731856 -0.425781 0.53207 +-0.677778 -0.368124 0.636476 -0.239968 0.684062 -0.677612 -0.368126 0.636651 +-0.752206 -0.368124 0.546509 -0.199968 0.684062 -0.752063 -0.368125 0.546704 +-0.792907 -0.425779 0.435904 -0.159968 0.71289 -0.792771 -0.42578 0.436149 +-0.732021 -0.425779 0.531844 -0.199968 0.71289 -0.731856 -0.425781 0.53207 +-0.81477 -0.368124 0.447923 -0.159968 0.684062 -0.814653 -0.368126 0.448135 +-0.792907 -0.425779 0.435904 -0.159968 0.71289 -0.792771 -0.42578 0.436149 +-0.752206 -0.368124 0.546509 -0.199968 0.684062 -0.752063 -0.368125 0.546704 +-0.81477 -0.368124 0.447923 -0.159968 0.684062 -0.814653 -0.368126 0.448135 +-0.841287 -0.425779 0.333089 -0.119968 0.71289 -0.841184 -0.42578 0.333349 +-0.792907 -0.425779 0.435904 -0.159968 0.71289 -0.792771 -0.42578 0.436149 +-0.864485 -0.368124 0.342274 -0.119968 0.684062 -0.864395 -0.368126 0.342498 +-0.841287 -0.425779 0.333089 -0.119968 0.71289 -0.841184 -0.42578 0.333349 +-0.81477 -0.368124 0.447923 -0.159968 0.684062 -0.814653 -0.368126 0.448135 +-0.864485 -0.368124 0.342274 -0.119968 0.684062 -0.864395 -0.368126 0.342498 +-0.876401 -0.425779 0.225021 -0.079968 0.71289 -0.87633 -0.425781 0.225292 +-0.841287 -0.425779 0.333089 -0.119968 0.71289 -0.841184 -0.42578 0.333349 +-0.900566 -0.368124 0.231226 -0.079968 0.684062 -0.900505 -0.368126 0.23146 +-0.876401 -0.425779 0.225021 -0.079968 0.71289 -0.87633 -0.425781 0.225292 +-0.864485 -0.368124 0.342274 -0.119968 0.684062 -0.864395 -0.368126 0.342498 +-0.900566 -0.368124 0.231226 -0.079968 0.684062 -0.900505 -0.368126 0.23146 +-0.897693 -0.425779 0.113405 -0.039968 0.71289 -0.897657 -0.42578 0.113682 +-0.876401 -0.425779 0.225021 -0.079968 0.71289 -0.87633 -0.425781 0.225292 +-0.922446 -0.368124 0.116532 -0.039968 0.684062 -0.922414 -0.368126 0.116772 +-0.897693 -0.425779 0.113405 -0.039968 0.71289 -0.897657 -0.42578 0.113682 +-0.900566 -0.368124 0.231226 -0.079968 0.684062 -0.900505 -0.368126 0.23146 +-0.922446 -0.368124 0.116532 -0.039968 0.684062 -0.922414 -0.368126 0.116772 +-0.904828 -0.425779 -0 3.2e-005 0.71289 -0.904827 -0.42578 0.000279 +-0.897693 -0.425779 0.113405 -0.039968 0.71289 -0.897657 -0.42578 0.113682 +-0.929777 -0.368124 -0 3.2e-005 0.684062 -0.929776 -0.368126 0.000242 +-0.904828 -0.425779 -0 3.2e-005 0.71289 -0.904827 -0.42578 0.000279 +-0.922446 -0.368124 0.116532 -0.039968 0.684062 -0.922414 -0.368126 0.116772 +-0.929777 -0.368124 -0 3.2e-005 0.684062 -0.929776 -0.368126 0.000242 +-0.897693 -0.425779 -0.113405 0.040032 0.71289 -0.897727 -0.42578 -0.113127 +-0.904828 -0.425779 -0 3.2e-005 0.71289 -0.904827 -0.42578 0.000279 +-0.922445 -0.368124 -0.116532 0.040032 0.684062 -0.922475 -0.368126 -0.116292 +-0.897693 -0.425779 -0.113405 0.040032 0.71289 -0.897727 -0.42578 -0.113127 +-0.929777 -0.368124 -0 3.2e-005 0.684062 -0.929776 -0.368126 0.000242 +-0.922445 -0.368124 -0.116532 0.040032 0.684062 -0.922475 -0.368126 -0.116292 +-0.876401 -0.425779 -0.225022 0.080032 0.71289 -0.876469 -0.42578 -0.22475 +-0.897693 -0.425779 -0.113405 0.040032 0.71289 -0.897727 -0.42578 -0.113127 +-0.900566 -0.368124 -0.231226 0.080032 0.684062 -0.900626 -0.368125 -0.230992 +-0.876401 -0.425779 -0.225022 0.080032 0.71289 -0.876469 -0.42578 -0.22475 +-0.922445 -0.368124 -0.116532 0.040032 0.684062 -0.922475 -0.368126 -0.116292 +-0.900566 -0.368124 -0.231226 0.080032 0.684062 -0.900626 -0.368125 -0.230992 +-0.841287 -0.425779 -0.333089 0.120032 0.71289 -0.841389 -0.425781 -0.332829 +-0.876401 -0.425779 -0.225022 0.080032 0.71289 -0.876469 -0.42578 -0.22475 +-0.864485 -0.368124 -0.342274 0.120032 0.684062 -0.864573 -0.368126 -0.342049 +-0.841287 -0.425779 -0.333089 0.120032 0.71289 -0.841389 -0.425781 -0.332829 +-0.900566 -0.368124 -0.231226 0.080032 0.684062 -0.900626 -0.368125 -0.230992 +-0.864485 -0.368124 -0.342274 0.120032 0.684062 -0.864573 -0.368126 -0.342049 +-0.792906 -0.425779 -0.435904 0.160032 0.71289 -0.79304 -0.425781 -0.435659 +-0.841287 -0.425779 -0.333089 0.120032 0.71289 -0.841389 -0.425781 -0.332829 +-0.81477 -0.368124 -0.447924 0.160032 0.684062 -0.814885 -0.368126 -0.447712 +-0.792906 -0.425779 -0.435904 0.160032 0.71289 -0.79304 -0.425781 -0.435659 +-0.864485 -0.368124 -0.342274 0.120032 0.684062 -0.864573 -0.368126 -0.342049 +-0.81477 -0.368124 -0.447924 0.160032 0.684062 -0.814885 -0.368126 -0.447712 +-0.732021 -0.425779 -0.531844 0.200032 0.71289 -0.732184 -0.425781 -0.531618 +-0.792906 -0.425779 -0.435904 0.160032 0.71289 -0.79304 -0.425781 -0.435659 +-0.752205 -0.368124 -0.546509 0.200032 0.684062 -0.752347 -0.368126 -0.546313 +-0.732021 -0.425779 -0.531844 0.200032 0.71289 -0.732184 -0.425781 -0.531618 +-0.81477 -0.368124 -0.447924 0.160032 0.684062 -0.814885 -0.368126 -0.447712 +-0.752205 -0.368124 -0.546509 0.200032 0.684062 -0.752347 -0.368126 -0.546313 +-0.659591 -0.425779 -0.619397 0.240032 0.71289 -0.659781 -0.425781 -0.619193 +-0.732021 -0.425779 -0.531844 0.200032 0.71289 -0.732184 -0.425781 -0.531618 +-0.677778 -0.368124 -0.636476 0.240032 0.684062 -0.677943 -0.368126 -0.636299 +-0.659591 -0.425779 -0.619397 0.240032 0.71289 -0.659781 -0.425781 -0.619193 +-0.752205 -0.368124 -0.546509 0.200032 0.684062 -0.752347 -0.368126 -0.546313 +-0.677778 -0.368124 -0.636476 0.240032 0.684062 -0.677943 -0.368126 -0.636299 +-0.576759 -0.425779 -0.697182 0.280032 0.71289 -0.576974 -0.425781 -0.697002 +-0.659591 -0.425779 -0.619397 0.240032 0.71289 -0.659781 -0.425781 -0.619193 +-0.592662 -0.368124 -0.716406 0.280032 0.684062 -0.592847 -0.368126 -0.716251 +-0.576759 -0.425779 -0.697182 0.280032 0.71289 -0.576974 -0.425781 -0.697002 +-0.677778 -0.368124 -0.636476 0.240032 0.684062 -0.677943 -0.368126 -0.636299 +-0.592662 -0.368124 -0.716406 0.280032 0.684062 -0.592847 -0.368126 -0.716251 +-0.484831 -0.425779 -0.763971 0.320032 0.71289 -0.485066 -0.42578 -0.763821 +-0.576759 -0.425779 -0.697182 0.280032 0.71289 -0.576974 -0.425781 -0.697002 +-0.498199 -0.368124 -0.785037 0.320032 0.684062 -0.498403 -0.368126 -0.784907 +-0.484831 -0.425779 -0.763971 0.320032 0.71289 -0.485066 -0.42578 -0.763821 +-0.592662 -0.368124 -0.716406 0.280032 0.684062 -0.592847 -0.368126 -0.716251 +-0.498199 -0.368124 -0.785037 0.320032 0.684062 -0.498403 -0.368126 -0.784907 +-0.385257 -0.425779 -0.818712 0.360032 0.71289 -0.385509 -0.42578 -0.818593 +-0.484831 -0.425779 -0.763971 0.320032 0.71289 -0.485066 -0.42578 -0.763821 +-0.39588 -0.368124 -0.841287 0.360032 0.684062 -0.396098 -0.368126 -0.841184 +-0.385257 -0.425779 -0.818712 0.360032 0.71289 -0.385509 -0.42578 -0.818593 +-0.498199 -0.368124 -0.785037 0.320032 0.684062 -0.498403 -0.368126 -0.784907 +-0.39588 -0.368124 -0.841287 0.360032 0.684062 -0.396098 -0.368126 -0.841184 +-0.279607 -0.425779 -0.860542 0.400032 0.71289 -0.279873 -0.425781 -0.860454 +-0.385257 -0.425779 -0.818712 0.360032 0.71289 -0.385509 -0.42578 -0.818593 +-0.287317 -0.368124 -0.88427 0.400032 0.684062 -0.287546 -0.368126 -0.884195 +-0.279607 -0.425779 -0.860542 0.400032 0.71289 -0.279873 -0.425781 -0.860454 +-0.39588 -0.368124 -0.841287 0.360032 0.684062 -0.396098 -0.368126 -0.841184 +-0.287317 -0.368124 -0.88427 0.400032 0.684062 -0.287546 -0.368126 -0.884195 +-0.169548 -0.425779 -0.8888 0.440032 0.71289 -0.169822 -0.425781 -0.888747 +-0.279607 -0.425779 -0.860542 0.400032 0.71289 -0.279873 -0.425781 -0.860454 +-0.174223 -0.368124 -0.913308 0.440032 0.684062 -0.17446 -0.368126 -0.913262 +-0.169548 -0.425779 -0.8888 0.440032 0.71289 -0.169822 -0.425781 -0.888747 +-0.287317 -0.368124 -0.88427 0.400032 0.684062 -0.287546 -0.368126 -0.884195 +-0.174223 -0.368124 -0.913308 0.440032 0.684062 -0.17446 -0.368126 -0.913262 +-0.056814 -0.425779 -0.903042 0.480032 0.71289 -0.057093 -0.425781 -0.903023 +-0.169548 -0.425779 -0.8888 0.440032 0.71289 -0.169822 -0.425781 -0.888747 +-0.058381 -0.368124 -0.927942 0.480032 0.684062 -0.058622 -0.368126 -0.927926 +-0.056814 -0.425779 -0.903042 0.480032 0.71289 -0.057093 -0.425781 -0.903023 +-0.174223 -0.368124 -0.913308 0.440032 0.684062 -0.17446 -0.368126 -0.913262 +-0.058381 -0.368124 -0.927942 0.480032 0.684062 -0.058622 -0.368126 -0.927926 +0.056815 -0.425779 -0.903042 0.520032 0.71289 0.056535 -0.425781 -0.903058 +-0.056814 -0.425779 -0.903042 0.480032 0.71289 -0.057093 -0.425781 -0.903023 +0.058381 -0.368124 -0.927942 0.520032 0.684062 0.05814 -0.368126 -0.927956 +0.056815 -0.425779 -0.903042 0.520032 0.71289 0.056535 -0.425781 -0.903058 +-0.058381 -0.368124 -0.927942 0.480032 0.684062 -0.058622 -0.368126 -0.927926 +0.058381 -0.368124 -0.927942 0.520032 0.684062 0.05814 -0.368126 -0.927956 +0.169548 -0.425779 -0.8888 0.560032 0.71289 0.169273 -0.42578 -0.888852 +0.056815 -0.425779 -0.903042 0.520032 0.71289 0.056535 -0.425781 -0.903058 +0.174223 -0.368124 -0.913308 0.560032 0.684062 0.173985 -0.368126 -0.913352 +0.169548 -0.425779 -0.8888 0.560032 0.71289 0.169273 -0.42578 -0.888852 +0.058381 -0.368124 -0.927942 0.520032 0.684062 0.05814 -0.368126 -0.927956 +0.174223 -0.368124 -0.913308 0.560032 0.684062 0.173985 -0.368126 -0.913352 +0.279607 -0.425779 -0.860542 0.600032 0.71289 0.279341 -0.42578 -0.860627 +0.169548 -0.425779 -0.8888 0.560032 0.71289 0.169273 -0.42578 -0.888852 +0.287317 -0.368124 -0.88427 0.600032 0.684062 0.287087 -0.368126 -0.884344 +0.279607 -0.425779 -0.860542 0.600032 0.71289 0.279341 -0.42578 -0.860627 +0.174223 -0.368124 -0.913308 0.560032 0.684062 0.173985 -0.368126 -0.913352 +0.287317 -0.368124 -0.88427 0.600032 0.684062 0.287087 -0.368126 -0.884344 +0.385257 -0.425779 -0.818712 0.640032 0.71289 0.385004 -0.425781 -0.81883 +0.279607 -0.425779 -0.860542 0.600032 0.71289 0.279341 -0.42578 -0.860627 +0.39588 -0.368124 -0.841287 0.640032 0.684062 0.395661 -0.368126 -0.841389 +0.385257 -0.425779 -0.818712 0.640032 0.71289 0.385004 -0.425781 -0.81883 +0.287317 -0.368124 -0.88427 0.600032 0.684062 0.287087 -0.368126 -0.884344 +0.39588 -0.368124 -0.841287 0.640032 0.684062 0.395661 -0.368126 -0.841389 +0.484831 -0.425779 -0.763971 0.680032 0.71289 0.484594 -0.425781 -0.76412 +0.385257 -0.425779 -0.818712 0.640032 0.71289 0.385004 -0.425781 -0.81883 +0.498199 -0.368124 -0.785036 0.680032 0.684062 0.497995 -0.368126 -0.785165 +0.484831 -0.425779 -0.763971 0.680032 0.71289 0.484594 -0.425781 -0.76412 +0.39588 -0.368124 -0.841287 0.640032 0.684062 0.395661 -0.368126 -0.841389 +0.498199 -0.368124 -0.785036 0.680032 0.684062 0.497995 -0.368126 -0.785165 +0.576759 -0.425779 -0.697181 0.720032 0.71289 0.576543 -0.42578 -0.697359 +0.484831 -0.425779 -0.763971 0.680032 0.71289 0.484594 -0.425781 -0.76412 +0.592662 -0.368124 -0.716405 0.720032 0.684062 0.592475 -0.368125 -0.716559 +0.576759 -0.425779 -0.697181 0.720032 0.71289 0.576543 -0.42578 -0.697359 +0.498199 -0.368124 -0.785036 0.680032 0.684062 0.497995 -0.368126 -0.785165 +0.592662 -0.368124 -0.716405 0.720032 0.684062 0.592475 -0.368125 -0.716559 +0.659591 -0.425779 -0.619397 0.760032 0.71289 0.659399 -0.42578 -0.6196 +0.576759 -0.425779 -0.697181 0.720032 0.71289 0.576543 -0.42578 -0.697359 +0.677778 -0.368124 -0.636476 0.760032 0.684062 0.677612 -0.368126 -0.636651 +0.659591 -0.425779 -0.619397 0.760032 0.71289 0.659399 -0.42578 -0.6196 +0.592662 -0.368124 -0.716405 0.720032 0.684062 0.592475 -0.368125 -0.716559 +0.677778 -0.368124 -0.636476 0.760032 0.684062 0.677612 -0.368126 -0.636651 +0.732021 -0.425779 -0.531844 0.800032 0.71289 0.731856 -0.42578 -0.53207 +0.659591 -0.425779 -0.619397 0.760032 0.71289 0.659399 -0.42578 -0.6196 +0.752205 -0.368124 -0.546509 0.800032 0.684062 0.752063 -0.368126 -0.546704 +0.732021 -0.425779 -0.531844 0.800032 0.71289 0.731856 -0.42578 -0.53207 +0.677778 -0.368124 -0.636476 0.760032 0.684062 0.677612 -0.368126 -0.636651 +0.752205 -0.368124 -0.546509 0.800032 0.684062 0.752063 -0.368126 -0.546704 +0.792906 -0.425779 -0.435904 0.840032 0.71289 0.792771 -0.42578 -0.436148 +0.732021 -0.425779 -0.531844 0.800032 0.71289 0.731856 -0.42578 -0.53207 +0.814769 -0.368124 -0.447923 0.840032 0.684062 0.814652 -0.368126 -0.448135 +0.792906 -0.425779 -0.435904 0.840032 0.71289 0.792771 -0.42578 -0.436148 +0.752205 -0.368124 -0.546509 0.800032 0.684062 0.752063 -0.368126 -0.546704 +0.814769 -0.368124 -0.447923 0.840032 0.684062 0.814652 -0.368126 -0.448135 +0.841287 -0.425779 -0.333089 0.880032 0.71289 0.841184 -0.42578 -0.333349 +0.792906 -0.425779 -0.435904 0.840032 0.71289 0.792771 -0.42578 -0.436148 +0.864484 -0.368124 -0.342274 0.880032 0.684062 0.864395 -0.368126 -0.342498 +0.841287 -0.425779 -0.333089 0.880032 0.71289 0.841184 -0.42578 -0.333349 +0.814769 -0.368124 -0.447923 0.840032 0.684062 0.814652 -0.368126 -0.448135 +0.864484 -0.368124 -0.342274 0.880032 0.684062 0.864395 -0.368126 -0.342498 +0.8764 -0.425779 -0.225021 0.920032 0.71289 0.87633 -0.42578 -0.225292 +0.841287 -0.425779 -0.333089 0.880032 0.71289 0.841184 -0.42578 -0.333349 +0.900566 -0.368124 -0.231226 0.920032 0.684062 0.900505 -0.368126 -0.23146 +0.8764 -0.425779 -0.225021 0.920032 0.71289 0.87633 -0.42578 -0.225292 +0.864484 -0.368124 -0.342274 0.880032 0.684062 0.864395 -0.368126 -0.342498 +0.900566 -0.368124 -0.231226 0.920032 0.684062 0.900505 -0.368126 -0.23146 +0.897692 -0.425779 -0.113405 0.960032 0.71289 0.897657 -0.425781 -0.113682 +0.8764 -0.425779 -0.225021 0.920032 0.71289 0.87633 -0.42578 -0.225292 +0.922445 -0.368124 -0.116532 0.960032 0.684062 0.922414 -0.368126 -0.116772 +0.897692 -0.425779 -0.113405 0.960032 0.71289 0.897657 -0.425781 -0.113682 +0.900566 -0.368124 -0.231226 0.920032 0.684062 0.900505 -0.368126 -0.23146 +0.922445 -0.368124 -0.116532 0.960032 0.684062 0.922414 -0.368126 -0.116772 +0.904827 -0.425779 -0 1.00003 0.71289 0.904827 -0.42578 -0.000283 +0.897692 -0.425779 -0.113405 0.960032 0.71289 0.897657 -0.425781 -0.113682 +0.929777 -0.368124 -0 1.00003 0.684062 0.929776 -0.368126 -0.000246 +0.904827 -0.425779 -0 1.00003 0.71289 0.904827 -0.42578 -0.000283 +0.922445 -0.368124 -0.116532 0.960032 0.684062 0.922414 -0.368126 -0.116772 +0.929777 -0.368124 -0 1.00003 0.684062 0.929776 -0.368126 -0.000246 +0.897693 -0.425779 0.113405 1.04003 0.71289 0.897727 -0.425781 0.113124 +0.904827 -0.425779 -0 1.00003 0.71289 0.904827 -0.42578 -0.000283 +0.922446 -0.368124 0.116532 1.04003 0.684062 0.922475 -0.368126 0.116288 +0.897693 -0.425779 0.113405 1.04003 0.71289 0.897727 -0.425781 0.113124 +0.929777 -0.368124 -0 1.00003 0.684062 0.929776 -0.368126 -0.000246 +0.943558 -0.309017 0.119199 1.04003 0.654508 0.943583 -0.309018 0.118994 +0.900567 -0.368124 0.231226 1.08003 0.684062 0.900625 -0.368126 0.230992 +0.922446 -0.368124 0.116532 1.04003 0.684062 0.922475 -0.368126 0.116288 +0.921178 -0.309017 0.236518 1.08003 0.654508 0.921228 -0.309018 0.236322 +0.900567 -0.368124 0.231226 1.08003 0.684062 0.900625 -0.368126 0.230992 +0.943558 -0.309017 0.119199 1.04003 0.654508 0.943583 -0.309018 0.118994 +0.921178 -0.309017 0.236518 1.08003 0.654508 0.921228 -0.309018 0.236322 +0.864485 -0.368124 0.342274 1.12003 0.684062 0.864573 -0.368126 0.342049 +0.900567 -0.368124 0.231226 1.08003 0.684062 0.900625 -0.368126 0.230992 +0.884271 -0.309017 0.350108 1.12003 0.654508 0.884344 -0.309018 0.349919 +0.864485 -0.368124 0.342274 1.12003 0.684062 0.864573 -0.368126 0.342049 +0.921178 -0.309017 0.236518 1.08003 0.654508 0.921228 -0.309018 0.236322 +0.884271 -0.309017 0.350108 1.12003 0.654508 0.884344 -0.309018 0.349919 +0.81477 -0.368124 0.447924 1.16003 0.684062 0.814885 -0.368126 0.447711 +0.864485 -0.368124 0.342274 1.12003 0.684062 0.864573 -0.368126 0.342049 +0.833418 -0.309017 0.458176 1.16003 0.654508 0.833515 -0.309018 0.457997 +0.81477 -0.368124 0.447924 1.16003 0.684062 0.814885 -0.368126 0.447711 +0.884271 -0.309017 0.350108 1.12003 0.654508 0.884344 -0.309018 0.349919 +0.833418 -0.309017 0.458176 1.16003 0.654508 0.833515 -0.309018 0.457997 +0.752206 -0.368124 0.54651 1.20003 0.684062 0.752347 -0.368126 0.546313 +0.81477 -0.368124 0.447924 1.16003 0.684062 0.814885 -0.368126 0.447711 +0.769422 -0.309017 0.559018 1.20003 0.654508 0.76954 -0.309018 0.558853 +0.752206 -0.368124 0.54651 1.20003 0.684062 0.752347 -0.368126 0.546313 +0.833418 -0.309017 0.458176 1.16003 0.654508 0.833515 -0.309018 0.457997 +0.769422 -0.309017 0.559018 1.20003 0.654508 0.76954 -0.309018 0.558853 +0.677779 -0.368124 0.636476 1.24003 0.684062 0.677943 -0.368126 0.636299 +0.752206 -0.368124 0.54651 1.20003 0.684062 0.752347 -0.368126 0.546313 +0.693291 -0.309017 0.651044 1.24003 0.654508 0.693429 -0.309018 0.650895 +0.677779 -0.368124 0.636476 1.24003 0.684062 0.677943 -0.368126 0.636299 +0.769422 -0.309017 0.559018 1.20003 0.654508 0.76954 -0.309018 0.558853 +0.693291 -0.309017 0.651044 1.24003 0.654508 0.693429 -0.309018 0.650895 +0.592662 -0.368124 0.716406 1.28003 0.684062 0.592848 -0.368126 0.716251 +0.677779 -0.368124 0.636476 1.24003 0.684062 0.677943 -0.368126 0.636299 +0.606227 -0.309017 0.732802 1.28003 0.654508 0.606382 -0.309018 0.732672 +0.592662 -0.368124 0.716406 1.28003 0.684062 0.592848 -0.368126 0.716251 +0.693291 -0.309017 0.651044 1.24003 0.654508 0.693429 -0.309018 0.650895 +0.606227 -0.309017 0.732802 1.28003 0.654508 0.606382 -0.309018 0.732672 +0.4982 -0.368124 0.785037 1.32003 0.684062 0.498403 -0.368126 0.784907 +0.592662 -0.368124 0.716406 1.28003 0.684062 0.592848 -0.368126 0.716251 +0.509602 -0.309017 0.803004 1.32003 0.654508 0.509773 -0.309018 0.802895 +0.4982 -0.368124 0.785037 1.32003 0.684062 0.498403 -0.368126 0.784907 +0.606227 -0.309017 0.732802 1.28003 0.654508 0.606382 -0.309018 0.732672 +0.509602 -0.309017 0.803004 1.32003 0.654508 0.509773 -0.309018 0.802895 +0.39588 -0.368124 0.841288 1.36003 0.684062 0.396098 -0.368126 0.841184 +0.4982 -0.368124 0.785037 1.32003 0.684062 0.498403 -0.368126 0.784907 +0.40494 -0.309017 0.860543 1.36003 0.654508 0.405123 -0.309018 0.860455 +0.39588 -0.368124 0.841288 1.36003 0.684062 0.396098 -0.368126 0.841184 +0.509602 -0.309017 0.803004 1.32003 0.654508 0.509773 -0.309018 0.802895 +0.40494 -0.309017 0.860543 1.36003 0.654508 0.405123 -0.309018 0.860455 +0.287317 -0.368124 0.884271 1.40003 0.684062 0.287546 -0.368126 0.884195 +0.39588 -0.368124 0.841288 1.36003 0.684062 0.396098 -0.368126 0.841184 +0.293893 -0.309017 0.904509 1.40003 0.654508 0.294085 -0.309018 0.904446 +0.287317 -0.368124 0.884271 1.40003 0.684062 0.287546 -0.368126 0.884195 +0.40494 -0.309017 0.860543 1.36003 0.654508 0.405123 -0.309018 0.860455 +0.293893 -0.309017 0.904509 1.40003 0.654508 0.294085 -0.309018 0.904446 +0.174223 -0.368124 0.913308 1.44003 0.684062 0.17446 -0.368126 0.913262 +0.287317 -0.368124 0.884271 1.40003 0.684062 0.287546 -0.368126 0.884195 +0.17821 -0.309017 0.934212 1.44003 0.654508 0.178409 -0.309018 0.934172 +0.174223 -0.368124 0.913308 1.44003 0.684062 0.17446 -0.368126 0.913262 +0.293893 -0.309017 0.904509 1.40003 0.654508 0.294085 -0.309018 0.904446 +0.17821 -0.309017 0.934212 1.44003 0.654508 0.178409 -0.309018 0.934172 +0.058381 -0.368124 0.927943 1.48003 0.684062 0.058622 -0.368126 0.927926 +0.174223 -0.368124 0.913308 1.44003 0.684062 0.17446 -0.368126 0.913262 +0.059717 -0.309017 0.949181 1.48003 0.654508 0.059919 -0.309018 0.949167 +0.058381 -0.368124 0.927943 1.48003 0.684062 0.058622 -0.368126 0.927926 +0.17821 -0.309017 0.934212 1.44003 0.654508 0.178409 -0.309018 0.934172 +0.059717 -0.309017 0.949181 1.48003 0.654508 0.059919 -0.309018 0.949167 +-0.058381 -0.368124 0.927943 1.52003 0.684062 -0.05814 -0.368126 0.927956 +0.058381 -0.368124 0.927943 1.48003 0.684062 0.058622 -0.368126 0.927926 +-0.059717 -0.309017 0.949181 1.52003 0.654508 -0.059515 -0.309018 0.949192 +-0.058381 -0.368124 0.927943 1.52003 0.684062 -0.05814 -0.368126 0.927956 +0.059717 -0.309017 0.949181 1.48003 0.654508 0.059919 -0.309018 0.949167 +-0.059717 -0.309017 0.949181 -0.479968 0.654508 -0.059515 -0.309018 0.949192 +-0.174223 -0.368124 0.913308 -0.439968 0.684062 -0.173985 -0.368126 0.913352 +-0.058381 -0.368124 0.927943 -0.479968 0.684062 -0.05814 -0.368126 0.927956 +-0.17821 -0.309017 0.934211 -0.439968 0.654508 -0.178011 -0.309019 0.934248 +-0.174223 -0.368124 0.913308 -0.439968 0.684062 -0.173985 -0.368126 0.913352 +-0.059717 -0.309017 0.949181 -0.479968 0.654508 -0.059515 -0.309018 0.949192 +-0.17821 -0.309017 0.934211 -0.439968 0.654508 -0.178011 -0.309019 0.934248 +-0.287317 -0.368124 0.884271 -0.399968 0.684062 -0.287087 -0.368126 0.884344 +-0.174223 -0.368124 0.913308 -0.439968 0.684062 -0.173985 -0.368126 0.913352 +-0.293893 -0.309017 0.904509 -0.399968 0.654508 -0.2937 -0.309018 0.904571 +-0.287317 -0.368124 0.884271 -0.399968 0.684062 -0.287087 -0.368126 0.884344 +-0.17821 -0.309017 0.934211 -0.439968 0.654508 -0.178011 -0.309019 0.934248 +-0.293893 -0.309017 0.904509 -0.399968 0.654508 -0.2937 -0.309018 0.904571 +-0.39588 -0.368124 0.841288 -0.359968 0.684062 -0.395661 -0.368126 0.841389 +-0.287317 -0.368124 0.884271 -0.399968 0.684062 -0.287087 -0.368126 0.884344 +-0.404941 -0.309017 0.860542 -0.359968 0.654508 -0.404757 -0.309018 0.860628 +-0.39588 -0.368124 0.841288 -0.359968 0.684062 -0.395661 -0.368126 0.841389 +-0.293893 -0.309017 0.904509 -0.399968 0.654508 -0.2937 -0.309018 0.904571 +-0.404941 -0.309017 0.860542 -0.359968 0.654508 -0.404757 -0.309018 0.860628 +-0.4982 -0.368124 0.785037 -0.319968 0.684062 -0.497995 -0.368126 0.785165 +-0.39588 -0.368124 0.841288 -0.359968 0.684062 -0.395661 -0.368126 0.841389 +-0.509602 -0.309017 0.803004 -0.319968 0.654508 -0.50943 -0.309018 0.803112 +-0.4982 -0.368124 0.785037 -0.319968 0.684062 -0.497995 -0.368126 0.785165 +-0.404941 -0.309017 0.860542 -0.359968 0.654508 -0.404757 -0.309018 0.860628 +-0.509602 -0.309017 0.803004 -0.319968 0.654508 -0.50943 -0.309018 0.803112 +-0.592662 -0.368124 0.716406 -0.279968 0.684062 -0.592475 -0.368126 0.716559 +-0.4982 -0.368124 0.785037 -0.319968 0.684062 -0.497995 -0.368126 0.785165 +-0.606227 -0.309017 0.732802 -0.279968 0.654508 -0.60607 -0.309018 0.732931 +-0.592662 -0.368124 0.716406 -0.279968 0.684062 -0.592475 -0.368126 0.716559 +-0.509602 -0.309017 0.803004 -0.319968 0.654508 -0.50943 -0.309018 0.803112 +-0.606227 -0.309017 0.732802 -0.279968 0.654508 -0.60607 -0.309018 0.732931 +-0.677778 -0.368124 0.636476 -0.239968 0.684062 -0.677612 -0.368126 0.636651 +-0.592662 -0.368124 0.716406 -0.279968 0.684062 -0.592475 -0.368126 0.716559 +-0.693291 -0.309017 0.651043 -0.239968 0.654508 -0.693151 -0.309018 0.65119 +-0.677778 -0.368124 0.636476 -0.239968 0.684062 -0.677612 -0.368126 0.636651 +-0.606227 -0.309017 0.732802 -0.279968 0.654508 -0.60607 -0.309018 0.732931 +-0.693291 -0.309017 0.651043 -0.239968 0.654508 -0.693151 -0.309018 0.65119 +-0.752206 -0.368124 0.546509 -0.199968 0.684062 -0.752063 -0.368125 0.546704 +-0.677778 -0.368124 0.636476 -0.239968 0.684062 -0.677612 -0.368126 0.636651 +-0.769421 -0.309017 0.559017 -0.199968 0.654508 -0.769302 -0.309018 0.55918 +-0.752206 -0.368124 0.546509 -0.199968 0.684062 -0.752063 -0.368125 0.546704 +-0.693291 -0.309017 0.651043 -0.239968 0.654508 -0.693151 -0.309018 0.65119 +-0.769421 -0.309017 0.559017 -0.199968 0.654508 -0.769302 -0.309018 0.55918 +-0.81477 -0.368124 0.447923 -0.159968 0.684062 -0.814653 -0.368126 0.448135 +-0.752206 -0.368124 0.546509 -0.199968 0.684062 -0.752063 -0.368125 0.546704 +-0.833418 -0.309017 0.458175 -0.159968 0.654508 -0.833319 -0.309019 0.458352 +-0.81477 -0.368124 0.447923 -0.159968 0.684062 -0.814653 -0.368126 0.448135 +-0.769421 -0.309017 0.559017 -0.199968 0.654508 -0.769302 -0.309018 0.55918 +-0.833418 -0.309017 0.458175 -0.159968 0.654508 -0.833319 -0.309019 0.458352 +-0.864485 -0.368124 0.342274 -0.119968 0.684062 -0.864395 -0.368126 0.342498 +-0.81477 -0.368124 0.447923 -0.159968 0.684062 -0.814653 -0.368126 0.448135 +-0.884271 -0.309017 0.350107 -0.119968 0.654508 -0.884195 -0.309018 0.350296 +-0.864485 -0.368124 0.342274 -0.119968 0.684062 -0.864395 -0.368126 0.342498 +-0.833418 -0.309017 0.458175 -0.159968 0.654508 -0.833319 -0.309019 0.458352 +-0.884271 -0.309017 0.350107 -0.119968 0.654508 -0.884195 -0.309018 0.350296 +-0.900566 -0.368124 0.231226 -0.079968 0.684062 -0.900505 -0.368126 0.23146 +-0.864485 -0.368124 0.342274 -0.119968 0.684062 -0.864395 -0.368126 0.342498 +-0.921178 -0.309017 0.236518 -0.079968 0.654508 -0.921127 -0.309018 0.236714 +-0.900566 -0.368124 0.231226 -0.079968 0.684062 -0.900505 -0.368126 0.23146 +-0.884271 -0.309017 0.350107 -0.119968 0.654508 -0.884195 -0.309018 0.350296 +-0.921178 -0.309017 0.236518 -0.079968 0.654508 -0.921127 -0.309018 0.236714 +-0.922446 -0.368124 0.116532 -0.039968 0.684062 -0.922414 -0.368126 0.116772 +-0.900566 -0.368124 0.231226 -0.079968 0.684062 -0.900505 -0.368126 0.23146 +-0.943558 -0.309017 0.119199 -0.039968 0.654508 -0.943531 -0.309018 0.1194 +-0.922446 -0.368124 0.116532 -0.039968 0.684062 -0.922414 -0.368126 0.116772 +-0.921178 -0.309017 0.236518 -0.079968 0.654508 -0.921127 -0.309018 0.236714 +-0.943558 -0.309017 0.119199 -0.039968 0.654508 -0.943531 -0.309018 0.1194 +-0.929777 -0.368124 -0 3.2e-005 0.684062 -0.929776 -0.368126 0.000242 +-0.922446 -0.368124 0.116532 -0.039968 0.684062 -0.922414 -0.368126 0.116772 +-0.951057 -0.309017 -0 3.2e-005 0.654508 -0.951056 -0.309019 0.000203 +-0.929777 -0.368124 -0 3.2e-005 0.684062 -0.929776 -0.368126 0.000242 +-0.943558 -0.309017 0.119199 -0.039968 0.654508 -0.943531 -0.309018 0.1194 +-0.951057 -0.309017 -0 3.2e-005 0.654508 -0.951056 -0.309019 0.000203 +-0.922445 -0.368124 -0.116532 0.040032 0.684062 -0.922475 -0.368126 -0.116292 +-0.929777 -0.368124 -0 3.2e-005 0.684062 -0.929776 -0.368126 0.000242 +-0.943558 -0.309017 -0.119199 0.040032 0.654508 -0.943582 -0.309018 -0.118998 +-0.922445 -0.368124 -0.116532 0.040032 0.684062 -0.922475 -0.368126 -0.116292 +-0.951057 -0.309017 -0 3.2e-005 0.654508 -0.951056 -0.309019 0.000203 +-0.943558 -0.309017 -0.119199 0.040032 0.654508 -0.943582 -0.309018 -0.118998 +-0.900566 -0.368124 -0.231226 0.080032 0.684062 -0.900626 -0.368125 -0.230992 +-0.922445 -0.368124 -0.116532 0.040032 0.684062 -0.922475 -0.368126 -0.116292 +-0.921178 -0.309017 -0.236518 0.080032 0.654508 -0.921228 -0.309018 -0.236321 +-0.900566 -0.368124 -0.231226 0.080032 0.684062 -0.900626 -0.368125 -0.230992 +-0.943558 -0.309017 -0.119199 0.040032 0.654508 -0.943582 -0.309018 -0.118998 +-0.921178 -0.309017 -0.236518 0.080032 0.654508 -0.921228 -0.309018 -0.236321 +-0.864485 -0.368124 -0.342274 0.120032 0.684062 -0.864573 -0.368126 -0.342049 +-0.900566 -0.368124 -0.231226 0.080032 0.684062 -0.900626 -0.368125 -0.230992 +-0.884271 -0.309017 -0.350108 0.120032 0.654508 -0.884344 -0.309018 -0.349919 +-0.864485 -0.368124 -0.342274 0.120032 0.684062 -0.864573 -0.368126 -0.342049 +-0.921178 -0.309017 -0.236518 0.080032 0.654508 -0.921228 -0.309018 -0.236321 +-0.884271 -0.309017 -0.350108 0.120032 0.654508 -0.884344 -0.309018 -0.349919 +-0.81477 -0.368124 -0.447924 0.160032 0.684062 -0.814885 -0.368126 -0.447712 +-0.864485 -0.368124 -0.342274 0.120032 0.684062 -0.864573 -0.368126 -0.342049 +-0.833418 -0.309017 -0.458175 0.160032 0.654508 -0.833514 -0.309018 -0.457997 +-0.81477 -0.368124 -0.447924 0.160032 0.684062 -0.814885 -0.368126 -0.447712 +-0.884271 -0.309017 -0.350108 0.120032 0.654508 -0.884344 -0.309018 -0.349919 +-0.833418 -0.309017 -0.458175 0.160032 0.654508 -0.833514 -0.309018 -0.457997 +-0.752205 -0.368124 -0.546509 0.200032 0.684062 -0.752347 -0.368126 -0.546313 +-0.81477 -0.368124 -0.447924 0.160032 0.684062 -0.814885 -0.368126 -0.447712 +-0.769421 -0.309017 -0.559017 0.200032 0.654508 -0.76954 -0.309018 -0.558853 +-0.752205 -0.368124 -0.546509 0.200032 0.684062 -0.752347 -0.368126 -0.546313 +-0.833418 -0.309017 -0.458175 0.160032 0.654508 -0.833514 -0.309018 -0.457997 +-0.769421 -0.309017 -0.559017 0.200032 0.654508 -0.76954 -0.309018 -0.558853 +-0.677778 -0.368124 -0.636476 0.240032 0.684062 -0.677943 -0.368126 -0.636299 +-0.752205 -0.368124 -0.546509 0.200032 0.684062 -0.752347 -0.368126 -0.546313 +-0.693291 -0.309017 -0.651043 0.240032 0.654508 -0.693429 -0.309019 -0.650895 +-0.677778 -0.368124 -0.636476 0.240032 0.684062 -0.677943 -0.368126 -0.636299 +-0.769421 -0.309017 -0.559017 0.200032 0.654508 -0.76954 -0.309018 -0.558853 +-0.693291 -0.309017 -0.651043 0.240032 0.654508 -0.693429 -0.309019 -0.650895 +-0.592662 -0.368124 -0.716406 0.280032 0.684062 -0.592847 -0.368126 -0.716251 +-0.677778 -0.368124 -0.636476 0.240032 0.684062 -0.677943 -0.368126 -0.636299 +-0.606226 -0.309017 -0.732802 0.280032 0.654508 -0.606382 -0.309018 -0.732672 +-0.592662 -0.368124 -0.716406 0.280032 0.684062 -0.592847 -0.368126 -0.716251 +-0.693291 -0.309017 -0.651043 0.240032 0.654508 -0.693429 -0.309019 -0.650895 +-0.606226 -0.309017 -0.732802 0.280032 0.654508 -0.606382 -0.309018 -0.732672 +-0.498199 -0.368124 -0.785037 0.320032 0.684062 -0.498403 -0.368126 -0.784907 +-0.592662 -0.368124 -0.716406 0.280032 0.684062 -0.592847 -0.368126 -0.716251 +-0.509602 -0.309017 -0.803004 0.320032 0.654508 -0.509772 -0.309018 -0.802895 +-0.498199 -0.368124 -0.785037 0.320032 0.684062 -0.498403 -0.368126 -0.784907 +-0.606226 -0.309017 -0.732802 0.280032 0.654508 -0.606382 -0.309018 -0.732672 +-0.509602 -0.309017 -0.803004 0.320032 0.654508 -0.509772 -0.309018 -0.802895 +-0.39588 -0.368124 -0.841287 0.360032 0.684062 -0.396098 -0.368126 -0.841184 +-0.498199 -0.368124 -0.785037 0.320032 0.684062 -0.498403 -0.368126 -0.784907 +-0.40494 -0.309017 -0.860542 0.360032 0.654508 -0.405123 -0.309018 -0.860455 +-0.39588 -0.368124 -0.841287 0.360032 0.684062 -0.396098 -0.368126 -0.841184 +-0.509602 -0.309017 -0.803004 0.320032 0.654508 -0.509772 -0.309018 -0.802895 +-0.40494 -0.309017 -0.860542 0.360032 0.654508 -0.405123 -0.309018 -0.860455 +-0.287317 -0.368124 -0.88427 0.400032 0.684062 -0.287546 -0.368126 -0.884195 +-0.39588 -0.368124 -0.841287 0.360032 0.684062 -0.396098 -0.368126 -0.841184 +-0.293893 -0.309017 -0.904509 0.400032 0.654508 -0.294085 -0.309018 -0.904446 +-0.287317 -0.368124 -0.88427 0.400032 0.684062 -0.287546 -0.368126 -0.884195 +-0.40494 -0.309017 -0.860542 0.360032 0.654508 -0.405123 -0.309018 -0.860455 +-0.293893 -0.309017 -0.904509 0.400032 0.654508 -0.294085 -0.309018 -0.904446 +-0.174223 -0.368124 -0.913308 0.440032 0.684062 -0.17446 -0.368126 -0.913262 +-0.287317 -0.368124 -0.88427 0.400032 0.684062 -0.287546 -0.368126 -0.884195 +-0.17821 -0.309017 -0.934211 0.440032 0.654508 -0.178409 -0.309018 -0.934172 +-0.174223 -0.368124 -0.913308 0.440032 0.684062 -0.17446 -0.368126 -0.913262 +-0.293893 -0.309017 -0.904509 0.400032 0.654508 -0.294085 -0.309018 -0.904446 +-0.17821 -0.309017 -0.934211 0.440032 0.654508 -0.178409 -0.309018 -0.934172 +-0.058381 -0.368124 -0.927942 0.480032 0.684062 -0.058622 -0.368126 -0.927926 +-0.174223 -0.368124 -0.913308 0.440032 0.684062 -0.17446 -0.368126 -0.913262 +-0.059717 -0.309017 -0.94918 0.480032 0.654508 -0.059919 -0.309018 -0.949167 +-0.058381 -0.368124 -0.927942 0.480032 0.684062 -0.058622 -0.368126 -0.927926 +-0.17821 -0.309017 -0.934211 0.440032 0.654508 -0.178409 -0.309018 -0.934172 +-0.059717 -0.309017 -0.94918 0.480032 0.654508 -0.059919 -0.309018 -0.949167 +0.058381 -0.368124 -0.927942 0.520032 0.684062 0.05814 -0.368126 -0.927956 +-0.058381 -0.368124 -0.927942 0.480032 0.684062 -0.058622 -0.368126 -0.927926 +0.059717 -0.309017 -0.94918 0.520032 0.654508 0.059515 -0.309018 -0.949192 +0.058381 -0.368124 -0.927942 0.520032 0.684062 0.05814 -0.368126 -0.927956 +-0.059717 -0.309017 -0.94918 0.480032 0.654508 -0.059919 -0.309018 -0.949167 +0.059717 -0.309017 -0.94918 0.520032 0.654508 0.059515 -0.309018 -0.949192 +0.174223 -0.368124 -0.913308 0.560032 0.684062 0.173985 -0.368126 -0.913352 +0.058381 -0.368124 -0.927942 0.520032 0.684062 0.05814 -0.368126 -0.927956 +0.17821 -0.309017 -0.934211 0.560032 0.654508 0.178011 -0.309018 -0.934248 +0.174223 -0.368124 -0.913308 0.560032 0.684062 0.173985 -0.368126 -0.913352 +0.059717 -0.309017 -0.94918 0.520032 0.654508 0.059515 -0.309018 -0.949192 +0.17821 -0.309017 -0.934211 0.560032 0.654508 0.178011 -0.309018 -0.934248 +0.287317 -0.368124 -0.88427 0.600032 0.684062 0.287087 -0.368126 -0.884344 +0.174223 -0.368124 -0.913308 0.560032 0.684062 0.173985 -0.368126 -0.913352 +0.293893 -0.309017 -0.904509 0.600032 0.654508 0.2937 -0.309018 -0.904571 +0.287317 -0.368124 -0.88427 0.600032 0.684062 0.287087 -0.368126 -0.884344 +0.17821 -0.309017 -0.934211 0.560032 0.654508 0.178011 -0.309018 -0.934248 +0.293893 -0.309017 -0.904509 0.600032 0.654508 0.2937 -0.309018 -0.904571 +0.39588 -0.368124 -0.841287 0.640032 0.684062 0.395661 -0.368126 -0.841389 +0.287317 -0.368124 -0.88427 0.600032 0.684062 0.287087 -0.368126 -0.884344 +0.40494 -0.309017 -0.860542 0.640032 0.654508 0.404757 -0.309018 -0.860628 +0.39588 -0.368124 -0.841287 0.640032 0.684062 0.395661 -0.368126 -0.841389 +0.293893 -0.309017 -0.904509 0.600032 0.654508 0.2937 -0.309018 -0.904571 +0.40494 -0.309017 -0.860542 0.640032 0.654508 0.404757 -0.309018 -0.860628 +0.498199 -0.368124 -0.785036 0.680032 0.684062 0.497995 -0.368126 -0.785165 +0.39588 -0.368124 -0.841287 0.640032 0.684062 0.395661 -0.368126 -0.841389 +0.509602 -0.309017 -0.803004 0.680032 0.654508 0.50943 -0.309018 -0.803112 +0.498199 -0.368124 -0.785036 0.680032 0.684062 0.497995 -0.368126 -0.785165 +0.40494 -0.309017 -0.860542 0.640032 0.654508 0.404757 -0.309018 -0.860628 +0.509602 -0.309017 -0.803004 0.680032 0.654508 0.50943 -0.309018 -0.803112 +0.592662 -0.368124 -0.716405 0.720032 0.684062 0.592475 -0.368125 -0.716559 +0.498199 -0.368124 -0.785036 0.680032 0.684062 0.497995 -0.368126 -0.785165 +0.606226 -0.309017 -0.732802 0.720032 0.654508 0.60607 -0.309018 -0.732931 +0.592662 -0.368124 -0.716405 0.720032 0.684062 0.592475 -0.368125 -0.716559 +0.509602 -0.309017 -0.803004 0.680032 0.654508 0.50943 -0.309018 -0.803112 +0.606226 -0.309017 -0.732802 0.720032 0.654508 0.60607 -0.309018 -0.732931 +0.677778 -0.368124 -0.636476 0.760032 0.684062 0.677612 -0.368126 -0.636651 +0.592662 -0.368124 -0.716405 0.720032 0.684062 0.592475 -0.368125 -0.716559 +0.693291 -0.309017 -0.651043 0.760032 0.654508 0.693151 -0.309018 -0.651191 +0.677778 -0.368124 -0.636476 0.760032 0.684062 0.677612 -0.368126 -0.636651 +0.606226 -0.309017 -0.732802 0.720032 0.654508 0.60607 -0.309018 -0.732931 +0.693291 -0.309017 -0.651043 0.760032 0.654508 0.693151 -0.309018 -0.651191 +0.752205 -0.368124 -0.546509 0.800032 0.684062 0.752063 -0.368126 -0.546704 +0.677778 -0.368124 -0.636476 0.760032 0.684062 0.677612 -0.368126 -0.636651 +0.769421 -0.309017 -0.559017 0.800032 0.654508 0.769302 -0.309018 -0.559181 +0.752205 -0.368124 -0.546509 0.800032 0.684062 0.752063 -0.368126 -0.546704 +0.693291 -0.309017 -0.651043 0.760032 0.654508 0.693151 -0.309018 -0.651191 +0.769421 -0.309017 -0.559017 0.800032 0.654508 0.769302 -0.309018 -0.559181 +0.814769 -0.368124 -0.447923 0.840032 0.684062 0.814652 -0.368126 -0.448135 +0.752205 -0.368124 -0.546509 0.800032 0.684062 0.752063 -0.368126 -0.546704 +0.833417 -0.309017 -0.458175 0.840032 0.654508 0.833319 -0.309018 -0.458352 +0.814769 -0.368124 -0.447923 0.840032 0.684062 0.814652 -0.368126 -0.448135 +0.769421 -0.309017 -0.559017 0.800032 0.654508 0.769302 -0.309018 -0.559181 +0.833417 -0.309017 -0.458175 0.840032 0.654508 0.833319 -0.309018 -0.458352 +0.864484 -0.368124 -0.342274 0.880032 0.684062 0.864395 -0.368126 -0.342498 +0.814769 -0.368124 -0.447923 0.840032 0.684062 0.814652 -0.368126 -0.448135 +0.88427 -0.309017 -0.350107 0.880032 0.654508 0.884195 -0.309018 -0.350296 +0.864484 -0.368124 -0.342274 0.880032 0.684062 0.864395 -0.368126 -0.342498 +0.833417 -0.309017 -0.458175 0.840032 0.654508 0.833319 -0.309018 -0.458352 +0.88427 -0.309017 -0.350107 0.880032 0.654508 0.884195 -0.309018 -0.350296 +0.900566 -0.368124 -0.231226 0.920032 0.684062 0.900505 -0.368126 -0.23146 +0.864484 -0.368124 -0.342274 0.880032 0.684062 0.864395 -0.368126 -0.342498 +0.921177 -0.309017 -0.236518 0.920032 0.654508 0.921127 -0.309018 -0.236715 +0.900566 -0.368124 -0.231226 0.920032 0.684062 0.900505 -0.368126 -0.23146 +0.88427 -0.309017 -0.350107 0.880032 0.654508 0.884195 -0.309018 -0.350296 +0.921177 -0.309017 -0.236518 0.920032 0.654508 0.921127 -0.309018 -0.236715 +0.922445 -0.368124 -0.116532 0.960032 0.684062 0.922414 -0.368126 -0.116772 +0.900566 -0.368124 -0.231226 0.920032 0.684062 0.900505 -0.368126 -0.23146 +0.943557 -0.309017 -0.119199 0.960032 0.654508 0.943531 -0.309018 -0.1194 +0.922445 -0.368124 -0.116532 0.960032 0.684062 0.922414 -0.368126 -0.116772 +0.921177 -0.309017 -0.236518 0.920032 0.654508 0.921127 -0.309018 -0.236715 +0.943557 -0.309017 -0.119199 0.960032 0.654508 0.943531 -0.309018 -0.1194 +0.929777 -0.368124 -0 1.00003 0.684062 0.929776 -0.368126 -0.000246 +0.922445 -0.368124 -0.116532 0.960032 0.684062 0.922414 -0.368126 -0.116772 +0.951057 -0.309017 -0 1.00003 0.654508 0.951056 -0.309018 -0.000207 +0.929777 -0.368124 -0 1.00003 0.684062 0.929776 -0.368126 -0.000246 +0.943557 -0.309017 -0.119199 0.960032 0.654508 0.943531 -0.309018 -0.1194 +0.951057 -0.309017 -0 1.00003 0.654508 0.951056 -0.309018 -0.000207 +0.922446 -0.368124 0.116532 1.04003 0.684062 0.922475 -0.368126 0.116288 +0.929777 -0.368124 -0 1.00003 0.684062 0.929776 -0.368126 -0.000246 +0.943558 -0.309017 0.119199 1.04003 0.654508 0.943583 -0.309018 0.118994 +0.922446 -0.368124 0.116532 1.04003 0.684062 0.922475 -0.368126 0.116288 +0.951057 -0.309017 -0 1.00003 0.654508 0.951056 -0.309018 -0.000207 +0.960947 -0.24869 0.121396 1.04003 0.624345 0.960966 -0.248691 0.12123 +0.921178 -0.309017 0.236518 1.08003 0.654508 0.921228 -0.309018 0.236322 +0.943558 -0.309017 0.119199 1.04003 0.654508 0.943583 -0.309018 0.118994 +0.938154 -0.24869 0.240877 1.08003 0.624345 0.938194 -0.24869 0.240719 +0.921178 -0.309017 0.236518 1.08003 0.654508 0.921228 -0.309018 0.236322 +0.960947 -0.24869 0.121396 1.04003 0.624345 0.960966 -0.248691 0.12123 +0.938154 -0.24869 0.240877 1.08003 0.624345 0.938194 -0.24869 0.240719 +0.884271 -0.309017 0.350108 1.12003 0.654508 0.884344 -0.309018 0.349919 +0.921178 -0.309017 0.236518 1.08003 0.654508 0.921228 -0.309018 0.236322 +0.900567 -0.24869 0.35656 1.12003 0.624345 0.900626 -0.24869 0.356408 +0.884271 -0.309017 0.350108 1.12003 0.654508 0.884344 -0.309018 0.349919 +0.938154 -0.24869 0.240877 1.08003 0.624345 0.938194 -0.24869 0.240719 +0.900567 -0.24869 0.35656 1.12003 0.624345 0.900626 -0.24869 0.356408 +0.833418 -0.309017 0.458176 1.16003 0.654508 0.833515 -0.309018 0.457997 +0.884271 -0.309017 0.350108 1.12003 0.654508 0.884344 -0.309018 0.349919 +0.848777 -0.24869 0.466619 1.16003 0.624345 0.848854 -0.248691 0.466476 +0.833418 -0.309017 0.458176 1.16003 0.654508 0.833515 -0.309018 0.457997 +0.900567 -0.24869 0.35656 1.12003 0.624345 0.900626 -0.24869 0.356408 +0.848777 -0.24869 0.466619 1.16003 0.624345 0.848854 -0.248691 0.466476 +0.769422 -0.309017 0.559018 1.20003 0.654508 0.76954 -0.309018 0.558853 +0.833418 -0.309017 0.458176 1.16003 0.654508 0.833515 -0.309018 0.457997 +0.783601 -0.24869 0.569319 1.20003 0.624345 0.783696 -0.248691 0.569187 +0.769422 -0.309017 0.559018 1.20003 0.654508 0.76954 -0.309018 0.558853 +0.848777 -0.24869 0.466619 1.16003 0.624345 0.848854 -0.248691 0.466476 +0.783601 -0.24869 0.569319 1.20003 0.624345 0.783696 -0.248691 0.569187 +0.693291 -0.309017 0.651044 1.24003 0.654508 0.693429 -0.309018 0.650895 +0.769422 -0.309017 0.559018 1.20003 0.654508 0.76954 -0.309018 0.558853 +0.706067 -0.24869 0.663041 1.24003 0.624345 0.706178 -0.24869 0.662922 +0.693291 -0.309017 0.651044 1.24003 0.654508 0.693429 -0.309018 0.650895 +0.783601 -0.24869 0.569319 1.20003 0.624345 0.783696 -0.248691 0.569187 +0.706067 -0.24869 0.663041 1.24003 0.624345 0.706178 -0.24869 0.662922 +0.606227 -0.309017 0.732802 1.28003 0.654508 0.606382 -0.309018 0.732672 +0.693291 -0.309017 0.651044 1.24003 0.654508 0.693429 -0.309018 0.650895 +0.617399 -0.24869 0.746307 1.28003 0.624345 0.617524 -0.248691 0.746202 +0.606227 -0.309017 0.732802 1.28003 0.654508 0.606382 -0.309018 0.732672 +0.706067 -0.24869 0.663041 1.24003 0.624345 0.706178 -0.24869 0.662922 +0.617399 -0.24869 0.746307 1.28003 0.624345 0.617524 -0.248691 0.746202 +0.509602 -0.309017 0.803004 1.32003 0.654508 0.509773 -0.309018 0.802895 +0.606227 -0.309017 0.732802 1.28003 0.654508 0.606382 -0.309018 0.732672 +0.518993 -0.24869 0.817803 1.32003 0.624345 0.51913 -0.248691 0.817714 +0.509602 -0.309017 0.803004 1.32003 0.654508 0.509773 -0.309018 0.802895 +0.617399 -0.24869 0.746307 1.28003 0.624345 0.617524 -0.248691 0.746202 +0.518993 -0.24869 0.817803 1.32003 0.624345 0.51913 -0.248691 0.817714 +0.40494 -0.309017 0.860543 1.36003 0.654508 0.405123 -0.309018 0.860455 +0.509602 -0.309017 0.803004 1.32003 0.654508 0.509773 -0.309018 0.802895 +0.412403 -0.24869 0.876401 1.36003 0.624345 0.41255 -0.24869 0.876331 +0.40494 -0.309017 0.860543 1.36003 0.654508 0.405123 -0.309018 0.860455 +0.518993 -0.24869 0.817803 1.32003 0.624345 0.51913 -0.248691 0.817714 +0.412403 -0.24869 0.876401 1.36003 0.624345 0.41255 -0.24869 0.876331 +0.293893 -0.309017 0.904509 1.40003 0.654508 0.294085 -0.309018 0.904446 +0.40494 -0.309017 0.860543 1.36003 0.654508 0.405123 -0.309018 0.860455 +0.299309 -0.24869 0.921178 1.40003 0.624345 0.299464 -0.248691 0.921127 +0.293893 -0.309017 0.904509 1.40003 0.654508 0.294085 -0.309018 0.904446 +0.412403 -0.24869 0.876401 1.36003 0.624345 0.41255 -0.24869 0.876331 +0.299309 -0.24869 0.921178 1.40003 0.624345 0.299464 -0.248691 0.921127 +0.17821 -0.309017 0.934212 1.44003 0.654508 0.178409 -0.309018 0.934172 +0.293893 -0.309017 0.904509 1.40003 0.654508 0.294085 -0.309018 0.904446 +0.181494 -0.24869 0.951428 1.44003 0.624345 0.181655 -0.24869 0.951396 +0.17821 -0.309017 0.934212 1.44003 0.654508 0.178409 -0.309018 0.934172 +0.299309 -0.24869 0.921178 1.40003 0.624345 0.299464 -0.248691 0.921127 +0.181494 -0.24869 0.951428 1.44003 0.624345 0.181655 -0.24869 0.951396 +0.059717 -0.309017 0.949181 1.48003 0.654508 0.059919 -0.309018 0.949167 +0.17821 -0.309017 0.934212 1.44003 0.654508 0.178409 -0.309018 0.934172 +0.060818 -0.24869 0.966673 1.48003 0.624345 0.06098 -0.24869 0.966662 +0.059717 -0.309017 0.949181 1.48003 0.654508 0.059919 -0.309018 0.949167 +0.181494 -0.24869 0.951428 1.44003 0.624345 0.181655 -0.24869 0.951396 +0.060818 -0.24869 0.966673 1.48003 0.624345 0.06098 -0.24869 0.966662 +-0.059717 -0.309017 0.949181 1.52003 0.654508 -0.059515 -0.309018 0.949192 +0.059717 -0.309017 0.949181 1.48003 0.654508 0.059919 -0.309018 0.949167 +-0.060818 -0.24869 0.966673 1.52003 0.624345 -0.060655 -0.24869 0.966682 +-0.059717 -0.309017 0.949181 1.52003 0.654508 -0.059515 -0.309018 0.949192 +0.060818 -0.24869 0.966673 1.48003 0.624345 0.06098 -0.24869 0.966662 +-0.060818 -0.24869 0.966673 -0.479968 0.624345 -0.060655 -0.24869 0.966682 +-0.17821 -0.309017 0.934211 -0.439968 0.654508 -0.178011 -0.309019 0.934248 +-0.059717 -0.309017 0.949181 -0.479968 0.654508 -0.059515 -0.309018 0.949192 +-0.181495 -0.24869 0.951428 -0.439968 0.624345 -0.181334 -0.24869 0.951457 +-0.17821 -0.309017 0.934211 -0.439968 0.654508 -0.178011 -0.309019 0.934248 +-0.060818 -0.24869 0.966673 -0.479968 0.624345 -0.060655 -0.24869 0.966682 +-0.181495 -0.24869 0.951428 -0.439968 0.624345 -0.181334 -0.24869 0.951457 +-0.293893 -0.309017 0.904509 -0.399968 0.654508 -0.2937 -0.309018 0.904571 +-0.17821 -0.309017 0.934211 -0.439968 0.654508 -0.178011 -0.309019 0.934248 +-0.299309 -0.24869 0.921178 -0.399968 0.624345 -0.299154 -0.24869 0.921228 +-0.293893 -0.309017 0.904509 -0.399968 0.654508 -0.2937 -0.309018 0.904571 +-0.181495 -0.24869 0.951428 -0.439968 0.624345 -0.181334 -0.24869 0.951457 +-0.299309 -0.24869 0.921178 -0.399968 0.624345 -0.299154 -0.24869 0.921228 +-0.404941 -0.309017 0.860542 -0.359968 0.654508 -0.404757 -0.309018 0.860628 +-0.293893 -0.309017 0.904509 -0.399968 0.654508 -0.2937 -0.309018 0.904571 +-0.412403 -0.24869 0.876401 -0.359968 0.624345 -0.412255 -0.24869 0.87647 +-0.404941 -0.309017 0.860542 -0.359968 0.654508 -0.404757 -0.309018 0.860628 +-0.299309 -0.24869 0.921178 -0.399968 0.624345 -0.299154 -0.24869 0.921228 +-0.412403 -0.24869 0.876401 -0.359968 0.624345 -0.412255 -0.24869 0.87647 +-0.509602 -0.309017 0.803004 -0.319968 0.654508 -0.50943 -0.309018 0.803112 +-0.404941 -0.309017 0.860542 -0.359968 0.654508 -0.404757 -0.309018 0.860628 +-0.518993 -0.24869 0.817802 -0.319968 0.624345 -0.518855 -0.248691 0.817889 +-0.509602 -0.309017 0.803004 -0.319968 0.654508 -0.50943 -0.309018 0.803112 +-0.412403 -0.24869 0.876401 -0.359968 0.624345 -0.412255 -0.24869 0.87647 +-0.518993 -0.24869 0.817802 -0.319968 0.624345 -0.518855 -0.248691 0.817889 +-0.606227 -0.309017 0.732802 -0.279968 0.654508 -0.60607 -0.309018 0.732931 +-0.509602 -0.309017 0.803004 -0.319968 0.654508 -0.50943 -0.309018 0.803112 +-0.617399 -0.24869 0.746307 -0.279968 0.624345 -0.617272 -0.24869 0.74641 +-0.606227 -0.309017 0.732802 -0.279968 0.654508 -0.60607 -0.309018 0.732931 +-0.518993 -0.24869 0.817802 -0.319968 0.624345 -0.518855 -0.248691 0.817889 +-0.617399 -0.24869 0.746307 -0.279968 0.624345 -0.617272 -0.24869 0.74641 +-0.693291 -0.309017 0.651043 -0.239968 0.654508 -0.693151 -0.309018 0.65119 +-0.606227 -0.309017 0.732802 -0.279968 0.654508 -0.60607 -0.309018 0.732931 +-0.706067 -0.24869 0.663041 -0.239968 0.624345 -0.705955 -0.24869 0.66316 +-0.693291 -0.309017 0.651043 -0.239968 0.654508 -0.693151 -0.309018 0.65119 +-0.617399 -0.24869 0.746307 -0.279968 0.624345 -0.617272 -0.24869 0.74641 +-0.706067 -0.24869 0.663041 -0.239968 0.624345 -0.705955 -0.24869 0.66316 +-0.769421 -0.309017 0.559017 -0.199968 0.654508 -0.769302 -0.309018 0.55918 +-0.693291 -0.309017 0.651043 -0.239968 0.654508 -0.693151 -0.309018 0.65119 +-0.783601 -0.24869 0.569319 -0.199968 0.624345 -0.783504 -0.24869 0.569451 +-0.769421 -0.309017 0.559017 -0.199968 0.654508 -0.769302 -0.309018 0.55918 +-0.706067 -0.24869 0.663041 -0.239968 0.624345 -0.705955 -0.24869 0.66316 +-0.783601 -0.24869 0.569319 -0.199968 0.624345 -0.783504 -0.24869 0.569451 +-0.833418 -0.309017 0.458175 -0.159968 0.654508 -0.833319 -0.309019 0.458352 +-0.769421 -0.309017 0.559017 -0.199968 0.654508 -0.769302 -0.309018 0.55918 +-0.848777 -0.24869 0.466619 -0.159968 0.624345 -0.848697 -0.248691 0.466762 +-0.833418 -0.309017 0.458175 -0.159968 0.654508 -0.833319 -0.309019 0.458352 +-0.783601 -0.24869 0.569319 -0.199968 0.624345 -0.783504 -0.24869 0.569451 +-0.848777 -0.24869 0.466619 -0.159968 0.624345 -0.848697 -0.248691 0.466762 +-0.884271 -0.309017 0.350107 -0.119968 0.654508 -0.884195 -0.309018 0.350296 +-0.833418 -0.309017 0.458175 -0.159968 0.654508 -0.833319 -0.309019 0.458352 +-0.900567 -0.24869 0.356559 -0.119968 0.624345 -0.900506 -0.24869 0.356711 +-0.884271 -0.309017 0.350107 -0.119968 0.654508 -0.884195 -0.309018 0.350296 +-0.848777 -0.24869 0.466619 -0.159968 0.624345 -0.848697 -0.248691 0.466762 +-0.900567 -0.24869 0.356559 -0.119968 0.624345 -0.900506 -0.24869 0.356711 +-0.921178 -0.309017 0.236518 -0.079968 0.654508 -0.921127 -0.309018 0.236714 +-0.884271 -0.309017 0.350107 -0.119968 0.654508 -0.884195 -0.309018 0.350296 +-0.938154 -0.24869 0.240877 -0.079968 0.624345 -0.938113 -0.248691 0.241035 +-0.921178 -0.309017 0.236518 -0.079968 0.654508 -0.921127 -0.309018 0.236714 +-0.900567 -0.24869 0.356559 -0.119968 0.624345 -0.900506 -0.24869 0.356711 +-0.938154 -0.24869 0.240877 -0.079968 0.624345 -0.938113 -0.248691 0.241035 +-0.943558 -0.309017 0.119199 -0.039968 0.654508 -0.943531 -0.309018 0.1194 +-0.921178 -0.309017 0.236518 -0.079968 0.654508 -0.921127 -0.309018 0.236714 +-0.960946 -0.24869 0.121396 -0.039968 0.624345 -0.960925 -0.248691 0.121558 +-0.943558 -0.309017 0.119199 -0.039968 0.654508 -0.943531 -0.309018 0.1194 +-0.938154 -0.24869 0.240877 -0.079968 0.624345 -0.938113 -0.248691 0.241035 +-0.960946 -0.24869 0.121396 -0.039968 0.624345 -0.960925 -0.248691 0.121558 +-0.951057 -0.309017 -0 3.2e-005 0.654508 -0.951056 -0.309019 0.000203 +-0.943558 -0.309017 0.119199 -0.039968 0.654508 -0.943531 -0.309018 0.1194 +-0.968584 -0.24869 -0 3.2e-005 0.624345 -0.968583 -0.24869 0.000163 +-0.951057 -0.309017 -0 3.2e-005 0.654508 -0.951056 -0.309019 0.000203 +-0.960946 -0.24869 0.121396 -0.039968 0.624345 -0.960925 -0.248691 0.121558 +-0.968584 -0.24869 -0 3.2e-005 0.624345 -0.968583 -0.24869 0.000163 +-0.943558 -0.309017 -0.119199 0.040032 0.654508 -0.943582 -0.309018 -0.118998 +-0.951057 -0.309017 -0 3.2e-005 0.654508 -0.951056 -0.309019 0.000203 +-0.960946 -0.24869 -0.121396 0.040032 0.624345 -0.960966 -0.248691 -0.121234 +-0.943558 -0.309017 -0.119199 0.040032 0.654508 -0.943582 -0.309018 -0.118998 +-0.968584 -0.24869 -0 3.2e-005 0.624345 -0.968583 -0.24869 0.000163 +-0.960946 -0.24869 -0.121396 0.040032 0.624345 -0.960966 -0.248691 -0.121234 +-0.921178 -0.309017 -0.236518 0.080032 0.654508 -0.921228 -0.309018 -0.236321 +-0.943558 -0.309017 -0.119199 0.040032 0.654508 -0.943582 -0.309018 -0.118998 +-0.938154 -0.24869 -0.240877 0.080032 0.624345 -0.938194 -0.24869 -0.240719 +-0.921178 -0.309017 -0.236518 0.080032 0.654508 -0.921228 -0.309018 -0.236321 +-0.960946 -0.24869 -0.121396 0.040032 0.624345 -0.960966 -0.248691 -0.121234 +-0.938154 -0.24869 -0.240877 0.080032 0.624345 -0.938194 -0.24869 -0.240719 +-0.884271 -0.309017 -0.350108 0.120032 0.654508 -0.884344 -0.309018 -0.349919 +-0.921178 -0.309017 -0.236518 0.080032 0.654508 -0.921228 -0.309018 -0.236321 +-0.900566 -0.24869 -0.35656 0.120032 0.624345 -0.900626 -0.248691 -0.356408 +-0.884271 -0.309017 -0.350108 0.120032 0.654508 -0.884344 -0.309018 -0.349919 +-0.938154 -0.24869 -0.240877 0.080032 0.624345 -0.938194 -0.24869 -0.240719 +-0.900566 -0.24869 -0.35656 0.120032 0.624345 -0.900626 -0.248691 -0.356408 +-0.833418 -0.309017 -0.458175 0.160032 0.654508 -0.833514 -0.309018 -0.457997 +-0.884271 -0.309017 -0.350108 0.120032 0.654508 -0.884344 -0.309018 -0.349919 +-0.848776 -0.24869 -0.466619 0.160032 0.624345 -0.848854 -0.24869 -0.466476 +-0.833418 -0.309017 -0.458175 0.160032 0.654508 -0.833514 -0.309018 -0.457997 +-0.900566 -0.24869 -0.35656 0.120032 0.624345 -0.900626 -0.248691 -0.356408 +-0.848776 -0.24869 -0.466619 0.160032 0.624345 -0.848854 -0.24869 -0.466476 +-0.769421 -0.309017 -0.559017 0.200032 0.654508 -0.76954 -0.309018 -0.558853 +-0.833418 -0.309017 -0.458175 0.160032 0.654508 -0.833514 -0.309018 -0.457997 +-0.783601 -0.24869 -0.569319 0.200032 0.624345 -0.783696 -0.24869 -0.569187 +-0.769421 -0.309017 -0.559017 0.200032 0.654508 -0.76954 -0.309018 -0.558853 +-0.848776 -0.24869 -0.466619 0.160032 0.624345 -0.848854 -0.24869 -0.466476 +-0.783601 -0.24869 -0.569319 0.200032 0.624345 -0.783696 -0.24869 -0.569187 +-0.693291 -0.309017 -0.651043 0.240032 0.654508 -0.693429 -0.309019 -0.650895 +-0.769421 -0.309017 -0.559017 0.200032 0.654508 -0.76954 -0.309018 -0.558853 +-0.706067 -0.24869 -0.663041 0.240032 0.624345 -0.706178 -0.24869 -0.662922 +-0.693291 -0.309017 -0.651043 0.240032 0.654508 -0.693429 -0.309019 -0.650895 +-0.783601 -0.24869 -0.569319 0.200032 0.624345 -0.783696 -0.24869 -0.569187 +-0.706067 -0.24869 -0.663041 0.240032 0.624345 -0.706178 -0.24869 -0.662922 +-0.606226 -0.309017 -0.732802 0.280032 0.654508 -0.606382 -0.309018 -0.732672 +-0.693291 -0.309017 -0.651043 0.240032 0.654508 -0.693429 -0.309019 -0.650895 +-0.617398 -0.24869 -0.746307 0.280032 0.624345 -0.617524 -0.24869 -0.746202 +-0.606226 -0.309017 -0.732802 0.280032 0.654508 -0.606382 -0.309018 -0.732672 +-0.706067 -0.24869 -0.663041 0.240032 0.624345 -0.706178 -0.24869 -0.662922 +-0.617398 -0.24869 -0.746307 0.280032 0.624345 -0.617524 -0.24869 -0.746202 +-0.509602 -0.309017 -0.803004 0.320032 0.654508 -0.509772 -0.309018 -0.802895 +-0.606226 -0.309017 -0.732802 0.280032 0.654508 -0.606382 -0.309018 -0.732672 +-0.518993 -0.24869 -0.817802 0.320032 0.624345 -0.51913 -0.248691 -0.817715 +-0.509602 -0.309017 -0.803004 0.320032 0.654508 -0.509772 -0.309018 -0.802895 +-0.617398 -0.24869 -0.746307 0.280032 0.624345 -0.617524 -0.24869 -0.746202 +-0.518993 -0.24869 -0.817802 0.320032 0.624345 -0.51913 -0.248691 -0.817715 +-0.40494 -0.309017 -0.860542 0.360032 0.654508 -0.405123 -0.309018 -0.860455 +-0.509602 -0.309017 -0.803004 0.320032 0.654508 -0.509772 -0.309018 -0.802895 +-0.412403 -0.24869 -0.876401 0.360032 0.624345 -0.41255 -0.24869 -0.876331 +-0.40494 -0.309017 -0.860542 0.360032 0.654508 -0.405123 -0.309018 -0.860455 +-0.518993 -0.24869 -0.817802 0.320032 0.624345 -0.51913 -0.248691 -0.817715 +-0.412403 -0.24869 -0.876401 0.360032 0.624345 -0.41255 -0.24869 -0.876331 +-0.293893 -0.309017 -0.904509 0.400032 0.654508 -0.294085 -0.309018 -0.904446 +-0.40494 -0.309017 -0.860542 0.360032 0.654508 -0.405123 -0.309018 -0.860455 +-0.299309 -0.24869 -0.921178 0.400032 0.624345 -0.299464 -0.24869 -0.921127 +-0.293893 -0.309017 -0.904509 0.400032 0.654508 -0.294085 -0.309018 -0.904446 +-0.412403 -0.24869 -0.876401 0.360032 0.624345 -0.41255 -0.24869 -0.876331 +-0.299309 -0.24869 -0.921178 0.400032 0.624345 -0.299464 -0.24869 -0.921127 +-0.17821 -0.309017 -0.934211 0.440032 0.654508 -0.178409 -0.309018 -0.934172 +-0.293893 -0.309017 -0.904509 0.400032 0.654508 -0.294085 -0.309018 -0.904446 +-0.181494 -0.24869 -0.951427 0.440032 0.624345 -0.181655 -0.248691 -0.951396 +-0.17821 -0.309017 -0.934211 0.440032 0.654508 -0.178409 -0.309018 -0.934172 +-0.299309 -0.24869 -0.921178 0.400032 0.624345 -0.299464 -0.24869 -0.921127 +-0.181494 -0.24869 -0.951427 0.440032 0.624345 -0.181655 -0.248691 -0.951396 +-0.059717 -0.309017 -0.94918 0.480032 0.654508 -0.059919 -0.309018 -0.949167 +-0.17821 -0.309017 -0.934211 0.440032 0.654508 -0.178409 -0.309018 -0.934172 +-0.060818 -0.24869 -0.966672 0.480032 0.624345 -0.06098 -0.24869 -0.966662 +-0.059717 -0.309017 -0.94918 0.480032 0.654508 -0.059919 -0.309018 -0.949167 +-0.181494 -0.24869 -0.951427 0.440032 0.624345 -0.181655 -0.248691 -0.951396 +-0.060818 -0.24869 -0.966672 0.480032 0.624345 -0.06098 -0.24869 -0.966662 +0.059717 -0.309017 -0.94918 0.520032 0.654508 0.059515 -0.309018 -0.949192 +-0.059717 -0.309017 -0.94918 0.480032 0.654508 -0.059919 -0.309018 -0.949167 +0.060818 -0.24869 -0.966672 0.520032 0.624345 0.060655 -0.24869 -0.966682 +0.059717 -0.309017 -0.94918 0.520032 0.654508 0.059515 -0.309018 -0.949192 +-0.060818 -0.24869 -0.966672 0.480032 0.624345 -0.06098 -0.24869 -0.966662 +0.060818 -0.24869 -0.966672 0.520032 0.624345 0.060655 -0.24869 -0.966682 +0.17821 -0.309017 -0.934211 0.560032 0.654508 0.178011 -0.309018 -0.934248 +0.059717 -0.309017 -0.94918 0.520032 0.654508 0.059515 -0.309018 -0.949192 +0.181495 -0.24869 -0.951427 0.560032 0.624345 0.181334 -0.248691 -0.951457 +0.17821 -0.309017 -0.934211 0.560032 0.654508 0.178011 -0.309018 -0.934248 +0.060818 -0.24869 -0.966672 0.520032 0.624345 0.060655 -0.24869 -0.966682 +0.181495 -0.24869 -0.951427 0.560032 0.624345 0.181334 -0.248691 -0.951457 +0.293893 -0.309017 -0.904509 0.600032 0.654508 0.2937 -0.309018 -0.904571 +0.17821 -0.309017 -0.934211 0.560032 0.654508 0.178011 -0.309018 -0.934248 +0.299309 -0.24869 -0.921178 0.600032 0.624345 0.299154 -0.24869 -0.921228 +0.293893 -0.309017 -0.904509 0.600032 0.654508 0.2937 -0.309018 -0.904571 +0.181495 -0.24869 -0.951427 0.560032 0.624345 0.181334 -0.248691 -0.951457 +0.299309 -0.24869 -0.921178 0.600032 0.624345 0.299154 -0.24869 -0.921228 +0.40494 -0.309017 -0.860542 0.640032 0.654508 0.404757 -0.309018 -0.860628 +0.293893 -0.309017 -0.904509 0.600032 0.654508 0.2937 -0.309018 -0.904571 +0.412403 -0.24869 -0.8764 0.640032 0.624345 0.412255 -0.24869 -0.87647 +0.40494 -0.309017 -0.860542 0.640032 0.654508 0.404757 -0.309018 -0.860628 +0.299309 -0.24869 -0.921178 0.600032 0.624345 0.299154 -0.24869 -0.921228 +0.412403 -0.24869 -0.8764 0.640032 0.624345 0.412255 -0.24869 -0.87647 +0.509602 -0.309017 -0.803004 0.680032 0.654508 0.50943 -0.309018 -0.803112 +0.40494 -0.309017 -0.860542 0.640032 0.654508 0.404757 -0.309018 -0.860628 +0.518993 -0.24869 -0.817802 0.680032 0.624345 0.518855 -0.24869 -0.817889 +0.509602 -0.309017 -0.803004 0.680032 0.654508 0.50943 -0.309018 -0.803112 +0.412403 -0.24869 -0.8764 0.640032 0.624345 0.412255 -0.24869 -0.87647 +0.518993 -0.24869 -0.817802 0.680032 0.624345 0.518855 -0.24869 -0.817889 +0.606226 -0.309017 -0.732802 0.720032 0.654508 0.60607 -0.309018 -0.732931 +0.509602 -0.309017 -0.803004 0.680032 0.654508 0.50943 -0.309018 -0.803112 +0.617398 -0.24869 -0.746306 0.720032 0.624345 0.617272 -0.248691 -0.74641 +0.606226 -0.309017 -0.732802 0.720032 0.654508 0.60607 -0.309018 -0.732931 +0.518993 -0.24869 -0.817802 0.680032 0.624345 0.518855 -0.24869 -0.817889 +0.617398 -0.24869 -0.746306 0.720032 0.624345 0.617272 -0.248691 -0.74641 +0.693291 -0.309017 -0.651043 0.760032 0.654508 0.693151 -0.309018 -0.651191 +0.606226 -0.309017 -0.732802 0.720032 0.654508 0.60607 -0.309018 -0.732931 +0.706067 -0.24869 -0.663041 0.760032 0.624345 0.705955 -0.24869 -0.66316 +0.693291 -0.309017 -0.651043 0.760032 0.654508 0.693151 -0.309018 -0.651191 +0.617398 -0.24869 -0.746306 0.720032 0.624345 0.617272 -0.248691 -0.74641 +0.706067 -0.24869 -0.663041 0.760032 0.624345 0.705955 -0.24869 -0.66316 +0.769421 -0.309017 -0.559017 0.800032 0.654508 0.769302 -0.309018 -0.559181 +0.693291 -0.309017 -0.651043 0.760032 0.654508 0.693151 -0.309018 -0.651191 +0.7836 -0.24869 -0.569319 0.800032 0.624345 0.783505 -0.24869 -0.569451 +0.769421 -0.309017 -0.559017 0.800032 0.654508 0.769302 -0.309018 -0.559181 +0.706067 -0.24869 -0.663041 0.760032 0.624345 0.705955 -0.24869 -0.66316 +0.7836 -0.24869 -0.569319 0.800032 0.624345 0.783505 -0.24869 -0.569451 +0.833417 -0.309017 -0.458175 0.840032 0.654508 0.833319 -0.309018 -0.458352 +0.769421 -0.309017 -0.559017 0.800032 0.654508 0.769302 -0.309018 -0.559181 +0.848776 -0.24869 -0.466619 0.840032 0.624345 0.848697 -0.24869 -0.466761 +0.833417 -0.309017 -0.458175 0.840032 0.654508 0.833319 -0.309018 -0.458352 +0.7836 -0.24869 -0.569319 0.800032 0.624345 0.783505 -0.24869 -0.569451 +0.848776 -0.24869 -0.466619 0.840032 0.624345 0.848697 -0.24869 -0.466761 +0.88427 -0.309017 -0.350107 0.880032 0.654508 0.884195 -0.309018 -0.350296 +0.833417 -0.309017 -0.458175 0.840032 0.654508 0.833319 -0.309018 -0.458352 +0.900566 -0.24869 -0.356559 0.880032 0.624345 0.900506 -0.24869 -0.356711 +0.88427 -0.309017 -0.350107 0.880032 0.654508 0.884195 -0.309018 -0.350296 +0.848776 -0.24869 -0.466619 0.840032 0.624345 0.848697 -0.24869 -0.466761 +0.900566 -0.24869 -0.356559 0.880032 0.624345 0.900506 -0.24869 -0.356711 +0.921177 -0.309017 -0.236518 0.920032 0.654508 0.921127 -0.309018 -0.236715 +0.88427 -0.309017 -0.350107 0.880032 0.654508 0.884195 -0.309018 -0.350296 +0.938153 -0.24869 -0.240877 0.920032 0.624345 0.938113 -0.24869 -0.241035 +0.921177 -0.309017 -0.236518 0.920032 0.654508 0.921127 -0.309018 -0.236715 +0.900566 -0.24869 -0.356559 0.880032 0.624345 0.900506 -0.24869 -0.356711 +0.938153 -0.24869 -0.240877 0.920032 0.624345 0.938113 -0.24869 -0.241035 +0.943557 -0.309017 -0.119199 0.960032 0.654508 0.943531 -0.309018 -0.1194 +0.921177 -0.309017 -0.236518 0.920032 0.654508 0.921127 -0.309018 -0.236715 +0.960946 -0.24869 -0.121396 0.960032 0.624345 0.960925 -0.24869 -0.121558 +0.943557 -0.309017 -0.119199 0.960032 0.654508 0.943531 -0.309018 -0.1194 +0.938153 -0.24869 -0.240877 0.920032 0.624345 0.938113 -0.24869 -0.241035 +0.960946 -0.24869 -0.121396 0.960032 0.624345 0.960925 -0.24869 -0.121558 +0.951057 -0.309017 -0 1.00003 0.654508 0.951056 -0.309018 -0.000207 +0.943557 -0.309017 -0.119199 0.960032 0.654508 0.943531 -0.309018 -0.1194 +0.968583 -0.24869 -0 1.00003 0.624345 0.968583 -0.24869 -0.000167 +0.951057 -0.309017 -0 1.00003 0.654508 0.951056 -0.309018 -0.000207 +0.960946 -0.24869 -0.121396 0.960032 0.624345 0.960925 -0.24869 -0.121558 +0.968583 -0.24869 -0 1.00003 0.624345 0.968583 -0.24869 -0.000167 +0.943558 -0.309017 0.119199 1.04003 0.654508 0.943583 -0.309018 0.118994 +0.951057 -0.309017 -0 1.00003 0.654508 0.951056 -0.309018 -0.000207 +0.960947 -0.24869 0.121396 1.04003 0.624345 0.960966 -0.248691 0.12123 +0.943558 -0.309017 0.119199 1.04003 0.654508 0.943583 -0.309018 0.118994 +0.968583 -0.24869 -0 1.00003 0.624345 0.968583 -0.24869 -0.000167 +0.974543 -0.187381 0.123113 1.04003 0.593691 0.974558 -0.187382 0.122987 +0.938154 -0.24869 0.240877 1.08003 0.624345 0.938194 -0.24869 0.240719 +0.960947 -0.24869 0.121396 1.04003 0.624345 0.960966 -0.248691 0.12123 +0.951428 -0.187381 0.244285 1.08003 0.593691 0.951457 -0.187382 0.244166 +0.938154 -0.24869 0.240877 1.08003 0.624345 0.938194 -0.24869 0.240719 +0.974543 -0.187381 0.123113 1.04003 0.593691 0.974558 -0.187382 0.122987 +0.951428 -0.187381 0.244285 1.08003 0.593691 0.951457 -0.187382 0.244166 +0.900567 -0.24869 0.35656 1.12003 0.624345 0.900626 -0.24869 0.356408 +0.938154 -0.24869 0.240877 1.08003 0.624345 0.938194 -0.24869 0.240719 +0.913309 -0.187381 0.361604 1.12003 0.593691 0.913353 -0.187382 0.36149 +0.900567 -0.24869 0.35656 1.12003 0.624345 0.900626 -0.24869 0.356408 +0.951428 -0.187381 0.244285 1.08003 0.593691 0.951457 -0.187382 0.244166 +0.913309 -0.187381 0.361604 1.12003 0.593691 0.913353 -0.187382 0.36149 +0.848777 -0.24869 0.466619 1.16003 0.624345 0.848854 -0.248691 0.466476 +0.900567 -0.24869 0.35656 1.12003 0.624345 0.900626 -0.24869 0.356408 +0.860786 -0.187381 0.473221 1.16003 0.593691 0.860844 -0.187382 0.473113 +0.848777 -0.24869 0.466619 1.16003 0.624345 0.848854 -0.248691 0.466476 +0.913309 -0.187381 0.361604 1.12003 0.593691 0.913353 -0.187382 0.36149 +0.860786 -0.187381 0.473221 1.16003 0.593691 0.860844 -0.187382 0.473113 +0.783601 -0.24869 0.569319 1.20003 0.624345 0.783696 -0.248691 0.569187 +0.848777 -0.24869 0.466619 1.16003 0.624345 0.848854 -0.248691 0.466476 +0.794688 -0.187381 0.577375 1.20003 0.593691 0.794759 -0.187382 0.577274 +0.783601 -0.24869 0.569319 1.20003 0.624345 0.783696 -0.248691 0.569187 +0.860786 -0.187381 0.473221 1.16003 0.593691 0.860844 -0.187382 0.473113 +0.794688 -0.187381 0.577375 1.20003 0.593691 0.794759 -0.187382 0.577274 +0.706067 -0.24869 0.663041 1.24003 0.624345 0.706178 -0.24869 0.662922 +0.783601 -0.24869 0.569319 1.20003 0.624345 0.783696 -0.248691 0.569187 +0.716057 -0.187381 0.672423 1.24003 0.593691 0.716141 -0.187382 0.672332 +0.706067 -0.24869 0.663041 1.24003 0.624345 0.706178 -0.24869 0.662922 +0.794688 -0.187381 0.577375 1.20003 0.593691 0.794759 -0.187382 0.577274 +0.716057 -0.187381 0.672423 1.24003 0.593691 0.716141 -0.187382 0.672332 +0.617399 -0.24869 0.746307 1.28003 0.624345 0.617524 -0.248691 0.746202 +0.706067 -0.24869 0.663041 1.24003 0.624345 0.706178 -0.24869 0.662922 +0.626134 -0.187381 0.756866 1.28003 0.593691 0.626228 -0.187382 0.756787 +0.617399 -0.24869 0.746307 1.28003 0.624345 0.617524 -0.248691 0.746202 +0.716057 -0.187381 0.672423 1.24003 0.593691 0.716141 -0.187382 0.672332 +0.626134 -0.187381 0.756866 1.28003 0.593691 0.626228 -0.187382 0.756787 +0.518993 -0.24869 0.817803 1.32003 0.624345 0.51913 -0.248691 0.817714 +0.617399 -0.24869 0.746307 1.28003 0.624345 0.617524 -0.248691 0.746202 +0.526336 -0.187381 0.829373 1.32003 0.593691 0.526439 -0.187382 0.829307 +0.518993 -0.24869 0.817803 1.32003 0.624345 0.51913 -0.248691 0.817714 +0.626134 -0.187381 0.756866 1.28003 0.593691 0.626228 -0.187382 0.756787 +0.526336 -0.187381 0.829373 1.32003 0.593691 0.526439 -0.187382 0.829307 +0.412403 -0.24869 0.876401 1.36003 0.624345 0.41255 -0.24869 0.876331 +0.518993 -0.24869 0.817803 1.32003 0.624345 0.51913 -0.248691 0.817714 +0.418238 -0.187381 0.888801 1.36003 0.593691 0.418349 -0.187382 0.888748 +0.412403 -0.24869 0.876401 1.36003 0.624345 0.41255 -0.24869 0.876331 +0.526336 -0.187381 0.829373 1.32003 0.593691 0.526439 -0.187382 0.829307 +0.418238 -0.187381 0.888801 1.36003 0.593691 0.418349 -0.187382 0.888748 +0.299309 -0.24869 0.921178 1.40003 0.624345 0.299464 -0.248691 0.921127 +0.412403 -0.24869 0.876401 1.36003 0.624345 0.41255 -0.24869 0.876331 +0.303544 -0.187381 0.934212 1.40003 0.593691 0.30366 -0.187382 0.934173 +0.299309 -0.24869 0.921178 1.40003 0.624345 0.299464 -0.248691 0.921127 +0.418238 -0.187381 0.888801 1.36003 0.593691 0.418349 -0.187382 0.888748 +0.303544 -0.187381 0.934212 1.40003 0.593691 0.30366 -0.187382 0.934173 +0.181494 -0.24869 0.951428 1.44003 0.624345 0.181655 -0.24869 0.951396 +0.299309 -0.24869 0.921178 1.40003 0.624345 0.299464 -0.248691 0.921127 +0.184062 -0.187381 0.964889 1.44003 0.593691 0.184183 -0.187382 0.964865 +0.181494 -0.24869 0.951428 1.44003 0.624345 0.181655 -0.24869 0.951396 +0.303544 -0.187381 0.934212 1.40003 0.593691 0.30366 -0.187382 0.934173 +0.184062 -0.187381 0.964889 1.44003 0.593691 0.184183 -0.187382 0.964865 +0.060818 -0.24869 0.966673 1.48003 0.624345 0.06098 -0.24869 0.966662 +0.181494 -0.24869 0.951428 1.44003 0.624345 0.181655 -0.24869 0.951396 +0.061678 -0.187381 0.98035 1.48003 0.593691 0.061801 -0.187382 0.980341 +0.060818 -0.24869 0.966673 1.48003 0.624345 0.06098 -0.24869 0.966662 +0.184062 -0.187381 0.964889 1.44003 0.593691 0.184183 -0.187382 0.964865 +0.061678 -0.187381 0.98035 1.48003 0.593691 0.061801 -0.187382 0.980341 +-0.060818 -0.24869 0.966673 1.52003 0.624345 -0.060655 -0.24869 0.966682 +0.060818 -0.24869 0.966673 1.48003 0.624345 0.06098 -0.24869 0.966662 +-0.061678 -0.187381 0.98035 1.52003 0.593691 -0.061556 -0.187382 0.980357 +-0.060818 -0.24869 0.966673 1.52003 0.624345 -0.060655 -0.24869 0.966682 +0.061678 -0.187381 0.98035 1.48003 0.593691 0.061801 -0.187382 0.980341 +-0.061678 -0.187381 0.98035 -0.479968 0.593691 -0.061556 -0.187382 0.980357 +-0.181495 -0.24869 0.951428 -0.439968 0.624345 -0.181334 -0.24869 0.951457 +-0.060818 -0.24869 0.966673 -0.479968 0.624345 -0.060655 -0.24869 0.966682 +-0.184062 -0.187381 0.964889 -0.439968 0.593691 -0.183942 -0.187382 0.964911 +-0.181495 -0.24869 0.951428 -0.439968 0.624345 -0.181334 -0.24869 0.951457 +-0.061678 -0.187381 0.98035 -0.479968 0.593691 -0.061556 -0.187382 0.980357 +-0.184062 -0.187381 0.964889 -0.439968 0.593691 -0.183942 -0.187382 0.964911 +-0.299309 -0.24869 0.921178 -0.399968 0.624345 -0.299154 -0.24869 0.921228 +-0.181495 -0.24869 0.951428 -0.439968 0.624345 -0.181334 -0.24869 0.951457 +-0.303544 -0.187381 0.934211 -0.399968 0.593691 -0.303427 -0.187382 0.934249 +-0.299309 -0.24869 0.921178 -0.399968 0.624345 -0.299154 -0.24869 0.921228 +-0.184062 -0.187381 0.964889 -0.439968 0.593691 -0.183942 -0.187382 0.964911 +-0.303544 -0.187381 0.934211 -0.399968 0.593691 -0.303427 -0.187382 0.934249 +-0.412403 -0.24869 0.876401 -0.359968 0.624345 -0.412255 -0.24869 0.87647 +-0.299309 -0.24869 0.921178 -0.399968 0.624345 -0.299154 -0.24869 0.921228 +-0.418238 -0.187381 0.888801 -0.359968 0.593691 -0.418126 -0.187382 0.888852 +-0.412403 -0.24869 0.876401 -0.359968 0.624345 -0.412255 -0.24869 0.87647 +-0.303544 -0.187381 0.934211 -0.399968 0.593691 -0.303427 -0.187382 0.934249 +-0.418238 -0.187381 0.888801 -0.359968 0.593691 -0.418126 -0.187382 0.888852 +-0.518993 -0.24869 0.817802 -0.319968 0.624345 -0.518855 -0.248691 0.817889 +-0.412403 -0.24869 0.876401 -0.359968 0.624345 -0.412255 -0.24869 0.87647 +-0.526336 -0.187381 0.829373 -0.319968 0.593691 -0.526232 -0.187382 0.829438 +-0.518993 -0.24869 0.817802 -0.319968 0.624345 -0.518855 -0.248691 0.817889 +-0.418238 -0.187381 0.888801 -0.359968 0.593691 -0.418126 -0.187382 0.888852 +-0.526336 -0.187381 0.829373 -0.319968 0.593691 -0.526232 -0.187382 0.829438 +-0.617399 -0.24869 0.746307 -0.279968 0.624345 -0.617272 -0.24869 0.74641 +-0.518993 -0.24869 0.817802 -0.319968 0.624345 -0.518855 -0.248691 0.817889 +-0.626134 -0.187381 0.756866 -0.279968 0.593691 -0.626039 -0.187381 0.756944 +-0.617399 -0.24869 0.746307 -0.279968 0.624345 -0.617272 -0.24869 0.74641 +-0.526336 -0.187381 0.829373 -0.319968 0.593691 -0.526232 -0.187382 0.829438 +-0.626134 -0.187381 0.756866 -0.279968 0.593691 -0.626039 -0.187381 0.756944 +-0.706067 -0.24869 0.663041 -0.239968 0.624345 -0.705955 -0.24869 0.66316 +-0.617399 -0.24869 0.746307 -0.279968 0.624345 -0.617272 -0.24869 0.74641 +-0.716057 -0.187381 0.672422 -0.239968 0.593691 -0.715973 -0.187381 0.672511 +-0.706067 -0.24869 0.663041 -0.239968 0.624345 -0.705955 -0.24869 0.66316 +-0.626134 -0.187381 0.756866 -0.279968 0.593691 -0.626039 -0.187381 0.756944 +-0.716057 -0.187381 0.672422 -0.239968 0.593691 -0.715973 -0.187381 0.672511 +-0.783601 -0.24869 0.569319 -0.199968 0.624345 -0.783504 -0.24869 0.569451 +-0.706067 -0.24869 0.663041 -0.239968 0.624345 -0.705955 -0.24869 0.66316 +-0.794688 -0.187381 0.577374 -0.199968 0.593691 -0.794615 -0.187381 0.577474 +-0.783601 -0.24869 0.569319 -0.199968 0.624345 -0.783504 -0.24869 0.569451 +-0.716057 -0.187381 0.672422 -0.239968 0.593691 -0.715973 -0.187381 0.672511 +-0.794688 -0.187381 0.577374 -0.199968 0.593691 -0.794615 -0.187381 0.577474 +-0.848777 -0.24869 0.466619 -0.159968 0.624345 -0.848697 -0.248691 0.466762 +-0.783601 -0.24869 0.569319 -0.199968 0.624345 -0.783504 -0.24869 0.569451 +-0.860785 -0.187381 0.473221 -0.159968 0.593691 -0.860726 -0.187382 0.473328 +-0.848777 -0.24869 0.466619 -0.159968 0.624345 -0.848697 -0.248691 0.466762 +-0.794688 -0.187381 0.577374 -0.199968 0.593691 -0.794615 -0.187381 0.577474 +-0.860785 -0.187381 0.473221 -0.159968 0.593691 -0.860726 -0.187382 0.473328 +-0.900567 -0.24869 0.356559 -0.119968 0.624345 -0.900506 -0.24869 0.356711 +-0.848777 -0.24869 0.466619 -0.159968 0.624345 -0.848697 -0.248691 0.466762 +-0.913308 -0.187381 0.361604 -0.119968 0.593691 -0.913262 -0.187381 0.361718 +-0.900567 -0.24869 0.356559 -0.119968 0.624345 -0.900506 -0.24869 0.356711 +-0.860785 -0.187381 0.473221 -0.159968 0.593691 -0.860726 -0.187382 0.473328 +-0.913308 -0.187381 0.361604 -0.119968 0.593691 -0.913262 -0.187381 0.361718 +-0.938154 -0.24869 0.240877 -0.079968 0.624345 -0.938113 -0.248691 0.241035 +-0.900567 -0.24869 0.356559 -0.119968 0.624345 -0.900506 -0.24869 0.356711 +-0.951428 -0.187381 0.244285 -0.079968 0.593691 -0.951396 -0.187381 0.244404 +-0.938154 -0.24869 0.240877 -0.079968 0.624345 -0.938113 -0.248691 0.241035 +-0.913308 -0.187381 0.361604 -0.119968 0.593691 -0.913262 -0.187381 0.361718 +-0.951428 -0.187381 0.244285 -0.079968 0.593691 -0.951396 -0.187381 0.244404 +-0.960946 -0.24869 0.121396 -0.039968 0.624345 -0.960925 -0.248691 0.121558 +-0.938154 -0.24869 0.240877 -0.079968 0.624345 -0.938113 -0.248691 0.241035 +-0.974542 -0.187381 0.123113 -0.039968 0.593691 -0.974526 -0.187381 0.123235 +-0.960946 -0.24869 0.121396 -0.039968 0.624345 -0.960925 -0.248691 0.121558 +-0.951428 -0.187381 0.244285 -0.079968 0.593691 -0.951396 -0.187381 0.244404 +-0.974542 -0.187381 0.123113 -0.039968 0.593691 -0.974526 -0.187381 0.123235 +-0.968584 -0.24869 -0 3.2e-005 0.624345 -0.968583 -0.24869 0.000163 +-0.960946 -0.24869 0.121396 -0.039968 0.624345 -0.960925 -0.248691 0.121558 +-0.982288 -0.187381 -0 3.2e-005 0.593691 -0.982287 -0.187382 0.000123 +-0.968584 -0.24869 -0 3.2e-005 0.624345 -0.968583 -0.24869 0.000163 +-0.974542 -0.187381 0.123113 -0.039968 0.593691 -0.974526 -0.187381 0.123235 +-0.982288 -0.187381 -0 3.2e-005 0.593691 -0.982287 -0.187382 0.000123 +-0.960946 -0.24869 -0.121396 0.040032 0.624345 -0.960966 -0.248691 -0.121234 +-0.968584 -0.24869 -0 3.2e-005 0.624345 -0.968583 -0.24869 0.000163 +-0.974542 -0.187381 -0.123113 0.040032 0.593691 -0.974557 -0.187382 -0.122991 +-0.960946 -0.24869 -0.121396 0.040032 0.624345 -0.960966 -0.248691 -0.121234 +-0.982288 -0.187381 -0 3.2e-005 0.593691 -0.982287 -0.187382 0.000123 +-0.974542 -0.187381 -0.123113 0.040032 0.593691 -0.974557 -0.187382 -0.122991 +-0.938154 -0.24869 -0.240877 0.080032 0.624345 -0.938194 -0.24869 -0.240719 +-0.960946 -0.24869 -0.121396 0.040032 0.624345 -0.960966 -0.248691 -0.121234 +-0.951427 -0.187381 -0.244285 0.080032 0.593691 -0.951457 -0.187382 -0.244166 +-0.938154 -0.24869 -0.240877 0.080032 0.624345 -0.938194 -0.24869 -0.240719 +-0.974542 -0.187381 -0.123113 0.040032 0.593691 -0.974557 -0.187382 -0.122991 +-0.951427 -0.187381 -0.244285 0.080032 0.593691 -0.951457 -0.187382 -0.244166 +-0.900566 -0.24869 -0.35656 0.120032 0.624345 -0.900626 -0.248691 -0.356408 +-0.938154 -0.24869 -0.240877 0.080032 0.624345 -0.938194 -0.24869 -0.240719 +-0.913308 -0.187381 -0.361604 0.120032 0.593691 -0.913353 -0.187382 -0.36149 +-0.900566 -0.24869 -0.35656 0.120032 0.624345 -0.900626 -0.248691 -0.356408 +-0.951427 -0.187381 -0.244285 0.080032 0.593691 -0.951457 -0.187382 -0.244166 +-0.913308 -0.187381 -0.361604 0.120032 0.593691 -0.913353 -0.187382 -0.36149 +-0.848776 -0.24869 -0.466619 0.160032 0.624345 -0.848854 -0.24869 -0.466476 +-0.900566 -0.24869 -0.35656 0.120032 0.624345 -0.900626 -0.248691 -0.356408 +-0.860785 -0.187381 -0.473221 0.160032 0.593691 -0.860844 -0.187382 -0.473113 +-0.848776 -0.24869 -0.466619 0.160032 0.624345 -0.848854 -0.24869 -0.466476 +-0.913308 -0.187381 -0.361604 0.120032 0.593691 -0.913353 -0.187382 -0.36149 +-0.860785 -0.187381 -0.473221 0.160032 0.593691 -0.860844 -0.187382 -0.473113 +-0.783601 -0.24869 -0.569319 0.200032 0.624345 -0.783696 -0.24869 -0.569187 +-0.848776 -0.24869 -0.466619 0.160032 0.624345 -0.848854 -0.24869 -0.466476 +-0.794687 -0.187381 -0.577374 0.200032 0.593691 -0.794759 -0.187382 -0.577275 +-0.783601 -0.24869 -0.569319 0.200032 0.624345 -0.783696 -0.24869 -0.569187 +-0.860785 -0.187381 -0.473221 0.160032 0.593691 -0.860844 -0.187382 -0.473113 +-0.794687 -0.187381 -0.577374 0.200032 0.593691 -0.794759 -0.187382 -0.577275 +-0.706067 -0.24869 -0.663041 0.240032 0.624345 -0.706178 -0.24869 -0.662922 +-0.783601 -0.24869 -0.569319 0.200032 0.624345 -0.783696 -0.24869 -0.569187 +-0.716057 -0.187381 -0.672422 0.240032 0.593691 -0.716141 -0.187382 -0.672332 +-0.706067 -0.24869 -0.663041 0.240032 0.624345 -0.706178 -0.24869 -0.662922 +-0.794687 -0.187381 -0.577374 0.200032 0.593691 -0.794759 -0.187382 -0.577275 +-0.716057 -0.187381 -0.672422 0.240032 0.593691 -0.716141 -0.187382 -0.672332 +-0.617398 -0.24869 -0.746307 0.280032 0.624345 -0.617524 -0.24869 -0.746202 +-0.706067 -0.24869 -0.663041 0.240032 0.624345 -0.706178 -0.24869 -0.662922 +-0.626134 -0.187381 -0.756866 0.280032 0.593691 -0.626228 -0.187382 -0.756787 +-0.617398 -0.24869 -0.746307 0.280032 0.624345 -0.617524 -0.24869 -0.746202 +-0.716057 -0.187381 -0.672422 0.240032 0.593691 -0.716141 -0.187382 -0.672332 +-0.626134 -0.187381 -0.756866 0.280032 0.593691 -0.626228 -0.187382 -0.756787 +-0.518993 -0.24869 -0.817802 0.320032 0.624345 -0.51913 -0.248691 -0.817715 +-0.617398 -0.24869 -0.746307 0.280032 0.624345 -0.617524 -0.24869 -0.746202 +-0.526336 -0.187381 -0.829373 0.320032 0.593691 -0.526439 -0.187382 -0.829307 +-0.518993 -0.24869 -0.817802 0.320032 0.624345 -0.51913 -0.248691 -0.817715 +-0.626134 -0.187381 -0.756866 0.280032 0.593691 -0.626228 -0.187382 -0.756787 +-0.526336 -0.187381 -0.829373 0.320032 0.593691 -0.526439 -0.187382 -0.829307 +-0.412403 -0.24869 -0.876401 0.360032 0.624345 -0.41255 -0.24869 -0.876331 +-0.518993 -0.24869 -0.817802 0.320032 0.624345 -0.51913 -0.248691 -0.817715 +-0.418238 -0.187381 -0.8888 0.360032 0.593691 -0.418349 -0.187382 -0.888748 +-0.412403 -0.24869 -0.876401 0.360032 0.624345 -0.41255 -0.24869 -0.876331 +-0.526336 -0.187381 -0.829373 0.320032 0.593691 -0.526439 -0.187382 -0.829307 +-0.418238 -0.187381 -0.8888 0.360032 0.593691 -0.418349 -0.187382 -0.888748 +-0.299309 -0.24869 -0.921178 0.400032 0.624345 -0.299464 -0.24869 -0.921127 +-0.412403 -0.24869 -0.876401 0.360032 0.624345 -0.41255 -0.24869 -0.876331 +-0.303543 -0.187381 -0.934211 0.400032 0.593691 -0.30366 -0.187382 -0.934173 +-0.299309 -0.24869 -0.921178 0.400032 0.624345 -0.299464 -0.24869 -0.921127 +-0.418238 -0.187381 -0.8888 0.360032 0.593691 -0.418349 -0.187382 -0.888748 +-0.303543 -0.187381 -0.934211 0.400032 0.593691 -0.30366 -0.187382 -0.934173 +-0.181494 -0.24869 -0.951427 0.440032 0.624345 -0.181655 -0.248691 -0.951396 +-0.299309 -0.24869 -0.921178 0.400032 0.624345 -0.299464 -0.24869 -0.921127 +-0.184062 -0.187381 -0.964889 0.440032 0.593691 -0.184183 -0.187382 -0.964865 +-0.181494 -0.24869 -0.951427 0.440032 0.624345 -0.181655 -0.248691 -0.951396 +-0.303543 -0.187381 -0.934211 0.400032 0.593691 -0.30366 -0.187382 -0.934173 +-0.184062 -0.187381 -0.964889 0.440032 0.593691 -0.184183 -0.187382 -0.964865 +-0.060818 -0.24869 -0.966672 0.480032 0.624345 -0.06098 -0.24869 -0.966662 +-0.181494 -0.24869 -0.951427 0.440032 0.624345 -0.181655 -0.248691 -0.951396 +-0.061678 -0.187381 -0.980349 0.480032 0.593691 -0.061801 -0.187381 -0.980341 +-0.060818 -0.24869 -0.966672 0.480032 0.624345 -0.06098 -0.24869 -0.966662 +-0.184062 -0.187381 -0.964889 0.440032 0.593691 -0.184183 -0.187382 -0.964865 +-0.061678 -0.187381 -0.980349 0.480032 0.593691 -0.061801 -0.187381 -0.980341 +0.060818 -0.24869 -0.966672 0.520032 0.624345 0.060655 -0.24869 -0.966682 +-0.060818 -0.24869 -0.966672 0.480032 0.624345 -0.06098 -0.24869 -0.966662 +0.061678 -0.187381 -0.980349 0.520032 0.593691 0.061556 -0.187382 -0.980357 +0.060818 -0.24869 -0.966672 0.520032 0.624345 0.060655 -0.24869 -0.966682 +-0.061678 -0.187381 -0.980349 0.480032 0.593691 -0.061801 -0.187381 -0.980341 +0.061678 -0.187381 -0.980349 0.520032 0.593691 0.061556 -0.187382 -0.980357 +0.181495 -0.24869 -0.951427 0.560032 0.624345 0.181334 -0.248691 -0.951457 +0.060818 -0.24869 -0.966672 0.520032 0.624345 0.060655 -0.24869 -0.966682 +0.184062 -0.187381 -0.964889 0.560032 0.593691 0.183942 -0.187382 -0.964911 +0.181495 -0.24869 -0.951427 0.560032 0.624345 0.181334 -0.248691 -0.951457 +0.061678 -0.187381 -0.980349 0.520032 0.593691 0.061556 -0.187382 -0.980357 +0.184062 -0.187381 -0.964889 0.560032 0.593691 0.183942 -0.187382 -0.964911 +0.299309 -0.24869 -0.921178 0.600032 0.624345 0.299154 -0.24869 -0.921228 +0.181495 -0.24869 -0.951427 0.560032 0.624345 0.181334 -0.248691 -0.951457 +0.303544 -0.187381 -0.934211 0.600032 0.593691 0.303427 -0.187382 -0.934249 +0.299309 -0.24869 -0.921178 0.600032 0.624345 0.299154 -0.24869 -0.921228 +0.184062 -0.187381 -0.964889 0.560032 0.593691 0.183942 -0.187382 -0.964911 +0.303544 -0.187381 -0.934211 0.600032 0.593691 0.303427 -0.187382 -0.934249 +0.412403 -0.24869 -0.8764 0.640032 0.624345 0.412255 -0.24869 -0.87647 +0.299309 -0.24869 -0.921178 0.600032 0.624345 0.299154 -0.24869 -0.921228 +0.418238 -0.187381 -0.8888 0.640032 0.593691 0.418126 -0.187382 -0.888852 +0.412403 -0.24869 -0.8764 0.640032 0.624345 0.412255 -0.24869 -0.87647 +0.303544 -0.187381 -0.934211 0.600032 0.593691 0.303427 -0.187382 -0.934249 +0.418238 -0.187381 -0.8888 0.640032 0.593691 0.418126 -0.187382 -0.888852 +0.518993 -0.24869 -0.817802 0.680032 0.624345 0.518855 -0.24869 -0.817889 +0.412403 -0.24869 -0.8764 0.640032 0.624345 0.412255 -0.24869 -0.87647 +0.526336 -0.187381 -0.829373 0.680032 0.593691 0.526232 -0.187381 -0.829438 +0.518993 -0.24869 -0.817802 0.680032 0.624345 0.518855 -0.24869 -0.817889 +0.418238 -0.187381 -0.8888 0.640032 0.593691 0.418126 -0.187382 -0.888852 +0.526336 -0.187381 -0.829373 0.680032 0.593691 0.526232 -0.187381 -0.829438 +0.617398 -0.24869 -0.746306 0.720032 0.624345 0.617272 -0.248691 -0.74641 +0.518993 -0.24869 -0.817802 0.680032 0.624345 0.518855 -0.24869 -0.817889 +0.626134 -0.187381 -0.756865 0.720032 0.593691 0.626039 -0.187381 -0.756944 +0.617398 -0.24869 -0.746306 0.720032 0.624345 0.617272 -0.248691 -0.74641 +0.526336 -0.187381 -0.829373 0.680032 0.593691 0.526232 -0.187381 -0.829438 +0.626134 -0.187381 -0.756865 0.720032 0.593691 0.626039 -0.187381 -0.756944 +0.706067 -0.24869 -0.663041 0.760032 0.624345 0.705955 -0.24869 -0.66316 +0.617398 -0.24869 -0.746306 0.720032 0.624345 0.617272 -0.248691 -0.74641 +0.716057 -0.187381 -0.672422 0.760032 0.593691 0.715973 -0.187382 -0.672511 +0.706067 -0.24869 -0.663041 0.760032 0.624345 0.705955 -0.24869 -0.66316 +0.626134 -0.187381 -0.756865 0.720032 0.593691 0.626039 -0.187381 -0.756944 +0.716057 -0.187381 -0.672422 0.760032 0.593691 0.715973 -0.187382 -0.672511 +0.7836 -0.24869 -0.569319 0.800032 0.624345 0.783505 -0.24869 -0.569451 +0.706067 -0.24869 -0.663041 0.760032 0.624345 0.705955 -0.24869 -0.66316 +0.794687 -0.187381 -0.577374 0.800032 0.593691 0.794615 -0.187382 -0.577473 +0.7836 -0.24869 -0.569319 0.800032 0.624345 0.783505 -0.24869 -0.569451 +0.716057 -0.187381 -0.672422 0.760032 0.593691 0.715973 -0.187382 -0.672511 +0.794687 -0.187381 -0.577374 0.800032 0.593691 0.794615 -0.187382 -0.577473 +0.848776 -0.24869 -0.466619 0.840032 0.624345 0.848697 -0.24869 -0.466761 +0.7836 -0.24869 -0.569319 0.800032 0.624345 0.783505 -0.24869 -0.569451 +0.860785 -0.187381 -0.47322 0.840032 0.593691 0.860726 -0.187381 -0.473328 +0.848776 -0.24869 -0.466619 0.840032 0.624345 0.848697 -0.24869 -0.466761 +0.794687 -0.187381 -0.577374 0.800032 0.593691 0.794615 -0.187382 -0.577473 +0.860785 -0.187381 -0.47322 0.840032 0.593691 0.860726 -0.187381 -0.473328 +0.900566 -0.24869 -0.356559 0.880032 0.624345 0.900506 -0.24869 -0.356711 +0.848776 -0.24869 -0.466619 0.840032 0.624345 0.848697 -0.24869 -0.466761 +0.913308 -0.187381 -0.361604 0.880032 0.593691 0.913262 -0.187381 -0.361718 +0.900566 -0.24869 -0.356559 0.880032 0.624345 0.900506 -0.24869 -0.356711 +0.860785 -0.187381 -0.47322 0.840032 0.593691 0.860726 -0.187381 -0.473328 +0.913308 -0.187381 -0.361604 0.880032 0.593691 0.913262 -0.187381 -0.361718 +0.938153 -0.24869 -0.240877 0.920032 0.624345 0.938113 -0.24869 -0.241035 +0.900566 -0.24869 -0.356559 0.880032 0.624345 0.900506 -0.24869 -0.356711 +0.951427 -0.187381 -0.244285 0.920032 0.593691 0.951396 -0.187382 -0.244404 +0.938153 -0.24869 -0.240877 0.920032 0.624345 0.938113 -0.24869 -0.241035 +0.913308 -0.187381 -0.361604 0.880032 0.593691 0.913262 -0.187381 -0.361718 +0.951427 -0.187381 -0.244285 0.920032 0.593691 0.951396 -0.187382 -0.244404 +0.960946 -0.24869 -0.121396 0.960032 0.624345 0.960925 -0.24869 -0.121558 +0.938153 -0.24869 -0.240877 0.920032 0.624345 0.938113 -0.24869 -0.241035 +0.974542 -0.187381 -0.123113 0.960032 0.593691 0.974526 -0.187381 -0.123235 +0.960946 -0.24869 -0.121396 0.960032 0.624345 0.960925 -0.24869 -0.121558 +0.951427 -0.187381 -0.244285 0.920032 0.593691 0.951396 -0.187382 -0.244404 +0.974542 -0.187381 -0.123113 0.960032 0.593691 0.974526 -0.187381 -0.123235 +0.968583 -0.24869 -0 1.00003 0.624345 0.968583 -0.24869 -0.000167 +0.960946 -0.24869 -0.121396 0.960032 0.624345 0.960925 -0.24869 -0.121558 +0.982287 -0.187381 -0 1.00003 0.593691 0.982287 -0.187382 -0.000127 +0.968583 -0.24869 -0 1.00003 0.624345 0.968583 -0.24869 -0.000167 +0.974542 -0.187381 -0.123113 0.960032 0.593691 0.974526 -0.187381 -0.123235 +0.982287 -0.187381 -0 1.00003 0.593691 0.982287 -0.187382 -0.000127 +0.960947 -0.24869 0.121396 1.04003 0.624345 0.960966 -0.248691 0.12123 +0.968583 -0.24869 -0 1.00003 0.624345 0.968583 -0.24869 -0.000167 +0.974543 -0.187381 0.123113 1.04003 0.593691 0.974558 -0.187382 0.122987 +0.960947 -0.24869 0.121396 1.04003 0.624345 0.960966 -0.248691 0.12123 +0.982287 -0.187381 -0 1.00003 0.593691 0.982287 -0.187382 -0.000127 +0.984293 -0.125333 0.124345 1.04003 0.562666 0.984302 -0.125334 0.124259 +0.951428 -0.187381 0.244285 1.08003 0.593691 0.951457 -0.187382 0.244166 +0.974543 -0.187381 0.123113 1.04003 0.593691 0.974558 -0.187382 0.122987 +0.960947 -0.125333 0.246729 1.08003 0.562666 0.960966 -0.125334 0.246649 +0.951428 -0.187381 0.244285 1.08003 0.593691 0.951457 -0.187382 0.244166 +0.984293 -0.125333 0.124345 1.04003 0.562666 0.984302 -0.125334 0.124259 +0.960947 -0.125333 0.246729 1.08003 0.562666 0.960966 -0.125334 0.246649 +0.913309 -0.187381 0.361604 1.12003 0.593691 0.913353 -0.187382 0.36149 +0.951428 -0.187381 0.244285 1.08003 0.593691 0.951457 -0.187382 0.244166 +0.922446 -0.125333 0.365222 1.12003 0.562666 0.922475 -0.125334 0.365145 +0.913309 -0.187381 0.361604 1.12003 0.593691 0.913353 -0.187382 0.36149 +0.960947 -0.125333 0.246729 1.08003 0.562666 0.960966 -0.125334 0.246649 +0.922446 -0.125333 0.365222 1.12003 0.562666 0.922475 -0.125334 0.365145 +0.860786 -0.187381 0.473221 1.16003 0.593691 0.860844 -0.187382 0.473113 +0.913309 -0.187381 0.361604 1.12003 0.593691 0.913353 -0.187382 0.36149 +0.869398 -0.125333 0.477955 1.16003 0.562666 0.869436 -0.125334 0.477883 +0.860786 -0.187381 0.473221 1.16003 0.593691 0.860844 -0.187382 0.473113 +0.922446 -0.125333 0.365222 1.12003 0.562666 0.922475 -0.125334 0.365145 +0.869398 -0.125333 0.477955 1.16003 0.562666 0.869436 -0.125334 0.477883 +0.794688 -0.187381 0.577375 1.20003 0.593691 0.794759 -0.187382 0.577274 +0.860786 -0.187381 0.473221 1.16003 0.593691 0.860844 -0.187382 0.473113 +0.802638 -0.125333 0.583151 1.20003 0.562666 0.802686 -0.125334 0.583084 +0.794688 -0.187381 0.577375 1.20003 0.593691 0.794759 -0.187382 0.577274 +0.869398 -0.125333 0.477955 1.16003 0.562666 0.869436 -0.125334 0.477883 +0.802638 -0.125333 0.583151 1.20003 0.562666 0.802686 -0.125334 0.583084 +0.716057 -0.187381 0.672423 1.24003 0.593691 0.716141 -0.187382 0.672332 +0.794688 -0.187381 0.577375 1.20003 0.593691 0.794759 -0.187382 0.577274 +0.723221 -0.125333 0.67915 1.24003 0.562666 0.723277 -0.125334 0.679089 +0.716057 -0.187381 0.672423 1.24003 0.593691 0.716141 -0.187382 0.672332 +0.802638 -0.125333 0.583151 1.20003 0.562666 0.802686 -0.125334 0.583084 +0.723221 -0.125333 0.67915 1.24003 0.562666 0.723277 -0.125334 0.679089 +0.626134 -0.187381 0.756866 1.28003 0.593691 0.626228 -0.187382 0.756787 +0.716057 -0.187381 0.672423 1.24003 0.593691 0.716141 -0.187382 0.672332 +0.632398 -0.125333 0.764438 1.28003 0.562666 0.632461 -0.125333 0.764385 +0.626134 -0.187381 0.756866 1.28003 0.593691 0.626228 -0.187382 0.756787 +0.723221 -0.125333 0.67915 1.24003 0.562666 0.723277 -0.125334 0.679089 +0.632398 -0.125333 0.764438 1.28003 0.562666 0.632461 -0.125333 0.764385 +0.526336 -0.187381 0.829373 1.32003 0.593691 0.526439 -0.187382 0.829307 +0.626134 -0.187381 0.756866 1.28003 0.593691 0.626228 -0.187382 0.756787 +0.531602 -0.125333 0.837671 1.32003 0.562666 0.531671 -0.125333 0.837626 +0.526336 -0.187381 0.829373 1.32003 0.593691 0.526439 -0.187382 0.829307 +0.632398 -0.125333 0.764438 1.28003 0.562666 0.632461 -0.125333 0.764385 +0.531602 -0.125333 0.837671 1.32003 0.562666 0.531671 -0.125333 0.837626 +0.418238 -0.187381 0.888801 1.36003 0.593691 0.418349 -0.187382 0.888748 +0.526336 -0.187381 0.829373 1.32003 0.593691 0.526439 -0.187382 0.829307 +0.422422 -0.125333 0.897693 1.36003 0.562666 0.422496 -0.125334 0.897657 +0.418238 -0.187381 0.888801 1.36003 0.593691 0.418349 -0.187382 0.888748 +0.531602 -0.125333 0.837671 1.32003 0.562666 0.531671 -0.125333 0.837626 +0.422422 -0.125333 0.897693 1.36003 0.562666 0.422496 -0.125334 0.897657 +0.303544 -0.187381 0.934212 1.40003 0.593691 0.30366 -0.187382 0.934173 +0.418238 -0.187381 0.888801 1.36003 0.593691 0.418349 -0.187382 0.888748 +0.30658 -0.125333 0.943558 1.40003 0.562666 0.306659 -0.125334 0.943532 +0.303544 -0.187381 0.934212 1.40003 0.593691 0.30366 -0.187382 0.934173 +0.422422 -0.125333 0.897693 1.36003 0.562666 0.422496 -0.125334 0.897657 +0.30658 -0.125333 0.943558 1.40003 0.562666 0.306659 -0.125334 0.943532 +0.184062 -0.187381 0.964889 1.44003 0.593691 0.184183 -0.187382 0.964865 +0.303544 -0.187381 0.934212 1.40003 0.593691 0.30366 -0.187382 0.934173 +0.185904 -0.125333 0.974542 1.44003 0.562666 0.185984 -0.125333 0.974526 +0.184062 -0.187381 0.964889 1.44003 0.593691 0.184183 -0.187382 0.964865 +0.30658 -0.125333 0.943558 1.40003 0.562666 0.306659 -0.125334 0.943532 +0.185904 -0.125333 0.974542 1.44003 0.562666 0.185984 -0.125333 0.974526 +0.061678 -0.187381 0.98035 1.48003 0.593691 0.061801 -0.187382 0.980341 +0.184062 -0.187381 0.964889 1.44003 0.593691 0.184183 -0.187382 0.964865 +0.062295 -0.125333 0.990158 1.48003 0.562666 0.062377 -0.125333 0.990152 +0.061678 -0.187381 0.98035 1.48003 0.593691 0.061801 -0.187382 0.980341 +0.185904 -0.125333 0.974542 1.44003 0.562666 0.185984 -0.125333 0.974526 +0.062295 -0.125333 0.990158 1.48003 0.562666 0.062377 -0.125333 0.990152 +-0.061678 -0.187381 0.98035 1.52003 0.593691 -0.061556 -0.187382 0.980357 +0.061678 -0.187381 0.98035 1.48003 0.593691 0.061801 -0.187382 0.980341 +-0.062296 -0.125333 0.990158 1.52003 0.562666 -0.062214 -0.125333 0.990162 +-0.061678 -0.187381 0.98035 1.52003 0.593691 -0.061556 -0.187382 0.980357 +0.062295 -0.125333 0.990158 1.48003 0.562666 0.062377 -0.125333 0.990152 +-0.062296 -0.125333 0.990158 -0.479968 0.562666 -0.062214 -0.125333 0.990162 +-0.184062 -0.187381 0.964889 -0.439968 0.593691 -0.183942 -0.187382 0.964911 +-0.061678 -0.187381 0.98035 -0.479968 0.593691 -0.061556 -0.187382 0.980357 +-0.185904 -0.125333 0.974542 -0.439968 0.562666 -0.185823 -0.125333 0.974557 +-0.184062 -0.187381 0.964889 -0.439968 0.593691 -0.183942 -0.187382 0.964911 +-0.062296 -0.125333 0.990158 -0.479968 0.562666 -0.062214 -0.125333 0.990162 +-0.185904 -0.125333 0.974542 -0.439968 0.562666 -0.185823 -0.125333 0.974557 +-0.303544 -0.187381 0.934211 -0.399968 0.593691 -0.303427 -0.187382 0.934249 +-0.184062 -0.187381 0.964889 -0.439968 0.593691 -0.183942 -0.187382 0.964911 +-0.306581 -0.125333 0.943558 -0.399968 0.562666 -0.306502 -0.125334 0.943582 +-0.303544 -0.187381 0.934211 -0.399968 0.593691 -0.303427 -0.187382 0.934249 +-0.185904 -0.125333 0.974542 -0.439968 0.562666 -0.185823 -0.125333 0.974557 +-0.306581 -0.125333 0.943558 -0.399968 0.562666 -0.306502 -0.125334 0.943582 +-0.418238 -0.187381 0.888801 -0.359968 0.593691 -0.418126 -0.187382 0.888852 +-0.303544 -0.187381 0.934211 -0.399968 0.593691 -0.303427 -0.187382 0.934249 +-0.422422 -0.125333 0.897693 -0.359968 0.562666 -0.422348 -0.125333 0.897727 +-0.418238 -0.187381 0.888801 -0.359968 0.593691 -0.418126 -0.187382 0.888852 +-0.306581 -0.125333 0.943558 -0.399968 0.562666 -0.306502 -0.125334 0.943582 +-0.422422 -0.125333 0.897693 -0.359968 0.562666 -0.422348 -0.125333 0.897727 +-0.526336 -0.187381 0.829373 -0.319968 0.593691 -0.526232 -0.187382 0.829438 +-0.418238 -0.187381 0.888801 -0.359968 0.593691 -0.418126 -0.187382 0.888852 +-0.531602 -0.125333 0.837671 -0.319968 0.562666 -0.531533 -0.125334 0.837714 +-0.526336 -0.187381 0.829373 -0.319968 0.593691 -0.526232 -0.187382 0.829438 +-0.422422 -0.125333 0.897693 -0.359968 0.562666 -0.422348 -0.125333 0.897727 +-0.531602 -0.125333 0.837671 -0.319968 0.562666 -0.531533 -0.125334 0.837714 +-0.626134 -0.187381 0.756866 -0.279968 0.593691 -0.626039 -0.187381 0.756944 +-0.526336 -0.187381 0.829373 -0.319968 0.593691 -0.526232 -0.187382 0.829438 +-0.632398 -0.125333 0.764438 -0.279968 0.562666 -0.632335 -0.125333 0.76449 +-0.626134 -0.187381 0.756866 -0.279968 0.593691 -0.626039 -0.187381 0.756944 +-0.531602 -0.125333 0.837671 -0.319968 0.562666 -0.531533 -0.125334 0.837714 +-0.632398 -0.125333 0.764438 -0.279968 0.562666 -0.632335 -0.125333 0.76449 +-0.716057 -0.187381 0.672422 -0.239968 0.593691 -0.715973 -0.187381 0.672511 +-0.626134 -0.187381 0.756866 -0.279968 0.593691 -0.626039 -0.187381 0.756944 +-0.723221 -0.125333 0.67915 -0.239968 0.562666 -0.723164 -0.125334 0.679209 +-0.716057 -0.187381 0.672422 -0.239968 0.593691 -0.715973 -0.187381 0.672511 +-0.632398 -0.125333 0.764438 -0.279968 0.562666 -0.632335 -0.125333 0.76449 +-0.723221 -0.125333 0.67915 -0.239968 0.562666 -0.723164 -0.125334 0.679209 +-0.794688 -0.187381 0.577374 -0.199968 0.593691 -0.794615 -0.187381 0.577474 +-0.716057 -0.187381 0.672422 -0.239968 0.593691 -0.715973 -0.187381 0.672511 +-0.802638 -0.125333 0.583151 -0.199968 0.562666 -0.802589 -0.125334 0.583217 +-0.794688 -0.187381 0.577374 -0.199968 0.593691 -0.794615 -0.187381 0.577474 +-0.723221 -0.125333 0.67915 -0.239968 0.562666 -0.723164 -0.125334 0.679209 +-0.802638 -0.125333 0.583151 -0.199968 0.562666 -0.802589 -0.125334 0.583217 +-0.860785 -0.187381 0.473221 -0.159968 0.593691 -0.860726 -0.187382 0.473328 +-0.794688 -0.187381 0.577374 -0.199968 0.593691 -0.794615 -0.187381 0.577474 +-0.869397 -0.125333 0.477955 -0.159968 0.562666 -0.869357 -0.125333 0.478027 +-0.860785 -0.187381 0.473221 -0.159968 0.593691 -0.860726 -0.187382 0.473328 +-0.802638 -0.125333 0.583151 -0.199968 0.562666 -0.802589 -0.125334 0.583217 +-0.869397 -0.125333 0.477955 -0.159968 0.562666 -0.869357 -0.125333 0.478027 +-0.913308 -0.187381 0.361604 -0.119968 0.593691 -0.913262 -0.187381 0.361718 +-0.860785 -0.187381 0.473221 -0.159968 0.593691 -0.860726 -0.187382 0.473328 +-0.922446 -0.125333 0.365222 -0.119968 0.562666 -0.922415 -0.125334 0.365298 +-0.913308 -0.187381 0.361604 -0.119968 0.593691 -0.913262 -0.187381 0.361718 +-0.869397 -0.125333 0.477955 -0.159968 0.562666 -0.869357 -0.125333 0.478027 +-0.922446 -0.125333 0.365222 -0.119968 0.562666 -0.922415 -0.125334 0.365298 +-0.951428 -0.187381 0.244285 -0.079968 0.593691 -0.951396 -0.187381 0.244404 +-0.913308 -0.187381 0.361604 -0.119968 0.593691 -0.913262 -0.187381 0.361718 +-0.960946 -0.125333 0.246729 -0.079968 0.562666 -0.960925 -0.125333 0.246808 +-0.951428 -0.187381 0.244285 -0.079968 0.593691 -0.951396 -0.187381 0.244404 +-0.922446 -0.125333 0.365222 -0.119968 0.562666 -0.922415 -0.125334 0.365298 +-0.960946 -0.125333 0.246729 -0.079968 0.562666 -0.960925 -0.125333 0.246808 +-0.974542 -0.187381 0.123113 -0.039968 0.593691 -0.974526 -0.187381 0.123235 +-0.951428 -0.187381 0.244285 -0.079968 0.593691 -0.951396 -0.187381 0.244404 +-0.984292 -0.125333 0.124345 -0.039968 0.562666 -0.984281 -0.125333 0.124427 +-0.974542 -0.187381 0.123113 -0.039968 0.593691 -0.974526 -0.187381 0.123235 +-0.960946 -0.125333 0.246729 -0.079968 0.562666 -0.960925 -0.125333 0.246808 +-0.984292 -0.125333 0.124345 -0.039968 0.562666 -0.984281 -0.125333 0.124427 +-0.982288 -0.187381 -0 3.2e-005 0.593691 -0.982287 -0.187382 0.000123 +-0.974542 -0.187381 0.123113 -0.039968 0.593691 -0.974526 -0.187381 0.123235 +-0.992115 -0.125333 -0 3.2e-005 0.562666 -0.992115 -0.125333 8.2e-005 +-0.982288 -0.187381 -0 3.2e-005 0.593691 -0.982287 -0.187382 0.000123 +-0.984292 -0.125333 0.124345 -0.039968 0.562666 -0.984281 -0.125333 0.124427 +-0.992115 -0.125333 -0 3.2e-005 0.562666 -0.992115 -0.125333 8.2e-005 +-0.974542 -0.187381 -0.123113 0.040032 0.593691 -0.974557 -0.187382 -0.122991 +-0.982288 -0.187381 -0 3.2e-005 0.593691 -0.982287 -0.187382 0.000123 +-0.984292 -0.125333 -0.124345 0.040032 0.562666 -0.984302 -0.125334 -0.124263 +-0.974542 -0.187381 -0.123113 0.040032 0.593691 -0.974557 -0.187382 -0.122991 +-0.992115 -0.125333 -0 3.2e-005 0.562666 -0.992115 -0.125333 8.2e-005 +-0.984292 -0.125333 -0.124345 0.040032 0.562666 -0.984302 -0.125334 -0.124263 +-0.951427 -0.187381 -0.244285 0.080032 0.593691 -0.951457 -0.187382 -0.244166 +-0.974542 -0.187381 -0.123113 0.040032 0.593691 -0.974557 -0.187382 -0.122991 +-0.960946 -0.125333 -0.246729 0.080032 0.562666 -0.960966 -0.125334 -0.246649 +-0.951427 -0.187381 -0.244285 0.080032 0.593691 -0.951457 -0.187382 -0.244166 +-0.984292 -0.125333 -0.124345 0.040032 0.562666 -0.984302 -0.125334 -0.124263 +-0.960946 -0.125333 -0.246729 0.080032 0.562666 -0.960966 -0.125334 -0.246649 +-0.913308 -0.187381 -0.361604 0.120032 0.593691 -0.913353 -0.187382 -0.36149 +-0.951427 -0.187381 -0.244285 0.080032 0.593691 -0.951457 -0.187382 -0.244166 +-0.922445 -0.125333 -0.365222 0.120032 0.562666 -0.922475 -0.125334 -0.365145 +-0.913308 -0.187381 -0.361604 0.120032 0.593691 -0.913353 -0.187382 -0.36149 +-0.960946 -0.125333 -0.246729 0.080032 0.562666 -0.960966 -0.125334 -0.246649 +-0.922445 -0.125333 -0.365222 0.120032 0.562666 -0.922475 -0.125334 -0.365145 +-0.860785 -0.187381 -0.473221 0.160032 0.593691 -0.860844 -0.187382 -0.473113 +-0.913308 -0.187381 -0.361604 0.120032 0.593691 -0.913353 -0.187382 -0.36149 +-0.869397 -0.125333 -0.477955 0.160032 0.562666 -0.869436 -0.125333 -0.477883 +-0.860785 -0.187381 -0.473221 0.160032 0.593691 -0.860844 -0.187382 -0.473113 +-0.922445 -0.125333 -0.365222 0.120032 0.562666 -0.922475 -0.125334 -0.365145 +-0.869397 -0.125333 -0.477955 0.160032 0.562666 -0.869436 -0.125333 -0.477883 +-0.794687 -0.187381 -0.577374 0.200032 0.593691 -0.794759 -0.187382 -0.577275 +-0.860785 -0.187381 -0.473221 0.160032 0.593691 -0.860844 -0.187382 -0.473113 +-0.802638 -0.125333 -0.583151 0.200032 0.562666 -0.802686 -0.125333 -0.583084 +-0.794687 -0.187381 -0.577374 0.200032 0.593691 -0.794759 -0.187382 -0.577275 +-0.869397 -0.125333 -0.477955 0.160032 0.562666 -0.869436 -0.125333 -0.477883 +-0.802638 -0.125333 -0.583151 0.200032 0.562666 -0.802686 -0.125333 -0.583084 +-0.716057 -0.187381 -0.672422 0.240032 0.593691 -0.716141 -0.187382 -0.672332 +-0.794687 -0.187381 -0.577374 0.200032 0.593691 -0.794759 -0.187382 -0.577275 +-0.723221 -0.125333 -0.67915 0.240032 0.562666 -0.723277 -0.125334 -0.679089 +-0.716057 -0.187381 -0.672422 0.240032 0.593691 -0.716141 -0.187382 -0.672332 +-0.802638 -0.125333 -0.583151 0.200032 0.562666 -0.802686 -0.125333 -0.583084 +-0.723221 -0.125333 -0.67915 0.240032 0.562666 -0.723277 -0.125334 -0.679089 +-0.626134 -0.187381 -0.756866 0.280032 0.593691 -0.626228 -0.187382 -0.756787 +-0.716057 -0.187381 -0.672422 0.240032 0.593691 -0.716141 -0.187382 -0.672332 +-0.632398 -0.125333 -0.764438 0.280032 0.562666 -0.632461 -0.125333 -0.764385 +-0.626134 -0.187381 -0.756866 0.280032 0.593691 -0.626228 -0.187382 -0.756787 +-0.723221 -0.125333 -0.67915 0.240032 0.562666 -0.723277 -0.125334 -0.679089 +-0.632398 -0.125333 -0.764438 0.280032 0.562666 -0.632461 -0.125333 -0.764385 +-0.526336 -0.187381 -0.829373 0.320032 0.593691 -0.526439 -0.187382 -0.829307 +-0.626134 -0.187381 -0.756866 0.280032 0.593691 -0.626228 -0.187382 -0.756787 +-0.531602 -0.125333 -0.837671 0.320032 0.562666 -0.531671 -0.125334 -0.837626 +-0.526336 -0.187381 -0.829373 0.320032 0.593691 -0.526439 -0.187382 -0.829307 +-0.632398 -0.125333 -0.764438 0.280032 0.562666 -0.632461 -0.125333 -0.764385 +-0.531602 -0.125333 -0.837671 0.320032 0.562666 -0.531671 -0.125334 -0.837626 +-0.418238 -0.187381 -0.8888 0.360032 0.593691 -0.418349 -0.187382 -0.888748 +-0.526336 -0.187381 -0.829373 0.320032 0.593691 -0.526439 -0.187382 -0.829307 +-0.422422 -0.125333 -0.897693 0.360032 0.562666 -0.422496 -0.125334 -0.897657 +-0.418238 -0.187381 -0.8888 0.360032 0.593691 -0.418349 -0.187382 -0.888748 +-0.531602 -0.125333 -0.837671 0.320032 0.562666 -0.531671 -0.125334 -0.837626 +-0.422422 -0.125333 -0.897693 0.360032 0.562666 -0.422496 -0.125334 -0.897657 +-0.303543 -0.187381 -0.934211 0.400032 0.593691 -0.30366 -0.187382 -0.934173 +-0.418238 -0.187381 -0.8888 0.360032 0.593691 -0.418349 -0.187382 -0.888748 +-0.30658 -0.125333 -0.943558 0.400032 0.562666 -0.306658 -0.125333 -0.943532 +-0.303543 -0.187381 -0.934211 0.400032 0.593691 -0.30366 -0.187382 -0.934173 +-0.422422 -0.125333 -0.897693 0.360032 0.562666 -0.422496 -0.125334 -0.897657 +-0.30658 -0.125333 -0.943558 0.400032 0.562666 -0.306658 -0.125333 -0.943532 +-0.184062 -0.187381 -0.964889 0.440032 0.593691 -0.184183 -0.187382 -0.964865 +-0.303543 -0.187381 -0.934211 0.400032 0.593691 -0.30366 -0.187382 -0.934173 +-0.185904 -0.125333 -0.974542 0.440032 0.562666 -0.185984 -0.125333 -0.974526 +-0.184062 -0.187381 -0.964889 0.440032 0.593691 -0.184183 -0.187382 -0.964865 +-0.30658 -0.125333 -0.943558 0.400032 0.562666 -0.306658 -0.125333 -0.943532 +-0.185904 -0.125333 -0.974542 0.440032 0.562666 -0.185984 -0.125333 -0.974526 +-0.061678 -0.187381 -0.980349 0.480032 0.593691 -0.061801 -0.187381 -0.980341 +-0.184062 -0.187381 -0.964889 0.440032 0.593691 -0.184183 -0.187382 -0.964865 +-0.062295 -0.125333 -0.990157 0.480032 0.562666 -0.062377 -0.125333 -0.990152 +-0.061678 -0.187381 -0.980349 0.480032 0.593691 -0.061801 -0.187381 -0.980341 +-0.185904 -0.125333 -0.974542 0.440032 0.562666 -0.185984 -0.125333 -0.974526 +-0.062295 -0.125333 -0.990157 0.480032 0.562666 -0.062377 -0.125333 -0.990152 +0.061678 -0.187381 -0.980349 0.520032 0.593691 0.061556 -0.187382 -0.980357 +-0.061678 -0.187381 -0.980349 0.480032 0.593691 -0.061801 -0.187381 -0.980341 +0.062296 -0.125333 -0.990157 0.520032 0.562666 0.062213 -0.125333 -0.990162 +0.061678 -0.187381 -0.980349 0.520032 0.593691 0.061556 -0.187382 -0.980357 +-0.062295 -0.125333 -0.990157 0.480032 0.562666 -0.062377 -0.125333 -0.990152 +0.062296 -0.125333 -0.990157 0.520032 0.562666 0.062213 -0.125333 -0.990162 +0.184062 -0.187381 -0.964889 0.560032 0.593691 0.183942 -0.187382 -0.964911 +0.061678 -0.187381 -0.980349 0.520032 0.593691 0.061556 -0.187382 -0.980357 +0.185904 -0.125333 -0.974542 0.560032 0.562666 0.185823 -0.125333 -0.974557 +0.184062 -0.187381 -0.964889 0.560032 0.593691 0.183942 -0.187382 -0.964911 +0.062296 -0.125333 -0.990157 0.520032 0.562666 0.062213 -0.125333 -0.990162 +0.185904 -0.125333 -0.974542 0.560032 0.562666 0.185823 -0.125333 -0.974557 +0.303544 -0.187381 -0.934211 0.600032 0.593691 0.303427 -0.187382 -0.934249 +0.184062 -0.187381 -0.964889 0.560032 0.593691 0.183942 -0.187382 -0.964911 +0.30658 -0.125333 -0.943557 0.600032 0.562666 0.306502 -0.125333 -0.943583 +0.303544 -0.187381 -0.934211 0.600032 0.593691 0.303427 -0.187382 -0.934249 +0.185904 -0.125333 -0.974542 0.560032 0.562666 0.185823 -0.125333 -0.974557 +0.30658 -0.125333 -0.943557 0.600032 0.562666 0.306502 -0.125333 -0.943583 +0.418238 -0.187381 -0.8888 0.640032 0.593691 0.418126 -0.187382 -0.888852 +0.303544 -0.187381 -0.934211 0.600032 0.593691 0.303427 -0.187382 -0.934249 +0.422422 -0.125333 -0.897692 0.640032 0.562666 0.422348 -0.125333 -0.897727 +0.418238 -0.187381 -0.8888 0.640032 0.593691 0.418126 -0.187382 -0.888852 +0.30658 -0.125333 -0.943557 0.600032 0.562666 0.306502 -0.125333 -0.943583 +0.422422 -0.125333 -0.897692 0.640032 0.562666 0.422348 -0.125333 -0.897727 +0.526336 -0.187381 -0.829373 0.680032 0.593691 0.526232 -0.187381 -0.829438 +0.418238 -0.187381 -0.8888 0.640032 0.593691 0.418126 -0.187382 -0.888852 +0.531602 -0.125333 -0.83767 0.680032 0.562666 0.531532 -0.125333 -0.837714 +0.526336 -0.187381 -0.829373 0.680032 0.593691 0.526232 -0.187381 -0.829438 +0.422422 -0.125333 -0.897692 0.640032 0.562666 0.422348 -0.125333 -0.897727 +0.531602 -0.125333 -0.83767 0.680032 0.562666 0.531532 -0.125333 -0.837714 +0.626134 -0.187381 -0.756865 0.720032 0.593691 0.626039 -0.187381 -0.756944 +0.526336 -0.187381 -0.829373 0.680032 0.593691 0.526232 -0.187381 -0.829438 +0.632398 -0.125333 -0.764438 0.720032 0.562666 0.632335 -0.125333 -0.76449 +0.626134 -0.187381 -0.756865 0.720032 0.593691 0.626039 -0.187381 -0.756944 +0.531602 -0.125333 -0.83767 0.680032 0.562666 0.531532 -0.125333 -0.837714 +0.632398 -0.125333 -0.764438 0.720032 0.562666 0.632335 -0.125333 -0.76449 +0.716057 -0.187381 -0.672422 0.760032 0.593691 0.715973 -0.187382 -0.672511 +0.626134 -0.187381 -0.756865 0.720032 0.593691 0.626039 -0.187381 -0.756944 +0.723221 -0.125333 -0.679149 0.760032 0.562666 0.723164 -0.125334 -0.679209 +0.716057 -0.187381 -0.672422 0.760032 0.593691 0.715973 -0.187382 -0.672511 +0.632398 -0.125333 -0.764438 0.720032 0.562666 0.632335 -0.125333 -0.76449 +0.723221 -0.125333 -0.679149 0.760032 0.562666 0.723164 -0.125334 -0.679209 +0.794687 -0.187381 -0.577374 0.800032 0.593691 0.794615 -0.187382 -0.577473 +0.716057 -0.187381 -0.672422 0.760032 0.593691 0.715973 -0.187382 -0.672511 +0.802638 -0.125333 -0.58315 0.800032 0.562666 0.802589 -0.125333 -0.583217 +0.794687 -0.187381 -0.577374 0.800032 0.593691 0.794615 -0.187382 -0.577473 +0.723221 -0.125333 -0.679149 0.760032 0.562666 0.723164 -0.125334 -0.679209 +0.802638 -0.125333 -0.58315 0.800032 0.562666 0.802589 -0.125333 -0.583217 +0.860785 -0.187381 -0.47322 0.840032 0.593691 0.860726 -0.187381 -0.473328 +0.794687 -0.187381 -0.577374 0.800032 0.593691 0.794615 -0.187382 -0.577473 +0.869397 -0.125333 -0.477955 0.840032 0.562666 0.869357 -0.125333 -0.478027 +0.860785 -0.187381 -0.47322 0.840032 0.593691 0.860726 -0.187381 -0.473328 +0.802638 -0.125333 -0.58315 0.800032 0.562666 0.802589 -0.125333 -0.583217 +0.869397 -0.125333 -0.477955 0.840032 0.562666 0.869357 -0.125333 -0.478027 +0.913308 -0.187381 -0.361604 0.880032 0.593691 0.913262 -0.187381 -0.361718 +0.860785 -0.187381 -0.47322 0.840032 0.593691 0.860726 -0.187381 -0.473328 +0.922445 -0.125333 -0.365222 0.880032 0.562666 0.922415 -0.125334 -0.365298 +0.913308 -0.187381 -0.361604 0.880032 0.593691 0.913262 -0.187381 -0.361718 +0.869397 -0.125333 -0.477955 0.840032 0.562666 0.869357 -0.125333 -0.478027 +0.922445 -0.125333 -0.365222 0.880032 0.562666 0.922415 -0.125334 -0.365298 +0.951427 -0.187381 -0.244285 0.920032 0.593691 0.951396 -0.187382 -0.244404 +0.913308 -0.187381 -0.361604 0.880032 0.593691 0.913262 -0.187381 -0.361718 +0.960946 -0.125333 -0.246729 0.920032 0.562666 0.960925 -0.125334 -0.246809 +0.951427 -0.187381 -0.244285 0.920032 0.593691 0.951396 -0.187382 -0.244404 +0.922445 -0.125333 -0.365222 0.880032 0.562666 0.922415 -0.125334 -0.365298 +0.960946 -0.125333 -0.246729 0.920032 0.562666 0.960925 -0.125334 -0.246809 +0.974542 -0.187381 -0.123113 0.960032 0.593691 0.974526 -0.187381 -0.123235 +0.951427 -0.187381 -0.244285 0.920032 0.593691 0.951396 -0.187382 -0.244404 +0.984292 -0.125333 -0.124345 0.960032 0.562666 0.984281 -0.125333 -0.124427 +0.974542 -0.187381 -0.123113 0.960032 0.593691 0.974526 -0.187381 -0.123235 +0.960946 -0.125333 -0.246729 0.920032 0.562666 0.960925 -0.125334 -0.246809 +0.984292 -0.125333 -0.124345 0.960032 0.562666 0.984281 -0.125333 -0.124427 +0.982287 -0.187381 -0 1.00003 0.593691 0.982287 -0.187382 -0.000127 +0.974542 -0.187381 -0.123113 0.960032 0.593691 0.974526 -0.187381 -0.123235 +0.992115 -0.125333 -0 1.00003 0.562666 0.992115 -0.125333 -8.6e-005 +0.982287 -0.187381 -0 1.00003 0.593691 0.982287 -0.187382 -0.000127 +0.984292 -0.125333 -0.124345 0.960032 0.562666 0.984281 -0.125333 -0.124427 +0.992115 -0.125333 -0 1.00003 0.562666 0.992115 -0.125333 -8.6e-005 +0.974543 -0.187381 0.123113 1.04003 0.593691 0.974558 -0.187382 0.122987 +0.982287 -0.187381 -0 1.00003 0.593691 0.982287 -0.187382 -0.000127 +0.984293 -0.125333 0.124345 1.04003 0.562666 0.984302 -0.125334 0.124259 +0.974543 -0.187381 0.123113 1.04003 0.593691 0.974558 -0.187382 0.122987 +0.992115 -0.125333 -0 1.00003 0.562666 0.992115 -0.125333 -8.6e-005 +0.990158 -0.06279 0.125086 1.04003 0.531395 0.990163 -0.062791 0.125041 +0.960947 -0.125333 0.246729 1.08003 0.562666 0.960966 -0.125334 0.246649 +0.984293 -0.125333 0.124345 1.04003 0.562666 0.984302 -0.125334 0.124259 +0.966673 -0.06279 0.248199 1.08003 0.531395 0.966682 -0.062791 0.248159 +0.960947 -0.125333 0.246729 1.08003 0.562666 0.960966 -0.125334 0.246649 +0.990158 -0.06279 0.125086 1.04003 0.531395 0.990163 -0.062791 0.125041 +0.966673 -0.06279 0.248199 1.08003 0.531395 0.966682 -0.062791 0.248159 +0.922446 -0.125333 0.365222 1.12003 0.562666 0.922475 -0.125334 0.365145 +0.960947 -0.125333 0.246729 1.08003 0.562666 0.960966 -0.125334 0.246649 +0.927943 -0.06279 0.367399 1.12003 0.531395 0.927957 -0.062791 0.36736 +0.922446 -0.125333 0.365222 1.12003 0.562666 0.922475 -0.125334 0.365145 +0.966673 -0.06279 0.248199 1.08003 0.531395 0.966682 -0.062791 0.248159 +0.927943 -0.06279 0.367399 1.12003 0.531395 0.927957 -0.062791 0.36736 +0.869398 -0.125333 0.477955 1.16003 0.562666 0.869436 -0.125334 0.477883 +0.922446 -0.125333 0.365222 1.12003 0.562666 0.922475 -0.125334 0.365145 +0.874578 -0.06279 0.480804 1.16003 0.531395 0.874597 -0.062791 0.480767 +0.869398 -0.125333 0.477955 1.16003 0.562666 0.869436 -0.125334 0.477883 +0.927943 -0.06279 0.367399 1.12003 0.531395 0.927957 -0.062791 0.36736 +0.874578 -0.06279 0.480804 1.16003 0.531395 0.874597 -0.062791 0.480767 +0.802638 -0.125333 0.583151 1.20003 0.562666 0.802686 -0.125334 0.583084 +0.869398 -0.125333 0.477955 1.16003 0.562666 0.869436 -0.125334 0.477883 +0.807421 -0.06279 0.586626 1.20003 0.531395 0.807445 -0.06279 0.586592 +0.802638 -0.125333 0.583151 1.20003 0.562666 0.802686 -0.125334 0.583084 +0.874578 -0.06279 0.480804 1.16003 0.531395 0.874597 -0.062791 0.480767 +0.807421 -0.06279 0.586626 1.20003 0.531395 0.807445 -0.06279 0.586592 +0.723221 -0.125333 0.67915 1.24003 0.562666 0.723277 -0.125334 0.679089 +0.802638 -0.125333 0.583151 1.20003 0.562666 0.802686 -0.125334 0.583084 +0.727531 -0.06279 0.683197 1.24003 0.531395 0.727558 -0.06279 0.683167 +0.723221 -0.125333 0.67915 1.24003 0.562666 0.723277 -0.125334 0.679089 +0.807421 -0.06279 0.586626 1.20003 0.531395 0.807445 -0.06279 0.586592 +0.727531 -0.06279 0.683197 1.24003 0.531395 0.727558 -0.06279 0.683167 +0.632398 -0.125333 0.764438 1.28003 0.562666 0.632461 -0.125333 0.764385 +0.723221 -0.125333 0.67915 1.24003 0.562666 0.723277 -0.125334 0.679089 +0.636167 -0.06279 0.768994 1.28003 0.531395 0.636198 -0.062791 0.768966 +0.632398 -0.125333 0.764438 1.28003 0.562666 0.632461 -0.125333 0.764385 +0.727531 -0.06279 0.683197 1.24003 0.531395 0.727558 -0.06279 0.683167 +0.636167 -0.06279 0.768994 1.28003 0.531395 0.636198 -0.062791 0.768966 +0.531602 -0.125333 0.837671 1.32003 0.562666 0.531671 -0.125333 0.837626 +0.632398 -0.125333 0.764438 1.28003 0.562666 0.632461 -0.125333 0.764385 +0.53477 -0.06279 0.842663 1.32003 0.531395 0.534804 -0.062791 0.84264 +0.531602 -0.125333 0.837671 1.32003 0.562666 0.531671 -0.125333 0.837626 +0.636167 -0.06279 0.768994 1.28003 0.531395 0.636198 -0.062791 0.768966 +0.53477 -0.06279 0.842663 1.32003 0.531395 0.534804 -0.062791 0.84264 +0.422422 -0.125333 0.897693 1.36003 0.562666 0.422496 -0.125334 0.897657 +0.531602 -0.125333 0.837671 1.32003 0.562666 0.531671 -0.125333 0.837626 +0.424939 -0.06279 0.903042 1.36003 0.531395 0.424976 -0.062791 0.903024 +0.422422 -0.125333 0.897693 1.36003 0.562666 0.422496 -0.125334 0.897657 +0.53477 -0.06279 0.842663 1.32003 0.531395 0.534804 -0.062791 0.84264 +0.424939 -0.06279 0.903042 1.36003 0.531395 0.424976 -0.062791 0.903024 +0.30658 -0.125333 0.943558 1.40003 0.562666 0.306659 -0.125334 0.943532 +0.422422 -0.125333 0.897693 1.36003 0.562666 0.422496 -0.125334 0.897657 +0.308407 -0.06279 0.949181 1.40003 0.531395 0.308446 -0.062791 0.949167 +0.30658 -0.125333 0.943558 1.40003 0.562666 0.306659 -0.125334 0.943532 +0.424939 -0.06279 0.903042 1.36003 0.531395 0.424976 -0.062791 0.903024 +0.308407 -0.06279 0.949181 1.40003 0.531395 0.308446 -0.062791 0.949167 +0.185904 -0.125333 0.974542 1.44003 0.562666 0.185984 -0.125333 0.974526 +0.30658 -0.125333 0.943558 1.40003 0.562666 0.306659 -0.125334 0.943532 +0.187012 -0.06279 0.98035 1.44003 0.531395 0.187052 -0.062791 0.980341 +0.185904 -0.125333 0.974542 1.44003 0.562666 0.185984 -0.125333 0.974526 +0.308407 -0.06279 0.949181 1.40003 0.531395 0.308446 -0.062791 0.949167 +0.187012 -0.06279 0.98035 1.44003 0.531395 0.187052 -0.062791 0.980341 +0.062295 -0.125333 0.990158 1.48003 0.562666 0.062377 -0.125333 0.990152 +0.185904 -0.125333 0.974542 1.44003 0.562666 0.185984 -0.125333 0.974526 +0.062667 -0.06279 0.996058 1.48003 0.531395 0.062707 -0.062791 0.996055 +0.062295 -0.125333 0.990158 1.48003 0.562666 0.062377 -0.125333 0.990152 +0.187012 -0.06279 0.98035 1.44003 0.531395 0.187052 -0.062791 0.980341 +0.062667 -0.06279 0.996058 1.48003 0.531395 0.062707 -0.062791 0.996055 +-0.062296 -0.125333 0.990158 1.52003 0.562666 -0.062214 -0.125333 0.990162 +0.062295 -0.125333 0.990158 1.48003 0.562666 0.062377 -0.125333 0.990152 +-0.062667 -0.06279 0.996058 1.52003 0.531395 -0.062626 -0.062791 0.99606 +-0.062296 -0.125333 0.990158 1.52003 0.562666 -0.062214 -0.125333 0.990162 +0.062667 -0.06279 0.996058 1.48003 0.531395 0.062707 -0.062791 0.996055 +-0.062667 -0.06279 0.996058 -0.479968 0.531395 -0.062626 -0.062791 0.99606 +-0.185904 -0.125333 0.974542 -0.439968 0.562666 -0.185823 -0.125333 0.974557 +-0.062296 -0.125333 0.990158 -0.479968 0.562666 -0.062214 -0.125333 0.990162 +-0.187012 -0.06279 0.98035 -0.439968 0.531395 -0.186971 -0.062791 0.980357 +-0.185904 -0.125333 0.974542 -0.439968 0.562666 -0.185823 -0.125333 0.974557 +-0.062667 -0.06279 0.996058 -0.479968 0.531395 -0.062626 -0.062791 0.99606 +-0.187012 -0.06279 0.98035 -0.439968 0.531395 -0.186971 -0.062791 0.980357 +-0.306581 -0.125333 0.943558 -0.399968 0.562666 -0.306502 -0.125334 0.943582 +-0.185904 -0.125333 0.974542 -0.439968 0.562666 -0.185823 -0.125333 0.974557 +-0.308408 -0.06279 0.94918 -0.399968 0.531395 -0.308368 -0.062791 0.949192 +-0.306581 -0.125333 0.943558 -0.399968 0.562666 -0.306502 -0.125334 0.943582 +-0.187012 -0.06279 0.98035 -0.439968 0.531395 -0.186971 -0.062791 0.980357 +-0.308408 -0.06279 0.94918 -0.399968 0.531395 -0.308368 -0.062791 0.949192 +-0.422422 -0.125333 0.897693 -0.359968 0.562666 -0.422348 -0.125333 0.897727 +-0.306581 -0.125333 0.943558 -0.399968 0.562666 -0.306502 -0.125334 0.943582 +-0.424939 -0.06279 0.903042 -0.359968 0.531395 -0.424902 -0.062791 0.903059 +-0.422422 -0.125333 0.897693 -0.359968 0.562666 -0.422348 -0.125333 0.897727 +-0.308408 -0.06279 0.94918 -0.399968 0.531395 -0.308368 -0.062791 0.949192 +-0.424939 -0.06279 0.903042 -0.359968 0.531395 -0.424902 -0.062791 0.903059 +-0.531602 -0.125333 0.837671 -0.319968 0.562666 -0.531533 -0.125334 0.837714 +-0.422422 -0.125333 0.897693 -0.359968 0.562666 -0.422348 -0.125333 0.897727 +-0.53477 -0.06279 0.842662 -0.319968 0.531395 -0.534735 -0.06279 0.842684 +-0.531602 -0.125333 0.837671 -0.319968 0.562666 -0.531533 -0.125334 0.837714 +-0.424939 -0.06279 0.903042 -0.359968 0.531395 -0.424902 -0.062791 0.903059 +-0.53477 -0.06279 0.842662 -0.319968 0.531395 -0.534735 -0.06279 0.842684 +-0.632398 -0.125333 0.764438 -0.279968 0.562666 -0.632335 -0.125333 0.76449 +-0.531602 -0.125333 0.837671 -0.319968 0.562666 -0.531533 -0.125334 0.837714 +-0.636167 -0.06279 0.768993 -0.279968 0.531395 -0.636135 -0.062791 0.769019 +-0.632398 -0.125333 0.764438 -0.279968 0.562666 -0.632335 -0.125333 0.76449 +-0.53477 -0.06279 0.842662 -0.319968 0.531395 -0.534735 -0.06279 0.842684 +-0.636167 -0.06279 0.768993 -0.279968 0.531395 -0.636135 -0.062791 0.769019 +-0.723221 -0.125333 0.67915 -0.239968 0.562666 -0.723164 -0.125334 0.679209 +-0.632398 -0.125333 0.764438 -0.279968 0.562666 -0.632335 -0.125333 0.76449 +-0.727531 -0.06279 0.683197 -0.239968 0.531395 -0.727502 -0.062791 0.683226 +-0.723221 -0.125333 0.67915 -0.239968 0.562666 -0.723164 -0.125334 0.679209 +-0.636167 -0.06279 0.768993 -0.279968 0.531395 -0.636135 -0.062791 0.769019 +-0.727531 -0.06279 0.683197 -0.239968 0.531395 -0.727502 -0.062791 0.683226 +-0.802638 -0.125333 0.583151 -0.199968 0.562666 -0.802589 -0.125334 0.583217 +-0.723221 -0.125333 0.67915 -0.239968 0.562666 -0.723164 -0.125334 0.679209 +-0.807421 -0.06279 0.586626 -0.199968 0.531395 -0.807397 -0.062791 0.586658 +-0.802638 -0.125333 0.583151 -0.199968 0.562666 -0.802589 -0.125334 0.583217 +-0.727531 -0.06279 0.683197 -0.239968 0.531395 -0.727502 -0.062791 0.683226 +-0.807421 -0.06279 0.586626 -0.199968 0.531395 -0.807397 -0.062791 0.586658 +-0.869397 -0.125333 0.477955 -0.159968 0.562666 -0.869357 -0.125333 0.478027 +-0.802638 -0.125333 0.583151 -0.199968 0.562666 -0.802589 -0.125334 0.583217 +-0.874578 -0.06279 0.480803 -0.159968 0.531395 -0.874558 -0.062791 0.480839 +-0.869397 -0.125333 0.477955 -0.159968 0.562666 -0.869357 -0.125333 0.478027 +-0.807421 -0.06279 0.586626 -0.199968 0.531395 -0.807397 -0.062791 0.586658 +-0.874578 -0.06279 0.480803 -0.159968 0.531395 -0.874558 -0.062791 0.480839 +-0.922446 -0.125333 0.365222 -0.119968 0.562666 -0.922415 -0.125334 0.365298 +-0.869397 -0.125333 0.477955 -0.159968 0.562666 -0.869357 -0.125333 0.478027 +-0.927942 -0.06279 0.367398 -0.119968 0.531395 -0.927927 -0.062791 0.367436 +-0.922446 -0.125333 0.365222 -0.119968 0.562666 -0.922415 -0.125334 0.365298 +-0.874578 -0.06279 0.480803 -0.159968 0.531395 -0.874558 -0.062791 0.480839 +-0.927942 -0.06279 0.367398 -0.119968 0.531395 -0.927927 -0.062791 0.367436 +-0.960946 -0.125333 0.246729 -0.079968 0.562666 -0.960925 -0.125333 0.246808 +-0.922446 -0.125333 0.365222 -0.119968 0.562666 -0.922415 -0.125334 0.365298 +-0.966672 -0.06279 0.248199 -0.079968 0.531395 -0.966662 -0.062791 0.248239 +-0.960946 -0.125333 0.246729 -0.079968 0.562666 -0.960925 -0.125333 0.246808 +-0.927942 -0.06279 0.367398 -0.119968 0.531395 -0.927927 -0.062791 0.367436 +-0.966672 -0.06279 0.248199 -0.079968 0.531395 -0.966662 -0.062791 0.248239 +-0.984292 -0.125333 0.124345 -0.039968 0.562666 -0.984281 -0.125333 0.124427 +-0.960946 -0.125333 0.246729 -0.079968 0.562666 -0.960925 -0.125333 0.246808 +-0.990158 -0.06279 0.125086 -0.039968 0.531395 -0.990152 -0.06279 0.125127 +-0.984292 -0.125333 0.124345 -0.039968 0.562666 -0.984281 -0.125333 0.124427 +-0.966672 -0.06279 0.248199 -0.079968 0.531395 -0.966662 -0.062791 0.248239 +-0.990158 -0.06279 0.125086 -0.039968 0.531395 -0.990152 -0.06279 0.125127 +-0.992115 -0.125333 -0 3.2e-005 0.562666 -0.992115 -0.125333 8.2e-005 +-0.984292 -0.125333 0.124345 -0.039968 0.562666 -0.984281 -0.125333 0.124427 +-0.998027 -0.06279 -0 3.2e-005 0.531395 -0.998027 -0.062791 4.1e-005 +-0.992115 -0.125333 -0 3.2e-005 0.562666 -0.992115 -0.125333 8.2e-005 +-0.990158 -0.06279 0.125086 -0.039968 0.531395 -0.990152 -0.06279 0.125127 +-0.998027 -0.06279 -0 3.2e-005 0.531395 -0.998027 -0.062791 4.1e-005 +-0.984292 -0.125333 -0.124345 0.040032 0.562666 -0.984302 -0.125334 -0.124263 +-0.992115 -0.125333 -0 3.2e-005 0.562666 -0.992115 -0.125333 8.2e-005 +-0.990158 -0.06279 -0.125086 0.040032 0.531395 -0.990162 -0.062791 -0.125045 +-0.984292 -0.125333 -0.124345 0.040032 0.562666 -0.984302 -0.125334 -0.124263 +-0.998027 -0.06279 -0 3.2e-005 0.531395 -0.998027 -0.062791 4.1e-005 +-0.990158 -0.06279 -0.125086 0.040032 0.531395 -0.990162 -0.062791 -0.125045 +-0.960946 -0.125333 -0.246729 0.080032 0.562666 -0.960966 -0.125334 -0.246649 +-0.984292 -0.125333 -0.124345 0.040032 0.562666 -0.984302 -0.125334 -0.124263 +-0.966672 -0.06279 -0.248199 0.080032 0.531395 -0.966682 -0.062791 -0.248159 +-0.960946 -0.125333 -0.246729 0.080032 0.562666 -0.960966 -0.125334 -0.246649 +-0.990158 -0.06279 -0.125086 0.040032 0.531395 -0.990162 -0.062791 -0.125045 +-0.966672 -0.06279 -0.248199 0.080032 0.531395 -0.966682 -0.062791 -0.248159 +-0.922445 -0.125333 -0.365222 0.120032 0.562666 -0.922475 -0.125334 -0.365145 +-0.960946 -0.125333 -0.246729 0.080032 0.562666 -0.960966 -0.125334 -0.246649 +-0.927942 -0.06279 -0.367398 0.120032 0.531395 -0.927957 -0.062791 -0.36736 +-0.922445 -0.125333 -0.365222 0.120032 0.562666 -0.922475 -0.125334 -0.365145 +-0.966672 -0.06279 -0.248199 0.080032 0.531395 -0.966682 -0.062791 -0.248159 +-0.927942 -0.06279 -0.367398 0.120032 0.531395 -0.927957 -0.062791 -0.36736 +-0.869397 -0.125333 -0.477955 0.160032 0.562666 -0.869436 -0.125333 -0.477883 +-0.922445 -0.125333 -0.365222 0.120032 0.562666 -0.922475 -0.125334 -0.365145 +-0.874578 -0.06279 -0.480803 0.160032 0.531395 -0.874597 -0.062791 -0.480767 +-0.869397 -0.125333 -0.477955 0.160032 0.562666 -0.869436 -0.125333 -0.477883 +-0.927942 -0.06279 -0.367398 0.120032 0.531395 -0.927957 -0.062791 -0.36736 +-0.874578 -0.06279 -0.480803 0.160032 0.531395 -0.874597 -0.062791 -0.480767 +-0.802638 -0.125333 -0.583151 0.200032 0.562666 -0.802686 -0.125333 -0.583084 +-0.869397 -0.125333 -0.477955 0.160032 0.562666 -0.869436 -0.125333 -0.477883 +-0.807421 -0.06279 -0.586626 0.200032 0.531395 -0.807445 -0.062791 -0.586592 +-0.802638 -0.125333 -0.583151 0.200032 0.562666 -0.802686 -0.125333 -0.583084 +-0.874578 -0.06279 -0.480803 0.160032 0.531395 -0.874597 -0.062791 -0.480767 +-0.807421 -0.06279 -0.586626 0.200032 0.531395 -0.807445 -0.062791 -0.586592 +-0.723221 -0.125333 -0.67915 0.240032 0.562666 -0.723277 -0.125334 -0.679089 +-0.802638 -0.125333 -0.583151 0.200032 0.562666 -0.802686 -0.125333 -0.583084 +-0.72753 -0.06279 -0.683197 0.240032 0.531395 -0.727558 -0.06279 -0.683167 +-0.723221 -0.125333 -0.67915 0.240032 0.562666 -0.723277 -0.125334 -0.679089 +-0.807421 -0.06279 -0.586626 0.200032 0.531395 -0.807445 -0.062791 -0.586592 +-0.72753 -0.06279 -0.683197 0.240032 0.531395 -0.727558 -0.06279 -0.683167 +-0.632398 -0.125333 -0.764438 0.280032 0.562666 -0.632461 -0.125333 -0.764385 +-0.723221 -0.125333 -0.67915 0.240032 0.562666 -0.723277 -0.125334 -0.679089 +-0.636166 -0.06279 -0.768993 0.280032 0.531395 -0.636198 -0.062791 -0.768967 +-0.632398 -0.125333 -0.764438 0.280032 0.562666 -0.632461 -0.125333 -0.764385 +-0.72753 -0.06279 -0.683197 0.240032 0.531395 -0.727558 -0.06279 -0.683167 +-0.636166 -0.06279 -0.768993 0.280032 0.531395 -0.636198 -0.062791 -0.768967 +-0.531602 -0.125333 -0.837671 0.320032 0.562666 -0.531671 -0.125334 -0.837626 +-0.632398 -0.125333 -0.764438 0.280032 0.562666 -0.632461 -0.125333 -0.764385 +-0.53477 -0.06279 -0.842662 0.320032 0.531395 -0.534804 -0.062791 -0.84264 +-0.531602 -0.125333 -0.837671 0.320032 0.562666 -0.531671 -0.125334 -0.837626 +-0.636166 -0.06279 -0.768993 0.280032 0.531395 -0.636198 -0.062791 -0.768967 +-0.53477 -0.06279 -0.842662 0.320032 0.531395 -0.534804 -0.062791 -0.84264 +-0.422422 -0.125333 -0.897693 0.360032 0.562666 -0.422496 -0.125334 -0.897657 +-0.531602 -0.125333 -0.837671 0.320032 0.562666 -0.531671 -0.125334 -0.837626 +-0.424939 -0.06279 -0.903042 0.360032 0.531395 -0.424976 -0.06279 -0.903024 +-0.422422 -0.125333 -0.897693 0.360032 0.562666 -0.422496 -0.125334 -0.897657 +-0.53477 -0.06279 -0.842662 0.320032 0.531395 -0.534804 -0.062791 -0.84264 +-0.424939 -0.06279 -0.903042 0.360032 0.531395 -0.424976 -0.06279 -0.903024 +-0.30658 -0.125333 -0.943558 0.400032 0.562666 -0.306658 -0.125333 -0.943532 +-0.422422 -0.125333 -0.897693 0.360032 0.562666 -0.422496 -0.125334 -0.897657 +-0.308407 -0.06279 -0.94918 0.400032 0.531395 -0.308446 -0.062791 -0.949167 +-0.30658 -0.125333 -0.943558 0.400032 0.562666 -0.306658 -0.125333 -0.943532 +-0.424939 -0.06279 -0.903042 0.360032 0.531395 -0.424976 -0.06279 -0.903024 +-0.308407 -0.06279 -0.94918 0.400032 0.531395 -0.308446 -0.062791 -0.949167 +-0.185904 -0.125333 -0.974542 0.440032 0.562666 -0.185984 -0.125333 -0.974526 +-0.30658 -0.125333 -0.943558 0.400032 0.562666 -0.306658 -0.125333 -0.943532 +-0.187012 -0.06279 -0.980349 0.440032 0.531395 -0.187052 -0.062791 -0.980341 +-0.185904 -0.125333 -0.974542 0.440032 0.562666 -0.185984 -0.125333 -0.974526 +-0.308407 -0.06279 -0.94918 0.400032 0.531395 -0.308446 -0.062791 -0.949167 +-0.187012 -0.06279 -0.980349 0.440032 0.531395 -0.187052 -0.062791 -0.980341 +-0.062295 -0.125333 -0.990157 0.480032 0.562666 -0.062377 -0.125333 -0.990152 +-0.185904 -0.125333 -0.974542 0.440032 0.562666 -0.185984 -0.125333 -0.974526 +-0.062667 -0.06279 -0.996058 0.480032 0.531395 -0.062707 -0.062791 -0.996055 +-0.062295 -0.125333 -0.990157 0.480032 0.562666 -0.062377 -0.125333 -0.990152 +-0.187012 -0.06279 -0.980349 0.440032 0.531395 -0.187052 -0.062791 -0.980341 +-0.062667 -0.06279 -0.996058 0.480032 0.531395 -0.062707 -0.062791 -0.996055 +0.062296 -0.125333 -0.990157 0.520032 0.562666 0.062213 -0.125333 -0.990162 +-0.062295 -0.125333 -0.990157 0.480032 0.562666 -0.062377 -0.125333 -0.990152 +0.062667 -0.06279 -0.996058 0.520032 0.531395 0.062626 -0.062791 -0.99606 +0.062296 -0.125333 -0.990157 0.520032 0.562666 0.062213 -0.125333 -0.990162 +-0.062667 -0.06279 -0.996058 0.480032 0.531395 -0.062707 -0.062791 -0.996055 +0.062667 -0.06279 -0.996058 0.520032 0.531395 0.062626 -0.062791 -0.99606 +0.185904 -0.125333 -0.974542 0.560032 0.562666 0.185823 -0.125333 -0.974557 +0.062296 -0.125333 -0.990157 0.520032 0.562666 0.062213 -0.125333 -0.990162 +0.187012 -0.06279 -0.980349 0.560032 0.531395 0.186971 -0.062791 -0.980357 +0.185904 -0.125333 -0.974542 0.560032 0.562666 0.185823 -0.125333 -0.974557 +0.062667 -0.06279 -0.996058 0.520032 0.531395 0.062626 -0.062791 -0.99606 +0.187012 -0.06279 -0.980349 0.560032 0.531395 0.186971 -0.062791 -0.980357 +0.30658 -0.125333 -0.943557 0.600032 0.562666 0.306502 -0.125333 -0.943583 +0.185904 -0.125333 -0.974542 0.560032 0.562666 0.185823 -0.125333 -0.974557 +0.308407 -0.06279 -0.94918 0.600032 0.531395 0.308368 -0.062791 -0.949192 +0.30658 -0.125333 -0.943557 0.600032 0.562666 0.306502 -0.125333 -0.943583 +0.187012 -0.06279 -0.980349 0.560032 0.531395 0.186971 -0.062791 -0.980357 +0.308407 -0.06279 -0.94918 0.600032 0.531395 0.308368 -0.062791 -0.949192 +0.422422 -0.125333 -0.897692 0.640032 0.562666 0.422348 -0.125333 -0.897727 +0.30658 -0.125333 -0.943557 0.600032 0.562666 0.306502 -0.125333 -0.943583 +0.424939 -0.06279 -0.903042 0.640032 0.531395 0.424902 -0.062791 -0.903059 +0.422422 -0.125333 -0.897692 0.640032 0.562666 0.422348 -0.125333 -0.897727 +0.308407 -0.06279 -0.94918 0.600032 0.531395 0.308368 -0.062791 -0.949192 +0.424939 -0.06279 -0.903042 0.640032 0.531395 0.424902 -0.062791 -0.903059 +0.531602 -0.125333 -0.83767 0.680032 0.562666 0.531532 -0.125333 -0.837714 +0.422422 -0.125333 -0.897692 0.640032 0.562666 0.422348 -0.125333 -0.897727 +0.53477 -0.06279 -0.842662 0.680032 0.531395 0.534735 -0.062791 -0.842684 +0.531602 -0.125333 -0.83767 0.680032 0.562666 0.531532 -0.125333 -0.837714 +0.424939 -0.06279 -0.903042 0.640032 0.531395 0.424902 -0.062791 -0.903059 +0.53477 -0.06279 -0.842662 0.680032 0.531395 0.534735 -0.062791 -0.842684 +0.632398 -0.125333 -0.764438 0.720032 0.562666 0.632335 -0.125333 -0.76449 +0.531602 -0.125333 -0.83767 0.680032 0.562666 0.531532 -0.125333 -0.837714 +0.636166 -0.06279 -0.768993 0.720032 0.531395 0.636135 -0.062791 -0.769019 +0.632398 -0.125333 -0.764438 0.720032 0.562666 0.632335 -0.125333 -0.76449 +0.53477 -0.06279 -0.842662 0.680032 0.531395 0.534735 -0.062791 -0.842684 +0.636166 -0.06279 -0.768993 0.720032 0.531395 0.636135 -0.062791 -0.769019 +0.723221 -0.125333 -0.679149 0.760032 0.562666 0.723164 -0.125334 -0.679209 +0.632398 -0.125333 -0.764438 0.720032 0.562666 0.632335 -0.125333 -0.76449 +0.72753 -0.06279 -0.683196 0.760032 0.531395 0.727502 -0.062791 -0.683226 +0.723221 -0.125333 -0.679149 0.760032 0.562666 0.723164 -0.125334 -0.679209 +0.636166 -0.06279 -0.768993 0.720032 0.531395 0.636135 -0.062791 -0.769019 +0.72753 -0.06279 -0.683196 0.760032 0.531395 0.727502 -0.062791 -0.683226 +0.802638 -0.125333 -0.58315 0.800032 0.562666 0.802589 -0.125333 -0.583217 +0.723221 -0.125333 -0.679149 0.760032 0.562666 0.723164 -0.125334 -0.679209 +0.807421 -0.06279 -0.586625 0.800032 0.531395 0.807397 -0.062791 -0.586658 +0.802638 -0.125333 -0.58315 0.800032 0.562666 0.802589 -0.125333 -0.583217 +0.72753 -0.06279 -0.683196 0.760032 0.531395 0.727502 -0.062791 -0.683226 +0.807421 -0.06279 -0.586625 0.800032 0.531395 0.807397 -0.062791 -0.586658 +0.869397 -0.125333 -0.477955 0.840032 0.562666 0.869357 -0.125333 -0.478027 +0.802638 -0.125333 -0.58315 0.800032 0.562666 0.802589 -0.125333 -0.583217 +0.874578 -0.06279 -0.480803 0.840032 0.531395 0.874558 -0.062791 -0.480839 +0.869397 -0.125333 -0.477955 0.840032 0.562666 0.869357 -0.125333 -0.478027 +0.807421 -0.06279 -0.586625 0.800032 0.531395 0.807397 -0.062791 -0.586658 +0.874578 -0.06279 -0.480803 0.840032 0.531395 0.874558 -0.062791 -0.480839 +0.922445 -0.125333 -0.365222 0.880032 0.562666 0.922415 -0.125334 -0.365298 +0.869397 -0.125333 -0.477955 0.840032 0.562666 0.869357 -0.125333 -0.478027 +0.927942 -0.06279 -0.367398 0.880032 0.531395 0.927927 -0.062791 -0.367436 +0.922445 -0.125333 -0.365222 0.880032 0.562666 0.922415 -0.125334 -0.365298 +0.874578 -0.06279 -0.480803 0.840032 0.531395 0.874558 -0.062791 -0.480839 +0.927942 -0.06279 -0.367398 0.880032 0.531395 0.927927 -0.062791 -0.367436 +0.960946 -0.125333 -0.246729 0.920032 0.562666 0.960925 -0.125334 -0.246809 +0.922445 -0.125333 -0.365222 0.880032 0.562666 0.922415 -0.125334 -0.365298 +0.966672 -0.06279 -0.248199 0.920032 0.531395 0.966662 -0.062791 -0.248239 +0.960946 -0.125333 -0.246729 0.920032 0.562666 0.960925 -0.125334 -0.246809 +0.927942 -0.06279 -0.367398 0.880032 0.531395 0.927927 -0.062791 -0.367436 +0.966672 -0.06279 -0.248199 0.920032 0.531395 0.966662 -0.062791 -0.248239 +0.984292 -0.125333 -0.124345 0.960032 0.562666 0.984281 -0.125333 -0.124427 +0.960946 -0.125333 -0.246729 0.920032 0.562666 0.960925 -0.125334 -0.246809 +0.990157 -0.06279 -0.125086 0.960032 0.531395 0.990152 -0.06279 -0.125127 +0.984292 -0.125333 -0.124345 0.960032 0.562666 0.984281 -0.125333 -0.124427 +0.966672 -0.06279 -0.248199 0.920032 0.531395 0.966662 -0.062791 -0.248239 +0.990157 -0.06279 -0.125086 0.960032 0.531395 0.990152 -0.06279 -0.125127 +0.992115 -0.125333 -0 1.00003 0.562666 0.992115 -0.125333 -8.6e-005 +0.984292 -0.125333 -0.124345 0.960032 0.562666 0.984281 -0.125333 -0.124427 +0.998027 -0.06279 -0 1.00003 0.531395 0.998027 -0.062791 -4.5e-005 +0.992115 -0.125333 -0 1.00003 0.562666 0.992115 -0.125333 -8.6e-005 +0.990157 -0.06279 -0.125086 0.960032 0.531395 0.990152 -0.06279 -0.125127 +0.998027 -0.06279 -0 1.00003 0.531395 0.998027 -0.062791 -4.5e-005 +0.984293 -0.125333 0.124345 1.04003 0.562666 0.984302 -0.125334 0.124259 +0.992115 -0.125333 -0 1.00003 0.562666 0.992115 -0.125333 -8.6e-005 +0.990158 -0.06279 0.125086 1.04003 0.531395 0.990163 -0.062791 0.125041 +0.984293 -0.125333 0.124345 1.04003 0.562666 0.984302 -0.125334 0.124259 +0.998027 -0.06279 -0 1.00003 0.531395 0.998027 -0.062791 -4.5e-005 +0.992116 0 0.125333 1.04003 0.5 0.992115 0 0.125329 +0.966673 -0.06279 0.248199 1.08003 0.531395 0.966682 -0.062791 0.248159 +0.990158 -0.06279 0.125086 1.04003 0.531395 0.990163 -0.062791 0.125041 +0.968584 0 0.24869 1.08003 0.5 0.968583 -0 0.24869 +0.966673 -0.06279 0.248199 1.08003 0.531395 0.966682 -0.062791 0.248159 +0.992116 0 0.125333 1.04003 0.5 0.992115 0 0.125329 +0.968584 0 0.24869 1.08003 0.5 0.968583 -0 0.24869 +0.927943 -0.06279 0.367399 1.12003 0.531395 0.927957 -0.062791 0.36736 +0.966673 -0.06279 0.248199 1.08003 0.531395 0.966682 -0.062791 0.248159 +0.929777 0 0.368125 1.12003 0.5 0.929776 0 0.368125 +0.927943 -0.06279 0.367399 1.12003 0.531395 0.927957 -0.062791 0.36736 +0.968584 0 0.24869 1.08003 0.5 0.968583 -0 0.24869 +0.929777 0 0.368125 1.12003 0.5 0.929776 0 0.368125 +0.874578 -0.06279 0.480804 1.16003 0.531395 0.874597 -0.062791 0.480767 +0.927943 -0.06279 0.367399 1.12003 0.531395 0.927957 -0.062791 0.36736 +0.876307 0 0.481754 1.16003 0.5 0.876307 0 0.481754 +0.874578 -0.06279 0.480804 1.16003 0.531395 0.874597 -0.062791 0.480767 +0.929777 0 0.368125 1.12003 0.5 0.929776 0 0.368125 +0.876307 0 0.481754 1.16003 0.5 0.876307 0 0.481754 +0.807421 -0.06279 0.586626 1.20003 0.531395 0.807445 -0.06279 0.586592 +0.874578 -0.06279 0.480804 1.16003 0.531395 0.874597 -0.062791 0.480767 +0.809018 0 0.587786 1.20003 0.5 0.809017 0 0.587785 +0.807421 -0.06279 0.586626 1.20003 0.531395 0.807445 -0.06279 0.586592 +0.876307 0 0.481754 1.16003 0.5 0.876307 0 0.481754 +0.809018 0 0.587786 1.20003 0.5 0.809017 0 0.587785 +0.727531 -0.06279 0.683197 1.24003 0.531395 0.727558 -0.06279 0.683167 +0.807421 -0.06279 0.586626 1.20003 0.531395 0.807445 -0.06279 0.586592 +0.728969 0 0.684548 1.24003 0.5 0.728969 -0 0.684547 +0.727531 -0.06279 0.683197 1.24003 0.531395 0.727558 -0.06279 0.683167 +0.809018 0 0.587786 1.20003 0.5 0.809017 0 0.587785 +0.728969 0 0.684548 1.24003 0.5 0.728969 -0 0.684547 +0.636167 -0.06279 0.768994 1.28003 0.531395 0.636198 -0.062791 0.768966 +0.727531 -0.06279 0.683197 1.24003 0.531395 0.727558 -0.06279 0.683167 +0.637425 0 0.770514 1.28003 0.5 0.637424 -0 0.770513 +0.636167 -0.06279 0.768994 1.28003 0.531395 0.636198 -0.062791 0.768966 +0.728969 0 0.684548 1.24003 0.5 0.728969 -0 0.684547 +0.637425 0 0.770514 1.28003 0.5 0.637424 -0 0.770513 +0.53477 -0.06279 0.842663 1.32003 0.531395 0.534804 -0.062791 0.84264 +0.636167 -0.06279 0.768994 1.28003 0.531395 0.636198 -0.062791 0.768966 +0.535827 0 0.844329 1.32003 0.5 0.535827 0 0.844328 +0.53477 -0.06279 0.842663 1.32003 0.531395 0.534804 -0.062791 0.84264 +0.637425 0 0.770514 1.28003 0.5 0.637424 -0 0.770513 +0.535827 0 0.844329 1.32003 0.5 0.535827 0 0.844328 +0.424939 -0.06279 0.903042 1.36003 0.531395 0.424976 -0.062791 0.903024 +0.53477 -0.06279 0.842663 1.32003 0.531395 0.534804 -0.062791 0.84264 +0.42578 0 0.904828 1.36003 0.5 0.425779 -0 0.904827 +0.424939 -0.06279 0.903042 1.36003 0.531395 0.424976 -0.062791 0.903024 +0.535827 0 0.844329 1.32003 0.5 0.535827 0 0.844328 +0.42578 0 0.904828 1.36003 0.5 0.425779 -0 0.904827 +0.308407 -0.06279 0.949181 1.40003 0.531395 0.308446 -0.062791 0.949167 +0.424939 -0.06279 0.903042 1.36003 0.531395 0.424976 -0.062791 0.903024 +0.309017 0 0.951057 1.40003 0.5 0.309017 -0 0.951057 +0.308407 -0.06279 0.949181 1.40003 0.531395 0.308446 -0.062791 0.949167 +0.42578 0 0.904828 1.36003 0.5 0.425779 -0 0.904827 +0.309017 0 0.951057 1.40003 0.5 0.309017 -0 0.951057 +0.187012 -0.06279 0.98035 1.44003 0.531395 0.187052 -0.062791 0.980341 +0.308407 -0.06279 0.949181 1.40003 0.531395 0.308446 -0.062791 0.949167 +0.187381 0 0.982288 1.44003 0.5 0.187381 0 0.982287 +0.187012 -0.06279 0.98035 1.44003 0.531395 0.187052 -0.062791 0.980341 +0.309017 0 0.951057 1.40003 0.5 0.309017 -0 0.951057 +0.187381 0 0.982288 1.44003 0.5 0.187381 0 0.982287 +0.062667 -0.06279 0.996058 1.48003 0.531395 0.062707 -0.062791 0.996055 +0.187012 -0.06279 0.98035 1.44003 0.531395 0.187052 -0.062791 0.980341 +0.06279 0 0.998028 1.48003 0.5 0.06279 0 0.998027 +0.062667 -0.06279 0.996058 1.48003 0.531395 0.062707 -0.062791 0.996055 +0.187381 0 0.982288 1.44003 0.5 0.187381 0 0.982287 +0.06279 0 0.998028 1.48003 0.5 0.06279 0 0.998027 +-0.062667 -0.06279 0.996058 1.52003 0.531395 -0.062626 -0.062791 0.99606 +0.062667 -0.06279 0.996058 1.48003 0.531395 0.062707 -0.062791 0.996055 +-0.062791 0 0.998028 1.52003 0.5 -0.062791 -0 0.998027 +-0.062667 -0.06279 0.996058 1.52003 0.531395 -0.062626 -0.062791 0.99606 +0.06279 0 0.998028 1.48003 0.5 0.06279 0 0.998027 +-0.062791 0 0.998028 -0.479968 0.5 -0.062791 -0 0.998027 +-0.187012 -0.06279 0.98035 -0.439968 0.531395 -0.186971 -0.062791 0.980357 +-0.062667 -0.06279 0.996058 -0.479968 0.531395 -0.062626 -0.062791 0.99606 +-0.187382 0 0.982288 -0.439968 0.5 -0.187381 0 0.982287 +-0.187012 -0.06279 0.98035 -0.439968 0.531395 -0.186971 -0.062791 0.980357 +-0.062791 0 0.998028 -0.479968 0.5 -0.062791 -0 0.998027 +-0.187382 0 0.982288 -0.439968 0.5 -0.187381 0 0.982287 +-0.308408 -0.06279 0.94918 -0.399968 0.531395 -0.308368 -0.062791 0.949192 +-0.187012 -0.06279 0.98035 -0.439968 0.531395 -0.186971 -0.062791 0.980357 +-0.309017 0 0.951057 -0.399968 0.5 -0.309017 0 0.951057 +-0.308408 -0.06279 0.94918 -0.399968 0.531395 -0.308368 -0.062791 0.949192 +-0.187382 0 0.982288 -0.439968 0.5 -0.187381 0 0.982287 +-0.309017 0 0.951057 -0.399968 0.5 -0.309017 0 0.951057 +-0.424939 -0.06279 0.903042 -0.359968 0.531395 -0.424902 -0.062791 0.903059 +-0.308408 -0.06279 0.94918 -0.399968 0.531395 -0.308368 -0.062791 0.949192 +-0.42578 0 0.904828 -0.359968 0.5 -0.425779 0 0.904827 +-0.424939 -0.06279 0.903042 -0.359968 0.531395 -0.424902 -0.062791 0.903059 +-0.309017 0 0.951057 -0.399968 0.5 -0.309017 0 0.951057 +-0.42578 0 0.904828 -0.359968 0.5 -0.425779 0 0.904827 +-0.53477 -0.06279 0.842662 -0.319968 0.531395 -0.534735 -0.06279 0.842684 +-0.424939 -0.06279 0.903042 -0.359968 0.531395 -0.424902 -0.062791 0.903059 +-0.535827 0 0.844328 -0.319968 0.5 -0.535827 -0 0.844328 +-0.53477 -0.06279 0.842662 -0.319968 0.531395 -0.534735 -0.06279 0.842684 +-0.42578 0 0.904828 -0.359968 0.5 -0.425779 0 0.904827 +-0.535827 0 0.844328 -0.319968 0.5 -0.535827 -0 0.844328 +-0.636167 -0.06279 0.768993 -0.279968 0.531395 -0.636135 -0.062791 0.769019 +-0.53477 -0.06279 0.842662 -0.319968 0.531395 -0.534735 -0.06279 0.842684 +-0.637424 0 0.770514 -0.279968 0.5 -0.637424 -0 0.770513 +-0.636167 -0.06279 0.768993 -0.279968 0.531395 -0.636135 -0.062791 0.769019 +-0.535827 0 0.844328 -0.319968 0.5 -0.535827 -0 0.844328 +-0.637424 0 0.770514 -0.279968 0.5 -0.637424 -0 0.770513 +-0.727531 -0.06279 0.683197 -0.239968 0.531395 -0.727502 -0.062791 0.683226 +-0.636167 -0.06279 0.768993 -0.279968 0.531395 -0.636135 -0.062791 0.769019 +-0.728969 0 0.684547 -0.239968 0.5 -0.728969 0 0.684547 +-0.727531 -0.06279 0.683197 -0.239968 0.531395 -0.727502 -0.062791 0.683226 +-0.637424 0 0.770514 -0.279968 0.5 -0.637424 -0 0.770513 +-0.728969 0 0.684547 -0.239968 0.5 -0.728969 0 0.684547 +-0.807421 -0.06279 0.586626 -0.199968 0.531395 -0.807397 -0.062791 0.586658 +-0.727531 -0.06279 0.683197 -0.239968 0.531395 -0.727502 -0.062791 0.683226 +-0.809018 0 0.587786 -0.199968 0.5 -0.809017 0 0.587785 +-0.807421 -0.06279 0.586626 -0.199968 0.531395 -0.807397 -0.062791 0.586658 +-0.728969 0 0.684547 -0.239968 0.5 -0.728969 0 0.684547 +-0.809018 0 0.587786 -0.199968 0.5 -0.809017 0 0.587785 +-0.874578 -0.06279 0.480803 -0.159968 0.531395 -0.874558 -0.062791 0.480839 +-0.807421 -0.06279 0.586626 -0.199968 0.531395 -0.807397 -0.062791 0.586658 +-0.876307 0 0.481754 -0.159968 0.5 -0.876307 1e-006 0.481754 +-0.874578 -0.06279 0.480803 -0.159968 0.531395 -0.874558 -0.062791 0.480839 +-0.809018 0 0.587786 -0.199968 0.5 -0.809017 0 0.587785 +-0.876307 0 0.481754 -0.159968 0.5 -0.876307 1e-006 0.481754 +-0.927942 -0.06279 0.367398 -0.119968 0.531395 -0.927927 -0.062791 0.367436 +-0.874578 -0.06279 0.480803 -0.159968 0.531395 -0.874558 -0.062791 0.480839 +-0.929777 0 0.368125 -0.119968 0.5 -0.929777 0 0.368124 +-0.927942 -0.06279 0.367398 -0.119968 0.531395 -0.927927 -0.062791 0.367436 +-0.876307 0 0.481754 -0.159968 0.5 -0.876307 1e-006 0.481754 +-0.929777 0 0.368125 -0.119968 0.5 -0.929777 0 0.368124 +-0.966672 -0.06279 0.248199 -0.079968 0.531395 -0.966662 -0.062791 0.248239 +-0.927942 -0.06279 0.367398 -0.119968 0.531395 -0.927927 -0.062791 0.367436 +-0.968584 0 0.24869 -0.079968 0.5 -0.968583 -0 0.24869 +-0.966672 -0.06279 0.248199 -0.079968 0.531395 -0.966662 -0.062791 0.248239 +-0.929777 0 0.368125 -0.119968 0.5 -0.929777 0 0.368124 +-0.968584 0 0.24869 -0.079968 0.5 -0.968583 -0 0.24869 +-0.990158 -0.06279 0.125086 -0.039968 0.531395 -0.990152 -0.06279 0.125127 +-0.966672 -0.06279 0.248199 -0.079968 0.531395 -0.966662 -0.062791 0.248239 +-0.992115 0 0.125333 -0.039968 0.5 -0.992115 -0 0.125333 +-0.990158 -0.06279 0.125086 -0.039968 0.531395 -0.990152 -0.06279 0.125127 +-0.968584 0 0.24869 -0.079968 0.5 -0.968583 -0 0.24869 +-0.992115 0 0.125333 -0.039968 0.5 -0.992115 -0 0.125333 +-0.998027 -0.06279 -0 3.2e-005 0.531395 -0.998027 -0.062791 4.1e-005 +-0.990158 -0.06279 0.125086 -0.039968 0.531395 -0.990152 -0.06279 0.125127 +-1 0 -0 3.2e-005 0.5 -1 0 -0 +-0.998027 -0.06279 -0 3.2e-005 0.531395 -0.998027 -0.062791 4.1e-005 +-0.992115 0 0.125333 -0.039968 0.5 -0.992115 -0 0.125333 +-1 0 -0 3.2e-005 0.5 -1 0 -0 +-0.990158 -0.06279 -0.125086 0.040032 0.531395 -0.990162 -0.062791 -0.125045 +-0.998027 -0.06279 -0 3.2e-005 0.531395 -0.998027 -0.062791 4.1e-005 +-0.992115 0 -0.125333 0.040032 0.5 -0.992115 -1e-006 -0.125333 +-0.990158 -0.06279 -0.125086 0.040032 0.531395 -0.990162 -0.062791 -0.125045 +-1 0 -0 3.2e-005 0.5 -1 0 -0 +-0.992115 0 -0.125333 0.040032 0.5 -0.992115 -1e-006 -0.125333 +-0.966672 -0.06279 -0.248199 0.080032 0.531395 -0.966682 -0.062791 -0.248159 +-0.990158 -0.06279 -0.125086 0.040032 0.531395 -0.990162 -0.062791 -0.125045 +-0.968584 0 -0.24869 0.080032 0.5 -0.968583 -0 -0.24869 +-0.966672 -0.06279 -0.248199 0.080032 0.531395 -0.966682 -0.062791 -0.248159 +-0.992115 0 -0.125333 0.040032 0.5 -0.992115 -1e-006 -0.125333 +-0.968584 0 -0.24869 0.080032 0.5 -0.968583 -0 -0.24869 +-0.927942 -0.06279 -0.367398 0.120032 0.531395 -0.927957 -0.062791 -0.36736 +-0.966672 -0.06279 -0.248199 0.080032 0.531395 -0.966682 -0.062791 -0.248159 +-0.929777 0 -0.368125 0.120032 0.5 -0.929776 -0 -0.368125 +-0.927942 -0.06279 -0.367398 0.120032 0.531395 -0.927957 -0.062791 -0.36736 +-0.968584 0 -0.24869 0.080032 0.5 -0.968583 -0 -0.24869 +-0.929777 0 -0.368125 0.120032 0.5 -0.929776 -0 -0.368125 +-0.874578 -0.06279 -0.480803 0.160032 0.531395 -0.874597 -0.062791 -0.480767 +-0.927942 -0.06279 -0.367398 0.120032 0.531395 -0.927957 -0.062791 -0.36736 +-0.876307 0 -0.481754 0.160032 0.5 -0.876306 0 -0.481754 +-0.874578 -0.06279 -0.480803 0.160032 0.531395 -0.874597 -0.062791 -0.480767 +-0.929777 0 -0.368125 0.120032 0.5 -0.929776 -0 -0.368125 +-0.876307 0 -0.481754 0.160032 0.5 -0.876306 0 -0.481754 +-0.807421 -0.06279 -0.586626 0.200032 0.531395 -0.807445 -0.062791 -0.586592 +-0.874578 -0.06279 -0.480803 0.160032 0.531395 -0.874597 -0.062791 -0.480767 +-0.809017 0 -0.587786 0.200032 0.5 -0.809017 -0 -0.587786 +-0.807421 -0.06279 -0.586626 0.200032 0.531395 -0.807445 -0.062791 -0.586592 +-0.876307 0 -0.481754 0.160032 0.5 -0.876306 0 -0.481754 +-0.809017 0 -0.587786 0.200032 0.5 -0.809017 -0 -0.587786 +-0.72753 -0.06279 -0.683197 0.240032 0.531395 -0.727558 -0.06279 -0.683167 +-0.807421 -0.06279 -0.586626 0.200032 0.531395 -0.807445 -0.062791 -0.586592 +-0.728969 0 -0.684547 0.240032 0.5 -0.728969 -0 -0.684547 +-0.72753 -0.06279 -0.683197 0.240032 0.531395 -0.727558 -0.06279 -0.683167 +-0.809017 0 -0.587786 0.200032 0.5 -0.809017 -0 -0.587786 +-0.728969 0 -0.684547 0.240032 0.5 -0.728969 -0 -0.684547 +-0.636166 -0.06279 -0.768993 0.280032 0.531395 -0.636198 -0.062791 -0.768967 +-0.72753 -0.06279 -0.683197 0.240032 0.531395 -0.727558 -0.06279 -0.683167 +-0.637424 0 -0.770514 0.280032 0.5 -0.637424 -0 -0.770513 +-0.636166 -0.06279 -0.768993 0.280032 0.531395 -0.636198 -0.062791 -0.768967 +-0.728969 0 -0.684547 0.240032 0.5 -0.728969 -0 -0.684547 +-0.637424 0 -0.770514 0.280032 0.5 -0.637424 -0 -0.770513 +-0.53477 -0.06279 -0.842662 0.320032 0.531395 -0.534804 -0.062791 -0.84264 +-0.636166 -0.06279 -0.768993 0.280032 0.531395 -0.636198 -0.062791 -0.768967 +-0.535827 0 -0.844328 0.320032 0.5 -0.535827 0 -0.844328 +-0.53477 -0.06279 -0.842662 0.320032 0.531395 -0.534804 -0.062791 -0.84264 +-0.637424 0 -0.770514 0.280032 0.5 -0.637424 -0 -0.770513 +-0.535827 0 -0.844328 0.320032 0.5 -0.535827 0 -0.844328 +-0.424939 -0.06279 -0.903042 0.360032 0.531395 -0.424976 -0.06279 -0.903024 +-0.53477 -0.06279 -0.842662 0.320032 0.531395 -0.534804 -0.062791 -0.84264 +-0.425779 0 -0.904827 0.360032 0.5 -0.425779 -0 -0.904827 +-0.424939 -0.06279 -0.903042 0.360032 0.531395 -0.424976 -0.06279 -0.903024 +-0.535827 0 -0.844328 0.320032 0.5 -0.535827 0 -0.844328 +-0.425779 0 -0.904827 0.360032 0.5 -0.425779 -0 -0.904827 +-0.308407 -0.06279 -0.94918 0.400032 0.531395 -0.308446 -0.062791 -0.949167 +-0.424939 -0.06279 -0.903042 0.360032 0.531395 -0.424976 -0.06279 -0.903024 +-0.309017 0 -0.951057 0.400032 0.5 -0.309017 -0 -0.951057 +-0.308407 -0.06279 -0.94918 0.400032 0.531395 -0.308446 -0.062791 -0.949167 +-0.425779 0 -0.904827 0.360032 0.5 -0.425779 -0 -0.904827 +-0.309017 0 -0.951057 0.400032 0.5 -0.309017 -0 -0.951057 +-0.187012 -0.06279 -0.980349 0.440032 0.531395 -0.187052 -0.062791 -0.980341 +-0.308407 -0.06279 -0.94918 0.400032 0.531395 -0.308446 -0.062791 -0.949167 +-0.187381 0 -0.982288 0.440032 0.5 -0.187381 -0 -0.982287 +-0.187012 -0.06279 -0.980349 0.440032 0.531395 -0.187052 -0.062791 -0.980341 +-0.309017 0 -0.951057 0.400032 0.5 -0.309017 -0 -0.951057 +-0.187381 0 -0.982288 0.440032 0.5 -0.187381 -0 -0.982287 +-0.062667 -0.06279 -0.996058 0.480032 0.531395 -0.062707 -0.062791 -0.996055 +-0.187012 -0.06279 -0.980349 0.440032 0.531395 -0.187052 -0.062791 -0.980341 +-0.06279 0 -0.998027 0.480032 0.5 -0.06279 0 -0.998027 +-0.062667 -0.06279 -0.996058 0.480032 0.531395 -0.062707 -0.062791 -0.996055 +-0.187381 0 -0.982288 0.440032 0.5 -0.187381 -0 -0.982287 +-0.06279 0 -0.998027 0.480032 0.5 -0.06279 0 -0.998027 +0.062667 -0.06279 -0.996058 0.520032 0.531395 0.062626 -0.062791 -0.99606 +-0.062667 -0.06279 -0.996058 0.480032 0.531395 -0.062707 -0.062791 -0.996055 +0.062791 0 -0.998027 0.520032 0.5 0.062791 -0 -0.998027 +0.062667 -0.06279 -0.996058 0.520032 0.531395 0.062626 -0.062791 -0.99606 +-0.06279 0 -0.998027 0.480032 0.5 -0.06279 0 -0.998027 +0.062791 0 -0.998027 0.520032 0.5 0.062791 -0 -0.998027 +0.187012 -0.06279 -0.980349 0.560032 0.531395 0.186971 -0.062791 -0.980357 +0.062667 -0.06279 -0.996058 0.520032 0.531395 0.062626 -0.062791 -0.99606 +0.187381 0 -0.982287 0.560032 0.5 0.187382 0 -0.982287 +0.187012 -0.06279 -0.980349 0.560032 0.531395 0.186971 -0.062791 -0.980357 +0.062791 0 -0.998027 0.520032 0.5 0.062791 -0 -0.998027 +0.187381 0 -0.982287 0.560032 0.5 0.187382 0 -0.982287 +0.308407 -0.06279 -0.94918 0.600032 0.531395 0.308368 -0.062791 -0.949192 +0.187012 -0.06279 -0.980349 0.560032 0.531395 0.186971 -0.062791 -0.980357 +0.309017 0 -0.951057 0.600032 0.5 0.309018 0 -0.951056 +0.308407 -0.06279 -0.94918 0.600032 0.531395 0.308368 -0.062791 -0.949192 +0.187381 0 -0.982287 0.560032 0.5 0.187382 0 -0.982287 +0.309017 0 -0.951057 0.600032 0.5 0.309018 0 -0.951056 +0.424939 -0.06279 -0.903042 0.640032 0.531395 0.424902 -0.062791 -0.903059 +0.308407 -0.06279 -0.94918 0.600032 0.531395 0.308368 -0.062791 -0.949192 +0.425779 0 -0.904827 0.640032 0.5 0.42578 0 -0.904827 +0.424939 -0.06279 -0.903042 0.640032 0.531395 0.424902 -0.062791 -0.903059 +0.309017 0 -0.951057 0.600032 0.5 0.309018 0 -0.951056 +0.425779 0 -0.904827 0.640032 0.5 0.42578 0 -0.904827 +0.53477 -0.06279 -0.842662 0.680032 0.531395 0.534735 -0.062791 -0.842684 +0.424939 -0.06279 -0.903042 0.640032 0.531395 0.424902 -0.062791 -0.903059 +0.535827 0 -0.844328 0.680032 0.5 0.535827 -0 -0.844328 +0.53477 -0.06279 -0.842662 0.680032 0.531395 0.534735 -0.062791 -0.842684 +0.425779 0 -0.904827 0.640032 0.5 0.42578 0 -0.904827 +0.535827 0 -0.844328 0.680032 0.5 0.535827 -0 -0.844328 +0.636166 -0.06279 -0.768993 0.720032 0.531395 0.636135 -0.062791 -0.769019 +0.53477 -0.06279 -0.842662 0.680032 0.531395 0.534735 -0.062791 -0.842684 +0.637424 0 -0.770513 0.720032 0.5 0.637424 0 -0.770513 +0.636166 -0.06279 -0.768993 0.720032 0.531395 0.636135 -0.062791 -0.769019 +0.535827 0 -0.844328 0.680032 0.5 0.535827 -0 -0.844328 +0.637424 0 -0.770513 0.720032 0.5 0.637424 0 -0.770513 +0.72753 -0.06279 -0.683196 0.760032 0.531395 0.727502 -0.062791 -0.683226 +0.636166 -0.06279 -0.768993 0.720032 0.531395 0.636135 -0.062791 -0.769019 +0.728969 0 -0.684547 0.760032 0.5 0.728969 0 -0.684547 +0.72753 -0.06279 -0.683196 0.760032 0.531395 0.727502 -0.062791 -0.683226 +0.637424 0 -0.770513 0.720032 0.5 0.637424 0 -0.770513 +0.728969 0 -0.684547 0.760032 0.5 0.728969 0 -0.684547 +0.807421 -0.06279 -0.586625 0.800032 0.531395 0.807397 -0.062791 -0.586658 +0.72753 -0.06279 -0.683196 0.760032 0.531395 0.727502 -0.062791 -0.683226 +0.809017 0 -0.587785 0.800032 0.5 0.809017 0 -0.587785 +0.807421 -0.06279 -0.586625 0.800032 0.531395 0.807397 -0.062791 -0.586658 +0.728969 0 -0.684547 0.760032 0.5 0.728969 0 -0.684547 +0.809017 0 -0.587785 0.800032 0.5 0.809017 0 -0.587785 +0.874578 -0.06279 -0.480803 0.840032 0.531395 0.874558 -0.062791 -0.480839 +0.807421 -0.06279 -0.586625 0.800032 0.531395 0.807397 -0.062791 -0.586658 +0.876307 0 -0.481754 0.840032 0.5 0.876307 -0 -0.481754 +0.874578 -0.06279 -0.480803 0.840032 0.531395 0.874558 -0.062791 -0.480839 +0.809017 0 -0.587785 0.800032 0.5 0.809017 0 -0.587785 +0.876307 0 -0.481754 0.840032 0.5 0.876307 -0 -0.481754 +0.927942 -0.06279 -0.367398 0.880032 0.531395 0.927927 -0.062791 -0.367436 +0.874578 -0.06279 -0.480803 0.840032 0.531395 0.874558 -0.062791 -0.480839 +0.929776 0 -0.368125 0.880032 0.5 0.929777 1e-006 -0.368124 +0.927942 -0.06279 -0.367398 0.880032 0.531395 0.927927 -0.062791 -0.367436 +0.876307 0 -0.481754 0.840032 0.5 0.876307 -0 -0.481754 +0.929776 0 -0.368125 0.880032 0.5 0.929777 1e-006 -0.368124 +0.966672 -0.06279 -0.248199 0.920032 0.531395 0.966662 -0.062791 -0.248239 +0.927942 -0.06279 -0.367398 0.880032 0.531395 0.927927 -0.062791 -0.367436 +0.968583 0 -0.24869 0.920032 0.5 0.968583 -0 -0.24869 +0.966672 -0.06279 -0.248199 0.920032 0.531395 0.966662 -0.062791 -0.248239 +0.929776 0 -0.368125 0.880032 0.5 0.929777 1e-006 -0.368124 +0.968583 0 -0.24869 0.920032 0.5 0.968583 -0 -0.24869 +0.990157 -0.06279 -0.125086 0.960032 0.531395 0.990152 -0.06279 -0.125127 +0.966672 -0.06279 -0.248199 0.920032 0.531395 0.966662 -0.062791 -0.248239 +0.992115 0 -0.125333 0.960032 0.5 0.992115 0 -0.125333 +0.990157 -0.06279 -0.125086 0.960032 0.531395 0.990152 -0.06279 -0.125127 +0.968583 0 -0.24869 0.920032 0.5 0.968583 -0 -0.24869 +0.992115 0 -0.125333 0.960032 0.5 0.992115 0 -0.125333 +0.998027 -0.06279 -0 1.00003 0.531395 0.998027 -0.062791 -4.5e-005 +0.990157 -0.06279 -0.125086 0.960032 0.531395 0.990152 -0.06279 -0.125127 +1 0 -0 1.00003 0.5 1 0 -4e-006 +0.998027 -0.06279 -0 1.00003 0.531395 0.998027 -0.062791 -4.5e-005 +0.992115 0 -0.125333 0.960032 0.5 0.992115 0 -0.125333 +1 0 -0 1.00003 0.5 1 0 -4e-006 +0.990158 -0.06279 0.125086 1.04003 0.531395 0.990163 -0.062791 0.125041 +0.998027 -0.06279 -0 1.00003 0.531395 0.998027 -0.062791 -4.5e-005 +0.992116 0 0.125333 1.04003 0.5 0.992115 0 0.125329 +0.990158 -0.06279 0.125086 1.04003 0.531395 0.990163 -0.062791 0.125041 +1 0 -0 1.00003 0.5 1 0 -4e-006 +0.990158 0.06279 0.125086 1.04003 0.468605 0.990152 0.062791 0.125123 +0.968584 0 0.24869 1.08003 0.5 0.968583 -0 0.24869 +0.992116 0 0.125333 1.04003 0.5 0.992115 0 0.125329 +0.966673 0.06279 0.248199 1.08003 0.468605 0.966662 0.062791 0.248239 +0.968584 0 0.24869 1.08003 0.5 0.968583 -0 0.24869 +0.990158 0.06279 0.125086 1.04003 0.468605 0.990152 0.062791 0.125123 +0.966673 0.06279 0.248199 1.08003 0.468605 0.966662 0.062791 0.248239 +0.929777 0 0.368125 1.12003 0.5 0.929776 0 0.368125 +0.968584 0 0.24869 1.08003 0.5 0.968583 -0 0.24869 +0.927943 0.06279 0.367399 1.12003 0.468605 0.927927 0.062791 0.367437 +0.929777 0 0.368125 1.12003 0.5 0.929776 0 0.368125 +0.966673 0.06279 0.248199 1.08003 0.468605 0.966662 0.062791 0.248239 +0.927943 0.06279 0.367399 1.12003 0.468605 0.927927 0.062791 0.367437 +0.876307 0 0.481754 1.16003 0.5 0.876307 0 0.481754 +0.929777 0 0.368125 1.12003 0.5 0.929776 0 0.368125 +0.874578 0.06279 0.480804 1.16003 0.468605 0.874558 0.06279 0.480839 +0.876307 0 0.481754 1.16003 0.5 0.876307 0 0.481754 +0.927943 0.06279 0.367399 1.12003 0.468605 0.927927 0.062791 0.367437 +0.874578 0.06279 0.480804 1.16003 0.468605 0.874558 0.06279 0.480839 +0.809018 0 0.587786 1.20003 0.5 0.809017 0 0.587785 +0.876307 0 0.481754 1.16003 0.5 0.876307 0 0.481754 +0.807421 0.06279 0.586626 1.20003 0.468605 0.807396 0.062791 0.586659 +0.809018 0 0.587786 1.20003 0.5 0.809017 0 0.587785 +0.874578 0.06279 0.480804 1.16003 0.468605 0.874558 0.06279 0.480839 +0.807421 0.06279 0.586626 1.20003 0.468605 0.807396 0.062791 0.586659 +0.728969 0 0.684548 1.24003 0.5 0.728969 -0 0.684547 +0.809018 0 0.587786 1.20003 0.5 0.809017 0 0.587785 +0.727531 0.06279 0.683197 1.24003 0.468605 0.727502 0.062791 0.683226 +0.728969 0 0.684548 1.24003 0.5 0.728969 -0 0.684547 +0.807421 0.06279 0.586626 1.20003 0.468605 0.807396 0.062791 0.586659 +0.727531 0.06279 0.683197 1.24003 0.468605 0.727502 0.062791 0.683226 +0.637425 0 0.770514 1.28003 0.5 0.637424 -0 0.770513 +0.728969 0 0.684548 1.24003 0.5 0.728969 -0 0.684547 +0.636167 0.06279 0.768994 1.28003 0.468605 0.636134 0.062791 0.769019 +0.637425 0 0.770514 1.28003 0.5 0.637424 -0 0.770513 +0.727531 0.06279 0.683197 1.24003 0.468605 0.727502 0.062791 0.683226 +0.636167 0.06279 0.768994 1.28003 0.468605 0.636134 0.062791 0.769019 +0.535827 0 0.844329 1.32003 0.5 0.535827 0 0.844328 +0.637425 0 0.770514 1.28003 0.5 0.637424 -0 0.770513 +0.53477 0.06279 0.842663 1.32003 0.468605 0.534735 0.062791 0.842684 +0.535827 0 0.844329 1.32003 0.5 0.535827 0 0.844328 +0.636167 0.06279 0.768994 1.28003 0.468605 0.636134 0.062791 0.769019 +0.53477 0.06279 0.842663 1.32003 0.468605 0.534735 0.062791 0.842684 +0.42578 0 0.904828 1.36003 0.5 0.425779 -0 0.904827 +0.535827 0 0.844329 1.32003 0.5 0.535827 0 0.844328 +0.424939 0.06279 0.903042 1.36003 0.468605 0.424901 0.062791 0.903059 +0.42578 0 0.904828 1.36003 0.5 0.425779 -0 0.904827 +0.53477 0.06279 0.842663 1.32003 0.468605 0.534735 0.062791 0.842684 +0.424939 0.06279 0.903042 1.36003 0.468605 0.424901 0.062791 0.903059 +0.309017 0 0.951057 1.40003 0.5 0.309017 -0 0.951057 +0.42578 0 0.904828 1.36003 0.5 0.425779 -0 0.904827 +0.308407 0.06279 0.949181 1.40003 0.468605 0.308368 0.062791 0.949193 +0.309017 0 0.951057 1.40003 0.5 0.309017 -0 0.951057 +0.424939 0.06279 0.903042 1.36003 0.468605 0.424901 0.062791 0.903059 +0.308407 0.06279 0.949181 1.40003 0.468605 0.308368 0.062791 0.949193 +0.187381 0 0.982288 1.44003 0.5 0.187381 0 0.982287 +0.309017 0 0.951057 1.40003 0.5 0.309017 -0 0.951057 +0.187012 0.06279 0.98035 1.44003 0.468605 0.186971 0.062791 0.980357 +0.187381 0 0.982288 1.44003 0.5 0.187381 0 0.982287 +0.308407 0.06279 0.949181 1.40003 0.468605 0.308368 0.062791 0.949193 +0.187012 0.06279 0.98035 1.44003 0.468605 0.186971 0.062791 0.980357 +0.06279 0 0.998028 1.48003 0.5 0.06279 0 0.998027 +0.187381 0 0.982288 1.44003 0.5 0.187381 0 0.982287 +0.062667 0.06279 0.996058 1.48003 0.468605 0.062625 0.062791 0.99606 +0.06279 0 0.998028 1.48003 0.5 0.06279 0 0.998027 +0.187012 0.06279 0.98035 1.44003 0.468605 0.186971 0.062791 0.980357 +0.062667 0.06279 0.996058 1.48003 0.468605 0.062625 0.062791 0.99606 +-0.062791 0 0.998028 1.52003 0.5 -0.062791 -0 0.998027 +0.06279 0 0.998028 1.48003 0.5 0.06279 0 0.998027 +-0.062667 0.06279 0.996058 1.52003 0.468605 -0.062708 0.062791 0.996055 +-0.062791 0 0.998028 1.52003 0.5 -0.062791 -0 0.998027 +0.062667 0.06279 0.996058 1.48003 0.468605 0.062625 0.062791 0.99606 +-0.062667 0.06279 0.996058 -0.479968 0.468605 -0.062708 0.062791 0.996055 +-0.187382 0 0.982288 -0.439968 0.5 -0.187381 0 0.982287 +-0.062791 0 0.998028 -0.479968 0.5 -0.062791 -0 0.998027 +-0.187012 0.06279 0.98035 -0.439968 0.468605 -0.187052 0.062791 0.980341 +-0.187382 0 0.982288 -0.439968 0.5 -0.187381 0 0.982287 +-0.062667 0.06279 0.996058 -0.479968 0.468605 -0.062708 0.062791 0.996055 +-0.187012 0.06279 0.98035 -0.439968 0.468605 -0.187052 0.062791 0.980341 +-0.309017 0 0.951057 -0.399968 0.5 -0.309017 0 0.951057 +-0.187382 0 0.982288 -0.439968 0.5 -0.187381 0 0.982287 +-0.308408 0.06279 0.94918 -0.399968 0.468605 -0.308447 0.062791 0.949167 +-0.309017 0 0.951057 -0.399968 0.5 -0.309017 0 0.951057 +-0.187012 0.06279 0.98035 -0.439968 0.468605 -0.187052 0.062791 0.980341 +-0.308408 0.06279 0.94918 -0.399968 0.468605 -0.308447 0.062791 0.949167 +-0.42578 0 0.904828 -0.359968 0.5 -0.425779 0 0.904827 +-0.309017 0 0.951057 -0.399968 0.5 -0.309017 0 0.951057 +-0.424939 0.06279 0.903042 -0.359968 0.468605 -0.424977 0.06279 0.903024 +-0.42578 0 0.904828 -0.359968 0.5 -0.425779 0 0.904827 +-0.308408 0.06279 0.94918 -0.399968 0.468605 -0.308447 0.062791 0.949167 +-0.424939 0.06279 0.903042 -0.359968 0.468605 -0.424977 0.06279 0.903024 +-0.535827 0 0.844328 -0.319968 0.5 -0.535827 -0 0.844328 +-0.42578 0 0.904828 -0.359968 0.5 -0.425779 0 0.904827 +-0.53477 0.06279 0.842662 -0.319968 0.468605 -0.534805 0.062791 0.842639 +-0.535827 0 0.844328 -0.319968 0.5 -0.535827 -0 0.844328 +-0.424939 0.06279 0.903042 -0.359968 0.468605 -0.424977 0.06279 0.903024 +-0.53477 0.06279 0.842662 -0.319968 0.468605 -0.534805 0.062791 0.842639 +-0.637424 0 0.770514 -0.279968 0.5 -0.637424 -0 0.770513 +-0.535827 0 0.844328 -0.319968 0.5 -0.535827 -0 0.844328 +-0.636167 0.06279 0.768993 -0.279968 0.468605 -0.636198 0.062791 0.768966 +-0.637424 0 0.770514 -0.279968 0.5 -0.637424 -0 0.770513 +-0.53477 0.06279 0.842662 -0.319968 0.468605 -0.534805 0.062791 0.842639 +-0.636167 0.06279 0.768993 -0.279968 0.468605 -0.636198 0.062791 0.768966 +-0.728969 0 0.684547 -0.239968 0.5 -0.728969 0 0.684547 +-0.637424 0 0.770514 -0.279968 0.5 -0.637424 -0 0.770513 +-0.727531 0.06279 0.683197 -0.239968 0.468605 -0.727558 0.062791 0.683166 +-0.728969 0 0.684547 -0.239968 0.5 -0.728969 0 0.684547 +-0.636167 0.06279 0.768993 -0.279968 0.468605 -0.636198 0.062791 0.768966 +-0.727531 0.06279 0.683197 -0.239968 0.468605 -0.727558 0.062791 0.683166 +-0.809018 0 0.587786 -0.199968 0.5 -0.809017 0 0.587785 +-0.728969 0 0.684547 -0.239968 0.5 -0.728969 0 0.684547 +-0.807421 0.06279 0.586626 -0.199968 0.468605 -0.807445 0.06279 0.586592 +-0.809018 0 0.587786 -0.199968 0.5 -0.809017 0 0.587785 +-0.727531 0.06279 0.683197 -0.239968 0.468605 -0.727558 0.062791 0.683166 +-0.807421 0.06279 0.586626 -0.199968 0.468605 -0.807445 0.06279 0.586592 +-0.876307 0 0.481754 -0.159968 0.5 -0.876307 1e-006 0.481754 +-0.809018 0 0.587786 -0.199968 0.5 -0.809017 0 0.587785 +-0.874578 0.06279 0.480803 -0.159968 0.468605 -0.874597 0.062791 0.480767 +-0.876307 0 0.481754 -0.159968 0.5 -0.876307 1e-006 0.481754 +-0.807421 0.06279 0.586626 -0.199968 0.468605 -0.807445 0.06279 0.586592 +-0.874578 0.06279 0.480803 -0.159968 0.468605 -0.874597 0.062791 0.480767 +-0.929777 0 0.368125 -0.119968 0.5 -0.929777 0 0.368124 +-0.876307 0 0.481754 -0.159968 0.5 -0.876307 1e-006 0.481754 +-0.927942 0.06279 0.367398 -0.119968 0.468605 -0.927957 0.062791 0.36736 +-0.929777 0 0.368125 -0.119968 0.5 -0.929777 0 0.368124 +-0.874578 0.06279 0.480803 -0.159968 0.468605 -0.874597 0.062791 0.480767 +-0.927942 0.06279 0.367398 -0.119968 0.468605 -0.927957 0.062791 0.36736 +-0.968584 0 0.24869 -0.079968 0.5 -0.968583 -0 0.24869 +-0.929777 0 0.368125 -0.119968 0.5 -0.929777 0 0.368124 +-0.966672 0.06279 0.248199 -0.079968 0.468605 -0.966682 0.062791 0.248159 +-0.968584 0 0.24869 -0.079968 0.5 -0.968583 -0 0.24869 +-0.927942 0.06279 0.367398 -0.119968 0.468605 -0.927957 0.062791 0.36736 +-0.966672 0.06279 0.248199 -0.079968 0.468605 -0.966682 0.062791 0.248159 +-0.992115 0 0.125333 -0.039968 0.5 -0.992115 -0 0.125333 +-0.968584 0 0.24869 -0.079968 0.5 -0.968583 -0 0.24869 +-0.990158 0.06279 0.125086 -0.039968 0.468605 -0.990162 0.062791 0.125045 +-0.992115 0 0.125333 -0.039968 0.5 -0.992115 -0 0.125333 +-0.966672 0.06279 0.248199 -0.079968 0.468605 -0.966682 0.062791 0.248159 +-0.990158 0.06279 0.125086 -0.039968 0.468605 -0.990162 0.062791 0.125045 +-1 0 -0 3.2e-005 0.5 -1 0 -0 +-0.992115 0 0.125333 -0.039968 0.5 -0.992115 -0 0.125333 +-0.998027 0.06279 -0 3.2e-005 0.468605 -0.998027 0.062791 -4.1e-005 +-1 0 -0 3.2e-005 0.5 -1 0 -0 +-0.990158 0.06279 0.125086 -0.039968 0.468605 -0.990162 0.062791 0.125045 +-0.998027 0.06279 -0 3.2e-005 0.468605 -0.998027 0.062791 -4.1e-005 +-0.992115 0 -0.125333 0.040032 0.5 -0.992115 -1e-006 -0.125333 +-1 0 -0 3.2e-005 0.5 -1 0 -0 +-0.990158 0.06279 -0.125086 0.040032 0.468605 -0.990152 0.062791 -0.125127 +-0.992115 0 -0.125333 0.040032 0.5 -0.992115 -1e-006 -0.125333 +-0.998027 0.06279 -0 3.2e-005 0.468605 -0.998027 0.062791 -4.1e-005 +-0.990158 0.06279 -0.125086 0.040032 0.468605 -0.990152 0.062791 -0.125127 +-0.968584 0 -0.24869 0.080032 0.5 -0.968583 -0 -0.24869 +-0.992115 0 -0.125333 0.040032 0.5 -0.992115 -1e-006 -0.125333 +-0.966672 0.06279 -0.248199 0.080032 0.468605 -0.966662 0.062791 -0.248239 +-0.968584 0 -0.24869 0.080032 0.5 -0.968583 -0 -0.24869 +-0.990158 0.06279 -0.125086 0.040032 0.468605 -0.990152 0.062791 -0.125127 +-0.966672 0.06279 -0.248199 0.080032 0.468605 -0.966662 0.062791 -0.248239 +-0.929777 0 -0.368125 0.120032 0.5 -0.929776 -0 -0.368125 +-0.968584 0 -0.24869 0.080032 0.5 -0.968583 -0 -0.24869 +-0.927942 0.06279 -0.367398 0.120032 0.468605 -0.927927 0.06279 -0.367437 +-0.929777 0 -0.368125 0.120032 0.5 -0.929776 -0 -0.368125 +-0.966672 0.06279 -0.248199 0.080032 0.468605 -0.966662 0.062791 -0.248239 +-0.927942 0.06279 -0.367398 0.120032 0.468605 -0.927927 0.06279 -0.367437 +-0.876307 0 -0.481754 0.160032 0.5 -0.876306 0 -0.481754 +-0.929777 0 -0.368125 0.120032 0.5 -0.929776 -0 -0.368125 +-0.874578 0.06279 -0.480803 0.160032 0.468605 -0.874557 0.062791 -0.48084 +-0.876307 0 -0.481754 0.160032 0.5 -0.876306 0 -0.481754 +-0.927942 0.06279 -0.367398 0.120032 0.468605 -0.927927 0.06279 -0.367437 +-0.874578 0.06279 -0.480803 0.160032 0.468605 -0.874557 0.062791 -0.48084 +-0.809017 0 -0.587786 0.200032 0.5 -0.809017 -0 -0.587786 +-0.876307 0 -0.481754 0.160032 0.5 -0.876306 0 -0.481754 +-0.807421 0.06279 -0.586626 0.200032 0.468605 -0.807396 0.06279 -0.586659 +-0.809017 0 -0.587786 0.200032 0.5 -0.809017 -0 -0.587786 +-0.874578 0.06279 -0.480803 0.160032 0.468605 -0.874557 0.062791 -0.48084 +-0.807421 0.06279 -0.586626 0.200032 0.468605 -0.807396 0.06279 -0.586659 +-0.728969 0 -0.684547 0.240032 0.5 -0.728969 -0 -0.684547 +-0.809017 0 -0.587786 0.200032 0.5 -0.809017 -0 -0.587786 +-0.72753 0.06279 -0.683197 0.240032 0.468605 -0.727502 0.062791 -0.683227 +-0.728969 0 -0.684547 0.240032 0.5 -0.728969 -0 -0.684547 +-0.807421 0.06279 -0.586626 0.200032 0.468605 -0.807396 0.06279 -0.586659 +-0.72753 0.06279 -0.683197 0.240032 0.468605 -0.727502 0.062791 -0.683227 +-0.637424 0 -0.770514 0.280032 0.5 -0.637424 -0 -0.770513 +-0.728969 0 -0.684547 0.240032 0.5 -0.728969 -0 -0.684547 +-0.636166 0.06279 -0.768993 0.280032 0.468605 -0.636134 0.062791 -0.769019 +-0.637424 0 -0.770514 0.280032 0.5 -0.637424 -0 -0.770513 +-0.72753 0.06279 -0.683197 0.240032 0.468605 -0.727502 0.062791 -0.683227 +-0.636166 0.06279 -0.768993 0.280032 0.468605 -0.636134 0.062791 -0.769019 +-0.535827 0 -0.844328 0.320032 0.5 -0.535827 0 -0.844328 +-0.637424 0 -0.770514 0.280032 0.5 -0.637424 -0 -0.770513 +-0.53477 0.06279 -0.842662 0.320032 0.468605 -0.534734 0.062791 -0.842684 +-0.535827 0 -0.844328 0.320032 0.5 -0.535827 0 -0.844328 +-0.636166 0.06279 -0.768993 0.280032 0.468605 -0.636134 0.062791 -0.769019 +-0.53477 0.06279 -0.842662 0.320032 0.468605 -0.534734 0.062791 -0.842684 +-0.425779 0 -0.904827 0.360032 0.5 -0.425779 -0 -0.904827 +-0.535827 0 -0.844328 0.320032 0.5 -0.535827 0 -0.844328 +-0.424939 0.06279 -0.903042 0.360032 0.468605 -0.424901 0.062791 -0.903059 +-0.425779 0 -0.904827 0.360032 0.5 -0.425779 -0 -0.904827 +-0.53477 0.06279 -0.842662 0.320032 0.468605 -0.534734 0.062791 -0.842684 +-0.424939 0.06279 -0.903042 0.360032 0.468605 -0.424901 0.062791 -0.903059 +-0.309017 0 -0.951057 0.400032 0.5 -0.309017 -0 -0.951057 +-0.425779 0 -0.904827 0.360032 0.5 -0.425779 -0 -0.904827 +-0.308407 0.06279 -0.94918 0.400032 0.468605 -0.308368 0.062791 -0.949193 +-0.309017 0 -0.951057 0.400032 0.5 -0.309017 -0 -0.951057 +-0.424939 0.06279 -0.903042 0.360032 0.468605 -0.424901 0.062791 -0.903059 +-0.308407 0.06279 -0.94918 0.400032 0.468605 -0.308368 0.062791 -0.949193 +-0.187381 0 -0.982288 0.440032 0.5 -0.187381 -0 -0.982287 +-0.309017 0 -0.951057 0.400032 0.5 -0.309017 -0 -0.951057 +-0.187012 0.06279 -0.980349 0.440032 0.468605 -0.186971 0.062791 -0.980357 +-0.187381 0 -0.982288 0.440032 0.5 -0.187381 -0 -0.982287 +-0.308407 0.06279 -0.94918 0.400032 0.468605 -0.308368 0.062791 -0.949193 +-0.187012 0.06279 -0.980349 0.440032 0.468605 -0.186971 0.062791 -0.980357 +-0.06279 0 -0.998027 0.480032 0.5 -0.06279 0 -0.998027 +-0.187381 0 -0.982288 0.440032 0.5 -0.187381 -0 -0.982287 +-0.062667 0.06279 -0.996058 0.480032 0.468605 -0.062625 0.062791 -0.99606 +-0.06279 0 -0.998027 0.480032 0.5 -0.06279 0 -0.998027 +-0.187012 0.06279 -0.980349 0.440032 0.468605 -0.186971 0.062791 -0.980357 +-0.062667 0.06279 -0.996058 0.480032 0.468605 -0.062625 0.062791 -0.99606 +0.062791 0 -0.998027 0.520032 0.5 0.062791 -0 -0.998027 +-0.06279 0 -0.998027 0.480032 0.5 -0.06279 0 -0.998027 +0.062667 0.06279 -0.996058 0.520032 0.468605 0.062708 0.062791 -0.996055 +0.062791 0 -0.998027 0.520032 0.5 0.062791 -0 -0.998027 +-0.062667 0.06279 -0.996058 0.480032 0.468605 -0.062625 0.062791 -0.99606 +0.062667 0.06279 -0.996058 0.520032 0.468605 0.062708 0.062791 -0.996055 +0.187381 0 -0.982287 0.560032 0.5 0.187382 0 -0.982287 +0.062791 0 -0.998027 0.520032 0.5 0.062791 -0 -0.998027 +0.187012 0.06279 -0.980349 0.560032 0.468605 0.187053 0.062791 -0.980341 +0.187381 0 -0.982287 0.560032 0.5 0.187382 0 -0.982287 +0.062667 0.06279 -0.996058 0.520032 0.468605 0.062708 0.062791 -0.996055 +0.187012 0.06279 -0.980349 0.560032 0.468605 0.187053 0.062791 -0.980341 +0.309017 0 -0.951057 0.600032 0.5 0.309018 0 -0.951056 +0.187381 0 -0.982287 0.560032 0.5 0.187382 0 -0.982287 +0.308407 0.06279 -0.94918 0.600032 0.468605 0.308447 0.062791 -0.949167 +0.309017 0 -0.951057 0.600032 0.5 0.309018 0 -0.951056 +0.187012 0.06279 -0.980349 0.560032 0.468605 0.187053 0.062791 -0.980341 +0.308407 0.06279 -0.94918 0.600032 0.468605 0.308447 0.062791 -0.949167 +0.425779 0 -0.904827 0.640032 0.5 0.42578 0 -0.904827 +0.309017 0 -0.951057 0.600032 0.5 0.309018 0 -0.951056 +0.424939 0.06279 -0.903042 0.640032 0.468605 0.424977 0.06279 -0.903024 +0.425779 0 -0.904827 0.640032 0.5 0.42578 0 -0.904827 +0.308407 0.06279 -0.94918 0.600032 0.468605 0.308447 0.062791 -0.949167 +0.424939 0.06279 -0.903042 0.640032 0.468605 0.424977 0.06279 -0.903024 +0.535827 0 -0.844328 0.680032 0.5 0.535827 -0 -0.844328 +0.425779 0 -0.904827 0.640032 0.5 0.42578 0 -0.904827 +0.53477 0.06279 -0.842662 0.680032 0.468605 0.534805 0.062791 -0.84264 +0.535827 0 -0.844328 0.680032 0.5 0.535827 -0 -0.844328 +0.424939 0.06279 -0.903042 0.640032 0.468605 0.424977 0.06279 -0.903024 +0.53477 0.06279 -0.842662 0.680032 0.468605 0.534805 0.062791 -0.84264 +0.637424 0 -0.770513 0.720032 0.5 0.637424 0 -0.770513 +0.535827 0 -0.844328 0.680032 0.5 0.535827 -0 -0.844328 +0.636166 0.06279 -0.768993 0.720032 0.468605 0.636198 0.062791 -0.768966 +0.637424 0 -0.770513 0.720032 0.5 0.637424 0 -0.770513 +0.53477 0.06279 -0.842662 0.680032 0.468605 0.534805 0.062791 -0.84264 +0.636166 0.06279 -0.768993 0.720032 0.468605 0.636198 0.062791 -0.768966 +0.728969 0 -0.684547 0.760032 0.5 0.728969 0 -0.684547 +0.637424 0 -0.770513 0.720032 0.5 0.637424 0 -0.770513 +0.72753 0.06279 -0.683196 0.760032 0.468605 0.727558 0.06279 -0.683166 +0.728969 0 -0.684547 0.760032 0.5 0.728969 0 -0.684547 +0.636166 0.06279 -0.768993 0.720032 0.468605 0.636198 0.062791 -0.768966 +0.72753 0.06279 -0.683196 0.760032 0.468605 0.727558 0.06279 -0.683166 +0.809017 0 -0.587785 0.800032 0.5 0.809017 0 -0.587785 +0.728969 0 -0.684547 0.760032 0.5 0.728969 0 -0.684547 +0.807421 0.06279 -0.586625 0.800032 0.468605 0.807445 0.06279 -0.586592 +0.809017 0 -0.587785 0.800032 0.5 0.809017 0 -0.587785 +0.72753 0.06279 -0.683196 0.760032 0.468605 0.727558 0.06279 -0.683166 +0.807421 0.06279 -0.586625 0.800032 0.468605 0.807445 0.06279 -0.586592 +0.876307 0 -0.481754 0.840032 0.5 0.876307 -0 -0.481754 +0.809017 0 -0.587785 0.800032 0.5 0.809017 0 -0.587785 +0.874578 0.06279 -0.480803 0.840032 0.468605 0.874597 0.062791 -0.480767 +0.876307 0 -0.481754 0.840032 0.5 0.876307 -0 -0.481754 +0.807421 0.06279 -0.586625 0.800032 0.468605 0.807445 0.06279 -0.586592 +0.874578 0.06279 -0.480803 0.840032 0.468605 0.874597 0.062791 -0.480767 +0.929776 0 -0.368125 0.880032 0.5 0.929777 1e-006 -0.368124 +0.876307 0 -0.481754 0.840032 0.5 0.876307 -0 -0.481754 +0.927942 0.06279 -0.367398 0.880032 0.468605 0.927957 0.062791 -0.36736 +0.929776 0 -0.368125 0.880032 0.5 0.929777 1e-006 -0.368124 +0.874578 0.06279 -0.480803 0.840032 0.468605 0.874597 0.062791 -0.480767 +0.927942 0.06279 -0.367398 0.880032 0.468605 0.927957 0.062791 -0.36736 +0.968583 0 -0.24869 0.920032 0.5 0.968583 -0 -0.24869 +0.929776 0 -0.368125 0.880032 0.5 0.929777 1e-006 -0.368124 +0.966672 0.06279 -0.248199 0.920032 0.468605 0.966682 0.06279 -0.248159 +0.968583 0 -0.24869 0.920032 0.5 0.968583 -0 -0.24869 +0.927942 0.06279 -0.367398 0.880032 0.468605 0.927957 0.062791 -0.36736 +0.966672 0.06279 -0.248199 0.920032 0.468605 0.966682 0.06279 -0.248159 +0.992115 0 -0.125333 0.960032 0.5 0.992115 0 -0.125333 +0.968583 0 -0.24869 0.920032 0.5 0.968583 -0 -0.24869 +0.990157 0.06279 -0.125086 0.960032 0.468605 0.990162 0.062791 -0.125045 +0.992115 0 -0.125333 0.960032 0.5 0.992115 0 -0.125333 +0.966672 0.06279 -0.248199 0.920032 0.468605 0.966682 0.06279 -0.248159 +0.990157 0.06279 -0.125086 0.960032 0.468605 0.990162 0.062791 -0.125045 +1 0 -0 1.00003 0.5 1 0 -4e-006 +0.992115 0 -0.125333 0.960032 0.5 0.992115 0 -0.125333 +0.998027 0.06279 -0 1.00003 0.468605 0.998027 0.062791 3.7e-005 +1 0 -0 1.00003 0.5 1 0 -4e-006 +0.990157 0.06279 -0.125086 0.960032 0.468605 0.990162 0.062791 -0.125045 +0.998027 0.06279 -0 1.00003 0.468605 0.998027 0.062791 3.7e-005 +0.992116 0 0.125333 1.04003 0.5 0.992115 0 0.125329 +1 0 -0 1.00003 0.5 1 0 -4e-006 +0.990158 0.06279 0.125086 1.04003 0.468605 0.990152 0.062791 0.125123 +0.992116 0 0.125333 1.04003 0.5 0.992115 0 0.125329 +0.998027 0.06279 -0 1.00003 0.468605 0.998027 0.062791 3.7e-005 +0.984293 0.125333 0.124345 1.04003 0.437334 0.984282 0.125334 0.124423 +0.966673 0.06279 0.248199 1.08003 0.468605 0.966662 0.062791 0.248239 +0.990158 0.06279 0.125086 1.04003 0.468605 0.990152 0.062791 0.125123 +0.960947 0.125333 0.246729 1.08003 0.437334 0.960925 0.125333 0.246809 +0.966673 0.06279 0.248199 1.08003 0.468605 0.966662 0.062791 0.248239 +0.984293 0.125333 0.124345 1.04003 0.437334 0.984282 0.125334 0.124423 +0.960947 0.125333 0.246729 1.08003 0.437334 0.960925 0.125333 0.246809 +0.927943 0.06279 0.367399 1.12003 0.468605 0.927927 0.062791 0.367437 +0.966673 0.06279 0.248199 1.08003 0.468605 0.966662 0.062791 0.248239 +0.922446 0.125333 0.365222 1.12003 0.437334 0.922414 0.125334 0.365298 +0.927943 0.06279 0.367399 1.12003 0.468605 0.927927 0.062791 0.367437 +0.960947 0.125333 0.246729 1.08003 0.437334 0.960925 0.125333 0.246809 +0.922446 0.125333 0.365222 1.12003 0.437334 0.922414 0.125334 0.365298 +0.874578 0.06279 0.480804 1.16003 0.468605 0.874558 0.06279 0.480839 +0.927943 0.06279 0.367399 1.12003 0.468605 0.927927 0.062791 0.367437 +0.869398 0.125333 0.477955 1.16003 0.437334 0.869357 0.125334 0.478027 +0.874578 0.06279 0.480804 1.16003 0.468605 0.874558 0.06279 0.480839 +0.922446 0.125333 0.365222 1.12003 0.437334 0.922414 0.125334 0.365298 +0.869398 0.125333 0.477955 1.16003 0.437334 0.869357 0.125334 0.478027 +0.807421 0.06279 0.586626 1.20003 0.468605 0.807396 0.062791 0.586659 +0.874578 0.06279 0.480804 1.16003 0.468605 0.874558 0.06279 0.480839 +0.802638 0.125333 0.583151 1.20003 0.437334 0.802589 0.125334 0.583217 +0.807421 0.06279 0.586626 1.20003 0.468605 0.807396 0.062791 0.586659 +0.869398 0.125333 0.477955 1.16003 0.437334 0.869357 0.125334 0.478027 +0.802638 0.125333 0.583151 1.20003 0.437334 0.802589 0.125334 0.583217 +0.727531 0.06279 0.683197 1.24003 0.468605 0.727502 0.062791 0.683226 +0.807421 0.06279 0.586626 1.20003 0.468605 0.807396 0.062791 0.586659 +0.723221 0.125333 0.67915 1.24003 0.437334 0.723164 0.125333 0.679209 +0.727531 0.06279 0.683197 1.24003 0.468605 0.727502 0.062791 0.683226 +0.802638 0.125333 0.583151 1.20003 0.437334 0.802589 0.125334 0.583217 +0.723221 0.125333 0.67915 1.24003 0.437334 0.723164 0.125333 0.679209 +0.636167 0.06279 0.768994 1.28003 0.468605 0.636134 0.062791 0.769019 +0.727531 0.06279 0.683197 1.24003 0.468605 0.727502 0.062791 0.683226 +0.632398 0.125333 0.764438 1.28003 0.437334 0.632334 0.125333 0.76449 +0.636167 0.06279 0.768994 1.28003 0.468605 0.636134 0.062791 0.769019 +0.723221 0.125333 0.67915 1.24003 0.437334 0.723164 0.125333 0.679209 +0.632398 0.125333 0.764438 1.28003 0.437334 0.632334 0.125333 0.76449 +0.53477 0.06279 0.842663 1.32003 0.468605 0.534735 0.062791 0.842684 +0.636167 0.06279 0.768994 1.28003 0.468605 0.636134 0.062791 0.769019 +0.531602 0.125333 0.837671 1.32003 0.437334 0.531532 0.125333 0.837714 +0.53477 0.06279 0.842663 1.32003 0.468605 0.534735 0.062791 0.842684 +0.632398 0.125333 0.764438 1.28003 0.437334 0.632334 0.125333 0.76449 +0.531602 0.125333 0.837671 1.32003 0.437334 0.531532 0.125333 0.837714 +0.424939 0.06279 0.903042 1.36003 0.468605 0.424901 0.062791 0.903059 +0.53477 0.06279 0.842663 1.32003 0.468605 0.534735 0.062791 0.842684 +0.422422 0.125333 0.897693 1.36003 0.437334 0.422347 0.125334 0.897727 +0.424939 0.06279 0.903042 1.36003 0.468605 0.424901 0.062791 0.903059 +0.531602 0.125333 0.837671 1.32003 0.437334 0.531532 0.125333 0.837714 +0.422422 0.125333 0.897693 1.36003 0.437334 0.422347 0.125334 0.897727 +0.308407 0.06279 0.949181 1.40003 0.468605 0.308368 0.062791 0.949193 +0.424939 0.06279 0.903042 1.36003 0.468605 0.424901 0.062791 0.903059 +0.30658 0.125333 0.943558 1.40003 0.437334 0.306502 0.125334 0.943583 +0.308407 0.06279 0.949181 1.40003 0.468605 0.308368 0.062791 0.949193 +0.422422 0.125333 0.897693 1.36003 0.437334 0.422347 0.125334 0.897727 +0.30658 0.125333 0.943558 1.40003 0.437334 0.306502 0.125334 0.943583 +0.187012 0.06279 0.98035 1.44003 0.468605 0.186971 0.062791 0.980357 +0.308407 0.06279 0.949181 1.40003 0.468605 0.308368 0.062791 0.949193 +0.185904 0.125333 0.974542 1.44003 0.437334 0.185823 0.125334 0.974557 +0.187012 0.06279 0.98035 1.44003 0.468605 0.186971 0.062791 0.980357 +0.30658 0.125333 0.943558 1.40003 0.437334 0.306502 0.125334 0.943583 +0.185904 0.125333 0.974542 1.44003 0.437334 0.185823 0.125334 0.974557 +0.062667 0.06279 0.996058 1.48003 0.468605 0.062625 0.062791 0.99606 +0.187012 0.06279 0.98035 1.44003 0.468605 0.186971 0.062791 0.980357 +0.062295 0.125333 0.990158 1.48003 0.437334 0.062213 0.125333 0.990162 +0.062667 0.06279 0.996058 1.48003 0.468605 0.062625 0.062791 0.99606 +0.185904 0.125333 0.974542 1.44003 0.437334 0.185823 0.125334 0.974557 +0.062295 0.125333 0.990158 1.48003 0.437334 0.062213 0.125333 0.990162 +-0.062667 0.06279 0.996058 1.52003 0.468605 -0.062708 0.062791 0.996055 +0.062667 0.06279 0.996058 1.48003 0.468605 0.062625 0.062791 0.99606 +-0.062296 0.125333 0.990158 1.52003 0.437334 -0.062378 0.125333 0.990152 +-0.062667 0.06279 0.996058 1.52003 0.468605 -0.062708 0.062791 0.996055 +0.062295 0.125333 0.990158 1.48003 0.437334 0.062213 0.125333 0.990162 +-0.062296 0.125333 0.990158 -0.479968 0.437334 -0.062378 0.125333 0.990152 +-0.187012 0.06279 0.98035 -0.439968 0.468605 -0.187052 0.062791 0.980341 +-0.062667 0.06279 0.996058 -0.479968 0.468605 -0.062708 0.062791 0.996055 +-0.185904 0.125333 0.974542 -0.439968 0.437334 -0.185985 0.125333 0.974526 +-0.187012 0.06279 0.98035 -0.439968 0.468605 -0.187052 0.062791 0.980341 +-0.062296 0.125333 0.990158 -0.479968 0.437334 -0.062378 0.125333 0.990152 +-0.185904 0.125333 0.974542 -0.439968 0.437334 -0.185985 0.125333 0.974526 +-0.308408 0.06279 0.94918 -0.399968 0.468605 -0.308447 0.062791 0.949167 +-0.187012 0.06279 0.98035 -0.439968 0.468605 -0.187052 0.062791 0.980341 +-0.306581 0.125333 0.943558 -0.399968 0.437334 -0.306659 0.125333 0.943532 +-0.308408 0.06279 0.94918 -0.399968 0.468605 -0.308447 0.062791 0.949167 +-0.185904 0.125333 0.974542 -0.439968 0.437334 -0.185985 0.125333 0.974526 +-0.306581 0.125333 0.943558 -0.399968 0.437334 -0.306659 0.125333 0.943532 +-0.424939 0.06279 0.903042 -0.359968 0.468605 -0.424977 0.06279 0.903024 +-0.308408 0.06279 0.94918 -0.399968 0.468605 -0.308447 0.062791 0.949167 +-0.422422 0.125333 0.897693 -0.359968 0.437334 -0.422497 0.125334 0.897657 +-0.424939 0.06279 0.903042 -0.359968 0.468605 -0.424977 0.06279 0.903024 +-0.306581 0.125333 0.943558 -0.399968 0.437334 -0.306659 0.125333 0.943532 +-0.422422 0.125333 0.897693 -0.359968 0.437334 -0.422497 0.125334 0.897657 +-0.53477 0.06279 0.842662 -0.319968 0.468605 -0.534805 0.062791 0.842639 +-0.424939 0.06279 0.903042 -0.359968 0.468605 -0.424977 0.06279 0.903024 +-0.531602 0.125333 0.837671 -0.319968 0.437334 -0.531671 0.125334 0.837626 +-0.53477 0.06279 0.842662 -0.319968 0.468605 -0.534805 0.062791 0.842639 +-0.422422 0.125333 0.897693 -0.359968 0.437334 -0.422497 0.125334 0.897657 +-0.531602 0.125333 0.837671 -0.319968 0.437334 -0.531671 0.125334 0.837626 +-0.636167 0.06279 0.768993 -0.279968 0.468605 -0.636198 0.062791 0.768966 +-0.53477 0.06279 0.842662 -0.319968 0.468605 -0.534805 0.062791 0.842639 +-0.632398 0.125333 0.764438 -0.279968 0.437334 -0.632461 0.125333 0.764385 +-0.636167 0.06279 0.768993 -0.279968 0.468605 -0.636198 0.062791 0.768966 +-0.531602 0.125333 0.837671 -0.319968 0.437334 -0.531671 0.125334 0.837626 +-0.632398 0.125333 0.764438 -0.279968 0.437334 -0.632461 0.125333 0.764385 +-0.727531 0.06279 0.683197 -0.239968 0.468605 -0.727558 0.062791 0.683166 +-0.636167 0.06279 0.768993 -0.279968 0.468605 -0.636198 0.062791 0.768966 +-0.723221 0.125333 0.67915 -0.239968 0.437334 -0.723277 0.125333 0.679089 +-0.727531 0.06279 0.683197 -0.239968 0.468605 -0.727558 0.062791 0.683166 +-0.632398 0.125333 0.764438 -0.279968 0.437334 -0.632461 0.125333 0.764385 +-0.723221 0.125333 0.67915 -0.239968 0.437334 -0.723277 0.125333 0.679089 +-0.807421 0.06279 0.586626 -0.199968 0.468605 -0.807445 0.06279 0.586592 +-0.727531 0.06279 0.683197 -0.239968 0.468605 -0.727558 0.062791 0.683166 +-0.802638 0.125333 0.583151 -0.199968 0.437334 -0.802686 0.125334 0.583084 +-0.807421 0.06279 0.586626 -0.199968 0.468605 -0.807445 0.06279 0.586592 +-0.723221 0.125333 0.67915 -0.239968 0.437334 -0.723277 0.125333 0.679089 +-0.802638 0.125333 0.583151 -0.199968 0.437334 -0.802686 0.125334 0.583084 +-0.874578 0.06279 0.480803 -0.159968 0.468605 -0.874597 0.062791 0.480767 +-0.807421 0.06279 0.586626 -0.199968 0.468605 -0.807445 0.06279 0.586592 +-0.869397 0.125333 0.477955 -0.159968 0.437334 -0.869436 0.125334 0.477883 +-0.874578 0.06279 0.480803 -0.159968 0.468605 -0.874597 0.062791 0.480767 +-0.802638 0.125333 0.583151 -0.199968 0.437334 -0.802686 0.125334 0.583084 +-0.869397 0.125333 0.477955 -0.159968 0.437334 -0.869436 0.125334 0.477883 +-0.927942 0.06279 0.367398 -0.119968 0.468605 -0.927957 0.062791 0.36736 +-0.874578 0.06279 0.480803 -0.159968 0.468605 -0.874597 0.062791 0.480767 +-0.922446 0.125333 0.365222 -0.119968 0.437334 -0.922475 0.125334 0.365145 +-0.927942 0.06279 0.367398 -0.119968 0.468605 -0.927957 0.062791 0.36736 +-0.869397 0.125333 0.477955 -0.159968 0.437334 -0.869436 0.125334 0.477883 +-0.922446 0.125333 0.365222 -0.119968 0.437334 -0.922475 0.125334 0.365145 +-0.966672 0.06279 0.248199 -0.079968 0.468605 -0.966682 0.062791 0.248159 +-0.927942 0.06279 0.367398 -0.119968 0.468605 -0.927957 0.062791 0.36736 +-0.960946 0.125333 0.246729 -0.079968 0.437334 -0.960966 0.125332 0.246649 +-0.966672 0.06279 0.248199 -0.079968 0.468605 -0.966682 0.062791 0.248159 +-0.922446 0.125333 0.365222 -0.119968 0.437334 -0.922475 0.125334 0.365145 +-0.960946 0.125333 0.246729 -0.079968 0.437334 -0.960966 0.125332 0.246649 +-0.990158 0.06279 0.125086 -0.039968 0.468605 -0.990162 0.062791 0.125045 +-0.966672 0.06279 0.248199 -0.079968 0.468605 -0.966682 0.062791 0.248159 +-0.984292 0.125333 0.124345 -0.039968 0.437334 -0.984302 0.125332 0.124263 +-0.990158 0.06279 0.125086 -0.039968 0.468605 -0.990162 0.062791 0.125045 +-0.960946 0.125333 0.246729 -0.079968 0.437334 -0.960966 0.125332 0.246649 +-0.984292 0.125333 0.124345 -0.039968 0.437334 -0.984302 0.125332 0.124263 +-0.998027 0.06279 -0 3.2e-005 0.468605 -0.998027 0.062791 -4.1e-005 +-0.990158 0.06279 0.125086 -0.039968 0.468605 -0.990162 0.062791 0.125045 +-0.992115 0.125333 -0 3.2e-005 0.437334 -0.992115 0.125334 -8.3e-005 +-0.998027 0.06279 -0 3.2e-005 0.468605 -0.998027 0.062791 -4.1e-005 +-0.984292 0.125333 0.124345 -0.039968 0.437334 -0.984302 0.125332 0.124263 +-0.992115 0.125333 -0 3.2e-005 0.437334 -0.992115 0.125334 -8.3e-005 +-0.990158 0.06279 -0.125086 0.040032 0.468605 -0.990152 0.062791 -0.125127 +-0.998027 0.06279 -0 3.2e-005 0.468605 -0.998027 0.062791 -4.1e-005 +-0.984292 0.125333 -0.124345 0.040032 0.437334 -0.984281 0.125335 -0.124427 +-0.990158 0.06279 -0.125086 0.040032 0.468605 -0.990152 0.062791 -0.125127 +-0.992115 0.125333 -0 3.2e-005 0.437334 -0.992115 0.125334 -8.3e-005 +-0.984292 0.125333 -0.124345 0.040032 0.437334 -0.984281 0.125335 -0.124427 +-0.966672 0.06279 -0.248199 0.080032 0.468605 -0.966662 0.062791 -0.248239 +-0.990158 0.06279 -0.125086 0.040032 0.468605 -0.990152 0.062791 -0.125127 +-0.960946 0.125333 -0.246729 0.080032 0.437334 -0.960925 0.125334 -0.246809 +-0.966672 0.06279 -0.248199 0.080032 0.468605 -0.966662 0.062791 -0.248239 +-0.984292 0.125333 -0.124345 0.040032 0.437334 -0.984281 0.125335 -0.124427 +-0.960946 0.125333 -0.246729 0.080032 0.437334 -0.960925 0.125334 -0.246809 +-0.927942 0.06279 -0.367398 0.120032 0.468605 -0.927927 0.06279 -0.367437 +-0.966672 0.06279 -0.248199 0.080032 0.468605 -0.966662 0.062791 -0.248239 +-0.922445 0.125333 -0.365222 0.120032 0.437334 -0.922415 0.125333 -0.365299 +-0.927942 0.06279 -0.367398 0.120032 0.468605 -0.927927 0.06279 -0.367437 +-0.960946 0.125333 -0.246729 0.080032 0.437334 -0.960925 0.125334 -0.246809 +-0.922445 0.125333 -0.365222 0.120032 0.437334 -0.922415 0.125333 -0.365299 +-0.874578 0.06279 -0.480803 0.160032 0.468605 -0.874557 0.062791 -0.48084 +-0.927942 0.06279 -0.367398 0.120032 0.468605 -0.927927 0.06279 -0.367437 +-0.869397 0.125333 -0.477955 0.160032 0.437334 -0.869357 0.125333 -0.478027 +-0.874578 0.06279 -0.480803 0.160032 0.468605 -0.874557 0.062791 -0.48084 +-0.922445 0.125333 -0.365222 0.120032 0.437334 -0.922415 0.125333 -0.365299 +-0.869397 0.125333 -0.477955 0.160032 0.437334 -0.869357 0.125333 -0.478027 +-0.807421 0.06279 -0.586626 0.200032 0.468605 -0.807396 0.06279 -0.586659 +-0.874578 0.06279 -0.480803 0.160032 0.468605 -0.874557 0.062791 -0.48084 +-0.802638 0.125333 -0.583151 0.200032 0.437334 -0.802589 0.125334 -0.583217 +-0.807421 0.06279 -0.586626 0.200032 0.468605 -0.807396 0.06279 -0.586659 +-0.869397 0.125333 -0.477955 0.160032 0.437334 -0.869357 0.125333 -0.478027 +-0.802638 0.125333 -0.583151 0.200032 0.437334 -0.802589 0.125334 -0.583217 +-0.72753 0.06279 -0.683197 0.240032 0.468605 -0.727502 0.062791 -0.683227 +-0.807421 0.06279 -0.586626 0.200032 0.468605 -0.807396 0.06279 -0.586659 +-0.723221 0.125333 -0.67915 0.240032 0.437334 -0.723164 0.125334 -0.679209 +-0.72753 0.06279 -0.683197 0.240032 0.468605 -0.727502 0.062791 -0.683227 +-0.802638 0.125333 -0.583151 0.200032 0.437334 -0.802589 0.125334 -0.583217 +-0.723221 0.125333 -0.67915 0.240032 0.437334 -0.723164 0.125334 -0.679209 +-0.636166 0.06279 -0.768993 0.280032 0.468605 -0.636134 0.062791 -0.769019 +-0.72753 0.06279 -0.683197 0.240032 0.468605 -0.727502 0.062791 -0.683227 +-0.632398 0.125333 -0.764438 0.280032 0.437334 -0.632334 0.125334 -0.76449 +-0.636166 0.06279 -0.768993 0.280032 0.468605 -0.636134 0.062791 -0.769019 +-0.723221 0.125333 -0.67915 0.240032 0.437334 -0.723164 0.125334 -0.679209 +-0.632398 0.125333 -0.764438 0.280032 0.437334 -0.632334 0.125334 -0.76449 +-0.53477 0.06279 -0.842662 0.320032 0.468605 -0.534734 0.062791 -0.842684 +-0.636166 0.06279 -0.768993 0.280032 0.468605 -0.636134 0.062791 -0.769019 +-0.531602 0.125333 -0.837671 0.320032 0.437334 -0.531532 0.125333 -0.837714 +-0.53477 0.06279 -0.842662 0.320032 0.468605 -0.534734 0.062791 -0.842684 +-0.632398 0.125333 -0.764438 0.280032 0.437334 -0.632334 0.125334 -0.76449 +-0.531602 0.125333 -0.837671 0.320032 0.437334 -0.531532 0.125333 -0.837714 +-0.424939 0.06279 -0.903042 0.360032 0.468605 -0.424901 0.062791 -0.903059 +-0.53477 0.06279 -0.842662 0.320032 0.468605 -0.534734 0.062791 -0.842684 +-0.422422 0.125333 -0.897693 0.360032 0.437334 -0.422347 0.125333 -0.897727 +-0.424939 0.06279 -0.903042 0.360032 0.468605 -0.424901 0.062791 -0.903059 +-0.531602 0.125333 -0.837671 0.320032 0.437334 -0.531532 0.125333 -0.837714 +-0.422422 0.125333 -0.897693 0.360032 0.437334 -0.422347 0.125333 -0.897727 +-0.308407 0.06279 -0.94918 0.400032 0.468605 -0.308368 0.062791 -0.949193 +-0.424939 0.06279 -0.903042 0.360032 0.468605 -0.424901 0.062791 -0.903059 +-0.30658 0.125333 -0.943558 0.400032 0.437334 -0.306501 0.125334 -0.943583 +-0.308407 0.06279 -0.94918 0.400032 0.468605 -0.308368 0.062791 -0.949193 +-0.422422 0.125333 -0.897693 0.360032 0.437334 -0.422347 0.125333 -0.897727 +-0.30658 0.125333 -0.943558 0.400032 0.437334 -0.306501 0.125334 -0.943583 +-0.187012 0.06279 -0.980349 0.440032 0.468605 -0.186971 0.062791 -0.980357 +-0.308407 0.06279 -0.94918 0.400032 0.468605 -0.308368 0.062791 -0.949193 +-0.185904 0.125333 -0.974542 0.440032 0.437334 -0.185823 0.125333 -0.974557 +-0.187012 0.06279 -0.980349 0.440032 0.468605 -0.186971 0.062791 -0.980357 +-0.30658 0.125333 -0.943558 0.400032 0.437334 -0.306501 0.125334 -0.943583 +-0.185904 0.125333 -0.974542 0.440032 0.437334 -0.185823 0.125333 -0.974557 +-0.062667 0.06279 -0.996058 0.480032 0.468605 -0.062625 0.062791 -0.99606 +-0.187012 0.06279 -0.980349 0.440032 0.468605 -0.186971 0.062791 -0.980357 +-0.062295 0.125333 -0.990157 0.480032 0.437334 -0.062213 0.125333 -0.990162 +-0.062667 0.06279 -0.996058 0.480032 0.468605 -0.062625 0.062791 -0.99606 +-0.185904 0.125333 -0.974542 0.440032 0.437334 -0.185823 0.125333 -0.974557 +-0.062295 0.125333 -0.990157 0.480032 0.437334 -0.062213 0.125333 -0.990162 +0.062667 0.06279 -0.996058 0.520032 0.468605 0.062708 0.062791 -0.996055 +-0.062667 0.06279 -0.996058 0.480032 0.468605 -0.062625 0.062791 -0.99606 +0.062296 0.125333 -0.990157 0.520032 0.437334 0.062378 0.125333 -0.990152 +0.062667 0.06279 -0.996058 0.520032 0.468605 0.062708 0.062791 -0.996055 +-0.062295 0.125333 -0.990157 0.480032 0.437334 -0.062213 0.125333 -0.990162 +0.062296 0.125333 -0.990157 0.520032 0.437334 0.062378 0.125333 -0.990152 +0.187012 0.06279 -0.980349 0.560032 0.468605 0.187053 0.062791 -0.980341 +0.062667 0.06279 -0.996058 0.520032 0.468605 0.062708 0.062791 -0.996055 +0.185904 0.125333 -0.974542 0.560032 0.437334 0.185985 0.125333 -0.974526 +0.187012 0.06279 -0.980349 0.560032 0.468605 0.187053 0.062791 -0.980341 +0.062296 0.125333 -0.990157 0.520032 0.437334 0.062378 0.125333 -0.990152 +0.185904 0.125333 -0.974542 0.560032 0.437334 0.185985 0.125333 -0.974526 +0.308407 0.06279 -0.94918 0.600032 0.468605 0.308447 0.062791 -0.949167 +0.187012 0.06279 -0.980349 0.560032 0.468605 0.187053 0.062791 -0.980341 +0.30658 0.125333 -0.943557 0.600032 0.437334 0.306659 0.125333 -0.943532 +0.308407 0.06279 -0.94918 0.600032 0.468605 0.308447 0.062791 -0.949167 +0.185904 0.125333 -0.974542 0.560032 0.437334 0.185985 0.125333 -0.974526 +0.30658 0.125333 -0.943557 0.600032 0.437334 0.306659 0.125333 -0.943532 +0.424939 0.06279 -0.903042 0.640032 0.468605 0.424977 0.06279 -0.903024 +0.308407 0.06279 -0.94918 0.600032 0.468605 0.308447 0.062791 -0.949167 +0.422422 0.125333 -0.897692 0.640032 0.437334 0.422497 0.125333 -0.897657 +0.424939 0.06279 -0.903042 0.640032 0.468605 0.424977 0.06279 -0.903024 +0.30658 0.125333 -0.943557 0.600032 0.437334 0.306659 0.125333 -0.943532 +0.422422 0.125333 -0.897692 0.640032 0.437334 0.422497 0.125333 -0.897657 +0.53477 0.06279 -0.842662 0.680032 0.468605 0.534805 0.062791 -0.84264 +0.424939 0.06279 -0.903042 0.640032 0.468605 0.424977 0.06279 -0.903024 +0.531602 0.125333 -0.83767 0.680032 0.437334 0.531672 0.125333 -0.837626 +0.53477 0.06279 -0.842662 0.680032 0.468605 0.534805 0.062791 -0.84264 +0.422422 0.125333 -0.897692 0.640032 0.437334 0.422497 0.125333 -0.897657 +0.531602 0.125333 -0.83767 0.680032 0.437334 0.531672 0.125333 -0.837626 +0.636166 0.06279 -0.768993 0.720032 0.468605 0.636198 0.062791 -0.768966 +0.53477 0.06279 -0.842662 0.680032 0.468605 0.534805 0.062791 -0.84264 +0.632398 0.125333 -0.764438 0.720032 0.437334 0.632461 0.125333 -0.764385 +0.636166 0.06279 -0.768993 0.720032 0.468605 0.636198 0.062791 -0.768966 +0.531602 0.125333 -0.83767 0.680032 0.437334 0.531672 0.125333 -0.837626 +0.632398 0.125333 -0.764438 0.720032 0.437334 0.632461 0.125333 -0.764385 +0.72753 0.06279 -0.683196 0.760032 0.468605 0.727558 0.06279 -0.683166 +0.636166 0.06279 -0.768993 0.720032 0.468605 0.636198 0.062791 -0.768966 +0.723221 0.125333 -0.679149 0.760032 0.437334 0.723277 0.125333 -0.679089 +0.72753 0.06279 -0.683196 0.760032 0.468605 0.727558 0.06279 -0.683166 +0.632398 0.125333 -0.764438 0.720032 0.437334 0.632461 0.125333 -0.764385 +0.723221 0.125333 -0.679149 0.760032 0.437334 0.723277 0.125333 -0.679089 +0.807421 0.06279 -0.586625 0.800032 0.468605 0.807445 0.06279 -0.586592 +0.72753 0.06279 -0.683196 0.760032 0.468605 0.727558 0.06279 -0.683166 +0.802638 0.125333 -0.58315 0.800032 0.437334 0.802686 0.125334 -0.583083 +0.807421 0.06279 -0.586625 0.800032 0.468605 0.807445 0.06279 -0.586592 +0.723221 0.125333 -0.679149 0.760032 0.437334 0.723277 0.125333 -0.679089 +0.802638 0.125333 -0.58315 0.800032 0.437334 0.802686 0.125334 -0.583083 +0.874578 0.06279 -0.480803 0.840032 0.468605 0.874597 0.062791 -0.480767 +0.807421 0.06279 -0.586625 0.800032 0.468605 0.807445 0.06279 -0.586592 +0.869397 0.125333 -0.477955 0.840032 0.437334 0.869436 0.125334 -0.477883 +0.874578 0.06279 -0.480803 0.840032 0.468605 0.874597 0.062791 -0.480767 +0.802638 0.125333 -0.58315 0.800032 0.437334 0.802686 0.125334 -0.583083 +0.869397 0.125333 -0.477955 0.840032 0.437334 0.869436 0.125334 -0.477883 +0.927942 0.06279 -0.367398 0.880032 0.468605 0.927957 0.062791 -0.36736 +0.874578 0.06279 -0.480803 0.840032 0.468605 0.874597 0.062791 -0.480767 +0.922445 0.125333 -0.365222 0.880032 0.437334 0.922475 0.125334 -0.365145 +0.927942 0.06279 -0.367398 0.880032 0.468605 0.927957 0.062791 -0.36736 +0.869397 0.125333 -0.477955 0.840032 0.437334 0.869436 0.125334 -0.477883 +0.922445 0.125333 -0.365222 0.880032 0.437334 0.922475 0.125334 -0.365145 +0.966672 0.06279 -0.248199 0.920032 0.468605 0.966682 0.06279 -0.248159 +0.927942 0.06279 -0.367398 0.880032 0.468605 0.927957 0.062791 -0.36736 +0.960946 0.125333 -0.246729 0.920032 0.437334 0.960966 0.125333 -0.246649 +0.966672 0.06279 -0.248199 0.920032 0.468605 0.966682 0.06279 -0.248159 +0.922445 0.125333 -0.365222 0.880032 0.437334 0.922475 0.125334 -0.365145 +0.960946 0.125333 -0.246729 0.920032 0.437334 0.960966 0.125333 -0.246649 +0.990157 0.06279 -0.125086 0.960032 0.468605 0.990162 0.062791 -0.125045 +0.966672 0.06279 -0.248199 0.920032 0.468605 0.966682 0.06279 -0.248159 +0.984292 0.125333 -0.124345 0.960032 0.437334 0.984302 0.125333 -0.124263 +0.990157 0.06279 -0.125086 0.960032 0.468605 0.990162 0.062791 -0.125045 +0.960946 0.125333 -0.246729 0.920032 0.437334 0.960966 0.125333 -0.246649 +0.984292 0.125333 -0.124345 0.960032 0.437334 0.984302 0.125333 -0.124263 +0.998027 0.06279 -0 1.00003 0.468605 0.998027 0.062791 3.7e-005 +0.990157 0.06279 -0.125086 0.960032 0.468605 0.990162 0.062791 -0.125045 +0.992115 0.125333 -0 1.00003 0.437334 0.992115 0.125333 7.8e-005 +0.998027 0.06279 -0 1.00003 0.468605 0.998027 0.062791 3.7e-005 +0.984292 0.125333 -0.124345 0.960032 0.437334 0.984302 0.125333 -0.124263 +0.992115 0.125333 -0 1.00003 0.437334 0.992115 0.125333 7.8e-005 +0.990158 0.06279 0.125086 1.04003 0.468605 0.990152 0.062791 0.125123 +0.998027 0.06279 -0 1.00003 0.468605 0.998027 0.062791 3.7e-005 +0.984293 0.125333 0.124345 1.04003 0.437334 0.984282 0.125334 0.124423 +0.990158 0.06279 0.125086 1.04003 0.468605 0.990152 0.062791 0.125123 +0.992115 0.125333 -0 1.00003 0.437334 0.992115 0.125333 7.8e-005 +0.974543 0.187381 0.123113 1.04003 0.406309 0.974527 0.187382 0.123231 +0.960947 0.125333 0.246729 1.08003 0.437334 0.960925 0.125333 0.246809 +0.984293 0.125333 0.124345 1.04003 0.437334 0.984282 0.125334 0.124423 +0.951428 0.187381 0.244285 1.08003 0.406309 0.951396 0.187382 0.244404 +0.960947 0.125333 0.246729 1.08003 0.437334 0.960925 0.125333 0.246809 +0.974543 0.187381 0.123113 1.04003 0.406309 0.974527 0.187382 0.123231 +0.951428 0.187381 0.244285 1.08003 0.406309 0.951396 0.187382 0.244404 +0.922446 0.125333 0.365222 1.12003 0.437334 0.922414 0.125334 0.365298 +0.960947 0.125333 0.246729 1.08003 0.437334 0.960925 0.125333 0.246809 +0.913309 0.187381 0.361604 1.12003 0.406309 0.913262 0.187382 0.361719 +0.922446 0.125333 0.365222 1.12003 0.437334 0.922414 0.125334 0.365298 +0.951428 0.187381 0.244285 1.08003 0.406309 0.951396 0.187382 0.244404 +0.913309 0.187381 0.361604 1.12003 0.406309 0.913262 0.187382 0.361719 +0.869398 0.125333 0.477955 1.16003 0.437334 0.869357 0.125334 0.478027 +0.922446 0.125333 0.365222 1.12003 0.437334 0.922414 0.125334 0.365298 +0.860786 0.187381 0.473221 1.16003 0.406309 0.860725 0.187382 0.473328 +0.869398 0.125333 0.477955 1.16003 0.437334 0.869357 0.125334 0.478027 +0.913309 0.187381 0.361604 1.12003 0.406309 0.913262 0.187382 0.361719 +0.860786 0.187381 0.473221 1.16003 0.406309 0.860725 0.187382 0.473328 +0.802638 0.125333 0.583151 1.20003 0.437334 0.802589 0.125334 0.583217 +0.869398 0.125333 0.477955 1.16003 0.437334 0.869357 0.125334 0.478027 +0.794688 0.187381 0.577375 1.20003 0.406309 0.794614 0.187382 0.577474 +0.802638 0.125333 0.583151 1.20003 0.437334 0.802589 0.125334 0.583217 +0.860786 0.187381 0.473221 1.16003 0.406309 0.860725 0.187382 0.473328 +0.794688 0.187381 0.577375 1.20003 0.406309 0.794614 0.187382 0.577474 +0.723221 0.125333 0.67915 1.24003 0.437334 0.723164 0.125333 0.679209 +0.802638 0.125333 0.583151 1.20003 0.437334 0.802589 0.125334 0.583217 +0.716057 0.187381 0.672423 1.24003 0.406309 0.715972 0.187382 0.672512 +0.723221 0.125333 0.67915 1.24003 0.437334 0.723164 0.125333 0.679209 +0.794688 0.187381 0.577375 1.20003 0.406309 0.794614 0.187382 0.577474 +0.716057 0.187381 0.672423 1.24003 0.406309 0.715972 0.187382 0.672512 +0.632398 0.125333 0.764438 1.28003 0.437334 0.632334 0.125333 0.76449 +0.723221 0.125333 0.67915 1.24003 0.437334 0.723164 0.125333 0.679209 +0.626134 0.187381 0.756866 1.28003 0.406309 0.626039 0.187382 0.756944 +0.632398 0.125333 0.764438 1.28003 0.437334 0.632334 0.125333 0.76449 +0.716057 0.187381 0.672423 1.24003 0.406309 0.715972 0.187382 0.672512 +0.626134 0.187381 0.756866 1.28003 0.406309 0.626039 0.187382 0.756944 +0.531602 0.125333 0.837671 1.32003 0.437334 0.531532 0.125333 0.837714 +0.632398 0.125333 0.764438 1.28003 0.437334 0.632334 0.125333 0.76449 +0.526336 0.187381 0.829373 1.32003 0.406309 0.526232 0.187382 0.829439 +0.531602 0.125333 0.837671 1.32003 0.437334 0.531532 0.125333 0.837714 +0.626134 0.187381 0.756866 1.28003 0.406309 0.626039 0.187382 0.756944 +0.526336 0.187381 0.829373 1.32003 0.406309 0.526232 0.187382 0.829439 +0.422422 0.125333 0.897693 1.36003 0.437334 0.422347 0.125334 0.897727 +0.531602 0.125333 0.837671 1.32003 0.437334 0.531532 0.125333 0.837714 +0.418238 0.187381 0.888801 1.36003 0.406309 0.418126 0.187382 0.888852 +0.422422 0.125333 0.897693 1.36003 0.437334 0.422347 0.125334 0.897727 +0.526336 0.187381 0.829373 1.32003 0.406309 0.526232 0.187382 0.829439 +0.418238 0.187381 0.888801 1.36003 0.406309 0.418126 0.187382 0.888852 +0.30658 0.125333 0.943558 1.40003 0.437334 0.306502 0.125334 0.943583 +0.422422 0.125333 0.897693 1.36003 0.437334 0.422347 0.125334 0.897727 +0.303544 0.187381 0.934212 1.40003 0.406309 0.303426 0.187382 0.934249 +0.30658 0.125333 0.943558 1.40003 0.437334 0.306502 0.125334 0.943583 +0.418238 0.187381 0.888801 1.36003 0.406309 0.418126 0.187382 0.888852 +0.303544 0.187381 0.934212 1.40003 0.406309 0.303426 0.187382 0.934249 +0.185904 0.125333 0.974542 1.44003 0.437334 0.185823 0.125334 0.974557 +0.30658 0.125333 0.943558 1.40003 0.437334 0.306502 0.125334 0.943583 +0.184062 0.187381 0.964889 1.44003 0.406309 0.183941 0.187382 0.964911 +0.185904 0.125333 0.974542 1.44003 0.437334 0.185823 0.125334 0.974557 +0.303544 0.187381 0.934212 1.40003 0.406309 0.303426 0.187382 0.934249 +0.184062 0.187381 0.964889 1.44003 0.406309 0.183941 0.187382 0.964911 +0.062295 0.125333 0.990158 1.48003 0.437334 0.062213 0.125333 0.990162 +0.185904 0.125333 0.974542 1.44003 0.437334 0.185823 0.125334 0.974557 +0.061678 0.187381 0.98035 1.48003 0.406309 0.061555 0.187382 0.980357 +0.062295 0.125333 0.990158 1.48003 0.437334 0.062213 0.125333 0.990162 +0.184062 0.187381 0.964889 1.44003 0.406309 0.183941 0.187382 0.964911 +0.061678 0.187381 0.98035 1.48003 0.406309 0.061555 0.187382 0.980357 +-0.062296 0.125333 0.990158 1.52003 0.437334 -0.062378 0.125333 0.990152 +0.062295 0.125333 0.990158 1.48003 0.437334 0.062213 0.125333 0.990162 +-0.061678 0.187381 0.98035 1.52003 0.406309 -0.061801 0.187382 0.980341 +-0.062296 0.125333 0.990158 1.52003 0.437334 -0.062378 0.125333 0.990152 +0.061678 0.187381 0.98035 1.48003 0.406309 0.061555 0.187382 0.980357 +-0.061678 0.187381 0.98035 -0.479968 0.406309 -0.061801 0.187382 0.980341 +-0.185904 0.125333 0.974542 -0.439968 0.437334 -0.185985 0.125333 0.974526 +-0.062296 0.125333 0.990158 -0.479968 0.437334 -0.062378 0.125333 0.990152 +-0.184062 0.187381 0.964889 -0.439968 0.406309 -0.184183 0.187382 0.964865 +-0.185904 0.125333 0.974542 -0.439968 0.437334 -0.185985 0.125333 0.974526 +-0.061678 0.187381 0.98035 -0.479968 0.406309 -0.061801 0.187382 0.980341 +-0.184062 0.187381 0.964889 -0.439968 0.406309 -0.184183 0.187382 0.964865 +-0.306581 0.125333 0.943558 -0.399968 0.437334 -0.306659 0.125333 0.943532 +-0.185904 0.125333 0.974542 -0.439968 0.437334 -0.185985 0.125333 0.974526 +-0.303544 0.187381 0.934211 -0.399968 0.406309 -0.303661 0.187382 0.934173 +-0.306581 0.125333 0.943558 -0.399968 0.437334 -0.306659 0.125333 0.943532 +-0.184062 0.187381 0.964889 -0.439968 0.406309 -0.184183 0.187382 0.964865 +-0.303544 0.187381 0.934211 -0.399968 0.406309 -0.303661 0.187382 0.934173 +-0.422422 0.125333 0.897693 -0.359968 0.437334 -0.422497 0.125334 0.897657 +-0.306581 0.125333 0.943558 -0.399968 0.437334 -0.306659 0.125333 0.943532 +-0.418238 0.187381 0.888801 -0.359968 0.406309 -0.418349 0.187382 0.888748 +-0.422422 0.125333 0.897693 -0.359968 0.437334 -0.422497 0.125334 0.897657 +-0.303544 0.187381 0.934211 -0.399968 0.406309 -0.303661 0.187382 0.934173 +-0.418238 0.187381 0.888801 -0.359968 0.406309 -0.418349 0.187382 0.888748 +-0.531602 0.125333 0.837671 -0.319968 0.437334 -0.531671 0.125334 0.837626 +-0.422422 0.125333 0.897693 -0.359968 0.437334 -0.422497 0.125334 0.897657 +-0.526336 0.187381 0.829373 -0.319968 0.406309 -0.52644 0.187382 0.829306 +-0.531602 0.125333 0.837671 -0.319968 0.437334 -0.531671 0.125334 0.837626 +-0.418238 0.187381 0.888801 -0.359968 0.406309 -0.418349 0.187382 0.888748 +-0.526336 0.187381 0.829373 -0.319968 0.406309 -0.52644 0.187382 0.829306 +-0.632398 0.125333 0.764438 -0.279968 0.437334 -0.632461 0.125333 0.764385 +-0.531602 0.125333 0.837671 -0.319968 0.437334 -0.531671 0.125334 0.837626 +-0.626134 0.187381 0.756866 -0.279968 0.406309 -0.626228 0.187382 0.756787 +-0.632398 0.125333 0.764438 -0.279968 0.437334 -0.632461 0.125333 0.764385 +-0.526336 0.187381 0.829373 -0.319968 0.406309 -0.52644 0.187382 0.829306 +-0.626134 0.187381 0.756866 -0.279968 0.406309 -0.626228 0.187382 0.756787 +-0.723221 0.125333 0.67915 -0.239968 0.437334 -0.723277 0.125333 0.679089 +-0.632398 0.125333 0.764438 -0.279968 0.437334 -0.632461 0.125333 0.764385 +-0.716057 0.187381 0.672422 -0.239968 0.406309 -0.716141 0.187382 0.672332 +-0.723221 0.125333 0.67915 -0.239968 0.437334 -0.723277 0.125333 0.679089 +-0.626134 0.187381 0.756866 -0.279968 0.406309 -0.626228 0.187382 0.756787 +-0.716057 0.187381 0.672422 -0.239968 0.406309 -0.716141 0.187382 0.672332 +-0.802638 0.125333 0.583151 -0.199968 0.437334 -0.802686 0.125334 0.583084 +-0.723221 0.125333 0.67915 -0.239968 0.437334 -0.723277 0.125333 0.679089 +-0.794688 0.187381 0.577374 -0.199968 0.406309 -0.79476 0.187381 0.577274 +-0.802638 0.125333 0.583151 -0.199968 0.437334 -0.802686 0.125334 0.583084 +-0.716057 0.187381 0.672422 -0.239968 0.406309 -0.716141 0.187382 0.672332 +-0.794688 0.187381 0.577374 -0.199968 0.406309 -0.79476 0.187381 0.577274 +-0.869397 0.125333 0.477955 -0.159968 0.437334 -0.869436 0.125334 0.477883 +-0.802638 0.125333 0.583151 -0.199968 0.437334 -0.802686 0.125334 0.583084 +-0.860785 0.187381 0.473221 -0.159968 0.406309 -0.860844 0.187382 0.473113 +-0.869397 0.125333 0.477955 -0.159968 0.437334 -0.869436 0.125334 0.477883 +-0.794688 0.187381 0.577374 -0.199968 0.406309 -0.79476 0.187381 0.577274 +-0.860785 0.187381 0.473221 -0.159968 0.406309 -0.860844 0.187382 0.473113 +-0.922446 0.125333 0.365222 -0.119968 0.437334 -0.922475 0.125334 0.365145 +-0.869397 0.125333 0.477955 -0.159968 0.437334 -0.869436 0.125334 0.477883 +-0.913308 0.187381 0.361604 -0.119968 0.406309 -0.913353 0.187381 0.361489 +-0.922446 0.125333 0.365222 -0.119968 0.437334 -0.922475 0.125334 0.365145 +-0.860785 0.187381 0.473221 -0.159968 0.406309 -0.860844 0.187382 0.473113 +-0.913308 0.187381 0.361604 -0.119968 0.406309 -0.913353 0.187381 0.361489 +-0.960946 0.125333 0.246729 -0.079968 0.437334 -0.960966 0.125332 0.246649 +-0.922446 0.125333 0.365222 -0.119968 0.437334 -0.922475 0.125334 0.365145 +-0.951428 0.187381 0.244285 -0.079968 0.406309 -0.951458 0.187381 0.244166 +-0.960946 0.125333 0.246729 -0.079968 0.437334 -0.960966 0.125332 0.246649 +-0.913308 0.187381 0.361604 -0.119968 0.406309 -0.913353 0.187381 0.361489 +-0.951428 0.187381 0.244285 -0.079968 0.406309 -0.951458 0.187381 0.244166 +-0.984292 0.125333 0.124345 -0.039968 0.437334 -0.984302 0.125332 0.124263 +-0.960946 0.125333 0.246729 -0.079968 0.437334 -0.960966 0.125332 0.246649 +-0.974542 0.187381 0.123113 -0.039968 0.406309 -0.974557 0.187381 0.122991 +-0.984292 0.125333 0.124345 -0.039968 0.437334 -0.984302 0.125332 0.124263 +-0.951428 0.187381 0.244285 -0.079968 0.406309 -0.951458 0.187381 0.244166 +-0.974542 0.187381 0.123113 -0.039968 0.406309 -0.974557 0.187381 0.122991 +-0.992115 0.125333 -0 3.2e-005 0.437334 -0.992115 0.125334 -8.3e-005 +-0.984292 0.125333 0.124345 -0.039968 0.437334 -0.984302 0.125332 0.124263 +-0.982288 0.187381 -0 3.2e-005 0.406309 -0.982287 0.187382 -0.000123 +-0.992115 0.125333 -0 3.2e-005 0.437334 -0.992115 0.125334 -8.3e-005 +-0.974542 0.187381 0.123113 -0.039968 0.406309 -0.974557 0.187381 0.122991 +-0.982288 0.187381 -0 3.2e-005 0.406309 -0.982287 0.187382 -0.000123 +-0.984292 0.125333 -0.124345 0.040032 0.437334 -0.984281 0.125335 -0.124427 +-0.992115 0.125333 -0 3.2e-005 0.437334 -0.992115 0.125334 -8.3e-005 +-0.974542 0.187381 -0.123113 0.040032 0.406309 -0.974526 0.187382 -0.123235 +-0.984292 0.125333 -0.124345 0.040032 0.437334 -0.984281 0.125335 -0.124427 +-0.982288 0.187381 -0 3.2e-005 0.406309 -0.982287 0.187382 -0.000123 +-0.974542 0.187381 -0.123113 0.040032 0.406309 -0.974526 0.187382 -0.123235 +-0.960946 0.125333 -0.246729 0.080032 0.437334 -0.960925 0.125334 -0.246809 +-0.984292 0.125333 -0.124345 0.040032 0.437334 -0.984281 0.125335 -0.124427 +-0.951427 0.187381 -0.244285 0.080032 0.406309 -0.951396 0.187382 -0.244404 +-0.960946 0.125333 -0.246729 0.080032 0.437334 -0.960925 0.125334 -0.246809 +-0.974542 0.187381 -0.123113 0.040032 0.406309 -0.974526 0.187382 -0.123235 +-0.951427 0.187381 -0.244285 0.080032 0.406309 -0.951396 0.187382 -0.244404 +-0.922445 0.125333 -0.365222 0.120032 0.437334 -0.922415 0.125333 -0.365299 +-0.960946 0.125333 -0.246729 0.080032 0.437334 -0.960925 0.125334 -0.246809 +-0.913308 0.187381 -0.361604 0.120032 0.406309 -0.913262 0.187382 -0.361719 +-0.922445 0.125333 -0.365222 0.120032 0.437334 -0.922415 0.125333 -0.365299 +-0.951427 0.187381 -0.244285 0.080032 0.406309 -0.951396 0.187382 -0.244404 +-0.913308 0.187381 -0.361604 0.120032 0.406309 -0.913262 0.187382 -0.361719 +-0.869397 0.125333 -0.477955 0.160032 0.437334 -0.869357 0.125333 -0.478027 +-0.922445 0.125333 -0.365222 0.120032 0.437334 -0.922415 0.125333 -0.365299 +-0.860785 0.187381 -0.473221 0.160032 0.406309 -0.860725 0.187382 -0.473329 +-0.869397 0.125333 -0.477955 0.160032 0.437334 -0.869357 0.125333 -0.478027 +-0.913308 0.187381 -0.361604 0.120032 0.406309 -0.913262 0.187382 -0.361719 +-0.860785 0.187381 -0.473221 0.160032 0.406309 -0.860725 0.187382 -0.473329 +-0.802638 0.125333 -0.583151 0.200032 0.437334 -0.802589 0.125334 -0.583217 +-0.869397 0.125333 -0.477955 0.160032 0.437334 -0.869357 0.125333 -0.478027 +-0.794687 0.187381 -0.577374 0.200032 0.406309 -0.794614 0.187382 -0.577474 +-0.802638 0.125333 -0.583151 0.200032 0.437334 -0.802589 0.125334 -0.583217 +-0.860785 0.187381 -0.473221 0.160032 0.406309 -0.860725 0.187382 -0.473329 +-0.794687 0.187381 -0.577374 0.200032 0.406309 -0.794614 0.187382 -0.577474 +-0.723221 0.125333 -0.67915 0.240032 0.437334 -0.723164 0.125334 -0.679209 +-0.802638 0.125333 -0.583151 0.200032 0.437334 -0.802589 0.125334 -0.583217 +-0.716057 0.187381 -0.672422 0.240032 0.406309 -0.715972 0.187381 -0.672512 +-0.723221 0.125333 -0.67915 0.240032 0.437334 -0.723164 0.125334 -0.679209 +-0.794687 0.187381 -0.577374 0.200032 0.406309 -0.794614 0.187382 -0.577474 +-0.716057 0.187381 -0.672422 0.240032 0.406309 -0.715972 0.187381 -0.672512 +-0.632398 0.125333 -0.764438 0.280032 0.437334 -0.632334 0.125334 -0.76449 +-0.723221 0.125333 -0.67915 0.240032 0.437334 -0.723164 0.125334 -0.679209 +-0.626134 0.187381 -0.756866 0.280032 0.406309 -0.626038 0.187382 -0.756944 +-0.632398 0.125333 -0.764438 0.280032 0.437334 -0.632334 0.125334 -0.76449 +-0.716057 0.187381 -0.672422 0.240032 0.406309 -0.715972 0.187381 -0.672512 +-0.626134 0.187381 -0.756866 0.280032 0.406309 -0.626038 0.187382 -0.756944 +-0.531602 0.125333 -0.837671 0.320032 0.437334 -0.531532 0.125333 -0.837714 +-0.632398 0.125333 -0.764438 0.280032 0.437334 -0.632334 0.125334 -0.76449 +-0.526336 0.187381 -0.829373 0.320032 0.406309 -0.526232 0.187382 -0.829439 +-0.531602 0.125333 -0.837671 0.320032 0.437334 -0.531532 0.125333 -0.837714 +-0.626134 0.187381 -0.756866 0.280032 0.406309 -0.626038 0.187382 -0.756944 +-0.526336 0.187381 -0.829373 0.320032 0.406309 -0.526232 0.187382 -0.829439 +-0.422422 0.125333 -0.897693 0.360032 0.437334 -0.422347 0.125333 -0.897727 +-0.531602 0.125333 -0.837671 0.320032 0.437334 -0.531532 0.125333 -0.837714 +-0.418238 0.187381 -0.8888 0.360032 0.406309 -0.418126 0.187382 -0.888853 +-0.422422 0.125333 -0.897693 0.360032 0.437334 -0.422347 0.125333 -0.897727 +-0.526336 0.187381 -0.829373 0.320032 0.406309 -0.526232 0.187382 -0.829439 +-0.418238 0.187381 -0.8888 0.360032 0.406309 -0.418126 0.187382 -0.888853 +-0.30658 0.125333 -0.943558 0.400032 0.437334 -0.306501 0.125334 -0.943583 +-0.422422 0.125333 -0.897693 0.360032 0.437334 -0.422347 0.125333 -0.897727 +-0.303543 0.187381 -0.934211 0.400032 0.406309 -0.303427 0.187382 -0.934249 +-0.30658 0.125333 -0.943558 0.400032 0.437334 -0.306501 0.125334 -0.943583 +-0.418238 0.187381 -0.8888 0.360032 0.406309 -0.418126 0.187382 -0.888853 +-0.303543 0.187381 -0.934211 0.400032 0.406309 -0.303427 0.187382 -0.934249 +-0.185904 0.125333 -0.974542 0.440032 0.437334 -0.185823 0.125333 -0.974557 +-0.30658 0.125333 -0.943558 0.400032 0.437334 -0.306501 0.125334 -0.943583 +-0.184062 0.187381 -0.964889 0.440032 0.406309 -0.183941 0.187382 -0.964911 +-0.185904 0.125333 -0.974542 0.440032 0.437334 -0.185823 0.125333 -0.974557 +-0.303543 0.187381 -0.934211 0.400032 0.406309 -0.303427 0.187382 -0.934249 +-0.184062 0.187381 -0.964889 0.440032 0.406309 -0.183941 0.187382 -0.964911 +-0.062295 0.125333 -0.990157 0.480032 0.437334 -0.062213 0.125333 -0.990162 +-0.185904 0.125333 -0.974542 0.440032 0.437334 -0.185823 0.125333 -0.974557 +-0.061678 0.187381 -0.980349 0.480032 0.406309 -0.061555 0.187382 -0.980357 +-0.062295 0.125333 -0.990157 0.480032 0.437334 -0.062213 0.125333 -0.990162 +-0.184062 0.187381 -0.964889 0.440032 0.406309 -0.183941 0.187382 -0.964911 +-0.061678 0.187381 -0.980349 0.480032 0.406309 -0.061555 0.187382 -0.980357 +0.062296 0.125333 -0.990157 0.520032 0.437334 0.062378 0.125333 -0.990152 +-0.062295 0.125333 -0.990157 0.480032 0.437334 -0.062213 0.125333 -0.990162 +0.061678 0.187381 -0.980349 0.520032 0.406309 0.061801 0.187381 -0.980341 +0.062296 0.125333 -0.990157 0.520032 0.437334 0.062378 0.125333 -0.990152 +-0.061678 0.187381 -0.980349 0.480032 0.406309 -0.061555 0.187382 -0.980357 +0.061678 0.187381 -0.980349 0.520032 0.406309 0.061801 0.187381 -0.980341 +0.185904 0.125333 -0.974542 0.560032 0.437334 0.185985 0.125333 -0.974526 +0.062296 0.125333 -0.990157 0.520032 0.437334 0.062378 0.125333 -0.990152 +0.184062 0.187381 -0.964889 0.560032 0.406309 0.184183 0.187382 -0.964865 +0.185904 0.125333 -0.974542 0.560032 0.437334 0.185985 0.125333 -0.974526 +0.061678 0.187381 -0.980349 0.520032 0.406309 0.061801 0.187381 -0.980341 +0.184062 0.187381 -0.964889 0.560032 0.406309 0.184183 0.187382 -0.964865 +0.30658 0.125333 -0.943557 0.600032 0.437334 0.306659 0.125333 -0.943532 +0.185904 0.125333 -0.974542 0.560032 0.437334 0.185985 0.125333 -0.974526 +0.303544 0.187381 -0.934211 0.600032 0.406309 0.303661 0.187382 -0.934173 +0.30658 0.125333 -0.943557 0.600032 0.437334 0.306659 0.125333 -0.943532 +0.184062 0.187381 -0.964889 0.560032 0.406309 0.184183 0.187382 -0.964865 +0.303544 0.187381 -0.934211 0.600032 0.406309 0.303661 0.187382 -0.934173 +0.422422 0.125333 -0.897692 0.640032 0.437334 0.422497 0.125333 -0.897657 +0.30658 0.125333 -0.943557 0.600032 0.437334 0.306659 0.125333 -0.943532 +0.418238 0.187381 -0.8888 0.640032 0.406309 0.418349 0.187382 -0.888747 +0.422422 0.125333 -0.897692 0.640032 0.437334 0.422497 0.125333 -0.897657 +0.303544 0.187381 -0.934211 0.600032 0.406309 0.303661 0.187382 -0.934173 +0.418238 0.187381 -0.8888 0.640032 0.406309 0.418349 0.187382 -0.888747 +0.531602 0.125333 -0.83767 0.680032 0.437334 0.531672 0.125333 -0.837626 +0.422422 0.125333 -0.897692 0.640032 0.437334 0.422497 0.125333 -0.897657 +0.526336 0.187381 -0.829373 0.680032 0.406309 0.52644 0.187381 -0.829307 +0.531602 0.125333 -0.83767 0.680032 0.437334 0.531672 0.125333 -0.837626 +0.418238 0.187381 -0.8888 0.640032 0.406309 0.418349 0.187382 -0.888747 +0.526336 0.187381 -0.829373 0.680032 0.406309 0.52644 0.187381 -0.829307 +0.632398 0.125333 -0.764438 0.720032 0.437334 0.632461 0.125333 -0.764385 +0.531602 0.125333 -0.83767 0.680032 0.437334 0.531672 0.125333 -0.837626 +0.626134 0.187381 -0.756865 0.720032 0.406309 0.626228 0.187381 -0.756787 +0.632398 0.125333 -0.764438 0.720032 0.437334 0.632461 0.125333 -0.764385 +0.526336 0.187381 -0.829373 0.680032 0.406309 0.52644 0.187381 -0.829307 +0.626134 0.187381 -0.756865 0.720032 0.406309 0.626228 0.187381 -0.756787 +0.723221 0.125333 -0.679149 0.760032 0.437334 0.723277 0.125333 -0.679089 +0.632398 0.125333 -0.764438 0.720032 0.437334 0.632461 0.125333 -0.764385 +0.716057 0.187381 -0.672422 0.760032 0.406309 0.716141 0.187382 -0.672332 +0.723221 0.125333 -0.679149 0.760032 0.437334 0.723277 0.125333 -0.679089 +0.626134 0.187381 -0.756865 0.720032 0.406309 0.626228 0.187381 -0.756787 +0.716057 0.187381 -0.672422 0.760032 0.406309 0.716141 0.187382 -0.672332 +0.802638 0.125333 -0.58315 0.800032 0.437334 0.802686 0.125334 -0.583083 +0.723221 0.125333 -0.679149 0.760032 0.437334 0.723277 0.125333 -0.679089 +0.794687 0.187381 -0.577374 0.800032 0.406309 0.79476 0.187381 -0.577274 +0.802638 0.125333 -0.58315 0.800032 0.437334 0.802686 0.125334 -0.583083 +0.716057 0.187381 -0.672422 0.760032 0.406309 0.716141 0.187382 -0.672332 +0.794687 0.187381 -0.577374 0.800032 0.406309 0.79476 0.187381 -0.577274 +0.869397 0.125333 -0.477955 0.840032 0.437334 0.869436 0.125334 -0.477883 +0.802638 0.125333 -0.58315 0.800032 0.437334 0.802686 0.125334 -0.583083 +0.860785 0.187381 -0.47322 0.840032 0.406309 0.860844 0.187382 -0.473112 +0.869397 0.125333 -0.477955 0.840032 0.437334 0.869436 0.125334 -0.477883 +0.794687 0.187381 -0.577374 0.800032 0.406309 0.79476 0.187381 -0.577274 +0.860785 0.187381 -0.47322 0.840032 0.406309 0.860844 0.187382 -0.473112 +0.922445 0.125333 -0.365222 0.880032 0.437334 0.922475 0.125334 -0.365145 +0.869397 0.125333 -0.477955 0.840032 0.437334 0.869436 0.125334 -0.477883 +0.913308 0.187381 -0.361604 0.880032 0.406309 0.913353 0.187381 -0.36149 +0.922445 0.125333 -0.365222 0.880032 0.437334 0.922475 0.125334 -0.365145 +0.860785 0.187381 -0.47322 0.840032 0.406309 0.860844 0.187382 -0.473112 +0.913308 0.187381 -0.361604 0.880032 0.406309 0.913353 0.187381 -0.36149 +0.960946 0.125333 -0.246729 0.920032 0.437334 0.960966 0.125333 -0.246649 +0.922445 0.125333 -0.365222 0.880032 0.437334 0.922475 0.125334 -0.365145 +0.951427 0.187381 -0.244285 0.920032 0.406309 0.951457 0.187381 -0.244166 +0.960946 0.125333 -0.246729 0.920032 0.437334 0.960966 0.125333 -0.246649 +0.913308 0.187381 -0.361604 0.880032 0.406309 0.913353 0.187381 -0.36149 +0.951427 0.187381 -0.244285 0.920032 0.406309 0.951457 0.187381 -0.244166 +0.984292 0.125333 -0.124345 0.960032 0.437334 0.984302 0.125333 -0.124263 +0.960946 0.125333 -0.246729 0.920032 0.437334 0.960966 0.125333 -0.246649 +0.974542 0.187381 -0.123113 0.960032 0.406309 0.974557 0.187381 -0.122991 +0.984292 0.125333 -0.124345 0.960032 0.437334 0.984302 0.125333 -0.124263 +0.951427 0.187381 -0.244285 0.920032 0.406309 0.951457 0.187381 -0.244166 +0.974542 0.187381 -0.123113 0.960032 0.406309 0.974557 0.187381 -0.122991 +0.992115 0.125333 -0 1.00003 0.437334 0.992115 0.125333 7.8e-005 +0.984292 0.125333 -0.124345 0.960032 0.437334 0.984302 0.125333 -0.124263 +0.982287 0.187381 -0 1.00003 0.406309 0.982287 0.187381 0.000119 +0.992115 0.125333 -0 1.00003 0.437334 0.992115 0.125333 7.8e-005 +0.974542 0.187381 -0.123113 0.960032 0.406309 0.974557 0.187381 -0.122991 +0.982287 0.187381 -0 1.00003 0.406309 0.982287 0.187381 0.000119 +0.984293 0.125333 0.124345 1.04003 0.437334 0.984282 0.125334 0.124423 +0.992115 0.125333 -0 1.00003 0.437334 0.992115 0.125333 7.8e-005 +0.974543 0.187381 0.123113 1.04003 0.406309 0.974527 0.187382 0.123231 +0.984293 0.125333 0.124345 1.04003 0.437334 0.984282 0.125334 0.124423 +0.982287 0.187381 -0 1.00003 0.406309 0.982287 0.187381 0.000119 +0.960947 0.24869 0.121396 1.04003 0.375655 0.960925 0.248691 0.121554 +0.951428 0.187381 0.244285 1.08003 0.406309 0.951396 0.187382 0.244404 +0.974543 0.187381 0.123113 1.04003 0.406309 0.974527 0.187382 0.123231 +0.938154 0.24869 0.240877 1.08003 0.375655 0.938113 0.24869 0.241035 +0.951428 0.187381 0.244285 1.08003 0.406309 0.951396 0.187382 0.244404 +0.960947 0.24869 0.121396 1.04003 0.375655 0.960925 0.248691 0.121554 +0.938154 0.24869 0.240877 1.08003 0.375655 0.938113 0.24869 0.241035 +0.913309 0.187381 0.361604 1.12003 0.406309 0.913262 0.187382 0.361719 +0.951428 0.187381 0.244285 1.08003 0.406309 0.951396 0.187382 0.244404 +0.900567 0.24869 0.35656 1.12003 0.375655 0.900505 0.24869 0.356711 +0.913309 0.187381 0.361604 1.12003 0.406309 0.913262 0.187382 0.361719 +0.938154 0.24869 0.240877 1.08003 0.375655 0.938113 0.24869 0.241035 +0.900567 0.24869 0.35656 1.12003 0.375655 0.900505 0.24869 0.356711 +0.860786 0.187381 0.473221 1.16003 0.406309 0.860725 0.187382 0.473328 +0.913309 0.187381 0.361604 1.12003 0.406309 0.913262 0.187382 0.361719 +0.848777 0.24869 0.466619 1.16003 0.375655 0.848697 0.248691 0.466762 +0.860786 0.187381 0.473221 1.16003 0.406309 0.860725 0.187382 0.473328 +0.900567 0.24869 0.35656 1.12003 0.375655 0.900505 0.24869 0.356711 +0.848777 0.24869 0.466619 1.16003 0.375655 0.848697 0.248691 0.466762 +0.794688 0.187381 0.577375 1.20003 0.406309 0.794614 0.187382 0.577474 +0.860786 0.187381 0.473221 1.16003 0.406309 0.860725 0.187382 0.473328 +0.783601 0.24869 0.569319 1.20003 0.375655 0.783504 0.24869 0.569451 +0.794688 0.187381 0.577375 1.20003 0.406309 0.794614 0.187382 0.577474 +0.848777 0.24869 0.466619 1.16003 0.375655 0.848697 0.248691 0.466762 +0.783601 0.24869 0.569319 1.20003 0.375655 0.783504 0.24869 0.569451 +0.716057 0.187381 0.672423 1.24003 0.406309 0.715972 0.187382 0.672512 +0.794688 0.187381 0.577375 1.20003 0.406309 0.794614 0.187382 0.577474 +0.706067 0.24869 0.663041 1.24003 0.375655 0.705955 0.24869 0.66316 +0.716057 0.187381 0.672423 1.24003 0.406309 0.715972 0.187382 0.672512 +0.783601 0.24869 0.569319 1.20003 0.375655 0.783504 0.24869 0.569451 +0.706067 0.24869 0.663041 1.24003 0.375655 0.705955 0.24869 0.66316 +0.626134 0.187381 0.756866 1.28003 0.406309 0.626039 0.187382 0.756944 +0.716057 0.187381 0.672423 1.24003 0.406309 0.715972 0.187382 0.672512 +0.617399 0.24869 0.746307 1.28003 0.375655 0.617272 0.24869 0.74641 +0.626134 0.187381 0.756866 1.28003 0.406309 0.626039 0.187382 0.756944 +0.706067 0.24869 0.663041 1.24003 0.375655 0.705955 0.24869 0.66316 +0.617399 0.24869 0.746307 1.28003 0.375655 0.617272 0.24869 0.74641 +0.526336 0.187381 0.829373 1.32003 0.406309 0.526232 0.187382 0.829439 +0.626134 0.187381 0.756866 1.28003 0.406309 0.626039 0.187382 0.756944 +0.518993 0.24869 0.817803 1.32003 0.375655 0.518855 0.248691 0.817889 +0.526336 0.187381 0.829373 1.32003 0.406309 0.526232 0.187382 0.829439 +0.617399 0.24869 0.746307 1.28003 0.375655 0.617272 0.24869 0.74641 +0.518993 0.24869 0.817803 1.32003 0.375655 0.518855 0.248691 0.817889 +0.418238 0.187381 0.888801 1.36003 0.406309 0.418126 0.187382 0.888852 +0.526336 0.187381 0.829373 1.32003 0.406309 0.526232 0.187382 0.829439 +0.412403 0.24869 0.876401 1.36003 0.375655 0.412255 0.24869 0.87647 +0.418238 0.187381 0.888801 1.36003 0.406309 0.418126 0.187382 0.888852 +0.518993 0.24869 0.817803 1.32003 0.375655 0.518855 0.248691 0.817889 +0.412403 0.24869 0.876401 1.36003 0.375655 0.412255 0.24869 0.87647 +0.303544 0.187381 0.934212 1.40003 0.406309 0.303426 0.187382 0.934249 +0.418238 0.187381 0.888801 1.36003 0.406309 0.418126 0.187382 0.888852 +0.299309 0.24869 0.921178 1.40003 0.375655 0.299153 0.24869 0.921228 +0.303544 0.187381 0.934212 1.40003 0.406309 0.303426 0.187382 0.934249 +0.412403 0.24869 0.876401 1.36003 0.375655 0.412255 0.24869 0.87647 +0.299309 0.24869 0.921178 1.40003 0.375655 0.299153 0.24869 0.921228 +0.184062 0.187381 0.964889 1.44003 0.406309 0.183941 0.187382 0.964911 +0.303544 0.187381 0.934212 1.40003 0.406309 0.303426 0.187382 0.934249 +0.181494 0.24869 0.951428 1.44003 0.375655 0.181334 0.24869 0.951457 +0.184062 0.187381 0.964889 1.44003 0.406309 0.183941 0.187382 0.964911 +0.299309 0.24869 0.921178 1.40003 0.375655 0.299153 0.24869 0.921228 +0.181494 0.24869 0.951428 1.44003 0.375655 0.181334 0.24869 0.951457 +0.061678 0.187381 0.98035 1.48003 0.406309 0.061555 0.187382 0.980357 +0.184062 0.187381 0.964889 1.44003 0.406309 0.183941 0.187382 0.964911 +0.060818 0.24869 0.966673 1.48003 0.375655 0.060655 0.24869 0.966682 +0.061678 0.187381 0.98035 1.48003 0.406309 0.061555 0.187382 0.980357 +0.181494 0.24869 0.951428 1.44003 0.375655 0.181334 0.24869 0.951457 +0.060818 0.24869 0.966673 1.48003 0.375655 0.060655 0.24869 0.966682 +-0.061678 0.187381 0.98035 1.52003 0.406309 -0.061801 0.187382 0.980341 +0.061678 0.187381 0.98035 1.48003 0.406309 0.061555 0.187382 0.980357 +-0.060818 0.24869 0.966673 1.52003 0.375655 -0.060981 0.24869 0.966662 +-0.061678 0.187381 0.98035 1.52003 0.406309 -0.061801 0.187382 0.980341 +0.060818 0.24869 0.966673 1.48003 0.375655 0.060655 0.24869 0.966682 +-0.060818 0.24869 0.966673 -0.479968 0.375655 -0.060981 0.24869 0.966662 +-0.184062 0.187381 0.964889 -0.439968 0.406309 -0.184183 0.187382 0.964865 +-0.061678 0.187381 0.98035 -0.479968 0.406309 -0.061801 0.187382 0.980341 +-0.181495 0.24869 0.951428 -0.439968 0.375655 -0.181655 0.24869 0.951396 +-0.184062 0.187381 0.964889 -0.439968 0.406309 -0.184183 0.187382 0.964865 +-0.060818 0.24869 0.966673 -0.479968 0.375655 -0.060981 0.24869 0.966662 +-0.181495 0.24869 0.951428 -0.439968 0.375655 -0.181655 0.24869 0.951396 +-0.303544 0.187381 0.934211 -0.399968 0.406309 -0.303661 0.187382 0.934173 +-0.184062 0.187381 0.964889 -0.439968 0.406309 -0.184183 0.187382 0.964865 +-0.299309 0.24869 0.921178 -0.399968 0.375655 -0.299464 0.24869 0.921127 +-0.303544 0.187381 0.934211 -0.399968 0.406309 -0.303661 0.187382 0.934173 +-0.181495 0.24869 0.951428 -0.439968 0.375655 -0.181655 0.24869 0.951396 +-0.299309 0.24869 0.921178 -0.399968 0.375655 -0.299464 0.24869 0.921127 +-0.418238 0.187381 0.888801 -0.359968 0.406309 -0.418349 0.187382 0.888748 +-0.303544 0.187381 0.934211 -0.399968 0.406309 -0.303661 0.187382 0.934173 +-0.412403 0.24869 0.876401 -0.359968 0.375655 -0.412551 0.24869 0.876331 +-0.418238 0.187381 0.888801 -0.359968 0.406309 -0.418349 0.187382 0.888748 +-0.299309 0.24869 0.921178 -0.399968 0.375655 -0.299464 0.24869 0.921127 +-0.412403 0.24869 0.876401 -0.359968 0.375655 -0.412551 0.24869 0.876331 +-0.526336 0.187381 0.829373 -0.319968 0.406309 -0.52644 0.187382 0.829306 +-0.418238 0.187381 0.888801 -0.359968 0.406309 -0.418349 0.187382 0.888748 +-0.518993 0.24869 0.817802 -0.319968 0.375655 -0.519131 0.248691 0.817714 +-0.526336 0.187381 0.829373 -0.319968 0.406309 -0.52644 0.187382 0.829306 +-0.412403 0.24869 0.876401 -0.359968 0.375655 -0.412551 0.24869 0.876331 +-0.518993 0.24869 0.817802 -0.319968 0.375655 -0.519131 0.248691 0.817714 +-0.626134 0.187381 0.756866 -0.279968 0.406309 -0.626228 0.187382 0.756787 +-0.526336 0.187381 0.829373 -0.319968 0.406309 -0.52644 0.187382 0.829306 +-0.617399 0.24869 0.746307 -0.279968 0.375655 -0.617524 0.248691 0.746202 +-0.626134 0.187381 0.756866 -0.279968 0.406309 -0.626228 0.187382 0.756787 +-0.518993 0.24869 0.817802 -0.319968 0.375655 -0.519131 0.248691 0.817714 +-0.617399 0.24869 0.746307 -0.279968 0.375655 -0.617524 0.248691 0.746202 +-0.716057 0.187381 0.672422 -0.239968 0.406309 -0.716141 0.187382 0.672332 +-0.626134 0.187381 0.756866 -0.279968 0.406309 -0.626228 0.187382 0.756787 +-0.706067 0.24869 0.663041 -0.239968 0.375655 -0.706179 0.24869 0.662922 +-0.716057 0.187381 0.672422 -0.239968 0.406309 -0.716141 0.187382 0.672332 +-0.617399 0.24869 0.746307 -0.279968 0.375655 -0.617524 0.248691 0.746202 +-0.706067 0.24869 0.663041 -0.239968 0.375655 -0.706179 0.24869 0.662922 +-0.794688 0.187381 0.577374 -0.199968 0.406309 -0.79476 0.187381 0.577274 +-0.716057 0.187381 0.672422 -0.239968 0.406309 -0.716141 0.187382 0.672332 +-0.783601 0.24869 0.569319 -0.199968 0.375655 -0.783696 0.248691 0.569186 +-0.794688 0.187381 0.577374 -0.199968 0.406309 -0.79476 0.187381 0.577274 +-0.706067 0.24869 0.663041 -0.239968 0.375655 -0.706179 0.24869 0.662922 +-0.783601 0.24869 0.569319 -0.199968 0.375655 -0.783696 0.248691 0.569186 +-0.860785 0.187381 0.473221 -0.159968 0.406309 -0.860844 0.187382 0.473113 +-0.794688 0.187381 0.577374 -0.199968 0.406309 -0.79476 0.187381 0.577274 +-0.848777 0.24869 0.466619 -0.159968 0.375655 -0.848854 0.248691 0.466475 +-0.860785 0.187381 0.473221 -0.159968 0.406309 -0.860844 0.187382 0.473113 +-0.783601 0.24869 0.569319 -0.199968 0.375655 -0.783696 0.248691 0.569186 +-0.848777 0.24869 0.466619 -0.159968 0.375655 -0.848854 0.248691 0.466475 +-0.913308 0.187381 0.361604 -0.119968 0.406309 -0.913353 0.187381 0.361489 +-0.860785 0.187381 0.473221 -0.159968 0.406309 -0.860844 0.187382 0.473113 +-0.900567 0.24869 0.356559 -0.119968 0.375655 -0.900626 0.248691 0.356407 +-0.913308 0.187381 0.361604 -0.119968 0.406309 -0.913353 0.187381 0.361489 +-0.848777 0.24869 0.466619 -0.159968 0.375655 -0.848854 0.248691 0.466475 +-0.900567 0.24869 0.356559 -0.119968 0.375655 -0.900626 0.248691 0.356407 +-0.951428 0.187381 0.244285 -0.079968 0.406309 -0.951458 0.187381 0.244166 +-0.913308 0.187381 0.361604 -0.119968 0.406309 -0.913353 0.187381 0.361489 +-0.938154 0.24869 0.240877 -0.079968 0.375655 -0.938194 0.248691 0.240719 +-0.951428 0.187381 0.244285 -0.079968 0.406309 -0.951458 0.187381 0.244166 +-0.900567 0.24869 0.356559 -0.119968 0.375655 -0.900626 0.248691 0.356407 +-0.938154 0.24869 0.240877 -0.079968 0.375655 -0.938194 0.248691 0.240719 +-0.974542 0.187381 0.123113 -0.039968 0.406309 -0.974557 0.187381 0.122991 +-0.951428 0.187381 0.244285 -0.079968 0.406309 -0.951458 0.187381 0.244166 +-0.960946 0.24869 0.121396 -0.039968 0.375655 -0.960966 0.24869 0.121234 +-0.974542 0.187381 0.123113 -0.039968 0.406309 -0.974557 0.187381 0.122991 +-0.938154 0.24869 0.240877 -0.079968 0.375655 -0.938194 0.248691 0.240719 +-0.960946 0.24869 0.121396 -0.039968 0.375655 -0.960966 0.24869 0.121234 +-0.982288 0.187381 -0 3.2e-005 0.406309 -0.982287 0.187382 -0.000123 +-0.974542 0.187381 0.123113 -0.039968 0.406309 -0.974557 0.187381 0.122991 +-0.968584 0.24869 -0 3.2e-005 0.375655 -0.968583 0.248691 -0.000164 +-0.982288 0.187381 -0 3.2e-005 0.406309 -0.982287 0.187382 -0.000123 +-0.960946 0.24869 0.121396 -0.039968 0.375655 -0.960966 0.24869 0.121234 +-0.968584 0.24869 -0 3.2e-005 0.375655 -0.968583 0.248691 -0.000164 +-0.974542 0.187381 -0.123113 0.040032 0.406309 -0.974526 0.187382 -0.123235 +-0.982288 0.187381 -0 3.2e-005 0.406309 -0.982287 0.187382 -0.000123 +-0.960946 0.24869 -0.121396 0.040032 0.375655 -0.960925 0.24869 -0.121558 +-0.974542 0.187381 -0.123113 0.040032 0.406309 -0.974526 0.187382 -0.123235 +-0.968584 0.24869 -0 3.2e-005 0.375655 -0.968583 0.248691 -0.000164 +-0.960946 0.24869 -0.121396 0.040032 0.375655 -0.960925 0.24869 -0.121558 +-0.951427 0.187381 -0.244285 0.080032 0.406309 -0.951396 0.187382 -0.244404 +-0.974542 0.187381 -0.123113 0.040032 0.406309 -0.974526 0.187382 -0.123235 +-0.938154 0.24869 -0.240877 0.080032 0.375655 -0.938112 0.248691 -0.241035 +-0.951427 0.187381 -0.244285 0.080032 0.406309 -0.951396 0.187382 -0.244404 +-0.960946 0.24869 -0.121396 0.040032 0.375655 -0.960925 0.24869 -0.121558 +-0.938154 0.24869 -0.240877 0.080032 0.375655 -0.938112 0.248691 -0.241035 +-0.913308 0.187381 -0.361604 0.120032 0.406309 -0.913262 0.187382 -0.361719 +-0.951427 0.187381 -0.244285 0.080032 0.406309 -0.951396 0.187382 -0.244404 +-0.900566 0.24869 -0.35656 0.120032 0.375655 -0.900506 0.24869 -0.356711 +-0.913308 0.187381 -0.361604 0.120032 0.406309 -0.913262 0.187382 -0.361719 +-0.938154 0.24869 -0.240877 0.080032 0.375655 -0.938112 0.248691 -0.241035 +-0.900566 0.24869 -0.35656 0.120032 0.375655 -0.900506 0.24869 -0.356711 +-0.860785 0.187381 -0.473221 0.160032 0.406309 -0.860725 0.187382 -0.473329 +-0.913308 0.187381 -0.361604 0.120032 0.406309 -0.913262 0.187382 -0.361719 +-0.848776 0.24869 -0.466619 0.160032 0.375655 -0.848697 0.248691 -0.466762 +-0.860785 0.187381 -0.473221 0.160032 0.406309 -0.860725 0.187382 -0.473329 +-0.900566 0.24869 -0.35656 0.120032 0.375655 -0.900506 0.24869 -0.356711 +-0.848776 0.24869 -0.466619 0.160032 0.375655 -0.848697 0.248691 -0.466762 +-0.794687 0.187381 -0.577374 0.200032 0.406309 -0.794614 0.187382 -0.577474 +-0.860785 0.187381 -0.473221 0.160032 0.406309 -0.860725 0.187382 -0.473329 +-0.783601 0.24869 -0.569319 0.200032 0.375655 -0.783504 0.248691 -0.569451 +-0.794687 0.187381 -0.577374 0.200032 0.406309 -0.794614 0.187382 -0.577474 +-0.848776 0.24869 -0.466619 0.160032 0.375655 -0.848697 0.248691 -0.466762 +-0.783601 0.24869 -0.569319 0.200032 0.375655 -0.783504 0.248691 -0.569451 +-0.716057 0.187381 -0.672422 0.240032 0.406309 -0.715972 0.187381 -0.672512 +-0.794687 0.187381 -0.577374 0.200032 0.406309 -0.794614 0.187382 -0.577474 +-0.706067 0.24869 -0.663041 0.240032 0.375655 -0.705955 0.24869 -0.66316 +-0.716057 0.187381 -0.672422 0.240032 0.406309 -0.715972 0.187381 -0.672512 +-0.783601 0.24869 -0.569319 0.200032 0.375655 -0.783504 0.248691 -0.569451 +-0.706067 0.24869 -0.663041 0.240032 0.375655 -0.705955 0.24869 -0.66316 +-0.626134 0.187381 -0.756866 0.280032 0.406309 -0.626038 0.187382 -0.756944 +-0.716057 0.187381 -0.672422 0.240032 0.406309 -0.715972 0.187381 -0.672512 +-0.617398 0.24869 -0.746307 0.280032 0.375655 -0.617272 0.248691 -0.74641 +-0.626134 0.187381 -0.756866 0.280032 0.406309 -0.626038 0.187382 -0.756944 +-0.706067 0.24869 -0.663041 0.240032 0.375655 -0.705955 0.24869 -0.66316 +-0.617398 0.24869 -0.746307 0.280032 0.375655 -0.617272 0.248691 -0.74641 +-0.526336 0.187381 -0.829373 0.320032 0.406309 -0.526232 0.187382 -0.829439 +-0.626134 0.187381 -0.756866 0.280032 0.406309 -0.626038 0.187382 -0.756944 +-0.518993 0.24869 -0.817802 0.320032 0.375655 -0.518854 0.24869 -0.817889 +-0.526336 0.187381 -0.829373 0.320032 0.406309 -0.526232 0.187382 -0.829439 +-0.617398 0.24869 -0.746307 0.280032 0.375655 -0.617272 0.248691 -0.74641 +-0.518993 0.24869 -0.817802 0.320032 0.375655 -0.518854 0.24869 -0.817889 +-0.418238 0.187381 -0.8888 0.360032 0.406309 -0.418126 0.187382 -0.888853 +-0.526336 0.187381 -0.829373 0.320032 0.406309 -0.526232 0.187382 -0.829439 +-0.412403 0.24869 -0.876401 0.360032 0.375655 -0.412254 0.248691 -0.87647 +-0.418238 0.187381 -0.8888 0.360032 0.406309 -0.418126 0.187382 -0.888853 +-0.518993 0.24869 -0.817802 0.320032 0.375655 -0.518854 0.24869 -0.817889 +-0.412403 0.24869 -0.876401 0.360032 0.375655 -0.412254 0.248691 -0.87647 +-0.303543 0.187381 -0.934211 0.400032 0.406309 -0.303427 0.187382 -0.934249 +-0.418238 0.187381 -0.8888 0.360032 0.406309 -0.418126 0.187382 -0.888853 +-0.299309 0.24869 -0.921178 0.400032 0.375655 -0.299153 0.24869 -0.921228 +-0.303543 0.187381 -0.934211 0.400032 0.406309 -0.303427 0.187382 -0.934249 +-0.412403 0.24869 -0.876401 0.360032 0.375655 -0.412254 0.248691 -0.87647 +-0.299309 0.24869 -0.921178 0.400032 0.375655 -0.299153 0.24869 -0.921228 +-0.184062 0.187381 -0.964889 0.440032 0.406309 -0.183941 0.187382 -0.964911 +-0.303543 0.187381 -0.934211 0.400032 0.406309 -0.303427 0.187382 -0.934249 +-0.181494 0.24869 -0.951427 0.440032 0.375655 -0.181334 0.248691 -0.951457 +-0.184062 0.187381 -0.964889 0.440032 0.406309 -0.183941 0.187382 -0.964911 +-0.299309 0.24869 -0.921178 0.400032 0.375655 -0.299153 0.24869 -0.921228 +-0.181494 0.24869 -0.951427 0.440032 0.375655 -0.181334 0.248691 -0.951457 +-0.061678 0.187381 -0.980349 0.480032 0.406309 -0.061555 0.187382 -0.980357 +-0.184062 0.187381 -0.964889 0.440032 0.406309 -0.183941 0.187382 -0.964911 +-0.060818 0.24869 -0.966672 0.480032 0.375655 -0.060654 0.24869 -0.966682 +-0.061678 0.187381 -0.980349 0.480032 0.406309 -0.061555 0.187382 -0.980357 +-0.181494 0.24869 -0.951427 0.440032 0.375655 -0.181334 0.248691 -0.951457 +-0.060818 0.24869 -0.966672 0.480032 0.375655 -0.060654 0.24869 -0.966682 +0.061678 0.187381 -0.980349 0.520032 0.406309 0.061801 0.187381 -0.980341 +-0.061678 0.187381 -0.980349 0.480032 0.406309 -0.061555 0.187382 -0.980357 +0.060818 0.24869 -0.966672 0.520032 0.375655 0.060981 0.24869 -0.966662 +0.061678 0.187381 -0.980349 0.520032 0.406309 0.061801 0.187381 -0.980341 +-0.060818 0.24869 -0.966672 0.480032 0.375655 -0.060654 0.24869 -0.966682 +0.060818 0.24869 -0.966672 0.520032 0.375655 0.060981 0.24869 -0.966662 +0.184062 0.187381 -0.964889 0.560032 0.406309 0.184183 0.187382 -0.964865 +0.061678 0.187381 -0.980349 0.520032 0.406309 0.061801 0.187381 -0.980341 +0.181495 0.24869 -0.951427 0.560032 0.375655 0.181655 0.248691 -0.951396 +0.184062 0.187381 -0.964889 0.560032 0.406309 0.184183 0.187382 -0.964865 +0.060818 0.24869 -0.966672 0.520032 0.375655 0.060981 0.24869 -0.966662 +0.181495 0.24869 -0.951427 0.560032 0.375655 0.181655 0.248691 -0.951396 +0.303544 0.187381 -0.934211 0.600032 0.406309 0.303661 0.187382 -0.934173 +0.184062 0.187381 -0.964889 0.560032 0.406309 0.184183 0.187382 -0.964865 +0.299309 0.24869 -0.921178 0.600032 0.375655 0.299464 0.248691 -0.921127 +0.303544 0.187381 -0.934211 0.600032 0.406309 0.303661 0.187382 -0.934173 +0.181495 0.24869 -0.951427 0.560032 0.375655 0.181655 0.248691 -0.951396 +0.299309 0.24869 -0.921178 0.600032 0.375655 0.299464 0.248691 -0.921127 +0.418238 0.187381 -0.8888 0.640032 0.406309 0.418349 0.187382 -0.888747 +0.303544 0.187381 -0.934211 0.600032 0.406309 0.303661 0.187382 -0.934173 +0.412403 0.24869 -0.8764 0.640032 0.375655 0.41255 0.24869 -0.87633 +0.418238 0.187381 -0.8888 0.640032 0.406309 0.418349 0.187382 -0.888747 +0.299309 0.24869 -0.921178 0.600032 0.375655 0.299464 0.248691 -0.921127 +0.412403 0.24869 -0.8764 0.640032 0.375655 0.41255 0.24869 -0.87633 +0.526336 0.187381 -0.829373 0.680032 0.406309 0.52644 0.187381 -0.829307 +0.418238 0.187381 -0.8888 0.640032 0.406309 0.418349 0.187382 -0.888747 +0.518993 0.24869 -0.817802 0.680032 0.375655 0.519131 0.24869 -0.817714 +0.526336 0.187381 -0.829373 0.680032 0.406309 0.52644 0.187381 -0.829307 +0.412403 0.24869 -0.8764 0.640032 0.375655 0.41255 0.24869 -0.87633 +0.518993 0.24869 -0.817802 0.680032 0.375655 0.519131 0.24869 -0.817714 +0.626134 0.187381 -0.756865 0.720032 0.406309 0.626228 0.187381 -0.756787 +0.526336 0.187381 -0.829373 0.680032 0.406309 0.52644 0.187381 -0.829307 +0.617398 0.24869 -0.746306 0.720032 0.375655 0.617524 0.248691 -0.746202 +0.626134 0.187381 -0.756865 0.720032 0.406309 0.626228 0.187381 -0.756787 +0.518993 0.24869 -0.817802 0.680032 0.375655 0.519131 0.24869 -0.817714 +0.617398 0.24869 -0.746306 0.720032 0.375655 0.617524 0.248691 -0.746202 +0.716057 0.187381 -0.672422 0.760032 0.406309 0.716141 0.187382 -0.672332 +0.626134 0.187381 -0.756865 0.720032 0.406309 0.626228 0.187381 -0.756787 +0.706067 0.24869 -0.663041 0.760032 0.375655 0.706178 0.24869 -0.662922 +0.716057 0.187381 -0.672422 0.760032 0.406309 0.716141 0.187382 -0.672332 +0.617398 0.24869 -0.746306 0.720032 0.375655 0.617524 0.248691 -0.746202 +0.706067 0.24869 -0.663041 0.760032 0.375655 0.706178 0.24869 -0.662922 +0.794687 0.187381 -0.577374 0.800032 0.406309 0.79476 0.187381 -0.577274 +0.716057 0.187381 -0.672422 0.760032 0.406309 0.716141 0.187382 -0.672332 +0.7836 0.24869 -0.569319 0.800032 0.375655 0.783696 0.24869 -0.569187 +0.794687 0.187381 -0.577374 0.800032 0.406309 0.79476 0.187381 -0.577274 +0.706067 0.24869 -0.663041 0.760032 0.375655 0.706178 0.24869 -0.662922 +0.7836 0.24869 -0.569319 0.800032 0.375655 0.783696 0.24869 -0.569187 +0.860785 0.187381 -0.47322 0.840032 0.406309 0.860844 0.187382 -0.473112 +0.794687 0.187381 -0.577374 0.800032 0.406309 0.79476 0.187381 -0.577274 +0.848776 0.24869 -0.466619 0.840032 0.375655 0.848855 0.24869 -0.466475 +0.860785 0.187381 -0.47322 0.840032 0.406309 0.860844 0.187382 -0.473112 +0.7836 0.24869 -0.569319 0.800032 0.375655 0.783696 0.24869 -0.569187 +0.848776 0.24869 -0.466619 0.840032 0.375655 0.848855 0.24869 -0.466475 +0.913308 0.187381 -0.361604 0.880032 0.406309 0.913353 0.187381 -0.36149 +0.860785 0.187381 -0.47322 0.840032 0.406309 0.860844 0.187382 -0.473112 +0.900566 0.24869 -0.356559 0.880032 0.375655 0.900626 0.24869 -0.356407 +0.913308 0.187381 -0.361604 0.880032 0.406309 0.913353 0.187381 -0.36149 +0.848776 0.24869 -0.466619 0.840032 0.375655 0.848855 0.24869 -0.466475 +0.900566 0.24869 -0.356559 0.880032 0.375655 0.900626 0.24869 -0.356407 +0.951427 0.187381 -0.244285 0.920032 0.406309 0.951457 0.187381 -0.244166 +0.913308 0.187381 -0.361604 0.880032 0.406309 0.913353 0.187381 -0.36149 +0.938153 0.24869 -0.240877 0.920032 0.375655 0.938194 0.248691 -0.240719 +0.951427 0.187381 -0.244285 0.920032 0.406309 0.951457 0.187381 -0.244166 +0.900566 0.24869 -0.356559 0.880032 0.375655 0.900626 0.24869 -0.356407 +0.938153 0.24869 -0.240877 0.920032 0.375655 0.938194 0.248691 -0.240719 +0.974542 0.187381 -0.123113 0.960032 0.406309 0.974557 0.187381 -0.122991 +0.951427 0.187381 -0.244285 0.920032 0.406309 0.951457 0.187381 -0.244166 +0.960946 0.24869 -0.121396 0.960032 0.375655 0.960966 0.24869 -0.121234 +0.974542 0.187381 -0.123113 0.960032 0.406309 0.974557 0.187381 -0.122991 +0.938153 0.24869 -0.240877 0.920032 0.375655 0.938194 0.248691 -0.240719 +0.960946 0.24869 -0.121396 0.960032 0.375655 0.960966 0.24869 -0.121234 +0.982287 0.187381 -0 1.00003 0.406309 0.982287 0.187381 0.000119 +0.974542 0.187381 -0.123113 0.960032 0.406309 0.974557 0.187381 -0.122991 +0.968583 0.24869 -0 1.00003 0.375655 0.968583 0.248691 0.000159 +0.982287 0.187381 -0 1.00003 0.406309 0.982287 0.187381 0.000119 +0.960946 0.24869 -0.121396 0.960032 0.375655 0.960966 0.24869 -0.121234 +0.968583 0.24869 -0 1.00003 0.375655 0.968583 0.248691 0.000159 +0.974543 0.187381 0.123113 1.04003 0.406309 0.974527 0.187382 0.123231 +0.982287 0.187381 -0 1.00003 0.406309 0.982287 0.187381 0.000119 +0.960947 0.24869 0.121396 1.04003 0.375655 0.960925 0.248691 0.121554 +0.974543 0.187381 0.123113 1.04003 0.406309 0.974527 0.187382 0.123231 +0.968583 0.24869 -0 1.00003 0.375655 0.968583 0.248691 0.000159 +0.943558 0.309017 0.119199 1.04003 0.345492 0.943532 0.309018 0.119397 +0.938154 0.24869 0.240877 1.08003 0.375655 0.938113 0.24869 0.241035 +0.960947 0.24869 0.121396 1.04003 0.375655 0.960925 0.248691 0.121554 +0.921178 0.309017 0.236518 1.08003 0.345492 0.921127 0.309018 0.236715 +0.938154 0.24869 0.240877 1.08003 0.375655 0.938113 0.24869 0.241035 +0.943558 0.309017 0.119199 1.04003 0.345492 0.943532 0.309018 0.119397 +0.921178 0.309017 0.236518 1.08003 0.345492 0.921127 0.309018 0.236715 +0.900567 0.24869 0.35656 1.12003 0.375655 0.900505 0.24869 0.356711 +0.938154 0.24869 0.240877 1.08003 0.375655 0.938113 0.24869 0.241035 +0.884271 0.309017 0.350108 1.12003 0.345492 0.884195 0.309018 0.350296 +0.900567 0.24869 0.35656 1.12003 0.375655 0.900505 0.24869 0.356711 +0.921178 0.309017 0.236518 1.08003 0.345492 0.921127 0.309018 0.236715 +0.884271 0.309017 0.350108 1.12003 0.345492 0.884195 0.309018 0.350296 +0.848777 0.24869 0.466619 1.16003 0.375655 0.848697 0.248691 0.466762 +0.900567 0.24869 0.35656 1.12003 0.375655 0.900505 0.24869 0.356711 +0.833418 0.309017 0.458176 1.16003 0.345492 0.833319 0.309018 0.458353 +0.848777 0.24869 0.466619 1.16003 0.375655 0.848697 0.248691 0.466762 +0.884271 0.309017 0.350108 1.12003 0.345492 0.884195 0.309018 0.350296 +0.833418 0.309017 0.458176 1.16003 0.345492 0.833319 0.309018 0.458353 +0.783601 0.24869 0.569319 1.20003 0.375655 0.783504 0.24869 0.569451 +0.848777 0.24869 0.466619 1.16003 0.375655 0.848697 0.248691 0.466762 +0.769422 0.309017 0.559018 1.20003 0.345492 0.769302 0.309018 0.559181 +0.783601 0.24869 0.569319 1.20003 0.375655 0.783504 0.24869 0.569451 +0.833418 0.309017 0.458176 1.16003 0.345492 0.833319 0.309018 0.458353 +0.769422 0.309017 0.559018 1.20003 0.345492 0.769302 0.309018 0.559181 +0.706067 0.24869 0.663041 1.24003 0.375655 0.705955 0.24869 0.66316 +0.783601 0.24869 0.569319 1.20003 0.375655 0.783504 0.24869 0.569451 +0.693291 0.309017 0.651044 1.24003 0.345492 0.693151 0.309018 0.651191 +0.706067 0.24869 0.663041 1.24003 0.375655 0.705955 0.24869 0.66316 +0.769422 0.309017 0.559018 1.20003 0.345492 0.769302 0.309018 0.559181 +0.693291 0.309017 0.651044 1.24003 0.345492 0.693151 0.309018 0.651191 +0.617399 0.24869 0.746307 1.28003 0.375655 0.617272 0.24869 0.74641 +0.706067 0.24869 0.663041 1.24003 0.375655 0.705955 0.24869 0.66316 +0.606227 0.309017 0.732802 1.28003 0.345492 0.60607 0.309018 0.732931 +0.617399 0.24869 0.746307 1.28003 0.375655 0.617272 0.24869 0.74641 +0.693291 0.309017 0.651044 1.24003 0.345492 0.693151 0.309018 0.651191 +0.606227 0.309017 0.732802 1.28003 0.345492 0.60607 0.309018 0.732931 +0.518993 0.24869 0.817803 1.32003 0.375655 0.518855 0.248691 0.817889 +0.617399 0.24869 0.746307 1.28003 0.375655 0.617272 0.24869 0.74641 +0.509602 0.309017 0.803004 1.32003 0.345492 0.50943 0.309018 0.803112 +0.518993 0.24869 0.817803 1.32003 0.375655 0.518855 0.248691 0.817889 +0.606227 0.309017 0.732802 1.28003 0.345492 0.60607 0.309018 0.732931 +0.509602 0.309017 0.803004 1.32003 0.345492 0.50943 0.309018 0.803112 +0.412403 0.24869 0.876401 1.36003 0.375655 0.412255 0.24869 0.87647 +0.518993 0.24869 0.817803 1.32003 0.375655 0.518855 0.248691 0.817889 +0.40494 0.309017 0.860543 1.36003 0.345492 0.404756 0.309018 0.860628 +0.412403 0.24869 0.876401 1.36003 0.375655 0.412255 0.24869 0.87647 +0.509602 0.309017 0.803004 1.32003 0.345492 0.50943 0.309018 0.803112 +0.40494 0.309017 0.860543 1.36003 0.345492 0.404756 0.309018 0.860628 +0.299309 0.24869 0.921178 1.40003 0.375655 0.299153 0.24869 0.921228 +0.412403 0.24869 0.876401 1.36003 0.375655 0.412255 0.24869 0.87647 +0.293893 0.309017 0.904509 1.40003 0.345492 0.293699 0.309018 0.904571 +0.299309 0.24869 0.921178 1.40003 0.375655 0.299153 0.24869 0.921228 +0.40494 0.309017 0.860543 1.36003 0.345492 0.404756 0.309018 0.860628 +0.293893 0.309017 0.904509 1.40003 0.345492 0.293699 0.309018 0.904571 +0.181494 0.24869 0.951428 1.44003 0.375655 0.181334 0.24869 0.951457 +0.299309 0.24869 0.921178 1.40003 0.375655 0.299153 0.24869 0.921228 +0.17821 0.309017 0.934212 1.44003 0.345492 0.17801 0.309018 0.934248 +0.181494 0.24869 0.951428 1.44003 0.375655 0.181334 0.24869 0.951457 +0.293893 0.309017 0.904509 1.40003 0.345492 0.293699 0.309018 0.904571 +0.17821 0.309017 0.934212 1.44003 0.345492 0.17801 0.309018 0.934248 +0.060818 0.24869 0.966673 1.48003 0.375655 0.060655 0.24869 0.966682 +0.181494 0.24869 0.951428 1.44003 0.375655 0.181334 0.24869 0.951457 +0.059717 0.309017 0.949181 1.48003 0.345492 0.059514 0.309018 0.949192 +0.060818 0.24869 0.966673 1.48003 0.375655 0.060655 0.24869 0.966682 +0.17821 0.309017 0.934212 1.44003 0.345492 0.17801 0.309018 0.934248 +0.059717 0.309017 0.949181 1.48003 0.345492 0.059514 0.309018 0.949192 +-0.060818 0.24869 0.966673 1.52003 0.375655 -0.060981 0.24869 0.966662 +0.060818 0.24869 0.966673 1.48003 0.375655 0.060655 0.24869 0.966682 +-0.059717 0.309017 0.949181 1.52003 0.345492 -0.05992 0.309018 0.949167 +-0.060818 0.24869 0.966673 1.52003 0.375655 -0.060981 0.24869 0.966662 +0.059717 0.309017 0.949181 1.48003 0.345492 0.059514 0.309018 0.949192 +-0.059717 0.309017 0.949181 -0.479968 0.345492 -0.05992 0.309018 0.949167 +-0.181495 0.24869 0.951428 -0.439968 0.375655 -0.181655 0.24869 0.951396 +-0.060818 0.24869 0.966673 -0.479968 0.375655 -0.060981 0.24869 0.966662 +-0.17821 0.309017 0.934211 -0.439968 0.345492 -0.17841 0.309018 0.934172 +-0.181495 0.24869 0.951428 -0.439968 0.375655 -0.181655 0.24869 0.951396 +-0.059717 0.309017 0.949181 -0.479968 0.345492 -0.05992 0.309018 0.949167 +-0.17821 0.309017 0.934211 -0.439968 0.345492 -0.17841 0.309018 0.934172 +-0.299309 0.24869 0.921178 -0.399968 0.375655 -0.299464 0.24869 0.921127 +-0.181495 0.24869 0.951428 -0.439968 0.375655 -0.181655 0.24869 0.951396 +-0.293893 0.309017 0.904509 -0.399968 0.345492 -0.294086 0.309018 0.904445 +-0.299309 0.24869 0.921178 -0.399968 0.375655 -0.299464 0.24869 0.921127 +-0.17821 0.309017 0.934211 -0.439968 0.345492 -0.17841 0.309018 0.934172 +-0.293893 0.309017 0.904509 -0.399968 0.345492 -0.294086 0.309018 0.904445 +-0.412403 0.24869 0.876401 -0.359968 0.375655 -0.412551 0.24869 0.876331 +-0.299309 0.24869 0.921178 -0.399968 0.375655 -0.299464 0.24869 0.921127 +-0.404941 0.309017 0.860542 -0.359968 0.345492 -0.405124 0.309018 0.860455 +-0.412403 0.24869 0.876401 -0.359968 0.375655 -0.412551 0.24869 0.876331 +-0.293893 0.309017 0.904509 -0.399968 0.345492 -0.294086 0.309018 0.904445 +-0.404941 0.309017 0.860542 -0.359968 0.345492 -0.405124 0.309018 0.860455 +-0.518993 0.24869 0.817802 -0.319968 0.375655 -0.519131 0.248691 0.817714 +-0.412403 0.24869 0.876401 -0.359968 0.375655 -0.412551 0.24869 0.876331 +-0.509602 0.309017 0.803004 -0.319968 0.345492 -0.509773 0.309018 0.802894 +-0.518993 0.24869 0.817802 -0.319968 0.375655 -0.519131 0.248691 0.817714 +-0.404941 0.309017 0.860542 -0.359968 0.345492 -0.405124 0.309018 0.860455 +-0.509602 0.309017 0.803004 -0.319968 0.345492 -0.509773 0.309018 0.802894 +-0.617399 0.24869 0.746307 -0.279968 0.375655 -0.617524 0.248691 0.746202 +-0.518993 0.24869 0.817802 -0.319968 0.375655 -0.519131 0.248691 0.817714 +-0.606227 0.309017 0.732802 -0.279968 0.345492 -0.606382 0.309018 0.732672 +-0.617399 0.24869 0.746307 -0.279968 0.375655 -0.617524 0.248691 0.746202 +-0.509602 0.309017 0.803004 -0.319968 0.345492 -0.509773 0.309018 0.802894 +-0.606227 0.309017 0.732802 -0.279968 0.345492 -0.606382 0.309018 0.732672 +-0.706067 0.24869 0.663041 -0.239968 0.375655 -0.706179 0.24869 0.662922 +-0.617399 0.24869 0.746307 -0.279968 0.375655 -0.617524 0.248691 0.746202 +-0.693291 0.309017 0.651043 -0.239968 0.345492 -0.69343 0.309018 0.650894 +-0.706067 0.24869 0.663041 -0.239968 0.375655 -0.706179 0.24869 0.662922 +-0.606227 0.309017 0.732802 -0.279968 0.345492 -0.606382 0.309018 0.732672 +-0.693291 0.309017 0.651043 -0.239968 0.345492 -0.69343 0.309018 0.650894 +-0.783601 0.24869 0.569319 -0.199968 0.375655 -0.783696 0.248691 0.569186 +-0.706067 0.24869 0.663041 -0.239968 0.375655 -0.706179 0.24869 0.662922 +-0.769421 0.309017 0.559017 -0.199968 0.345492 -0.76954 0.309018 0.558852 +-0.783601 0.24869 0.569319 -0.199968 0.375655 -0.783696 0.248691 0.569186 +-0.693291 0.309017 0.651043 -0.239968 0.345492 -0.69343 0.309018 0.650894 +-0.769421 0.309017 0.559017 -0.199968 0.345492 -0.76954 0.309018 0.558852 +-0.848777 0.24869 0.466619 -0.159968 0.375655 -0.848854 0.248691 0.466475 +-0.783601 0.24869 0.569319 -0.199968 0.375655 -0.783696 0.248691 0.569186 +-0.833418 0.309017 0.458175 -0.159968 0.345492 -0.833515 0.309018 0.457997 +-0.848777 0.24869 0.466619 -0.159968 0.375655 -0.848854 0.248691 0.466475 +-0.769421 0.309017 0.559017 -0.199968 0.345492 -0.76954 0.309018 0.558852 +-0.833418 0.309017 0.458175 -0.159968 0.345492 -0.833515 0.309018 0.457997 +-0.900567 0.24869 0.356559 -0.119968 0.375655 -0.900626 0.248691 0.356407 +-0.848777 0.24869 0.466619 -0.159968 0.375655 -0.848854 0.248691 0.466475 +-0.884271 0.309017 0.350107 -0.119968 0.345492 -0.884344 0.309019 0.349918 +-0.900567 0.24869 0.356559 -0.119968 0.375655 -0.900626 0.248691 0.356407 +-0.833418 0.309017 0.458175 -0.159968 0.345492 -0.833515 0.309018 0.457997 +-0.884271 0.309017 0.350107 -0.119968 0.345492 -0.884344 0.309019 0.349918 +-0.938154 0.24869 0.240877 -0.079968 0.375655 -0.938194 0.248691 0.240719 +-0.900567 0.24869 0.356559 -0.119968 0.375655 -0.900626 0.248691 0.356407 +-0.921178 0.309017 0.236518 -0.079968 0.345492 -0.921227 0.309018 0.236321 +-0.938154 0.24869 0.240877 -0.079968 0.375655 -0.938194 0.248691 0.240719 +-0.884271 0.309017 0.350107 -0.119968 0.345492 -0.884344 0.309019 0.349918 +-0.921178 0.309017 0.236518 -0.079968 0.345492 -0.921227 0.309018 0.236321 +-0.960946 0.24869 0.121396 -0.039968 0.375655 -0.960966 0.24869 0.121234 +-0.938154 0.24869 0.240877 -0.079968 0.375655 -0.938194 0.248691 0.240719 +-0.943558 0.309017 0.119199 -0.039968 0.345492 -0.943582 0.309018 0.118998 +-0.960946 0.24869 0.121396 -0.039968 0.375655 -0.960966 0.24869 0.121234 +-0.921178 0.309017 0.236518 -0.079968 0.345492 -0.921227 0.309018 0.236321 +-0.943558 0.309017 0.119199 -0.039968 0.345492 -0.943582 0.309018 0.118998 +-0.968584 0.24869 -0 3.2e-005 0.375655 -0.968583 0.248691 -0.000164 +-0.960946 0.24869 0.121396 -0.039968 0.375655 -0.960966 0.24869 0.121234 +-0.951057 0.309017 -0 3.2e-005 0.345492 -0.951056 0.309018 -0.000203 +-0.968584 0.24869 -0 3.2e-005 0.375655 -0.968583 0.248691 -0.000164 +-0.943558 0.309017 0.119199 -0.039968 0.345492 -0.943582 0.309018 0.118998 +-0.951057 0.309017 -0 3.2e-005 0.345492 -0.951056 0.309018 -0.000203 +-0.960946 0.24869 -0.121396 0.040032 0.375655 -0.960925 0.24869 -0.121558 +-0.968584 0.24869 -0 3.2e-005 0.375655 -0.968583 0.248691 -0.000164 +-0.943558 0.309017 -0.119199 0.040032 0.345492 -0.943531 0.309018 -0.119401 +-0.960946 0.24869 -0.121396 0.040032 0.375655 -0.960925 0.24869 -0.121558 +-0.951057 0.309017 -0 3.2e-005 0.345492 -0.951056 0.309018 -0.000203 +-0.943558 0.309017 -0.119199 0.040032 0.345492 -0.943531 0.309018 -0.119401 +-0.938154 0.24869 -0.240877 0.080032 0.375655 -0.938112 0.248691 -0.241035 +-0.960946 0.24869 -0.121396 0.040032 0.375655 -0.960925 0.24869 -0.121558 +-0.921178 0.309017 -0.236518 0.080032 0.345492 -0.921126 0.309018 -0.236715 +-0.938154 0.24869 -0.240877 0.080032 0.375655 -0.938112 0.248691 -0.241035 +-0.943558 0.309017 -0.119199 0.040032 0.345492 -0.943531 0.309018 -0.119401 +-0.921178 0.309017 -0.236518 0.080032 0.345492 -0.921126 0.309018 -0.236715 +-0.900566 0.24869 -0.35656 0.120032 0.375655 -0.900506 0.24869 -0.356711 +-0.938154 0.24869 -0.240877 0.080032 0.375655 -0.938112 0.248691 -0.241035 +-0.884271 0.309017 -0.350108 0.120032 0.345492 -0.884195 0.309018 -0.350296 +-0.900566 0.24869 -0.35656 0.120032 0.375655 -0.900506 0.24869 -0.356711 +-0.921178 0.309017 -0.236518 0.080032 0.345492 -0.921126 0.309018 -0.236715 +-0.884271 0.309017 -0.350108 0.120032 0.345492 -0.884195 0.309018 -0.350296 +-0.848776 0.24869 -0.466619 0.160032 0.375655 -0.848697 0.248691 -0.466762 +-0.900566 0.24869 -0.35656 0.120032 0.375655 -0.900506 0.24869 -0.356711 +-0.833418 0.309017 -0.458175 0.160032 0.345492 -0.833319 0.309019 -0.458353 +-0.848776 0.24869 -0.466619 0.160032 0.375655 -0.848697 0.248691 -0.466762 +-0.884271 0.309017 -0.350108 0.120032 0.345492 -0.884195 0.309018 -0.350296 +-0.833418 0.309017 -0.458175 0.160032 0.345492 -0.833319 0.309019 -0.458353 +-0.783601 0.24869 -0.569319 0.200032 0.375655 -0.783504 0.248691 -0.569451 +-0.848776 0.24869 -0.466619 0.160032 0.375655 -0.848697 0.248691 -0.466762 +-0.769421 0.309017 -0.559017 0.200032 0.345492 -0.769301 0.309018 -0.559181 +-0.783601 0.24869 -0.569319 0.200032 0.375655 -0.783504 0.248691 -0.569451 +-0.833418 0.309017 -0.458175 0.160032 0.345492 -0.833319 0.309019 -0.458353 +-0.769421 0.309017 -0.559017 0.200032 0.345492 -0.769301 0.309018 -0.559181 +-0.706067 0.24869 -0.663041 0.240032 0.375655 -0.705955 0.24869 -0.66316 +-0.783601 0.24869 -0.569319 0.200032 0.375655 -0.783504 0.248691 -0.569451 +-0.693291 0.309017 -0.651043 0.240032 0.345492 -0.693151 0.309018 -0.651191 +-0.706067 0.24869 -0.663041 0.240032 0.375655 -0.705955 0.24869 -0.66316 +-0.769421 0.309017 -0.559017 0.200032 0.345492 -0.769301 0.309018 -0.559181 +-0.693291 0.309017 -0.651043 0.240032 0.345492 -0.693151 0.309018 -0.651191 +-0.617398 0.24869 -0.746307 0.280032 0.375655 -0.617272 0.248691 -0.74641 +-0.706067 0.24869 -0.663041 0.240032 0.375655 -0.705955 0.24869 -0.66316 +-0.606226 0.309017 -0.732802 0.280032 0.345492 -0.606069 0.309018 -0.732931 +-0.617398 0.24869 -0.746307 0.280032 0.375655 -0.617272 0.248691 -0.74641 +-0.693291 0.309017 -0.651043 0.240032 0.345492 -0.693151 0.309018 -0.651191 +-0.606226 0.309017 -0.732802 0.280032 0.345492 -0.606069 0.309018 -0.732931 +-0.518993 0.24869 -0.817802 0.320032 0.375655 -0.518854 0.24869 -0.817889 +-0.617398 0.24869 -0.746307 0.280032 0.375655 -0.617272 0.248691 -0.74641 +-0.509602 0.309017 -0.803004 0.320032 0.345492 -0.50943 0.309018 -0.803112 +-0.518993 0.24869 -0.817802 0.320032 0.375655 -0.518854 0.24869 -0.817889 +-0.606226 0.309017 -0.732802 0.280032 0.345492 -0.606069 0.309018 -0.732931 +-0.509602 0.309017 -0.803004 0.320032 0.345492 -0.50943 0.309018 -0.803112 +-0.412403 0.24869 -0.876401 0.360032 0.375655 -0.412254 0.248691 -0.87647 +-0.518993 0.24869 -0.817802 0.320032 0.375655 -0.518854 0.24869 -0.817889 +-0.40494 0.309017 -0.860542 0.360032 0.345492 -0.404756 0.309018 -0.860628 +-0.412403 0.24869 -0.876401 0.360032 0.375655 -0.412254 0.248691 -0.87647 +-0.509602 0.309017 -0.803004 0.320032 0.345492 -0.50943 0.309018 -0.803112 +-0.40494 0.309017 -0.860542 0.360032 0.345492 -0.404756 0.309018 -0.860628 +-0.299309 0.24869 -0.921178 0.400032 0.375655 -0.299153 0.24869 -0.921228 +-0.412403 0.24869 -0.876401 0.360032 0.375655 -0.412254 0.248691 -0.87647 +-0.293893 0.309017 -0.904509 0.400032 0.345492 -0.293699 0.309018 -0.904571 +-0.299309 0.24869 -0.921178 0.400032 0.375655 -0.299153 0.24869 -0.921228 +-0.40494 0.309017 -0.860542 0.360032 0.345492 -0.404756 0.309018 -0.860628 +-0.293893 0.309017 -0.904509 0.400032 0.345492 -0.293699 0.309018 -0.904571 +-0.181494 0.24869 -0.951427 0.440032 0.375655 -0.181334 0.248691 -0.951457 +-0.299309 0.24869 -0.921178 0.400032 0.375655 -0.299153 0.24869 -0.921228 +-0.17821 0.309017 -0.934211 0.440032 0.345492 -0.178011 0.309018 -0.934249 +-0.181494 0.24869 -0.951427 0.440032 0.375655 -0.181334 0.248691 -0.951457 +-0.293893 0.309017 -0.904509 0.400032 0.345492 -0.293699 0.309018 -0.904571 +-0.17821 0.309017 -0.934211 0.440032 0.345492 -0.178011 0.309018 -0.934249 +-0.060818 0.24869 -0.966672 0.480032 0.375655 -0.060654 0.24869 -0.966682 +-0.181494 0.24869 -0.951427 0.440032 0.375655 -0.181334 0.248691 -0.951457 +-0.059717 0.309017 -0.94918 0.480032 0.345492 -0.059514 0.309018 -0.949192 +-0.060818 0.24869 -0.966672 0.480032 0.375655 -0.060654 0.24869 -0.966682 +-0.17821 0.309017 -0.934211 0.440032 0.345492 -0.178011 0.309018 -0.934249 +-0.059717 0.309017 -0.94918 0.480032 0.345492 -0.059514 0.309018 -0.949192 +0.060818 0.24869 -0.966672 0.520032 0.375655 0.060981 0.24869 -0.966662 +-0.060818 0.24869 -0.966672 0.480032 0.375655 -0.060654 0.24869 -0.966682 +0.059717 0.309017 -0.94918 0.520032 0.345492 0.05992 0.309018 -0.949167 +0.060818 0.24869 -0.966672 0.520032 0.375655 0.060981 0.24869 -0.966662 +-0.059717 0.309017 -0.94918 0.480032 0.345492 -0.059514 0.309018 -0.949192 +0.059717 0.309017 -0.94918 0.520032 0.345492 0.05992 0.309018 -0.949167 +0.181495 0.24869 -0.951427 0.560032 0.375655 0.181655 0.248691 -0.951396 +0.060818 0.24869 -0.966672 0.520032 0.375655 0.060981 0.24869 -0.966662 +0.17821 0.309017 -0.934211 0.560032 0.345492 0.17841 0.309018 -0.934172 +0.181495 0.24869 -0.951427 0.560032 0.375655 0.181655 0.248691 -0.951396 +0.059717 0.309017 -0.94918 0.520032 0.345492 0.05992 0.309018 -0.949167 +0.17821 0.309017 -0.934211 0.560032 0.345492 0.17841 0.309018 -0.934172 +0.299309 0.24869 -0.921178 0.600032 0.375655 0.299464 0.248691 -0.921127 +0.181495 0.24869 -0.951427 0.560032 0.375655 0.181655 0.248691 -0.951396 +0.293893 0.309017 -0.904509 0.600032 0.345492 0.294086 0.309018 -0.904445 +0.299309 0.24869 -0.921178 0.600032 0.375655 0.299464 0.248691 -0.921127 +0.17821 0.309017 -0.934211 0.560032 0.345492 0.17841 0.309018 -0.934172 +0.293893 0.309017 -0.904509 0.600032 0.345492 0.294086 0.309018 -0.904445 +0.412403 0.24869 -0.8764 0.640032 0.375655 0.41255 0.24869 -0.87633 +0.299309 0.24869 -0.921178 0.600032 0.375655 0.299464 0.248691 -0.921127 +0.40494 0.309017 -0.860542 0.640032 0.345492 0.405124 0.309018 -0.860455 +0.412403 0.24869 -0.8764 0.640032 0.375655 0.41255 0.24869 -0.87633 +0.293893 0.309017 -0.904509 0.600032 0.345492 0.294086 0.309018 -0.904445 +0.40494 0.309017 -0.860542 0.640032 0.345492 0.405124 0.309018 -0.860455 +0.518993 0.24869 -0.817802 0.680032 0.375655 0.519131 0.24869 -0.817714 +0.412403 0.24869 -0.8764 0.640032 0.375655 0.41255 0.24869 -0.87633 +0.509602 0.309017 -0.803004 0.680032 0.345492 0.509773 0.309018 -0.802894 +0.518993 0.24869 -0.817802 0.680032 0.375655 0.519131 0.24869 -0.817714 +0.40494 0.309017 -0.860542 0.640032 0.345492 0.405124 0.309018 -0.860455 +0.509602 0.309017 -0.803004 0.680032 0.345492 0.509773 0.309018 -0.802894 +0.617398 0.24869 -0.746306 0.720032 0.375655 0.617524 0.248691 -0.746202 +0.518993 0.24869 -0.817802 0.680032 0.375655 0.519131 0.24869 -0.817714 +0.606226 0.309017 -0.732802 0.720032 0.345492 0.606383 0.309018 -0.732672 +0.617398 0.24869 -0.746306 0.720032 0.375655 0.617524 0.248691 -0.746202 +0.509602 0.309017 -0.803004 0.680032 0.345492 0.509773 0.309018 -0.802894 +0.606226 0.309017 -0.732802 0.720032 0.345492 0.606383 0.309018 -0.732672 +0.706067 0.24869 -0.663041 0.760032 0.375655 0.706178 0.24869 -0.662922 +0.617398 0.24869 -0.746306 0.720032 0.375655 0.617524 0.248691 -0.746202 +0.693291 0.309017 -0.651043 0.760032 0.345492 0.693429 0.309018 -0.650895 +0.706067 0.24869 -0.663041 0.760032 0.375655 0.706178 0.24869 -0.662922 +0.606226 0.309017 -0.732802 0.720032 0.345492 0.606383 0.309018 -0.732672 +0.693291 0.309017 -0.651043 0.760032 0.345492 0.693429 0.309018 -0.650895 +0.7836 0.24869 -0.569319 0.800032 0.375655 0.783696 0.24869 -0.569187 +0.706067 0.24869 -0.663041 0.760032 0.375655 0.706178 0.24869 -0.662922 +0.769421 0.309017 -0.559017 0.800032 0.345492 0.76954 0.309018 -0.558852 +0.7836 0.24869 -0.569319 0.800032 0.375655 0.783696 0.24869 -0.569187 +0.693291 0.309017 -0.651043 0.760032 0.345492 0.693429 0.309018 -0.650895 +0.769421 0.309017 -0.559017 0.800032 0.345492 0.76954 0.309018 -0.558852 +0.848776 0.24869 -0.466619 0.840032 0.375655 0.848855 0.24869 -0.466475 +0.7836 0.24869 -0.569319 0.800032 0.375655 0.783696 0.24869 -0.569187 +0.833417 0.309017 -0.458175 0.840032 0.345492 0.833515 0.309018 -0.457997 +0.848776 0.24869 -0.466619 0.840032 0.375655 0.848855 0.24869 -0.466475 +0.769421 0.309017 -0.559017 0.800032 0.345492 0.76954 0.309018 -0.558852 +0.833417 0.309017 -0.458175 0.840032 0.345492 0.833515 0.309018 -0.457997 +0.900566 0.24869 -0.356559 0.880032 0.375655 0.900626 0.24869 -0.356407 +0.848776 0.24869 -0.466619 0.840032 0.375655 0.848855 0.24869 -0.466475 +0.88427 0.309017 -0.350107 0.880032 0.345492 0.884344 0.309018 -0.349918 +0.900566 0.24869 -0.356559 0.880032 0.375655 0.900626 0.24869 -0.356407 +0.833417 0.309017 -0.458175 0.840032 0.345492 0.833515 0.309018 -0.457997 +0.88427 0.309017 -0.350107 0.880032 0.345492 0.884344 0.309018 -0.349918 +0.938153 0.24869 -0.240877 0.920032 0.375655 0.938194 0.248691 -0.240719 +0.900566 0.24869 -0.356559 0.880032 0.375655 0.900626 0.24869 -0.356407 +0.921177 0.309017 -0.236518 0.920032 0.345492 0.921228 0.309018 -0.236322 +0.938153 0.24869 -0.240877 0.920032 0.375655 0.938194 0.248691 -0.240719 +0.88427 0.309017 -0.350107 0.880032 0.345492 0.884344 0.309018 -0.349918 +0.921177 0.309017 -0.236518 0.920032 0.345492 0.921228 0.309018 -0.236322 +0.960946 0.24869 -0.121396 0.960032 0.375655 0.960966 0.24869 -0.121234 +0.938153 0.24869 -0.240877 0.920032 0.375655 0.938194 0.248691 -0.240719 +0.943557 0.309017 -0.119199 0.960032 0.345492 0.943582 0.309018 -0.118998 +0.960946 0.24869 -0.121396 0.960032 0.375655 0.960966 0.24869 -0.121234 +0.921177 0.309017 -0.236518 0.920032 0.345492 0.921228 0.309018 -0.236322 +0.943557 0.309017 -0.119199 0.960032 0.345492 0.943582 0.309018 -0.118998 +0.968583 0.24869 -0 1.00003 0.375655 0.968583 0.248691 0.000159 +0.960946 0.24869 -0.121396 0.960032 0.375655 0.960966 0.24869 -0.121234 +0.951057 0.309017 -0 1.00003 0.345492 0.951056 0.309019 0.000199 +0.968583 0.24869 -0 1.00003 0.375655 0.968583 0.248691 0.000159 +0.943557 0.309017 -0.119199 0.960032 0.345492 0.943582 0.309018 -0.118998 +0.951057 0.309017 -0 1.00003 0.345492 0.951056 0.309019 0.000199 +0.960947 0.24869 0.121396 1.04003 0.375655 0.960925 0.248691 0.121554 +0.968583 0.24869 -0 1.00003 0.375655 0.968583 0.248691 0.000159 +0.943558 0.309017 0.119199 1.04003 0.345492 0.943532 0.309018 0.119397 +0.960947 0.24869 0.121396 1.04003 0.375655 0.960925 0.248691 0.121554 +0.951057 0.309017 -0 1.00003 0.345492 0.951056 0.309019 0.000199 +0.922446 0.368124 0.116532 1.04003 0.315938 0.922414 0.368126 0.116768 +0.921178 0.309017 0.236518 1.08003 0.345492 0.921127 0.309018 0.236715 +0.943558 0.309017 0.119199 1.04003 0.345492 0.943532 0.309018 0.119397 +0.900567 0.368124 0.231226 1.08003 0.315938 0.900505 0.368126 0.23146 +0.921178 0.309017 0.236518 1.08003 0.345492 0.921127 0.309018 0.236715 +0.922446 0.368124 0.116532 1.04003 0.315938 0.922414 0.368126 0.116768 +0.900567 0.368124 0.231226 1.08003 0.315938 0.900505 0.368126 0.23146 +0.884271 0.309017 0.350108 1.12003 0.345492 0.884195 0.309018 0.350296 +0.921178 0.309017 0.236518 1.08003 0.345492 0.921127 0.309018 0.236715 +0.864485 0.368124 0.342274 1.12003 0.315938 0.864395 0.368126 0.342498 +0.884271 0.309017 0.350108 1.12003 0.345492 0.884195 0.309018 0.350296 +0.900567 0.368124 0.231226 1.08003 0.315938 0.900505 0.368126 0.23146 +0.864485 0.368124 0.342274 1.12003 0.315938 0.864395 0.368126 0.342498 +0.833418 0.309017 0.458176 1.16003 0.345492 0.833319 0.309018 0.458353 +0.884271 0.309017 0.350108 1.12003 0.345492 0.884195 0.309018 0.350296 +0.81477 0.368124 0.447924 1.16003 0.315938 0.814652 0.368126 0.448135 +0.833418 0.309017 0.458176 1.16003 0.345492 0.833319 0.309018 0.458353 +0.864485 0.368124 0.342274 1.12003 0.315938 0.864395 0.368126 0.342498 +0.81477 0.368124 0.447924 1.16003 0.315938 0.814652 0.368126 0.448135 +0.769422 0.309017 0.559018 1.20003 0.345492 0.769302 0.309018 0.559181 +0.833418 0.309017 0.458176 1.16003 0.345492 0.833319 0.309018 0.458353 +0.752206 0.368124 0.54651 1.20003 0.315938 0.752062 0.368126 0.546704 +0.769422 0.309017 0.559018 1.20003 0.345492 0.769302 0.309018 0.559181 +0.81477 0.368124 0.447924 1.16003 0.315938 0.814652 0.368126 0.448135 +0.752206 0.368124 0.54651 1.20003 0.315938 0.752062 0.368126 0.546704 +0.693291 0.309017 0.651044 1.24003 0.345492 0.693151 0.309018 0.651191 +0.769422 0.309017 0.559018 1.20003 0.345492 0.769302 0.309018 0.559181 +0.677779 0.368124 0.636476 1.24003 0.315938 0.677612 0.368127 0.636652 +0.693291 0.309017 0.651044 1.24003 0.345492 0.693151 0.309018 0.651191 +0.752206 0.368124 0.54651 1.20003 0.315938 0.752062 0.368126 0.546704 +0.677779 0.368124 0.636476 1.24003 0.315938 0.677612 0.368127 0.636652 +0.606227 0.309017 0.732802 1.28003 0.345492 0.60607 0.309018 0.732931 +0.693291 0.309017 0.651044 1.24003 0.345492 0.693151 0.309018 0.651191 +0.592662 0.368124 0.716406 1.28003 0.315938 0.592475 0.368126 0.716559 +0.606227 0.309017 0.732802 1.28003 0.345492 0.60607 0.309018 0.732931 +0.677779 0.368124 0.636476 1.24003 0.315938 0.677612 0.368127 0.636652 +0.592662 0.368124 0.716406 1.28003 0.315938 0.592475 0.368126 0.716559 +0.509602 0.309017 0.803004 1.32003 0.345492 0.50943 0.309018 0.803112 +0.606227 0.309017 0.732802 1.28003 0.345492 0.60607 0.309018 0.732931 +0.4982 0.368124 0.785037 1.32003 0.315938 0.497994 0.368126 0.785166 +0.509602 0.309017 0.803004 1.32003 0.345492 0.50943 0.309018 0.803112 +0.592662 0.368124 0.716406 1.28003 0.315938 0.592475 0.368126 0.716559 +0.4982 0.368124 0.785037 1.32003 0.315938 0.497994 0.368126 0.785166 +0.40494 0.309017 0.860543 1.36003 0.345492 0.404756 0.309018 0.860628 +0.509602 0.309017 0.803004 1.32003 0.345492 0.50943 0.309018 0.803112 +0.39588 0.368124 0.841288 1.36003 0.315938 0.39566 0.368126 0.84139 +0.40494 0.309017 0.860543 1.36003 0.345492 0.404756 0.309018 0.860628 +0.4982 0.368124 0.785037 1.32003 0.315938 0.497994 0.368126 0.785166 +0.39588 0.368124 0.841288 1.36003 0.315938 0.39566 0.368126 0.84139 +0.293893 0.309017 0.904509 1.40003 0.345492 0.293699 0.309018 0.904571 +0.40494 0.309017 0.860543 1.36003 0.345492 0.404756 0.309018 0.860628 +0.287317 0.368124 0.884271 1.40003 0.315938 0.287086 0.368126 0.884344 +0.293893 0.309017 0.904509 1.40003 0.345492 0.293699 0.309018 0.904571 +0.39588 0.368124 0.841288 1.36003 0.315938 0.39566 0.368126 0.84139 +0.287317 0.368124 0.884271 1.40003 0.315938 0.287086 0.368126 0.884344 +0.17821 0.309017 0.934212 1.44003 0.345492 0.17801 0.309018 0.934248 +0.293893 0.309017 0.904509 1.40003 0.345492 0.293699 0.309018 0.904571 +0.174223 0.368124 0.913308 1.44003 0.315938 0.173985 0.368126 0.913352 +0.17821 0.309017 0.934212 1.44003 0.345492 0.17801 0.309018 0.934248 +0.287317 0.368124 0.884271 1.40003 0.315938 0.287086 0.368126 0.884344 +0.174223 0.368124 0.913308 1.44003 0.315938 0.173985 0.368126 0.913352 +0.059717 0.309017 0.949181 1.48003 0.345492 0.059514 0.309018 0.949192 +0.17821 0.309017 0.934212 1.44003 0.345492 0.17801 0.309018 0.934248 +0.058381 0.368124 0.927943 1.48003 0.315938 0.058139 0.368126 0.927956 +0.059717 0.309017 0.949181 1.48003 0.345492 0.059514 0.309018 0.949192 +0.174223 0.368124 0.913308 1.44003 0.315938 0.173985 0.368126 0.913352 +0.058381 0.368124 0.927943 1.48003 0.315938 0.058139 0.368126 0.927956 +-0.059717 0.309017 0.949181 1.52003 0.345492 -0.05992 0.309018 0.949167 +0.059717 0.309017 0.949181 1.48003 0.345492 0.059514 0.309018 0.949192 +-0.058381 0.368124 0.927943 1.52003 0.315938 -0.058623 0.368126 0.927926 +-0.059717 0.309017 0.949181 1.52003 0.345492 -0.05992 0.309018 0.949167 +0.058381 0.368124 0.927943 1.48003 0.315938 0.058139 0.368126 0.927956 +-0.058381 0.368124 0.927943 -0.479968 0.315938 -0.058623 0.368126 0.927926 +-0.17821 0.309017 0.934211 -0.439968 0.345492 -0.17841 0.309018 0.934172 +-0.059717 0.309017 0.949181 -0.479968 0.345492 -0.05992 0.309018 0.949167 +-0.174223 0.368124 0.913308 -0.439968 0.315938 -0.17446 0.368126 0.913262 +-0.17821 0.309017 0.934211 -0.439968 0.345492 -0.17841 0.309018 0.934172 +-0.058381 0.368124 0.927943 -0.479968 0.315938 -0.058623 0.368126 0.927926 +-0.174223 0.368124 0.913308 -0.439968 0.315938 -0.17446 0.368126 0.913262 +-0.293893 0.309017 0.904509 -0.399968 0.345492 -0.294086 0.309018 0.904445 +-0.17821 0.309017 0.934211 -0.439968 0.345492 -0.17841 0.309018 0.934172 +-0.287317 0.368124 0.884271 -0.399968 0.315938 -0.287547 0.368126 0.884195 +-0.293893 0.309017 0.904509 -0.399968 0.345492 -0.294086 0.309018 0.904445 +-0.174223 0.368124 0.913308 -0.439968 0.315938 -0.17446 0.368126 0.913262 +-0.287317 0.368124 0.884271 -0.399968 0.315938 -0.287547 0.368126 0.884195 +-0.404941 0.309017 0.860542 -0.359968 0.345492 -0.405124 0.309018 0.860455 +-0.293893 0.309017 0.904509 -0.399968 0.345492 -0.294086 0.309018 0.904445 +-0.39588 0.368124 0.841288 -0.359968 0.315938 -0.396098 0.368126 0.841183 +-0.404941 0.309017 0.860542 -0.359968 0.345492 -0.405124 0.309018 0.860455 +-0.287317 0.368124 0.884271 -0.399968 0.315938 -0.287547 0.368126 0.884195 +-0.39588 0.368124 0.841288 -0.359968 0.315938 -0.396098 0.368126 0.841183 +-0.509602 0.309017 0.803004 -0.319968 0.345492 -0.509773 0.309018 0.802894 +-0.404941 0.309017 0.860542 -0.359968 0.345492 -0.405124 0.309018 0.860455 +-0.4982 0.368124 0.785037 -0.319968 0.315938 -0.498403 0.368126 0.784906 +-0.509602 0.309017 0.803004 -0.319968 0.345492 -0.509773 0.309018 0.802894 +-0.39588 0.368124 0.841288 -0.359968 0.315938 -0.396098 0.368126 0.841183 +-0.4982 0.368124 0.785037 -0.319968 0.315938 -0.498403 0.368126 0.784906 +-0.606227 0.309017 0.732802 -0.279968 0.345492 -0.606382 0.309018 0.732672 +-0.509602 0.309017 0.803004 -0.319968 0.345492 -0.509773 0.309018 0.802894 +-0.592662 0.368124 0.716406 -0.279968 0.315938 -0.592848 0.368126 0.716251 +-0.606227 0.309017 0.732802 -0.279968 0.345492 -0.606382 0.309018 0.732672 +-0.4982 0.368124 0.785037 -0.319968 0.315938 -0.498403 0.368126 0.784906 +-0.592662 0.368124 0.716406 -0.279968 0.315938 -0.592848 0.368126 0.716251 +-0.693291 0.309017 0.651043 -0.239968 0.345492 -0.69343 0.309018 0.650894 +-0.606227 0.309017 0.732802 -0.279968 0.345492 -0.606382 0.309018 0.732672 +-0.677778 0.368124 0.636476 -0.239968 0.315938 -0.677943 0.368126 0.636299 +-0.693291 0.309017 0.651043 -0.239968 0.345492 -0.69343 0.309018 0.650894 +-0.592662 0.368124 0.716406 -0.279968 0.315938 -0.592848 0.368126 0.716251 +-0.677778 0.368124 0.636476 -0.239968 0.315938 -0.677943 0.368126 0.636299 +-0.769421 0.309017 0.559017 -0.199968 0.345492 -0.76954 0.309018 0.558852 +-0.693291 0.309017 0.651043 -0.239968 0.345492 -0.69343 0.309018 0.650894 +-0.752206 0.368124 0.546509 -0.199968 0.315938 -0.752347 0.368126 0.546313 +-0.769421 0.309017 0.559017 -0.199968 0.345492 -0.76954 0.309018 0.558852 +-0.677778 0.368124 0.636476 -0.239968 0.315938 -0.677943 0.368126 0.636299 +-0.752206 0.368124 0.546509 -0.199968 0.315938 -0.752347 0.368126 0.546313 +-0.833418 0.309017 0.458175 -0.159968 0.345492 -0.833515 0.309018 0.457997 +-0.769421 0.309017 0.559017 -0.199968 0.345492 -0.76954 0.309018 0.558852 +-0.81477 0.368124 0.447923 -0.159968 0.315938 -0.814886 0.368125 0.447711 +-0.833418 0.309017 0.458175 -0.159968 0.345492 -0.833515 0.309018 0.457997 +-0.752206 0.368124 0.546509 -0.199968 0.315938 -0.752347 0.368126 0.546313 +-0.81477 0.368124 0.447923 -0.159968 0.315938 -0.814886 0.368125 0.447711 +-0.884271 0.309017 0.350107 -0.119968 0.345492 -0.884344 0.309019 0.349918 +-0.833418 0.309017 0.458175 -0.159968 0.345492 -0.833515 0.309018 0.457997 +-0.864485 0.368124 0.342274 -0.119968 0.315938 -0.864573 0.368126 0.342049 +-0.884271 0.309017 0.350107 -0.119968 0.345492 -0.884344 0.309019 0.349918 +-0.81477 0.368124 0.447923 -0.159968 0.315938 -0.814886 0.368125 0.447711 +-0.864485 0.368124 0.342274 -0.119968 0.315938 -0.864573 0.368126 0.342049 +-0.921178 0.309017 0.236518 -0.079968 0.345492 -0.921227 0.309018 0.236321 +-0.884271 0.309017 0.350107 -0.119968 0.345492 -0.884344 0.309019 0.349918 +-0.900566 0.368124 0.231226 -0.079968 0.315938 -0.900625 0.368126 0.230992 +-0.921178 0.309017 0.236518 -0.079968 0.345492 -0.921227 0.309018 0.236321 +-0.864485 0.368124 0.342274 -0.119968 0.315938 -0.864573 0.368126 0.342049 +-0.900566 0.368124 0.231226 -0.079968 0.315938 -0.900625 0.368126 0.230992 +-0.943558 0.309017 0.119199 -0.039968 0.345492 -0.943582 0.309018 0.118998 +-0.921178 0.309017 0.236518 -0.079968 0.345492 -0.921227 0.309018 0.236321 +-0.922446 0.368124 0.116532 -0.039968 0.315938 -0.922475 0.368126 0.116292 +-0.943558 0.309017 0.119199 -0.039968 0.345492 -0.943582 0.309018 0.118998 +-0.900566 0.368124 0.231226 -0.079968 0.315938 -0.900625 0.368126 0.230992 +-0.922446 0.368124 0.116532 -0.039968 0.315938 -0.922475 0.368126 0.116292 +-0.951057 0.309017 -0 3.2e-005 0.345492 -0.951056 0.309018 -0.000203 +-0.943558 0.309017 0.119199 -0.039968 0.345492 -0.943582 0.309018 0.118998 +-0.929777 0.368124 -0 3.2e-005 0.315938 -0.929776 0.368127 -0.000242 +-0.951057 0.309017 -0 3.2e-005 0.345492 -0.951056 0.309018 -0.000203 +-0.922446 0.368124 0.116532 -0.039968 0.315938 -0.922475 0.368126 0.116292 +-0.929777 0.368124 -0 3.2e-005 0.315938 -0.929776 0.368127 -0.000242 +-0.943558 0.309017 -0.119199 0.040032 0.345492 -0.943531 0.309018 -0.119401 +-0.951057 0.309017 -0 3.2e-005 0.345492 -0.951056 0.309018 -0.000203 +-0.922445 0.368124 -0.116532 0.040032 0.315938 -0.922414 0.368126 -0.116772 +-0.943558 0.309017 -0.119199 0.040032 0.345492 -0.943531 0.309018 -0.119401 +-0.929777 0.368124 -0 3.2e-005 0.315938 -0.929776 0.368127 -0.000242 +-0.922445 0.368124 -0.116532 0.040032 0.315938 -0.922414 0.368126 -0.116772 +-0.921178 0.309017 -0.236518 0.080032 0.345492 -0.921126 0.309018 -0.236715 +-0.943558 0.309017 -0.119199 0.040032 0.345492 -0.943531 0.309018 -0.119401 +-0.900566 0.368124 -0.231226 0.080032 0.315938 -0.900505 0.368126 -0.23146 +-0.921178 0.309017 -0.236518 0.080032 0.345492 -0.921126 0.309018 -0.236715 +-0.922445 0.368124 -0.116532 0.040032 0.315938 -0.922414 0.368126 -0.116772 +-0.900566 0.368124 -0.231226 0.080032 0.315938 -0.900505 0.368126 -0.23146 +-0.884271 0.309017 -0.350108 0.120032 0.345492 -0.884195 0.309018 -0.350296 +-0.921178 0.309017 -0.236518 0.080032 0.345492 -0.921126 0.309018 -0.236715 +-0.864485 0.368124 -0.342274 0.120032 0.315938 -0.864395 0.368126 -0.342499 +-0.884271 0.309017 -0.350108 0.120032 0.345492 -0.884195 0.309018 -0.350296 +-0.900566 0.368124 -0.231226 0.080032 0.315938 -0.900505 0.368126 -0.23146 +-0.864485 0.368124 -0.342274 0.120032 0.315938 -0.864395 0.368126 -0.342499 +-0.833418 0.309017 -0.458175 0.160032 0.345492 -0.833319 0.309019 -0.458353 +-0.884271 0.309017 -0.350108 0.120032 0.345492 -0.884195 0.309018 -0.350296 +-0.81477 0.368124 -0.447924 0.160032 0.315938 -0.814652 0.368126 -0.448135 +-0.833418 0.309017 -0.458175 0.160032 0.345492 -0.833319 0.309019 -0.458353 +-0.864485 0.368124 -0.342274 0.120032 0.315938 -0.864395 0.368126 -0.342499 +-0.81477 0.368124 -0.447924 0.160032 0.315938 -0.814652 0.368126 -0.448135 +-0.769421 0.309017 -0.559017 0.200032 0.345492 -0.769301 0.309018 -0.559181 +-0.833418 0.309017 -0.458175 0.160032 0.345492 -0.833319 0.309019 -0.458353 +-0.752205 0.368124 -0.546509 0.200032 0.315938 -0.752062 0.368126 -0.546704 +-0.769421 0.309017 -0.559017 0.200032 0.345492 -0.769301 0.309018 -0.559181 +-0.81477 0.368124 -0.447924 0.160032 0.315938 -0.814652 0.368126 -0.448135 +-0.752205 0.368124 -0.546509 0.200032 0.315938 -0.752062 0.368126 -0.546704 +-0.693291 0.309017 -0.651043 0.240032 0.345492 -0.693151 0.309018 -0.651191 +-0.769421 0.309017 -0.559017 0.200032 0.345492 -0.769301 0.309018 -0.559181 +-0.677778 0.368124 -0.636476 0.240032 0.315938 -0.677612 0.368126 -0.636652 +-0.693291 0.309017 -0.651043 0.240032 0.345492 -0.693151 0.309018 -0.651191 +-0.752205 0.368124 -0.546509 0.200032 0.315938 -0.752062 0.368126 -0.546704 +-0.677778 0.368124 -0.636476 0.240032 0.315938 -0.677612 0.368126 -0.636652 +-0.606226 0.309017 -0.732802 0.280032 0.345492 -0.606069 0.309018 -0.732931 +-0.693291 0.309017 -0.651043 0.240032 0.345492 -0.693151 0.309018 -0.651191 +-0.592662 0.368124 -0.716406 0.280032 0.315938 -0.592475 0.368126 -0.716559 +-0.606226 0.309017 -0.732802 0.280032 0.345492 -0.606069 0.309018 -0.732931 +-0.677778 0.368124 -0.636476 0.240032 0.315938 -0.677612 0.368126 -0.636652 +-0.592662 0.368124 -0.716406 0.280032 0.315938 -0.592475 0.368126 -0.716559 +-0.509602 0.309017 -0.803004 0.320032 0.345492 -0.50943 0.309018 -0.803112 +-0.606226 0.309017 -0.732802 0.280032 0.345492 -0.606069 0.309018 -0.732931 +-0.498199 0.368124 -0.785037 0.320032 0.315938 -0.497995 0.368125 -0.785166 +-0.509602 0.309017 -0.803004 0.320032 0.345492 -0.50943 0.309018 -0.803112 +-0.592662 0.368124 -0.716406 0.280032 0.315938 -0.592475 0.368126 -0.716559 +-0.498199 0.368124 -0.785037 0.320032 0.315938 -0.497995 0.368125 -0.785166 +-0.40494 0.309017 -0.860542 0.360032 0.345492 -0.404756 0.309018 -0.860628 +-0.509602 0.309017 -0.803004 0.320032 0.345492 -0.50943 0.309018 -0.803112 +-0.39588 0.368124 -0.841287 0.360032 0.315938 -0.39566 0.368126 -0.84139 +-0.40494 0.309017 -0.860542 0.360032 0.345492 -0.404756 0.309018 -0.860628 +-0.498199 0.368124 -0.785037 0.320032 0.315938 -0.497995 0.368125 -0.785166 +-0.39588 0.368124 -0.841287 0.360032 0.315938 -0.39566 0.368126 -0.84139 +-0.293893 0.309017 -0.904509 0.400032 0.345492 -0.293699 0.309018 -0.904571 +-0.40494 0.309017 -0.860542 0.360032 0.345492 -0.404756 0.309018 -0.860628 +-0.287317 0.368124 -0.88427 0.400032 0.315938 -0.287086 0.368126 -0.884344 +-0.293893 0.309017 -0.904509 0.400032 0.345492 -0.293699 0.309018 -0.904571 +-0.39588 0.368124 -0.841287 0.360032 0.315938 -0.39566 0.368126 -0.84139 +-0.287317 0.368124 -0.88427 0.400032 0.315938 -0.287086 0.368126 -0.884344 +-0.17821 0.309017 -0.934211 0.440032 0.345492 -0.178011 0.309018 -0.934249 +-0.293893 0.309017 -0.904509 0.400032 0.345492 -0.293699 0.309018 -0.904571 +-0.174223 0.368124 -0.913308 0.440032 0.315938 -0.173985 0.368126 -0.913352 +-0.17821 0.309017 -0.934211 0.440032 0.345492 -0.178011 0.309018 -0.934249 +-0.287317 0.368124 -0.88427 0.400032 0.315938 -0.287086 0.368126 -0.884344 +-0.174223 0.368124 -0.913308 0.440032 0.315938 -0.173985 0.368126 -0.913352 +-0.059717 0.309017 -0.94918 0.480032 0.345492 -0.059514 0.309018 -0.949192 +-0.17821 0.309017 -0.934211 0.440032 0.345492 -0.178011 0.309018 -0.934249 +-0.058381 0.368124 -0.927942 0.480032 0.315938 -0.058139 0.368126 -0.927957 +-0.059717 0.309017 -0.94918 0.480032 0.345492 -0.059514 0.309018 -0.949192 +-0.174223 0.368124 -0.913308 0.440032 0.315938 -0.173985 0.368126 -0.913352 +-0.058381 0.368124 -0.927942 0.480032 0.315938 -0.058139 0.368126 -0.927957 +0.059717 0.309017 -0.94918 0.520032 0.345492 0.05992 0.309018 -0.949167 +-0.059717 0.309017 -0.94918 0.480032 0.345492 -0.059514 0.309018 -0.949192 +0.058381 0.368124 -0.927942 0.520032 0.315938 0.058623 0.368126 -0.927926 +0.059717 0.309017 -0.94918 0.520032 0.345492 0.05992 0.309018 -0.949167 +-0.058381 0.368124 -0.927942 0.480032 0.315938 -0.058139 0.368126 -0.927957 +0.058381 0.368124 -0.927942 0.520032 0.315938 0.058623 0.368126 -0.927926 +0.17821 0.309017 -0.934211 0.560032 0.345492 0.17841 0.309018 -0.934172 +0.059717 0.309017 -0.94918 0.520032 0.345492 0.05992 0.309018 -0.949167 +0.174223 0.368124 -0.913308 0.560032 0.315938 0.17446 0.368126 -0.913262 +0.17821 0.309017 -0.934211 0.560032 0.345492 0.17841 0.309018 -0.934172 +0.058381 0.368124 -0.927942 0.520032 0.315938 0.058623 0.368126 -0.927926 +0.174223 0.368124 -0.913308 0.560032 0.315938 0.17446 0.368126 -0.913262 +0.293893 0.309017 -0.904509 0.600032 0.345492 0.294086 0.309018 -0.904445 +0.17821 0.309017 -0.934211 0.560032 0.345492 0.17841 0.309018 -0.934172 +0.287317 0.368124 -0.88427 0.600032 0.315938 0.287547 0.368126 -0.884195 +0.293893 0.309017 -0.904509 0.600032 0.345492 0.294086 0.309018 -0.904445 +0.174223 0.368124 -0.913308 0.560032 0.315938 0.17446 0.368126 -0.913262 +0.287317 0.368124 -0.88427 0.600032 0.315938 0.287547 0.368126 -0.884195 +0.40494 0.309017 -0.860542 0.640032 0.345492 0.405124 0.309018 -0.860455 +0.293893 0.309017 -0.904509 0.600032 0.345492 0.294086 0.309018 -0.904445 +0.39588 0.368124 -0.841287 0.640032 0.315938 0.396098 0.368126 -0.841183 +0.40494 0.309017 -0.860542 0.640032 0.345492 0.405124 0.309018 -0.860455 +0.287317 0.368124 -0.88427 0.600032 0.315938 0.287547 0.368126 -0.884195 +0.39588 0.368124 -0.841287 0.640032 0.315938 0.396098 0.368126 -0.841183 +0.509602 0.309017 -0.803004 0.680032 0.345492 0.509773 0.309018 -0.802894 +0.40494 0.309017 -0.860542 0.640032 0.345492 0.405124 0.309018 -0.860455 +0.498199 0.368124 -0.785036 0.680032 0.315938 0.498403 0.368126 -0.784906 +0.509602 0.309017 -0.803004 0.680032 0.345492 0.509773 0.309018 -0.802894 +0.39588 0.368124 -0.841287 0.640032 0.315938 0.396098 0.368126 -0.841183 +0.498199 0.368124 -0.785036 0.680032 0.315938 0.498403 0.368126 -0.784906 +0.606226 0.309017 -0.732802 0.720032 0.345492 0.606383 0.309018 -0.732672 +0.509602 0.309017 -0.803004 0.680032 0.345492 0.509773 0.309018 -0.802894 +0.592662 0.368124 -0.716405 0.720032 0.315938 0.592848 0.368126 -0.716251 +0.606226 0.309017 -0.732802 0.720032 0.345492 0.606383 0.309018 -0.732672 +0.498199 0.368124 -0.785036 0.680032 0.315938 0.498403 0.368126 -0.784906 +0.592662 0.368124 -0.716405 0.720032 0.315938 0.592848 0.368126 -0.716251 +0.693291 0.309017 -0.651043 0.760032 0.345492 0.693429 0.309018 -0.650895 +0.606226 0.309017 -0.732802 0.720032 0.345492 0.606383 0.309018 -0.732672 +0.677778 0.368124 -0.636476 0.760032 0.315938 0.677943 0.368126 -0.636299 +0.693291 0.309017 -0.651043 0.760032 0.345492 0.693429 0.309018 -0.650895 +0.592662 0.368124 -0.716405 0.720032 0.315938 0.592848 0.368126 -0.716251 +0.677778 0.368124 -0.636476 0.760032 0.315938 0.677943 0.368126 -0.636299 +0.769421 0.309017 -0.559017 0.800032 0.345492 0.76954 0.309018 -0.558852 +0.693291 0.309017 -0.651043 0.760032 0.345492 0.693429 0.309018 -0.650895 +0.752205 0.368124 -0.546509 0.800032 0.315938 0.752347 0.368126 -0.546313 +0.769421 0.309017 -0.559017 0.800032 0.345492 0.76954 0.309018 -0.558852 +0.677778 0.368124 -0.636476 0.760032 0.315938 0.677943 0.368126 -0.636299 +0.752205 0.368124 -0.546509 0.800032 0.315938 0.752347 0.368126 -0.546313 +0.833417 0.309017 -0.458175 0.840032 0.345492 0.833515 0.309018 -0.457997 +0.769421 0.309017 -0.559017 0.800032 0.345492 0.76954 0.309018 -0.558852 +0.814769 0.368124 -0.447923 0.840032 0.315938 0.814885 0.368126 -0.447711 +0.833417 0.309017 -0.458175 0.840032 0.345492 0.833515 0.309018 -0.457997 +0.752205 0.368124 -0.546509 0.800032 0.315938 0.752347 0.368126 -0.546313 +0.814769 0.368124 -0.447923 0.840032 0.315938 0.814885 0.368126 -0.447711 +0.88427 0.309017 -0.350107 0.880032 0.345492 0.884344 0.309018 -0.349918 +0.833417 0.309017 -0.458175 0.840032 0.345492 0.833515 0.309018 -0.457997 +0.864484 0.368124 -0.342274 0.880032 0.315938 0.864573 0.368126 -0.342049 +0.88427 0.309017 -0.350107 0.880032 0.345492 0.884344 0.309018 -0.349918 +0.814769 0.368124 -0.447923 0.840032 0.315938 0.814885 0.368126 -0.447711 +0.864484 0.368124 -0.342274 0.880032 0.315938 0.864573 0.368126 -0.342049 +0.921177 0.309017 -0.236518 0.920032 0.345492 0.921228 0.309018 -0.236322 +0.88427 0.309017 -0.350107 0.880032 0.345492 0.884344 0.309018 -0.349918 +0.900566 0.368124 -0.231226 0.920032 0.315938 0.900626 0.368125 -0.230992 +0.921177 0.309017 -0.236518 0.920032 0.345492 0.921228 0.309018 -0.236322 +0.864484 0.368124 -0.342274 0.880032 0.315938 0.864573 0.368126 -0.342049 +0.900566 0.368124 -0.231226 0.920032 0.315938 0.900626 0.368125 -0.230992 +0.943557 0.309017 -0.119199 0.960032 0.345492 0.943582 0.309018 -0.118998 +0.921177 0.309017 -0.236518 0.920032 0.345492 0.921228 0.309018 -0.236322 +0.922445 0.368124 -0.116532 0.960032 0.315938 0.922475 0.368126 -0.116292 +0.943557 0.309017 -0.119199 0.960032 0.345492 0.943582 0.309018 -0.118998 +0.900566 0.368124 -0.231226 0.920032 0.315938 0.900626 0.368125 -0.230992 +0.922445 0.368124 -0.116532 0.960032 0.315938 0.922475 0.368126 -0.116292 +0.951057 0.309017 -0 1.00003 0.345492 0.951056 0.309019 0.000199 +0.943557 0.309017 -0.119199 0.960032 0.345492 0.943582 0.309018 -0.118998 +0.929777 0.368124 -0 1.00003 0.315938 0.929776 0.368125 0.000238 +0.951057 0.309017 -0 1.00003 0.345492 0.951056 0.309019 0.000199 +0.922445 0.368124 -0.116532 0.960032 0.315938 0.922475 0.368126 -0.116292 +0.929777 0.368124 -0 1.00003 0.315938 0.929776 0.368125 0.000238 +0.943558 0.309017 0.119199 1.04003 0.345492 0.943532 0.309018 0.119397 +0.951057 0.309017 -0 1.00003 0.345492 0.951056 0.309019 0.000199 +0.922446 0.368124 0.116532 1.04003 0.315938 0.922414 0.368126 0.116768 +0.943558 0.309017 0.119199 1.04003 0.345492 0.943532 0.309018 0.119397 +0.929777 0.368124 -0 1.00003 0.315938 0.929776 0.368125 0.000238 +0.897693 0.425779 0.113405 1.04003 0.28711 0.897657 0.425781 0.113679 +0.900567 0.368124 0.231226 1.08003 0.315938 0.900505 0.368126 0.23146 +0.922446 0.368124 0.116532 1.04003 0.315938 0.922414 0.368126 0.116768 +0.876401 0.425779 0.225022 1.08003 0.28711 0.87633 0.42578 0.225292 +0.900567 0.368124 0.231226 1.08003 0.315938 0.900505 0.368126 0.23146 +0.897693 0.425779 0.113405 1.04003 0.28711 0.897657 0.425781 0.113679 +0.876401 0.425779 0.225022 1.08003 0.28711 0.87633 0.42578 0.225292 +0.864485 0.368124 0.342274 1.12003 0.315938 0.864395 0.368126 0.342498 +0.900567 0.368124 0.231226 1.08003 0.315938 0.900505 0.368126 0.23146 +0.841288 0.425779 0.333089 1.12003 0.28711 0.841183 0.425781 0.333349 +0.864485 0.368124 0.342274 1.12003 0.315938 0.864395 0.368126 0.342498 +0.876401 0.425779 0.225022 1.08003 0.28711 0.87633 0.42578 0.225292 +0.841288 0.425779 0.333089 1.12003 0.28711 0.841183 0.425781 0.333349 +0.81477 0.368124 0.447924 1.16003 0.315938 0.814652 0.368126 0.448135 +0.864485 0.368124 0.342274 1.12003 0.315938 0.864395 0.368126 0.342498 +0.792907 0.425779 0.435904 1.16003 0.28711 0.792771 0.425781 0.436149 +0.81477 0.368124 0.447924 1.16003 0.315938 0.814652 0.368126 0.448135 +0.841288 0.425779 0.333089 1.12003 0.28711 0.841183 0.425781 0.333349 +0.792907 0.425779 0.435904 1.16003 0.28711 0.792771 0.425781 0.436149 +0.752206 0.368124 0.54651 1.20003 0.315938 0.752062 0.368126 0.546704 +0.81477 0.368124 0.447924 1.16003 0.315938 0.814652 0.368126 0.448135 +0.732021 0.425779 0.531845 1.20003 0.28711 0.731855 0.425781 0.53207 +0.752206 0.368124 0.54651 1.20003 0.315938 0.752062 0.368126 0.546704 +0.792907 0.425779 0.435904 1.16003 0.28711 0.792771 0.425781 0.436149 +0.732021 0.425779 0.531845 1.20003 0.28711 0.731855 0.425781 0.53207 +0.677779 0.368124 0.636476 1.24003 0.315938 0.677612 0.368127 0.636652 +0.752206 0.368124 0.54651 1.20003 0.315938 0.752062 0.368126 0.546704 +0.659591 0.425779 0.619397 1.24003 0.28711 0.659398 0.425781 0.6196 +0.677779 0.368124 0.636476 1.24003 0.315938 0.677612 0.368127 0.636652 +0.732021 0.425779 0.531845 1.20003 0.28711 0.731855 0.425781 0.53207 +0.659591 0.425779 0.619397 1.24003 0.28711 0.659398 0.425781 0.6196 +0.592662 0.368124 0.716406 1.28003 0.315938 0.592475 0.368126 0.716559 +0.677779 0.368124 0.636476 1.24003 0.315938 0.677612 0.368127 0.636652 +0.576759 0.425779 0.697182 1.28003 0.28711 0.576542 0.425781 0.697359 +0.592662 0.368124 0.716406 1.28003 0.315938 0.592475 0.368126 0.716559 +0.659591 0.425779 0.619397 1.24003 0.28711 0.659398 0.425781 0.6196 +0.576759 0.425779 0.697182 1.28003 0.28711 0.576542 0.425781 0.697359 +0.4982 0.368124 0.785037 1.32003 0.315938 0.497994 0.368126 0.785166 +0.592662 0.368124 0.716406 1.28003 0.315938 0.592475 0.368126 0.716559 +0.484831 0.425779 0.763972 1.32003 0.28711 0.484594 0.425781 0.76412 +0.4982 0.368124 0.785037 1.32003 0.315938 0.497994 0.368126 0.785166 +0.576759 0.425779 0.697182 1.28003 0.28711 0.576542 0.425781 0.697359 +0.484831 0.425779 0.763972 1.32003 0.28711 0.484594 0.425781 0.76412 +0.39588 0.368124 0.841288 1.36003 0.315938 0.39566 0.368126 0.84139 +0.4982 0.368124 0.785037 1.32003 0.315938 0.497994 0.368126 0.785166 +0.385257 0.425779 0.818713 1.36003 0.28711 0.385003 0.425781 0.818831 +0.39588 0.368124 0.841288 1.36003 0.315938 0.39566 0.368126 0.84139 +0.484831 0.425779 0.763972 1.32003 0.28711 0.484594 0.425781 0.76412 +0.385257 0.425779 0.818713 1.36003 0.28711 0.385003 0.425781 0.818831 +0.287317 0.368124 0.884271 1.40003 0.315938 0.287086 0.368126 0.884344 +0.39588 0.368124 0.841288 1.36003 0.315938 0.39566 0.368126 0.84139 +0.279607 0.425779 0.860542 1.40003 0.28711 0.279341 0.425781 0.860628 +0.287317 0.368124 0.884271 1.40003 0.315938 0.287086 0.368126 0.884344 +0.385257 0.425779 0.818713 1.36003 0.28711 0.385003 0.425781 0.818831 +0.279607 0.425779 0.860542 1.40003 0.28711 0.279341 0.425781 0.860628 +0.174223 0.368124 0.913308 1.44003 0.315938 0.173985 0.368126 0.913352 +0.287317 0.368124 0.884271 1.40003 0.315938 0.287086 0.368126 0.884344 +0.169548 0.425779 0.888801 1.44003 0.28711 0.169273 0.425781 0.888852 +0.174223 0.368124 0.913308 1.44003 0.315938 0.173985 0.368126 0.913352 +0.279607 0.425779 0.860542 1.40003 0.28711 0.279341 0.425781 0.860628 +0.169548 0.425779 0.888801 1.44003 0.28711 0.169273 0.425781 0.888852 +0.058381 0.368124 0.927943 1.48003 0.315938 0.058139 0.368126 0.927956 +0.174223 0.368124 0.913308 1.44003 0.315938 0.173985 0.368126 0.913352 +0.056815 0.425779 0.903042 1.48003 0.28711 0.056535 0.425781 0.903058 +0.058381 0.368124 0.927943 1.48003 0.315938 0.058139 0.368126 0.927956 +0.169548 0.425779 0.888801 1.44003 0.28711 0.169273 0.425781 0.888852 +0.056815 0.425779 0.903042 1.48003 0.28711 0.056535 0.425781 0.903058 +-0.058381 0.368124 0.927943 1.52003 0.315938 -0.058623 0.368126 0.927926 +0.058381 0.368124 0.927943 1.48003 0.315938 0.058139 0.368126 0.927956 +-0.056815 0.425779 0.903042 1.52003 0.28711 -0.057094 0.425781 0.903023 +-0.058381 0.368124 0.927943 1.52003 0.315938 -0.058623 0.368126 0.927926 +0.056815 0.425779 0.903042 1.48003 0.28711 0.056535 0.425781 0.903058 +-0.056815 0.425779 0.903042 -0.479968 0.28711 -0.057094 0.425781 0.903023 +-0.174223 0.368124 0.913308 -0.439968 0.315938 -0.17446 0.368126 0.913262 +-0.058381 0.368124 0.927943 -0.479968 0.315938 -0.058623 0.368126 0.927926 +-0.169548 0.425779 0.888801 -0.439968 0.28711 -0.169822 0.425781 0.888747 +-0.174223 0.368124 0.913308 -0.439968 0.315938 -0.17446 0.368126 0.913262 +-0.056815 0.425779 0.903042 -0.479968 0.28711 -0.057094 0.425781 0.903023 +-0.169548 0.425779 0.888801 -0.439968 0.28711 -0.169822 0.425781 0.888747 +-0.287317 0.368124 0.884271 -0.399968 0.315938 -0.287547 0.368126 0.884195 +-0.174223 0.368124 0.913308 -0.439968 0.315938 -0.17446 0.368126 0.913262 +-0.279607 0.425779 0.860542 -0.399968 0.28711 -0.279873 0.425781 0.860454 +-0.287317 0.368124 0.884271 -0.399968 0.315938 -0.287547 0.368126 0.884195 +-0.169548 0.425779 0.888801 -0.439968 0.28711 -0.169822 0.425781 0.888747 +-0.279607 0.425779 0.860542 -0.399968 0.28711 -0.279873 0.425781 0.860454 +-0.39588 0.368124 0.841288 -0.359968 0.315938 -0.396098 0.368126 0.841183 +-0.287317 0.368124 0.884271 -0.399968 0.315938 -0.287547 0.368126 0.884195 +-0.385257 0.425779 0.818713 -0.359968 0.28711 -0.38551 0.425781 0.818592 +-0.39588 0.368124 0.841288 -0.359968 0.315938 -0.396098 0.368126 0.841183 +-0.279607 0.425779 0.860542 -0.399968 0.28711 -0.279873 0.425781 0.860454 +-0.385257 0.425779 0.818713 -0.359968 0.28711 -0.38551 0.425781 0.818592 +-0.4982 0.368124 0.785037 -0.319968 0.315938 -0.498403 0.368126 0.784906 +-0.39588 0.368124 0.841288 -0.359968 0.315938 -0.396098 0.368126 0.841183 +-0.484831 0.425779 0.763971 -0.319968 0.28711 -0.485066 0.42578 0.76382 +-0.4982 0.368124 0.785037 -0.319968 0.315938 -0.498403 0.368126 0.784906 +-0.385257 0.425779 0.818713 -0.359968 0.28711 -0.38551 0.425781 0.818592 +-0.484831 0.425779 0.763971 -0.319968 0.28711 -0.485066 0.42578 0.76382 +-0.592662 0.368124 0.716406 -0.279968 0.315938 -0.592848 0.368126 0.716251 +-0.4982 0.368124 0.785037 -0.319968 0.315938 -0.498403 0.368126 0.784906 +-0.576759 0.425779 0.697182 -0.279968 0.28711 -0.576974 0.425781 0.697002 +-0.592662 0.368124 0.716406 -0.279968 0.315938 -0.592848 0.368126 0.716251 +-0.484831 0.425779 0.763971 -0.319968 0.28711 -0.485066 0.42578 0.76382 +-0.576759 0.425779 0.697182 -0.279968 0.28711 -0.576974 0.425781 0.697002 +-0.677778 0.368124 0.636476 -0.239968 0.315938 -0.677943 0.368126 0.636299 +-0.592662 0.368124 0.716406 -0.279968 0.315938 -0.592848 0.368126 0.716251 +-0.659591 0.425779 0.619397 -0.239968 0.28711 -0.659782 0.42578 0.619192 +-0.677778 0.368124 0.636476 -0.239968 0.315938 -0.677943 0.368126 0.636299 +-0.576759 0.425779 0.697182 -0.279968 0.28711 -0.576974 0.425781 0.697002 +-0.659591 0.425779 0.619397 -0.239968 0.28711 -0.659782 0.42578 0.619192 +-0.752206 0.368124 0.546509 -0.199968 0.315938 -0.752347 0.368126 0.546313 +-0.677778 0.368124 0.636476 -0.239968 0.315938 -0.677943 0.368126 0.636299 +-0.732021 0.425779 0.531844 -0.199968 0.28711 -0.732185 0.42578 0.531617 +-0.752206 0.368124 0.546509 -0.199968 0.315938 -0.752347 0.368126 0.546313 +-0.659591 0.425779 0.619397 -0.239968 0.28711 -0.659782 0.42578 0.619192 +-0.732021 0.425779 0.531844 -0.199968 0.28711 -0.732185 0.42578 0.531617 +-0.81477 0.368124 0.447923 -0.159968 0.315938 -0.814886 0.368125 0.447711 +-0.752206 0.368124 0.546509 -0.199968 0.315938 -0.752347 0.368126 0.546313 +-0.792907 0.425779 0.435904 -0.159968 0.28711 -0.79304 0.42578 0.435658 +-0.81477 0.368124 0.447923 -0.159968 0.315938 -0.814886 0.368125 0.447711 +-0.732021 0.425779 0.531844 -0.199968 0.28711 -0.732185 0.42578 0.531617 +-0.792907 0.425779 0.435904 -0.159968 0.28711 -0.79304 0.42578 0.435658 +-0.864485 0.368124 0.342274 -0.119968 0.315938 -0.864573 0.368126 0.342049 +-0.81477 0.368124 0.447923 -0.159968 0.315938 -0.814886 0.368125 0.447711 +-0.841287 0.425779 0.333089 -0.119968 0.28711 -0.841389 0.42578 0.332829 +-0.864485 0.368124 0.342274 -0.119968 0.315938 -0.864573 0.368126 0.342049 +-0.792907 0.425779 0.435904 -0.159968 0.28711 -0.79304 0.42578 0.435658 +-0.841287 0.425779 0.333089 -0.119968 0.28711 -0.841389 0.42578 0.332829 +-0.900566 0.368124 0.231226 -0.079968 0.315938 -0.900625 0.368126 0.230992 +-0.864485 0.368124 0.342274 -0.119968 0.315938 -0.864573 0.368126 0.342049 +-0.876401 0.425779 0.225021 -0.079968 0.28711 -0.876469 0.42578 0.22475 +-0.900566 0.368124 0.231226 -0.079968 0.315938 -0.900625 0.368126 0.230992 +-0.841287 0.425779 0.333089 -0.119968 0.28711 -0.841389 0.42578 0.332829 +-0.876401 0.425779 0.225021 -0.079968 0.28711 -0.876469 0.42578 0.22475 +-0.922446 0.368124 0.116532 -0.039968 0.315938 -0.922475 0.368126 0.116292 +-0.900566 0.368124 0.231226 -0.079968 0.315938 -0.900625 0.368126 0.230992 +-0.897693 0.425779 0.113405 -0.039968 0.28711 -0.897727 0.42578 0.113127 +-0.922446 0.368124 0.116532 -0.039968 0.315938 -0.922475 0.368126 0.116292 +-0.876401 0.425779 0.225021 -0.079968 0.28711 -0.876469 0.42578 0.22475 +-0.897693 0.425779 0.113405 -0.039968 0.28711 -0.897727 0.42578 0.113127 +-0.929777 0.368124 -0 3.2e-005 0.315938 -0.929776 0.368127 -0.000242 +-0.922446 0.368124 0.116532 -0.039968 0.315938 -0.922475 0.368126 0.116292 +-0.904828 0.425779 -0 3.2e-005 0.28711 -0.904826 0.425781 -0.00028 +-0.929777 0.368124 -0 3.2e-005 0.315938 -0.929776 0.368127 -0.000242 +-0.897693 0.425779 0.113405 -0.039968 0.28711 -0.897727 0.42578 0.113127 +-0.904828 0.425779 -0 3.2e-005 0.28711 -0.904826 0.425781 -0.00028 +-0.922445 0.368124 -0.116532 0.040032 0.315938 -0.922414 0.368126 -0.116772 +-0.929777 0.368124 -0 3.2e-005 0.315938 -0.929776 0.368127 -0.000242 +-0.897693 0.425779 -0.113405 0.040032 0.28711 -0.897657 0.42578 -0.113682 +-0.922445 0.368124 -0.116532 0.040032 0.315938 -0.922414 0.368126 -0.116772 +-0.904828 0.425779 -0 3.2e-005 0.28711 -0.904826 0.425781 -0.00028 +-0.897693 0.425779 -0.113405 0.040032 0.28711 -0.897657 0.42578 -0.113682 +-0.900566 0.368124 -0.231226 0.080032 0.315938 -0.900505 0.368126 -0.23146 +-0.922445 0.368124 -0.116532 0.040032 0.315938 -0.922414 0.368126 -0.116772 +-0.876401 0.425779 -0.225022 0.080032 0.28711 -0.87633 0.425781 -0.225292 +-0.900566 0.368124 -0.231226 0.080032 0.315938 -0.900505 0.368126 -0.23146 +-0.897693 0.425779 -0.113405 0.040032 0.28711 -0.897657 0.42578 -0.113682 +-0.876401 0.425779 -0.225022 0.080032 0.28711 -0.87633 0.425781 -0.225292 +-0.864485 0.368124 -0.342274 0.120032 0.315938 -0.864395 0.368126 -0.342499 +-0.900566 0.368124 -0.231226 0.080032 0.315938 -0.900505 0.368126 -0.23146 +-0.841287 0.425779 -0.333089 0.120032 0.28711 -0.841183 0.425781 -0.333349 +-0.864485 0.368124 -0.342274 0.120032 0.315938 -0.864395 0.368126 -0.342499 +-0.876401 0.425779 -0.225022 0.080032 0.28711 -0.87633 0.425781 -0.225292 +-0.841287 0.425779 -0.333089 0.120032 0.28711 -0.841183 0.425781 -0.333349 +-0.81477 0.368124 -0.447924 0.160032 0.315938 -0.814652 0.368126 -0.448135 +-0.864485 0.368124 -0.342274 0.120032 0.315938 -0.864395 0.368126 -0.342499 +-0.792906 0.425779 -0.435904 0.160032 0.28711 -0.792771 0.425781 -0.436149 +-0.81477 0.368124 -0.447924 0.160032 0.315938 -0.814652 0.368126 -0.448135 +-0.841287 0.425779 -0.333089 0.120032 0.28711 -0.841183 0.425781 -0.333349 +-0.792906 0.425779 -0.435904 0.160032 0.28711 -0.792771 0.425781 -0.436149 +-0.752205 0.368124 -0.546509 0.200032 0.315938 -0.752062 0.368126 -0.546704 +-0.81477 0.368124 -0.447924 0.160032 0.315938 -0.814652 0.368126 -0.448135 +-0.732021 0.425779 -0.531844 0.200032 0.28711 -0.731856 0.42578 -0.53207 +-0.752205 0.368124 -0.546509 0.200032 0.315938 -0.752062 0.368126 -0.546704 +-0.792906 0.425779 -0.435904 0.160032 0.28711 -0.792771 0.425781 -0.436149 +-0.732021 0.425779 -0.531844 0.200032 0.28711 -0.731856 0.42578 -0.53207 +-0.677778 0.368124 -0.636476 0.240032 0.315938 -0.677612 0.368126 -0.636652 +-0.752205 0.368124 -0.546509 0.200032 0.315938 -0.752062 0.368126 -0.546704 +-0.659591 0.425779 -0.619397 0.240032 0.28711 -0.659399 0.42578 -0.6196 +-0.677778 0.368124 -0.636476 0.240032 0.315938 -0.677612 0.368126 -0.636652 +-0.732021 0.425779 -0.531844 0.200032 0.28711 -0.731856 0.42578 -0.53207 +-0.659591 0.425779 -0.619397 0.240032 0.28711 -0.659399 0.42578 -0.6196 +-0.592662 0.368124 -0.716406 0.280032 0.315938 -0.592475 0.368126 -0.716559 +-0.677778 0.368124 -0.636476 0.240032 0.315938 -0.677612 0.368126 -0.636652 +-0.576759 0.425779 -0.697182 0.280032 0.28711 -0.576543 0.42578 -0.697359 +-0.592662 0.368124 -0.716406 0.280032 0.315938 -0.592475 0.368126 -0.716559 +-0.659591 0.425779 -0.619397 0.240032 0.28711 -0.659399 0.42578 -0.6196 +-0.576759 0.425779 -0.697182 0.280032 0.28711 -0.576543 0.42578 -0.697359 +-0.498199 0.368124 -0.785037 0.320032 0.315938 -0.497995 0.368125 -0.785166 +-0.592662 0.368124 -0.716406 0.280032 0.315938 -0.592475 0.368126 -0.716559 +-0.484831 0.425779 -0.763971 0.320032 0.28711 -0.484594 0.42578 -0.76412 +-0.498199 0.368124 -0.785037 0.320032 0.315938 -0.497995 0.368125 -0.785166 +-0.576759 0.425779 -0.697182 0.280032 0.28711 -0.576543 0.42578 -0.697359 +-0.484831 0.425779 -0.763971 0.320032 0.28711 -0.484594 0.42578 -0.76412 +-0.39588 0.368124 -0.841287 0.360032 0.315938 -0.39566 0.368126 -0.84139 +-0.498199 0.368124 -0.785037 0.320032 0.315938 -0.497995 0.368125 -0.785166 +-0.385257 0.425779 -0.818712 0.360032 0.28711 -0.385003 0.425781 -0.818831 +-0.39588 0.368124 -0.841287 0.360032 0.315938 -0.39566 0.368126 -0.84139 +-0.484831 0.425779 -0.763971 0.320032 0.28711 -0.484594 0.42578 -0.76412 +-0.385257 0.425779 -0.818712 0.360032 0.28711 -0.385003 0.425781 -0.818831 +-0.287317 0.368124 -0.88427 0.400032 0.315938 -0.287086 0.368126 -0.884344 +-0.39588 0.368124 -0.841287 0.360032 0.315938 -0.39566 0.368126 -0.84139 +-0.279607 0.425779 -0.860542 0.400032 0.28711 -0.279341 0.42578 -0.860628 +-0.287317 0.368124 -0.88427 0.400032 0.315938 -0.287086 0.368126 -0.884344 +-0.385257 0.425779 -0.818712 0.360032 0.28711 -0.385003 0.425781 -0.818831 +-0.279607 0.425779 -0.860542 0.400032 0.28711 -0.279341 0.42578 -0.860628 +-0.174223 0.368124 -0.913308 0.440032 0.315938 -0.173985 0.368126 -0.913352 +-0.287317 0.368124 -0.88427 0.400032 0.315938 -0.287086 0.368126 -0.884344 +-0.169548 0.425779 -0.8888 0.440032 0.28711 -0.169273 0.425781 -0.888852 +-0.174223 0.368124 -0.913308 0.440032 0.315938 -0.173985 0.368126 -0.913352 +-0.279607 0.425779 -0.860542 0.400032 0.28711 -0.279341 0.42578 -0.860628 +-0.169548 0.425779 -0.8888 0.440032 0.28711 -0.169273 0.425781 -0.888852 +-0.058381 0.368124 -0.927942 0.480032 0.315938 -0.058139 0.368126 -0.927957 +-0.174223 0.368124 -0.913308 0.440032 0.315938 -0.173985 0.368126 -0.913352 +-0.056814 0.425779 -0.903042 0.480032 0.28711 -0.056535 0.425781 -0.903059 +-0.058381 0.368124 -0.927942 0.480032 0.315938 -0.058139 0.368126 -0.927957 +-0.169548 0.425779 -0.8888 0.440032 0.28711 -0.169273 0.425781 -0.888852 +-0.056814 0.425779 -0.903042 0.480032 0.28711 -0.056535 0.425781 -0.903059 +0.058381 0.368124 -0.927942 0.520032 0.315938 0.058623 0.368126 -0.927926 +-0.058381 0.368124 -0.927942 0.480032 0.315938 -0.058139 0.368126 -0.927957 +0.056815 0.425779 -0.903042 0.520032 0.28711 0.057094 0.425781 -0.903023 +0.058381 0.368124 -0.927942 0.520032 0.315938 0.058623 0.368126 -0.927926 +-0.056814 0.425779 -0.903042 0.480032 0.28711 -0.056535 0.425781 -0.903059 +0.056815 0.425779 -0.903042 0.520032 0.28711 0.057094 0.425781 -0.903023 +0.174223 0.368124 -0.913308 0.560032 0.315938 0.17446 0.368126 -0.913262 +0.058381 0.368124 -0.927942 0.520032 0.315938 0.058623 0.368126 -0.927926 +0.169548 0.425779 -0.8888 0.560032 0.28711 0.169823 0.42578 -0.888747 +0.174223 0.368124 -0.913308 0.560032 0.315938 0.17446 0.368126 -0.913262 +0.056815 0.425779 -0.903042 0.520032 0.28711 0.057094 0.425781 -0.903023 +0.169548 0.425779 -0.8888 0.560032 0.28711 0.169823 0.42578 -0.888747 +0.287317 0.368124 -0.88427 0.600032 0.315938 0.287547 0.368126 -0.884195 +0.174223 0.368124 -0.913308 0.560032 0.315938 0.17446 0.368126 -0.913262 +0.279607 0.425779 -0.860542 0.600032 0.28711 0.279873 0.42578 -0.860454 +0.287317 0.368124 -0.88427 0.600032 0.315938 0.287547 0.368126 -0.884195 +0.169548 0.425779 -0.8888 0.560032 0.28711 0.169823 0.42578 -0.888747 +0.279607 0.425779 -0.860542 0.600032 0.28711 0.279873 0.42578 -0.860454 +0.39588 0.368124 -0.841287 0.640032 0.315938 0.396098 0.368126 -0.841183 +0.287317 0.368124 -0.88427 0.600032 0.315938 0.287547 0.368126 -0.884195 +0.385257 0.425779 -0.818712 0.640032 0.28711 0.38551 0.425781 -0.818592 +0.39588 0.368124 -0.841287 0.640032 0.315938 0.396098 0.368126 -0.841183 +0.279607 0.425779 -0.860542 0.600032 0.28711 0.279873 0.42578 -0.860454 +0.385257 0.425779 -0.818712 0.640032 0.28711 0.38551 0.425781 -0.818592 +0.498199 0.368124 -0.785036 0.680032 0.315938 0.498403 0.368126 -0.784906 +0.39588 0.368124 -0.841287 0.640032 0.315938 0.396098 0.368126 -0.841183 +0.484831 0.425779 -0.763971 0.680032 0.28711 0.485067 0.425781 -0.76382 +0.498199 0.368124 -0.785036 0.680032 0.315938 0.498403 0.368126 -0.784906 +0.385257 0.425779 -0.818712 0.640032 0.28711 0.38551 0.425781 -0.818592 +0.484831 0.425779 -0.763971 0.680032 0.28711 0.485067 0.425781 -0.76382 +0.592662 0.368124 -0.716405 0.720032 0.315938 0.592848 0.368126 -0.716251 +0.498199 0.368124 -0.785036 0.680032 0.315938 0.498403 0.368126 -0.784906 +0.576759 0.425779 -0.697181 0.720032 0.28711 0.576973 0.425781 -0.697002 +0.592662 0.368124 -0.716405 0.720032 0.315938 0.592848 0.368126 -0.716251 +0.484831 0.425779 -0.763971 0.680032 0.28711 0.485067 0.425781 -0.76382 +0.576759 0.425779 -0.697181 0.720032 0.28711 0.576973 0.425781 -0.697002 +0.677778 0.368124 -0.636476 0.760032 0.315938 0.677943 0.368126 -0.636299 +0.592662 0.368124 -0.716405 0.720032 0.315938 0.592848 0.368126 -0.716251 +0.659591 0.425779 -0.619397 0.760032 0.28711 0.659782 0.425781 -0.619192 +0.677778 0.368124 -0.636476 0.760032 0.315938 0.677943 0.368126 -0.636299 +0.576759 0.425779 -0.697181 0.720032 0.28711 0.576973 0.425781 -0.697002 +0.659591 0.425779 -0.619397 0.760032 0.28711 0.659782 0.425781 -0.619192 +0.752205 0.368124 -0.546509 0.800032 0.315938 0.752347 0.368126 -0.546313 +0.677778 0.368124 -0.636476 0.760032 0.315938 0.677943 0.368126 -0.636299 +0.732021 0.425779 -0.531844 0.800032 0.28711 0.732185 0.42578 -0.531617 +0.752205 0.368124 -0.546509 0.800032 0.315938 0.752347 0.368126 -0.546313 +0.659591 0.425779 -0.619397 0.760032 0.28711 0.659782 0.425781 -0.619192 +0.732021 0.425779 -0.531844 0.800032 0.28711 0.732185 0.42578 -0.531617 +0.814769 0.368124 -0.447923 0.840032 0.315938 0.814885 0.368126 -0.447711 +0.752205 0.368124 -0.546509 0.800032 0.315938 0.752347 0.368126 -0.546313 +0.792906 0.425779 -0.435904 0.840032 0.28711 0.79304 0.42578 -0.435658 +0.814769 0.368124 -0.447923 0.840032 0.315938 0.814885 0.368126 -0.447711 +0.732021 0.425779 -0.531844 0.800032 0.28711 0.732185 0.42578 -0.531617 +0.792906 0.425779 -0.435904 0.840032 0.28711 0.79304 0.42578 -0.435658 +0.864484 0.368124 -0.342274 0.880032 0.315938 0.864573 0.368126 -0.342049 +0.814769 0.368124 -0.447923 0.840032 0.315938 0.814885 0.368126 -0.447711 +0.841287 0.425779 -0.333089 0.880032 0.28711 0.84139 0.42578 -0.332829 +0.864484 0.368124 -0.342274 0.880032 0.315938 0.864573 0.368126 -0.342049 +0.792906 0.425779 -0.435904 0.840032 0.28711 0.79304 0.42578 -0.435658 +0.841287 0.425779 -0.333089 0.880032 0.28711 0.84139 0.42578 -0.332829 +0.900566 0.368124 -0.231226 0.920032 0.315938 0.900626 0.368125 -0.230992 +0.864484 0.368124 -0.342274 0.880032 0.315938 0.864573 0.368126 -0.342049 +0.8764 0.425779 -0.225021 0.920032 0.28711 0.876469 0.42578 -0.22475 +0.900566 0.368124 -0.231226 0.920032 0.315938 0.900626 0.368125 -0.230992 +0.841287 0.425779 -0.333089 0.880032 0.28711 0.84139 0.42578 -0.332829 +0.8764 0.425779 -0.225021 0.920032 0.28711 0.876469 0.42578 -0.22475 +0.922445 0.368124 -0.116532 0.960032 0.315938 0.922475 0.368126 -0.116292 +0.900566 0.368124 -0.231226 0.920032 0.315938 0.900626 0.368125 -0.230992 +0.897692 0.425779 -0.113405 0.960032 0.28711 0.897727 0.42578 -0.113127 +0.922445 0.368124 -0.116532 0.960032 0.315938 0.922475 0.368126 -0.116292 +0.8764 0.425779 -0.225021 0.920032 0.28711 0.876469 0.42578 -0.22475 +0.897692 0.425779 -0.113405 0.960032 0.28711 0.897727 0.42578 -0.113127 +0.929777 0.368124 -0 1.00003 0.315938 0.929776 0.368125 0.000238 +0.922445 0.368124 -0.116532 0.960032 0.315938 0.922475 0.368126 -0.116292 +0.904827 0.425779 -0 1.00003 0.28711 0.904827 0.42578 0.000276 +0.929777 0.368124 -0 1.00003 0.315938 0.929776 0.368125 0.000238 +0.897692 0.425779 -0.113405 0.960032 0.28711 0.897727 0.42578 -0.113127 +0.904827 0.425779 -0 1.00003 0.28711 0.904827 0.42578 0.000276 +0.922446 0.368124 0.116532 1.04003 0.315938 0.922414 0.368126 0.116768 +0.929777 0.368124 -0 1.00003 0.315938 0.929776 0.368125 0.000238 +0.897693 0.425779 0.113405 1.04003 0.28711 0.897657 0.425781 0.113679 +0.922446 0.368124 0.116532 1.04003 0.315938 0.922414 0.368126 0.116768 +0.904827 0.425779 -0 1.00003 0.28711 0.904827 0.42578 0.000276 +0.869398 0.481753 0.109831 1.04003 0.259123 0.869357 0.481755 0.110141 +0.876401 0.425779 0.225022 1.08003 0.28711 0.87633 0.42578 0.225292 +0.897693 0.425779 0.113405 1.04003 0.28711 0.897657 0.425781 0.113679 +0.848777 0.481753 0.217929 1.08003 0.259123 0.848696 0.481755 0.218235 +0.876401 0.425779 0.225022 1.08003 0.28711 0.87633 0.42578 0.225292 +0.869398 0.481753 0.109831 1.04003 0.259123 0.869357 0.481755 0.110141 +0.848777 0.481753 0.217929 1.08003 0.259123 0.848696 0.481755 0.218235 +0.841288 0.425779 0.333089 1.12003 0.28711 0.841183 0.425781 0.333349 +0.876401 0.425779 0.225022 1.08003 0.28711 0.87633 0.42578 0.225292 +0.81477 0.481753 0.32259 1.12003 0.259123 0.814652 0.481756 0.322884 +0.841288 0.425779 0.333089 1.12003 0.28711 0.841183 0.425781 0.333349 +0.848777 0.481753 0.217929 1.08003 0.259123 0.848696 0.481755 0.218235 +0.81477 0.481753 0.32259 1.12003 0.259123 0.814652 0.481756 0.322884 +0.792907 0.425779 0.435904 1.16003 0.28711 0.792771 0.425781 0.436149 +0.841288 0.425779 0.333089 1.12003 0.28711 0.841183 0.425781 0.333349 +0.767914 0.481753 0.422164 1.16003 0.259123 0.76776 0.481755 0.422441 +0.792907 0.425779 0.435904 1.16003 0.28711 0.792771 0.425781 0.436149 +0.81477 0.481753 0.32259 1.12003 0.259123 0.814652 0.481756 0.322884 +0.767914 0.481753 0.422164 1.16003 0.259123 0.76776 0.481755 0.422441 +0.732021 0.425779 0.531845 1.20003 0.28711 0.731855 0.425781 0.53207 +0.792907 0.425779 0.435904 1.16003 0.28711 0.792771 0.425781 0.436149 +0.708948 0.481753 0.515081 1.20003 0.259123 0.70876 0.481755 0.515336 +0.732021 0.425779 0.531845 1.20003 0.28711 0.731855 0.425781 0.53207 +0.767914 0.481753 0.422164 1.16003 0.259123 0.76776 0.481755 0.422441 +0.708948 0.481753 0.515081 1.20003 0.259123 0.70876 0.481755 0.515336 +0.659591 0.425779 0.619397 1.24003 0.28711 0.659398 0.425781 0.6196 +0.732021 0.425779 0.531845 1.20003 0.28711 0.731855 0.425781 0.53207 +0.638801 0.481753 0.599874 1.24003 0.259123 0.638583 0.481755 0.600104 +0.659591 0.425779 0.619397 1.24003 0.28711 0.659398 0.425781 0.6196 +0.708948 0.481753 0.515081 1.20003 0.259123 0.70876 0.481755 0.515336 +0.638801 0.481753 0.599874 1.24003 0.259123 0.638583 0.481755 0.600104 +0.576759 0.425779 0.697182 1.28003 0.28711 0.576542 0.425781 0.697359 +0.659591 0.425779 0.619397 1.24003 0.28711 0.659398 0.425781 0.6196 +0.558579 0.481753 0.675207 1.28003 0.259123 0.558334 0.481755 0.675407 +0.576759 0.425779 0.697182 1.28003 0.28711 0.576542 0.425781 0.697359 +0.638801 0.481753 0.599874 1.24003 0.259123 0.638583 0.481755 0.600104 +0.558579 0.481753 0.675207 1.28003 0.259123 0.558334 0.481755 0.675407 +0.484831 0.425779 0.763972 1.32003 0.28711 0.484594 0.425781 0.76412 +0.576759 0.425779 0.697182 1.28003 0.28711 0.576542 0.425781 0.697359 +0.469549 0.481753 0.739891 1.32003 0.259123 0.469281 0.481755 0.740059 +0.484831 0.425779 0.763972 1.32003 0.28711 0.484594 0.425781 0.76412 +0.558579 0.481753 0.675207 1.28003 0.259123 0.558334 0.481755 0.675407 +0.469549 0.481753 0.739891 1.32003 0.259123 0.469281 0.481755 0.740059 +0.385257 0.425779 0.818713 1.36003 0.28711 0.385003 0.425781 0.818831 +0.484831 0.425779 0.763972 1.32003 0.28711 0.484594 0.425781 0.76412 +0.373114 0.481753 0.792907 1.36003 0.259123 0.372826 0.481755 0.79304 +0.385257 0.425779 0.818713 1.36003 0.28711 0.385003 0.425781 0.818831 +0.469549 0.481753 0.739891 1.32003 0.259123 0.469281 0.481755 0.740059 +0.373114 0.481753 0.792907 1.36003 0.259123 0.372826 0.481755 0.79304 +0.279607 0.425779 0.860542 1.40003 0.28711 0.279341 0.425781 0.860628 +0.385257 0.425779 0.818713 1.36003 0.28711 0.385003 0.425781 0.818831 +0.270794 0.481753 0.833418 1.40003 0.259123 0.270492 0.481755 0.833515 +0.279607 0.425779 0.860542 1.40003 0.28711 0.279341 0.425781 0.860628 +0.373114 0.481753 0.792907 1.36003 0.259123 0.372826 0.481755 0.79304 +0.270794 0.481753 0.833418 1.40003 0.259123 0.270492 0.481755 0.833515 +0.169548 0.425779 0.888801 1.44003 0.28711 0.169273 0.425781 0.888852 +0.279607 0.425779 0.860542 1.40003 0.28711 0.279341 0.425781 0.860628 +0.164204 0.481753 0.860786 1.44003 0.259123 0.163892 0.481755 0.860844 +0.169548 0.425779 0.888801 1.44003 0.28711 0.169273 0.425781 0.888852 +0.270794 0.481753 0.833418 1.40003 0.259123 0.270492 0.481755 0.833515 +0.164204 0.481753 0.860786 1.44003 0.259123 0.163892 0.481755 0.860844 +0.056815 0.425779 0.903042 1.48003 0.28711 0.056535 0.425781 0.903058 +0.169548 0.425779 0.888801 1.44003 0.28711 0.169273 0.425781 0.888852 +0.055024 0.481753 0.874578 1.48003 0.259123 0.054707 0.481755 0.874597 +0.056815 0.425779 0.903042 1.48003 0.28711 0.056535 0.425781 0.903058 +0.164204 0.481753 0.860786 1.44003 0.259123 0.163892 0.481755 0.860844 +0.055024 0.481753 0.874578 1.48003 0.259123 0.054707 0.481755 0.874597 +-0.056815 0.425779 0.903042 1.52003 0.28711 -0.057094 0.425781 0.903023 +0.056815 0.425779 0.903042 1.48003 0.28711 0.056535 0.425781 0.903058 +-0.055024 0.481753 0.874578 1.52003 0.259123 -0.05534 0.481755 0.874557 +-0.056815 0.425779 0.903042 1.52003 0.28711 -0.057094 0.425781 0.903023 +0.055024 0.481753 0.874578 1.48003 0.259123 0.054707 0.481755 0.874597 +-0.055024 0.481753 0.874578 -0.479968 0.259123 -0.05534 0.481755 0.874557 +-0.169548 0.425779 0.888801 -0.439968 0.28711 -0.169822 0.425781 0.888747 +-0.056815 0.425779 0.903042 -0.479968 0.28711 -0.057094 0.425781 0.903023 +-0.164204 0.481753 0.860786 -0.439968 0.259123 -0.164515 0.481755 0.860725 +-0.169548 0.425779 0.888801 -0.439968 0.28711 -0.169822 0.425781 0.888747 +-0.055024 0.481753 0.874578 -0.479968 0.259123 -0.05534 0.481755 0.874557 +-0.164204 0.481753 0.860786 -0.439968 0.259123 -0.164515 0.481755 0.860725 +-0.279607 0.425779 0.860542 -0.399968 0.28711 -0.279873 0.425781 0.860454 +-0.169548 0.425779 0.888801 -0.439968 0.28711 -0.169822 0.425781 0.888747 +-0.270794 0.481753 0.833418 -0.399968 0.259123 -0.271095 0.481755 0.833318 +-0.279607 0.425779 0.860542 -0.399968 0.28711 -0.279873 0.425781 0.860454 +-0.164204 0.481753 0.860786 -0.439968 0.259123 -0.164515 0.481755 0.860725 +-0.270794 0.481753 0.833418 -0.399968 0.259123 -0.271095 0.481755 0.833318 +-0.385257 0.425779 0.818713 -0.359968 0.28711 -0.38551 0.425781 0.818592 +-0.279607 0.425779 0.860542 -0.399968 0.28711 -0.279873 0.425781 0.860454 +-0.373114 0.481753 0.792907 -0.359968 0.259123 -0.373399 0.481755 0.792771 +-0.385257 0.425779 0.818713 -0.359968 0.28711 -0.38551 0.425781 0.818592 +-0.270794 0.481753 0.833418 -0.399968 0.259123 -0.271095 0.481755 0.833318 +-0.373114 0.481753 0.792907 -0.359968 0.259123 -0.373399 0.481755 0.792771 +-0.484831 0.425779 0.763971 -0.319968 0.28711 -0.485066 0.42578 0.76382 +-0.385257 0.425779 0.818713 -0.359968 0.28711 -0.38551 0.425781 0.818592 +-0.469549 0.481753 0.739891 -0.319968 0.259123 -0.469815 0.481755 0.73972 +-0.484831 0.425779 0.763971 -0.319968 0.28711 -0.485066 0.42578 0.76382 +-0.373114 0.481753 0.792907 -0.359968 0.259123 -0.373399 0.481755 0.792771 +-0.469549 0.481753 0.739891 -0.319968 0.259123 -0.469815 0.481755 0.73972 +-0.576759 0.425779 0.697182 -0.279968 0.28711 -0.576974 0.425781 0.697002 +-0.484831 0.425779 0.763971 -0.319968 0.28711 -0.485066 0.42578 0.76382 +-0.558579 0.481753 0.675206 -0.279968 0.259123 -0.558823 0.481755 0.675004 +-0.576759 0.425779 0.697182 -0.279968 0.28711 -0.576974 0.425781 0.697002 +-0.469549 0.481753 0.739891 -0.319968 0.259123 -0.469815 0.481755 0.73972 +-0.558579 0.481753 0.675206 -0.279968 0.259123 -0.558823 0.481755 0.675004 +-0.659591 0.425779 0.619397 -0.239968 0.28711 -0.659782 0.42578 0.619192 +-0.576759 0.425779 0.697182 -0.279968 0.28711 -0.576974 0.425781 0.697002 +-0.638801 0.481753 0.599874 -0.239968 0.259123 -0.639016 0.481754 0.599642 +-0.659591 0.425779 0.619397 -0.239968 0.28711 -0.659782 0.42578 0.619192 +-0.558579 0.481753 0.675206 -0.279968 0.259123 -0.558823 0.481755 0.675004 +-0.638801 0.481753 0.599874 -0.239968 0.259123 -0.639016 0.481754 0.599642 +-0.732021 0.425779 0.531844 -0.199968 0.28711 -0.732185 0.42578 0.531617 +-0.659591 0.425779 0.619397 -0.239968 0.28711 -0.659782 0.42578 0.619192 +-0.708948 0.481753 0.51508 -0.199968 0.259123 -0.709133 0.481755 0.514823 +-0.732021 0.425779 0.531844 -0.199968 0.28711 -0.732185 0.42578 0.531617 +-0.638801 0.481753 0.599874 -0.239968 0.259123 -0.639016 0.481754 0.599642 +-0.708948 0.481753 0.51508 -0.199968 0.259123 -0.709133 0.481755 0.514823 +-0.792907 0.425779 0.435904 -0.159968 0.28711 -0.79304 0.42578 0.435658 +-0.732021 0.425779 0.531844 -0.199968 0.28711 -0.732185 0.42578 0.531617 +-0.767914 0.481753 0.422164 -0.159968 0.259123 -0.768065 0.481755 0.421886 +-0.792907 0.425779 0.435904 -0.159968 0.28711 -0.79304 0.42578 0.435658 +-0.708948 0.481753 0.51508 -0.199968 0.259123 -0.709133 0.481755 0.514823 +-0.767914 0.481753 0.422164 -0.159968 0.259123 -0.768065 0.481755 0.421886 +-0.841287 0.425779 0.333089 -0.119968 0.28711 -0.841389 0.42578 0.332829 +-0.792907 0.425779 0.435904 -0.159968 0.28711 -0.79304 0.42578 0.435658 +-0.81477 0.481753 0.32259 -0.119968 0.259123 -0.814885 0.481755 0.322295 +-0.841287 0.425779 0.333089 -0.119968 0.28711 -0.841389 0.42578 0.332829 +-0.767914 0.481753 0.422164 -0.159968 0.259123 -0.768065 0.481755 0.421886 +-0.81477 0.481753 0.32259 -0.119968 0.259123 -0.814885 0.481755 0.322295 +-0.876401 0.425779 0.225021 -0.079968 0.28711 -0.876469 0.42578 0.22475 +-0.841287 0.425779 0.333089 -0.119968 0.28711 -0.841389 0.42578 0.332829 +-0.848777 0.481753 0.217929 -0.079968 0.259123 -0.848854 0.481755 0.217622 +-0.876401 0.425779 0.225021 -0.079968 0.28711 -0.876469 0.42578 0.22475 +-0.81477 0.481753 0.32259 -0.119968 0.259123 -0.814885 0.481755 0.322295 +-0.848777 0.481753 0.217929 -0.079968 0.259123 -0.848854 0.481755 0.217622 +-0.897693 0.425779 0.113405 -0.039968 0.28711 -0.897727 0.42578 0.113127 +-0.876401 0.425779 0.225021 -0.079968 0.28711 -0.876469 0.42578 0.22475 +-0.869397 0.481753 0.10983 -0.039968 0.259123 -0.869436 0.481755 0.109516 +-0.897693 0.425779 0.113405 -0.039968 0.28711 -0.897727 0.42578 0.113127 +-0.848777 0.481753 0.217929 -0.079968 0.259123 -0.848854 0.481755 0.217622 +-0.869397 0.481753 0.10983 -0.039968 0.259123 -0.869436 0.481755 0.109516 +-0.904828 0.425779 -0 3.2e-005 0.28711 -0.904826 0.425781 -0.00028 +-0.897693 0.425779 0.113405 -0.039968 0.28711 -0.897727 0.42578 0.113127 +-0.876307 0.481753 -0 3.2e-005 0.259123 -0.876306 0.481755 -0.000317 +-0.904828 0.425779 -0 3.2e-005 0.28711 -0.904826 0.425781 -0.00028 +-0.869397 0.481753 0.10983 -0.039968 0.259123 -0.869436 0.481755 0.109516 +-0.876307 0.481753 -0 3.2e-005 0.259123 -0.876306 0.481755 -0.000317 +-0.897693 0.425779 -0.113405 0.040032 0.28711 -0.897657 0.42578 -0.113682 +-0.904828 0.425779 -0 3.2e-005 0.28711 -0.904826 0.425781 -0.00028 +-0.869397 0.481753 -0.109831 0.040032 0.259123 -0.869356 0.481756 -0.110144 +-0.897693 0.425779 -0.113405 0.040032 0.28711 -0.897657 0.42578 -0.113682 +-0.876307 0.481753 -0 3.2e-005 0.259123 -0.876306 0.481755 -0.000317 +-0.869397 0.481753 -0.109831 0.040032 0.259123 -0.869356 0.481756 -0.110144 +-0.876401 0.425779 -0.225022 0.080032 0.28711 -0.87633 0.425781 -0.225292 +-0.897693 0.425779 -0.113405 0.040032 0.28711 -0.897657 0.42578 -0.113682 +-0.848776 0.481753 -0.217929 0.080032 0.259123 -0.848696 0.481756 -0.218235 +-0.876401 0.425779 -0.225022 0.080032 0.28711 -0.87633 0.425781 -0.225292 +-0.869397 0.481753 -0.109831 0.040032 0.259123 -0.869356 0.481756 -0.110144 +-0.848776 0.481753 -0.217929 0.080032 0.259123 -0.848696 0.481756 -0.218235 +-0.841287 0.425779 -0.333089 0.120032 0.28711 -0.841183 0.425781 -0.333349 +-0.876401 0.425779 -0.225022 0.080032 0.28711 -0.87633 0.425781 -0.225292 +-0.81477 0.481753 -0.32259 0.120032 0.259123 -0.814652 0.481755 -0.322885 +-0.841287 0.425779 -0.333089 0.120032 0.28711 -0.841183 0.425781 -0.333349 +-0.848776 0.481753 -0.217929 0.080032 0.259123 -0.848696 0.481756 -0.218235 +-0.81477 0.481753 -0.32259 0.120032 0.259123 -0.814652 0.481755 -0.322885 +-0.792906 0.425779 -0.435904 0.160032 0.28711 -0.792771 0.425781 -0.436149 +-0.841287 0.425779 -0.333089 0.120032 0.28711 -0.841183 0.425781 -0.333349 +-0.767914 0.481753 -0.422164 0.160032 0.259123 -0.76776 0.481755 -0.422442 +-0.792906 0.425779 -0.435904 0.160032 0.28711 -0.792771 0.425781 -0.436149 +-0.81477 0.481753 -0.32259 0.120032 0.259123 -0.814652 0.481755 -0.322885 +-0.767914 0.481753 -0.422164 0.160032 0.259123 -0.76776 0.481755 -0.422442 +-0.732021 0.425779 -0.531844 0.200032 0.28711 -0.731856 0.42578 -0.53207 +-0.792906 0.425779 -0.435904 0.160032 0.28711 -0.792771 0.425781 -0.436149 +-0.708947 0.481753 -0.515081 0.200032 0.259123 -0.70876 0.481755 -0.515336 +-0.732021 0.425779 -0.531844 0.200032 0.28711 -0.731856 0.42578 -0.53207 +-0.767914 0.481753 -0.422164 0.160032 0.259123 -0.76776 0.481755 -0.422442 +-0.708947 0.481753 -0.515081 0.200032 0.259123 -0.70876 0.481755 -0.515336 +-0.659591 0.425779 -0.619397 0.240032 0.28711 -0.659399 0.42578 -0.6196 +-0.732021 0.425779 -0.531844 0.200032 0.28711 -0.731856 0.42578 -0.53207 +-0.6388 0.481753 -0.599874 0.240032 0.259123 -0.638583 0.481755 -0.600104 +-0.659591 0.425779 -0.619397 0.240032 0.28711 -0.659399 0.42578 -0.6196 +-0.708947 0.481753 -0.515081 0.200032 0.259123 -0.70876 0.481755 -0.515336 +-0.6388 0.481753 -0.599874 0.240032 0.259123 -0.638583 0.481755 -0.600104 +-0.576759 0.425779 -0.697182 0.280032 0.28711 -0.576543 0.42578 -0.697359 +-0.659591 0.425779 -0.619397 0.240032 0.28711 -0.659399 0.42578 -0.6196 +-0.558579 0.481753 -0.675206 0.280032 0.259123 -0.558335 0.481755 -0.675407 +-0.576759 0.425779 -0.697182 0.280032 0.28711 -0.576543 0.42578 -0.697359 +-0.6388 0.481753 -0.599874 0.240032 0.259123 -0.638583 0.481755 -0.600104 +-0.558579 0.481753 -0.675206 0.280032 0.259123 -0.558335 0.481755 -0.675407 +-0.484831 0.425779 -0.763971 0.320032 0.28711 -0.484594 0.42578 -0.76412 +-0.576759 0.425779 -0.697182 0.280032 0.28711 -0.576543 0.42578 -0.697359 +-0.469549 0.481753 -0.739891 0.320032 0.259123 -0.46928 0.481755 -0.74006 +-0.484831 0.425779 -0.763971 0.320032 0.28711 -0.484594 0.42578 -0.76412 +-0.558579 0.481753 -0.675206 0.280032 0.259123 -0.558335 0.481755 -0.675407 +-0.469549 0.481753 -0.739891 0.320032 0.259123 -0.46928 0.481755 -0.74006 +-0.385257 0.425779 -0.818712 0.360032 0.28711 -0.385003 0.425781 -0.818831 +-0.484831 0.425779 -0.763971 0.320032 0.28711 -0.484594 0.42578 -0.76412 +-0.373113 0.481753 -0.792906 0.360032 0.259123 -0.372826 0.481755 -0.79304 +-0.385257 0.425779 -0.818712 0.360032 0.28711 -0.385003 0.425781 -0.818831 +-0.469549 0.481753 -0.739891 0.320032 0.259123 -0.46928 0.481755 -0.74006 +-0.373113 0.481753 -0.792906 0.360032 0.259123 -0.372826 0.481755 -0.79304 +-0.279607 0.425779 -0.860542 0.400032 0.28711 -0.279341 0.42578 -0.860628 +-0.385257 0.425779 -0.818712 0.360032 0.28711 -0.385003 0.425781 -0.818831 +-0.270794 0.481753 -0.833418 0.400032 0.259123 -0.270492 0.481755 -0.833514 +-0.279607 0.425779 -0.860542 0.400032 0.28711 -0.279341 0.42578 -0.860628 +-0.373113 0.481753 -0.792906 0.360032 0.259123 -0.372826 0.481755 -0.79304 +-0.270794 0.481753 -0.833418 0.400032 0.259123 -0.270492 0.481755 -0.833514 +-0.169548 0.425779 -0.8888 0.440032 0.28711 -0.169273 0.425781 -0.888852 +-0.279607 0.425779 -0.860542 0.400032 0.28711 -0.279341 0.42578 -0.860628 +-0.164203 0.481753 -0.860785 0.440032 0.259123 -0.163892 0.481755 -0.860844 +-0.169548 0.425779 -0.8888 0.440032 0.28711 -0.169273 0.425781 -0.888852 +-0.270794 0.481753 -0.833418 0.400032 0.259123 -0.270492 0.481755 -0.833514 +-0.164203 0.481753 -0.860785 0.440032 0.259123 -0.163892 0.481755 -0.860844 +-0.056814 0.425779 -0.903042 0.480032 0.28711 -0.056535 0.425781 -0.903059 +-0.169548 0.425779 -0.8888 0.440032 0.28711 -0.169273 0.425781 -0.888852 +-0.055024 0.481753 -0.874578 0.480032 0.259123 -0.054708 0.481755 -0.874597 +-0.056814 0.425779 -0.903042 0.480032 0.28711 -0.056535 0.425781 -0.903059 +-0.164203 0.481753 -0.860785 0.440032 0.259123 -0.163892 0.481755 -0.860844 +-0.055024 0.481753 -0.874578 0.480032 0.259123 -0.054708 0.481755 -0.874597 +0.056815 0.425779 -0.903042 0.520032 0.28711 0.057094 0.425781 -0.903023 +-0.056814 0.425779 -0.903042 0.480032 0.28711 -0.056535 0.425781 -0.903059 +0.055024 0.481753 -0.874578 0.520032 0.259123 0.05534 0.481755 -0.874557 +0.056815 0.425779 -0.903042 0.520032 0.28711 0.057094 0.425781 -0.903023 +-0.055024 0.481753 -0.874578 0.480032 0.259123 -0.054708 0.481755 -0.874597 +0.055024 0.481753 -0.874578 0.520032 0.259123 0.05534 0.481755 -0.874557 +0.169548 0.425779 -0.8888 0.560032 0.28711 0.169823 0.42578 -0.888747 +0.056815 0.425779 -0.903042 0.520032 0.28711 0.057094 0.425781 -0.903023 +0.164204 0.481753 -0.860785 0.560032 0.259123 0.164515 0.481754 -0.860725 +0.169548 0.425779 -0.8888 0.560032 0.28711 0.169823 0.42578 -0.888747 +0.055024 0.481753 -0.874578 0.520032 0.259123 0.05534 0.481755 -0.874557 +0.164204 0.481753 -0.860785 0.560032 0.259123 0.164515 0.481754 -0.860725 +0.279607 0.425779 -0.860542 0.600032 0.28711 0.279873 0.42578 -0.860454 +0.169548 0.425779 -0.8888 0.560032 0.28711 0.169823 0.42578 -0.888747 +0.270794 0.481753 -0.833417 0.600032 0.259123 0.271095 0.481755 -0.833319 +0.279607 0.425779 -0.860542 0.600032 0.28711 0.279873 0.42578 -0.860454 +0.164204 0.481753 -0.860785 0.560032 0.259123 0.164515 0.481754 -0.860725 +0.270794 0.481753 -0.833417 0.600032 0.259123 0.271095 0.481755 -0.833319 +0.385257 0.425779 -0.818712 0.640032 0.28711 0.38551 0.425781 -0.818592 +0.279607 0.425779 -0.860542 0.600032 0.28711 0.279873 0.42578 -0.860454 +0.373113 0.481753 -0.792906 0.640032 0.259123 0.3734 0.481755 -0.792771 +0.385257 0.425779 -0.818712 0.640032 0.28711 0.38551 0.425781 -0.818592 +0.270794 0.481753 -0.833417 0.600032 0.259123 0.271095 0.481755 -0.833319 +0.373113 0.481753 -0.792906 0.640032 0.259123 0.3734 0.481755 -0.792771 +0.484831 0.425779 -0.763971 0.680032 0.28711 0.485067 0.425781 -0.76382 +0.385257 0.425779 -0.818712 0.640032 0.28711 0.38551 0.425781 -0.818592 +0.469549 0.481753 -0.73989 0.680032 0.259123 0.469815 0.481755 -0.73972 +0.484831 0.425779 -0.763971 0.680032 0.28711 0.485067 0.425781 -0.76382 +0.373113 0.481753 -0.792906 0.640032 0.259123 0.3734 0.481755 -0.792771 +0.469549 0.481753 -0.73989 0.680032 0.259123 0.469815 0.481755 -0.73972 +0.576759 0.425779 -0.697181 0.720032 0.28711 0.576973 0.425781 -0.697002 +0.484831 0.425779 -0.763971 0.680032 0.28711 0.485067 0.425781 -0.76382 +0.558579 0.481753 -0.675206 0.720032 0.259123 0.558822 0.481755 -0.675004 +0.576759 0.425779 -0.697181 0.720032 0.28711 0.576973 0.425781 -0.697002 +0.469549 0.481753 -0.73989 0.680032 0.259123 0.469815 0.481755 -0.73972 +0.558579 0.481753 -0.675206 0.720032 0.259123 0.558822 0.481755 -0.675004 +0.659591 0.425779 -0.619397 0.760032 0.28711 0.659782 0.425781 -0.619192 +0.576759 0.425779 -0.697181 0.720032 0.28711 0.576973 0.425781 -0.697002 +0.6388 0.481753 -0.599873 0.760032 0.259123 0.639017 0.481754 -0.599642 +0.659591 0.425779 -0.619397 0.760032 0.28711 0.659782 0.425781 -0.619192 +0.558579 0.481753 -0.675206 0.720032 0.259123 0.558822 0.481755 -0.675004 +0.6388 0.481753 -0.599873 0.760032 0.259123 0.639017 0.481754 -0.599642 +0.732021 0.425779 -0.531844 0.800032 0.28711 0.732185 0.42578 -0.531617 +0.659591 0.425779 -0.619397 0.760032 0.28711 0.659782 0.425781 -0.619192 +0.708947 0.481753 -0.51508 0.800032 0.259123 0.709133 0.481754 -0.514823 +0.732021 0.425779 -0.531844 0.800032 0.28711 0.732185 0.42578 -0.531617 +0.6388 0.481753 -0.599873 0.760032 0.259123 0.639017 0.481754 -0.599642 +0.708947 0.481753 -0.51508 0.800032 0.259123 0.709133 0.481754 -0.514823 +0.792906 0.425779 -0.435904 0.840032 0.28711 0.79304 0.42578 -0.435658 +0.732021 0.425779 -0.531844 0.800032 0.28711 0.732185 0.42578 -0.531617 +0.767914 0.481753 -0.422164 0.840032 0.259123 0.768066 0.481755 -0.421886 +0.792906 0.425779 -0.435904 0.840032 0.28711 0.79304 0.42578 -0.435658 +0.708947 0.481753 -0.51508 0.800032 0.259123 0.709133 0.481754 -0.514823 +0.767914 0.481753 -0.422164 0.840032 0.259123 0.768066 0.481755 -0.421886 +0.841287 0.425779 -0.333089 0.880032 0.28711 0.84139 0.42578 -0.332829 +0.792906 0.425779 -0.435904 0.840032 0.28711 0.79304 0.42578 -0.435658 +0.814769 0.481753 -0.32259 0.880032 0.259123 0.814886 0.481754 -0.322295 +0.841287 0.425779 -0.333089 0.880032 0.28711 0.84139 0.42578 -0.332829 +0.767914 0.481753 -0.422164 0.840032 0.259123 0.768066 0.481755 -0.421886 +0.814769 0.481753 -0.32259 0.880032 0.259123 0.814886 0.481754 -0.322295 +0.8764 0.425779 -0.225021 0.920032 0.28711 0.876469 0.42578 -0.22475 +0.841287 0.425779 -0.333089 0.880032 0.28711 0.84139 0.42578 -0.332829 +0.848776 0.481753 -0.217929 0.920032 0.259123 0.848854 0.481755 -0.217622 +0.8764 0.425779 -0.225021 0.920032 0.28711 0.876469 0.42578 -0.22475 +0.814769 0.481753 -0.32259 0.880032 0.259123 0.814886 0.481754 -0.322295 +0.848776 0.481753 -0.217929 0.920032 0.259123 0.848854 0.481755 -0.217622 +0.897692 0.425779 -0.113405 0.960032 0.28711 0.897727 0.42578 -0.113127 +0.8764 0.425779 -0.225021 0.920032 0.28711 0.876469 0.42578 -0.22475 +0.869397 0.481753 -0.10983 0.960032 0.259123 0.869436 0.481755 -0.109516 +0.897692 0.425779 -0.113405 0.960032 0.28711 0.897727 0.42578 -0.113127 +0.848776 0.481753 -0.217929 0.920032 0.259123 0.848854 0.481755 -0.217622 +0.869397 0.481753 -0.10983 0.960032 0.259123 0.869436 0.481755 -0.109516 +0.904827 0.425779 -0 1.00003 0.28711 0.904827 0.42578 0.000276 +0.897692 0.425779 -0.113405 0.960032 0.28711 0.897727 0.42578 -0.113127 +0.876307 0.481753 -0 1.00003 0.259123 0.876306 0.481755 0.000313 +0.904827 0.425779 -0 1.00003 0.28711 0.904827 0.42578 0.000276 +0.869397 0.481753 -0.10983 0.960032 0.259123 0.869436 0.481755 -0.109516 +0.876307 0.481753 -0 1.00003 0.259123 0.876306 0.481755 0.000313 +0.897693 0.425779 0.113405 1.04003 0.28711 0.897657 0.425781 0.113679 +0.904827 0.425779 -0 1.00003 0.28711 0.904827 0.42578 0.000276 +0.869398 0.481753 0.109831 1.04003 0.259123 0.869357 0.481755 0.110141 +0.897693 0.425779 0.113405 1.04003 0.28711 0.897657 0.425781 0.113679 +0.876307 0.481753 -0 1.00003 0.259123 0.876306 0.481755 0.000313 +0.837671 0.535827 0.105823 1.04003 0.232087 0.837625 0.535829 0.106168 +0.848777 0.481753 0.217929 1.08003 0.259123 0.848696 0.481755 0.218235 +0.869398 0.481753 0.109831 1.04003 0.259123 0.869357 0.481755 0.110141 +0.817803 0.535827 0.209976 1.08003 0.232087 0.817713 0.535828 0.210317 +0.848777 0.481753 0.217929 1.08003 0.259123 0.848696 0.481755 0.218235 +0.837671 0.535827 0.105823 1.04003 0.232087 0.837625 0.535829 0.106168 +0.817803 0.535827 0.209976 1.08003 0.232087 0.817713 0.535828 0.210317 +0.81477 0.481753 0.32259 1.12003 0.259123 0.814652 0.481756 0.322884 +0.848777 0.481753 0.217929 1.08003 0.259123 0.848696 0.481755 0.218235 +0.785037 0.535827 0.310818 1.12003 0.232087 0.784905 0.535829 0.311145 +0.81477 0.481753 0.32259 1.12003 0.259123 0.814652 0.481756 0.322884 +0.817803 0.535827 0.209976 1.08003 0.232087 0.817713 0.535828 0.210317 +0.785037 0.535827 0.310818 1.12003 0.232087 0.784905 0.535829 0.311145 +0.767914 0.481753 0.422164 1.16003 0.259123 0.76776 0.481755 0.422441 +0.81477 0.481753 0.32259 1.12003 0.259123 0.814652 0.481756 0.322884 +0.739891 0.535827 0.406759 1.16003 0.232087 0.739719 0.535829 0.407066 +0.767914 0.481753 0.422164 1.16003 0.259123 0.76776 0.481755 0.422441 +0.785037 0.535827 0.310818 1.12003 0.232087 0.784905 0.535829 0.311145 +0.739891 0.535827 0.406759 1.16003 0.232087 0.739719 0.535829 0.407066 +0.708948 0.481753 0.515081 1.20003 0.259123 0.70876 0.481755 0.515336 +0.767914 0.481753 0.422164 1.16003 0.259123 0.76776 0.481755 0.422441 +0.683076 0.535827 0.496284 1.20003 0.232087 0.682868 0.535829 0.496568 +0.708948 0.481753 0.515081 1.20003 0.259123 0.70876 0.481755 0.515336 +0.739891 0.535827 0.406759 1.16003 0.232087 0.739719 0.535829 0.407066 +0.683076 0.535827 0.496284 1.20003 0.232087 0.682868 0.535829 0.496568 +0.638801 0.481753 0.599874 1.24003 0.259123 0.638583 0.481755 0.600104 +0.708948 0.481753 0.515081 1.20003 0.259123 0.70876 0.481755 0.515336 +0.615489 0.535827 0.577983 1.24003 0.232087 0.615247 0.535828 0.578238 +0.638801 0.481753 0.599874 1.24003 0.259123 0.638583 0.481755 0.600104 +0.683076 0.535827 0.496284 1.20003 0.232087 0.682868 0.535829 0.496568 +0.615489 0.535827 0.577983 1.24003 0.232087 0.615247 0.535828 0.578238 +0.558579 0.481753 0.675207 1.28003 0.259123 0.558334 0.481755 0.675407 +0.638801 0.481753 0.599874 1.24003 0.259123 0.638583 0.481755 0.600104 +0.538195 0.535827 0.650567 1.28003 0.232087 0.537923 0.535829 0.650789 +0.558579 0.481753 0.675207 1.28003 0.259123 0.558334 0.481755 0.675407 +0.615489 0.535827 0.577983 1.24003 0.232087 0.615247 0.535828 0.578238 +0.538195 0.535827 0.650567 1.28003 0.232087 0.537923 0.535829 0.650789 +0.469549 0.481753 0.739891 1.32003 0.259123 0.469281 0.481755 0.740059 +0.558579 0.481753 0.675207 1.28003 0.259123 0.558334 0.481755 0.675407 +0.452414 0.535827 0.71289 1.32003 0.232087 0.452116 0.535829 0.713077 +0.469549 0.481753 0.739891 1.32003 0.259123 0.469281 0.481755 0.740059 +0.538195 0.535827 0.650567 1.28003 0.232087 0.537923 0.535829 0.650789 +0.452414 0.535827 0.71289 1.32003 0.232087 0.452116 0.535829 0.713077 +0.373114 0.481753 0.792907 1.36003 0.259123 0.372826 0.481755 0.79304 +0.469549 0.481753 0.739891 1.32003 0.259123 0.469281 0.481755 0.740059 +0.359498 0.535827 0.763972 1.36003 0.232087 0.359178 0.535829 0.76412 +0.373114 0.481753 0.792907 1.36003 0.259123 0.372826 0.481755 0.79304 +0.452414 0.535827 0.71289 1.32003 0.232087 0.452116 0.535829 0.713077 +0.359498 0.535827 0.763972 1.36003 0.232087 0.359178 0.535829 0.76412 +0.270794 0.481753 0.833418 1.40003 0.259123 0.270492 0.481755 0.833515 +0.373114 0.481753 0.792907 1.36003 0.259123 0.372826 0.481755 0.79304 +0.260912 0.535827 0.803004 1.40003 0.232087 0.260576 0.535829 0.803111 +0.270794 0.481753 0.833418 1.40003 0.259123 0.270492 0.481755 0.833515 +0.359498 0.535827 0.763972 1.36003 0.232087 0.359178 0.535829 0.76412 +0.260912 0.535827 0.803004 1.40003 0.232087 0.260576 0.535829 0.803111 +0.164204 0.481753 0.860786 1.44003 0.259123 0.163892 0.481755 0.860844 +0.270794 0.481753 0.833418 1.40003 0.259123 0.270492 0.481755 0.833515 +0.158211 0.535827 0.829373 1.44003 0.232087 0.157865 0.535829 0.829437 +0.164204 0.481753 0.860786 1.44003 0.259123 0.163892 0.481755 0.860844 +0.260912 0.535827 0.803004 1.40003 0.232087 0.260576 0.535829 0.803111 +0.158211 0.535827 0.829373 1.44003 0.232087 0.157865 0.535829 0.829437 +0.055024 0.481753 0.874578 1.48003 0.259123 0.054707 0.481755 0.874597 +0.164204 0.481753 0.860786 1.44003 0.259123 0.163892 0.481755 0.860844 +0.053016 0.535827 0.842663 1.48003 0.232087 0.052664 0.535828 0.842683 +0.055024 0.481753 0.874578 1.48003 0.259123 0.054707 0.481755 0.874597 +0.158211 0.535827 0.829373 1.44003 0.232087 0.157865 0.535829 0.829437 +0.053016 0.535827 0.842663 1.48003 0.232087 0.052664 0.535828 0.842683 +-0.055024 0.481753 0.874578 1.52003 0.259123 -0.05534 0.481755 0.874557 +0.055024 0.481753 0.874578 1.48003 0.259123 0.054707 0.481755 0.874597 +-0.053016 0.535827 0.842663 1.52003 0.232087 -0.053368 0.535828 0.842639 +-0.055024 0.481753 0.874578 1.52003 0.259123 -0.05534 0.481755 0.874557 +0.053016 0.535827 0.842663 1.48003 0.232087 0.052664 0.535828 0.842683 +-0.053016 0.535827 0.842663 -0.479968 0.232087 -0.053368 0.535828 0.842639 +-0.164204 0.481753 0.860786 -0.439968 0.259123 -0.164515 0.481755 0.860725 +-0.055024 0.481753 0.874578 -0.479968 0.259123 -0.05534 0.481755 0.874557 +-0.158211 0.535827 0.829373 -0.439968 0.232087 -0.158558 0.535828 0.829305 +-0.164204 0.481753 0.860786 -0.439968 0.259123 -0.164515 0.481755 0.860725 +-0.053016 0.535827 0.842663 -0.479968 0.232087 -0.053368 0.535828 0.842639 +-0.158211 0.535827 0.829373 -0.439968 0.232087 -0.158558 0.535828 0.829305 +-0.270794 0.481753 0.833418 -0.399968 0.259123 -0.271095 0.481755 0.833318 +-0.164204 0.481753 0.860786 -0.439968 0.259123 -0.164515 0.481755 0.860725 +-0.260912 0.535827 0.803004 -0.399968 0.232087 -0.261246 0.535828 0.802894 +-0.270794 0.481753 0.833418 -0.399968 0.259123 -0.271095 0.481755 0.833318 +-0.158211 0.535827 0.829373 -0.439968 0.232087 -0.158558 0.535828 0.829305 +-0.260912 0.535827 0.803004 -0.399968 0.232087 -0.261246 0.535828 0.802894 +-0.373114 0.481753 0.792907 -0.359968 0.259123 -0.373399 0.481755 0.792771 +-0.270794 0.481753 0.833418 -0.399968 0.259123 -0.271095 0.481755 0.833318 +-0.359498 0.535827 0.763971 -0.359968 0.232087 -0.359816 0.535828 0.76382 +-0.373114 0.481753 0.792907 -0.359968 0.259123 -0.373399 0.481755 0.792771 +-0.260912 0.535827 0.803004 -0.399968 0.232087 -0.261246 0.535828 0.802894 +-0.359498 0.535827 0.763971 -0.359968 0.232087 -0.359816 0.535828 0.76382 +-0.469549 0.481753 0.739891 -0.319968 0.259123 -0.469815 0.481755 0.73972 +-0.373114 0.481753 0.792907 -0.359968 0.259123 -0.373399 0.481755 0.792771 +-0.452414 0.535827 0.71289 -0.319968 0.232087 -0.452711 0.535828 0.7127 +-0.469549 0.481753 0.739891 -0.319968 0.259123 -0.469815 0.481755 0.73972 +-0.359498 0.535827 0.763971 -0.359968 0.232087 -0.359816 0.535828 0.76382 +-0.452414 0.535827 0.71289 -0.319968 0.232087 -0.452711 0.535828 0.7127 +-0.558579 0.481753 0.675206 -0.279968 0.259123 -0.558823 0.481755 0.675004 +-0.469549 0.481753 0.739891 -0.319968 0.259123 -0.469815 0.481755 0.73972 +-0.538195 0.535827 0.650566 -0.279968 0.232087 -0.538466 0.535828 0.65034 +-0.558579 0.481753 0.675206 -0.279968 0.259123 -0.558823 0.481755 0.675004 +-0.452414 0.535827 0.71289 -0.319968 0.232087 -0.452711 0.535828 0.7127 +-0.538195 0.535827 0.650566 -0.279968 0.232087 -0.538466 0.535828 0.65034 +-0.638801 0.481753 0.599874 -0.239968 0.259123 -0.639016 0.481754 0.599642 +-0.558579 0.481753 0.675206 -0.279968 0.259123 -0.558823 0.481755 0.675004 +-0.615489 0.535827 0.577983 -0.239968 0.232087 -0.615729 0.535828 0.577725 +-0.638801 0.481753 0.599874 -0.239968 0.259123 -0.639016 0.481754 0.599642 +-0.538195 0.535827 0.650566 -0.279968 0.232087 -0.538466 0.535828 0.65034 +-0.615489 0.535827 0.577983 -0.239968 0.232087 -0.615729 0.535828 0.577725 +-0.708948 0.481753 0.51508 -0.199968 0.259123 -0.709133 0.481755 0.514823 +-0.638801 0.481753 0.599874 -0.239968 0.259123 -0.639016 0.481754 0.599642 +-0.683076 0.535827 0.496284 -0.199968 0.232087 -0.683282 0.535828 0.495998 +-0.708948 0.481753 0.51508 -0.199968 0.259123 -0.709133 0.481755 0.514823 +-0.615489 0.535827 0.577983 -0.239968 0.232087 -0.615729 0.535828 0.577725 +-0.683076 0.535827 0.496284 -0.199968 0.232087 -0.683282 0.535828 0.495998 +-0.767914 0.481753 0.422164 -0.159968 0.259123 -0.768065 0.481755 0.421886 +-0.708948 0.481753 0.51508 -0.199968 0.259123 -0.709133 0.481755 0.514823 +-0.739891 0.535827 0.406758 -0.159968 0.232087 -0.740059 0.535829 0.406449 +-0.767914 0.481753 0.422164 -0.159968 0.259123 -0.768065 0.481755 0.421886 +-0.683076 0.535827 0.496284 -0.199968 0.232087 -0.683282 0.535828 0.495998 +-0.739891 0.535827 0.406758 -0.159968 0.232087 -0.740059 0.535829 0.406449 +-0.81477 0.481753 0.32259 -0.119968 0.259123 -0.814885 0.481755 0.322295 +-0.767914 0.481753 0.422164 -0.159968 0.259123 -0.768065 0.481755 0.421886 +-0.785037 0.535827 0.310818 -0.119968 0.232087 -0.785165 0.535829 0.31049 +-0.81477 0.481753 0.32259 -0.119968 0.259123 -0.814885 0.481755 0.322295 +-0.739891 0.535827 0.406758 -0.159968 0.232087 -0.740059 0.535829 0.406449 +-0.785037 0.535827 0.310818 -0.119968 0.232087 -0.785165 0.535829 0.31049 +-0.848777 0.481753 0.217929 -0.079968 0.259123 -0.848854 0.481755 0.217622 +-0.81477 0.481753 0.32259 -0.119968 0.259123 -0.814885 0.481755 0.322295 +-0.817802 0.535827 0.209976 -0.079968 0.232087 -0.817888 0.535829 0.209634 +-0.848777 0.481753 0.217929 -0.079968 0.259123 -0.848854 0.481755 0.217622 +-0.785037 0.535827 0.310818 -0.119968 0.232087 -0.785165 0.535829 0.31049 +-0.817802 0.535827 0.209976 -0.079968 0.232087 -0.817888 0.535829 0.209634 +-0.869397 0.481753 0.10983 -0.039968 0.259123 -0.869436 0.481755 0.109516 +-0.848777 0.481753 0.217929 -0.079968 0.259123 -0.848854 0.481755 0.217622 +-0.837671 0.535827 0.105822 -0.039968 0.232087 -0.837713 0.535828 0.105473 +-0.869397 0.481753 0.10983 -0.039968 0.259123 -0.869436 0.481755 0.109516 +-0.817802 0.535827 0.209976 -0.079968 0.232087 -0.817888 0.535829 0.209634 +-0.837671 0.535827 0.105822 -0.039968 0.232087 -0.837713 0.535828 0.105473 +-0.876307 0.481753 -0 3.2e-005 0.259123 -0.876306 0.481755 -0.000317 +-0.869397 0.481753 0.10983 -0.039968 0.259123 -0.869436 0.481755 0.109516 +-0.844329 0.535827 -0 3.2e-005 0.232087 -0.844327 0.535829 -0.000352 +-0.876307 0.481753 -0 3.2e-005 0.259123 -0.876306 0.481755 -0.000317 +-0.837671 0.535827 0.105822 -0.039968 0.232087 -0.837713 0.535828 0.105473 +-0.844329 0.535827 -0 3.2e-005 0.232087 -0.844327 0.535829 -0.000352 +-0.869397 0.481753 -0.109831 0.040032 0.259123 -0.869356 0.481756 -0.110144 +-0.876307 0.481753 -0 3.2e-005 0.259123 -0.876306 0.481755 -0.000317 +-0.837671 0.535827 -0.105823 0.040032 0.232087 -0.837625 0.535829 -0.106172 +-0.869397 0.481753 -0.109831 0.040032 0.259123 -0.869356 0.481756 -0.110144 +-0.844329 0.535827 -0 3.2e-005 0.232087 -0.844327 0.535829 -0.000352 +-0.837671 0.535827 -0.105823 0.040032 0.232087 -0.837625 0.535829 -0.106172 +-0.848776 0.481753 -0.217929 0.080032 0.259123 -0.848696 0.481756 -0.218235 +-0.869397 0.481753 -0.109831 0.040032 0.259123 -0.869356 0.481756 -0.110144 +-0.817802 0.535827 -0.209976 0.080032 0.232087 -0.817713 0.535828 -0.210317 +-0.848776 0.481753 -0.217929 0.080032 0.259123 -0.848696 0.481756 -0.218235 +-0.837671 0.535827 -0.105823 0.040032 0.232087 -0.837625 0.535829 -0.106172 +-0.817802 0.535827 -0.209976 0.080032 0.232087 -0.817713 0.535828 -0.210317 +-0.81477 0.481753 -0.32259 0.120032 0.259123 -0.814652 0.481755 -0.322885 +-0.848776 0.481753 -0.217929 0.080032 0.259123 -0.848696 0.481756 -0.218235 +-0.785037 0.535827 -0.310818 0.120032 0.232087 -0.784906 0.535828 -0.311145 +-0.81477 0.481753 -0.32259 0.120032 0.259123 -0.814652 0.481755 -0.322885 +-0.817802 0.535827 -0.209976 0.080032 0.232087 -0.817713 0.535828 -0.210317 +-0.785037 0.535827 -0.310818 0.120032 0.232087 -0.784906 0.535828 -0.311145 +-0.767914 0.481753 -0.422164 0.160032 0.259123 -0.76776 0.481755 -0.422442 +-0.81477 0.481753 -0.32259 0.120032 0.259123 -0.814652 0.481755 -0.322885 +-0.739891 0.535827 -0.406758 0.160032 0.232087 -0.739719 0.535829 -0.407066 +-0.767914 0.481753 -0.422164 0.160032 0.259123 -0.76776 0.481755 -0.422442 +-0.785037 0.535827 -0.310818 0.120032 0.232087 -0.784906 0.535828 -0.311145 +-0.739891 0.535827 -0.406758 0.160032 0.232087 -0.739719 0.535829 -0.407066 +-0.708947 0.481753 -0.515081 0.200032 0.259123 -0.70876 0.481755 -0.515336 +-0.767914 0.481753 -0.422164 0.160032 0.259123 -0.76776 0.481755 -0.422442 +-0.683076 0.535827 -0.496284 0.200032 0.232087 -0.682867 0.535829 -0.496568 +-0.708947 0.481753 -0.515081 0.200032 0.259123 -0.70876 0.481755 -0.515336 +-0.739891 0.535827 -0.406758 0.160032 0.232087 -0.739719 0.535829 -0.407066 +-0.683076 0.535827 -0.496284 0.200032 0.232087 -0.682867 0.535829 -0.496568 +-0.6388 0.481753 -0.599874 0.240032 0.259123 -0.638583 0.481755 -0.600104 +-0.708947 0.481753 -0.515081 0.200032 0.259123 -0.70876 0.481755 -0.515336 +-0.615489 0.535827 -0.577983 0.240032 0.232087 -0.615247 0.535828 -0.578239 +-0.6388 0.481753 -0.599874 0.240032 0.259123 -0.638583 0.481755 -0.600104 +-0.683076 0.535827 -0.496284 0.200032 0.232087 -0.682867 0.535829 -0.496568 +-0.615489 0.535827 -0.577983 0.240032 0.232087 -0.615247 0.535828 -0.578239 +-0.558579 0.481753 -0.675206 0.280032 0.259123 -0.558335 0.481755 -0.675407 +-0.6388 0.481753 -0.599874 0.240032 0.259123 -0.638583 0.481755 -0.600104 +-0.538195 0.535827 -0.650566 0.280032 0.232087 -0.537923 0.535828 -0.65079 +-0.558579 0.481753 -0.675206 0.280032 0.259123 -0.558335 0.481755 -0.675407 +-0.615489 0.535827 -0.577983 0.240032 0.232087 -0.615247 0.535828 -0.578239 +-0.538195 0.535827 -0.650566 0.280032 0.232087 -0.537923 0.535828 -0.65079 +-0.469549 0.481753 -0.739891 0.320032 0.259123 -0.46928 0.481755 -0.74006 +-0.558579 0.481753 -0.675206 0.280032 0.259123 -0.558335 0.481755 -0.675407 +-0.452414 0.535827 -0.71289 0.320032 0.232087 -0.452115 0.535828 -0.713078 +-0.469549 0.481753 -0.739891 0.320032 0.259123 -0.46928 0.481755 -0.74006 +-0.538195 0.535827 -0.650566 0.280032 0.232087 -0.537923 0.535828 -0.65079 +-0.452414 0.535827 -0.71289 0.320032 0.232087 -0.452115 0.535828 -0.713078 +-0.373113 0.481753 -0.792906 0.360032 0.259123 -0.372826 0.481755 -0.79304 +-0.469549 0.481753 -0.739891 0.320032 0.259123 -0.46928 0.481755 -0.74006 +-0.359497 0.535827 -0.763971 0.360032 0.232087 -0.359178 0.535828 -0.76412 +-0.373113 0.481753 -0.792906 0.360032 0.259123 -0.372826 0.481755 -0.79304 +-0.452414 0.535827 -0.71289 0.320032 0.232087 -0.452115 0.535828 -0.713078 +-0.359497 0.535827 -0.763971 0.360032 0.232087 -0.359178 0.535828 -0.76412 +-0.270794 0.481753 -0.833418 0.400032 0.259123 -0.270492 0.481755 -0.833514 +-0.373113 0.481753 -0.792906 0.360032 0.259123 -0.372826 0.481755 -0.79304 +-0.260912 0.535827 -0.803004 0.400032 0.232087 -0.260576 0.535828 -0.803112 +-0.270794 0.481753 -0.833418 0.400032 0.259123 -0.270492 0.481755 -0.833514 +-0.359497 0.535827 -0.763971 0.360032 0.232087 -0.359178 0.535828 -0.76412 +-0.260912 0.535827 -0.803004 0.400032 0.232087 -0.260576 0.535828 -0.803112 +-0.164203 0.481753 -0.860785 0.440032 0.259123 -0.163892 0.481755 -0.860844 +-0.270794 0.481753 -0.833418 0.400032 0.259123 -0.270492 0.481755 -0.833514 +-0.158211 0.535827 -0.829373 0.440032 0.232087 -0.157865 0.535828 -0.829438 +-0.164203 0.481753 -0.860785 0.440032 0.259123 -0.163892 0.481755 -0.860844 +-0.260912 0.535827 -0.803004 0.400032 0.232087 -0.260576 0.535828 -0.803112 +-0.158211 0.535827 -0.829373 0.440032 0.232087 -0.157865 0.535828 -0.829438 +-0.055024 0.481753 -0.874578 0.480032 0.259123 -0.054708 0.481755 -0.874597 +-0.164203 0.481753 -0.860785 0.440032 0.259123 -0.163892 0.481755 -0.860844 +-0.053016 0.535827 -0.842662 0.480032 0.232087 -0.052664 0.535828 -0.842683 +-0.055024 0.481753 -0.874578 0.480032 0.259123 -0.054708 0.481755 -0.874597 +-0.158211 0.535827 -0.829373 0.440032 0.232087 -0.157865 0.535828 -0.829438 +-0.053016 0.535827 -0.842662 0.480032 0.232087 -0.052664 0.535828 -0.842683 +0.055024 0.481753 -0.874578 0.520032 0.259123 0.05534 0.481755 -0.874557 +-0.055024 0.481753 -0.874578 0.480032 0.259123 -0.054708 0.481755 -0.874597 +0.053016 0.535827 -0.842662 0.520032 0.232087 0.053367 0.535828 -0.842639 +0.055024 0.481753 -0.874578 0.520032 0.259123 0.05534 0.481755 -0.874557 +-0.053016 0.535827 -0.842662 0.480032 0.232087 -0.052664 0.535828 -0.842683 +0.053016 0.535827 -0.842662 0.520032 0.232087 0.053367 0.535828 -0.842639 +0.164204 0.481753 -0.860785 0.560032 0.259123 0.164515 0.481754 -0.860725 +0.055024 0.481753 -0.874578 0.520032 0.259123 0.05534 0.481755 -0.874557 +0.158211 0.535827 -0.829373 0.560032 0.232087 0.158557 0.535828 -0.829305 +0.164204 0.481753 -0.860785 0.560032 0.259123 0.164515 0.481754 -0.860725 +0.053016 0.535827 -0.842662 0.520032 0.232087 0.053367 0.535828 -0.842639 +0.158211 0.535827 -0.829373 0.560032 0.232087 0.158557 0.535828 -0.829305 +0.270794 0.481753 -0.833417 0.600032 0.259123 0.271095 0.481755 -0.833319 +0.164204 0.481753 -0.860785 0.560032 0.259123 0.164515 0.481754 -0.860725 +0.260912 0.535827 -0.803004 0.600032 0.232087 0.261247 0.535828 -0.802894 +0.270794 0.481753 -0.833417 0.600032 0.259123 0.271095 0.481755 -0.833319 +0.158211 0.535827 -0.829373 0.560032 0.232087 0.158557 0.535828 -0.829305 +0.260912 0.535827 -0.803004 0.600032 0.232087 0.261247 0.535828 -0.802894 +0.373113 0.481753 -0.792906 0.640032 0.259123 0.3734 0.481755 -0.792771 +0.270794 0.481753 -0.833417 0.600032 0.259123 0.271095 0.481755 -0.833319 +0.359498 0.535827 -0.763971 0.640032 0.232087 0.359816 0.535828 -0.76382 +0.373113 0.481753 -0.792906 0.640032 0.259123 0.3734 0.481755 -0.792771 +0.260912 0.535827 -0.803004 0.600032 0.232087 0.261247 0.535828 -0.802894 +0.359498 0.535827 -0.763971 0.640032 0.232087 0.359816 0.535828 -0.76382 +0.469549 0.481753 -0.73989 0.680032 0.259123 0.469815 0.481755 -0.73972 +0.373113 0.481753 -0.792906 0.640032 0.259123 0.3734 0.481755 -0.792771 +0.452414 0.535827 -0.71289 0.680032 0.232087 0.45271 0.535828 -0.7127 +0.469549 0.481753 -0.73989 0.680032 0.259123 0.469815 0.481755 -0.73972 +0.359498 0.535827 -0.763971 0.640032 0.232087 0.359816 0.535828 -0.76382 +0.452414 0.535827 -0.71289 0.680032 0.232087 0.45271 0.535828 -0.7127 +0.558579 0.481753 -0.675206 0.720032 0.259123 0.558822 0.481755 -0.675004 +0.469549 0.481753 -0.73989 0.680032 0.259123 0.469815 0.481755 -0.73972 +0.538195 0.535827 -0.650566 0.720032 0.232087 0.538466 0.535828 -0.650341 +0.558579 0.481753 -0.675206 0.720032 0.259123 0.558822 0.481755 -0.675004 +0.452414 0.535827 -0.71289 0.680032 0.232087 0.45271 0.535828 -0.7127 +0.538195 0.535827 -0.650566 0.720032 0.232087 0.538466 0.535828 -0.650341 +0.6388 0.481753 -0.599873 0.760032 0.259123 0.639017 0.481754 -0.599642 +0.558579 0.481753 -0.675206 0.720032 0.259123 0.558822 0.481755 -0.675004 +0.615489 0.535827 -0.577982 0.760032 0.232087 0.615729 0.535828 -0.577725 +0.6388 0.481753 -0.599873 0.760032 0.259123 0.639017 0.481754 -0.599642 +0.538195 0.535827 -0.650566 0.720032 0.232087 0.538466 0.535828 -0.650341 +0.615489 0.535827 -0.577982 0.760032 0.232087 0.615729 0.535828 -0.577725 +0.708947 0.481753 -0.51508 0.800032 0.259123 0.709133 0.481754 -0.514823 +0.6388 0.481753 -0.599873 0.760032 0.259123 0.639017 0.481754 -0.599642 +0.683076 0.535827 -0.496284 0.800032 0.232087 0.683282 0.535828 -0.495998 +0.708947 0.481753 -0.51508 0.800032 0.259123 0.709133 0.481754 -0.514823 +0.615489 0.535827 -0.577982 0.760032 0.232087 0.615729 0.535828 -0.577725 +0.683076 0.535827 -0.496284 0.800032 0.232087 0.683282 0.535828 -0.495998 +0.767914 0.481753 -0.422164 0.840032 0.259123 0.768066 0.481755 -0.421886 +0.708947 0.481753 -0.51508 0.800032 0.259123 0.709133 0.481754 -0.514823 +0.73989 0.535827 -0.406758 0.840032 0.232087 0.740059 0.535828 -0.406449 +0.767914 0.481753 -0.422164 0.840032 0.259123 0.768066 0.481755 -0.421886 +0.683076 0.535827 -0.496284 0.800032 0.232087 0.683282 0.535828 -0.495998 +0.73989 0.535827 -0.406758 0.840032 0.232087 0.740059 0.535828 -0.406449 +0.814769 0.481753 -0.32259 0.880032 0.259123 0.814886 0.481754 -0.322295 +0.767914 0.481753 -0.422164 0.840032 0.259123 0.768066 0.481755 -0.421886 +0.785036 0.535827 -0.310818 0.880032 0.232087 0.785165 0.535828 -0.31049 +0.814769 0.481753 -0.32259 0.880032 0.259123 0.814886 0.481754 -0.322295 +0.73989 0.535827 -0.406758 0.840032 0.232087 0.740059 0.535828 -0.406449 +0.785036 0.535827 -0.310818 0.880032 0.232087 0.785165 0.535828 -0.31049 +0.848776 0.481753 -0.217929 0.920032 0.259123 0.848854 0.481755 -0.217622 +0.814769 0.481753 -0.32259 0.880032 0.259123 0.814886 0.481754 -0.322295 +0.817802 0.535827 -0.209976 0.920032 0.232087 0.817889 0.535828 -0.209635 +0.848776 0.481753 -0.217929 0.920032 0.259123 0.848854 0.481755 -0.217622 +0.785036 0.535827 -0.310818 0.880032 0.232087 0.785165 0.535828 -0.31049 +0.817802 0.535827 -0.209976 0.920032 0.232087 0.817889 0.535828 -0.209635 +0.869397 0.481753 -0.10983 0.960032 0.259123 0.869436 0.481755 -0.109516 +0.848776 0.481753 -0.217929 0.920032 0.259123 0.848854 0.481755 -0.217622 +0.83767 0.535827 -0.105822 0.960032 0.232087 0.837713 0.535828 -0.105473 +0.869397 0.481753 -0.10983 0.960032 0.259123 0.869436 0.481755 -0.109516 +0.817802 0.535827 -0.209976 0.920032 0.232087 0.817889 0.535828 -0.209635 +0.83767 0.535827 -0.105822 0.960032 0.232087 0.837713 0.535828 -0.105473 +0.876307 0.481753 -0 1.00003 0.259123 0.876306 0.481755 0.000313 +0.869397 0.481753 -0.10983 0.960032 0.259123 0.869436 0.481755 -0.109516 +0.844328 0.535827 -0 1.00003 0.232087 0.844327 0.535828 0.000349 +0.876307 0.481753 -0 1.00003 0.259123 0.876306 0.481755 0.000313 +0.83767 0.535827 -0.105822 0.960032 0.232087 0.837713 0.535828 -0.105473 +0.844328 0.535827 -0 1.00003 0.232087 0.844327 0.535828 0.000349 +0.869398 0.481753 0.109831 1.04003 0.259123 0.869357 0.481755 0.110141 +0.876307 0.481753 -0 1.00003 0.259123 0.876306 0.481755 0.000313 +0.837671 0.535827 0.105823 1.04003 0.232087 0.837625 0.535829 0.106168 +0.869398 0.481753 0.109831 1.04003 0.259123 0.869357 0.481755 0.110141 +0.844328 0.535827 -0 1.00003 0.232087 0.844327 0.535828 0.000349 +0.802639 0.587785 0.101397 1.04003 0.206107 0.802589 0.587787 0.101777 +0.817803 0.535827 0.209976 1.08003 0.232087 0.817713 0.535828 0.210317 +0.837671 0.535827 0.105823 1.04003 0.232087 0.837625 0.535829 0.106168 +0.783601 0.587785 0.201195 1.08003 0.206107 0.783503 0.587787 0.201568 +0.817803 0.535827 0.209976 1.08003 0.232087 0.817713 0.535828 0.210317 +0.802639 0.587785 0.101397 1.04003 0.206107 0.802589 0.587787 0.101777 +0.783601 0.587785 0.201195 1.08003 0.206107 0.783503 0.587787 0.201568 +0.785037 0.535827 0.310818 1.12003 0.232087 0.784905 0.535829 0.311145 +0.817803 0.535827 0.209976 1.08003 0.232087 0.817713 0.535828 0.210317 +0.752206 0.587785 0.297819 1.12003 0.206107 0.752061 0.587787 0.298178 +0.785037 0.535827 0.310818 1.12003 0.232087 0.784905 0.535829 0.311145 +0.783601 0.587785 0.201195 1.08003 0.206107 0.783503 0.587787 0.201568 +0.752206 0.587785 0.297819 1.12003 0.206107 0.752061 0.587787 0.298178 +0.739891 0.535827 0.406759 1.16003 0.232087 0.739719 0.535829 0.407066 +0.785037 0.535827 0.310818 1.12003 0.232087 0.784905 0.535829 0.311145 +0.708948 0.587785 0.389747 1.16003 0.206107 0.708759 0.587787 0.390085 +0.739891 0.535827 0.406759 1.16003 0.232087 0.739719 0.535829 0.407066 +0.752206 0.587785 0.297819 1.12003 0.206107 0.752061 0.587787 0.298178 +0.708948 0.587785 0.389747 1.16003 0.206107 0.708759 0.587787 0.390085 +0.683076 0.535827 0.496284 1.20003 0.232087 0.682868 0.535829 0.496568 +0.739891 0.535827 0.406759 1.16003 0.232087 0.739719 0.535829 0.407066 +0.654509 0.587785 0.475529 1.20003 0.206107 0.65428 0.587787 0.475841 +0.683076 0.535827 0.496284 1.20003 0.232087 0.682868 0.535829 0.496568 +0.708948 0.587785 0.389747 1.16003 0.206107 0.708759 0.587787 0.390085 +0.654509 0.587785 0.475529 1.20003 0.206107 0.65428 0.587787 0.475841 +0.615489 0.535827 0.577983 1.24003 0.232087 0.615247 0.535828 0.578238 +0.683076 0.535827 0.496284 1.20003 0.232087 0.682868 0.535829 0.496568 +0.589749 0.587785 0.553811 1.24003 0.206107 0.589483 0.587787 0.554091 +0.615489 0.535827 0.577983 1.24003 0.232087 0.615247 0.535828 0.578238 +0.654509 0.587785 0.475529 1.20003 0.206107 0.65428 0.587787 0.475841 +0.589749 0.587785 0.553811 1.24003 0.206107 0.589483 0.587787 0.554091 +0.538195 0.535827 0.650567 1.28003 0.232087 0.537923 0.535829 0.650789 +0.615489 0.535827 0.577983 1.24003 0.232087 0.615247 0.535828 0.578238 +0.515687 0.587785 0.623359 1.28003 0.206107 0.515389 0.587787 0.623604 +0.538195 0.535827 0.650567 1.28003 0.232087 0.537923 0.535829 0.650789 +0.589749 0.587785 0.553811 1.24003 0.206107 0.589483 0.587787 0.554091 +0.515687 0.587785 0.623359 1.28003 0.206107 0.515389 0.587787 0.623604 +0.452414 0.535827 0.71289 1.32003 0.232087 0.452116 0.535829 0.713077 +0.538195 0.535827 0.650567 1.28003 0.232087 0.537923 0.535829 0.650789 +0.433493 0.587785 0.683076 1.32003 0.206107 0.433166 0.587787 0.683282 +0.452414 0.535827 0.71289 1.32003 0.232087 0.452116 0.535829 0.713077 +0.515687 0.587785 0.623359 1.28003 0.206107 0.515389 0.587787 0.623604 +0.433493 0.587785 0.683076 1.32003 0.206107 0.433166 0.587787 0.683282 +0.359498 0.535827 0.763972 1.36003 0.232087 0.359178 0.535829 0.76412 +0.452414 0.535827 0.71289 1.32003 0.232087 0.452116 0.535829 0.713077 +0.344463 0.587785 0.732021 1.36003 0.206107 0.344112 0.587787 0.732184 +0.359498 0.535827 0.763972 1.36003 0.232087 0.359178 0.535829 0.76412 +0.433493 0.587785 0.683076 1.32003 0.206107 0.433166 0.587787 0.683282 +0.344463 0.587785 0.732021 1.36003 0.206107 0.344112 0.587787 0.732184 +0.260912 0.535827 0.803004 1.40003 0.232087 0.260576 0.535829 0.803111 +0.359498 0.535827 0.763972 1.36003 0.232087 0.359178 0.535829 0.76412 +0.25 0.587785 0.769422 1.40003 0.206107 0.249632 0.587787 0.769539 +0.260912 0.535827 0.803004 1.40003 0.232087 0.260576 0.535829 0.803111 +0.344463 0.587785 0.732021 1.36003 0.206107 0.344112 0.587787 0.732184 +0.25 0.587785 0.769422 1.40003 0.206107 0.249632 0.587787 0.769539 +0.158211 0.535827 0.829373 1.44003 0.232087 0.157865 0.535829 0.829437 +0.260912 0.535827 0.803004 1.40003 0.232087 0.260576 0.535829 0.803111 +0.151595 0.587785 0.794688 1.44003 0.206107 0.151215 0.587787 0.794758 +0.158211 0.535827 0.829373 1.44003 0.232087 0.157865 0.535829 0.829437 +0.25 0.587785 0.769422 1.40003 0.206107 0.249632 0.587787 0.769539 +0.151595 0.587785 0.794688 1.44003 0.206107 0.151215 0.587787 0.794758 +0.053016 0.535827 0.842663 1.48003 0.232087 0.052664 0.535828 0.842683 +0.158211 0.535827 0.829373 1.44003 0.232087 0.157865 0.535829 0.829437 +0.050799 0.587785 0.807421 1.48003 0.206107 0.050413 0.587787 0.807444 +0.053016 0.535827 0.842663 1.48003 0.232087 0.052664 0.535828 0.842683 +0.151595 0.587785 0.794688 1.44003 0.206107 0.151215 0.587787 0.794758 +0.050799 0.587785 0.807421 1.48003 0.206107 0.050413 0.587787 0.807444 +-0.053016 0.535827 0.842663 1.52003 0.232087 -0.053368 0.535828 0.842639 +0.053016 0.535827 0.842663 1.48003 0.232087 0.052664 0.535828 0.842683 +-0.050799 0.587785 0.807421 1.52003 0.206107 -0.051185 0.587787 0.807395 +-0.053016 0.535827 0.842663 1.52003 0.232087 -0.053368 0.535828 0.842639 +0.050799 0.587785 0.807421 1.48003 0.206107 0.050413 0.587787 0.807444 +-0.050799 0.587785 0.807421 -0.479968 0.206107 -0.051185 0.587787 0.807395 +-0.158211 0.535827 0.829373 -0.439968 0.232087 -0.158558 0.535828 0.829305 +-0.053016 0.535827 0.842663 -0.479968 0.232087 -0.053368 0.535828 0.842639 +-0.151595 0.587785 0.794688 -0.439968 0.206107 -0.151974 0.587787 0.794613 +-0.158211 0.535827 0.829373 -0.439968 0.232087 -0.158558 0.535828 0.829305 +-0.050799 0.587785 0.807421 -0.479968 0.206107 -0.051185 0.587787 0.807395 +-0.151595 0.587785 0.794688 -0.439968 0.206107 -0.151974 0.587787 0.794613 +-0.260912 0.535827 0.803004 -0.399968 0.232087 -0.261246 0.535828 0.802894 +-0.158211 0.535827 0.829373 -0.439968 0.232087 -0.158558 0.535828 0.829305 +-0.25 0.587785 0.769422 -0.399968 0.206107 -0.250367 0.587787 0.7693 +-0.260912 0.535827 0.803004 -0.399968 0.232087 -0.261246 0.535828 0.802894 +-0.151595 0.587785 0.794688 -0.439968 0.206107 -0.151974 0.587787 0.794613 +-0.25 0.587785 0.769422 -0.399968 0.206107 -0.250367 0.587787 0.7693 +-0.359498 0.535827 0.763971 -0.359968 0.232087 -0.359816 0.535828 0.76382 +-0.260912 0.535827 0.803004 -0.399968 0.232087 -0.261246 0.535828 0.802894 +-0.344463 0.587785 0.732021 -0.359968 0.206107 -0.344812 0.587787 0.731855 +-0.359498 0.535827 0.763971 -0.359968 0.232087 -0.359816 0.535828 0.76382 +-0.25 0.587785 0.769422 -0.399968 0.206107 -0.250367 0.587787 0.7693 +-0.344463 0.587785 0.732021 -0.359968 0.206107 -0.344812 0.587787 0.731855 +-0.452414 0.535827 0.71289 -0.319968 0.232087 -0.452711 0.535828 0.7127 +-0.359498 0.535827 0.763971 -0.359968 0.232087 -0.359816 0.535828 0.76382 +-0.433493 0.587785 0.683076 -0.319968 0.206107 -0.433819 0.587787 0.682867 +-0.452414 0.535827 0.71289 -0.319968 0.232087 -0.452711 0.535828 0.7127 +-0.344463 0.587785 0.732021 -0.359968 0.206107 -0.344812 0.587787 0.731855 +-0.433493 0.587785 0.683076 -0.319968 0.206107 -0.433819 0.587787 0.682867 +-0.538195 0.535827 0.650566 -0.279968 0.232087 -0.538466 0.535828 0.65034 +-0.452414 0.535827 0.71289 -0.319968 0.232087 -0.452711 0.535828 0.7127 +-0.515687 0.587785 0.623359 -0.279968 0.206107 -0.515984 0.587787 0.623111 +-0.538195 0.535827 0.650566 -0.279968 0.232087 -0.538466 0.535828 0.65034 +-0.433493 0.587785 0.683076 -0.319968 0.206107 -0.433819 0.587787 0.682867 +-0.515687 0.587785 0.623359 -0.279968 0.206107 -0.515984 0.587787 0.623111 +-0.615489 0.535827 0.577983 -0.239968 0.232087 -0.615729 0.535828 0.577725 +-0.538195 0.535827 0.650566 -0.279968 0.232087 -0.538466 0.535828 0.65034 +-0.589749 0.587785 0.553811 -0.239968 0.206107 -0.590012 0.587787 0.553528 +-0.615489 0.535827 0.577983 -0.239968 0.232087 -0.615729 0.535828 0.577725 +-0.515687 0.587785 0.623359 -0.279968 0.206107 -0.515984 0.587787 0.623111 +-0.589749 0.587785 0.553811 -0.239968 0.206107 -0.590012 0.587787 0.553528 +-0.683076 0.535827 0.496284 -0.199968 0.232087 -0.683282 0.535828 0.495998 +-0.615489 0.535827 0.577983 -0.239968 0.232087 -0.615729 0.535828 0.577725 +-0.654509 0.587785 0.475529 -0.199968 0.206107 -0.654735 0.587787 0.475215 +-0.683076 0.535827 0.496284 -0.199968 0.232087 -0.683282 0.535828 0.495998 +-0.589749 0.587785 0.553811 -0.239968 0.206107 -0.590012 0.587787 0.553528 +-0.654509 0.587785 0.475529 -0.199968 0.206107 -0.654735 0.587787 0.475215 +-0.739891 0.535827 0.406758 -0.159968 0.232087 -0.740059 0.535829 0.406449 +-0.683076 0.535827 0.496284 -0.199968 0.232087 -0.683282 0.535828 0.495998 +-0.708948 0.587785 0.389747 -0.159968 0.206107 -0.709132 0.587787 0.389408 +-0.739891 0.535827 0.406758 -0.159968 0.232087 -0.740059 0.535829 0.406449 +-0.654509 0.587785 0.475529 -0.199968 0.206107 -0.654735 0.587787 0.475215 +-0.708948 0.587785 0.389747 -0.159968 0.206107 -0.709132 0.587787 0.389408 +-0.785037 0.535827 0.310818 -0.119968 0.232087 -0.785165 0.535829 0.31049 +-0.739891 0.535827 0.406758 -0.159968 0.232087 -0.740059 0.535829 0.406449 +-0.752206 0.587785 0.297819 -0.119968 0.206107 -0.752346 0.587787 0.297459 +-0.785037 0.535827 0.310818 -0.119968 0.232087 -0.785165 0.535829 0.31049 +-0.708948 0.587785 0.389747 -0.159968 0.206107 -0.709132 0.587787 0.389408 +-0.752206 0.587785 0.297819 -0.119968 0.206107 -0.752346 0.587787 0.297459 +-0.817802 0.535827 0.209976 -0.079968 0.232087 -0.817888 0.535829 0.209634 +-0.785037 0.535827 0.310818 -0.119968 0.232087 -0.785165 0.535829 0.31049 +-0.783601 0.587785 0.201194 -0.079968 0.206107 -0.783695 0.587787 0.20082 +-0.817802 0.535827 0.209976 -0.079968 0.232087 -0.817888 0.535829 0.209634 +-0.752206 0.587785 0.297819 -0.119968 0.206107 -0.752346 0.587787 0.297459 +-0.783601 0.587785 0.201194 -0.079968 0.206107 -0.783695 0.587787 0.20082 +-0.837671 0.535827 0.105822 -0.039968 0.232087 -0.837713 0.535828 0.105473 +-0.817802 0.535827 0.209976 -0.079968 0.232087 -0.817888 0.535829 0.209634 +-0.802638 0.587785 0.101397 -0.039968 0.206107 -0.802685 0.587787 0.101013 +-0.837671 0.535827 0.105822 -0.039968 0.232087 -0.837713 0.535828 0.105473 +-0.783601 0.587785 0.201194 -0.079968 0.206107 -0.783695 0.587787 0.20082 +-0.802638 0.587785 0.101397 -0.039968 0.206107 -0.802685 0.587787 0.101013 +-0.844329 0.535827 -0 3.2e-005 0.232087 -0.844327 0.535829 -0.000352 +-0.837671 0.535827 0.105822 -0.039968 0.232087 -0.837713 0.535828 0.105473 +-0.809018 0.587785 -0 3.2e-005 0.206107 -0.809016 0.587786 -0.000387 +-0.844329 0.535827 -0 3.2e-005 0.232087 -0.844327 0.535829 -0.000352 +-0.802638 0.587785 0.101397 -0.039968 0.206107 -0.802685 0.587787 0.101013 +-0.809018 0.587785 -0 3.2e-005 0.206107 -0.809016 0.587786 -0.000387 +-0.837671 0.535827 -0.105823 0.040032 0.232087 -0.837625 0.535829 -0.106172 +-0.844329 0.535827 -0 3.2e-005 0.232087 -0.844327 0.535829 -0.000352 +-0.802638 0.587785 -0.101397 0.040032 0.206107 -0.802588 0.587786 -0.10178 +-0.837671 0.535827 -0.105823 0.040032 0.232087 -0.837625 0.535829 -0.106172 +-0.809018 0.587785 -0 3.2e-005 0.206107 -0.809016 0.587786 -0.000387 +-0.802638 0.587785 -0.101397 0.040032 0.206107 -0.802588 0.587786 -0.10178 +-0.817802 0.535827 -0.209976 0.080032 0.232087 -0.817713 0.535828 -0.210317 +-0.837671 0.535827 -0.105823 0.040032 0.232087 -0.837625 0.535829 -0.106172 +-0.783601 0.587785 -0.201195 0.080032 0.206107 -0.783503 0.587787 -0.201568 +-0.817802 0.535827 -0.209976 0.080032 0.232087 -0.817713 0.535828 -0.210317 +-0.802638 0.587785 -0.101397 0.040032 0.206107 -0.802588 0.587786 -0.10178 +-0.783601 0.587785 -0.201195 0.080032 0.206107 -0.783503 0.587787 -0.201568 +-0.785037 0.535827 -0.310818 0.120032 0.232087 -0.784906 0.535828 -0.311145 +-0.817802 0.535827 -0.209976 0.080032 0.232087 -0.817713 0.535828 -0.210317 +-0.752205 0.587785 -0.297819 0.120032 0.206107 -0.752061 0.587787 -0.298178 +-0.785037 0.535827 -0.310818 0.120032 0.232087 -0.784906 0.535828 -0.311145 +-0.783601 0.587785 -0.201195 0.080032 0.206107 -0.783503 0.587787 -0.201568 +-0.752205 0.587785 -0.297819 0.120032 0.206107 -0.752061 0.587787 -0.298178 +-0.739891 0.535827 -0.406758 0.160032 0.232087 -0.739719 0.535829 -0.407066 +-0.785037 0.535827 -0.310818 0.120032 0.232087 -0.784906 0.535828 -0.311145 +-0.708947 0.587785 -0.389747 0.160032 0.206107 -0.708759 0.587787 -0.390085 +-0.739891 0.535827 -0.406758 0.160032 0.232087 -0.739719 0.535829 -0.407066 +-0.752205 0.587785 -0.297819 0.120032 0.206107 -0.752061 0.587787 -0.298178 +-0.708947 0.587785 -0.389747 0.160032 0.206107 -0.708759 0.587787 -0.390085 +-0.683076 0.535827 -0.496284 0.200032 0.232087 -0.682867 0.535829 -0.496568 +-0.739891 0.535827 -0.406758 0.160032 0.232087 -0.739719 0.535829 -0.407066 +-0.654509 0.587785 -0.475529 0.200032 0.206107 -0.65428 0.587787 -0.475841 +-0.683076 0.535827 -0.496284 0.200032 0.232087 -0.682867 0.535829 -0.496568 +-0.708947 0.587785 -0.389747 0.160032 0.206107 -0.708759 0.587787 -0.390085 +-0.654509 0.587785 -0.475529 0.200032 0.206107 -0.65428 0.587787 -0.475841 +-0.615489 0.535827 -0.577983 0.240032 0.232087 -0.615247 0.535828 -0.578239 +-0.683076 0.535827 -0.496284 0.200032 0.232087 -0.682867 0.535829 -0.496568 +-0.589748 0.587785 -0.553811 0.240032 0.206107 -0.589483 0.587787 -0.554091 +-0.615489 0.535827 -0.577983 0.240032 0.232087 -0.615247 0.535828 -0.578239 +-0.654509 0.587785 -0.475529 0.200032 0.206107 -0.65428 0.587787 -0.475841 +-0.589748 0.587785 -0.553811 0.240032 0.206107 -0.589483 0.587787 -0.554091 +-0.538195 0.535827 -0.650566 0.280032 0.232087 -0.537923 0.535828 -0.65079 +-0.615489 0.535827 -0.577983 0.240032 0.232087 -0.615247 0.535828 -0.578239 +-0.515687 0.587785 -0.623359 0.280032 0.206107 -0.515388 0.587787 -0.623604 +-0.538195 0.535827 -0.650566 0.280032 0.232087 -0.537923 0.535828 -0.65079 +-0.589748 0.587785 -0.553811 0.240032 0.206107 -0.589483 0.587787 -0.554091 +-0.515687 0.587785 -0.623359 0.280032 0.206107 -0.515388 0.587787 -0.623604 +-0.452414 0.535827 -0.71289 0.320032 0.232087 -0.452115 0.535828 -0.713078 +-0.538195 0.535827 -0.650566 0.280032 0.232087 -0.537923 0.535828 -0.65079 +-0.433493 0.587785 -0.683076 0.320032 0.206107 -0.433166 0.587786 -0.683282 +-0.452414 0.535827 -0.71289 0.320032 0.232087 -0.452115 0.535828 -0.713078 +-0.515687 0.587785 -0.623359 0.280032 0.206107 -0.515388 0.587787 -0.623604 +-0.433493 0.587785 -0.683076 0.320032 0.206107 -0.433166 0.587786 -0.683282 +-0.359497 0.535827 -0.763971 0.360032 0.232087 -0.359178 0.535828 -0.76412 +-0.452414 0.535827 -0.71289 0.320032 0.232087 -0.452115 0.535828 -0.713078 +-0.344463 0.587785 -0.732021 0.360032 0.206107 -0.344112 0.587786 -0.732184 +-0.359497 0.535827 -0.763971 0.360032 0.232087 -0.359178 0.535828 -0.76412 +-0.433493 0.587785 -0.683076 0.320032 0.206107 -0.433166 0.587786 -0.683282 +-0.344463 0.587785 -0.732021 0.360032 0.206107 -0.344112 0.587786 -0.732184 +-0.260912 0.535827 -0.803004 0.400032 0.232087 -0.260576 0.535828 -0.803112 +-0.359497 0.535827 -0.763971 0.360032 0.232087 -0.359178 0.535828 -0.76412 +-0.25 0.587785 -0.769421 0.400032 0.206107 -0.249632 0.587787 -0.769539 +-0.260912 0.535827 -0.803004 0.400032 0.232087 -0.260576 0.535828 -0.803112 +-0.344463 0.587785 -0.732021 0.360032 0.206107 -0.344112 0.587786 -0.732184 +-0.25 0.587785 -0.769421 0.400032 0.206107 -0.249632 0.587787 -0.769539 +-0.158211 0.535827 -0.829373 0.440032 0.232087 -0.157865 0.535828 -0.829438 +-0.260912 0.535827 -0.803004 0.400032 0.232087 -0.260576 0.535828 -0.803112 +-0.151595 0.587785 -0.794687 0.440032 0.206107 -0.151215 0.587787 -0.794758 +-0.158211 0.535827 -0.829373 0.440032 0.232087 -0.157865 0.535828 -0.829438 +-0.25 0.587785 -0.769421 0.400032 0.206107 -0.249632 0.587787 -0.769539 +-0.151595 0.587785 -0.794687 0.440032 0.206107 -0.151215 0.587787 -0.794758 +-0.053016 0.535827 -0.842662 0.480032 0.232087 -0.052664 0.535828 -0.842683 +-0.158211 0.535827 -0.829373 0.440032 0.232087 -0.157865 0.535828 -0.829438 +-0.050799 0.587785 -0.807421 0.480032 0.206107 -0.050413 0.587787 -0.807444 +-0.053016 0.535827 -0.842662 0.480032 0.232087 -0.052664 0.535828 -0.842683 +-0.151595 0.587785 -0.794687 0.440032 0.206107 -0.151215 0.587787 -0.794758 +-0.050799 0.587785 -0.807421 0.480032 0.206107 -0.050413 0.587787 -0.807444 +0.053016 0.535827 -0.842662 0.520032 0.232087 0.053367 0.535828 -0.842639 +-0.053016 0.535827 -0.842662 0.480032 0.232087 -0.052664 0.535828 -0.842683 +0.050799 0.587785 -0.807421 0.520032 0.206107 0.051184 0.587787 -0.807395 +0.053016 0.535827 -0.842662 0.520032 0.232087 0.053367 0.535828 -0.842639 +-0.050799 0.587785 -0.807421 0.480032 0.206107 -0.050413 0.587787 -0.807444 +0.050799 0.587785 -0.807421 0.520032 0.206107 0.051184 0.587787 -0.807395 +0.158211 0.535827 -0.829373 0.560032 0.232087 0.158557 0.535828 -0.829305 +0.053016 0.535827 -0.842662 0.520032 0.232087 0.053367 0.535828 -0.842639 +0.151595 0.587785 -0.794687 0.560032 0.206107 0.151974 0.587787 -0.794614 +0.158211 0.535827 -0.829373 0.560032 0.232087 0.158557 0.535828 -0.829305 +0.050799 0.587785 -0.807421 0.520032 0.206107 0.051184 0.587787 -0.807395 +0.151595 0.587785 -0.794687 0.560032 0.206107 0.151974 0.587787 -0.794614 +0.260912 0.535827 -0.803004 0.600032 0.232087 0.261247 0.535828 -0.802894 +0.158211 0.535827 -0.829373 0.560032 0.232087 0.158557 0.535828 -0.829305 +0.25 0.587785 -0.769421 0.600032 0.206107 0.250367 0.587787 -0.7693 +0.260912 0.535827 -0.803004 0.600032 0.232087 0.261247 0.535828 -0.802894 +0.151595 0.587785 -0.794687 0.560032 0.206107 0.151974 0.587787 -0.794614 +0.25 0.587785 -0.769421 0.600032 0.206107 0.250367 0.587787 -0.7693 +0.359498 0.535827 -0.763971 0.640032 0.232087 0.359816 0.535828 -0.76382 +0.260912 0.535827 -0.803004 0.600032 0.232087 0.261247 0.535828 -0.802894 +0.344463 0.587785 -0.732021 0.640032 0.206107 0.344812 0.587786 -0.731855 +0.359498 0.535827 -0.763971 0.640032 0.232087 0.359816 0.535828 -0.76382 +0.25 0.587785 -0.769421 0.600032 0.206107 0.250367 0.587787 -0.7693 +0.344463 0.587785 -0.732021 0.640032 0.206107 0.344812 0.587786 -0.731855 +0.452414 0.535827 -0.71289 0.680032 0.232087 0.45271 0.535828 -0.7127 +0.359498 0.535827 -0.763971 0.640032 0.232087 0.359816 0.535828 -0.76382 +0.433493 0.587785 -0.683076 0.680032 0.206107 0.433819 0.587786 -0.682868 +0.452414 0.535827 -0.71289 0.680032 0.232087 0.45271 0.535828 -0.7127 +0.344463 0.587785 -0.732021 0.640032 0.206107 0.344812 0.587786 -0.731855 +0.433493 0.587785 -0.683076 0.680032 0.206107 0.433819 0.587786 -0.682868 +0.538195 0.535827 -0.650566 0.720032 0.232087 0.538466 0.535828 -0.650341 +0.452414 0.535827 -0.71289 0.680032 0.232087 0.45271 0.535828 -0.7127 +0.515687 0.587785 -0.623358 0.720032 0.206107 0.515984 0.587787 -0.623111 +0.538195 0.535827 -0.650566 0.720032 0.232087 0.538466 0.535828 -0.650341 +0.433493 0.587785 -0.683076 0.680032 0.206107 0.433819 0.587786 -0.682868 +0.515687 0.587785 -0.623358 0.720032 0.206107 0.515984 0.587787 -0.623111 +0.615489 0.535827 -0.577982 0.760032 0.232087 0.615729 0.535828 -0.577725 +0.538195 0.535827 -0.650566 0.720032 0.232087 0.538466 0.535828 -0.650341 +0.589748 0.587785 -0.55381 0.760032 0.206107 0.590012 0.587787 -0.553528 +0.615489 0.535827 -0.577982 0.760032 0.232087 0.615729 0.535828 -0.577725 +0.515687 0.587785 -0.623358 0.720032 0.206107 0.515984 0.587787 -0.623111 +0.589748 0.587785 -0.55381 0.760032 0.206107 0.590012 0.587787 -0.553528 +0.683076 0.535827 -0.496284 0.800032 0.232087 0.683282 0.535828 -0.495998 +0.615489 0.535827 -0.577982 0.760032 0.232087 0.615729 0.535828 -0.577725 +0.654509 0.587785 -0.475528 0.800032 0.206107 0.654735 0.587787 -0.475215 +0.683076 0.535827 -0.496284 0.800032 0.232087 0.683282 0.535828 -0.495998 +0.589748 0.587785 -0.55381 0.760032 0.206107 0.590012 0.587787 -0.553528 +0.654509 0.587785 -0.475528 0.800032 0.206107 0.654735 0.587787 -0.475215 +0.73989 0.535827 -0.406758 0.840032 0.232087 0.740059 0.535828 -0.406449 +0.683076 0.535827 -0.496284 0.800032 0.232087 0.683282 0.535828 -0.495998 +0.708947 0.587785 -0.389747 0.840032 0.206107 0.709132 0.587787 -0.389408 +0.73989 0.535827 -0.406758 0.840032 0.232087 0.740059 0.535828 -0.406449 +0.654509 0.587785 -0.475528 0.800032 0.206107 0.654735 0.587787 -0.475215 +0.708947 0.587785 -0.389747 0.840032 0.206107 0.709132 0.587787 -0.389408 +0.785036 0.535827 -0.310818 0.880032 0.232087 0.785165 0.535828 -0.31049 +0.73989 0.535827 -0.406758 0.840032 0.232087 0.740059 0.535828 -0.406449 +0.752205 0.587785 -0.297819 0.880032 0.206107 0.752346 0.587786 -0.297459 +0.785036 0.535827 -0.310818 0.880032 0.232087 0.785165 0.535828 -0.31049 +0.708947 0.587785 -0.389747 0.840032 0.206107 0.709132 0.587787 -0.389408 +0.752205 0.587785 -0.297819 0.880032 0.206107 0.752346 0.587786 -0.297459 +0.817802 0.535827 -0.209976 0.920032 0.232087 0.817889 0.535828 -0.209635 +0.785036 0.535827 -0.310818 0.880032 0.232087 0.785165 0.535828 -0.31049 +0.7836 0.587785 -0.201194 0.920032 0.206107 0.783695 0.587787 -0.20082 +0.817802 0.535827 -0.209976 0.920032 0.232087 0.817889 0.535828 -0.209635 +0.752205 0.587785 -0.297819 0.880032 0.206107 0.752346 0.587786 -0.297459 +0.7836 0.587785 -0.201194 0.920032 0.206107 0.783695 0.587787 -0.20082 +0.83767 0.535827 -0.105822 0.960032 0.232087 0.837713 0.535828 -0.105473 +0.817802 0.535827 -0.209976 0.920032 0.232087 0.817889 0.535828 -0.209635 +0.802638 0.587785 -0.101397 0.960032 0.206107 0.802685 0.587787 -0.101013 +0.83767 0.535827 -0.105822 0.960032 0.232087 0.837713 0.535828 -0.105473 +0.7836 0.587785 -0.201194 0.920032 0.206107 0.783695 0.587787 -0.20082 +0.802638 0.587785 -0.101397 0.960032 0.206107 0.802685 0.587787 -0.101013 +0.844328 0.535827 -0 1.00003 0.232087 0.844327 0.535828 0.000349 +0.83767 0.535827 -0.105822 0.960032 0.232087 0.837713 0.535828 -0.105473 +0.809017 0.587785 -0 1.00003 0.206107 0.809016 0.587787 0.000383 +0.844328 0.535827 -0 1.00003 0.232087 0.844327 0.535828 0.000349 +0.802638 0.587785 -0.101397 0.960032 0.206107 0.802685 0.587787 -0.101013 +0.809017 0.587785 -0 1.00003 0.206107 0.809016 0.587787 0.000383 +0.837671 0.535827 0.105823 1.04003 0.232087 0.837625 0.535829 0.106168 +0.844328 0.535827 -0 1.00003 0.232087 0.844327 0.535828 0.000349 +0.802639 0.587785 0.101397 1.04003 0.206107 0.802589 0.587787 0.101777 +0.837671 0.535827 0.105823 1.04003 0.232087 0.837625 0.535829 0.106168 +0.809017 0.587785 -0 1.00003 0.206107 0.809016 0.587787 0.000383 +0.764438 0.637424 0.096571 1.04003 0.181288 0.764384 0.637425 0.096983 +0.783601 0.587785 0.201195 1.08003 0.206107 0.783503 0.587787 0.201568 +0.802639 0.587785 0.101397 1.04003 0.206107 0.802589 0.587787 0.101777 +0.746307 0.637424 0.191619 1.08003 0.181288 0.7462 0.637426 0.192025 +0.783601 0.587785 0.201195 1.08003 0.206107 0.783503 0.587787 0.201568 +0.764438 0.637424 0.096571 1.04003 0.181288 0.764384 0.637425 0.096983 +0.746307 0.637424 0.191619 1.08003 0.181288 0.7462 0.637426 0.192025 +0.752206 0.587785 0.297819 1.12003 0.206107 0.752061 0.587787 0.298178 +0.783601 0.587785 0.201195 1.08003 0.206107 0.783503 0.587787 0.201568 +0.716406 0.637424 0.283645 1.12003 0.181288 0.716249 0.637426 0.284034 +0.752206 0.587785 0.297819 1.12003 0.206107 0.752061 0.587787 0.298178 +0.746307 0.637424 0.191619 1.08003 0.181288 0.7462 0.637426 0.192025 +0.716406 0.637424 0.283645 1.12003 0.181288 0.716249 0.637426 0.284034 +0.708948 0.587785 0.389747 1.16003 0.206107 0.708759 0.587787 0.390085 +0.752206 0.587785 0.297819 1.12003 0.206107 0.752061 0.587787 0.298178 +0.675207 0.637424 0.371198 1.16003 0.181288 0.675003 0.637425 0.371564 +0.708948 0.587785 0.389747 1.16003 0.206107 0.708759 0.587787 0.390085 +0.716406 0.637424 0.283645 1.12003 0.181288 0.716249 0.637426 0.284034 +0.675207 0.637424 0.371198 1.16003 0.181288 0.675003 0.637425 0.371564 +0.654509 0.587785 0.475529 1.20003 0.206107 0.65428 0.587787 0.475841 +0.708948 0.587785 0.389747 1.16003 0.206107 0.708759 0.587787 0.390085 +0.623359 0.637424 0.452897 1.20003 0.181288 0.623111 0.637425 0.453235 +0.654509 0.587785 0.475529 1.20003 0.206107 0.65428 0.587787 0.475841 +0.675207 0.637424 0.371198 1.16003 0.181288 0.675003 0.637425 0.371564 +0.623359 0.637424 0.452897 1.20003 0.181288 0.623111 0.637425 0.453235 +0.589749 0.587785 0.553811 1.24003 0.206107 0.589483 0.587787 0.554091 +0.654509 0.587785 0.475529 1.20003 0.206107 0.65428 0.587787 0.475841 +0.561681 0.637424 0.527453 1.24003 0.181288 0.561392 0.637426 0.527757 +0.589749 0.587785 0.553811 1.24003 0.206107 0.589483 0.587787 0.554091 +0.623359 0.637424 0.452897 1.20003 0.181288 0.623111 0.637425 0.453235 +0.561681 0.637424 0.527453 1.24003 0.181288 0.561392 0.637426 0.527757 +0.515687 0.587785 0.623359 1.28003 0.206107 0.515389 0.587787 0.623604 +0.589749 0.587785 0.553811 1.24003 0.206107 0.589483 0.587787 0.554091 +0.491144 0.637424 0.593691 1.28003 0.181288 0.49082 0.637426 0.593957 +0.515687 0.587785 0.623359 1.28003 0.206107 0.515389 0.587787 0.623604 +0.561681 0.637424 0.527453 1.24003 0.181288 0.561392 0.637426 0.527757 +0.491144 0.637424 0.593691 1.28003 0.181288 0.49082 0.637426 0.593957 +0.433493 0.587785 0.683076 1.32003 0.206107 0.433166 0.587787 0.683282 +0.515687 0.587785 0.623359 1.28003 0.206107 0.515389 0.587787 0.623604 +0.412862 0.637424 0.650567 1.32003 0.181288 0.412507 0.637426 0.650789 +0.433493 0.587785 0.683076 1.32003 0.206107 0.433166 0.587787 0.683282 +0.491144 0.637424 0.593691 1.28003 0.181288 0.49082 0.637426 0.593957 +0.412862 0.637424 0.650567 1.32003 0.181288 0.412507 0.637426 0.650789 +0.344463 0.587785 0.732021 1.36003 0.206107 0.344112 0.587787 0.732184 +0.433493 0.587785 0.683076 1.32003 0.206107 0.433166 0.587787 0.683282 +0.328069 0.637424 0.697182 1.36003 0.181288 0.327688 0.637425 0.697359 +0.344463 0.587785 0.732021 1.36003 0.206107 0.344112 0.587787 0.732184 +0.412862 0.637424 0.650567 1.32003 0.181288 0.412507 0.637426 0.650789 +0.328069 0.637424 0.697182 1.36003 0.181288 0.327688 0.637425 0.697359 +0.25 0.587785 0.769422 1.40003 0.206107 0.249632 0.587787 0.769539 +0.344463 0.587785 0.732021 1.36003 0.206107 0.344112 0.587787 0.732184 +0.238102 0.637424 0.732802 1.40003 0.181288 0.237702 0.637426 0.73293 +0.25 0.587785 0.769422 1.40003 0.206107 0.249632 0.587787 0.769539 +0.328069 0.637424 0.697182 1.36003 0.181288 0.327688 0.637425 0.697359 +0.238102 0.637424 0.732802 1.40003 0.181288 0.237702 0.637426 0.73293 +0.151595 0.587785 0.794688 1.44003 0.206107 0.151215 0.587787 0.794758 +0.25 0.587785 0.769422 1.40003 0.206107 0.249632 0.587787 0.769539 +0.14438 0.637424 0.756866 1.44003 0.181288 0.143968 0.637425 0.756943 +0.151595 0.587785 0.794688 1.44003 0.206107 0.151215 0.587787 0.794758 +0.238102 0.637424 0.732802 1.40003 0.181288 0.237702 0.637426 0.73293 +0.14438 0.637424 0.756866 1.44003 0.181288 0.143968 0.637425 0.756943 +0.050799 0.587785 0.807421 1.48003 0.206107 0.050413 0.587787 0.807444 +0.151595 0.587785 0.794688 1.44003 0.206107 0.151215 0.587787 0.794758 +0.048381 0.637424 0.768994 1.48003 0.181288 0.047962 0.637425 0.769018 +0.050799 0.587785 0.807421 1.48003 0.206107 0.050413 0.587787 0.807444 +0.14438 0.637424 0.756866 1.44003 0.181288 0.143968 0.637425 0.756943 +0.048381 0.637424 0.768994 1.48003 0.181288 0.047962 0.637425 0.769018 +-0.050799 0.587785 0.807421 1.52003 0.206107 -0.051185 0.587787 0.807395 +0.050799 0.587785 0.807421 1.48003 0.206107 0.050413 0.587787 0.807444 +-0.048381 0.637424 0.768993 1.52003 0.181288 -0.048799 0.637425 0.768965 +-0.050799 0.587785 0.807421 1.52003 0.206107 -0.051185 0.587787 0.807395 +0.048381 0.637424 0.768994 1.48003 0.181288 0.047962 0.637425 0.769018 +-0.048381 0.637424 0.768993 -0.479968 0.181288 -0.048799 0.637425 0.768965 +-0.151595 0.587785 0.794688 -0.439968 0.206107 -0.151974 0.587787 0.794613 +-0.050799 0.587785 0.807421 -0.479968 0.206107 -0.051185 0.587787 0.807395 +-0.14438 0.637424 0.756866 -0.439968 0.181288 -0.144791 0.637426 0.756785 +-0.151595 0.587785 0.794688 -0.439968 0.206107 -0.151974 0.587787 0.794613 +-0.048381 0.637424 0.768993 -0.479968 0.181288 -0.048799 0.637425 0.768965 +-0.14438 0.637424 0.756866 -0.439968 0.181288 -0.144791 0.637426 0.756785 +-0.25 0.587785 0.769422 -0.399968 0.206107 -0.250367 0.587787 0.7693 +-0.151595 0.587785 0.794688 -0.439968 0.206107 -0.151974 0.587787 0.794613 +-0.238102 0.637424 0.732802 -0.399968 0.181288 -0.2385 0.637426 0.732671 +-0.25 0.587785 0.769422 -0.399968 0.206107 -0.250367 0.587787 0.7693 +-0.14438 0.637424 0.756866 -0.439968 0.181288 -0.144791 0.637426 0.756785 +-0.238102 0.637424 0.732802 -0.399968 0.181288 -0.2385 0.637426 0.732671 +-0.344463 0.587785 0.732021 -0.359968 0.206107 -0.344812 0.587787 0.731855 +-0.25 0.587785 0.769422 -0.399968 0.206107 -0.250367 0.587787 0.7693 +-0.328069 0.637424 0.697182 -0.359968 0.181288 -0.328448 0.637426 0.697001 +-0.344463 0.587785 0.732021 -0.359968 0.206107 -0.344812 0.587787 0.731855 +-0.238102 0.637424 0.732802 -0.399968 0.181288 -0.2385 0.637426 0.732671 +-0.328069 0.637424 0.697182 -0.359968 0.181288 -0.328448 0.637426 0.697001 +-0.433493 0.587785 0.683076 -0.319968 0.206107 -0.433819 0.587787 0.682867 +-0.344463 0.587785 0.732021 -0.359968 0.206107 -0.344812 0.587787 0.731855 +-0.412862 0.637424 0.650566 -0.319968 0.181288 -0.413215 0.637425 0.65034 +-0.433493 0.587785 0.683076 -0.319968 0.206107 -0.433819 0.587787 0.682867 +-0.328069 0.637424 0.697182 -0.359968 0.181288 -0.328448 0.637426 0.697001 +-0.412862 0.637424 0.650566 -0.319968 0.181288 -0.413215 0.637425 0.65034 +-0.515687 0.587785 0.623359 -0.279968 0.206107 -0.515984 0.587787 0.623111 +-0.433493 0.587785 0.683076 -0.319968 0.206107 -0.433819 0.587787 0.682867 +-0.491144 0.637424 0.593691 -0.279968 0.181288 -0.491466 0.637425 0.593422 +-0.515687 0.587785 0.623359 -0.279968 0.206107 -0.515984 0.587787 0.623111 +-0.412862 0.637424 0.650566 -0.319968 0.181288 -0.413215 0.637425 0.65034 +-0.491144 0.637424 0.593691 -0.279968 0.181288 -0.491466 0.637425 0.593422 +-0.589749 0.587785 0.553811 -0.239968 0.206107 -0.590012 0.587787 0.553528 +-0.515687 0.587785 0.623359 -0.279968 0.206107 -0.515984 0.587787 0.623111 +-0.56168 0.637424 0.527453 -0.239968 0.181288 -0.561966 0.637425 0.527146 +-0.589749 0.587785 0.553811 -0.239968 0.206107 -0.590012 0.587787 0.553528 +-0.491144 0.637424 0.593691 -0.279968 0.181288 -0.491466 0.637425 0.593422 +-0.56168 0.637424 0.527453 -0.239968 0.181288 -0.561966 0.637425 0.527146 +-0.654509 0.587785 0.475529 -0.199968 0.206107 -0.654735 0.587787 0.475215 +-0.589749 0.587785 0.553811 -0.239968 0.206107 -0.590012 0.587787 0.553528 +-0.623359 0.637424 0.452897 -0.199968 0.181288 -0.623604 0.637426 0.452556 +-0.654509 0.587785 0.475529 -0.199968 0.206107 -0.654735 0.587787 0.475215 +-0.56168 0.637424 0.527453 -0.239968 0.181288 -0.561966 0.637425 0.527146 +-0.623359 0.637424 0.452897 -0.199968 0.181288 -0.623604 0.637426 0.452556 +-0.708948 0.587785 0.389747 -0.159968 0.206107 -0.709132 0.587787 0.389408 +-0.654509 0.587785 0.475529 -0.199968 0.206107 -0.654735 0.587787 0.475215 +-0.675206 0.637424 0.371198 -0.159968 0.181288 -0.675407 0.637426 0.370829 +-0.708948 0.587785 0.389747 -0.159968 0.206107 -0.709132 0.587787 0.389408 +-0.623359 0.637424 0.452897 -0.199968 0.181288 -0.623604 0.637426 0.452556 +-0.675206 0.637424 0.371198 -0.159968 0.181288 -0.675407 0.637426 0.370829 +-0.752206 0.587785 0.297819 -0.119968 0.206107 -0.752346 0.587787 0.297459 +-0.708948 0.587785 0.389747 -0.159968 0.206107 -0.709132 0.587787 0.389408 +-0.716406 0.637424 0.283645 -0.119968 0.181288 -0.716558 0.637426 0.283254 +-0.752206 0.587785 0.297819 -0.119968 0.206107 -0.752346 0.587787 0.297459 +-0.675206 0.637424 0.371198 -0.159968 0.181288 -0.675407 0.637426 0.370829 +-0.716406 0.637424 0.283645 -0.119968 0.181288 -0.716558 0.637426 0.283254 +-0.783601 0.587785 0.201194 -0.079968 0.206107 -0.783695 0.587787 0.20082 +-0.752206 0.587785 0.297819 -0.119968 0.206107 -0.752346 0.587787 0.297459 +-0.746307 0.637424 0.191619 -0.079968 0.181288 -0.746409 0.637426 0.191212 +-0.783601 0.587785 0.201194 -0.079968 0.206107 -0.783695 0.587787 0.20082 +-0.716406 0.637424 0.283645 -0.119968 0.181288 -0.716558 0.637426 0.283254 +-0.746307 0.637424 0.191619 -0.079968 0.181288 -0.746409 0.637426 0.191212 +-0.802638 0.587785 0.101397 -0.039968 0.206107 -0.802685 0.587787 0.101013 +-0.783601 0.587785 0.201194 -0.079968 0.206107 -0.783695 0.587787 0.20082 +-0.764438 0.637424 0.096571 -0.039968 0.181288 -0.764489 0.637425 0.096155 +-0.802638 0.587785 0.101397 -0.039968 0.206107 -0.802685 0.587787 0.101013 +-0.746307 0.637424 0.191619 -0.079968 0.181288 -0.746409 0.637426 0.191212 +-0.764438 0.637424 0.096571 -0.039968 0.181288 -0.764489 0.637425 0.096155 +-0.809018 0.587785 -0 3.2e-005 0.206107 -0.809016 0.587786 -0.000387 +-0.802638 0.587785 0.101397 -0.039968 0.206107 -0.802685 0.587787 0.101013 +-0.770514 0.637424 -0 3.2e-005 0.181288 -0.770512 0.637426 -0.000419 +-0.809018 0.587785 -0 3.2e-005 0.206107 -0.809016 0.587786 -0.000387 +-0.764438 0.637424 0.096571 -0.039968 0.181288 -0.764489 0.637425 0.096155 +-0.770514 0.637424 -0 3.2e-005 0.181288 -0.770512 0.637426 -0.000419 +-0.802638 0.587785 -0.101397 0.040032 0.206107 -0.802588 0.587786 -0.10178 +-0.809018 0.587785 -0 3.2e-005 0.206107 -0.809016 0.587786 -0.000387 +-0.764438 0.637424 -0.096571 0.040032 0.181288 -0.764384 0.637426 -0.096987 +-0.802638 0.587785 -0.101397 0.040032 0.206107 -0.802588 0.587786 -0.10178 +-0.770514 0.637424 -0 3.2e-005 0.181288 -0.770512 0.637426 -0.000419 +-0.764438 0.637424 -0.096571 0.040032 0.181288 -0.764384 0.637426 -0.096987 +-0.783601 0.587785 -0.201195 0.080032 0.206107 -0.783503 0.587787 -0.201568 +-0.802638 0.587785 -0.101397 0.040032 0.206107 -0.802588 0.587786 -0.10178 +-0.746307 0.637424 -0.191619 0.080032 0.181288 -0.7462 0.637426 -0.192025 +-0.783601 0.587785 -0.201195 0.080032 0.206107 -0.783503 0.587787 -0.201568 +-0.764438 0.637424 -0.096571 0.040032 0.181288 -0.764384 0.637426 -0.096987 +-0.746307 0.637424 -0.191619 0.080032 0.181288 -0.7462 0.637426 -0.192025 +-0.752205 0.587785 -0.297819 0.120032 0.206107 -0.752061 0.587787 -0.298178 +-0.783601 0.587785 -0.201195 0.080032 0.206107 -0.783503 0.587787 -0.201568 +-0.716406 0.637424 -0.283645 0.120032 0.181288 -0.716249 0.637425 -0.284035 +-0.752205 0.587785 -0.297819 0.120032 0.206107 -0.752061 0.587787 -0.298178 +-0.746307 0.637424 -0.191619 0.080032 0.181288 -0.7462 0.637426 -0.192025 +-0.716406 0.637424 -0.283645 0.120032 0.181288 -0.716249 0.637425 -0.284035 +-0.708947 0.587785 -0.389747 0.160032 0.206107 -0.708759 0.587787 -0.390085 +-0.752205 0.587785 -0.297819 0.120032 0.206107 -0.752061 0.587787 -0.298178 +-0.675206 0.637424 -0.371198 0.160032 0.181288 -0.675003 0.637425 -0.371565 +-0.708947 0.587785 -0.389747 0.160032 0.206107 -0.708759 0.587787 -0.390085 +-0.716406 0.637424 -0.283645 0.120032 0.181288 -0.716249 0.637425 -0.284035 +-0.675206 0.637424 -0.371198 0.160032 0.181288 -0.675003 0.637425 -0.371565 +-0.654509 0.587785 -0.475529 0.200032 0.206107 -0.65428 0.587787 -0.475841 +-0.708947 0.587785 -0.389747 0.160032 0.206107 -0.708759 0.587787 -0.390085 +-0.623359 0.637424 -0.452897 0.200032 0.181288 -0.623111 0.637425 -0.453235 +-0.654509 0.587785 -0.475529 0.200032 0.206107 -0.65428 0.587787 -0.475841 +-0.675206 0.637424 -0.371198 0.160032 0.181288 -0.675003 0.637425 -0.371565 +-0.623359 0.637424 -0.452897 0.200032 0.181288 -0.623111 0.637425 -0.453235 +-0.589748 0.587785 -0.553811 0.240032 0.206107 -0.589483 0.587787 -0.554091 +-0.654509 0.587785 -0.475529 0.200032 0.206107 -0.65428 0.587787 -0.475841 +-0.56168 0.637424 -0.527453 0.240032 0.181288 -0.561392 0.637425 -0.527757 +-0.589748 0.587785 -0.553811 0.240032 0.206107 -0.589483 0.587787 -0.554091 +-0.623359 0.637424 -0.452897 0.200032 0.181288 -0.623111 0.637425 -0.453235 +-0.56168 0.637424 -0.527453 0.240032 0.181288 -0.561392 0.637425 -0.527757 +-0.515687 0.587785 -0.623359 0.280032 0.206107 -0.515388 0.587787 -0.623604 +-0.589748 0.587785 -0.553811 0.240032 0.206107 -0.589483 0.587787 -0.554091 +-0.491144 0.637424 -0.593691 0.280032 0.181288 -0.49082 0.637425 -0.593957 +-0.515687 0.587785 -0.623359 0.280032 0.206107 -0.515388 0.587787 -0.623604 +-0.56168 0.637424 -0.527453 0.240032 0.181288 -0.561392 0.637425 -0.527757 +-0.491144 0.637424 -0.593691 0.280032 0.181288 -0.49082 0.637425 -0.593957 +-0.433493 0.587785 -0.683076 0.320032 0.206107 -0.433166 0.587786 -0.683282 +-0.515687 0.587785 -0.623359 0.280032 0.206107 -0.515388 0.587787 -0.623604 +-0.412862 0.637424 -0.650566 0.320032 0.181288 -0.412507 0.637425 -0.65079 +-0.433493 0.587785 -0.683076 0.320032 0.206107 -0.433166 0.587786 -0.683282 +-0.491144 0.637424 -0.593691 0.280032 0.181288 -0.49082 0.637425 -0.593957 +-0.412862 0.637424 -0.650566 0.320032 0.181288 -0.412507 0.637425 -0.65079 +-0.344463 0.587785 -0.732021 0.360032 0.206107 -0.344112 0.587786 -0.732184 +-0.433493 0.587785 -0.683076 0.320032 0.206107 -0.433166 0.587786 -0.683282 +-0.328069 0.637424 -0.697182 0.360032 0.181288 -0.327688 0.637425 -0.697359 +-0.344463 0.587785 -0.732021 0.360032 0.206107 -0.344112 0.587786 -0.732184 +-0.412862 0.637424 -0.650566 0.320032 0.181288 -0.412507 0.637425 -0.65079 +-0.328069 0.637424 -0.697182 0.360032 0.181288 -0.327688 0.637425 -0.697359 +-0.25 0.587785 -0.769421 0.400032 0.206107 -0.249632 0.587787 -0.769539 +-0.344463 0.587785 -0.732021 0.360032 0.206107 -0.344112 0.587786 -0.732184 +-0.238102 0.637424 -0.732802 0.400032 0.181288 -0.237703 0.637425 -0.73293 +-0.25 0.587785 -0.769421 0.400032 0.206107 -0.249632 0.587787 -0.769539 +-0.328069 0.637424 -0.697182 0.360032 0.181288 -0.327688 0.637425 -0.697359 +-0.238102 0.637424 -0.732802 0.400032 0.181288 -0.237703 0.637425 -0.73293 +-0.151595 0.587785 -0.794687 0.440032 0.206107 -0.151215 0.587787 -0.794758 +-0.25 0.587785 -0.769421 0.400032 0.206107 -0.249632 0.587787 -0.769539 +-0.14438 0.637424 -0.756866 0.440032 0.181288 -0.143968 0.637425 -0.756943 +-0.151595 0.587785 -0.794687 0.440032 0.206107 -0.151215 0.587787 -0.794758 +-0.238102 0.637424 -0.732802 0.400032 0.181288 -0.237703 0.637425 -0.73293 +-0.14438 0.637424 -0.756866 0.440032 0.181288 -0.143968 0.637425 -0.756943 +-0.050799 0.587785 -0.807421 0.480032 0.206107 -0.050413 0.587787 -0.807444 +-0.151595 0.587785 -0.794687 0.440032 0.206107 -0.151215 0.587787 -0.794758 +-0.048381 0.637424 -0.768993 0.480032 0.181288 -0.047962 0.637425 -0.769018 +-0.050799 0.587785 -0.807421 0.480032 0.206107 -0.050413 0.587787 -0.807444 +-0.14438 0.637424 -0.756866 0.440032 0.181288 -0.143968 0.637425 -0.756943 +-0.048381 0.637424 -0.768993 0.480032 0.181288 -0.047962 0.637425 -0.769018 +0.050799 0.587785 -0.807421 0.520032 0.206107 0.051184 0.587787 -0.807395 +-0.050799 0.587785 -0.807421 0.480032 0.206107 -0.050413 0.587787 -0.807444 +0.048381 0.637424 -0.768993 0.520032 0.181288 0.048799 0.637425 -0.768965 +0.050799 0.587785 -0.807421 0.520032 0.206107 0.051184 0.587787 -0.807395 +-0.048381 0.637424 -0.768993 0.480032 0.181288 -0.047962 0.637425 -0.769018 +0.048381 0.637424 -0.768993 0.520032 0.181288 0.048799 0.637425 -0.768965 +0.151595 0.587785 -0.794687 0.560032 0.206107 0.151974 0.587787 -0.794614 +0.050799 0.587785 -0.807421 0.520032 0.206107 0.051184 0.587787 -0.807395 +0.14438 0.637424 -0.756866 0.560032 0.181288 0.144791 0.637425 -0.756786 +0.151595 0.587785 -0.794687 0.560032 0.206107 0.151974 0.587787 -0.794614 +0.048381 0.637424 -0.768993 0.520032 0.181288 0.048799 0.637425 -0.768965 +0.14438 0.637424 -0.756866 0.560032 0.181288 0.144791 0.637425 -0.756786 +0.25 0.587785 -0.769421 0.600032 0.206107 0.250367 0.587787 -0.7693 +0.151595 0.587785 -0.794687 0.560032 0.206107 0.151974 0.587787 -0.794614 +0.238102 0.637424 -0.732802 0.600032 0.181288 0.238501 0.637425 -0.732671 +0.25 0.587785 -0.769421 0.600032 0.206107 0.250367 0.587787 -0.7693 +0.14438 0.637424 -0.756866 0.560032 0.181288 0.144791 0.637425 -0.756786 +0.238102 0.637424 -0.732802 0.600032 0.181288 0.238501 0.637425 -0.732671 +0.344463 0.587785 -0.732021 0.640032 0.206107 0.344812 0.587786 -0.731855 +0.25 0.587785 -0.769421 0.600032 0.206107 0.250367 0.587787 -0.7693 +0.328069 0.637424 -0.697181 0.640032 0.181288 0.328448 0.637425 -0.697002 +0.344463 0.587785 -0.732021 0.640032 0.206107 0.344812 0.587786 -0.731855 +0.238102 0.637424 -0.732802 0.600032 0.181288 0.238501 0.637425 -0.732671 +0.328069 0.637424 -0.697181 0.640032 0.181288 0.328448 0.637425 -0.697002 +0.433493 0.587785 -0.683076 0.680032 0.206107 0.433819 0.587786 -0.682868 +0.344463 0.587785 -0.732021 0.640032 0.206107 0.344812 0.587786 -0.731855 +0.412862 0.637424 -0.650566 0.680032 0.181288 0.413215 0.637425 -0.65034 +0.433493 0.587785 -0.683076 0.680032 0.206107 0.433819 0.587786 -0.682868 +0.328069 0.637424 -0.697181 0.640032 0.181288 0.328448 0.637425 -0.697002 +0.412862 0.637424 -0.650566 0.680032 0.181288 0.413215 0.637425 -0.65034 +0.515687 0.587785 -0.623358 0.720032 0.206107 0.515984 0.587787 -0.623111 +0.433493 0.587785 -0.683076 0.680032 0.206107 0.433819 0.587786 -0.682868 +0.491144 0.637424 -0.593691 0.720032 0.181288 0.491466 0.637425 -0.593423 +0.515687 0.587785 -0.623358 0.720032 0.206107 0.515984 0.587787 -0.623111 +0.412862 0.637424 -0.650566 0.680032 0.181288 0.413215 0.637425 -0.65034 +0.491144 0.637424 -0.593691 0.720032 0.181288 0.491466 0.637425 -0.593423 +0.589748 0.587785 -0.55381 0.760032 0.206107 0.590012 0.587787 -0.553528 +0.515687 0.587785 -0.623358 0.720032 0.206107 0.515984 0.587787 -0.623111 +0.56168 0.637424 -0.527453 0.760032 0.181288 0.561966 0.637425 -0.527146 +0.589748 0.587785 -0.55381 0.760032 0.206107 0.590012 0.587787 -0.553528 +0.491144 0.637424 -0.593691 0.720032 0.181288 0.491466 0.637425 -0.593423 +0.56168 0.637424 -0.527453 0.760032 0.181288 0.561966 0.637425 -0.527146 +0.654509 0.587785 -0.475528 0.800032 0.206107 0.654735 0.587787 -0.475215 +0.589748 0.587785 -0.55381 0.760032 0.206107 0.590012 0.587787 -0.553528 +0.623358 0.637424 -0.452896 0.800032 0.181288 0.623604 0.637425 -0.452556 +0.654509 0.587785 -0.475528 0.800032 0.206107 0.654735 0.587787 -0.475215 +0.56168 0.637424 -0.527453 0.760032 0.181288 0.561966 0.637425 -0.527146 +0.623358 0.637424 -0.452896 0.800032 0.181288 0.623604 0.637425 -0.452556 +0.708947 0.587785 -0.389747 0.840032 0.206107 0.709132 0.587787 -0.389408 +0.654509 0.587785 -0.475528 0.800032 0.206107 0.654735 0.587787 -0.475215 +0.675206 0.637424 -0.371198 0.840032 0.181288 0.675407 0.637425 -0.37083 +0.708947 0.587785 -0.389747 0.840032 0.206107 0.709132 0.587787 -0.389408 +0.623358 0.637424 -0.452896 0.800032 0.181288 0.623604 0.637425 -0.452556 +0.675206 0.637424 -0.371198 0.840032 0.181288 0.675407 0.637425 -0.37083 +0.752205 0.587785 -0.297819 0.880032 0.206107 0.752346 0.587786 -0.297459 +0.708947 0.587785 -0.389747 0.840032 0.206107 0.709132 0.587787 -0.389408 +0.716405 0.637424 -0.283645 0.880032 0.181288 0.716559 0.637425 -0.283255 +0.752205 0.587785 -0.297819 0.880032 0.206107 0.752346 0.587786 -0.297459 +0.675206 0.637424 -0.371198 0.840032 0.181288 0.675407 0.637425 -0.37083 +0.716405 0.637424 -0.283645 0.880032 0.181288 0.716559 0.637425 -0.283255 +0.7836 0.587785 -0.201194 0.920032 0.206107 0.783695 0.587787 -0.20082 +0.752205 0.587785 -0.297819 0.880032 0.206107 0.752346 0.587786 -0.297459 +0.746306 0.637424 -0.191619 0.920032 0.181288 0.746409 0.637425 -0.191213 +0.7836 0.587785 -0.201194 0.920032 0.206107 0.783695 0.587787 -0.20082 +0.716405 0.637424 -0.283645 0.880032 0.181288 0.716559 0.637425 -0.283255 +0.746306 0.637424 -0.191619 0.920032 0.181288 0.746409 0.637425 -0.191213 +0.802638 0.587785 -0.101397 0.960032 0.206107 0.802685 0.587787 -0.101013 +0.7836 0.587785 -0.201194 0.920032 0.206107 0.783695 0.587787 -0.20082 +0.764438 0.637424 -0.096571 0.960032 0.181288 0.764489 0.637425 -0.096155 +0.802638 0.587785 -0.101397 0.960032 0.206107 0.802685 0.587787 -0.101013 +0.746306 0.637424 -0.191619 0.920032 0.181288 0.746409 0.637425 -0.191213 +0.764438 0.637424 -0.096571 0.960032 0.181288 0.764489 0.637425 -0.096155 +0.809017 0.587785 -0 1.00003 0.206107 0.809016 0.587787 0.000383 +0.802638 0.587785 -0.101397 0.960032 0.206107 0.802685 0.587787 -0.101013 +0.770513 0.637424 -0 1.00003 0.181288 0.770513 0.637425 0.000416 +0.809017 0.587785 -0 1.00003 0.206107 0.809016 0.587787 0.000383 +0.764438 0.637424 -0.096571 0.960032 0.181288 0.764489 0.637425 -0.096155 +0.770513 0.637424 -0 1.00003 0.181288 0.770513 0.637425 0.000416 +0.802639 0.587785 0.101397 1.04003 0.206107 0.802589 0.587787 0.101777 +0.809017 0.587785 -0 1.00003 0.206107 0.809016 0.587787 0.000383 +0.764438 0.637424 0.096571 1.04003 0.181288 0.764384 0.637425 0.096983 +0.802639 0.587785 0.101397 1.04003 0.206107 0.802589 0.587787 0.101777 +0.770513 0.637424 -0 1.00003 0.181288 0.770513 0.637425 0.000416 +0.723221 0.684547 0.091364 1.04003 0.157727 0.723162 0.684549 0.091807 +0.746307 0.637424 0.191619 1.08003 0.181288 0.7462 0.637426 0.192025 +0.764438 0.637424 0.096571 1.04003 0.181288 0.764384 0.637425 0.096983 +0.706068 0.684547 0.181287 1.08003 0.157727 0.705953 0.684549 0.181723 +0.746307 0.637424 0.191619 1.08003 0.181288 0.7462 0.637426 0.192025 +0.723221 0.684547 0.091364 1.04003 0.157727 0.723162 0.684549 0.091807 +0.706068 0.684547 0.181287 1.08003 0.157727 0.705953 0.684549 0.181723 +0.716406 0.637424 0.283645 1.12003 0.181288 0.716249 0.637426 0.284034 +0.746307 0.637424 0.191619 1.08003 0.181288 0.7462 0.637426 0.192025 +0.677779 0.684547 0.268352 1.12003 0.157727 0.677611 0.684549 0.26877 +0.716406 0.637424 0.283645 1.12003 0.181288 0.716249 0.637426 0.284034 +0.706068 0.684547 0.181287 1.08003 0.157727 0.705953 0.684549 0.181723 +0.677779 0.684547 0.268352 1.12003 0.157727 0.677611 0.684549 0.26877 +0.675207 0.637424 0.371198 1.16003 0.181288 0.675003 0.637425 0.371564 +0.716406 0.637424 0.283645 1.12003 0.181288 0.716249 0.637426 0.284034 +0.638801 0.684547 0.351184 1.16003 0.157727 0.638581 0.684549 0.351577 +0.675207 0.637424 0.371198 1.16003 0.181288 0.675003 0.637425 0.371564 +0.677779 0.684547 0.268352 1.12003 0.157727 0.677611 0.684549 0.26877 +0.638801 0.684547 0.351184 1.16003 0.157727 0.638581 0.684549 0.351577 +0.623359 0.637424 0.452897 1.20003 0.181288 0.623111 0.637425 0.453235 +0.675207 0.637424 0.371198 1.16003 0.181288 0.675003 0.637425 0.371564 +0.589749 0.684547 0.428477 1.20003 0.157727 0.589482 0.684549 0.42884 +0.623359 0.637424 0.452897 1.20003 0.181288 0.623111 0.637425 0.453235 +0.638801 0.684547 0.351184 1.16003 0.157727 0.638581 0.684549 0.351577 +0.589749 0.684547 0.428477 1.20003 0.157727 0.589482 0.684549 0.42884 +0.561681 0.637424 0.527453 1.24003 0.181288 0.561392 0.637426 0.527757 +0.623359 0.637424 0.452897 1.20003 0.181288 0.623111 0.637425 0.453235 +0.531396 0.684547 0.499014 1.24003 0.157727 0.531086 0.684549 0.49934 +0.561681 0.637424 0.527453 1.24003 0.181288 0.561392 0.637426 0.527757 +0.589749 0.684547 0.428477 1.20003 0.157727 0.589482 0.684549 0.42884 +0.531396 0.684547 0.499014 1.24003 0.157727 0.531086 0.684549 0.49934 +0.491144 0.637424 0.593691 1.28003 0.181288 0.49082 0.637426 0.593957 +0.561681 0.637424 0.527453 1.24003 0.181288 0.561392 0.637426 0.527757 +0.464663 0.684547 0.561681 1.28003 0.157727 0.464314 0.684549 0.561966 +0.491144 0.637424 0.593691 1.28003 0.181288 0.49082 0.637426 0.593957 +0.531396 0.684547 0.499014 1.24003 0.157727 0.531086 0.684549 0.49934 +0.464663 0.684547 0.561681 1.28003 0.157727 0.464314 0.684549 0.561966 +0.412862 0.637424 0.650567 1.32003 0.181288 0.412507 0.637426 0.650789 +0.491144 0.637424 0.593691 1.28003 0.181288 0.49082 0.637426 0.593957 +0.390601 0.684547 0.615489 1.32003 0.157727 0.39022 0.684549 0.615728 +0.412862 0.637424 0.650567 1.32003 0.181288 0.412507 0.637426 0.650789 +0.464663 0.684547 0.561681 1.28003 0.157727 0.464314 0.684549 0.561966 +0.390601 0.684547 0.615489 1.32003 0.157727 0.39022 0.684549 0.615728 +0.328069 0.637424 0.697182 1.36003 0.181288 0.327688 0.637425 0.697359 +0.412862 0.637424 0.650567 1.32003 0.181288 0.412507 0.637426 0.650789 +0.31038 0.684547 0.659591 1.36003 0.157727 0.309972 0.684549 0.659781 +0.328069 0.637424 0.697182 1.36003 0.181288 0.327688 0.637425 0.697359 +0.390601 0.684547 0.615489 1.32003 0.157727 0.39022 0.684549 0.615728 +0.31038 0.684547 0.659591 1.36003 0.157727 0.309972 0.684549 0.659781 +0.238102 0.637424 0.732802 1.40003 0.181288 0.237702 0.637426 0.73293 +0.328069 0.637424 0.697182 1.36003 0.181288 0.327688 0.637425 0.697359 +0.225264 0.684547 0.693291 1.40003 0.157727 0.224835 0.684549 0.693428 +0.238102 0.637424 0.732802 1.40003 0.181288 0.237702 0.637426 0.73293 +0.31038 0.684547 0.659591 1.36003 0.157727 0.309972 0.684549 0.659781 +0.225264 0.684547 0.693291 1.40003 0.157727 0.224835 0.684549 0.693428 +0.14438 0.637424 0.756866 1.44003 0.181288 0.143968 0.637425 0.756943 +0.238102 0.637424 0.732802 1.40003 0.181288 0.237702 0.637426 0.73293 +0.136595 0.684547 0.716057 1.44003 0.157727 0.136153 0.684548 0.71614 +0.14438 0.637424 0.756866 1.44003 0.181288 0.143968 0.637425 0.756943 +0.225264 0.684547 0.693291 1.40003 0.157727 0.224835 0.684549 0.693428 +0.136595 0.684547 0.716057 1.44003 0.157727 0.136153 0.684548 0.71614 +0.048381 0.637424 0.768994 1.48003 0.181288 0.047962 0.637425 0.769018 +0.14438 0.637424 0.756866 1.44003 0.181288 0.143968 0.637425 0.756943 +0.045772 0.684547 0.727531 1.48003 0.157727 0.045322 0.684549 0.727557 +0.048381 0.637424 0.768994 1.48003 0.181288 0.047962 0.637425 0.769018 +0.136595 0.684547 0.716057 1.44003 0.157727 0.136153 0.684548 0.71614 +0.045772 0.684547 0.727531 1.48003 0.157727 0.045322 0.684549 0.727557 +-0.048381 0.637424 0.768993 1.52003 0.181288 -0.048799 0.637425 0.768965 +0.048381 0.637424 0.768994 1.48003 0.181288 0.047962 0.637425 0.769018 +-0.045772 0.684547 0.727531 1.52003 0.157727 -0.046222 0.684549 0.7275 +-0.048381 0.637424 0.768993 1.52003 0.181288 -0.048799 0.637425 0.768965 +0.045772 0.684547 0.727531 1.48003 0.157727 0.045322 0.684549 0.727557 +-0.045772 0.684547 0.727531 -0.479968 0.157727 -0.046222 0.684549 0.7275 +-0.14438 0.637424 0.756866 -0.439968 0.181288 -0.144791 0.637426 0.756785 +-0.048381 0.637424 0.768993 -0.479968 0.181288 -0.048799 0.637425 0.768965 +-0.136595 0.684547 0.716057 -0.439968 0.157727 -0.137037 0.684549 0.71597 +-0.14438 0.637424 0.756866 -0.439968 0.181288 -0.144791 0.637426 0.756785 +-0.045772 0.684547 0.727531 -0.479968 0.157727 -0.046222 0.684549 0.7275 +-0.136595 0.684547 0.716057 -0.439968 0.157727 -0.137037 0.684549 0.71597 +-0.238102 0.637424 0.732802 -0.399968 0.181288 -0.2385 0.637426 0.732671 +-0.14438 0.637424 0.756866 -0.439968 0.181288 -0.144791 0.637426 0.756785 +-0.225264 0.684547 0.693291 -0.399968 0.157727 -0.225691 0.684549 0.69315 +-0.238102 0.637424 0.732802 -0.399968 0.181288 -0.2385 0.637426 0.732671 +-0.136595 0.684547 0.716057 -0.439968 0.157727 -0.137037 0.684549 0.71597 +-0.225264 0.684547 0.693291 -0.399968 0.157727 -0.225691 0.684549 0.69315 +-0.328069 0.637424 0.697182 -0.359968 0.181288 -0.328448 0.637426 0.697001 +-0.238102 0.637424 0.732802 -0.399968 0.181288 -0.2385 0.637426 0.732671 +-0.31038 0.684547 0.659591 -0.359968 0.157727 -0.310787 0.684548 0.659397 +-0.328069 0.637424 0.697182 -0.359968 0.181288 -0.328448 0.637426 0.697001 +-0.225264 0.684547 0.693291 -0.399968 0.157727 -0.225691 0.684549 0.69315 +-0.31038 0.684547 0.659591 -0.359968 0.157727 -0.310787 0.684548 0.659397 +-0.412862 0.637424 0.650566 -0.319968 0.181288 -0.413215 0.637425 0.65034 +-0.328069 0.637424 0.697182 -0.359968 0.181288 -0.328448 0.637426 0.697001 +-0.390601 0.684547 0.615489 -0.319968 0.157727 -0.39098 0.684548 0.615246 +-0.412862 0.637424 0.650566 -0.319968 0.181288 -0.413215 0.637425 0.65034 +-0.31038 0.684547 0.659591 -0.359968 0.157727 -0.310787 0.684548 0.659397 +-0.390601 0.684547 0.615489 -0.319968 0.157727 -0.39098 0.684548 0.615246 +-0.491144 0.637424 0.593691 -0.279968 0.181288 -0.491466 0.637425 0.593422 +-0.412862 0.637424 0.650566 -0.319968 0.181288 -0.413215 0.637425 0.65034 +-0.464663 0.684547 0.56168 -0.279968 0.157727 -0.465008 0.684549 0.561392 +-0.491144 0.637424 0.593691 -0.279968 0.181288 -0.491466 0.637425 0.593422 +-0.390601 0.684547 0.615489 -0.319968 0.157727 -0.39098 0.684548 0.615246 +-0.464663 0.684547 0.56168 -0.279968 0.157727 -0.465008 0.684549 0.561392 +-0.56168 0.637424 0.527453 -0.239968 0.181288 -0.561966 0.637425 0.527146 +-0.491144 0.637424 0.593691 -0.279968 0.181288 -0.491466 0.637425 0.593422 +-0.531396 0.684547 0.499014 -0.239968 0.157727 -0.531703 0.684549 0.498684 +-0.56168 0.637424 0.527453 -0.239968 0.181288 -0.561966 0.637425 0.527146 +-0.464663 0.684547 0.56168 -0.279968 0.157727 -0.465008 0.684549 0.561392 +-0.531396 0.684547 0.499014 -0.239968 0.157727 -0.531703 0.684549 0.498684 +-0.623359 0.637424 0.452897 -0.199968 0.181288 -0.623604 0.637426 0.452556 +-0.56168 0.637424 0.527453 -0.239968 0.181288 -0.561966 0.637425 0.527146 +-0.589749 0.684547 0.428477 -0.199968 0.157727 -0.590012 0.684549 0.428112 +-0.623359 0.637424 0.452897 -0.199968 0.181288 -0.623604 0.637426 0.452556 +-0.531396 0.684547 0.499014 -0.239968 0.157727 -0.531703 0.684549 0.498684 +-0.589749 0.684547 0.428477 -0.199968 0.157727 -0.590012 0.684549 0.428112 +-0.675206 0.637424 0.371198 -0.159968 0.181288 -0.675407 0.637426 0.370829 +-0.623359 0.637424 0.452897 -0.199968 0.181288 -0.623604 0.637426 0.452556 +-0.638801 0.684547 0.351184 -0.159968 0.157727 -0.639016 0.684548 0.350788 +-0.675206 0.637424 0.371198 -0.159968 0.181288 -0.675407 0.637426 0.370829 +-0.589749 0.684547 0.428477 -0.199968 0.157727 -0.590012 0.684549 0.428112 +-0.638801 0.684547 0.351184 -0.159968 0.157727 -0.639016 0.684548 0.350788 +-0.716406 0.637424 0.283645 -0.119968 0.181288 -0.716558 0.637426 0.283254 +-0.675206 0.637424 0.371198 -0.159968 0.181288 -0.675407 0.637426 0.370829 +-0.677778 0.684547 0.268351 -0.119968 0.157727 -0.677942 0.684549 0.267932 +-0.716406 0.637424 0.283645 -0.119968 0.181288 -0.716558 0.637426 0.283254 +-0.638801 0.684547 0.351184 -0.159968 0.157727 -0.639016 0.684548 0.350788 +-0.677778 0.684547 0.268351 -0.119968 0.157727 -0.677942 0.684549 0.267932 +-0.746307 0.637424 0.191619 -0.079968 0.181288 -0.746409 0.637426 0.191212 +-0.716406 0.637424 0.283645 -0.119968 0.181288 -0.716558 0.637426 0.283254 +-0.706067 0.684547 0.181287 -0.079968 0.157727 -0.706177 0.684548 0.180851 +-0.746307 0.637424 0.191619 -0.079968 0.181288 -0.746409 0.637426 0.191212 +-0.677778 0.684547 0.268351 -0.119968 0.157727 -0.677942 0.684549 0.267932 +-0.706067 0.684547 0.181287 -0.079968 0.157727 -0.706177 0.684548 0.180851 +-0.764438 0.637424 0.096571 -0.039968 0.181288 -0.764489 0.637425 0.096155 +-0.746307 0.637424 0.191619 -0.079968 0.181288 -0.746409 0.637426 0.191212 +-0.723221 0.684547 0.091364 -0.039968 0.157727 -0.723275 0.684549 0.090917 +-0.764438 0.637424 0.096571 -0.039968 0.181288 -0.764489 0.637425 0.096155 +-0.706067 0.684547 0.181287 -0.079968 0.157727 -0.706177 0.684548 0.180851 +-0.723221 0.684547 0.091364 -0.039968 0.157727 -0.723275 0.684549 0.090917 +-0.770514 0.637424 -0 3.2e-005 0.181288 -0.770512 0.637426 -0.000419 +-0.764438 0.637424 0.096571 -0.039968 0.181288 -0.764489 0.637425 0.096155 +-0.728969 0.684547 -0 3.2e-005 0.157727 -0.728967 0.684549 -0.000451 +-0.770514 0.637424 -0 3.2e-005 0.181288 -0.770512 0.637426 -0.000419 +-0.723221 0.684547 0.091364 -0.039968 0.157727 -0.723275 0.684549 0.090917 +-0.728969 0.684547 -0 3.2e-005 0.157727 -0.728967 0.684549 -0.000451 +-0.764438 0.637424 -0.096571 0.040032 0.181288 -0.764384 0.637426 -0.096987 +-0.770514 0.637424 -0 3.2e-005 0.181288 -0.770512 0.637426 -0.000419 +-0.723221 0.684547 -0.091364 0.040032 0.157727 -0.723163 0.684549 -0.091811 +-0.764438 0.637424 -0.096571 0.040032 0.181288 -0.764384 0.637426 -0.096987 +-0.728969 0.684547 -0 3.2e-005 0.157727 -0.728967 0.684549 -0.000451 +-0.723221 0.684547 -0.091364 0.040032 0.157727 -0.723163 0.684549 -0.091811 +-0.746307 0.637424 -0.191619 0.080032 0.181288 -0.7462 0.637426 -0.192025 +-0.764438 0.637424 -0.096571 0.040032 0.181288 -0.764384 0.637426 -0.096987 +-0.706067 0.684547 -0.181287 0.080032 0.157727 -0.705953 0.684549 -0.181723 +-0.746307 0.637424 -0.191619 0.080032 0.181288 -0.7462 0.637426 -0.192025 +-0.723221 0.684547 -0.091364 0.040032 0.157727 -0.723163 0.684549 -0.091811 +-0.706067 0.684547 -0.181287 0.080032 0.157727 -0.705953 0.684549 -0.181723 +-0.716406 0.637424 -0.283645 0.120032 0.181288 -0.716249 0.637425 -0.284035 +-0.746307 0.637424 -0.191619 0.080032 0.181288 -0.7462 0.637426 -0.192025 +-0.677778 0.684547 -0.268351 0.120032 0.157727 -0.677611 0.684549 -0.26877 +-0.716406 0.637424 -0.283645 0.120032 0.181288 -0.716249 0.637425 -0.284035 +-0.706067 0.684547 -0.181287 0.080032 0.157727 -0.705953 0.684549 -0.181723 +-0.677778 0.684547 -0.268351 0.120032 0.157727 -0.677611 0.684549 -0.26877 +-0.675206 0.637424 -0.371198 0.160032 0.181288 -0.675003 0.637425 -0.371565 +-0.716406 0.637424 -0.283645 0.120032 0.181288 -0.716249 0.637425 -0.284035 +-0.6388 0.684547 -0.351184 0.160032 0.157727 -0.638582 0.684548 -0.351578 +-0.675206 0.637424 -0.371198 0.160032 0.181288 -0.675003 0.637425 -0.371565 +-0.677778 0.684547 -0.268351 0.120032 0.157727 -0.677611 0.684549 -0.26877 +-0.6388 0.684547 -0.351184 0.160032 0.157727 -0.638582 0.684548 -0.351578 +-0.623359 0.637424 -0.452897 0.200032 0.181288 -0.623111 0.637425 -0.453235 +-0.675206 0.637424 -0.371198 0.160032 0.181288 -0.675003 0.637425 -0.371565 +-0.589748 0.684547 -0.428477 0.200032 0.157727 -0.589482 0.684549 -0.42884 +-0.623359 0.637424 -0.452897 0.200032 0.181288 -0.623111 0.637425 -0.453235 +-0.6388 0.684547 -0.351184 0.160032 0.157727 -0.638582 0.684548 -0.351578 +-0.589748 0.684547 -0.428477 0.200032 0.157727 -0.589482 0.684549 -0.42884 +-0.56168 0.637424 -0.527453 0.240032 0.181288 -0.561392 0.637425 -0.527757 +-0.623359 0.637424 -0.452897 0.200032 0.181288 -0.623111 0.637425 -0.453235 +-0.531395 0.684547 -0.499014 0.240032 0.157727 -0.531086 0.684548 -0.499341 +-0.56168 0.637424 -0.527453 0.240032 0.181288 -0.561392 0.637425 -0.527757 +-0.589748 0.684547 -0.428477 0.200032 0.157727 -0.589482 0.684549 -0.42884 +-0.531395 0.684547 -0.499014 0.240032 0.157727 -0.531086 0.684548 -0.499341 +-0.491144 0.637424 -0.593691 0.280032 0.181288 -0.49082 0.637425 -0.593957 +-0.56168 0.637424 -0.527453 0.240032 0.181288 -0.561392 0.637425 -0.527757 +-0.464662 0.684547 -0.56168 0.280032 0.157727 -0.464314 0.684549 -0.561966 +-0.491144 0.637424 -0.593691 0.280032 0.181288 -0.49082 0.637425 -0.593957 +-0.531395 0.684547 -0.499014 0.240032 0.157727 -0.531086 0.684548 -0.499341 +-0.464662 0.684547 -0.56168 0.280032 0.157727 -0.464314 0.684549 -0.561966 +-0.412862 0.637424 -0.650566 0.320032 0.181288 -0.412507 0.637425 -0.65079 +-0.491144 0.637424 -0.593691 0.280032 0.181288 -0.49082 0.637425 -0.593957 +-0.390601 0.684547 -0.615489 0.320032 0.157727 -0.39022 0.684549 -0.615729 +-0.412862 0.637424 -0.650566 0.320032 0.181288 -0.412507 0.637425 -0.65079 +-0.464662 0.684547 -0.56168 0.280032 0.157727 -0.464314 0.684549 -0.561966 +-0.390601 0.684547 -0.615489 0.320032 0.157727 -0.39022 0.684549 -0.615729 +-0.328069 0.637424 -0.697182 0.360032 0.181288 -0.327688 0.637425 -0.697359 +-0.412862 0.637424 -0.650566 0.320032 0.181288 -0.412507 0.637425 -0.65079 +-0.31038 0.684547 -0.659591 0.360032 0.157727 -0.309972 0.684549 -0.659781 +-0.328069 0.637424 -0.697182 0.360032 0.181288 -0.327688 0.637425 -0.697359 +-0.390601 0.684547 -0.615489 0.320032 0.157727 -0.39022 0.684549 -0.615729 +-0.31038 0.684547 -0.659591 0.360032 0.157727 -0.309972 0.684549 -0.659781 +-0.238102 0.637424 -0.732802 0.400032 0.181288 -0.237703 0.637425 -0.73293 +-0.328069 0.637424 -0.697182 0.360032 0.181288 -0.327688 0.637425 -0.697359 +-0.225264 0.684547 -0.693291 0.400032 0.157727 -0.224835 0.684548 -0.693428 +-0.238102 0.637424 -0.732802 0.400032 0.181288 -0.237703 0.637425 -0.73293 +-0.31038 0.684547 -0.659591 0.360032 0.157727 -0.309972 0.684549 -0.659781 +-0.225264 0.684547 -0.693291 0.400032 0.157727 -0.224835 0.684548 -0.693428 +-0.14438 0.637424 -0.756866 0.440032 0.181288 -0.143968 0.637425 -0.756943 +-0.238102 0.637424 -0.732802 0.400032 0.181288 -0.237703 0.637425 -0.73293 +-0.136595 0.684547 -0.716057 0.440032 0.157727 -0.136152 0.684548 -0.71614 +-0.14438 0.637424 -0.756866 0.440032 0.181288 -0.143968 0.637425 -0.756943 +-0.225264 0.684547 -0.693291 0.400032 0.157727 -0.224835 0.684548 -0.693428 +-0.136595 0.684547 -0.716057 0.440032 0.157727 -0.136152 0.684548 -0.71614 +-0.048381 0.637424 -0.768993 0.480032 0.181288 -0.047962 0.637425 -0.769018 +-0.14438 0.637424 -0.756866 0.440032 0.181288 -0.143968 0.637425 -0.756943 +-0.045772 0.684547 -0.72753 0.480032 0.157727 -0.045323 0.684548 -0.727557 +-0.048381 0.637424 -0.768993 0.480032 0.181288 -0.047962 0.637425 -0.769018 +-0.136595 0.684547 -0.716057 0.440032 0.157727 -0.136152 0.684548 -0.71614 +-0.045772 0.684547 -0.72753 0.480032 0.157727 -0.045323 0.684548 -0.727557 +0.048381 0.637424 -0.768993 0.520032 0.181288 0.048799 0.637425 -0.768965 +-0.048381 0.637424 -0.768993 0.480032 0.181288 -0.047962 0.637425 -0.769018 +0.045772 0.684547 -0.72753 0.520032 0.157727 0.046222 0.684549 -0.7275 +0.048381 0.637424 -0.768993 0.520032 0.181288 0.048799 0.637425 -0.768965 +-0.045772 0.684547 -0.72753 0.480032 0.157727 -0.045323 0.684548 -0.727557 +0.045772 0.684547 -0.72753 0.520032 0.157727 0.046222 0.684549 -0.7275 +0.14438 0.637424 -0.756866 0.560032 0.181288 0.144791 0.637425 -0.756786 +0.048381 0.637424 -0.768993 0.520032 0.181288 0.048799 0.637425 -0.768965 +0.136595 0.684547 -0.716057 0.560032 0.157727 0.137037 0.684548 -0.715971 +0.14438 0.637424 -0.756866 0.560032 0.181288 0.144791 0.637425 -0.756786 +0.045772 0.684547 -0.72753 0.520032 0.157727 0.046222 0.684549 -0.7275 +0.136595 0.684547 -0.716057 0.560032 0.157727 0.137037 0.684548 -0.715971 +0.238102 0.637424 -0.732802 0.600032 0.181288 0.238501 0.637425 -0.732671 +0.14438 0.637424 -0.756866 0.560032 0.181288 0.144791 0.637425 -0.756786 +0.225264 0.684547 -0.693291 0.600032 0.157727 0.225692 0.684549 -0.69315 +0.238102 0.637424 -0.732802 0.600032 0.181288 0.238501 0.637425 -0.732671 +0.136595 0.684547 -0.716057 0.560032 0.157727 0.137037 0.684548 -0.715971 +0.225264 0.684547 -0.693291 0.600032 0.157727 0.225692 0.684549 -0.69315 +0.328069 0.637424 -0.697181 0.640032 0.181288 0.328448 0.637425 -0.697002 +0.238102 0.637424 -0.732802 0.600032 0.181288 0.238501 0.637425 -0.732671 +0.31038 0.684547 -0.659591 0.640032 0.157727 0.310787 0.684549 -0.659397 +0.328069 0.637424 -0.697181 0.640032 0.181288 0.328448 0.637425 -0.697002 +0.225264 0.684547 -0.693291 0.600032 0.157727 0.225692 0.684549 -0.69315 +0.31038 0.684547 -0.659591 0.640032 0.157727 0.310787 0.684549 -0.659397 +0.412862 0.637424 -0.650566 0.680032 0.181288 0.413215 0.637425 -0.65034 +0.328069 0.637424 -0.697181 0.640032 0.181288 0.328448 0.637425 -0.697002 +0.390601 0.684547 -0.615489 0.680032 0.157727 0.39098 0.684548 -0.615246 +0.412862 0.637424 -0.650566 0.680032 0.181288 0.413215 0.637425 -0.65034 +0.31038 0.684547 -0.659591 0.640032 0.157727 0.310787 0.684549 -0.659397 +0.390601 0.684547 -0.615489 0.680032 0.157727 0.39098 0.684548 -0.615246 +0.491144 0.637424 -0.593691 0.720032 0.181288 0.491466 0.637425 -0.593423 +0.412862 0.637424 -0.650566 0.680032 0.181288 0.413215 0.637425 -0.65034 +0.464662 0.684547 -0.56168 0.720032 0.157727 0.465008 0.684548 -0.561392 +0.491144 0.637424 -0.593691 0.720032 0.181288 0.491466 0.637425 -0.593423 +0.390601 0.684547 -0.615489 0.680032 0.157727 0.39098 0.684548 -0.615246 +0.464662 0.684547 -0.56168 0.720032 0.157727 0.465008 0.684548 -0.561392 +0.56168 0.637424 -0.527453 0.760032 0.181288 0.561966 0.637425 -0.527146 +0.491144 0.637424 -0.593691 0.720032 0.181288 0.491466 0.637425 -0.593423 +0.531395 0.684547 -0.499013 0.760032 0.157727 0.531703 0.684548 -0.498684 +0.56168 0.637424 -0.527453 0.760032 0.181288 0.561966 0.637425 -0.527146 +0.464662 0.684547 -0.56168 0.720032 0.157727 0.465008 0.684548 -0.561392 +0.531395 0.684547 -0.499013 0.760032 0.157727 0.531703 0.684548 -0.498684 +0.623358 0.637424 -0.452896 0.800032 0.181288 0.623604 0.637425 -0.452556 +0.56168 0.637424 -0.527453 0.760032 0.181288 0.561966 0.637425 -0.527146 +0.589748 0.684547 -0.428477 0.800032 0.157727 0.590012 0.684548 -0.428112 +0.623358 0.637424 -0.452896 0.800032 0.181288 0.623604 0.637425 -0.452556 +0.531395 0.684547 -0.499013 0.760032 0.157727 0.531703 0.684548 -0.498684 +0.589748 0.684547 -0.428477 0.800032 0.157727 0.590012 0.684548 -0.428112 +0.675206 0.637424 -0.371198 0.840032 0.181288 0.675407 0.637425 -0.37083 +0.623358 0.637424 -0.452896 0.800032 0.181288 0.623604 0.637425 -0.452556 +0.6388 0.684547 -0.351183 0.840032 0.157727 0.639016 0.684548 -0.350788 +0.675206 0.637424 -0.371198 0.840032 0.181288 0.675407 0.637425 -0.37083 +0.589748 0.684547 -0.428477 0.800032 0.157727 0.590012 0.684548 -0.428112 +0.6388 0.684547 -0.351183 0.840032 0.157727 0.639016 0.684548 -0.350788 +0.716405 0.637424 -0.283645 0.880032 0.181288 0.716559 0.637425 -0.283255 +0.675206 0.637424 -0.371198 0.840032 0.181288 0.675407 0.637425 -0.37083 +0.677778 0.684547 -0.268351 0.880032 0.157727 0.677942 0.684548 -0.267932 +0.716405 0.637424 -0.283645 0.880032 0.181288 0.716559 0.637425 -0.283255 +0.6388 0.684547 -0.351183 0.840032 0.157727 0.639016 0.684548 -0.350788 +0.677778 0.684547 -0.268351 0.880032 0.157727 0.677942 0.684548 -0.267932 +0.746306 0.637424 -0.191619 0.920032 0.181288 0.746409 0.637425 -0.191213 +0.716405 0.637424 -0.283645 0.880032 0.181288 0.716559 0.637425 -0.283255 +0.706067 0.684547 -0.181287 0.920032 0.157727 0.706177 0.684549 -0.180851 +0.746306 0.637424 -0.191619 0.920032 0.181288 0.746409 0.637425 -0.191213 +0.677778 0.684547 -0.268351 0.880032 0.157727 0.677942 0.684548 -0.267932 +0.706067 0.684547 -0.181287 0.920032 0.157727 0.706177 0.684549 -0.180851 +0.764438 0.637424 -0.096571 0.960032 0.181288 0.764489 0.637425 -0.096155 +0.746306 0.637424 -0.191619 0.920032 0.181288 0.746409 0.637425 -0.191213 +0.723221 0.684547 -0.091364 0.960032 0.157727 0.723275 0.684549 -0.090917 +0.764438 0.637424 -0.096571 0.960032 0.181288 0.764489 0.637425 -0.096155 +0.706067 0.684547 -0.181287 0.920032 0.157727 0.706177 0.684549 -0.180851 +0.723221 0.684547 -0.091364 0.960032 0.157727 0.723275 0.684549 -0.090917 +0.770513 0.637424 -0 1.00003 0.181288 0.770513 0.637425 0.000416 +0.764438 0.637424 -0.096571 0.960032 0.181288 0.764489 0.637425 -0.096155 +0.728969 0.684547 -0 1.00003 0.157727 0.728967 0.684549 0.000447 +0.770513 0.637424 -0 1.00003 0.181288 0.770513 0.637425 0.000416 +0.723221 0.684547 -0.091364 0.960032 0.157727 0.723275 0.684549 -0.090917 +0.728969 0.684547 -0 1.00003 0.157727 0.728967 0.684549 0.000447 +0.764438 0.637424 0.096571 1.04003 0.181288 0.764384 0.637425 0.096983 +0.770513 0.637424 -0 1.00003 0.181288 0.770513 0.637425 0.000416 +0.723221 0.684547 0.091364 1.04003 0.157727 0.723162 0.684549 0.091807 +0.764438 0.637424 0.096571 1.04003 0.181288 0.764384 0.637425 0.096983 +0.728969 0.684547 -0 1.00003 0.157727 0.728967 0.684549 0.000447 +0.67915 0.728969 0.085797 1.04003 0.135516 0.679088 0.72897 0.086269 +0.706068 0.684547 0.181287 1.08003 0.157727 0.705953 0.684549 0.181723 +0.723221 0.684547 0.091364 1.04003 0.157727 0.723162 0.684549 0.091807 +0.663042 0.728969 0.17024 1.08003 0.135516 0.662919 0.728971 0.170704 +0.706068 0.684547 0.181287 1.08003 0.157727 0.705953 0.684549 0.181723 +0.67915 0.728969 0.085797 1.04003 0.135516 0.679088 0.72897 0.086269 +0.663042 0.728969 0.17024 1.08003 0.135516 0.662919 0.728971 0.170704 +0.677779 0.684547 0.268352 1.12003 0.157727 0.677611 0.684549 0.26877 +0.706068 0.684547 0.181287 1.08003 0.157727 0.705953 0.684549 0.181723 +0.636477 0.728969 0.251999 1.12003 0.135516 0.636298 0.72897 0.252444 +0.677779 0.684547 0.268352 1.12003 0.157727 0.677611 0.684549 0.26877 +0.663042 0.728969 0.17024 1.08003 0.135516 0.662919 0.728971 0.170704 +0.636477 0.728969 0.251999 1.12003 0.135516 0.636298 0.72897 0.252444 +0.638801 0.684547 0.351184 1.16003 0.157727 0.638581 0.684549 0.351577 +0.677779 0.684547 0.268352 1.12003 0.157727 0.677611 0.684549 0.26877 +0.599874 0.728969 0.329783 1.16003 0.135516 0.59964 0.72897 0.330202 +0.638801 0.684547 0.351184 1.16003 0.157727 0.638581 0.684549 0.351577 +0.636477 0.728969 0.251999 1.12003 0.135516 0.636298 0.72897 0.252444 +0.599874 0.728969 0.329783 1.16003 0.135516 0.59964 0.72897 0.330202 +0.589749 0.684547 0.428477 1.20003 0.157727 0.589482 0.684549 0.42884 +0.638801 0.684547 0.351184 1.16003 0.157727 0.638581 0.684549 0.351577 +0.553811 0.728969 0.402367 1.20003 0.135516 0.553527 0.72897 0.402753 +0.589749 0.684547 0.428477 1.20003 0.157727 0.589482 0.684549 0.42884 +0.599874 0.728969 0.329783 1.16003 0.135516 0.59964 0.72897 0.330202 +0.553811 0.728969 0.402367 1.20003 0.135516 0.553527 0.72897 0.402753 +0.531396 0.684547 0.499014 1.24003 0.157727 0.531086 0.684549 0.49934 +0.589749 0.684547 0.428477 1.20003 0.157727 0.589482 0.684549 0.42884 +0.499014 0.728969 0.468605 1.24003 0.135516 0.498684 0.72897 0.468953 +0.531396 0.684547 0.499014 1.24003 0.157727 0.531086 0.684549 0.49934 +0.553811 0.728969 0.402367 1.20003 0.135516 0.553527 0.72897 0.402753 +0.499014 0.728969 0.468605 1.24003 0.135516 0.498684 0.72897 0.468953 +0.464663 0.684547 0.561681 1.28003 0.157727 0.464314 0.684549 0.561966 +0.531396 0.684547 0.499014 1.24003 0.157727 0.531086 0.684549 0.49934 +0.436347 0.728969 0.527453 1.28003 0.135516 0.435976 0.72897 0.527757 +0.464663 0.684547 0.561681 1.28003 0.157727 0.464314 0.684549 0.561966 +0.499014 0.728969 0.468605 1.24003 0.135516 0.498684 0.72897 0.468953 +0.436347 0.728969 0.527453 1.28003 0.135516 0.435976 0.72897 0.527757 +0.390601 0.684547 0.615489 1.32003 0.157727 0.39022 0.684549 0.615728 +0.464663 0.684547 0.561681 1.28003 0.157727 0.464314 0.684549 0.561966 +0.366799 0.728969 0.577983 1.32003 0.135516 0.366392 0.72897 0.578238 +0.390601 0.684547 0.615489 1.32003 0.157727 0.39022 0.684549 0.615728 +0.436347 0.728969 0.527453 1.28003 0.135516 0.435976 0.72897 0.527757 +0.366799 0.728969 0.577983 1.32003 0.135516 0.366392 0.72897 0.578238 +0.31038 0.684547 0.659591 1.36003 0.157727 0.309972 0.684549 0.659781 +0.390601 0.684547 0.615489 1.32003 0.157727 0.39022 0.684549 0.615728 +0.291466 0.728969 0.619397 1.36003 0.135516 0.291031 0.72897 0.619599 +0.31038 0.684547 0.659591 1.36003 0.157727 0.309972 0.684549 0.659781 +0.366799 0.728969 0.577983 1.32003 0.135516 0.366392 0.72897 0.578238 +0.291466 0.728969 0.619397 1.36003 0.135516 0.291031 0.72897 0.619599 +0.225264 0.684547 0.693291 1.40003 0.157727 0.224835 0.684549 0.693428 +0.31038 0.684547 0.659591 1.36003 0.157727 0.309972 0.684549 0.659781 +0.211537 0.728969 0.651044 1.40003 0.135516 0.21108 0.72897 0.651189 +0.225264 0.684547 0.693291 1.40003 0.157727 0.224835 0.684549 0.693428 +0.291466 0.728969 0.619397 1.36003 0.135516 0.291031 0.72897 0.619599 +0.211537 0.728969 0.651044 1.40003 0.135516 0.21108 0.72897 0.651189 +0.136595 0.684547 0.716057 1.44003 0.157727 0.136153 0.684548 0.71614 +0.225264 0.684547 0.693291 1.40003 0.157727 0.224835 0.684549 0.693428 +0.128271 0.728969 0.672423 1.44003 0.135516 0.1278 0.72897 0.67251 +0.136595 0.684547 0.716057 1.44003 0.157727 0.136153 0.684548 0.71614 +0.211537 0.728969 0.651044 1.40003 0.135516 0.21108 0.72897 0.651189 +0.128271 0.728969 0.672423 1.44003 0.135516 0.1278 0.72897 0.67251 +0.045772 0.684547 0.727531 1.48003 0.157727 0.045322 0.684549 0.727557 +0.136595 0.684547 0.716057 1.44003 0.157727 0.136153 0.684548 0.71614 +0.042983 0.728969 0.683197 1.48003 0.135516 0.042504 0.728971 0.683224 +0.045772 0.684547 0.727531 1.48003 0.157727 0.045322 0.684549 0.727557 +0.128271 0.728969 0.672423 1.44003 0.135516 0.1278 0.72897 0.67251 +0.042983 0.728969 0.683197 1.48003 0.135516 0.042504 0.728971 0.683224 +-0.045772 0.684547 0.727531 1.52003 0.157727 -0.046222 0.684549 0.7275 +0.045772 0.684547 0.727531 1.48003 0.157727 0.045322 0.684549 0.727557 +-0.042983 0.728969 0.683197 1.52003 0.135516 -0.043462 0.72897 0.683164 +-0.045772 0.684547 0.727531 1.52003 0.157727 -0.046222 0.684549 0.7275 +0.042983 0.728969 0.683197 1.48003 0.135516 0.042504 0.728971 0.683224 +-0.042983 0.728969 0.683197 -0.479968 0.135516 -0.043462 0.72897 0.683164 +-0.136595 0.684547 0.716057 -0.439968 0.157727 -0.137037 0.684549 0.71597 +-0.045772 0.684547 0.727531 -0.479968 0.157727 -0.046222 0.684549 0.7275 +-0.128272 0.728969 0.672422 -0.439968 0.135516 -0.128742 0.72897 0.67233 +-0.136595 0.684547 0.716057 -0.439968 0.157727 -0.137037 0.684549 0.71597 +-0.042983 0.728969 0.683197 -0.479968 0.135516 -0.043462 0.72897 0.683164 +-0.128272 0.728969 0.672422 -0.439968 0.135516 -0.128742 0.72897 0.67233 +-0.225264 0.684547 0.693291 -0.399968 0.157727 -0.225691 0.684549 0.69315 +-0.136595 0.684547 0.716057 -0.439968 0.157727 -0.137037 0.684549 0.71597 +-0.211537 0.728969 0.651044 -0.399968 0.135516 -0.211992 0.72897 0.650893 +-0.225264 0.684547 0.693291 -0.399968 0.157727 -0.225691 0.684549 0.69315 +-0.128272 0.728969 0.672422 -0.439968 0.135516 -0.128742 0.72897 0.67233 +-0.211537 0.728969 0.651044 -0.399968 0.135516 -0.211992 0.72897 0.650893 +-0.31038 0.684547 0.659591 -0.359968 0.157727 -0.310787 0.684548 0.659397 +-0.225264 0.684547 0.693291 -0.399968 0.157727 -0.225691 0.684549 0.69315 +-0.291466 0.728969 0.619397 -0.359968 0.135516 -0.2919 0.72897 0.619191 +-0.31038 0.684547 0.659591 -0.359968 0.157727 -0.310787 0.684548 0.659397 +-0.211537 0.728969 0.651044 -0.399968 0.135516 -0.211992 0.72897 0.650893 +-0.291466 0.728969 0.619397 -0.359968 0.135516 -0.2919 0.72897 0.619191 +-0.390601 0.684547 0.615489 -0.319968 0.157727 -0.39098 0.684548 0.615246 +-0.31038 0.684547 0.659591 -0.359968 0.157727 -0.310787 0.684548 0.659397 +-0.366799 0.728969 0.577983 -0.319968 0.135516 -0.367203 0.72897 0.577724 +-0.390601 0.684547 0.615489 -0.319968 0.157727 -0.39098 0.684548 0.615246 +-0.291466 0.728969 0.619397 -0.359968 0.135516 -0.2919 0.72897 0.619191 +-0.366799 0.728969 0.577983 -0.319968 0.135516 -0.367203 0.72897 0.577724 +-0.464663 0.684547 0.56168 -0.279968 0.157727 -0.465008 0.684549 0.561392 +-0.390601 0.684547 0.615489 -0.319968 0.157727 -0.39098 0.684548 0.615246 +-0.436347 0.728969 0.527453 -0.279968 0.135516 -0.436715 0.728971 0.527145 +-0.464663 0.684547 0.56168 -0.279968 0.157727 -0.465008 0.684549 0.561392 +-0.366799 0.728969 0.577983 -0.319968 0.135516 -0.367203 0.72897 0.577724 +-0.436347 0.728969 0.527453 -0.279968 0.135516 -0.436715 0.728971 0.527145 +-0.531396 0.684547 0.499014 -0.239968 0.157727 -0.531703 0.684549 0.498684 +-0.464663 0.684547 0.56168 -0.279968 0.157727 -0.465008 0.684549 0.561392 +-0.499014 0.728969 0.468605 -0.239968 0.135516 -0.499341 0.72897 0.468253 +-0.531396 0.684547 0.499014 -0.239968 0.157727 -0.531703 0.684549 0.498684 +-0.436347 0.728969 0.527453 -0.279968 0.135516 -0.436715 0.728971 0.527145 +-0.499014 0.728969 0.468605 -0.239968 0.135516 -0.499341 0.72897 0.468253 +-0.589749 0.684547 0.428477 -0.199968 0.157727 -0.590012 0.684549 0.428112 +-0.531396 0.684547 0.499014 -0.239968 0.157727 -0.531703 0.684549 0.498684 +-0.553811 0.728969 0.402367 -0.199968 0.135516 -0.554091 0.72897 0.401978 +-0.589749 0.684547 0.428477 -0.199968 0.157727 -0.590012 0.684549 0.428112 +-0.499014 0.728969 0.468605 -0.239968 0.135516 -0.499341 0.72897 0.468253 +-0.553811 0.728969 0.402367 -0.199968 0.135516 -0.554091 0.72897 0.401978 +-0.638801 0.684547 0.351184 -0.159968 0.157727 -0.639016 0.684548 0.350788 +-0.589749 0.684547 0.428477 -0.199968 0.157727 -0.590012 0.684549 0.428112 +-0.599874 0.728969 0.329783 -0.159968 0.135516 -0.600103 0.72897 0.329362 +-0.638801 0.684547 0.351184 -0.159968 0.157727 -0.639016 0.684548 0.350788 +-0.553811 0.728969 0.402367 -0.199968 0.135516 -0.554091 0.72897 0.401978 +-0.599874 0.728969 0.329783 -0.159968 0.135516 -0.600103 0.72897 0.329362 +-0.677778 0.684547 0.268351 -0.119968 0.157727 -0.677942 0.684549 0.267932 +-0.638801 0.684547 0.351184 -0.159968 0.157727 -0.639016 0.684548 0.350788 +-0.636476 0.728969 0.251999 -0.119968 0.135516 -0.636651 0.72897 0.251552 +-0.677778 0.684547 0.268351 -0.119968 0.157727 -0.677942 0.684549 0.267932 +-0.599874 0.728969 0.329783 -0.159968 0.135516 -0.600103 0.72897 0.329362 +-0.636476 0.728969 0.251999 -0.119968 0.135516 -0.636651 0.72897 0.251552 +-0.706067 0.684547 0.181287 -0.079968 0.157727 -0.706177 0.684548 0.180851 +-0.677778 0.684547 0.268351 -0.119968 0.157727 -0.677942 0.684549 0.267932 +-0.663041 0.728969 0.17024 -0.079968 0.135516 -0.663158 0.72897 0.169775 +-0.706067 0.684547 0.181287 -0.079968 0.157727 -0.706177 0.684548 0.180851 +-0.636476 0.728969 0.251999 -0.119968 0.135516 -0.636651 0.72897 0.251552 +-0.663041 0.728969 0.17024 -0.079968 0.135516 -0.663158 0.72897 0.169775 +-0.723221 0.684547 0.091364 -0.039968 0.157727 -0.723275 0.684549 0.090917 +-0.706067 0.684547 0.181287 -0.079968 0.157727 -0.706177 0.684548 0.180851 +-0.67915 0.728969 0.085797 -0.039968 0.135516 -0.679208 0.72897 0.08532 +-0.723221 0.684547 0.091364 -0.039968 0.157727 -0.723275 0.684549 0.090917 +-0.663041 0.728969 0.17024 -0.079968 0.135516 -0.663158 0.72897 0.169775 +-0.67915 0.728969 0.085797 -0.039968 0.135516 -0.679208 0.72897 0.08532 +-0.728969 0.684547 -0 3.2e-005 0.157727 -0.728967 0.684549 -0.000451 +-0.723221 0.684547 0.091364 -0.039968 0.157727 -0.723275 0.684549 0.090917 +-0.684548 0.728969 -0 3.2e-005 0.135516 -0.684545 0.72897 -0.00048 +-0.728969 0.684547 -0 3.2e-005 0.157727 -0.728967 0.684549 -0.000451 +-0.67915 0.728969 0.085797 -0.039968 0.135516 -0.679208 0.72897 0.08532 +-0.684548 0.728969 -0 3.2e-005 0.135516 -0.684545 0.72897 -0.00048 +-0.723221 0.684547 -0.091364 0.040032 0.157727 -0.723163 0.684549 -0.091811 +-0.728969 0.684547 -0 3.2e-005 0.157727 -0.728967 0.684549 -0.000451 +-0.67915 0.728969 -0.085797 0.040032 0.135516 -0.679088 0.72897 -0.086272 +-0.723221 0.684547 -0.091364 0.040032 0.157727 -0.723163 0.684549 -0.091811 +-0.684548 0.728969 -0 3.2e-005 0.135516 -0.684545 0.72897 -0.00048 +-0.67915 0.728969 -0.085797 0.040032 0.135516 -0.679088 0.72897 -0.086272 +-0.706067 0.684547 -0.181287 0.080032 0.157727 -0.705953 0.684549 -0.181723 +-0.723221 0.684547 -0.091364 0.040032 0.157727 -0.723163 0.684549 -0.091811 +-0.663041 0.728969 -0.17024 0.080032 0.135516 -0.66292 0.72897 -0.170704 +-0.706067 0.684547 -0.181287 0.080032 0.157727 -0.705953 0.684549 -0.181723 +-0.67915 0.728969 -0.085797 0.040032 0.135516 -0.679088 0.72897 -0.086272 +-0.663041 0.728969 -0.17024 0.080032 0.135516 -0.66292 0.72897 -0.170704 +-0.677778 0.684547 -0.268351 0.120032 0.157727 -0.677611 0.684549 -0.26877 +-0.706067 0.684547 -0.181287 0.080032 0.157727 -0.705953 0.684549 -0.181723 +-0.636476 0.728969 -0.251999 0.120032 0.135516 -0.636298 0.72897 -0.252444 +-0.677778 0.684547 -0.268351 0.120032 0.157727 -0.677611 0.684549 -0.26877 +-0.663041 0.728969 -0.17024 0.080032 0.135516 -0.66292 0.72897 -0.170704 +-0.636476 0.728969 -0.251999 0.120032 0.135516 -0.636298 0.72897 -0.252444 +-0.6388 0.684547 -0.351184 0.160032 0.157727 -0.638582 0.684548 -0.351578 +-0.677778 0.684547 -0.268351 0.120032 0.157727 -0.677611 0.684549 -0.26877 +-0.599874 0.728969 -0.329783 0.160032 0.135516 -0.599641 0.72897 -0.330203 +-0.6388 0.684547 -0.351184 0.160032 0.157727 -0.638582 0.684548 -0.351578 +-0.636476 0.728969 -0.251999 0.120032 0.135516 -0.636298 0.72897 -0.252444 +-0.599874 0.728969 -0.329783 0.160032 0.135516 -0.599641 0.72897 -0.330203 +-0.589748 0.684547 -0.428477 0.200032 0.157727 -0.589482 0.684549 -0.42884 +-0.6388 0.684547 -0.351184 0.160032 0.157727 -0.638582 0.684548 -0.351578 +-0.553811 0.728969 -0.402367 0.200032 0.135516 -0.553527 0.72897 -0.402754 +-0.589748 0.684547 -0.428477 0.200032 0.157727 -0.589482 0.684549 -0.42884 +-0.599874 0.728969 -0.329783 0.160032 0.135516 -0.599641 0.72897 -0.330203 +-0.553811 0.728969 -0.402367 0.200032 0.135516 -0.553527 0.72897 -0.402754 +-0.531395 0.684547 -0.499014 0.240032 0.157727 -0.531086 0.684548 -0.499341 +-0.589748 0.684547 -0.428477 0.200032 0.157727 -0.589482 0.684549 -0.42884 +-0.499014 0.728969 -0.468605 0.240032 0.135516 -0.498684 0.72897 -0.468953 +-0.531395 0.684547 -0.499014 0.240032 0.157727 -0.531086 0.684548 -0.499341 +-0.553811 0.728969 -0.402367 0.200032 0.135516 -0.553527 0.72897 -0.402754 +-0.499014 0.728969 -0.468605 0.240032 0.135516 -0.498684 0.72897 -0.468953 +-0.464662 0.684547 -0.56168 0.280032 0.157727 -0.464314 0.684549 -0.561966 +-0.531395 0.684547 -0.499014 0.240032 0.157727 -0.531086 0.684548 -0.499341 +-0.436347 0.728969 -0.527453 0.280032 0.135516 -0.435976 0.72897 -0.527757 +-0.464662 0.684547 -0.56168 0.280032 0.157727 -0.464314 0.684549 -0.561966 +-0.499014 0.728969 -0.468605 0.240032 0.135516 -0.498684 0.72897 -0.468953 +-0.436347 0.728969 -0.527453 0.280032 0.135516 -0.435976 0.72897 -0.527757 +-0.390601 0.684547 -0.615489 0.320032 0.157727 -0.39022 0.684549 -0.615729 +-0.464662 0.684547 -0.56168 0.280032 0.157727 -0.464314 0.684549 -0.561966 +-0.366799 0.728969 -0.577983 0.320032 0.135516 -0.366393 0.72897 -0.578238 +-0.390601 0.684547 -0.615489 0.320032 0.157727 -0.39022 0.684549 -0.615729 +-0.436347 0.728969 -0.527453 0.280032 0.135516 -0.435976 0.72897 -0.527757 +-0.366799 0.728969 -0.577983 0.320032 0.135516 -0.366393 0.72897 -0.578238 +-0.31038 0.684547 -0.659591 0.360032 0.157727 -0.309972 0.684549 -0.659781 +-0.390601 0.684547 -0.615489 0.320032 0.157727 -0.39022 0.684549 -0.615729 +-0.291466 0.728969 -0.619397 0.360032 0.135516 -0.291031 0.72897 -0.619599 +-0.31038 0.684547 -0.659591 0.360032 0.157727 -0.309972 0.684549 -0.659781 +-0.366799 0.728969 -0.577983 0.320032 0.135516 -0.366393 0.72897 -0.578238 +-0.291466 0.728969 -0.619397 0.360032 0.135516 -0.291031 0.72897 -0.619599 +-0.225264 0.684547 -0.693291 0.400032 0.157727 -0.224835 0.684548 -0.693428 +-0.31038 0.684547 -0.659591 0.360032 0.157727 -0.309972 0.684549 -0.659781 +-0.211537 0.728969 -0.651043 0.400032 0.135516 -0.21108 0.72897 -0.65119 +-0.225264 0.684547 -0.693291 0.400032 0.157727 -0.224835 0.684548 -0.693428 +-0.291466 0.728969 -0.619397 0.360032 0.135516 -0.291031 0.72897 -0.619599 +-0.211537 0.728969 -0.651043 0.400032 0.135516 -0.21108 0.72897 -0.65119 +-0.136595 0.684547 -0.716057 0.440032 0.157727 -0.136152 0.684548 -0.71614 +-0.225264 0.684547 -0.693291 0.400032 0.157727 -0.224835 0.684548 -0.693428 +-0.128271 0.728969 -0.672422 0.440032 0.135516 -0.1278 0.72897 -0.67251 +-0.136595 0.684547 -0.716057 0.440032 0.157727 -0.136152 0.684548 -0.71614 +-0.211537 0.728969 -0.651043 0.400032 0.135516 -0.21108 0.72897 -0.65119 +-0.128271 0.728969 -0.672422 0.440032 0.135516 -0.1278 0.72897 -0.67251 +-0.045772 0.684547 -0.72753 0.480032 0.157727 -0.045323 0.684548 -0.727557 +-0.136595 0.684547 -0.716057 0.440032 0.157727 -0.136152 0.684548 -0.71614 +-0.042983 0.728969 -0.683197 0.480032 0.135516 -0.042504 0.72897 -0.683225 +-0.045772 0.684547 -0.72753 0.480032 0.157727 -0.045323 0.684548 -0.727557 +-0.128271 0.728969 -0.672422 0.440032 0.135516 -0.1278 0.72897 -0.67251 +-0.042983 0.728969 -0.683197 0.480032 0.135516 -0.042504 0.72897 -0.683225 +0.045772 0.684547 -0.72753 0.520032 0.157727 0.046222 0.684549 -0.7275 +-0.045772 0.684547 -0.72753 0.480032 0.157727 -0.045323 0.684548 -0.727557 +0.042983 0.728969 -0.683197 0.520032 0.135516 0.043462 0.72897 -0.683165 +0.045772 0.684547 -0.72753 0.520032 0.157727 0.046222 0.684549 -0.7275 +-0.042983 0.728969 -0.683197 0.480032 0.135516 -0.042504 0.72897 -0.683225 +0.042983 0.728969 -0.683197 0.520032 0.135516 0.043462 0.72897 -0.683165 +0.136595 0.684547 -0.716057 0.560032 0.157727 0.137037 0.684548 -0.715971 +0.045772 0.684547 -0.72753 0.520032 0.157727 0.046222 0.684549 -0.7275 +0.128271 0.728969 -0.672422 0.560032 0.135516 0.128742 0.72897 -0.67233 +0.136595 0.684547 -0.716057 0.560032 0.157727 0.137037 0.684548 -0.715971 +0.042983 0.728969 -0.683197 0.520032 0.135516 0.043462 0.72897 -0.683165 +0.128271 0.728969 -0.672422 0.560032 0.135516 0.128742 0.72897 -0.67233 +0.225264 0.684547 -0.693291 0.600032 0.157727 0.225692 0.684549 -0.69315 +0.136595 0.684547 -0.716057 0.560032 0.157727 0.137037 0.684548 -0.715971 +0.211537 0.728969 -0.651043 0.600032 0.135516 0.211993 0.72897 -0.650893 +0.225264 0.684547 -0.693291 0.600032 0.157727 0.225692 0.684549 -0.69315 +0.128271 0.728969 -0.672422 0.560032 0.135516 0.128742 0.72897 -0.67233 +0.211537 0.728969 -0.651043 0.600032 0.135516 0.211993 0.72897 -0.650893 +0.31038 0.684547 -0.659591 0.640032 0.157727 0.310787 0.684549 -0.659397 +0.225264 0.684547 -0.693291 0.600032 0.157727 0.225692 0.684549 -0.69315 +0.291466 0.728969 -0.619397 0.640032 0.135516 0.2919 0.72897 -0.619191 +0.31038 0.684547 -0.659591 0.640032 0.157727 0.310787 0.684549 -0.659397 +0.211537 0.728969 -0.651043 0.600032 0.135516 0.211993 0.72897 -0.650893 +0.291466 0.728969 -0.619397 0.640032 0.135516 0.2919 0.72897 -0.619191 +0.390601 0.684547 -0.615489 0.680032 0.157727 0.39098 0.684548 -0.615246 +0.31038 0.684547 -0.659591 0.640032 0.157727 0.310787 0.684549 -0.659397 +0.366799 0.728969 -0.577982 0.680032 0.135516 0.367203 0.72897 -0.577724 +0.390601 0.684547 -0.615489 0.680032 0.157727 0.39098 0.684548 -0.615246 +0.291466 0.728969 -0.619397 0.640032 0.135516 0.2919 0.72897 -0.619191 +0.366799 0.728969 -0.577982 0.680032 0.135516 0.367203 0.72897 -0.577724 +0.464662 0.684547 -0.56168 0.720032 0.157727 0.465008 0.684548 -0.561392 +0.390601 0.684547 -0.615489 0.680032 0.157727 0.39098 0.684548 -0.615246 +0.436347 0.728969 -0.527453 0.720032 0.135516 0.436716 0.72897 -0.527145 +0.464662 0.684547 -0.56168 0.720032 0.157727 0.465008 0.684548 -0.561392 +0.366799 0.728969 -0.577982 0.680032 0.135516 0.367203 0.72897 -0.577724 +0.436347 0.728969 -0.527453 0.720032 0.135516 0.436716 0.72897 -0.527145 +0.531395 0.684547 -0.499013 0.760032 0.157727 0.531703 0.684548 -0.498684 +0.464662 0.684547 -0.56168 0.720032 0.157727 0.465008 0.684548 -0.561392 +0.499014 0.728969 -0.468605 0.760032 0.135516 0.499341 0.72897 -0.468254 +0.531395 0.684547 -0.499013 0.760032 0.157727 0.531703 0.684548 -0.498684 +0.436347 0.728969 -0.527453 0.720032 0.135516 0.436716 0.72897 -0.527145 +0.499014 0.728969 -0.468605 0.760032 0.135516 0.499341 0.72897 -0.468254 +0.589748 0.684547 -0.428477 0.800032 0.157727 0.590012 0.684548 -0.428112 +0.531395 0.684547 -0.499013 0.760032 0.157727 0.531703 0.684548 -0.498684 +0.55381 0.728969 -0.402367 0.800032 0.135516 0.554091 0.72897 -0.401978 +0.589748 0.684547 -0.428477 0.800032 0.157727 0.590012 0.684548 -0.428112 +0.499014 0.728969 -0.468605 0.760032 0.135516 0.499341 0.72897 -0.468254 +0.55381 0.728969 -0.402367 0.800032 0.135516 0.554091 0.72897 -0.401978 +0.6388 0.684547 -0.351183 0.840032 0.157727 0.639016 0.684548 -0.350788 +0.589748 0.684547 -0.428477 0.800032 0.157727 0.590012 0.684548 -0.428112 +0.599873 0.728969 -0.329783 0.840032 0.135516 0.600103 0.72897 -0.329362 +0.6388 0.684547 -0.351183 0.840032 0.157727 0.639016 0.684548 -0.350788 +0.55381 0.728969 -0.402367 0.800032 0.135516 0.554091 0.72897 -0.401978 +0.599873 0.728969 -0.329783 0.840032 0.135516 0.600103 0.72897 -0.329362 +0.677778 0.684547 -0.268351 0.880032 0.157727 0.677942 0.684548 -0.267932 +0.6388 0.684547 -0.351183 0.840032 0.157727 0.639016 0.684548 -0.350788 +0.636476 0.728969 -0.251999 0.880032 0.135516 0.636651 0.72897 -0.251552 +0.677778 0.684547 -0.268351 0.880032 0.157727 0.677942 0.684548 -0.267932 +0.599873 0.728969 -0.329783 0.840032 0.135516 0.600103 0.72897 -0.329362 +0.636476 0.728969 -0.251999 0.880032 0.135516 0.636651 0.72897 -0.251552 +0.706067 0.684547 -0.181287 0.920032 0.157727 0.706177 0.684549 -0.180851 +0.677778 0.684547 -0.268351 0.880032 0.157727 0.677942 0.684548 -0.267932 +0.663041 0.728969 -0.17024 0.920032 0.135516 0.663159 0.72897 -0.169775 +0.706067 0.684547 -0.181287 0.920032 0.157727 0.706177 0.684549 -0.180851 +0.636476 0.728969 -0.251999 0.880032 0.135516 0.636651 0.72897 -0.251552 +0.663041 0.728969 -0.17024 0.920032 0.135516 0.663159 0.72897 -0.169775 +0.723221 0.684547 -0.091364 0.960032 0.157727 0.723275 0.684549 -0.090917 +0.706067 0.684547 -0.181287 0.920032 0.157727 0.706177 0.684549 -0.180851 +0.679149 0.728969 -0.085797 0.960032 0.135516 0.679208 0.72897 -0.08532 +0.723221 0.684547 -0.091364 0.960032 0.157727 0.723275 0.684549 -0.090917 +0.663041 0.728969 -0.17024 0.920032 0.135516 0.663159 0.72897 -0.169775 +0.679149 0.728969 -0.085797 0.960032 0.135516 0.679208 0.72897 -0.08532 +0.728969 0.684547 -0 1.00003 0.157727 0.728967 0.684549 0.000447 +0.723221 0.684547 -0.091364 0.960032 0.157727 0.723275 0.684549 -0.090917 +0.684547 0.728969 -0 1.00003 0.135516 0.684546 0.72897 0.000477 +0.728969 0.684547 -0 1.00003 0.157727 0.728967 0.684549 0.000447 +0.679149 0.728969 -0.085797 0.960032 0.135516 0.679208 0.72897 -0.08532 +0.684547 0.728969 -0 1.00003 0.135516 0.684546 0.72897 0.000477 +0.723221 0.684547 0.091364 1.04003 0.157727 0.723162 0.684549 0.091807 +0.728969 0.684547 -0 1.00003 0.157727 0.728967 0.684549 0.000447 +0.67915 0.728969 0.085797 1.04003 0.135516 0.679088 0.72897 0.086269 +0.723221 0.684547 0.091364 1.04003 0.157727 0.723162 0.684549 0.091807 +0.684547 0.728969 -0 1.00003 0.135516 0.684546 0.72897 0.000477 +0.632398 0.770513 0.079891 1.04003 0.114743 0.632332 0.770515 0.080391 +0.663042 0.728969 0.17024 1.08003 0.135516 0.662919 0.728971 0.170704 +0.67915 0.728969 0.085797 1.04003 0.135516 0.679088 0.72897 0.086269 +0.617399 0.770513 0.158521 1.08003 0.114743 0.61727 0.770515 0.159011 +0.663042 0.728969 0.17024 1.08003 0.135516 0.662919 0.728971 0.170704 +0.632398 0.770513 0.079891 1.04003 0.114743 0.632332 0.770515 0.080391 +0.617399 0.770513 0.158521 1.08003 0.114743 0.61727 0.770515 0.159011 +0.636477 0.728969 0.251999 1.12003 0.135516 0.636298 0.72897 0.252444 +0.663042 0.728969 0.17024 1.08003 0.135516 0.662919 0.728971 0.170704 +0.592662 0.770513 0.234652 1.12003 0.114743 0.592473 0.770515 0.235122 +0.636477 0.728969 0.251999 1.12003 0.135516 0.636298 0.72897 0.252444 +0.617399 0.770513 0.158521 1.08003 0.114743 0.61727 0.770515 0.159011 +0.592662 0.770513 0.234652 1.12003 0.114743 0.592473 0.770515 0.235122 +0.599874 0.728969 0.329783 1.16003 0.135516 0.59964 0.72897 0.330202 +0.636477 0.728969 0.251999 1.12003 0.135516 0.636298 0.72897 0.252444 +0.558579 0.770513 0.307082 1.16003 0.114743 0.558333 0.770515 0.307525 +0.599874 0.728969 0.329783 1.16003 0.135516 0.59964 0.72897 0.330202 +0.592662 0.770513 0.234652 1.12003 0.114743 0.592473 0.770515 0.235122 +0.558579 0.770513 0.307082 1.16003 0.114743 0.558333 0.770515 0.307525 +0.553811 0.728969 0.402367 1.20003 0.135516 0.553527 0.72897 0.402753 +0.599874 0.728969 0.329783 1.16003 0.135516 0.59964 0.72897 0.330202 +0.515687 0.770513 0.374669 1.20003 0.114743 0.515387 0.770515 0.375078 +0.553811 0.728969 0.402367 1.20003 0.135516 0.553527 0.72897 0.402753 +0.558579 0.770513 0.307082 1.16003 0.114743 0.558333 0.770515 0.307525 +0.515687 0.770513 0.374669 1.20003 0.114743 0.515387 0.770515 0.375078 +0.499014 0.728969 0.468605 1.24003 0.135516 0.498684 0.72897 0.468953 +0.553811 0.728969 0.402367 1.20003 0.135516 0.553527 0.72897 0.402753 +0.464663 0.770513 0.436347 1.24003 0.114743 0.464314 0.770515 0.436715 +0.499014 0.728969 0.468605 1.24003 0.135516 0.498684 0.72897 0.468953 +0.515687 0.770513 0.374669 1.20003 0.114743 0.515387 0.770515 0.375078 +0.464663 0.770513 0.436347 1.24003 0.114743 0.464314 0.770515 0.436715 +0.436347 0.728969 0.527453 1.28003 0.135516 0.435976 0.72897 0.527757 +0.499014 0.728969 0.468605 1.24003 0.135516 0.498684 0.72897 0.468953 +0.40631 0.770513 0.491144 1.28003 0.114743 0.405917 0.770515 0.491466 +0.436347 0.728969 0.527453 1.28003 0.135516 0.435976 0.72897 0.527757 +0.464663 0.770513 0.436347 1.24003 0.114743 0.464314 0.770515 0.436715 +0.40631 0.770513 0.491144 1.28003 0.114743 0.405917 0.770515 0.491466 +0.366799 0.728969 0.577983 1.32003 0.135516 0.366392 0.72897 0.578238 +0.436347 0.728969 0.527453 1.28003 0.135516 0.435976 0.72897 0.527757 +0.341549 0.770513 0.538195 1.32003 0.114743 0.341119 0.770515 0.538465 +0.366799 0.728969 0.577983 1.32003 0.135516 0.366392 0.72897 0.578238 +0.40631 0.770513 0.491144 1.28003 0.114743 0.405917 0.770515 0.491466 +0.341549 0.770513 0.538195 1.32003 0.114743 0.341119 0.770515 0.538465 +0.291466 0.728969 0.619397 1.36003 0.135516 0.291031 0.72897 0.619599 +0.366799 0.728969 0.577983 1.32003 0.135516 0.366392 0.72897 0.578238 +0.271402 0.770513 0.576759 1.36003 0.114743 0.270942 0.770515 0.576973 +0.291466 0.728969 0.619397 1.36003 0.135516 0.291031 0.72897 0.619599 +0.341549 0.770513 0.538195 1.32003 0.114743 0.341119 0.770515 0.538465 +0.271402 0.770513 0.576759 1.36003 0.114743 0.270942 0.770515 0.576973 +0.211537 0.728969 0.651044 1.40003 0.135516 0.21108 0.72897 0.651189 +0.291466 0.728969 0.619397 1.36003 0.135516 0.291031 0.72897 0.619599 +0.196975 0.770513 0.606227 1.40003 0.114743 0.196492 0.770515 0.606381 +0.211537 0.728969 0.651044 1.40003 0.135516 0.21108 0.72897 0.651189 +0.271402 0.770513 0.576759 1.36003 0.114743 0.270942 0.770515 0.576973 +0.196975 0.770513 0.606227 1.40003 0.114743 0.196492 0.770515 0.606381 +0.128271 0.728969 0.672423 1.44003 0.135516 0.1278 0.72897 0.67251 +0.211537 0.728969 0.651044 1.40003 0.135516 0.21108 0.72897 0.651189 +0.119441 0.770513 0.626134 1.44003 0.114743 0.118943 0.770515 0.626227 +0.128271 0.728969 0.672423 1.44003 0.135516 0.1278 0.72897 0.67251 +0.196975 0.770513 0.606227 1.40003 0.114743 0.196492 0.770515 0.606381 +0.119441 0.770513 0.626134 1.44003 0.114743 0.118943 0.770515 0.626227 +0.042983 0.728969 0.683197 1.48003 0.135516 0.042504 0.728971 0.683224 +0.128271 0.728969 0.672423 1.44003 0.135516 0.1278 0.72897 0.67251 +0.040024 0.770513 0.636167 1.48003 0.114743 0.039518 0.770514 0.636197 +0.042983 0.728969 0.683197 1.48003 0.135516 0.042504 0.728971 0.683224 +0.119441 0.770513 0.626134 1.44003 0.114743 0.118943 0.770515 0.626227 +0.040024 0.770513 0.636167 1.48003 0.114743 0.039518 0.770514 0.636197 +-0.042983 0.728969 0.683197 1.52003 0.135516 -0.043462 0.72897 0.683164 +0.042983 0.728969 0.683197 1.48003 0.135516 0.042504 0.728971 0.683224 +-0.040024 0.770513 0.636167 1.52003 0.114743 -0.04053 0.770515 0.636133 +-0.042983 0.728969 0.683197 1.52003 0.135516 -0.043462 0.72897 0.683164 +0.040024 0.770513 0.636167 1.48003 0.114743 0.039518 0.770514 0.636197 +-0.040024 0.770513 0.636167 -0.479968 0.114743 -0.04053 0.770515 0.636133 +-0.128272 0.728969 0.672422 -0.439968 0.135516 -0.128742 0.72897 0.67233 +-0.042983 0.728969 0.683197 -0.479968 0.135516 -0.043462 0.72897 0.683164 +-0.119441 0.770513 0.626134 -0.439968 0.114743 -0.119939 0.770514 0.626037 +-0.128272 0.728969 0.672422 -0.439968 0.135516 -0.128742 0.72897 0.67233 +-0.040024 0.770513 0.636167 -0.479968 0.114743 -0.04053 0.770515 0.636133 +-0.119441 0.770513 0.626134 -0.439968 0.114743 -0.119939 0.770514 0.626037 +-0.211537 0.728969 0.651044 -0.399968 0.135516 -0.211992 0.72897 0.650893 +-0.128272 0.728969 0.672422 -0.439968 0.135516 -0.128742 0.72897 0.67233 +-0.196975 0.770513 0.606227 -0.399968 0.114743 -0.197457 0.770515 0.606068 +-0.211537 0.728969 0.651044 -0.399968 0.135516 -0.211992 0.72897 0.650893 +-0.119441 0.770513 0.626134 -0.439968 0.114743 -0.119939 0.770514 0.626037 +-0.196975 0.770513 0.606227 -0.399968 0.114743 -0.197457 0.770515 0.606068 +-0.291466 0.728969 0.619397 -0.359968 0.135516 -0.2919 0.72897 0.619191 +-0.211537 0.728969 0.651044 -0.399968 0.135516 -0.211992 0.72897 0.650893 +-0.271402 0.770513 0.576759 -0.359968 0.114743 -0.27186 0.770515 0.576541 +-0.291466 0.728969 0.619397 -0.359968 0.135516 -0.2919 0.72897 0.619191 +-0.196975 0.770513 0.606227 -0.399968 0.114743 -0.197457 0.770515 0.606068 +-0.271402 0.770513 0.576759 -0.359968 0.114743 -0.27186 0.770515 0.576541 +-0.366799 0.728969 0.577983 -0.319968 0.135516 -0.367203 0.72897 0.577724 +-0.291466 0.728969 0.619397 -0.359968 0.135516 -0.2919 0.72897 0.619191 +-0.341549 0.770513 0.538195 -0.319968 0.114743 -0.341976 0.770515 0.537922 +-0.366799 0.728969 0.577983 -0.319968 0.135516 -0.367203 0.72897 0.577724 +-0.271402 0.770513 0.576759 -0.359968 0.114743 -0.27186 0.770515 0.576541 +-0.341549 0.770513 0.538195 -0.319968 0.114743 -0.341976 0.770515 0.537922 +-0.436347 0.728969 0.527453 -0.279968 0.135516 -0.436715 0.728971 0.527145 +-0.366799 0.728969 0.577983 -0.319968 0.135516 -0.367203 0.72897 0.577724 +-0.40631 0.770513 0.491144 -0.279968 0.114743 -0.406699 0.770515 0.490818 +-0.436347 0.728969 0.527453 -0.279968 0.135516 -0.436715 0.728971 0.527145 +-0.341549 0.770513 0.538195 -0.319968 0.114743 -0.341976 0.770515 0.537922 +-0.40631 0.770513 0.491144 -0.279968 0.114743 -0.406699 0.770515 0.490818 +-0.499014 0.728969 0.468605 -0.239968 0.135516 -0.499341 0.72897 0.468253 +-0.436347 0.728969 0.527453 -0.279968 0.135516 -0.436715 0.728971 0.527145 +-0.464662 0.770513 0.436347 -0.239968 0.114743 -0.465008 0.770515 0.435976 +-0.499014 0.728969 0.468605 -0.239968 0.135516 -0.499341 0.72897 0.468253 +-0.40631 0.770513 0.491144 -0.279968 0.114743 -0.406699 0.770515 0.490818 +-0.464662 0.770513 0.436347 -0.239968 0.114743 -0.465008 0.770515 0.435976 +-0.553811 0.728969 0.402367 -0.199968 0.135516 -0.554091 0.72897 0.401978 +-0.499014 0.728969 0.468605 -0.239968 0.135516 -0.499341 0.72897 0.468253 +-0.515687 0.770513 0.374669 -0.199968 0.114743 -0.515984 0.770515 0.374257 +-0.553811 0.728969 0.402367 -0.199968 0.135516 -0.554091 0.72897 0.401978 +-0.464662 0.770513 0.436347 -0.239968 0.114743 -0.465008 0.770515 0.435976 +-0.515687 0.770513 0.374669 -0.199968 0.114743 -0.515984 0.770515 0.374257 +-0.599874 0.728969 0.329783 -0.159968 0.135516 -0.600103 0.72897 0.329362 +-0.553811 0.728969 0.402367 -0.199968 0.135516 -0.554091 0.72897 0.401978 +-0.558579 0.770513 0.307082 -0.159968 0.114743 -0.558822 0.770515 0.306636 +-0.599874 0.728969 0.329783 -0.159968 0.135516 -0.600103 0.72897 0.329362 +-0.515687 0.770513 0.374669 -0.199968 0.114743 -0.515984 0.770515 0.374257 +-0.558579 0.770513 0.307082 -0.159968 0.114743 -0.558822 0.770515 0.306636 +-0.636476 0.728969 0.251999 -0.119968 0.135516 -0.636651 0.72897 0.251552 +-0.599874 0.728969 0.329783 -0.159968 0.135516 -0.600103 0.72897 0.329362 +-0.592662 0.770513 0.234652 -0.119968 0.114743 -0.592847 0.770515 0.234179 +-0.636476 0.728969 0.251999 -0.119968 0.135516 -0.636651 0.72897 0.251552 +-0.558579 0.770513 0.307082 -0.159968 0.114743 -0.558822 0.770515 0.306636 +-0.592662 0.770513 0.234652 -0.119968 0.114743 -0.592847 0.770515 0.234179 +-0.663041 0.728969 0.17024 -0.079968 0.135516 -0.663158 0.72897 0.169775 +-0.636476 0.728969 0.251999 -0.119968 0.135516 -0.636651 0.72897 0.251552 +-0.617399 0.770513 0.158521 -0.079968 0.114743 -0.617522 0.770515 0.15803 +-0.663041 0.728969 0.17024 -0.079968 0.135516 -0.663158 0.72897 0.169775 +-0.592662 0.770513 0.234652 -0.119968 0.114743 -0.592847 0.770515 0.234179 +-0.617399 0.770513 0.158521 -0.079968 0.114743 -0.617522 0.770515 0.15803 +-0.67915 0.728969 0.085797 -0.039968 0.135516 -0.679208 0.72897 0.08532 +-0.663041 0.728969 0.17024 -0.079968 0.135516 -0.663158 0.72897 0.169775 +-0.632398 0.770513 0.07989 -0.039968 0.114743 -0.632459 0.770515 0.079387 +-0.67915 0.728969 0.085797 -0.039968 0.135516 -0.679208 0.72897 0.08532 +-0.617399 0.770513 0.158521 -0.079968 0.114743 -0.617522 0.770515 0.15803 +-0.632398 0.770513 0.07989 -0.039968 0.114743 -0.632459 0.770515 0.079387 +-0.684548 0.728969 -0 3.2e-005 0.135516 -0.684545 0.72897 -0.00048 +-0.67915 0.728969 0.085797 -0.039968 0.135516 -0.679208 0.72897 0.08532 +-0.637424 0.770513 -0 3.2e-005 0.114743 -0.637422 0.770515 -0.000507 +-0.684548 0.728969 -0 3.2e-005 0.135516 -0.684545 0.72897 -0.00048 +-0.632398 0.770513 0.07989 -0.039968 0.114743 -0.632459 0.770515 0.079387 +-0.637424 0.770513 -0 3.2e-005 0.114743 -0.637422 0.770515 -0.000507 +-0.67915 0.728969 -0.085797 0.040032 0.135516 -0.679088 0.72897 -0.086272 +-0.684548 0.728969 -0 3.2e-005 0.135516 -0.684545 0.72897 -0.00048 +-0.632398 0.770513 -0.079891 0.040032 0.114743 -0.632332 0.770515 -0.080393 +-0.67915 0.728969 -0.085797 0.040032 0.135516 -0.679088 0.72897 -0.086272 +-0.637424 0.770513 -0 3.2e-005 0.114743 -0.637422 0.770515 -0.000507 +-0.632398 0.770513 -0.079891 0.040032 0.114743 -0.632332 0.770515 -0.080393 +-0.663041 0.728969 -0.17024 0.080032 0.135516 -0.66292 0.72897 -0.170704 +-0.67915 0.728969 -0.085797 0.040032 0.135516 -0.679088 0.72897 -0.086272 +-0.617399 0.770513 -0.158521 0.080032 0.114743 -0.61727 0.770515 -0.159011 +-0.663041 0.728969 -0.17024 0.080032 0.135516 -0.66292 0.72897 -0.170704 +-0.632398 0.770513 -0.079891 0.040032 0.114743 -0.632332 0.770515 -0.080393 +-0.617399 0.770513 -0.158521 0.080032 0.114743 -0.61727 0.770515 -0.159011 +-0.636476 0.728969 -0.251999 0.120032 0.135516 -0.636298 0.72897 -0.252444 +-0.663041 0.728969 -0.17024 0.080032 0.135516 -0.66292 0.72897 -0.170704 +-0.592662 0.770513 -0.234652 0.120032 0.114743 -0.592473 0.770515 -0.235122 +-0.636476 0.728969 -0.251999 0.120032 0.135516 -0.636298 0.72897 -0.252444 +-0.617399 0.770513 -0.158521 0.080032 0.114743 -0.61727 0.770515 -0.159011 +-0.592662 0.770513 -0.234652 0.120032 0.114743 -0.592473 0.770515 -0.235122 +-0.599874 0.728969 -0.329783 0.160032 0.135516 -0.599641 0.72897 -0.330203 +-0.636476 0.728969 -0.251999 0.120032 0.135516 -0.636298 0.72897 -0.252444 +-0.558579 0.770513 -0.307082 0.160032 0.114743 -0.558333 0.770515 -0.307525 +-0.599874 0.728969 -0.329783 0.160032 0.135516 -0.599641 0.72897 -0.330203 +-0.592662 0.770513 -0.234652 0.120032 0.114743 -0.592473 0.770515 -0.235122 +-0.558579 0.770513 -0.307082 0.160032 0.114743 -0.558333 0.770515 -0.307525 +-0.553811 0.728969 -0.402367 0.200032 0.135516 -0.553527 0.72897 -0.402754 +-0.599874 0.728969 -0.329783 0.160032 0.135516 -0.599641 0.72897 -0.330203 +-0.515687 0.770513 -0.374669 0.200032 0.114743 -0.515387 0.770515 -0.375078 +-0.553811 0.728969 -0.402367 0.200032 0.135516 -0.553527 0.72897 -0.402754 +-0.558579 0.770513 -0.307082 0.160032 0.114743 -0.558333 0.770515 -0.307525 +-0.515687 0.770513 -0.374669 0.200032 0.114743 -0.515387 0.770515 -0.375078 +-0.499014 0.728969 -0.468605 0.240032 0.135516 -0.498684 0.72897 -0.468953 +-0.553811 0.728969 -0.402367 0.200032 0.135516 -0.553527 0.72897 -0.402754 +-0.464662 0.770513 -0.436347 0.240032 0.114743 -0.464314 0.770515 -0.436715 +-0.499014 0.728969 -0.468605 0.240032 0.135516 -0.498684 0.72897 -0.468953 +-0.515687 0.770513 -0.374669 0.200032 0.114743 -0.515387 0.770515 -0.375078 +-0.464662 0.770513 -0.436347 0.240032 0.114743 -0.464314 0.770515 -0.436715 +-0.436347 0.728969 -0.527453 0.280032 0.135516 -0.435976 0.72897 -0.527757 +-0.499014 0.728969 -0.468605 0.240032 0.135516 -0.498684 0.72897 -0.468953 +-0.406309 0.770513 -0.491144 0.280032 0.114743 -0.405918 0.770515 -0.491466 +-0.436347 0.728969 -0.527453 0.280032 0.135516 -0.435976 0.72897 -0.527757 +-0.464662 0.770513 -0.436347 0.240032 0.114743 -0.464314 0.770515 -0.436715 +-0.406309 0.770513 -0.491144 0.280032 0.114743 -0.405918 0.770515 -0.491466 +-0.366799 0.728969 -0.577983 0.320032 0.135516 -0.366393 0.72897 -0.578238 +-0.436347 0.728969 -0.527453 0.280032 0.135516 -0.435976 0.72897 -0.527757 +-0.341549 0.770513 -0.538195 0.320032 0.114743 -0.341119 0.770515 -0.538465 +-0.366799 0.728969 -0.577983 0.320032 0.135516 -0.366393 0.72897 -0.578238 +-0.406309 0.770513 -0.491144 0.280032 0.114743 -0.405918 0.770515 -0.491466 +-0.341549 0.770513 -0.538195 0.320032 0.114743 -0.341119 0.770515 -0.538465 +-0.291466 0.728969 -0.619397 0.360032 0.135516 -0.291031 0.72897 -0.619599 +-0.366799 0.728969 -0.577983 0.320032 0.135516 -0.366393 0.72897 -0.578238 +-0.271402 0.770513 -0.576759 0.360032 0.114743 -0.270942 0.770514 -0.576973 +-0.291466 0.728969 -0.619397 0.360032 0.135516 -0.291031 0.72897 -0.619599 +-0.341549 0.770513 -0.538195 0.320032 0.114743 -0.341119 0.770515 -0.538465 +-0.271402 0.770513 -0.576759 0.360032 0.114743 -0.270942 0.770514 -0.576973 +-0.211537 0.728969 -0.651043 0.400032 0.135516 -0.21108 0.72897 -0.65119 +-0.291466 0.728969 -0.619397 0.360032 0.135516 -0.291031 0.72897 -0.619599 +-0.196975 0.770513 -0.606227 0.400032 0.114743 -0.196492 0.770514 -0.606382 +-0.211537 0.728969 -0.651043 0.400032 0.135516 -0.21108 0.72897 -0.65119 +-0.271402 0.770513 -0.576759 0.360032 0.114743 -0.270942 0.770514 -0.576973 +-0.196975 0.770513 -0.606227 0.400032 0.114743 -0.196492 0.770514 -0.606382 +-0.128271 0.728969 -0.672422 0.440032 0.135516 -0.1278 0.72897 -0.67251 +-0.211537 0.728969 -0.651043 0.400032 0.135516 -0.21108 0.72897 -0.65119 +-0.119441 0.770513 -0.626134 0.440032 0.114743 -0.118943 0.770515 -0.626227 +-0.128271 0.728969 -0.672422 0.440032 0.135516 -0.1278 0.72897 -0.67251 +-0.196975 0.770513 -0.606227 0.400032 0.114743 -0.196492 0.770514 -0.606382 +-0.119441 0.770513 -0.626134 0.440032 0.114743 -0.118943 0.770515 -0.626227 +-0.042983 0.728969 -0.683197 0.480032 0.135516 -0.042504 0.72897 -0.683225 +-0.128271 0.728969 -0.672422 0.440032 0.135516 -0.1278 0.72897 -0.67251 +-0.040024 0.770513 -0.636166 0.480032 0.114743 -0.039518 0.770515 -0.636196 +-0.042983 0.728969 -0.683197 0.480032 0.135516 -0.042504 0.72897 -0.683225 +-0.119441 0.770513 -0.626134 0.440032 0.114743 -0.118943 0.770515 -0.626227 +-0.040024 0.770513 -0.636166 0.480032 0.114743 -0.039518 0.770515 -0.636196 +0.042983 0.728969 -0.683197 0.520032 0.135516 0.043462 0.72897 -0.683165 +-0.042983 0.728969 -0.683197 0.480032 0.135516 -0.042504 0.72897 -0.683225 +0.040024 0.770513 -0.636166 0.520032 0.114743 0.04053 0.770515 -0.636133 +0.042983 0.728969 -0.683197 0.520032 0.135516 0.043462 0.72897 -0.683165 +-0.040024 0.770513 -0.636166 0.480032 0.114743 -0.039518 0.770515 -0.636196 +0.040024 0.770513 -0.636166 0.520032 0.114743 0.04053 0.770515 -0.636133 +0.128271 0.728969 -0.672422 0.560032 0.135516 0.128742 0.72897 -0.67233 +0.042983 0.728969 -0.683197 0.520032 0.135516 0.043462 0.72897 -0.683165 +0.119441 0.770513 -0.626134 0.560032 0.114743 0.119939 0.770515 -0.626037 +0.128271 0.728969 -0.672422 0.560032 0.135516 0.128742 0.72897 -0.67233 +0.040024 0.770513 -0.636166 0.520032 0.114743 0.04053 0.770515 -0.636133 +0.119441 0.770513 -0.626134 0.560032 0.114743 0.119939 0.770515 -0.626037 +0.211537 0.728969 -0.651043 0.600032 0.135516 0.211993 0.72897 -0.650893 +0.128271 0.728969 -0.672422 0.560032 0.135516 0.128742 0.72897 -0.67233 +0.196975 0.770513 -0.606226 0.600032 0.114743 0.197457 0.770514 -0.606068 +0.211537 0.728969 -0.651043 0.600032 0.135516 0.211993 0.72897 -0.650893 +0.119441 0.770513 -0.626134 0.560032 0.114743 0.119939 0.770515 -0.626037 +0.196975 0.770513 -0.606226 0.600032 0.114743 0.197457 0.770514 -0.606068 +0.291466 0.728969 -0.619397 0.640032 0.135516 0.2919 0.72897 -0.619191 +0.211537 0.728969 -0.651043 0.600032 0.135516 0.211993 0.72897 -0.650893 +0.271402 0.770513 -0.576759 0.640032 0.114743 0.27186 0.770514 -0.576541 +0.291466 0.728969 -0.619397 0.640032 0.135516 0.2919 0.72897 -0.619191 +0.196975 0.770513 -0.606226 0.600032 0.114743 0.197457 0.770514 -0.606068 +0.271402 0.770513 -0.576759 0.640032 0.114743 0.27186 0.770514 -0.576541 +0.366799 0.728969 -0.577982 0.680032 0.135516 0.367203 0.72897 -0.577724 +0.291466 0.728969 -0.619397 0.640032 0.135516 0.2919 0.72897 -0.619191 +0.341549 0.770513 -0.538195 0.680032 0.114743 0.341976 0.770515 -0.537921 +0.366799 0.728969 -0.577982 0.680032 0.135516 0.367203 0.72897 -0.577724 +0.271402 0.770513 -0.576759 0.640032 0.114743 0.27186 0.770514 -0.576541 +0.341549 0.770513 -0.538195 0.680032 0.114743 0.341976 0.770515 -0.537921 +0.436347 0.728969 -0.527453 0.720032 0.135516 0.436716 0.72897 -0.527145 +0.366799 0.728969 -0.577982 0.680032 0.135516 0.367203 0.72897 -0.577724 +0.406309 0.770513 -0.491144 0.720032 0.114743 0.406699 0.770515 -0.490819 +0.436347 0.728969 -0.527453 0.720032 0.135516 0.436716 0.72897 -0.527145 +0.341549 0.770513 -0.538195 0.680032 0.114743 0.341976 0.770515 -0.537921 +0.406309 0.770513 -0.491144 0.720032 0.114743 0.406699 0.770515 -0.490819 +0.499014 0.728969 -0.468605 0.760032 0.135516 0.499341 0.72897 -0.468254 +0.436347 0.728969 -0.527453 0.720032 0.135516 0.436716 0.72897 -0.527145 +0.464662 0.770513 -0.436347 0.760032 0.114743 0.465008 0.770515 -0.435976 +0.499014 0.728969 -0.468605 0.760032 0.135516 0.499341 0.72897 -0.468254 +0.406309 0.770513 -0.491144 0.720032 0.114743 0.406699 0.770515 -0.490819 +0.464662 0.770513 -0.436347 0.760032 0.114743 0.465008 0.770515 -0.435976 +0.55381 0.728969 -0.402367 0.800032 0.135516 0.554091 0.72897 -0.401978 +0.499014 0.728969 -0.468605 0.760032 0.135516 0.499341 0.72897 -0.468254 +0.515687 0.770513 -0.374668 0.800032 0.114743 0.515984 0.770514 -0.374257 +0.55381 0.728969 -0.402367 0.800032 0.135516 0.554091 0.72897 -0.401978 +0.464662 0.770513 -0.436347 0.760032 0.114743 0.465008 0.770515 -0.435976 +0.515687 0.770513 -0.374668 0.800032 0.114743 0.515984 0.770514 -0.374257 +0.599873 0.728969 -0.329783 0.840032 0.135516 0.600103 0.72897 -0.329362 +0.55381 0.728969 -0.402367 0.800032 0.135516 0.554091 0.72897 -0.401978 +0.558579 0.770513 -0.307081 0.840032 0.114743 0.558822 0.770515 -0.306636 +0.599873 0.728969 -0.329783 0.840032 0.135516 0.600103 0.72897 -0.329362 +0.515687 0.770513 -0.374668 0.800032 0.114743 0.515984 0.770514 -0.374257 +0.558579 0.770513 -0.307081 0.840032 0.114743 0.558822 0.770515 -0.306636 +0.636476 0.728969 -0.251999 0.880032 0.135516 0.636651 0.72897 -0.251552 +0.599873 0.728969 -0.329783 0.840032 0.135516 0.600103 0.72897 -0.329362 +0.592662 0.770513 -0.234651 0.880032 0.114743 0.592847 0.770514 -0.23418 +0.636476 0.728969 -0.251999 0.880032 0.135516 0.636651 0.72897 -0.251552 +0.558579 0.770513 -0.307081 0.840032 0.114743 0.558822 0.770515 -0.306636 +0.592662 0.770513 -0.234651 0.880032 0.114743 0.592847 0.770514 -0.23418 +0.663041 0.728969 -0.17024 0.920032 0.135516 0.663159 0.72897 -0.169775 +0.636476 0.728969 -0.251999 0.880032 0.135516 0.636651 0.72897 -0.251552 +0.617398 0.770513 -0.158521 0.920032 0.114743 0.617523 0.770514 -0.15803 +0.663041 0.728969 -0.17024 0.920032 0.135516 0.663159 0.72897 -0.169775 +0.592662 0.770513 -0.234651 0.880032 0.114743 0.592847 0.770514 -0.23418 +0.617398 0.770513 -0.158521 0.920032 0.114743 0.617523 0.770514 -0.15803 +0.679149 0.728969 -0.085797 0.960032 0.135516 0.679208 0.72897 -0.08532 +0.663041 0.728969 -0.17024 0.920032 0.135516 0.663159 0.72897 -0.169775 +0.632398 0.770513 -0.07989 0.960032 0.114743 0.63246 0.770514 -0.079388 +0.679149 0.728969 -0.085797 0.960032 0.135516 0.679208 0.72897 -0.08532 +0.617398 0.770513 -0.158521 0.920032 0.114743 0.617523 0.770514 -0.15803 +0.632398 0.770513 -0.07989 0.960032 0.114743 0.63246 0.770514 -0.079388 +0.684547 0.728969 -0 1.00003 0.135516 0.684546 0.72897 0.000477 +0.679149 0.728969 -0.085797 0.960032 0.135516 0.679208 0.72897 -0.08532 +0.637424 0.770513 -0 1.00003 0.114743 0.637422 0.770515 0.000504 +0.684547 0.728969 -0 1.00003 0.135516 0.684546 0.72897 0.000477 +0.632398 0.770513 -0.07989 0.960032 0.114743 0.63246 0.770514 -0.079388 +0.637424 0.770513 -0 1.00003 0.114743 0.637422 0.770515 0.000504 +0.67915 0.728969 0.085797 1.04003 0.135516 0.679088 0.72897 0.086269 +0.684547 0.728969 -0 1.00003 0.135516 0.684546 0.72897 0.000477 +0.632398 0.770513 0.079891 1.04003 0.114743 0.632332 0.770515 0.080391 +0.67915 0.728969 0.085797 1.04003 0.135516 0.679088 0.72897 0.086269 +0.637424 0.770513 -0 1.00003 0.114743 0.637422 0.770515 0.000504 +0.583151 0.809017 0.073669 1.04003 0.095492 0.583082 0.809018 0.074195 +0.617399 0.770513 0.158521 1.08003 0.114743 0.61727 0.770515 0.159011 +0.632398 0.770513 0.079891 1.04003 0.114743 0.632332 0.770515 0.080391 +0.569319 0.809017 0.146176 1.08003 0.095492 0.569185 0.809018 0.146691 +0.617399 0.770513 0.158521 1.08003 0.114743 0.61727 0.770515 0.159011 +0.583151 0.809017 0.073669 1.04003 0.095492 0.583082 0.809018 0.074195 +0.569319 0.809017 0.146176 1.08003 0.095492 0.569185 0.809018 0.146691 +0.592662 0.770513 0.234652 1.12003 0.114743 0.592473 0.770515 0.235122 +0.617399 0.770513 0.158521 1.08003 0.114743 0.61727 0.770515 0.159011 +0.54651 0.809017 0.216378 1.12003 0.095492 0.546312 0.809018 0.216873 +0.592662 0.770513 0.234652 1.12003 0.114743 0.592473 0.770515 0.235122 +0.569319 0.809017 0.146176 1.08003 0.095492 0.569185 0.809018 0.146691 +0.54651 0.809017 0.216378 1.12003 0.095492 0.546312 0.809018 0.216873 +0.558579 0.770513 0.307082 1.16003 0.114743 0.558333 0.770515 0.307525 +0.592662 0.770513 0.234652 1.12003 0.114743 0.592473 0.770515 0.235122 +0.515081 0.809017 0.283168 1.16003 0.095492 0.514822 0.809018 0.283634 +0.558579 0.770513 0.307082 1.16003 0.114743 0.558333 0.770515 0.307525 +0.54651 0.809017 0.216378 1.12003 0.095492 0.546312 0.809018 0.216873 +0.515081 0.809017 0.283168 1.16003 0.095492 0.514822 0.809018 0.283634 +0.515687 0.770513 0.374669 1.20003 0.114743 0.515387 0.770515 0.375078 +0.558579 0.770513 0.307082 1.16003 0.114743 0.558333 0.770515 0.307525 +0.475529 0.809017 0.345492 1.20003 0.095492 0.475214 0.809018 0.345921 +0.515687 0.770513 0.374669 1.20003 0.114743 0.515387 0.770515 0.375078 +0.515081 0.809017 0.283168 1.16003 0.095492 0.514822 0.809018 0.283634 +0.475529 0.809017 0.345492 1.20003 0.095492 0.475214 0.809018 0.345921 +0.464663 0.770513 0.436347 1.24003 0.114743 0.464314 0.770515 0.436715 +0.515687 0.770513 0.374669 1.20003 0.114743 0.515387 0.770515 0.375078 +0.428477 0.809017 0.402367 1.24003 0.095492 0.428111 0.809018 0.402754 +0.464663 0.770513 0.436347 1.24003 0.114743 0.464314 0.770515 0.436715 +0.475529 0.809017 0.345492 1.20003 0.095492 0.475214 0.809018 0.345921 +0.428477 0.809017 0.402367 1.24003 0.095492 0.428111 0.809018 0.402754 +0.40631 0.770513 0.491144 1.28003 0.114743 0.405917 0.770515 0.491466 +0.464663 0.770513 0.436347 1.24003 0.114743 0.464314 0.770515 0.436715 +0.374669 0.809017 0.452897 1.28003 0.095492 0.374257 0.809018 0.453235 +0.40631 0.770513 0.491144 1.28003 0.114743 0.405917 0.770515 0.491466 +0.428477 0.809017 0.402367 1.24003 0.095492 0.428111 0.809018 0.402754 +0.374669 0.809017 0.452897 1.28003 0.095492 0.374257 0.809018 0.453235 +0.341549 0.770513 0.538195 1.32003 0.114743 0.341119 0.770515 0.538465 +0.40631 0.770513 0.491144 1.28003 0.114743 0.405917 0.770515 0.491466 +0.314951 0.809017 0.496284 1.32003 0.095492 0.314501 0.809018 0.496568 +0.341549 0.770513 0.538195 1.32003 0.114743 0.341119 0.770515 0.538465 +0.374669 0.809017 0.452897 1.28003 0.095492 0.374257 0.809018 0.453235 +0.314951 0.809017 0.496284 1.32003 0.095492 0.314501 0.809018 0.496568 +0.271402 0.770513 0.576759 1.36003 0.114743 0.270942 0.770515 0.576973 +0.341549 0.770513 0.538195 1.32003 0.114743 0.341119 0.770515 0.538465 +0.250267 0.809017 0.531845 1.36003 0.095492 0.249784 0.809018 0.53207 +0.271402 0.770513 0.576759 1.36003 0.114743 0.270942 0.770515 0.576973 +0.314951 0.809017 0.496284 1.32003 0.095492 0.314501 0.809018 0.496568 +0.250267 0.809017 0.531845 1.36003 0.095492 0.249784 0.809018 0.53207 +0.196975 0.770513 0.606227 1.40003 0.114743 0.196492 0.770515 0.606381 +0.271402 0.770513 0.576759 1.36003 0.114743 0.270942 0.770515 0.576973 +0.181636 0.809017 0.559018 1.40003 0.095492 0.181128 0.809018 0.55918 +0.196975 0.770513 0.606227 1.40003 0.114743 0.196492 0.770515 0.606381 +0.250267 0.809017 0.531845 1.36003 0.095492 0.249784 0.809018 0.53207 +0.181636 0.809017 0.559018 1.40003 0.095492 0.181128 0.809018 0.55918 +0.119441 0.770513 0.626134 1.44003 0.114743 0.118943 0.770515 0.626227 +0.196975 0.770513 0.606227 1.40003 0.114743 0.196492 0.770515 0.606381 +0.11014 0.809017 0.577375 1.44003 0.095492 0.109616 0.809018 0.577472 +0.119441 0.770513 0.626134 1.44003 0.114743 0.118943 0.770515 0.626227 +0.181636 0.809017 0.559018 1.40003 0.095492 0.181128 0.809018 0.55918 +0.11014 0.809017 0.577375 1.44003 0.095492 0.109616 0.809018 0.577472 +0.040024 0.770513 0.636167 1.48003 0.114743 0.039518 0.770514 0.636197 +0.119441 0.770513 0.626134 1.44003 0.114743 0.118943 0.770515 0.626227 +0.036907 0.809017 0.586626 1.48003 0.095492 0.036376 0.809018 0.586657 +0.040024 0.770513 0.636167 1.48003 0.114743 0.039518 0.770514 0.636197 +0.11014 0.809017 0.577375 1.44003 0.095492 0.109616 0.809018 0.577472 +0.036907 0.809017 0.586626 1.48003 0.095492 0.036376 0.809018 0.586657 +-0.040024 0.770513 0.636167 1.52003 0.114743 -0.04053 0.770515 0.636133 +0.040024 0.770513 0.636167 1.48003 0.114743 0.039518 0.770514 0.636197 +-0.036907 0.809017 0.586626 1.52003 0.095492 -0.037439 0.809018 0.58659 +-0.040024 0.770513 0.636167 1.52003 0.114743 -0.04053 0.770515 0.636133 +0.036907 0.809017 0.586626 1.48003 0.095492 0.036376 0.809018 0.586657 +-0.036907 0.809017 0.586626 -0.479968 0.095492 -0.037439 0.809018 0.58659 +-0.119441 0.770513 0.626134 -0.439968 0.114743 -0.119939 0.770514 0.626037 +-0.040024 0.770513 0.636167 -0.479968 0.114743 -0.04053 0.770515 0.636133 +-0.11014 0.809017 0.577374 -0.439968 0.095492 -0.110663 0.809018 0.577273 +-0.119441 0.770513 0.626134 -0.439968 0.114743 -0.119939 0.770514 0.626037 +-0.036907 0.809017 0.586626 -0.479968 0.095492 -0.037439 0.809018 0.58659 +-0.11014 0.809017 0.577374 -0.439968 0.095492 -0.110663 0.809018 0.577273 +-0.196975 0.770513 0.606227 -0.399968 0.114743 -0.197457 0.770515 0.606068 +-0.119441 0.770513 0.626134 -0.439968 0.114743 -0.119939 0.770514 0.626037 +-0.181636 0.809017 0.559017 -0.399968 0.095492 -0.182142 0.809018 0.558851 +-0.196975 0.770513 0.606227 -0.399968 0.114743 -0.197457 0.770515 0.606068 +-0.11014 0.809017 0.577374 -0.439968 0.095492 -0.110663 0.809018 0.577273 +-0.181636 0.809017 0.559017 -0.399968 0.095492 -0.182142 0.809018 0.558851 +-0.271402 0.770513 0.576759 -0.359968 0.114743 -0.27186 0.770515 0.576541 +-0.196975 0.770513 0.606227 -0.399968 0.114743 -0.197457 0.770515 0.606068 +-0.250267 0.809017 0.531844 -0.359968 0.095492 -0.250748 0.809018 0.531616 +-0.271402 0.770513 0.576759 -0.359968 0.114743 -0.27186 0.770515 0.576541 +-0.181636 0.809017 0.559017 -0.399968 0.095492 -0.182142 0.809018 0.558851 +-0.250267 0.809017 0.531844 -0.359968 0.095492 -0.250748 0.809018 0.531616 +-0.341549 0.770513 0.538195 -0.319968 0.114743 -0.341976 0.770515 0.537922 +-0.271402 0.770513 0.576759 -0.359968 0.114743 -0.27186 0.770515 0.576541 +-0.314951 0.809017 0.496284 -0.319968 0.095492 -0.3154 0.809018 0.495997 +-0.341549 0.770513 0.538195 -0.319968 0.114743 -0.341976 0.770515 0.537922 +-0.250267 0.809017 0.531844 -0.359968 0.095492 -0.250748 0.809018 0.531616 +-0.314951 0.809017 0.496284 -0.319968 0.095492 -0.3154 0.809018 0.495997 +-0.40631 0.770513 0.491144 -0.279968 0.114743 -0.406699 0.770515 0.490818 +-0.341549 0.770513 0.538195 -0.319968 0.114743 -0.341976 0.770515 0.537922 +-0.374669 0.809017 0.452897 -0.279968 0.095492 -0.375078 0.809018 0.452555 +-0.40631 0.770513 0.491144 -0.279968 0.114743 -0.406699 0.770515 0.490818 +-0.314951 0.809017 0.496284 -0.319968 0.095492 -0.3154 0.809018 0.495997 +-0.374669 0.809017 0.452897 -0.279968 0.095492 -0.375078 0.809018 0.452555 +-0.464662 0.770513 0.436347 -0.239968 0.114743 -0.465008 0.770515 0.435976 +-0.40631 0.770513 0.491144 -0.279968 0.114743 -0.406699 0.770515 0.490818 +-0.428477 0.809017 0.402367 -0.239968 0.095492 -0.428841 0.809018 0.401978 +-0.464662 0.770513 0.436347 -0.239968 0.114743 -0.465008 0.770515 0.435976 +-0.374669 0.809017 0.452897 -0.279968 0.095492 -0.375078 0.809018 0.452555 +-0.428477 0.809017 0.402367 -0.239968 0.095492 -0.428841 0.809018 0.401978 +-0.515687 0.770513 0.374669 -0.199968 0.114743 -0.515984 0.770515 0.374257 +-0.464662 0.770513 0.436347 -0.239968 0.114743 -0.465008 0.770515 0.435976 +-0.475529 0.809017 0.345492 -0.199968 0.095492 -0.47584 0.809018 0.34506 +-0.515687 0.770513 0.374669 -0.199968 0.114743 -0.515984 0.770515 0.374257 +-0.428477 0.809017 0.402367 -0.239968 0.095492 -0.428841 0.809018 0.401978 +-0.475529 0.809017 0.345492 -0.199968 0.095492 -0.47584 0.809018 0.34506 +-0.558579 0.770513 0.307082 -0.159968 0.114743 -0.558822 0.770515 0.306636 +-0.515687 0.770513 0.374669 -0.199968 0.114743 -0.515984 0.770515 0.374257 +-0.515081 0.809017 0.283168 -0.159968 0.095492 -0.515335 0.809018 0.282701 +-0.558579 0.770513 0.307082 -0.159968 0.114743 -0.558822 0.770515 0.306636 +-0.475529 0.809017 0.345492 -0.199968 0.095492 -0.47584 0.809018 0.34506 +-0.515081 0.809017 0.283168 -0.159968 0.095492 -0.515335 0.809018 0.282701 +-0.592662 0.770513 0.234652 -0.119968 0.114743 -0.592847 0.770515 0.234179 +-0.558579 0.770513 0.307082 -0.159968 0.114743 -0.558822 0.770515 0.306636 +-0.546509 0.809017 0.216378 -0.119968 0.095492 -0.546704 0.809018 0.215883 +-0.592662 0.770513 0.234652 -0.119968 0.114743 -0.592847 0.770515 0.234179 +-0.515081 0.809017 0.283168 -0.159968 0.095492 -0.515335 0.809018 0.282701 +-0.546509 0.809017 0.216378 -0.119968 0.095492 -0.546704 0.809018 0.215883 +-0.617399 0.770513 0.158521 -0.079968 0.114743 -0.617522 0.770515 0.15803 +-0.592662 0.770513 0.234652 -0.119968 0.114743 -0.592847 0.770515 0.234179 +-0.569319 0.809017 0.146176 -0.079968 0.095492 -0.56945 0.809018 0.14566 +-0.617399 0.770513 0.158521 -0.079968 0.114743 -0.617522 0.770515 0.15803 +-0.546509 0.809017 0.216378 -0.119968 0.095492 -0.546704 0.809018 0.215883 +-0.569319 0.809017 0.146176 -0.079968 0.095492 -0.56945 0.809018 0.14566 +-0.632398 0.770513 0.07989 -0.039968 0.114743 -0.632459 0.770515 0.079387 +-0.617399 0.770513 0.158521 -0.079968 0.114743 -0.617522 0.770515 0.15803 +-0.583151 0.809017 0.073669 -0.039968 0.095492 -0.583216 0.809018 0.07314 +-0.632398 0.770513 0.07989 -0.039968 0.114743 -0.632459 0.770515 0.079387 +-0.569319 0.809017 0.146176 -0.079968 0.095492 -0.56945 0.809018 0.14566 +-0.583151 0.809017 0.073669 -0.039968 0.095492 -0.583216 0.809018 0.07314 +-0.637424 0.770513 -0 3.2e-005 0.114743 -0.637422 0.770515 -0.000507 +-0.632398 0.770513 0.07989 -0.039968 0.114743 -0.632459 0.770515 0.079387 +-0.587786 0.809017 -0 3.2e-005 0.095492 -0.587784 0.809018 -0.000533 +-0.637424 0.770513 -0 3.2e-005 0.114743 -0.637422 0.770515 -0.000507 +-0.583151 0.809017 0.073669 -0.039968 0.095492 -0.583216 0.809018 0.07314 +-0.587786 0.809017 -0 3.2e-005 0.095492 -0.587784 0.809018 -0.000533 +-0.632398 0.770513 -0.079891 0.040032 0.114743 -0.632332 0.770515 -0.080393 +-0.637424 0.770513 -0 3.2e-005 0.114743 -0.637422 0.770515 -0.000507 +-0.583151 0.809017 -0.073669 0.040032 0.095492 -0.583082 0.809018 -0.074197 +-0.632398 0.770513 -0.079891 0.040032 0.114743 -0.632332 0.770515 -0.080393 +-0.587786 0.809017 -0 3.2e-005 0.095492 -0.587784 0.809018 -0.000533 +-0.583151 0.809017 -0.073669 0.040032 0.095492 -0.583082 0.809018 -0.074197 +-0.617399 0.770513 -0.158521 0.080032 0.114743 -0.61727 0.770515 -0.159011 +-0.632398 0.770513 -0.079891 0.040032 0.114743 -0.632332 0.770515 -0.080393 +-0.569319 0.809017 -0.146176 0.080032 0.095492 -0.569185 0.809018 -0.146691 +-0.617399 0.770513 -0.158521 0.080032 0.114743 -0.61727 0.770515 -0.159011 +-0.583151 0.809017 -0.073669 0.040032 0.095492 -0.583082 0.809018 -0.074197 +-0.569319 0.809017 -0.146176 0.080032 0.095492 -0.569185 0.809018 -0.146691 +-0.592662 0.770513 -0.234652 0.120032 0.114743 -0.592473 0.770515 -0.235122 +-0.617399 0.770513 -0.158521 0.080032 0.114743 -0.61727 0.770515 -0.159011 +-0.546509 0.809017 -0.216378 0.120032 0.095492 -0.546311 0.809018 -0.216873 +-0.592662 0.770513 -0.234652 0.120032 0.114743 -0.592473 0.770515 -0.235122 +-0.569319 0.809017 -0.146176 0.080032 0.095492 -0.569185 0.809018 -0.146691 +-0.546509 0.809017 -0.216378 0.120032 0.095492 -0.546311 0.809018 -0.216873 +-0.558579 0.770513 -0.307082 0.160032 0.114743 -0.558333 0.770515 -0.307525 +-0.592662 0.770513 -0.234652 0.120032 0.114743 -0.592473 0.770515 -0.235122 +-0.51508 0.809017 -0.283168 0.160032 0.095492 -0.514822 0.809018 -0.283634 +-0.558579 0.770513 -0.307082 0.160032 0.114743 -0.558333 0.770515 -0.307525 +-0.546509 0.809017 -0.216378 0.120032 0.095492 -0.546311 0.809018 -0.216873 +-0.51508 0.809017 -0.283168 0.160032 0.095492 -0.514822 0.809018 -0.283634 +-0.515687 0.770513 -0.374669 0.200032 0.114743 -0.515387 0.770515 -0.375078 +-0.558579 0.770513 -0.307082 0.160032 0.114743 -0.558333 0.770515 -0.307525 +-0.475528 0.809017 -0.345492 0.200032 0.095492 -0.475214 0.809018 -0.345922 +-0.515687 0.770513 -0.374669 0.200032 0.114743 -0.515387 0.770515 -0.375078 +-0.51508 0.809017 -0.283168 0.160032 0.095492 -0.514822 0.809018 -0.283634 +-0.475528 0.809017 -0.345492 0.200032 0.095492 -0.475214 0.809018 -0.345922 +-0.464662 0.770513 -0.436347 0.240032 0.114743 -0.464314 0.770515 -0.436715 +-0.515687 0.770513 -0.374669 0.200032 0.114743 -0.515387 0.770515 -0.375078 +-0.428477 0.809017 -0.402367 0.240032 0.095492 -0.428111 0.809018 -0.402754 +-0.464662 0.770513 -0.436347 0.240032 0.114743 -0.464314 0.770515 -0.436715 +-0.475528 0.809017 -0.345492 0.200032 0.095492 -0.475214 0.809018 -0.345922 +-0.428477 0.809017 -0.402367 0.240032 0.095492 -0.428111 0.809018 -0.402754 +-0.406309 0.770513 -0.491144 0.280032 0.114743 -0.405918 0.770515 -0.491466 +-0.464662 0.770513 -0.436347 0.240032 0.114743 -0.464314 0.770515 -0.436715 +-0.374669 0.809017 -0.452897 0.280032 0.095492 -0.374257 0.809018 -0.453235 +-0.406309 0.770513 -0.491144 0.280032 0.114743 -0.405918 0.770515 -0.491466 +-0.428477 0.809017 -0.402367 0.240032 0.095492 -0.428111 0.809018 -0.402754 +-0.374669 0.809017 -0.452897 0.280032 0.095492 -0.374257 0.809018 -0.453235 +-0.341549 0.770513 -0.538195 0.320032 0.114743 -0.341119 0.770515 -0.538465 +-0.406309 0.770513 -0.491144 0.280032 0.114743 -0.405918 0.770515 -0.491466 +-0.314951 0.809017 -0.496284 0.320032 0.095492 -0.3145 0.809018 -0.496568 +-0.341549 0.770513 -0.538195 0.320032 0.114743 -0.341119 0.770515 -0.538465 +-0.374669 0.809017 -0.452897 0.280032 0.095492 -0.374257 0.809018 -0.453235 +-0.314951 0.809017 -0.496284 0.320032 0.095492 -0.3145 0.809018 -0.496568 +-0.271402 0.770513 -0.576759 0.360032 0.114743 -0.270942 0.770514 -0.576973 +-0.341549 0.770513 -0.538195 0.320032 0.114743 -0.341119 0.770515 -0.538465 +-0.250267 0.809017 -0.531844 0.360032 0.095492 -0.249784 0.809018 -0.53207 +-0.271402 0.770513 -0.576759 0.360032 0.114743 -0.270942 0.770514 -0.576973 +-0.314951 0.809017 -0.496284 0.320032 0.095492 -0.3145 0.809018 -0.496568 +-0.250267 0.809017 -0.531844 0.360032 0.095492 -0.249784 0.809018 -0.53207 +-0.196975 0.770513 -0.606227 0.400032 0.114743 -0.196492 0.770514 -0.606382 +-0.271402 0.770513 -0.576759 0.360032 0.114743 -0.270942 0.770514 -0.576973 +-0.181636 0.809017 -0.559017 0.400032 0.095492 -0.181129 0.809018 -0.55918 +-0.196975 0.770513 -0.606227 0.400032 0.114743 -0.196492 0.770514 -0.606382 +-0.250267 0.809017 -0.531844 0.360032 0.095492 -0.249784 0.809018 -0.53207 +-0.181636 0.809017 -0.559017 0.400032 0.095492 -0.181129 0.809018 -0.55918 +-0.119441 0.770513 -0.626134 0.440032 0.114743 -0.118943 0.770515 -0.626227 +-0.196975 0.770513 -0.606227 0.400032 0.114743 -0.196492 0.770514 -0.606382 +-0.11014 0.809017 -0.577374 0.440032 0.095492 -0.109617 0.809018 -0.577472 +-0.119441 0.770513 -0.626134 0.440032 0.114743 -0.118943 0.770515 -0.626227 +-0.181636 0.809017 -0.559017 0.400032 0.095492 -0.181129 0.809018 -0.55918 +-0.11014 0.809017 -0.577374 0.440032 0.095492 -0.109617 0.809018 -0.577472 +-0.040024 0.770513 -0.636166 0.480032 0.114743 -0.039518 0.770515 -0.636196 +-0.119441 0.770513 -0.626134 0.440032 0.114743 -0.118943 0.770515 -0.626227 +-0.036907 0.809017 -0.586626 0.480032 0.095492 -0.036376 0.809018 -0.586657 +-0.040024 0.770513 -0.636166 0.480032 0.114743 -0.039518 0.770515 -0.636196 +-0.11014 0.809017 -0.577374 0.440032 0.095492 -0.109617 0.809018 -0.577472 +-0.036907 0.809017 -0.586626 0.480032 0.095492 -0.036376 0.809018 -0.586657 +0.040024 0.770513 -0.636166 0.520032 0.114743 0.04053 0.770515 -0.636133 +-0.040024 0.770513 -0.636166 0.480032 0.114743 -0.039518 0.770515 -0.636196 +0.036907 0.809017 -0.586626 0.520032 0.095492 0.037439 0.809018 -0.586591 +0.040024 0.770513 -0.636166 0.520032 0.114743 0.04053 0.770515 -0.636133 +-0.036907 0.809017 -0.586626 0.480032 0.095492 -0.036376 0.809018 -0.586657 +0.036907 0.809017 -0.586626 0.520032 0.095492 0.037439 0.809018 -0.586591 +0.119441 0.770513 -0.626134 0.560032 0.114743 0.119939 0.770515 -0.626037 +0.040024 0.770513 -0.636166 0.520032 0.114743 0.04053 0.770515 -0.636133 +0.11014 0.809017 -0.577374 0.560032 0.095492 0.110663 0.809018 -0.577273 +0.119441 0.770513 -0.626134 0.560032 0.114743 0.119939 0.770515 -0.626037 +0.036907 0.809017 -0.586626 0.520032 0.095492 0.037439 0.809018 -0.586591 +0.11014 0.809017 -0.577374 0.560032 0.095492 0.110663 0.809018 -0.577273 +0.196975 0.770513 -0.606226 0.600032 0.114743 0.197457 0.770514 -0.606068 +0.119441 0.770513 -0.626134 0.560032 0.114743 0.119939 0.770515 -0.626037 +0.181636 0.809017 -0.559017 0.600032 0.095492 0.182142 0.809018 -0.558851 +0.196975 0.770513 -0.606226 0.600032 0.114743 0.197457 0.770514 -0.606068 +0.11014 0.809017 -0.577374 0.560032 0.095492 0.110663 0.809018 -0.577273 +0.181636 0.809017 -0.559017 0.600032 0.095492 0.182142 0.809018 -0.558851 +0.271402 0.770513 -0.576759 0.640032 0.114743 0.27186 0.770514 -0.576541 +0.196975 0.770513 -0.606226 0.600032 0.114743 0.197457 0.770514 -0.606068 +0.250267 0.809017 -0.531844 0.640032 0.095492 0.250748 0.809018 -0.531616 +0.271402 0.770513 -0.576759 0.640032 0.114743 0.27186 0.770514 -0.576541 +0.181636 0.809017 -0.559017 0.600032 0.095492 0.182142 0.809018 -0.558851 +0.250267 0.809017 -0.531844 0.640032 0.095492 0.250748 0.809018 -0.531616 +0.341549 0.770513 -0.538195 0.680032 0.114743 0.341976 0.770515 -0.537921 +0.271402 0.770513 -0.576759 0.640032 0.114743 0.27186 0.770514 -0.576541 +0.314951 0.809017 -0.496284 0.680032 0.095492 0.3154 0.809018 -0.495997 +0.341549 0.770513 -0.538195 0.680032 0.114743 0.341976 0.770515 -0.537921 +0.250267 0.809017 -0.531844 0.640032 0.095492 0.250748 0.809018 -0.531616 +0.314951 0.809017 -0.496284 0.680032 0.095492 0.3154 0.809018 -0.495997 +0.406309 0.770513 -0.491144 0.720032 0.114743 0.406699 0.770515 -0.490819 +0.341549 0.770513 -0.538195 0.680032 0.114743 0.341976 0.770515 -0.537921 +0.374669 0.809017 -0.452896 0.720032 0.095492 0.375078 0.809018 -0.452556 +0.406309 0.770513 -0.491144 0.720032 0.114743 0.406699 0.770515 -0.490819 +0.314951 0.809017 -0.496284 0.680032 0.095492 0.3154 0.809018 -0.495997 +0.374669 0.809017 -0.452896 0.720032 0.095492 0.375078 0.809018 -0.452556 +0.464662 0.770513 -0.436347 0.760032 0.114743 0.465008 0.770515 -0.435976 +0.406309 0.770513 -0.491144 0.720032 0.114743 0.406699 0.770515 -0.490819 +0.428477 0.809017 -0.402367 0.760032 0.095492 0.428841 0.809018 -0.401978 +0.464662 0.770513 -0.436347 0.760032 0.114743 0.465008 0.770515 -0.435976 +0.374669 0.809017 -0.452896 0.720032 0.095492 0.375078 0.809018 -0.452556 +0.428477 0.809017 -0.402367 0.760032 0.095492 0.428841 0.809018 -0.401978 +0.515687 0.770513 -0.374668 0.800032 0.114743 0.515984 0.770514 -0.374257 +0.464662 0.770513 -0.436347 0.760032 0.114743 0.465008 0.770515 -0.435976 +0.475528 0.809017 -0.345492 0.800032 0.095492 0.47584 0.809018 -0.34506 +0.515687 0.770513 -0.374668 0.800032 0.114743 0.515984 0.770514 -0.374257 +0.428477 0.809017 -0.402367 0.760032 0.095492 0.428841 0.809018 -0.401978 +0.475528 0.809017 -0.345492 0.800032 0.095492 0.47584 0.809018 -0.34506 +0.558579 0.770513 -0.307081 0.840032 0.114743 0.558822 0.770515 -0.306636 +0.515687 0.770513 -0.374668 0.800032 0.114743 0.515984 0.770514 -0.374257 +0.51508 0.809017 -0.283168 0.840032 0.095492 0.515336 0.809018 -0.282701 +0.558579 0.770513 -0.307081 0.840032 0.114743 0.558822 0.770515 -0.306636 +0.475528 0.809017 -0.345492 0.800032 0.095492 0.47584 0.809018 -0.34506 +0.51508 0.809017 -0.283168 0.840032 0.095492 0.515336 0.809018 -0.282701 +0.592662 0.770513 -0.234651 0.880032 0.114743 0.592847 0.770514 -0.23418 +0.558579 0.770513 -0.307081 0.840032 0.114743 0.558822 0.770515 -0.306636 +0.546509 0.809017 -0.216378 0.880032 0.095492 0.546704 0.809018 -0.215883 +0.592662 0.770513 -0.234651 0.880032 0.114743 0.592847 0.770514 -0.23418 +0.51508 0.809017 -0.283168 0.840032 0.095492 0.515336 0.809018 -0.282701 +0.546509 0.809017 -0.216378 0.880032 0.095492 0.546704 0.809018 -0.215883 +0.617398 0.770513 -0.158521 0.920032 0.114743 0.617523 0.770514 -0.15803 +0.592662 0.770513 -0.234651 0.880032 0.114743 0.592847 0.770514 -0.23418 +0.569319 0.809017 -0.146176 0.920032 0.095492 0.56945 0.809018 -0.14566 +0.617398 0.770513 -0.158521 0.920032 0.114743 0.617523 0.770514 -0.15803 +0.546509 0.809017 -0.216378 0.880032 0.095492 0.546704 0.809018 -0.215883 +0.569319 0.809017 -0.146176 0.920032 0.095492 0.56945 0.809018 -0.14566 +0.632398 0.770513 -0.07989 0.960032 0.114743 0.63246 0.770514 -0.079388 +0.617398 0.770513 -0.158521 0.920032 0.114743 0.617523 0.770514 -0.15803 +0.58315 0.809017 -0.073669 0.960032 0.095492 0.583216 0.809018 -0.07314 +0.632398 0.770513 -0.07989 0.960032 0.114743 0.63246 0.770514 -0.079388 +0.569319 0.809017 -0.146176 0.920032 0.095492 0.56945 0.809018 -0.14566 +0.58315 0.809017 -0.073669 0.960032 0.095492 0.583216 0.809018 -0.07314 +0.637424 0.770513 -0 1.00003 0.114743 0.637422 0.770515 0.000504 +0.632398 0.770513 -0.07989 0.960032 0.114743 0.63246 0.770514 -0.079388 +0.587785 0.809017 -0 1.00003 0.095492 0.587784 0.809018 0.00053 +0.637424 0.770513 -0 1.00003 0.114743 0.637422 0.770515 0.000504 +0.58315 0.809017 -0.073669 0.960032 0.095492 0.583216 0.809018 -0.07314 +0.587785 0.809017 -0 1.00003 0.095492 0.587784 0.809018 0.00053 +0.632398 0.770513 0.079891 1.04003 0.114743 0.632332 0.770515 0.080391 +0.637424 0.770513 -0 1.00003 0.114743 0.637422 0.770515 0.000504 +0.583151 0.809017 0.073669 1.04003 0.095492 0.583082 0.809018 0.074195 +0.632398 0.770513 0.079891 1.04003 0.114743 0.632332 0.770515 0.080391 +0.587785 0.809017 -0 1.00003 0.095492 0.587784 0.809018 0.00053 +0.531602 0.844328 0.067157 1.04003 0.077836 0.53153 0.844329 0.067706 +0.569319 0.809017 0.146176 1.08003 0.095492 0.569185 0.809018 0.146691 +0.583151 0.809017 0.073669 1.04003 0.095492 0.583082 0.809018 0.074195 +0.518993 0.844328 0.133255 1.08003 0.077836 0.518853 0.844329 0.133793 +0.569319 0.809017 0.146176 1.08003 0.095492 0.569185 0.809018 0.146691 +0.531602 0.844328 0.067157 1.04003 0.077836 0.53153 0.844329 0.067706 +0.518993 0.844328 0.133255 1.08003 0.077836 0.518853 0.844329 0.133793 +0.54651 0.809017 0.216378 1.12003 0.095492 0.546312 0.809018 0.216873 +0.569319 0.809017 0.146176 1.08003 0.095492 0.569185 0.809018 0.146691 +0.4982 0.844328 0.197251 1.12003 0.077836 0.497993 0.844329 0.197767 +0.54651 0.809017 0.216378 1.12003 0.095492 0.546312 0.809018 0.216873 +0.518993 0.844328 0.133255 1.08003 0.077836 0.518853 0.844329 0.133793 +0.4982 0.844328 0.197251 1.12003 0.077836 0.497993 0.844329 0.197767 +0.515081 0.809017 0.283168 1.16003 0.095492 0.514822 0.809018 0.283634 +0.54651 0.809017 0.216378 1.12003 0.095492 0.546312 0.809018 0.216873 +0.469549 0.844328 0.258137 1.16003 0.077836 0.469279 0.844329 0.258623 +0.515081 0.809017 0.283168 1.16003 0.095492 0.514822 0.809018 0.283634 +0.4982 0.844328 0.197251 1.12003 0.077836 0.497993 0.844329 0.197767 +0.469549 0.844328 0.258137 1.16003 0.077836 0.469279 0.844329 0.258623 +0.475529 0.809017 0.345492 1.20003 0.095492 0.475214 0.809018 0.345921 +0.515081 0.809017 0.283168 1.16003 0.095492 0.514822 0.809018 0.283634 +0.433493 0.844328 0.314951 1.20003 0.077836 0.433165 0.844329 0.3154 +0.475529 0.809017 0.345492 1.20003 0.095492 0.475214 0.809018 0.345921 +0.469549 0.844328 0.258137 1.16003 0.077836 0.469279 0.844329 0.258623 +0.433493 0.844328 0.314951 1.20003 0.077836 0.433165 0.844329 0.3154 +0.428477 0.809017 0.402367 1.24003 0.095492 0.428111 0.809018 0.402754 +0.475529 0.809017 0.345492 1.20003 0.095492 0.475214 0.809018 0.345921 +0.390601 0.844328 0.366799 1.24003 0.077836 0.390219 0.844329 0.367203 +0.428477 0.809017 0.402367 1.24003 0.095492 0.428111 0.809018 0.402754 +0.433493 0.844328 0.314951 1.20003 0.077836 0.433165 0.844329 0.3154 +0.390601 0.844328 0.366799 1.24003 0.077836 0.390219 0.844329 0.367203 +0.374669 0.809017 0.452897 1.28003 0.095492 0.374257 0.809018 0.453235 +0.428477 0.809017 0.402367 1.24003 0.095492 0.428111 0.809018 0.402754 +0.341549 0.844328 0.412862 1.28003 0.077836 0.341119 0.844329 0.413215 +0.374669 0.809017 0.452897 1.28003 0.095492 0.374257 0.809018 0.453235 +0.390601 0.844328 0.366799 1.24003 0.077836 0.390219 0.844329 0.367203 +0.341549 0.844328 0.412862 1.28003 0.077836 0.341119 0.844329 0.413215 +0.314951 0.809017 0.496284 1.32003 0.095492 0.314501 0.809018 0.496568 +0.374669 0.809017 0.452897 1.28003 0.095492 0.374257 0.809018 0.453235 +0.287111 0.844328 0.452414 1.32003 0.077836 0.28664 0.844329 0.45271 +0.314951 0.809017 0.496284 1.32003 0.095492 0.314501 0.809018 0.496568 +0.341549 0.844328 0.412862 1.28003 0.077836 0.341119 0.844329 0.413215 +0.287111 0.844328 0.452414 1.32003 0.077836 0.28664 0.844329 0.45271 +0.250267 0.809017 0.531845 1.36003 0.095492 0.249784 0.809018 0.53207 +0.314951 0.809017 0.496284 1.32003 0.095492 0.314501 0.809018 0.496568 +0.228144 0.844328 0.484831 1.36003 0.077836 0.22764 0.844329 0.485066 +0.250267 0.809017 0.531845 1.36003 0.095492 0.249784 0.809018 0.53207 +0.287111 0.844328 0.452414 1.32003 0.077836 0.28664 0.844329 0.45271 +0.228144 0.844328 0.484831 1.36003 0.077836 0.22764 0.844329 0.485066 +0.181636 0.809017 0.559018 1.40003 0.095492 0.181128 0.809018 0.55918 +0.250267 0.809017 0.531845 1.36003 0.095492 0.249784 0.809018 0.53207 +0.16558 0.844328 0.509602 1.40003 0.077836 0.16505 0.844329 0.509772 +0.181636 0.809017 0.559018 1.40003 0.095492 0.181128 0.809018 0.55918 +0.228144 0.844328 0.484831 1.36003 0.077836 0.22764 0.844329 0.485066 +0.16558 0.844328 0.509602 1.40003 0.077836 0.16505 0.844329 0.509772 +0.11014 0.809017 0.577375 1.44003 0.095492 0.109616 0.809018 0.577472 +0.181636 0.809017 0.559018 1.40003 0.095492 0.181128 0.809018 0.55918 +0.100404 0.844328 0.526336 1.44003 0.077836 0.099857 0.844329 0.526438 +0.11014 0.809017 0.577375 1.44003 0.095492 0.109616 0.809018 0.577472 +0.16558 0.844328 0.509602 1.40003 0.077836 0.16505 0.844329 0.509772 +0.100404 0.844328 0.526336 1.44003 0.077836 0.099857 0.844329 0.526438 +0.036907 0.809017 0.586626 1.48003 0.095492 0.036376 0.809018 0.586657 +0.11014 0.809017 0.577375 1.44003 0.095492 0.109616 0.809018 0.577472 +0.033645 0.844328 0.53477 1.48003 0.077836 0.03309 0.844329 0.534803 +0.036907 0.809017 0.586626 1.48003 0.095492 0.036376 0.809018 0.586657 +0.100404 0.844328 0.526336 1.44003 0.077836 0.099857 0.844329 0.526438 +0.033645 0.844328 0.53477 1.48003 0.077836 0.03309 0.844329 0.534803 +-0.036907 0.809017 0.586626 1.52003 0.095492 -0.037439 0.809018 0.58659 +0.036907 0.809017 0.586626 1.48003 0.095492 0.036376 0.809018 0.586657 +-0.033645 0.844328 0.53477 1.52003 0.077836 -0.034199 0.844329 0.534733 +-0.036907 0.809017 0.586626 1.52003 0.095492 -0.037439 0.809018 0.58659 +0.033645 0.844328 0.53477 1.48003 0.077836 0.03309 0.844329 0.534803 +-0.033645 0.844328 0.53477 -0.479968 0.077836 -0.034199 0.844329 0.534733 +-0.11014 0.809017 0.577374 -0.439968 0.095492 -0.110663 0.809018 0.577273 +-0.036907 0.809017 0.586626 -0.479968 0.095492 -0.037439 0.809018 0.58659 +-0.100404 0.844328 0.526336 -0.439968 0.077836 -0.10095 0.844329 0.52623 +-0.11014 0.809017 0.577374 -0.439968 0.095492 -0.110663 0.809018 0.577273 +-0.033645 0.844328 0.53477 -0.479968 0.077836 -0.034199 0.844329 0.534733 +-0.100404 0.844328 0.526336 -0.439968 0.077836 -0.10095 0.844329 0.52623 +-0.181636 0.809017 0.559017 -0.399968 0.095492 -0.182142 0.809018 0.558851 +-0.11014 0.809017 0.577374 -0.439968 0.095492 -0.110663 0.809018 0.577273 +-0.16558 0.844328 0.509602 -0.399968 0.077836 -0.166108 0.844329 0.509428 +-0.181636 0.809017 0.559017 -0.399968 0.095492 -0.182142 0.809018 0.558851 +-0.100404 0.844328 0.526336 -0.439968 0.077836 -0.10095 0.844329 0.52623 +-0.16558 0.844328 0.509602 -0.399968 0.077836 -0.166108 0.844329 0.509428 +-0.250267 0.809017 0.531844 -0.359968 0.095492 -0.250748 0.809018 0.531616 +-0.181636 0.809017 0.559017 -0.399968 0.095492 -0.182142 0.809018 0.558851 +-0.228144 0.844328 0.484831 -0.359968 0.077836 -0.228646 0.844329 0.484592 +-0.250267 0.809017 0.531844 -0.359968 0.095492 -0.250748 0.809018 0.531616 +-0.16558 0.844328 0.509602 -0.399968 0.077836 -0.166108 0.844329 0.509428 +-0.228144 0.844328 0.484831 -0.359968 0.077836 -0.228646 0.844329 0.484592 +-0.314951 0.809017 0.496284 -0.319968 0.095492 -0.3154 0.809018 0.495997 +-0.250267 0.809017 0.531844 -0.359968 0.095492 -0.250748 0.809018 0.531616 +-0.287111 0.844328 0.452414 -0.319968 0.077836 -0.287579 0.844329 0.452114 +-0.314951 0.809017 0.496284 -0.319968 0.095492 -0.3154 0.809018 0.495997 +-0.228144 0.844328 0.484831 -0.359968 0.077836 -0.228646 0.844329 0.484592 +-0.287111 0.844328 0.452414 -0.319968 0.077836 -0.287579 0.844329 0.452114 +-0.374669 0.809017 0.452897 -0.279968 0.095492 -0.375078 0.809018 0.452555 +-0.314951 0.809017 0.496284 -0.319968 0.095492 -0.3154 0.809018 0.495997 +-0.341549 0.844328 0.412862 -0.279968 0.077836 -0.341976 0.844329 0.412506 +-0.374669 0.809017 0.452897 -0.279968 0.095492 -0.375078 0.809018 0.452555 +-0.287111 0.844328 0.452414 -0.319968 0.077836 -0.287579 0.844329 0.452114 +-0.341549 0.844328 0.412862 -0.279968 0.077836 -0.341976 0.844329 0.412506 +-0.428477 0.809017 0.402367 -0.239968 0.095492 -0.428841 0.809018 0.401978 +-0.374669 0.809017 0.452897 -0.279968 0.095492 -0.375078 0.809018 0.452555 +-0.390601 0.844328 0.366799 -0.239968 0.077836 -0.39098 0.844329 0.366392 +-0.428477 0.809017 0.402367 -0.239968 0.095492 -0.428841 0.809018 0.401978 +-0.341549 0.844328 0.412862 -0.279968 0.077836 -0.341976 0.844329 0.412506 +-0.390601 0.844328 0.366799 -0.239968 0.077836 -0.39098 0.844329 0.366392 +-0.475529 0.809017 0.345492 -0.199968 0.095492 -0.47584 0.809018 0.34506 +-0.428477 0.809017 0.402367 -0.239968 0.095492 -0.428841 0.809018 0.401978 +-0.433493 0.844328 0.314951 -0.199968 0.077836 -0.433818 0.844329 0.3145 +-0.475529 0.809017 0.345492 -0.199968 0.095492 -0.47584 0.809018 0.34506 +-0.390601 0.844328 0.366799 -0.239968 0.077836 -0.39098 0.844329 0.366392 +-0.433493 0.844328 0.314951 -0.199968 0.077836 -0.433818 0.844329 0.3145 +-0.515081 0.809017 0.283168 -0.159968 0.095492 -0.515335 0.809018 0.282701 +-0.475529 0.809017 0.345492 -0.199968 0.095492 -0.47584 0.809018 0.34506 +-0.469549 0.844328 0.258137 -0.159968 0.077836 -0.469815 0.844329 0.257648 +-0.515081 0.809017 0.283168 -0.159968 0.095492 -0.515335 0.809018 0.282701 +-0.433493 0.844328 0.314951 -0.199968 0.077836 -0.433818 0.844329 0.3145 +-0.469549 0.844328 0.258137 -0.159968 0.077836 -0.469815 0.844329 0.257648 +-0.546509 0.809017 0.216378 -0.119968 0.095492 -0.546704 0.809018 0.215883 +-0.515081 0.809017 0.283168 -0.159968 0.095492 -0.515335 0.809018 0.282701 +-0.4982 0.844328 0.197251 -0.119968 0.077836 -0.498402 0.844329 0.196733 +-0.546509 0.809017 0.216378 -0.119968 0.095492 -0.546704 0.809018 0.215883 +-0.469549 0.844328 0.258137 -0.159968 0.077836 -0.469815 0.844329 0.257648 +-0.4982 0.844328 0.197251 -0.119968 0.077836 -0.498402 0.844329 0.196733 +-0.569319 0.809017 0.146176 -0.079968 0.095492 -0.56945 0.809018 0.14566 +-0.546509 0.809017 0.216378 -0.119968 0.095492 -0.546704 0.809018 0.215883 +-0.518993 0.844328 0.133255 -0.079968 0.077836 -0.519129 0.844329 0.132716 +-0.569319 0.809017 0.146176 -0.079968 0.095492 -0.56945 0.809018 0.14566 +-0.4982 0.844328 0.197251 -0.119968 0.077836 -0.498402 0.844329 0.196733 +-0.518993 0.844328 0.133255 -0.079968 0.077836 -0.519129 0.844329 0.132716 +-0.583151 0.809017 0.073669 -0.039968 0.095492 -0.583216 0.809018 0.07314 +-0.569319 0.809017 0.146176 -0.079968 0.095492 -0.56945 0.809018 0.14566 +-0.531602 0.844328 0.067157 -0.039968 0.077836 -0.531669 0.844329 0.066605 +-0.583151 0.809017 0.073669 -0.039968 0.095492 -0.583216 0.809018 0.07314 +-0.518993 0.844328 0.133255 -0.079968 0.077836 -0.519129 0.844329 0.132716 +-0.531602 0.844328 0.067157 -0.039968 0.077836 -0.531669 0.844329 0.066605 +-0.587786 0.809017 -0 3.2e-005 0.095492 -0.587784 0.809018 -0.000533 +-0.583151 0.809017 0.073669 -0.039968 0.095492 -0.583216 0.809018 0.07314 +-0.535827 0.844328 -0 3.2e-005 0.077836 -0.535825 0.844329 -0.000556 +-0.587786 0.809017 -0 3.2e-005 0.095492 -0.587784 0.809018 -0.000533 +-0.531602 0.844328 0.067157 -0.039968 0.077836 -0.531669 0.844329 0.066605 +-0.535827 0.844328 -0 3.2e-005 0.077836 -0.535825 0.844329 -0.000556 +-0.583151 0.809017 -0.073669 0.040032 0.095492 -0.583082 0.809018 -0.074197 +-0.587786 0.809017 -0 3.2e-005 0.095492 -0.587784 0.809018 -0.000533 +-0.531602 0.844328 -0.067157 0.040032 0.077836 -0.53153 0.844329 -0.067708 +-0.583151 0.809017 -0.073669 0.040032 0.095492 -0.583082 0.809018 -0.074197 +-0.535827 0.844328 -0 3.2e-005 0.077836 -0.535825 0.844329 -0.000556 +-0.531602 0.844328 -0.067157 0.040032 0.077836 -0.53153 0.844329 -0.067708 +-0.569319 0.809017 -0.146176 0.080032 0.095492 -0.569185 0.809018 -0.146691 +-0.583151 0.809017 -0.073669 0.040032 0.095492 -0.583082 0.809018 -0.074197 +-0.518993 0.844328 -0.133255 0.080032 0.077836 -0.518853 0.844329 -0.133793 +-0.569319 0.809017 -0.146176 0.080032 0.095492 -0.569185 0.809018 -0.146691 +-0.531602 0.844328 -0.067157 0.040032 0.077836 -0.53153 0.844329 -0.067708 +-0.518993 0.844328 -0.133255 0.080032 0.077836 -0.518853 0.844329 -0.133793 +-0.546509 0.809017 -0.216378 0.120032 0.095492 -0.546311 0.809018 -0.216873 +-0.569319 0.809017 -0.146176 0.080032 0.095492 -0.569185 0.809018 -0.146691 +-0.498199 0.844328 -0.197251 0.120032 0.077836 -0.497993 0.844329 -0.197767 +-0.546509 0.809017 -0.216378 0.120032 0.095492 -0.546311 0.809018 -0.216873 +-0.518993 0.844328 -0.133255 0.080032 0.077836 -0.518853 0.844329 -0.133793 +-0.498199 0.844328 -0.197251 0.120032 0.077836 -0.497993 0.844329 -0.197767 +-0.51508 0.809017 -0.283168 0.160032 0.095492 -0.514822 0.809018 -0.283634 +-0.546509 0.809017 -0.216378 0.120032 0.095492 -0.546311 0.809018 -0.216873 +-0.469549 0.844328 -0.258137 0.160032 0.077836 -0.469279 0.844329 -0.258623 +-0.51508 0.809017 -0.283168 0.160032 0.095492 -0.514822 0.809018 -0.283634 +-0.498199 0.844328 -0.197251 0.120032 0.077836 -0.497993 0.844329 -0.197767 +-0.469549 0.844328 -0.258137 0.160032 0.077836 -0.469279 0.844329 -0.258623 +-0.475528 0.809017 -0.345492 0.200032 0.095492 -0.475214 0.809018 -0.345922 +-0.51508 0.809017 -0.283168 0.160032 0.095492 -0.514822 0.809018 -0.283634 +-0.433493 0.844328 -0.314951 0.200032 0.077836 -0.433165 0.844329 -0.3154 +-0.475528 0.809017 -0.345492 0.200032 0.095492 -0.475214 0.809018 -0.345922 +-0.469549 0.844328 -0.258137 0.160032 0.077836 -0.469279 0.844329 -0.258623 +-0.433493 0.844328 -0.314951 0.200032 0.077836 -0.433165 0.844329 -0.3154 +-0.428477 0.809017 -0.402367 0.240032 0.095492 -0.428111 0.809018 -0.402754 +-0.475528 0.809017 -0.345492 0.200032 0.095492 -0.475214 0.809018 -0.345922 +-0.390601 0.844328 -0.366799 0.240032 0.077836 -0.390219 0.844329 -0.367203 +-0.428477 0.809017 -0.402367 0.240032 0.095492 -0.428111 0.809018 -0.402754 +-0.433493 0.844328 -0.314951 0.200032 0.077836 -0.433165 0.844329 -0.3154 +-0.390601 0.844328 -0.366799 0.240032 0.077836 -0.390219 0.844329 -0.367203 +-0.374669 0.809017 -0.452897 0.280032 0.095492 -0.374257 0.809018 -0.453235 +-0.428477 0.809017 -0.402367 0.240032 0.095492 -0.428111 0.809018 -0.402754 +-0.341549 0.844328 -0.412862 0.280032 0.077836 -0.341119 0.844329 -0.413215 +-0.374669 0.809017 -0.452897 0.280032 0.095492 -0.374257 0.809018 -0.453235 +-0.390601 0.844328 -0.366799 0.240032 0.077836 -0.390219 0.844329 -0.367203 +-0.341549 0.844328 -0.412862 0.280032 0.077836 -0.341119 0.844329 -0.413215 +-0.314951 0.809017 -0.496284 0.320032 0.095492 -0.3145 0.809018 -0.496568 +-0.374669 0.809017 -0.452897 0.280032 0.095492 -0.374257 0.809018 -0.453235 +-0.28711 0.844328 -0.452414 0.320032 0.077836 -0.28664 0.844329 -0.45271 +-0.314951 0.809017 -0.496284 0.320032 0.095492 -0.3145 0.809018 -0.496568 +-0.341549 0.844328 -0.412862 0.280032 0.077836 -0.341119 0.844329 -0.413215 +-0.28711 0.844328 -0.452414 0.320032 0.077836 -0.28664 0.844329 -0.45271 +-0.250267 0.809017 -0.531844 0.360032 0.095492 -0.249784 0.809018 -0.53207 +-0.314951 0.809017 -0.496284 0.320032 0.095492 -0.3145 0.809018 -0.496568 +-0.228144 0.844328 -0.484831 0.360032 0.077836 -0.22764 0.844329 -0.485066 +-0.250267 0.809017 -0.531844 0.360032 0.095492 -0.249784 0.809018 -0.53207 +-0.28711 0.844328 -0.452414 0.320032 0.077836 -0.28664 0.844329 -0.45271 +-0.228144 0.844328 -0.484831 0.360032 0.077836 -0.22764 0.844329 -0.485066 +-0.181636 0.809017 -0.559017 0.400032 0.095492 -0.181129 0.809018 -0.55918 +-0.250267 0.809017 -0.531844 0.360032 0.095492 -0.249784 0.809018 -0.53207 +-0.16558 0.844328 -0.509602 0.400032 0.077836 -0.16505 0.844329 -0.509772 +-0.181636 0.809017 -0.559017 0.400032 0.095492 -0.181129 0.809018 -0.55918 +-0.228144 0.844328 -0.484831 0.360032 0.077836 -0.22764 0.844329 -0.485066 +-0.16558 0.844328 -0.509602 0.400032 0.077836 -0.16505 0.844329 -0.509772 +-0.11014 0.809017 -0.577374 0.440032 0.095492 -0.109617 0.809018 -0.577472 +-0.181636 0.809017 -0.559017 0.400032 0.095492 -0.181129 0.809018 -0.55918 +-0.100404 0.844328 -0.526336 0.440032 0.077836 -0.099858 0.844329 -0.526439 +-0.11014 0.809017 -0.577374 0.440032 0.095492 -0.109617 0.809018 -0.577472 +-0.16558 0.844328 -0.509602 0.400032 0.077836 -0.16505 0.844329 -0.509772 +-0.100404 0.844328 -0.526336 0.440032 0.077836 -0.099858 0.844329 -0.526439 +-0.036907 0.809017 -0.586626 0.480032 0.095492 -0.036376 0.809018 -0.586657 +-0.11014 0.809017 -0.577374 0.440032 0.095492 -0.109617 0.809018 -0.577472 +-0.033645 0.844328 -0.53477 0.480032 0.077836 -0.03309 0.844328 -0.534803 +-0.036907 0.809017 -0.586626 0.480032 0.095492 -0.036376 0.809018 -0.586657 +-0.100404 0.844328 -0.526336 0.440032 0.077836 -0.099858 0.844329 -0.526439 +-0.033645 0.844328 -0.53477 0.480032 0.077836 -0.03309 0.844328 -0.534803 +0.036907 0.809017 -0.586626 0.520032 0.095492 0.037439 0.809018 -0.586591 +-0.036907 0.809017 -0.586626 0.480032 0.095492 -0.036376 0.809018 -0.586657 +0.033645 0.844328 -0.53477 0.520032 0.077836 0.0342 0.844329 -0.534733 +0.036907 0.809017 -0.586626 0.520032 0.095492 0.037439 0.809018 -0.586591 +-0.033645 0.844328 -0.53477 0.480032 0.077836 -0.03309 0.844328 -0.534803 +0.033645 0.844328 -0.53477 0.520032 0.077836 0.0342 0.844329 -0.534733 +0.11014 0.809017 -0.577374 0.560032 0.095492 0.110663 0.809018 -0.577273 +0.036907 0.809017 -0.586626 0.520032 0.095492 0.037439 0.809018 -0.586591 +0.100404 0.844328 -0.526336 0.560032 0.077836 0.10095 0.844329 -0.52623 +0.11014 0.809017 -0.577374 0.560032 0.095492 0.110663 0.809018 -0.577273 +0.033645 0.844328 -0.53477 0.520032 0.077836 0.0342 0.844329 -0.534733 +0.100404 0.844328 -0.526336 0.560032 0.077836 0.10095 0.844329 -0.52623 +0.181636 0.809017 -0.559017 0.600032 0.095492 0.182142 0.809018 -0.558851 +0.11014 0.809017 -0.577374 0.560032 0.095492 0.110663 0.809018 -0.577273 +0.16558 0.844328 -0.509602 0.600032 0.077836 0.166108 0.844329 -0.509428 +0.181636 0.809017 -0.559017 0.600032 0.095492 0.182142 0.809018 -0.558851 +0.100404 0.844328 -0.526336 0.560032 0.077836 0.10095 0.844329 -0.52623 +0.16558 0.844328 -0.509602 0.600032 0.077836 0.166108 0.844329 -0.509428 +0.250267 0.809017 -0.531844 0.640032 0.095492 0.250748 0.809018 -0.531616 +0.181636 0.809017 -0.559017 0.600032 0.095492 0.182142 0.809018 -0.558851 +0.228144 0.844328 -0.484831 0.640032 0.077836 0.228646 0.844329 -0.484593 +0.250267 0.809017 -0.531844 0.640032 0.095492 0.250748 0.809018 -0.531616 +0.16558 0.844328 -0.509602 0.600032 0.077836 0.166108 0.844329 -0.509428 +0.228144 0.844328 -0.484831 0.640032 0.077836 0.228646 0.844329 -0.484593 +0.314951 0.809017 -0.496284 0.680032 0.095492 0.3154 0.809018 -0.495997 +0.250267 0.809017 -0.531844 0.640032 0.095492 0.250748 0.809018 -0.531616 +0.28711 0.844328 -0.452414 0.680032 0.077836 0.287579 0.844329 -0.452114 +0.314951 0.809017 -0.496284 0.680032 0.095492 0.3154 0.809018 -0.495997 +0.228144 0.844328 -0.484831 0.640032 0.077836 0.228646 0.844329 -0.484593 +0.28711 0.844328 -0.452414 0.680032 0.077836 0.287579 0.844329 -0.452114 +0.374669 0.809017 -0.452896 0.720032 0.095492 0.375078 0.809018 -0.452556 +0.314951 0.809017 -0.496284 0.680032 0.095492 0.3154 0.809018 -0.495997 +0.341549 0.844328 -0.412862 0.720032 0.077836 0.341976 0.844329 -0.412506 +0.374669 0.809017 -0.452896 0.720032 0.095492 0.375078 0.809018 -0.452556 +0.28711 0.844328 -0.452414 0.680032 0.077836 0.287579 0.844329 -0.452114 +0.341549 0.844328 -0.412862 0.720032 0.077836 0.341976 0.844329 -0.412506 +0.428477 0.809017 -0.402367 0.760032 0.095492 0.428841 0.809018 -0.401978 +0.374669 0.809017 -0.452896 0.720032 0.095492 0.375078 0.809018 -0.452556 +0.390601 0.844328 -0.366799 0.760032 0.077836 0.39098 0.844329 -0.366392 +0.428477 0.809017 -0.402367 0.760032 0.095492 0.428841 0.809018 -0.401978 +0.341549 0.844328 -0.412862 0.720032 0.077836 0.341976 0.844329 -0.412506 +0.390601 0.844328 -0.366799 0.760032 0.077836 0.39098 0.844329 -0.366392 +0.475528 0.809017 -0.345492 0.800032 0.095492 0.47584 0.809018 -0.34506 +0.428477 0.809017 -0.402367 0.760032 0.095492 0.428841 0.809018 -0.401978 +0.433493 0.844328 -0.314951 0.800032 0.077836 0.433819 0.844329 -0.3145 +0.475528 0.809017 -0.345492 0.800032 0.095492 0.47584 0.809018 -0.34506 +0.390601 0.844328 -0.366799 0.760032 0.077836 0.39098 0.844329 -0.366392 +0.433493 0.844328 -0.314951 0.800032 0.077836 0.433819 0.844329 -0.3145 +0.51508 0.809017 -0.283168 0.840032 0.095492 0.515336 0.809018 -0.282701 +0.475528 0.809017 -0.345492 0.800032 0.095492 0.47584 0.809018 -0.34506 +0.469549 0.844328 -0.258137 0.840032 0.077836 0.469815 0.844329 -0.257648 +0.51508 0.809017 -0.283168 0.840032 0.095492 0.515336 0.809018 -0.282701 +0.433493 0.844328 -0.314951 0.800032 0.077836 0.433819 0.844329 -0.3145 +0.469549 0.844328 -0.258137 0.840032 0.077836 0.469815 0.844329 -0.257648 +0.546509 0.809017 -0.216378 0.880032 0.095492 0.546704 0.809018 -0.215883 +0.51508 0.809017 -0.283168 0.840032 0.095492 0.515336 0.809018 -0.282701 +0.498199 0.844328 -0.197251 0.880032 0.077836 0.498402 0.844329 -0.196734 +0.546509 0.809017 -0.216378 0.880032 0.095492 0.546704 0.809018 -0.215883 +0.469549 0.844328 -0.258137 0.840032 0.077836 0.469815 0.844329 -0.257648 +0.498199 0.844328 -0.197251 0.880032 0.077836 0.498402 0.844329 -0.196734 +0.569319 0.809017 -0.146176 0.920032 0.095492 0.56945 0.809018 -0.14566 +0.546509 0.809017 -0.216378 0.880032 0.095492 0.546704 0.809018 -0.215883 +0.518993 0.844328 -0.133255 0.920032 0.077836 0.51913 0.844329 -0.132716 +0.569319 0.809017 -0.146176 0.920032 0.095492 0.56945 0.809018 -0.14566 +0.498199 0.844328 -0.197251 0.880032 0.077836 0.498402 0.844329 -0.196734 +0.518993 0.844328 -0.133255 0.920032 0.077836 0.51913 0.844329 -0.132716 +0.58315 0.809017 -0.073669 0.960032 0.095492 0.583216 0.809018 -0.07314 +0.569319 0.809017 -0.146176 0.920032 0.095492 0.56945 0.809018 -0.14566 +0.531602 0.844328 -0.067157 0.960032 0.077836 0.53167 0.844329 -0.066605 +0.58315 0.809017 -0.073669 0.960032 0.095492 0.583216 0.809018 -0.07314 +0.518993 0.844328 -0.133255 0.920032 0.077836 0.51913 0.844329 -0.132716 +0.531602 0.844328 -0.067157 0.960032 0.077836 0.53167 0.844329 -0.066605 +0.587785 0.809017 -0 1.00003 0.095492 0.587784 0.809018 0.00053 +0.58315 0.809017 -0.073669 0.960032 0.095492 0.583216 0.809018 -0.07314 +0.535827 0.844328 -0 1.00003 0.077836 0.535825 0.844329 0.000554 +0.587785 0.809017 -0 1.00003 0.095492 0.587784 0.809018 0.00053 +0.531602 0.844328 -0.067157 0.960032 0.077836 0.53167 0.844329 -0.066605 +0.535827 0.844328 -0 1.00003 0.077836 0.535825 0.844329 0.000554 +0.583151 0.809017 0.073669 1.04003 0.095492 0.583082 0.809018 0.074195 +0.587785 0.809017 -0 1.00003 0.095492 0.587784 0.809018 0.00053 +0.531602 0.844328 0.067157 1.04003 0.077836 0.53153 0.844329 0.067706 +0.583151 0.809017 0.073669 1.04003 0.095492 0.583082 0.809018 0.074195 +0.535827 0.844328 -0 1.00003 0.077836 0.535825 0.844329 0.000554 +0.477955 0.876307 0.06038 1.04003 0.061847 0.477881 0.876308 0.06095 +0.518993 0.844328 0.133255 1.08003 0.077836 0.518853 0.844329 0.133793 +0.531602 0.844328 0.067157 1.04003 0.077836 0.53153 0.844329 0.067706 +0.466619 0.876307 0.119807 1.08003 0.061847 0.466473 0.876308 0.120366 +0.518993 0.844328 0.133255 1.08003 0.077836 0.518853 0.844329 0.133793 +0.477955 0.876307 0.06038 1.04003 0.061847 0.477881 0.876308 0.06095 +0.466619 0.876307 0.119807 1.08003 0.061847 0.466473 0.876308 0.120366 +0.4982 0.844328 0.197251 1.12003 0.077836 0.497993 0.844329 0.197767 +0.518993 0.844328 0.133255 1.08003 0.077836 0.518853 0.844329 0.133793 +0.447924 0.876307 0.177346 1.12003 0.061847 0.447709 0.876308 0.177881 +0.4982 0.844328 0.197251 1.12003 0.077836 0.497993 0.844329 0.197767 +0.466619 0.876307 0.119807 1.08003 0.061847 0.466473 0.876308 0.120366 +0.447924 0.876307 0.177346 1.12003 0.061847 0.447709 0.876308 0.177881 +0.469549 0.844328 0.258137 1.16003 0.077836 0.469279 0.844329 0.258623 +0.4982 0.844328 0.197251 1.12003 0.077836 0.497993 0.844329 0.197767 +0.422164 0.876307 0.232087 1.16003 0.061847 0.421884 0.876308 0.232591 +0.469549 0.844328 0.258137 1.16003 0.077836 0.469279 0.844329 0.258623 +0.447924 0.876307 0.177346 1.12003 0.061847 0.447709 0.876308 0.177881 +0.422164 0.876307 0.232087 1.16003 0.061847 0.421884 0.876308 0.232591 +0.433493 0.844328 0.314951 1.20003 0.077836 0.433165 0.844329 0.3154 +0.469549 0.844328 0.258137 1.16003 0.077836 0.469279 0.844329 0.258623 +0.389747 0.876307 0.283168 1.20003 0.061847 0.389406 0.876308 0.283633 +0.433493 0.844328 0.314951 1.20003 0.077836 0.433165 0.844329 0.3154 +0.422164 0.876307 0.232087 1.16003 0.061847 0.421884 0.876308 0.232591 +0.389747 0.876307 0.283168 1.20003 0.061847 0.389406 0.876308 0.283633 +0.390601 0.844328 0.366799 1.24003 0.077836 0.390219 0.844329 0.367203 +0.433493 0.844328 0.314951 1.20003 0.077836 0.433165 0.844329 0.3154 +0.351184 0.876307 0.329783 1.24003 0.061847 0.350787 0.876308 0.330202 +0.390601 0.844328 0.366799 1.24003 0.077836 0.390219 0.844329 0.367203 +0.389747 0.876307 0.283168 1.20003 0.061847 0.389406 0.876308 0.283633 +0.351184 0.876307 0.329783 1.24003 0.061847 0.350787 0.876308 0.330202 +0.341549 0.844328 0.412862 1.28003 0.077836 0.341119 0.844329 0.413215 +0.390601 0.844328 0.366799 1.24003 0.077836 0.390219 0.844329 0.367203 +0.307082 0.876307 0.371198 1.28003 0.061847 0.306636 0.876308 0.371564 +0.341549 0.844328 0.412862 1.28003 0.077836 0.341119 0.844329 0.413215 +0.351184 0.876307 0.329783 1.24003 0.061847 0.350787 0.876308 0.330202 +0.307082 0.876307 0.371198 1.28003 0.061847 0.306636 0.876308 0.371564 +0.287111 0.844328 0.452414 1.32003 0.077836 0.28664 0.844329 0.45271 +0.341549 0.844328 0.412862 1.28003 0.077836 0.341119 0.844329 0.413215 +0.258137 0.876307 0.406759 1.32003 0.061847 0.257648 0.876308 0.407066 +0.287111 0.844328 0.452414 1.32003 0.077836 0.28664 0.844329 0.45271 +0.307082 0.876307 0.371198 1.28003 0.061847 0.306636 0.876308 0.371564 +0.258137 0.876307 0.406759 1.32003 0.061847 0.257648 0.876308 0.407066 +0.228144 0.844328 0.484831 1.36003 0.077836 0.22764 0.844329 0.485066 +0.287111 0.844328 0.452414 1.32003 0.077836 0.28664 0.844329 0.45271 +0.205121 0.876307 0.435904 1.36003 0.061847 0.204598 0.876307 0.436148 +0.228144 0.844328 0.484831 1.36003 0.077836 0.22764 0.844329 0.485066 +0.258137 0.876307 0.406759 1.32003 0.061847 0.257648 0.876308 0.407066 +0.205121 0.876307 0.435904 1.36003 0.061847 0.204598 0.876307 0.436148 +0.16558 0.844328 0.509602 1.40003 0.077836 0.16505 0.844329 0.509772 +0.228144 0.844328 0.484831 1.36003 0.077836 0.22764 0.844329 0.485066 +0.14887 0.876307 0.458175 1.40003 0.061847 0.148321 0.876308 0.458351 +0.16558 0.844328 0.509602 1.40003 0.077836 0.16505 0.844329 0.509772 +0.205121 0.876307 0.435904 1.36003 0.061847 0.204598 0.876307 0.436148 +0.14887 0.876307 0.458175 1.40003 0.061847 0.148321 0.876308 0.458351 +0.100404 0.844328 0.526336 1.44003 0.077836 0.099857 0.844329 0.526438 +0.16558 0.844328 0.509602 1.40003 0.077836 0.16505 0.844329 0.509772 +0.090272 0.876307 0.473221 1.44003 0.061847 0.089704 0.876308 0.473326 +0.100404 0.844328 0.526336 1.44003 0.077836 0.099857 0.844329 0.526438 +0.14887 0.876307 0.458175 1.40003 0.061847 0.148321 0.876308 0.458351 +0.090272 0.876307 0.473221 1.44003 0.061847 0.089704 0.876308 0.473326 +0.033645 0.844328 0.53477 1.48003 0.077836 0.03309 0.844329 0.534803 +0.100404 0.844328 0.526336 1.44003 0.077836 0.099857 0.844329 0.526438 +0.03025 0.876307 0.480803 1.48003 0.061847 0.029673 0.876308 0.480837 +0.033645 0.844328 0.53477 1.48003 0.077836 0.03309 0.844329 0.534803 +0.090272 0.876307 0.473221 1.44003 0.061847 0.089704 0.876308 0.473326 +0.03025 0.876307 0.480803 1.48003 0.061847 0.029673 0.876308 0.480837 +-0.033645 0.844328 0.53477 1.52003 0.077836 -0.034199 0.844329 0.534733 +0.033645 0.844328 0.53477 1.48003 0.077836 0.03309 0.844329 0.534803 +-0.03025 0.876307 0.480803 1.52003 0.061847 -0.030825 0.876308 0.480765 +-0.033645 0.844328 0.53477 1.52003 0.077836 -0.034199 0.844329 0.534733 +0.03025 0.876307 0.480803 1.48003 0.061847 0.029673 0.876308 0.480837 +-0.03025 0.876307 0.480803 -0.479968 0.061847 -0.030825 0.876308 0.480765 +-0.100404 0.844328 0.526336 -0.439968 0.077836 -0.10095 0.844329 0.52623 +-0.033645 0.844328 0.53477 -0.479968 0.077836 -0.034199 0.844329 0.534733 +-0.090272 0.876307 0.473221 -0.439968 0.061847 -0.090838 0.876308 0.47311 +-0.100404 0.844328 0.526336 -0.439968 0.077836 -0.10095 0.844329 0.52623 +-0.03025 0.876307 0.480803 -0.479968 0.061847 -0.030825 0.876308 0.480765 +-0.090272 0.876307 0.473221 -0.439968 0.061847 -0.090838 0.876308 0.47311 +-0.16558 0.844328 0.509602 -0.399968 0.077836 -0.166108 0.844329 0.509428 +-0.100404 0.844328 0.526336 -0.439968 0.077836 -0.10095 0.844329 0.52623 +-0.14887 0.876307 0.458175 -0.399968 0.061847 -0.149418 0.876308 0.457995 +-0.16558 0.844328 0.509602 -0.399968 0.077836 -0.166108 0.844329 0.509428 +-0.090272 0.876307 0.473221 -0.439968 0.061847 -0.090838 0.876308 0.47311 +-0.14887 0.876307 0.458175 -0.399968 0.061847 -0.149418 0.876308 0.457995 +-0.228144 0.844328 0.484831 -0.359968 0.077836 -0.228646 0.844329 0.484592 +-0.16558 0.844328 0.509602 -0.399968 0.077836 -0.166108 0.844329 0.509428 +-0.205121 0.876307 0.435904 -0.359968 0.061847 -0.205642 0.876308 0.435656 +-0.228144 0.844328 0.484831 -0.359968 0.077836 -0.228646 0.844329 0.484592 +-0.14887 0.876307 0.458175 -0.399968 0.061847 -0.149418 0.876308 0.457995 +-0.205121 0.876307 0.435904 -0.359968 0.061847 -0.205642 0.876308 0.435656 +-0.287111 0.844328 0.452414 -0.319968 0.077836 -0.287579 0.844329 0.452114 +-0.228144 0.844328 0.484831 -0.359968 0.077836 -0.228646 0.844329 0.484592 +-0.258137 0.876307 0.406758 -0.319968 0.061847 -0.258623 0.876308 0.406447 +-0.287111 0.844328 0.452414 -0.319968 0.077836 -0.287579 0.844329 0.452114 +-0.205121 0.876307 0.435904 -0.359968 0.061847 -0.205642 0.876308 0.435656 +-0.258137 0.876307 0.406758 -0.319968 0.061847 -0.258623 0.876308 0.406447 +-0.341549 0.844328 0.412862 -0.279968 0.077836 -0.341976 0.844329 0.412506 +-0.287111 0.844328 0.452414 -0.319968 0.077836 -0.287579 0.844329 0.452114 +-0.307082 0.876307 0.371198 -0.279968 0.061847 -0.307525 0.876308 0.370828 +-0.341549 0.844328 0.412862 -0.279968 0.077836 -0.341976 0.844329 0.412506 +-0.258137 0.876307 0.406758 -0.319968 0.061847 -0.258623 0.876308 0.406447 +-0.307082 0.876307 0.371198 -0.279968 0.061847 -0.307525 0.876308 0.370828 +-0.390601 0.844328 0.366799 -0.239968 0.077836 -0.39098 0.844329 0.366392 +-0.341549 0.844328 0.412862 -0.279968 0.077836 -0.341976 0.844329 0.412506 +-0.351184 0.876307 0.329783 -0.239968 0.061847 -0.351577 0.876308 0.329361 +-0.390601 0.844328 0.366799 -0.239968 0.077836 -0.39098 0.844329 0.366392 +-0.307082 0.876307 0.371198 -0.279968 0.061847 -0.307525 0.876308 0.370828 +-0.351184 0.876307 0.329783 -0.239968 0.061847 -0.351577 0.876308 0.329361 +-0.433493 0.844328 0.314951 -0.199968 0.077836 -0.433818 0.844329 0.3145 +-0.390601 0.844328 0.366799 -0.239968 0.077836 -0.39098 0.844329 0.366392 +-0.389747 0.876307 0.283168 -0.199968 0.061847 -0.390085 0.876308 0.282699 +-0.433493 0.844328 0.314951 -0.199968 0.077836 -0.433818 0.844329 0.3145 +-0.351184 0.876307 0.329783 -0.239968 0.061847 -0.351577 0.876308 0.329361 +-0.389747 0.876307 0.283168 -0.199968 0.061847 -0.390085 0.876308 0.282699 +-0.469549 0.844328 0.258137 -0.159968 0.077836 -0.469815 0.844329 0.257648 +-0.433493 0.844328 0.314951 -0.199968 0.077836 -0.433818 0.844329 0.3145 +-0.422164 0.876307 0.232087 -0.159968 0.061847 -0.42244 0.876308 0.23158 +-0.469549 0.844328 0.258137 -0.159968 0.077836 -0.469815 0.844329 0.257648 +-0.389747 0.876307 0.283168 -0.199968 0.061847 -0.390085 0.876308 0.282699 +-0.422164 0.876307 0.232087 -0.159968 0.061847 -0.42244 0.876308 0.23158 +-0.4982 0.844328 0.197251 -0.119968 0.077836 -0.498402 0.844329 0.196733 +-0.469549 0.844328 0.258137 -0.159968 0.077836 -0.469815 0.844329 0.257648 +-0.447924 0.876307 0.177345 -0.119968 0.061847 -0.448134 0.876308 0.176808 +-0.4982 0.844328 0.197251 -0.119968 0.077836 -0.498402 0.844329 0.196733 +-0.422164 0.876307 0.232087 -0.159968 0.061847 -0.42244 0.876308 0.23158 +-0.447924 0.876307 0.177345 -0.119968 0.061847 -0.448134 0.876308 0.176808 +-0.518993 0.844328 0.133255 -0.079968 0.077836 -0.519129 0.844329 0.132716 +-0.4982 0.844328 0.197251 -0.119968 0.077836 -0.498402 0.844329 0.196733 +-0.466619 0.876307 0.119807 -0.079968 0.061847 -0.46676 0.876308 0.119248 +-0.518993 0.844328 0.133255 -0.079968 0.077836 -0.519129 0.844329 0.132716 +-0.447924 0.876307 0.177345 -0.119968 0.061847 -0.448134 0.876308 0.176808 +-0.466619 0.876307 0.119807 -0.079968 0.061847 -0.46676 0.876308 0.119248 +-0.531602 0.844328 0.067157 -0.039968 0.077836 -0.531669 0.844329 0.066605 +-0.518993 0.844328 0.133255 -0.079968 0.077836 -0.519129 0.844329 0.132716 +-0.477955 0.876307 0.06038 -0.039968 0.061847 -0.478025 0.876307 0.059807 +-0.531602 0.844328 0.067157 -0.039968 0.077836 -0.531669 0.844329 0.066605 +-0.466619 0.876307 0.119807 -0.079968 0.061847 -0.46676 0.876308 0.119248 +-0.477955 0.876307 0.06038 -0.039968 0.061847 -0.478025 0.876307 0.059807 +-0.535827 0.844328 -0 3.2e-005 0.077836 -0.535825 0.844329 -0.000556 +-0.531602 0.844328 0.067157 -0.039968 0.077836 -0.531669 0.844329 0.066605 +-0.481754 0.876307 -0 3.2e-005 0.061847 -0.481752 0.876308 -0.000577 +-0.535827 0.844328 -0 3.2e-005 0.077836 -0.535825 0.844329 -0.000556 +-0.477955 0.876307 0.06038 -0.039968 0.061847 -0.478025 0.876307 0.059807 +-0.481754 0.876307 -0 3.2e-005 0.061847 -0.481752 0.876308 -0.000577 +-0.531602 0.844328 -0.067157 0.040032 0.077836 -0.53153 0.844329 -0.067708 +-0.535827 0.844328 -0 3.2e-005 0.077836 -0.535825 0.844329 -0.000556 +-0.477955 0.876307 -0.06038 0.040032 0.061847 -0.477881 0.876308 -0.060952 +-0.531602 0.844328 -0.067157 0.040032 0.077836 -0.53153 0.844329 -0.067708 +-0.481754 0.876307 -0 3.2e-005 0.061847 -0.481752 0.876308 -0.000577 +-0.477955 0.876307 -0.06038 0.040032 0.061847 -0.477881 0.876308 -0.060952 +-0.518993 0.844328 -0.133255 0.080032 0.077836 -0.518853 0.844329 -0.133793 +-0.531602 0.844328 -0.067157 0.040032 0.077836 -0.53153 0.844329 -0.067708 +-0.466619 0.876307 -0.119807 0.080032 0.061847 -0.466473 0.876308 -0.120365 +-0.518993 0.844328 -0.133255 0.080032 0.077836 -0.518853 0.844329 -0.133793 +-0.477955 0.876307 -0.06038 0.040032 0.061847 -0.477881 0.876308 -0.060952 +-0.466619 0.876307 -0.119807 0.080032 0.061847 -0.466473 0.876308 -0.120365 +-0.498199 0.844328 -0.197251 0.120032 0.077836 -0.497993 0.844329 -0.197767 +-0.518993 0.844328 -0.133255 0.080032 0.077836 -0.518853 0.844329 -0.133793 +-0.447924 0.876307 -0.177346 0.120032 0.061847 -0.447709 0.876308 -0.17788 +-0.498199 0.844328 -0.197251 0.120032 0.077836 -0.497993 0.844329 -0.197767 +-0.466619 0.876307 -0.119807 0.080032 0.061847 -0.466473 0.876308 -0.120365 +-0.447924 0.876307 -0.177346 0.120032 0.061847 -0.447709 0.876308 -0.17788 +-0.469549 0.844328 -0.258137 0.160032 0.077836 -0.469279 0.844329 -0.258623 +-0.498199 0.844328 -0.197251 0.120032 0.077836 -0.497993 0.844329 -0.197767 +-0.422164 0.876307 -0.232087 0.160032 0.061847 -0.421884 0.876308 -0.232591 +-0.469549 0.844328 -0.258137 0.160032 0.077836 -0.469279 0.844329 -0.258623 +-0.447924 0.876307 -0.177346 0.120032 0.061847 -0.447709 0.876308 -0.17788 +-0.422164 0.876307 -0.232087 0.160032 0.061847 -0.421884 0.876308 -0.232591 +-0.433493 0.844328 -0.314951 0.200032 0.077836 -0.433165 0.844329 -0.3154 +-0.469549 0.844328 -0.258137 0.160032 0.077836 -0.469279 0.844329 -0.258623 +-0.389747 0.876307 -0.283168 0.200032 0.061847 -0.389406 0.876307 -0.283634 +-0.433493 0.844328 -0.314951 0.200032 0.077836 -0.433165 0.844329 -0.3154 +-0.422164 0.876307 -0.232087 0.160032 0.061847 -0.421884 0.876308 -0.232591 +-0.389747 0.876307 -0.283168 0.200032 0.061847 -0.389406 0.876307 -0.283634 +-0.390601 0.844328 -0.366799 0.240032 0.077836 -0.390219 0.844329 -0.367203 +-0.433493 0.844328 -0.314951 0.200032 0.077836 -0.433165 0.844329 -0.3154 +-0.351183 0.876307 -0.329783 0.240032 0.061847 -0.350787 0.876308 -0.330203 +-0.390601 0.844328 -0.366799 0.240032 0.077836 -0.390219 0.844329 -0.367203 +-0.389747 0.876307 -0.283168 0.200032 0.061847 -0.389406 0.876307 -0.283634 +-0.351183 0.876307 -0.329783 0.240032 0.061847 -0.350787 0.876308 -0.330203 +-0.341549 0.844328 -0.412862 0.280032 0.077836 -0.341119 0.844329 -0.413215 +-0.390601 0.844328 -0.366799 0.240032 0.077836 -0.390219 0.844329 -0.367203 +-0.307081 0.876307 -0.371198 0.280032 0.061847 -0.306636 0.876308 -0.371564 +-0.341549 0.844328 -0.412862 0.280032 0.077836 -0.341119 0.844329 -0.413215 +-0.351183 0.876307 -0.329783 0.240032 0.061847 -0.350787 0.876308 -0.330203 +-0.307081 0.876307 -0.371198 0.280032 0.061847 -0.306636 0.876308 -0.371564 +-0.28711 0.844328 -0.452414 0.320032 0.077836 -0.28664 0.844329 -0.45271 +-0.341549 0.844328 -0.412862 0.280032 0.077836 -0.341119 0.844329 -0.413215 +-0.258137 0.876307 -0.406758 0.320032 0.061847 -0.257648 0.876308 -0.407066 +-0.28711 0.844328 -0.452414 0.320032 0.077836 -0.28664 0.844329 -0.45271 +-0.307081 0.876307 -0.371198 0.280032 0.061847 -0.306636 0.876308 -0.371564 +-0.258137 0.876307 -0.406758 0.320032 0.061847 -0.257648 0.876308 -0.407066 +-0.228144 0.844328 -0.484831 0.360032 0.077836 -0.22764 0.844329 -0.485066 +-0.28711 0.844328 -0.452414 0.320032 0.077836 -0.28664 0.844329 -0.45271 +-0.205121 0.876307 -0.435904 0.360032 0.061847 -0.204598 0.876308 -0.436148 +-0.228144 0.844328 -0.484831 0.360032 0.077836 -0.22764 0.844329 -0.485066 +-0.258137 0.876307 -0.406758 0.320032 0.061847 -0.257648 0.876308 -0.407066 +-0.205121 0.876307 -0.435904 0.360032 0.061847 -0.204598 0.876308 -0.436148 +-0.16558 0.844328 -0.509602 0.400032 0.077836 -0.16505 0.844329 -0.509772 +-0.228144 0.844328 -0.484831 0.360032 0.077836 -0.22764 0.844329 -0.485066 +-0.14887 0.876307 -0.458175 0.400032 0.061847 -0.148321 0.876308 -0.458351 +-0.16558 0.844328 -0.509602 0.400032 0.077836 -0.16505 0.844329 -0.509772 +-0.205121 0.876307 -0.435904 0.360032 0.061847 -0.204598 0.876308 -0.436148 +-0.14887 0.876307 -0.458175 0.400032 0.061847 -0.148321 0.876308 -0.458351 +-0.100404 0.844328 -0.526336 0.440032 0.077836 -0.099858 0.844329 -0.526439 +-0.16558 0.844328 -0.509602 0.400032 0.077836 -0.16505 0.844329 -0.509772 +-0.090272 0.876307 -0.473221 0.440032 0.061847 -0.089704 0.876308 -0.473327 +-0.100404 0.844328 -0.526336 0.440032 0.077836 -0.099858 0.844329 -0.526439 +-0.14887 0.876307 -0.458175 0.400032 0.061847 -0.148321 0.876308 -0.458351 +-0.090272 0.876307 -0.473221 0.440032 0.061847 -0.089704 0.876308 -0.473327 +-0.033645 0.844328 -0.53477 0.480032 0.077836 -0.03309 0.844328 -0.534803 +-0.100404 0.844328 -0.526336 0.440032 0.077836 -0.099858 0.844329 -0.526439 +-0.03025 0.876307 -0.480803 0.480032 0.061847 -0.029673 0.876308 -0.480837 +-0.033645 0.844328 -0.53477 0.480032 0.077836 -0.03309 0.844328 -0.534803 +-0.090272 0.876307 -0.473221 0.440032 0.061847 -0.089704 0.876308 -0.473327 +-0.03025 0.876307 -0.480803 0.480032 0.061847 -0.029673 0.876308 -0.480837 +0.033645 0.844328 -0.53477 0.520032 0.077836 0.0342 0.844329 -0.534733 +-0.033645 0.844328 -0.53477 0.480032 0.077836 -0.03309 0.844328 -0.534803 +0.03025 0.876307 -0.480803 0.520032 0.061847 0.030825 0.876308 -0.480764 +0.033645 0.844328 -0.53477 0.520032 0.077836 0.0342 0.844329 -0.534733 +-0.03025 0.876307 -0.480803 0.480032 0.061847 -0.029673 0.876308 -0.480837 +0.03025 0.876307 -0.480803 0.520032 0.061847 0.030825 0.876308 -0.480764 +0.100404 0.844328 -0.526336 0.560032 0.077836 0.10095 0.844329 -0.52623 +0.033645 0.844328 -0.53477 0.520032 0.077836 0.0342 0.844329 -0.534733 +0.090272 0.876307 -0.473221 0.560032 0.061847 0.090838 0.876308 -0.473111 +0.100404 0.844328 -0.526336 0.560032 0.077836 0.10095 0.844329 -0.52623 +0.03025 0.876307 -0.480803 0.520032 0.061847 0.030825 0.876308 -0.480764 +0.090272 0.876307 -0.473221 0.560032 0.061847 0.090838 0.876308 -0.473111 +0.16558 0.844328 -0.509602 0.600032 0.077836 0.166108 0.844329 -0.509428 +0.100404 0.844328 -0.526336 0.560032 0.077836 0.10095 0.844329 -0.52623 +0.14887 0.876307 -0.458175 0.600032 0.061847 0.149418 0.876308 -0.457994 +0.16558 0.844328 -0.509602 0.600032 0.077836 0.166108 0.844329 -0.509428 +0.090272 0.876307 -0.473221 0.560032 0.061847 0.090838 0.876308 -0.473111 +0.14887 0.876307 -0.458175 0.600032 0.061847 0.149418 0.876308 -0.457994 +0.228144 0.844328 -0.484831 0.640032 0.077836 0.228646 0.844329 -0.484593 +0.16558 0.844328 -0.509602 0.600032 0.077836 0.166108 0.844329 -0.509428 +0.205121 0.876307 -0.435904 0.640032 0.061847 0.205642 0.876307 -0.435656 +0.228144 0.844328 -0.484831 0.640032 0.077836 0.228646 0.844329 -0.484593 +0.14887 0.876307 -0.458175 0.600032 0.061847 0.149418 0.876308 -0.457994 +0.205121 0.876307 -0.435904 0.640032 0.061847 0.205642 0.876307 -0.435656 +0.28711 0.844328 -0.452414 0.680032 0.077836 0.287579 0.844329 -0.452114 +0.228144 0.844328 -0.484831 0.640032 0.077836 0.228646 0.844329 -0.484593 +0.258137 0.876307 -0.406758 0.680032 0.061847 0.258623 0.876308 -0.406447 +0.28711 0.844328 -0.452414 0.680032 0.077836 0.287579 0.844329 -0.452114 +0.205121 0.876307 -0.435904 0.640032 0.061847 0.205642 0.876307 -0.435656 +0.258137 0.876307 -0.406758 0.680032 0.061847 0.258623 0.876308 -0.406447 +0.341549 0.844328 -0.412862 0.720032 0.077836 0.341976 0.844329 -0.412506 +0.28711 0.844328 -0.452414 0.680032 0.077836 0.287579 0.844329 -0.452114 +0.307081 0.876307 -0.371198 0.720032 0.061847 0.307525 0.876308 -0.370828 +0.341549 0.844328 -0.412862 0.720032 0.077836 0.341976 0.844329 -0.412506 +0.258137 0.876307 -0.406758 0.680032 0.061847 0.258623 0.876308 -0.406447 +0.307081 0.876307 -0.371198 0.720032 0.061847 0.307525 0.876308 -0.370828 +0.390601 0.844328 -0.366799 0.760032 0.077836 0.39098 0.844329 -0.366392 +0.341549 0.844328 -0.412862 0.720032 0.077836 0.341976 0.844329 -0.412506 +0.351183 0.876307 -0.329783 0.760032 0.061847 0.351577 0.876308 -0.329361 +0.390601 0.844328 -0.366799 0.760032 0.077836 0.39098 0.844329 -0.366392 +0.307081 0.876307 -0.371198 0.720032 0.061847 0.307525 0.876308 -0.370828 +0.351183 0.876307 -0.329783 0.760032 0.061847 0.351577 0.876308 -0.329361 +0.433493 0.844328 -0.314951 0.800032 0.077836 0.433819 0.844329 -0.3145 +0.390601 0.844328 -0.366799 0.760032 0.077836 0.39098 0.844329 -0.366392 +0.389747 0.876307 -0.283168 0.800032 0.061847 0.390085 0.876308 -0.282699 +0.433493 0.844328 -0.314951 0.800032 0.077836 0.433819 0.844329 -0.3145 +0.351183 0.876307 -0.329783 0.760032 0.061847 0.351577 0.876308 -0.329361 +0.389747 0.876307 -0.283168 0.800032 0.061847 0.390085 0.876308 -0.282699 +0.469549 0.844328 -0.258137 0.840032 0.077836 0.469815 0.844329 -0.257648 +0.433493 0.844328 -0.314951 0.800032 0.077836 0.433819 0.844329 -0.3145 +0.422164 0.876307 -0.232087 0.840032 0.061847 0.42244 0.876308 -0.23158 +0.469549 0.844328 -0.258137 0.840032 0.077836 0.469815 0.844329 -0.257648 +0.389747 0.876307 -0.283168 0.800032 0.061847 0.390085 0.876308 -0.282699 +0.422164 0.876307 -0.232087 0.840032 0.061847 0.42244 0.876308 -0.23158 +0.498199 0.844328 -0.197251 0.880032 0.077836 0.498402 0.844329 -0.196734 +0.469549 0.844328 -0.258137 0.840032 0.077836 0.469815 0.844329 -0.257648 +0.447923 0.876307 -0.177345 0.880032 0.061847 0.448134 0.876308 -0.176808 +0.498199 0.844328 -0.197251 0.880032 0.077836 0.498402 0.844329 -0.196734 +0.422164 0.876307 -0.232087 0.840032 0.061847 0.42244 0.876308 -0.23158 +0.447923 0.876307 -0.177345 0.880032 0.061847 0.448134 0.876308 -0.176808 +0.518993 0.844328 -0.133255 0.920032 0.077836 0.51913 0.844329 -0.132716 +0.498199 0.844328 -0.197251 0.880032 0.077836 0.498402 0.844329 -0.196734 +0.466619 0.876307 -0.119807 0.920032 0.061847 0.46676 0.876307 -0.119248 +0.518993 0.844328 -0.133255 0.920032 0.077836 0.51913 0.844329 -0.132716 +0.447923 0.876307 -0.177345 0.880032 0.061847 0.448134 0.876308 -0.176808 +0.466619 0.876307 -0.119807 0.920032 0.061847 0.46676 0.876307 -0.119248 +0.531602 0.844328 -0.067157 0.960032 0.077836 0.53167 0.844329 -0.066605 +0.518993 0.844328 -0.133255 0.920032 0.077836 0.51913 0.844329 -0.132716 +0.477955 0.876307 -0.06038 0.960032 0.061847 0.478025 0.876308 -0.059807 +0.531602 0.844328 -0.067157 0.960032 0.077836 0.53167 0.844329 -0.066605 +0.466619 0.876307 -0.119807 0.920032 0.061847 0.46676 0.876307 -0.119248 +0.477955 0.876307 -0.06038 0.960032 0.061847 0.478025 0.876308 -0.059807 +0.535827 0.844328 -0 1.00003 0.077836 0.535825 0.844329 0.000554 +0.531602 0.844328 -0.067157 0.960032 0.077836 0.53167 0.844329 -0.066605 +0.481754 0.876307 -0 1.00003 0.061847 0.481752 0.876307 0.000575 +0.535827 0.844328 -0 1.00003 0.077836 0.535825 0.844329 0.000554 +0.477955 0.876307 -0.06038 0.960032 0.061847 0.478025 0.876308 -0.059807 +0.481754 0.876307 -0 1.00003 0.061847 0.481752 0.876307 0.000575 +0.531602 0.844328 0.067157 1.04003 0.077836 0.53153 0.844329 0.067706 +0.535827 0.844328 -0 1.00003 0.077836 0.535825 0.844329 0.000554 +0.477955 0.876307 0.06038 1.04003 0.061847 0.477881 0.876308 0.06095 +0.531602 0.844328 0.067157 1.04003 0.077836 0.53153 0.844329 0.067706 +0.481754 0.876307 -0 1.00003 0.061847 0.481752 0.876307 0.000575 +0.422422 0.904827 0.053364 1.04003 0.047586 0.422346 0.904828 0.053954 +0.466619 0.876307 0.119807 1.08003 0.061847 0.466473 0.876308 0.120366 +0.477955 0.876307 0.06038 1.04003 0.061847 0.477881 0.876308 0.06095 +0.412403 0.904827 0.105887 1.08003 0.047586 0.412253 0.904828 0.106464 +0.466619 0.876307 0.119807 1.08003 0.061847 0.466473 0.876308 0.120366 +0.422422 0.904827 0.053364 1.04003 0.047586 0.422346 0.904828 0.053954 +0.412403 0.904827 0.105887 1.08003 0.047586 0.412253 0.904828 0.106464 +0.447924 0.876307 0.177346 1.12003 0.061847 0.447709 0.876308 0.177881 +0.466619 0.876307 0.119807 1.08003 0.061847 0.466473 0.876308 0.120366 +0.39588 0.904827 0.15674 1.12003 0.047586 0.395659 0.904828 0.157293 +0.447924 0.876307 0.177346 1.12003 0.061847 0.447709 0.876308 0.177881 +0.412403 0.904827 0.105887 1.08003 0.047586 0.412253 0.904828 0.106464 +0.39588 0.904827 0.15674 1.12003 0.047586 0.395659 0.904828 0.157293 +0.422164 0.876307 0.232087 1.16003 0.061847 0.421884 0.876308 0.232591 +0.447924 0.876307 0.177346 1.12003 0.061847 0.447709 0.876308 0.177881 +0.373114 0.904827 0.205121 1.16003 0.047586 0.372825 0.904828 0.205642 +0.422164 0.876307 0.232087 1.16003 0.061847 0.421884 0.876308 0.232591 +0.39588 0.904827 0.15674 1.12003 0.047586 0.395659 0.904828 0.157293 +0.373114 0.904827 0.205121 1.16003 0.047586 0.372825 0.904828 0.205642 +0.389747 0.876307 0.283168 1.20003 0.061847 0.389406 0.876308 0.283633 +0.422164 0.876307 0.232087 1.16003 0.061847 0.421884 0.876308 0.232591 +0.344463 0.904827 0.250267 1.20003 0.047586 0.344111 0.904828 0.250748 +0.389747 0.876307 0.283168 1.20003 0.061847 0.389406 0.876308 0.283633 +0.373114 0.904827 0.205121 1.16003 0.047586 0.372825 0.904828 0.205642 +0.344463 0.904827 0.250267 1.20003 0.047586 0.344111 0.904828 0.250748 +0.351184 0.876307 0.329783 1.24003 0.061847 0.350787 0.876308 0.330202 +0.389747 0.876307 0.283168 1.20003 0.061847 0.389406 0.876308 0.283633 +0.31038 0.904827 0.291466 1.24003 0.047586 0.309971 0.904828 0.2919 +0.351184 0.876307 0.329783 1.24003 0.061847 0.350787 0.876308 0.330202 +0.344463 0.904827 0.250267 1.20003 0.047586 0.344111 0.904828 0.250748 +0.31038 0.904827 0.291466 1.24003 0.047586 0.309971 0.904828 0.2919 +0.307082 0.876307 0.371198 1.28003 0.061847 0.306636 0.876308 0.371564 +0.351184 0.876307 0.329783 1.24003 0.061847 0.350787 0.876308 0.330202 +0.271402 0.904827 0.328069 1.28003 0.047586 0.270942 0.904828 0.328447 +0.307082 0.876307 0.371198 1.28003 0.061847 0.306636 0.876308 0.371564 +0.31038 0.904827 0.291466 1.24003 0.047586 0.309971 0.904828 0.2919 +0.271402 0.904827 0.328069 1.28003 0.047586 0.270942 0.904828 0.328447 +0.258137 0.876307 0.406759 1.32003 0.061847 0.257648 0.876308 0.407066 +0.307082 0.876307 0.371198 1.28003 0.061847 0.306636 0.876308 0.371564 +0.228144 0.904827 0.359498 1.32003 0.047586 0.22764 0.904828 0.359815 +0.258137 0.876307 0.406759 1.32003 0.061847 0.257648 0.876308 0.407066 +0.271402 0.904827 0.328069 1.28003 0.047586 0.270942 0.904828 0.328447 +0.228144 0.904827 0.359498 1.32003 0.047586 0.22764 0.904828 0.359815 +0.205121 0.876307 0.435904 1.36003 0.061847 0.204598 0.876307 0.436148 +0.258137 0.876307 0.406759 1.32003 0.061847 0.257648 0.876308 0.407066 +0.181288 0.904827 0.385257 1.36003 0.047586 0.180748 0.904828 0.385509 +0.205121 0.876307 0.435904 1.36003 0.061847 0.204598 0.876307 0.436148 +0.228144 0.904827 0.359498 1.32003 0.047586 0.22764 0.904828 0.359815 +0.181288 0.904827 0.385257 1.36003 0.047586 0.180748 0.904828 0.385509 +0.14887 0.876307 0.458175 1.40003 0.061847 0.148321 0.876308 0.458351 +0.205121 0.876307 0.435904 1.36003 0.061847 0.204598 0.876307 0.436148 +0.131573 0.904827 0.404941 1.40003 0.047586 0.131006 0.904827 0.405123 +0.14887 0.876307 0.458175 1.40003 0.061847 0.148321 0.876308 0.458351 +0.181288 0.904827 0.385257 1.36003 0.047586 0.180748 0.904828 0.385509 +0.131573 0.904827 0.404941 1.40003 0.047586 0.131006 0.904827 0.405123 +0.090272 0.876307 0.473221 1.44003 0.061847 0.089704 0.876308 0.473326 +0.14887 0.876307 0.458175 1.40003 0.061847 0.148321 0.876308 0.458351 +0.079783 0.904827 0.418238 1.44003 0.047586 0.079197 0.904828 0.418347 +0.090272 0.876307 0.473221 1.44003 0.061847 0.089704 0.876308 0.473326 +0.131573 0.904827 0.404941 1.40003 0.047586 0.131006 0.904827 0.405123 +0.079783 0.904827 0.418238 1.44003 0.047586 0.079197 0.904828 0.418347 +0.03025 0.876307 0.480803 1.48003 0.061847 0.029673 0.876308 0.480837 +0.090272 0.876307 0.473221 1.44003 0.061847 0.089704 0.876308 0.473326 +0.026735 0.904827 0.424939 1.48003 0.047586 0.02614 0.904828 0.424974 +0.03025 0.876307 0.480803 1.48003 0.061847 0.029673 0.876308 0.480837 +0.079783 0.904827 0.418238 1.44003 0.047586 0.079197 0.904828 0.418347 +0.026735 0.904827 0.424939 1.48003 0.047586 0.02614 0.904828 0.424974 +-0.03025 0.876307 0.480803 1.52003 0.061847 -0.030825 0.876308 0.480765 +0.03025 0.876307 0.480803 1.48003 0.061847 0.029673 0.876308 0.480837 +-0.026735 0.904827 0.424939 1.52003 0.047586 -0.02733 0.904828 0.4249 +-0.03025 0.876307 0.480803 1.52003 0.061847 -0.030825 0.876308 0.480765 +0.026735 0.904827 0.424939 1.48003 0.047586 0.02614 0.904828 0.424974 +-0.026735 0.904827 0.424939 -0.479968 0.047586 -0.02733 0.904828 0.4249 +-0.090272 0.876307 0.473221 -0.439968 0.061847 -0.090838 0.876308 0.47311 +-0.03025 0.876307 0.480803 -0.479968 0.061847 -0.030825 0.876308 0.480765 +-0.079783 0.904827 0.418238 -0.439968 0.047586 -0.080368 0.904828 0.418124 +-0.090272 0.876307 0.473221 -0.439968 0.061847 -0.090838 0.876308 0.47311 +-0.026735 0.904827 0.424939 -0.479968 0.047586 -0.02733 0.904828 0.4249 +-0.079783 0.904827 0.418238 -0.439968 0.047586 -0.080368 0.904828 0.418124 +-0.14887 0.876307 0.458175 -0.399968 0.061847 -0.149418 0.876308 0.457995 +-0.090272 0.876307 0.473221 -0.439968 0.061847 -0.090838 0.876308 0.47311 +-0.131573 0.904827 0.40494 -0.399968 0.047586 -0.13214 0.904828 0.404754 +-0.14887 0.876307 0.458175 -0.399968 0.061847 -0.149418 0.876308 0.457995 +-0.079783 0.904827 0.418238 -0.439968 0.047586 -0.080368 0.904828 0.418124 +-0.131573 0.904827 0.40494 -0.399968 0.047586 -0.13214 0.904828 0.404754 +-0.205121 0.876307 0.435904 -0.359968 0.061847 -0.205642 0.876308 0.435656 +-0.14887 0.876307 0.458175 -0.399968 0.061847 -0.149418 0.876308 0.457995 +-0.181288 0.904827 0.385257 -0.359968 0.047586 -0.181827 0.904828 0.385002 +-0.205121 0.876307 0.435904 -0.359968 0.061847 -0.205642 0.876308 0.435656 +-0.131573 0.904827 0.40494 -0.399968 0.047586 -0.13214 0.904828 0.404754 +-0.181288 0.904827 0.385257 -0.359968 0.047586 -0.181827 0.904828 0.385002 +-0.258137 0.876307 0.406758 -0.319968 0.061847 -0.258623 0.876308 0.406447 +-0.205121 0.876307 0.435904 -0.359968 0.061847 -0.205642 0.876308 0.435656 +-0.228144 0.904827 0.359498 -0.319968 0.047586 -0.228646 0.904828 0.359176 +-0.258137 0.876307 0.406758 -0.319968 0.061847 -0.258623 0.876308 0.406447 +-0.181288 0.904827 0.385257 -0.359968 0.047586 -0.181827 0.904828 0.385002 +-0.228144 0.904827 0.359498 -0.319968 0.047586 -0.228646 0.904828 0.359176 +-0.307082 0.876307 0.371198 -0.279968 0.061847 -0.307525 0.876308 0.370828 +-0.258137 0.876307 0.406758 -0.319968 0.061847 -0.258623 0.876308 0.406447 +-0.271402 0.904827 0.328069 -0.279968 0.047586 -0.27186 0.904827 0.327688 +-0.307082 0.876307 0.371198 -0.279968 0.061847 -0.307525 0.876308 0.370828 +-0.228144 0.904827 0.359498 -0.319968 0.047586 -0.228646 0.904828 0.359176 +-0.271402 0.904827 0.328069 -0.279968 0.047586 -0.27186 0.904827 0.327688 +-0.351184 0.876307 0.329783 -0.239968 0.061847 -0.351577 0.876308 0.329361 +-0.307082 0.876307 0.371198 -0.279968 0.061847 -0.307525 0.876308 0.370828 +-0.31038 0.904827 0.291466 -0.239968 0.047586 -0.310786 0.904828 0.291031 +-0.351184 0.876307 0.329783 -0.239968 0.061847 -0.351577 0.876308 0.329361 +-0.271402 0.904827 0.328069 -0.279968 0.047586 -0.27186 0.904827 0.327688 +-0.31038 0.904827 0.291466 -0.239968 0.047586 -0.310786 0.904828 0.291031 +-0.389747 0.876307 0.283168 -0.199968 0.061847 -0.390085 0.876308 0.282699 +-0.351184 0.876307 0.329783 -0.239968 0.061847 -0.351577 0.876308 0.329361 +-0.344463 0.904827 0.250267 -0.199968 0.047586 -0.344812 0.904828 0.249784 +-0.389747 0.876307 0.283168 -0.199968 0.061847 -0.390085 0.876308 0.282699 +-0.31038 0.904827 0.291466 -0.239968 0.047586 -0.310786 0.904828 0.291031 +-0.344463 0.904827 0.250267 -0.199968 0.047586 -0.344812 0.904828 0.249784 +-0.422164 0.876307 0.232087 -0.159968 0.061847 -0.42244 0.876308 0.23158 +-0.389747 0.876307 0.283168 -0.199968 0.061847 -0.390085 0.876308 0.282699 +-0.373113 0.904827 0.205121 -0.159968 0.047586 -0.373399 0.904828 0.204598 +-0.422164 0.876307 0.232087 -0.159968 0.061847 -0.42244 0.876308 0.23158 +-0.344463 0.904827 0.250267 -0.199968 0.047586 -0.344812 0.904828 0.249784 +-0.373113 0.904827 0.205121 -0.159968 0.047586 -0.373399 0.904828 0.204598 +-0.447924 0.876307 0.177345 -0.119968 0.061847 -0.448134 0.876308 0.176808 +-0.422164 0.876307 0.232087 -0.159968 0.061847 -0.42244 0.876308 0.23158 +-0.39588 0.904827 0.15674 -0.119968 0.047586 -0.396098 0.904828 0.156185 +-0.447924 0.876307 0.177345 -0.119968 0.061847 -0.448134 0.876308 0.176808 +-0.373113 0.904827 0.205121 -0.159968 0.047586 -0.373399 0.904828 0.204598 +-0.39588 0.904827 0.15674 -0.119968 0.047586 -0.396098 0.904828 0.156185 +-0.466619 0.876307 0.119807 -0.079968 0.061847 -0.46676 0.876308 0.119248 +-0.447924 0.876307 0.177345 -0.119968 0.061847 -0.448134 0.876308 0.176808 +-0.412403 0.904827 0.105887 -0.079968 0.047586 -0.412549 0.904828 0.105309 +-0.466619 0.876307 0.119807 -0.079968 0.061847 -0.46676 0.876308 0.119248 +-0.39588 0.904827 0.15674 -0.119968 0.047586 -0.396098 0.904828 0.156185 +-0.412403 0.904827 0.105887 -0.079968 0.047586 -0.412549 0.904828 0.105309 +-0.477955 0.876307 0.06038 -0.039968 0.061847 -0.478025 0.876307 0.059807 +-0.466619 0.876307 0.119807 -0.079968 0.061847 -0.46676 0.876308 0.119248 +-0.422422 0.904827 0.053364 -0.039968 0.047586 -0.422495 0.904828 0.052773 +-0.477955 0.876307 0.06038 -0.039968 0.061847 -0.478025 0.876307 0.059807 +-0.412403 0.904827 0.105887 -0.079968 0.047586 -0.412549 0.904828 0.105309 +-0.422422 0.904827 0.053364 -0.039968 0.047586 -0.422495 0.904828 0.052773 +-0.481754 0.876307 -0 3.2e-005 0.061847 -0.481752 0.876308 -0.000577 +-0.477955 0.876307 0.06038 -0.039968 0.061847 -0.478025 0.876307 0.059807 +-0.42578 0.904827 -0 3.2e-005 0.047586 -0.425778 0.904828 -0.000596 +-0.481754 0.876307 -0 3.2e-005 0.061847 -0.481752 0.876308 -0.000577 +-0.422422 0.904827 0.053364 -0.039968 0.047586 -0.422495 0.904828 0.052773 +-0.42578 0.904827 -0 3.2e-005 0.047586 -0.425778 0.904828 -0.000596 +-0.477955 0.876307 -0.06038 0.040032 0.061847 -0.477881 0.876308 -0.060952 +-0.481754 0.876307 -0 3.2e-005 0.061847 -0.481752 0.876308 -0.000577 +-0.422422 0.904827 -0.053364 0.040032 0.047586 -0.422346 0.904828 -0.053955 +-0.477955 0.876307 -0.06038 0.040032 0.061847 -0.477881 0.876308 -0.060952 +-0.42578 0.904827 -0 3.2e-005 0.047586 -0.425778 0.904828 -0.000596 +-0.422422 0.904827 -0.053364 0.040032 0.047586 -0.422346 0.904828 -0.053955 +-0.466619 0.876307 -0.119807 0.080032 0.061847 -0.466473 0.876308 -0.120365 +-0.477955 0.876307 -0.06038 0.040032 0.061847 -0.477881 0.876308 -0.060952 +-0.412403 0.904827 -0.105887 0.080032 0.047586 -0.412253 0.904828 -0.106463 +-0.466619 0.876307 -0.119807 0.080032 0.061847 -0.466473 0.876308 -0.120365 +-0.422422 0.904827 -0.053364 0.040032 0.047586 -0.422346 0.904828 -0.053955 +-0.412403 0.904827 -0.105887 0.080032 0.047586 -0.412253 0.904828 -0.106463 +-0.447924 0.876307 -0.177346 0.120032 0.061847 -0.447709 0.876308 -0.17788 +-0.466619 0.876307 -0.119807 0.080032 0.061847 -0.466473 0.876308 -0.120365 +-0.39588 0.904827 -0.15674 0.120032 0.047586 -0.395659 0.904828 -0.157294 +-0.447924 0.876307 -0.177346 0.120032 0.061847 -0.447709 0.876308 -0.17788 +-0.412403 0.904827 -0.105887 0.080032 0.047586 -0.412253 0.904828 -0.106463 +-0.39588 0.904827 -0.15674 0.120032 0.047586 -0.395659 0.904828 -0.157294 +-0.422164 0.876307 -0.232087 0.160032 0.061847 -0.421884 0.876308 -0.232591 +-0.447924 0.876307 -0.177346 0.120032 0.061847 -0.447709 0.876308 -0.17788 +-0.373113 0.904827 -0.205121 0.160032 0.047586 -0.372825 0.904827 -0.205643 +-0.422164 0.876307 -0.232087 0.160032 0.061847 -0.421884 0.876308 -0.232591 +-0.39588 0.904827 -0.15674 0.120032 0.047586 -0.395659 0.904828 -0.157294 +-0.373113 0.904827 -0.205121 0.160032 0.047586 -0.372825 0.904827 -0.205643 +-0.389747 0.876307 -0.283168 0.200032 0.061847 -0.389406 0.876307 -0.283634 +-0.422164 0.876307 -0.232087 0.160032 0.061847 -0.421884 0.876308 -0.232591 +-0.344463 0.904827 -0.250267 0.200032 0.047586 -0.344111 0.904828 -0.250748 +-0.389747 0.876307 -0.283168 0.200032 0.061847 -0.389406 0.876307 -0.283634 +-0.373113 0.904827 -0.205121 0.160032 0.047586 -0.372825 0.904827 -0.205643 +-0.344463 0.904827 -0.250267 0.200032 0.047586 -0.344111 0.904828 -0.250748 +-0.351183 0.876307 -0.329783 0.240032 0.061847 -0.350787 0.876308 -0.330203 +-0.389747 0.876307 -0.283168 0.200032 0.061847 -0.389406 0.876307 -0.283634 +-0.31038 0.904827 -0.291466 0.240032 0.047586 -0.309971 0.904827 -0.2919 +-0.351183 0.876307 -0.329783 0.240032 0.061847 -0.350787 0.876308 -0.330203 +-0.344463 0.904827 -0.250267 0.200032 0.047586 -0.344111 0.904828 -0.250748 +-0.31038 0.904827 -0.291466 0.240032 0.047586 -0.309971 0.904827 -0.2919 +-0.307081 0.876307 -0.371198 0.280032 0.061847 -0.306636 0.876308 -0.371564 +-0.351183 0.876307 -0.329783 0.240032 0.061847 -0.350787 0.876308 -0.330203 +-0.271402 0.904827 -0.328069 0.280032 0.047586 -0.270942 0.904828 -0.328447 +-0.307081 0.876307 -0.371198 0.280032 0.061847 -0.306636 0.876308 -0.371564 +-0.31038 0.904827 -0.291466 0.240032 0.047586 -0.309971 0.904827 -0.2919 +-0.271402 0.904827 -0.328069 0.280032 0.047586 -0.270942 0.904828 -0.328447 +-0.258137 0.876307 -0.406758 0.320032 0.061847 -0.257648 0.876308 -0.407066 +-0.307081 0.876307 -0.371198 0.280032 0.061847 -0.306636 0.876308 -0.371564 +-0.228144 0.904827 -0.359498 0.320032 0.047586 -0.22764 0.904827 -0.359816 +-0.258137 0.876307 -0.406758 0.320032 0.061847 -0.257648 0.876308 -0.407066 +-0.271402 0.904827 -0.328069 0.280032 0.047586 -0.270942 0.904828 -0.328447 +-0.228144 0.904827 -0.359498 0.320032 0.047586 -0.22764 0.904827 -0.359816 +-0.205121 0.876307 -0.435904 0.360032 0.061847 -0.204598 0.876308 -0.436148 +-0.258137 0.876307 -0.406758 0.320032 0.061847 -0.257648 0.876308 -0.407066 +-0.181288 0.904827 -0.385257 0.360032 0.047586 -0.180748 0.904828 -0.385509 +-0.205121 0.876307 -0.435904 0.360032 0.061847 -0.204598 0.876308 -0.436148 +-0.228144 0.904827 -0.359498 0.320032 0.047586 -0.22764 0.904827 -0.359816 +-0.181288 0.904827 -0.385257 0.360032 0.047586 -0.180748 0.904828 -0.385509 +-0.14887 0.876307 -0.458175 0.400032 0.061847 -0.148321 0.876308 -0.458351 +-0.205121 0.876307 -0.435904 0.360032 0.061847 -0.204598 0.876308 -0.436148 +-0.131573 0.904827 -0.40494 0.400032 0.047586 -0.131006 0.904828 -0.405123 +-0.14887 0.876307 -0.458175 0.400032 0.061847 -0.148321 0.876308 -0.458351 +-0.181288 0.904827 -0.385257 0.360032 0.047586 -0.180748 0.904828 -0.385509 +-0.131573 0.904827 -0.40494 0.400032 0.047586 -0.131006 0.904828 -0.405123 +-0.090272 0.876307 -0.473221 0.440032 0.061847 -0.089704 0.876308 -0.473327 +-0.14887 0.876307 -0.458175 0.400032 0.061847 -0.148321 0.876308 -0.458351 +-0.079783 0.904827 -0.418238 0.440032 0.047586 -0.079197 0.904828 -0.418348 +-0.090272 0.876307 -0.473221 0.440032 0.061847 -0.089704 0.876308 -0.473327 +-0.131573 0.904827 -0.40494 0.400032 0.047586 -0.131006 0.904828 -0.405123 +-0.079783 0.904827 -0.418238 0.440032 0.047586 -0.079197 0.904828 -0.418348 +-0.03025 0.876307 -0.480803 0.480032 0.061847 -0.029673 0.876308 -0.480837 +-0.090272 0.876307 -0.473221 0.440032 0.061847 -0.089704 0.876308 -0.473327 +-0.026735 0.904827 -0.424939 0.480032 0.047586 -0.02614 0.904827 -0.424975 +-0.03025 0.876307 -0.480803 0.480032 0.061847 -0.029673 0.876308 -0.480837 +-0.079783 0.904827 -0.418238 0.440032 0.047586 -0.079197 0.904828 -0.418348 +-0.026735 0.904827 -0.424939 0.480032 0.047586 -0.02614 0.904827 -0.424975 +0.03025 0.876307 -0.480803 0.520032 0.061847 0.030825 0.876308 -0.480764 +-0.03025 0.876307 -0.480803 0.480032 0.061847 -0.029673 0.876308 -0.480837 +0.026735 0.904827 -0.424939 0.520032 0.047586 0.02733 0.904827 -0.424901 +0.03025 0.876307 -0.480803 0.520032 0.061847 0.030825 0.876308 -0.480764 +-0.026735 0.904827 -0.424939 0.480032 0.047586 -0.02614 0.904827 -0.424975 +0.026735 0.904827 -0.424939 0.520032 0.047586 0.02733 0.904827 -0.424901 +0.090272 0.876307 -0.473221 0.560032 0.061847 0.090838 0.876308 -0.473111 +0.03025 0.876307 -0.480803 0.520032 0.061847 0.030825 0.876308 -0.480764 +0.079783 0.904827 -0.418238 0.560032 0.047586 0.080368 0.904827 -0.418125 +0.090272 0.876307 -0.473221 0.560032 0.061847 0.090838 0.876308 -0.473111 +0.026735 0.904827 -0.424939 0.520032 0.047586 0.02733 0.904827 -0.424901 +0.079783 0.904827 -0.418238 0.560032 0.047586 0.080368 0.904827 -0.418125 +0.14887 0.876307 -0.458175 0.600032 0.061847 0.149418 0.876308 -0.457994 +0.090272 0.876307 -0.473221 0.560032 0.061847 0.090838 0.876308 -0.473111 +0.131573 0.904827 -0.40494 0.600032 0.047586 0.13214 0.904828 -0.404754 +0.14887 0.876307 -0.458175 0.600032 0.061847 0.149418 0.876308 -0.457994 +0.079783 0.904827 -0.418238 0.560032 0.047586 0.080368 0.904827 -0.418125 +0.131573 0.904827 -0.40494 0.600032 0.047586 0.13214 0.904828 -0.404754 +0.205121 0.876307 -0.435904 0.640032 0.061847 0.205642 0.876307 -0.435656 +0.14887 0.876307 -0.458175 0.600032 0.061847 0.149418 0.876308 -0.457994 +0.181288 0.904827 -0.385257 0.640032 0.047586 0.181827 0.904827 -0.385002 +0.205121 0.876307 -0.435904 0.640032 0.061847 0.205642 0.876307 -0.435656 +0.131573 0.904827 -0.40494 0.600032 0.047586 0.13214 0.904828 -0.404754 +0.181288 0.904827 -0.385257 0.640032 0.047586 0.181827 0.904827 -0.385002 +0.258137 0.876307 -0.406758 0.680032 0.061847 0.258623 0.876308 -0.406447 +0.205121 0.876307 -0.435904 0.640032 0.061847 0.205642 0.876307 -0.435656 +0.228144 0.904827 -0.359497 0.680032 0.047586 0.228646 0.904827 -0.359177 +0.258137 0.876307 -0.406758 0.680032 0.061847 0.258623 0.876308 -0.406447 +0.181288 0.904827 -0.385257 0.640032 0.047586 0.181827 0.904827 -0.385002 +0.228144 0.904827 -0.359497 0.680032 0.047586 0.228646 0.904827 -0.359177 +0.307081 0.876307 -0.371198 0.720032 0.061847 0.307525 0.876308 -0.370828 +0.258137 0.876307 -0.406758 0.680032 0.061847 0.258623 0.876308 -0.406447 +0.271402 0.904827 -0.328069 0.720032 0.047586 0.27186 0.904828 -0.327687 +0.307081 0.876307 -0.371198 0.720032 0.061847 0.307525 0.876308 -0.370828 +0.228144 0.904827 -0.359497 0.680032 0.047586 0.228646 0.904827 -0.359177 +0.271402 0.904827 -0.328069 0.720032 0.047586 0.27186 0.904828 -0.327687 +0.351183 0.876307 -0.329783 0.760032 0.061847 0.351577 0.876308 -0.329361 +0.307081 0.876307 -0.371198 0.720032 0.061847 0.307525 0.876308 -0.370828 +0.31038 0.904827 -0.291466 0.760032 0.047586 0.310787 0.904827 -0.291031 +0.351183 0.876307 -0.329783 0.760032 0.061847 0.351577 0.876308 -0.329361 +0.271402 0.904827 -0.328069 0.720032 0.047586 0.27186 0.904828 -0.327687 +0.31038 0.904827 -0.291466 0.760032 0.047586 0.310787 0.904827 -0.291031 +0.389747 0.876307 -0.283168 0.800032 0.061847 0.390085 0.876308 -0.282699 +0.351183 0.876307 -0.329783 0.760032 0.061847 0.351577 0.876308 -0.329361 +0.344463 0.904827 -0.250267 0.800032 0.047586 0.344812 0.904828 -0.249784 +0.389747 0.876307 -0.283168 0.800032 0.061847 0.390085 0.876308 -0.282699 +0.31038 0.904827 -0.291466 0.760032 0.047586 0.310787 0.904827 -0.291031 +0.344463 0.904827 -0.250267 0.800032 0.047586 0.344812 0.904828 -0.249784 +0.422164 0.876307 -0.232087 0.840032 0.061847 0.42244 0.876308 -0.23158 +0.389747 0.876307 -0.283168 0.800032 0.061847 0.390085 0.876308 -0.282699 +0.373113 0.904827 -0.205121 0.840032 0.047586 0.373399 0.904827 -0.204598 +0.422164 0.876307 -0.232087 0.840032 0.061847 0.42244 0.876308 -0.23158 +0.344463 0.904827 -0.250267 0.800032 0.047586 0.344812 0.904828 -0.249784 +0.373113 0.904827 -0.205121 0.840032 0.047586 0.373399 0.904827 -0.204598 +0.447923 0.876307 -0.177345 0.880032 0.061847 0.448134 0.876308 -0.176808 +0.422164 0.876307 -0.232087 0.840032 0.061847 0.42244 0.876308 -0.23158 +0.39588 0.904827 -0.15674 0.880032 0.047586 0.396098 0.904827 -0.156185 +0.447923 0.876307 -0.177345 0.880032 0.061847 0.448134 0.876308 -0.176808 +0.373113 0.904827 -0.205121 0.840032 0.047586 0.373399 0.904827 -0.204598 +0.39588 0.904827 -0.15674 0.880032 0.047586 0.396098 0.904827 -0.156185 +0.466619 0.876307 -0.119807 0.920032 0.061847 0.46676 0.876307 -0.119248 +0.447923 0.876307 -0.177345 0.880032 0.061847 0.448134 0.876308 -0.176808 +0.412403 0.904827 -0.105887 0.920032 0.047586 0.412549 0.904828 -0.10531 +0.466619 0.876307 -0.119807 0.920032 0.061847 0.46676 0.876307 -0.119248 +0.39588 0.904827 -0.15674 0.880032 0.047586 0.396098 0.904827 -0.156185 +0.412403 0.904827 -0.105887 0.920032 0.047586 0.412549 0.904828 -0.10531 +0.477955 0.876307 -0.06038 0.960032 0.061847 0.478025 0.876308 -0.059807 +0.466619 0.876307 -0.119807 0.920032 0.061847 0.46676 0.876307 -0.119248 +0.422422 0.904827 -0.053364 0.960032 0.047586 0.422495 0.904828 -0.052774 +0.477955 0.876307 -0.06038 0.960032 0.061847 0.478025 0.876308 -0.059807 +0.412403 0.904827 -0.105887 0.920032 0.047586 0.412549 0.904828 -0.10531 +0.422422 0.904827 -0.053364 0.960032 0.047586 0.422495 0.904828 -0.052774 +0.481754 0.876307 -0 1.00003 0.061847 0.481752 0.876307 0.000575 +0.477955 0.876307 -0.06038 0.960032 0.061847 0.478025 0.876308 -0.059807 +0.425779 0.904827 -0 1.00003 0.047586 0.425778 0.904828 0.000594 +0.481754 0.876307 -0 1.00003 0.061847 0.481752 0.876307 0.000575 +0.422422 0.904827 -0.053364 0.960032 0.047586 0.422495 0.904828 -0.052774 +0.425779 0.904827 -0 1.00003 0.047586 0.425778 0.904828 0.000594 +0.477955 0.876307 0.06038 1.04003 0.061847 0.477881 0.876308 0.06095 +0.481754 0.876307 -0 1.00003 0.061847 0.481752 0.876307 0.000575 +0.422422 0.904827 0.053364 1.04003 0.047586 0.422346 0.904828 0.053954 +0.477955 0.876307 0.06038 1.04003 0.061847 0.477881 0.876308 0.06095 +0.425779 0.904827 -0 1.00003 0.047586 0.425778 0.904828 0.000594 +0.365222 0.929776 0.046138 1.04003 0.035112 0.365144 0.929777 0.046744 +0.412403 0.904827 0.105887 1.08003 0.047586 0.412253 0.904828 0.106464 +0.422422 0.904827 0.053364 1.04003 0.047586 0.422346 0.904828 0.053954 +0.35656 0.929776 0.091549 1.08003 0.035112 0.356406 0.929777 0.092142 +0.412403 0.904827 0.105887 1.08003 0.047586 0.412253 0.904828 0.106464 +0.365222 0.929776 0.046138 1.04003 0.035112 0.365144 0.929777 0.046744 +0.35656 0.929776 0.091549 1.08003 0.035112 0.356406 0.929777 0.092142 +0.39588 0.904827 0.15674 1.12003 0.047586 0.395659 0.904828 0.157293 +0.412403 0.904827 0.105887 1.08003 0.047586 0.412253 0.904828 0.106464 +0.342274 0.929776 0.135516 1.12003 0.035112 0.342047 0.929777 0.136084 +0.39588 0.904827 0.15674 1.12003 0.047586 0.395659 0.904828 0.157293 +0.35656 0.929776 0.091549 1.08003 0.035112 0.356406 0.929777 0.092142 +0.342274 0.929776 0.135516 1.12003 0.035112 0.342047 0.929777 0.136084 +0.373114 0.904827 0.205121 1.16003 0.047586 0.372825 0.904828 0.205642 +0.39588 0.904827 0.15674 1.12003 0.047586 0.395659 0.904828 0.157293 +0.32259 0.929776 0.177346 1.16003 0.035112 0.322294 0.929777 0.177881 +0.373114 0.904827 0.205121 1.16003 0.047586 0.372825 0.904828 0.205642 +0.342274 0.929776 0.135516 1.12003 0.035112 0.342047 0.929777 0.136084 +0.32259 0.929776 0.177346 1.16003 0.035112 0.322294 0.929777 0.177881 +0.344463 0.904827 0.250267 1.20003 0.047586 0.344111 0.904828 0.250748 +0.373114 0.904827 0.205121 1.16003 0.047586 0.372825 0.904828 0.205642 +0.297819 0.929776 0.216378 1.20003 0.035112 0.297458 0.929777 0.216873 +0.344463 0.904827 0.250267 1.20003 0.047586 0.344111 0.904828 0.250748 +0.32259 0.929776 0.177346 1.16003 0.035112 0.322294 0.929777 0.177881 +0.297819 0.929776 0.216378 1.20003 0.035112 0.297458 0.929777 0.216873 +0.31038 0.904827 0.291466 1.24003 0.047586 0.309971 0.904828 0.2919 +0.344463 0.904827 0.250267 1.20003 0.047586 0.344111 0.904828 0.250748 +0.268351 0.929776 0.251999 1.24003 0.035112 0.267931 0.929777 0.252444 +0.31038 0.904827 0.291466 1.24003 0.047586 0.309971 0.904828 0.2919 +0.297819 0.929776 0.216378 1.20003 0.035112 0.297458 0.929777 0.216873 +0.268351 0.929776 0.251999 1.24003 0.035112 0.267931 0.929777 0.252444 +0.271402 0.904827 0.328069 1.28003 0.047586 0.270942 0.904828 0.328447 +0.31038 0.904827 0.291466 1.24003 0.047586 0.309971 0.904828 0.2919 +0.234652 0.929776 0.283645 1.28003 0.035112 0.234179 0.929777 0.284034 +0.271402 0.904827 0.328069 1.28003 0.047586 0.270942 0.904828 0.328447 +0.268351 0.929776 0.251999 1.24003 0.035112 0.267931 0.929777 0.252444 +0.234652 0.929776 0.283645 1.28003 0.035112 0.234179 0.929777 0.284034 +0.228144 0.904827 0.359498 1.32003 0.047586 0.22764 0.904828 0.359815 +0.271402 0.904827 0.328069 1.28003 0.047586 0.270942 0.904828 0.328447 +0.197251 0.929776 0.310818 1.32003 0.035112 0.196733 0.929777 0.311145 +0.228144 0.904827 0.359498 1.32003 0.047586 0.22764 0.904828 0.359815 +0.234652 0.929776 0.283645 1.28003 0.035112 0.234179 0.929777 0.284034 +0.197251 0.929776 0.310818 1.32003 0.035112 0.196733 0.929777 0.311145 +0.181288 0.904827 0.385257 1.36003 0.047586 0.180748 0.904828 0.385509 +0.228144 0.904827 0.359498 1.32003 0.047586 0.22764 0.904828 0.359815 +0.15674 0.929776 0.333089 1.36003 0.035112 0.156185 0.929777 0.333348 +0.181288 0.904827 0.385257 1.36003 0.047586 0.180748 0.904828 0.385509 +0.197251 0.929776 0.310818 1.32003 0.035112 0.196733 0.929777 0.311145 +0.15674 0.929776 0.333089 1.36003 0.035112 0.156185 0.929777 0.333348 +0.131573 0.904827 0.404941 1.40003 0.047586 0.131006 0.904827 0.405123 +0.181288 0.904827 0.385257 1.36003 0.047586 0.180748 0.904828 0.385509 +0.113757 0.929776 0.350108 1.40003 0.035112 0.113174 0.929777 0.350295 +0.131573 0.904827 0.404941 1.40003 0.047586 0.131006 0.904827 0.405123 +0.15674 0.929776 0.333089 1.36003 0.035112 0.156185 0.929777 0.333348 +0.113757 0.929776 0.350108 1.40003 0.035112 0.113174 0.929777 0.350295 +0.079783 0.904827 0.418238 1.44003 0.047586 0.079197 0.904828 0.418347 +0.131573 0.904827 0.404941 1.40003 0.047586 0.131006 0.904827 0.405123 +0.06898 0.929776 0.361604 1.44003 0.035112 0.068378 0.929777 0.361718 +0.079783 0.904827 0.418238 1.44003 0.047586 0.079197 0.904828 0.418347 +0.113757 0.929776 0.350108 1.40003 0.035112 0.113174 0.929777 0.350295 +0.06898 0.929776 0.361604 1.44003 0.035112 0.068378 0.929777 0.361718 +0.026735 0.904827 0.424939 1.48003 0.047586 0.02614 0.904828 0.424974 +0.079783 0.904827 0.418238 1.44003 0.047586 0.079197 0.904828 0.418347 +0.023115 0.929776 0.367398 1.48003 0.035112 0.022503 0.929777 0.367436 +0.026735 0.904827 0.424939 1.48003 0.047586 0.02614 0.904828 0.424974 +0.06898 0.929776 0.361604 1.44003 0.035112 0.068378 0.929777 0.361718 +0.023115 0.929776 0.367398 1.48003 0.035112 0.022503 0.929777 0.367436 +-0.026735 0.904827 0.424939 1.52003 0.047586 -0.02733 0.904828 0.4249 +0.026735 0.904827 0.424939 1.48003 0.047586 0.02614 0.904828 0.424974 +-0.023115 0.929776 0.367398 1.52003 0.035112 -0.023726 0.929777 0.367359 +-0.026735 0.904827 0.424939 1.52003 0.047586 -0.02733 0.904828 0.4249 +0.023115 0.929776 0.367398 1.48003 0.035112 0.022503 0.929777 0.367436 +-0.023115 0.929776 0.367398 -0.479968 0.035112 -0.023726 0.929777 0.367359 +-0.079783 0.904827 0.418238 -0.439968 0.047586 -0.080368 0.904828 0.418124 +-0.026735 0.904827 0.424939 -0.479968 0.047586 -0.02733 0.904828 0.4249 +-0.06898 0.929776 0.361604 -0.439968 0.035112 -0.069581 0.929777 0.361488 +-0.079783 0.904827 0.418238 -0.439968 0.047586 -0.080368 0.904828 0.418124 +-0.023115 0.929776 0.367398 -0.479968 0.035112 -0.023726 0.929777 0.367359 +-0.06898 0.929776 0.361604 -0.439968 0.035112 -0.069581 0.929777 0.361488 +-0.131573 0.904827 0.40494 -0.399968 0.047586 -0.13214 0.904828 0.404754 +-0.079783 0.904827 0.418238 -0.439968 0.047586 -0.080368 0.904828 0.418124 +-0.113757 0.929776 0.350107 -0.399968 0.035112 -0.114339 0.929777 0.349916 +-0.131573 0.904827 0.40494 -0.399968 0.047586 -0.13214 0.904828 0.404754 +-0.06898 0.929776 0.361604 -0.439968 0.035112 -0.069581 0.929777 0.361488 +-0.113757 0.929776 0.350107 -0.399968 0.035112 -0.114339 0.929777 0.349916 +-0.181288 0.904827 0.385257 -0.359968 0.047586 -0.181827 0.904828 0.385002 +-0.131573 0.904827 0.40494 -0.399968 0.047586 -0.13214 0.904828 0.404754 +-0.15674 0.929776 0.333089 -0.359968 0.035112 -0.157293 0.929777 0.332827 +-0.181288 0.904827 0.385257 -0.359968 0.047586 -0.181827 0.904828 0.385002 +-0.113757 0.929776 0.350107 -0.399968 0.035112 -0.114339 0.929777 0.349916 +-0.15674 0.929776 0.333089 -0.359968 0.035112 -0.157293 0.929777 0.332827 +-0.228144 0.904827 0.359498 -0.319968 0.047586 -0.228646 0.904828 0.359176 +-0.181288 0.904827 0.385257 -0.359968 0.047586 -0.181827 0.904828 0.385002 +-0.197251 0.929776 0.310818 -0.319968 0.035112 -0.197767 0.929777 0.310488 +-0.228144 0.904827 0.359498 -0.319968 0.047586 -0.228646 0.904828 0.359176 +-0.15674 0.929776 0.333089 -0.359968 0.035112 -0.157293 0.929777 0.332827 +-0.197251 0.929776 0.310818 -0.319968 0.035112 -0.197767 0.929777 0.310488 +-0.271402 0.904827 0.328069 -0.279968 0.047586 -0.27186 0.904827 0.327688 +-0.228144 0.904827 0.359498 -0.319968 0.047586 -0.228646 0.904828 0.359176 +-0.234652 0.929776 0.283645 -0.279968 0.035112 -0.235123 0.929777 0.283254 +-0.271402 0.904827 0.328069 -0.279968 0.047586 -0.27186 0.904827 0.327688 +-0.197251 0.929776 0.310818 -0.319968 0.035112 -0.197767 0.929777 0.310488 +-0.234652 0.929776 0.283645 -0.279968 0.035112 -0.235123 0.929777 0.283254 +-0.31038 0.904827 0.291466 -0.239968 0.047586 -0.310786 0.904828 0.291031 +-0.271402 0.904827 0.328069 -0.279968 0.047586 -0.27186 0.904827 0.327688 +-0.268351 0.929776 0.251999 -0.239968 0.035112 -0.26877 0.929777 0.251551 +-0.31038 0.904827 0.291466 -0.239968 0.047586 -0.310786 0.904828 0.291031 +-0.234652 0.929776 0.283645 -0.279968 0.035112 -0.235123 0.929777 0.283254 +-0.268351 0.929776 0.251999 -0.239968 0.035112 -0.26877 0.929777 0.251551 +-0.344463 0.904827 0.250267 -0.199968 0.047586 -0.344812 0.904828 0.249784 +-0.31038 0.904827 0.291466 -0.239968 0.047586 -0.310786 0.904828 0.291031 +-0.297819 0.929776 0.216378 -0.199968 0.035112 -0.298178 0.929777 0.215882 +-0.344463 0.904827 0.250267 -0.199968 0.047586 -0.344812 0.904828 0.249784 +-0.268351 0.929776 0.251999 -0.239968 0.035112 -0.26877 0.929777 0.251551 +-0.297819 0.929776 0.216378 -0.199968 0.035112 -0.298178 0.929777 0.215882 +-0.373113 0.904827 0.205121 -0.159968 0.047586 -0.373399 0.904828 0.204598 +-0.344463 0.904827 0.250267 -0.199968 0.047586 -0.344812 0.904828 0.249784 +-0.32259 0.929776 0.177345 -0.159968 0.035112 -0.322884 0.929777 0.176808 +-0.373113 0.904827 0.205121 -0.159968 0.047586 -0.373399 0.904828 0.204598 +-0.297819 0.929776 0.216378 -0.199968 0.035112 -0.298178 0.929777 0.215882 +-0.32259 0.929776 0.177345 -0.159968 0.035112 -0.322884 0.929777 0.176808 +-0.39588 0.904827 0.15674 -0.119968 0.047586 -0.396098 0.904828 0.156185 +-0.373113 0.904827 0.205121 -0.159968 0.047586 -0.373399 0.904828 0.204598 +-0.342274 0.929776 0.135516 -0.119968 0.035112 -0.342498 0.929777 0.134945 +-0.39588 0.904827 0.15674 -0.119968 0.047586 -0.396098 0.904828 0.156185 +-0.32259 0.929776 0.177345 -0.159968 0.035112 -0.322884 0.929777 0.176808 +-0.342274 0.929776 0.135516 -0.119968 0.035112 -0.342498 0.929777 0.134945 +-0.412403 0.904827 0.105887 -0.079968 0.047586 -0.412549 0.904828 0.105309 +-0.39588 0.904827 0.15674 -0.119968 0.047586 -0.396098 0.904828 0.156185 +-0.356559 0.929776 0.091549 -0.079968 0.035112 -0.35671 0.929777 0.090955 +-0.412403 0.904827 0.105887 -0.079968 0.047586 -0.412549 0.904828 0.105309 +-0.342274 0.929776 0.135516 -0.119968 0.035112 -0.342498 0.929777 0.134945 +-0.356559 0.929776 0.091549 -0.079968 0.035112 -0.35671 0.929777 0.090955 +-0.422422 0.904827 0.053364 -0.039968 0.047586 -0.422495 0.904828 0.052773 +-0.412403 0.904827 0.105887 -0.079968 0.047586 -0.412549 0.904828 0.105309 +-0.365222 0.929776 0.046138 -0.039968 0.035112 -0.365297 0.929777 0.04553 +-0.422422 0.904827 0.053364 -0.039968 0.047586 -0.422495 0.904828 0.052773 +-0.356559 0.929776 0.091549 -0.079968 0.035112 -0.35671 0.929777 0.090955 +-0.365222 0.929776 0.046138 -0.039968 0.035112 -0.365297 0.929777 0.04553 +-0.42578 0.904827 -0 3.2e-005 0.047586 -0.425778 0.904828 -0.000596 +-0.422422 0.904827 0.053364 -0.039968 0.047586 -0.422495 0.904828 0.052773 +-0.368125 0.929776 -0 3.2e-005 0.035112 -0.368123 0.929777 -0.000613 +-0.42578 0.904827 -0 3.2e-005 0.047586 -0.425778 0.904828 -0.000596 +-0.365222 0.929776 0.046138 -0.039968 0.035112 -0.365297 0.929777 0.04553 +-0.368125 0.929776 -0 3.2e-005 0.035112 -0.368123 0.929777 -0.000613 +-0.422422 0.904827 -0.053364 0.040032 0.047586 -0.422346 0.904828 -0.053955 +-0.42578 0.904827 -0 3.2e-005 0.047586 -0.425778 0.904828 -0.000596 +-0.365222 0.929776 -0.046138 0.040032 0.035112 -0.365144 0.929777 -0.046746 +-0.422422 0.904827 -0.053364 0.040032 0.047586 -0.422346 0.904828 -0.053955 +-0.368125 0.929776 -0 3.2e-005 0.035112 -0.368123 0.929777 -0.000613 +-0.365222 0.929776 -0.046138 0.040032 0.035112 -0.365144 0.929777 -0.046746 +-0.412403 0.904827 -0.105887 0.080032 0.047586 -0.412253 0.904828 -0.106463 +-0.422422 0.904827 -0.053364 0.040032 0.047586 -0.422346 0.904828 -0.053955 +-0.356559 0.929776 -0.091549 0.080032 0.035112 -0.356406 0.929777 -0.092141 +-0.412403 0.904827 -0.105887 0.080032 0.047586 -0.412253 0.904828 -0.106463 +-0.365222 0.929776 -0.046138 0.040032 0.035112 -0.365144 0.929777 -0.046746 +-0.356559 0.929776 -0.091549 0.080032 0.035112 -0.356406 0.929777 -0.092141 +-0.39588 0.904827 -0.15674 0.120032 0.047586 -0.395659 0.904828 -0.157294 +-0.412403 0.904827 -0.105887 0.080032 0.047586 -0.412253 0.904828 -0.106463 +-0.342274 0.929776 -0.135516 0.120032 0.035112 -0.342047 0.929777 -0.136085 +-0.39588 0.904827 -0.15674 0.120032 0.047586 -0.395659 0.904828 -0.157294 +-0.356559 0.929776 -0.091549 0.080032 0.035112 -0.356406 0.929777 -0.092141 +-0.342274 0.929776 -0.135516 0.120032 0.035112 -0.342047 0.929777 -0.136085 +-0.373113 0.904827 -0.205121 0.160032 0.047586 -0.372825 0.904827 -0.205643 +-0.39588 0.904827 -0.15674 0.120032 0.047586 -0.395659 0.904828 -0.157294 +-0.32259 0.929776 -0.177345 0.160032 0.035112 -0.322294 0.929777 -0.177881 +-0.373113 0.904827 -0.205121 0.160032 0.047586 -0.372825 0.904827 -0.205643 +-0.342274 0.929776 -0.135516 0.120032 0.035112 -0.342047 0.929777 -0.136085 +-0.32259 0.929776 -0.177345 0.160032 0.035112 -0.322294 0.929777 -0.177881 +-0.344463 0.904827 -0.250267 0.200032 0.047586 -0.344111 0.904828 -0.250748 +-0.373113 0.904827 -0.205121 0.160032 0.047586 -0.372825 0.904827 -0.205643 +-0.297819 0.929776 -0.216378 0.200032 0.035112 -0.297458 0.929777 -0.216874 +-0.344463 0.904827 -0.250267 0.200032 0.047586 -0.344111 0.904828 -0.250748 +-0.32259 0.929776 -0.177345 0.160032 0.035112 -0.322294 0.929777 -0.177881 +-0.297819 0.929776 -0.216378 0.200032 0.035112 -0.297458 0.929777 -0.216874 +-0.31038 0.904827 -0.291466 0.240032 0.047586 -0.309971 0.904827 -0.2919 +-0.344463 0.904827 -0.250267 0.200032 0.047586 -0.344111 0.904828 -0.250748 +-0.268351 0.929776 -0.251999 0.240032 0.035112 -0.267931 0.929777 -0.252445 +-0.31038 0.904827 -0.291466 0.240032 0.047586 -0.309971 0.904827 -0.2919 +-0.297819 0.929776 -0.216378 0.200032 0.035112 -0.297458 0.929777 -0.216874 +-0.268351 0.929776 -0.251999 0.240032 0.035112 -0.267931 0.929777 -0.252445 +-0.271402 0.904827 -0.328069 0.280032 0.047586 -0.270942 0.904828 -0.328447 +-0.31038 0.904827 -0.291466 0.240032 0.047586 -0.309971 0.904827 -0.2919 +-0.234651 0.929776 -0.283645 0.280032 0.035112 -0.234179 0.929777 -0.284034 +-0.271402 0.904827 -0.328069 0.280032 0.047586 -0.270942 0.904828 -0.328447 +-0.268351 0.929776 -0.251999 0.240032 0.035112 -0.267931 0.929777 -0.252445 +-0.234651 0.929776 -0.283645 0.280032 0.035112 -0.234179 0.929777 -0.284034 +-0.228144 0.904827 -0.359498 0.320032 0.047586 -0.22764 0.904827 -0.359816 +-0.271402 0.904827 -0.328069 0.280032 0.047586 -0.270942 0.904828 -0.328447 +-0.197251 0.929776 -0.310818 0.320032 0.035112 -0.196733 0.929777 -0.311145 +-0.228144 0.904827 -0.359498 0.320032 0.047586 -0.22764 0.904827 -0.359816 +-0.234651 0.929776 -0.283645 0.280032 0.035112 -0.234179 0.929777 -0.284034 +-0.197251 0.929776 -0.310818 0.320032 0.035112 -0.196733 0.929777 -0.311145 +-0.181288 0.904827 -0.385257 0.360032 0.047586 -0.180748 0.904828 -0.385509 +-0.228144 0.904827 -0.359498 0.320032 0.047586 -0.22764 0.904827 -0.359816 +-0.15674 0.929776 -0.333089 0.360032 0.035112 -0.156185 0.929777 -0.333349 +-0.181288 0.904827 -0.385257 0.360032 0.047586 -0.180748 0.904828 -0.385509 +-0.197251 0.929776 -0.310818 0.320032 0.035112 -0.196733 0.929777 -0.311145 +-0.15674 0.929776 -0.333089 0.360032 0.035112 -0.156185 0.929777 -0.333349 +-0.131573 0.904827 -0.40494 0.400032 0.047586 -0.131006 0.904828 -0.405123 +-0.181288 0.904827 -0.385257 0.360032 0.047586 -0.180748 0.904828 -0.385509 +-0.113757 0.929776 -0.350107 0.400032 0.035112 -0.113174 0.929777 -0.350296 +-0.131573 0.904827 -0.40494 0.400032 0.047586 -0.131006 0.904828 -0.405123 +-0.15674 0.929776 -0.333089 0.360032 0.035112 -0.156185 0.929777 -0.333349 +-0.113757 0.929776 -0.350107 0.400032 0.035112 -0.113174 0.929777 -0.350296 +-0.079783 0.904827 -0.418238 0.440032 0.047586 -0.079197 0.904828 -0.418348 +-0.131573 0.904827 -0.40494 0.400032 0.047586 -0.131006 0.904828 -0.405123 +-0.06898 0.929776 -0.361604 0.440032 0.035112 -0.068378 0.929777 -0.361717 +-0.079783 0.904827 -0.418238 0.440032 0.047586 -0.079197 0.904828 -0.418348 +-0.113757 0.929776 -0.350107 0.400032 0.035112 -0.113174 0.929777 -0.350296 +-0.06898 0.929776 -0.361604 0.440032 0.035112 -0.068378 0.929777 -0.361717 +-0.026735 0.904827 -0.424939 0.480032 0.047586 -0.02614 0.904827 -0.424975 +-0.079783 0.904827 -0.418238 0.440032 0.047586 -0.079197 0.904828 -0.418348 +-0.023115 0.929776 -0.367398 0.480032 0.035112 -0.022503 0.929777 -0.367435 +-0.026735 0.904827 -0.424939 0.480032 0.047586 -0.02614 0.904827 -0.424975 +-0.06898 0.929776 -0.361604 0.440032 0.035112 -0.068378 0.929777 -0.361717 +-0.023115 0.929776 -0.367398 0.480032 0.035112 -0.022503 0.929777 -0.367435 +0.026735 0.904827 -0.424939 0.520032 0.047586 0.02733 0.904827 -0.424901 +-0.026735 0.904827 -0.424939 0.480032 0.047586 -0.02614 0.904827 -0.424975 +0.023115 0.929776 -0.367398 0.520032 0.035112 0.023726 0.929777 -0.367358 +0.026735 0.904827 -0.424939 0.520032 0.047586 0.02733 0.904827 -0.424901 +-0.023115 0.929776 -0.367398 0.480032 0.035112 -0.022503 0.929777 -0.367435 +0.023115 0.929776 -0.367398 0.520032 0.035112 0.023726 0.929777 -0.367358 +0.079783 0.904827 -0.418238 0.560032 0.047586 0.080368 0.904827 -0.418125 +0.026735 0.904827 -0.424939 0.520032 0.047586 0.02733 0.904827 -0.424901 +0.06898 0.929776 -0.361604 0.560032 0.035112 0.069581 0.929777 -0.361488 +0.079783 0.904827 -0.418238 0.560032 0.047586 0.080368 0.904827 -0.418125 +0.023115 0.929776 -0.367398 0.520032 0.035112 0.023726 0.929777 -0.367358 +0.06898 0.929776 -0.361604 0.560032 0.035112 0.069581 0.929777 -0.361488 +0.131573 0.904827 -0.40494 0.600032 0.047586 0.13214 0.904828 -0.404754 +0.079783 0.904827 -0.418238 0.560032 0.047586 0.080368 0.904827 -0.418125 +0.113757 0.929776 -0.350107 0.600032 0.035112 0.114339 0.929777 -0.349917 +0.131573 0.904827 -0.40494 0.600032 0.047586 0.13214 0.904828 -0.404754 +0.06898 0.929776 -0.361604 0.560032 0.035112 0.069581 0.929777 -0.361488 +0.113757 0.929776 -0.350107 0.600032 0.035112 0.114339 0.929777 -0.349917 +0.181288 0.904827 -0.385257 0.640032 0.047586 0.181827 0.904827 -0.385002 +0.131573 0.904827 -0.40494 0.600032 0.047586 0.13214 0.904828 -0.404754 +0.15674 0.929776 -0.333089 0.640032 0.035112 0.157294 0.929777 -0.332828 +0.181288 0.904827 -0.385257 0.640032 0.047586 0.181827 0.904827 -0.385002 +0.113757 0.929776 -0.350107 0.600032 0.035112 0.114339 0.929777 -0.349917 +0.15674 0.929776 -0.333089 0.640032 0.035112 0.157294 0.929777 -0.332828 +0.228144 0.904827 -0.359497 0.680032 0.047586 0.228646 0.904827 -0.359177 +0.181288 0.904827 -0.385257 0.640032 0.047586 0.181827 0.904827 -0.385002 +0.197251 0.929776 -0.310818 0.680032 0.035112 0.197768 0.929777 -0.310489 +0.228144 0.904827 -0.359497 0.680032 0.047586 0.228646 0.904827 -0.359177 +0.15674 0.929776 -0.333089 0.640032 0.035112 0.157294 0.929777 -0.332828 +0.197251 0.929776 -0.310818 0.680032 0.035112 0.197768 0.929777 -0.310489 +0.271402 0.904827 -0.328069 0.720032 0.047586 0.27186 0.904828 -0.327687 +0.228144 0.904827 -0.359497 0.680032 0.047586 0.228646 0.904827 -0.359177 +0.234651 0.929776 -0.283645 0.720032 0.035112 0.235123 0.929777 -0.283254 +0.271402 0.904827 -0.328069 0.720032 0.047586 0.27186 0.904828 -0.327687 +0.197251 0.929776 -0.310818 0.680032 0.035112 0.197768 0.929777 -0.310489 +0.234651 0.929776 -0.283645 0.720032 0.035112 0.235123 0.929777 -0.283254 +0.31038 0.904827 -0.291466 0.760032 0.047586 0.310787 0.904827 -0.291031 +0.271402 0.904827 -0.328069 0.720032 0.047586 0.27186 0.904828 -0.327687 +0.268351 0.929776 -0.251999 0.760032 0.035112 0.26877 0.929777 -0.251552 +0.31038 0.904827 -0.291466 0.760032 0.047586 0.310787 0.904827 -0.291031 +0.234651 0.929776 -0.283645 0.720032 0.035112 0.235123 0.929777 -0.283254 +0.268351 0.929776 -0.251999 0.760032 0.035112 0.26877 0.929777 -0.251552 +0.344463 0.904827 -0.250267 0.800032 0.047586 0.344812 0.904828 -0.249784 +0.31038 0.904827 -0.291466 0.760032 0.047586 0.310787 0.904827 -0.291031 +0.297819 0.929776 -0.216378 0.800032 0.035112 0.298178 0.929777 -0.215882 +0.344463 0.904827 -0.250267 0.800032 0.047586 0.344812 0.904828 -0.249784 +0.268351 0.929776 -0.251999 0.760032 0.035112 0.26877 0.929777 -0.251552 +0.297819 0.929776 -0.216378 0.800032 0.035112 0.298178 0.929777 -0.215882 +0.373113 0.904827 -0.205121 0.840032 0.047586 0.373399 0.904827 -0.204598 +0.344463 0.904827 -0.250267 0.800032 0.047586 0.344812 0.904828 -0.249784 +0.32259 0.929776 -0.177345 0.840032 0.035112 0.322884 0.929777 -0.176808 +0.373113 0.904827 -0.205121 0.840032 0.047586 0.373399 0.904827 -0.204598 +0.297819 0.929776 -0.216378 0.800032 0.035112 0.298178 0.929777 -0.215882 +0.32259 0.929776 -0.177345 0.840032 0.035112 0.322884 0.929777 -0.176808 +0.39588 0.904827 -0.15674 0.880032 0.047586 0.396098 0.904827 -0.156185 +0.373113 0.904827 -0.205121 0.840032 0.047586 0.373399 0.904827 -0.204598 +0.342274 0.929776 -0.135516 0.880032 0.035112 0.342498 0.929777 -0.134945 +0.39588 0.904827 -0.15674 0.880032 0.047586 0.396098 0.904827 -0.156185 +0.32259 0.929776 -0.177345 0.840032 0.035112 0.322884 0.929777 -0.176808 +0.342274 0.929776 -0.135516 0.880032 0.035112 0.342498 0.929777 -0.134945 +0.412403 0.904827 -0.105887 0.920032 0.047586 0.412549 0.904828 -0.10531 +0.39588 0.904827 -0.15674 0.880032 0.047586 0.396098 0.904827 -0.156185 +0.356559 0.929776 -0.091549 0.920032 0.035112 0.35671 0.929777 -0.090956 +0.412403 0.904827 -0.105887 0.920032 0.047586 0.412549 0.904828 -0.10531 +0.342274 0.929776 -0.135516 0.880032 0.035112 0.342498 0.929777 -0.134945 +0.356559 0.929776 -0.091549 0.920032 0.035112 0.35671 0.929777 -0.090956 +0.422422 0.904827 -0.053364 0.960032 0.047586 0.422495 0.904828 -0.052774 +0.412403 0.904827 -0.105887 0.920032 0.047586 0.412549 0.904828 -0.10531 +0.365222 0.929776 -0.046138 0.960032 0.035112 0.365297 0.929777 -0.045531 +0.422422 0.904827 -0.053364 0.960032 0.047586 0.422495 0.904828 -0.052774 +0.356559 0.929776 -0.091549 0.920032 0.035112 0.35671 0.929777 -0.090956 +0.365222 0.929776 -0.046138 0.960032 0.035112 0.365297 0.929777 -0.045531 +0.425779 0.904827 -0 1.00003 0.047586 0.425778 0.904828 0.000594 +0.422422 0.904827 -0.053364 0.960032 0.047586 0.422495 0.904828 -0.052774 +0.368125 0.929776 -0 1.00003 0.035112 0.368123 0.929777 0.000611 +0.425779 0.904827 -0 1.00003 0.047586 0.425778 0.904828 0.000594 +0.365222 0.929776 -0.046138 0.960032 0.035112 0.365297 0.929777 -0.045531 +0.368125 0.929776 -0 1.00003 0.035112 0.368123 0.929777 0.000611 +0.422422 0.904827 0.053364 1.04003 0.047586 0.422346 0.904828 0.053954 +0.425779 0.904827 -0 1.00003 0.047586 0.425778 0.904828 0.000594 +0.365222 0.929776 0.046138 1.04003 0.035112 0.365144 0.929777 0.046744 +0.422422 0.904827 0.053364 1.04003 0.047586 0.422346 0.904828 0.053954 +0.368125 0.929776 -0 1.00003 0.035112 0.368123 0.929777 0.000611 +0.306581 0.951057 0.03873 1.04003 0.024472 0.306501 0.951057 0.03935 +0.35656 0.929776 0.091549 1.08003 0.035112 0.356406 0.929777 0.092142 +0.365222 0.929776 0.046138 1.04003 0.035112 0.365144 0.929777 0.046744 +0.299309 0.951057 0.076849 1.08003 0.024472 0.299151 0.951057 0.077455 +0.35656 0.929776 0.091549 1.08003 0.035112 0.356406 0.929777 0.092142 +0.306581 0.951057 0.03873 1.04003 0.024472 0.306501 0.951057 0.03935 +0.299309 0.951057 0.076849 1.08003 0.024472 0.299151 0.951057 0.077455 +0.342274 0.929776 0.135516 1.12003 0.035112 0.342047 0.929777 0.136084 +0.35656 0.929776 0.091549 1.08003 0.035112 0.356406 0.929777 0.092142 +0.287317 0.951057 0.113757 1.12003 0.024472 0.287085 0.951057 0.114339 +0.342274 0.929776 0.135516 1.12003 0.035112 0.342047 0.929777 0.136084 +0.299309 0.951057 0.076849 1.08003 0.024472 0.299151 0.951057 0.077455 +0.287317 0.951057 0.113757 1.12003 0.024472 0.287085 0.951057 0.114339 +0.32259 0.929776 0.177346 1.16003 0.035112 0.322294 0.929777 0.177881 +0.342274 0.929776 0.135516 1.12003 0.035112 0.342047 0.929777 0.136084 +0.270794 0.951057 0.14887 1.16003 0.024472 0.270491 0.951057 0.149419 +0.32259 0.929776 0.177346 1.16003 0.035112 0.322294 0.929777 0.177881 +0.287317 0.951057 0.113757 1.12003 0.024472 0.287085 0.951057 0.114339 +0.270794 0.951057 0.14887 1.16003 0.024472 0.270491 0.951057 0.149419 +0.297819 0.929776 0.216378 1.20003 0.035112 0.297458 0.929777 0.216873 +0.32259 0.929776 0.177346 1.16003 0.035112 0.322294 0.929777 0.177881 +0.25 0.951057 0.181636 1.20003 0.024472 0.249631 0.951057 0.182142 +0.297819 0.929776 0.216378 1.20003 0.035112 0.297458 0.929777 0.216873 +0.270794 0.951057 0.14887 1.16003 0.024472 0.270491 0.951057 0.149419 +0.25 0.951057 0.181636 1.20003 0.024472 0.249631 0.951057 0.182142 +0.268351 0.929776 0.251999 1.24003 0.035112 0.267931 0.929777 0.252444 +0.297819 0.929776 0.216378 1.20003 0.035112 0.297458 0.929777 0.216873 +0.225264 0.951057 0.211537 1.24003 0.024472 0.224834 0.951057 0.211992 +0.268351 0.929776 0.251999 1.24003 0.035112 0.267931 0.929777 0.252444 +0.25 0.951057 0.181636 1.20003 0.024472 0.249631 0.951057 0.182142 +0.225264 0.951057 0.211537 1.24003 0.024472 0.224834 0.951057 0.211992 +0.234652 0.929776 0.283645 1.28003 0.035112 0.234179 0.929777 0.284034 +0.268351 0.929776 0.251999 1.24003 0.035112 0.267931 0.929777 0.252444 +0.196975 0.951057 0.238102 1.28003 0.024472 0.196491 0.951057 0.2385 +0.234652 0.929776 0.283645 1.28003 0.035112 0.234179 0.929777 0.284034 +0.225264 0.951057 0.211537 1.24003 0.024472 0.224834 0.951057 0.211992 +0.196975 0.951057 0.238102 1.28003 0.024472 0.196491 0.951057 0.2385 +0.197251 0.929776 0.310818 1.32003 0.035112 0.196733 0.929777 0.311145 +0.234652 0.929776 0.283645 1.28003 0.035112 0.234179 0.929777 0.284034 +0.16558 0.951057 0.260912 1.32003 0.024472 0.16505 0.951057 0.261246 +0.197251 0.929776 0.310818 1.32003 0.035112 0.196733 0.929777 0.311145 +0.196975 0.951057 0.238102 1.28003 0.024472 0.196491 0.951057 0.2385 +0.16558 0.951057 0.260912 1.32003 0.024472 0.16505 0.951057 0.261246 +0.15674 0.929776 0.333089 1.36003 0.035112 0.156185 0.929777 0.333348 +0.197251 0.929776 0.310818 1.32003 0.035112 0.196733 0.929777 0.311145 +0.131573 0.951057 0.279607 1.36003 0.024472 0.131005 0.951057 0.279872 +0.15674 0.929776 0.333089 1.36003 0.035112 0.156185 0.929777 0.333348 +0.16558 0.951057 0.260912 1.32003 0.024472 0.16505 0.951057 0.261246 +0.131573 0.951057 0.279607 1.36003 0.024472 0.131005 0.951057 0.279872 +0.113757 0.929776 0.350108 1.40003 0.035112 0.113174 0.929777 0.350295 +0.15674 0.929776 0.333089 1.36003 0.035112 0.156185 0.929777 0.333348 +0.095492 0.951057 0.293893 1.40003 0.024472 0.094895 0.951057 0.294085 +0.113757 0.929776 0.350108 1.40003 0.035112 0.113174 0.929777 0.350295 +0.131573 0.951057 0.279607 1.36003 0.024472 0.131005 0.951057 0.279872 +0.095492 0.951057 0.293893 1.40003 0.024472 0.094895 0.951057 0.294085 +0.06898 0.929776 0.361604 1.44003 0.035112 0.068378 0.929777 0.361718 +0.113757 0.929776 0.350108 1.40003 0.035112 0.113174 0.929777 0.350295 +0.057904 0.951057 0.303544 1.44003 0.024472 0.057288 0.951057 0.30366 +0.06898 0.929776 0.361604 1.44003 0.035112 0.068378 0.929777 0.361718 +0.095492 0.951057 0.293893 1.40003 0.024472 0.094895 0.951057 0.294085 +0.057904 0.951057 0.303544 1.44003 0.024472 0.057288 0.951057 0.30366 +0.023115 0.929776 0.367398 1.48003 0.035112 0.022503 0.929777 0.367436 +0.06898 0.929776 0.361604 1.44003 0.035112 0.068378 0.929777 0.361718 +0.019403 0.951057 0.308407 1.48003 0.024472 0.018778 0.951057 0.308445 +0.023115 0.929776 0.367398 1.48003 0.035112 0.022503 0.929777 0.367436 +0.057904 0.951057 0.303544 1.44003 0.024472 0.057288 0.951057 0.30366 +0.019403 0.951057 0.308407 1.48003 0.024472 0.018778 0.951057 0.308445 +-0.023115 0.929776 0.367398 1.52003 0.035112 -0.023726 0.929777 0.367359 +0.023115 0.929776 0.367398 1.48003 0.035112 0.022503 0.929777 0.367436 +-0.019403 0.951057 0.308407 1.52003 0.024472 -0.020029 0.951057 0.308366 +-0.023115 0.929776 0.367398 1.52003 0.035112 -0.023726 0.929777 0.367359 +0.019403 0.951057 0.308407 1.48003 0.024472 0.018778 0.951057 0.308445 +-0.019403 0.951057 0.308407 -0.479968 0.024472 -0.020029 0.951057 0.308366 +-0.06898 0.929776 0.361604 -0.439968 0.035112 -0.069581 0.929777 0.361488 +-0.023115 0.929776 0.367398 -0.479968 0.035112 -0.023726 0.929777 0.367359 +-0.057904 0.951057 0.303544 -0.439968 0.024472 -0.058519 0.951057 0.303424 +-0.06898 0.929776 0.361604 -0.439968 0.035112 -0.069581 0.929777 0.361488 +-0.019403 0.951057 0.308407 -0.479968 0.024472 -0.020029 0.951057 0.308366 +-0.057904 0.951057 0.303544 -0.439968 0.024472 -0.058519 0.951057 0.303424 +-0.113757 0.929776 0.350107 -0.399968 0.035112 -0.114339 0.929777 0.349916 +-0.06898 0.929776 0.361604 -0.439968 0.035112 -0.069581 0.929777 0.361488 +-0.095492 0.951057 0.293893 -0.399968 0.024472 -0.096087 0.951057 0.293698 +-0.113757 0.929776 0.350107 -0.399968 0.035112 -0.114339 0.929777 0.349916 +-0.057904 0.951057 0.303544 -0.439968 0.024472 -0.058519 0.951057 0.303424 +-0.095492 0.951057 0.293893 -0.399968 0.024472 -0.096087 0.951057 0.293698 +-0.15674 0.929776 0.333089 -0.359968 0.035112 -0.157293 0.929777 0.332827 +-0.113757 0.929776 0.350107 -0.399968 0.035112 -0.114339 0.929777 0.349916 +-0.131573 0.951057 0.279607 -0.359968 0.024472 -0.132139 0.951057 0.279339 +-0.15674 0.929776 0.333089 -0.359968 0.035112 -0.157293 0.929777 0.332827 +-0.095492 0.951057 0.293893 -0.399968 0.024472 -0.096087 0.951057 0.293698 +-0.131573 0.951057 0.279607 -0.359968 0.024472 -0.132139 0.951057 0.279339 +-0.197251 0.929776 0.310818 -0.319968 0.035112 -0.197767 0.929777 0.310488 +-0.15674 0.929776 0.333089 -0.359968 0.035112 -0.157293 0.929777 0.332827 +-0.16558 0.951057 0.260912 -0.319968 0.024472 -0.166108 0.951057 0.260575 +-0.197251 0.929776 0.310818 -0.319968 0.035112 -0.197767 0.929777 0.310488 +-0.131573 0.951057 0.279607 -0.359968 0.024472 -0.132139 0.951057 0.279339 +-0.16558 0.951057 0.260912 -0.319968 0.024472 -0.166108 0.951057 0.260575 +-0.234652 0.929776 0.283645 -0.279968 0.035112 -0.235123 0.929777 0.283254 +-0.197251 0.929776 0.310818 -0.319968 0.035112 -0.197767 0.929777 0.310488 +-0.196975 0.951057 0.238102 -0.279968 0.024472 -0.197457 0.951057 0.237701 +-0.234652 0.929776 0.283645 -0.279968 0.035112 -0.235123 0.929777 0.283254 +-0.16558 0.951057 0.260912 -0.319968 0.024472 -0.166108 0.951057 0.260575 +-0.196975 0.951057 0.238102 -0.279968 0.024472 -0.197457 0.951057 0.237701 +-0.268351 0.929776 0.251999 -0.239968 0.035112 -0.26877 0.929777 0.251551 +-0.234652 0.929776 0.283645 -0.279968 0.035112 -0.235123 0.929777 0.283254 +-0.225264 0.951057 0.211537 -0.239968 0.024472 -0.225692 0.951057 0.21108 +-0.268351 0.929776 0.251999 -0.239968 0.035112 -0.26877 0.929777 0.251551 +-0.196975 0.951057 0.238102 -0.279968 0.024472 -0.197457 0.951057 0.237701 +-0.225264 0.951057 0.211537 -0.239968 0.024472 -0.225692 0.951057 0.21108 +-0.297819 0.929776 0.216378 -0.199968 0.035112 -0.298178 0.929777 0.215882 +-0.268351 0.929776 0.251999 -0.239968 0.035112 -0.26877 0.929777 0.251551 +-0.25 0.951057 0.181636 -0.199968 0.024472 -0.250367 0.951057 0.181129 +-0.297819 0.929776 0.216378 -0.199968 0.035112 -0.298178 0.929777 0.215882 +-0.225264 0.951057 0.211537 -0.239968 0.024472 -0.225692 0.951057 0.21108 +-0.25 0.951057 0.181636 -0.199968 0.024472 -0.250367 0.951057 0.181129 +-0.32259 0.929776 0.177345 -0.159968 0.035112 -0.322884 0.929777 0.176808 +-0.297819 0.929776 0.216378 -0.199968 0.035112 -0.298178 0.929777 0.215882 +-0.270794 0.951057 0.14887 -0.159968 0.024472 -0.271095 0.951057 0.14832 +-0.32259 0.929776 0.177345 -0.159968 0.035112 -0.322884 0.929777 0.176808 +-0.25 0.951057 0.181636 -0.199968 0.024472 -0.250367 0.951057 0.181129 +-0.270794 0.951057 0.14887 -0.159968 0.024472 -0.271095 0.951057 0.14832 +-0.342274 0.929776 0.135516 -0.119968 0.035112 -0.342498 0.929777 0.134945 +-0.32259 0.929776 0.177345 -0.159968 0.035112 -0.322884 0.929777 0.176808 +-0.287317 0.951057 0.113757 -0.119968 0.024472 -0.287546 0.951057 0.113175 +-0.342274 0.929776 0.135516 -0.119968 0.035112 -0.342498 0.929777 0.134945 +-0.270794 0.951057 0.14887 -0.159968 0.024472 -0.271095 0.951057 0.14832 +-0.287317 0.951057 0.113757 -0.119968 0.024472 -0.287546 0.951057 0.113175 +-0.356559 0.929776 0.091549 -0.079968 0.035112 -0.35671 0.929777 0.090955 +-0.342274 0.929776 0.135516 -0.119968 0.035112 -0.342498 0.929777 0.134945 +-0.299309 0.951057 0.076849 -0.079968 0.024472 -0.299463 0.951057 0.076242 +-0.356559 0.929776 0.091549 -0.079968 0.035112 -0.35671 0.929777 0.090955 +-0.287317 0.951057 0.113757 -0.119968 0.024472 -0.287546 0.951057 0.113175 +-0.299309 0.951057 0.076849 -0.079968 0.024472 -0.299463 0.951057 0.076242 +-0.365222 0.929776 0.046138 -0.039968 0.035112 -0.365297 0.929777 0.04553 +-0.356559 0.929776 0.091549 -0.079968 0.035112 -0.35671 0.929777 0.090955 +-0.306581 0.951057 0.03873 -0.039968 0.024472 -0.306658 0.951057 0.038108 +-0.365222 0.929776 0.046138 -0.039968 0.035112 -0.365297 0.929777 0.04553 +-0.299309 0.951057 0.076849 -0.079968 0.024472 -0.299463 0.951057 0.076242 +-0.306581 0.951057 0.03873 -0.039968 0.024472 -0.306658 0.951057 0.038108 +-0.368125 0.929776 -0 3.2e-005 0.035112 -0.368123 0.929777 -0.000613 +-0.365222 0.929776 0.046138 -0.039968 0.035112 -0.365297 0.929777 0.04553 +-0.309017 0.951057 -0 3.2e-005 0.024472 -0.309016 0.951057 -0.000627 +-0.368125 0.929776 -0 3.2e-005 0.035112 -0.368123 0.929777 -0.000613 +-0.306581 0.951057 0.03873 -0.039968 0.024472 -0.306658 0.951057 0.038108 +-0.309017 0.951057 -0 3.2e-005 0.024472 -0.309016 0.951057 -0.000627 +-0.365222 0.929776 -0.046138 0.040032 0.035112 -0.365144 0.929777 -0.046746 +-0.368125 0.929776 -0 3.2e-005 0.035112 -0.368123 0.929777 -0.000613 +-0.30658 0.951057 -0.03873 0.040032 0.024472 -0.306501 0.951057 -0.039352 +-0.365222 0.929776 -0.046138 0.040032 0.035112 -0.365144 0.929777 -0.046746 +-0.309017 0.951057 -0 3.2e-005 0.024472 -0.309016 0.951057 -0.000627 +-0.30658 0.951057 -0.03873 0.040032 0.024472 -0.306501 0.951057 -0.039352 +-0.356559 0.929776 -0.091549 0.080032 0.035112 -0.356406 0.929777 -0.092141 +-0.365222 0.929776 -0.046138 0.040032 0.035112 -0.365144 0.929777 -0.046746 +-0.299309 0.951057 -0.076849 0.080032 0.024472 -0.299152 0.951057 -0.077456 +-0.356559 0.929776 -0.091549 0.080032 0.035112 -0.356406 0.929777 -0.092141 +-0.30658 0.951057 -0.03873 0.040032 0.024472 -0.306501 0.951057 -0.039352 +-0.299309 0.951057 -0.076849 0.080032 0.024472 -0.299152 0.951057 -0.077456 +-0.342274 0.929776 -0.135516 0.120032 0.035112 -0.342047 0.929777 -0.136085 +-0.356559 0.929776 -0.091549 0.080032 0.035112 -0.356406 0.929777 -0.092141 +-0.287317 0.951057 -0.113757 0.120032 0.024472 -0.287085 0.951057 -0.114338 +-0.342274 0.929776 -0.135516 0.120032 0.035112 -0.342047 0.929777 -0.136085 +-0.299309 0.951057 -0.076849 0.080032 0.024472 -0.299152 0.951057 -0.077456 +-0.287317 0.951057 -0.113757 0.120032 0.024472 -0.287085 0.951057 -0.114338 +-0.32259 0.929776 -0.177345 0.160032 0.035112 -0.322294 0.929777 -0.177881 +-0.342274 0.929776 -0.135516 0.120032 0.035112 -0.342047 0.929777 -0.136085 +-0.270794 0.951057 -0.14887 0.160032 0.024472 -0.270491 0.951057 -0.149419 +-0.32259 0.929776 -0.177345 0.160032 0.035112 -0.322294 0.929777 -0.177881 +-0.287317 0.951057 -0.113757 0.120032 0.024472 -0.287085 0.951057 -0.114338 +-0.270794 0.951057 -0.14887 0.160032 0.024472 -0.270491 0.951057 -0.149419 +-0.297819 0.929776 -0.216378 0.200032 0.035112 -0.297458 0.929777 -0.216874 +-0.32259 0.929776 -0.177345 0.160032 0.035112 -0.322294 0.929777 -0.177881 +-0.25 0.951057 -0.181636 0.200032 0.024472 -0.249631 0.951057 -0.182142 +-0.297819 0.929776 -0.216378 0.200032 0.035112 -0.297458 0.929777 -0.216874 +-0.270794 0.951057 -0.14887 0.160032 0.024472 -0.270491 0.951057 -0.149419 +-0.25 0.951057 -0.181636 0.200032 0.024472 -0.249631 0.951057 -0.182142 +-0.268351 0.929776 -0.251999 0.240032 0.035112 -0.267931 0.929777 -0.252445 +-0.297819 0.929776 -0.216378 0.200032 0.035112 -0.297458 0.929777 -0.216874 +-0.225264 0.951057 -0.211537 0.240032 0.024472 -0.224834 0.951057 -0.211993 +-0.268351 0.929776 -0.251999 0.240032 0.035112 -0.267931 0.929777 -0.252445 +-0.25 0.951057 -0.181636 0.200032 0.024472 -0.249631 0.951057 -0.182142 +-0.225264 0.951057 -0.211537 0.240032 0.024472 -0.224834 0.951057 -0.211993 +-0.234651 0.929776 -0.283645 0.280032 0.035112 -0.234179 0.929777 -0.284034 +-0.268351 0.929776 -0.251999 0.240032 0.035112 -0.267931 0.929777 -0.252445 +-0.196975 0.951057 -0.238102 0.280032 0.024472 -0.196491 0.951057 -0.238501 +-0.234651 0.929776 -0.283645 0.280032 0.035112 -0.234179 0.929777 -0.284034 +-0.225264 0.951057 -0.211537 0.240032 0.024472 -0.224834 0.951057 -0.211993 +-0.196975 0.951057 -0.238102 0.280032 0.024472 -0.196491 0.951057 -0.238501 +-0.197251 0.929776 -0.310818 0.320032 0.035112 -0.196733 0.929777 -0.311145 +-0.234651 0.929776 -0.283645 0.280032 0.035112 -0.234179 0.929777 -0.284034 +-0.16558 0.951057 -0.260912 0.320032 0.024472 -0.16505 0.951057 -0.261246 +-0.197251 0.929776 -0.310818 0.320032 0.035112 -0.196733 0.929777 -0.311145 +-0.196975 0.951057 -0.238102 0.280032 0.024472 -0.196491 0.951057 -0.238501 +-0.16558 0.951057 -0.260912 0.320032 0.024472 -0.16505 0.951057 -0.261246 +-0.15674 0.929776 -0.333089 0.360032 0.035112 -0.156185 0.929777 -0.333349 +-0.197251 0.929776 -0.310818 0.320032 0.035112 -0.196733 0.929777 -0.311145 +-0.131573 0.951057 -0.279607 0.360032 0.024472 -0.131005 0.951057 -0.279873 +-0.15674 0.929776 -0.333089 0.360032 0.035112 -0.156185 0.929777 -0.333349 +-0.16558 0.951057 -0.260912 0.320032 0.024472 -0.16505 0.951057 -0.261246 +-0.131573 0.951057 -0.279607 0.360032 0.024472 -0.131005 0.951057 -0.279873 +-0.113757 0.929776 -0.350107 0.400032 0.035112 -0.113174 0.929777 -0.350296 +-0.15674 0.929776 -0.333089 0.360032 0.035112 -0.156185 0.929777 -0.333349 +-0.095492 0.951057 -0.293893 0.400032 0.024472 -0.094895 0.951057 -0.294085 +-0.113757 0.929776 -0.350107 0.400032 0.035112 -0.113174 0.929777 -0.350296 +-0.131573 0.951057 -0.279607 0.360032 0.024472 -0.131005 0.951057 -0.279873 +-0.095492 0.951057 -0.293893 0.400032 0.024472 -0.094895 0.951057 -0.294085 +-0.06898 0.929776 -0.361604 0.440032 0.035112 -0.068378 0.929777 -0.361717 +-0.113757 0.929776 -0.350107 0.400032 0.035112 -0.113174 0.929777 -0.350296 +-0.057904 0.951057 -0.303544 0.440032 0.024472 -0.057288 0.951057 -0.303659 +-0.06898 0.929776 -0.361604 0.440032 0.035112 -0.068378 0.929777 -0.361717 +-0.095492 0.951057 -0.293893 0.400032 0.024472 -0.094895 0.951057 -0.294085 +-0.057904 0.951057 -0.303544 0.440032 0.024472 -0.057288 0.951057 -0.303659 +-0.023115 0.929776 -0.367398 0.480032 0.035112 -0.022503 0.929777 -0.367435 +-0.06898 0.929776 -0.361604 0.440032 0.035112 -0.068378 0.929777 -0.361717 +-0.019403 0.951057 -0.308407 0.480032 0.024472 -0.018778 0.951057 -0.308445 +-0.023115 0.929776 -0.367398 0.480032 0.035112 -0.022503 0.929777 -0.367435 +-0.057904 0.951057 -0.303544 0.440032 0.024472 -0.057288 0.951057 -0.303659 +-0.019403 0.951057 -0.308407 0.480032 0.024472 -0.018778 0.951057 -0.308445 +0.023115 0.929776 -0.367398 0.520032 0.035112 0.023726 0.929777 -0.367358 +-0.023115 0.929776 -0.367398 0.480032 0.035112 -0.022503 0.929777 -0.367435 +0.019403 0.951057 -0.308407 0.520032 0.024472 0.020029 0.951057 -0.308367 +0.023115 0.929776 -0.367398 0.520032 0.035112 0.023726 0.929777 -0.367358 +-0.019403 0.951057 -0.308407 0.480032 0.024472 -0.018778 0.951057 -0.308445 +0.019403 0.951057 -0.308407 0.520032 0.024472 0.020029 0.951057 -0.308367 +0.06898 0.929776 -0.361604 0.560032 0.035112 0.069581 0.929777 -0.361488 +0.023115 0.929776 -0.367398 0.520032 0.035112 0.023726 0.929777 -0.367358 +0.057904 0.951057 -0.303544 0.560032 0.024472 0.058519 0.951057 -0.303425 +0.06898 0.929776 -0.361604 0.560032 0.035112 0.069581 0.929777 -0.361488 +0.019403 0.951057 -0.308407 0.520032 0.024472 0.020029 0.951057 -0.308367 +0.057904 0.951057 -0.303544 0.560032 0.024472 0.058519 0.951057 -0.303425 +0.113757 0.929776 -0.350107 0.600032 0.035112 0.114339 0.929777 -0.349917 +0.06898 0.929776 -0.361604 0.560032 0.035112 0.069581 0.929777 -0.361488 +0.095492 0.951057 -0.293893 0.600032 0.024472 0.096087 0.951057 -0.293698 +0.113757 0.929776 -0.350107 0.600032 0.035112 0.114339 0.929777 -0.349917 +0.057904 0.951057 -0.303544 0.560032 0.024472 0.058519 0.951057 -0.303425 +0.095492 0.951057 -0.293893 0.600032 0.024472 0.096087 0.951057 -0.293698 +0.15674 0.929776 -0.333089 0.640032 0.035112 0.157294 0.929777 -0.332828 +0.113757 0.929776 -0.350107 0.600032 0.035112 0.114339 0.929777 -0.349917 +0.131573 0.951057 -0.279607 0.640032 0.024472 0.13214 0.951057 -0.279339 +0.15674 0.929776 -0.333089 0.640032 0.035112 0.157294 0.929777 -0.332828 +0.095492 0.951057 -0.293893 0.600032 0.024472 0.096087 0.951057 -0.293698 +0.131573 0.951057 -0.279607 0.640032 0.024472 0.13214 0.951057 -0.279339 +0.197251 0.929776 -0.310818 0.680032 0.035112 0.197768 0.929777 -0.310489 +0.15674 0.929776 -0.333089 0.640032 0.035112 0.157294 0.929777 -0.332828 +0.16558 0.951057 -0.260912 0.680032 0.024472 0.166108 0.951057 -0.260575 +0.197251 0.929776 -0.310818 0.680032 0.035112 0.197768 0.929777 -0.310489 +0.131573 0.951057 -0.279607 0.640032 0.024472 0.13214 0.951057 -0.279339 +0.16558 0.951057 -0.260912 0.680032 0.024472 0.166108 0.951057 -0.260575 +0.234651 0.929776 -0.283645 0.720032 0.035112 0.235123 0.929777 -0.283254 +0.197251 0.929776 -0.310818 0.680032 0.035112 0.197768 0.929777 -0.310489 +0.196975 0.951057 -0.238102 0.720032 0.024472 0.197457 0.951057 -0.237702 +0.234651 0.929776 -0.283645 0.720032 0.035112 0.235123 0.929777 -0.283254 +0.16558 0.951057 -0.260912 0.680032 0.024472 0.166108 0.951057 -0.260575 +0.196975 0.951057 -0.238102 0.720032 0.024472 0.197457 0.951057 -0.237702 +0.268351 0.929776 -0.251999 0.760032 0.035112 0.26877 0.929777 -0.251552 +0.234651 0.929776 -0.283645 0.720032 0.035112 0.235123 0.929777 -0.283254 +0.225264 0.951057 -0.211537 0.760032 0.024472 0.225692 0.951057 -0.211079 +0.268351 0.929776 -0.251999 0.760032 0.035112 0.26877 0.929777 -0.251552 +0.196975 0.951057 -0.238102 0.720032 0.024472 0.197457 0.951057 -0.237702 +0.225264 0.951057 -0.211537 0.760032 0.024472 0.225692 0.951057 -0.211079 +0.297819 0.929776 -0.216378 0.800032 0.035112 0.298178 0.929777 -0.215882 +0.268351 0.929776 -0.251999 0.760032 0.035112 0.26877 0.929777 -0.251552 +0.25 0.951057 -0.181636 0.800032 0.024472 0.250368 0.951057 -0.181128 +0.297819 0.929776 -0.216378 0.800032 0.035112 0.298178 0.929777 -0.215882 +0.225264 0.951057 -0.211537 0.760032 0.024472 0.225692 0.951057 -0.211079 +0.25 0.951057 -0.181636 0.800032 0.024472 0.250368 0.951057 -0.181128 +0.32259 0.929776 -0.177345 0.840032 0.035112 0.322884 0.929777 -0.176808 +0.297819 0.929776 -0.216378 0.800032 0.035112 0.298178 0.929777 -0.215882 +0.270794 0.951057 -0.14887 0.840032 0.024472 0.271095 0.951057 -0.14832 +0.32259 0.929776 -0.177345 0.840032 0.035112 0.322884 0.929777 -0.176808 +0.25 0.951057 -0.181636 0.800032 0.024472 0.250368 0.951057 -0.181128 +0.270794 0.951057 -0.14887 0.840032 0.024472 0.271095 0.951057 -0.14832 +0.342274 0.929776 -0.135516 0.880032 0.035112 0.342498 0.929777 -0.134945 +0.32259 0.929776 -0.177345 0.840032 0.035112 0.322884 0.929777 -0.176808 +0.287317 0.951057 -0.113757 0.880032 0.024472 0.287546 0.951057 -0.113174 +0.342274 0.929776 -0.135516 0.880032 0.035112 0.342498 0.929777 -0.134945 +0.270794 0.951057 -0.14887 0.840032 0.024472 0.271095 0.951057 -0.14832 +0.287317 0.951057 -0.113757 0.880032 0.024472 0.287546 0.951057 -0.113174 +0.356559 0.929776 -0.091549 0.920032 0.035112 0.35671 0.929777 -0.090956 +0.342274 0.929776 -0.135516 0.880032 0.035112 0.342498 0.929777 -0.134945 +0.299309 0.951057 -0.076849 0.920032 0.024472 0.299463 0.951057 -0.076243 +0.356559 0.929776 -0.091549 0.920032 0.035112 0.35671 0.929777 -0.090956 +0.287317 0.951057 -0.113757 0.880032 0.024472 0.287546 0.951057 -0.113174 +0.299309 0.951057 -0.076849 0.920032 0.024472 0.299463 0.951057 -0.076243 +0.365222 0.929776 -0.046138 0.960032 0.035112 0.365297 0.929777 -0.045531 +0.356559 0.929776 -0.091549 0.920032 0.035112 0.35671 0.929777 -0.090956 +0.30658 0.951057 -0.03873 0.960032 0.024472 0.306658 0.951057 -0.038108 +0.365222 0.929776 -0.046138 0.960032 0.035112 0.365297 0.929777 -0.045531 +0.299309 0.951057 -0.076849 0.920032 0.024472 0.299463 0.951057 -0.076243 +0.30658 0.951057 -0.03873 0.960032 0.024472 0.306658 0.951057 -0.038108 +0.368125 0.929776 -0 1.00003 0.035112 0.368123 0.929777 0.000611 +0.365222 0.929776 -0.046138 0.960032 0.035112 0.365297 0.929777 -0.045531 +0.309017 0.951057 -0 1.00003 0.024472 0.309016 0.951057 0.000624 +0.368125 0.929776 -0 1.00003 0.035112 0.368123 0.929777 0.000611 +0.30658 0.951057 -0.03873 0.960032 0.024472 0.306658 0.951057 -0.038108 +0.309017 0.951057 -0 1.00003 0.024472 0.309016 0.951057 0.000624 +0.365222 0.929776 0.046138 1.04003 0.035112 0.365144 0.929777 0.046744 +0.368125 0.929776 -0 1.00003 0.035112 0.368123 0.929777 0.000611 +0.306581 0.951057 0.03873 1.04003 0.024472 0.306501 0.951057 0.03935 +0.365222 0.929776 0.046138 1.04003 0.035112 0.365144 0.929777 0.046744 +0.309017 0.951057 -0 1.00003 0.024472 0.309016 0.951057 0.000624 +0.246729 0.968583 0.031169 1.04003 0.015708 0.246648 0.968583 0.031801 +0.299309 0.951057 0.076849 1.08003 0.024472 0.299151 0.951057 0.077455 +0.306581 0.951057 0.03873 1.04003 0.024472 0.306501 0.951057 0.03935 +0.240877 0.968583 0.061847 1.08003 0.015708 0.240717 0.968583 0.062464 +0.299309 0.951057 0.076849 1.08003 0.024472 0.299151 0.951057 0.077455 +0.246729 0.968583 0.031169 1.04003 0.015708 0.246648 0.968583 0.031801 +0.240877 0.968583 0.061847 1.08003 0.015708 0.240717 0.968583 0.062464 +0.287317 0.951057 0.113757 1.12003 0.024472 0.287085 0.951057 0.114339 +0.299309 0.951057 0.076849 1.08003 0.024472 0.299151 0.951057 0.077455 +0.231226 0.968583 0.091549 1.12003 0.015708 0.23099 0.968583 0.092141 +0.287317 0.951057 0.113757 1.12003 0.024472 0.287085 0.951057 0.114339 +0.240877 0.968583 0.061847 1.08003 0.015708 0.240717 0.968583 0.062464 +0.231226 0.968583 0.091549 1.12003 0.015708 0.23099 0.968583 0.092141 +0.270794 0.951057 0.14887 1.16003 0.024472 0.270491 0.951057 0.149419 +0.287317 0.951057 0.113757 1.12003 0.024472 0.287085 0.951057 0.114339 +0.217929 0.968583 0.119807 1.16003 0.015708 0.21762 0.968584 0.120365 +0.270794 0.951057 0.14887 1.16003 0.024472 0.270491 0.951057 0.149419 +0.231226 0.968583 0.091549 1.12003 0.015708 0.23099 0.968583 0.092141 +0.217929 0.968583 0.119807 1.16003 0.015708 0.21762 0.968584 0.120365 +0.25 0.951057 0.181636 1.20003 0.024472 0.249631 0.951057 0.182142 +0.270794 0.951057 0.14887 1.16003 0.024472 0.270491 0.951057 0.149419 +0.201195 0.968583 0.146176 1.20003 0.015708 0.200818 0.968583 0.146692 +0.25 0.951057 0.181636 1.20003 0.024472 0.249631 0.951057 0.182142 +0.217929 0.968583 0.119807 1.16003 0.015708 0.21762 0.968584 0.120365 +0.201195 0.968583 0.146176 1.20003 0.015708 0.200818 0.968583 0.146692 +0.225264 0.951057 0.211537 1.24003 0.024472 0.224834 0.951057 0.211992 +0.25 0.951057 0.181636 1.20003 0.024472 0.249631 0.951057 0.182142 +0.181287 0.968583 0.17024 1.24003 0.015708 0.180849 0.968583 0.170704 +0.225264 0.951057 0.211537 1.24003 0.024472 0.224834 0.951057 0.211992 +0.201195 0.968583 0.146176 1.20003 0.015708 0.200818 0.968583 0.146692 +0.181287 0.968583 0.17024 1.24003 0.015708 0.180849 0.968583 0.170704 +0.196975 0.951057 0.238102 1.28003 0.024472 0.196491 0.951057 0.2385 +0.225264 0.951057 0.211537 1.24003 0.024472 0.224834 0.951057 0.211992 +0.158521 0.968583 0.191619 1.28003 0.015708 0.158028 0.968583 0.192025 +0.196975 0.951057 0.238102 1.28003 0.024472 0.196491 0.951057 0.2385 +0.181287 0.968583 0.17024 1.24003 0.015708 0.180849 0.968583 0.170704 +0.158521 0.968583 0.191619 1.28003 0.015708 0.158028 0.968583 0.192025 +0.16558 0.951057 0.260912 1.32003 0.024472 0.16505 0.951057 0.261246 +0.196975 0.951057 0.238102 1.28003 0.024472 0.196491 0.951057 0.2385 +0.133255 0.968583 0.209976 1.32003 0.015708 0.132715 0.968583 0.210317 +0.16558 0.951057 0.260912 1.32003 0.024472 0.16505 0.951057 0.261246 +0.158521 0.968583 0.191619 1.28003 0.015708 0.158028 0.968583 0.192025 +0.133255 0.968583 0.209976 1.32003 0.015708 0.132715 0.968583 0.210317 +0.131573 0.951057 0.279607 1.36003 0.024472 0.131005 0.951057 0.279872 +0.16558 0.951057 0.260912 1.32003 0.024472 0.16505 0.951057 0.261246 +0.105887 0.968583 0.225022 1.36003 0.015708 0.105309 0.968584 0.225291 +0.131573 0.951057 0.279607 1.36003 0.024472 0.131005 0.951057 0.279872 +0.133255 0.968583 0.209976 1.32003 0.015708 0.132715 0.968583 0.210317 +0.105887 0.968583 0.225022 1.36003 0.015708 0.105309 0.968584 0.225291 +0.095492 0.951057 0.293893 1.40003 0.024472 0.094895 0.951057 0.294085 +0.131573 0.951057 0.279607 1.36003 0.024472 0.131005 0.951057 0.279872 +0.076849 0.968583 0.236518 1.40003 0.015708 0.076242 0.968584 0.236714 +0.095492 0.951057 0.293893 1.40003 0.024472 0.094895 0.951057 0.294085 +0.105887 0.968583 0.225022 1.36003 0.015708 0.105309 0.968584 0.225291 +0.076849 0.968583 0.236518 1.40003 0.015708 0.076242 0.968584 0.236714 +0.057904 0.951057 0.303544 1.44003 0.024472 0.057288 0.951057 0.30366 +0.095492 0.951057 0.293893 1.40003 0.024472 0.094895 0.951057 0.294085 +0.0466 0.968583 0.244285 1.44003 0.015708 0.045973 0.968583 0.244403 +0.057904 0.951057 0.303544 1.44003 0.024472 0.057288 0.951057 0.30366 +0.076849 0.968583 0.236518 1.40003 0.015708 0.076242 0.968584 0.236714 +0.0466 0.968583 0.244285 1.44003 0.015708 0.045973 0.968583 0.244403 +0.019403 0.951057 0.308407 1.48003 0.024472 0.018778 0.951057 0.308445 +0.057904 0.951057 0.303544 1.44003 0.024472 0.057288 0.951057 0.30366 +0.015615 0.968583 0.248199 1.48003 0.015708 0.014978 0.968584 0.248237 +0.019403 0.951057 0.308407 1.48003 0.024472 0.018778 0.951057 0.308445 +0.0466 0.968583 0.244285 1.44003 0.015708 0.045973 0.968583 0.244403 +0.015615 0.968583 0.248199 1.48003 0.015708 0.014978 0.968584 0.248237 +-0.019403 0.951057 0.308407 1.52003 0.024472 -0.020029 0.951057 0.308366 +0.019403 0.951057 0.308407 1.48003 0.024472 0.018778 0.951057 0.308445 +-0.015615 0.968583 0.248199 1.52003 0.015708 -0.016252 0.968583 0.248158 +-0.019403 0.951057 0.308407 1.52003 0.024472 -0.020029 0.951057 0.308366 +0.015615 0.968583 0.248199 1.48003 0.015708 0.014978 0.968584 0.248237 +-0.015615 0.968583 0.248199 -0.479968 0.015708 -0.016252 0.968583 0.248158 +-0.057904 0.951057 0.303544 -0.439968 0.024472 -0.058519 0.951057 0.303424 +-0.019403 0.951057 0.308407 -0.479968 0.024472 -0.020029 0.951057 0.308366 +-0.0466 0.968583 0.244285 -0.439968 0.015708 -0.047227 0.968583 0.244164 +-0.057904 0.951057 0.303544 -0.439968 0.024472 -0.058519 0.951057 0.303424 +-0.015615 0.968583 0.248199 -0.479968 0.015708 -0.016252 0.968583 0.248158 +-0.0466 0.968583 0.244285 -0.439968 0.015708 -0.047227 0.968583 0.244164 +-0.095492 0.951057 0.293893 -0.399968 0.024472 -0.096087 0.951057 0.293698 +-0.057904 0.951057 0.303544 -0.439968 0.024472 -0.058519 0.951057 0.303424 +-0.076849 0.968583 0.236518 -0.399968 0.015708 -0.077456 0.968583 0.23632 +-0.095492 0.951057 0.293893 -0.399968 0.024472 -0.096087 0.951057 0.293698 +-0.0466 0.968583 0.244285 -0.439968 0.015708 -0.047227 0.968583 0.244164 +-0.076849 0.968583 0.236518 -0.399968 0.015708 -0.077456 0.968583 0.23632 +-0.131573 0.951057 0.279607 -0.359968 0.024472 -0.132139 0.951057 0.279339 +-0.095492 0.951057 0.293893 -0.399968 0.024472 -0.096087 0.951057 0.293698 +-0.105887 0.968583 0.225021 -0.359968 0.015708 -0.106464 0.968583 0.224748 +-0.131573 0.951057 0.279607 -0.359968 0.024472 -0.132139 0.951057 0.279339 +-0.076849 0.968583 0.236518 -0.399968 0.015708 -0.077456 0.968583 0.23632 +-0.105887 0.968583 0.225021 -0.359968 0.015708 -0.106464 0.968583 0.224748 +-0.16558 0.951057 0.260912 -0.319968 0.024472 -0.166108 0.951057 0.260575 +-0.131573 0.951057 0.279607 -0.359968 0.024472 -0.132139 0.951057 0.279339 +-0.133255 0.968583 0.209976 -0.319968 0.015708 -0.133793 0.968583 0.209633 +-0.16558 0.951057 0.260912 -0.319968 0.024472 -0.166108 0.951057 0.260575 +-0.105887 0.968583 0.225021 -0.359968 0.015708 -0.106464 0.968583 0.224748 +-0.133255 0.968583 0.209976 -0.319968 0.015708 -0.133793 0.968583 0.209633 +-0.196975 0.951057 0.238102 -0.279968 0.024472 -0.197457 0.951057 0.237701 +-0.16558 0.951057 0.260912 -0.319968 0.024472 -0.166108 0.951057 0.260575 +-0.158521 0.968583 0.191619 -0.279968 0.015708 -0.159012 0.968583 0.191211 +-0.196975 0.951057 0.238102 -0.279968 0.024472 -0.197457 0.951057 0.237701 +-0.133255 0.968583 0.209976 -0.319968 0.015708 -0.133793 0.968583 0.209633 +-0.158521 0.968583 0.191619 -0.279968 0.015708 -0.159012 0.968583 0.191211 +-0.225264 0.951057 0.211537 -0.239968 0.024472 -0.225692 0.951057 0.21108 +-0.196975 0.951057 0.238102 -0.279968 0.024472 -0.197457 0.951057 0.237701 +-0.181287 0.968583 0.17024 -0.239968 0.015708 -0.181723 0.968583 0.169775 +-0.225264 0.951057 0.211537 -0.239968 0.024472 -0.225692 0.951057 0.21108 +-0.158521 0.968583 0.191619 -0.279968 0.015708 -0.159012 0.968583 0.191211 +-0.181287 0.968583 0.17024 -0.239968 0.015708 -0.181723 0.968583 0.169775 +-0.25 0.951057 0.181636 -0.199968 0.024472 -0.250367 0.951057 0.181129 +-0.225264 0.951057 0.211537 -0.239968 0.024472 -0.225692 0.951057 0.21108 +-0.201194 0.968583 0.146176 -0.199968 0.015708 -0.201568 0.968583 0.145659 +-0.25 0.951057 0.181636 -0.199968 0.024472 -0.250367 0.951057 0.181129 +-0.181287 0.968583 0.17024 -0.239968 0.015708 -0.181723 0.968583 0.169775 +-0.201194 0.968583 0.146176 -0.199968 0.015708 -0.201568 0.968583 0.145659 +-0.270794 0.951057 0.14887 -0.159968 0.024472 -0.271095 0.951057 0.14832 +-0.25 0.951057 0.181636 -0.199968 0.024472 -0.250367 0.951057 0.181129 +-0.217929 0.968583 0.119807 -0.159968 0.015708 -0.218235 0.968584 0.119246 +-0.270794 0.951057 0.14887 -0.159968 0.024472 -0.271095 0.951057 0.14832 +-0.201194 0.968583 0.146176 -0.199968 0.015708 -0.201568 0.968583 0.145659 +-0.217929 0.968583 0.119807 -0.159968 0.015708 -0.218235 0.968584 0.119246 +-0.287317 0.951057 0.113757 -0.119968 0.024472 -0.287546 0.951057 0.113175 +-0.270794 0.951057 0.14887 -0.159968 0.024472 -0.271095 0.951057 0.14832 +-0.231226 0.968583 0.091549 -0.119968 0.015708 -0.23146 0.968583 0.090955 +-0.287317 0.951057 0.113757 -0.119968 0.024472 -0.287546 0.951057 0.113175 +-0.217929 0.968583 0.119807 -0.159968 0.015708 -0.218235 0.968584 0.119246 +-0.231226 0.968583 0.091549 -0.119968 0.015708 -0.23146 0.968583 0.090955 +-0.299309 0.951057 0.076849 -0.079968 0.024472 -0.299463 0.951057 0.076242 +-0.287317 0.951057 0.113757 -0.119968 0.024472 -0.287546 0.951057 0.113175 +-0.240877 0.968583 0.061847 -0.079968 0.015708 -0.241034 0.968583 0.061228 +-0.299309 0.951057 0.076849 -0.079968 0.024472 -0.299463 0.951057 0.076242 +-0.231226 0.968583 0.091549 -0.119968 0.015708 -0.23146 0.968583 0.090955 +-0.240877 0.968583 0.061847 -0.079968 0.015708 -0.241034 0.968583 0.061228 +-0.306581 0.951057 0.03873 -0.039968 0.024472 -0.306658 0.951057 0.038108 +-0.299309 0.951057 0.076849 -0.079968 0.024472 -0.299463 0.951057 0.076242 +-0.246729 0.968583 0.031169 -0.039968 0.015708 -0.246807 0.968583 0.030536 +-0.306581 0.951057 0.03873 -0.039968 0.024472 -0.306658 0.951057 0.038108 +-0.240877 0.968583 0.061847 -0.079968 0.015708 -0.241034 0.968583 0.061228 +-0.246729 0.968583 0.031169 -0.039968 0.015708 -0.246807 0.968583 0.030536 +-0.309017 0.951057 -0 3.2e-005 0.024472 -0.309016 0.951057 -0.000627 +-0.306581 0.951057 0.03873 -0.039968 0.024472 -0.306658 0.951057 0.038108 +-0.24869 0.968583 -0 3.2e-005 0.015708 -0.248688 0.968583 -0.000638 +-0.309017 0.951057 -0 3.2e-005 0.024472 -0.309016 0.951057 -0.000627 +-0.246729 0.968583 0.031169 -0.039968 0.015708 -0.246807 0.968583 0.030536 +-0.24869 0.968583 -0 3.2e-005 0.015708 -0.248688 0.968583 -0.000638 +-0.30658 0.951057 -0.03873 0.040032 0.024472 -0.306501 0.951057 -0.039352 +-0.309017 0.951057 -0 3.2e-005 0.024472 -0.309016 0.951057 -0.000627 +-0.246729 0.968583 -0.031169 0.040032 0.015708 -0.246648 0.968583 -0.031802 +-0.30658 0.951057 -0.03873 0.040032 0.024472 -0.306501 0.951057 -0.039352 +-0.24869 0.968583 -0 3.2e-005 0.015708 -0.248688 0.968583 -0.000638 +-0.246729 0.968583 -0.031169 0.040032 0.015708 -0.246648 0.968583 -0.031802 +-0.299309 0.951057 -0.076849 0.080032 0.024472 -0.299152 0.951057 -0.077456 +-0.30658 0.951057 -0.03873 0.040032 0.024472 -0.306501 0.951057 -0.039352 +-0.240877 0.968583 -0.061847 0.080032 0.015708 -0.240717 0.968583 -0.062465 +-0.299309 0.951057 -0.076849 0.080032 0.024472 -0.299152 0.951057 -0.077456 +-0.246729 0.968583 -0.031169 0.040032 0.015708 -0.246648 0.968583 -0.031802 +-0.240877 0.968583 -0.061847 0.080032 0.015708 -0.240717 0.968583 -0.062465 +-0.287317 0.951057 -0.113757 0.120032 0.024472 -0.287085 0.951057 -0.114338 +-0.299309 0.951057 -0.076849 0.080032 0.024472 -0.299152 0.951057 -0.077456 +-0.231226 0.968583 -0.091549 0.120032 0.015708 -0.23099 0.968583 -0.092142 +-0.287317 0.951057 -0.113757 0.120032 0.024472 -0.287085 0.951057 -0.114338 +-0.240877 0.968583 -0.061847 0.080032 0.015708 -0.240717 0.968583 -0.062465 +-0.231226 0.968583 -0.091549 0.120032 0.015708 -0.23099 0.968583 -0.092142 +-0.270794 0.951057 -0.14887 0.160032 0.024472 -0.270491 0.951057 -0.149419 +-0.287317 0.951057 -0.113757 0.120032 0.024472 -0.287085 0.951057 -0.114338 +-0.217929 0.968583 -0.119807 0.160032 0.015708 -0.21762 0.968583 -0.120367 +-0.270794 0.951057 -0.14887 0.160032 0.024472 -0.270491 0.951057 -0.149419 +-0.231226 0.968583 -0.091549 0.120032 0.015708 -0.23099 0.968583 -0.092142 +-0.217929 0.968583 -0.119807 0.160032 0.015708 -0.21762 0.968583 -0.120367 +-0.25 0.951057 -0.181636 0.200032 0.024472 -0.249631 0.951057 -0.182142 +-0.270794 0.951057 -0.14887 0.160032 0.024472 -0.270491 0.951057 -0.149419 +-0.201194 0.968583 -0.146176 0.200032 0.015708 -0.200818 0.968583 -0.146692 +-0.25 0.951057 -0.181636 0.200032 0.024472 -0.249631 0.951057 -0.182142 +-0.217929 0.968583 -0.119807 0.160032 0.015708 -0.21762 0.968583 -0.120367 +-0.201194 0.968583 -0.146176 0.200032 0.015708 -0.200818 0.968583 -0.146692 +-0.225264 0.951057 -0.211537 0.240032 0.024472 -0.224834 0.951057 -0.211993 +-0.25 0.951057 -0.181636 0.200032 0.024472 -0.249631 0.951057 -0.182142 +-0.181287 0.968583 -0.17024 0.240032 0.015708 -0.180849 0.968583 -0.170704 +-0.225264 0.951057 -0.211537 0.240032 0.024472 -0.224834 0.951057 -0.211993 +-0.201194 0.968583 -0.146176 0.200032 0.015708 -0.200818 0.968583 -0.146692 +-0.181287 0.968583 -0.17024 0.240032 0.015708 -0.180849 0.968583 -0.170704 +-0.196975 0.951057 -0.238102 0.280032 0.024472 -0.196491 0.951057 -0.238501 +-0.225264 0.951057 -0.211537 0.240032 0.024472 -0.224834 0.951057 -0.211993 +-0.158521 0.968583 -0.191619 0.280032 0.015708 -0.158028 0.968583 -0.192024 +-0.196975 0.951057 -0.238102 0.280032 0.024472 -0.196491 0.951057 -0.238501 +-0.181287 0.968583 -0.17024 0.240032 0.015708 -0.180849 0.968583 -0.170704 +-0.158521 0.968583 -0.191619 0.280032 0.015708 -0.158028 0.968583 -0.192024 +-0.16558 0.951057 -0.260912 0.320032 0.024472 -0.16505 0.951057 -0.261246 +-0.196975 0.951057 -0.238102 0.280032 0.024472 -0.196491 0.951057 -0.238501 +-0.133255 0.968583 -0.209976 0.320032 0.015708 -0.132715 0.968583 -0.210317 +-0.16558 0.951057 -0.260912 0.320032 0.024472 -0.16505 0.951057 -0.261246 +-0.158521 0.968583 -0.191619 0.280032 0.015708 -0.158028 0.968583 -0.192024 +-0.133255 0.968583 -0.209976 0.320032 0.015708 -0.132715 0.968583 -0.210317 +-0.131573 0.951057 -0.279607 0.360032 0.024472 -0.131005 0.951057 -0.279873 +-0.16558 0.951057 -0.260912 0.320032 0.024472 -0.16505 0.951057 -0.261246 +-0.105887 0.968583 -0.225021 0.360032 0.015708 -0.105309 0.968583 -0.225292 +-0.131573 0.951057 -0.279607 0.360032 0.024472 -0.131005 0.951057 -0.279873 +-0.133255 0.968583 -0.209976 0.320032 0.015708 -0.132715 0.968583 -0.210317 +-0.105887 0.968583 -0.225021 0.360032 0.015708 -0.105309 0.968583 -0.225292 +-0.095492 0.951057 -0.293893 0.400032 0.024472 -0.094895 0.951057 -0.294085 +-0.131573 0.951057 -0.279607 0.360032 0.024472 -0.131005 0.951057 -0.279873 +-0.076849 0.968583 -0.236518 0.400032 0.015708 -0.076242 0.968583 -0.236714 +-0.095492 0.951057 -0.293893 0.400032 0.024472 -0.094895 0.951057 -0.294085 +-0.105887 0.968583 -0.225021 0.360032 0.015708 -0.105309 0.968583 -0.225292 +-0.076849 0.968583 -0.236518 0.400032 0.015708 -0.076242 0.968583 -0.236714 +-0.057904 0.951057 -0.303544 0.440032 0.024472 -0.057288 0.951057 -0.303659 +-0.095492 0.951057 -0.293893 0.400032 0.024472 -0.094895 0.951057 -0.294085 +-0.0466 0.968583 -0.244285 0.440032 0.015708 -0.045973 0.968583 -0.244403 +-0.057904 0.951057 -0.303544 0.440032 0.024472 -0.057288 0.951057 -0.303659 +-0.076849 0.968583 -0.236518 0.400032 0.015708 -0.076242 0.968583 -0.236714 +-0.0466 0.968583 -0.244285 0.440032 0.015708 -0.045973 0.968583 -0.244403 +-0.019403 0.951057 -0.308407 0.480032 0.024472 -0.018778 0.951057 -0.308445 +-0.057904 0.951057 -0.303544 0.440032 0.024472 -0.057288 0.951057 -0.303659 +-0.015615 0.968583 -0.248199 0.480032 0.015708 -0.014978 0.968583 -0.248238 +-0.019403 0.951057 -0.308407 0.480032 0.024472 -0.018778 0.951057 -0.308445 +-0.0466 0.968583 -0.244285 0.440032 0.015708 -0.045973 0.968583 -0.244403 +-0.015615 0.968583 -0.248199 0.480032 0.015708 -0.014978 0.968583 -0.248238 +0.019403 0.951057 -0.308407 0.520032 0.024472 0.020029 0.951057 -0.308367 +-0.019403 0.951057 -0.308407 0.480032 0.024472 -0.018778 0.951057 -0.308445 +0.015615 0.968583 -0.248199 0.520032 0.015708 0.016252 0.968583 -0.248158 +0.019403 0.951057 -0.308407 0.520032 0.024472 0.020029 0.951057 -0.308367 +-0.015615 0.968583 -0.248199 0.480032 0.015708 -0.014978 0.968583 -0.248238 +0.015615 0.968583 -0.248199 0.520032 0.015708 0.016252 0.968583 -0.248158 +0.057904 0.951057 -0.303544 0.560032 0.024472 0.058519 0.951057 -0.303425 +0.019403 0.951057 -0.308407 0.520032 0.024472 0.020029 0.951057 -0.308367 +0.0466 0.968583 -0.244285 0.560032 0.015708 0.047227 0.968583 -0.244164 +0.057904 0.951057 -0.303544 0.560032 0.024472 0.058519 0.951057 -0.303425 +0.015615 0.968583 -0.248199 0.520032 0.015708 0.016252 0.968583 -0.248158 +0.0466 0.968583 -0.244285 0.560032 0.015708 0.047227 0.968583 -0.244164 +0.095492 0.951057 -0.293893 0.600032 0.024472 0.096087 0.951057 -0.293698 +0.057904 0.951057 -0.303544 0.560032 0.024472 0.058519 0.951057 -0.303425 +0.076849 0.968583 -0.236518 0.600032 0.015708 0.077456 0.968583 -0.23632 +0.095492 0.951057 -0.293893 0.600032 0.024472 0.096087 0.951057 -0.293698 +0.0466 0.968583 -0.244285 0.560032 0.015708 0.047227 0.968583 -0.244164 +0.076849 0.968583 -0.236518 0.600032 0.015708 0.077456 0.968583 -0.23632 +0.131573 0.951057 -0.279607 0.640032 0.024472 0.13214 0.951057 -0.279339 +0.095492 0.951057 -0.293893 0.600032 0.024472 0.096087 0.951057 -0.293698 +0.105887 0.968583 -0.225021 0.640032 0.015708 0.106464 0.968583 -0.224749 +0.131573 0.951057 -0.279607 0.640032 0.024472 0.13214 0.951057 -0.279339 +0.076849 0.968583 -0.236518 0.600032 0.015708 0.077456 0.968583 -0.23632 +0.105887 0.968583 -0.225021 0.640032 0.015708 0.106464 0.968583 -0.224749 +0.16558 0.951057 -0.260912 0.680032 0.024472 0.166108 0.951057 -0.260575 +0.131573 0.951057 -0.279607 0.640032 0.024472 0.13214 0.951057 -0.279339 +0.133255 0.968583 -0.209976 0.680032 0.015708 0.133793 0.968583 -0.209633 +0.16558 0.951057 -0.260912 0.680032 0.024472 0.166108 0.951057 -0.260575 +0.105887 0.968583 -0.225021 0.640032 0.015708 0.106464 0.968583 -0.224749 +0.133255 0.968583 -0.209976 0.680032 0.015708 0.133793 0.968583 -0.209633 +0.196975 0.951057 -0.238102 0.720032 0.024472 0.197457 0.951057 -0.237702 +0.16558 0.951057 -0.260912 0.680032 0.024472 0.166108 0.951057 -0.260575 +0.158521 0.968583 -0.191619 0.720032 0.015708 0.159012 0.968583 -0.191211 +0.196975 0.951057 -0.238102 0.720032 0.024472 0.197457 0.951057 -0.237702 +0.133255 0.968583 -0.209976 0.680032 0.015708 0.133793 0.968583 -0.209633 +0.158521 0.968583 -0.191619 0.720032 0.015708 0.159012 0.968583 -0.191211 +0.225264 0.951057 -0.211537 0.760032 0.024472 0.225692 0.951057 -0.211079 +0.196975 0.951057 -0.238102 0.720032 0.024472 0.197457 0.951057 -0.237702 +0.181287 0.968583 -0.17024 0.760032 0.015708 0.181723 0.968583 -0.169774 +0.225264 0.951057 -0.211537 0.760032 0.024472 0.225692 0.951057 -0.211079 +0.158521 0.968583 -0.191619 0.720032 0.015708 0.159012 0.968583 -0.191211 +0.181287 0.968583 -0.17024 0.760032 0.015708 0.181723 0.968583 -0.169774 +0.25 0.951057 -0.181636 0.800032 0.024472 0.250368 0.951057 -0.181128 +0.225264 0.951057 -0.211537 0.760032 0.024472 0.225692 0.951057 -0.211079 +0.201194 0.968583 -0.146176 0.800032 0.015708 0.201569 0.968583 -0.145659 +0.25 0.951057 -0.181636 0.800032 0.024472 0.250368 0.951057 -0.181128 +0.181287 0.968583 -0.17024 0.760032 0.015708 0.181723 0.968583 -0.169774 +0.201194 0.968583 -0.146176 0.800032 0.015708 0.201569 0.968583 -0.145659 +0.270794 0.951057 -0.14887 0.840032 0.024472 0.271095 0.951057 -0.14832 +0.25 0.951057 -0.181636 0.800032 0.024472 0.250368 0.951057 -0.181128 +0.217929 0.968583 -0.119807 0.840032 0.015708 0.218235 0.968583 -0.119247 +0.270794 0.951057 -0.14887 0.840032 0.024472 0.271095 0.951057 -0.14832 +0.201194 0.968583 -0.146176 0.800032 0.015708 0.201569 0.968583 -0.145659 +0.217929 0.968583 -0.119807 0.840032 0.015708 0.218235 0.968583 -0.119247 +0.287317 0.951057 -0.113757 0.880032 0.024472 0.287546 0.951057 -0.113174 +0.270794 0.951057 -0.14887 0.840032 0.024472 0.271095 0.951057 -0.14832 +0.231226 0.968583 -0.091549 0.880032 0.015708 0.23146 0.968583 -0.090954 +0.287317 0.951057 -0.113757 0.880032 0.024472 0.287546 0.951057 -0.113174 +0.217929 0.968583 -0.119807 0.840032 0.015708 0.218235 0.968583 -0.119247 +0.231226 0.968583 -0.091549 0.880032 0.015708 0.23146 0.968583 -0.090954 +0.299309 0.951057 -0.076849 0.920032 0.024472 0.299463 0.951057 -0.076243 +0.287317 0.951057 -0.113757 0.880032 0.024472 0.287546 0.951057 -0.113174 +0.240877 0.968583 -0.061847 0.920032 0.015708 0.241034 0.968583 -0.061228 +0.299309 0.951057 -0.076849 0.920032 0.024472 0.299463 0.951057 -0.076243 +0.231226 0.968583 -0.091549 0.880032 0.015708 0.23146 0.968583 -0.090954 +0.240877 0.968583 -0.061847 0.920032 0.015708 0.241034 0.968583 -0.061228 +0.30658 0.951057 -0.03873 0.960032 0.024472 0.306658 0.951057 -0.038108 +0.299309 0.951057 -0.076849 0.920032 0.024472 0.299463 0.951057 -0.076243 +0.246729 0.968583 -0.031169 0.960032 0.015708 0.246808 0.968583 -0.030535 +0.30658 0.951057 -0.03873 0.960032 0.024472 0.306658 0.951057 -0.038108 +0.240877 0.968583 -0.061847 0.920032 0.015708 0.241034 0.968583 -0.061228 +0.246729 0.968583 -0.031169 0.960032 0.015708 0.246808 0.968583 -0.030535 +0.309017 0.951057 -0 1.00003 0.024472 0.309016 0.951057 0.000624 +0.30658 0.951057 -0.03873 0.960032 0.024472 0.306658 0.951057 -0.038108 +0.24869 0.968583 -0 1.00003 0.015708 0.248689 0.968583 0.000637 +0.309017 0.951057 -0 1.00003 0.024472 0.309016 0.951057 0.000624 +0.246729 0.968583 -0.031169 0.960032 0.015708 0.246808 0.968583 -0.030535 +0.24869 0.968583 -0 1.00003 0.015708 0.248689 0.968583 0.000637 +0.306581 0.951057 0.03873 1.04003 0.024472 0.306501 0.951057 0.03935 +0.309017 0.951057 -0 1.00003 0.024472 0.309016 0.951057 0.000624 +0.246729 0.968583 0.031169 1.04003 0.015708 0.246648 0.968583 0.031801 +0.306581 0.951057 0.03873 1.04003 0.024472 0.306501 0.951057 0.03935 +0.24869 0.968583 -0 1.00003 0.015708 0.248689 0.968583 0.000637 +0.185904 0.982287 0.023485 1.04003 0.008856 0.185822 0.982287 0.024126 +0.240877 0.968583 0.061847 1.08003 0.015708 0.240717 0.968583 0.062464 +0.246729 0.968583 0.031169 1.04003 0.015708 0.246648 0.968583 0.031801 +0.181495 0.982287 0.0466 1.08003 0.008856 0.181333 0.982287 0.047226 +0.240877 0.968583 0.061847 1.08003 0.015708 0.240717 0.968583 0.062464 +0.185904 0.982287 0.023485 1.04003 0.008856 0.185822 0.982287 0.024126 +0.181495 0.982287 0.0466 1.08003 0.008856 0.181333 0.982287 0.047226 +0.231226 0.968583 0.091549 1.12003 0.015708 0.23099 0.968583 0.092141 +0.240877 0.968583 0.061847 1.08003 0.015708 0.240717 0.968583 0.062464 +0.174223 0.982287 0.06898 1.12003 0.008856 0.173984 0.982287 0.069581 +0.231226 0.968583 0.091549 1.12003 0.015708 0.23099 0.968583 0.092141 +0.181495 0.982287 0.0466 1.08003 0.008856 0.181333 0.982287 0.047226 +0.174223 0.982287 0.06898 1.12003 0.008856 0.173984 0.982287 0.069581 +0.217929 0.968583 0.119807 1.16003 0.015708 0.21762 0.968584 0.120365 +0.231226 0.968583 0.091549 1.12003 0.015708 0.23099 0.968583 0.092141 +0.164204 0.982287 0.090272 1.16003 0.008856 0.163891 0.982287 0.090839 +0.217929 0.968583 0.119807 1.16003 0.015708 0.21762 0.968584 0.120365 +0.174223 0.982287 0.06898 1.12003 0.008856 0.173984 0.982287 0.069581 +0.164204 0.982287 0.090272 1.16003 0.008856 0.163891 0.982287 0.090839 +0.201195 0.968583 0.146176 1.20003 0.015708 0.200818 0.968583 0.146692 +0.217929 0.968583 0.119807 1.16003 0.015708 0.21762 0.968584 0.120365 +0.151595 0.982287 0.11014 1.20003 0.008856 0.151214 0.982287 0.110664 +0.201195 0.968583 0.146176 1.20003 0.015708 0.200818 0.968583 0.146692 +0.164204 0.982287 0.090272 1.16003 0.008856 0.163891 0.982287 0.090839 +0.151595 0.982287 0.11014 1.20003 0.008856 0.151214 0.982287 0.110664 +0.181287 0.968583 0.17024 1.24003 0.015708 0.180849 0.968583 0.170704 +0.201195 0.968583 0.146176 1.20003 0.015708 0.200818 0.968583 0.146692 +0.136595 0.982287 0.128271 1.24003 0.008856 0.136151 0.982287 0.128743 +0.181287 0.968583 0.17024 1.24003 0.015708 0.180849 0.968583 0.170704 +0.151595 0.982287 0.11014 1.20003 0.008856 0.151214 0.982287 0.110664 +0.136595 0.982287 0.128271 1.24003 0.008856 0.136151 0.982287 0.128743 +0.158521 0.968583 0.191619 1.28003 0.015708 0.158028 0.968583 0.192025 +0.181287 0.968583 0.17024 1.24003 0.015708 0.180849 0.968583 0.170704 +0.119441 0.982287 0.14438 1.28003 0.008856 0.118942 0.982287 0.144792 +0.158521 0.968583 0.191619 1.28003 0.015708 0.158028 0.968583 0.192025 +0.136595 0.982287 0.128271 1.24003 0.008856 0.136151 0.982287 0.128743 +0.119441 0.982287 0.14438 1.28003 0.008856 0.118942 0.982287 0.144792 +0.133255 0.968583 0.209976 1.32003 0.015708 0.132715 0.968583 0.210317 +0.158521 0.968583 0.191619 1.28003 0.015708 0.158028 0.968583 0.192025 +0.100404 0.982287 0.158211 1.32003 0.008856 0.099857 0.982287 0.158557 +0.133255 0.968583 0.209976 1.32003 0.015708 0.132715 0.968583 0.210317 +0.119441 0.982287 0.14438 1.28003 0.008856 0.118942 0.982287 0.144792 +0.100404 0.982287 0.158211 1.32003 0.008856 0.099857 0.982287 0.158557 +0.105887 0.968583 0.225022 1.36003 0.015708 0.105309 0.968584 0.225291 +0.133255 0.968583 0.209976 1.32003 0.015708 0.132715 0.968583 0.210317 +0.079783 0.982287 0.169548 1.36003 0.008856 0.079197 0.982287 0.169822 +0.105887 0.968583 0.225022 1.36003 0.015708 0.105309 0.968584 0.225291 +0.100404 0.982287 0.158211 1.32003 0.008856 0.099857 0.982287 0.158557 +0.079783 0.982287 0.169548 1.36003 0.008856 0.079197 0.982287 0.169822 +0.076849 0.968583 0.236518 1.40003 0.015708 0.076242 0.968584 0.236714 +0.105887 0.968583 0.225022 1.36003 0.015708 0.105309 0.968584 0.225291 +0.057904 0.982287 0.17821 1.40003 0.008856 0.057288 0.982287 0.17841 +0.076849 0.968583 0.236518 1.40003 0.015708 0.076242 0.968584 0.236714 +0.079783 0.982287 0.169548 1.36003 0.008856 0.079197 0.982287 0.169822 +0.057904 0.982287 0.17821 1.40003 0.008856 0.057288 0.982287 0.17841 +0.0466 0.968583 0.244285 1.44003 0.015708 0.045973 0.968583 0.244403 +0.076849 0.968583 0.236518 1.40003 0.015708 0.076242 0.968584 0.236714 +0.035112 0.982287 0.184062 1.44003 0.008856 0.034476 0.982287 0.184183 +0.0466 0.968583 0.244285 1.44003 0.015708 0.045973 0.968583 0.244403 +0.057904 0.982287 0.17821 1.40003 0.008856 0.057288 0.982287 0.17841 +0.035112 0.982287 0.184062 1.44003 0.008856 0.034476 0.982287 0.184183 +0.015615 0.968583 0.248199 1.48003 0.015708 0.014978 0.968584 0.248237 +0.0466 0.968583 0.244285 1.44003 0.015708 0.045973 0.968583 0.244403 +0.011766 0.982287 0.187012 1.48003 0.008856 0.01112 0.982287 0.187051 +0.015615 0.968583 0.248199 1.48003 0.015708 0.014978 0.968584 0.248237 +0.035112 0.982287 0.184062 1.44003 0.008856 0.034476 0.982287 0.184183 +0.011766 0.982287 0.187012 1.48003 0.008856 0.01112 0.982287 0.187051 +-0.015615 0.968583 0.248199 1.52003 0.015708 -0.016252 0.968583 0.248158 +0.015615 0.968583 0.248199 1.48003 0.015708 0.014978 0.968584 0.248237 +-0.011766 0.982287 0.187012 1.52003 0.008856 -0.012412 0.982287 0.186971 +-0.015615 0.968583 0.248199 1.52003 0.015708 -0.016252 0.968583 0.248158 +0.011766 0.982287 0.187012 1.48003 0.008856 0.01112 0.982287 0.187051 +-0.011766 0.982287 0.187012 -0.479969 0.008856 -0.012412 0.982287 0.186971 +-0.0466 0.968583 0.244285 -0.439968 0.015708 -0.047227 0.968583 0.244164 +-0.015615 0.968583 0.248199 -0.479968 0.015708 -0.016252 0.968583 0.248158 +-0.035112 0.982287 0.184062 -0.439969 0.008856 -0.035747 0.982287 0.183939 +-0.0466 0.968583 0.244285 -0.439968 0.015708 -0.047227 0.968583 0.244164 +-0.011766 0.982287 0.187012 -0.479969 0.008856 -0.012412 0.982287 0.186971 +-0.035112 0.982287 0.184062 -0.439969 0.008856 -0.035747 0.982287 0.183939 +-0.076849 0.968583 0.236518 -0.399968 0.015708 -0.077456 0.968583 0.23632 +-0.0466 0.968583 0.244285 -0.439968 0.015708 -0.047227 0.968583 0.244164 +-0.057904 0.982287 0.17821 -0.399969 0.008856 -0.058519 0.982287 0.17801 +-0.076849 0.968583 0.236518 -0.399968 0.015708 -0.077456 0.968583 0.23632 +-0.035112 0.982287 0.184062 -0.439969 0.008856 -0.035747 0.982287 0.183939 +-0.057904 0.982287 0.17821 -0.399969 0.008856 -0.058519 0.982287 0.17801 +-0.105887 0.968583 0.225021 -0.359968 0.015708 -0.106464 0.968583 0.224748 +-0.076849 0.968583 0.236518 -0.399968 0.015708 -0.077456 0.968583 0.23632 +-0.079783 0.982287 0.169548 -0.359968 0.008856 -0.080368 0.982287 0.169271 +-0.105887 0.968583 0.225021 -0.359968 0.015708 -0.106464 0.968583 0.224748 +-0.057904 0.982287 0.17821 -0.399969 0.008856 -0.058519 0.982287 0.17801 +-0.079783 0.982287 0.169548 -0.359968 0.008856 -0.080368 0.982287 0.169271 +-0.133255 0.968583 0.209976 -0.319968 0.015708 -0.133793 0.968583 0.209633 +-0.105887 0.968583 0.225021 -0.359968 0.015708 -0.106464 0.968583 0.224748 +-0.100404 0.982287 0.158211 -0.319968 0.008856 -0.10095 0.982287 0.157865 +-0.133255 0.968583 0.209976 -0.319968 0.015708 -0.133793 0.968583 0.209633 +-0.079783 0.982287 0.169548 -0.359968 0.008856 -0.080368 0.982287 0.169271 +-0.100404 0.982287 0.158211 -0.319968 0.008856 -0.10095 0.982287 0.157865 +-0.158521 0.968583 0.191619 -0.279968 0.015708 -0.159012 0.968583 0.191211 +-0.133255 0.968583 0.209976 -0.319968 0.015708 -0.133793 0.968583 0.209633 +-0.119441 0.982287 0.14438 -0.279968 0.008856 -0.11994 0.982287 0.143966 +-0.158521 0.968583 0.191619 -0.279968 0.015708 -0.159012 0.968583 0.191211 +-0.100404 0.982287 0.158211 -0.319968 0.008856 -0.10095 0.982287 0.157865 +-0.119441 0.982287 0.14438 -0.279968 0.008856 -0.11994 0.982287 0.143966 +-0.181287 0.968583 0.17024 -0.239968 0.015708 -0.181723 0.968583 0.169775 +-0.158521 0.968583 0.191619 -0.279968 0.015708 -0.159012 0.968583 0.191211 +-0.136595 0.982287 0.128271 -0.239968 0.008856 -0.137038 0.982287 0.127799 +-0.181287 0.968583 0.17024 -0.239968 0.015708 -0.181723 0.968583 0.169775 +-0.119441 0.982287 0.14438 -0.279968 0.008856 -0.11994 0.982287 0.143966 +-0.136595 0.982287 0.128271 -0.239968 0.008856 -0.137038 0.982287 0.127799 +-0.201194 0.968583 0.146176 -0.199968 0.015708 -0.201568 0.968583 0.145659 +-0.181287 0.968583 0.17024 -0.239968 0.015708 -0.181723 0.968583 0.169775 +-0.151595 0.982287 0.11014 -0.199968 0.008856 -0.151975 0.982287 0.109615 +-0.201194 0.968583 0.146176 -0.199968 0.015708 -0.201568 0.968583 0.145659 +-0.136595 0.982287 0.128271 -0.239968 0.008856 -0.137038 0.982287 0.127799 +-0.151595 0.982287 0.11014 -0.199968 0.008856 -0.151975 0.982287 0.109615 +-0.217929 0.968583 0.119807 -0.159968 0.015708 -0.218235 0.968584 0.119246 +-0.201194 0.968583 0.146176 -0.199968 0.015708 -0.201568 0.968583 0.145659 +-0.164204 0.982287 0.090272 -0.159968 0.008856 -0.164515 0.982287 0.089704 +-0.217929 0.968583 0.119807 -0.159968 0.015708 -0.218235 0.968584 0.119246 +-0.151595 0.982287 0.11014 -0.199968 0.008856 -0.151975 0.982287 0.109615 +-0.164204 0.982287 0.090272 -0.159968 0.008856 -0.164515 0.982287 0.089704 +-0.231226 0.968583 0.091549 -0.119968 0.015708 -0.23146 0.968583 0.090955 +-0.217929 0.968583 0.119807 -0.159968 0.015708 -0.218235 0.968584 0.119246 +-0.174223 0.982287 0.06898 -0.119968 0.008856 -0.17446 0.982287 0.068379 +-0.231226 0.968583 0.091549 -0.119968 0.015708 -0.23146 0.968583 0.090955 +-0.164204 0.982287 0.090272 -0.159968 0.008856 -0.164515 0.982287 0.089704 +-0.174223 0.982287 0.06898 -0.119968 0.008856 -0.17446 0.982287 0.068379 +-0.240877 0.968583 0.061847 -0.079968 0.015708 -0.241034 0.968583 0.061228 +-0.231226 0.968583 0.091549 -0.119968 0.015708 -0.23146 0.968583 0.090955 +-0.181495 0.982287 0.0466 -0.079968 0.008856 -0.181655 0.982287 0.045973 +-0.240877 0.968583 0.061847 -0.079968 0.015708 -0.241034 0.968583 0.061228 +-0.174223 0.982287 0.06898 -0.119968 0.008856 -0.17446 0.982287 0.068379 +-0.181495 0.982287 0.0466 -0.079968 0.008856 -0.181655 0.982287 0.045973 +-0.246729 0.968583 0.031169 -0.039968 0.015708 -0.246807 0.968583 0.030536 +-0.240877 0.968583 0.061847 -0.079968 0.015708 -0.241034 0.968583 0.061228 +-0.185904 0.982287 0.023485 -0.039968 0.008856 -0.185984 0.982287 0.022842 +-0.246729 0.968583 0.031169 -0.039968 0.015708 -0.246807 0.968583 0.030536 +-0.181495 0.982287 0.0466 -0.079968 0.008856 -0.181655 0.982287 0.045973 +-0.185904 0.982287 0.023485 -0.039968 0.008856 -0.185984 0.982287 0.022842 +-0.24869 0.968583 -0 3.2e-005 0.015708 -0.248688 0.968583 -0.000638 +-0.246729 0.968583 0.031169 -0.039968 0.015708 -0.246807 0.968583 0.030536 +-0.187381 0.982287 -0 3.2e-005 0.008856 -0.187381 0.982287 -0.000647 +-0.24869 0.968583 -0 3.2e-005 0.015708 -0.248688 0.968583 -0.000638 +-0.185904 0.982287 0.023485 -0.039968 0.008856 -0.185984 0.982287 0.022842 +-0.187381 0.982287 -0 3.2e-005 0.008856 -0.187381 0.982287 -0.000647 +-0.246729 0.968583 -0.031169 0.040032 0.015708 -0.246648 0.968583 -0.031802 +-0.24869 0.968583 -0 3.2e-005 0.015708 -0.248688 0.968583 -0.000638 +-0.185904 0.982287 -0.023485 0.040032 0.008856 -0.185822 0.982287 -0.024127 +-0.246729 0.968583 -0.031169 0.040032 0.015708 -0.246648 0.968583 -0.031802 +-0.187381 0.982287 -0 3.2e-005 0.008856 -0.187381 0.982287 -0.000647 +-0.185904 0.982287 -0.023485 0.040032 0.008856 -0.185822 0.982287 -0.024127 +-0.240877 0.968583 -0.061847 0.080032 0.015708 -0.240717 0.968583 -0.062465 +-0.246729 0.968583 -0.031169 0.040032 0.015708 -0.246648 0.968583 -0.031802 +-0.181495 0.982287 -0.0466 0.080032 0.008856 -0.181333 0.982287 -0.047226 +-0.240877 0.968583 -0.061847 0.080032 0.015708 -0.240717 0.968583 -0.062465 +-0.185904 0.982287 -0.023485 0.040032 0.008856 -0.185822 0.982287 -0.024127 +-0.181495 0.982287 -0.0466 0.080032 0.008856 -0.181333 0.982287 -0.047226 +-0.231226 0.968583 -0.091549 0.120032 0.015708 -0.23099 0.968583 -0.092142 +-0.240877 0.968583 -0.061847 0.080032 0.015708 -0.240717 0.968583 -0.062465 +-0.174223 0.982287 -0.06898 0.120032 0.008856 -0.173984 0.982287 -0.069581 +-0.231226 0.968583 -0.091549 0.120032 0.015708 -0.23099 0.968583 -0.092142 +-0.181495 0.982287 -0.0466 0.080032 0.008856 -0.181333 0.982287 -0.047226 +-0.174223 0.982287 -0.06898 0.120032 0.008856 -0.173984 0.982287 -0.069581 +-0.217929 0.968583 -0.119807 0.160032 0.015708 -0.21762 0.968583 -0.120367 +-0.231226 0.968583 -0.091549 0.120032 0.015708 -0.23099 0.968583 -0.092142 +-0.164204 0.982287 -0.090272 0.160033 0.008856 -0.163891 0.982287 -0.09084 +-0.217929 0.968583 -0.119807 0.160032 0.015708 -0.21762 0.968583 -0.120367 +-0.174223 0.982287 -0.06898 0.120032 0.008856 -0.173984 0.982287 -0.069581 +-0.164204 0.982287 -0.090272 0.160033 0.008856 -0.163891 0.982287 -0.09084 +-0.201194 0.968583 -0.146176 0.200032 0.015708 -0.200818 0.968583 -0.146692 +-0.217929 0.968583 -0.119807 0.160032 0.015708 -0.21762 0.968583 -0.120367 +-0.151595 0.982287 -0.11014 0.200033 0.008856 -0.151213 0.982287 -0.110664 +-0.201194 0.968583 -0.146176 0.200032 0.015708 -0.200818 0.968583 -0.146692 +-0.164204 0.982287 -0.090272 0.160033 0.008856 -0.163891 0.982287 -0.09084 +-0.151595 0.982287 -0.11014 0.200033 0.008856 -0.151213 0.982287 -0.110664 +-0.181287 0.968583 -0.17024 0.240032 0.015708 -0.180849 0.968583 -0.170704 +-0.201194 0.968583 -0.146176 0.200032 0.015708 -0.200818 0.968583 -0.146692 +-0.136595 0.982287 -0.128271 0.240033 0.008856 -0.136151 0.982287 -0.128741 +-0.181287 0.968583 -0.17024 0.240032 0.015708 -0.180849 0.968583 -0.170704 +-0.151595 0.982287 -0.11014 0.200033 0.008856 -0.151213 0.982287 -0.110664 +-0.136595 0.982287 -0.128271 0.240033 0.008856 -0.136151 0.982287 -0.128741 +-0.158521 0.968583 -0.191619 0.280032 0.015708 -0.158028 0.968583 -0.192024 +-0.181287 0.968583 -0.17024 0.240032 0.015708 -0.180849 0.968583 -0.170704 +-0.119441 0.982287 -0.14438 0.280033 0.008856 -0.118942 0.982287 -0.144792 +-0.158521 0.968583 -0.191619 0.280032 0.015708 -0.158028 0.968583 -0.192024 +-0.136595 0.982287 -0.128271 0.240033 0.008856 -0.136151 0.982287 -0.128741 +-0.119441 0.982287 -0.14438 0.280033 0.008856 -0.118942 0.982287 -0.144792 +-0.133255 0.968583 -0.209976 0.320032 0.015708 -0.132715 0.968583 -0.210317 +-0.158521 0.968583 -0.191619 0.280032 0.015708 -0.158028 0.968583 -0.192024 +-0.100404 0.982287 -0.158211 0.320033 0.008856 -0.099857 0.982287 -0.158557 +-0.133255 0.968583 -0.209976 0.320032 0.015708 -0.132715 0.968583 -0.210317 +-0.119441 0.982287 -0.14438 0.280033 0.008856 -0.118942 0.982287 -0.144792 +-0.100404 0.982287 -0.158211 0.320033 0.008856 -0.099857 0.982287 -0.158557 +-0.105887 0.968583 -0.225021 0.360032 0.015708 -0.105309 0.968583 -0.225292 +-0.133255 0.968583 -0.209976 0.320032 0.015708 -0.132715 0.968583 -0.210317 +-0.079783 0.982287 -0.169548 0.360033 0.008856 -0.079197 0.982287 -0.169822 +-0.105887 0.968583 -0.225021 0.360032 0.015708 -0.105309 0.968583 -0.225292 +-0.100404 0.982287 -0.158211 0.320033 0.008856 -0.099857 0.982287 -0.158557 +-0.079783 0.982287 -0.169548 0.360033 0.008856 -0.079197 0.982287 -0.169822 +-0.076849 0.968583 -0.236518 0.400032 0.015708 -0.076242 0.968583 -0.236714 +-0.105887 0.968583 -0.225021 0.360032 0.015708 -0.105309 0.968583 -0.225292 +-0.057904 0.982287 -0.17821 0.400032 0.008856 -0.057288 0.982287 -0.17841 +-0.076849 0.968583 -0.236518 0.400032 0.015708 -0.076242 0.968583 -0.236714 +-0.079783 0.982287 -0.169548 0.360033 0.008856 -0.079197 0.982287 -0.169822 +-0.057904 0.982287 -0.17821 0.400032 0.008856 -0.057288 0.982287 -0.17841 +-0.0466 0.968583 -0.244285 0.440032 0.015708 -0.045973 0.968583 -0.244403 +-0.076849 0.968583 -0.236518 0.400032 0.015708 -0.076242 0.968583 -0.236714 +-0.035112 0.982287 -0.184062 0.440032 0.008856 -0.034476 0.982287 -0.184183 +-0.0466 0.968583 -0.244285 0.440032 0.015708 -0.045973 0.968583 -0.244403 +-0.057904 0.982287 -0.17821 0.400032 0.008856 -0.057288 0.982287 -0.17841 +-0.035112 0.982287 -0.184062 0.440032 0.008856 -0.034476 0.982287 -0.184183 +-0.015615 0.968583 -0.248199 0.480032 0.015708 -0.014978 0.968583 -0.248238 +-0.0466 0.968583 -0.244285 0.440032 0.015708 -0.045973 0.968583 -0.244403 +-0.011766 0.982287 -0.187012 0.480032 0.008856 -0.01112 0.982287 -0.187052 +-0.015615 0.968583 -0.248199 0.480032 0.015708 -0.014978 0.968583 -0.248238 +-0.035112 0.982287 -0.184062 0.440032 0.008856 -0.034476 0.982287 -0.184183 +-0.011766 0.982287 -0.187012 0.480032 0.008856 -0.01112 0.982287 -0.187052 +0.015615 0.968583 -0.248199 0.520032 0.015708 0.016252 0.968583 -0.248158 +-0.015615 0.968583 -0.248199 0.480032 0.015708 -0.014978 0.968583 -0.248238 +0.011766 0.982287 -0.187012 0.520032 0.008856 0.012412 0.982287 -0.186969 +0.015615 0.968583 -0.248199 0.520032 0.015708 0.016252 0.968583 -0.248158 +-0.011766 0.982287 -0.187012 0.480032 0.008856 -0.01112 0.982287 -0.187052 +0.011766 0.982287 -0.187012 0.520032 0.008856 0.012412 0.982287 -0.186969 +0.0466 0.968583 -0.244285 0.560032 0.015708 0.047227 0.968583 -0.244164 +0.015615 0.968583 -0.248199 0.520032 0.015708 0.016252 0.968583 -0.248158 +0.035112 0.982287 -0.184062 0.560032 0.008856 0.035747 0.982287 -0.183941 +0.0466 0.968583 -0.244285 0.560032 0.015708 0.047227 0.968583 -0.244164 +0.011766 0.982287 -0.187012 0.520032 0.008856 0.012412 0.982287 -0.186969 +0.035112 0.982287 -0.184062 0.560032 0.008856 0.035747 0.982287 -0.183941 +0.076849 0.968583 -0.236518 0.600032 0.015708 0.077456 0.968583 -0.23632 +0.0466 0.968583 -0.244285 0.560032 0.015708 0.047227 0.968583 -0.244164 +0.057904 0.982287 -0.17821 0.600032 0.008856 0.058519 0.982287 -0.17801 +0.076849 0.968583 -0.236518 0.600032 0.015708 0.077456 0.968583 -0.23632 +0.035112 0.982287 -0.184062 0.560032 0.008856 0.035747 0.982287 -0.183941 +0.057904 0.982287 -0.17821 0.600032 0.008856 0.058519 0.982287 -0.17801 +0.105887 0.968583 -0.225021 0.640032 0.015708 0.106464 0.968583 -0.224749 +0.076849 0.968583 -0.236518 0.600032 0.015708 0.077456 0.968583 -0.23632 +0.079783 0.982287 -0.169548 0.640032 0.008856 0.080368 0.982287 -0.169271 +0.105887 0.968583 -0.225021 0.640032 0.015708 0.106464 0.968583 -0.224749 +0.057904 0.982287 -0.17821 0.600032 0.008856 0.058519 0.982287 -0.17801 +0.079783 0.982287 -0.169548 0.640032 0.008856 0.080368 0.982287 -0.169271 +0.133255 0.968583 -0.209976 0.680032 0.015708 0.133793 0.968583 -0.209633 +0.105887 0.968583 -0.225021 0.640032 0.015708 0.106464 0.968583 -0.224749 +0.100404 0.982287 -0.158211 0.680032 0.008856 0.10095 0.982287 -0.157864 +0.133255 0.968583 -0.209976 0.680032 0.015708 0.133793 0.968583 -0.209633 +0.079783 0.982287 -0.169548 0.640032 0.008856 0.080368 0.982287 -0.169271 +0.100404 0.982287 -0.158211 0.680032 0.008856 0.10095 0.982287 -0.157864 +0.158521 0.968583 -0.191619 0.720032 0.015708 0.159012 0.968583 -0.191211 +0.133255 0.968583 -0.209976 0.680032 0.015708 0.133793 0.968583 -0.209633 +0.119441 0.982287 -0.14438 0.720032 0.008856 0.11994 0.982287 -0.143966 +0.158521 0.968583 -0.191619 0.720032 0.015708 0.159012 0.968583 -0.191211 +0.100404 0.982287 -0.158211 0.680032 0.008856 0.10095 0.982287 -0.157864 +0.119441 0.982287 -0.14438 0.720032 0.008856 0.11994 0.982287 -0.143966 +0.181287 0.968583 -0.17024 0.760032 0.015708 0.181723 0.968583 -0.169774 +0.158521 0.968583 -0.191619 0.720032 0.015708 0.159012 0.968583 -0.191211 +0.136595 0.982287 -0.128271 0.760032 0.008856 0.137038 0.982287 -0.127799 +0.181287 0.968583 -0.17024 0.760032 0.015708 0.181723 0.968583 -0.169774 +0.119441 0.982287 -0.14438 0.720032 0.008856 0.11994 0.982287 -0.143966 +0.136595 0.982287 -0.128271 0.760032 0.008856 0.137038 0.982287 -0.127799 +0.201194 0.968583 -0.146176 0.800032 0.015708 0.201569 0.968583 -0.145659 +0.181287 0.968583 -0.17024 0.760032 0.015708 0.181723 0.968583 -0.169774 +0.151595 0.982287 -0.11014 0.800032 0.008856 0.151975 0.982287 -0.109616 +0.201194 0.968583 -0.146176 0.800032 0.015708 0.201569 0.968583 -0.145659 +0.136595 0.982287 -0.128271 0.760032 0.008856 0.137038 0.982287 -0.127799 +0.151595 0.982287 -0.11014 0.800032 0.008856 0.151975 0.982287 -0.109616 +0.217929 0.968583 -0.119807 0.840032 0.015708 0.218235 0.968583 -0.119247 +0.201194 0.968583 -0.146176 0.800032 0.015708 0.201569 0.968583 -0.145659 +0.164204 0.982287 -0.090272 0.840032 0.008856 0.164515 0.982287 -0.089705 +0.217929 0.968583 -0.119807 0.840032 0.015708 0.218235 0.968583 -0.119247 +0.151595 0.982287 -0.11014 0.800032 0.008856 0.151975 0.982287 -0.109616 +0.164204 0.982287 -0.090272 0.840032 0.008856 0.164515 0.982287 -0.089705 +0.231226 0.968583 -0.091549 0.880032 0.015708 0.23146 0.968583 -0.090954 +0.217929 0.968583 -0.119807 0.840032 0.015708 0.218235 0.968583 -0.119247 +0.174223 0.982287 -0.06898 0.880032 0.008856 0.17446 0.982287 -0.068377 +0.231226 0.968583 -0.091549 0.880032 0.015708 0.23146 0.968583 -0.090954 +0.164204 0.982287 -0.090272 0.840032 0.008856 0.164515 0.982287 -0.089705 +0.174223 0.982287 -0.06898 0.880032 0.008856 0.17446 0.982287 -0.068377 +0.240877 0.968583 -0.061847 0.920032 0.015708 0.241034 0.968583 -0.061228 +0.231226 0.968583 -0.091549 0.880032 0.015708 0.23146 0.968583 -0.090954 +0.181494 0.982287 -0.0466 0.920032 0.008856 0.181655 0.982287 -0.045972 +0.240877 0.968583 -0.061847 0.920032 0.015708 0.241034 0.968583 -0.061228 +0.174223 0.982287 -0.06898 0.880032 0.008856 0.17446 0.982287 -0.068377 +0.181494 0.982287 -0.0466 0.920032 0.008856 0.181655 0.982287 -0.045972 +0.246729 0.968583 -0.031169 0.960032 0.015708 0.246808 0.968583 -0.030535 +0.240877 0.968583 -0.061847 0.920032 0.015708 0.241034 0.968583 -0.061228 +0.185904 0.982287 -0.023485 0.960031 0.008856 0.185984 0.982287 -0.022842 +0.246729 0.968583 -0.031169 0.960032 0.015708 0.246808 0.968583 -0.030535 +0.181494 0.982287 -0.0466 0.920032 0.008856 0.181655 0.982287 -0.045972 +0.185904 0.982287 -0.023485 0.960031 0.008856 0.185984 0.982287 -0.022842 +0.24869 0.968583 -0 1.00003 0.015708 0.248689 0.968583 0.000637 +0.246729 0.968583 -0.031169 0.960032 0.015708 0.246808 0.968583 -0.030535 +0.187381 0.982287 -0 1.00003 0.008856 0.187381 0.982287 0.000647 +0.24869 0.968583 -0 1.00003 0.015708 0.248689 0.968583 0.000637 +0.185904 0.982287 -0.023485 0.960031 0.008856 0.185984 0.982287 -0.022842 +0.187381 0.982287 -0 1.00003 0.008856 0.187381 0.982287 0.000647 +0.246729 0.968583 0.031169 1.04003 0.015708 0.246648 0.968583 0.031801 +0.24869 0.968583 -0 1.00003 0.015708 0.248689 0.968583 0.000637 +0.185904 0.982287 0.023485 1.04003 0.008856 0.185822 0.982287 0.024126 +0.246729 0.968583 0.031169 1.04003 0.015708 0.246648 0.968583 0.031801 +0.187381 0.982287 -0 1.00003 0.008856 0.187381 0.982287 0.000647 +0.124345 0.992115 0.015708 1.04003 0.00394303 0.124263 0.992115 0.016356 +0.181495 0.982287 0.0466 1.08003 0.008856 0.181333 0.982287 0.047226 +0.185904 0.982287 0.023485 1.04003 0.008856 0.185822 0.982287 0.024126 +0.121396 0.992115 0.031169 1.08003 0.00394303 0.121233 0.992115 0.031802 +0.181495 0.982287 0.0466 1.08003 0.008856 0.181333 0.982287 0.047226 +0.124345 0.992115 0.015708 1.04003 0.00394303 0.124263 0.992115 0.016356 +0.121396 0.992115 0.031169 1.08003 0.00394303 0.121233 0.992115 0.031802 +0.174223 0.982287 0.06898 1.12003 0.008856 0.173984 0.982287 0.069581 +0.181495 0.982287 0.0466 1.08003 0.008856 0.181333 0.982287 0.047226 +0.116532 0.992115 0.046138 1.12003 0.00394303 0.116291 0.992115 0.046746 +0.174223 0.982287 0.06898 1.12003 0.008856 0.173984 0.982287 0.069581 +0.121396 0.992115 0.031169 1.08003 0.00394303 0.121233 0.992115 0.031802 +0.116532 0.992115 0.046138 1.12003 0.00394303 0.116291 0.992115 0.046746 +0.164204 0.982287 0.090272 1.16003 0.008856 0.163891 0.982287 0.090839 +0.174223 0.982287 0.06898 1.12003 0.008856 0.173984 0.982287 0.069581 +0.10983 0.992115 0.06038 1.16003 0.00394303 0.109515 0.992115 0.060952 +0.164204 0.982287 0.090272 1.16003 0.008856 0.163891 0.982287 0.090839 +0.116532 0.992115 0.046138 1.12003 0.00394303 0.116291 0.992115 0.046746 +0.10983 0.992115 0.06038 1.16003 0.00394303 0.109515 0.992115 0.060952 +0.151595 0.982287 0.11014 1.20003 0.008856 0.151214 0.982287 0.110664 +0.164204 0.982287 0.090272 1.16003 0.008856 0.163891 0.982287 0.090839 +0.101397 0.992115 0.073669 1.20003 0.00394303 0.101012 0.992115 0.074196 +0.151595 0.982287 0.11014 1.20003 0.008856 0.151214 0.982287 0.110664 +0.10983 0.992115 0.06038 1.16003 0.00394303 0.109515 0.992115 0.060952 +0.101397 0.992115 0.073669 1.20003 0.00394303 0.101012 0.992115 0.074196 +0.136595 0.982287 0.128271 1.24003 0.008856 0.136151 0.982287 0.128743 +0.151595 0.982287 0.11014 1.20003 0.008856 0.151214 0.982287 0.110664 +0.091364 0.992115 0.085797 1.24003 0.00394303 0.090916 0.992115 0.086273 +0.136595 0.982287 0.128271 1.24003 0.008856 0.136151 0.982287 0.128743 +0.101397 0.992115 0.073669 1.20003 0.00394303 0.101012 0.992115 0.074196 +0.091364 0.992115 0.085797 1.24003 0.00394303 0.090916 0.992115 0.086273 +0.119441 0.982287 0.14438 1.28003 0.008856 0.118942 0.982287 0.144792 +0.136595 0.982287 0.128271 1.24003 0.008856 0.136151 0.982287 0.128743 +0.07989 0.992115 0.096571 1.28003 0.00394303 0.079386 0.992115 0.096986 +0.119441 0.982287 0.14438 1.28003 0.008856 0.118942 0.982287 0.144792 +0.091364 0.992115 0.085797 1.24003 0.00394303 0.090916 0.992115 0.086273 +0.07989 0.992115 0.096571 1.28003 0.00394303 0.079386 0.992115 0.096986 +0.100404 0.982287 0.158211 1.32003 0.008856 0.099857 0.982287 0.158557 +0.119441 0.982287 0.14438 1.28003 0.008856 0.118942 0.982287 0.144792 +0.067157 0.992115 0.105822 1.32003 0.00394303 0.066605 0.992115 0.106173 +0.100404 0.982287 0.158211 1.32003 0.008856 0.099857 0.982287 0.158557 +0.07989 0.992115 0.096571 1.28003 0.00394303 0.079386 0.992115 0.096986 +0.067157 0.992115 0.105822 1.32003 0.00394303 0.066605 0.992115 0.106173 +0.079783 0.982287 0.169548 1.36003 0.008856 0.079197 0.982287 0.169822 +0.100404 0.982287 0.158211 1.32003 0.008856 0.099857 0.982287 0.158557 +0.053364 0.992115 0.113405 1.36003 0.00394303 0.052772 0.992115 0.113683 +0.079783 0.982287 0.169548 1.36003 0.008856 0.079197 0.982287 0.169822 +0.067157 0.992115 0.105822 1.32003 0.00394303 0.066605 0.992115 0.106173 +0.053364 0.992115 0.113405 1.36003 0.00394303 0.052772 0.992115 0.113683 +0.057904 0.982287 0.17821 1.40003 0.008856 0.057288 0.982287 0.17841 +0.079783 0.982287 0.169548 1.36003 0.008856 0.079197 0.982287 0.169822 +0.03873 0.992115 0.119199 1.40003 0.00394303 0.038108 0.992115 0.119401 +0.057904 0.982287 0.17821 1.40003 0.008856 0.057288 0.982287 0.17841 +0.053364 0.992115 0.113405 1.36003 0.00394303 0.052772 0.992115 0.113683 +0.03873 0.992115 0.119199 1.40003 0.00394303 0.038108 0.992115 0.119401 +0.035112 0.982287 0.184062 1.44003 0.008856 0.034476 0.982287 0.184183 +0.057904 0.982287 0.17821 1.40003 0.008856 0.057288 0.982287 0.17841 +0.023485 0.992115 0.123113 1.44003 0.00394303 0.022843 0.992115 0.123235 +0.035112 0.982287 0.184062 1.44003 0.008856 0.034476 0.982287 0.184183 +0.03873 0.992115 0.119199 1.40003 0.00394303 0.038108 0.992115 0.119401 +0.023485 0.992115 0.123113 1.44003 0.00394303 0.022843 0.992115 0.123235 +0.011766 0.982287 0.187012 1.48003 0.008856 0.01112 0.982287 0.187051 +0.035112 0.982287 0.184062 1.44003 0.008856 0.034476 0.982287 0.184183 +0.00787 0.992115 0.125086 1.48003 0.00394303 0.007217 0.992115 0.125126 +0.011766 0.982287 0.187012 1.48003 0.008856 0.01112 0.982287 0.187051 +0.023485 0.992115 0.123113 1.44003 0.00394303 0.022843 0.992115 0.123235 +0.00787 0.992115 0.125086 1.48003 0.00394303 0.007217 0.992115 0.125126 +-0.011766 0.982287 0.187012 1.52003 0.008856 -0.012412 0.982287 0.186971 +0.011766 0.982287 0.187012 1.48003 0.008856 0.01112 0.982287 0.187051 +-0.00787 0.992115 0.125086 1.52003 0.00394303 -0.008522 0.992115 0.125044 +-0.011766 0.982287 0.187012 1.52003 0.008856 -0.012412 0.982287 0.186971 +0.00787 0.992115 0.125086 1.48003 0.00394303 0.007217 0.992115 0.125126 +-0.00787 0.992115 0.125086 -0.479969 0.00394303 -0.008522 0.992115 0.125044 +-0.035112 0.982287 0.184062 -0.439969 0.008856 -0.035747 0.982287 0.183939 +-0.011766 0.982287 0.187012 -0.479969 0.008856 -0.012412 0.982287 0.186971 +-0.023485 0.992115 0.123113 -0.439969 0.00394303 -0.024127 0.992115 0.12299 +-0.035112 0.982287 0.184062 -0.439969 0.008856 -0.035747 0.982287 0.183939 +-0.00787 0.992115 0.125086 -0.479969 0.00394303 -0.008522 0.992115 0.125044 +-0.023485 0.992115 0.123113 -0.439969 0.00394303 -0.024127 0.992115 0.12299 +-0.057904 0.982287 0.17821 -0.399969 0.008856 -0.058519 0.982287 0.17801 +-0.035112 0.982287 0.184062 -0.439969 0.008856 -0.035747 0.982287 0.183939 +-0.03873 0.992115 0.119199 -0.399969 0.00394303 -0.039352 0.992115 0.118997 +-0.057904 0.982287 0.17821 -0.399969 0.008856 -0.058519 0.982287 0.17801 +-0.023485 0.992115 0.123113 -0.439969 0.00394303 -0.024127 0.992115 0.12299 +-0.03873 0.992115 0.119199 -0.399969 0.00394303 -0.039352 0.992115 0.118997 +-0.079783 0.982287 0.169548 -0.359968 0.008856 -0.080368 0.982287 0.169271 +-0.057904 0.982287 0.17821 -0.399969 0.008856 -0.058519 0.982287 0.17801 +-0.053364 0.992115 0.113405 -0.359969 0.00394303 -0.053956 0.992115 0.113127 +-0.079783 0.982287 0.169548 -0.359968 0.008856 -0.080368 0.982287 0.169271 +-0.03873 0.992115 0.119199 -0.399969 0.00394303 -0.039352 0.992115 0.118997 +-0.053364 0.992115 0.113405 -0.359969 0.00394303 -0.053956 0.992115 0.113127 +-0.100404 0.982287 0.158211 -0.319968 0.008856 -0.10095 0.982287 0.157865 +-0.079783 0.982287 0.169548 -0.359968 0.008856 -0.080368 0.982287 0.169271 +-0.067157 0.992115 0.105822 -0.319968 0.00394303 -0.067709 0.992115 0.105471 +-0.100404 0.982287 0.158211 -0.319968 0.008856 -0.10095 0.982287 0.157865 +-0.053364 0.992115 0.113405 -0.359969 0.00394303 -0.053956 0.992115 0.113127 +-0.067157 0.992115 0.105822 -0.319968 0.00394303 -0.067709 0.992115 0.105471 +-0.119441 0.982287 0.14438 -0.279968 0.008856 -0.11994 0.982287 0.143966 +-0.100404 0.982287 0.158211 -0.319968 0.008856 -0.10095 0.982287 0.157865 +-0.07989 0.992115 0.096571 -0.279968 0.00394303 -0.080394 0.992115 0.096152 +-0.119441 0.982287 0.14438 -0.279968 0.008856 -0.11994 0.982287 0.143966 +-0.067157 0.992115 0.105822 -0.319968 0.00394303 -0.067709 0.992115 0.105471 +-0.07989 0.992115 0.096571 -0.279968 0.00394303 -0.080394 0.992115 0.096152 +-0.136595 0.982287 0.128271 -0.239968 0.008856 -0.137038 0.982287 0.127799 +-0.119441 0.982287 0.14438 -0.279968 0.008856 -0.11994 0.982287 0.143966 +-0.091364 0.992115 0.085797 -0.239968 0.00394303 -0.091811 0.992115 0.085319 +-0.136595 0.982287 0.128271 -0.239968 0.008856 -0.137038 0.982287 0.127799 +-0.07989 0.992115 0.096571 -0.279968 0.00394303 -0.080394 0.992115 0.096152 +-0.091364 0.992115 0.085797 -0.239968 0.00394303 -0.091811 0.992115 0.085319 +-0.151595 0.982287 0.11014 -0.199968 0.008856 -0.151975 0.982287 0.109615 +-0.136595 0.982287 0.128271 -0.239968 0.008856 -0.137038 0.982287 0.127799 +-0.101397 0.992115 0.073669 -0.199968 0.00394303 -0.101781 0.992115 0.073138 +-0.151595 0.982287 0.11014 -0.199968 0.008856 -0.151975 0.982287 0.109615 +-0.091364 0.992115 0.085797 -0.239968 0.00394303 -0.091811 0.992115 0.085319 +-0.101397 0.992115 0.073669 -0.199968 0.00394303 -0.101781 0.992115 0.073138 +-0.164204 0.982287 0.090272 -0.159968 0.008856 -0.164515 0.982287 0.089704 +-0.151595 0.982287 0.11014 -0.199968 0.008856 -0.151975 0.982287 0.109615 +-0.10983 0.992115 0.06038 -0.159968 0.00394303 -0.110145 0.992115 0.059805 +-0.164204 0.982287 0.090272 -0.159968 0.008856 -0.164515 0.982287 0.089704 +-0.101397 0.992115 0.073669 -0.199968 0.00394303 -0.101781 0.992115 0.073138 +-0.10983 0.992115 0.06038 -0.159968 0.00394303 -0.110145 0.992115 0.059805 +-0.174223 0.982287 0.06898 -0.119968 0.008856 -0.17446 0.982287 0.068379 +-0.164204 0.982287 0.090272 -0.159968 0.008856 -0.164515 0.982287 0.089704 +-0.116532 0.992115 0.046138 -0.119968 0.00394303 -0.116772 0.992114 0.045533 +-0.174223 0.982287 0.06898 -0.119968 0.008856 -0.17446 0.982287 0.068379 +-0.10983 0.992115 0.06038 -0.159968 0.00394303 -0.110145 0.992115 0.059805 +-0.116532 0.992115 0.046138 -0.119968 0.00394303 -0.116772 0.992114 0.045533 +-0.181495 0.982287 0.0466 -0.079968 0.008856 -0.181655 0.982287 0.045973 +-0.174223 0.982287 0.06898 -0.119968 0.008856 -0.17446 0.982287 0.068379 +-0.121396 0.992115 0.031169 -0.079968 0.00394303 -0.121558 0.992115 0.03053 +-0.181495 0.982287 0.0466 -0.079968 0.008856 -0.181655 0.982287 0.045973 +-0.116532 0.992115 0.046138 -0.119968 0.00394303 -0.116772 0.992114 0.045533 +-0.121396 0.992115 0.031169 -0.079968 0.00394303 -0.121558 0.992115 0.03053 +-0.185904 0.982287 0.023485 -0.039968 0.008856 -0.185984 0.982287 0.022842 +-0.181495 0.982287 0.0466 -0.079968 0.008856 -0.181655 0.982287 0.045973 +-0.124345 0.992115 0.015708 -0.039968 0.00394303 -0.124426 0.992115 0.015064 +-0.185904 0.982287 0.023485 -0.039968 0.008856 -0.185984 0.982287 0.022842 +-0.121396 0.992115 0.031169 -0.079968 0.00394303 -0.121558 0.992115 0.03053 +-0.124345 0.992115 0.015708 -0.039968 0.00394303 -0.124426 0.992115 0.015064 +-0.187381 0.982287 -0 3.2e-005 0.008856 -0.187381 0.982287 -0.000647 +-0.185904 0.982287 0.023485 -0.039968 0.008856 -0.185984 0.982287 0.022842 +-0.125333 0.992115 -0 3.3e-005 0.00394303 -0.125333 0.992115 -0.000654 +-0.187381 0.982287 -0 3.2e-005 0.008856 -0.187381 0.982287 -0.000647 +-0.124345 0.992115 0.015708 -0.039968 0.00394303 -0.124426 0.992115 0.015064 +-0.125333 0.992115 -0 3.3e-005 0.00394303 -0.125333 0.992115 -0.000654 +-0.185904 0.982287 -0.023485 0.040032 0.008856 -0.185822 0.982287 -0.024127 +-0.187381 0.982287 -0 3.2e-005 0.008856 -0.187381 0.982287 -0.000647 +-0.124345 0.992115 -0.015708 0.040033 0.00394303 -0.124263 0.992115 -0.016357 +-0.185904 0.982287 -0.023485 0.040032 0.008856 -0.185822 0.982287 -0.024127 +-0.125333 0.992115 -0 3.3e-005 0.00394303 -0.125333 0.992115 -0.000654 +-0.124345 0.992115 -0.015708 0.040033 0.00394303 -0.124263 0.992115 -0.016357 +-0.181495 0.982287 -0.0466 0.080032 0.008856 -0.181333 0.982287 -0.047226 +-0.185904 0.982287 -0.023485 0.040032 0.008856 -0.185822 0.982287 -0.024127 +-0.121396 0.992115 -0.031169 0.080033 0.00394303 -0.121233 0.992115 -0.031802 +-0.181495 0.982287 -0.0466 0.080032 0.008856 -0.181333 0.982287 -0.047226 +-0.124345 0.992115 -0.015708 0.040033 0.00394303 -0.124263 0.992115 -0.016357 +-0.121396 0.992115 -0.031169 0.080033 0.00394303 -0.121233 0.992115 -0.031802 +-0.174223 0.982287 -0.06898 0.120032 0.008856 -0.173984 0.982287 -0.069581 +-0.181495 0.982287 -0.0466 0.080032 0.008856 -0.181333 0.982287 -0.047226 +-0.116532 0.992115 -0.046138 0.120033 0.00394303 -0.116291 0.992115 -0.046746 +-0.174223 0.982287 -0.06898 0.120032 0.008856 -0.173984 0.982287 -0.069581 +-0.121396 0.992115 -0.031169 0.080033 0.00394303 -0.121233 0.992115 -0.031802 +-0.116532 0.992115 -0.046138 0.120033 0.00394303 -0.116291 0.992115 -0.046746 +-0.164204 0.982287 -0.090272 0.160033 0.008856 -0.163891 0.982287 -0.09084 +-0.174223 0.982287 -0.06898 0.120032 0.008856 -0.173984 0.982287 -0.069581 +-0.10983 0.992115 -0.06038 0.160033 0.00394303 -0.109515 0.992115 -0.060954 +-0.164204 0.982287 -0.090272 0.160033 0.008856 -0.163891 0.982287 -0.09084 +-0.116532 0.992115 -0.046138 0.120033 0.00394303 -0.116291 0.992115 -0.046746 +-0.10983 0.992115 -0.06038 0.160033 0.00394303 -0.109515 0.992115 -0.060954 +-0.151595 0.982287 -0.11014 0.200033 0.008856 -0.151213 0.982287 -0.110664 +-0.164204 0.982287 -0.090272 0.160033 0.008856 -0.163891 0.982287 -0.09084 +-0.101397 0.992115 -0.073669 0.200033 0.00394303 -0.101012 0.992115 -0.074197 +-0.151595 0.982287 -0.11014 0.200033 0.008856 -0.151213 0.982287 -0.110664 +-0.10983 0.992115 -0.06038 0.160033 0.00394303 -0.109515 0.992115 -0.060954 +-0.101397 0.992115 -0.073669 0.200033 0.00394303 -0.101012 0.992115 -0.074197 +-0.136595 0.982287 -0.128271 0.240033 0.008856 -0.136151 0.982287 -0.128741 +-0.151595 0.982287 -0.11014 0.200033 0.008856 -0.151213 0.982287 -0.110664 +-0.091364 0.992115 -0.085797 0.240033 0.00394303 -0.090916 0.992115 -0.086273 +-0.136595 0.982287 -0.128271 0.240033 0.008856 -0.136151 0.982287 -0.128741 +-0.101397 0.992115 -0.073669 0.200033 0.00394303 -0.101012 0.992115 -0.074197 +-0.091364 0.992115 -0.085797 0.240033 0.00394303 -0.090916 0.992115 -0.086273 +-0.119441 0.982287 -0.14438 0.280033 0.008856 -0.118942 0.982287 -0.144792 +-0.136595 0.982287 -0.128271 0.240033 0.008856 -0.136151 0.982287 -0.128741 +-0.07989 0.992115 -0.096571 0.280033 0.00394303 -0.079386 0.992115 -0.096987 +-0.119441 0.982287 -0.14438 0.280033 0.008856 -0.118942 0.982287 -0.144792 +-0.091364 0.992115 -0.085797 0.240033 0.00394303 -0.090916 0.992115 -0.086273 +-0.07989 0.992115 -0.096571 0.280033 0.00394303 -0.079386 0.992115 -0.096987 +-0.100404 0.982287 -0.158211 0.320033 0.008856 -0.099857 0.982287 -0.158557 +-0.119441 0.982287 -0.14438 0.280033 0.008856 -0.118942 0.982287 -0.144792 +-0.067157 0.992115 -0.105822 0.320033 0.00394303 -0.066605 0.992115 -0.106172 +-0.100404 0.982287 -0.158211 0.320033 0.008856 -0.099857 0.982287 -0.158557 +-0.07989 0.992115 -0.096571 0.280033 0.00394303 -0.079386 0.992115 -0.096987 +-0.067157 0.992115 -0.105822 0.320033 0.00394303 -0.066605 0.992115 -0.106172 +-0.079783 0.982287 -0.169548 0.360033 0.008856 -0.079197 0.982287 -0.169822 +-0.100404 0.982287 -0.158211 0.320033 0.008856 -0.099857 0.982287 -0.158557 +-0.053364 0.992115 -0.113405 0.360033 0.00394303 -0.052772 0.992115 -0.113683 +-0.079783 0.982287 -0.169548 0.360033 0.008856 -0.079197 0.982287 -0.169822 +-0.067157 0.992115 -0.105822 0.320033 0.00394303 -0.066605 0.992115 -0.106172 +-0.053364 0.992115 -0.113405 0.360033 0.00394303 -0.052772 0.992115 -0.113683 +-0.057904 0.982287 -0.17821 0.400032 0.008856 -0.057288 0.982287 -0.17841 +-0.079783 0.982287 -0.169548 0.360033 0.008856 -0.079197 0.982287 -0.169822 +-0.03873 0.992115 -0.119199 0.400033 0.00394303 -0.038108 0.992115 -0.119401 +-0.057904 0.982287 -0.17821 0.400032 0.008856 -0.057288 0.982287 -0.17841 +-0.053364 0.992115 -0.113405 0.360033 0.00394303 -0.052772 0.992115 -0.113683 +-0.03873 0.992115 -0.119199 0.400033 0.00394303 -0.038108 0.992115 -0.119401 +-0.035112 0.982287 -0.184062 0.440032 0.008856 -0.034476 0.982287 -0.184183 +-0.057904 0.982287 -0.17821 0.400032 0.008856 -0.057288 0.982287 -0.17841 +-0.023485 0.992115 -0.123113 0.440033 0.00394303 -0.022843 0.992115 -0.123235 +-0.035112 0.982287 -0.184062 0.440032 0.008856 -0.034476 0.982287 -0.184183 +-0.03873 0.992115 -0.119199 0.400033 0.00394303 -0.038108 0.992115 -0.119401 +-0.023485 0.992115 -0.123113 0.440033 0.00394303 -0.022843 0.992115 -0.123235 +-0.011766 0.982287 -0.187012 0.480032 0.008856 -0.01112 0.982287 -0.187052 +-0.035112 0.982287 -0.184062 0.440032 0.008856 -0.034476 0.982287 -0.184183 +-0.00787 0.992115 -0.125086 0.480033 0.00394303 -0.007217 0.992115 -0.125127 +-0.011766 0.982287 -0.187012 0.480032 0.008856 -0.01112 0.982287 -0.187052 +-0.023485 0.992115 -0.123113 0.440033 0.00394303 -0.022843 0.992115 -0.123235 +-0.00787 0.992115 -0.125086 0.480033 0.00394303 -0.007217 0.992115 -0.125127 +0.011766 0.982287 -0.187012 0.520032 0.008856 0.012412 0.982287 -0.186969 +-0.011766 0.982287 -0.187012 0.480032 0.008856 -0.01112 0.982287 -0.187052 +0.00787 0.992115 -0.125086 0.520033 0.00394303 0.008522 0.992115 -0.125044 +0.011766 0.982287 -0.187012 0.520032 0.008856 0.012412 0.982287 -0.186969 +-0.00787 0.992115 -0.125086 0.480033 0.00394303 -0.007217 0.992115 -0.125127 +0.00787 0.992115 -0.125086 0.520033 0.00394303 0.008522 0.992115 -0.125044 +0.035112 0.982287 -0.184062 0.560032 0.008856 0.035747 0.982287 -0.183941 +0.011766 0.982287 -0.187012 0.520032 0.008856 0.012412 0.982287 -0.186969 +0.023485 0.992115 -0.123113 0.560032 0.00394303 0.024127 0.992115 -0.122991 +0.035112 0.982287 -0.184062 0.560032 0.008856 0.035747 0.982287 -0.183941 +0.00787 0.992115 -0.125086 0.520033 0.00394303 0.008522 0.992115 -0.125044 +0.023485 0.992115 -0.123113 0.560032 0.00394303 0.024127 0.992115 -0.122991 +0.057904 0.982287 -0.17821 0.600032 0.008856 0.058519 0.982287 -0.17801 +0.035112 0.982287 -0.184062 0.560032 0.008856 0.035747 0.982287 -0.183941 +0.03873 0.992115 -0.119199 0.600032 0.00394303 0.039352 0.992115 -0.118996 +0.057904 0.982287 -0.17821 0.600032 0.008856 0.058519 0.982287 -0.17801 +0.023485 0.992115 -0.123113 0.560032 0.00394303 0.024127 0.992115 -0.122991 +0.03873 0.992115 -0.119199 0.600032 0.00394303 0.039352 0.992115 -0.118996 +0.079783 0.982287 -0.169548 0.640032 0.008856 0.080368 0.982287 -0.169271 +0.057904 0.982287 -0.17821 0.600032 0.008856 0.058519 0.982287 -0.17801 +0.053364 0.992115 -0.113405 0.640032 0.00394303 0.053956 0.992115 -0.113126 +0.079783 0.982287 -0.169548 0.640032 0.008856 0.080368 0.982287 -0.169271 +0.03873 0.992115 -0.119199 0.600032 0.00394303 0.039352 0.992115 -0.118996 +0.053364 0.992115 -0.113405 0.640032 0.00394303 0.053956 0.992115 -0.113126 +0.100404 0.982287 -0.158211 0.680032 0.008856 0.10095 0.982287 -0.157864 +0.079783 0.982287 -0.169548 0.640032 0.008856 0.080368 0.982287 -0.169271 +0.067157 0.992115 -0.105822 0.680032 0.00394303 0.067709 0.992115 -0.105472 +0.100404 0.982287 -0.158211 0.680032 0.008856 0.10095 0.982287 -0.157864 +0.053364 0.992115 -0.113405 0.640032 0.00394303 0.053956 0.992115 -0.113126 +0.067157 0.992115 -0.105822 0.680032 0.00394303 0.067709 0.992115 -0.105472 +0.119441 0.982287 -0.14438 0.720032 0.008856 0.11994 0.982287 -0.143966 +0.100404 0.982287 -0.158211 0.680032 0.008856 0.10095 0.982287 -0.157864 +0.07989 0.992115 -0.096571 0.720032 0.00394303 0.080394 0.992115 -0.096153 +0.119441 0.982287 -0.14438 0.720032 0.008856 0.11994 0.982287 -0.143966 +0.067157 0.992115 -0.105822 0.680032 0.00394303 0.067709 0.992115 -0.105472 +0.07989 0.992115 -0.096571 0.720032 0.00394303 0.080394 0.992115 -0.096153 +0.136595 0.982287 -0.128271 0.760032 0.008856 0.137038 0.982287 -0.127799 +0.119441 0.982287 -0.14438 0.720032 0.008856 0.11994 0.982287 -0.143966 +0.091364 0.992115 -0.085797 0.760032 0.00394303 0.091811 0.992115 -0.085319 +0.136595 0.982287 -0.128271 0.760032 0.008856 0.137038 0.982287 -0.127799 +0.07989 0.992115 -0.096571 0.720032 0.00394303 0.080394 0.992115 -0.096153 +0.091364 0.992115 -0.085797 0.760032 0.00394303 0.091811 0.992115 -0.085319 +0.151595 0.982287 -0.11014 0.800032 0.008856 0.151975 0.982287 -0.109616 +0.136595 0.982287 -0.128271 0.760032 0.008856 0.137038 0.982287 -0.127799 +0.101397 0.992115 -0.073669 0.800032 0.00394303 0.101781 0.992115 -0.07314 +0.151595 0.982287 -0.11014 0.800032 0.008856 0.151975 0.982287 -0.109616 +0.091364 0.992115 -0.085797 0.760032 0.00394303 0.091811 0.992115 -0.085319 +0.101397 0.992115 -0.073669 0.800032 0.00394303 0.101781 0.992115 -0.07314 +0.164204 0.982287 -0.090272 0.840032 0.008856 0.164515 0.982287 -0.089705 +0.151595 0.982287 -0.11014 0.800032 0.008856 0.151975 0.982287 -0.109616 +0.10983 0.992115 -0.06038 0.840032 0.00394303 0.110145 0.992115 -0.059806 +0.164204 0.982287 -0.090272 0.840032 0.008856 0.164515 0.982287 -0.089705 +0.101397 0.992115 -0.073669 0.800032 0.00394303 0.101781 0.992115 -0.07314 +0.10983 0.992115 -0.06038 0.840032 0.00394303 0.110145 0.992115 -0.059806 +0.174223 0.982287 -0.06898 0.880032 0.008856 0.17446 0.982287 -0.068377 +0.164204 0.982287 -0.090272 0.840032 0.008856 0.164515 0.982287 -0.089705 +0.116532 0.992115 -0.046138 0.880031 0.00394303 0.116772 0.992115 -0.045531 +0.174223 0.982287 -0.06898 0.880032 0.008856 0.17446 0.982287 -0.068377 +0.10983 0.992115 -0.06038 0.840032 0.00394303 0.110145 0.992115 -0.059806 +0.116532 0.992115 -0.046138 0.880031 0.00394303 0.116772 0.992115 -0.045531 +0.181494 0.982287 -0.0466 0.920032 0.008856 0.181655 0.982287 -0.045972 +0.174223 0.982287 -0.06898 0.880032 0.008856 0.17446 0.982287 -0.068377 +0.121396 0.992115 -0.031169 0.920031 0.00394303 0.121558 0.992115 -0.030536 +0.181494 0.982287 -0.0466 0.920032 0.008856 0.181655 0.982287 -0.045972 +0.116532 0.992115 -0.046138 0.880031 0.00394303 0.116772 0.992115 -0.045531 +0.121396 0.992115 -0.031169 0.920031 0.00394303 0.121558 0.992115 -0.030536 +0.185904 0.982287 -0.023485 0.960031 0.008856 0.185984 0.982287 -0.022842 +0.181494 0.982287 -0.0466 0.920032 0.008856 0.181655 0.982287 -0.045972 +0.124345 0.992115 -0.015708 0.960031 0.00394303 0.124427 0.992115 -0.015061 +0.185904 0.982287 -0.023485 0.960031 0.008856 0.185984 0.982287 -0.022842 +0.121396 0.992115 -0.031169 0.920031 0.00394303 0.121558 0.992115 -0.030536 +0.124345 0.992115 -0.015708 0.960031 0.00394303 0.124427 0.992115 -0.015061 +0.187381 0.982287 -0 1.00003 0.008856 0.187381 0.982287 0.000647 +0.185904 0.982287 -0.023485 0.960031 0.008856 0.185984 0.982287 -0.022842 +0.125333 0.992115 -0 1.00003 0.00394303 0.125333 0.992115 0.000653 +0.187381 0.982287 -0 1.00003 0.008856 0.187381 0.982287 0.000647 +0.124345 0.992115 -0.015708 0.960031 0.00394303 0.124427 0.992115 -0.015061 +0.125333 0.992115 -0 1.00003 0.00394303 0.125333 0.992115 0.000653 +0.185904 0.982287 0.023485 1.04003 0.008856 0.185822 0.982287 0.024126 +0.187381 0.982287 -0 1.00003 0.008856 0.187381 0.982287 0.000647 +0.124345 0.992115 0.015708 1.04003 0.00394303 0.124263 0.992115 0.016356 +0.185904 0.982287 0.023485 1.04003 0.008856 0.185822 0.982287 0.024126 +0.125333 0.992115 -0 1.00003 0.00394303 0.125333 0.992115 0.000653 +0.062295 0.998027 0.00787 1.04003 0.000986993 0.068368 0.997612 0.009833 +0.121396 0.992115 0.031169 1.08003 0.00394303 0.121233 0.992115 0.031802 +0.124345 0.992115 0.015708 1.04003 0.00394303 0.124263 0.992115 0.016356 +0.060818 0.998027 0.015615 1.08003 0.000986993 0.066597 0.997612 0.018322 +0.121396 0.992115 0.031169 1.08003 0.00394303 0.121233 0.992115 0.031802 +0.062295 0.998027 0.00787 1.04003 0.000986993 0.068368 0.997612 0.009833 +0.060818 0.998027 0.015615 1.08003 0.000986993 0.066597 0.997612 0.018322 +0.116532 0.992115 0.046138 1.12003 0.00394303 0.116291 0.992115 0.046746 +0.121396 0.992115 0.031169 1.08003 0.00394303 0.121233 0.992115 0.031802 +0.058381 0.998027 0.023115 1.12003 0.000986993 0.063776 0.997612 0.026525 +0.116532 0.992115 0.046138 1.12003 0.00394303 0.116291 0.992115 0.046746 +0.060818 0.998027 0.015615 1.08003 0.000986993 0.066597 0.997612 0.018322 +0.058381 0.998027 0.023115 1.12003 0.000986993 0.063776 0.997612 0.026525 +0.10983 0.992115 0.06038 1.16003 0.00394303 0.109515 0.992115 0.060952 +0.116532 0.992115 0.046138 1.12003 0.00394303 0.116291 0.992115 0.046746 +0.055024 0.998027 0.03025 1.16003 0.000986993 0.059948 0.997612 0.034305 +0.10983 0.992115 0.06038 1.16003 0.00394303 0.109515 0.992115 0.060952 +0.058381 0.998027 0.023115 1.12003 0.000986993 0.063776 0.997612 0.026525 +0.055024 0.998027 0.03025 1.16003 0.000986993 0.059948 0.997612 0.034305 +0.101397 0.992115 0.073669 1.20003 0.00394303 0.101012 0.992115 0.074196 +0.10983 0.992115 0.06038 1.16003 0.00394303 0.109515 0.992115 0.060952 +0.050799 0.998027 0.036907 1.20003 0.000986993 0.055175 0.997612 0.04155 +0.101397 0.992115 0.073669 1.20003 0.00394303 0.101012 0.992115 0.074196 +0.055024 0.998027 0.03025 1.16003 0.000986993 0.059948 0.997612 0.034305 +0.050799 0.998027 0.036907 1.20003 0.000986993 0.055175 0.997612 0.04155 +0.091364 0.992115 0.085797 1.24003 0.00394303 0.090916 0.992115 0.086273 +0.101397 0.992115 0.073669 1.20003 0.00394303 0.101012 0.992115 0.074196 +0.045772 0.998027 0.042983 1.24003 0.000986993 0.049533 0.997612 0.048139 +0.091364 0.992115 0.085797 1.24003 0.00394303 0.090916 0.992115 0.086273 +0.050799 0.998027 0.036907 1.20003 0.000986993 0.055175 0.997612 0.04155 +0.045772 0.998027 0.042983 1.24003 0.000986993 0.049533 0.997612 0.048139 +0.07989 0.992115 0.096571 1.28003 0.00394303 0.079386 0.992115 0.096986 +0.091364 0.992115 0.085797 1.24003 0.00394303 0.090916 0.992115 0.086273 +0.040024 0.998027 0.048381 1.28003 0.000986993 0.043109 0.997612 0.053968 +0.07989 0.992115 0.096571 1.28003 0.00394303 0.079386 0.992115 0.096986 +0.045772 0.998027 0.042983 1.24003 0.000986993 0.049533 0.997612 0.048139 +0.040024 0.998027 0.048381 1.28003 0.000986993 0.043109 0.997612 0.053968 +0.067157 0.992115 0.105822 1.32003 0.00394303 0.066605 0.992115 0.106173 +0.07989 0.992115 0.096571 1.28003 0.00394303 0.079386 0.992115 0.096986 +0.033645 0.998027 0.053016 1.32003 0.000986993 0.036005 0.997612 0.058947 +0.067157 0.992115 0.105822 1.32003 0.00394303 0.066605 0.992115 0.106173 +0.040024 0.998027 0.048381 1.28003 0.000986993 0.043109 0.997612 0.053968 +0.033645 0.998027 0.053016 1.32003 0.000986993 0.036005 0.997612 0.058947 +0.053364 0.992115 0.113405 1.36003 0.00394303 0.052772 0.992115 0.113683 +0.067157 0.992115 0.105822 1.32003 0.00394303 0.066605 0.992115 0.106173 +0.026735 0.998027 0.056815 1.36003 0.000986993 0.028333 0.997612 0.062993 +0.053364 0.992115 0.113405 1.36003 0.00394303 0.052772 0.992115 0.113683 +0.033645 0.998027 0.053016 1.32003 0.000986993 0.036005 0.997612 0.058947 +0.026735 0.998027 0.056815 1.36003 0.000986993 0.028333 0.997612 0.062993 +0.03873 0.992115 0.119199 1.40003 0.00394303 0.038108 0.992115 0.119401 +0.053364 0.992115 0.113405 1.36003 0.00394303 0.052772 0.992115 0.113683 +0.019403 0.998027 0.059717 1.40003 0.000986993 0.020214 0.997612 0.066049 +0.03873 0.992115 0.119199 1.40003 0.00394303 0.038108 0.992115 0.119401 +0.026735 0.998027 0.056815 1.36003 0.000986993 0.028333 0.997612 0.062993 +0.019403 0.998027 0.059717 1.40003 0.000986993 0.020214 0.997612 0.066049 +0.023485 0.992115 0.123113 1.44003 0.00394303 0.022843 0.992115 0.123235 +0.03873 0.992115 0.119199 1.40003 0.00394303 0.038108 0.992115 0.119401 +0.011766 0.998027 0.061678 1.44003 0.000986993 0.011777 0.997612 0.068061 +0.023485 0.992115 0.123113 1.44003 0.00394303 0.022843 0.992115 0.123235 +0.019403 0.998027 0.059717 1.40003 0.000986993 0.020214 0.997612 0.066049 +0.011766 0.998027 0.061678 1.44003 0.000986993 0.011777 0.997612 0.068061 +0.00787 0.992115 0.125086 1.48003 0.00394303 0.007217 0.992115 0.125126 +0.023485 0.992115 0.123113 1.44003 0.00394303 0.022843 0.992115 0.123235 +0.003943 0.998027 0.062667 1.48003 0.000986993 0.003154 0.997612 0.068999 +0.00787 0.992115 0.125086 1.48003 0.00394303 0.007217 0.992115 0.125126 +0.011766 0.998027 0.061678 1.44003 0.000986993 0.011777 0.997612 0.068061 +0.003943 0.998027 0.062667 1.48003 0.000986993 0.003154 0.997612 0.068999 +-0.00787 0.992115 0.125086 1.52003 0.00394303 -0.008522 0.992115 0.125044 +0.00787 0.992115 0.125086 1.48003 0.00394303 0.007217 0.992115 0.125126 +-0.003943 0.998027 0.062667 1.52003 0.000986993 -0.005519 0.997612 0.06885 +-0.00787 0.992115 0.125086 1.52003 0.00394303 -0.008522 0.992115 0.125044 +0.003943 0.998027 0.062667 1.48003 0.000986993 0.003154 0.997612 0.068999 +-0.003943 0.998027 0.062667 -0.47997 0.000986993 -0.005519 0.997612 0.06885 +-0.023485 0.992115 0.123113 -0.439969 0.00394303 -0.024127 0.992115 0.12299 +-0.00787 0.992115 0.125086 -0.479969 0.00394303 -0.008522 0.992115 0.125044 +-0.011766 0.998027 0.061678 -0.439969 0.000986993 -0.014105 0.997612 0.067617 +-0.023485 0.992115 0.123113 -0.439969 0.00394303 -0.024127 0.992115 0.12299 +-0.003943 0.998027 0.062667 -0.47997 0.000986993 -0.005519 0.997612 0.06885 +-0.011766 0.998027 0.061678 -0.439969 0.000986993 -0.014105 0.997612 0.067617 +-0.03873 0.992115 0.119199 -0.399969 0.00394303 -0.039352 0.992115 0.118997 +-0.023485 0.992115 0.123113 -0.439969 0.00394303 -0.024127 0.992115 0.12299 +-0.019403 0.998027 0.059717 -0.399969 0.000986993 -0.022468 0.997612 0.065317 +-0.03873 0.992115 0.119199 -0.399969 0.00394303 -0.039352 0.992115 0.118997 +-0.011766 0.998027 0.061678 -0.439969 0.000986993 -0.014105 0.997612 0.067617 +-0.019403 0.998027 0.059717 -0.399969 0.000986993 -0.022468 0.997612 0.065317 +-0.053364 0.992115 0.113405 -0.359969 0.00394303 -0.053956 0.992115 0.113127 +-0.03873 0.992115 0.119199 -0.399969 0.00394303 -0.039352 0.992115 0.118997 +-0.026735 0.998027 0.056815 -0.359969 0.000986993 -0.030477 0.997612 0.061983 +-0.053364 0.992115 0.113405 -0.359969 0.00394303 -0.053956 0.992115 0.113127 +-0.019403 0.998027 0.059717 -0.399969 0.000986993 -0.022468 0.997612 0.065317 +-0.026735 0.998027 0.056815 -0.359969 0.000986993 -0.030477 0.997612 0.061983 +-0.067157 0.992115 0.105822 -0.319968 0.00394303 -0.067709 0.992115 0.105471 +-0.053364 0.992115 0.113405 -0.359969 0.00394303 -0.053956 0.992115 0.113127 +-0.033645 0.998027 0.053016 -0.319969 0.000986993 -0.038005 0.997612 0.057673 +-0.067157 0.992115 0.105822 -0.319968 0.00394303 -0.067709 0.992115 0.105471 +-0.026735 0.998027 0.056815 -0.359969 0.000986993 -0.030477 0.997612 0.061983 +-0.033645 0.998027 0.053016 -0.319969 0.000986993 -0.038005 0.997612 0.057673 +-0.07989 0.992115 0.096571 -0.279968 0.00394303 -0.080394 0.992115 0.096152 +-0.067157 0.992115 0.105822 -0.319968 0.00394303 -0.067709 0.992115 0.105471 +-0.040024 0.998027 0.048381 -0.279968 0.000986993 -0.044934 0.997612 0.052457 +-0.07989 0.992115 0.096571 -0.279968 0.00394303 -0.080394 0.992115 0.096152 +-0.033645 0.998027 0.053016 -0.319969 0.000986993 -0.038005 0.997612 0.057673 +-0.040024 0.998027 0.048381 -0.279968 0.000986993 -0.044934 0.997612 0.052457 +-0.091364 0.992115 0.085797 -0.239968 0.00394303 -0.091811 0.992115 0.085319 +-0.07989 0.992115 0.096571 -0.279968 0.00394303 -0.080394 0.992115 0.096152 +-0.045772 0.998027 0.042983 -0.239968 0.000986993 -0.051155 0.997612 0.046412 +-0.091364 0.992115 0.085797 -0.239968 0.00394303 -0.091811 0.992115 0.085319 +-0.040024 0.998027 0.048381 -0.279968 0.000986993 -0.044934 0.997612 0.052457 +-0.045772 0.998027 0.042983 -0.239968 0.000986993 -0.051155 0.997612 0.046412 +-0.101397 0.992115 0.073669 -0.199968 0.00394303 -0.101781 0.992115 0.073138 +-0.091364 0.992115 0.085797 -0.239968 0.00394303 -0.091811 0.992115 0.085319 +-0.050799 0.998027 0.036907 -0.199968 0.000986993 -0.056568 0.997612 0.039635 +-0.101397 0.992115 0.073669 -0.199968 0.00394303 -0.101781 0.992115 0.073138 +-0.045772 0.998027 0.042983 -0.239968 0.000986993 -0.051155 0.997612 0.046412 +-0.050799 0.998027 0.036907 -0.199968 0.000986993 -0.056568 0.997612 0.039635 +-0.10983 0.992115 0.06038 -0.159968 0.00394303 -0.110145 0.992115 0.059805 +-0.101397 0.992115 0.073669 -0.199968 0.00394303 -0.101781 0.992115 0.073138 +-0.055024 0.998027 0.03025 -0.159968 0.000986993 -0.06109 0.997612 0.032234 +-0.10983 0.992115 0.06038 -0.159968 0.00394303 -0.110145 0.992115 0.059805 +-0.050799 0.998027 0.036907 -0.199968 0.000986993 -0.056568 0.997612 0.039635 +-0.055024 0.998027 0.03025 -0.159968 0.000986993 -0.06109 0.997612 0.032234 +-0.116532 0.992115 0.046138 -0.119968 0.00394303 -0.116772 0.992114 0.045533 +-0.10983 0.992115 0.06038 -0.159968 0.00394303 -0.110145 0.992115 0.059805 +-0.058381 0.998027 0.023115 -0.119967 0.000986993 -0.064648 0.997612 0.024321 +-0.116532 0.992115 0.046138 -0.119968 0.00394303 -0.116772 0.992114 0.045533 +-0.055024 0.998027 0.03025 -0.159968 0.000986993 -0.06109 0.997612 0.032234 +-0.058381 0.998027 0.023115 -0.119967 0.000986993 -0.064648 0.997612 0.024321 +-0.121396 0.992115 0.031169 -0.079968 0.00394303 -0.121558 0.992115 0.03053 +-0.116532 0.992115 0.046138 -0.119968 0.00394303 -0.116772 0.992114 0.045533 +-0.060818 0.998027 0.015615 -0.079967 0.000986993 -0.067186 0.997612 0.016026 +-0.121396 0.992115 0.031169 -0.079968 0.00394303 -0.121558 0.992115 0.03053 +-0.058381 0.998027 0.023115 -0.119967 0.000986993 -0.064648 0.997612 0.024321 +-0.060818 0.998027 0.015615 -0.079967 0.000986993 -0.067186 0.997612 0.016026 +-0.124345 0.992115 0.015708 -0.039968 0.00394303 -0.124426 0.992115 0.015064 +-0.121396 0.992115 0.031169 -0.079968 0.00394303 -0.121558 0.992115 0.03053 +-0.062295 0.998027 0.00787 -0.039967 0.000986993 -0.068665 0.997612 0.007484 +-0.124345 0.992115 0.015708 -0.039968 0.00394303 -0.124426 0.992115 0.015064 +-0.060818 0.998027 0.015615 -0.079967 0.000986993 -0.067186 0.997612 0.016026 +-0.062295 0.998027 0.00787 -0.039967 0.000986993 -0.068665 0.997612 0.007484 +-0.125333 0.992115 -0 3.3e-005 0.00394303 -0.125333 0.992115 -0.000654 +-0.124345 0.992115 0.015708 -0.039968 0.00394303 -0.124426 0.992115 0.015064 +-0.062791 0.998027 -0 3.3e-005 0.000986993 -0.069061 0.997612 -0.001187 +-0.125333 0.992115 -0 3.3e-005 0.00394303 -0.125333 0.992115 -0.000654 +-0.062295 0.998027 0.00787 -0.039967 0.000986993 -0.068665 0.997612 0.007484 +-0.062791 0.998027 -0 3.3e-005 0.000986993 -0.069061 0.997612 -0.001187 +-0.124345 0.992115 -0.015708 0.040033 0.00394303 -0.124263 0.992115 -0.016357 +-0.125333 0.992115 -0 3.3e-005 0.00394303 -0.125333 0.992115 -0.000654 +-0.062295 0.998027 -0.00787 0.040033 0.000986993 -0.068368 0.997612 -0.009833 +-0.124345 0.992115 -0.015708 0.040033 0.00394303 -0.124263 0.992115 -0.016357 +-0.062791 0.998027 -0 3.3e-005 0.000986993 -0.069061 0.997612 -0.001187 +-0.062295 0.998027 -0.00787 0.040033 0.000986993 -0.068368 0.997612 -0.009833 +-0.121396 0.992115 -0.031169 0.080033 0.00394303 -0.121233 0.992115 -0.031802 +-0.124345 0.992115 -0.015708 0.040033 0.00394303 -0.124263 0.992115 -0.016357 +-0.060818 0.998027 -0.015615 0.080034 0.000986993 -0.066597 0.997612 -0.018322 +-0.121396 0.992115 -0.031169 0.080033 0.00394303 -0.121233 0.992115 -0.031802 +-0.062295 0.998027 -0.00787 0.040033 0.000986993 -0.068368 0.997612 -0.009833 +-0.060818 0.998027 -0.015615 0.080034 0.000986993 -0.066597 0.997612 -0.018322 +-0.116532 0.992115 -0.046138 0.120033 0.00394303 -0.116291 0.992115 -0.046746 +-0.121396 0.992115 -0.031169 0.080033 0.00394303 -0.121233 0.992115 -0.031802 +-0.058381 0.998027 -0.023115 0.120034 0.000986993 -0.063776 0.997612 -0.026525 +-0.116532 0.992115 -0.046138 0.120033 0.00394303 -0.116291 0.992115 -0.046746 +-0.060818 0.998027 -0.015615 0.080034 0.000986993 -0.066597 0.997612 -0.018322 +-0.058381 0.998027 -0.023115 0.120034 0.000986993 -0.063776 0.997612 -0.026525 +-0.10983 0.992115 -0.06038 0.160033 0.00394303 -0.109515 0.992115 -0.060954 +-0.116532 0.992115 -0.046138 0.120033 0.00394303 -0.116291 0.992115 -0.046746 +-0.055024 0.998027 -0.03025 0.160034 0.000986993 -0.059948 0.997612 -0.034306 +-0.10983 0.992115 -0.06038 0.160033 0.00394303 -0.109515 0.992115 -0.060954 +-0.058381 0.998027 -0.023115 0.120034 0.000986993 -0.063776 0.997612 -0.026525 +-0.055024 0.998027 -0.03025 0.160034 0.000986993 -0.059948 0.997612 -0.034306 +-0.101397 0.992115 -0.073669 0.200033 0.00394303 -0.101012 0.992115 -0.074197 +-0.10983 0.992115 -0.06038 0.160033 0.00394303 -0.109515 0.992115 -0.060954 +-0.050799 0.998027 -0.036907 0.200034 0.000986993 -0.055176 0.997612 -0.04155 +-0.101397 0.992115 -0.073669 0.200033 0.00394303 -0.101012 0.992115 -0.074197 +-0.055024 0.998027 -0.03025 0.160034 0.000986993 -0.059948 0.997612 -0.034306 +-0.050799 0.998027 -0.036907 0.200034 0.000986993 -0.055176 0.997612 -0.04155 +-0.091364 0.992115 -0.085797 0.240033 0.00394303 -0.090916 0.992115 -0.086273 +-0.101397 0.992115 -0.073669 0.200033 0.00394303 -0.101012 0.992115 -0.074197 +-0.045772 0.998027 -0.042983 0.240034 0.000986993 -0.049533 0.997612 -0.048139 +-0.091364 0.992115 -0.085797 0.240033 0.00394303 -0.090916 0.992115 -0.086273 +-0.050799 0.998027 -0.036907 0.200034 0.000986993 -0.055176 0.997612 -0.04155 +-0.045772 0.998027 -0.042983 0.240034 0.000986993 -0.049533 0.997612 -0.048139 +-0.07989 0.992115 -0.096571 0.280033 0.00394303 -0.079386 0.992115 -0.096987 +-0.091364 0.992115 -0.085797 0.240033 0.00394303 -0.090916 0.992115 -0.086273 +-0.040024 0.998027 -0.048381 0.280034 0.000986993 -0.043109 0.997612 -0.053968 +-0.07989 0.992115 -0.096571 0.280033 0.00394303 -0.079386 0.992115 -0.096987 +-0.045772 0.998027 -0.042983 0.240034 0.000986993 -0.049533 0.997612 -0.048139 +-0.040024 0.998027 -0.048381 0.280034 0.000986993 -0.043109 0.997612 -0.053968 +-0.067157 0.992115 -0.105822 0.320033 0.00394303 -0.066605 0.992115 -0.106172 +-0.07989 0.992115 -0.096571 0.280033 0.00394303 -0.079386 0.992115 -0.096987 +-0.033645 0.998027 -0.053016 0.320034 0.000986993 -0.036005 0.997612 -0.058947 +-0.067157 0.992115 -0.105822 0.320033 0.00394303 -0.066605 0.992115 -0.106172 +-0.040024 0.998027 -0.048381 0.280034 0.000986993 -0.043109 0.997612 -0.053968 +-0.033645 0.998027 -0.053016 0.320034 0.000986993 -0.036005 0.997612 -0.058947 +-0.053364 0.992115 -0.113405 0.360033 0.00394303 -0.052772 0.992115 -0.113683 +-0.067157 0.992115 -0.105822 0.320033 0.00394303 -0.066605 0.992115 -0.106172 +-0.026735 0.998027 -0.056815 0.360034 0.000986993 -0.028333 0.997612 -0.062993 +-0.053364 0.992115 -0.113405 0.360033 0.00394303 -0.052772 0.992115 -0.113683 +-0.033645 0.998027 -0.053016 0.320034 0.000986993 -0.036005 0.997612 -0.058947 +-0.026735 0.998027 -0.056815 0.360034 0.000986993 -0.028333 0.997612 -0.062993 +-0.03873 0.992115 -0.119199 0.400033 0.00394303 -0.038108 0.992115 -0.119401 +-0.053364 0.992115 -0.113405 0.360033 0.00394303 -0.052772 0.992115 -0.113683 +-0.019403 0.998027 -0.059717 0.400034 0.000986993 -0.020214 0.997612 -0.066049 +-0.03873 0.992115 -0.119199 0.400033 0.00394303 -0.038108 0.992115 -0.119401 +-0.026735 0.998027 -0.056815 0.360034 0.000986993 -0.028333 0.997612 -0.062993 +-0.019403 0.998027 -0.059717 0.400034 0.000986993 -0.020214 0.997612 -0.066049 +-0.023485 0.992115 -0.123113 0.440033 0.00394303 -0.022843 0.992115 -0.123235 +-0.03873 0.992115 -0.119199 0.400033 0.00394303 -0.038108 0.992115 -0.119401 +-0.011766 0.998027 -0.061678 0.440034 0.000986993 -0.011777 0.997612 -0.068061 +-0.023485 0.992115 -0.123113 0.440033 0.00394303 -0.022843 0.992115 -0.123235 +-0.019403 0.998027 -0.059717 0.400034 0.000986993 -0.020214 0.997612 -0.066049 +-0.011766 0.998027 -0.061678 0.440034 0.000986993 -0.011777 0.997612 -0.068061 +-0.00787 0.992115 -0.125086 0.480033 0.00394303 -0.007217 0.992115 -0.125127 +-0.023485 0.992115 -0.123113 0.440033 0.00394303 -0.022843 0.992115 -0.123235 +-0.003943 0.998027 -0.062667 0.480033 0.000986993 -0.003154 0.997612 -0.069 +-0.00787 0.992115 -0.125086 0.480033 0.00394303 -0.007217 0.992115 -0.125127 +-0.011766 0.998027 -0.061678 0.440034 0.000986993 -0.011777 0.997612 -0.068061 +-0.003943 0.998027 -0.062667 0.480033 0.000986993 -0.003154 0.997612 -0.069 +0.00787 0.992115 -0.125086 0.520033 0.00394303 0.008522 0.992115 -0.125044 +-0.00787 0.992115 -0.125086 0.480033 0.00394303 -0.007217 0.992115 -0.125127 +0.003943 0.998027 -0.062667 0.520033 0.000986993 0.005519 0.997612 -0.068851 +0.00787 0.992115 -0.125086 0.520033 0.00394303 0.008522 0.992115 -0.125044 +-0.003943 0.998027 -0.062667 0.480033 0.000986993 -0.003154 0.997612 -0.069 +0.003943 0.998027 -0.062667 0.520033 0.000986993 0.005519 0.997612 -0.068851 +0.023485 0.992115 -0.123113 0.560032 0.00394303 0.024127 0.992115 -0.122991 +0.00787 0.992115 -0.125086 0.520033 0.00394303 0.008522 0.992115 -0.125044 +0.011766 0.998027 -0.061678 0.560033 0.000986993 0.014105 0.997612 -0.067616 +0.023485 0.992115 -0.123113 0.560032 0.00394303 0.024127 0.992115 -0.122991 +0.003943 0.998027 -0.062667 0.520033 0.000986993 0.005519 0.997612 -0.068851 +0.011766 0.998027 -0.061678 0.560033 0.000986993 0.014105 0.997612 -0.067616 +0.03873 0.992115 -0.119199 0.600032 0.00394303 0.039352 0.992115 -0.118996 +0.023485 0.992115 -0.123113 0.560032 0.00394303 0.024127 0.992115 -0.122991 +0.019403 0.998027 -0.059717 0.600033 0.000986993 0.022468 0.997612 -0.065315 +0.03873 0.992115 -0.119199 0.600032 0.00394303 0.039352 0.992115 -0.118996 +0.011766 0.998027 -0.061678 0.560033 0.000986993 0.014105 0.997612 -0.067616 +0.019403 0.998027 -0.059717 0.600033 0.000986993 0.022468 0.997612 -0.065315 +0.053364 0.992115 -0.113405 0.640032 0.00394303 0.053956 0.992115 -0.113126 +0.03873 0.992115 -0.119199 0.600032 0.00394303 0.039352 0.992115 -0.118996 +0.026735 0.998027 -0.056815 0.640033 0.000986993 0.030477 0.997612 -0.061981 +0.053364 0.992115 -0.113405 0.640032 0.00394303 0.053956 0.992115 -0.113126 +0.019403 0.998027 -0.059717 0.600033 0.000986993 0.022468 0.997612 -0.065315 +0.026735 0.998027 -0.056815 0.640033 0.000986993 0.030477 0.997612 -0.061981 +0.067157 0.992115 -0.105822 0.680032 0.00394303 0.067709 0.992115 -0.105472 +0.053364 0.992115 -0.113405 0.640032 0.00394303 0.053956 0.992115 -0.113126 +0.033645 0.998027 -0.053016 0.680032 0.000986993 0.038005 0.997612 -0.057673 +0.067157 0.992115 -0.105822 0.680032 0.00394303 0.067709 0.992115 -0.105472 +0.026735 0.998027 -0.056815 0.640033 0.000986993 0.030477 0.997612 -0.061981 +0.033645 0.998027 -0.053016 0.680032 0.000986993 0.038005 0.997612 -0.057673 +0.07989 0.992115 -0.096571 0.720032 0.00394303 0.080394 0.992115 -0.096153 +0.067157 0.992115 -0.105822 0.680032 0.00394303 0.067709 0.992115 -0.105472 +0.040024 0.998027 -0.048381 0.720032 0.000986993 0.044934 0.997612 -0.052458 +0.07989 0.992115 -0.096571 0.720032 0.00394303 0.080394 0.992115 -0.096153 +0.033645 0.998027 -0.053016 0.680032 0.000986993 0.038005 0.997612 -0.057673 +0.040024 0.998027 -0.048381 0.720032 0.000986993 0.044934 0.997612 -0.052458 +0.091364 0.992115 -0.085797 0.760032 0.00394303 0.091811 0.992115 -0.085319 +0.07989 0.992115 -0.096571 0.720032 0.00394303 0.080394 0.992115 -0.096153 +0.045772 0.998027 -0.042983 0.760032 0.000986993 0.051155 0.997612 -0.046412 +0.091364 0.992115 -0.085797 0.760032 0.00394303 0.091811 0.992115 -0.085319 +0.040024 0.998027 -0.048381 0.720032 0.000986993 0.044934 0.997612 -0.052458 +0.045772 0.998027 -0.042983 0.760032 0.000986993 0.051155 0.997612 -0.046412 +0.101397 0.992115 -0.073669 0.800032 0.00394303 0.101781 0.992115 -0.07314 +0.091364 0.992115 -0.085797 0.760032 0.00394303 0.091811 0.992115 -0.085319 +0.050799 0.998027 -0.036907 0.800032 0.000986993 0.056568 0.997612 -0.039635 +0.101397 0.992115 -0.073669 0.800032 0.00394303 0.101781 0.992115 -0.07314 +0.045772 0.998027 -0.042983 0.760032 0.000986993 0.051155 0.997612 -0.046412 +0.050799 0.998027 -0.036907 0.800032 0.000986993 0.056568 0.997612 -0.039635 +0.10983 0.992115 -0.06038 0.840032 0.00394303 0.110145 0.992115 -0.059806 +0.101397 0.992115 -0.073669 0.800032 0.00394303 0.101781 0.992115 -0.07314 +0.055024 0.998027 -0.03025 0.840031 0.000986993 0.06109 0.997612 -0.032234 +0.10983 0.992115 -0.06038 0.840032 0.00394303 0.110145 0.992115 -0.059806 +0.050799 0.998027 -0.036907 0.800032 0.000986993 0.056568 0.997612 -0.039635 +0.055024 0.998027 -0.03025 0.840031 0.000986993 0.06109 0.997612 -0.032234 +0.116532 0.992115 -0.046138 0.880031 0.00394303 0.116772 0.992115 -0.045531 +0.10983 0.992115 -0.06038 0.840032 0.00394303 0.110145 0.992115 -0.059806 +0.058381 0.998027 -0.023115 0.880031 0.000986993 0.064648 0.997612 -0.024324 +0.116532 0.992115 -0.046138 0.880031 0.00394303 0.116772 0.992115 -0.045531 +0.055024 0.998027 -0.03025 0.840031 0.000986993 0.06109 0.997612 -0.032234 +0.058381 0.998027 -0.023115 0.880031 0.000986993 0.064648 0.997612 -0.024324 +0.121396 0.992115 -0.031169 0.920031 0.00394303 0.121558 0.992115 -0.030536 +0.116532 0.992115 -0.046138 0.880031 0.00394303 0.116772 0.992115 -0.045531 +0.060818 0.998027 -0.015615 0.920031 0.000986993 0.067186 0.997612 -0.016029 +0.121396 0.992115 -0.031169 0.920031 0.00394303 0.121558 0.992115 -0.030536 +0.058381 0.998027 -0.023115 0.880031 0.000986993 0.064648 0.997612 -0.024324 +0.060818 0.998027 -0.015615 0.920031 0.000986993 0.067186 0.997612 -0.016029 +0.124345 0.992115 -0.015708 0.960031 0.00394303 0.124427 0.992115 -0.015061 +0.121396 0.992115 -0.031169 0.920031 0.00394303 0.121558 0.992115 -0.030536 +0.062295 0.998027 -0.00787 0.960031 0.000986993 0.068665 0.997612 -0.007478 +0.124345 0.992115 -0.015708 0.960031 0.00394303 0.124427 0.992115 -0.015061 +0.060818 0.998027 -0.015615 0.920031 0.000986993 0.067186 0.997612 -0.016029 +0.062295 0.998027 -0.00787 0.960031 0.000986993 0.068665 0.997612 -0.007478 +0.125333 0.992115 -0 1.00003 0.00394303 0.125333 0.992115 0.000653 +0.124345 0.992115 -0.015708 0.960031 0.00394303 0.124427 0.992115 -0.015061 +0.062791 0.998027 -0 1.00003 0.000986993 0.069062 0.997612 0.001188 +0.125333 0.992115 -0 1.00003 0.00394303 0.125333 0.992115 0.000653 +0.062295 0.998027 -0.00787 0.960031 0.000986993 0.068665 0.997612 -0.007478 +0.062791 0.998027 -0 1.00003 0.000986993 0.069062 0.997612 0.001188 +0.124345 0.992115 0.015708 1.04003 0.00394303 0.124263 0.992115 0.016356 +0.125333 0.992115 -0 1.00003 0.00394303 0.125333 0.992115 0.000653 +0.062295 0.998027 0.00787 1.04003 0.000986993 0.068368 0.997612 0.009833 +0.124345 0.992115 0.015708 1.04003 0.00394303 0.124263 0.992115 0.016356 +0.062791 0.998027 -0 1.00003 0.000986993 0.069062 0.997612 0.001188 +0 -1 -0 0.76677 1 -0 -1 0 +0.062295 -0.998027 0.00787 1.04003 0.999013 0.068665 -0.997612 0.007485 +0.060818 -0.998027 0.015615 1.08003 0.999013 0.067186 -0.997612 0.016026 +0 -1 -0 0.76677 1 -0 -1 0 +0.060818 -0.998027 0.015615 1.08003 0.999013 0.067186 -0.997612 0.016026 +0.058381 -0.998027 0.023115 1.12003 0.999013 0.064648 -0.997612 0.024322 +0 -1 -0 0.76677 1 -0 -1 0 +0.058381 -0.998027 0.023115 1.12003 0.999013 0.064648 -0.997612 0.024322 +0.055024 -0.998027 0.03025 1.16003 0.999013 0.06109 -0.997612 0.032235 +0 -1 -0 0.76677 1 -0 -1 0 +0.055024 -0.998027 0.03025 1.16003 0.999013 0.06109 -0.997612 0.032235 +0.050799 -0.998027 0.036907 1.20003 0.999013 0.056568 -0.997612 0.039636 +0 -1 -0 0.76677 1 -0 -1 0 +0.050799 -0.998027 0.036907 1.20003 0.999013 0.056568 -0.997612 0.039636 +0.045772 -0.998027 0.042983 1.24003 0.999013 0.051155 -0.997612 0.046413 +0 -1 -0 0.76677 1 -0 -1 0 +0.045772 -0.998027 0.042983 1.24003 0.999013 0.051155 -0.997612 0.046413 +0.040024 -0.998027 0.048381 1.28003 0.999013 0.044934 -0.997612 0.052457 +0 -1 -0 0.76677 1 -0 -1 0 +0.040024 -0.998027 0.048381 1.28003 0.999013 0.044934 -0.997612 0.052457 +0.033645 -0.998027 0.053016 1.32003 0.999013 0.038005 -0.997612 0.057675 +0 -1 -0 0.76677 1 -0 -1 0 +0.033645 -0.998027 0.053016 1.32003 0.999013 0.038005 -0.997612 0.057675 +0.026735 -0.998027 0.056815 1.36003 0.999013 0.030477 -0.997612 0.061984 +0 -1 -0 0.76677 1 -0 -1 0 +0.026735 -0.998027 0.056815 1.36003 0.999013 0.030477 -0.997612 0.061984 +0.019403 -0.998027 0.059717 1.40003 0.999013 0.022468 -0.997612 0.065316 +0 -1 -0 0.76677 1 -0 -1 0 +0.019403 -0.998027 0.059717 1.40003 0.999013 0.022468 -0.997612 0.065316 +0.011766 -0.998027 0.061678 1.44003 0.999013 0.014105 -0.997612 0.067618 +0 -1 -0 0.76677 1 -0 -1 0 +0.011766 -0.998027 0.061678 1.44003 0.999013 0.014105 -0.997612 0.067618 +0.003943 -0.998027 0.062667 1.48003 0.999013 0.005519 -0.997612 0.068852 +0 -1 -0 0.76677 1 -0 -1 0 +0.003943 -0.998027 0.062667 1.48003 0.999013 0.005519 -0.997612 0.068852 +-0.003943 -0.998027 0.062667 1.52003 0.999013 -0.003154 -0.997612 0.069 +0 -1 -0 0.76677 1 -0 -1 0 +-0.003943 -0.998027 0.062667 1.52003 0.999013 -0.003154 -0.997612 0.069 +-0.011766 -0.998027 0.061678 1.56003 0.999013 -0.011777 -0.997612 0.068061 +0 -1 -0 0.76677 1 -0 -1 0 +-0.011766 -0.998027 0.061678 1.56003 0.999013 -0.011777 -0.997612 0.068061 +-0.019403 -0.998027 0.059717 1.60003 0.999013 -0.020214 -0.997612 0.066048 +0 -1 -0 0.76677 1 -0 -1 0 +-0.019403 -0.998027 0.059717 1.60003 0.999013 -0.020214 -0.997612 0.066048 +-0.026735 -0.998027 0.056815 1.64003 0.999013 -0.028333 -0.997612 0.062993 +0 -1 -0 0.76677 1 -0 -1 0 +-0.026735 -0.998027 0.056815 1.64003 0.999013 -0.028333 -0.997612 0.062993 +-0.033645 -0.998027 0.053016 1.68003 0.999013 -0.036005 -0.997612 0.058947 +0 -1 -0 0.76677 1 -0 -1 0 +-0.033645 -0.998027 0.053016 1.68003 0.999013 -0.036005 -0.997612 0.058947 +-0.040024 -0.998027 0.048381 1.72003 0.999013 -0.043109 -0.997612 0.053967 +0 -1 -0 0.76677 1 -0 -1 0 +-0.040024 -0.998027 0.048381 1.72003 0.999013 -0.043109 -0.997612 0.053967 +-0.045772 -0.998027 0.042983 1.76003 0.999013 -0.049533 -0.997612 0.048139 +0 -1 -0 0.76677 1 -0 -1 0 +-0.045772 -0.998027 0.042983 1.76003 0.999013 -0.049533 -0.997612 0.048139 +-0.050799 -0.998027 0.036907 -0.199968 0.999013 -0.055176 -0.997612 0.041552 +0 -1 -0 0.76677 1 -0 -1 0 +-0.050799 -0.998027 0.036907 -0.199968 0.999013 -0.055176 -0.997612 0.041552 +-0.055024 -0.998027 0.03025 -0.159968 0.999013 -0.059948 -0.997612 0.034307 +0 -1 -0 0.76677 1 -0 -1 0 +-0.055024 -0.998027 0.03025 -0.159968 0.999013 -0.059948 -0.997612 0.034307 +-0.058381 -0.998027 0.023115 -0.119967 0.999013 -0.063776 -0.997612 0.026525 +0 -1 -0 0.76677 1 -0 -1 0 +-0.058381 -0.998027 0.023115 -0.119967 0.999013 -0.063776 -0.997612 0.026525 +-0.060818 -0.998027 0.015615 -0.079967 0.999013 -0.066597 -0.997612 0.01832 +0 -1 -0 0.76677 1 -0 -1 0 +-0.060818 -0.998027 0.015615 -0.079967 0.999013 -0.066597 -0.997612 0.01832 +-0.062295 -0.998027 0.00787 -0.039967 0.999013 -0.068368 -0.997612 0.009832 +0 -1 -0 0.76677 1 -0 -1 0 +-0.062295 -0.998027 0.00787 -0.039967 0.999013 -0.068368 -0.997612 0.009832 +-0.062791 -0.998027 -0 3.3e-005 0.999013 -0.069061 -0.997612 0.001184 +0 -1 -0 0.76677 1 -0 -1 0 +-0.062791 -0.998027 -0 3.3e-005 0.999013 -0.069061 -0.997612 0.001184 +-0.062295 -0.998027 -0.00787 0.040033 0.999013 -0.068665 -0.997612 -0.007482 +0 -1 -0 0.76677 1 -0 -1 0 +-0.062295 -0.998027 -0.00787 0.040033 0.999013 -0.068665 -0.997612 -0.007482 +-0.060818 -0.998027 -0.015615 0.080034 0.999013 -0.067186 -0.997612 -0.016022 +0 -1 -0 0.76677 1 -0 -1 0 +-0.060818 -0.998027 -0.015615 0.080034 0.999013 -0.067186 -0.997612 -0.016022 +-0.058381 -0.998027 -0.023115 0.120034 0.999013 -0.064648 -0.997612 -0.024321 +0 -1 -0 0.76677 1 -0 -1 0 +-0.058381 -0.998027 -0.023115 0.120034 0.999013 -0.064648 -0.997612 -0.024321 +-0.055024 -0.998027 -0.03025 0.160034 0.999013 -0.06109 -0.997612 -0.032235 +0 -1 -0 0.76677 1 -0 -1 0 +-0.055024 -0.998027 -0.03025 0.160034 0.999013 -0.06109 -0.997612 -0.032235 +-0.050799 -0.998027 -0.036907 0.200034 0.999013 -0.056568 -0.997612 -0.039636 +0 -1 -0 0.76677 1 -0 -1 0 +-0.050799 -0.998027 -0.036907 0.200034 0.999013 -0.056568 -0.997612 -0.039636 +-0.045772 -0.998027 -0.042983 0.240034 0.999013 -0.051155 -0.997612 -0.046413 +0 -1 -0 0.76677 1 -0 -1 0 +-0.045772 -0.998027 -0.042983 0.240034 0.999013 -0.051155 -0.997612 -0.046413 +-0.040024 -0.998027 -0.048381 0.280034 0.999013 -0.044934 -0.997612 -0.052457 +0 -1 -0 0.76677 1 -0 -1 0 +-0.040024 -0.998027 -0.048381 0.280034 0.999013 -0.044934 -0.997612 -0.052457 +-0.033645 -0.998027 -0.053016 0.320034 0.999013 -0.038005 -0.997612 -0.057675 +0 -1 -0 0.76677 1 -0 -1 0 +-0.033645 -0.998027 -0.053016 0.320034 0.999013 -0.038005 -0.997612 -0.057675 +-0.026735 -0.998027 -0.056815 0.360034 0.999013 -0.030477 -0.997612 -0.061984 +0 -1 -0 0.76677 1 -0 -1 0 +-0.026735 -0.998027 -0.056815 0.360034 0.999013 -0.030477 -0.997612 -0.061984 +-0.019403 -0.998027 -0.059717 0.400034 0.999013 -0.022468 -0.997612 -0.065316 +0 -1 -0 0.76677 1 -0 -1 0 +-0.019403 -0.998027 -0.059717 0.400034 0.999013 -0.022468 -0.997612 -0.065316 +-0.011766 -0.998027 -0.061678 0.440034 0.999013 -0.014105 -0.997612 -0.067616 +0 -1 -0 0.76677 1 -0 -1 0 +-0.011766 -0.998027 -0.061678 0.440034 0.999013 -0.014105 -0.997612 -0.067616 +-0.003943 -0.998027 -0.062667 0.480033 0.999013 -0.005519 -0.997612 -0.06885 +0 -1 -0 0.76677 1 -0 -1 0 +-0.003943 -0.998027 -0.062667 0.480033 0.999013 -0.005519 -0.997612 -0.06885 +0.003943 -0.998027 -0.062667 0.520033 0.999013 0.003154 -0.997612 -0.068999 +0 -1 -0 0.76677 1 -0 -1 0 +0.003943 -0.998027 -0.062667 0.520033 0.999013 0.003154 -0.997612 -0.068999 +0.011766 -0.998027 -0.061678 0.560033 0.999013 0.011777 -0.997612 -0.06806 +0 -1 -0 0.76677 1 -0 -1 0 +0.011766 -0.998027 -0.061678 0.560033 0.999013 0.011777 -0.997612 -0.06806 +0.019403 -0.998027 -0.059717 0.600033 0.999013 0.020215 -0.997612 -0.066048 +0 -1 -0 0.76677 1 -0 -1 0 +0.019403 -0.998027 -0.059717 0.600033 0.999013 0.020215 -0.997612 -0.066048 +0.026735 -0.998027 -0.056815 0.640033 0.999013 0.028333 -0.997612 -0.062993 +0 -1 -0 0.76677 1 -0 -1 0 +0.026735 -0.998027 -0.056815 0.640033 0.999013 0.028333 -0.997612 -0.062993 +0.033645 -0.998027 -0.053016 0.680032 0.999013 0.036005 -0.997612 -0.058947 +0 -1 -0 0.76677 1 -0 -1 0 +0.033645 -0.998027 -0.053016 0.680032 0.999013 0.036005 -0.997612 -0.058947 +0.040024 -0.998027 -0.048381 0.720032 0.999013 0.043109 -0.997612 -0.053968 +0 -1 -0 0.76677 1 -0 -1 0 +0.040024 -0.998027 -0.048381 0.720032 0.999013 0.043109 -0.997612 -0.053968 +0.045772 -0.998027 -0.042983 0.760032 0.999013 0.049533 -0.997612 -0.048139 +0 -1 -0 0.76677 1 -0 -1 0 +0.045772 -0.998027 -0.042983 0.760032 0.999013 0.049533 -0.997612 -0.048139 +0.050799 -0.998027 -0.036907 0.800032 0.999013 0.055176 -0.997612 -0.041551 +0 -1 -0 0.76677 1 -0 -1 0 +0.050799 -0.998027 -0.036907 0.800032 0.999013 0.055176 -0.997612 -0.041551 +0.055024 -0.998027 -0.03025 0.840031 0.999013 0.059948 -0.997612 -0.034306 +0 -1 -0 0.76677 1 -0 -1 0 +0.055024 -0.998027 -0.03025 0.840031 0.999013 0.059948 -0.997612 -0.034306 +0.058381 -0.998027 -0.023115 0.880031 0.999013 0.063776 -0.997612 -0.026525 +0 -1 -0 0.76677 1 -0 -1 0 +0.058381 -0.998027 -0.023115 0.880031 0.999013 0.063776 -0.997612 -0.026525 +0.060818 -0.998027 -0.015615 0.920031 0.999013 0.066597 -0.997612 -0.018323 +0 -1 -0 0.76677 1 -0 -1 0 +0.060818 -0.998027 -0.015615 0.920031 0.999013 0.066597 -0.997612 -0.018323 +0.062295 -0.998027 -0.00787 0.960031 0.999013 0.068368 -0.997612 -0.009834 +0 -1 -0 0.76677 1 -0 -1 0 +0.062295 -0.998027 -0.00787 0.960031 0.999013 0.068368 -0.997612 -0.009834 +0.062791 -0.998027 -0 1.00003 0.999013 0.069062 -0.997612 -0.001184 +0 -1 -0 0.76677 1 -0 -1 0 +0.062791 -0.998027 -0 1.00003 0.999013 0.069062 -0.997612 -0.001184 +0.062295 -0.998027 0.00787 1.04003 0.999013 0.068665 -0.997612 0.007485 +0 1 -0 0.76677 0 0 1 -0 +0.060818 0.998027 0.015615 1.08003 0.000986993 0.066597 0.997612 0.018322 +0.062295 0.998027 0.00787 1.04003 0.000986993 0.068368 0.997612 0.009833 +0 1 -0 0.76677 0 0 1 -0 +0.058381 0.998027 0.023115 1.12003 0.000986993 0.063776 0.997612 0.026525 +0.060818 0.998027 0.015615 1.08003 0.000986993 0.066597 0.997612 0.018322 +0 1 -0 0.76677 0 0 1 -0 +0.055024 0.998027 0.03025 1.16003 0.000986993 0.059948 0.997612 0.034305 +0.058381 0.998027 0.023115 1.12003 0.000986993 0.063776 0.997612 0.026525 +0 1 -0 0.76677 0 0 1 -0 +0.050799 0.998027 0.036907 1.20003 0.000986993 0.055175 0.997612 0.04155 +0.055024 0.998027 0.03025 1.16003 0.000986993 0.059948 0.997612 0.034305 +0 1 -0 0.76677 0 0 1 -0 +0.045772 0.998027 0.042983 1.24003 0.000986993 0.049533 0.997612 0.048139 +0.050799 0.998027 0.036907 1.20003 0.000986993 0.055175 0.997612 0.04155 +0 1 -0 0.76677 0 0 1 -0 +0.040024 0.998027 0.048381 1.28003 0.000986993 0.043109 0.997612 0.053968 +0.045772 0.998027 0.042983 1.24003 0.000986993 0.049533 0.997612 0.048139 +0 1 -0 0.76677 0 0 1 -0 +0.033645 0.998027 0.053016 1.32003 0.000986993 0.036005 0.997612 0.058947 +0.040024 0.998027 0.048381 1.28003 0.000986993 0.043109 0.997612 0.053968 +0 1 -0 0.76677 0 0 1 -0 +0.026735 0.998027 0.056815 1.36003 0.000986993 0.028333 0.997612 0.062993 +0.033645 0.998027 0.053016 1.32003 0.000986993 0.036005 0.997612 0.058947 +0 1 -0 0.76677 0 0 1 -0 +0.019403 0.998027 0.059717 1.40003 0.000986993 0.020214 0.997612 0.066049 +0.026735 0.998027 0.056815 1.36003 0.000986993 0.028333 0.997612 0.062993 +0 1 -0 0.76677 0 0 1 -0 +0.011766 0.998027 0.061678 1.44003 0.000986993 0.011777 0.997612 0.068061 +0.019403 0.998027 0.059717 1.40003 0.000986993 0.020214 0.997612 0.066049 +0 1 -0 0.76677 0 0 1 -0 +0.003943 0.998027 0.062667 1.48003 0.000986993 0.003154 0.997612 0.068999 +0.011766 0.998027 0.061678 1.44003 0.000986993 0.011777 0.997612 0.068061 +0 1 -0 0.76677 0 0 1 -0 +-0.003943 0.998027 0.062667 1.52003 0.000986993 -0.005519 0.997612 0.06885 +0.003943 0.998027 0.062667 1.48003 0.000986993 0.003154 0.997612 0.068999 +0 1 -0 0.76677 0 0 1 -0 +-0.011766 0.998027 0.061678 1.56003 0.000986993 -0.014105 0.997612 0.067617 +-0.003943 0.998027 0.062667 1.52003 0.000986993 -0.005519 0.997612 0.06885 +0 1 -0 0.76677 0 0 1 -0 +-0.019403 0.998027 0.059717 1.60003 0.000986993 -0.022468 0.997612 0.065317 +-0.011766 0.998027 0.061678 1.56003 0.000986993 -0.014105 0.997612 0.067617 +0 1 -0 0.76677 0 0 1 -0 +-0.026735 0.998027 0.056815 1.64003 0.000986993 -0.030477 0.997612 0.061983 +-0.019403 0.998027 0.059717 1.60003 0.000986993 -0.022468 0.997612 0.065317 +0 1 -0 0.76677 0 0 1 -0 +-0.033645 0.998027 0.053016 1.68003 0.000986993 -0.038005 0.997612 0.057673 +-0.026735 0.998027 0.056815 1.64003 0.000986993 -0.030477 0.997612 0.061983 +0 1 -0 0.76677 0 0 1 -0 +-0.040024 0.998027 0.048381 1.72003 0.000986993 -0.044934 0.997612 0.052457 +-0.033645 0.998027 0.053016 1.68003 0.000986993 -0.038005 0.997612 0.057673 +0 1 -0 0.76677 0 0 1 -0 +-0.045772 0.998027 0.042983 1.76003 0.000986993 -0.051155 0.997612 0.046412 +-0.040024 0.998027 0.048381 1.72003 0.000986993 -0.044934 0.997612 0.052457 +0 1 -0 0.76677 0 0 1 -0 +-0.050799 0.998027 0.036907 1.80003 0.000986993 -0.056568 0.997612 0.039635 +-0.045772 0.998027 0.042983 1.76003 0.000986993 -0.051155 0.997612 0.046412 +0 1 -0 0.76677 0 0 1 -0 +-0.055024 0.998027 0.03025 -0.159968 0.000986993 -0.06109 0.997612 0.032234 +-0.050799 0.998027 0.036907 -0.199968 0.000986993 -0.056568 0.997612 0.039635 +0 1 -0 0.76677 0 0 1 -0 +-0.058381 0.998027 0.023115 -0.119967 0.000986993 -0.064648 0.997612 0.024321 +-0.055024 0.998027 0.03025 -0.159968 0.000986993 -0.06109 0.997612 0.032234 +0 1 -0 0.76677 0 0 1 -0 +-0.060818 0.998027 0.015615 -0.079967 0.000986993 -0.067186 0.997612 0.016026 +-0.058381 0.998027 0.023115 -0.119967 0.000986993 -0.064648 0.997612 0.024321 +0 1 -0 0.76677 0 0 1 -0 +-0.062295 0.998027 0.00787 -0.039967 0.000986993 -0.068665 0.997612 0.007484 +-0.060818 0.998027 0.015615 -0.079967 0.000986993 -0.067186 0.997612 0.016026 +0 1 -0 0.76677 0 0 1 -0 +-0.062791 0.998027 -0 3.3e-005 0.000986993 -0.069061 0.997612 -0.001187 +-0.062295 0.998027 0.00787 -0.039967 0.000986993 -0.068665 0.997612 0.007484 +0 1 -0 0.76677 0 0 1 -0 +-0.062295 0.998027 -0.00787 0.040033 0.000986993 -0.068368 0.997612 -0.009833 +-0.062791 0.998027 -0 3.3e-005 0.000986993 -0.069061 0.997612 -0.001187 +0 1 -0 0.76677 0 0 1 -0 +-0.060818 0.998027 -0.015615 0.080034 0.000986993 -0.066597 0.997612 -0.018322 +-0.062295 0.998027 -0.00787 0.040033 0.000986993 -0.068368 0.997612 -0.009833 +0 1 -0 0.76677 0 0 1 -0 +-0.058381 0.998027 -0.023115 0.120034 0.000986993 -0.063776 0.997612 -0.026525 +-0.060818 0.998027 -0.015615 0.080034 0.000986993 -0.066597 0.997612 -0.018322 +0 1 -0 0.76677 0 0 1 -0 +-0.055024 0.998027 -0.03025 0.160034 0.000986993 -0.059948 0.997612 -0.034306 +-0.058381 0.998027 -0.023115 0.120034 0.000986993 -0.063776 0.997612 -0.026525 +0 1 -0 0.76677 0 0 1 -0 +-0.050799 0.998027 -0.036907 0.200034 0.000986993 -0.055176 0.997612 -0.04155 +-0.055024 0.998027 -0.03025 0.160034 0.000986993 -0.059948 0.997612 -0.034306 +0 1 -0 0.76677 0 0 1 -0 +-0.045772 0.998027 -0.042983 0.240034 0.000986993 -0.049533 0.997612 -0.048139 +-0.050799 0.998027 -0.036907 0.200034 0.000986993 -0.055176 0.997612 -0.04155 +0 1 -0 0.76677 0 0 1 -0 +-0.040024 0.998027 -0.048381 0.280034 0.000986993 -0.043109 0.997612 -0.053968 +-0.045772 0.998027 -0.042983 0.240034 0.000986993 -0.049533 0.997612 -0.048139 +0 1 -0 0.76677 0 0 1 -0 +-0.033645 0.998027 -0.053016 0.320034 0.000986993 -0.036005 0.997612 -0.058947 +-0.040024 0.998027 -0.048381 0.280034 0.000986993 -0.043109 0.997612 -0.053968 +0 1 -0 0.76677 0 0 1 -0 +-0.026735 0.998027 -0.056815 0.360034 0.000986993 -0.028333 0.997612 -0.062993 +-0.033645 0.998027 -0.053016 0.320034 0.000986993 -0.036005 0.997612 -0.058947 +0 1 -0 0.76677 0 0 1 -0 +-0.019403 0.998027 -0.059717 0.400034 0.000986993 -0.020214 0.997612 -0.066049 +-0.026735 0.998027 -0.056815 0.360034 0.000986993 -0.028333 0.997612 -0.062993 +0 1 -0 0.76677 0 0 1 -0 +-0.011766 0.998027 -0.061678 0.440034 0.000986993 -0.011777 0.997612 -0.068061 +-0.019403 0.998027 -0.059717 0.400034 0.000986993 -0.020214 0.997612 -0.066049 +0 1 -0 0.76677 0 0 1 -0 +-0.003943 0.998027 -0.062667 0.480033 0.000986993 -0.003154 0.997612 -0.069 +-0.011766 0.998027 -0.061678 0.440034 0.000986993 -0.011777 0.997612 -0.068061 +0 1 -0 0.76677 0 0 1 -0 +0.003943 0.998027 -0.062667 0.520033 0.000986993 0.005519 0.997612 -0.068851 +-0.003943 0.998027 -0.062667 0.480033 0.000986993 -0.003154 0.997612 -0.069 +0 1 -0 0.76677 0 0 1 -0 +0.011766 0.998027 -0.061678 0.560033 0.000986993 0.014105 0.997612 -0.067616 +0.003943 0.998027 -0.062667 0.520033 0.000986993 0.005519 0.997612 -0.068851 +0 1 -0 0.76677 0 0 1 -0 +0.019403 0.998027 -0.059717 0.600033 0.000986993 0.022468 0.997612 -0.065315 +0.011766 0.998027 -0.061678 0.560033 0.000986993 0.014105 0.997612 -0.067616 +0 1 -0 0.76677 0 0 1 -0 +0.026735 0.998027 -0.056815 0.640033 0.000986993 0.030477 0.997612 -0.061981 +0.019403 0.998027 -0.059717 0.600033 0.000986993 0.022468 0.997612 -0.065315 +0 1 -0 0.76677 0 0 1 -0 +0.033645 0.998027 -0.053016 0.680032 0.000986993 0.038005 0.997612 -0.057673 +0.026735 0.998027 -0.056815 0.640033 0.000986993 0.030477 0.997612 -0.061981 +0 1 -0 0.76677 0 0 1 -0 +0.040024 0.998027 -0.048381 0.720032 0.000986993 0.044934 0.997612 -0.052458 +0.033645 0.998027 -0.053016 0.680032 0.000986993 0.038005 0.997612 -0.057673 +0 1 -0 0.76677 0 0 1 -0 +0.045772 0.998027 -0.042983 0.760032 0.000986993 0.051155 0.997612 -0.046412 +0.040024 0.998027 -0.048381 0.720032 0.000986993 0.044934 0.997612 -0.052458 +0 1 -0 0.76677 0 0 1 -0 +0.050799 0.998027 -0.036907 0.800032 0.000986993 0.056568 0.997612 -0.039635 +0.045772 0.998027 -0.042983 0.760032 0.000986993 0.051155 0.997612 -0.046412 +0 1 -0 0.76677 0 0 1 -0 +0.055024 0.998027 -0.03025 0.840031 0.000986993 0.06109 0.997612 -0.032234 +0.050799 0.998027 -0.036907 0.800032 0.000986993 0.056568 0.997612 -0.039635 +0 1 -0 0.76677 0 0 1 -0 +0.058381 0.998027 -0.023115 0.880031 0.000986993 0.064648 0.997612 -0.024324 +0.055024 0.998027 -0.03025 0.840031 0.000986993 0.06109 0.997612 -0.032234 +0 1 -0 0.76677 0 0 1 -0 +0.060818 0.998027 -0.015615 0.920031 0.000986993 0.067186 0.997612 -0.016029 +0.058381 0.998027 -0.023115 0.880031 0.000986993 0.064648 0.997612 -0.024324 +0 1 -0 0.76677 0 0 1 -0 +0.062295 0.998027 -0.00787 0.960031 0.000986993 0.068665 0.997612 -0.007478 +0.060818 0.998027 -0.015615 0.920031 0.000986993 0.067186 0.997612 -0.016029 +0 1 -0 0.76677 0 0 1 -0 +0.062791 0.998027 -0 1.00003 0.000986993 0.069062 0.997612 0.001188 +0.062295 0.998027 -0.00787 0.960031 0.000986993 0.068665 0.997612 -0.007478 +0 1 -0 0.76677 0 0 1 -0 +0.062295 0.998027 0.00787 1.04003 0.000986993 0.068368 0.997612 0.009833 +0.062791 0.998027 -0 1.00003 0.000986993 0.069062 0.997612 0.001188 diff --git a/enginecustom/sprite01.tga b/enginecustom/sprite01.tga new file mode 100644 index 0000000..468a482 Binary files /dev/null and b/enginecustom/sprite01.tga differ diff --git a/enginecustom/sprite02.tga b/enginecustom/sprite02.tga new file mode 100644 index 0000000..f9fcfbb Binary files /dev/null and b/enginecustom/sprite02.tga differ diff --git a/enginecustom/sprite03.tga b/enginecustom/sprite03.tga new file mode 100644 index 0000000..df005e1 Binary files /dev/null and b/enginecustom/sprite03.tga differ diff --git a/enginecustom/sprite04.tga b/enginecustom/sprite04.tga new file mode 100644 index 0000000..01639e8 Binary files /dev/null and b/enginecustom/sprite04.tga differ diff --git a/enginecustom/sprite_data_01.txt b/enginecustom/sprite_data_01.txt new file mode 100644 index 0000000..fadc998 --- /dev/null +++ b/enginecustom/sprite_data_01.txt @@ -0,0 +1,6 @@ +4 +sprite01.tga +sprite02.tga +sprite03.tga +sprite04.tga +250 diff --git a/enginecustom/textclass.cpp b/enginecustom/textclass.cpp new file mode 100644 index 0000000..33df17a --- /dev/null +++ b/enginecustom/textclass.cpp @@ -0,0 +1,250 @@ +#include "textclass.h" + + +TextClass::TextClass() +{ + m_vertexBuffer = 0; + m_indexBuffer = 0; +} + + +TextClass::TextClass(const TextClass& other) +{ +} + + +TextClass::~TextClass() +{ +} + +bool TextClass::Initialize(ID3D11Device* device, ID3D11DeviceContext* deviceContext, int screenWidth, int screenHeight, int maxLength, FontClass* Font, char* text, + int positionX, int positionY, float red, float green, float blue) +{ + bool result; + + + // Store the screen width and height. + m_screenWidth = screenWidth; + m_screenHeight = screenHeight; + + // Store the maximum length of the sentence. + m_maxLength = maxLength; + + // Initalize the sentence. + result = InitializeBuffers(device, deviceContext, Font, text, positionX, positionY, red, green, blue); + if (!result) + { + return false; + } + + return true; +} + +void TextClass::Shutdown() +{ + // Release the vertex and index buffers. + ShutdownBuffers(); + + return; +} + +void TextClass::Render(ID3D11DeviceContext* deviceContext) +{ + // Put the vertex and index buffers on the graphics pipeline to prepare them for drawing. + RenderBuffers(deviceContext); + + return; +} + +int TextClass::GetIndexCount() +{ + return m_indexCount; +} + +bool TextClass::InitializeBuffers(ID3D11Device* device, ID3D11DeviceContext* deviceContext, FontClass* Font, char* text, int positionX, int positionY, float red, float green, float blue) +{ + VertexType* vertices; + unsigned long* indices; + D3D11_BUFFER_DESC vertexBufferDesc, indexBufferDesc; + D3D11_SUBRESOURCE_DATA vertexData, indexData; + HRESULT result; + int i; + + // Set the vertex and index count. + m_vertexCount = 6 * m_maxLength; + m_indexCount = m_vertexCount; + + // Create the vertex array. + vertices = new VertexType[m_vertexCount]; + + // Create the index array. + indices = new unsigned long[m_indexCount]; + + // Initialize vertex array to zeros at first. + memset(vertices, 0, (sizeof(VertexType) * m_vertexCount)); + + // Initialize the index array. + for (i = 0; i < m_indexCount; i++) + { + indices[i] = i; + } + + // Set up the description of the dynamic vertex buffer. + vertexBufferDesc.Usage = D3D11_USAGE_DYNAMIC; + vertexBufferDesc.ByteWidth = sizeof(VertexType) * m_vertexCount; + vertexBufferDesc.BindFlags = D3D11_BIND_VERTEX_BUFFER; + vertexBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + vertexBufferDesc.MiscFlags = 0; + vertexBufferDesc.StructureByteStride = 0; + + // Give the subresource structure a pointer to the vertex data. + vertexData.pSysMem = vertices; + vertexData.SysMemPitch = 0; + vertexData.SysMemSlicePitch = 0; + + // Create the vertex buffer. + result = device->CreateBuffer(&vertexBufferDesc, &vertexData, &m_vertexBuffer); + if (FAILED(result)) + { + return false; + } + + // Set up the description of the static index buffer. + indexBufferDesc.Usage = D3D11_USAGE_DEFAULT; + indexBufferDesc.ByteWidth = sizeof(unsigned long) * m_indexCount; + indexBufferDesc.BindFlags = D3D11_BIND_INDEX_BUFFER; + indexBufferDesc.CPUAccessFlags = 0; + indexBufferDesc.MiscFlags = 0; + indexBufferDesc.StructureByteStride = 0; + + // Give the subresource structure a pointer to the index data. + indexData.pSysMem = indices; + indexData.SysMemPitch = 0; + indexData.SysMemSlicePitch = 0; + + // Create the index buffer. + result = device->CreateBuffer(&indexBufferDesc, &indexData, &m_indexBuffer); + if (FAILED(result)) + { + return false; + } + + // Release the vertex array as it is no longer needed. + delete[] vertices; + vertices = 0; + + // Release the index array as it is no longer needed. + delete[] indices; + indices = 0; + + // Now add the text data to the sentence buffers. + result = UpdateText(deviceContext, Font, text, positionX, positionY, red, green, blue); + if (!result) + { + return false; + } + + return true; +} + +void TextClass::ShutdownBuffers() +{ + // Release the index buffer. + if (m_indexBuffer) + { + m_indexBuffer->Release(); + m_indexBuffer = 0; + } + + // Release the vertex buffer. + if (m_vertexBuffer) + { + m_vertexBuffer->Release(); + m_vertexBuffer = 0; + } + + return; +} + +bool TextClass::UpdateText(ID3D11DeviceContext* deviceContext, FontClass* Font, char* text, int positionX, int positionY, float red, float green, float blue) +{ + int numLetters; + VertexType* vertices; + float drawX, drawY; + HRESULT result; + D3D11_MAPPED_SUBRESOURCE mappedResource; + VertexType* verticesPtr; + + // Store the color of the sentence. + m_pixelColor = XMFLOAT4(red, green, blue, 1.0f); + + // Get the number of letters in the sentence. + numLetters = (int)strlen(text); + + // Check for possible buffer overflow. + if (numLetters > m_maxLength) + { + return false; + } + + // Create the vertex array. + vertices = new VertexType[m_vertexCount]; + + // Initialize vertex array to zeros at first. + memset(vertices, 0, (sizeof(VertexType) * m_vertexCount)); + + // Calculate the X and Y pixel position on the screen to start drawing to. + drawX = (float)(((m_screenWidth / 2) * -1) + positionX); + drawY = (float)((m_screenHeight / 2) - positionY); + + // Use the font class to build the vertex array from the sentence text and sentence draw location. + Font->BuildVertexArray((void*)vertices, text, drawX, drawY); + + // Lock the vertex buffer so it can be written to. + result = deviceContext->Map(m_vertexBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); + if (FAILED(result)) + { + return false; + } + + // Get a pointer to the data in the vertex buffer. + verticesPtr = (VertexType*)mappedResource.pData; + + // Copy the data into the vertex buffer. + memcpy(verticesPtr, (void*)vertices, (sizeof(VertexType) * m_vertexCount)); + + // Unlock the vertex buffer. + deviceContext->Unmap(m_vertexBuffer, 0); + + // Release the vertex array as it is no longer needed. + delete[] vertices; + vertices = 0; + + return true; +} + +void TextClass::RenderBuffers(ID3D11DeviceContext* deviceContext) +{ + unsigned int stride, offset; + + + // Set vertex buffer stride and offset. + stride = sizeof(VertexType); + offset = 0; + + // Set the vertex buffer to active in the input assembler so it can be rendered. + deviceContext->IASetVertexBuffers(0, 1, &m_vertexBuffer, &stride, &offset); + + // Set the index buffer to active in the input assembler so it can be rendered. + deviceContext->IASetIndexBuffer(m_indexBuffer, DXGI_FORMAT_R32_UINT, 0); + + // Set the type of primitive that should be rendered from this vertex buffer, in this case triangles. + deviceContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST); + + return; +} + +XMFLOAT4 TextClass::GetPixelColor() +{ + return m_pixelColor; +} diff --git a/enginecustom/textclass.h b/enginecustom/textclass.h new file mode 100644 index 0000000..643631a --- /dev/null +++ b/enginecustom/textclass.h @@ -0,0 +1,48 @@ +#ifndef _TEXTCLASS_H_ +#define _TEXTCLASS_H_ + + +/////////////////////// +// MY CLASS INCLUDES // +/////////////////////// +#include "fontclass.h" + + +//////////////////////////////////////////////////////////////////////////////// +// Class name: TextClass +//////////////////////////////////////////////////////////////////////////////// +class TextClass +{ +private: + struct VertexType + { + XMFLOAT3 position; + XMFLOAT2 texture; + }; + +public: + TextClass(); + TextClass(const TextClass&); + ~TextClass(); + + bool Initialize(ID3D11Device*, ID3D11DeviceContext*, int, int, int, FontClass*, char*, int, int, float, float, float); + void Shutdown(); + void Render(ID3D11DeviceContext*); + + int GetIndexCount(); + + bool UpdateText(ID3D11DeviceContext*, FontClass*, char*, int, int, float, float, float); + XMFLOAT4 GetPixelColor(); + +private: + bool InitializeBuffers(ID3D11Device*, ID3D11DeviceContext*, FontClass*, char*, int, int, float, float, float); + void ShutdownBuffers(); + void RenderBuffers(ID3D11DeviceContext*); + +private: + ID3D11Buffer* m_vertexBuffer, * m_indexBuffer; + int m_screenWidth, m_screenHeight, m_maxLength, m_vertexCount, m_indexCount; + XMFLOAT4 m_pixelColor; +}; + +#endif \ No newline at end of file diff --git a/enginecustom/texture.ps b/enginecustom/texture.ps new file mode 100644 index 0000000..192f1fc --- /dev/null +++ b/enginecustom/texture.ps @@ -0,0 +1,28 @@ +///////////// +// GLOBALS // +///////////// +Texture2D shaderTexture : register(t0); +SamplerState SampleType : register(s0); + +////////////// +// TYPEDEFS // +////////////// +struct PixelInputType +{ + float4 position : SV_POSITION; + float2 tex : TEXCOORD0; +}; + +//////////////////////////////////////////////////////////////////////////////// +// Pixel Shader +//////////////////////////////////////////////////////////////////////////////// +float4 TexturePixelShader(PixelInputType input) : SV_TARGET +{ + float4 textureColor; + + + // Sample the pixel color from the texture using the sampler at this texture coordinate location. + textureColor = shaderTexture.Sample(SampleType, input.tex); + + return textureColor; +} \ No newline at end of file diff --git a/enginecustom/texture.vs b/enginecustom/texture.vs new file mode 100644 index 0000000..0d534ae --- /dev/null +++ b/enginecustom/texture.vs @@ -0,0 +1,47 @@ +///////////// +// GLOBALS // +///////////// +cbuffer MatrixBuffer +{ + matrix worldMatrix; + matrix viewMatrix; + matrix projectionMatrix; +}; + +////////////// +// TYPEDEFS // +////////////// +struct VertexInputType +{ + float4 position : POSITION; + float2 tex : TEXCOORD0; +}; + +struct PixelInputType +{ + float4 position : SV_POSITION; + float2 tex : TEXCOORD0; +}; + + +//////////////////////////////////////////////////////////////////////////////// +// Vertex Shader +//////////////////////////////////////////////////////////////////////////////// +PixelInputType TextureVertexShader(VertexInputType input) +{ + PixelInputType output; + + + // Change the position vector to be 4 units for proper matrix calculations. + input.position.w = 1.0f; + + // Calculate the position of the vertex against the world, view, and projection matrices. + output.position = mul(input.position, worldMatrix); + output.position = mul(output.position, viewMatrix); + output.position = mul(output.position, projectionMatrix); + + // Store the texture coordinates for the pixel shader. + output.tex = input.tex; + + return output; +} \ No newline at end of file diff --git a/enginecustom/textureshaderclass.cpp b/enginecustom/textureshaderclass.cpp new file mode 100644 index 0000000..6eed3c7 --- /dev/null +++ b/enginecustom/textureshaderclass.cpp @@ -0,0 +1,357 @@ +#include "textureshaderclass.h" + + +TextureShaderClass::TextureShaderClass() +{ + m_vertexShader = 0; + m_pixelShader = 0; + m_layout = 0; + m_matrixBuffer = 0; + m_sampleState = 0; +} + + +TextureShaderClass::TextureShaderClass(const TextureShaderClass& other) +{ +} + + +TextureShaderClass::~TextureShaderClass() +{ +} + + +bool TextureShaderClass::Initialize(ID3D11Device* device, HWND hwnd) +{ + bool result; + wchar_t vsFilename[128]; + wchar_t psFilename[128]; + int error; + // Set the filename of the vertex shader. + error = wcscpy_s(vsFilename, 128, L"texture.vs"); + if (error != 0) + { + return false; + } + + // Set the filename of the pixel shader. + error = wcscpy_s(psFilename, 128, L"texture.ps"); + if (error != 0) + { + return false; + } + + // Initialize the vertex and pixel shaders. + result = InitializeShader(device, hwnd, vsFilename, psFilename); + if (!result) + { + return false; + } + + return true; +} + +void TextureShaderClass::Shutdown() +{ + // Shutdown the vertex and pixel shaders as well as the related objects. + ShutdownShader(); + + return; +} + +bool TextureShaderClass::Render(ID3D11DeviceContext* deviceContext, int indexCount, XMMATRIX worldMatrix, XMMATRIX viewMatrix, + XMMATRIX projectionMatrix, ID3D11ShaderResourceView* texture) +{ + bool result; + + + // Set the shader parameters that it will use for rendering. + result = SetShaderParameters(deviceContext, worldMatrix, viewMatrix, projectionMatrix, texture); + if (!result) + { + return false; + } + + // Now render the prepared buffers with the shader. + RenderShader(deviceContext, indexCount); + + return true; +} + +bool TextureShaderClass::InitializeShader(ID3D11Device* device, HWND hwnd, WCHAR* vsFilename, WCHAR* psFilename) +{ + HRESULT result; + ID3D10Blob* errorMessage; + ID3D10Blob* vertexShaderBuffer; + ID3D10Blob* pixelShaderBuffer; + D3D11_INPUT_ELEMENT_DESC polygonLayout[2]; + unsigned int numElements; + D3D11_BUFFER_DESC matrixBufferDesc; + D3D11_SAMPLER_DESC samplerDesc; + + + // Initialize the pointers this function will use to null. + errorMessage = 0; + vertexShaderBuffer = 0; + pixelShaderBuffer = 0; + // Compile the vertex shader code. + result = D3DCompileFromFile(vsFilename, NULL, NULL, "TextureVertexShader", "vs_5_0", D3D10_SHADER_ENABLE_STRICTNESS, 0, + &vertexShaderBuffer, &errorMessage); + if (FAILED(result)) + { + // If the shader failed to compile it should have writen something to the error message. + if (errorMessage) + { + OutputShaderErrorMessage(errorMessage, hwnd, vsFilename); + } + // If there was nothing in the error message then it simply could not find the shader file itself. + else + { + MessageBox(hwnd, vsFilename, L"Missing Shader File", MB_OK); + } + + return false; + } + + // Compile the pixel shader code. + result = D3DCompileFromFile(psFilename, NULL, NULL, "TexturePixelShader", "ps_5_0", D3D10_SHADER_ENABLE_STRICTNESS, 0, + &pixelShaderBuffer, &errorMessage); + if (FAILED(result)) + { + // If the shader failed to compile it should have writen something to the error message. + if (errorMessage) + { + OutputShaderErrorMessage(errorMessage, hwnd, psFilename); + } + // If there was nothing in the error message then it simply could not find the file itself. + else + { + MessageBox(hwnd, psFilename, L"Missing Shader File", MB_OK); + } + + return false; + } + + // Create the vertex shader from the buffer. + result = device->CreateVertexShader(vertexShaderBuffer->GetBufferPointer(), vertexShaderBuffer->GetBufferSize(), NULL, &m_vertexShader); + if (FAILED(result)) + { + return false; + } + + // Create the pixel shader from the buffer. + result = device->CreatePixelShader(pixelShaderBuffer->GetBufferPointer(), pixelShaderBuffer->GetBufferSize(), NULL, &m_pixelShader); + if (FAILED(result)) + { + return false; + } + // Create the vertex input layout description. + // This setup needs to match the VertexType stucture in the ModelClass and in the shader. + polygonLayout[0].SemanticName = "POSITION"; + polygonLayout[0].SemanticIndex = 0; + polygonLayout[0].Format = DXGI_FORMAT_R32G32B32_FLOAT; + polygonLayout[0].InputSlot = 0; + polygonLayout[0].AlignedByteOffset = 0; + polygonLayout[0].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; + polygonLayout[0].InstanceDataStepRate = 0; + + polygonLayout[1].SemanticName = "TEXCOORD"; + polygonLayout[1].SemanticIndex = 0; + polygonLayout[1].Format = DXGI_FORMAT_R32G32_FLOAT; + polygonLayout[1].InputSlot = 0; + polygonLayout[1].AlignedByteOffset = D3D11_APPEND_ALIGNED_ELEMENT; + polygonLayout[1].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; + polygonLayout[1].InstanceDataStepRate = 0; + + // Get a count of the elements in the layout. + numElements = sizeof(polygonLayout) / sizeof(polygonLayout[0]); + + // Create the vertex input layout. + result = device->CreateInputLayout(polygonLayout, numElements, vertexShaderBuffer->GetBufferPointer(), + vertexShaderBuffer->GetBufferSize(), &m_layout); + if (FAILED(result)) + { + return false; + } + + // Release the vertex shader buffer and pixel shader buffer since they are no longer needed. + vertexShaderBuffer->Release(); + vertexShaderBuffer = 0; + + pixelShaderBuffer->Release(); + pixelShaderBuffer = 0; + + // Setup the description of the dynamic matrix constant buffer that is in the vertex shader. + matrixBufferDesc.Usage = D3D11_USAGE_DYNAMIC; + matrixBufferDesc.ByteWidth = sizeof(MatrixBufferType); + matrixBufferDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; + matrixBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + matrixBufferDesc.MiscFlags = 0; + matrixBufferDesc.StructureByteStride = 0; + + // Create the constant buffer pointer so we can access the vertex shader constant buffer from within this class. + result = device->CreateBuffer(&matrixBufferDesc, NULL, &m_matrixBuffer); + if (FAILED(result)) + { + return false; + } + // Create a texture sampler state description. + samplerDesc.Filter = D3D11_FILTER_MIN_MAG_MIP_LINEAR; + samplerDesc.AddressU = D3D11_TEXTURE_ADDRESS_WRAP; + samplerDesc.AddressV = D3D11_TEXTURE_ADDRESS_WRAP; + samplerDesc.AddressW = D3D11_TEXTURE_ADDRESS_WRAP; + samplerDesc.MipLODBias = 0.0f; + samplerDesc.MaxAnisotropy = 1; + samplerDesc.ComparisonFunc = D3D11_COMPARISON_ALWAYS; + samplerDesc.BorderColor[0] = 0; + samplerDesc.BorderColor[1] = 0; + samplerDesc.BorderColor[2] = 0; + samplerDesc.BorderColor[3] = 0; + samplerDesc.MinLOD = 0; + samplerDesc.MaxLOD = D3D11_FLOAT32_MAX; + + // Create the texture sampler state. + result = device->CreateSamplerState(&samplerDesc, &m_sampleState); + if (FAILED(result)) + { + return false; + } + + return true; +} + +void TextureShaderClass::ShutdownShader() +{ + + // Release the sampler state. + if (m_sampleState) + { + m_sampleState->Release(); + m_sampleState = 0; + } + + // Release the matrix constant buffer. + if (m_matrixBuffer) + { + m_matrixBuffer->Release(); + m_matrixBuffer = 0; + } + + // Release the layout. + if (m_layout) + { + m_layout->Release(); + m_layout = 0; + } + + // Release the pixel shader. + if (m_pixelShader) + { + m_pixelShader->Release(); + m_pixelShader = 0; + } + + // Release the vertex shader. + if (m_vertexShader) + { + m_vertexShader->Release(); + m_vertexShader = 0; + } + + return; +} + +void TextureShaderClass::OutputShaderErrorMessage(ID3D10Blob* errorMessage, HWND hwnd, WCHAR* shaderFilename) +{ + char* compileErrors; + unsigned long long bufferSize, i; + ofstream fout; + + + // Get a pointer to the error message text buffer. + compileErrors = (char*)(errorMessage->GetBufferPointer()); + + // Get the length of the message. + bufferSize = errorMessage->GetBufferSize(); + + // Open a file to write the error message to. + fout.open("shader-error.txt"); + + // Write out the error message. + for (i = 0; i < bufferSize; i++) + { + fout << compileErrors[i]; + } + + // Close the file. + fout.close(); + + // Release the error message. + errorMessage->Release(); + errorMessage = 0; + + // Pop a message up on the screen to notify the user to check the text file for compile errors. + MessageBox(hwnd, L"Error compiling shader. Check shader-error.txt for message.", shaderFilename, MB_OK); + + return; +} + +bool TextureShaderClass::SetShaderParameters(ID3D11DeviceContext* deviceContext, XMMATRIX worldMatrix, XMMATRIX viewMatrix, + XMMATRIX projectionMatrix, ID3D11ShaderResourceView* texture) +{ + HRESULT result; + D3D11_MAPPED_SUBRESOURCE mappedResource; + MatrixBufferType* dataPtr; + unsigned int bufferNumber; + + + // Transpose the matrices to prepare them for the shader. + worldMatrix = XMMatrixTranspose(worldMatrix); + viewMatrix = XMMatrixTranspose(viewMatrix); + projectionMatrix = XMMatrixTranspose(projectionMatrix); + + // Lock the constant buffer so it can be written to. + result = deviceContext->Map(m_matrixBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); + if (FAILED(result)) + { + return false; + } + + // Get a pointer to the data in the constant buffer. + dataPtr = (MatrixBufferType*)mappedResource.pData; + + // Copy the matrices into the constant buffer. + dataPtr->world = worldMatrix; + dataPtr->view = viewMatrix; + dataPtr->projection = projectionMatrix; + + // Unlock the constant buffer. + deviceContext->Unmap(m_matrixBuffer, 0); + + // Set the position of the constant buffer in the vertex shader. + bufferNumber = 0; + + // Finanly set the constant buffer in the vertex shader with the updated values. + deviceContext->VSSetConstantBuffers(bufferNumber, 1, &m_matrixBuffer); + // Set shader texture resource in the pixel shader. + deviceContext->PSSetShaderResources(0, 1, &texture); + + return true; +} + +void TextureShaderClass::RenderShader(ID3D11DeviceContext* deviceContext, int indexCount) +{ + // Set the vertex input layout. + deviceContext->IASetInputLayout(m_layout); + + // Set the vertex and pixel shaders that will be used to render this triangle. + deviceContext->VSSetShader(m_vertexShader, NULL, 0); + deviceContext->PSSetShader(m_pixelShader, NULL, 0); + // Set the sampler state in the pixel shader. + deviceContext->PSSetSamplers(0, 1, &m_sampleState); + + // Render the triangle. + deviceContext->DrawIndexed(indexCount, 0, 0); + + return; +} \ No newline at end of file diff --git a/enginecustom/textureshaderclass.h b/enginecustom/textureshaderclass.h new file mode 100644 index 0000000..6c88f59 --- /dev/null +++ b/enginecustom/textureshaderclass.h @@ -0,0 +1,54 @@ +#ifndef _TEXTURESHADERCLASS_H_ +#define _TEXTURESHADERCLASS_H_ + + +////////////// +// INCLUDES // +////////////// +#include +#include +#include +#include +using namespace DirectX; +using namespace std; + + +//////////////////////////////////////////////////////////////////////////////// +// Class name: TextureShaderClass +//////////////////////////////////////////////////////////////////////////////// +class TextureShaderClass +{ +private: + struct MatrixBufferType + { + XMMATRIX world; + XMMATRIX view; + XMMATRIX projection; + }; + +public: + TextureShaderClass(); + TextureShaderClass(const TextureShaderClass&); + ~TextureShaderClass(); + + bool Initialize(ID3D11Device*, HWND); + void Shutdown(); + bool Render(ID3D11DeviceContext*, int, XMMATRIX, XMMATRIX, XMMATRIX, ID3D11ShaderResourceView*); + +private: + bool InitializeShader(ID3D11Device*, HWND, WCHAR*, WCHAR*); + void ShutdownShader(); + void OutputShaderErrorMessage(ID3D10Blob*, HWND, WCHAR*); + + bool SetShaderParameters(ID3D11DeviceContext*, XMMATRIX, XMMATRIX, XMMATRIX, ID3D11ShaderResourceView*); + void RenderShader(ID3D11DeviceContext*, int); + +private: + ID3D11VertexShader* m_vertexShader; + ID3D11PixelShader* m_pixelShader; + ID3D11InputLayout* m_layout; + ID3D11Buffer* m_matrixBuffer; + ID3D11SamplerState* m_sampleState; +}; + +#endif \ No newline at end of file diff --git a/enginecustom/wall.tga b/enginecustom/wall.tga new file mode 100644 index 0000000..f2267a5 Binary files /dev/null and b/enginecustom/wall.tga differ