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 2f0b18e..287ca70 100644 --- a/enginecustom/Systemclass.cpp +++ b/enginecustom/Systemclass.cpp @@ -213,9 +213,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 957d5f8..de27ee5 100644 --- a/enginecustom/applicationclass.cpp +++ b/enginecustom/applicationclass.cpp @@ -9,6 +9,8 @@ ApplicationClass::ApplicationClass() m_Light = 0; m_TextureShader = 0; m_Bitmap = 0; + m_Sprite = 0; + m_Timer = 0; } @@ -28,6 +30,7 @@ bool ApplicationClass::Initialize(int screenWidth, int screenHeight, HWND hwnd) char outputModelFilename[128]; char textureFilename[128]; char bitmapFilename[128]; + char spriteFilename[128]; bool result; @@ -67,6 +70,27 @@ bool ApplicationClass::Initialize(int screenWidth, int screenHeight, HWND hwnd) 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"); @@ -80,9 +104,7 @@ bool ApplicationClass::Initialize(int screenWidth, int screenHeight, HWND hwnd) } // Set the file name of the model. - strcpy_s(modelFilename, "sphere.obj"); - - strcpy_s(outputModelFilename, "output.txt"); + strcpy_s(modelFilename, "cube.txt"); // Set the name of the texture file that we will be loading. strcpy_s(textureFilename, "stone01.tga"); @@ -90,7 +112,7 @@ bool ApplicationClass::Initialize(int screenWidth, int screenHeight, HWND hwnd) // Create and initialize the model object. m_Model = new ModelClass; - result = m_Model->Initialize(m_Direct3D->GetDevice(), m_Direct3D->GetDeviceContext(), modelFilename, outputModelFilename, textureFilename); + result = m_Model->Initialize(m_Direct3D->GetDevice(), m_Direct3D->GetDeviceContext(), modelFilename, textureFilename); if (!result) { MessageBox(hwnd, L"Could not initialize the model object.", L"Error", MB_OK); @@ -106,11 +128,12 @@ 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; } + // 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, 0.0f, 1.0f); + m_Light->SetDirection(-1.0f, -1.0f, 1.0f); return true; } @@ -118,6 +141,21 @@ bool ApplicationClass::Initialize(int screenWidth, int screenHeight, HWND hwnd) void ApplicationClass::Shutdown() { + // 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 object. if (m_Light) { @@ -186,6 +224,7 @@ void ApplicationClass::Shutdown() bool ApplicationClass::Frame() { + float frameTime; static float rotation = 0.0f; static float x = 2.f; static float y = 0.f; @@ -215,6 +254,15 @@ bool ApplicationClass::Frame() 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; } @@ -240,6 +288,20 @@ bool ApplicationClass::Render(float rotation, float x, float y, float z) // Turn off the Z buffer to begin all 2D rendering. m_Direct3D->TurnZBufferOff(); + // 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) @@ -247,7 +309,7 @@ bool ApplicationClass::Render(float rotation, float x, float y, float z) return false; } - m_Bitmap->SetRenderLocation(300, 50); + 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()); diff --git a/enginecustom/applicationclass.h b/enginecustom/applicationclass.h index d1c675c..57359b4 100644 --- a/enginecustom/applicationclass.h +++ b/enginecustom/applicationclass.h @@ -12,6 +12,8 @@ #include "lightclass.h" #include "bitmapclass.h" #include "textureshaderclass.h" +#include "spriteclass.h" +#include "timerclass.h" ///////////// // GLOBALS // @@ -46,6 +48,8 @@ private: LightClass* m_Light; TextureShaderClass* m_TextureShader; BitmapClass* m_Bitmap; + SpriteClass* m_Sprite; + TimerClass* m_Timer; }; #endif 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/enginecustom.vcxproj b/enginecustom/enginecustom.vcxproj index 4bcd079..2c96816 100644 --- a/enginecustom/enginecustom.vcxproj +++ b/enginecustom/enginecustom.vcxproj @@ -30,9 +30,11 @@ + + @@ -45,9 +47,11 @@ + + @@ -76,20 +80,11 @@ + - - - Document - - - - - Document - - Document diff --git a/enginecustom/enginecustom.vcxproj.filters b/enginecustom/enginecustom.vcxproj.filters index 7f9131b..5ee8a1a 100644 --- a/enginecustom/enginecustom.vcxproj.filters +++ b/enginecustom/enginecustom.vcxproj.filters @@ -63,6 +63,18 @@ Fichiers sources + + Fichiers sources + + + Fichiers sources + + + Fichiers sources + + + Fichiers sources + @@ -101,6 +113,18 @@ Fichiers d%27en-tête + + Fichiers d%27en-tête + + + Fichiers d%27en-tête + + + Fichiers d%27en-tête + + + Fichiers d%27en-tête + @@ -122,8 +146,20 @@ shader + + texture + + + texture + + + assets + + + assets + assets diff --git a/enginecustom/modelclass.cpp b/enginecustom/modelclass.cpp index 0cc0aeb..9cc6406 100644 --- a/enginecustom/modelclass.cpp +++ b/enginecustom/modelclass.cpp @@ -19,14 +19,12 @@ ModelClass::~ModelClass() { } -bool ModelClass::Initialize(ID3D11Device* device, ID3D11DeviceContext* deviceContext, char* modelFilename, char* outputModelFilename, char* textureFilename) +bool ModelClass::Initialize(ID3D11Device* device, ID3D11DeviceContext* deviceContext, char* modelFilename, char* textureFilename) { bool result; - ConvertObjToTxt(modelFilename, outputModelFilename); - // Load in the model data. - result = LoadModel(outputModelFilename); + result = LoadModel(modelFilename); if (!result) { return false; @@ -91,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]; @@ -100,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); @@ -109,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; @@ -312,84 +285,6 @@ bool ModelClass::LoadModel(char* filename) return true; } -void ModelClass::ConvertObjToTxt(const std::string& inputFilename, const std::string& outputFilename) { - std::ifstream inputFile(inputFilename); - std::ofstream outputFile(outputFilename); - - std::string line; - std::vector positions; - std::vector texCoords; - std::vector normals; - std::vector vertices; - - while (std::getline(inputFile, line)) { - std::istringstream iss(line); - std::string prefix; - - if (!(iss >> prefix)) { break; } - - if (prefix == "v") { - XMFLOAT3 pos; - if (!(iss >> pos.x >> pos.y >> pos.z)) { break; } - positions.push_back(pos); - } - else if (prefix == "vt") { - XMFLOAT2 texCoord; - if (!(iss >> texCoord.x >> texCoord.y)) { break; } - texCoords.push_back(texCoord); - } - else if (prefix == "vn") { - XMFLOAT3 normal; - if (!(iss >> normal.x >> normal.y >> normal.z)) { break; } - normals.push_back(normal); - } - else if (prefix == "f") { - std::vector posIndices, texIndices, normIndices; - char slash; // To skip slashes - int posIndex, texIndex, normIndex; - - // Read all indices of the face - while (iss >> posIndex >> slash >> texIndex >> slash >> normIndex) { - posIndices.push_back(posIndex); - texIndices.push_back(texIndex); - normIndices.push_back(normIndex); - } - - // For each triangle in the face - for (size_t i = 1; i < posIndices.size() - 1; ++i) { - ModelType v[3]; // Vertices of the triangle - - // Indices of the vertices of the triangle - int indices[3] = { 0, i, i + 1 }; - - for (int j = 0; j < 3; ++j) { - // .obj indices start at 1, so subtract 1 to get 0-based indices - v[j].x = positions[posIndices[indices[j]] - 1].x; - v[j].y = positions[posIndices[indices[j]] - 1].y; - v[j].z = positions[posIndices[indices[j]] - 1].z; - v[j].tu = texCoords[texIndices[indices[j]] - 1].x; - v[j].tv = texCoords[texIndices[indices[j]] - 1].y; - v[j].nx = normals[normIndices[indices[j]] - 1].x; - v[j].ny = normals[normIndices[indices[j]] - 1].y; - v[j].nz = normals[normIndices[indices[j]] - 1].z; - - vertices.push_back(v[j]); - } - } - } - } - - // Write to output file in the desired format - outputFile << "Vertex Count: " << vertices.size() << "\n\n"; - outputFile << "Data:\n\n"; - - for (const ModelType& v : vertices) { - outputFile << v.x << " " << v.y << " " << v.z << " "; - outputFile << v.tu << " " << v.tv << " "; - outputFile << v.nx << " " << v.ny << " " << v.nz << "\n"; - } -} - void ModelClass::ReleaseModel() { if (m_model) diff --git a/enginecustom/modelclass.h b/enginecustom/modelclass.h index a2578e0..4b171e8 100644 --- a/enginecustom/modelclass.h +++ b/enginecustom/modelclass.h @@ -64,7 +64,7 @@ public: ModelClass(const ModelClass&); ~ModelClass(); - bool Initialize(ID3D11Device*, ID3D11DeviceContext*, char*, char*, char*); + bool Initialize(ID3D11Device*, ID3D11DeviceContext*, char*, char*); void Shutdown(); void Render(ID3D11DeviceContext*); @@ -82,8 +82,6 @@ private: bool LoadModel(char*); void ReleaseModel(); - void ConvertObjToTxt(const std::string&, const std::string&); - private: ID3D11Buffer* m_vertexBuffer, * m_indexBuffer; int m_vertexCount, m_indexCount; diff --git a/enginecustom/objects/cube.txt b/enginecustom/objects/cube.txt deleted file mode 100644 index 00b34ba..0000000 --- a/enginecustom/objects/cube.txt +++ /dev/null @@ -1,40 +0,0 @@ -Vertex Count: 36 - -Data: - --1.0 1.0 -1.0 0.0 0.0 0.0 0.0 -1.0 - 1.0 1.0 -1.0 1.0 0.0 0.0 0.0 -1.0 --1.0 -1.0 -1.0 0.0 1.0 0.0 0.0 -1.0 --1.0 -1.0 -1.0 0.0 1.0 0.0 0.0 -1.0 - 1.0 1.0 -1.0 1.0 0.0 0.0 0.0 -1.0 - 1.0 -1.0 -1.0 1.0 1.0 0.0 0.0 -1.0 - 1.0 1.0 -1.0 0.0 0.0 1.0 0.0 0.0 - 1.0 1.0 1.0 1.0 0.0 1.0 0.0 0.0 - 1.0 -1.0 -1.0 0.0 1.0 1.0 0.0 0.0 - 1.0 -1.0 -1.0 0.0 1.0 1.0 0.0 0.0 - 1.0 1.0 1.0 1.0 0.0 1.0 0.0 0.0 - 1.0 -1.0 1.0 1.0 1.0 1.0 0.0 0.0 - 1.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0 --1.0 1.0 1.0 1.0 0.0 0.0 0.0 1.0 - 1.0 -1.0 1.0 0.0 1.0 0.0 0.0 1.0 - 1.0 -1.0 1.0 0.0 1.0 0.0 0.0 1.0 --1.0 1.0 1.0 1.0 0.0 0.0 0.0 1.0 --1.0 -1.0 1.0 1.0 1.0 0.0 0.0 1.0 --1.0 1.0 1.0 0.0 0.0 -1.0 0.0 0.0 --1.0 1.0 -1.0 1.0 0.0 -1.0 0.0 0.0 --1.0 -1.0 1.0 0.0 1.0 -1.0 0.0 0.0 --1.0 -1.0 1.0 0.0 1.0 -1.0 0.0 0.0 --1.0 1.0 -1.0 1.0 0.0 -1.0 0.0 0.0 --1.0 -1.0 -1.0 1.0 1.0 -1.0 0.0 0.0 --1.0 1.0 1.0 0.0 0.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 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 --1.0 -1.0 -1.0 0.0 0.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 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 diff --git a/enginecustom/objects/cylinder.mtl b/enginecustom/objects/cylinder.mtl deleted file mode 100644 index 6d43325..0000000 --- a/enginecustom/objects/cylinder.mtl +++ /dev/null @@ -1,2 +0,0 @@ -# Blender 4.0.1 MTL File: 'None' -# www.blender.org diff --git a/enginecustom/objects/cylinder_obj.fbx b/enginecustom/objects/cylinder_obj.fbx deleted file mode 100644 index 70e0121..0000000 Binary files a/enginecustom/objects/cylinder_obj.fbx and /dev/null differ diff --git a/enginecustom/output.txt b/enginecustom/output.txt deleted file mode 100644 index 4a4b2b7..0000000 --- a/enginecustom/output.txt +++ /dev/null @@ -1,2884 +0,0 @@ -Vertex Count: 2880 - -Data: - -0 0.980785 -0.19509 0.75 0.9375 0.0097 0.9951 -0.098 -0 1 0 0.734375 1 0.0097 0.9951 -0.098 -0.03806 0.980785 -0.191342 0.71875 0.9375 0.0097 0.9951 -0.098 -0 -1 0 0.734375 0 0.0097 -0.9951 -0.098 -0 -0.980785 -0.19509 0.75 0.0625 0.0097 -0.9951 -0.098 -0.03806 -0.980785 -0.191342 0.71875 0.0625 0.0097 -0.9951 -0.098 -0 -0.19509 -0.980785 0.75 0.4375 0.0975 -0.0975 -0.9904 -0 0 -1 0.75 0.5 0.0975 -0.0975 -0.9904 -0.19509 0 -0.980785 0.71875 0.5 0.0975 -0.0975 -0.9904 -0 -0.19509 -0.980785 0.75 0.4375 0.0975 -0.0975 -0.9904 -0.19509 0 -0.980785 0.71875 0.5 0.0975 -0.0975 -0.9904 -0.191342 -0.19509 -0.96194 0.71875 0.4375 0.0975 -0.0975 -0.9904 -0 0.92388 -0.382683 0.75 0.875 0.0286 0.9565 -0.2902 -0 0.980785 -0.19509 0.75 0.9375 0.0286 0.9565 -0.2902 -0.03806 0.980785 -0.191342 0.71875 0.9375 0.0286 0.9565 -0.2902 -0 0.92388 -0.382683 0.75 0.875 0.0286 0.9565 -0.2902 -0.03806 0.980785 -0.191342 0.71875 0.9375 0.0286 0.9565 -0.2902 -0.074658 0.92388 -0.37533 0.71875 0.875 0.0286 0.9565 -0.2902 -0 -0.382683 -0.923879 0.75 0.375 0.0938 -0.289 -0.9527 -0 -0.19509 -0.980785 0.75 0.4375 0.0938 -0.289 -0.9527 -0.191342 -0.19509 -0.96194 0.71875 0.4375 0.0938 -0.289 -0.9527 -0 -0.382683 -0.923879 0.75 0.375 0.0938 -0.289 -0.9527 -0.191342 -0.19509 -0.96194 0.71875 0.4375 0.0938 -0.289 -0.9527 -0.18024 -0.382683 -0.906127 0.71875 0.375 0.0938 -0.289 -0.9527 -0 0.83147 -0.55557 0.75 0.8125 0.0464 0.881 -0.4709 -0 0.92388 -0.382683 0.75 0.875 0.0464 0.881 -0.4709 -0.074658 0.92388 -0.37533 0.71875 0.875 0.0464 0.881 -0.4709 -0 0.83147 -0.55557 0.75 0.8125 0.0464 0.881 -0.4709 -0.074658 0.92388 -0.37533 0.71875 0.875 0.0464 0.881 -0.4709 -0.108386 0.83147 -0.544895 0.71875 0.8125 0.0464 0.881 -0.4709 -0 -0.55557 -0.83147 0.75 0.3125 0.0865 -0.4696 -0.8786 -0 -0.382683 -0.923879 0.75 0.375 0.0865 -0.4696 -0.8786 -0.18024 -0.382683 -0.906127 0.71875 0.375 0.0865 -0.4696 -0.8786 -0 -0.55557 -0.83147 0.75 0.3125 0.0865 -0.4696 -0.8786 -0.18024 -0.382683 -0.906127 0.71875 0.375 0.0865 -0.4696 -0.8786 -0.162212 -0.55557 -0.815493 0.71875 0.3125 0.0865 -0.4696 -0.8786 -0 0.707107 -0.707107 0.75 0.75 0.0624 0.7715 -0.6332 -0 0.83147 -0.55557 0.75 0.8125 0.0624 0.7715 -0.6332 -0.108386 0.83147 -0.544895 0.71875 0.8125 0.0624 0.7715 -0.6332 -0 0.707107 -0.707107 0.75 0.75 0.0624 0.7715 -0.6332 -0.108386 0.83147 -0.544895 0.71875 0.8125 0.0624 0.7715 -0.6332 -0.13795 0.707107 -0.69352 0.71875 0.75 0.0624 0.7715 -0.6332 -0 -0.707107 -0.707107 0.75 0.25 0.0759 -0.6326 -0.7708 -0 -0.55557 -0.83147 0.75 0.3125 0.0759 -0.6326 -0.7708 -0.162212 -0.55557 -0.815493 0.71875 0.3125 0.0759 -0.6326 -0.7708 -0 -0.707107 -0.707107 0.75 0.25 0.0759 -0.6326 -0.7708 -0.162212 -0.55557 -0.815493 0.71875 0.3125 0.0759 -0.6326 -0.7708 -0.13795 -0.707107 -0.69352 0.71875 0.25 0.0759 -0.6326 -0.7708 -0 0.55557 -0.83147 0.75 0.6875 0.0759 0.6326 -0.7708 -0 0.707107 -0.707107 0.75 0.75 0.0759 0.6326 -0.7708 -0.13795 0.707107 -0.69352 0.71875 0.75 0.0759 0.6326 -0.7708 -0 0.55557 -0.83147 0.75 0.6875 0.0759 0.6326 -0.7708 -0.13795 0.707107 -0.69352 0.71875 0.75 0.0759 0.6326 -0.7708 -0.162212 0.55557 -0.815493 0.71875 0.6875 0.0759 0.6326 -0.7708 -0 -0.83147 -0.55557 0.75 0.1875 0.0624 -0.7715 -0.6332 -0 -0.707107 -0.707107 0.75 0.25 0.0624 -0.7715 -0.6332 -0.13795 -0.707107 -0.69352 0.71875 0.25 0.0624 -0.7715 -0.6332 -0 -0.83147 -0.55557 0.75 0.1875 0.0624 -0.7715 -0.6332 -0.13795 -0.707107 -0.69352 0.71875 0.25 0.0624 -0.7715 -0.6332 -0.108386 -0.83147 -0.544895 0.71875 0.1875 0.0624 -0.7715 -0.6332 -0 0.382683 -0.923879 0.75 0.625 0.0865 0.4696 -0.8786 -0 0.55557 -0.83147 0.75 0.6875 0.0865 0.4696 -0.8786 -0.162212 0.55557 -0.815493 0.71875 0.6875 0.0865 0.4696 -0.8786 -0 0.382683 -0.923879 0.75 0.625 0.0865 0.4696 -0.8786 -0.162212 0.55557 -0.815493 0.71875 0.6875 0.0865 0.4696 -0.8786 -0.18024 0.382683 -0.906127 0.71875 0.625 0.0865 0.4696 -0.8786 -0 -0.92388 -0.382683 0.75 0.125 0.0464 -0.881 -0.4709 -0 -0.83147 -0.55557 0.75 0.1875 0.0464 -0.881 -0.4709 -0.108386 -0.83147 -0.544895 0.71875 0.1875 0.0464 -0.881 -0.4709 -0 -0.92388 -0.382683 0.75 0.125 0.0464 -0.881 -0.4709 -0.108386 -0.83147 -0.544895 0.71875 0.1875 0.0464 -0.881 -0.4709 -0.074658 -0.92388 -0.37533 0.71875 0.125 0.0464 -0.881 -0.4709 -0 0.19509 -0.980785 0.75 0.5625 0.0938 0.289 -0.9527 -0 0.382683 -0.923879 0.75 0.625 0.0938 0.289 -0.9527 -0.18024 0.382683 -0.906127 0.71875 0.625 0.0938 0.289 -0.9527 -0 0.19509 -0.980785 0.75 0.5625 0.0938 0.289 -0.9527 -0.18024 0.382683 -0.906127 0.71875 0.625 0.0938 0.289 -0.9527 -0.191342 0.19509 -0.96194 0.71875 0.5625 0.0938 0.289 -0.9527 -0 -0.980785 -0.19509 0.75 0.0625 0.0286 -0.9565 -0.2902 -0 -0.92388 -0.382683 0.75 0.125 0.0286 -0.9565 -0.2902 -0.074658 -0.92388 -0.37533 0.71875 0.125 0.0286 -0.9565 -0.2902 -0 -0.980785 -0.19509 0.75 0.0625 0.0286 -0.9565 -0.2902 -0.074658 -0.92388 -0.37533 0.71875 0.125 0.0286 -0.9565 -0.2902 -0.03806 -0.980785 -0.191342 0.71875 0.0625 0.0286 -0.9565 -0.2902 -0 0 -1 0.75 0.5 0.0975 0.0975 -0.9904 -0 0.19509 -0.980785 0.75 0.5625 0.0975 0.0975 -0.9904 -0.191342 0.19509 -0.96194 0.71875 0.5625 0.0975 0.0975 -0.9904 -0 0 -1 0.75 0.5 0.0975 0.0975 -0.9904 -0.191342 0.19509 -0.96194 0.71875 0.5625 0.0975 0.0975 -0.9904 -0.19509 0 -0.980785 0.71875 0.5 0.0975 0.0975 -0.9904 -0.03806 -0.980785 -0.191342 0.71875 0.0625 0.0846 -0.9565 -0.279 -0.074658 -0.92388 -0.37533 0.71875 0.125 0.0846 -0.9565 -0.279 -0.146447 -0.92388 -0.353553 0.6875 0.125 0.0846 -0.9565 -0.279 -0.03806 -0.980785 -0.191342 0.71875 0.0625 0.0846 -0.9565 -0.279 -0.146447 -0.92388 -0.353553 0.6875 0.125 0.0846 -0.9565 -0.279 -0.074658 -0.980785 -0.18024 0.6875 0.0625 0.0846 -0.9565 -0.279 -0.19509 0 -0.980785 0.71875 0.5 0.2889 0.0976 -0.9524 -0.191342 0.19509 -0.96194 0.71875 0.5625 0.2889 0.0976 -0.9524 -0.37533 0.19509 -0.906127 0.6875 0.5625 0.2889 0.0976 -0.9524 -0.19509 0 -0.980785 0.71875 0.5 0.2889 0.0976 -0.9524 -0.37533 0.19509 -0.906127 0.6875 0.5625 0.2889 0.0976 -0.9524 -0.382683 0 -0.923879 0.6875 0.5 0.2889 0.0976 -0.9524 -0.03806 0.980785 -0.191342 0.71875 0.9375 0.0286 0.9951 -0.0942 -0 1 0 0.703125 1 0.0286 0.9951 -0.0942 -0.074658 0.980785 -0.18024 0.6875 0.9375 0.0286 0.9951 -0.0942 -0 -1 0 0.703125 0 0.0286 -0.9951 -0.0942 -0.03806 -0.980785 -0.191342 0.71875 0.0625 0.0286 -0.9951 -0.0942 -0.074658 -0.980785 -0.18024 0.6875 0.0625 0.0286 -0.9951 -0.0942 -0.191342 -0.19509 -0.96194 0.71875 0.4375 0.2889 -0.0976 -0.9524 -0.19509 0 -0.980785 0.71875 0.5 0.2889 -0.0976 -0.9524 -0.382683 0 -0.923879 0.6875 0.5 0.2889 -0.0976 -0.9524 -0.191342 -0.19509 -0.96194 0.71875 0.4375 0.2889 -0.0976 -0.9524 -0.382683 0 -0.923879 0.6875 0.5 0.2889 -0.0976 -0.9524 -0.37533 -0.19509 -0.906127 0.6875 0.4375 0.2889 -0.0976 -0.9524 -0.074658 0.92388 -0.37533 0.71875 0.875 0.0846 0.9565 -0.279 -0.03806 0.980785 -0.191342 0.71875 0.9375 0.0846 0.9565 -0.279 -0.074658 0.980785 -0.18024 0.6875 0.9375 0.0846 0.9565 -0.279 -0.074658 0.92388 -0.37533 0.71875 0.875 0.0846 0.9565 -0.279 -0.074658 0.980785 -0.18024 0.6875 0.9375 0.0846 0.9565 -0.279 -0.146447 0.92388 -0.353553 0.6875 0.875 0.0846 0.9565 -0.279 -0.18024 -0.382683 -0.906127 0.71875 0.375 0.2779 -0.289 -0.9161 -0.191342 -0.19509 -0.96194 0.71875 0.4375 0.2779 -0.289 -0.9161 -0.37533 -0.19509 -0.906127 0.6875 0.4375 0.2779 -0.289 -0.9161 -0.18024 -0.382683 -0.906127 0.71875 0.375 0.2779 -0.289 -0.9161 -0.37533 -0.19509 -0.906127 0.6875 0.4375 0.2779 -0.289 -0.9161 -0.353553 -0.382683 -0.853553 0.6875 0.375 0.2779 -0.289 -0.9161 -0.108386 0.83147 -0.544895 0.71875 0.8125 0.1374 0.881 -0.4528 -0.074658 0.92388 -0.37533 0.71875 0.875 0.1374 0.881 -0.4528 -0.146447 0.92388 -0.353553 0.6875 0.875 0.1374 0.881 -0.4528 -0.108386 0.83147 -0.544895 0.71875 0.8125 0.1374 0.881 -0.4528 -0.146447 0.92388 -0.353553 0.6875 0.875 0.1374 0.881 -0.4528 -0.212608 0.83147 -0.51328 0.6875 0.8125 0.1374 0.881 -0.4528 -0.162212 -0.55557 -0.815493 0.71875 0.3125 0.2563 -0.4696 -0.8448 -0.18024 -0.382683 -0.906127 0.71875 0.375 0.2563 -0.4696 -0.8448 -0.353553 -0.382683 -0.853553 0.6875 0.375 0.2563 -0.4696 -0.8448 -0.162212 -0.55557 -0.815493 0.71875 0.3125 0.2563 -0.4696 -0.8448 -0.353553 -0.382683 -0.853553 0.6875 0.375 0.2563 -0.4696 -0.8448 -0.31819 -0.55557 -0.768178 0.6875 0.3125 0.2563 -0.4696 -0.8448 -0.13795 0.707107 -0.69352 0.71875 0.75 0.1847 0.7715 -0.6088 -0.108386 0.83147 -0.544895 0.71875 0.8125 0.1847 0.7715 -0.6088 -0.212608 0.83147 -0.51328 0.6875 0.8125 0.1847 0.7715 -0.6088 -0.13795 0.707107 -0.69352 0.71875 0.75 0.1847 0.7715 -0.6088 -0.212608 0.83147 -0.51328 0.6875 0.8125 0.1847 0.7715 -0.6088 -0.270598 0.707107 -0.653281 0.6875 0.75 0.1847 0.7715 -0.6088 -0.13795 -0.707107 -0.69352 0.71875 0.25 0.2248 -0.6326 -0.7412 -0.162212 -0.55557 -0.815493 0.71875 0.3125 0.2248 -0.6326 -0.7412 -0.31819 -0.55557 -0.768178 0.6875 0.3125 0.2248 -0.6326 -0.7412 -0.13795 -0.707107 -0.69352 0.71875 0.25 0.2248 -0.6326 -0.7412 -0.31819 -0.55557 -0.768178 0.6875 0.3125 0.2248 -0.6326 -0.7412 -0.270598 -0.707107 -0.653281 0.6875 0.25 0.2248 -0.6326 -0.7412 -0.162212 0.55557 -0.815493 0.71875 0.6875 0.2248 0.6326 -0.7412 -0.13795 0.707107 -0.69352 0.71875 0.75 0.2248 0.6326 -0.7412 -0.270598 0.707107 -0.653281 0.6875 0.75 0.2248 0.6326 -0.7412 -0.162212 0.55557 -0.815493 0.71875 0.6875 0.2248 0.6326 -0.7412 -0.270598 0.707107 -0.653281 0.6875 0.75 0.2248 0.6326 -0.7412 -0.31819 0.55557 -0.768178 0.6875 0.6875 0.2248 0.6326 -0.7412 -0.108386 -0.83147 -0.544895 0.71875 0.1875 0.1847 -0.7715 -0.6088 -0.13795 -0.707107 -0.69352 0.71875 0.25 0.1847 -0.7715 -0.6088 -0.270598 -0.707107 -0.653281 0.6875 0.25 0.1847 -0.7715 -0.6088 -0.108386 -0.83147 -0.544895 0.71875 0.1875 0.1847 -0.7715 -0.6088 -0.270598 -0.707107 -0.653281 0.6875 0.25 0.1847 -0.7715 -0.6088 -0.212608 -0.83147 -0.51328 0.6875 0.1875 0.1847 -0.7715 -0.6088 -0.18024 0.382683 -0.906127 0.71875 0.625 0.2563 0.4696 -0.8448 -0.162212 0.55557 -0.815493 0.71875 0.6875 0.2563 0.4696 -0.8448 -0.31819 0.55557 -0.768178 0.6875 0.6875 0.2563 0.4696 -0.8448 -0.18024 0.382683 -0.906127 0.71875 0.625 0.2563 0.4696 -0.8448 -0.31819 0.55557 -0.768178 0.6875 0.6875 0.2563 0.4696 -0.8448 -0.353553 0.382683 -0.853553 0.6875 0.625 0.2563 0.4696 -0.8448 -0.074658 -0.92388 -0.37533 0.71875 0.125 0.1374 -0.881 -0.4528 -0.108386 -0.83147 -0.544895 0.71875 0.1875 0.1374 -0.881 -0.4528 -0.212608 -0.83147 -0.51328 0.6875 0.1875 0.1374 -0.881 -0.4528 -0.074658 -0.92388 -0.37533 0.71875 0.125 0.1374 -0.881 -0.4528 -0.212608 -0.83147 -0.51328 0.6875 0.1875 0.1374 -0.881 -0.4528 -0.146447 -0.92388 -0.353553 0.6875 0.125 0.1374 -0.881 -0.4528 -0.191342 0.19509 -0.96194 0.71875 0.5625 0.2779 0.289 -0.9161 -0.18024 0.382683 -0.906127 0.71875 0.625 0.2779 0.289 -0.9161 -0.353553 0.382683 -0.853553 0.6875 0.625 0.2779 0.289 -0.9161 -0.191342 0.19509 -0.96194 0.71875 0.5625 0.2779 0.289 -0.9161 -0.353553 0.382683 -0.853553 0.6875 0.625 0.2779 0.289 -0.9161 -0.37533 0.19509 -0.906127 0.6875 0.5625 0.2779 0.289 -0.9161 -0.270598 0.707107 -0.653281 0.6875 0.75 0.2999 0.7715 -0.5611 -0.212608 0.83147 -0.51328 0.6875 0.8125 0.2999 0.7715 -0.5611 -0.308658 0.83147 -0.46194 0.65625 0.8125 0.2999 0.7715 -0.5611 -0.270598 0.707107 -0.653281 0.6875 0.75 0.2999 0.7715 -0.5611 -0.308658 0.83147 -0.46194 0.65625 0.8125 0.2999 0.7715 -0.5611 -0.392847 0.707107 -0.587938 0.65625 0.75 0.2999 0.7715 -0.5611 -0.270598 -0.707107 -0.653281 0.6875 0.25 0.3651 -0.6326 -0.6831 -0.31819 -0.55557 -0.768178 0.6875 0.3125 0.3651 -0.6326 -0.6831 -0.46194 -0.55557 -0.691342 0.65625 0.3125 0.3651 -0.6326 -0.6831 -0.270598 -0.707107 -0.653281 0.6875 0.25 0.3651 -0.6326 -0.6831 -0.46194 -0.55557 -0.691342 0.65625 0.3125 0.3651 -0.6326 -0.6831 -0.392847 -0.707107 -0.587938 0.65625 0.25 0.3651 -0.6326 -0.6831 -0.31819 0.55557 -0.768178 0.6875 0.6875 0.3651 0.6326 -0.6831 -0.270598 0.707107 -0.653281 0.6875 0.75 0.3651 0.6326 -0.6831 -0.392847 0.707107 -0.587938 0.65625 0.75 0.3651 0.6326 -0.6831 -0.31819 0.55557 -0.768178 0.6875 0.6875 0.3651 0.6326 -0.6831 -0.392847 0.707107 -0.587938 0.65625 0.75 0.3651 0.6326 -0.6831 -0.46194 0.55557 -0.691342 0.65625 0.6875 0.3651 0.6326 -0.6831 -0.212608 -0.83147 -0.51328 0.6875 0.1875 0.2999 -0.7715 -0.5611 -0.270598 -0.707107 -0.653281 0.6875 0.25 0.2999 -0.7715 -0.5611 -0.392847 -0.707107 -0.587938 0.65625 0.25 0.2999 -0.7715 -0.5611 -0.212608 -0.83147 -0.51328 0.6875 0.1875 0.2999 -0.7715 -0.5611 -0.392847 -0.707107 -0.587938 0.65625 0.25 0.2999 -0.7715 -0.5611 -0.308658 -0.83147 -0.46194 0.65625 0.1875 0.2999 -0.7715 -0.5611 -0.353553 0.382683 -0.853553 0.6875 0.625 0.4162 0.4696 -0.7786 -0.31819 0.55557 -0.768178 0.6875 0.6875 0.4162 0.4696 -0.7786 -0.46194 0.55557 -0.691342 0.65625 0.6875 0.4162 0.4696 -0.7786 -0.353553 0.382683 -0.853553 0.6875 0.625 0.4162 0.4696 -0.7786 -0.46194 0.55557 -0.691342 0.65625 0.6875 0.4162 0.4696 -0.7786 -0.51328 0.382683 -0.768178 0.65625 0.625 0.4162 0.4696 -0.7786 -0.146447 -0.92388 -0.353553 0.6875 0.125 0.223 -0.881 -0.4173 -0.212608 -0.83147 -0.51328 0.6875 0.1875 0.223 -0.881 -0.4173 -0.308658 -0.83147 -0.46194 0.65625 0.1875 0.223 -0.881 -0.4173 -0.146447 -0.92388 -0.353553 0.6875 0.125 0.223 -0.881 -0.4173 -0.308658 -0.83147 -0.46194 0.65625 0.1875 0.223 -0.881 -0.4173 -0.212608 -0.92388 -0.31819 0.65625 0.125 0.223 -0.881 -0.4173 -0.37533 0.19509 -0.906127 0.6875 0.5625 0.4513 0.289 -0.8443 -0.353553 0.382683 -0.853553 0.6875 0.625 0.4513 0.289 -0.8443 -0.51328 0.382683 -0.768178 0.65625 0.625 0.4513 0.289 -0.8443 -0.37533 0.19509 -0.906127 0.6875 0.5625 0.4513 0.289 -0.8443 -0.51328 0.382683 -0.768178 0.65625 0.625 0.4513 0.289 -0.8443 -0.544895 0.19509 -0.815493 0.65625 0.5625 0.4513 0.289 -0.8443 -0.074658 -0.980785 -0.18024 0.6875 0.0625 0.1374 -0.9565 -0.2571 -0.146447 -0.92388 -0.353553 0.6875 0.125 0.1374 -0.9565 -0.2571 -0.212608 -0.92388 -0.31819 0.65625 0.125 0.1374 -0.9565 -0.2571 -0.074658 -0.980785 -0.18024 0.6875 0.0625 0.1374 -0.9565 -0.2571 -0.212608 -0.92388 -0.31819 0.65625 0.125 0.1374 -0.9565 -0.2571 -0.108386 -0.980785 -0.162212 0.65625 0.0625 0.1374 -0.9565 -0.2571 -0.382683 0 -0.923879 0.6875 0.5 0.4691 0.0975 -0.8777 -0.37533 0.19509 -0.906127 0.6875 0.5625 0.4691 0.0975 -0.8777 -0.544895 0.19509 -0.815493 0.65625 0.5625 0.4691 0.0975 -0.8777 -0.382683 0 -0.923879 0.6875 0.5 0.4691 0.0975 -0.8777 -0.544895 0.19509 -0.815493 0.65625 0.5625 0.4691 0.0975 -0.8777 -0.55557 0 -0.831469 0.65625 0.5 0.4691 0.0975 -0.8777 -0.074658 0.980785 -0.18024 0.6875 0.9375 0.0464 0.9951 -0.0869 -0 1 0 0.671875 1 0.0464 0.9951 -0.0869 -0.108386 0.980785 -0.162212 0.65625 0.9375 0.0464 0.9951 -0.0869 -0 -1 0 0.671875 0 0.0464 -0.9951 -0.0869 -0.074658 -0.980785 -0.18024 0.6875 0.0625 0.0464 -0.9951 -0.0869 -0.108386 -0.980785 -0.162212 0.65625 0.0625 0.0464 -0.9951 -0.0869 -0.37533 -0.19509 -0.906127 0.6875 0.4375 0.4691 -0.0975 -0.8777 -0.382683 0 -0.923879 0.6875 0.5 0.4691 -0.0975 -0.8777 -0.55557 0 -0.831469 0.65625 0.5 0.4691 -0.0975 -0.8777 -0.37533 -0.19509 -0.906127 0.6875 0.4375 0.4691 -0.0975 -0.8777 -0.55557 0 -0.831469 0.65625 0.5 0.4691 -0.0975 -0.8777 -0.544895 -0.19509 -0.815493 0.65625 0.4375 0.4691 -0.0975 -0.8777 -0.146447 0.92388 -0.353553 0.6875 0.875 0.1374 0.9565 -0.2571 -0.074658 0.980785 -0.18024 0.6875 0.9375 0.1374 0.9565 -0.2571 -0.108386 0.980785 -0.162212 0.65625 0.9375 0.1374 0.9565 -0.2571 -0.146447 0.92388 -0.353553 0.6875 0.875 0.1374 0.9565 -0.2571 -0.108386 0.980785 -0.162212 0.65625 0.9375 0.1374 0.9565 -0.2571 -0.212608 0.92388 -0.31819 0.65625 0.875 0.1374 0.9565 -0.2571 -0.353553 -0.382683 -0.853553 0.6875 0.375 0.4513 -0.289 -0.8443 -0.37533 -0.19509 -0.906127 0.6875 0.4375 0.4513 -0.289 -0.8443 -0.544895 -0.19509 -0.815493 0.65625 0.4375 0.4513 -0.289 -0.8443 -0.353553 -0.382683 -0.853553 0.6875 0.375 0.4513 -0.289 -0.8443 -0.544895 -0.19509 -0.815493 0.65625 0.4375 0.4513 -0.289 -0.8443 -0.51328 -0.382683 -0.768178 0.65625 0.375 0.4513 -0.289 -0.8443 -0.212608 0.83147 -0.51328 0.6875 0.8125 0.223 0.881 -0.4173 -0.146447 0.92388 -0.353553 0.6875 0.875 0.223 0.881 -0.4173 -0.212608 0.92388 -0.31819 0.65625 0.875 0.223 0.881 -0.4173 -0.212608 0.83147 -0.51328 0.6875 0.8125 0.223 0.881 -0.4173 -0.212608 0.92388 -0.31819 0.65625 0.875 0.223 0.881 -0.4173 -0.308658 0.83147 -0.46194 0.65625 0.8125 0.223 0.881 -0.4173 -0.31819 -0.55557 -0.768178 0.6875 0.3125 0.4162 -0.4696 -0.7786 -0.353553 -0.382683 -0.853553 0.6875 0.375 0.4162 -0.4696 -0.7786 -0.51328 -0.382683 -0.768178 0.65625 0.375 0.4162 -0.4696 -0.7786 -0.31819 -0.55557 -0.768178 0.6875 0.3125 0.4162 -0.4696 -0.7786 -0.51328 -0.382683 -0.768178 0.65625 0.375 0.4162 -0.4696 -0.7786 -0.46194 -0.55557 -0.691342 0.65625 0.3125 0.4162 -0.4696 -0.7786 -0.55557 0 -0.831469 0.65625 0.5 0.6314 0.0975 -0.7693 -0.544895 0.19509 -0.815493 0.65625 0.5625 0.6314 0.0975 -0.7693 -0.69352 0.19509 -0.69352 0.625 0.5625 0.6314 0.0975 -0.7693 -0.55557 0 -0.831469 0.65625 0.5 0.6314 0.0975 -0.7693 -0.69352 0.19509 -0.69352 0.625 0.5625 0.6314 0.0975 -0.7693 -0.707107 0 -0.707107 0.625 0.5 0.6314 0.0975 -0.7693 -0.108386 0.980785 -0.162212 0.65625 0.9375 0.0625 0.9951 -0.0761 -0 1 0 0.640625 1 0.0625 0.9951 -0.0761 -0.13795 0.980785 -0.13795 0.625 0.9375 0.0625 0.9951 -0.0761 -0 -1 0 0.640625 0 0.0625 -0.9951 -0.0761 -0.108386 -0.980785 -0.162212 0.65625 0.0625 0.0625 -0.9951 -0.0761 -0.13795 -0.980785 -0.13795 0.625 0.0625 0.0625 -0.9951 -0.0761 -0.544895 -0.19509 -0.815493 0.65625 0.4375 0.6314 -0.0975 -0.7693 -0.55557 0 -0.831469 0.65625 0.5 0.6314 -0.0975 -0.7693 -0.707107 0 -0.707107 0.625 0.5 0.6314 -0.0975 -0.7693 -0.544895 -0.19509 -0.815493 0.65625 0.4375 0.6314 -0.0975 -0.7693 -0.707107 0 -0.707107 0.625 0.5 0.6314 -0.0975 -0.7693 -0.69352 -0.19509 -0.69352 0.625 0.4375 0.6314 -0.0975 -0.7693 -0.212608 0.92388 -0.31819 0.65625 0.875 0.185 0.9565 -0.2254 -0.108386 0.980785 -0.162212 0.65625 0.9375 0.185 0.9565 -0.2254 -0.13795 0.980785 -0.13795 0.625 0.9375 0.185 0.9565 -0.2254 -0.212608 0.92388 -0.31819 0.65625 0.875 0.185 0.9565 -0.2254 -0.13795 0.980785 -0.13795 0.625 0.9375 0.185 0.9565 -0.2254 -0.270598 0.92388 -0.270598 0.625 0.875 0.185 0.9565 -0.2254 -0.51328 -0.382683 -0.768178 0.65625 0.375 0.6073 -0.289 -0.74 -0.544895 -0.19509 -0.815493 0.65625 0.4375 0.6073 -0.289 -0.74 -0.69352 -0.19509 -0.69352 0.625 0.4375 0.6073 -0.289 -0.74 -0.51328 -0.382683 -0.768178 0.65625 0.375 0.6073 -0.289 -0.74 -0.69352 -0.19509 -0.69352 0.625 0.4375 0.6073 -0.289 -0.74 -0.653281 -0.382683 -0.653281 0.625 0.375 0.6073 -0.289 -0.74 -0.308658 0.83147 -0.46194 0.65625 0.8125 0.3002 0.881 -0.3658 -0.212608 0.92388 -0.31819 0.65625 0.875 0.3002 0.881 -0.3658 -0.270598 0.92388 -0.270598 0.625 0.875 0.3002 0.881 -0.3658 -0.308658 0.83147 -0.46194 0.65625 0.8125 0.3002 0.881 -0.3658 -0.270598 0.92388 -0.270598 0.625 0.875 0.3002 0.881 -0.3658 -0.392847 0.83147 -0.392847 0.625 0.8125 0.3002 0.881 -0.3658 -0.46194 -0.55557 -0.691342 0.65625 0.3125 0.5601 -0.4696 -0.6825 -0.51328 -0.382683 -0.768178 0.65625 0.375 0.5601 -0.4696 -0.6825 -0.653281 -0.382683 -0.653281 0.625 0.375 0.5601 -0.4696 -0.6825 -0.46194 -0.55557 -0.691342 0.65625 0.3125 0.5601 -0.4696 -0.6825 -0.653281 -0.382683 -0.653281 0.625 0.375 0.5601 -0.4696 -0.6825 -0.587938 -0.55557 -0.587938 0.625 0.3125 0.5601 -0.4696 -0.6825 -0.392847 0.707107 -0.587938 0.65625 0.75 0.4036 0.7715 -0.4918 -0.308658 0.83147 -0.46194 0.65625 0.8125 0.4036 0.7715 -0.4918 -0.392847 0.83147 -0.392847 0.625 0.8125 0.4036 0.7715 -0.4918 -0.392847 0.707107 -0.587938 0.65625 0.75 0.4036 0.7715 -0.4918 -0.392847 0.83147 -0.392847 0.625 0.8125 0.4036 0.7715 -0.4918 -0.5 0.707107 -0.5 0.625 0.75 0.4036 0.7715 -0.4918 -0.392847 -0.707107 -0.587938 0.65625 0.25 0.4913 -0.6326 -0.5987 -0.46194 -0.55557 -0.691342 0.65625 0.3125 0.4913 -0.6326 -0.5987 -0.587938 -0.55557 -0.587938 0.625 0.3125 0.4913 -0.6326 -0.5987 -0.392847 -0.707107 -0.587938 0.65625 0.25 0.4913 -0.6326 -0.5987 -0.587938 -0.55557 -0.587938 0.625 0.3125 0.4913 -0.6326 -0.5987 -0.5 -0.707107 -0.5 0.625 0.25 0.4913 -0.6326 -0.5987 -0.46194 0.55557 -0.691342 0.65625 0.6875 0.4913 0.6326 -0.5987 -0.392847 0.707107 -0.587938 0.65625 0.75 0.4913 0.6326 -0.5987 -0.5 0.707107 -0.5 0.625 0.75 0.4913 0.6326 -0.5987 -0.46194 0.55557 -0.691342 0.65625 0.6875 0.4913 0.6326 -0.5987 -0.5 0.707107 -0.5 0.625 0.75 0.4913 0.6326 -0.5987 -0.587938 0.55557 -0.587938 0.625 0.6875 0.4913 0.6326 -0.5987 -0.308658 -0.83147 -0.46194 0.65625 0.1875 0.4036 -0.7715 -0.4918 -0.392847 -0.707107 -0.587938 0.65625 0.25 0.4036 -0.7715 -0.4918 -0.5 -0.707107 -0.5 0.625 0.25 0.4036 -0.7715 -0.4918 -0.308658 -0.83147 -0.46194 0.65625 0.1875 0.4036 -0.7715 -0.4918 -0.5 -0.707107 -0.5 0.625 0.25 0.4036 -0.7715 -0.4918 -0.392847 -0.83147 -0.392847 0.625 0.1875 0.4036 -0.7715 -0.4918 -0.51328 0.382683 -0.768178 0.65625 0.625 0.5601 0.4696 -0.6825 -0.46194 0.55557 -0.691342 0.65625 0.6875 0.5601 0.4696 -0.6825 -0.587938 0.55557 -0.587938 0.625 0.6875 0.5601 0.4696 -0.6825 -0.51328 0.382683 -0.768178 0.65625 0.625 0.5601 0.4696 -0.6825 -0.587938 0.55557 -0.587938 0.625 0.6875 0.5601 0.4696 -0.6825 -0.653281 0.382683 -0.653281 0.625 0.625 0.5601 0.4696 -0.6825 -0.212608 -0.92388 -0.31819 0.65625 0.125 0.3002 -0.881 -0.3658 -0.308658 -0.83147 -0.46194 0.65625 0.1875 0.3002 -0.881 -0.3658 -0.392847 -0.83147 -0.392847 0.625 0.1875 0.3002 -0.881 -0.3658 -0.212608 -0.92388 -0.31819 0.65625 0.125 0.3002 -0.881 -0.3658 -0.392847 -0.83147 -0.392847 0.625 0.1875 0.3002 -0.881 -0.3658 -0.270598 -0.92388 -0.270598 0.625 0.125 0.3002 -0.881 -0.3658 -0.544895 0.19509 -0.815493 0.65625 0.5625 0.6073 0.289 -0.74 -0.51328 0.382683 -0.768178 0.65625 0.625 0.6073 0.289 -0.74 -0.653281 0.382683 -0.653281 0.625 0.625 0.6073 0.289 -0.74 -0.544895 0.19509 -0.815493 0.65625 0.5625 0.6073 0.289 -0.74 -0.653281 0.382683 -0.653281 0.625 0.625 0.6073 0.289 -0.74 -0.69352 0.19509 -0.69352 0.625 0.5625 0.6073 0.289 -0.74 -0.108386 -0.980785 -0.162212 0.65625 0.0625 0.185 -0.9565 -0.2254 -0.212608 -0.92388 -0.31819 0.65625 0.125 0.185 -0.9565 -0.2254 -0.270598 -0.92388 -0.270598 0.625 0.125 0.185 -0.9565 -0.2254 -0.108386 -0.980785 -0.162212 0.65625 0.0625 0.185 -0.9565 -0.2254 -0.270598 -0.92388 -0.270598 0.625 0.125 0.185 -0.9565 -0.2254 -0.13795 -0.980785 -0.13795 0.625 0.0625 0.185 -0.9565 -0.2254 -0.5 -0.707107 -0.5 0.625 0.25 0.5987 -0.6326 -0.4913 -0.587938 -0.55557 -0.587938 0.625 0.3125 0.5987 -0.6326 -0.4913 -0.691342 -0.55557 -0.46194 0.59375 0.3125 0.5987 -0.6326 -0.4913 -0.5 -0.707107 -0.5 0.625 0.25 0.5987 -0.6326 -0.4913 -0.691342 -0.55557 -0.46194 0.59375 0.3125 0.5987 -0.6326 -0.4913 -0.587938 -0.707107 -0.392847 0.59375 0.25 0.5987 -0.6326 -0.4913 -0.587938 0.55557 -0.587938 0.625 0.6875 0.5987 0.6326 -0.4913 -0.5 0.707107 -0.5 0.625 0.75 0.5987 0.6326 -0.4913 -0.587938 0.707107 -0.392847 0.59375 0.75 0.5987 0.6326 -0.4913 -0.587938 0.55557 -0.587938 0.625 0.6875 0.5987 0.6326 -0.4913 -0.587938 0.707107 -0.392847 0.59375 0.75 0.5987 0.6326 -0.4913 -0.691342 0.55557 -0.46194 0.59375 0.6875 0.5987 0.6326 -0.4913 -0.392847 -0.83147 -0.392847 0.625 0.1875 0.4918 -0.7715 -0.4036 -0.5 -0.707107 -0.5 0.625 0.25 0.4918 -0.7715 -0.4036 -0.587938 -0.707107 -0.392847 0.59375 0.25 0.4918 -0.7715 -0.4036 -0.392847 -0.83147 -0.392847 0.625 0.1875 0.4918 -0.7715 -0.4036 -0.587938 -0.707107 -0.392847 0.59375 0.25 0.4918 -0.7715 -0.4036 -0.46194 -0.83147 -0.308658 0.59375 0.1875 0.4918 -0.7715 -0.4036 -0.653281 0.382683 -0.653281 0.625 0.625 0.6825 0.4696 -0.5601 -0.587938 0.55557 -0.587938 0.625 0.6875 0.6825 0.4696 -0.5601 -0.691342 0.55557 -0.46194 0.59375 0.6875 0.6825 0.4696 -0.5601 -0.653281 0.382683 -0.653281 0.625 0.625 0.6825 0.4696 -0.5601 -0.691342 0.55557 -0.46194 0.59375 0.6875 0.6825 0.4696 -0.5601 -0.768178 0.382683 -0.51328 0.59375 0.625 0.6825 0.4696 -0.5601 -0.270598 -0.92388 -0.270598 0.625 0.125 0.3658 -0.881 -0.3002 -0.392847 -0.83147 -0.392847 0.625 0.1875 0.3658 -0.881 -0.3002 -0.46194 -0.83147 -0.308658 0.59375 0.1875 0.3658 -0.881 -0.3002 -0.270598 -0.92388 -0.270598 0.625 0.125 0.3658 -0.881 -0.3002 -0.46194 -0.83147 -0.308658 0.59375 0.1875 0.3658 -0.881 -0.3002 -0.31819 -0.92388 -0.212608 0.59375 0.125 0.3658 -0.881 -0.3002 -0.69352 0.19509 -0.69352 0.625 0.5625 0.74 0.289 -0.6073 -0.653281 0.382683 -0.653281 0.625 0.625 0.74 0.289 -0.6073 -0.768178 0.382683 -0.51328 0.59375 0.625 0.74 0.289 -0.6073 -0.69352 0.19509 -0.69352 0.625 0.5625 0.74 0.289 -0.6073 -0.768178 0.382683 -0.51328 0.59375 0.625 0.74 0.289 -0.6073 -0.815493 0.19509 -0.544895 0.59375 0.5625 0.74 0.289 -0.6073 -0.13795 -0.980785 -0.13795 0.625 0.0625 0.2254 -0.9565 -0.185 -0.270598 -0.92388 -0.270598 0.625 0.125 0.2254 -0.9565 -0.185 -0.31819 -0.92388 -0.212608 0.59375 0.125 0.2254 -0.9565 -0.185 -0.13795 -0.980785 -0.13795 0.625 0.0625 0.2254 -0.9565 -0.185 -0.31819 -0.92388 -0.212608 0.59375 0.125 0.2254 -0.9565 -0.185 -0.162212 -0.980785 -0.108386 0.59375 0.0625 0.2254 -0.9565 -0.185 -0.707107 0 -0.707107 0.625 0.5 0.7693 0.0975 -0.6314 -0.69352 0.19509 -0.69352 0.625 0.5625 0.7693 0.0975 -0.6314 -0.815493 0.19509 -0.544895 0.59375 0.5625 0.7693 0.0975 -0.6314 -0.707107 0 -0.707107 0.625 0.5 0.7693 0.0975 -0.6314 -0.815493 0.19509 -0.544895 0.59375 0.5625 0.7693 0.0975 -0.6314 -0.83147 0 -0.55557 0.59375 0.5 0.7693 0.0975 -0.6314 -0.13795 0.980785 -0.13795 0.625 0.9375 0.0761 0.9951 -0.0625 -0 1 0 0.609375 1 0.0761 0.9951 -0.0625 -0.162212 0.980785 -0.108386 0.59375 0.9375 0.0761 0.9951 -0.0625 -0 -1 0 0.609375 0 0.0761 -0.9951 -0.0625 -0.13795 -0.980785 -0.13795 0.625 0.0625 0.0761 -0.9951 -0.0625 -0.162212 -0.980785 -0.108386 0.59375 0.0625 0.0761 -0.9951 -0.0625 -0.69352 -0.19509 -0.69352 0.625 0.4375 0.7693 -0.0975 -0.6314 -0.707107 0 -0.707107 0.625 0.5 0.7693 -0.0975 -0.6314 -0.83147 0 -0.55557 0.59375 0.5 0.7693 -0.0975 -0.6314 -0.69352 -0.19509 -0.69352 0.625 0.4375 0.7693 -0.0975 -0.6314 -0.83147 0 -0.55557 0.59375 0.5 0.7693 -0.0975 -0.6314 -0.815493 -0.19509 -0.544895 0.59375 0.4375 0.7693 -0.0975 -0.6314 -0.270598 0.92388 -0.270598 0.625 0.875 0.2254 0.9565 -0.185 -0.13795 0.980785 -0.13795 0.625 0.9375 0.2254 0.9565 -0.185 -0.162212 0.980785 -0.108386 0.59375 0.9375 0.2254 0.9565 -0.185 -0.270598 0.92388 -0.270598 0.625 0.875 0.2254 0.9565 -0.185 -0.162212 0.980785 -0.108386 0.59375 0.9375 0.2254 0.9565 -0.185 -0.31819 0.92388 -0.212608 0.59375 0.875 0.2254 0.9565 -0.185 -0.653281 -0.382683 -0.653281 0.625 0.375 0.74 -0.289 -0.6073 -0.69352 -0.19509 -0.69352 0.625 0.4375 0.74 -0.289 -0.6073 -0.815493 -0.19509 -0.544895 0.59375 0.4375 0.74 -0.289 -0.6073 -0.653281 -0.382683 -0.653281 0.625 0.375 0.74 -0.289 -0.6073 -0.815493 -0.19509 -0.544895 0.59375 0.4375 0.74 -0.289 -0.6073 -0.768178 -0.382683 -0.51328 0.59375 0.375 0.74 -0.289 -0.6073 -0.392847 0.83147 -0.392847 0.625 0.8125 0.3658 0.881 -0.3002 -0.270598 0.92388 -0.270598 0.625 0.875 0.3658 0.881 -0.3002 -0.31819 0.92388 -0.212608 0.59375 0.875 0.3658 0.881 -0.3002 -0.392847 0.83147 -0.392847 0.625 0.8125 0.3658 0.881 -0.3002 -0.31819 0.92388 -0.212608 0.59375 0.875 0.3658 0.881 -0.3002 -0.46194 0.83147 -0.308658 0.59375 0.8125 0.3658 0.881 -0.3002 -0.587938 -0.55557 -0.587938 0.625 0.3125 0.6825 -0.4696 -0.5601 -0.653281 -0.382683 -0.653281 0.625 0.375 0.6825 -0.4696 -0.5601 -0.768178 -0.382683 -0.51328 0.59375 0.375 0.6825 -0.4696 -0.5601 -0.587938 -0.55557 -0.587938 0.625 0.3125 0.6825 -0.4696 -0.5601 -0.768178 -0.382683 -0.51328 0.59375 0.375 0.6825 -0.4696 -0.5601 -0.691342 -0.55557 -0.46194 0.59375 0.3125 0.6825 -0.4696 -0.5601 -0.5 0.707107 -0.5 0.625 0.75 0.4918 0.7715 -0.4036 -0.392847 0.83147 -0.392847 0.625 0.8125 0.4918 0.7715 -0.4036 -0.46194 0.83147 -0.308658 0.59375 0.8125 0.4918 0.7715 -0.4036 -0.5 0.707107 -0.5 0.625 0.75 0.4918 0.7715 -0.4036 -0.46194 0.83147 -0.308658 0.59375 0.8125 0.4918 0.7715 -0.4036 -0.587938 0.707107 -0.392847 0.59375 0.75 0.4918 0.7715 -0.4036 -0.162212 0.980785 -0.108386 0.59375 0.9375 0.0869 0.9951 -0.0464 -0 1 0 0.578125 1 0.0869 0.9951 -0.0464 -0.18024 0.980785 -0.074658 0.5625 0.9375 0.0869 0.9951 -0.0464 -0 -1 0 0.578125 0 0.0869 -0.9951 -0.0464 -0.162212 -0.980785 -0.108386 0.59375 0.0625 0.0869 -0.9951 -0.0464 -0.18024 -0.980785 -0.074658 0.5625 0.0625 0.0869 -0.9951 -0.0464 -0.815493 -0.19509 -0.544895 0.59375 0.4375 0.8777 -0.0975 -0.4691 -0.83147 0 -0.55557 0.59375 0.5 0.8777 -0.0975 -0.4691 -0.923879 0 -0.382683 0.5625 0.5 0.8777 -0.0975 -0.4691 -0.815493 -0.19509 -0.544895 0.59375 0.4375 0.8777 -0.0975 -0.4691 -0.923879 0 -0.382683 0.5625 0.5 0.8777 -0.0975 -0.4691 -0.906127 -0.19509 -0.37533 0.5625 0.4375 0.8777 -0.0975 -0.4691 -0.31819 0.92388 -0.212608 0.59375 0.875 0.2571 0.9565 -0.1374 -0.162212 0.980785 -0.108386 0.59375 0.9375 0.2571 0.9565 -0.1374 -0.18024 0.980785 -0.074658 0.5625 0.9375 0.2571 0.9565 -0.1374 -0.31819 0.92388 -0.212608 0.59375 0.875 0.2571 0.9565 -0.1374 -0.18024 0.980785 -0.074658 0.5625 0.9375 0.2571 0.9565 -0.1374 -0.353553 0.92388 -0.146447 0.5625 0.875 0.2571 0.9565 -0.1374 -0.768178 -0.382683 -0.51328 0.59375 0.375 0.8443 -0.289 -0.4513 -0.815493 -0.19509 -0.544895 0.59375 0.4375 0.8443 -0.289 -0.4513 -0.906127 -0.19509 -0.37533 0.5625 0.4375 0.8443 -0.289 -0.4513 -0.768178 -0.382683 -0.51328 0.59375 0.375 0.8443 -0.289 -0.4513 -0.906127 -0.19509 -0.37533 0.5625 0.4375 0.8443 -0.289 -0.4513 -0.853553 -0.382683 -0.353553 0.5625 0.375 0.8443 -0.289 -0.4513 -0.46194 0.83147 -0.308658 0.59375 0.8125 0.4173 0.881 -0.223 -0.31819 0.92388 -0.212608 0.59375 0.875 0.4173 0.881 -0.223 -0.353553 0.92388 -0.146447 0.5625 0.875 0.4173 0.881 -0.223 -0.46194 0.83147 -0.308658 0.59375 0.8125 0.4173 0.881 -0.223 -0.353553 0.92388 -0.146447 0.5625 0.875 0.4173 0.881 -0.223 -0.51328 0.83147 -0.212607 0.5625 0.8125 0.4173 0.881 -0.223 -0.691342 -0.55557 -0.46194 0.59375 0.3125 0.7786 -0.4696 -0.4162 -0.768178 -0.382683 -0.51328 0.59375 0.375 0.7786 -0.4696 -0.4162 -0.853553 -0.382683 -0.353553 0.5625 0.375 0.7786 -0.4696 -0.4162 -0.691342 -0.55557 -0.46194 0.59375 0.3125 0.7786 -0.4696 -0.4162 -0.853553 -0.382683 -0.353553 0.5625 0.375 0.7786 -0.4696 -0.4162 -0.768178 -0.55557 -0.31819 0.5625 0.3125 0.7786 -0.4696 -0.4162 -0.587938 0.707107 -0.392847 0.59375 0.75 0.5611 0.7715 -0.2999 -0.46194 0.83147 -0.308658 0.59375 0.8125 0.5611 0.7715 -0.2999 -0.51328 0.83147 -0.212607 0.5625 0.8125 0.5611 0.7715 -0.2999 -0.587938 0.707107 -0.392847 0.59375 0.75 0.5611 0.7715 -0.2999 -0.51328 0.83147 -0.212607 0.5625 0.8125 0.5611 0.7715 -0.2999 -0.653281 0.707107 -0.270598 0.5625 0.75 0.5611 0.7715 -0.2999 -0.587938 -0.707107 -0.392847 0.59375 0.25 0.6831 -0.6326 -0.3651 -0.691342 -0.55557 -0.46194 0.59375 0.3125 0.6831 -0.6326 -0.3651 -0.768178 -0.55557 -0.31819 0.5625 0.3125 0.6831 -0.6326 -0.3651 -0.587938 -0.707107 -0.392847 0.59375 0.25 0.6831 -0.6326 -0.3651 -0.768178 -0.55557 -0.31819 0.5625 0.3125 0.6831 -0.6326 -0.3651 -0.653281 -0.707107 -0.270598 0.5625 0.25 0.6831 -0.6326 -0.3651 -0.691342 0.55557 -0.46194 0.59375 0.6875 0.6831 0.6326 -0.3651 -0.587938 0.707107 -0.392847 0.59375 0.75 0.6831 0.6326 -0.3651 -0.653281 0.707107 -0.270598 0.5625 0.75 0.6831 0.6326 -0.3651 -0.691342 0.55557 -0.46194 0.59375 0.6875 0.6831 0.6326 -0.3651 -0.653281 0.707107 -0.270598 0.5625 0.75 0.6831 0.6326 -0.3651 -0.768178 0.55557 -0.31819 0.5625 0.6875 0.6831 0.6326 -0.3651 -0.46194 -0.83147 -0.308658 0.59375 0.1875 0.5611 -0.7715 -0.2999 -0.587938 -0.707107 -0.392847 0.59375 0.25 0.5611 -0.7715 -0.2999 -0.653281 -0.707107 -0.270598 0.5625 0.25 0.5611 -0.7715 -0.2999 -0.46194 -0.83147 -0.308658 0.59375 0.1875 0.5611 -0.7715 -0.2999 -0.653281 -0.707107 -0.270598 0.5625 0.25 0.5611 -0.7715 -0.2999 -0.51328 -0.83147 -0.212607 0.5625 0.1875 0.5611 -0.7715 -0.2999 -0.768178 0.382683 -0.51328 0.59375 0.625 0.7786 0.4696 -0.4162 -0.691342 0.55557 -0.46194 0.59375 0.6875 0.7786 0.4696 -0.4162 -0.768178 0.55557 -0.31819 0.5625 0.6875 0.7786 0.4696 -0.4162 -0.768178 0.382683 -0.51328 0.59375 0.625 0.7786 0.4696 -0.4162 -0.768178 0.55557 -0.31819 0.5625 0.6875 0.7786 0.4696 -0.4162 -0.853553 0.382683 -0.353553 0.5625 0.625 0.7786 0.4696 -0.4162 -0.31819 -0.92388 -0.212608 0.59375 0.125 0.4173 -0.881 -0.223 -0.46194 -0.83147 -0.308658 0.59375 0.1875 0.4173 -0.881 -0.223 -0.51328 -0.83147 -0.212607 0.5625 0.1875 0.4173 -0.881 -0.223 -0.31819 -0.92388 -0.212608 0.59375 0.125 0.4173 -0.881 -0.223 -0.51328 -0.83147 -0.212607 0.5625 0.1875 0.4173 -0.881 -0.223 -0.353553 -0.92388 -0.146447 0.5625 0.125 0.4173 -0.881 -0.223 -0.815493 0.19509 -0.544895 0.59375 0.5625 0.8443 0.289 -0.4513 -0.768178 0.382683 -0.51328 0.59375 0.625 0.8443 0.289 -0.4513 -0.853553 0.382683 -0.353553 0.5625 0.625 0.8443 0.289 -0.4513 -0.815493 0.19509 -0.544895 0.59375 0.5625 0.8443 0.289 -0.4513 -0.853553 0.382683 -0.353553 0.5625 0.625 0.8443 0.289 -0.4513 -0.906127 0.19509 -0.37533 0.5625 0.5625 0.8443 0.289 -0.4513 -0.162212 -0.980785 -0.108386 0.59375 0.0625 0.2571 -0.9565 -0.1374 -0.31819 -0.92388 -0.212608 0.59375 0.125 0.2571 -0.9565 -0.1374 -0.353553 -0.92388 -0.146447 0.5625 0.125 0.2571 -0.9565 -0.1374 -0.162212 -0.980785 -0.108386 0.59375 0.0625 0.2571 -0.9565 -0.1374 -0.353553 -0.92388 -0.146447 0.5625 0.125 0.2571 -0.9565 -0.1374 -0.18024 -0.980785 -0.074658 0.5625 0.0625 0.2571 -0.9565 -0.1374 -0.83147 0 -0.55557 0.59375 0.5 0.8777 0.0975 -0.4691 -0.815493 0.19509 -0.544895 0.59375 0.5625 0.8777 0.0975 -0.4691 -0.906127 0.19509 -0.37533 0.5625 0.5625 0.8777 0.0975 -0.4691 -0.83147 0 -0.55557 0.59375 0.5 0.8777 0.0975 -0.4691 -0.906127 0.19509 -0.37533 0.5625 0.5625 0.8777 0.0975 -0.4691 -0.923879 0 -0.382683 0.5625 0.5 0.8777 0.0975 -0.4691 -0.768178 0.55557 -0.31819 0.5625 0.6875 0.7412 0.6326 -0.2248 -0.653281 0.707107 -0.270598 0.5625 0.75 0.7412 0.6326 -0.2248 -0.69352 0.707107 -0.13795 0.53125 0.75 0.7412 0.6326 -0.2248 -0.768178 0.55557 -0.31819 0.5625 0.6875 0.7412 0.6326 -0.2248 -0.69352 0.707107 -0.13795 0.53125 0.75 0.7412 0.6326 -0.2248 -0.815493 0.55557 -0.162212 0.53125 0.6875 0.7412 0.6326 -0.2248 -0.51328 -0.83147 -0.212607 0.5625 0.1875 0.6088 -0.7715 -0.1847 -0.653281 -0.707107 -0.270598 0.5625 0.25 0.6088 -0.7715 -0.1847 -0.69352 -0.707107 -0.13795 0.53125 0.25 0.6088 -0.7715 -0.1847 -0.51328 -0.83147 -0.212607 0.5625 0.1875 0.6088 -0.7715 -0.1847 -0.69352 -0.707107 -0.13795 0.53125 0.25 0.6088 -0.7715 -0.1847 -0.544895 -0.83147 -0.108386 0.53125 0.1875 0.6088 -0.7715 -0.1847 -0.853553 0.382683 -0.353553 0.5625 0.625 0.8448 0.4696 -0.2563 -0.768178 0.55557 -0.31819 0.5625 0.6875 0.8448 0.4696 -0.2563 -0.815493 0.55557 -0.162212 0.53125 0.6875 0.8448 0.4696 -0.2563 -0.853553 0.382683 -0.353553 0.5625 0.625 0.8448 0.4696 -0.2563 -0.815493 0.55557 -0.162212 0.53125 0.6875 0.8448 0.4696 -0.2563 -0.906127 0.382683 -0.18024 0.53125 0.625 0.8448 0.4696 -0.2563 -0.353553 -0.92388 -0.146447 0.5625 0.125 0.4528 -0.881 -0.1374 -0.51328 -0.83147 -0.212607 0.5625 0.1875 0.4528 -0.881 -0.1374 -0.544895 -0.83147 -0.108386 0.53125 0.1875 0.4528 -0.881 -0.1374 -0.353553 -0.92388 -0.146447 0.5625 0.125 0.4528 -0.881 -0.1374 -0.544895 -0.83147 -0.108386 0.53125 0.1875 0.4528 -0.881 -0.1374 -0.37533 -0.92388 -0.074658 0.53125 0.125 0.4528 -0.881 -0.1374 -0.906127 0.19509 -0.37533 0.5625 0.5625 0.9161 0.289 -0.2779 -0.853553 0.382683 -0.353553 0.5625 0.625 0.9161 0.289 -0.2779 -0.906127 0.382683 -0.18024 0.53125 0.625 0.9161 0.289 -0.2779 -0.906127 0.19509 -0.37533 0.5625 0.5625 0.9161 0.289 -0.2779 -0.906127 0.382683 -0.18024 0.53125 0.625 0.9161 0.289 -0.2779 -0.96194 0.19509 -0.191342 0.53125 0.5625 0.9161 0.289 -0.2779 -0.18024 -0.980785 -0.074658 0.5625 0.0625 0.279 -0.9565 -0.0846 -0.353553 -0.92388 -0.146447 0.5625 0.125 0.279 -0.9565 -0.0846 -0.37533 -0.92388 -0.074658 0.53125 0.125 0.279 -0.9565 -0.0846 -0.18024 -0.980785 -0.074658 0.5625 0.0625 0.279 -0.9565 -0.0846 -0.37533 -0.92388 -0.074658 0.53125 0.125 0.279 -0.9565 -0.0846 -0.191342 -0.980785 -0.03806 0.53125 0.0625 0.279 -0.9565 -0.0846 -0.923879 0 -0.382683 0.5625 0.5 0.9524 0.0975 -0.2889 -0.906127 0.19509 -0.37533 0.5625 0.5625 0.9524 0.0975 -0.2889 -0.96194 0.19509 -0.191342 0.53125 0.5625 0.9524 0.0975 -0.2889 -0.923879 0 -0.382683 0.5625 0.5 0.9524 0.0975 -0.2889 -0.96194 0.19509 -0.191342 0.53125 0.5625 0.9524 0.0975 -0.2889 -0.980785 0 -0.19509 0.53125 0.5 0.9524 0.0975 -0.2889 -0.18024 0.980785 -0.074658 0.5625 0.9375 0.0942 0.9951 -0.0286 -0 1 0 0.546875 1 0.0942 0.9951 -0.0286 -0.191342 0.980785 -0.03806 0.53125 0.9375 0.0942 0.9951 -0.0286 -0 -1 0 0.546875 0 0.0942 -0.9951 -0.0286 -0.18024 -0.980785 -0.074658 0.5625 0.0625 0.0942 -0.9951 -0.0286 -0.191342 -0.980785 -0.03806 0.53125 0.0625 0.0942 -0.9951 -0.0286 -0.906127 -0.19509 -0.37533 0.5625 0.4375 0.9524 -0.0975 -0.2889 -0.923879 0 -0.382683 0.5625 0.5 0.9524 -0.0975 -0.2889 -0.980785 0 -0.19509 0.53125 0.5 0.9524 -0.0975 -0.2889 -0.906127 -0.19509 -0.37533 0.5625 0.4375 0.9524 -0.0975 -0.2889 -0.980785 0 -0.19509 0.53125 0.5 0.9524 -0.0975 -0.2889 -0.96194 -0.19509 -0.191342 0.53125 0.4375 0.9524 -0.0975 -0.2889 -0.353553 0.92388 -0.146447 0.5625 0.875 0.279 0.9565 -0.0846 -0.18024 0.980785 -0.074658 0.5625 0.9375 0.279 0.9565 -0.0846 -0.191342 0.980785 -0.03806 0.53125 0.9375 0.279 0.9565 -0.0846 -0.353553 0.92388 -0.146447 0.5625 0.875 0.279 0.9565 -0.0846 -0.191342 0.980785 -0.03806 0.53125 0.9375 0.279 0.9565 -0.0846 -0.37533 0.92388 -0.074658 0.53125 0.875 0.279 0.9565 -0.0846 -0.853553 -0.382683 -0.353553 0.5625 0.375 0.9161 -0.289 -0.2779 -0.906127 -0.19509 -0.37533 0.5625 0.4375 0.9161 -0.289 -0.2779 -0.96194 -0.19509 -0.191342 0.53125 0.4375 0.9161 -0.289 -0.2779 -0.853553 -0.382683 -0.353553 0.5625 0.375 0.9161 -0.289 -0.2779 -0.96194 -0.19509 -0.191342 0.53125 0.4375 0.9161 -0.289 -0.2779 -0.906127 -0.382683 -0.18024 0.53125 0.375 0.9161 -0.289 -0.2779 -0.51328 0.83147 -0.212607 0.5625 0.8125 0.4528 0.881 -0.1374 -0.353553 0.92388 -0.146447 0.5625 0.875 0.4528 0.881 -0.1374 -0.37533 0.92388 -0.074658 0.53125 0.875 0.4528 0.881 -0.1374 -0.51328 0.83147 -0.212607 0.5625 0.8125 0.4528 0.881 -0.1374 -0.37533 0.92388 -0.074658 0.53125 0.875 0.4528 0.881 -0.1374 -0.544895 0.83147 -0.108386 0.53125 0.8125 0.4528 0.881 -0.1374 -0.768178 -0.55557 -0.31819 0.5625 0.3125 0.8448 -0.4696 -0.2563 -0.853553 -0.382683 -0.353553 0.5625 0.375 0.8448 -0.4696 -0.2563 -0.906127 -0.382683 -0.18024 0.53125 0.375 0.8448 -0.4696 -0.2563 -0.768178 -0.55557 -0.31819 0.5625 0.3125 0.8448 -0.4696 -0.2563 -0.906127 -0.382683 -0.18024 0.53125 0.375 0.8448 -0.4696 -0.2563 -0.815493 -0.55557 -0.162212 0.53125 0.3125 0.8448 -0.4696 -0.2563 -0.653281 0.707107 -0.270598 0.5625 0.75 0.6088 0.7715 -0.1847 -0.51328 0.83147 -0.212607 0.5625 0.8125 0.6088 0.7715 -0.1847 -0.544895 0.83147 -0.108386 0.53125 0.8125 0.6088 0.7715 -0.1847 -0.653281 0.707107 -0.270598 0.5625 0.75 0.6088 0.7715 -0.1847 -0.544895 0.83147 -0.108386 0.53125 0.8125 0.6088 0.7715 -0.1847 -0.69352 0.707107 -0.13795 0.53125 0.75 0.6088 0.7715 -0.1847 -0.653281 -0.707107 -0.270598 0.5625 0.25 0.7412 -0.6326 -0.2248 -0.768178 -0.55557 -0.31819 0.5625 0.3125 0.7412 -0.6326 -0.2248 -0.815493 -0.55557 -0.162212 0.53125 0.3125 0.7412 -0.6326 -0.2248 -0.653281 -0.707107 -0.270598 0.5625 0.25 0.7412 -0.6326 -0.2248 -0.815493 -0.55557 -0.162212 0.53125 0.3125 0.7412 -0.6326 -0.2248 -0.69352 -0.707107 -0.13795 0.53125 0.25 0.7412 -0.6326 -0.2248 -0.96194 -0.19509 -0.191342 0.53125 0.4375 0.9904 -0.0975 -0.0975 -0.980785 0 -0.19509 0.53125 0.5 0.9904 -0.0975 -0.0975 -1 0 0 0.5 0.5 0.9904 -0.0975 -0.0975 -0.96194 -0.19509 -0.191342 0.53125 0.4375 0.9904 -0.0975 -0.0975 -1 0 0 0.5 0.5 0.9904 -0.0975 -0.0975 -0.980785 -0.19509 0 0.5 0.4375 0.9904 -0.0975 -0.0975 -0.37533 0.92388 -0.074658 0.53125 0.875 0.2902 0.9565 -0.0286 -0.191342 0.980785 -0.03806 0.53125 0.9375 0.2902 0.9565 -0.0286 -0.19509 0.980785 0 0.5 0.9375 0.2902 0.9565 -0.0286 -0.37533 0.92388 -0.074658 0.53125 0.875 0.2902 0.9565 -0.0286 -0.19509 0.980785 0 0.5 0.9375 0.2902 0.9565 -0.0286 -0.382683 0.92388 0 0.5 0.875 0.2902 0.9565 -0.0286 -0.906127 -0.382683 -0.18024 0.53125 0.375 0.9527 -0.289 -0.0938 -0.96194 -0.19509 -0.191342 0.53125 0.4375 0.9527 -0.289 -0.0938 -0.980785 -0.19509 0 0.5 0.4375 0.9527 -0.289 -0.0938 -0.906127 -0.382683 -0.18024 0.53125 0.375 0.9527 -0.289 -0.0938 -0.980785 -0.19509 0 0.5 0.4375 0.9527 -0.289 -0.0938 -0.923879 -0.382683 -0 0.5 0.375 0.9527 -0.289 -0.0938 -0.544895 0.83147 -0.108386 0.53125 0.8125 0.4709 0.881 -0.0464 -0.37533 0.92388 -0.074658 0.53125 0.875 0.4709 0.881 -0.0464 -0.382683 0.92388 0 0.5 0.875 0.4709 0.881 -0.0464 -0.544895 0.83147 -0.108386 0.53125 0.8125 0.4709 0.881 -0.0464 -0.382683 0.92388 0 0.5 0.875 0.4709 0.881 -0.0464 -0.55557 0.83147 0 0.5 0.8125 0.4709 0.881 -0.0464 -0.815493 -0.55557 -0.162212 0.53125 0.3125 0.8786 -0.4696 -0.0865 -0.906127 -0.382683 -0.18024 0.53125 0.375 0.8786 -0.4696 -0.0865 -0.923879 -0.382683 -0 0.5 0.375 0.8786 -0.4696 -0.0865 -0.815493 -0.55557 -0.162212 0.53125 0.3125 0.8786 -0.4696 -0.0865 -0.923879 -0.382683 -0 0.5 0.375 0.8786 -0.4696 -0.0865 -0.831469 -0.55557 0 0.5 0.3125 0.8786 -0.4696 -0.0865 -0.69352 0.707107 -0.13795 0.53125 0.75 0.6332 0.7715 -0.0624 -0.544895 0.83147 -0.108386 0.53125 0.8125 0.6332 0.7715 -0.0624 -0.55557 0.83147 0 0.5 0.8125 0.6332 0.7715 -0.0624 -0.69352 0.707107 -0.13795 0.53125 0.75 0.6332 0.7715 -0.0624 -0.55557 0.83147 0 0.5 0.8125 0.6332 0.7715 -0.0624 -0.707107 0.707107 -0 0.5 0.75 0.6332 0.7715 -0.0624 -0.69352 -0.707107 -0.13795 0.53125 0.25 0.7708 -0.6326 -0.0759 -0.815493 -0.55557 -0.162212 0.53125 0.3125 0.7708 -0.6326 -0.0759 -0.831469 -0.55557 0 0.5 0.3125 0.7708 -0.6326 -0.0759 -0.69352 -0.707107 -0.13795 0.53125 0.25 0.7708 -0.6326 -0.0759 -0.831469 -0.55557 0 0.5 0.3125 0.7708 -0.6326 -0.0759 -0.707107 -0.707107 -0 0.5 0.25 0.7708 -0.6326 -0.0759 -0.815493 0.55557 -0.162212 0.53125 0.6875 0.7708 0.6326 -0.0759 -0.69352 0.707107 -0.13795 0.53125 0.75 0.7708 0.6326 -0.0759 -0.707107 0.707107 -0 0.5 0.75 0.7708 0.6326 -0.0759 -0.815493 0.55557 -0.162212 0.53125 0.6875 0.7708 0.6326 -0.0759 -0.707107 0.707107 -0 0.5 0.75 0.7708 0.6326 -0.0759 -0.831469 0.55557 0 0.5 0.6875 0.7708 0.6326 -0.0759 -0.544895 -0.83147 -0.108386 0.53125 0.1875 0.6332 -0.7715 -0.0624 -0.69352 -0.707107 -0.13795 0.53125 0.25 0.6332 -0.7715 -0.0624 -0.707107 -0.707107 -0 0.5 0.25 0.6332 -0.7715 -0.0624 -0.544895 -0.83147 -0.108386 0.53125 0.1875 0.6332 -0.7715 -0.0624 -0.707107 -0.707107 -0 0.5 0.25 0.6332 -0.7715 -0.0624 -0.55557 -0.83147 0 0.5 0.1875 0.6332 -0.7715 -0.0624 -0.906127 0.382683 -0.18024 0.53125 0.625 0.8786 0.4696 -0.0865 -0.815493 0.55557 -0.162212 0.53125 0.6875 0.8786 0.4696 -0.0865 -0.831469 0.55557 0 0.5 0.6875 0.8786 0.4696 -0.0865 -0.906127 0.382683 -0.18024 0.53125 0.625 0.8786 0.4696 -0.0865 -0.831469 0.55557 0 0.5 0.6875 0.8786 0.4696 -0.0865 -0.923879 0.382683 -0 0.5 0.625 0.8786 0.4696 -0.0865 -0.37533 -0.92388 -0.074658 0.53125 0.125 0.4709 -0.881 -0.0464 -0.544895 -0.83147 -0.108386 0.53125 0.1875 0.4709 -0.881 -0.0464 -0.55557 -0.83147 0 0.5 0.1875 0.4709 -0.881 -0.0464 -0.37533 -0.92388 -0.074658 0.53125 0.125 0.4709 -0.881 -0.0464 -0.55557 -0.83147 0 0.5 0.1875 0.4709 -0.881 -0.0464 -0.382683 -0.92388 0 0.5 0.125 0.4709 -0.881 -0.0464 -0.96194 0.19509 -0.191342 0.53125 0.5625 0.9527 0.289 -0.0938 -0.906127 0.382683 -0.18024 0.53125 0.625 0.9527 0.289 -0.0938 -0.923879 0.382683 -0 0.5 0.625 0.9527 0.289 -0.0938 -0.96194 0.19509 -0.191342 0.53125 0.5625 0.9527 0.289 -0.0938 -0.923879 0.382683 -0 0.5 0.625 0.9527 0.289 -0.0938 -0.980785 0.19509 0 0.5 0.5625 0.9527 0.289 -0.0938 -0.191342 -0.980785 -0.03806 0.53125 0.0625 0.2902 -0.9565 -0.0286 -0.37533 -0.92388 -0.074658 0.53125 0.125 0.2902 -0.9565 -0.0286 -0.382683 -0.92388 0 0.5 0.125 0.2902 -0.9565 -0.0286 -0.191342 -0.980785 -0.03806 0.53125 0.0625 0.2902 -0.9565 -0.0286 -0.382683 -0.92388 0 0.5 0.125 0.2902 -0.9565 -0.0286 -0.19509 -0.980785 0 0.5 0.0625 0.2902 -0.9565 -0.0286 -0.980785 0 -0.19509 0.53125 0.5 0.9904 0.0975 -0.0975 -0.96194 0.19509 -0.191342 0.53125 0.5625 0.9904 0.0975 -0.0975 -0.980785 0.19509 0 0.5 0.5625 0.9904 0.0975 -0.0975 -0.980785 0 -0.19509 0.53125 0.5 0.9904 0.0975 -0.0975 -0.980785 0.19509 0 0.5 0.5625 0.9904 0.0975 -0.0975 -1 0 0 0.5 0.5 0.9904 0.0975 -0.0975 -0.191342 0.980785 -0.03806 0.53125 0.9375 0.098 0.9951 -0.0097 -0 1 0 0.515625 1 0.098 0.9951 -0.0097 -0.19509 0.980785 0 0.5 0.9375 0.098 0.9951 -0.0097 -0 -1 0 0.515625 0 0.098 -0.9951 -0.0097 -0.191342 -0.980785 -0.03806 0.53125 0.0625 0.098 -0.9951 -0.0097 -0.19509 -0.980785 0 0.5 0.0625 0.098 -0.9951 -0.0097 -0.55557 -0.83147 0 0.5 0.1875 0.6332 -0.7715 0.0624 -0.707107 -0.707107 -0 0.5 0.25 0.6332 -0.7715 0.0624 -0.69352 -0.707107 0.13795 0.46875 0.25 0.6332 -0.7715 0.0624 -0.55557 -0.83147 0 0.5 0.1875 0.6332 -0.7715 0.0624 -0.69352 -0.707107 0.13795 0.46875 0.25 0.6332 -0.7715 0.0624 -0.544895 -0.83147 0.108386 0.46875 0.1875 0.6332 -0.7715 0.0624 -0.923879 0.382683 -0 0.5 0.625 0.8786 0.4696 0.0865 -0.831469 0.55557 0 0.5 0.6875 0.8786 0.4696 0.0865 -0.815493 0.55557 0.162212 0.46875 0.6875 0.8786 0.4696 0.0865 -0.923879 0.382683 -0 0.5 0.625 0.8786 0.4696 0.0865 -0.815493 0.55557 0.162212 0.46875 0.6875 0.8786 0.4696 0.0865 -0.906127 0.382683 0.18024 0.46875 0.625 0.8786 0.4696 0.0865 -0.382683 -0.92388 0 0.5 0.125 0.4709 -0.881 0.0464 -0.55557 -0.83147 0 0.5 0.1875 0.4709 -0.881 0.0464 -0.544895 -0.83147 0.108386 0.46875 0.1875 0.4709 -0.881 0.0464 -0.382683 -0.92388 0 0.5 0.125 0.4709 -0.881 0.0464 -0.544895 -0.83147 0.108386 0.46875 0.1875 0.4709 -0.881 0.0464 -0.37533 -0.92388 0.074658 0.46875 0.125 0.4709 -0.881 0.0464 -0.980785 0.19509 0 0.5 0.5625 0.9527 0.289 0.0938 -0.923879 0.382683 -0 0.5 0.625 0.9527 0.289 0.0938 -0.906127 0.382683 0.18024 0.46875 0.625 0.9527 0.289 0.0938 -0.980785 0.19509 0 0.5 0.5625 0.9527 0.289 0.0938 -0.906127 0.382683 0.18024 0.46875 0.625 0.9527 0.289 0.0938 -0.96194 0.19509 0.191342 0.46875 0.5625 0.9527 0.289 0.0938 -0.19509 -0.980785 0 0.5 0.0625 0.2902 -0.9565 0.0286 -0.382683 -0.92388 0 0.5 0.125 0.2902 -0.9565 0.0286 -0.37533 -0.92388 0.074658 0.46875 0.125 0.2902 -0.9565 0.0286 -0.19509 -0.980785 0 0.5 0.0625 0.2902 -0.9565 0.0286 -0.37533 -0.92388 0.074658 0.46875 0.125 0.2902 -0.9565 0.0286 -0.191342 -0.980785 0.03806 0.46875 0.0625 0.2902 -0.9565 0.0286 -1 0 0 0.5 0.5 0.9904 0.0975 0.0976 -0.980785 0.19509 0 0.5 0.5625 0.9904 0.0975 0.0976 -0.96194 0.19509 0.191342 0.46875 0.5625 0.9904 0.0975 0.0976 -1 0 0 0.5 0.5 0.9904 0.0975 0.0976 -0.96194 0.19509 0.191342 0.46875 0.5625 0.9904 0.0975 0.0976 -0.980785 0 0.19509 0.46875 0.5 0.9904 0.0975 0.0976 -0.19509 0.980785 0 0.5 0.9375 0.098 0.9951 0.0097 -0 1 0 0.484375 1 0.098 0.9951 0.0097 -0.191342 0.980785 0.03806 0.46875 0.9375 0.098 0.9951 0.0097 -0 -1 0 0.484375 0 0.098 -0.9951 0.0097 -0.19509 -0.980785 0 0.5 0.0625 0.098 -0.9951 0.0097 -0.191342 -0.980785 0.03806 0.46875 0.0625 0.098 -0.9951 0.0097 -0.980785 -0.19509 0 0.5 0.4375 0.9904 -0.0975 0.0976 -1 0 0 0.5 0.5 0.9904 -0.0975 0.0976 -0.980785 0 0.19509 0.46875 0.5 0.9904 -0.0975 0.0976 -0.980785 -0.19509 0 0.5 0.4375 0.9904 -0.0975 0.0976 -0.980785 0 0.19509 0.46875 0.5 0.9904 -0.0975 0.0976 -0.96194 -0.19509 0.191342 0.46875 0.4375 0.9904 -0.0975 0.0976 -0.382683 0.92388 0 0.5 0.875 0.2902 0.9565 0.0286 -0.19509 0.980785 0 0.5 0.9375 0.2902 0.9565 0.0286 -0.191342 0.980785 0.03806 0.46875 0.9375 0.2902 0.9565 0.0286 -0.382683 0.92388 0 0.5 0.875 0.2902 0.9565 0.0286 -0.191342 0.980785 0.03806 0.46875 0.9375 0.2902 0.9565 0.0286 -0.37533 0.92388 0.074658 0.46875 0.875 0.2902 0.9565 0.0286 -0.923879 -0.382683 -0 0.5 0.375 0.9527 -0.289 0.0938 -0.980785 -0.19509 0 0.5 0.4375 0.9527 -0.289 0.0938 -0.96194 -0.19509 0.191342 0.46875 0.4375 0.9527 -0.289 0.0938 -0.923879 -0.382683 -0 0.5 0.375 0.9527 -0.289 0.0938 -0.96194 -0.19509 0.191342 0.46875 0.4375 0.9527 -0.289 0.0938 -0.906127 -0.382683 0.18024 0.46875 0.375 0.9527 -0.289 0.0938 -0.55557 0.83147 0 0.5 0.8125 0.4709 0.881 0.0464 -0.382683 0.92388 0 0.5 0.875 0.4709 0.881 0.0464 -0.37533 0.92388 0.074658 0.46875 0.875 0.4709 0.881 0.0464 -0.55557 0.83147 0 0.5 0.8125 0.4709 0.881 0.0464 -0.37533 0.92388 0.074658 0.46875 0.875 0.4709 0.881 0.0464 -0.544895 0.83147 0.108386 0.46875 0.8125 0.4709 0.881 0.0464 -0.831469 -0.55557 0 0.5 0.3125 0.8786 -0.4696 0.0865 -0.923879 -0.382683 -0 0.5 0.375 0.8786 -0.4696 0.0865 -0.906127 -0.382683 0.18024 0.46875 0.375 0.8786 -0.4696 0.0865 -0.831469 -0.55557 0 0.5 0.3125 0.8786 -0.4696 0.0865 -0.906127 -0.382683 0.18024 0.46875 0.375 0.8786 -0.4696 0.0865 -0.815493 -0.55557 0.162212 0.46875 0.3125 0.8786 -0.4696 0.0865 -0.707107 0.707107 -0 0.5 0.75 0.6332 0.7715 0.0624 -0.55557 0.83147 0 0.5 0.8125 0.6332 0.7715 0.0624 -0.544895 0.83147 0.108386 0.46875 0.8125 0.6332 0.7715 0.0624 -0.707107 0.707107 -0 0.5 0.75 0.6332 0.7715 0.0624 -0.544895 0.83147 0.108386 0.46875 0.8125 0.6332 0.7715 0.0624 -0.69352 0.707107 0.13795 0.46875 0.75 0.6332 0.7715 0.0624 -0.707107 -0.707107 -0 0.5 0.25 0.7708 -0.6326 0.0759 -0.831469 -0.55557 0 0.5 0.3125 0.7708 -0.6326 0.0759 -0.815493 -0.55557 0.162212 0.46875 0.3125 0.7708 -0.6326 0.0759 -0.707107 -0.707107 -0 0.5 0.25 0.7708 -0.6326 0.0759 -0.815493 -0.55557 0.162212 0.46875 0.3125 0.7708 -0.6326 0.0759 -0.69352 -0.707107 0.13795 0.46875 0.25 0.7708 -0.6326 0.0759 -0.831469 0.55557 0 0.5 0.6875 0.7708 0.6326 0.0759 -0.707107 0.707107 -0 0.5 0.75 0.7708 0.6326 0.0759 -0.69352 0.707107 0.13795 0.46875 0.75 0.7708 0.6326 0.0759 -0.831469 0.55557 0 0.5 0.6875 0.7708 0.6326 0.0759 -0.69352 0.707107 0.13795 0.46875 0.75 0.7708 0.6326 0.0759 -0.815493 0.55557 0.162212 0.46875 0.6875 0.7708 0.6326 0.0759 -0.906127 -0.382683 0.18024 0.46875 0.375 0.9161 -0.289 0.2779 -0.96194 -0.19509 0.191342 0.46875 0.4375 0.9161 -0.289 0.2779 -0.906127 -0.19509 0.37533 0.4375 0.4375 0.9161 -0.289 0.2779 -0.906127 -0.382683 0.18024 0.46875 0.375 0.9161 -0.289 0.2779 -0.906127 -0.19509 0.37533 0.4375 0.4375 0.9161 -0.289 0.2779 -0.853553 -0.382683 0.353553 0.4375 0.375 0.9161 -0.289 0.2779 -0.544895 0.83147 0.108386 0.46875 0.8125 0.4528 0.881 0.1374 -0.37533 0.92388 0.074658 0.46875 0.875 0.4528 0.881 0.1374 -0.353553 0.92388 0.146447 0.4375 0.875 0.4528 0.881 0.1374 -0.544895 0.83147 0.108386 0.46875 0.8125 0.4528 0.881 0.1374 -0.353553 0.92388 0.146447 0.4375 0.875 0.4528 0.881 0.1374 -0.51328 0.83147 0.212608 0.4375 0.8125 0.4528 0.881 0.1374 -0.815493 -0.55557 0.162212 0.46875 0.3125 0.8448 -0.4696 0.2563 -0.906127 -0.382683 0.18024 0.46875 0.375 0.8448 -0.4696 0.2563 -0.853553 -0.382683 0.353553 0.4375 0.375 0.8448 -0.4696 0.2563 -0.815493 -0.55557 0.162212 0.46875 0.3125 0.8448 -0.4696 0.2563 -0.853553 -0.382683 0.353553 0.4375 0.375 0.8448 -0.4696 0.2563 -0.768178 -0.55557 0.31819 0.4375 0.3125 0.8448 -0.4696 0.2563 -0.69352 0.707107 0.13795 0.46875 0.75 0.6088 0.7715 0.1847 -0.544895 0.83147 0.108386 0.46875 0.8125 0.6088 0.7715 0.1847 -0.51328 0.83147 0.212608 0.4375 0.8125 0.6088 0.7715 0.1847 -0.69352 0.707107 0.13795 0.46875 0.75 0.6088 0.7715 0.1847 -0.51328 0.83147 0.212608 0.4375 0.8125 0.6088 0.7715 0.1847 -0.653281 0.707107 0.270598 0.4375 0.75 0.6088 0.7715 0.1847 -0.69352 -0.707107 0.13795 0.46875 0.25 0.7412 -0.6326 0.2248 -0.815493 -0.55557 0.162212 0.46875 0.3125 0.7412 -0.6326 0.2248 -0.768178 -0.55557 0.31819 0.4375 0.3125 0.7412 -0.6326 0.2248 -0.69352 -0.707107 0.13795 0.46875 0.25 0.7412 -0.6326 0.2248 -0.768178 -0.55557 0.31819 0.4375 0.3125 0.7412 -0.6326 0.2248 -0.653281 -0.707107 0.270598 0.4375 0.25 0.7412 -0.6326 0.2248 -0.815493 0.55557 0.162212 0.46875 0.6875 0.7412 0.6326 0.2248 -0.69352 0.707107 0.13795 0.46875 0.75 0.7412 0.6326 0.2248 -0.653281 0.707107 0.270598 0.4375 0.75 0.7412 0.6326 0.2248 -0.815493 0.55557 0.162212 0.46875 0.6875 0.7412 0.6326 0.2248 -0.653281 0.707107 0.270598 0.4375 0.75 0.7412 0.6326 0.2248 -0.768178 0.55557 0.31819 0.4375 0.6875 0.7412 0.6326 0.2248 -0.544895 -0.83147 0.108386 0.46875 0.1875 0.6088 -0.7715 0.1847 -0.69352 -0.707107 0.13795 0.46875 0.25 0.6088 -0.7715 0.1847 -0.653281 -0.707107 0.270598 0.4375 0.25 0.6088 -0.7715 0.1847 -0.544895 -0.83147 0.108386 0.46875 0.1875 0.6088 -0.7715 0.1847 -0.653281 -0.707107 0.270598 0.4375 0.25 0.6088 -0.7715 0.1847 -0.51328 -0.83147 0.212608 0.4375 0.1875 0.6088 -0.7715 0.1847 -0.906127 0.382683 0.18024 0.46875 0.625 0.8448 0.4696 0.2563 -0.815493 0.55557 0.162212 0.46875 0.6875 0.8448 0.4696 0.2563 -0.768178 0.55557 0.31819 0.4375 0.6875 0.8448 0.4696 0.2563 -0.906127 0.382683 0.18024 0.46875 0.625 0.8448 0.4696 0.2563 -0.768178 0.55557 0.31819 0.4375 0.6875 0.8448 0.4696 0.2563 -0.853553 0.382683 0.353553 0.4375 0.625 0.8448 0.4696 0.2563 -0.37533 -0.92388 0.074658 0.46875 0.125 0.4528 -0.881 0.1374 -0.544895 -0.83147 0.108386 0.46875 0.1875 0.4528 -0.881 0.1374 -0.51328 -0.83147 0.212608 0.4375 0.1875 0.4528 -0.881 0.1374 -0.37533 -0.92388 0.074658 0.46875 0.125 0.4528 -0.881 0.1374 -0.51328 -0.83147 0.212608 0.4375 0.1875 0.4528 -0.881 0.1374 -0.353553 -0.92388 0.146447 0.4375 0.125 0.4528 -0.881 0.1374 -0.96194 0.19509 0.191342 0.46875 0.5625 0.9161 0.289 0.2779 -0.906127 0.382683 0.18024 0.46875 0.625 0.9161 0.289 0.2779 -0.853553 0.382683 0.353553 0.4375 0.625 0.9161 0.289 0.2779 -0.96194 0.19509 0.191342 0.46875 0.5625 0.9161 0.289 0.2779 -0.853553 0.382683 0.353553 0.4375 0.625 0.9161 0.289 0.2779 -0.906127 0.19509 0.37533 0.4375 0.5625 0.9161 0.289 0.2779 -0.191342 -0.980785 0.03806 0.46875 0.0625 0.279 -0.9565 0.0846 -0.37533 -0.92388 0.074658 0.46875 0.125 0.279 -0.9565 0.0846 -0.353553 -0.92388 0.146447 0.4375 0.125 0.279 -0.9565 0.0846 -0.191342 -0.980785 0.03806 0.46875 0.0625 0.279 -0.9565 0.0846 -0.353553 -0.92388 0.146447 0.4375 0.125 0.279 -0.9565 0.0846 -0.18024 -0.980785 0.074658 0.4375 0.0625 0.279 -0.9565 0.0846 -0.980785 0 0.19509 0.46875 0.5 0.9524 0.0975 0.2889 -0.96194 0.19509 0.191342 0.46875 0.5625 0.9524 0.0975 0.2889 -0.906127 0.19509 0.37533 0.4375 0.5625 0.9524 0.0975 0.2889 -0.980785 0 0.19509 0.46875 0.5 0.9524 0.0975 0.2889 -0.906127 0.19509 0.37533 0.4375 0.5625 0.9524 0.0975 0.2889 -0.923879 0 0.382683 0.4375 0.5 0.9524 0.0975 0.2889 -0.191342 0.980785 0.03806 0.46875 0.9375 0.0942 0.9951 0.0286 -0 1 0 0.453125 1 0.0942 0.9951 0.0286 -0.18024 0.980785 0.074658 0.4375 0.9375 0.0942 0.9951 0.0286 -0 -1 0 0.453125 0 0.0942 -0.9951 0.0286 -0.191342 -0.980785 0.03806 0.46875 0.0625 0.0942 -0.9951 0.0286 -0.18024 -0.980785 0.074658 0.4375 0.0625 0.0942 -0.9951 0.0286 -0.96194 -0.19509 0.191342 0.46875 0.4375 0.9524 -0.0975 0.2889 -0.980785 0 0.19509 0.46875 0.5 0.9524 -0.0975 0.2889 -0.923879 0 0.382683 0.4375 0.5 0.9524 -0.0975 0.2889 -0.96194 -0.19509 0.191342 0.46875 0.4375 0.9524 -0.0975 0.2889 -0.923879 0 0.382683 0.4375 0.5 0.9524 -0.0975 0.2889 -0.906127 -0.19509 0.37533 0.4375 0.4375 0.9524 -0.0975 0.2889 -0.37533 0.92388 0.074658 0.46875 0.875 0.279 0.9565 0.0846 -0.191342 0.980785 0.03806 0.46875 0.9375 0.279 0.9565 0.0846 -0.18024 0.980785 0.074658 0.4375 0.9375 0.279 0.9565 0.0846 -0.37533 0.92388 0.074658 0.46875 0.875 0.279 0.9565 0.0846 -0.18024 0.980785 0.074658 0.4375 0.9375 0.279 0.9565 0.0846 -0.353553 0.92388 0.146447 0.4375 0.875 0.279 0.9565 0.0846 -0.353553 -0.92388 0.146447 0.4375 0.125 0.4173 -0.881 0.223 -0.51328 -0.83147 0.212608 0.4375 0.1875 0.4173 -0.881 0.223 -0.46194 -0.83147 0.308658 0.40625 0.1875 0.4173 -0.881 0.223 -0.353553 -0.92388 0.146447 0.4375 0.125 0.4173 -0.881 0.223 -0.46194 -0.83147 0.308658 0.40625 0.1875 0.4173 -0.881 0.223 -0.31819 -0.92388 0.212608 0.40625 0.125 0.4173 -0.881 0.223 -0.906127 0.19509 0.37533 0.4375 0.5625 0.8443 0.289 0.4513 -0.853553 0.382683 0.353553 0.4375 0.625 0.8443 0.289 0.4513 -0.768178 0.382683 0.51328 0.40625 0.625 0.8443 0.289 0.4513 -0.906127 0.19509 0.37533 0.4375 0.5625 0.8443 0.289 0.4513 -0.768178 0.382683 0.51328 0.40625 0.625 0.8443 0.289 0.4513 -0.815493 0.19509 0.544895 0.40625 0.5625 0.8443 0.289 0.4513 -0.18024 -0.980785 0.074658 0.4375 0.0625 0.2571 -0.9565 0.1374 -0.353553 -0.92388 0.146447 0.4375 0.125 0.2571 -0.9565 0.1374 -0.31819 -0.92388 0.212608 0.40625 0.125 0.2571 -0.9565 0.1374 -0.18024 -0.980785 0.074658 0.4375 0.0625 0.2571 -0.9565 0.1374 -0.31819 -0.92388 0.212608 0.40625 0.125 0.2571 -0.9565 0.1374 -0.162212 -0.980785 0.108386 0.40625 0.0625 0.2571 -0.9565 0.1374 -0.923879 0 0.382683 0.4375 0.5 0.8777 0.0975 0.4691 -0.906127 0.19509 0.37533 0.4375 0.5625 0.8777 0.0975 0.4691 -0.815493 0.19509 0.544895 0.40625 0.5625 0.8777 0.0975 0.4691 -0.923879 0 0.382683 0.4375 0.5 0.8777 0.0975 0.4691 -0.815493 0.19509 0.544895 0.40625 0.5625 0.8777 0.0975 0.4691 -0.831469 0 0.55557 0.40625 0.5 0.8777 0.0975 0.4691 -0.18024 0.980785 0.074658 0.4375 0.9375 0.0869 0.9951 0.0464 -0 1 0 0.421875 1 0.0869 0.9951 0.0464 -0.162212 0.980785 0.108386 0.40625 0.9375 0.0869 0.9951 0.0464 -0 -1 0 0.421875 0 0.0869 -0.9951 0.0464 -0.18024 -0.980785 0.074658 0.4375 0.0625 0.0869 -0.9951 0.0464 -0.162212 -0.980785 0.108386 0.40625 0.0625 0.0869 -0.9951 0.0464 -0.906127 -0.19509 0.37533 0.4375 0.4375 0.8777 -0.0975 0.4691 -0.923879 0 0.382683 0.4375 0.5 0.8777 -0.0975 0.4691 -0.831469 0 0.55557 0.40625 0.5 0.8777 -0.0975 0.4691 -0.906127 -0.19509 0.37533 0.4375 0.4375 0.8777 -0.0975 0.4691 -0.831469 0 0.55557 0.40625 0.5 0.8777 -0.0975 0.4691 -0.815493 -0.19509 0.544895 0.40625 0.4375 0.8777 -0.0975 0.4691 -0.353553 0.92388 0.146447 0.4375 0.875 0.2571 0.9565 0.1374 -0.18024 0.980785 0.074658 0.4375 0.9375 0.2571 0.9565 0.1374 -0.162212 0.980785 0.108386 0.40625 0.9375 0.2571 0.9565 0.1374 -0.353553 0.92388 0.146447 0.4375 0.875 0.2571 0.9565 0.1374 -0.162212 0.980785 0.108386 0.40625 0.9375 0.2571 0.9565 0.1374 -0.31819 0.92388 0.212608 0.40625 0.875 0.2571 0.9565 0.1374 -0.853553 -0.382683 0.353553 0.4375 0.375 0.8443 -0.289 0.4513 -0.906127 -0.19509 0.37533 0.4375 0.4375 0.8443 -0.289 0.4513 -0.815493 -0.19509 0.544895 0.40625 0.4375 0.8443 -0.289 0.4513 -0.853553 -0.382683 0.353553 0.4375 0.375 0.8443 -0.289 0.4513 -0.815493 -0.19509 0.544895 0.40625 0.4375 0.8443 -0.289 0.4513 -0.768178 -0.382683 0.51328 0.40625 0.375 0.8443 -0.289 0.4513 -0.51328 0.83147 0.212608 0.4375 0.8125 0.4173 0.881 0.223 -0.353553 0.92388 0.146447 0.4375 0.875 0.4173 0.881 0.223 -0.31819 0.92388 0.212608 0.40625 0.875 0.4173 0.881 0.223 -0.51328 0.83147 0.212608 0.4375 0.8125 0.4173 0.881 0.223 -0.31819 0.92388 0.212608 0.40625 0.875 0.4173 0.881 0.223 -0.46194 0.83147 0.308658 0.40625 0.8125 0.4173 0.881 0.223 -0.768178 -0.55557 0.31819 0.4375 0.3125 0.7786 -0.4696 0.4162 -0.853553 -0.382683 0.353553 0.4375 0.375 0.7786 -0.4696 0.4162 -0.768178 -0.382683 0.51328 0.40625 0.375 0.7786 -0.4696 0.4162 -0.768178 -0.55557 0.31819 0.4375 0.3125 0.7786 -0.4696 0.4162 -0.768178 -0.382683 0.51328 0.40625 0.375 0.7786 -0.4696 0.4162 -0.691341 -0.55557 0.46194 0.40625 0.3125 0.7786 -0.4696 0.4162 -0.653281 0.707107 0.270598 0.4375 0.75 0.5611 0.7715 0.2999 -0.51328 0.83147 0.212608 0.4375 0.8125 0.5611 0.7715 0.2999 -0.46194 0.83147 0.308658 0.40625 0.8125 0.5611 0.7715 0.2999 -0.653281 0.707107 0.270598 0.4375 0.75 0.5611 0.7715 0.2999 -0.46194 0.83147 0.308658 0.40625 0.8125 0.5611 0.7715 0.2999 -0.587938 0.707107 0.392847 0.40625 0.75 0.5611 0.7715 0.2999 -0.653281 -0.707107 0.270598 0.4375 0.25 0.6831 -0.6326 0.3651 -0.768178 -0.55557 0.31819 0.4375 0.3125 0.6831 -0.6326 0.3651 -0.691341 -0.55557 0.46194 0.40625 0.3125 0.6831 -0.6326 0.3651 -0.653281 -0.707107 0.270598 0.4375 0.25 0.6831 -0.6326 0.3651 -0.691341 -0.55557 0.46194 0.40625 0.3125 0.6831 -0.6326 0.3651 -0.587938 -0.707107 0.392847 0.40625 0.25 0.6831 -0.6326 0.3651 -0.768178 0.55557 0.31819 0.4375 0.6875 0.6831 0.6326 0.3651 -0.653281 0.707107 0.270598 0.4375 0.75 0.6831 0.6326 0.3651 -0.587938 0.707107 0.392847 0.40625 0.75 0.6831 0.6326 0.3651 -0.768178 0.55557 0.31819 0.4375 0.6875 0.6831 0.6326 0.3651 -0.587938 0.707107 0.392847 0.40625 0.75 0.6831 0.6326 0.3651 -0.691341 0.55557 0.46194 0.40625 0.6875 0.6831 0.6326 0.3651 -0.51328 -0.83147 0.212608 0.4375 0.1875 0.5611 -0.7715 0.2999 -0.653281 -0.707107 0.270598 0.4375 0.25 0.5611 -0.7715 0.2999 -0.587938 -0.707107 0.392847 0.40625 0.25 0.5611 -0.7715 0.2999 -0.51328 -0.83147 0.212608 0.4375 0.1875 0.5611 -0.7715 0.2999 -0.587938 -0.707107 0.392847 0.40625 0.25 0.5611 -0.7715 0.2999 -0.46194 -0.83147 0.308658 0.40625 0.1875 0.5611 -0.7715 0.2999 -0.853553 0.382683 0.353553 0.4375 0.625 0.7786 0.4696 0.4162 -0.768178 0.55557 0.31819 0.4375 0.6875 0.7786 0.4696 0.4162 -0.691341 0.55557 0.46194 0.40625 0.6875 0.7786 0.4696 0.4162 -0.853553 0.382683 0.353553 0.4375 0.625 0.7786 0.4696 0.4162 -0.691341 0.55557 0.46194 0.40625 0.6875 0.7786 0.4696 0.4162 -0.768178 0.382683 0.51328 0.40625 0.625 0.7786 0.4696 0.4162 -0.46194 0.83147 0.308658 0.40625 0.8125 0.3658 0.881 0.3002 -0.31819 0.92388 0.212608 0.40625 0.875 0.3658 0.881 0.3002 -0.270598 0.92388 0.270598 0.375 0.875 0.3658 0.881 0.3002 -0.46194 0.83147 0.308658 0.40625 0.8125 0.3658 0.881 0.3002 -0.270598 0.92388 0.270598 0.375 0.875 0.3658 0.881 0.3002 -0.392847 0.83147 0.392847 0.375 0.8125 0.3658 0.881 0.3002 -0.691341 -0.55557 0.46194 0.40625 0.3125 0.6825 -0.4696 0.5601 -0.768178 -0.382683 0.51328 0.40625 0.375 0.6825 -0.4696 0.5601 -0.653281 -0.382683 0.653281 0.375 0.375 0.6825 -0.4696 0.5601 -0.691341 -0.55557 0.46194 0.40625 0.3125 0.6825 -0.4696 0.5601 -0.653281 -0.382683 0.653281 0.375 0.375 0.6825 -0.4696 0.5601 -0.587938 -0.55557 0.587938 0.375 0.3125 0.6825 -0.4696 0.5601 -0.587938 0.707107 0.392847 0.40625 0.75 0.4918 0.7715 0.4036 -0.46194 0.83147 0.308658 0.40625 0.8125 0.4918 0.7715 0.4036 -0.392847 0.83147 0.392847 0.375 0.8125 0.4918 0.7715 0.4036 -0.587938 0.707107 0.392847 0.40625 0.75 0.4918 0.7715 0.4036 -0.392847 0.83147 0.392847 0.375 0.8125 0.4918 0.7715 0.4036 -0.5 0.707107 0.5 0.375 0.75 0.4918 0.7715 0.4036 -0.587938 -0.707107 0.392847 0.40625 0.25 0.5987 -0.6326 0.4913 -0.691341 -0.55557 0.46194 0.40625 0.3125 0.5987 -0.6326 0.4913 -0.587938 -0.55557 0.587938 0.375 0.3125 0.5987 -0.6326 0.4913 -0.587938 -0.707107 0.392847 0.40625 0.25 0.5987 -0.6326 0.4913 -0.587938 -0.55557 0.587938 0.375 0.3125 0.5987 -0.6326 0.4913 -0.5 -0.707107 0.5 0.375 0.25 0.5987 -0.6326 0.4913 -0.691341 0.55557 0.46194 0.40625 0.6875 0.5987 0.6326 0.4913 -0.587938 0.707107 0.392847 0.40625 0.75 0.5987 0.6326 0.4913 -0.5 0.707107 0.5 0.375 0.75 0.5987 0.6326 0.4913 -0.691341 0.55557 0.46194 0.40625 0.6875 0.5987 0.6326 0.4913 -0.5 0.707107 0.5 0.375 0.75 0.5987 0.6326 0.4913 -0.587938 0.55557 0.587938 0.375 0.6875 0.5987 0.6326 0.4913 -0.46194 -0.83147 0.308658 0.40625 0.1875 0.4918 -0.7715 0.4036 -0.587938 -0.707107 0.392847 0.40625 0.25 0.4918 -0.7715 0.4036 -0.5 -0.707107 0.5 0.375 0.25 0.4918 -0.7715 0.4036 -0.46194 -0.83147 0.308658 0.40625 0.1875 0.4918 -0.7715 0.4036 -0.5 -0.707107 0.5 0.375 0.25 0.4918 -0.7715 0.4036 -0.392847 -0.83147 0.392847 0.375 0.1875 0.4918 -0.7715 0.4036 -0.768178 0.382683 0.51328 0.40625 0.625 0.6825 0.4696 0.5601 -0.691341 0.55557 0.46194 0.40625 0.6875 0.6825 0.4696 0.5601 -0.587938 0.55557 0.587938 0.375 0.6875 0.6825 0.4696 0.5601 -0.768178 0.382683 0.51328 0.40625 0.625 0.6825 0.4696 0.5601 -0.587938 0.55557 0.587938 0.375 0.6875 0.6825 0.4696 0.5601 -0.653281 0.382683 0.653281 0.375 0.625 0.6825 0.4696 0.5601 -0.31819 -0.92388 0.212608 0.40625 0.125 0.3658 -0.881 0.3002 -0.46194 -0.83147 0.308658 0.40625 0.1875 0.3658 -0.881 0.3002 -0.392847 -0.83147 0.392847 0.375 0.1875 0.3658 -0.881 0.3002 -0.31819 -0.92388 0.212608 0.40625 0.125 0.3658 -0.881 0.3002 -0.392847 -0.83147 0.392847 0.375 0.1875 0.3658 -0.881 0.3002 -0.270598 -0.92388 0.270598 0.375 0.125 0.3658 -0.881 0.3002 -0.815493 0.19509 0.544895 0.40625 0.5625 0.74 0.289 0.6073 -0.768178 0.382683 0.51328 0.40625 0.625 0.74 0.289 0.6073 -0.653281 0.382683 0.653281 0.375 0.625 0.74 0.289 0.6073 -0.815493 0.19509 0.544895 0.40625 0.5625 0.74 0.289 0.6073 -0.653281 0.382683 0.653281 0.375 0.625 0.74 0.289 0.6073 -0.69352 0.19509 0.69352 0.375 0.5625 0.74 0.289 0.6073 -0.162212 -0.980785 0.108386 0.40625 0.0625 0.2254 -0.9565 0.185 -0.31819 -0.92388 0.212608 0.40625 0.125 0.2254 -0.9565 0.185 -0.270598 -0.92388 0.270598 0.375 0.125 0.2254 -0.9565 0.185 -0.162212 -0.980785 0.108386 0.40625 0.0625 0.2254 -0.9565 0.185 -0.270598 -0.92388 0.270598 0.375 0.125 0.2254 -0.9565 0.185 -0.13795 -0.980785 0.13795 0.375 0.0625 0.2254 -0.9565 0.185 -0.831469 0 0.55557 0.40625 0.5 0.7693 0.0975 0.6314 -0.815493 0.19509 0.544895 0.40625 0.5625 0.7693 0.0975 0.6314 -0.69352 0.19509 0.69352 0.375 0.5625 0.7693 0.0975 0.6314 -0.831469 0 0.55557 0.40625 0.5 0.7693 0.0975 0.6314 -0.69352 0.19509 0.69352 0.375 0.5625 0.7693 0.0975 0.6314 -0.707106 0 0.707107 0.375 0.5 0.7693 0.0975 0.6314 -0.162212 0.980785 0.108386 0.40625 0.9375 0.0761 0.9951 0.0625 -0 1 0 0.390625 1 0.0761 0.9951 0.0625 -0.13795 0.980785 0.13795 0.375 0.9375 0.0761 0.9951 0.0625 -0 -1 0 0.390625 0 0.0761 -0.9951 0.0625 -0.162212 -0.980785 0.108386 0.40625 0.0625 0.0761 -0.9951 0.0625 -0.13795 -0.980785 0.13795 0.375 0.0625 0.0761 -0.9951 0.0625 -0.815493 -0.19509 0.544895 0.40625 0.4375 0.7693 -0.0975 0.6314 -0.831469 0 0.55557 0.40625 0.5 0.7693 -0.0975 0.6314 -0.707106 0 0.707107 0.375 0.5 0.7693 -0.0975 0.6314 -0.815493 -0.19509 0.544895 0.40625 0.4375 0.7693 -0.0975 0.6314 -0.707106 0 0.707107 0.375 0.5 0.7693 -0.0975 0.6314 -0.69352 -0.19509 0.69352 0.375 0.4375 0.7693 -0.0975 0.6314 -0.31819 0.92388 0.212608 0.40625 0.875 0.2254 0.9565 0.185 -0.162212 0.980785 0.108386 0.40625 0.9375 0.2254 0.9565 0.185 -0.13795 0.980785 0.13795 0.375 0.9375 0.2254 0.9565 0.185 -0.31819 0.92388 0.212608 0.40625 0.875 0.2254 0.9565 0.185 -0.13795 0.980785 0.13795 0.375 0.9375 0.2254 0.9565 0.185 -0.270598 0.92388 0.270598 0.375 0.875 0.2254 0.9565 0.185 -0.768178 -0.382683 0.51328 0.40625 0.375 0.74 -0.289 0.6073 -0.815493 -0.19509 0.544895 0.40625 0.4375 0.74 -0.289 0.6073 -0.69352 -0.19509 0.69352 0.375 0.4375 0.74 -0.289 0.6073 -0.768178 -0.382683 0.51328 0.40625 0.375 0.74 -0.289 0.6073 -0.69352 -0.19509 0.69352 0.375 0.4375 0.74 -0.289 0.6073 -0.653281 -0.382683 0.653281 0.375 0.375 0.74 -0.289 0.6073 -0.69352 0.19509 0.69352 0.375 0.5625 0.6073 0.289 0.74 -0.653281 0.382683 0.653281 0.375 0.625 0.6073 0.289 0.74 -0.51328 0.382683 0.768178 0.34375 0.625 0.6073 0.289 0.74 -0.69352 0.19509 0.69352 0.375 0.5625 0.6073 0.289 0.74 -0.51328 0.382683 0.768178 0.34375 0.625 0.6073 0.289 0.74 -0.544895 0.19509 0.815493 0.34375 0.5625 0.6073 0.289 0.74 -0.13795 -0.980785 0.13795 0.375 0.0625 0.185 -0.9565 0.2254 -0.270598 -0.92388 0.270598 0.375 0.125 0.185 -0.9565 0.2254 -0.212607 -0.92388 0.31819 0.34375 0.125 0.185 -0.9565 0.2254 -0.13795 -0.980785 0.13795 0.375 0.0625 0.185 -0.9565 0.2254 -0.212607 -0.92388 0.31819 0.34375 0.125 0.185 -0.9565 0.2254 -0.108386 -0.980785 0.162212 0.34375 0.0625 0.185 -0.9565 0.2254 -0.707106 0 0.707107 0.375 0.5 0.6314 0.0975 0.7693 -0.69352 0.19509 0.69352 0.375 0.5625 0.6314 0.0975 0.7693 -0.544895 0.19509 0.815493 0.34375 0.5625 0.6314 0.0975 0.7693 -0.707106 0 0.707107 0.375 0.5 0.6314 0.0975 0.7693 -0.544895 0.19509 0.815493 0.34375 0.5625 0.6314 0.0975 0.7693 -0.55557 0 0.831469 0.34375 0.5 0.6314 0.0975 0.7693 -0.13795 0.980785 0.13795 0.375 0.9375 0.0625 0.9951 0.0761 -0 1 0 0.359375 1 0.0625 0.9951 0.0761 -0.108386 0.980785 0.162212 0.34375 0.9375 0.0625 0.9951 0.0761 -0 -1 0 0.359375 0 0.0625 -0.9951 0.0761 -0.13795 -0.980785 0.13795 0.375 0.0625 0.0625 -0.9951 0.0761 -0.108386 -0.980785 0.162212 0.34375 0.0625 0.0625 -0.9951 0.0761 -0.69352 -0.19509 0.69352 0.375 0.4375 0.6314 -0.0975 0.7693 -0.707106 0 0.707107 0.375 0.5 0.6314 -0.0975 0.7693 -0.55557 0 0.831469 0.34375 0.5 0.6314 -0.0975 0.7693 -0.69352 -0.19509 0.69352 0.375 0.4375 0.6314 -0.0975 0.7693 -0.55557 0 0.831469 0.34375 0.5 0.6314 -0.0975 0.7693 -0.544895 -0.19509 0.815493 0.34375 0.4375 0.6314 -0.0975 0.7693 -0.270598 0.92388 0.270598 0.375 0.875 0.185 0.9565 0.2254 -0.13795 0.980785 0.13795 0.375 0.9375 0.185 0.9565 0.2254 -0.108386 0.980785 0.162212 0.34375 0.9375 0.185 0.9565 0.2254 -0.270598 0.92388 0.270598 0.375 0.875 0.185 0.9565 0.2254 -0.108386 0.980785 0.162212 0.34375 0.9375 0.185 0.9565 0.2254 -0.212607 0.92388 0.31819 0.34375 0.875 0.185 0.9565 0.2254 -0.653281 -0.382683 0.653281 0.375 0.375 0.6073 -0.289 0.74 -0.69352 -0.19509 0.69352 0.375 0.4375 0.6073 -0.289 0.74 -0.544895 -0.19509 0.815493 0.34375 0.4375 0.6073 -0.289 0.74 -0.653281 -0.382683 0.653281 0.375 0.375 0.6073 -0.289 0.74 -0.544895 -0.19509 0.815493 0.34375 0.4375 0.6073 -0.289 0.74 -0.51328 -0.382683 0.768178 0.34375 0.375 0.6073 -0.289 0.74 -0.392847 0.83147 0.392847 0.375 0.8125 0.3002 0.881 0.3658 -0.270598 0.92388 0.270598 0.375 0.875 0.3002 0.881 0.3658 -0.212607 0.92388 0.31819 0.34375 0.875 0.3002 0.881 0.3658 -0.392847 0.83147 0.392847 0.375 0.8125 0.3002 0.881 0.3658 -0.212607 0.92388 0.31819 0.34375 0.875 0.3002 0.881 0.3658 -0.308658 0.83147 0.46194 0.34375 0.8125 0.3002 0.881 0.3658 -0.587938 -0.55557 0.587938 0.375 0.3125 0.5601 -0.4696 0.6825 -0.653281 -0.382683 0.653281 0.375 0.375 0.5601 -0.4696 0.6825 -0.51328 -0.382683 0.768178 0.34375 0.375 0.5601 -0.4696 0.6825 -0.587938 -0.55557 0.587938 0.375 0.3125 0.5601 -0.4696 0.6825 -0.51328 -0.382683 0.768178 0.34375 0.375 0.5601 -0.4696 0.6825 -0.46194 -0.55557 0.691342 0.34375 0.3125 0.5601 -0.4696 0.6825 -0.5 0.707107 0.5 0.375 0.75 0.4036 0.7715 0.4918 -0.392847 0.83147 0.392847 0.375 0.8125 0.4036 0.7715 0.4918 -0.308658 0.83147 0.46194 0.34375 0.8125 0.4036 0.7715 0.4918 -0.5 0.707107 0.5 0.375 0.75 0.4036 0.7715 0.4918 -0.308658 0.83147 0.46194 0.34375 0.8125 0.4036 0.7715 0.4918 -0.392847 0.707107 0.587938 0.34375 0.75 0.4036 0.7715 0.4918 -0.5 -0.707107 0.5 0.375 0.25 0.4913 -0.6326 0.5987 -0.587938 -0.55557 0.587938 0.375 0.3125 0.4913 -0.6326 0.5987 -0.46194 -0.55557 0.691342 0.34375 0.3125 0.4913 -0.6326 0.5987 -0.5 -0.707107 0.5 0.375 0.25 0.4913 -0.6326 0.5987 -0.46194 -0.55557 0.691342 0.34375 0.3125 0.4913 -0.6326 0.5987 -0.392847 -0.707107 0.587938 0.34375 0.25 0.4913 -0.6326 0.5987 -0.587938 0.55557 0.587938 0.375 0.6875 0.4913 0.6326 0.5987 -0.5 0.707107 0.5 0.375 0.75 0.4913 0.6326 0.5987 -0.392847 0.707107 0.587938 0.34375 0.75 0.4913 0.6326 0.5987 -0.587938 0.55557 0.587938 0.375 0.6875 0.4913 0.6326 0.5987 -0.392847 0.707107 0.587938 0.34375 0.75 0.4913 0.6326 0.5987 -0.46194 0.55557 0.691342 0.34375 0.6875 0.4913 0.6326 0.5987 -0.392847 -0.83147 0.392847 0.375 0.1875 0.4036 -0.7715 0.4918 -0.5 -0.707107 0.5 0.375 0.25 0.4036 -0.7715 0.4918 -0.392847 -0.707107 0.587938 0.34375 0.25 0.4036 -0.7715 0.4918 -0.392847 -0.83147 0.392847 0.375 0.1875 0.4036 -0.7715 0.4918 -0.392847 -0.707107 0.587938 0.34375 0.25 0.4036 -0.7715 0.4918 -0.308658 -0.83147 0.46194 0.34375 0.1875 0.4036 -0.7715 0.4918 -0.653281 0.382683 0.653281 0.375 0.625 0.5601 0.4696 0.6825 -0.587938 0.55557 0.587938 0.375 0.6875 0.5601 0.4696 0.6825 -0.46194 0.55557 0.691342 0.34375 0.6875 0.5601 0.4696 0.6825 -0.653281 0.382683 0.653281 0.375 0.625 0.5601 0.4696 0.6825 -0.46194 0.55557 0.691342 0.34375 0.6875 0.5601 0.4696 0.6825 -0.51328 0.382683 0.768178 0.34375 0.625 0.5601 0.4696 0.6825 -0.270598 -0.92388 0.270598 0.375 0.125 0.3002 -0.881 0.3658 -0.392847 -0.83147 0.392847 0.375 0.1875 0.3002 -0.881 0.3658 -0.308658 -0.83147 0.46194 0.34375 0.1875 0.3002 -0.881 0.3658 -0.270598 -0.92388 0.270598 0.375 0.125 0.3002 -0.881 0.3658 -0.308658 -0.83147 0.46194 0.34375 0.1875 0.3002 -0.881 0.3658 -0.212607 -0.92388 0.31819 0.34375 0.125 0.3002 -0.881 0.3658 -0.46194 -0.55557 0.691342 0.34375 0.3125 0.4162 -0.4696 0.7786 -0.51328 -0.382683 0.768178 0.34375 0.375 0.4162 -0.4696 0.7786 -0.353553 -0.382683 0.853553 0.3125 0.375 0.4162 -0.4696 0.7786 -0.46194 -0.55557 0.691342 0.34375 0.3125 0.4162 -0.4696 0.7786 -0.353553 -0.382683 0.853553 0.3125 0.375 0.4162 -0.4696 0.7786 -0.318189 -0.55557 0.768178 0.3125 0.3125 0.4162 -0.4696 0.7786 -0.392847 0.707107 0.587938 0.34375 0.75 0.2999 0.7715 0.5611 -0.308658 0.83147 0.46194 0.34375 0.8125 0.2999 0.7715 0.5611 -0.212607 0.83147 0.51328 0.3125 0.8125 0.2999 0.7715 0.5611 -0.392847 0.707107 0.587938 0.34375 0.75 0.2999 0.7715 0.5611 -0.212607 0.83147 0.51328 0.3125 0.8125 0.2999 0.7715 0.5611 -0.270598 0.707107 0.653281 0.3125 0.75 0.2999 0.7715 0.5611 -0.392847 -0.707107 0.587938 0.34375 0.25 0.3651 -0.6326 0.6831 -0.46194 -0.55557 0.691342 0.34375 0.3125 0.3651 -0.6326 0.6831 -0.318189 -0.55557 0.768178 0.3125 0.3125 0.3651 -0.6326 0.6831 -0.392847 -0.707107 0.587938 0.34375 0.25 0.3651 -0.6326 0.6831 -0.318189 -0.55557 0.768178 0.3125 0.3125 0.3651 -0.6326 0.6831 -0.270598 -0.707107 0.653281 0.3125 0.25 0.3651 -0.6326 0.6831 -0.46194 0.55557 0.691342 0.34375 0.6875 0.3651 0.6326 0.6831 -0.392847 0.707107 0.587938 0.34375 0.75 0.3651 0.6326 0.6831 -0.270598 0.707107 0.653281 0.3125 0.75 0.3651 0.6326 0.6831 -0.46194 0.55557 0.691342 0.34375 0.6875 0.3651 0.6326 0.6831 -0.270598 0.707107 0.653281 0.3125 0.75 0.3651 0.6326 0.6831 -0.318189 0.55557 0.768178 0.3125 0.6875 0.3651 0.6326 0.6831 -0.308658 -0.83147 0.46194 0.34375 0.1875 0.2999 -0.7715 0.5611 -0.392847 -0.707107 0.587938 0.34375 0.25 0.2999 -0.7715 0.5611 -0.270598 -0.707107 0.653281 0.3125 0.25 0.2999 -0.7715 0.5611 -0.308658 -0.83147 0.46194 0.34375 0.1875 0.2999 -0.7715 0.5611 -0.270598 -0.707107 0.653281 0.3125 0.25 0.2999 -0.7715 0.5611 -0.212607 -0.83147 0.51328 0.3125 0.1875 0.2999 -0.7715 0.5611 -0.51328 0.382683 0.768178 0.34375 0.625 0.4162 0.4696 0.7786 -0.46194 0.55557 0.691342 0.34375 0.6875 0.4162 0.4696 0.7786 -0.318189 0.55557 0.768178 0.3125 0.6875 0.4162 0.4696 0.7786 -0.51328 0.382683 0.768178 0.34375 0.625 0.4162 0.4696 0.7786 -0.318189 0.55557 0.768178 0.3125 0.6875 0.4162 0.4696 0.7786 -0.353553 0.382683 0.853553 0.3125 0.625 0.4162 0.4696 0.7786 -0.212607 -0.92388 0.31819 0.34375 0.125 0.223 -0.881 0.4173 -0.308658 -0.83147 0.46194 0.34375 0.1875 0.223 -0.881 0.4173 -0.212607 -0.83147 0.51328 0.3125 0.1875 0.223 -0.881 0.4173 -0.212607 -0.92388 0.31819 0.34375 0.125 0.223 -0.881 0.4173 -0.212607 -0.83147 0.51328 0.3125 0.1875 0.223 -0.881 0.4173 -0.146447 -0.92388 0.353553 0.3125 0.125 0.223 -0.881 0.4173 -0.544895 0.19509 0.815493 0.34375 0.5625 0.4513 0.289 0.8443 -0.51328 0.382683 0.768178 0.34375 0.625 0.4513 0.289 0.8443 -0.353553 0.382683 0.853553 0.3125 0.625 0.4513 0.289 0.8443 -0.544895 0.19509 0.815493 0.34375 0.5625 0.4513 0.289 0.8443 -0.353553 0.382683 0.853553 0.3125 0.625 0.4513 0.289 0.8443 -0.37533 0.19509 0.906127 0.3125 0.5625 0.4513 0.289 0.8443 -0.108386 -0.980785 0.162212 0.34375 0.0625 0.1374 -0.9565 0.2571 -0.212607 -0.92388 0.31819 0.34375 0.125 0.1374 -0.9565 0.2571 -0.146447 -0.92388 0.353553 0.3125 0.125 0.1374 -0.9565 0.2571 -0.108386 -0.980785 0.162212 0.34375 0.0625 0.1374 -0.9565 0.2571 -0.146447 -0.92388 0.353553 0.3125 0.125 0.1374 -0.9565 0.2571 -0.074658 -0.980785 0.18024 0.3125 0.0625 0.1374 -0.9565 0.2571 -0.55557 0 0.831469 0.34375 0.5 0.4691 0.0975 0.8777 -0.544895 0.19509 0.815493 0.34375 0.5625 0.4691 0.0975 0.8777 -0.37533 0.19509 0.906127 0.3125 0.5625 0.4691 0.0975 0.8777 -0.55557 0 0.831469 0.34375 0.5 0.4691 0.0975 0.8777 -0.37533 0.19509 0.906127 0.3125 0.5625 0.4691 0.0975 0.8777 -0.382683 0 0.923879 0.3125 0.5 0.4691 0.0975 0.8777 -0.108386 0.980785 0.162212 0.34375 0.9375 0.0464 0.9951 0.0869 -0 1 0 0.328125 1 0.0464 0.9951 0.0869 -0.074658 0.980785 0.18024 0.3125 0.9375 0.0464 0.9951 0.0869 -0 -1 0 0.328125 0 0.0464 -0.9951 0.0869 -0.108386 -0.980785 0.162212 0.34375 0.0625 0.0464 -0.9951 0.0869 -0.074658 -0.980785 0.18024 0.3125 0.0625 0.0464 -0.9951 0.0869 -0.544895 -0.19509 0.815493 0.34375 0.4375 0.4691 -0.0975 0.8777 -0.55557 0 0.831469 0.34375 0.5 0.4691 -0.0975 0.8777 -0.382683 0 0.923879 0.3125 0.5 0.4691 -0.0975 0.8777 -0.544895 -0.19509 0.815493 0.34375 0.4375 0.4691 -0.0975 0.8777 -0.382683 0 0.923879 0.3125 0.5 0.4691 -0.0975 0.8777 -0.37533 -0.19509 0.906127 0.3125 0.4375 0.4691 -0.0975 0.8777 -0.212607 0.92388 0.31819 0.34375 0.875 0.1374 0.9565 0.2571 -0.108386 0.980785 0.162212 0.34375 0.9375 0.1374 0.9565 0.2571 -0.074658 0.980785 0.18024 0.3125 0.9375 0.1374 0.9565 0.2571 -0.212607 0.92388 0.31819 0.34375 0.875 0.1374 0.9565 0.2571 -0.074658 0.980785 0.18024 0.3125 0.9375 0.1374 0.9565 0.2571 -0.146447 0.92388 0.353553 0.3125 0.875 0.1374 0.9565 0.2571 -0.51328 -0.382683 0.768178 0.34375 0.375 0.4513 -0.289 0.8443 -0.544895 -0.19509 0.815493 0.34375 0.4375 0.4513 -0.289 0.8443 -0.37533 -0.19509 0.906127 0.3125 0.4375 0.4513 -0.289 0.8443 -0.51328 -0.382683 0.768178 0.34375 0.375 0.4513 -0.289 0.8443 -0.37533 -0.19509 0.906127 0.3125 0.4375 0.4513 -0.289 0.8443 -0.353553 -0.382683 0.853553 0.3125 0.375 0.4513 -0.289 0.8443 -0.308658 0.83147 0.46194 0.34375 0.8125 0.223 0.881 0.4173 -0.212607 0.92388 0.31819 0.34375 0.875 0.223 0.881 0.4173 -0.146447 0.92388 0.353553 0.3125 0.875 0.223 0.881 0.4173 -0.308658 0.83147 0.46194 0.34375 0.8125 0.223 0.881 0.4173 -0.146447 0.92388 0.353553 0.3125 0.875 0.223 0.881 0.4173 -0.212607 0.83147 0.51328 0.3125 0.8125 0.223 0.881 0.4173 -0.074658 -0.980785 0.18024 0.3125 0.0625 0.0846 -0.9565 0.279 -0.146447 -0.92388 0.353553 0.3125 0.125 0.0846 -0.9565 0.279 -0.074658 -0.92388 0.37533 0.28125 0.125 0.0846 -0.9565 0.279 -0.074658 -0.980785 0.18024 0.3125 0.0625 0.0846 -0.9565 0.279 -0.074658 -0.92388 0.37533 0.28125 0.125 0.0846 -0.9565 0.279 -0.03806 -0.980785 0.191342 0.28125 0.0625 0.0846 -0.9565 0.279 -0.382683 0 0.923879 0.3125 0.5 0.2889 0.0975 0.9524 -0.37533 0.19509 0.906127 0.3125 0.5625 0.2889 0.0975 0.9524 -0.191342 0.19509 0.961939 0.28125 0.5625 0.2889 0.0975 0.9524 -0.382683 0 0.923879 0.3125 0.5 0.2889 0.0975 0.9524 -0.191342 0.19509 0.961939 0.28125 0.5625 0.2889 0.0975 0.9524 -0.19509 0 0.980785 0.28125 0.5 0.2889 0.0975 0.9524 -0.074658 0.980785 0.18024 0.3125 0.9375 0.0286 0.9951 0.0942 -0 1 0 0.296875 1 0.0286 0.9951 0.0942 -0.03806 0.980785 0.191342 0.28125 0.9375 0.0286 0.9951 0.0942 -0 -1 0 0.296875 0 0.0286 -0.9951 0.0942 -0.074658 -0.980785 0.18024 0.3125 0.0625 0.0286 -0.9951 0.0942 -0.03806 -0.980785 0.191342 0.28125 0.0625 0.0286 -0.9951 0.0942 -0.37533 -0.19509 0.906127 0.3125 0.4375 0.2889 -0.0975 0.9524 -0.382683 0 0.923879 0.3125 0.5 0.2889 -0.0975 0.9524 -0.19509 0 0.980785 0.28125 0.5 0.2889 -0.0975 0.9524 -0.37533 -0.19509 0.906127 0.3125 0.4375 0.2889 -0.0975 0.9524 -0.19509 0 0.980785 0.28125 0.5 0.2889 -0.0975 0.9524 -0.191342 -0.19509 0.961939 0.28125 0.4375 0.2889 -0.0975 0.9524 -0.146447 0.92388 0.353553 0.3125 0.875 0.0846 0.9565 0.279 -0.074658 0.980785 0.18024 0.3125 0.9375 0.0846 0.9565 0.279 -0.03806 0.980785 0.191342 0.28125 0.9375 0.0846 0.9565 0.279 -0.146447 0.92388 0.353553 0.3125 0.875 0.0846 0.9565 0.279 -0.03806 0.980785 0.191342 0.28125 0.9375 0.0846 0.9565 0.279 -0.074658 0.92388 0.37533 0.28125 0.875 0.0846 0.9565 0.279 -0.353553 -0.382683 0.853553 0.3125 0.375 0.2779 -0.289 0.9161 -0.37533 -0.19509 0.906127 0.3125 0.4375 0.2779 -0.289 0.9161 -0.191342 -0.19509 0.961939 0.28125 0.4375 0.2779 -0.289 0.9161 -0.353553 -0.382683 0.853553 0.3125 0.375 0.2779 -0.289 0.9161 -0.191342 -0.19509 0.961939 0.28125 0.4375 0.2779 -0.289 0.9161 -0.18024 -0.382683 0.906127 0.28125 0.375 0.2779 -0.289 0.9161 -0.212607 0.83147 0.51328 0.3125 0.8125 0.1374 0.881 0.4528 -0.146447 0.92388 0.353553 0.3125 0.875 0.1374 0.881 0.4528 -0.074658 0.92388 0.37533 0.28125 0.875 0.1374 0.881 0.4528 -0.212607 0.83147 0.51328 0.3125 0.8125 0.1374 0.881 0.4528 -0.074658 0.92388 0.37533 0.28125 0.875 0.1374 0.881 0.4528 -0.108386 0.83147 0.544895 0.28125 0.8125 0.1374 0.881 0.4528 -0.318189 -0.55557 0.768178 0.3125 0.3125 0.2563 -0.4696 0.8448 -0.353553 -0.382683 0.853553 0.3125 0.375 0.2563 -0.4696 0.8448 -0.18024 -0.382683 0.906127 0.28125 0.375 0.2563 -0.4696 0.8448 -0.318189 -0.55557 0.768178 0.3125 0.3125 0.2563 -0.4696 0.8448 -0.18024 -0.382683 0.906127 0.28125 0.375 0.2563 -0.4696 0.8448 -0.162212 -0.55557 0.815493 0.28125 0.3125 0.2563 -0.4696 0.8448 -0.270598 0.707107 0.653281 0.3125 0.75 0.1847 0.7715 0.6088 -0.212607 0.83147 0.51328 0.3125 0.8125 0.1847 0.7715 0.6088 -0.108386 0.83147 0.544895 0.28125 0.8125 0.1847 0.7715 0.6088 -0.270598 0.707107 0.653281 0.3125 0.75 0.1847 0.7715 0.6088 -0.108386 0.83147 0.544895 0.28125 0.8125 0.1847 0.7715 0.6088 -0.13795 0.707107 0.69352 0.28125 0.75 0.1847 0.7715 0.6088 -0.270598 -0.707107 0.653281 0.3125 0.25 0.2248 -0.6326 0.7412 -0.318189 -0.55557 0.768178 0.3125 0.3125 0.2248 -0.6326 0.7412 -0.162212 -0.55557 0.815493 0.28125 0.3125 0.2248 -0.6326 0.7412 -0.270598 -0.707107 0.653281 0.3125 0.25 0.2248 -0.6326 0.7412 -0.162212 -0.55557 0.815493 0.28125 0.3125 0.2248 -0.6326 0.7412 -0.13795 -0.707107 0.69352 0.28125 0.25 0.2248 -0.6326 0.7412 -0.318189 0.55557 0.768178 0.3125 0.6875 0.2248 0.6326 0.7412 -0.270598 0.707107 0.653281 0.3125 0.75 0.2248 0.6326 0.7412 -0.13795 0.707107 0.69352 0.28125 0.75 0.2248 0.6326 0.7412 -0.318189 0.55557 0.768178 0.3125 0.6875 0.2248 0.6326 0.7412 -0.13795 0.707107 0.69352 0.28125 0.75 0.2248 0.6326 0.7412 -0.162212 0.55557 0.815493 0.28125 0.6875 0.2248 0.6326 0.7412 -0.212607 -0.83147 0.51328 0.3125 0.1875 0.1847 -0.7715 0.6088 -0.270598 -0.707107 0.653281 0.3125 0.25 0.1847 -0.7715 0.6088 -0.13795 -0.707107 0.69352 0.28125 0.25 0.1847 -0.7715 0.6088 -0.212607 -0.83147 0.51328 0.3125 0.1875 0.1847 -0.7715 0.6088 -0.13795 -0.707107 0.69352 0.28125 0.25 0.1847 -0.7715 0.6088 -0.108386 -0.83147 0.544895 0.28125 0.1875 0.1847 -0.7715 0.6088 -0.353553 0.382683 0.853553 0.3125 0.625 0.2563 0.4696 0.8448 -0.318189 0.55557 0.768178 0.3125 0.6875 0.2563 0.4696 0.8448 -0.162212 0.55557 0.815493 0.28125 0.6875 0.2563 0.4696 0.8448 -0.353553 0.382683 0.853553 0.3125 0.625 0.2563 0.4696 0.8448 -0.162212 0.55557 0.815493 0.28125 0.6875 0.2563 0.4696 0.8448 -0.18024 0.382683 0.906127 0.28125 0.625 0.2563 0.4696 0.8448 -0.146447 -0.92388 0.353553 0.3125 0.125 0.1374 -0.881 0.4528 -0.212607 -0.83147 0.51328 0.3125 0.1875 0.1374 -0.881 0.4528 -0.108386 -0.83147 0.544895 0.28125 0.1875 0.1374 -0.881 0.4528 -0.146447 -0.92388 0.353553 0.3125 0.125 0.1374 -0.881 0.4528 -0.108386 -0.83147 0.544895 0.28125 0.1875 0.1374 -0.881 0.4528 -0.074658 -0.92388 0.37533 0.28125 0.125 0.1374 -0.881 0.4528 -0.37533 0.19509 0.906127 0.3125 0.5625 0.2779 0.289 0.9161 -0.353553 0.382683 0.853553 0.3125 0.625 0.2779 0.289 0.9161 -0.18024 0.382683 0.906127 0.28125 0.625 0.2779 0.289 0.9161 -0.37533 0.19509 0.906127 0.3125 0.5625 0.2779 0.289 0.9161 -0.18024 0.382683 0.906127 0.28125 0.625 0.2779 0.289 0.9161 -0.191342 0.19509 0.961939 0.28125 0.5625 0.2779 0.289 0.9161 -0.13795 0.707107 0.69352 0.28125 0.75 0.0624 0.7715 0.6332 -0.108386 0.83147 0.544895 0.28125 0.8125 0.0624 0.7715 0.6332 --0 0.83147 0.55557 0.25 0.8125 0.0624 0.7715 0.6332 -0.13795 0.707107 0.69352 0.28125 0.75 0.0624 0.7715 0.6332 --0 0.83147 0.55557 0.25 0.8125 0.0624 0.7715 0.6332 --0 0.707107 0.707107 0.25 0.75 0.0624 0.7715 0.6332 -0.13795 -0.707107 0.69352 0.28125 0.25 0.0759 -0.6326 0.7708 -0.162212 -0.55557 0.815493 0.28125 0.3125 0.0759 -0.6326 0.7708 --0 -0.55557 0.831469 0.25 0.3125 0.0759 -0.6326 0.7708 -0.13795 -0.707107 0.69352 0.28125 0.25 0.0759 -0.6326 0.7708 --0 -0.55557 0.831469 0.25 0.3125 0.0759 -0.6326 0.7708 --0 -0.707107 0.707107 0.25 0.25 0.0759 -0.6326 0.7708 -0.162212 0.55557 0.815493 0.28125 0.6875 0.0759 0.6326 0.7708 -0.13795 0.707107 0.69352 0.28125 0.75 0.0759 0.6326 0.7708 --0 0.707107 0.707107 0.25 0.75 0.0759 0.6326 0.7708 -0.162212 0.55557 0.815493 0.28125 0.6875 0.0759 0.6326 0.7708 --0 0.707107 0.707107 0.25 0.75 0.0759 0.6326 0.7708 --0 0.55557 0.831469 0.25 0.6875 0.0759 0.6326 0.7708 -0.108386 -0.83147 0.544895 0.28125 0.1875 0.0624 -0.7715 0.6332 -0.13795 -0.707107 0.69352 0.28125 0.25 0.0624 -0.7715 0.6332 --0 -0.707107 0.707107 0.25 0.25 0.0624 -0.7715 0.6332 -0.108386 -0.83147 0.544895 0.28125 0.1875 0.0624 -0.7715 0.6332 --0 -0.707107 0.707107 0.25 0.25 0.0624 -0.7715 0.6332 --0 -0.83147 0.55557 0.25 0.1875 0.0624 -0.7715 0.6332 -0.18024 0.382683 0.906127 0.28125 0.625 0.0865 0.4696 0.8786 -0.162212 0.55557 0.815493 0.28125 0.6875 0.0865 0.4696 0.8786 --0 0.55557 0.831469 0.25 0.6875 0.0865 0.4696 0.8786 -0.18024 0.382683 0.906127 0.28125 0.625 0.0865 0.4696 0.8786 --0 0.55557 0.831469 0.25 0.6875 0.0865 0.4696 0.8786 -0 0.382683 0.923879 0.25 0.625 0.0865 0.4696 0.8786 -0.074658 -0.92388 0.37533 0.28125 0.125 0.0464 -0.881 0.4709 -0.108386 -0.83147 0.544895 0.28125 0.1875 0.0464 -0.881 0.4709 --0 -0.83147 0.55557 0.25 0.1875 0.0464 -0.881 0.4709 -0.074658 -0.92388 0.37533 0.28125 0.125 0.0464 -0.881 0.4709 --0 -0.83147 0.55557 0.25 0.1875 0.0464 -0.881 0.4709 --0 -0.92388 0.382683 0.25 0.125 0.0464 -0.881 0.4709 -0.191342 0.19509 0.961939 0.28125 0.5625 0.0938 0.289 0.9527 -0.18024 0.382683 0.906127 0.28125 0.625 0.0938 0.289 0.9527 -0 0.382683 0.923879 0.25 0.625 0.0938 0.289 0.9527 -0.191342 0.19509 0.961939 0.28125 0.5625 0.0938 0.289 0.9527 -0 0.382683 0.923879 0.25 0.625 0.0938 0.289 0.9527 --0 0.19509 0.980785 0.25 0.5625 0.0938 0.289 0.9527 -0.03806 -0.980785 0.191342 0.28125 0.0625 0.0286 -0.9565 0.2902 -0.074658 -0.92388 0.37533 0.28125 0.125 0.0286 -0.9565 0.2902 --0 -0.92388 0.382683 0.25 0.125 0.0286 -0.9565 0.2902 -0.03806 -0.980785 0.191342 0.28125 0.0625 0.0286 -0.9565 0.2902 --0 -0.92388 0.382683 0.25 0.125 0.0286 -0.9565 0.2902 --0 -0.980785 0.19509 0.25 0.0625 0.0286 -0.9565 0.2902 -0.19509 0 0.980785 0.28125 0.5 0.0975 0.0975 0.9904 -0.191342 0.19509 0.961939 0.28125 0.5625 0.0975 0.0975 0.9904 --0 0.19509 0.980785 0.25 0.5625 0.0975 0.0975 0.9904 -0.19509 0 0.980785 0.28125 0.5 0.0975 0.0975 0.9904 --0 0.19509 0.980785 0.25 0.5625 0.0975 0.0975 0.9904 --0 0 0.999999 0.25 0.5 0.0975 0.0975 0.9904 -0.03806 0.980785 0.191342 0.28125 0.9375 0.0097 0.9951 0.098 -0 1 0 0.265625 1 0.0097 0.9951 0.098 --0 0.980785 0.19509 0.25 0.9375 0.0097 0.9951 0.098 -0 -1 0 0.265625 0 0.0097 -0.9951 0.098 -0.03806 -0.980785 0.191342 0.28125 0.0625 0.0097 -0.9951 0.098 --0 -0.980785 0.19509 0.25 0.0625 0.0097 -0.9951 0.098 -0.191342 -0.19509 0.961939 0.28125 0.4375 0.0975 -0.0975 0.9904 -0.19509 0 0.980785 0.28125 0.5 0.0975 -0.0975 0.9904 --0 0 0.999999 0.25 0.5 0.0975 -0.0975 0.9904 -0.191342 -0.19509 0.961939 0.28125 0.4375 0.0975 -0.0975 0.9904 --0 0 0.999999 0.25 0.5 0.0975 -0.0975 0.9904 --0 -0.19509 0.980785 0.25 0.4375 0.0975 -0.0975 0.9904 -0.074658 0.92388 0.37533 0.28125 0.875 0.0286 0.9565 0.2902 -0.03806 0.980785 0.191342 0.28125 0.9375 0.0286 0.9565 0.2902 --0 0.980785 0.19509 0.25 0.9375 0.0286 0.9565 0.2902 -0.074658 0.92388 0.37533 0.28125 0.875 0.0286 0.9565 0.2902 --0 0.980785 0.19509 0.25 0.9375 0.0286 0.9565 0.2902 --0 0.92388 0.382683 0.25 0.875 0.0286 0.9565 0.2902 -0.18024 -0.382683 0.906127 0.28125 0.375 0.0938 -0.289 0.9527 -0.191342 -0.19509 0.961939 0.28125 0.4375 0.0938 -0.289 0.9527 --0 -0.19509 0.980785 0.25 0.4375 0.0938 -0.289 0.9527 -0.18024 -0.382683 0.906127 0.28125 0.375 0.0938 -0.289 0.9527 --0 -0.19509 0.980785 0.25 0.4375 0.0938 -0.289 0.9527 -0 -0.382683 0.923879 0.25 0.375 0.0938 -0.289 0.9527 -0.108386 0.83147 0.544895 0.28125 0.8125 0.0464 0.881 0.4709 -0.074658 0.92388 0.37533 0.28125 0.875 0.0464 0.881 0.4709 --0 0.92388 0.382683 0.25 0.875 0.0464 0.881 0.4709 -0.108386 0.83147 0.544895 0.28125 0.8125 0.0464 0.881 0.4709 --0 0.92388 0.382683 0.25 0.875 0.0464 0.881 0.4709 --0 0.83147 0.55557 0.25 0.8125 0.0464 0.881 0.4709 -0.162212 -0.55557 0.815493 0.28125 0.3125 0.0865 -0.4696 0.8786 -0.18024 -0.382683 0.906127 0.28125 0.375 0.0865 -0.4696 0.8786 -0 -0.382683 0.923879 0.25 0.375 0.0865 -0.4696 0.8786 -0.162212 -0.55557 0.815493 0.28125 0.3125 0.0865 -0.4696 0.8786 -0 -0.382683 0.923879 0.25 0.375 0.0865 -0.4696 0.8786 --0 -0.55557 0.831469 0.25 0.3125 0.0865 -0.4696 0.8786 --0 0 0.999999 0.25 0.5 -0.0976 0.0975 0.9904 --0 0.19509 0.980785 0.25 0.5625 -0.0976 0.0975 0.9904 --0.191342 0.19509 0.961939 0.21875 0.5625 -0.0976 0.0975 0.9904 --0 0 0.999999 0.25 0.5 -0.0976 0.0975 0.9904 --0.191342 0.19509 0.961939 0.21875 0.5625 -0.0976 0.0975 0.9904 --0.195091 0 0.980785 0.21875 0.5 -0.0976 0.0975 0.9904 --0 0.980785 0.19509 0.25 0.9375 -0.0097 0.9951 0.098 -0 1 0 0.234375 1 -0.0097 0.9951 0.098 --0.03806 0.980785 0.191342 0.21875 0.9375 -0.0097 0.9951 0.098 -0 -1 0 0.234375 0 -0.0097 -0.9951 0.098 --0 -0.980785 0.19509 0.25 0.0625 -0.0097 -0.9951 0.098 --0.03806 -0.980785 0.191342 0.21875 0.0625 -0.0097 -0.9951 0.098 --0 -0.19509 0.980785 0.25 0.4375 -0.0976 -0.0975 0.9904 --0 0 0.999999 0.25 0.5 -0.0976 -0.0975 0.9904 --0.195091 0 0.980785 0.21875 0.5 -0.0976 -0.0975 0.9904 --0 -0.19509 0.980785 0.25 0.4375 -0.0976 -0.0975 0.9904 --0.195091 0 0.980785 0.21875 0.5 -0.0976 -0.0975 0.9904 --0.191342 -0.19509 0.961939 0.21875 0.4375 -0.0976 -0.0975 0.9904 --0 0.92388 0.382683 0.25 0.875 -0.0286 0.9565 0.2902 --0 0.980785 0.19509 0.25 0.9375 -0.0286 0.9565 0.2902 --0.03806 0.980785 0.191342 0.21875 0.9375 -0.0286 0.9565 0.2902 --0 0.92388 0.382683 0.25 0.875 -0.0286 0.9565 0.2902 --0.03806 0.980785 0.191342 0.21875 0.9375 -0.0286 0.9565 0.2902 --0.074658 0.92388 0.37533 0.21875 0.875 -0.0286 0.9565 0.2902 -0 -0.382683 0.923879 0.25 0.375 -0.0938 -0.289 0.9527 --0 -0.19509 0.980785 0.25 0.4375 -0.0938 -0.289 0.9527 --0.191342 -0.19509 0.961939 0.21875 0.4375 -0.0938 -0.289 0.9527 -0 -0.382683 0.923879 0.25 0.375 -0.0938 -0.289 0.9527 --0.191342 -0.19509 0.961939 0.21875 0.4375 -0.0938 -0.289 0.9527 --0.18024 -0.382683 0.906127 0.21875 0.375 -0.0938 -0.289 0.9527 --0 0.83147 0.55557 0.25 0.8125 -0.0464 0.881 0.4709 --0 0.92388 0.382683 0.25 0.875 -0.0464 0.881 0.4709 --0.074658 0.92388 0.37533 0.21875 0.875 -0.0464 0.881 0.4709 --0 0.83147 0.55557 0.25 0.8125 -0.0464 0.881 0.4709 --0.074658 0.92388 0.37533 0.21875 0.875 -0.0464 0.881 0.4709 --0.108386 0.83147 0.544895 0.21875 0.8125 -0.0464 0.881 0.4709 --0 -0.55557 0.831469 0.25 0.3125 -0.0865 -0.4696 0.8786 -0 -0.382683 0.923879 0.25 0.375 -0.0865 -0.4696 0.8786 --0.18024 -0.382683 0.906127 0.21875 0.375 -0.0865 -0.4696 0.8786 --0 -0.55557 0.831469 0.25 0.3125 -0.0865 -0.4696 0.8786 --0.18024 -0.382683 0.906127 0.21875 0.375 -0.0865 -0.4696 0.8786 --0.162212 -0.55557 0.815493 0.21875 0.3125 -0.0865 -0.4696 0.8786 --0 0.707107 0.707107 0.25 0.75 -0.0624 0.7715 0.6332 --0 0.83147 0.55557 0.25 0.8125 -0.0624 0.7715 0.6332 --0.108386 0.83147 0.544895 0.21875 0.8125 -0.0624 0.7715 0.6332 --0 0.707107 0.707107 0.25 0.75 -0.0624 0.7715 0.6332 --0.108386 0.83147 0.544895 0.21875 0.8125 -0.0624 0.7715 0.6332 --0.13795 0.707107 0.69352 0.21875 0.75 -0.0624 0.7715 0.6332 --0 -0.707107 0.707107 0.25 0.25 -0.0759 -0.6326 0.7708 --0 -0.55557 0.831469 0.25 0.3125 -0.0759 -0.6326 0.7708 --0.162212 -0.55557 0.815493 0.21875 0.3125 -0.0759 -0.6326 0.7708 --0 -0.707107 0.707107 0.25 0.25 -0.0759 -0.6326 0.7708 --0.162212 -0.55557 0.815493 0.21875 0.3125 -0.0759 -0.6326 0.7708 --0.13795 -0.707107 0.69352 0.21875 0.25 -0.0759 -0.6326 0.7708 --0 0.55557 0.831469 0.25 0.6875 -0.0759 0.6326 0.7708 --0 0.707107 0.707107 0.25 0.75 -0.0759 0.6326 0.7708 --0.13795 0.707107 0.69352 0.21875 0.75 -0.0759 0.6326 0.7708 --0 0.55557 0.831469 0.25 0.6875 -0.0759 0.6326 0.7708 --0.13795 0.707107 0.69352 0.21875 0.75 -0.0759 0.6326 0.7708 --0.162212 0.55557 0.815493 0.21875 0.6875 -0.0759 0.6326 0.7708 --0 -0.83147 0.55557 0.25 0.1875 -0.0624 -0.7715 0.6332 --0 -0.707107 0.707107 0.25 0.25 -0.0624 -0.7715 0.6332 --0.13795 -0.707107 0.69352 0.21875 0.25 -0.0624 -0.7715 0.6332 --0 -0.83147 0.55557 0.25 0.1875 -0.0624 -0.7715 0.6332 --0.13795 -0.707107 0.69352 0.21875 0.25 -0.0624 -0.7715 0.6332 --0.108386 -0.83147 0.544895 0.21875 0.1875 -0.0624 -0.7715 0.6332 -0 0.382683 0.923879 0.25 0.625 -0.0865 0.4696 0.8786 --0 0.55557 0.831469 0.25 0.6875 -0.0865 0.4696 0.8786 --0.162212 0.55557 0.815493 0.21875 0.6875 -0.0865 0.4696 0.8786 -0 0.382683 0.923879 0.25 0.625 -0.0865 0.4696 0.8786 --0.162212 0.55557 0.815493 0.21875 0.6875 -0.0865 0.4696 0.8786 --0.18024 0.382683 0.906127 0.21875 0.625 -0.0865 0.4696 0.8786 --0 -0.92388 0.382683 0.25 0.125 -0.0464 -0.881 0.4709 --0 -0.83147 0.55557 0.25 0.1875 -0.0464 -0.881 0.4709 --0.108386 -0.83147 0.544895 0.21875 0.1875 -0.0464 -0.881 0.4709 --0 -0.92388 0.382683 0.25 0.125 -0.0464 -0.881 0.4709 --0.108386 -0.83147 0.544895 0.21875 0.1875 -0.0464 -0.881 0.4709 --0.074658 -0.92388 0.37533 0.21875 0.125 -0.0464 -0.881 0.4709 --0 0.19509 0.980785 0.25 0.5625 -0.0938 0.289 0.9527 -0 0.382683 0.923879 0.25 0.625 -0.0938 0.289 0.9527 --0.18024 0.382683 0.906127 0.21875 0.625 -0.0938 0.289 0.9527 --0 0.19509 0.980785 0.25 0.5625 -0.0938 0.289 0.9527 --0.18024 0.382683 0.906127 0.21875 0.625 -0.0938 0.289 0.9527 --0.191342 0.19509 0.961939 0.21875 0.5625 -0.0938 0.289 0.9527 --0 -0.980785 0.19509 0.25 0.0625 -0.0286 -0.9565 0.2902 --0 -0.92388 0.382683 0.25 0.125 -0.0286 -0.9565 0.2902 --0.074658 -0.92388 0.37533 0.21875 0.125 -0.0286 -0.9565 0.2902 --0 -0.980785 0.19509 0.25 0.0625 -0.0286 -0.9565 0.2902 --0.074658 -0.92388 0.37533 0.21875 0.125 -0.0286 -0.9565 0.2902 --0.03806 -0.980785 0.191342 0.21875 0.0625 -0.0286 -0.9565 0.2902 --0.13795 -0.707107 0.69352 0.21875 0.25 -0.2248 -0.6326 0.7412 --0.162212 -0.55557 0.815493 0.21875 0.3125 -0.2248 -0.6326 0.7412 --0.31819 -0.55557 0.768177 0.1875 0.3125 -0.2248 -0.6326 0.7412 --0.13795 -0.707107 0.69352 0.21875 0.25 -0.2248 -0.6326 0.7412 --0.31819 -0.55557 0.768177 0.1875 0.3125 -0.2248 -0.6326 0.7412 --0.270598 -0.707107 0.653281 0.1875 0.25 -0.2248 -0.6326 0.7412 --0.162212 0.55557 0.815493 0.21875 0.6875 -0.2248 0.6326 0.7412 --0.13795 0.707107 0.69352 0.21875 0.75 -0.2248 0.6326 0.7412 --0.270598 0.707107 0.653281 0.1875 0.75 -0.2248 0.6326 0.7412 --0.162212 0.55557 0.815493 0.21875 0.6875 -0.2248 0.6326 0.7412 --0.270598 0.707107 0.653281 0.1875 0.75 -0.2248 0.6326 0.7412 --0.31819 0.55557 0.768177 0.1875 0.6875 -0.2248 0.6326 0.7412 --0.108386 -0.83147 0.544895 0.21875 0.1875 -0.1847 -0.7715 0.6088 --0.13795 -0.707107 0.69352 0.21875 0.25 -0.1847 -0.7715 0.6088 --0.270598 -0.707107 0.653281 0.1875 0.25 -0.1847 -0.7715 0.6088 --0.108386 -0.83147 0.544895 0.21875 0.1875 -0.1847 -0.7715 0.6088 --0.270598 -0.707107 0.653281 0.1875 0.25 -0.1847 -0.7715 0.6088 --0.212608 -0.83147 0.51328 0.1875 0.1875 -0.1847 -0.7715 0.6088 --0.18024 0.382683 0.906127 0.21875 0.625 -0.2563 0.4696 0.8448 --0.162212 0.55557 0.815493 0.21875 0.6875 -0.2563 0.4696 0.8448 --0.31819 0.55557 0.768177 0.1875 0.6875 -0.2563 0.4696 0.8448 --0.18024 0.382683 0.906127 0.21875 0.625 -0.2563 0.4696 0.8448 --0.31819 0.55557 0.768177 0.1875 0.6875 -0.2563 0.4696 0.8448 --0.353553 0.382683 0.853553 0.1875 0.625 -0.2563 0.4696 0.8448 --0.074658 -0.92388 0.37533 0.21875 0.125 -0.1374 -0.881 0.4528 --0.108386 -0.83147 0.544895 0.21875 0.1875 -0.1374 -0.881 0.4528 --0.212608 -0.83147 0.51328 0.1875 0.1875 -0.1374 -0.881 0.4528 --0.074658 -0.92388 0.37533 0.21875 0.125 -0.1374 -0.881 0.4528 --0.212608 -0.83147 0.51328 0.1875 0.1875 -0.1374 -0.881 0.4528 --0.146447 -0.92388 0.353553 0.1875 0.125 -0.1374 -0.881 0.4528 --0.191342 0.19509 0.961939 0.21875 0.5625 -0.2779 0.289 0.9161 --0.18024 0.382683 0.906127 0.21875 0.625 -0.2779 0.289 0.9161 --0.353553 0.382683 0.853553 0.1875 0.625 -0.2779 0.289 0.9161 --0.191342 0.19509 0.961939 0.21875 0.5625 -0.2779 0.289 0.9161 --0.353553 0.382683 0.853553 0.1875 0.625 -0.2779 0.289 0.9161 --0.37533 0.19509 0.906127 0.1875 0.5625 -0.2779 0.289 0.9161 --0.03806 -0.980785 0.191342 0.21875 0.0625 -0.0846 -0.9565 0.279 --0.074658 -0.92388 0.37533 0.21875 0.125 -0.0846 -0.9565 0.279 --0.146447 -0.92388 0.353553 0.1875 0.125 -0.0846 -0.9565 0.279 --0.03806 -0.980785 0.191342 0.21875 0.0625 -0.0846 -0.9565 0.279 --0.146447 -0.92388 0.353553 0.1875 0.125 -0.0846 -0.9565 0.279 --0.074658 -0.980785 0.18024 0.1875 0.0625 -0.0846 -0.9565 0.279 --0.195091 0 0.980785 0.21875 0.5 -0.2889 0.0975 0.9524 --0.191342 0.19509 0.961939 0.21875 0.5625 -0.2889 0.0975 0.9524 --0.37533 0.19509 0.906127 0.1875 0.5625 -0.2889 0.0975 0.9524 --0.195091 0 0.980785 0.21875 0.5 -0.2889 0.0975 0.9524 --0.37533 0.19509 0.906127 0.1875 0.5625 -0.2889 0.0975 0.9524 --0.382683 0 0.923879 0.1875 0.5 -0.2889 0.0975 0.9524 --0.03806 0.980785 0.191342 0.21875 0.9375 -0.0286 0.9951 0.0942 -0 1 0 0.203125 1 -0.0286 0.9951 0.0942 --0.074658 0.980785 0.18024 0.1875 0.9375 -0.0286 0.9951 0.0942 -0 -1 0 0.203125 0 -0.0286 -0.9951 0.0942 --0.03806 -0.980785 0.191342 0.21875 0.0625 -0.0286 -0.9951 0.0942 --0.074658 -0.980785 0.18024 0.1875 0.0625 -0.0286 -0.9951 0.0942 --0.191342 -0.19509 0.961939 0.21875 0.4375 -0.2889 -0.0975 0.9524 --0.195091 0 0.980785 0.21875 0.5 -0.2889 -0.0975 0.9524 --0.382683 0 0.923879 0.1875 0.5 -0.2889 -0.0975 0.9524 --0.191342 -0.19509 0.961939 0.21875 0.4375 -0.2889 -0.0975 0.9524 --0.382683 0 0.923879 0.1875 0.5 -0.2889 -0.0975 0.9524 --0.37533 -0.19509 0.906127 0.1875 0.4375 -0.2889 -0.0975 0.9524 --0.074658 0.92388 0.37533 0.21875 0.875 -0.0846 0.9565 0.279 --0.03806 0.980785 0.191342 0.21875 0.9375 -0.0846 0.9565 0.279 --0.074658 0.980785 0.18024 0.1875 0.9375 -0.0846 0.9565 0.279 --0.074658 0.92388 0.37533 0.21875 0.875 -0.0846 0.9565 0.279 --0.074658 0.980785 0.18024 0.1875 0.9375 -0.0846 0.9565 0.279 --0.146447 0.92388 0.353553 0.1875 0.875 -0.0846 0.9565 0.279 --0.18024 -0.382683 0.906127 0.21875 0.375 -0.2779 -0.289 0.9161 --0.191342 -0.19509 0.961939 0.21875 0.4375 -0.2779 -0.289 0.9161 --0.37533 -0.19509 0.906127 0.1875 0.4375 -0.2779 -0.289 0.9161 --0.18024 -0.382683 0.906127 0.21875 0.375 -0.2779 -0.289 0.9161 --0.37533 -0.19509 0.906127 0.1875 0.4375 -0.2779 -0.289 0.9161 --0.353553 -0.382683 0.853553 0.1875 0.375 -0.2779 -0.289 0.9161 --0.108386 0.83147 0.544895 0.21875 0.8125 -0.1374 0.881 0.4528 --0.074658 0.92388 0.37533 0.21875 0.875 -0.1374 0.881 0.4528 --0.146447 0.92388 0.353553 0.1875 0.875 -0.1374 0.881 0.4528 --0.108386 0.83147 0.544895 0.21875 0.8125 -0.1374 0.881 0.4528 --0.146447 0.92388 0.353553 0.1875 0.875 -0.1374 0.881 0.4528 --0.212608 0.83147 0.51328 0.1875 0.8125 -0.1374 0.881 0.4528 --0.162212 -0.55557 0.815493 0.21875 0.3125 -0.2563 -0.4696 0.8448 --0.18024 -0.382683 0.906127 0.21875 0.375 -0.2563 -0.4696 0.8448 --0.353553 -0.382683 0.853553 0.1875 0.375 -0.2563 -0.4696 0.8448 --0.162212 -0.55557 0.815493 0.21875 0.3125 -0.2563 -0.4696 0.8448 --0.353553 -0.382683 0.853553 0.1875 0.375 -0.2563 -0.4696 0.8448 --0.31819 -0.55557 0.768177 0.1875 0.3125 -0.2563 -0.4696 0.8448 --0.13795 0.707107 0.69352 0.21875 0.75 -0.1847 0.7715 0.6088 --0.108386 0.83147 0.544895 0.21875 0.8125 -0.1847 0.7715 0.6088 --0.212608 0.83147 0.51328 0.1875 0.8125 -0.1847 0.7715 0.6088 --0.13795 0.707107 0.69352 0.21875 0.75 -0.1847 0.7715 0.6088 --0.212608 0.83147 0.51328 0.1875 0.8125 -0.1847 0.7715 0.6088 --0.270598 0.707107 0.653281 0.1875 0.75 -0.1847 0.7715 0.6088 -0 -1 0 0.171875 0 -0.0464 -0.9951 0.0869 --0.074658 -0.980785 0.18024 0.1875 0.0625 -0.0464 -0.9951 0.0869 --0.108386 -0.980785 0.162212 0.15625 0.0625 -0.0464 -0.9951 0.0869 --0.37533 -0.19509 0.906127 0.1875 0.4375 -0.4691 -0.0975 0.8777 --0.382683 0 0.923879 0.1875 0.5 -0.4691 -0.0975 0.8777 --0.55557 0 0.831469 0.15625 0.5 -0.4691 -0.0975 0.8777 --0.37533 -0.19509 0.906127 0.1875 0.4375 -0.4691 -0.0975 0.8777 --0.55557 0 0.831469 0.15625 0.5 -0.4691 -0.0975 0.8777 --0.544895 -0.19509 0.815493 0.15625 0.4375 -0.4691 -0.0975 0.8777 --0.146447 0.92388 0.353553 0.1875 0.875 -0.1374 0.9565 0.2571 --0.074658 0.980785 0.18024 0.1875 0.9375 -0.1374 0.9565 0.2571 --0.108386 0.980785 0.162212 0.15625 0.9375 -0.1374 0.9565 0.2571 --0.146447 0.92388 0.353553 0.1875 0.875 -0.1374 0.9565 0.2571 --0.108386 0.980785 0.162212 0.15625 0.9375 -0.1374 0.9565 0.2571 --0.212608 0.92388 0.31819 0.15625 0.875 -0.1374 0.9565 0.2571 --0.353553 -0.382683 0.853553 0.1875 0.375 -0.4513 -0.289 0.8443 --0.37533 -0.19509 0.906127 0.1875 0.4375 -0.4513 -0.289 0.8443 --0.544895 -0.19509 0.815493 0.15625 0.4375 -0.4513 -0.289 0.8443 --0.353553 -0.382683 0.853553 0.1875 0.375 -0.4513 -0.289 0.8443 --0.544895 -0.19509 0.815493 0.15625 0.4375 -0.4513 -0.289 0.8443 --0.51328 -0.382683 0.768178 0.15625 0.375 -0.4513 -0.289 0.8443 --0.212608 0.83147 0.51328 0.1875 0.8125 -0.223 0.881 0.4173 --0.146447 0.92388 0.353553 0.1875 0.875 -0.223 0.881 0.4173 --0.212608 0.92388 0.31819 0.15625 0.875 -0.223 0.881 0.4173 --0.212608 0.83147 0.51328 0.1875 0.8125 -0.223 0.881 0.4173 --0.212608 0.92388 0.31819 0.15625 0.875 -0.223 0.881 0.4173 --0.308658 0.83147 0.461939 0.15625 0.8125 -0.223 0.881 0.4173 --0.31819 -0.55557 0.768177 0.1875 0.3125 -0.4162 -0.4696 0.7786 --0.353553 -0.382683 0.853553 0.1875 0.375 -0.4162 -0.4696 0.7786 --0.51328 -0.382683 0.768178 0.15625 0.375 -0.4162 -0.4696 0.7786 --0.31819 -0.55557 0.768177 0.1875 0.3125 -0.4162 -0.4696 0.7786 --0.51328 -0.382683 0.768178 0.15625 0.375 -0.4162 -0.4696 0.7786 --0.46194 -0.55557 0.691341 0.15625 0.3125 -0.4162 -0.4696 0.7786 --0.270598 0.707107 0.653281 0.1875 0.75 -0.2999 0.7715 0.5611 --0.212608 0.83147 0.51328 0.1875 0.8125 -0.2999 0.7715 0.5611 --0.308658 0.83147 0.461939 0.15625 0.8125 -0.2999 0.7715 0.5611 --0.270598 0.707107 0.653281 0.1875 0.75 -0.2999 0.7715 0.5611 --0.308658 0.83147 0.461939 0.15625 0.8125 -0.2999 0.7715 0.5611 --0.392847 0.707107 0.587938 0.15625 0.75 -0.2999 0.7715 0.5611 --0.270598 -0.707107 0.653281 0.1875 0.25 -0.3651 -0.6326 0.6831 --0.31819 -0.55557 0.768177 0.1875 0.3125 -0.3651 -0.6326 0.6831 --0.46194 -0.55557 0.691341 0.15625 0.3125 -0.3651 -0.6326 0.6831 --0.270598 -0.707107 0.653281 0.1875 0.25 -0.3651 -0.6326 0.6831 --0.46194 -0.55557 0.691341 0.15625 0.3125 -0.3651 -0.6326 0.6831 --0.392847 -0.707107 0.587938 0.15625 0.25 -0.3651 -0.6326 0.6831 --0.31819 0.55557 0.768177 0.1875 0.6875 -0.3651 0.6326 0.6831 --0.270598 0.707107 0.653281 0.1875 0.75 -0.3651 0.6326 0.6831 --0.392847 0.707107 0.587938 0.15625 0.75 -0.3651 0.6326 0.6831 --0.31819 0.55557 0.768177 0.1875 0.6875 -0.3651 0.6326 0.6831 --0.392847 0.707107 0.587938 0.15625 0.75 -0.3651 0.6326 0.6831 --0.46194 0.55557 0.691341 0.15625 0.6875 -0.3651 0.6326 0.6831 --0.212608 -0.83147 0.51328 0.1875 0.1875 -0.2999 -0.7715 0.5611 --0.270598 -0.707107 0.653281 0.1875 0.25 -0.2999 -0.7715 0.5611 --0.392847 -0.707107 0.587938 0.15625 0.25 -0.2999 -0.7715 0.5611 --0.212608 -0.83147 0.51328 0.1875 0.1875 -0.2999 -0.7715 0.5611 --0.392847 -0.707107 0.587938 0.15625 0.25 -0.2999 -0.7715 0.5611 --0.308658 -0.83147 0.461939 0.15625 0.1875 -0.2999 -0.7715 0.5611 --0.353553 0.382683 0.853553 0.1875 0.625 -0.4162 0.4696 0.7786 --0.31819 0.55557 0.768177 0.1875 0.6875 -0.4162 0.4696 0.7786 --0.46194 0.55557 0.691341 0.15625 0.6875 -0.4162 0.4696 0.7786 --0.353553 0.382683 0.853553 0.1875 0.625 -0.4162 0.4696 0.7786 --0.46194 0.55557 0.691341 0.15625 0.6875 -0.4162 0.4696 0.7786 --0.51328 0.382683 0.768178 0.15625 0.625 -0.4162 0.4696 0.7786 --0.146447 -0.92388 0.353553 0.1875 0.125 -0.223 -0.881 0.4173 --0.212608 -0.83147 0.51328 0.1875 0.1875 -0.223 -0.881 0.4173 --0.308658 -0.83147 0.461939 0.15625 0.1875 -0.223 -0.881 0.4173 --0.146447 -0.92388 0.353553 0.1875 0.125 -0.223 -0.881 0.4173 --0.308658 -0.83147 0.461939 0.15625 0.1875 -0.223 -0.881 0.4173 --0.212608 -0.92388 0.31819 0.15625 0.125 -0.223 -0.881 0.4173 --0.37533 0.19509 0.906127 0.1875 0.5625 -0.4513 0.289 0.8443 --0.353553 0.382683 0.853553 0.1875 0.625 -0.4513 0.289 0.8443 --0.51328 0.382683 0.768178 0.15625 0.625 -0.4513 0.289 0.8443 --0.37533 0.19509 0.906127 0.1875 0.5625 -0.4513 0.289 0.8443 --0.51328 0.382683 0.768178 0.15625 0.625 -0.4513 0.289 0.8443 --0.544895 0.19509 0.815493 0.15625 0.5625 -0.4513 0.289 0.8443 --0.074658 -0.980785 0.18024 0.1875 0.0625 -0.1374 -0.9565 0.2571 --0.146447 -0.92388 0.353553 0.1875 0.125 -0.1374 -0.9565 0.2571 --0.212608 -0.92388 0.31819 0.15625 0.125 -0.1374 -0.9565 0.2571 --0.074658 -0.980785 0.18024 0.1875 0.0625 -0.1374 -0.9565 0.2571 --0.212608 -0.92388 0.31819 0.15625 0.125 -0.1374 -0.9565 0.2571 --0.108386 -0.980785 0.162212 0.15625 0.0625 -0.1374 -0.9565 0.2571 --0.382683 0 0.923879 0.1875 0.5 -0.4691 0.0975 0.8777 --0.37533 0.19509 0.906127 0.1875 0.5625 -0.4691 0.0975 0.8777 --0.544895 0.19509 0.815493 0.15625 0.5625 -0.4691 0.0975 0.8777 --0.382683 0 0.923879 0.1875 0.5 -0.4691 0.0975 0.8777 --0.544895 0.19509 0.815493 0.15625 0.5625 -0.4691 0.0975 0.8777 --0.55557 0 0.831469 0.15625 0.5 -0.4691 0.0975 0.8777 --0.074658 0.980785 0.18024 0.1875 0.9375 -0.0464 0.9951 0.0869 -0 1 0 0.171875 1 -0.0464 0.9951 0.0869 --0.108386 0.980785 0.162212 0.15625 0.9375 -0.0464 0.9951 0.0869 --0.308658 -0.83147 0.461939 0.15625 0.1875 -0.4036 -0.7715 0.4918 --0.392847 -0.707107 0.587938 0.15625 0.25 -0.4036 -0.7715 0.4918 --0.5 -0.707107 0.5 0.125 0.25 -0.4036 -0.7715 0.4918 --0.308658 -0.83147 0.461939 0.15625 0.1875 -0.4036 -0.7715 0.4918 --0.5 -0.707107 0.5 0.125 0.25 -0.4036 -0.7715 0.4918 --0.392847 -0.83147 0.392847 0.125 0.1875 -0.4036 -0.7715 0.4918 --0.51328 0.382683 0.768178 0.15625 0.625 -0.5601 0.4696 0.6825 --0.46194 0.55557 0.691341 0.15625 0.6875 -0.5601 0.4696 0.6825 --0.587938 0.55557 0.587937 0.125 0.6875 -0.5601 0.4696 0.6825 --0.51328 0.382683 0.768178 0.15625 0.625 -0.5601 0.4696 0.6825 --0.587938 0.55557 0.587937 0.125 0.6875 -0.5601 0.4696 0.6825 --0.653281 0.382683 0.653281 0.125 0.625 -0.5601 0.4696 0.6825 --0.212608 -0.92388 0.31819 0.15625 0.125 -0.3002 -0.881 0.3658 --0.308658 -0.83147 0.461939 0.15625 0.1875 -0.3002 -0.881 0.3658 --0.392847 -0.83147 0.392847 0.125 0.1875 -0.3002 -0.881 0.3658 --0.212608 -0.92388 0.31819 0.15625 0.125 -0.3002 -0.881 0.3658 --0.392847 -0.83147 0.392847 0.125 0.1875 -0.3002 -0.881 0.3658 --0.270598 -0.92388 0.270598 0.125 0.125 -0.3002 -0.881 0.3658 --0.544895 0.19509 0.815493 0.15625 0.5625 -0.6073 0.289 0.74 --0.51328 0.382683 0.768178 0.15625 0.625 -0.6073 0.289 0.74 --0.653281 0.382683 0.653281 0.125 0.625 -0.6073 0.289 0.74 --0.544895 0.19509 0.815493 0.15625 0.5625 -0.6073 0.289 0.74 --0.653281 0.382683 0.653281 0.125 0.625 -0.6073 0.289 0.74 --0.69352 0.19509 0.69352 0.125 0.5625 -0.6073 0.289 0.74 --0.108386 -0.980785 0.162212 0.15625 0.0625 -0.185 -0.9565 0.2254 --0.212608 -0.92388 0.31819 0.15625 0.125 -0.185 -0.9565 0.2254 --0.270598 -0.92388 0.270598 0.125 0.125 -0.185 -0.9565 0.2254 --0.108386 -0.980785 0.162212 0.15625 0.0625 -0.185 -0.9565 0.2254 --0.270598 -0.92388 0.270598 0.125 0.125 -0.185 -0.9565 0.2254 --0.13795 -0.980785 0.13795 0.125 0.0625 -0.185 -0.9565 0.2254 --0.55557 0 0.831469 0.15625 0.5 -0.6314 0.0975 0.7693 --0.544895 0.19509 0.815493 0.15625 0.5625 -0.6314 0.0975 0.7693 --0.69352 0.19509 0.69352 0.125 0.5625 -0.6314 0.0975 0.7693 --0.55557 0 0.831469 0.15625 0.5 -0.6314 0.0975 0.7693 --0.69352 0.19509 0.69352 0.125 0.5625 -0.6314 0.0975 0.7693 --0.707106 0 0.707106 0.125 0.5 -0.6314 0.0975 0.7693 --0.108386 0.980785 0.162212 0.15625 0.9375 -0.0625 0.9951 0.0761 -0 1 0 0.140625 1 -0.0625 0.9951 0.0761 --0.13795 0.980785 0.13795 0.125 0.9375 -0.0625 0.9951 0.0761 -0 -1 0 0.140625 0 -0.0625 -0.9951 0.0761 --0.108386 -0.980785 0.162212 0.15625 0.0625 -0.0625 -0.9951 0.0761 --0.13795 -0.980785 0.13795 0.125 0.0625 -0.0625 -0.9951 0.0761 --0.544895 -0.19509 0.815493 0.15625 0.4375 -0.6314 -0.0975 0.7693 --0.55557 0 0.831469 0.15625 0.5 -0.6314 -0.0975 0.7693 --0.707106 0 0.707106 0.125 0.5 -0.6314 -0.0975 0.7693 --0.544895 -0.19509 0.815493 0.15625 0.4375 -0.6314 -0.0975 0.7693 --0.707106 0 0.707106 0.125 0.5 -0.6314 -0.0975 0.7693 --0.69352 -0.19509 0.69352 0.125 0.4375 -0.6314 -0.0975 0.7693 --0.212608 0.92388 0.31819 0.15625 0.875 -0.185 0.9565 0.2254 --0.108386 0.980785 0.162212 0.15625 0.9375 -0.185 0.9565 0.2254 --0.13795 0.980785 0.13795 0.125 0.9375 -0.185 0.9565 0.2254 --0.212608 0.92388 0.31819 0.15625 0.875 -0.185 0.9565 0.2254 --0.13795 0.980785 0.13795 0.125 0.9375 -0.185 0.9565 0.2254 --0.270598 0.92388 0.270598 0.125 0.875 -0.185 0.9565 0.2254 --0.51328 -0.382683 0.768178 0.15625 0.375 -0.6073 -0.289 0.74 --0.544895 -0.19509 0.815493 0.15625 0.4375 -0.6073 -0.289 0.74 --0.69352 -0.19509 0.69352 0.125 0.4375 -0.6073 -0.289 0.74 --0.51328 -0.382683 0.768178 0.15625 0.375 -0.6073 -0.289 0.74 --0.69352 -0.19509 0.69352 0.125 0.4375 -0.6073 -0.289 0.74 --0.653281 -0.382683 0.653281 0.125 0.375 -0.6073 -0.289 0.74 --0.308658 0.83147 0.461939 0.15625 0.8125 -0.3002 0.881 0.3658 --0.212608 0.92388 0.31819 0.15625 0.875 -0.3002 0.881 0.3658 --0.270598 0.92388 0.270598 0.125 0.875 -0.3002 0.881 0.3658 --0.308658 0.83147 0.461939 0.15625 0.8125 -0.3002 0.881 0.3658 --0.270598 0.92388 0.270598 0.125 0.875 -0.3002 0.881 0.3658 --0.392847 0.83147 0.392847 0.125 0.8125 -0.3002 0.881 0.3658 --0.46194 -0.55557 0.691341 0.15625 0.3125 -0.5601 -0.4696 0.6825 --0.51328 -0.382683 0.768178 0.15625 0.375 -0.5601 -0.4696 0.6825 --0.653281 -0.382683 0.653281 0.125 0.375 -0.5601 -0.4696 0.6825 --0.46194 -0.55557 0.691341 0.15625 0.3125 -0.5601 -0.4696 0.6825 --0.653281 -0.382683 0.653281 0.125 0.375 -0.5601 -0.4696 0.6825 --0.587938 -0.55557 0.587937 0.125 0.3125 -0.5601 -0.4696 0.6825 --0.392847 0.707107 0.587938 0.15625 0.75 -0.4036 0.7715 0.4918 --0.308658 0.83147 0.461939 0.15625 0.8125 -0.4036 0.7715 0.4918 --0.392847 0.83147 0.392847 0.125 0.8125 -0.4036 0.7715 0.4918 --0.392847 0.707107 0.587938 0.15625 0.75 -0.4036 0.7715 0.4918 --0.392847 0.83147 0.392847 0.125 0.8125 -0.4036 0.7715 0.4918 --0.5 0.707107 0.5 0.125 0.75 -0.4036 0.7715 0.4918 --0.392847 -0.707107 0.587938 0.15625 0.25 -0.4913 -0.6326 0.5987 --0.46194 -0.55557 0.691341 0.15625 0.3125 -0.4913 -0.6326 0.5987 --0.587938 -0.55557 0.587937 0.125 0.3125 -0.4913 -0.6326 0.5987 --0.392847 -0.707107 0.587938 0.15625 0.25 -0.4913 -0.6326 0.5987 --0.587938 -0.55557 0.587937 0.125 0.3125 -0.4913 -0.6326 0.5987 --0.5 -0.707107 0.5 0.125 0.25 -0.4913 -0.6326 0.5987 --0.46194 0.55557 0.691341 0.15625 0.6875 -0.4913 0.6326 0.5987 --0.392847 0.707107 0.587938 0.15625 0.75 -0.4913 0.6326 0.5987 --0.5 0.707107 0.5 0.125 0.75 -0.4913 0.6326 0.5987 --0.46194 0.55557 0.691341 0.15625 0.6875 -0.4913 0.6326 0.5987 --0.5 0.707107 0.5 0.125 0.75 -0.4913 0.6326 0.5987 --0.587938 0.55557 0.587937 0.125 0.6875 -0.4913 0.6326 0.5987 --0.270598 0.92388 0.270598 0.125 0.875 -0.2254 0.9565 0.185 --0.13795 0.980785 0.13795 0.125 0.9375 -0.2254 0.9565 0.185 --0.162212 0.980785 0.108386 0.09375 0.9375 -0.2254 0.9565 0.185 --0.270598 0.92388 0.270598 0.125 0.875 -0.2254 0.9565 0.185 --0.162212 0.980785 0.108386 0.09375 0.9375 -0.2254 0.9565 0.185 --0.31819 0.92388 0.212607 0.09375 0.875 -0.2254 0.9565 0.185 --0.653281 -0.382683 0.653281 0.125 0.375 -0.74 -0.289 0.6073 --0.69352 -0.19509 0.69352 0.125 0.4375 -0.74 -0.289 0.6073 --0.815493 -0.19509 0.544895 0.09375 0.4375 -0.74 -0.289 0.6073 --0.653281 -0.382683 0.653281 0.125 0.375 -0.74 -0.289 0.6073 --0.815493 -0.19509 0.544895 0.09375 0.4375 -0.74 -0.289 0.6073 --0.768177 -0.382683 0.51328 0.09375 0.375 -0.74 -0.289 0.6073 --0.392847 0.83147 0.392847 0.125 0.8125 -0.3658 0.881 0.3002 --0.270598 0.92388 0.270598 0.125 0.875 -0.3658 0.881 0.3002 --0.31819 0.92388 0.212607 0.09375 0.875 -0.3658 0.881 0.3002 --0.392847 0.83147 0.392847 0.125 0.8125 -0.3658 0.881 0.3002 --0.31819 0.92388 0.212607 0.09375 0.875 -0.3658 0.881 0.3002 --0.46194 0.83147 0.308658 0.09375 0.8125 -0.3658 0.881 0.3002 --0.587938 -0.55557 0.587937 0.125 0.3125 -0.6825 -0.4696 0.5601 --0.653281 -0.382683 0.653281 0.125 0.375 -0.6825 -0.4696 0.5601 --0.768177 -0.382683 0.51328 0.09375 0.375 -0.6825 -0.4696 0.5601 --0.587938 -0.55557 0.587937 0.125 0.3125 -0.6825 -0.4696 0.5601 --0.768177 -0.382683 0.51328 0.09375 0.375 -0.6825 -0.4696 0.5601 --0.691341 -0.55557 0.461939 0.09375 0.3125 -0.6825 -0.4696 0.5601 --0.5 0.707107 0.5 0.125 0.75 -0.4918 0.7715 0.4036 --0.392847 0.83147 0.392847 0.125 0.8125 -0.4918 0.7715 0.4036 --0.46194 0.83147 0.308658 0.09375 0.8125 -0.4918 0.7715 0.4036 --0.5 0.707107 0.5 0.125 0.75 -0.4918 0.7715 0.4036 --0.46194 0.83147 0.308658 0.09375 0.8125 -0.4918 0.7715 0.4036 --0.587938 0.707107 0.392847 0.09375 0.75 -0.4918 0.7715 0.4036 --0.5 -0.707107 0.5 0.125 0.25 -0.5987 -0.6326 0.4913 --0.587938 -0.55557 0.587937 0.125 0.3125 -0.5987 -0.6326 0.4913 --0.691341 -0.55557 0.461939 0.09375 0.3125 -0.5987 -0.6326 0.4913 --0.5 -0.707107 0.5 0.125 0.25 -0.5987 -0.6326 0.4913 --0.691341 -0.55557 0.461939 0.09375 0.3125 -0.5987 -0.6326 0.4913 --0.587938 -0.707107 0.392847 0.09375 0.25 -0.5987 -0.6326 0.4913 --0.587938 0.55557 0.587937 0.125 0.6875 -0.5987 0.6326 0.4913 --0.5 0.707107 0.5 0.125 0.75 -0.5987 0.6326 0.4913 --0.587938 0.707107 0.392847 0.09375 0.75 -0.5987 0.6326 0.4913 --0.587938 0.55557 0.587937 0.125 0.6875 -0.5987 0.6326 0.4913 --0.587938 0.707107 0.392847 0.09375 0.75 -0.5987 0.6326 0.4913 --0.691341 0.55557 0.461939 0.09375 0.6875 -0.5987 0.6326 0.4913 --0.392847 -0.83147 0.392847 0.125 0.1875 -0.4918 -0.7715 0.4036 --0.5 -0.707107 0.5 0.125 0.25 -0.4918 -0.7715 0.4036 --0.587938 -0.707107 0.392847 0.09375 0.25 -0.4918 -0.7715 0.4036 --0.392847 -0.83147 0.392847 0.125 0.1875 -0.4918 -0.7715 0.4036 --0.587938 -0.707107 0.392847 0.09375 0.25 -0.4918 -0.7715 0.4036 --0.46194 -0.83147 0.308658 0.09375 0.1875 -0.4918 -0.7715 0.4036 --0.653281 0.382683 0.653281 0.125 0.625 -0.6825 0.4696 0.5601 --0.587938 0.55557 0.587937 0.125 0.6875 -0.6825 0.4696 0.5601 --0.691341 0.55557 0.461939 0.09375 0.6875 -0.6825 0.4696 0.5601 --0.653281 0.382683 0.653281 0.125 0.625 -0.6825 0.4696 0.5601 --0.691341 0.55557 0.461939 0.09375 0.6875 -0.6825 0.4696 0.5601 --0.768177 0.382683 0.51328 0.09375 0.625 -0.6825 0.4696 0.5601 --0.270598 -0.92388 0.270598 0.125 0.125 -0.3658 -0.881 0.3002 --0.392847 -0.83147 0.392847 0.125 0.1875 -0.3658 -0.881 0.3002 --0.46194 -0.83147 0.308658 0.09375 0.1875 -0.3658 -0.881 0.3002 --0.270598 -0.92388 0.270598 0.125 0.125 -0.3658 -0.881 0.3002 --0.46194 -0.83147 0.308658 0.09375 0.1875 -0.3658 -0.881 0.3002 --0.31819 -0.92388 0.212607 0.09375 0.125 -0.3658 -0.881 0.3002 --0.69352 0.19509 0.69352 0.125 0.5625 -0.74 0.289 0.6073 --0.653281 0.382683 0.653281 0.125 0.625 -0.74 0.289 0.6073 --0.768177 0.382683 0.51328 0.09375 0.625 -0.74 0.289 0.6073 --0.69352 0.19509 0.69352 0.125 0.5625 -0.74 0.289 0.6073 --0.768177 0.382683 0.51328 0.09375 0.625 -0.74 0.289 0.6073 --0.815493 0.19509 0.544895 0.09375 0.5625 -0.74 0.289 0.6073 --0.13795 -0.980785 0.13795 0.125 0.0625 -0.2254 -0.9565 0.185 --0.270598 -0.92388 0.270598 0.125 0.125 -0.2254 -0.9565 0.185 --0.31819 -0.92388 0.212607 0.09375 0.125 -0.2254 -0.9565 0.185 --0.13795 -0.980785 0.13795 0.125 0.0625 -0.2254 -0.9565 0.185 --0.31819 -0.92388 0.212607 0.09375 0.125 -0.2254 -0.9565 0.185 --0.162212 -0.980785 0.108386 0.09375 0.0625 -0.2254 -0.9565 0.185 --0.707106 0 0.707106 0.125 0.5 -0.7693 0.0975 0.6314 --0.69352 0.19509 0.69352 0.125 0.5625 -0.7693 0.0975 0.6314 --0.815493 0.19509 0.544895 0.09375 0.5625 -0.7693 0.0975 0.6314 --0.707106 0 0.707106 0.125 0.5 -0.7693 0.0975 0.6314 --0.815493 0.19509 0.544895 0.09375 0.5625 -0.7693 0.0975 0.6314 --0.831469 0 0.555569 0.09375 0.5 -0.7693 0.0975 0.6314 --0.13795 0.980785 0.13795 0.125 0.9375 -0.0761 0.9951 0.0625 -0 1 0 0.109375 1 -0.0761 0.9951 0.0625 --0.162212 0.980785 0.108386 0.09375 0.9375 -0.0761 0.9951 0.0625 -0 -1 0 0.109375 0 -0.0761 -0.9951 0.0625 --0.13795 -0.980785 0.13795 0.125 0.0625 -0.0761 -0.9951 0.0625 --0.162212 -0.980785 0.108386 0.09375 0.0625 -0.0761 -0.9951 0.0625 --0.69352 -0.19509 0.69352 0.125 0.4375 -0.7693 -0.0975 0.6314 --0.707106 0 0.707106 0.125 0.5 -0.7693 -0.0975 0.6314 --0.831469 0 0.555569 0.09375 0.5 -0.7693 -0.0975 0.6314 --0.69352 -0.19509 0.69352 0.125 0.4375 -0.7693 -0.0975 0.6314 --0.831469 0 0.555569 0.09375 0.5 -0.7693 -0.0975 0.6314 --0.815493 -0.19509 0.544895 0.09375 0.4375 -0.7693 -0.0975 0.6314 --0.768177 0.382683 0.51328 0.09375 0.625 -0.7786 0.4696 0.4162 --0.691341 0.55557 0.461939 0.09375 0.6875 -0.7786 0.4696 0.4162 --0.768177 0.55557 0.318189 0.0625 0.6875 -0.7786 0.4696 0.4162 --0.768177 0.382683 0.51328 0.09375 0.625 -0.7786 0.4696 0.4162 --0.768177 0.55557 0.318189 0.0625 0.6875 -0.7786 0.4696 0.4162 --0.853553 0.382683 0.353553 0.0625 0.625 -0.7786 0.4696 0.4162 --0.31819 -0.92388 0.212607 0.09375 0.125 -0.4173 -0.881 0.223 --0.46194 -0.83147 0.308658 0.09375 0.1875 -0.4173 -0.881 0.223 --0.51328 -0.83147 0.212607 0.0625 0.1875 -0.4173 -0.881 0.223 --0.31819 -0.92388 0.212607 0.09375 0.125 -0.4173 -0.881 0.223 --0.51328 -0.83147 0.212607 0.0625 0.1875 -0.4173 -0.881 0.223 --0.353553 -0.92388 0.146447 0.0625 0.125 -0.4173 -0.881 0.223 --0.815493 0.19509 0.544895 0.09375 0.5625 -0.8443 0.289 0.4513 --0.768177 0.382683 0.51328 0.09375 0.625 -0.8443 0.289 0.4513 --0.853553 0.382683 0.353553 0.0625 0.625 -0.8443 0.289 0.4513 --0.815493 0.19509 0.544895 0.09375 0.5625 -0.8443 0.289 0.4513 --0.853553 0.382683 0.353553 0.0625 0.625 -0.8443 0.289 0.4513 --0.906127 0.19509 0.37533 0.0625 0.5625 -0.8443 0.289 0.4513 --0.162212 -0.980785 0.108386 0.09375 0.0625 -0.2571 -0.9565 0.1374 --0.31819 -0.92388 0.212607 0.09375 0.125 -0.2571 -0.9565 0.1374 --0.353553 -0.92388 0.146447 0.0625 0.125 -0.2571 -0.9565 0.1374 --0.162212 -0.980785 0.108386 0.09375 0.0625 -0.2571 -0.9565 0.1374 --0.353553 -0.92388 0.146447 0.0625 0.125 -0.2571 -0.9565 0.1374 --0.18024 -0.980785 0.074658 0.0625 0.0625 -0.2571 -0.9565 0.1374 --0.831469 0 0.555569 0.09375 0.5 -0.8777 0.0975 0.4691 --0.815493 0.19509 0.544895 0.09375 0.5625 -0.8777 0.0975 0.4691 --0.906127 0.19509 0.37533 0.0625 0.5625 -0.8777 0.0975 0.4691 --0.831469 0 0.555569 0.09375 0.5 -0.8777 0.0975 0.4691 --0.906127 0.19509 0.37533 0.0625 0.5625 -0.8777 0.0975 0.4691 --0.923879 0 0.382683 0.0625 0.5 -0.8777 0.0975 0.4691 --0.162212 0.980785 0.108386 0.09375 0.9375 -0.0869 0.9951 0.0464 -0 1 0 0.078125 1 -0.0869 0.9951 0.0464 --0.18024 0.980785 0.074658 0.0625 0.9375 -0.0869 0.9951 0.0464 -0 -1 0 0.078125 0 -0.0869 -0.9951 0.0464 --0.162212 -0.980785 0.108386 0.09375 0.0625 -0.0869 -0.9951 0.0464 --0.18024 -0.980785 0.074658 0.0625 0.0625 -0.0869 -0.9951 0.0464 --0.815493 -0.19509 0.544895 0.09375 0.4375 -0.8777 -0.0975 0.4691 --0.831469 0 0.555569 0.09375 0.5 -0.8777 -0.0975 0.4691 --0.923879 0 0.382683 0.0625 0.5 -0.8777 -0.0975 0.4691 --0.815493 -0.19509 0.544895 0.09375 0.4375 -0.8777 -0.0975 0.4691 --0.923879 0 0.382683 0.0625 0.5 -0.8777 -0.0975 0.4691 --0.906127 -0.19509 0.37533 0.0625 0.4375 -0.8777 -0.0975 0.4691 --0.31819 0.92388 0.212607 0.09375 0.875 -0.2571 0.9565 0.1374 --0.162212 0.980785 0.108386 0.09375 0.9375 -0.2571 0.9565 0.1374 --0.18024 0.980785 0.074658 0.0625 0.9375 -0.2571 0.9565 0.1374 --0.31819 0.92388 0.212607 0.09375 0.875 -0.2571 0.9565 0.1374 --0.18024 0.980785 0.074658 0.0625 0.9375 -0.2571 0.9565 0.1374 --0.353553 0.92388 0.146447 0.0625 0.875 -0.2571 0.9565 0.1374 --0.768177 -0.382683 0.51328 0.09375 0.375 -0.8443 -0.289 0.4513 --0.815493 -0.19509 0.544895 0.09375 0.4375 -0.8443 -0.289 0.4513 --0.906127 -0.19509 0.37533 0.0625 0.4375 -0.8443 -0.289 0.4513 --0.768177 -0.382683 0.51328 0.09375 0.375 -0.8443 -0.289 0.4513 --0.906127 -0.19509 0.37533 0.0625 0.4375 -0.8443 -0.289 0.4513 --0.853553 -0.382683 0.353553 0.0625 0.375 -0.8443 -0.289 0.4513 --0.46194 0.83147 0.308658 0.09375 0.8125 -0.4173 0.881 0.223 --0.31819 0.92388 0.212607 0.09375 0.875 -0.4173 0.881 0.223 --0.353553 0.92388 0.146447 0.0625 0.875 -0.4173 0.881 0.223 --0.46194 0.83147 0.308658 0.09375 0.8125 -0.4173 0.881 0.223 --0.353553 0.92388 0.146447 0.0625 0.875 -0.4173 0.881 0.223 --0.51328 0.83147 0.212607 0.0625 0.8125 -0.4173 0.881 0.223 --0.691341 -0.55557 0.461939 0.09375 0.3125 -0.7786 -0.4696 0.4162 --0.768177 -0.382683 0.51328 0.09375 0.375 -0.7786 -0.4696 0.4162 --0.853553 -0.382683 0.353553 0.0625 0.375 -0.7786 -0.4696 0.4162 --0.691341 -0.55557 0.461939 0.09375 0.3125 -0.7786 -0.4696 0.4162 --0.853553 -0.382683 0.353553 0.0625 0.375 -0.7786 -0.4696 0.4162 --0.768177 -0.55557 0.318189 0.0625 0.3125 -0.7786 -0.4696 0.4162 --0.587938 0.707107 0.392847 0.09375 0.75 -0.5611 0.7715 0.2999 --0.46194 0.83147 0.308658 0.09375 0.8125 -0.5611 0.7715 0.2999 --0.51328 0.83147 0.212607 0.0625 0.8125 -0.5611 0.7715 0.2999 --0.587938 0.707107 0.392847 0.09375 0.75 -0.5611 0.7715 0.2999 --0.51328 0.83147 0.212607 0.0625 0.8125 -0.5611 0.7715 0.2999 --0.653281 0.707107 0.270598 0.0625 0.75 -0.5611 0.7715 0.2999 --0.587938 -0.707107 0.392847 0.09375 0.25 -0.6831 -0.6326 0.3651 --0.691341 -0.55557 0.461939 0.09375 0.3125 -0.6831 -0.6326 0.3651 --0.768177 -0.55557 0.318189 0.0625 0.3125 -0.6831 -0.6326 0.3651 --0.587938 -0.707107 0.392847 0.09375 0.25 -0.6831 -0.6326 0.3651 --0.768177 -0.55557 0.318189 0.0625 0.3125 -0.6831 -0.6326 0.3651 --0.653281 -0.707107 0.270598 0.0625 0.25 -0.6831 -0.6326 0.3651 --0.691341 0.55557 0.461939 0.09375 0.6875 -0.6831 0.6326 0.3651 --0.587938 0.707107 0.392847 0.09375 0.75 -0.6831 0.6326 0.3651 --0.653281 0.707107 0.270598 0.0625 0.75 -0.6831 0.6326 0.3651 --0.691341 0.55557 0.461939 0.09375 0.6875 -0.6831 0.6326 0.3651 --0.653281 0.707107 0.270598 0.0625 0.75 -0.6831 0.6326 0.3651 --0.768177 0.55557 0.318189 0.0625 0.6875 -0.6831 0.6326 0.3651 --0.46194 -0.83147 0.308658 0.09375 0.1875 -0.5611 -0.7715 0.2999 --0.587938 -0.707107 0.392847 0.09375 0.25 -0.5611 -0.7715 0.2999 --0.653281 -0.707107 0.270598 0.0625 0.25 -0.5611 -0.7715 0.2999 --0.46194 -0.83147 0.308658 0.09375 0.1875 -0.5611 -0.7715 0.2999 --0.653281 -0.707107 0.270598 0.0625 0.25 -0.5611 -0.7715 0.2999 --0.51328 -0.83147 0.212607 0.0625 0.1875 -0.5611 -0.7715 0.2999 --0.853553 -0.382683 0.353553 0.0625 0.375 -0.9161 -0.289 0.2779 --0.906127 -0.19509 0.37533 0.0625 0.4375 -0.9161 -0.289 0.2779 --0.961939 -0.19509 0.191341 0.03125 0.4375 -0.9161 -0.289 0.2779 --0.853553 -0.382683 0.353553 0.0625 0.375 -0.9161 -0.289 0.2779 --0.961939 -0.19509 0.191341 0.03125 0.4375 -0.9161 -0.289 0.2779 --0.906127 -0.382683 0.18024 0.03125 0.375 -0.9161 -0.289 0.2779 --0.51328 0.83147 0.212607 0.0625 0.8125 -0.4528 0.881 0.1374 --0.353553 0.92388 0.146447 0.0625 0.875 -0.4528 0.881 0.1374 --0.37533 0.92388 0.074658 0.03125 0.875 -0.4528 0.881 0.1374 --0.51328 0.83147 0.212607 0.0625 0.8125 -0.4528 0.881 0.1374 --0.37533 0.92388 0.074658 0.03125 0.875 -0.4528 0.881 0.1374 --0.544895 0.83147 0.108386 0.03125 0.8125 -0.4528 0.881 0.1374 --0.768177 -0.55557 0.318189 0.0625 0.3125 -0.8448 -0.4696 0.2563 --0.853553 -0.382683 0.353553 0.0625 0.375 -0.8448 -0.4696 0.2563 --0.906127 -0.382683 0.18024 0.03125 0.375 -0.8448 -0.4696 0.2563 --0.768177 -0.55557 0.318189 0.0625 0.3125 -0.8448 -0.4696 0.2563 --0.906127 -0.382683 0.18024 0.03125 0.375 -0.8448 -0.4696 0.2563 --0.815493 -0.55557 0.162211 0.03125 0.3125 -0.8448 -0.4696 0.2563 --0.653281 0.707107 0.270598 0.0625 0.75 -0.6088 0.7715 0.1847 --0.51328 0.83147 0.212607 0.0625 0.8125 -0.6088 0.7715 0.1847 --0.544895 0.83147 0.108386 0.03125 0.8125 -0.6088 0.7715 0.1847 --0.653281 0.707107 0.270598 0.0625 0.75 -0.6088 0.7715 0.1847 --0.544895 0.83147 0.108386 0.03125 0.8125 -0.6088 0.7715 0.1847 --0.69352 0.707107 0.13795 0.03125 0.75 -0.6088 0.7715 0.1847 --0.653281 -0.707107 0.270598 0.0625 0.25 -0.7412 -0.6326 0.2248 --0.768177 -0.55557 0.318189 0.0625 0.3125 -0.7412 -0.6326 0.2248 --0.815493 -0.55557 0.162211 0.03125 0.3125 -0.7412 -0.6326 0.2248 --0.653281 -0.707107 0.270598 0.0625 0.25 -0.7412 -0.6326 0.2248 --0.815493 -0.55557 0.162211 0.03125 0.3125 -0.7412 -0.6326 0.2248 --0.69352 -0.707107 0.13795 0.03125 0.25 -0.7412 -0.6326 0.2248 --0.768177 0.55557 0.318189 0.0625 0.6875 -0.7412 0.6326 0.2248 --0.653281 0.707107 0.270598 0.0625 0.75 -0.7412 0.6326 0.2248 --0.69352 0.707107 0.13795 0.03125 0.75 -0.7412 0.6326 0.2248 --0.768177 0.55557 0.318189 0.0625 0.6875 -0.7412 0.6326 0.2248 --0.69352 0.707107 0.13795 0.03125 0.75 -0.7412 0.6326 0.2248 --0.815493 0.55557 0.162211 0.03125 0.6875 -0.7412 0.6326 0.2248 --0.51328 -0.83147 0.212607 0.0625 0.1875 -0.6088 -0.7715 0.1847 --0.653281 -0.707107 0.270598 0.0625 0.25 -0.6088 -0.7715 0.1847 --0.69352 -0.707107 0.13795 0.03125 0.25 -0.6088 -0.7715 0.1847 --0.51328 -0.83147 0.212607 0.0625 0.1875 -0.6088 -0.7715 0.1847 --0.69352 -0.707107 0.13795 0.03125 0.25 -0.6088 -0.7715 0.1847 --0.544895 -0.83147 0.108386 0.03125 0.1875 -0.6088 -0.7715 0.1847 --0.853553 0.382683 0.353553 0.0625 0.625 -0.8448 0.4696 0.2563 --0.768177 0.55557 0.318189 0.0625 0.6875 -0.8448 0.4696 0.2563 --0.815493 0.55557 0.162211 0.03125 0.6875 -0.8448 0.4696 0.2563 --0.853553 0.382683 0.353553 0.0625 0.625 -0.8448 0.4696 0.2563 --0.815493 0.55557 0.162211 0.03125 0.6875 -0.8448 0.4696 0.2563 --0.906127 0.382683 0.18024 0.03125 0.625 -0.8448 0.4696 0.2563 --0.353553 -0.92388 0.146447 0.0625 0.125 -0.4528 -0.881 0.1374 --0.51328 -0.83147 0.212607 0.0625 0.1875 -0.4528 -0.881 0.1374 --0.544895 -0.83147 0.108386 0.03125 0.1875 -0.4528 -0.881 0.1374 --0.353553 -0.92388 0.146447 0.0625 0.125 -0.4528 -0.881 0.1374 --0.544895 -0.83147 0.108386 0.03125 0.1875 -0.4528 -0.881 0.1374 --0.37533 -0.92388 0.074658 0.03125 0.125 -0.4528 -0.881 0.1374 --0.906127 0.19509 0.37533 0.0625 0.5625 -0.9161 0.289 0.2779 --0.853553 0.382683 0.353553 0.0625 0.625 -0.9161 0.289 0.2779 --0.906127 0.382683 0.18024 0.03125 0.625 -0.9161 0.289 0.2779 --0.906127 0.19509 0.37533 0.0625 0.5625 -0.9161 0.289 0.2779 --0.906127 0.382683 0.18024 0.03125 0.625 -0.9161 0.289 0.2779 --0.961939 0.19509 0.191341 0.03125 0.5625 -0.9161 0.289 0.2779 --0.18024 -0.980785 0.074658 0.0625 0.0625 -0.279 -0.9565 0.0846 --0.353553 -0.92388 0.146447 0.0625 0.125 -0.279 -0.9565 0.0846 --0.37533 -0.92388 0.074658 0.03125 0.125 -0.279 -0.9565 0.0846 --0.18024 -0.980785 0.074658 0.0625 0.0625 -0.279 -0.9565 0.0846 --0.37533 -0.92388 0.074658 0.03125 0.125 -0.279 -0.9565 0.0846 --0.191342 -0.980785 0.03806 0.03125 0.0625 -0.279 -0.9565 0.0846 --0.923879 0 0.382683 0.0625 0.5 -0.9524 0.0975 0.2889 --0.906127 0.19509 0.37533 0.0625 0.5625 -0.9524 0.0975 0.2889 --0.961939 0.19509 0.191341 0.03125 0.5625 -0.9524 0.0975 0.2889 --0.923879 0 0.382683 0.0625 0.5 -0.9524 0.0975 0.2889 --0.961939 0.19509 0.191341 0.03125 0.5625 -0.9524 0.0975 0.2889 --0.980784 0 0.19509 0.03125 0.5 -0.9524 0.0975 0.2889 --0.18024 0.980785 0.074658 0.0625 0.9375 -0.0942 0.9951 0.0286 -0 1 0 0.046875 1 -0.0942 0.9951 0.0286 --0.191342 0.980785 0.03806 0.03125 0.9375 -0.0942 0.9951 0.0286 -0 -1 0 0.046875 0 -0.0942 -0.9951 0.0286 --0.18024 -0.980785 0.074658 0.0625 0.0625 -0.0942 -0.9951 0.0286 --0.191342 -0.980785 0.03806 0.03125 0.0625 -0.0942 -0.9951 0.0286 --0.906127 -0.19509 0.37533 0.0625 0.4375 -0.9524 -0.0975 0.2889 --0.923879 0 0.382683 0.0625 0.5 -0.9524 -0.0975 0.2889 --0.980784 0 0.19509 0.03125 0.5 -0.9524 -0.0975 0.2889 --0.906127 -0.19509 0.37533 0.0625 0.4375 -0.9524 -0.0975 0.2889 --0.980784 0 0.19509 0.03125 0.5 -0.9524 -0.0975 0.2889 --0.961939 -0.19509 0.191341 0.03125 0.4375 -0.9524 -0.0975 0.2889 --0.353553 0.92388 0.146447 0.0625 0.875 -0.279 0.9565 0.0846 --0.18024 0.980785 0.074658 0.0625 0.9375 -0.279 0.9565 0.0846 --0.191342 0.980785 0.03806 0.03125 0.9375 -0.279 0.9565 0.0846 --0.353553 0.92388 0.146447 0.0625 0.875 -0.279 0.9565 0.0846 --0.191342 0.980785 0.03806 0.03125 0.9375 -0.279 0.9565 0.0846 --0.37533 0.92388 0.074658 0.03125 0.875 -0.279 0.9565 0.0846 --0.37533 -0.92388 0.074658 0.03125 0.125 -0.4709 -0.881 0.0464 --0.544895 -0.83147 0.108386 0.03125 0.1875 -0.4709 -0.881 0.0464 --0.55557 -0.83147 -0 0 0.1875 -0.4709 -0.881 0.0464 --0.37533 -0.92388 0.074658 0.03125 0.125 -0.4709 -0.881 0.0464 --0.55557 -0.83147 -0 0 0.1875 -0.4709 -0.881 0.0464 --0.382683 -0.92388 -0 0 0.125 -0.4709 -0.881 0.0464 --0.961939 0.19509 0.191341 0.03125 0.5625 -0.9527 0.289 0.0938 --0.906127 0.382683 0.18024 0.03125 0.625 -0.9527 0.289 0.0938 --0.923879 0.382683 -0 0 0.625 -0.9527 0.289 0.0938 --0.961939 0.19509 0.191341 0.03125 0.5625 -0.9527 0.289 0.0938 --0.923879 0.382683 -0 0 0.625 -0.9527 0.289 0.0938 --0.980785 0.19509 -0 0 0.5625 -0.9527 0.289 0.0938 --0.191342 -0.980785 0.03806 0.03125 0.0625 -0.2902 -0.9565 0.0286 --0.37533 -0.92388 0.074658 0.03125 0.125 -0.2902 -0.9565 0.0286 --0.382683 -0.92388 -0 0 0.125 -0.2902 -0.9565 0.0286 --0.191342 -0.980785 0.03806 0.03125 0.0625 -0.2902 -0.9565 0.0286 --0.382683 -0.92388 -0 0 0.125 -0.2902 -0.9565 0.0286 --0.19509 -0.980785 -0 0 0.0625 -0.2902 -0.9565 0.0286 --0.980784 0 0.19509 0.03125 0.5 -0.9904 0.0975 0.0975 --0.961939 0.19509 0.191341 0.03125 0.5625 -0.9904 0.0975 0.0975 --0.980785 0.19509 -0 0 0.5625 -0.9904 0.0975 0.0975 --0.980784 0 0.19509 0.03125 0.5 -0.9904 0.0975 0.0975 --0.980785 0.19509 -0 0 0.5625 -0.9904 0.0975 0.0975 --0.999999 0 -0 0 0.5 -0.9904 0.0975 0.0975 --0.191342 0.980785 0.03806 0.03125 0.9375 -0.098 0.9951 0.0097 -0 1 0 0.015625 1 -0.098 0.9951 0.0097 --0.19509 0.980785 -0 0 0.9375 -0.098 0.9951 0.0097 -0 -1 0 0.015625 0 -0.098 -0.9951 0.0097 --0.191342 -0.980785 0.03806 0.03125 0.0625 -0.098 -0.9951 0.0097 --0.19509 -0.980785 -0 0 0.0625 -0.098 -0.9951 0.0097 --0.961939 -0.19509 0.191341 0.03125 0.4375 -0.9904 -0.0975 0.0975 --0.980784 0 0.19509 0.03125 0.5 -0.9904 -0.0975 0.0975 --0.999999 0 -0 0 0.5 -0.9904 -0.0975 0.0975 --0.961939 -0.19509 0.191341 0.03125 0.4375 -0.9904 -0.0975 0.0975 --0.999999 0 -0 0 0.5 -0.9904 -0.0975 0.0975 --0.980785 -0.19509 -0 0 0.4375 -0.9904 -0.0975 0.0975 --0.37533 0.92388 0.074658 0.03125 0.875 -0.2902 0.9565 0.0286 --0.191342 0.980785 0.03806 0.03125 0.9375 -0.2902 0.9565 0.0286 --0.19509 0.980785 -0 0 0.9375 -0.2902 0.9565 0.0286 --0.37533 0.92388 0.074658 0.03125 0.875 -0.2902 0.9565 0.0286 --0.19509 0.980785 -0 0 0.9375 -0.2902 0.9565 0.0286 --0.382683 0.92388 -0 0 0.875 -0.2902 0.9565 0.0286 --0.906127 -0.382683 0.18024 0.03125 0.375 -0.9527 -0.289 0.0938 --0.961939 -0.19509 0.191341 0.03125 0.4375 -0.9527 -0.289 0.0938 --0.980785 -0.19509 -0 0 0.4375 -0.9527 -0.289 0.0938 --0.906127 -0.382683 0.18024 0.03125 0.375 -0.9527 -0.289 0.0938 --0.980785 -0.19509 -0 0 0.4375 -0.9527 -0.289 0.0938 --0.923879 -0.382683 -0 0 0.375 -0.9527 -0.289 0.0938 --0.544895 0.83147 0.108386 0.03125 0.8125 -0.4709 0.881 0.0464 --0.37533 0.92388 0.074658 0.03125 0.875 -0.4709 0.881 0.0464 --0.382683 0.92388 -0 0 0.875 -0.4709 0.881 0.0464 --0.544895 0.83147 0.108386 0.03125 0.8125 -0.4709 0.881 0.0464 --0.382683 0.92388 -0 0 0.875 -0.4709 0.881 0.0464 --0.55557 0.83147 -0 0 0.8125 -0.4709 0.881 0.0464 --0.815493 -0.55557 0.162211 0.03125 0.3125 -0.8786 -0.4696 0.0865 --0.906127 -0.382683 0.18024 0.03125 0.375 -0.8786 -0.4696 0.0865 --0.923879 -0.382683 -0 0 0.375 -0.8786 -0.4696 0.0865 --0.815493 -0.55557 0.162211 0.03125 0.3125 -0.8786 -0.4696 0.0865 --0.923879 -0.382683 -0 0 0.375 -0.8786 -0.4696 0.0865 --0.831469 -0.55557 -0 0 0.3125 -0.8786 -0.4696 0.0865 --0.69352 0.707107 0.13795 0.03125 0.75 -0.6332 0.7715 0.0624 --0.544895 0.83147 0.108386 0.03125 0.8125 -0.6332 0.7715 0.0624 --0.55557 0.83147 -0 0 0.8125 -0.6332 0.7715 0.0624 --0.69352 0.707107 0.13795 0.03125 0.75 -0.6332 0.7715 0.0624 --0.55557 0.83147 -0 0 0.8125 -0.6332 0.7715 0.0624 --0.707107 0.707107 -0 0 0.75 -0.6332 0.7715 0.0624 --0.69352 -0.707107 0.13795 0.03125 0.25 -0.7708 -0.6326 0.0759 --0.815493 -0.55557 0.162211 0.03125 0.3125 -0.7708 -0.6326 0.0759 --0.831469 -0.55557 -0 0 0.3125 -0.7708 -0.6326 0.0759 --0.69352 -0.707107 0.13795 0.03125 0.25 -0.7708 -0.6326 0.0759 --0.831469 -0.55557 -0 0 0.3125 -0.7708 -0.6326 0.0759 --0.707107 -0.707107 -0 0 0.25 -0.7708 -0.6326 0.0759 --0.815493 0.55557 0.162211 0.03125 0.6875 -0.7708 0.6326 0.0759 --0.69352 0.707107 0.13795 0.03125 0.75 -0.7708 0.6326 0.0759 --0.707107 0.707107 -0 0 0.75 -0.7708 0.6326 0.0759 --0.815493 0.55557 0.162211 0.03125 0.6875 -0.7708 0.6326 0.0759 --0.707107 0.707107 -0 0 0.75 -0.7708 0.6326 0.0759 --0.831469 0.55557 -0 0 0.6875 -0.7708 0.6326 0.0759 --0.544895 -0.83147 0.108386 0.03125 0.1875 -0.6332 -0.7715 0.0624 --0.69352 -0.707107 0.13795 0.03125 0.25 -0.6332 -0.7715 0.0624 --0.707107 -0.707107 -0 0 0.25 -0.6332 -0.7715 0.0624 --0.544895 -0.83147 0.108386 0.03125 0.1875 -0.6332 -0.7715 0.0624 --0.707107 -0.707107 -0 0 0.25 -0.6332 -0.7715 0.0624 --0.55557 -0.83147 -0 0 0.1875 -0.6332 -0.7715 0.0624 --0.906127 0.382683 0.18024 0.03125 0.625 -0.8786 0.4696 0.0865 --0.815493 0.55557 0.162211 0.03125 0.6875 -0.8786 0.4696 0.0865 --0.831469 0.55557 -0 0 0.6875 -0.8786 0.4696 0.0865 --0.906127 0.382683 0.18024 0.03125 0.625 -0.8786 0.4696 0.0865 --0.831469 0.55557 -0 0 0.6875 -0.8786 0.4696 0.0865 --0.923879 0.382683 -0 0 0.625 -0.8786 0.4696 0.0865 --0.55557 0.83147 -0 1 0.8125 -0.4709 0.881 -0.0464 --0.382683 0.92388 -0 1 0.875 -0.4709 0.881 -0.0464 --0.37533 0.92388 -0.074658 0.96875 0.875 -0.4709 0.881 -0.0464 --0.55557 0.83147 -0 1 0.8125 -0.4709 0.881 -0.0464 --0.37533 0.92388 -0.074658 0.96875 0.875 -0.4709 0.881 -0.0464 --0.544895 0.83147 -0.108386 0.96875 0.8125 -0.4709 0.881 -0.0464 --0.831469 -0.55557 -0 1 0.3125 -0.8786 -0.4696 -0.0865 --0.923879 -0.382683 -0 1 0.375 -0.8786 -0.4696 -0.0865 --0.906127 -0.382683 -0.18024 0.96875 0.375 -0.8786 -0.4696 -0.0865 --0.831469 -0.55557 -0 1 0.3125 -0.8786 -0.4696 -0.0865 --0.906127 -0.382683 -0.18024 0.96875 0.375 -0.8786 -0.4696 -0.0865 --0.815493 -0.55557 -0.162212 0.96875 0.3125 -0.8786 -0.4696 -0.0865 --0.707107 0.707107 -0 1 0.75 -0.6332 0.7715 -0.0624 --0.55557 0.83147 -0 1 0.8125 -0.6332 0.7715 -0.0624 --0.544895 0.83147 -0.108386 0.96875 0.8125 -0.6332 0.7715 -0.0624 --0.707107 0.707107 -0 1 0.75 -0.6332 0.7715 -0.0624 --0.544895 0.83147 -0.108386 0.96875 0.8125 -0.6332 0.7715 -0.0624 --0.69352 0.707107 -0.13795 0.96875 0.75 -0.6332 0.7715 -0.0624 --0.707107 -0.707107 -0 1 0.25 -0.7708 -0.6326 -0.0759 --0.831469 -0.55557 -0 1 0.3125 -0.7708 -0.6326 -0.0759 --0.815493 -0.55557 -0.162212 0.96875 0.3125 -0.7708 -0.6326 -0.0759 --0.707107 -0.707107 -0 1 0.25 -0.7708 -0.6326 -0.0759 --0.815493 -0.55557 -0.162212 0.96875 0.3125 -0.7708 -0.6326 -0.0759 --0.69352 -0.707107 -0.13795 0.96875 0.25 -0.7708 -0.6326 -0.0759 --0.831469 0.55557 -0 1 0.6875 -0.7708 0.6326 -0.0759 --0.707107 0.707107 -0 1 0.75 -0.7708 0.6326 -0.0759 --0.69352 0.707107 -0.13795 0.96875 0.75 -0.7708 0.6326 -0.0759 --0.831469 0.55557 -0 1 0.6875 -0.7708 0.6326 -0.0759 --0.69352 0.707107 -0.13795 0.96875 0.75 -0.7708 0.6326 -0.0759 --0.815493 0.55557 -0.162212 0.96875 0.6875 -0.7708 0.6326 -0.0759 --0.55557 -0.83147 -0 1 0.1875 -0.6332 -0.7715 -0.0624 --0.707107 -0.707107 -0 1 0.25 -0.6332 -0.7715 -0.0624 --0.69352 -0.707107 -0.13795 0.96875 0.25 -0.6332 -0.7715 -0.0624 --0.55557 -0.83147 -0 1 0.1875 -0.6332 -0.7715 -0.0624 --0.69352 -0.707107 -0.13795 0.96875 0.25 -0.6332 -0.7715 -0.0624 --0.544895 -0.83147 -0.108386 0.96875 0.1875 -0.6332 -0.7715 -0.0624 --0.923879 0.382683 -0 1 0.625 -0.8786 0.4696 -0.0865 --0.831469 0.55557 -0 1 0.6875 -0.8786 0.4696 -0.0865 --0.815493 0.55557 -0.162212 0.96875 0.6875 -0.8786 0.4696 -0.0865 --0.923879 0.382683 -0 1 0.625 -0.8786 0.4696 -0.0865 --0.815493 0.55557 -0.162212 0.96875 0.6875 -0.8786 0.4696 -0.0865 --0.906127 0.382683 -0.18024 0.96875 0.625 -0.8786 0.4696 -0.0865 --0.382683 -0.92388 -0 1 0.125 -0.4709 -0.881 -0.0464 --0.55557 -0.83147 -0 1 0.1875 -0.4709 -0.881 -0.0464 --0.544895 -0.83147 -0.108386 0.96875 0.1875 -0.4709 -0.881 -0.0464 --0.382683 -0.92388 -0 1 0.125 -0.4709 -0.881 -0.0464 --0.544895 -0.83147 -0.108386 0.96875 0.1875 -0.4709 -0.881 -0.0464 --0.37533 -0.92388 -0.074658 0.96875 0.125 -0.4709 -0.881 -0.0464 --0.980785 0.19509 -0 1 0.5625 -0.9527 0.289 -0.0938 --0.923879 0.382683 -0 1 0.625 -0.9527 0.289 -0.0938 --0.906127 0.382683 -0.18024 0.96875 0.625 -0.9527 0.289 -0.0938 --0.980785 0.19509 -0 1 0.5625 -0.9527 0.289 -0.0938 --0.906127 0.382683 -0.18024 0.96875 0.625 -0.9527 0.289 -0.0938 --0.961939 0.19509 -0.191342 0.96875 0.5625 -0.9527 0.289 -0.0938 --0.19509 -0.980785 -0 1 0.0625 -0.2902 -0.9565 -0.0286 --0.382683 -0.92388 -0 1 0.125 -0.2902 -0.9565 -0.0286 --0.37533 -0.92388 -0.074658 0.96875 0.125 -0.2902 -0.9565 -0.0286 --0.19509 -0.980785 -0 1 0.0625 -0.2902 -0.9565 -0.0286 --0.37533 -0.92388 -0.074658 0.96875 0.125 -0.2902 -0.9565 -0.0286 --0.191342 -0.980785 -0.03806 0.96875 0.0625 -0.2902 -0.9565 -0.0286 --0.999999 0 -0 1 0.5 -0.9904 0.0975 -0.0976 --0.980785 0.19509 -0 1 0.5625 -0.9904 0.0975 -0.0976 --0.961939 0.19509 -0.191342 0.96875 0.5625 -0.9904 0.0975 -0.0976 --0.999999 0 -0 1 0.5 -0.9904 0.0975 -0.0976 --0.961939 0.19509 -0.191342 0.96875 0.5625 -0.9904 0.0975 -0.0976 --0.980784 0 -0.195091 0.96875 0.5 -0.9904 0.0975 -0.0976 --0.19509 0.980785 -0 1 0.9375 -0.098 0.9951 -0.0097 -0 1 0 0.984375 1 -0.098 0.9951 -0.0097 --0.191342 0.980785 -0.03806 0.96875 0.9375 -0.098 0.9951 -0.0097 -0 -1 0 0.984375 0 -0.098 -0.9951 -0.0097 --0.19509 -0.980785 -0 1 0.0625 -0.098 -0.9951 -0.0097 --0.191342 -0.980785 -0.03806 0.96875 0.0625 -0.098 -0.9951 -0.0097 --0.980785 -0.19509 -0 1 0.4375 -0.9904 -0.0975 -0.0976 --0.999999 0 -0 1 0.5 -0.9904 -0.0975 -0.0976 --0.980784 0 -0.195091 0.96875 0.5 -0.9904 -0.0975 -0.0976 --0.980785 -0.19509 -0 1 0.4375 -0.9904 -0.0975 -0.0976 --0.980784 0 -0.195091 0.96875 0.5 -0.9904 -0.0975 -0.0976 --0.961939 -0.19509 -0.191342 0.96875 0.4375 -0.9904 -0.0975 -0.0976 --0.382683 0.92388 -0 1 0.875 -0.2902 0.9565 -0.0286 --0.19509 0.980785 -0 1 0.9375 -0.2902 0.9565 -0.0286 --0.191342 0.980785 -0.03806 0.96875 0.9375 -0.2902 0.9565 -0.0286 --0.382683 0.92388 -0 1 0.875 -0.2902 0.9565 -0.0286 --0.191342 0.980785 -0.03806 0.96875 0.9375 -0.2902 0.9565 -0.0286 --0.37533 0.92388 -0.074658 0.96875 0.875 -0.2902 0.9565 -0.0286 --0.923879 -0.382683 -0 1 0.375 -0.9527 -0.289 -0.0938 --0.980785 -0.19509 -0 1 0.4375 -0.9527 -0.289 -0.0938 --0.961939 -0.19509 -0.191342 0.96875 0.4375 -0.9527 -0.289 -0.0938 --0.923879 -0.382683 -0 1 0.375 -0.9527 -0.289 -0.0938 --0.961939 -0.19509 -0.191342 0.96875 0.4375 -0.9527 -0.289 -0.0938 --0.906127 -0.382683 -0.18024 0.96875 0.375 -0.9527 -0.289 -0.0938 --0.961939 0.19509 -0.191342 0.96875 0.5625 -0.9161 0.289 -0.2779 --0.906127 0.382683 -0.18024 0.96875 0.625 -0.9161 0.289 -0.2779 --0.853553 0.382683 -0.353553 0.9375 0.625 -0.9161 0.289 -0.2779 --0.961939 0.19509 -0.191342 0.96875 0.5625 -0.9161 0.289 -0.2779 --0.853553 0.382683 -0.353553 0.9375 0.625 -0.9161 0.289 -0.2779 --0.906127 0.19509 -0.37533 0.9375 0.5625 -0.9161 0.289 -0.2779 --0.191342 -0.980785 -0.03806 0.96875 0.0625 -0.279 -0.9565 -0.0846 --0.37533 -0.92388 -0.074658 0.96875 0.125 -0.279 -0.9565 -0.0846 --0.353553 -0.92388 -0.146447 0.9375 0.125 -0.279 -0.9565 -0.0846 --0.191342 -0.980785 -0.03806 0.96875 0.0625 -0.279 -0.9565 -0.0846 --0.353553 -0.92388 -0.146447 0.9375 0.125 -0.279 -0.9565 -0.0846 --0.18024 -0.980785 -0.074658 0.9375 0.0625 -0.279 -0.9565 -0.0846 --0.980784 0 -0.195091 0.96875 0.5 -0.9524 0.0975 -0.2889 --0.961939 0.19509 -0.191342 0.96875 0.5625 -0.9524 0.0975 -0.2889 --0.906127 0.19509 -0.37533 0.9375 0.5625 -0.9524 0.0975 -0.2889 --0.980784 0 -0.195091 0.96875 0.5 -0.9524 0.0975 -0.2889 --0.906127 0.19509 -0.37533 0.9375 0.5625 -0.9524 0.0975 -0.2889 --0.923878 0 -0.382683 0.9375 0.5 -0.9524 0.0975 -0.2889 --0.191342 0.980785 -0.03806 0.96875 0.9375 -0.0942 0.9951 -0.0286 -0 1 0 0.953125 1 -0.0942 0.9951 -0.0286 --0.18024 0.980785 -0.074658 0.9375 0.9375 -0.0942 0.9951 -0.0286 -0 -1 0 0.953125 0 -0.0942 -0.9951 -0.0286 --0.191342 -0.980785 -0.03806 0.96875 0.0625 -0.0942 -0.9951 -0.0286 --0.18024 -0.980785 -0.074658 0.9375 0.0625 -0.0942 -0.9951 -0.0286 --0.961939 -0.19509 -0.191342 0.96875 0.4375 -0.9524 -0.0975 -0.2889 --0.980784 0 -0.195091 0.96875 0.5 -0.9524 -0.0975 -0.2889 --0.923878 0 -0.382683 0.9375 0.5 -0.9524 -0.0975 -0.2889 --0.961939 -0.19509 -0.191342 0.96875 0.4375 -0.9524 -0.0975 -0.2889 --0.923878 0 -0.382683 0.9375 0.5 -0.9524 -0.0975 -0.2889 --0.906127 -0.19509 -0.37533 0.9375 0.4375 -0.9524 -0.0975 -0.2889 --0.37533 0.92388 -0.074658 0.96875 0.875 -0.279 0.9565 -0.0846 --0.191342 0.980785 -0.03806 0.96875 0.9375 -0.279 0.9565 -0.0846 --0.18024 0.980785 -0.074658 0.9375 0.9375 -0.279 0.9565 -0.0846 --0.37533 0.92388 -0.074658 0.96875 0.875 -0.279 0.9565 -0.0846 --0.18024 0.980785 -0.074658 0.9375 0.9375 -0.279 0.9565 -0.0846 --0.353553 0.92388 -0.146447 0.9375 0.875 -0.279 0.9565 -0.0846 --0.906127 -0.382683 -0.18024 0.96875 0.375 -0.9161 -0.289 -0.2779 --0.961939 -0.19509 -0.191342 0.96875 0.4375 -0.9161 -0.289 -0.2779 --0.906127 -0.19509 -0.37533 0.9375 0.4375 -0.9161 -0.289 -0.2779 --0.906127 -0.382683 -0.18024 0.96875 0.375 -0.9161 -0.289 -0.2779 --0.906127 -0.19509 -0.37533 0.9375 0.4375 -0.9161 -0.289 -0.2779 --0.853553 -0.382683 -0.353553 0.9375 0.375 -0.9161 -0.289 -0.2779 --0.544895 0.83147 -0.108386 0.96875 0.8125 -0.4528 0.881 -0.1374 --0.37533 0.92388 -0.074658 0.96875 0.875 -0.4528 0.881 -0.1374 --0.353553 0.92388 -0.146447 0.9375 0.875 -0.4528 0.881 -0.1374 --0.544895 0.83147 -0.108386 0.96875 0.8125 -0.4528 0.881 -0.1374 --0.353553 0.92388 -0.146447 0.9375 0.875 -0.4528 0.881 -0.1374 --0.513279 0.83147 -0.212607 0.9375 0.8125 -0.4528 0.881 -0.1374 --0.815493 -0.55557 -0.162212 0.96875 0.3125 -0.8448 -0.4696 -0.2563 --0.906127 -0.382683 -0.18024 0.96875 0.375 -0.8448 -0.4696 -0.2563 --0.853553 -0.382683 -0.353553 0.9375 0.375 -0.8448 -0.4696 -0.2563 --0.815493 -0.55557 -0.162212 0.96875 0.3125 -0.8448 -0.4696 -0.2563 --0.853553 -0.382683 -0.353553 0.9375 0.375 -0.8448 -0.4696 -0.2563 --0.768177 -0.55557 -0.31819 0.9375 0.3125 -0.8448 -0.4696 -0.2563 --0.69352 0.707107 -0.13795 0.96875 0.75 -0.6088 0.7715 -0.1847 --0.544895 0.83147 -0.108386 0.96875 0.8125 -0.6088 0.7715 -0.1847 --0.513279 0.83147 -0.212607 0.9375 0.8125 -0.6088 0.7715 -0.1847 --0.69352 0.707107 -0.13795 0.96875 0.75 -0.6088 0.7715 -0.1847 --0.513279 0.83147 -0.212607 0.9375 0.8125 -0.6088 0.7715 -0.1847 --0.653281 0.707107 -0.270598 0.9375 0.75 -0.6088 0.7715 -0.1847 --0.69352 -0.707107 -0.13795 0.96875 0.25 -0.7412 -0.6326 -0.2248 --0.815493 -0.55557 -0.162212 0.96875 0.3125 -0.7412 -0.6326 -0.2248 --0.768177 -0.55557 -0.31819 0.9375 0.3125 -0.7412 -0.6326 -0.2248 --0.69352 -0.707107 -0.13795 0.96875 0.25 -0.7412 -0.6326 -0.2248 --0.768177 -0.55557 -0.31819 0.9375 0.3125 -0.7412 -0.6326 -0.2248 --0.653281 -0.707107 -0.270598 0.9375 0.25 -0.7412 -0.6326 -0.2248 --0.815493 0.55557 -0.162212 0.96875 0.6875 -0.7412 0.6326 -0.2248 --0.69352 0.707107 -0.13795 0.96875 0.75 -0.7412 0.6326 -0.2248 --0.653281 0.707107 -0.270598 0.9375 0.75 -0.7412 0.6326 -0.2248 --0.815493 0.55557 -0.162212 0.96875 0.6875 -0.7412 0.6326 -0.2248 --0.653281 0.707107 -0.270598 0.9375 0.75 -0.7412 0.6326 -0.2248 --0.768177 0.55557 -0.31819 0.9375 0.6875 -0.7412 0.6326 -0.2248 --0.544895 -0.83147 -0.108386 0.96875 0.1875 -0.6088 -0.7715 -0.1847 --0.69352 -0.707107 -0.13795 0.96875 0.25 -0.6088 -0.7715 -0.1847 --0.653281 -0.707107 -0.270598 0.9375 0.25 -0.6088 -0.7715 -0.1847 --0.544895 -0.83147 -0.108386 0.96875 0.1875 -0.6088 -0.7715 -0.1847 --0.653281 -0.707107 -0.270598 0.9375 0.25 -0.6088 -0.7715 -0.1847 --0.513279 -0.83147 -0.212607 0.9375 0.1875 -0.6088 -0.7715 -0.1847 --0.906127 0.382683 -0.18024 0.96875 0.625 -0.8448 0.4696 -0.2563 --0.815493 0.55557 -0.162212 0.96875 0.6875 -0.8448 0.4696 -0.2563 --0.768177 0.55557 -0.31819 0.9375 0.6875 -0.8448 0.4696 -0.2563 --0.906127 0.382683 -0.18024 0.96875 0.625 -0.8448 0.4696 -0.2563 --0.768177 0.55557 -0.31819 0.9375 0.6875 -0.8448 0.4696 -0.2563 --0.853553 0.382683 -0.353553 0.9375 0.625 -0.8448 0.4696 -0.2563 --0.37533 -0.92388 -0.074658 0.96875 0.125 -0.4528 -0.881 -0.1374 --0.544895 -0.83147 -0.108386 0.96875 0.1875 -0.4528 -0.881 -0.1374 --0.513279 -0.83147 -0.212607 0.9375 0.1875 -0.4528 -0.881 -0.1374 --0.37533 -0.92388 -0.074658 0.96875 0.125 -0.4528 -0.881 -0.1374 --0.513279 -0.83147 -0.212607 0.9375 0.1875 -0.4528 -0.881 -0.1374 --0.353553 -0.92388 -0.146447 0.9375 0.125 -0.4528 -0.881 -0.1374 --0.768177 -0.55557 -0.31819 0.9375 0.3125 -0.7786 -0.4696 -0.4162 --0.853553 -0.382683 -0.353553 0.9375 0.375 -0.7786 -0.4696 -0.4162 --0.768177 -0.382683 -0.51328 0.90625 0.375 -0.7786 -0.4696 -0.4162 --0.768177 -0.55557 -0.31819 0.9375 0.3125 -0.7786 -0.4696 -0.4162 --0.768177 -0.382683 -0.51328 0.90625 0.375 -0.7786 -0.4696 -0.4162 --0.691341 -0.55557 -0.46194 0.90625 0.3125 -0.7786 -0.4696 -0.4162 --0.653281 0.707107 -0.270598 0.9375 0.75 -0.5611 0.7715 -0.2999 --0.513279 0.83147 -0.212607 0.9375 0.8125 -0.5611 0.7715 -0.2999 --0.461939 0.83147 -0.308658 0.90625 0.8125 -0.5611 0.7715 -0.2999 --0.653281 0.707107 -0.270598 0.9375 0.75 -0.5611 0.7715 -0.2999 --0.461939 0.83147 -0.308658 0.90625 0.8125 -0.5611 0.7715 -0.2999 --0.587938 0.707107 -0.392847 0.90625 0.75 -0.5611 0.7715 -0.2999 --0.653281 -0.707107 -0.270598 0.9375 0.25 -0.6831 -0.6326 -0.3651 --0.768177 -0.55557 -0.31819 0.9375 0.3125 -0.6831 -0.6326 -0.3651 --0.691341 -0.55557 -0.46194 0.90625 0.3125 -0.6831 -0.6326 -0.3651 --0.653281 -0.707107 -0.270598 0.9375 0.25 -0.6831 -0.6326 -0.3651 --0.691341 -0.55557 -0.46194 0.90625 0.3125 -0.6831 -0.6326 -0.3651 --0.587938 -0.707107 -0.392847 0.90625 0.25 -0.6831 -0.6326 -0.3651 --0.768177 0.55557 -0.31819 0.9375 0.6875 -0.6831 0.6326 -0.3651 --0.653281 0.707107 -0.270598 0.9375 0.75 -0.6831 0.6326 -0.3651 --0.587938 0.707107 -0.392847 0.90625 0.75 -0.6831 0.6326 -0.3651 --0.768177 0.55557 -0.31819 0.9375 0.6875 -0.6831 0.6326 -0.3651 --0.587938 0.707107 -0.392847 0.90625 0.75 -0.6831 0.6326 -0.3651 --0.691341 0.55557 -0.46194 0.90625 0.6875 -0.6831 0.6326 -0.3651 --0.513279 -0.83147 -0.212607 0.9375 0.1875 -0.5611 -0.7715 -0.2999 --0.653281 -0.707107 -0.270598 0.9375 0.25 -0.5611 -0.7715 -0.2999 --0.587938 -0.707107 -0.392847 0.90625 0.25 -0.5611 -0.7715 -0.2999 --0.513279 -0.83147 -0.212607 0.9375 0.1875 -0.5611 -0.7715 -0.2999 --0.587938 -0.707107 -0.392847 0.90625 0.25 -0.5611 -0.7715 -0.2999 --0.461939 -0.83147 -0.308658 0.90625 0.1875 -0.5611 -0.7715 -0.2999 --0.853553 0.382683 -0.353553 0.9375 0.625 -0.7786 0.4696 -0.4162 --0.768177 0.55557 -0.31819 0.9375 0.6875 -0.7786 0.4696 -0.4162 --0.691341 0.55557 -0.46194 0.90625 0.6875 -0.7786 0.4696 -0.4162 --0.853553 0.382683 -0.353553 0.9375 0.625 -0.7786 0.4696 -0.4162 --0.691341 0.55557 -0.46194 0.90625 0.6875 -0.7786 0.4696 -0.4162 --0.768177 0.382683 -0.51328 0.90625 0.625 -0.7786 0.4696 -0.4162 --0.353553 -0.92388 -0.146447 0.9375 0.125 -0.4173 -0.881 -0.2231 --0.513279 -0.83147 -0.212607 0.9375 0.1875 -0.4173 -0.881 -0.2231 --0.461939 -0.83147 -0.308658 0.90625 0.1875 -0.4173 -0.881 -0.2231 --0.353553 -0.92388 -0.146447 0.9375 0.125 -0.4173 -0.881 -0.2231 --0.461939 -0.83147 -0.308658 0.90625 0.1875 -0.4173 -0.881 -0.2231 --0.318189 -0.92388 -0.212607 0.90625 0.125 -0.4173 -0.881 -0.2231 --0.906127 0.19509 -0.37533 0.9375 0.5625 -0.8443 0.289 -0.4513 --0.853553 0.382683 -0.353553 0.9375 0.625 -0.8443 0.289 -0.4513 --0.768177 0.382683 -0.51328 0.90625 0.625 -0.8443 0.289 -0.4513 --0.906127 0.19509 -0.37533 0.9375 0.5625 -0.8443 0.289 -0.4513 --0.768177 0.382683 -0.51328 0.90625 0.625 -0.8443 0.289 -0.4513 --0.815493 0.19509 -0.544895 0.90625 0.5625 -0.8443 0.289 -0.4513 --0.18024 -0.980785 -0.074658 0.9375 0.0625 -0.2571 -0.9565 -0.1374 --0.353553 -0.92388 -0.146447 0.9375 0.125 -0.2571 -0.9565 -0.1374 --0.318189 -0.92388 -0.212607 0.90625 0.125 -0.2571 -0.9565 -0.1374 --0.18024 -0.980785 -0.074658 0.9375 0.0625 -0.2571 -0.9565 -0.1374 --0.318189 -0.92388 -0.212607 0.90625 0.125 -0.2571 -0.9565 -0.1374 --0.162212 -0.980785 -0.108386 0.90625 0.0625 -0.2571 -0.9565 -0.1374 --0.923878 0 -0.382683 0.9375 0.5 -0.8777 0.0975 -0.4691 --0.906127 0.19509 -0.37533 0.9375 0.5625 -0.8777 0.0975 -0.4691 --0.815493 0.19509 -0.544895 0.90625 0.5625 -0.8777 0.0975 -0.4691 --0.923878 0 -0.382683 0.9375 0.5 -0.8777 0.0975 -0.4691 --0.815493 0.19509 -0.544895 0.90625 0.5625 -0.8777 0.0975 -0.4691 --0.831468 0 -0.55557 0.90625 0.5 -0.8777 0.0975 -0.4691 --0.18024 0.980785 -0.074658 0.9375 0.9375 -0.0869 0.9951 -0.0464 -0 1 0 0.921875 1 -0.0869 0.9951 -0.0464 --0.162212 0.980785 -0.108386 0.90625 0.9375 -0.0869 0.9951 -0.0464 -0 -1 0 0.921875 0 -0.0869 -0.9951 -0.0464 --0.18024 -0.980785 -0.074658 0.9375 0.0625 -0.0869 -0.9951 -0.0464 --0.162212 -0.980785 -0.108386 0.90625 0.0625 -0.0869 -0.9951 -0.0464 --0.906127 -0.19509 -0.37533 0.9375 0.4375 -0.8777 -0.0975 -0.4691 --0.923878 0 -0.382683 0.9375 0.5 -0.8777 -0.0975 -0.4691 --0.831468 0 -0.55557 0.90625 0.5 -0.8777 -0.0975 -0.4691 --0.906127 -0.19509 -0.37533 0.9375 0.4375 -0.8777 -0.0975 -0.4691 --0.831468 0 -0.55557 0.90625 0.5 -0.8777 -0.0975 -0.4691 --0.815493 -0.19509 -0.544895 0.90625 0.4375 -0.8777 -0.0975 -0.4691 --0.353553 0.92388 -0.146447 0.9375 0.875 -0.2571 0.9565 -0.1374 --0.18024 0.980785 -0.074658 0.9375 0.9375 -0.2571 0.9565 -0.1374 --0.162212 0.980785 -0.108386 0.90625 0.9375 -0.2571 0.9565 -0.1374 --0.353553 0.92388 -0.146447 0.9375 0.875 -0.2571 0.9565 -0.1374 --0.162212 0.980785 -0.108386 0.90625 0.9375 -0.2571 0.9565 -0.1374 --0.318189 0.92388 -0.212607 0.90625 0.875 -0.2571 0.9565 -0.1374 --0.853553 -0.382683 -0.353553 0.9375 0.375 -0.8443 -0.289 -0.4513 --0.906127 -0.19509 -0.37533 0.9375 0.4375 -0.8443 -0.289 -0.4513 --0.815493 -0.19509 -0.544895 0.90625 0.4375 -0.8443 -0.289 -0.4513 --0.853553 -0.382683 -0.353553 0.9375 0.375 -0.8443 -0.289 -0.4513 --0.815493 -0.19509 -0.544895 0.90625 0.4375 -0.8443 -0.289 -0.4513 --0.768177 -0.382683 -0.51328 0.90625 0.375 -0.8443 -0.289 -0.4513 --0.513279 0.83147 -0.212607 0.9375 0.8125 -0.4173 0.881 -0.2231 --0.353553 0.92388 -0.146447 0.9375 0.875 -0.4173 0.881 -0.2231 --0.318189 0.92388 -0.212607 0.90625 0.875 -0.4173 0.881 -0.2231 --0.513279 0.83147 -0.212607 0.9375 0.8125 -0.4173 0.881 -0.2231 --0.318189 0.92388 -0.212607 0.90625 0.875 -0.4173 0.881 -0.2231 --0.461939 0.83147 -0.308658 0.90625 0.8125 -0.4173 0.881 -0.2231 --0.162212 -0.980785 -0.108386 0.90625 0.0625 -0.2254 -0.9565 -0.185 --0.318189 -0.92388 -0.212607 0.90625 0.125 -0.2254 -0.9565 -0.185 --0.270598 -0.92388 -0.270598 0.875 0.125 -0.2254 -0.9565 -0.185 --0.162212 -0.980785 -0.108386 0.90625 0.0625 -0.2254 -0.9565 -0.185 --0.270598 -0.92388 -0.270598 0.875 0.125 -0.2254 -0.9565 -0.185 --0.13795 -0.980785 -0.13795 0.875 0.0625 -0.2254 -0.9565 -0.185 --0.831468 0 -0.55557 0.90625 0.5 -0.7693 0.0975 -0.6314 --0.815493 0.19509 -0.544895 0.90625 0.5625 -0.7693 0.0975 -0.6314 --0.693519 0.19509 -0.69352 0.875 0.5625 -0.7693 0.0975 -0.6314 --0.831468 0 -0.55557 0.90625 0.5 -0.7693 0.0975 -0.6314 --0.693519 0.19509 -0.69352 0.875 0.5625 -0.7693 0.0975 -0.6314 --0.707106 0 -0.707106 0.875 0.5 -0.7693 0.0975 -0.6314 --0.162212 0.980785 -0.108386 0.90625 0.9375 -0.0761 0.9951 -0.0625 -0 1 0 0.890625 1 -0.0761 0.9951 -0.0625 --0.13795 0.980785 -0.13795 0.875 0.9375 -0.0761 0.9951 -0.0625 -0 -1 0 0.890625 0 -0.0761 -0.9951 -0.0625 --0.162212 -0.980785 -0.108386 0.90625 0.0625 -0.0761 -0.9951 -0.0625 --0.13795 -0.980785 -0.13795 0.875 0.0625 -0.0761 -0.9951 -0.0625 --0.815493 -0.19509 -0.544895 0.90625 0.4375 -0.7693 -0.0975 -0.6314 --0.831468 0 -0.55557 0.90625 0.5 -0.7693 -0.0975 -0.6314 --0.707106 0 -0.707106 0.875 0.5 -0.7693 -0.0975 -0.6314 --0.815493 -0.19509 -0.544895 0.90625 0.4375 -0.7693 -0.0975 -0.6314 --0.707106 0 -0.707106 0.875 0.5 -0.7693 -0.0975 -0.6314 --0.693519 -0.19509 -0.69352 0.875 0.4375 -0.7693 -0.0975 -0.6314 --0.318189 0.92388 -0.212607 0.90625 0.875 -0.2254 0.9565 -0.185 --0.162212 0.980785 -0.108386 0.90625 0.9375 -0.2254 0.9565 -0.185 --0.13795 0.980785 -0.13795 0.875 0.9375 -0.2254 0.9565 -0.185 --0.318189 0.92388 -0.212607 0.90625 0.875 -0.2254 0.9565 -0.185 --0.13795 0.980785 -0.13795 0.875 0.9375 -0.2254 0.9565 -0.185 --0.270598 0.92388 -0.270598 0.875 0.875 -0.2254 0.9565 -0.185 --0.768177 -0.382683 -0.51328 0.90625 0.375 -0.74 -0.289 -0.6073 --0.815493 -0.19509 -0.544895 0.90625 0.4375 -0.74 -0.289 -0.6073 --0.693519 -0.19509 -0.69352 0.875 0.4375 -0.74 -0.289 -0.6073 --0.768177 -0.382683 -0.51328 0.90625 0.375 -0.74 -0.289 -0.6073 --0.693519 -0.19509 -0.69352 0.875 0.4375 -0.74 -0.289 -0.6073 --0.653281 -0.382683 -0.653281 0.875 0.375 -0.74 -0.289 -0.6073 --0.461939 0.83147 -0.308658 0.90625 0.8125 -0.3658 0.881 -0.3002 --0.318189 0.92388 -0.212607 0.90625 0.875 -0.3658 0.881 -0.3002 --0.270598 0.92388 -0.270598 0.875 0.875 -0.3658 0.881 -0.3002 --0.461939 0.83147 -0.308658 0.90625 0.8125 -0.3658 0.881 -0.3002 --0.270598 0.92388 -0.270598 0.875 0.875 -0.3658 0.881 -0.3002 --0.392847 0.83147 -0.392847 0.875 0.8125 -0.3658 0.881 -0.3002 --0.691341 -0.55557 -0.46194 0.90625 0.3125 -0.6825 -0.4696 -0.5601 --0.768177 -0.382683 -0.51328 0.90625 0.375 -0.6825 -0.4696 -0.5601 --0.653281 -0.382683 -0.653281 0.875 0.375 -0.6825 -0.4696 -0.5601 --0.691341 -0.55557 -0.46194 0.90625 0.3125 -0.6825 -0.4696 -0.5601 --0.653281 -0.382683 -0.653281 0.875 0.375 -0.6825 -0.4696 -0.5601 --0.587937 -0.55557 -0.587938 0.875 0.3125 -0.6825 -0.4696 -0.5601 --0.587938 0.707107 -0.392847 0.90625 0.75 -0.4918 0.7715 -0.4036 --0.461939 0.83147 -0.308658 0.90625 0.8125 -0.4918 0.7715 -0.4036 --0.392847 0.83147 -0.392847 0.875 0.8125 -0.4918 0.7715 -0.4036 --0.587938 0.707107 -0.392847 0.90625 0.75 -0.4918 0.7715 -0.4036 --0.392847 0.83147 -0.392847 0.875 0.8125 -0.4918 0.7715 -0.4036 --0.5 0.707107 -0.5 0.875 0.75 -0.4918 0.7715 -0.4036 --0.587938 -0.707107 -0.392847 0.90625 0.25 -0.5987 -0.6326 -0.4913 --0.691341 -0.55557 -0.46194 0.90625 0.3125 -0.5987 -0.6326 -0.4913 --0.587937 -0.55557 -0.587938 0.875 0.3125 -0.5987 -0.6326 -0.4913 --0.587938 -0.707107 -0.392847 0.90625 0.25 -0.5987 -0.6326 -0.4913 --0.587937 -0.55557 -0.587938 0.875 0.3125 -0.5987 -0.6326 -0.4913 --0.5 -0.707107 -0.5 0.875 0.25 -0.5987 -0.6326 -0.4913 --0.691341 0.55557 -0.46194 0.90625 0.6875 -0.5987 0.6326 -0.4913 --0.587938 0.707107 -0.392847 0.90625 0.75 -0.5987 0.6326 -0.4913 --0.5 0.707107 -0.5 0.875 0.75 -0.5987 0.6326 -0.4913 --0.691341 0.55557 -0.46194 0.90625 0.6875 -0.5987 0.6326 -0.4913 --0.5 0.707107 -0.5 0.875 0.75 -0.5987 0.6326 -0.4913 --0.587937 0.55557 -0.587938 0.875 0.6875 -0.5987 0.6326 -0.4913 --0.461939 -0.83147 -0.308658 0.90625 0.1875 -0.4918 -0.7715 -0.4036 --0.587938 -0.707107 -0.392847 0.90625 0.25 -0.4918 -0.7715 -0.4036 --0.5 -0.707107 -0.5 0.875 0.25 -0.4918 -0.7715 -0.4036 --0.461939 -0.83147 -0.308658 0.90625 0.1875 -0.4918 -0.7715 -0.4036 --0.5 -0.707107 -0.5 0.875 0.25 -0.4918 -0.7715 -0.4036 --0.392847 -0.83147 -0.392847 0.875 0.1875 -0.4918 -0.7715 -0.4036 --0.768177 0.382683 -0.51328 0.90625 0.625 -0.6825 0.4696 -0.5601 --0.691341 0.55557 -0.46194 0.90625 0.6875 -0.6825 0.4696 -0.5601 --0.587937 0.55557 -0.587938 0.875 0.6875 -0.6825 0.4696 -0.5601 --0.768177 0.382683 -0.51328 0.90625 0.625 -0.6825 0.4696 -0.5601 --0.587937 0.55557 -0.587938 0.875 0.6875 -0.6825 0.4696 -0.5601 --0.653281 0.382683 -0.653281 0.875 0.625 -0.6825 0.4696 -0.5601 --0.318189 -0.92388 -0.212607 0.90625 0.125 -0.3658 -0.881 -0.3002 --0.461939 -0.83147 -0.308658 0.90625 0.1875 -0.3658 -0.881 -0.3002 --0.392847 -0.83147 -0.392847 0.875 0.1875 -0.3658 -0.881 -0.3002 --0.318189 -0.92388 -0.212607 0.90625 0.125 -0.3658 -0.881 -0.3002 --0.392847 -0.83147 -0.392847 0.875 0.1875 -0.3658 -0.881 -0.3002 --0.270598 -0.92388 -0.270598 0.875 0.125 -0.3658 -0.881 -0.3002 --0.815493 0.19509 -0.544895 0.90625 0.5625 -0.74 0.289 -0.6073 --0.768177 0.382683 -0.51328 0.90625 0.625 -0.74 0.289 -0.6073 --0.653281 0.382683 -0.653281 0.875 0.625 -0.74 0.289 -0.6073 --0.815493 0.19509 -0.544895 0.90625 0.5625 -0.74 0.289 -0.6073 --0.653281 0.382683 -0.653281 0.875 0.625 -0.74 0.289 -0.6073 --0.693519 0.19509 -0.69352 0.875 0.5625 -0.74 0.289 -0.6073 --0.5 -0.707107 -0.5 0.875 0.25 -0.4913 -0.6326 -0.5987 --0.587937 -0.55557 -0.587938 0.875 0.3125 -0.4913 -0.6326 -0.5987 --0.461939 -0.55557 -0.691341 0.84375 0.3125 -0.4913 -0.6326 -0.5987 --0.5 -0.707107 -0.5 0.875 0.25 -0.4913 -0.6326 -0.5987 --0.461939 -0.55557 -0.691341 0.84375 0.3125 -0.4913 -0.6326 -0.5987 --0.392847 -0.707107 -0.587938 0.84375 0.25 -0.4913 -0.6326 -0.5987 --0.587937 0.55557 -0.587938 0.875 0.6875 -0.4913 0.6326 -0.5987 --0.5 0.707107 -0.5 0.875 0.75 -0.4913 0.6326 -0.5987 --0.392847 0.707107 -0.587938 0.84375 0.75 -0.4913 0.6326 -0.5987 --0.587937 0.55557 -0.587938 0.875 0.6875 -0.4913 0.6326 -0.5987 --0.392847 0.707107 -0.587938 0.84375 0.75 -0.4913 0.6326 -0.5987 --0.461939 0.55557 -0.691341 0.84375 0.6875 -0.4913 0.6326 -0.5987 --0.392847 -0.83147 -0.392847 0.875 0.1875 -0.4036 -0.7715 -0.4918 --0.5 -0.707107 -0.5 0.875 0.25 -0.4036 -0.7715 -0.4918 --0.392847 -0.707107 -0.587938 0.84375 0.25 -0.4036 -0.7715 -0.4918 --0.392847 -0.83147 -0.392847 0.875 0.1875 -0.4036 -0.7715 -0.4918 --0.392847 -0.707107 -0.587938 0.84375 0.25 -0.4036 -0.7715 -0.4918 --0.308658 -0.83147 -0.461939 0.84375 0.1875 -0.4036 -0.7715 -0.4918 --0.653281 0.382683 -0.653281 0.875 0.625 -0.5601 0.4696 -0.6825 --0.587937 0.55557 -0.587938 0.875 0.6875 -0.5601 0.4696 -0.6825 --0.461939 0.55557 -0.691341 0.84375 0.6875 -0.5601 0.4696 -0.6825 --0.653281 0.382683 -0.653281 0.875 0.625 -0.5601 0.4696 -0.6825 --0.461939 0.55557 -0.691341 0.84375 0.6875 -0.5601 0.4696 -0.6825 --0.51328 0.382683 -0.768177 0.84375 0.625 -0.5601 0.4696 -0.6825 --0.270598 -0.92388 -0.270598 0.875 0.125 -0.3002 -0.881 -0.3658 --0.392847 -0.83147 -0.392847 0.875 0.1875 -0.3002 -0.881 -0.3658 --0.308658 -0.83147 -0.461939 0.84375 0.1875 -0.3002 -0.881 -0.3658 --0.270598 -0.92388 -0.270598 0.875 0.125 -0.3002 -0.881 -0.3658 --0.308658 -0.83147 -0.461939 0.84375 0.1875 -0.3002 -0.881 -0.3658 --0.212607 -0.92388 -0.31819 0.84375 0.125 -0.3002 -0.881 -0.3658 --0.693519 0.19509 -0.69352 0.875 0.5625 -0.6073 0.289 -0.74 --0.653281 0.382683 -0.653281 0.875 0.625 -0.6073 0.289 -0.74 --0.51328 0.382683 -0.768177 0.84375 0.625 -0.6073 0.289 -0.74 --0.693519 0.19509 -0.69352 0.875 0.5625 -0.6073 0.289 -0.74 --0.51328 0.382683 -0.768177 0.84375 0.625 -0.6073 0.289 -0.74 --0.544895 0.19509 -0.815493 0.84375 0.5625 -0.6073 0.289 -0.74 --0.13795 -0.980785 -0.13795 0.875 0.0625 -0.185 -0.9565 -0.2254 --0.270598 -0.92388 -0.270598 0.875 0.125 -0.185 -0.9565 -0.2254 --0.212607 -0.92388 -0.31819 0.84375 0.125 -0.185 -0.9565 -0.2254 --0.13795 -0.980785 -0.13795 0.875 0.0625 -0.185 -0.9565 -0.2254 --0.212607 -0.92388 -0.31819 0.84375 0.125 -0.185 -0.9565 -0.2254 --0.108386 -0.980785 -0.162212 0.84375 0.0625 -0.185 -0.9565 -0.2254 --0.707106 0 -0.707106 0.875 0.5 -0.6314 0.0975 -0.7693 --0.693519 0.19509 -0.69352 0.875 0.5625 -0.6314 0.0975 -0.7693 --0.544895 0.19509 -0.815493 0.84375 0.5625 -0.6314 0.0975 -0.7693 --0.707106 0 -0.707106 0.875 0.5 -0.6314 0.0975 -0.7693 --0.544895 0.19509 -0.815493 0.84375 0.5625 -0.6314 0.0975 -0.7693 --0.555569 0 -0.831469 0.84375 0.5 -0.6314 0.0975 -0.7693 --0.13795 0.980785 -0.13795 0.875 0.9375 -0.0625 0.9951 -0.0761 -0 1 0 0.859375 1 -0.0625 0.9951 -0.0761 --0.108386 0.980785 -0.162212 0.84375 0.9375 -0.0625 0.9951 -0.0761 -0 -1 0 0.859375 0 -0.0625 -0.9951 -0.0761 --0.13795 -0.980785 -0.13795 0.875 0.0625 -0.0625 -0.9951 -0.0761 --0.108386 -0.980785 -0.162212 0.84375 0.0625 -0.0625 -0.9951 -0.0761 --0.693519 -0.19509 -0.69352 0.875 0.4375 -0.6314 -0.0975 -0.7693 --0.707106 0 -0.707106 0.875 0.5 -0.6314 -0.0975 -0.7693 --0.555569 0 -0.831469 0.84375 0.5 -0.6314 -0.0975 -0.7693 --0.693519 -0.19509 -0.69352 0.875 0.4375 -0.6314 -0.0975 -0.7693 --0.555569 0 -0.831469 0.84375 0.5 -0.6314 -0.0975 -0.7693 --0.544895 -0.19509 -0.815493 0.84375 0.4375 -0.6314 -0.0975 -0.7693 --0.270598 0.92388 -0.270598 0.875 0.875 -0.185 0.9565 -0.2254 --0.13795 0.980785 -0.13795 0.875 0.9375 -0.185 0.9565 -0.2254 --0.108386 0.980785 -0.162212 0.84375 0.9375 -0.185 0.9565 -0.2254 --0.270598 0.92388 -0.270598 0.875 0.875 -0.185 0.9565 -0.2254 --0.108386 0.980785 -0.162212 0.84375 0.9375 -0.185 0.9565 -0.2254 --0.212607 0.92388 -0.31819 0.84375 0.875 -0.185 0.9565 -0.2254 --0.653281 -0.382683 -0.653281 0.875 0.375 -0.6073 -0.289 -0.74 --0.693519 -0.19509 -0.69352 0.875 0.4375 -0.6073 -0.289 -0.74 --0.544895 -0.19509 -0.815493 0.84375 0.4375 -0.6073 -0.289 -0.74 --0.653281 -0.382683 -0.653281 0.875 0.375 -0.6073 -0.289 -0.74 --0.544895 -0.19509 -0.815493 0.84375 0.4375 -0.6073 -0.289 -0.74 --0.51328 -0.382683 -0.768177 0.84375 0.375 -0.6073 -0.289 -0.74 --0.392847 0.83147 -0.392847 0.875 0.8125 -0.3002 0.881 -0.3658 --0.270598 0.92388 -0.270598 0.875 0.875 -0.3002 0.881 -0.3658 --0.212607 0.92388 -0.31819 0.84375 0.875 -0.3002 0.881 -0.3658 --0.392847 0.83147 -0.392847 0.875 0.8125 -0.3002 0.881 -0.3658 --0.212607 0.92388 -0.31819 0.84375 0.875 -0.3002 0.881 -0.3658 --0.308658 0.83147 -0.461939 0.84375 0.8125 -0.3002 0.881 -0.3658 --0.587937 -0.55557 -0.587938 0.875 0.3125 -0.5601 -0.4696 -0.6825 --0.653281 -0.382683 -0.653281 0.875 0.375 -0.5601 -0.4696 -0.6825 --0.51328 -0.382683 -0.768177 0.84375 0.375 -0.5601 -0.4696 -0.6825 --0.587937 -0.55557 -0.587938 0.875 0.3125 -0.5601 -0.4696 -0.6825 --0.51328 -0.382683 -0.768177 0.84375 0.375 -0.5601 -0.4696 -0.6825 --0.461939 -0.55557 -0.691341 0.84375 0.3125 -0.5601 -0.4696 -0.6825 --0.5 0.707107 -0.5 0.875 0.75 -0.4036 0.7715 -0.4918 --0.392847 0.83147 -0.392847 0.875 0.8125 -0.4036 0.7715 -0.4918 --0.308658 0.83147 -0.461939 0.84375 0.8125 -0.4036 0.7715 -0.4918 --0.5 0.707107 -0.5 0.875 0.75 -0.4036 0.7715 -0.4918 --0.308658 0.83147 -0.461939 0.84375 0.8125 -0.4036 0.7715 -0.4918 --0.392847 0.707107 -0.587938 0.84375 0.75 -0.4036 0.7715 -0.4918 --0.108386 0.980785 -0.162212 0.84375 0.9375 -0.0464 0.9951 -0.0869 -0 1 0 0.828125 1 -0.0464 0.9951 -0.0869 --0.074658 0.980785 -0.18024 0.8125 0.9375 -0.0464 0.9951 -0.0869 -0 -1 0 0.828125 0 -0.0464 -0.9951 -0.0869 --0.108386 -0.980785 -0.162212 0.84375 0.0625 -0.0464 -0.9951 -0.0869 --0.074658 -0.980785 -0.18024 0.8125 0.0625 -0.0464 -0.9951 -0.0869 --0.544895 -0.19509 -0.815493 0.84375 0.4375 -0.4691 -0.0975 -0.8777 --0.555569 0 -0.831469 0.84375 0.5 -0.4691 -0.0975 -0.8777 --0.382683 0 -0.923879 0.8125 0.5 -0.4691 -0.0975 -0.8777 --0.544895 -0.19509 -0.815493 0.84375 0.4375 -0.4691 -0.0975 -0.8777 --0.382683 0 -0.923879 0.8125 0.5 -0.4691 -0.0975 -0.8777 --0.37533 -0.19509 -0.906127 0.8125 0.4375 -0.4691 -0.0975 -0.8777 --0.212607 0.92388 -0.31819 0.84375 0.875 -0.1374 0.9565 -0.2571 --0.108386 0.980785 -0.162212 0.84375 0.9375 -0.1374 0.9565 -0.2571 --0.074658 0.980785 -0.18024 0.8125 0.9375 -0.1374 0.9565 -0.2571 --0.212607 0.92388 -0.31819 0.84375 0.875 -0.1374 0.9565 -0.2571 --0.074658 0.980785 -0.18024 0.8125 0.9375 -0.1374 0.9565 -0.2571 --0.146446 0.92388 -0.353553 0.8125 0.875 -0.1374 0.9565 -0.2571 --0.51328 -0.382683 -0.768177 0.84375 0.375 -0.4513 -0.289 -0.8443 --0.544895 -0.19509 -0.815493 0.84375 0.4375 -0.4513 -0.289 -0.8443 --0.37533 -0.19509 -0.906127 0.8125 0.4375 -0.4513 -0.289 -0.8443 --0.51328 -0.382683 -0.768177 0.84375 0.375 -0.4513 -0.289 -0.8443 --0.37533 -0.19509 -0.906127 0.8125 0.4375 -0.4513 -0.289 -0.8443 --0.353553 -0.382683 -0.853553 0.8125 0.375 -0.4513 -0.289 -0.8443 --0.308658 0.83147 -0.461939 0.84375 0.8125 -0.223 0.881 -0.4173 --0.212607 0.92388 -0.31819 0.84375 0.875 -0.223 0.881 -0.4173 --0.146446 0.92388 -0.353553 0.8125 0.875 -0.223 0.881 -0.4173 --0.308658 0.83147 -0.461939 0.84375 0.8125 -0.223 0.881 -0.4173 --0.146446 0.92388 -0.353553 0.8125 0.875 -0.223 0.881 -0.4173 --0.212607 0.83147 -0.513279 0.8125 0.8125 -0.223 0.881 -0.4173 --0.461939 -0.55557 -0.691341 0.84375 0.3125 -0.4162 -0.4696 -0.7786 --0.51328 -0.382683 -0.768177 0.84375 0.375 -0.4162 -0.4696 -0.7786 --0.353553 -0.382683 -0.853553 0.8125 0.375 -0.4162 -0.4696 -0.7786 --0.461939 -0.55557 -0.691341 0.84375 0.3125 -0.4162 -0.4696 -0.7786 --0.353553 -0.382683 -0.853553 0.8125 0.375 -0.4162 -0.4696 -0.7786 --0.318189 -0.55557 -0.768177 0.8125 0.3125 -0.4162 -0.4696 -0.7786 --0.392847 0.707107 -0.587938 0.84375 0.75 -0.2999 0.7715 -0.5611 --0.308658 0.83147 -0.461939 0.84375 0.8125 -0.2999 0.7715 -0.5611 --0.212607 0.83147 -0.513279 0.8125 0.8125 -0.2999 0.7715 -0.5611 --0.392847 0.707107 -0.587938 0.84375 0.75 -0.2999 0.7715 -0.5611 --0.212607 0.83147 -0.513279 0.8125 0.8125 -0.2999 0.7715 -0.5611 --0.270598 0.707107 -0.653281 0.8125 0.75 -0.2999 0.7715 -0.5611 --0.392847 -0.707107 -0.587938 0.84375 0.25 -0.3651 -0.6326 -0.6831 --0.461939 -0.55557 -0.691341 0.84375 0.3125 -0.3651 -0.6326 -0.6831 --0.318189 -0.55557 -0.768177 0.8125 0.3125 -0.3651 -0.6326 -0.6831 --0.392847 -0.707107 -0.587938 0.84375 0.25 -0.3651 -0.6326 -0.6831 --0.318189 -0.55557 -0.768177 0.8125 0.3125 -0.3651 -0.6326 -0.6831 --0.270598 -0.707107 -0.653281 0.8125 0.25 -0.3651 -0.6326 -0.6831 --0.461939 0.55557 -0.691341 0.84375 0.6875 -0.3651 0.6326 -0.6831 --0.392847 0.707107 -0.587938 0.84375 0.75 -0.3651 0.6326 -0.6831 --0.270598 0.707107 -0.653281 0.8125 0.75 -0.3651 0.6326 -0.6831 --0.461939 0.55557 -0.691341 0.84375 0.6875 -0.3651 0.6326 -0.6831 --0.270598 0.707107 -0.653281 0.8125 0.75 -0.3651 0.6326 -0.6831 --0.318189 0.55557 -0.768177 0.8125 0.6875 -0.3651 0.6326 -0.6831 --0.308658 -0.83147 -0.461939 0.84375 0.1875 -0.2999 -0.7715 -0.5611 --0.392847 -0.707107 -0.587938 0.84375 0.25 -0.2999 -0.7715 -0.5611 --0.270598 -0.707107 -0.653281 0.8125 0.25 -0.2999 -0.7715 -0.5611 --0.308658 -0.83147 -0.461939 0.84375 0.1875 -0.2999 -0.7715 -0.5611 --0.270598 -0.707107 -0.653281 0.8125 0.25 -0.2999 -0.7715 -0.5611 --0.212607 -0.83147 -0.513279 0.8125 0.1875 -0.2999 -0.7715 -0.5611 --0.51328 0.382683 -0.768177 0.84375 0.625 -0.4162 0.4696 -0.7786 --0.461939 0.55557 -0.691341 0.84375 0.6875 -0.4162 0.4696 -0.7786 --0.318189 0.55557 -0.768177 0.8125 0.6875 -0.4162 0.4696 -0.7786 --0.51328 0.382683 -0.768177 0.84375 0.625 -0.4162 0.4696 -0.7786 --0.318189 0.55557 -0.768177 0.8125 0.6875 -0.4162 0.4696 -0.7786 --0.353553 0.382683 -0.853553 0.8125 0.625 -0.4162 0.4696 -0.7786 --0.212607 -0.92388 -0.31819 0.84375 0.125 -0.223 -0.881 -0.4173 --0.308658 -0.83147 -0.461939 0.84375 0.1875 -0.223 -0.881 -0.4173 --0.212607 -0.83147 -0.513279 0.8125 0.1875 -0.223 -0.881 -0.4173 --0.212607 -0.92388 -0.31819 0.84375 0.125 -0.223 -0.881 -0.4173 --0.212607 -0.83147 -0.513279 0.8125 0.1875 -0.223 -0.881 -0.4173 --0.146446 -0.92388 -0.353553 0.8125 0.125 -0.223 -0.881 -0.4173 --0.544895 0.19509 -0.815493 0.84375 0.5625 -0.4513 0.289 -0.8443 --0.51328 0.382683 -0.768177 0.84375 0.625 -0.4513 0.289 -0.8443 --0.353553 0.382683 -0.853553 0.8125 0.625 -0.4513 0.289 -0.8443 --0.544895 0.19509 -0.815493 0.84375 0.5625 -0.4513 0.289 -0.8443 --0.353553 0.382683 -0.853553 0.8125 0.625 -0.4513 0.289 -0.8443 --0.37533 0.19509 -0.906127 0.8125 0.5625 -0.4513 0.289 -0.8443 --0.108386 -0.980785 -0.162212 0.84375 0.0625 -0.1374 -0.9565 -0.2571 --0.212607 -0.92388 -0.31819 0.84375 0.125 -0.1374 -0.9565 -0.2571 --0.146446 -0.92388 -0.353553 0.8125 0.125 -0.1374 -0.9565 -0.2571 --0.108386 -0.980785 -0.162212 0.84375 0.0625 -0.1374 -0.9565 -0.2571 --0.146446 -0.92388 -0.353553 0.8125 0.125 -0.1374 -0.9565 -0.2571 --0.074658 -0.980785 -0.18024 0.8125 0.0625 -0.1374 -0.9565 -0.2571 --0.555569 0 -0.831469 0.84375 0.5 -0.4691 0.0975 -0.8777 --0.544895 0.19509 -0.815493 0.84375 0.5625 -0.4691 0.0975 -0.8777 --0.37533 0.19509 -0.906127 0.8125 0.5625 -0.4691 0.0975 -0.8777 --0.555569 0 -0.831469 0.84375 0.5 -0.4691 0.0975 -0.8777 --0.37533 0.19509 -0.906127 0.8125 0.5625 -0.4691 0.0975 -0.8777 --0.382683 0 -0.923879 0.8125 0.5 -0.4691 0.0975 -0.8777 --0.318189 0.55557 -0.768177 0.8125 0.6875 -0.2248 0.6326 -0.7412 --0.270598 0.707107 -0.653281 0.8125 0.75 -0.2248 0.6326 -0.7412 --0.13795 0.707107 -0.69352 0.78125 0.75 -0.2248 0.6326 -0.7412 --0.318189 0.55557 -0.768177 0.8125 0.6875 -0.2248 0.6326 -0.7412 --0.13795 0.707107 -0.69352 0.78125 0.75 -0.2248 0.6326 -0.7412 --0.162211 0.55557 -0.815493 0.78125 0.6875 -0.2248 0.6326 -0.7412 --0.212607 -0.83147 -0.513279 0.8125 0.1875 -0.1847 -0.7715 -0.6088 --0.270598 -0.707107 -0.653281 0.8125 0.25 -0.1847 -0.7715 -0.6088 --0.13795 -0.707107 -0.69352 0.78125 0.25 -0.1847 -0.7715 -0.6088 --0.212607 -0.83147 -0.513279 0.8125 0.1875 -0.1847 -0.7715 -0.6088 --0.13795 -0.707107 -0.69352 0.78125 0.25 -0.1847 -0.7715 -0.6088 --0.108386 -0.83147 -0.544895 0.78125 0.1875 -0.1847 -0.7715 -0.6088 --0.353553 0.382683 -0.853553 0.8125 0.625 -0.2563 0.4696 -0.8448 --0.318189 0.55557 -0.768177 0.8125 0.6875 -0.2563 0.4696 -0.8448 --0.162211 0.55557 -0.815493 0.78125 0.6875 -0.2563 0.4696 -0.8448 --0.353553 0.382683 -0.853553 0.8125 0.625 -0.2563 0.4696 -0.8448 --0.162211 0.55557 -0.815493 0.78125 0.6875 -0.2563 0.4696 -0.8448 --0.18024 0.382683 -0.906127 0.78125 0.625 -0.2563 0.4696 -0.8448 --0.146446 -0.92388 -0.353553 0.8125 0.125 -0.1374 -0.881 -0.4528 --0.212607 -0.83147 -0.513279 0.8125 0.1875 -0.1374 -0.881 -0.4528 --0.108386 -0.83147 -0.544895 0.78125 0.1875 -0.1374 -0.881 -0.4528 --0.146446 -0.92388 -0.353553 0.8125 0.125 -0.1374 -0.881 -0.4528 --0.108386 -0.83147 -0.544895 0.78125 0.1875 -0.1374 -0.881 -0.4528 --0.074658 -0.92388 -0.37533 0.78125 0.125 -0.1374 -0.881 -0.4528 --0.37533 0.19509 -0.906127 0.8125 0.5625 -0.2779 0.289 -0.9161 --0.353553 0.382683 -0.853553 0.8125 0.625 -0.2779 0.289 -0.9161 --0.18024 0.382683 -0.906127 0.78125 0.625 -0.2779 0.289 -0.9161 --0.37533 0.19509 -0.906127 0.8125 0.5625 -0.2779 0.289 -0.9161 --0.18024 0.382683 -0.906127 0.78125 0.625 -0.2779 0.289 -0.9161 --0.191341 0.19509 -0.961939 0.78125 0.5625 -0.2779 0.289 -0.9161 --0.074658 -0.980785 -0.18024 0.8125 0.0625 -0.0846 -0.9565 -0.279 --0.146446 -0.92388 -0.353553 0.8125 0.125 -0.0846 -0.9565 -0.279 --0.074658 -0.92388 -0.37533 0.78125 0.125 -0.0846 -0.9565 -0.279 --0.074658 -0.980785 -0.18024 0.8125 0.0625 -0.0846 -0.9565 -0.279 --0.074658 -0.92388 -0.37533 0.78125 0.125 -0.0846 -0.9565 -0.279 --0.03806 -0.980785 -0.191342 0.78125 0.0625 -0.0846 -0.9565 -0.279 --0.382683 0 -0.923879 0.8125 0.5 -0.2889 0.0975 -0.9524 --0.37533 0.19509 -0.906127 0.8125 0.5625 -0.2889 0.0975 -0.9524 --0.191341 0.19509 -0.961939 0.78125 0.5625 -0.2889 0.0975 -0.9524 --0.382683 0 -0.923879 0.8125 0.5 -0.2889 0.0975 -0.9524 --0.191341 0.19509 -0.961939 0.78125 0.5625 -0.2889 0.0975 -0.9524 --0.19509 0 -0.980784 0.78125 0.5 -0.2889 0.0975 -0.9524 --0.074658 0.980785 -0.18024 0.8125 0.9375 -0.0286 0.9951 -0.0942 -0 1 0 0.796875 1 -0.0286 0.9951 -0.0942 --0.03806 0.980785 -0.191342 0.78125 0.9375 -0.0286 0.9951 -0.0942 -0 -1 0 0.796875 0 -0.0286 -0.9951 -0.0942 --0.074658 -0.980785 -0.18024 0.8125 0.0625 -0.0286 -0.9951 -0.0942 --0.03806 -0.980785 -0.191342 0.78125 0.0625 -0.0286 -0.9951 -0.0942 --0.37533 -0.19509 -0.906127 0.8125 0.4375 -0.2889 -0.0975 -0.9524 --0.382683 0 -0.923879 0.8125 0.5 -0.2889 -0.0975 -0.9524 --0.19509 0 -0.980784 0.78125 0.5 -0.2889 -0.0975 -0.9524 --0.37533 -0.19509 -0.906127 0.8125 0.4375 -0.2889 -0.0975 -0.9524 --0.19509 0 -0.980784 0.78125 0.5 -0.2889 -0.0975 -0.9524 --0.191341 -0.19509 -0.961939 0.78125 0.4375 -0.2889 -0.0975 -0.9524 --0.146446 0.92388 -0.353553 0.8125 0.875 -0.0846 0.9565 -0.279 --0.074658 0.980785 -0.18024 0.8125 0.9375 -0.0846 0.9565 -0.279 --0.03806 0.980785 -0.191342 0.78125 0.9375 -0.0846 0.9565 -0.279 --0.146446 0.92388 -0.353553 0.8125 0.875 -0.0846 0.9565 -0.279 --0.03806 0.980785 -0.191342 0.78125 0.9375 -0.0846 0.9565 -0.279 --0.074658 0.92388 -0.37533 0.78125 0.875 -0.0846 0.9565 -0.279 --0.353553 -0.382683 -0.853553 0.8125 0.375 -0.2779 -0.289 -0.9161 --0.37533 -0.19509 -0.906127 0.8125 0.4375 -0.2779 -0.289 -0.9161 --0.191341 -0.19509 -0.961939 0.78125 0.4375 -0.2779 -0.289 -0.9161 --0.353553 -0.382683 -0.853553 0.8125 0.375 -0.2779 -0.289 -0.9161 --0.191341 -0.19509 -0.961939 0.78125 0.4375 -0.2779 -0.289 -0.9161 --0.18024 -0.382683 -0.906127 0.78125 0.375 -0.2779 -0.289 -0.9161 --0.212607 0.83147 -0.513279 0.8125 0.8125 -0.1374 0.881 -0.4528 --0.146446 0.92388 -0.353553 0.8125 0.875 -0.1374 0.881 -0.4528 --0.074658 0.92388 -0.37533 0.78125 0.875 -0.1374 0.881 -0.4528 --0.212607 0.83147 -0.513279 0.8125 0.8125 -0.1374 0.881 -0.4528 --0.074658 0.92388 -0.37533 0.78125 0.875 -0.1374 0.881 -0.4528 --0.108386 0.83147 -0.544895 0.78125 0.8125 -0.1374 0.881 -0.4528 --0.318189 -0.55557 -0.768177 0.8125 0.3125 -0.2563 -0.4696 -0.8448 --0.353553 -0.382683 -0.853553 0.8125 0.375 -0.2563 -0.4696 -0.8448 --0.18024 -0.382683 -0.906127 0.78125 0.375 -0.2563 -0.4696 -0.8448 --0.318189 -0.55557 -0.768177 0.8125 0.3125 -0.2563 -0.4696 -0.8448 --0.18024 -0.382683 -0.906127 0.78125 0.375 -0.2563 -0.4696 -0.8448 --0.162211 -0.55557 -0.815493 0.78125 0.3125 -0.2563 -0.4696 -0.8448 --0.270598 0.707107 -0.653281 0.8125 0.75 -0.1847 0.7715 -0.6088 --0.212607 0.83147 -0.513279 0.8125 0.8125 -0.1847 0.7715 -0.6088 --0.108386 0.83147 -0.544895 0.78125 0.8125 -0.1847 0.7715 -0.6088 --0.270598 0.707107 -0.653281 0.8125 0.75 -0.1847 0.7715 -0.6088 --0.108386 0.83147 -0.544895 0.78125 0.8125 -0.1847 0.7715 -0.6088 --0.13795 0.707107 -0.69352 0.78125 0.75 -0.1847 0.7715 -0.6088 --0.270598 -0.707107 -0.653281 0.8125 0.25 -0.2248 -0.6326 -0.7412 --0.318189 -0.55557 -0.768177 0.8125 0.3125 -0.2248 -0.6326 -0.7412 --0.162211 -0.55557 -0.815493 0.78125 0.3125 -0.2248 -0.6326 -0.7412 --0.270598 -0.707107 -0.653281 0.8125 0.25 -0.2248 -0.6326 -0.7412 --0.162211 -0.55557 -0.815493 0.78125 0.3125 -0.2248 -0.6326 -0.7412 --0.13795 -0.707107 -0.69352 0.78125 0.25 -0.2248 -0.6326 -0.7412 --0.191341 -0.19509 -0.961939 0.78125 0.4375 -0.0976 -0.0975 -0.9904 --0.19509 0 -0.980784 0.78125 0.5 -0.0976 -0.0975 -0.9904 -0 0 -1 0.75 0.5 -0.0976 -0.0975 -0.9904 --0.191341 -0.19509 -0.961939 0.78125 0.4375 -0.0976 -0.0975 -0.9904 -0 0 -1 0.75 0.5 -0.0976 -0.0975 -0.9904 -0 -0.19509 -0.980785 0.75 0.4375 -0.0976 -0.0975 -0.9904 --0.074658 0.92388 -0.37533 0.78125 0.875 -0.0286 0.9565 -0.2902 --0.03806 0.980785 -0.191342 0.78125 0.9375 -0.0286 0.9565 -0.2902 -0 0.980785 -0.19509 0.75 0.9375 -0.0286 0.9565 -0.2902 --0.074658 0.92388 -0.37533 0.78125 0.875 -0.0286 0.9565 -0.2902 -0 0.980785 -0.19509 0.75 0.9375 -0.0286 0.9565 -0.2902 -0 0.92388 -0.382683 0.75 0.875 -0.0286 0.9565 -0.2902 --0.18024 -0.382683 -0.906127 0.78125 0.375 -0.0938 -0.289 -0.9527 --0.191341 -0.19509 -0.961939 0.78125 0.4375 -0.0938 -0.289 -0.9527 -0 -0.19509 -0.980785 0.75 0.4375 -0.0938 -0.289 -0.9527 --0.18024 -0.382683 -0.906127 0.78125 0.375 -0.0938 -0.289 -0.9527 -0 -0.19509 -0.980785 0.75 0.4375 -0.0938 -0.289 -0.9527 -0 -0.382683 -0.923879 0.75 0.375 -0.0938 -0.289 -0.9527 --0.108386 0.83147 -0.544895 0.78125 0.8125 -0.0464 0.881 -0.4709 --0.074658 0.92388 -0.37533 0.78125 0.875 -0.0464 0.881 -0.4709 -0 0.92388 -0.382683 0.75 0.875 -0.0464 0.881 -0.4709 --0.108386 0.83147 -0.544895 0.78125 0.8125 -0.0464 0.881 -0.4709 -0 0.92388 -0.382683 0.75 0.875 -0.0464 0.881 -0.4709 -0 0.83147 -0.55557 0.75 0.8125 -0.0464 0.881 -0.4709 --0.162211 -0.55557 -0.815493 0.78125 0.3125 -0.0865 -0.4696 -0.8786 --0.18024 -0.382683 -0.906127 0.78125 0.375 -0.0865 -0.4696 -0.8786 -0 -0.382683 -0.923879 0.75 0.375 -0.0865 -0.4696 -0.8786 --0.162211 -0.55557 -0.815493 0.78125 0.3125 -0.0865 -0.4696 -0.8786 -0 -0.382683 -0.923879 0.75 0.375 -0.0865 -0.4696 -0.8786 -0 -0.55557 -0.83147 0.75 0.3125 -0.0865 -0.4696 -0.8786 --0.13795 0.707107 -0.69352 0.78125 0.75 -0.0624 0.7715 -0.6332 --0.108386 0.83147 -0.544895 0.78125 0.8125 -0.0624 0.7715 -0.6332 -0 0.83147 -0.55557 0.75 0.8125 -0.0624 0.7715 -0.6332 --0.13795 0.707107 -0.69352 0.78125 0.75 -0.0624 0.7715 -0.6332 -0 0.83147 -0.55557 0.75 0.8125 -0.0624 0.7715 -0.6332 -0 0.707107 -0.707107 0.75 0.75 -0.0624 0.7715 -0.6332 --0.13795 -0.707107 -0.69352 0.78125 0.25 -0.0759 -0.6326 -0.7708 --0.162211 -0.55557 -0.815493 0.78125 0.3125 -0.0759 -0.6326 -0.7708 -0 -0.55557 -0.83147 0.75 0.3125 -0.0759 -0.6326 -0.7708 --0.13795 -0.707107 -0.69352 0.78125 0.25 -0.0759 -0.6326 -0.7708 -0 -0.55557 -0.83147 0.75 0.3125 -0.0759 -0.6326 -0.7708 -0 -0.707107 -0.707107 0.75 0.25 -0.0759 -0.6326 -0.7708 --0.162211 0.55557 -0.815493 0.78125 0.6875 -0.0759 0.6326 -0.7708 --0.13795 0.707107 -0.69352 0.78125 0.75 -0.0759 0.6326 -0.7708 -0 0.707107 -0.707107 0.75 0.75 -0.0759 0.6326 -0.7708 --0.162211 0.55557 -0.815493 0.78125 0.6875 -0.0759 0.6326 -0.7708 -0 0.707107 -0.707107 0.75 0.75 -0.0759 0.6326 -0.7708 -0 0.55557 -0.83147 0.75 0.6875 -0.0759 0.6326 -0.7708 --0.108386 -0.83147 -0.544895 0.78125 0.1875 -0.0624 -0.7715 -0.6332 --0.13795 -0.707107 -0.69352 0.78125 0.25 -0.0624 -0.7715 -0.6332 -0 -0.707107 -0.707107 0.75 0.25 -0.0624 -0.7715 -0.6332 --0.108386 -0.83147 -0.544895 0.78125 0.1875 -0.0624 -0.7715 -0.6332 -0 -0.707107 -0.707107 0.75 0.25 -0.0624 -0.7715 -0.6332 -0 -0.83147 -0.55557 0.75 0.1875 -0.0624 -0.7715 -0.6332 --0.18024 0.382683 -0.906127 0.78125 0.625 -0.0865 0.4696 -0.8786 --0.162211 0.55557 -0.815493 0.78125 0.6875 -0.0865 0.4696 -0.8786 -0 0.55557 -0.83147 0.75 0.6875 -0.0865 0.4696 -0.8786 --0.18024 0.382683 -0.906127 0.78125 0.625 -0.0865 0.4696 -0.8786 -0 0.55557 -0.83147 0.75 0.6875 -0.0865 0.4696 -0.8786 -0 0.382683 -0.923879 0.75 0.625 -0.0865 0.4696 -0.8786 --0.074658 -0.92388 -0.37533 0.78125 0.125 -0.0464 -0.881 -0.4709 --0.108386 -0.83147 -0.544895 0.78125 0.1875 -0.0464 -0.881 -0.4709 -0 -0.83147 -0.55557 0.75 0.1875 -0.0464 -0.881 -0.4709 --0.074658 -0.92388 -0.37533 0.78125 0.125 -0.0464 -0.881 -0.4709 -0 -0.83147 -0.55557 0.75 0.1875 -0.0464 -0.881 -0.4709 -0 -0.92388 -0.382683 0.75 0.125 -0.0464 -0.881 -0.4709 --0.191341 0.19509 -0.961939 0.78125 0.5625 -0.0938 0.289 -0.9527 --0.18024 0.382683 -0.906127 0.78125 0.625 -0.0938 0.289 -0.9527 -0 0.382683 -0.923879 0.75 0.625 -0.0938 0.289 -0.9527 --0.191341 0.19509 -0.961939 0.78125 0.5625 -0.0938 0.289 -0.9527 -0 0.382683 -0.923879 0.75 0.625 -0.0938 0.289 -0.9527 -0 0.19509 -0.980785 0.75 0.5625 -0.0938 0.289 -0.9527 --0.03806 -0.980785 -0.191342 0.78125 0.0625 -0.0286 -0.9565 -0.2902 --0.074658 -0.92388 -0.37533 0.78125 0.125 -0.0286 -0.9565 -0.2902 -0 -0.92388 -0.382683 0.75 0.125 -0.0286 -0.9565 -0.2902 --0.03806 -0.980785 -0.191342 0.78125 0.0625 -0.0286 -0.9565 -0.2902 -0 -0.92388 -0.382683 0.75 0.125 -0.0286 -0.9565 -0.2902 -0 -0.980785 -0.19509 0.75 0.0625 -0.0286 -0.9565 -0.2902 --0.19509 0 -0.980784 0.78125 0.5 -0.0976 0.0975 -0.9904 --0.191341 0.19509 -0.961939 0.78125 0.5625 -0.0976 0.0975 -0.9904 -0 0.19509 -0.980785 0.75 0.5625 -0.0976 0.0975 -0.9904 --0.19509 0 -0.980784 0.78125 0.5 -0.0976 0.0975 -0.9904 -0 0.19509 -0.980785 0.75 0.5625 -0.0976 0.0975 -0.9904 -0 0 -1 0.75 0.5 -0.0976 0.0975 -0.9904 --0.03806 0.980785 -0.191342 0.78125 0.9375 -0.0097 0.9951 -0.098 -0 1 0 0.765625 1 -0.0097 0.9951 -0.098 -0 0.980785 -0.19509 0.75 0.9375 -0.0097 0.9951 -0.098 -0 -1 0 0.765625 0 -0.0097 -0.9951 -0.098 --0.03806 -0.980785 -0.191342 0.78125 0.0625 -0.0097 -0.9951 -0.098 -0 -0.980785 -0.19509 0.75 0.0625 -0.0097 -0.9951 -0.098 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/wall.tga b/enginecustom/wall.tga new file mode 100644 index 0000000..f2267a5 Binary files /dev/null and b/enginecustom/wall.tga differ