diff --git a/adagucserverEC/CCreateHistogram.cpp b/adagucserverEC/CCreateHistogram.cpp index 58dd59f45..13544644d 100644 --- a/adagucserverEC/CCreateHistogram.cpp +++ b/adagucserverEC/CCreateHistogram.cpp @@ -1,5 +1,5 @@ #include "CCreateHistogram.h" -#include "CGenericDataWarper.h" +#include "GenericDataWarper/CGenericDataWarper.h" #include "CImageDataWriter.h" const char *CCreateHistogram::className = "CCreateHistogram"; @@ -107,7 +107,7 @@ int CCreateHistogram::addData(std::vector &dataSources) { sourceGeo.CRS = dataSource->nativeProj4; CDBDebug("Rendering %f,%f", sourceGeo.dfBBOX[0], sourceGeo.dfBBOX[1]); - GenericDataWarper genericDataWarper; + CGenericDataWarper genericDataWarper; switch (dataType) { case CDF_CHAR: genericDataWarper.render(&warper, sourceData, &sourceGeo, dataSource->srvParams->Geo, &settings, &drawFunction); diff --git a/adagucserverEC/CDataPostProcessors/CDataPostProcessor_IncludeLayer.cpp b/adagucserverEC/CDataPostProcessors/CDataPostProcessor_IncludeLayer.cpp index 4da0d76aa..d9bf0c9ba 100644 --- a/adagucserverEC/CDataPostProcessors/CDataPostProcessor_IncludeLayer.cpp +++ b/adagucserverEC/CDataPostProcessors/CDataPostProcessor_IncludeLayer.cpp @@ -239,7 +239,7 @@ int CDPPIncludeLayer::execute(CServerConfig::XMLE_DataPostProc *proc, CDataSourc CDBError("Unable to initialize projection"); return 1; } - GenericDataWarper genericDataWarper; + CGenericDataWarper genericDataWarper; switch (varToWriteTo->getType()) { case CDF_CHAR: genericDataWarper.render(&warper, sourceData, &sourceGeo, &destGeo, &settings, &drawFunction); diff --git a/adagucserverEC/CDataPostProcessors/CDataPostProcessor_WFP.cpp b/adagucserverEC/CDataPostProcessors/CDataPostProcessor_WFP.cpp index bac7dc5d5..968adcfe3 100644 --- a/adagucserverEC/CDataPostProcessors/CDataPostProcessor_WFP.cpp +++ b/adagucserverEC/CDataPostProcessors/CDataPostProcessor_WFP.cpp @@ -1,6 +1,6 @@ #include "CDataPostProcessor_WFP.h" #include "CRequest.h" -#include "CGenericDataWarper.h" +#include "GenericDataWarper/CGenericDataWarper.h" #include /************************/ @@ -176,7 +176,7 @@ int CDPPWFP::execute(CServerConfig::XMLE_DataPostProc *proc, CDataSource *dataSo CDBError("Unable to initialize projection"); return 1; } - GenericDataWarper genericDataWarper; + CGenericDataWarper genericDataWarper; genericDataWarper.render(&warper, windSectorDataField, &sourceGeo, &destGeo, &settings, &drawFunction); } @@ -186,7 +186,7 @@ int CDPPWFP::execute(CServerConfig::XMLE_DataPostProc *proc, CDataSource *dataSo void CDPPWFP::drawFunction(int x, int y, float, void *_settings, void *warperInstance) { Settings *settings = (Settings *)_settings; - GenericDataWarper *warper = (GenericDataWarper *)warperInstance; + CGenericDataWarper *warper = (CGenericDataWarper *)warperInstance; if (x >= 0 && y >= 0 && x < (int)settings->width && y < (int)settings->height) { float windSpeed = settings->destGridWindSpeed[x + y * settings->width]; float windDir = settings->destGridWindDirection[x + y * settings->width]; @@ -215,8 +215,8 @@ void CDPPWFP::drawFunction(int x, int y, float, void *_settings, void *warperIns size_t selectedQ = 1; // Second quantile, which is currently 0.95 size_t selectedH = 0; // Currently only the first (10 meter) - size_t selectedX = warper->sourceDataPX; - size_t selectedY = warper->sourceDataPY; + size_t selectedX = warper->warperState.sourceDataPX; + size_t selectedY = warper->warperState.sourceDataPY; size_t gridLocationPointer = selectedX + selectedY * numX; size_t windHeightPointer = selectedH * numY * numX; size_t windQuantilePointer = selectedQ * numZ * numY * numX; diff --git a/adagucserverEC/CDrawFunction.cpp b/adagucserverEC/CDrawFunction.cpp index b3820056e..281f3aa9c 100644 --- a/adagucserverEC/CDrawFunction.cpp +++ b/adagucserverEC/CDrawFunction.cpp @@ -1,4 +1,5 @@ #include "CDrawFunction.h" +#include "CImageOperators/smoothRasterField.h" CDrawFunctionSettings getDrawFunctionSettings(CDataSource *dataSource, CDrawImage *drawImage, const CStyleConfiguration *styleConfiguration) { CDrawFunctionSettings settings; @@ -43,5 +44,8 @@ CDrawFunctionSettings getDrawFunctionSettings(CDataSource *dataSource, CDrawImag } } } + + settings.smoothingFiter = 0; + settings.smoothingDistanceMatrix = nullptr; // smoothingMakeDistanceMatrix(settings.smoothingFiter); return settings; } diff --git a/adagucserverEC/CDrawFunction.h b/adagucserverEC/CDrawFunction.h index 8c08afece..ce1eee977 100644 --- a/adagucserverEC/CDrawFunction.h +++ b/adagucserverEC/CDrawFunction.h @@ -6,7 +6,7 @@ #include #include "CDataSource.h" #include "CDrawImage.h" -#include "CGenericDataWarper.h" +#include "GenericDataWarper/CGenericDataWarper.h" #include "CStyleConfiguration.h" class CDrawFunctionSettings { @@ -36,6 +36,8 @@ class CDrawFunctionSettings { float legendScale; float legendOffset; CDrawImage *drawImage; + float *smoothingDistanceMatrix = nullptr; + int smoothingFiter = 0; }; CDrawFunctionSettings getDrawFunctionSettings(CDataSource *dataSource, CDrawImage *drawImage, const CStyleConfiguration *styleConfiguration); diff --git a/adagucserverEC/CGDALDataWriter.cpp b/adagucserverEC/CGDALDataWriter.cpp index 19ba6dc8e..2d6703752 100644 --- a/adagucserverEC/CGDALDataWriter.cpp +++ b/adagucserverEC/CGDALDataWriter.cpp @@ -328,7 +328,7 @@ int CGDALDataWriter::addData(std::vector &dataSources) { settings.width = srvParam->Geo->dWidth; settings.height = srvParam->Geo->dHeight; settings.data = warpedData; - GenericDataWarper genericDataWarper; + CGenericDataWarper genericDataWarper; switch (dataType) { case CDF_CHAR: genericDataWarper.render(&warper, sourceData, &sourceGeo, srvParam->Geo, &settings, &drawFunction); diff --git a/adagucserverEC/CGenericDataWarper.cpp b/adagucserverEC/CGenericDataWarper.cpp deleted file mode 100644 index 351069b26..000000000 --- a/adagucserverEC/CGenericDataWarper.cpp +++ /dev/null @@ -1,299 +0,0 @@ -/****************************************************************************** - * - * Project: ADAGUC Server - * Purpose: ADAGUC OGC Server - * Author: Maarten Plieger, plieger "at" knmi.nl - * Date: 2013-06-01 - * - ****************************************************************************** - * - * Copyright 2013, Royal Netherlands Meteorological Institute (KNMI) - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - ******************************************************************************/ - -#include "CGenericDataWarper.h" -const char *GenericDataWarper::className = "GenericDataWarper"; -//#define GenericDataWarper_DEBUG -int GenericDataWarper::findPixelExtent(int *PXExtentBasedOnSource, CGeoParams *sourceGeoParams, CGeoParams *destGeoParams, CImageWarper *warper) { - int sourceDataWidth = sourceGeoParams->dWidth; - int sourceDataHeight = sourceGeoParams->dHeight; - - PXExtentBasedOnSource[0] = 0; - PXExtentBasedOnSource[1] = 0; - PXExtentBasedOnSource[2] = sourceDataWidth; - PXExtentBasedOnSource[3] = sourceDataHeight; - - // CDBDebug("Starting findPixelExtent for WH [%d, %d] and area %f %f %f %f", PXExtentBasedOnSource[2],PXExtentBasedOnSource[3], - // destGeoParams->dfBBOX[0],destGeoParams->dfBBOX[1],destGeoParams->dfBBOX[2],destGeoParams->dfBBOX[3]); - // - // CDBDebug("sourcegeo %d %d", sourceGeoParams->dWidth, sourceGeoParams->dHeight); - // CDBDebug("dfbbox %f %f %f %f", sourceGeoParams->dfBBOX[0], sourceGeoParams->dfBBOX[1],sourceGeoParams->dfBBOX[2],sourceGeoParams->dfBBOX[3]); - - PXExtentBasedOnSource[0] = -1; - PXExtentBasedOnSource[1] = -1; - PXExtentBasedOnSource[2] = -1; - PXExtentBasedOnSource[3] = -1; - - // PXExtentBasedOnSource[0]=0; - // PXExtentBasedOnSource[1]=0; - // PXExtentBasedOnSource[2]=sourceDataWidth; - // PXExtentBasedOnSource[3]=sourceDataHeight; - // return 0; - // CDBDebug("start findPixelExtent"); - // bool destNeedsDegreeRadianConversion = false; - // bool sourceNeedsDegreeRadianConversion = false; - // CT::string destinationCRS; - // warper->decodeCRS(&destinationCRS,&destGeoParams->CRS); - // if(destinationCRS.indexOf("longlat")>=0){ - // destNeedsDegreeRadianConversion = true; - // } - // if(sourceGeoParams->CRS.indexOf("longlat")>=0){ - // sourceNeedsDegreeRadianConversion = true; - // } - - double dfSourceW = double(sourceGeoParams->dWidth); - double dfSourceH = double(sourceGeoParams->dHeight); - - int imageHeight = destGeoParams->dHeight; - int imageWidth = destGeoParams->dWidth; - double dfDestW = double(destGeoParams->dWidth); - double dfDestH = double(destGeoParams->dHeight); - - // double dfSourcedExtW=dfSourceExtW/(dfSourceW); - // double dfSourcedExtH=dfSourceExtH/(dfSourceH); - - int lowerIndex = 1, higherIndex = 3; - // if((sourceGeoParams->dfBBOX[lowerIndex]-sourceGeoParams->dfBBOX[higherIndex])>0){ - // higherIndex = 3; - // lowerIndex = 1; - // } - - double dfSourceExtW = (sourceGeoParams->dfBBOX[2] - sourceGeoParams->dfBBOX[0]); - double dfSourceOrigX = sourceGeoParams->dfBBOX[0]; - double dfSourceExtH = (sourceGeoParams->dfBBOX[lowerIndex] - sourceGeoParams->dfBBOX[higherIndex]); - double dfSourceOrigY = sourceGeoParams->dfBBOX[higherIndex]; - - double dfDestExtW = destGeoParams->dfBBOX[2] - destGeoParams->dfBBOX[0]; - double dfDestExtH = destGeoParams->dfBBOX[1] - destGeoParams->dfBBOX[3]; - double dfDestOrigX = destGeoParams->dfBBOX[0]; - double dfDestOrigY = destGeoParams->dfBBOX[3]; - - /* - double multiDestX = double(imageWidth)/dfDestExtW; - - double multiDestY = double(imageHeight)/dfDestExtH; - */ - - int startX = 0; - int startY = 0; - int stopX = imageWidth; - int stopY = imageHeight; - bool firstExtent = true; - bool needsProjection = warper->isProjectionRequired(); - bool OK = false; - bool transFormationRequired = false; - bool fullScan = false; - - // if(!needsProjection){ - // PXExtentBasedOnSource[0]=(double(0)/dfDestW)*dfDestExtW+dfDestOrigX; - // PXExtentBasedOnSource[1]=(double(0)/dfDestH)*dfDestExtH+dfDestOrigY; - // PXExtentBasedOnSource[2]=(double(imageWidth)/dfDestW)*dfDestExtW+dfDestOrigX; - // PXExtentBasedOnSource[3]=(double(imageHeight)/dfDestH)*dfDestExtH+dfDestOrigY; - // PXExtentBasedOnSource[0]=((PXExtentBasedOnSource[0]-dfSourceOrigX)/dfSourceExtW)*dfSourceW; - // PXExtentBasedOnSource[1]=((PXExtentBasedOnSource[1]-dfSourceOrigY)/dfSourceExtH)*dfSourceH; - // PXExtentBasedOnSource[2]=((PXExtentBasedOnSource[2]-dfSourceOrigX)/dfSourceExtW)*dfSourceW; - // PXExtentBasedOnSource[3]=((PXExtentBasedOnSource[3]-dfSourceOrigY)/dfSourceExtH)*dfSourceH; - // - // - // //CDBDebug("OK = [%d,%d,%d,%d]",PXExtentBasedOnSource[0],PXExtentBasedOnSource[1],PXExtentBasedOnSource[2],PXExtentBasedOnSource[3]); - // transFormationRequired=true; - // }else - { - while (OK == false) { - OK = true; - - bool attemptToContintue = true; - - // if(warper->isProjectionRequired()){ - // attemptToContintue = false; - // int incY = double(imageHeight)/4+0.5; - // int incX = double(imageWidth)/4+0.5; - // // CDBDebug("%d %d",incX,incY); - // if(incY<1)incY=1; - // if(incX<1)incX=1; - // - // for(int y=startY;yisProjectionRequired()){ - // if(warper->destNeedsDegreeRadianConversion){ - // px*=DEG_TO_RAD; - // py*=DEG_TO_RAD; - // } - // if(!pj_transform(warper->destpj,warper->sourcepj, 1,0,&px,&py,NULL)){ - // attemptToContintue = true; - // // CDBDebug("OK!"); - // } - // } - // } - // } - // } - - int incY = double(imageHeight) / 16 + 0.5; - int incX = double(imageWidth) / 16 + 0.5; - // CDBDebug("%d %d",incX,incY); - if (incY < 1) incY = 1; - if (incX < 1) incX = 1; - - if (attemptToContintue) { - // CDBDebug("ImageHeight = %d", stopY); - for (int y = startY; y < stopY + incY && OK; y = y + incY) { - for (int x = startX; x < stopX + incX && OK; x = x + incX) { - if (x == startX || y == startY || x == stopX || y == stopY || fullScan == true || true) { - double destCoordX, destCoordY; - destCoordX = (double(x) / dfDestW) * dfDestExtW + dfDestOrigX; - destCoordY = (double(y) / dfDestH) * dfDestExtH + dfDestOrigY; - - // if(x==0){ - // CDBDebug("pxpy: %f,%f",px,py); - // } - bool skip = false; - double px = destCoordX, py = destCoordY; - if (needsProjection) { - if (warper->isProjectionRequired()) { - if (proj_trans_generic(warper->projSourceToDest, PJ_INV, &px, sizeof(double), 1, &py, sizeof(double), 1, nullptr, 0, 0, nullptr, 0, 0) != 1) { - skip = true; - CDBDebug("skip %f %f",px,py); - } - } - } - /*f(x==0){ - CDBDebug("pxpy: %f,%f",px,py); - }*/ - double sourcePixelX = ((px - dfSourceOrigX) / dfSourceExtW) * dfSourceW; - double sourcePixelY = ((py - dfSourceOrigY) / dfSourceExtH) * dfSourceH; - // CDBDebug("destCoord: %f,%f",destCoordX,destCoordY); - // CDBDebug("soorceCrd: %f,%f",px,py); - // CDBDebug("sourcePX : %d,%d",(int)sourcePixelX,(int)sourcePixelY); - - if (!skip && px == px && py == py && px != -INFINITY && px != INFINITY && py != -INFINITY && py != INFINITY) { - transFormationRequired = true; - - // if(x==0&&y%10==0){ - // CDBDebug("pxpy: %f,%f",px,py); - // } - if (sourcePixelX == sourcePixelX && sourcePixelY == sourcePixelY && sourcePixelX != -INFINITY && sourcePixelX != INFINITY && sourcePixelY != -INFINITY && sourcePixelY != INFINITY) { - - if (firstExtent) { - PXExtentBasedOnSource[0] = int(sourcePixelX); - PXExtentBasedOnSource[1] = int(sourcePixelY); - PXExtentBasedOnSource[2] = int(sourcePixelX); - PXExtentBasedOnSource[3] = int(sourcePixelY); - firstExtent = false; - } else { - if (sourcePixelX < PXExtentBasedOnSource[0]) PXExtentBasedOnSource[0] = sourcePixelX; - if (sourcePixelX > PXExtentBasedOnSource[2]) PXExtentBasedOnSource[2] = sourcePixelX; - if (sourcePixelY < PXExtentBasedOnSource[1]) { - PXExtentBasedOnSource[1] = sourcePixelY; - } - if (sourcePixelY > PXExtentBasedOnSource[3]) { - PXExtentBasedOnSource[3] = sourcePixelY; - } - } - } - - } else { - - if (OK == true && fullScan == false) { - OK = false; - fullScan = true; - // if(x==startX)startX++; - // if(x==stopX)stopX--; - // if(y==startY)startY++; - // if(y==stopY)stopY--; - // break; - } - } - } - } - } - - // PXExtentBasedOnSource[0]-=2; - // PXExtentBasedOnSource[1]-=2; - // PXExtentBasedOnSource[2]+=2; - // PXExtentBasedOnSource[3]+=2; - if (OK == true && fullScan == true) break; - } - } - } - -#ifdef GenericDataWarper_DEBUG - CDBDebug("PXExtentBasedOnSource = [%d,%d,%d,%d]", PXExtentBasedOnSource[0], PXExtentBasedOnSource[1], PXExtentBasedOnSource[2], PXExtentBasedOnSource[3]); - -#endif - if (PXExtentBasedOnSource[1] > PXExtentBasedOnSource[3]) { - std::swap(PXExtentBasedOnSource[1], PXExtentBasedOnSource[3]); - } - if (PXExtentBasedOnSource[0] > PXExtentBasedOnSource[2]) { - std::swap(PXExtentBasedOnSource[0], PXExtentBasedOnSource[2]); - } - PXExtentBasedOnSource[2] += 1; - PXExtentBasedOnSource[3] += 1; - /* - PXExtentBasedOnSource[1]=4;; - PXExtentBasedOnSource[3]=10;*/ -#ifdef GenericDataWarper_DEBUG - CDBDebug("PXExtentBasedOnSource = [%d,%d,%d,%d]", PXExtentBasedOnSource[0], PXExtentBasedOnSource[1], PXExtentBasedOnSource[2], PXExtentBasedOnSource[3]); -#endif - - if (PXExtentBasedOnSource[0] < 0) { - PXExtentBasedOnSource[0] = 0; - } - if (PXExtentBasedOnSource[0] >= sourceDataWidth) { - PXExtentBasedOnSource[0] = sourceDataWidth; - } - if (PXExtentBasedOnSource[2] < 0) { - PXExtentBasedOnSource[2] = 0; - } - if (PXExtentBasedOnSource[2] >= sourceDataWidth) { - PXExtentBasedOnSource[2] = sourceDataWidth; - } - if (PXExtentBasedOnSource[1] < 0) { - PXExtentBasedOnSource[1] = 0; - } - if (PXExtentBasedOnSource[1] >= sourceDataHeight) { - PXExtentBasedOnSource[1] = sourceDataHeight; - } - if (PXExtentBasedOnSource[3] < 0) { - PXExtentBasedOnSource[3] = 0; - } - if (PXExtentBasedOnSource[3] >= sourceDataHeight) { - PXExtentBasedOnSource[3] = sourceDataHeight; - } - if (transFormationRequired == false) { - PXExtentBasedOnSource[0] = -1; - PXExtentBasedOnSource[1] = -1; - PXExtentBasedOnSource[2] = -1; - PXExtentBasedOnSource[3] = -1; - } - // PXExtentBasedOnSource[0]-=2; - // PXExtentBasedOnSource[1]-=2; - - // CDBDebug("PXExtentBasedOnSource = [%d,%d,%d,%d]",PXExtentBasedOnSource[0],PXExtentBasedOnSource[1],PXExtentBasedOnSource[2],PXExtentBasedOnSource[3]); - return 0; -} diff --git a/adagucserverEC/CGenericDataWarper.h b/adagucserverEC/CGenericDataWarper.h deleted file mode 100644 index 1aa08d7c7..000000000 --- a/adagucserverEC/CGenericDataWarper.h +++ /dev/null @@ -1,651 +0,0 @@ -#ifndef GenericDataWarper_H -#define GenericDataWarper_H -#include -#include -#include -#include -#include -#include "CGeoParams.h" -#include "CImageWarper.h" -#include "CDebugger.h" -#include "CGenericDataWarperTools.h" - -// #define GenericDataWarper_DEBUG - -class GenericDataWarper { -private: - DEF_ERRORFUNCTION(); - template - static int drawTriangle(int *xP, int *yP, T value, int destWidth, int destHeight, void *settings, void (*drawFunction)(int, int, T, void *settings, void *genericDataWarper), void *genericDataWarper, - bool aOrB) { - GenericDataWarper *g = (GenericDataWarper *)genericDataWarper; - int W = destWidth; - int H = destHeight; - if (xP[0] < 0 && xP[1] < 0 && xP[2] < 0) return 0; - if (xP[0] >= W && xP[1] >= W && xP[2] >= W) return 0; - if (yP[0] < 0 && yP[1] < 0 && yP[2] < 0) return 0; - if (yP[0] >= H && yP[1] >= H && yP[2] >= H) return 0; - - unsigned int lower; - unsigned int middle; - unsigned int upper; - - /*Sort the vertices in Y direction*/ - if (yP[0] < yP[1]) { - if (yP[0] < yP[2]) { - lower = 0; - if (yP[1] < yP[2]) { - middle = 1; - upper = 2; - } else { - middle = 2; - upper = 1; - } - } else { - middle = 0; - lower = 2; - upper = 1; - } - } else { - if (yP[1] < yP[2]) { - lower = 1; - if (yP[0] < yP[2]) { - middle = 0; - upper = 2; - } else { - middle = 2; - upper = 0; - } - } else { - middle = 1; - lower = 2; - upper = 0; - } - } - - int X1 = xP[lower]; - int X2 = xP[middle]; - int X3 = xP[upper]; - int Y1 = yP[lower]; - int Y2 = yP[middle]; - int Y3 = yP[upper]; - - float vX1 = aOrB ? 1 : 0; - float vY1 = aOrB ? 0 : 1; - float vX2 = aOrB ? 0 : 1; - float vY2 = 1; - float vX3 = aOrB ? 0 : 1; - float vY3 = 0; - - // return 1; - /* - // 1 - // \ - // 2 - // / - // 3 - */ - // If top point is equal to bottom point of triangle, skip - // If middle is equal to top and middle is equal to bottom, skip - if ((Y1 == Y3) || (Y2 == Y1 && Y3 == Y2)) { - int minx = X1; - if (minx > X2) minx = X2; - if (minx > X3) minx = X3; - int maxx = X1; - if (maxx < X2) maxx = X2; - if (maxx < X3) maxx = X3; - g->tileDy = 0; - for (int x = minx; x < maxx + 1; x++) { - g->tileDx = 0; //(x - minx) / float(maxx-minx); - drawFunction(x, yP[2], value, settings, genericDataWarper); - } - return 1; - } - - /* https://codeplea.com/triangular-interpolation */ - float dn = ((yP[1] - yP[2]) * (xP[0] - xP[2]) + (xP[2] - xP[1]) * (yP[0] - yP[2])); - - float rcl = float(X3 - X1) / float(Y3 - Y1); - if (Y2 != Y1 && Y1 < H && Y2 > 0) { - float rca = float(X2 - X1) / float(Y2 - Y1); - int sy = (Y1 < 0) ? 0 : Y1; - int ey = (Y2 > H) ? H : Y2; - for (int y = sy; y <= ey - 1; y++) { - int xL = floor(rcl * float(y - Y1) + X1); - int xA = floor(rca * float(y - Y1) + X1); - int x1, x2; - if (xL < xA) { - x1 = xL; - x2 = xA; - } else { - x2 = xL; - x1 = xA; - } - if (x1 < W && x2 > 0) { - int sx = (x1 < 0) ? 0 : x1; - int ex = (x2 > W) ? W : x2; - for (int x = sx; x <= ex - 1; x++) { - float WV1 = ((yP[1] - yP[2]) * (x - xP[2]) + (xP[2] - xP[1]) * (y - yP[2])) / dn; - float WV2 = ((yP[2] - yP[0]) * (x - xP[2]) + (xP[0] - xP[2]) * (y - yP[2])) / dn; - float WV3 = 1 - WV1 - WV2; - - g->tileDx = WV1 * vX1 + WV2 * vX2 + WV3 * vX3; - g->tileDy = WV1 * vY1 + WV2 * vY2 + WV3 * vY3; - drawFunction(x, y, value, settings, genericDataWarper); - } - } - } - } - // return 0; - if (Y3 != Y2 && Y2 < H && Y3 > 0) { - float rcb = float(X3 - X2) / float(Y3 - Y2); - int sy = (Y2 < 0) ? 0 : Y2; - int ey = (Y3 > H) ? H : Y3; - for (int y = sy; y <= ey - 1; y++) { - int xL = floor(rcl * float(y - Y1) + X1); - int xB = floor(rcb * float(y - Y2) + X2); - int x1, x2; - if (xL <= xB) { - x1 = xL; - x2 = xB; - } else { - x2 = xL; - x1 = xB; - } - if (x1 < W && x2 > 0) { - int sx = (x1 < 0) ? 0 : x1; - int ex = (x2 > W) ? W : x2; - for (int x = sx; x <= ex - 1; x++) { - float WV1 = ((yP[1] - yP[2]) * (x - xP[2]) + (xP[2] - xP[1]) * (y - yP[2])) / dn; - float WV2 = ((yP[2] - yP[0]) * (x - xP[2]) + (xP[0] - xP[2]) * (y - yP[2])) / dn; - float WV3 = 1 - WV1 - WV2; - - g->tileDx = WV1 * vX1 + WV2 * vX2 + WV3 * vX3; - g->tileDy = WV1 * vY1 + WV2 * vY2 + WV3 * vY3; - - drawFunction(x, y, value, settings, genericDataWarper); - } - } - } - } - return 0; - } - -public: - GenericDataWarper() { useHalfCellOffset = false; } - - /* Can be used in drawfunctions */ - void *sourceData; - - int sourceDataPX, sourceDataPY, sourceDataWidth, sourceDataHeight; - float tileDx, tileDy; - bool useHalfCellOffset; - - static int findPixelExtent(int *PXExtentBasedOnSource, CGeoParams *sourceGeoParams, CGeoParams *destGeoParams, CImageWarper *warper); - - template - int render(CImageWarper *warper, void *_sourceData, CGeoParams *sourceGeoParams, CGeoParams *destGeoParams, void *drawFunctionSettings, - void (*drawFunction)(int, int, T, void *drawFunctionSettings, void *genericDataWarper)) { - this->sourceData = _sourceData; -#ifdef GenericDataWarper_DEBUG - CDBDebug("render"); -#endif - - int imageHeight = destGeoParams->dHeight; - int imageWidth = destGeoParams->dWidth; - - // Reproj back and forth sourceGeoParams boundingbox - double y1 = sourceGeoParams->dfBBOX[1]; - double y2 = sourceGeoParams->dfBBOX[3]; - double x1 = sourceGeoParams->dfBBOX[0]; - double x2 = sourceGeoParams->dfBBOX[2]; - -#ifdef GenericDataWarper_DEBUG - CDBDebug("sourceGeoParams->dfBBOX %f, %f, %f, %f", sourceGeoParams->dfBBOX[0], sourceGeoParams->dfBBOX[1], sourceGeoParams->dfBBOX[2], sourceGeoParams->dfBBOX[3]); - CDBDebug("destGeoParams->dfBBOX %f, %f, %f, %f", destGeoParams->dfBBOX[0], destGeoParams->dfBBOX[1], destGeoParams->dfBBOX[2], destGeoParams->dfBBOX[3]); -#endif - if (y2 < y1) { - if (y1 > -360 && y2 < 360 && x1 > -720 && x2 < 720) { - if (CGeoParams::isLonLatProjection(&sourceGeoParams->CRS) == false) { - double checkBBOX[4]; - for (int j = 0; j < 4; j++) checkBBOX[j] = sourceGeoParams->dfBBOX[j]; - - // CDBDebug("Current BBOX: %f %f %f %f",sourceGeoParams->dfBBOX[0],sourceGeoParams->dfBBOX[1],sourceGeoParams->dfBBOX[2],sourceGeoParams->dfBBOX[3]); - bool hasError = false; - if (warper->reprojpoint_inv(checkBBOX[0], checkBBOX[1]) != 0) hasError = true; - if (warper->reprojpoint(checkBBOX[0], checkBBOX[1]) != 0) hasError = true; - - if (warper->reprojpoint_inv(checkBBOX[2], checkBBOX[3]) != 0) hasError = true; - if (warper->reprojpoint(checkBBOX[2], checkBBOX[3]) != 0) hasError = true; - - if (hasError == false) { - for (int j = 0; j < 4; j++) sourceGeoParams->dfBBOX[j] = checkBBOX[j]; - } - } - } - } - - double dfSourceExtW = (sourceGeoParams->dfBBOX[2] - sourceGeoParams->dfBBOX[0]); - double dfSourceExtH = (sourceGeoParams->dfBBOX[3] - sourceGeoParams->dfBBOX[1]); - double dfSourceW = double(sourceGeoParams->dWidth); - double dfSourceH = double(sourceGeoParams->dHeight); - - double dfDestW = double(destGeoParams->dWidth); - double dfDestH = double(destGeoParams->dHeight); - - double dfSourcedExtW = dfSourceExtW / (dfSourceW); - double dfSourcedExtH = dfSourceExtH / (dfSourceH); - double dfSourceOrigX = sourceGeoParams->dfBBOX[0]; - double dfSourceOrigY = sourceGeoParams->dfBBOX[1]; - - double dfDestExtW = destGeoParams->dfBBOX[2] - destGeoParams->dfBBOX[0]; - double dfDestExtH = destGeoParams->dfBBOX[1] - destGeoParams->dfBBOX[3]; - double multiDestX = double(imageWidth) / dfDestExtW; - - double multiDestY = double(imageHeight) / dfDestExtH; - - double dfDestOrigX = destGeoParams->dfBBOX[0]; //-0.5/multiDestX;; - double dfDestOrigY = destGeoParams->dfBBOX[3]; //+0.5/multiDestY;;; - - // Determine source BBOX of based on destination grid -#ifdef GenericDataWarper_DEBUG - CDBDebug("Creating px extent"); -#endif - - sourceDataWidth = sourceGeoParams->dWidth; - sourceDataHeight = sourceGeoParams->dHeight; - - int PXExtentBasedOnSource[4]; - - PXExtentBasedOnSource[0] = 0; - PXExtentBasedOnSource[1] = 0; - PXExtentBasedOnSource[2] = sourceDataWidth; - PXExtentBasedOnSource[3] = sourceDataHeight; - - bool tryToFindExtend = false; - - if (tryToFindExtend) { - findPixelExtent(PXExtentBasedOnSource, sourceGeoParams, destGeoParams, warper); - } - - if (PXExtentBasedOnSource[2] - PXExtentBasedOnSource[0] <= 0) return 0; - if (PXExtentBasedOnSource[3] - PXExtentBasedOnSource[1] <= 0) return 0; - int dataWidth = PXExtentBasedOnSource[2] - PXExtentBasedOnSource[0]; - int dataHeight = PXExtentBasedOnSource[3] - PXExtentBasedOnSource[1]; - - /* When geographical map projections are equal, just do a simple linear transformation */ - if (warper->isProjectionRequired() == false) { - // CDBDebug("warper->isProjectionRequired() = %d: Applying simple linear transformation",warper->isProjectionRequired()); - - // // PXExtentBasedOnSource[0] = source - - // CDBDebug("dfSourceW [%f] ", dfSourceW); - // CDBDebug("dfSourceOrigX [%f] ", dfSourceOrigX); - // CDBDebug("dfSourceExtW [%f] ", dfSourceExtW); - - // CDBDebug("dfDestW [%f] ", dfDestW); - // CDBDebug("dfDestOrigX [%f] ", dfDestOrigX); - // CDBDebug("dfDestExtW [%f] ", dfDestExtW); - - // double tX = ((dfDestOrigX-dfSourceOrigX)/dfSourceExtW)*dfSourceW; - // double tY = (((dfDestOrigY+dfDestExtH)-dfSourceOrigY)/dfSourceExtH)*dfSourceH; - - // double eY = ((dfDestOrigY-dfSourceOrigY)/dfSourceExtH)*dfSourceH + 1; - // double eX = (((dfDestOrigX+dfDestExtW)-dfSourceOrigX)/dfSourceExtW)*dfSourceW + 1; - - // // CDBDebug("TESTX = %f;%f, %f;%f", tX, eX, tY, eY); - - // PXExtentBasedOnSource[0] = tX < 0 ? 0 : tX; - // PXExtentBasedOnSource[1] = tY < 0 ? 0 : tY; - // PXExtentBasedOnSource[2] = eX > sourceDataWidth ? sourceDataWidth : eX; - // PXExtentBasedOnSource[3] = eY > sourceDataHeight ? sourceDataHeight : eY; - // // CDBDebug("PX extent is [%d,%d,%d,%d] ", PXExtentBasedOnSource[0], PXExtentBasedOnSource[1], PXExtentBasedOnSource[2], PXExtentBasedOnSource[3]); - - dataWidth = PXExtentBasedOnSource[2] - PXExtentBasedOnSource[0]; - dataHeight = PXExtentBasedOnSource[3] - PXExtentBasedOnSource[1]; - -#ifdef GenericDataWarper_DEBUG - - CDBDebug("PX extent is [%d,%d,%d,%d] ", PXExtentBasedOnSource[0], PXExtentBasedOnSource[1], PXExtentBasedOnSource[2], PXExtentBasedOnSource[3]); - - CDBDebug("dfSourceW [%f] ", dfSourceW); - CDBDebug("dfDestW [%f] ", dfDestW); - CDBDebug("dfSourceExtW [%f] ", dfSourceExtW); - CDBDebug("dfDestExtW [%f] ", dfDestExtW); - CDBDebug("dfSourceOrigX [%f] ", dfSourceOrigX); - CDBDebug("dfDestOrigX [%f] ", dfDestOrigX); - - CDBDebug("dfSourceH [%f] ", dfSourceH); - CDBDebug("dfDestH [%f] ", dfDestH); - CDBDebug("dfSourceExtH [%f] ", dfSourceExtH); - CDBDebug("dfDestExtH [%f] ", dfDestExtH); - CDBDebug("dfSourceOrigY [%f] ", dfSourceOrigX); - CDBDebug("dfDestOrigY [%f] ", dfDestOrigX); - -#endif - - for (int y = PXExtentBasedOnSource[1]; y < PXExtentBasedOnSource[3]; y++) { - for (int x = PXExtentBasedOnSource[0]; x < PXExtentBasedOnSource[2]; x++) { - - double dfx = x; - double dfy = y; - int sx1 = roundedLinearTransform(dfx, dfSourceW, dfSourceExtW, dfSourceOrigX, dfDestOrigX, dfDestExtW, dfDestW); - int sx2 = roundedLinearTransform(dfx + 1, dfSourceW, dfSourceExtW, dfSourceOrigX, dfDestOrigX, dfDestExtW, dfDestW); - int sy1 = roundedLinearTransform(dfy, dfSourceH, dfSourceExtH, dfSourceOrigY, dfDestOrigY, dfDestExtH, dfDestH); - int sy2 = roundedLinearTransform(dfy + 1, dfSourceH, dfSourceExtH, dfSourceOrigY, dfDestOrigY, dfDestExtH, dfDestH); - bool skip = false; - int sxw = floor(fabs(sx2 - sx1)) + 1; - int syh = floor(fabs(sy2 - sy1)) + 1; - // CDBDebug("%d %d %d %d", sx1, sy1, sx2 ,sy2); - if (sx1 < -sxw && sx2 < -sxw) skip = true; - if (sy1 < -syh && sy2 < -syh) skip = true; - if (sx1 >= destGeoParams->dWidth + sxw && sx2 >= destGeoParams->dWidth + sxw) skip = true; - if (sy1 >= destGeoParams->dHeight + syh && sy2 >= destGeoParams->dHeight + syh) skip = true; - // - - if (!skip) { - this->sourceDataPX = x; - this->sourceDataPY = sourceGeoParams->dHeight - 1 - y; - T value = ((T *)sourceData)[this->sourceDataPX + (this->sourceDataPY) * sourceGeoParams->dWidth]; - int lx1, lx2, ly1, ly2; - if (sx1 > sx2) { - lx2 = sx1; - lx1 = sx2; - } else { - lx2 = sx2; - lx1 = sx1; - } - if (sy1 > sy2) { - ly2 = sy1; - ly1 = sy2; - } else { - ly2 = sy2; - ly1 = sy1; - } - if (ly2 == ly1) ly2++; - if (lx2 == lx1) lx2++; - for (int sjy = ly1; sjy < ly2; sjy++) { - for (int sjx = lx1; sjx < lx2; sjx++) { - this->tileDy = (sjy - ly1) / float(ly2 - ly1); - this->tileDx = (sjx - lx1) / float(lx2 - lx1); - drawFunction(sjx, sjy, value, drawFunctionSettings, this); - } - } - } - } - } - // CDBDebug("warper->isProjectionRequired() = %d: Finished simple linear transformation",warper->isProjectionRequired()); - return 0; - } -#ifdef GenericDataWarper_DEBUG - CDBDebug("warp is required"); -#endif - - bool useStridingProjection = false; - int projStrideFactor = 16; - if (dataWidth * dataHeight > 1000 * 1000) { - useStridingProjection = true; - } - - double halfCell = useHalfCellOffset ? 0.5 : 0; - - size_t dataSize = (dataWidth + 1) * (dataHeight + 1); - - double *px = new double[dataSize]; - double *py = new double[dataSize]; - char *skip = new char[dataSize]; - - if (!useStridingProjection) { - for (int y = 0; y < dataHeight + 1; y++) { - for (int x = 0; x < dataWidth + 1; x++) { - size_t p = x + y * (dataWidth + 1); - double valX = dfSourcedExtW * (x + halfCell + PXExtentBasedOnSource[0]) + dfSourceOrigX; - double valY = dfSourcedExtH * (y - halfCell + PXExtentBasedOnSource[1]) + dfSourceOrigY; - px[p] = valX; - py[p] = valY; - skip[p] = false; - } - } - if (warper->isProjectionRequired()) { - if (proj_trans_generic(warper->projSourceToDest, PJ_FWD, px, sizeof(double), dataSize, py, sizeof(double), dataSize, nullptr, 0, 0, nullptr, 0, 0) != dataSize) { - CDBDebug("Unable to do pj_transform"); - } - } - - } else { - - size_t dataWidthStrided = dataWidth / projStrideFactor + projStrideFactor; - size_t dataHeightStrided = dataHeight / projStrideFactor + projStrideFactor; - size_t dataSizeStrided = (dataWidthStrided) * (dataHeightStrided); - - double *pxStrided = new double[dataSizeStrided]; - double *pyStrided = new double[dataSizeStrided]; - - /* TODO faster init */ - for (int y = 0; y < dataHeight + 1; y++) { - for (int x = 0; x < dataWidth + 1; x++) { - size_t p = x + y * (dataWidth + 1); - px[p] = DBL_MAX; - py[p] = DBL_MAX; - skip[p] = false; - } - } - for (size_t y = 0; y < dataHeightStrided; y++) { - for (size_t x = 0; x < dataWidthStrided; x++) { - size_t pS = x + y * dataWidthStrided; - - double valX = dfSourcedExtW * (x * projStrideFactor + halfCell + PXExtentBasedOnSource[0]) + dfSourceOrigX; - double valY = dfSourcedExtH * (y * projStrideFactor - halfCell + PXExtentBasedOnSource[1]) + dfSourceOrigY; - pxStrided[pS] = valX; - pyStrided[pS] = valY; - } - } - - if (warper->isProjectionRequired()) { - if (proj_trans_generic(warper->projSourceToDest, PJ_FWD, pxStrided, sizeof(double), dataSizeStrided, pyStrided, sizeof(double), - dataSizeStrided, nullptr, 0, 0, nullptr, 0, 0) != dataSizeStrided) { - CDBDebug("Unable to do pj_transform"); - } - } - for (int y = 0; y < dataHeight + 1; y++) { - for (int x = 0; x < dataWidth + 1; x++) { - size_t p = x + y * (dataWidth + 1); - size_t pS = (x / projStrideFactor) + (y / projStrideFactor) * (dataWidthStrided); - float sX = float(x % projStrideFactor) / float(projStrideFactor); - float sY = float(y % projStrideFactor) / float(projStrideFactor); - double x1 = pxStrided[pS] * (1 - sX) + pxStrided[pS + 1] * sX; - ; - double x2 = pxStrided[pS + dataWidthStrided] * (1 - sX) + pxStrided[pS + 1 + dataWidthStrided] * sX; - ; - px[p] = x1 * (1 - sY) + x2 * sY; - - double y1 = pyStrided[pS] * (1 - sY) + pyStrided[pS + dataWidthStrided] * sY; - ; - double y2 = pyStrided[pS + 1] * (1 - sY) + pyStrided[pS + dataWidthStrided + 1] * sY; - ; - py[p] = y1 * (1 - sX) + y2 * sX; - } - } - delete[] pyStrided; - delete[] pxStrided; - } -#ifdef GenericDataWarper_DEBUG - CDBDebug("Reprojection done"); -#endif - - for (size_t j = 0; j < dataSize; j++) { - if (!(px[j] > -DBL_MAX && px[j] < DBL_MAX)) skip[j] = true; - } - - double avgDX = 0; - double avgDY = 0; - // double prevpx1,prevpx2; - - double pLengthD = 0; - - for (int y = 0; y < dataHeight; y = y + 1) { - for (int x = 0; x < dataWidth; x = x + 1) { - size_t p = x + y * (dataWidth + 1); - if (skip[p] == false && skip[p + 1] == false && skip[p + dataWidth + 1] == false && skip[p + dataWidth + 2] == false) { - bool doDraw = true; - // Order for the quad corners is: - // px1 -- px2 - // | | - // px4 -- px3 - - double px1 = px[p]; - double px2 = px[p + 1]; - double px3 = px[p + dataWidth + 2]; - double px4 = px[p + dataWidth + 1]; - - double py1 = py[p]; - double py2 = py[p + 1]; - double py3 = py[p + dataWidth + 2]; - double py4 = py[p + dataWidth + 1]; - - // CDBDebug("destGeoParams = %s",destGeoParams->CRS.c_str()); - if (CGeoParams::isLonLatProjection(&destGeoParams->CRS) == true || CGeoParams::isMercatorProjection(&destGeoParams->CRS) == true) { - double lons[4]; - lons[0] = px1; - lons[1] = px2; - lons[2] = px3; - lons[3] = px4; - - float lonMin, lonMax, lonMiddle = 0; - for (int j = 0; j < 4; j++) { - float lon = lons[j]; - if (j == 0) { - lonMin = lon; - lonMax = lon; - } else { - if (lon < lonMin) lonMin = lon; - if (lon > lonMax) lonMax = lon; - } - lonMiddle += lon; - if (lon == INFINITY || lon == -INFINITY || !(lon == lon)) { - doDraw = false; - break; - } - } - lonMiddle /= 4; - double sphereWidth = 360; - if (CGeoParams::isMercatorProjection(&destGeoParams->CRS)) { - sphereWidth = 40000000; - } - - if (lonMax - lonMin >= sphereWidth * 0.9) { - if (lonMiddle > 0) { - for (int j = 0; j < 4; j++) - if (lons[j] < lonMiddle) lons[j] += sphereWidth; - } else { - for (int j = 0; j < 4; j++) - if (lons[j] > lonMiddle) lons[j] -= sphereWidth; - } - } - px1 = lons[0]; - px2 = lons[1]; - px3 = lons[2]; - px4 = lons[3]; - } - - px1 = (px1 - dfDestOrigX) * multiDestX + 0.5; - px2 = (px2 - dfDestOrigX) * multiDestX + 0.5; - px3 = (px3 - dfDestOrigX) * multiDestX + 0.5; - px4 = (px4 - dfDestOrigX) * multiDestX + 0.5; - - py1 = (py1 - dfDestOrigY) * multiDestY + 0.5; - py2 = (py2 - dfDestOrigY) * multiDestY + 0.5; - py3 = (py3 - dfDestOrigY) * multiDestY + 0.5; - py4 = (py4 - dfDestOrigY) * multiDestY + 0.5; - - if (x == 0) avgDX = px2; - if (y == 0) avgDY = py4; - - // Calculate the diagonal length of the quad. - double lengthD = (px3 - px1) * (px3 - px1) + (py3 - py1) * (py3 - py1); - - if (x == 0 && y == 0) { - pLengthD = lengthD; - } - - // If suddenly the length of the quad is 10 times bigger, we probably have an anomaly and we should not draw it. - if (lengthD > pLengthD * 10) { - doDraw = false; - } - - // /* - // If the previous pixel width is suddenly 10 times bigger, - // or 10 times smaller, skip it . - // It is probably wrapped arround the date border. - // */ - // if (x ==0 && y==0) { - // prevpx1=px1; - // prevpx2=px2; - // } - // if (fabs(prevpx2-prevpx1) < (fabs(px2-px1)/10.0f)) { - // doDraw = false; - // } - // if (fabs(prevpx2-prevpx1) > (fabs(px2-px1)*10.0f)) { - // doDraw = false; - // } - - // prevpx1=px1; - // prevpx2=px2; - - if (x == dataWidth - 1) { - if (fabs(avgDX - px1) < fabs(px1 - px2) / 2) { - doDraw = false; - } - if (fabs(avgDX - px2) < fabs(px1 - px2) / 2) { - doDraw = false; - } - } - if (y == dataHeight - 1) { - if (fabs(avgDY - py1) < fabs(py1 - py4) / 2) { - doDraw = false; - } - } - - if (doDraw) { - int sourceGridX = x + PXExtentBasedOnSource[0]; - int sourceGridY = y + PXExtentBasedOnSource[1]; - this->sourceDataPX = sourceGridX; - this->sourceDataPY = (sourceDataHeight - 1 - sourceGridY); - T value = ((T *)sourceData)[this->sourceDataPX + this->sourceDataPY * sourceDataWidth]; - - int xP[3]; - int yP[3]; - xP[0] = px1; - yP[0] = py1; - - xP[1] = px2; - yP[1] = py2; - - xP[2] = px3; - yP[2] = py3; - drawTriangle(xP, yP, value, imageWidth, imageHeight, drawFunctionSettings, drawFunction, (void *)this, false); - - xP[0] = px3; - yP[0] = py3; - - xP[1] = px1; - yP[1] = py1; - - xP[2] = px4; - yP[2] = py4; - drawTriangle(xP, yP, value, imageWidth, imageHeight, drawFunctionSettings, drawFunction, (void *)this, true); - } - pLengthD = lengthD; - } - } - } - delete[] px; - delete[] py; - delete[] skip; -#ifdef GenericDataWarper_DEBUG - CDBDebug("render done"); -#endif - return 0; - } -}; -#endif diff --git a/adagucserverEC/CImageDataWriter.cpp b/adagucserverEC/CImageDataWriter.cpp index b1e675901..ced8db1fd 100644 --- a/adagucserverEC/CImageDataWriter.cpp +++ b/adagucserverEC/CImageDataWriter.cpp @@ -36,7 +36,8 @@ #include "CMakeEProfile.h" #include "CReporter.h" #include "CImgWarpHillShaded.h" -#include "CImgWarpGeneric.h" +#include "GenericDataWarper/CImgWarpGeneric.h" +#include "GenericDataWarper/gdwFindPixelExtent.h" #ifndef rad2deg #define rad2deg (180. / M_PI) // conversion for rad to deg @@ -1378,7 +1379,7 @@ int CImageDataWriter::warpImage(CDataSource *dataSource, CDrawImage *drawImage) sourceGeo.dfCellSizeY = dataSource->dfCellSizeY; sourceGeo.CRS = dataSource->nativeProj4; int PXExtentBasedOnSource[4]; - GenericDataWarper::findPixelExtent(PXExtentBasedOnSource, &sourceGeo, srvParam->Geo, &warper); + gdwFindPixelExtent(PXExtentBasedOnSource, &sourceGeo, srvParam->Geo, &warper); status = reader.openExtent(dataSource, CNETCDFREADER_MODE_OPEN_EXTENT, PXExtentBasedOnSource); } else { diff --git a/adagucserverEC/CImageOperators/smoothRasterField.cpp b/adagucserverEC/CImageOperators/smoothRasterField.cpp new file mode 100644 index 000000000..04f5a6797 --- /dev/null +++ b/adagucserverEC/CImageOperators/smoothRasterField.cpp @@ -0,0 +1,67 @@ +#include "smoothRasterField.h" +#include +#include + +float *smoothingMakeDistanceMatrix(int smoothWindowSize) { + if (smoothWindowSize == 0) { + return nullptr; + } + float *distanceMatrix = new float((smoothWindowSize + 1) * 2 * (smoothWindowSize + 1) * 2); + float distanceAmmount = 0; + int dWinP = 0; + for (int y1 = -smoothWindowSize; y1 < smoothWindowSize + 1; y1++) { + for (int x1 = -smoothWindowSize; x1 < smoothWindowSize + 1; x1++) { + float d = sqrt(x1 * x1 + y1 * y1); + d = 1 / (d + 1); + distanceMatrix[dWinP++] = d; + distanceAmmount += d; + } + } + return distanceMatrix; +} + +float smoothingAtLocation(float *inputGrid, float *distanceMatrix, int smoothWindowSize, float fNodataValue, int gridLocationX, int gridLocationY, int gridWidth, int gridHeight) { + if (smoothWindowSize == 0 || distanceMatrix == nullptr) { + return fNodataValue; + } + size_t p = size_t(gridLocationX + gridLocationY * gridWidth); + if (inputGrid[p] == fNodataValue) { + return fNodataValue; + } + float distanceAmmount = 0; + int dWinP = 0; + float resultValue = 0; + for (int y1 = -smoothWindowSize; y1 < smoothWindowSize + 1; y1++) { + size_t yp = y1 * gridWidth; + for (int x1 = -smoothWindowSize; x1 < smoothWindowSize + 1; x1++) { + if (x1 + gridLocationX < gridWidth && y1 + gridLocationY < gridHeight && x1 + gridLocationX >= 0 && y1 + gridLocationY >= 0) { + float val = inputGrid[p + x1 + yp]; + if (val != fNodataValue) { + float d = distanceMatrix[dWinP]; + distanceAmmount += d; + resultValue += val * d; + } + } + dWinP++; + } + } + if (distanceAmmount > 0) resultValue /= distanceAmmount; + return resultValue; +} + +void smoothRasterField(float *inputGrid, float fNodataValue, int smoothWindowSize, int W, int H) { + if (smoothWindowSize == 0) return; // No smoothing. + size_t drawImageSize = W * H; + float *resultGrid = new float[W * H]; + float *distanceMatrix = smoothingMakeDistanceMatrix(smoothWindowSize); + for (int y = 0; y < H; y++) { + for (int x = 0; x < W; x++) { + resultGrid[x + y * W] = smoothingAtLocation(inputGrid, distanceMatrix, smoothWindowSize, fNodataValue, x, y, W, H); + } + } + for (size_t p = 0; p < drawImageSize; p++) { + inputGrid[p] = resultGrid[p]; + } + delete[] distanceMatrix; + delete[] resultGrid; +} diff --git a/adagucserverEC/CImageOperators/smoothRasterField.h b/adagucserverEC/CImageOperators/smoothRasterField.h new file mode 100644 index 000000000..241783111 --- /dev/null +++ b/adagucserverEC/CImageOperators/smoothRasterField.h @@ -0,0 +1,8 @@ + +#ifndef SMOOTHRASTERFIELD_H + +float *smoothingMakeDistanceMatrix(int smoothWindowSize); +float smoothingAtLocation(float *inputGrid, float *distanceMatrix, int smoothWindowSize, float fNodataValue, int gridLocationX, int gridLocationY, int gridWidth, int gridHeight); +void smoothRasterField(float *valueData, float fNodataValue, int smoothWindow, int W, int H); + +#endif // !SMOOTHRASTERFIELD_H diff --git a/adagucserverEC/CImgRenderStippling.cpp b/adagucserverEC/CImgRenderStippling.cpp index e51e6154c..e2c2e840a 100644 --- a/adagucserverEC/CImgRenderStippling.cpp +++ b/adagucserverEC/CImgRenderStippling.cpp @@ -24,7 +24,7 @@ ******************************************************************************/ #include "CImgRenderStippling.h" -#include "CGenericDataWarper.h" +#include "GenericDataWarper/CGenericDataWarper.h" int CImgRenderStippling::set(const char *) { return 0; } const char *CImgRenderStippling::className = "CImgRenderStippling"; @@ -207,7 +207,7 @@ void CImgRenderStippling::render(CImageWarper *warper, CDataSource *dataSource, int startY = int(((dataSource->srvParams->Geo->dfBBOX[1]) / bboxHeight) * dataSource->srvParams->Geo->dHeight); startY = (startY % (yDistance * 2)) - (yDistance * 2); - GenericDataWarper genericDataWarper; + CGenericDataWarper genericDataWarper; switch (dataType) { case CDF_CHAR: genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &drawFunction); diff --git a/adagucserverEC/CImgRenderStippling.h b/adagucserverEC/CImgRenderStippling.h index 754712fec..617ffa168 100644 --- a/adagucserverEC/CImgRenderStippling.h +++ b/adagucserverEC/CImgRenderStippling.h @@ -28,7 +28,7 @@ #include #include #include "CImageWarperRenderInterface.h" -#include "CGenericDataWarper.h" +#include "GenericDataWarper/CGenericDataWarper.h" #define CImgRenderStipplingModeDefault 0 #define CImgRenderStipplingModeThreshold 1 diff --git a/adagucserverEC/CImgWarpBilinear.cpp b/adagucserverEC/CImgWarpBilinear.cpp index 1692450c4..8568a5a6a 100644 --- a/adagucserverEC/CImgWarpBilinear.cpp +++ b/adagucserverEC/CImgWarpBilinear.cpp @@ -38,6 +38,7 @@ #endif #include "CImgRenderFieldVectors.h" +#include "CImageOperators/smoothRasterField.h" const char *CImgWarpBilinear::className = "CImgWarpBilinear"; void CImgWarpBilinear::render(CImageWarper *warper, CDataSource *sourceImage, CDrawImage *drawImage) { @@ -299,7 +300,7 @@ void CImgWarpBilinear::render(CImageWarper *warper, CDataSource *sourceImage, CD #ifdef CImgWarpBilinear_DEBUG CDBDebug("start smoothing data with filter %d", smoothingFilter); #endif - smoothData(fpValues, fNodataValue, smoothingFilter, dPixelDestW + 1, dPixelDestH + 1); + smoothRasterField(fpValues, fNodataValue, smoothingFilter, dPixelDestW + 1, dPixelDestH + 1); // Draw the obtained raster by using triangle tesselation (eg gouraud shading) int xP[4], yP[4]; @@ -514,68 +515,6 @@ unsigned short CImgWarpBilinear::checkIfContourRequired(float *val) { return 0; } -void CImgWarpBilinear::smoothData(float *valueData, float fNodataValue, int smoothWindow, int W, int H) { - -// SmootH! -#ifdef CImgWarpBilinear_TIME - StopWatch_Stop("[SmoothData]"); -#endif - if (smoothWindow == 0) return; // No smoothing. - size_t drawImageSize = W * H; - float *valueData2 = new float[W * H]; - int smw = smoothWindow; - // Create distance window; - float distanceWindow[(smw + 1) * 2 * (smw + 1) * 2]; - float distanceAmmount = 0; - int dWinP = 0; - for (int y1 = -smw; y1 < smw + 1; y1++) { - for (int x1 = -smw; x1 < smw + 1; x1++) { - float d = sqrt(x1 * x1 + y1 * y1); - // d=d*8; - - d = 1 / (d + 1); - // d=1; - distanceWindow[dWinP++] = d; - distanceAmmount += d; - } - } - - float d; - for (int y = 0; y < H; y++) { - for (int x = 0; x < W; x++) { - size_t p = size_t(x + y * W); - if (valueData[p] != fNodataValue) { - dWinP = 0; - distanceAmmount = 0; - valueData2[p] = 0; - for (int y1 = -smw; y1 < smw + 1; y1++) { - size_t yp = y1 * W; - for (int x1 = -smw; x1 < smw + 1; x1++) { - if (x1 + x < W && y1 + y < H && x1 + x >= 0 && y1 + y >= 0) { - float val = valueData[p + x1 + yp]; - if (val != fNodataValue) { - d = distanceWindow[dWinP]; - distanceAmmount += d; - valueData2[p] += val * d; - } - } - dWinP++; - } - } - if (distanceAmmount > 0) valueData2[p] /= distanceAmmount; - } else - valueData2[p] = fNodataValue; - } - } - for (size_t p = 0; p < drawImageSize; p++) { - valueData[p] = valueData2[p]; - } - delete[] valueData2; -#ifdef CImgWarpBilinear_TIME - StopWatch_Stop("[/SmoothData]"); -#endif -} - int CImgWarpBilinear::set(const char *pszSettings) { // fprintf(stderr, "CImgWarpBilinear.set(%s)\n", pszSettings); //"drawMap=false;drawContour=true;contourSmallInterval=1.0;contourBigInterval=10.0;" diff --git a/adagucserverEC/CImgWarpBilinear.h b/adagucserverEC/CImgWarpBilinear.h index 53ea0bc3a..4cf3b1964 100644 --- a/adagucserverEC/CImgWarpBilinear.h +++ b/adagucserverEC/CImgWarpBilinear.h @@ -259,7 +259,6 @@ class CImgWarpBilinear : public CImageWarperRenderInterface { } void drawContour(float *valueData, float fNodataValue, float interval, CDataSource *dataSource, CDrawImage *drawImage, bool drawLine, bool drawShade, bool drawText); - void smoothData(float *valueData, float fNodataValue, int smoothWindow, int W, int H); }; #endif diff --git a/adagucserverEC/CImgWarpGeneric.h b/adagucserverEC/CImgWarpGeneric.h deleted file mode 100644 index 03e864f85..000000000 --- a/adagucserverEC/CImgWarpGeneric.h +++ /dev/null @@ -1,93 +0,0 @@ -/****************************************************************************** - * - * Project: ADAGUC Server - * Purpose: ADAGUC OGC Server - * Author: Maarten Plieger, plieger "at" knmi.nl - * Date: 2020-12-09 - * - ****************************************************************************** - * - * Copyright 2013, Royal Netherlands Meteorological Institute (KNMI) - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - ******************************************************************************/ - -#ifndef CImgWarpGeneric_H -#define CImgWarpGeneric_H -#include - -#include "CImageWarperRenderInterface.h" -#include "CGenericDataWarper.h" - -static inline int nfast_mod(const int input, const int ceil) { return input >= ceil ? input % ceil : input; } - -class CImgWarpGeneric : public CImageWarperRenderInterface { -private: - DEF_ERRORFUNCTION(); - class Settings { - public: - double dfNodataValue; - double legendValueRange; - double legendLowerRange; - double legendUpperRange; - bool hasNodataValue; - float *dataField; - int width, height; - }; - - template static void drawFunction(int x, int y, T val, void *_settings, void *g) { - Settings *drawSettings = static_cast(_settings); - if (x < 0 || y < 0 || x > drawSettings->width || y > drawSettings->height) return; - GenericDataWarper *genericDataWarper = static_cast(g); - bool isNodata = false; - if (drawSettings->hasNodataValue) { - if ((val) == (T)drawSettings->dfNodataValue) isNodata = true; - } - if (!(val == val)) isNodata = true; - if (!isNodata) { - T *sourceData = (T *)genericDataWarper->sourceData; - size_t sourceDataPX = genericDataWarper->sourceDataPX; - size_t sourceDataPY = genericDataWarper->sourceDataPY; - size_t sourceDataWidth = genericDataWarper->sourceDataWidth; - size_t sourceDataHeight = genericDataWarper->sourceDataHeight; - - if (sourceDataPY > sourceDataHeight - 1) return; - if (sourceDataPX > sourceDataWidth - 1) return; - - T values[2][2] = {{0, 0}, {0, 0}}; - - values[0][0] += ((T *)sourceData)[nfast_mod(sourceDataPX + 0, sourceDataWidth) + nfast_mod(sourceDataPY + 0, sourceDataHeight) * sourceDataWidth]; - values[1][0] += ((T *)sourceData)[nfast_mod(sourceDataPX + 1, sourceDataWidth) + nfast_mod(sourceDataPY + 0, sourceDataHeight) * sourceDataWidth]; - values[0][1] += ((T *)sourceData)[nfast_mod(sourceDataPX + 0, sourceDataWidth) + nfast_mod(sourceDataPY + 1, sourceDataHeight) * sourceDataWidth]; - values[1][1] += ((T *)sourceData)[nfast_mod(sourceDataPX + 1, sourceDataWidth) + nfast_mod(sourceDataPY + 1, sourceDataHeight) * sourceDataWidth]; - - if (x >= 0 && y >= 0 && x < (int)drawSettings->width && y < (int)drawSettings->height) { - float dx = genericDataWarper->tileDx; - float dy = genericDataWarper->tileDy; - float gx1 = (1 - dx) * values[0][0] + dx * values[1][0]; - float gx2 = (1 - dx) * values[0][1] + dx * values[1][1]; - float bilValue = (1 - dy) * gx1 + dy * gx2; - drawSettings->dataField[x + y * drawSettings->width] = bilValue; - } - } - }; - -public: - CImgWarpGeneric() {} - ~CImgWarpGeneric() {} - void render(CImageWarper *warper, CDataSource *dataSource, CDrawImage *drawImage) override; - int set(const char *pszSettings) override; -}; - -#endif diff --git a/adagucserverEC/CImgWarpHillShaded.cpp b/adagucserverEC/CImgWarpHillShaded.cpp index af8822400..90a6afcb3 100644 --- a/adagucserverEC/CImgWarpHillShaded.cpp +++ b/adagucserverEC/CImgWarpHillShaded.cpp @@ -25,7 +25,7 @@ #include "CImgWarpHillShaded.h" #include "CImageDataWriter.h" -#include "CGenericDataWarper.h" +#include "GenericDataWarper/CGenericDataWarper.h" const char *CImgWarpHillShaded::className = "CImgWarpHillShaded"; @@ -70,7 +70,7 @@ void CImgWarpHillShaded::render(CImageWarper *warper, CDataSource *dataSource, C sourceGeo.dfCellSizeY = dataSource->dfCellSizeY; sourceGeo.CRS = dataSource->nativeProj4; - GenericDataWarper genericDataWarper; + CGenericDataWarper genericDataWarper; switch (dataType) { case CDF_CHAR: genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &drawFunction); diff --git a/adagucserverEC/CImgWarpHillShaded.h b/adagucserverEC/CImgWarpHillShaded.h index ad3a8cf87..1495533ab 100644 --- a/adagucserverEC/CImgWarpHillShaded.h +++ b/adagucserverEC/CImgWarpHillShaded.h @@ -27,7 +27,7 @@ #define CImgWarpHillShaded_H #include #include "CImageWarperRenderInterface.h" -#include "CGenericDataWarper.h" +#include "GenericDataWarper/CGenericDataWarper.h" #include "utils.h" class Vector { @@ -71,7 +71,7 @@ class CImgWarpHillShaded : public CImageWarperRenderInterface { template static void drawFunction(int x, int y, T val, void *_settings, void *g) { Settings *drawSettings = static_cast(_settings); if (x < 0 || y < 0 || x > drawSettings->width || y > drawSettings->height) return; - GenericDataWarper *genericDataWarper = static_cast(g); + CGenericDataWarper *genericDataWarper = static_cast(g); bool isNodata = false; if (drawSettings->hasNodataValue) { if ((val) == (T)drawSettings->dfNodataValue) isNodata = true; @@ -81,11 +81,11 @@ class CImgWarpHillShaded : public CImageWarperRenderInterface { if (drawSettings->legendValueRange) if (val < drawSettings->legendLowerRange || val > drawSettings->legendUpperRange) isNodata = true; if (!isNodata) { - T *sourceData = (T *)genericDataWarper->sourceData; - size_t sourceDataPX = genericDataWarper->sourceDataPX; - size_t sourceDataPY = genericDataWarper->sourceDataPY; - size_t sourceDataWidth = genericDataWarper->sourceDataWidth; - size_t sourceDataHeight = genericDataWarper->sourceDataHeight; + T *sourceData = (T *)genericDataWarper->warperState.sourceData; + size_t sourceDataPX = genericDataWarper->warperState.sourceDataPX; + size_t sourceDataPY = genericDataWarper->warperState.sourceDataPY; + size_t sourceDataWidth = genericDataWarper->warperState.sourceDataWidth; + size_t sourceDataHeight = genericDataWarper->warperState.sourceDataHeight; if (sourceDataPY > sourceDataHeight - 1) return; if (sourceDataPX > sourceDataWidth - 1) return; @@ -126,8 +126,8 @@ class CImgWarpHillShaded : public CImageWarperRenderInterface { float c10 = DotProduct(lightSource, normal10); float c01 = DotProduct(lightSource, normal01); float c11 = DotProduct(lightSource, normal11); - float dx = genericDataWarper->tileDx; - float dy = genericDataWarper->tileDy; + float dx = genericDataWarper->warperState.tileDx; + float dy = genericDataWarper->warperState.tileDy; float gx1 = (1 - dx) * c00 + dx * c10; float gx2 = (1 - dx) * c01 + dx * c11; float bilValue = (1 - dy) * gx1 + dy * gx2; diff --git a/adagucserverEC/CImgWarpNearestNeighbour.h b/adagucserverEC/CImgWarpNearestNeighbour.h index 99f57204d..6f013baa5 100644 --- a/adagucserverEC/CImgWarpNearestNeighbour.h +++ b/adagucserverEC/CImgWarpNearestNeighbour.h @@ -29,7 +29,7 @@ #include #include #include "CImageWarperRenderInterface.h" -#include "CGenericDataWarper.h" +#include "GenericDataWarper/CGenericDataWarper.h" #include "CAreaMapper.h" #include "CDrawFunction.h" @@ -420,8 +420,8 @@ class CImgWarpNearestNeighbour : public CImageWarperRenderInterface { sourceGeo.dfCellSizeX = dataSource->dfCellSizeX; sourceGeo.dfCellSizeY = dataSource->dfCellSizeY; sourceGeo.CRS = dataSource->nativeProj4; - - GenericDataWarper genericDataWarper; + CDBDebug("PRECISING?"); + CGenericDataWarper genericDataWarper; switch (dataType) { case CDF_CHAR: genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &drawFunction); diff --git a/adagucserverEC/CMakeLists.txt b/adagucserverEC/CMakeLists.txt index 69b234c70..8502c7170 100644 --- a/adagucserverEC/CMakeLists.txt +++ b/adagucserverEC/CMakeLists.txt @@ -81,6 +81,16 @@ add_library( utils/UpdateLayerMetadata.cpp utils/ConfigurationUtils.h utils/ConfigurationUtils.cpp + GenericDataWarper/gdwDrawTriangle.h + GenericDataWarper/gdwDrawTriangle.cpp + GenericDataWarper/gdwDrawFunction.h + GenericDataWarper/gdwDrawFunction.cpp + GenericDataWarper/CGenericDataWarper.cpp + GenericDataWarper/CGenericDataWarper.h + GenericDataWarper/CImgWarpGeneric.cpp + GenericDataWarper/CImgWarpGeneric.h + GenericDataWarper/gdwFindPixelExtent.cpp + GenericDataWarper/gdwFindPixelExtent.h Types/LayerMetadataType.h CDataPostProcessors/CDataPostProcessor_AddFeatures.cpp CDataPostProcessors/CDataPostProcessor_AddFeatures.h @@ -120,8 +130,6 @@ add_library( CFillTriangle.h CGDALDataWriter.cpp CGDALDataWriter.h - CGenericDataWarper.cpp - CGenericDataWarper.h CGeoJSONData.cpp CGeoJSONData.h CGeoParams.cpp @@ -132,6 +140,8 @@ add_library( CHandleMetadata.h CImageDataWriter.cpp CImageDataWriter.h + CImageOperators/smoothRasterField.h + CImageOperators/smoothRasterField.cpp CImageWarper.cpp CImageWarper.h CImgRenderPolylines.cpp @@ -144,8 +154,6 @@ add_library( CImgWarpBilinear.h CImgWarpBoolean.cpp CImgWarpBoolean.h - CImgWarpGeneric.cpp - CImgWarpGeneric.h CImgWarpHillShaded.cpp CImgWarpHillShaded.h CImgWarpNearestNeighbour.cpp diff --git a/adagucserverEC/CNetCDFDataWriter.cpp b/adagucserverEC/CNetCDFDataWriter.cpp index 37898f1ec..1e72b5155 100644 --- a/adagucserverEC/CNetCDFDataWriter.cpp +++ b/adagucserverEC/CNetCDFDataWriter.cpp @@ -1,5 +1,6 @@ #include "CNetCDFDataWriter.h" -#include "CGenericDataWarper.h" +#include "GenericDataWarper/CGenericDataWarper.h" +#include "GenericDataWarper/gdwFindPixelExtent.h" const char *CNetCDFDataWriter::className = "CNetCDFDataWriter"; #include "CRequest.h" // #define CNetCDFDataWriter_DEBUG @@ -384,7 +385,7 @@ int CNetCDFDataWriter::init(CServerParams *srvParam, CDataSource *dataSource, in case CDF_INT64: ((long *)var->data)[j] = dimValue.toLong(); break; - case CDF_UINT64: // TODO: All unsigned versions don't work if the full unsigned range is needed + case CDF_UINT64: // TODO: All unsigned versions don't work if the full unsigned range is needed ((unsigned long *)var->data)[j] = dimValue.toLong(); break; case CDF_FLOAT: @@ -576,7 +577,7 @@ int CNetCDFDataWriter::addData(std::vector &dataSources) { ; PXExtentBasedOnSource[3] = dataSource->dHeight; ; - GenericDataWarper::findPixelExtent(PXExtentBasedOnSource, &sourceGeo, this->srvParam->Geo, &warper); + gdwFindPixelExtent(PXExtentBasedOnSource, &sourceGeo, this->srvParam->Geo, &warper); if (PXExtentBasedOnSource[0] == PXExtentBasedOnSource[2] || PXExtentBasedOnSource[1] == PXExtentBasedOnSource[3]) { // CDBDebug("PXExtentBasedOnSource = [%d,%d,%d,%d]",PXExtentBasedOnSource[0],PXExtentBasedOnSource[1],PXExtentBasedOnSource[2],PXExtentBasedOnSource[3]); @@ -728,10 +729,10 @@ int CNetCDFDataWriter::addData(std::vector &dataSources) { case CDF_UINT: value = ((unsigned int *)var->data)[j]; break; - case CDF_INT64: // TODO: This is a narrowing conversion, as not all long's can be exactly represented in a double + case CDF_INT64: // TODO: This is a narrowing conversion, as not all long's can be exactly represented in a double value = ((long *)var->data)[j]; break; - case CDF_UINT64: // TODO: This is a narrowing conversion, as not all long's can be exactly represented in a double + case CDF_UINT64: // TODO: This is a narrowing conversion, as not all long's can be exactly represented in a double value = ((unsigned long *)var->data)[j]; break; case CDF_FLOAT: @@ -875,7 +876,7 @@ int CNetCDFDataWriter::addData(std::vector &dataSources) { } if (drawFunctionMode == CNetCDFDataWriter_NEAREST) { - GenericDataWarper genericDataWarper; + CGenericDataWarper genericDataWarper; switch (variable->getType()) { case CDF_CHAR: genericDataWarper.render(&warper, sourceData, &sourceGeo, srvParam->Geo, &settings, &drawFunction_nearest); @@ -917,7 +918,7 @@ int CNetCDFDataWriter::addData(std::vector &dataSources) { } if (drawFunctionMode == CNetCDFDataWriter_AVG_RGB) { - GenericDataWarper genericDataWarper; + CGenericDataWarper genericDataWarper; switch (variable->getType()) { case CDF_CHAR: genericDataWarper.render(&warper, sourceData, &sourceGeo, srvParam->Geo, &settings, &drawFunction_avg_rbg); diff --git a/adagucserverEC/GenericDataWarper/CGenericDataWarper.cpp b/adagucserverEC/GenericDataWarper/CGenericDataWarper.cpp new file mode 100644 index 000000000..46bc948ec --- /dev/null +++ b/adagucserverEC/GenericDataWarper/CGenericDataWarper.cpp @@ -0,0 +1,510 @@ +/****************************************************************************** + * + * Project: ADAGUC Server + * Purpose: ADAGUC OGC Server + * Author: Maarten Plieger, plieger "at" knmi.nl + * Date: 2013-06-01 + * + ****************************************************************************** + * + * Copyright 2013, Royal Netherlands Meteorological Institute (KNMI) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ******************************************************************************/ + +#include "CGenericDataWarper.h" +#include "GenericDataWarper/gdwDrawTriangle.h" +#include "GenericDataWarper/gdwFindPixelExtent.h" +const char *CGenericDataWarper::className = "GenericDataWarper"; +// #define GenericDataWarper_DEBUG +template +int CGenericDataWarper::render(CImageWarper *warper, void *_sourceData, CGeoParams *sourceGeoParams, CGeoParams *destGeoParams, void *drawFunctionSettings, + void (*drawFunction)(int, int, T, void *drawFunctionSettings, void *genericDataWarper)) { + this->warperState.sourceData = _sourceData; +#ifdef GenericDataWarper_DEBUG + CDBDebug("render"); +#endif + + int imageHeight = destGeoParams->dHeight; + int imageWidth = destGeoParams->dWidth; + + // Reproj back and forth sourceGeoParams boundingbox + double y1 = sourceGeoParams->dfBBOX[1]; + double y2 = sourceGeoParams->dfBBOX[3]; + double x1 = sourceGeoParams->dfBBOX[0]; + double x2 = sourceGeoParams->dfBBOX[2]; + +#ifdef GenericDataWarper_DEBUG + CDBDebug("sourceGeoParams->dfBBOX %f, %f, %f, %f", sourceGeoParams->dfBBOX[0], sourceGeoParams->dfBBOX[1], sourceGeoParams->dfBBOX[2], sourceGeoParams->dfBBOX[3]); + CDBDebug("destGeoParams->dfBBOX %f, %f, %f, %f", destGeoParams->dfBBOX[0], destGeoParams->dfBBOX[1], destGeoParams->dfBBOX[2], destGeoParams->dfBBOX[3]); +#endif + if (y2 < y1) { + if (y1 > -360 && y2 < 360 && x1 > -720 && x2 < 720) { + if (CGeoParams::isLonLatProjection(&sourceGeoParams->CRS) == false) { + double checkBBOX[4]; + for (int j = 0; j < 4; j++) checkBBOX[j] = sourceGeoParams->dfBBOX[j]; + + // CDBDebug("Current BBOX: %f %f %f %f",sourceGeoParams->dfBBOX[0],sourceGeoParams->dfBBOX[1],sourceGeoParams->dfBBOX[2],sourceGeoParams->dfBBOX[3]); + bool hasError = false; + if (warper->reprojpoint_inv(checkBBOX[0], checkBBOX[1]) != 0) hasError = true; + if (warper->reprojpoint(checkBBOX[0], checkBBOX[1]) != 0) hasError = true; + + if (warper->reprojpoint_inv(checkBBOX[2], checkBBOX[3]) != 0) hasError = true; + if (warper->reprojpoint(checkBBOX[2], checkBBOX[3]) != 0) hasError = true; + + if (hasError == false) { + for (int j = 0; j < 4; j++) sourceGeoParams->dfBBOX[j] = checkBBOX[j]; + } + } + } + } + + double dfSourceExtW = (sourceGeoParams->dfBBOX[2] - sourceGeoParams->dfBBOX[0]); + double dfSourceExtH = (sourceGeoParams->dfBBOX[3] - sourceGeoParams->dfBBOX[1]); + double dfSourceW = double(sourceGeoParams->dWidth); + double dfSourceH = double(sourceGeoParams->dHeight); + + double dfDestW = double(destGeoParams->dWidth); + double dfDestH = double(destGeoParams->dHeight); + + double dfSourcedExtW = dfSourceExtW / (dfSourceW); + double dfSourcedExtH = dfSourceExtH / (dfSourceH); + double dfSourceOrigX = sourceGeoParams->dfBBOX[0]; + double dfSourceOrigY = sourceGeoParams->dfBBOX[1]; + + double dfDestExtW = destGeoParams->dfBBOX[2] - destGeoParams->dfBBOX[0]; + double dfDestExtH = destGeoParams->dfBBOX[1] - destGeoParams->dfBBOX[3]; + double multiDestX = double(imageWidth) / dfDestExtW; + + double multiDestY = double(imageHeight) / dfDestExtH; + + double dfDestOrigX = destGeoParams->dfBBOX[0]; //-0.5/multiDestX;; + double dfDestOrigY = destGeoParams->dfBBOX[3]; //+0.5/multiDestY;;; + + // Determine source BBOX of based on destination grid +#ifdef GenericDataWarper_DEBUG + CDBDebug("Creating px extent"); +#endif + + warperState.sourceDataWidth = sourceGeoParams->dWidth; + warperState.sourceDataHeight = sourceGeoParams->dHeight; + + int PXExtentBasedOnSource[4]; + + PXExtentBasedOnSource[0] = 0; + PXExtentBasedOnSource[1] = 0; + PXExtentBasedOnSource[2] = warperState.sourceDataWidth; + PXExtentBasedOnSource[3] = warperState.sourceDataHeight; + + bool tryToFindExtend = false; + + if (tryToFindExtend) { + gdwFindPixelExtent(PXExtentBasedOnSource, sourceGeoParams, destGeoParams, warper); + } + + if (PXExtentBasedOnSource[2] - PXExtentBasedOnSource[0] <= 0) return 0; + if (PXExtentBasedOnSource[3] - PXExtentBasedOnSource[1] <= 0) return 0; + int dataWidth = PXExtentBasedOnSource[2] - PXExtentBasedOnSource[0]; + int dataHeight = PXExtentBasedOnSource[3] - PXExtentBasedOnSource[1]; + + /* When geographical map projections are equal, just do a simple linear transformation */ + if (warper->isProjectionRequired() == false) { + // CDBDebug("warper->isProjectionRequired() = %d: Applying simple linear transformation",warper->isProjectionRequired()); + + // // PXExtentBasedOnSource[0] = source + + // CDBDebug("dfSourceW [%f] ", dfSourceW); + // CDBDebug("dfSourceOrigX [%f] ", dfSourceOrigX); + // CDBDebug("dfSourceExtW [%f] ", dfSourceExtW); + + // CDBDebug("dfDestW [%f] ", dfDestW); + // CDBDebug("dfDestOrigX [%f] ", dfDestOrigX); + // CDBDebug("dfDestExtW [%f] ", dfDestExtW); + + // double tX = ((dfDestOrigX-dfSourceOrigX)/dfSourceExtW)*dfSourceW; + // double tY = (((dfDestOrigY+dfDestExtH)-dfSourceOrigY)/dfSourceExtH)*dfSourceH; + + // double eY = ((dfDestOrigY-dfSourceOrigY)/dfSourceExtH)*dfSourceH + 1; + // double eX = (((dfDestOrigX+dfDestExtW)-dfSourceOrigX)/dfSourceExtW)*dfSourceW + 1; + + // // CDBDebug("TESTX = %f;%f, %f;%f", tX, eX, tY, eY); + + // PXExtentBasedOnSource[0] = tX < 0 ? 0 : tX; + // PXExtentBasedOnSource[1] = tY < 0 ? 0 : tY; + // PXExtentBasedOnSource[2] = eX > sourceDataWidth ? sourceDataWidth : eX; + // PXExtentBasedOnSource[3] = eY > sourceDataHeight ? sourceDataHeight : eY; + // // CDBDebug("PX extent is [%d,%d,%d,%d] ", PXExtentBasedOnSource[0], PXExtentBasedOnSource[1], PXExtentBasedOnSource[2], PXExtentBasedOnSource[3]); + + dataWidth = PXExtentBasedOnSource[2] - PXExtentBasedOnSource[0]; + dataHeight = PXExtentBasedOnSource[3] - PXExtentBasedOnSource[1]; + +#ifdef GenericDataWarper_DEBUG + + CDBDebug("PX extent is [%d,%d,%d,%d] ", PXExtentBasedOnSource[0], PXExtentBasedOnSource[1], PXExtentBasedOnSource[2], PXExtentBasedOnSource[3]); + + CDBDebug("dfSourceW [%f] ", dfSourceW); + CDBDebug("dfDestW [%f] ", dfDestW); + CDBDebug("dfSourceExtW [%f] ", dfSourceExtW); + CDBDebug("dfDestExtW [%f] ", dfDestExtW); + CDBDebug("dfSourceOrigX [%f] ", dfSourceOrigX); + CDBDebug("dfDestOrigX [%f] ", dfDestOrigX); + + CDBDebug("dfSourceH [%f] ", dfSourceH); + CDBDebug("dfDestH [%f] ", dfDestH); + CDBDebug("dfSourceExtH [%f] ", dfSourceExtH); + CDBDebug("dfDestExtH [%f] ", dfDestExtH); + CDBDebug("dfSourceOrigY [%f] ", dfSourceOrigX); + CDBDebug("dfDestOrigY [%f] ", dfDestOrigX); + +#endif + + for (int y = PXExtentBasedOnSource[1]; y < PXExtentBasedOnSource[3]; y++) { + for (int x = PXExtentBasedOnSource[0]; x < PXExtentBasedOnSource[2]; x++) { + + double dfx = x; + double dfy = y; + int sx1 = roundedLinearTransform(dfx, dfSourceW, dfSourceExtW, dfSourceOrigX, dfDestOrigX, dfDestExtW, dfDestW); + int sx2 = roundedLinearTransform(dfx + 1, dfSourceW, dfSourceExtW, dfSourceOrigX, dfDestOrigX, dfDestExtW, dfDestW); + int sy1 = roundedLinearTransform(dfy, dfSourceH, dfSourceExtH, dfSourceOrigY, dfDestOrigY, dfDestExtH, dfDestH); + int sy2 = roundedLinearTransform(dfy + 1, dfSourceH, dfSourceExtH, dfSourceOrigY, dfDestOrigY, dfDestExtH, dfDestH); + bool skip = false; + int sxw = floor(fabs(sx2 - sx1)) + 1; + int syh = floor(fabs(sy2 - sy1)) + 1; + // CDBDebug("%d %d %d %d", sx1, sy1, sx2 ,sy2); + if (sx1 < -sxw && sx2 < -sxw) skip = true; + if (sy1 < -syh && sy2 < -syh) skip = true; + if (sx1 >= destGeoParams->dWidth + sxw && sx2 >= destGeoParams->dWidth + sxw) skip = true; + if (sy1 >= destGeoParams->dHeight + syh && sy2 >= destGeoParams->dHeight + syh) skip = true; + // + + if (!skip) { + this->warperState.sourceDataPX = x; + this->warperState.sourceDataPY = sourceGeoParams->dHeight - 1 - y; + T value = ((T *)warperState.sourceData)[this->warperState.sourceDataPX + (this->warperState.sourceDataPY) * sourceGeoParams->dWidth]; + int lx1, lx2, ly1, ly2; + if (sx1 > sx2) { + lx2 = sx1; + lx1 = sx2; + } else { + lx2 = sx2; + lx1 = sx1; + } + if (sy1 > sy2) { + ly2 = sy1; + ly1 = sy2; + } else { + ly2 = sy2; + ly1 = sy1; + } + if (ly2 == ly1) ly2++; + if (lx2 == lx1) lx2++; + for (int sjy = ly1; sjy < ly2; sjy++) { + for (int sjx = lx1; sjx < lx2; sjx++) { + this->warperState.tileDy = (sjy - ly1) / double(ly2 - ly1); + this->warperState.tileDx = (sjx - lx1) / double(lx2 - lx1); + drawFunction(sjx, sjy, value, drawFunctionSettings, this); + } + } + } + } + } + // CDBDebug("warper->isProjectionRequired() = %d: Finished simple linear transformation",warper->isProjectionRequired()); + return 0; + } +#ifdef GenericDataWarper_DEBUG + CDBDebug("warp is required"); +#endif + + bool useStridingProjection = false; + int projStrideFactor = 16; + if (dataWidth * dataHeight > 1000 * 1000) { + useStridingProjection = true; + } + + double halfCell = useHalfCellOffset ? 0.5 : 0; + + size_t dataSize = (dataWidth + 1) * (dataHeight + 1); + + double *px = new double[dataSize]; + double *py = new double[dataSize]; + char *skip = new char[dataSize]; + + if (!useStridingProjection) { + for (int y = 0; y < dataHeight + 1; y++) { + for (int x = 0; x < dataWidth + 1; x++) { + size_t p = x + y * (dataWidth + 1); + double valX = dfSourcedExtW * (x + halfCell + PXExtentBasedOnSource[0]) + dfSourceOrigX; + double valY = dfSourcedExtH * (y - halfCell + PXExtentBasedOnSource[1]) + dfSourceOrigY; + px[p] = valX; + py[p] = valY; + skip[p] = false; + } + } + if (warper->isProjectionRequired()) { + if (proj_trans_generic(warper->projSourceToDest, PJ_FWD, px, sizeof(double), dataSize, py, sizeof(double), dataSize, nullptr, 0, 0, nullptr, 0, 0) != dataSize) { + CDBDebug("Unable to do pj_transform"); + } + } + + } else { + + size_t dataWidthStrided = dataWidth / projStrideFactor + projStrideFactor; + size_t dataHeightStrided = dataHeight / projStrideFactor + projStrideFactor; + size_t dataSizeStrided = (dataWidthStrided) * (dataHeightStrided); + + double *pxStrided = new double[dataSizeStrided]; + double *pyStrided = new double[dataSizeStrided]; + + /* TODO faster init */ + for (int y = 0; y < dataHeight + 1; y++) { + for (int x = 0; x < dataWidth + 1; x++) { + size_t p = x + y * (dataWidth + 1); + px[p] = DBL_MAX; + py[p] = DBL_MAX; + skip[p] = false; + } + } + for (size_t y = 0; y < dataHeightStrided; y++) { + for (size_t x = 0; x < dataWidthStrided; x++) { + size_t pS = x + y * dataWidthStrided; + + double valX = dfSourcedExtW * (x * projStrideFactor + halfCell + PXExtentBasedOnSource[0]) + dfSourceOrigX; + double valY = dfSourcedExtH * (y * projStrideFactor - halfCell + PXExtentBasedOnSource[1]) + dfSourceOrigY; + pxStrided[pS] = valX; + pyStrided[pS] = valY; + } + } + + if (warper->isProjectionRequired()) { + if (proj_trans_generic(warper->projSourceToDest, PJ_FWD, pxStrided, sizeof(double), dataSizeStrided, pyStrided, sizeof(double), dataSizeStrided, nullptr, 0, 0, nullptr, 0, 0) != + dataSizeStrided) { + CDBDebug("Unable to do pj_transform"); + } + } + for (int y = 0; y < dataHeight + 1; y++) { + for (int x = 0; x < dataWidth + 1; x++) { + size_t p = x + y * (dataWidth + 1); + size_t pS = (x / projStrideFactor) + (y / projStrideFactor) * (dataWidthStrided); + double sX = double(x % projStrideFactor) / double(projStrideFactor); + double sY = double(y % projStrideFactor) / double(projStrideFactor); + double x1 = pxStrided[pS] * (1 - sX) + pxStrided[pS + 1] * sX; + double x2 = pxStrided[pS + dataWidthStrided] * (1 - sX) + pxStrided[pS + 1 + dataWidthStrided] * sX; + px[p] = x1 * (1 - sY) + x2 * sY; + double y1 = pyStrided[pS] * (1 - sY) + pyStrided[pS + dataWidthStrided] * sY; + double y2 = pyStrided[pS + 1] * (1 - sY) + pyStrided[pS + dataWidthStrided + 1] * sY; + py[p] = y1 * (1 - sX) + y2 * sX; + } + } + delete[] pyStrided; + delete[] pxStrided; + } +#ifdef GenericDataWarper_DEBUG + CDBDebug("Reprojection done"); +#endif + + for (size_t j = 0; j < dataSize; j++) { + if (!(px[j] > -DBL_MAX && px[j] < DBL_MAX)) skip[j] = true; + } + + double avgDX = 0; + double avgDY = 0; + // double prevpx1,prevpx2; + + double pLengthD = 0; + + for (int y = 0; y < dataHeight; y = y + 1) { + for (int x = 0; x < dataWidth; x = x + 1) { + size_t p = x + y * (dataWidth + 1); + if (skip[p] == false && skip[p + 1] == false && skip[p + dataWidth + 1] == false && skip[p + dataWidth + 2] == false) { + bool doDraw = true; + // Order for the quad corners is: + // px1 -- px2 + // | | + // px4 -- px3 + + double px1 = px[p]; + double px2 = px[p + 1]; + double px3 = px[p + dataWidth + 2]; + double px4 = px[p + dataWidth + 1]; + + double py1 = py[p]; + double py2 = py[p + 1]; + double py3 = py[p + dataWidth + 2]; + double py4 = py[p + dataWidth + 1]; + + // CDBDebug("destGeoParams = %s",destGeoParams->CRS.c_str()); + if (CGeoParams::isLonLatProjection(&destGeoParams->CRS) == true || CGeoParams::isMercatorProjection(&destGeoParams->CRS) == true) { + double lons[4]; + lons[0] = px1; + lons[1] = px2; + lons[2] = px3; + lons[3] = px4; + + double lonMin, lonMax, lonMiddle = 0; + for (int j = 0; j < 4; j++) { + double lon = lons[j]; + if (j == 0) { + lonMin = lon; + lonMax = lon; + } else { + if (lon < lonMin) lonMin = lon; + if (lon > lonMax) lonMax = lon; + } + lonMiddle += lon; + if (lon == INFINITY || lon == -INFINITY || !(lon == lon)) { + doDraw = false; + break; + } + } + lonMiddle /= 4; + double sphereWidth = 360; + if (CGeoParams::isMercatorProjection(&destGeoParams->CRS)) { + sphereWidth = 40000000; + } + + if (lonMax - lonMin >= sphereWidth * 0.9) { + if (lonMiddle > 0) { + for (int j = 0; j < 4; j++) + if (lons[j] < lonMiddle) lons[j] += sphereWidth; + } else { + for (int j = 0; j < 4; j++) + if (lons[j] > lonMiddle) lons[j] -= sphereWidth; + } + } + px1 = lons[0]; + px2 = lons[1]; + px3 = lons[2]; + px4 = lons[3]; + } + + px1 = (px1 - dfDestOrigX) * multiDestX; + px2 = (px2 - dfDestOrigX) * multiDestX; + px3 = (px3 - dfDestOrigX) * multiDestX; + px4 = (px4 - dfDestOrigX) * multiDestX; + + py1 = (py1 - dfDestOrigY) * multiDestY; + py2 = (py2 - dfDestOrigY) * multiDestY; + py3 = (py3 - dfDestOrigY) * multiDestY; + py4 = (py4 - dfDestOrigY) * multiDestY; + + if (x == 0) avgDX = px2; + if (y == 0) avgDY = py4; + + // Calculate the diagonal length of the quad. + double lengthD = (px3 - px1) * (px3 - px1) + (py3 - py1) * (py3 - py1); + + if (x == 0 && y == 0) { + pLengthD = lengthD; + } + + // If suddenly the length of the quad is 10 times bigger, we probably have an anomaly and we should not draw it. + if (lengthD > pLengthD * 10) { + doDraw = false; + } + + // /* + // If the previous pixel width is suddenly 10 times bigger, + // or 10 times smaller, skip it . + // It is probably wrapped arround the date border. + // */ + // if (x ==0 && y==0) { + // prevpx1=px1; + // prevpx2=px2; + // } + // if (fabs(prevpx2-prevpx1) < (fabs(px2-px1)/10.0f)) { + // doDraw = false; + // } + // if (fabs(prevpx2-prevpx1) > (fabs(px2-px1)*10.0f)) { + // doDraw = false; + // } + + // prevpx1=px1; + // prevpx2=px2; + + if (x == dataWidth - 1) { + if (fabs(avgDX - px1) < fabs(px1 - px2) / 2) { + doDraw = false; + } + if (fabs(avgDX - px2) < fabs(px1 - px2) / 2) { + doDraw = false; + } + } + if (y == dataHeight - 1) { + if (fabs(avgDY - py1) < fabs(py1 - py4) / 2) { + doDraw = false; + } + } + + if (doDraw) { + int sourceGridX = x + PXExtentBasedOnSource[0]; + int sourceGridY = y + PXExtentBasedOnSource[1]; + this->warperState.sourceDataPX = sourceGridX; + this->warperState.sourceDataPY = (warperState.sourceDataHeight - 1 - sourceGridY); + T value = ((T *)warperState.sourceData)[this->warperState.sourceDataPX + this->warperState.sourceDataPY * warperState.sourceDataWidth]; + + int xP[3]; + int yP[3]; + xP[0] = px1; + yP[0] = py1; + + xP[1] = px2; + yP[1] = py2; + + xP[2] = px3; + yP[2] = py3; + gdwDrawTriangle(xP, yP, value, imageWidth, imageHeight, drawFunctionSettings, drawFunction, (void *)this, false); + + xP[0] = px3; + yP[0] = py3; + + xP[1] = px1; + yP[1] = py1; + + xP[2] = px4; + yP[2] = py4; + gdwDrawTriangle(xP, yP, value, imageWidth, imageHeight, drawFunctionSettings, drawFunction, (void *)this, true); + } + pLengthD = lengthD; + } + } + } + delete[] px; + delete[] py; + delete[] skip; +#ifdef GenericDataWarper_DEBUG + CDBDebug("render done"); +#endif + return 0; +} + +template int CGenericDataWarper::render(CImageWarper *warper, void *_sourceData, CGeoParams *sourceGeoParams, CGeoParams *destGeoParams, void *drawFunctionSettings, + void (*drawFunction)(int, int, char, void *drawFunctionSettings, void *genericDataWarper)); +template int CGenericDataWarper::render(CImageWarper *warper, void *_sourceData, CGeoParams *sourceGeoParams, CGeoParams *destGeoParams, void *drawFunctionSettings, + void (*drawFunction)(int, int, unsigned char, void *drawFunctionSettings, void *genericDataWarper)); +template int CGenericDataWarper::render(CImageWarper *warper, void *_sourceData, CGeoParams *sourceGeoParams, CGeoParams *destGeoParams, void *drawFunctionSettings, + void (*drawFunction)(int, int, short, void *drawFunctionSettings, void *genericDataWarper)); +template int CGenericDataWarper::render(CImageWarper *warper, void *_sourceData, CGeoParams *sourceGeoParams, CGeoParams *destGeoParams, void *drawFunctionSettings, + void (*drawFunction)(int, int, ushort, void *drawFunctionSettings, void *genericDataWarper)); +template int CGenericDataWarper::render(CImageWarper *warper, void *_sourceData, CGeoParams *sourceGeoParams, CGeoParams *destGeoParams, void *drawFunctionSettings, + void (*drawFunction)(int, int, int, void *drawFunctionSettings, void *genericDataWarper)); +template int CGenericDataWarper::render(CImageWarper *warper, void *_sourceData, CGeoParams *sourceGeoParams, CGeoParams *destGeoParams, void *drawFunctionSettings, + void (*drawFunction)(int, int, uint, void *drawFunctionSettings, void *genericDataWarper)); +template int CGenericDataWarper::render(CImageWarper *warper, void *_sourceData, CGeoParams *sourceGeoParams, CGeoParams *destGeoParams, void *drawFunctionSettings, + void (*drawFunction)(int, int, long, void *drawFunctionSettings, void *genericDataWarper)); +template int CGenericDataWarper::render(CImageWarper *warper, void *_sourceData, CGeoParams *sourceGeoParams, CGeoParams *destGeoParams, void *drawFunctionSettings, + void (*drawFunction)(int, int, unsigned long, void *drawFunctionSettings, void *genericDataWarper)); +template int CGenericDataWarper::render(CImageWarper *warper, void *_sourceData, CGeoParams *sourceGeoParams, CGeoParams *destGeoParams, void *drawFunctionSettings, + void (*drawFunction)(int, int, float, void *drawFunctionSettings, void *genericDataWarper)); +template int CGenericDataWarper::render(CImageWarper *warper, void *_sourceData, CGeoParams *sourceGeoParams, CGeoParams *destGeoParams, void *drawFunctionSettings, + void (*drawFunction)(int, int, double, void *drawFunctionSettings, void *genericDataWarper)); \ No newline at end of file diff --git a/adagucserverEC/GenericDataWarper/CGenericDataWarper.h b/adagucserverEC/GenericDataWarper/CGenericDataWarper.h new file mode 100644 index 000000000..7304900d0 --- /dev/null +++ b/adagucserverEC/GenericDataWarper/CGenericDataWarper.h @@ -0,0 +1,32 @@ +#ifndef GenericDataWarper_H +#define GenericDataWarper_H +#include +#include +#include +#include +#include +#include "CGeoParams.h" +#include "CImageWarper.h" +#include "CDebugger.h" +#include "CGenericDataWarperTools.h" + +struct GDWWarperState { + void *sourceData; + int sourceDataPX, sourceDataPY, sourceDataWidth, sourceDataHeight; + double tileDx, tileDy; +}; + +class CGenericDataWarper { +private: + DEF_ERRORFUNCTION(); + +public: + GDWWarperState warperState; + bool useHalfCellOffset; + CGenericDataWarper() { useHalfCellOffset = false; } + + template + int render(CImageWarper *warper, void *_sourceData, CGeoParams *sourceGeoParams, CGeoParams *destGeoParams, void *drawFunctionSettings, + void (*drawFunction)(int, int, T, void *drawFunctionSettings, void *genericDataWarper)); +}; +#endif diff --git a/adagucserverEC/CImgWarpGeneric.cpp b/adagucserverEC/GenericDataWarper/CImgWarpGeneric.cpp similarity index 54% rename from adagucserverEC/CImgWarpGeneric.cpp rename to adagucserverEC/GenericDataWarper/CImgWarpGeneric.cpp index 50a2c34d2..6ae04bc18 100644 --- a/adagucserverEC/CImgWarpGeneric.cpp +++ b/adagucserverEC/GenericDataWarper/CImgWarpGeneric.cpp @@ -25,40 +25,17 @@ #include "CImgWarpGeneric.h" #include "CImageDataWriter.h" -#include "CGenericDataWarper.h" +#include "GenericDataWarper/CGenericDataWarper.h" +#include "CImageOperators/smoothRasterField.h" +#include "GenericDataWarper/gdwDrawFunction.h" const char *CImgWarpGeneric::className = "CImgWarpGeneric"; void CImgWarpGeneric::render(CImageWarper *warper, CDataSource *dataSource, CDrawImage *drawImage) { - // CDBDebug("render"); - - CT::string color; - void *sourceData; - CStyleConfiguration *styleConfiguration = dataSource->getStyle(); - Settings settings; - settings.dfNodataValue = dataSource->getDataObject(0)->dfNodataValue; - settings.legendValueRange = (bool)styleConfiguration->hasLegendValueRange; - settings.legendLowerRange = styleConfiguration->legendLowerRange; - settings.legendUpperRange = styleConfiguration->legendUpperRange; - settings.hasNodataValue = dataSource->getDataObject(0)->hasNodataValue; - - if (!settings.hasNodataValue) { - settings.hasNodataValue = true; - settings.dfNodataValue = -100000.f; - } - settings.width = drawImage->Geo->dWidth; - settings.height = drawImage->Geo->dHeight; - - settings.dataField = new float[settings.width * settings.height]; - for (int y = 0; y < settings.height; y++) { - for (int x = 0; x < settings.width; x++) { - settings.dataField[x + y * settings.width] = (float)settings.dfNodataValue; - } - } - + CDrawFunctionSettings settings = getDrawFunctionSettings(dataSource, drawImage, styleConfiguration); CDFType dataType = dataSource->getDataObject(0)->cdfVariable->getType(); - sourceData = dataSource->getDataObject(0)->cdfVariable->data; + void *sourceData = dataSource->getDataObject(0)->cdfVariable->data; CGeoParams sourceGeo; sourceGeo.dWidth = dataSource->dWidth; sourceGeo.dHeight = dataSource->dHeight; @@ -70,56 +47,38 @@ void CImgWarpGeneric::render(CImageWarper *warper, CDataSource *dataSource, CDra sourceGeo.dfCellSizeY = dataSource->dfCellSizeY; sourceGeo.CRS = dataSource->nativeProj4; - GenericDataWarper genericDataWarper; - genericDataWarper.useHalfCellOffset = true; + CGenericDataWarper genericDataWarper; + switch (dataType) { case CDF_CHAR: - genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &drawFunction); + genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &gdwDrawFunction); break; case CDF_BYTE: - genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &drawFunction); + genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &gdwDrawFunction); break; case CDF_UBYTE: - genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &drawFunction); + genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &gdwDrawFunction); break; case CDF_SHORT: - genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &drawFunction); + genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &gdwDrawFunction); break; case CDF_USHORT: - genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &drawFunction); + genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &gdwDrawFunction); break; case CDF_INT: - genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &drawFunction); + genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &gdwDrawFunction); break; case CDF_UINT: - genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &drawFunction); + genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &gdwDrawFunction); break; case CDF_FLOAT: - genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &drawFunction); + genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &gdwDrawFunction); break; case CDF_DOUBLE: - genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &drawFunction); + genericDataWarper.render(warper, sourceData, &sourceGeo, drawImage->Geo, &settings, &gdwDrawFunction); break; } - - for (int y = 0; y < (int)settings.height; y = y + 1) { - for (int x = 0; x < (int)settings.width; x = x + 1) { - float val = settings.dataField[x + y * settings.width]; - if (val != (float)settings.dfNodataValue && val == val) { - if (styleConfiguration->legendLog != 0) val = log10(val + .000001) / log10(styleConfiguration->legendLog); - val *= styleConfiguration->legendScale; - val += styleConfiguration->legendOffset; - if (val >= 239) - val = 239; - else if (val < 0) - val = 0; - drawImage->setPixelIndexed(x, y, (unsigned char)val); - } - } - } - delete[] settings.dataField; - // CDBDebug("render done"); return; } -int CImgWarpGeneric::set(const char *) { return 0; } \ No newline at end of file +int CImgWarpGeneric::set(const char *) { return 0; } diff --git a/adagucserverEC/GenericDataWarper/CImgWarpGeneric.h b/adagucserverEC/GenericDataWarper/CImgWarpGeneric.h new file mode 100644 index 000000000..721d8f0b2 --- /dev/null +++ b/adagucserverEC/GenericDataWarper/CImgWarpGeneric.h @@ -0,0 +1,44 @@ +/****************************************************************************** + * + * Project: ADAGUC Server + * Purpose: ADAGUC OGC Server + * Author: Maarten Plieger, plieger "at" knmi.nl + * Date: 2020-12-09 + * + ****************************************************************************** + * + * Copyright 2013, Royal Netherlands Meteorological Institute (KNMI) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ******************************************************************************/ + +#ifndef CImgWarpGeneric_H +#define CImgWarpGeneric_H +#include + +#include "CImageWarperRenderInterface.h" +#include "GenericDataWarper/CGenericDataWarper.h" +#include "CDrawFunction.h" +#include "CImageOperators/smoothRasterField.h" + +class CImgWarpGeneric : public CImageWarperRenderInterface { +private: + DEF_ERRORFUNCTION(); + +public: + void render(CImageWarper *warper, CDataSource *dataSource, CDrawImage *drawImage) override; + int set(const char *pszSettings) override; +}; + +#endif diff --git a/adagucserverEC/GenericDataWarper/gdwDrawFunction.cpp b/adagucserverEC/GenericDataWarper/gdwDrawFunction.cpp new file mode 100644 index 000000000..34deb1715 --- /dev/null +++ b/adagucserverEC/GenericDataWarper/gdwDrawFunction.cpp @@ -0,0 +1,71 @@ +#include "GenericDataWarper/gdwDrawFunction.h" +#include "CImageOperators/smoothRasterField.h" +#include "CDrawFunction.h" +#include + +static inline int nfast_mod(const int input, const int ceil) { return input >= ceil ? input % ceil : input; } + +template void gdwDrawFunction(int x, int y, T val, void *_settings, void *g) { + CDrawFunctionSettings *drawSettings = static_cast(_settings); + if (x < 0 || y < 0 || x > drawSettings->drawImage->Geo->dWidth || y > drawSettings->drawImage->Geo->dHeight) return; + CGenericDataWarper *genericDataWarper = static_cast(g); + bool isNodata = false; + if (drawSettings->hasNodataValue) { + if ((val) == (T)drawSettings->dfNodataValue) isNodata = true; + } + if (!(val == val)) isNodata = true; + if (!isNodata) { + T *sourceData = (T *)genericDataWarper->warperState.sourceData; + size_t sourceDataPX = genericDataWarper->warperState.sourceDataPX; + size_t sourceDataPY = genericDataWarper->warperState.sourceDataPY; + size_t sourceDataWidth = genericDataWarper->warperState.sourceDataWidth; + size_t sourceDataHeight = genericDataWarper->warperState.sourceDataHeight; + + if (sourceDataPY > sourceDataHeight - 1) return; + if (sourceDataPX > sourceDataWidth - 1) return; + if (x >= 0 && y >= 0 && x < (int)drawSettings->drawImage->Geo->dWidth && y < (int)drawSettings->drawImage->Geo->dHeight) { + double values[2][2] = {{0, 0}, {0, 0}}; + if (drawSettings->smoothingFiter == 0) { + + values[0][0] += ((T *)sourceData)[nfast_mod(sourceDataPX + 0, sourceDataWidth) + nfast_mod(sourceDataPY + 0, sourceDataHeight) * sourceDataWidth]; + + // setPixelInDrawImage(x, y, val, drawSettings); + values[1][0] += ((T *)sourceData)[nfast_mod(sourceDataPX + 1, sourceDataWidth) + nfast_mod(sourceDataPY + 0, sourceDataHeight) * sourceDataWidth]; + values[0][1] += ((T *)sourceData)[nfast_mod(sourceDataPX + 0, sourceDataWidth) + nfast_mod(sourceDataPY + 1, sourceDataHeight) * sourceDataWidth]; + values[1][1] += ((T *)sourceData)[nfast_mod(sourceDataPX + 1, sourceDataWidth) + nfast_mod(sourceDataPY + 1, sourceDataHeight) * sourceDataWidth]; + } else { + values[0][0] = smoothingAtLocation((float *)sourceData, drawSettings->smoothingDistanceMatrix, drawSettings->smoothingFiter, (float)drawSettings->dfNodataValue, sourceDataPX, sourceDataPY, + sourceDataWidth, sourceDataHeight); + values[1][0] = smoothingAtLocation((float *)sourceData, drawSettings->smoothingDistanceMatrix, drawSettings->smoothingFiter, (float)drawSettings->dfNodataValue, sourceDataPX + 1, sourceDataPY, + sourceDataWidth, sourceDataHeight); + values[0][1] = smoothingAtLocation((float *)sourceData, drawSettings->smoothingDistanceMatrix, drawSettings->smoothingFiter, (float)drawSettings->dfNodataValue, sourceDataPX, sourceDataPY + 1, + sourceDataWidth, sourceDataHeight); + values[1][1] = smoothingAtLocation((float *)sourceData, drawSettings->smoothingDistanceMatrix, drawSettings->smoothingFiter, (float)drawSettings->dfNodataValue, sourceDataPX + 1, + sourceDataPY + 1, sourceDataWidth, sourceDataHeight); + } + + double dx = genericDataWarper->warperState.tileDx; + double dy = genericDataWarper->warperState.tileDy; + + double gx1 = (1 - dx) * values[0][0] + dx * values[1][0]; + double gx2 = (1 - dx) * values[0][1] + dx * values[1][1]; + double bilValue = (1 - dy) * gx1 + dy * gx2; + if (dy >= 0.0 && dy < 1.0) { + if (dx >= 0.0 && dx < 1.0) { + setPixelInDrawImage(x, y, bilValue, drawSettings); + } + } + } + } +}; + +template void gdwDrawFunction(int x, int y, char val, void *_settings, void *g); +template void gdwDrawFunction(int x, int y, unsigned char val, void *_settings, void *g); +template void gdwDrawFunction(int x, int y, short val, void *_settings, void *g); +template void gdwDrawFunction(int x, int y, ushort val, void *_settings, void *g); +template void gdwDrawFunction(int x, int y, int val, void *_settings, void *g); +template void gdwDrawFunction(int x, int y, uint val, void *_settings, void *g); +template void gdwDrawFunction(int x, int y, long val, void *_settings, void *g); +template void gdwDrawFunction(int x, int y, unsigned long val, void *_settings, void *g); +template void gdwDrawFunction(int x, int y, float val, void *_settings, void *g); +template void gdwDrawFunction(int x, int y, double val, void *_settings, void *g); diff --git a/adagucserverEC/GenericDataWarper/gdwDrawFunction.h b/adagucserverEC/GenericDataWarper/gdwDrawFunction.h new file mode 100644 index 000000000..a356d4369 --- /dev/null +++ b/adagucserverEC/GenericDataWarper/gdwDrawFunction.h @@ -0,0 +1,8 @@ + + +#ifndef GDW_DRAWFUNCTION_UTILS_H +#define GDW_DRAWFUNCTION_UTILS_H + +template void gdwDrawFunction(int x, int y, T val, void *_settings, void *g); + +#endif \ No newline at end of file diff --git a/adagucserverEC/GenericDataWarper/gdwDrawTriangle.cpp b/adagucserverEC/GenericDataWarper/gdwDrawTriangle.cpp new file mode 100644 index 000000000..e6b1c7c94 --- /dev/null +++ b/adagucserverEC/GenericDataWarper/gdwDrawTriangle.cpp @@ -0,0 +1,180 @@ +#include "GenericDataWarper/CGenericDataWarper.h" + +template +int gdwDrawTriangle(int *xP, int *yP, T value, int destWidth, int destHeight, void *settings, void (*drawFunction)(int, int, T, void *settings, void *genericDataWarper), void *genericDataWarper, + bool aOrB) { + CGenericDataWarper *g = (CGenericDataWarper *)genericDataWarper; + int W = destWidth; + int H = destHeight; + if (xP[0] < 0 && xP[1] < 0 && xP[2] < 0) return 0; + if (xP[0] >= W && xP[1] >= W && xP[2] >= W) return 0; + if (yP[0] < 0 && yP[1] < 0 && yP[2] < 0) return 0; + if (yP[0] >= H && yP[1] >= H && yP[2] >= H) return 0; + + unsigned int lower; + unsigned int middle; + unsigned int upper; + + /*Sort the vertices in Y direction*/ + if (yP[0] < yP[1]) { + if (yP[0] < yP[2]) { + lower = 0; + if (yP[1] < yP[2]) { + middle = 1; + upper = 2; + } else { + middle = 2; + upper = 1; + } + } else { + middle = 0; + lower = 2; + upper = 1; + } + } else { + if (yP[1] < yP[2]) { + lower = 1; + if (yP[0] < yP[2]) { + middle = 0; + upper = 2; + } else { + middle = 2; + upper = 0; + } + } else { + middle = 1; + lower = 2; + upper = 0; + } + } + + int X1 = xP[lower]; + int X2 = xP[middle]; + int X3 = xP[upper]; + int Y1 = yP[lower]; + int Y2 = yP[middle]; + int Y3 = yP[upper]; + + double vX1 = aOrB ? 1 : 0; + double vY1 = aOrB ? 0 : 1; + double vX2 = aOrB ? 0 : 1; + double vY2 = 1; + double vX3 = aOrB ? 0 : 1; + double vY3 = 0; + + // return 1; + /* + // 1 + // \ + // 2 + // / + // 3 + */ + // If top point is equal to bottom point of triangle, skip + // If middle is equal to top and middle is equal to bottom, skip + if ((Y1 == Y3) || (Y2 == Y1 && Y3 == Y2)) { + int minx = X1; + if (minx > X2) minx = X2; + if (minx > X3) minx = X3; + int maxx = X1; + if (maxx < X2) maxx = X2; + if (maxx < X3) maxx = X3; + g->warperState.tileDy = 0; + for (int x = minx; x < maxx + 1; x++) { + g->warperState.tileDx = 0; //(x - minx) / double(maxx-minx); + drawFunction(x, yP[2], value, settings, genericDataWarper); + } + return 1; + } + + /* https://codeplea.com/triangular-interpolation */ + double dn = ((yP[1] - yP[2]) * (xP[0] - xP[2]) + (xP[2] - xP[1]) * (yP[0] - yP[2])); + + double rcl = double(X3 - X1) / double(Y3 - Y1); + if (Y2 != Y1 && Y1 < H && Y2 >= 0) { + double rca = double(X2 - X1) / double(Y2 - Y1); + int sy = (Y1 < 0) ? 0 : Y1; + int ey = (Y2 > H) ? H : Y2; + for (int y = sy; y < ey + 1; y++) { + int xL = (rcl * double(y - Y1) + X1); + int xA = (rca * double(y - Y1) + X1); + int x1, x2; + if (xL < xA) { + x1 = xL; + x2 = xA; + } else { + x2 = xL; + x1 = xA; + } + if (x1 < W && x2 >= 0) { + int sx = (x1 < 0) ? 0 : x1; + int ex = (x2 > W) ? W : x2; + for (int x = sx; x < ex + 1; x++) { + double WV1 = ((yP[1] - yP[2]) * (x - xP[2]) + (xP[2] - xP[1]) * (y - yP[2])) / dn; + double WV2 = ((yP[2] - yP[0]) * (x - xP[2]) + (xP[0] - xP[2]) * (y - yP[2])) / dn; + double WV3 = 1 - WV1 - WV2; + + g->warperState.tileDx = WV1 * vX1 + WV2 * vX2 + WV3 * vX3; + g->warperState.tileDy = WV1 * vY1 + WV2 * vY2 + WV3 * vY3; + if (g->warperState.tileDy >= 0.0 && g->warperState.tileDy < 1.0 && g->warperState.tileDx >= 0.0 && g->warperState.tileDx < 1.0) { + drawFunction(x, y, value, settings, genericDataWarper); + } + } + } + } + } + // return 0; + if (Y3 != Y2 && Y2 < H && Y3 >= 0) { + double rcb = double(X3 - X2) / double(Y3 - Y2); + int sy = (Y2 <= 0) ? 0 : Y2; + int ey = (Y3 > H) ? H : Y3; + for (int y = sy; y < ey + 1; y++) { + int xL = (rcl * double(y - Y1) + X1); + int xB = (rcb * double(y - Y2) + X2); + int x1, x2; + if (xL <= xB) { + x1 = xL; + x2 = xB; + } else { + x2 = xL; + x1 = xB; + } + if (x1 < W && x2 >= 0) { + int sx = (x1 <= 0) ? 0 : x1; + int ex = (x2 > W) ? W : x2; + for (int x = sx; x < ex + 1; x++) { + double WV1 = ((yP[1] - yP[2]) * (x - xP[2]) + (xP[2] - xP[1]) * (y - yP[2])) / dn; + double WV2 = ((yP[2] - yP[0]) * (x - xP[2]) + (xP[0] - xP[2]) * (y - yP[2])) / dn; + double WV3 = 1 - WV1 - WV2; + g->warperState.tileDx = WV1 * vX1 + WV2 * vX2 + WV3 * vX3; + g->warperState.tileDy = WV1 * vY1 + WV2 * vY2 + WV3 * vY3; + if (g->warperState.tileDy >= 0.0 && g->warperState.tileDy < 1.0 && g->warperState.tileDx >= 0.0 && g->warperState.tileDx < 1.0) { + drawFunction(x, y, value, settings, genericDataWarper); + } + } + } + } + } + return 0; +} + +template int gdwDrawTriangle(int *xP, int *yP, char value, int destWidth, int destHeight, void *settings, void (*drawFunction)(int, int, char, void *settings, void *genericDataWarper), + void *genericDataWarper, bool aOrB); +template int gdwDrawTriangle(int *xP, int *yP, unsigned char value, int destWidth, int destHeight, void *settings, + void (*drawFunction)(int, int, unsigned char, void *settings, void *genericDataWarper), void *genericDataWarper, bool aOrB); +template int gdwDrawTriangle(int *xP, int *yP, short value, int destWidth, int destHeight, void *settings, void (*drawFunction)(int, int, short, void *settings, void *genericDataWarper), + void *genericDataWarper, bool aOrB); +template int gdwDrawTriangle(int *xP, int *yP, ushort value, int destWidth, int destHeight, void *settings, void (*drawFunction)(int, int, ushort, void *settings, void *genericDataWarper), + void *genericDataWarper, bool aOrB); +template int gdwDrawTriangle(int *xP, int *yP, int value, int destWidth, int destHeight, void *settings, void (*drawFunction)(int, int, int, void *settings, void *genericDataWarper), + void *genericDataWarper, bool aOrB); +template int gdwDrawTriangle(int *xP, int *yP, uint value, int destWidth, int destHeight, void *settings, void (*drawFunction)(int, int, uint, void *settings, void *genericDataWarper), + void *genericDataWarper, bool aOrB); +template int gdwDrawTriangle(int *xP, int *yP, long value, int destWidth, int destHeight, void *settings, void (*drawFunction)(int, int, long, void *settings, void *genericDataWarper), + void *genericDataWarper, bool aOrB); +template int gdwDrawTriangle(int *xP, int *yP, unsigned long value, int destWidth, int destHeight, void *settings, + void (*drawFunction)(int, int, unsigned long, void *settings, void *genericDataWarper), void *genericDataWarper, bool aOrB); +template int gdwDrawTriangle(int *xP, int *yP, float value, int destWidth, int destHeight, void *settings, void (*drawFunction)(int, int, float, void *settings, void *genericDataWarper), + void *genericDataWarper, bool aOrB); +template int gdwDrawTriangle(int *xP, int *yP, double value, int destWidth, int destHeight, void *settings, void (*drawFunction)(int, int, double, void *settings, void *genericDataWarper), + void *genericDataWarper, bool aOrB); diff --git a/adagucserverEC/GenericDataWarper/gdwDrawTriangle.h b/adagucserverEC/GenericDataWarper/gdwDrawTriangle.h new file mode 100644 index 000000000..3f82d97b4 --- /dev/null +++ b/adagucserverEC/GenericDataWarper/gdwDrawTriangle.h @@ -0,0 +1,9 @@ + + +#ifndef GDW_DRAWTRIANGLE_UTILS_H +#define GDW_DRAWTRIANGLE_UTILS_H + +template +int gdwDrawTriangle(int *xP, int *yP, T value, int destWidth, int destHeight, void *settings, void (*drawFunction)(int, int, T, void *settings, void *genericDataWarper), void *genericDataWarper, + bool aOrB); +#endif \ No newline at end of file diff --git a/adagucserverEC/GenericDataWarper/gdwFindPixelExtent.cpp b/adagucserverEC/GenericDataWarper/gdwFindPixelExtent.cpp new file mode 100644 index 000000000..dc4f50989 --- /dev/null +++ b/adagucserverEC/GenericDataWarper/gdwFindPixelExtent.cpp @@ -0,0 +1,167 @@ +#include +#include +#include +int gdwFindPixelExtent(int *PXExtentBasedOnSource, CGeoParams *sourceGeoParams, CGeoParams *destGeoParams, CImageWarper *warper) { + int sourceDataWidth = sourceGeoParams->dWidth; + int sourceDataHeight = sourceGeoParams->dHeight; + + PXExtentBasedOnSource[0] = 0; + PXExtentBasedOnSource[1] = 0; + PXExtentBasedOnSource[2] = sourceDataWidth; + PXExtentBasedOnSource[3] = sourceDataHeight; + + PXExtentBasedOnSource[0] = -1; + PXExtentBasedOnSource[1] = -1; + PXExtentBasedOnSource[2] = -1; + PXExtentBasedOnSource[3] = -1; + + double dfSourceW = double(sourceGeoParams->dWidth); + double dfSourceH = double(sourceGeoParams->dHeight); + + int imageHeight = destGeoParams->dHeight; + int imageWidth = destGeoParams->dWidth; + double dfDestW = double(destGeoParams->dWidth); + double dfDestH = double(destGeoParams->dHeight); + + int lowerIndex = 1, higherIndex = 3; + + double dfSourceExtW = (sourceGeoParams->dfBBOX[2] - sourceGeoParams->dfBBOX[0]); + double dfSourceOrigX = sourceGeoParams->dfBBOX[0]; + double dfSourceExtH = (sourceGeoParams->dfBBOX[lowerIndex] - sourceGeoParams->dfBBOX[higherIndex]); + double dfSourceOrigY = sourceGeoParams->dfBBOX[higherIndex]; + + double dfDestExtW = destGeoParams->dfBBOX[2] - destGeoParams->dfBBOX[0]; + double dfDestExtH = destGeoParams->dfBBOX[1] - destGeoParams->dfBBOX[3]; + double dfDestOrigX = destGeoParams->dfBBOX[0]; + double dfDestOrigY = destGeoParams->dfBBOX[3]; + + int startX = 0; + int startY = 0; + int stopX = imageWidth; + int stopY = imageHeight; + bool firstExtent = true; + bool needsProjection = warper->isProjectionRequired(); + bool OK = false; + bool transFormationRequired = false; + bool fullScan = false; + + while (OK == false) { + OK = true; + + bool attemptToContintue = true; + + int incY = double(imageHeight) / 16 + 0.5; + int incX = double(imageWidth) / 16 + 0.5; + if (incY < 1) incY = 1; + if (incX < 1) incX = 1; + + if (attemptToContintue) { + for (int y = startY; y < stopY + incY && OK; y = y + incY) { + for (int x = startX; x < stopX + incX && OK; x = x + incX) { + if (x == startX || y == startY || x == stopX || y == stopY || fullScan == true || true) { + double destCoordX, destCoordY; + destCoordX = (double(x) / dfDestW) * dfDestExtW + dfDestOrigX; + destCoordY = (double(y) / dfDestH) * dfDestExtH + dfDestOrigY; + + bool skip = false; + double px = destCoordX, py = destCoordY; + if (needsProjection) { + if (warper->isProjectionRequired()) { + if (proj_trans_generic(warper->projSourceToDest, PJ_INV, &px, sizeof(double), 1, &py, sizeof(double), 1, nullptr, 0, 0, nullptr, 0, 0) != 1) { + skip = true; + CDBDebug("skip %f %f", px, py); + } + } + } + + double sourcePixelX = ((px - dfSourceOrigX) / dfSourceExtW) * dfSourceW; + double sourcePixelY = ((py - dfSourceOrigY) / dfSourceExtH) * dfSourceH; + + if (!skip && px == px && py == py && px != -INFINITY && px != INFINITY && py != -INFINITY && py != INFINITY) { + transFormationRequired = true; + + if (sourcePixelX == sourcePixelX && sourcePixelY == sourcePixelY && sourcePixelX != -INFINITY && sourcePixelX != INFINITY && sourcePixelY != -INFINITY && sourcePixelY != INFINITY) { + + if (firstExtent) { + PXExtentBasedOnSource[0] = int(sourcePixelX); + PXExtentBasedOnSource[1] = int(sourcePixelY); + PXExtentBasedOnSource[2] = int(sourcePixelX); + PXExtentBasedOnSource[3] = int(sourcePixelY); + firstExtent = false; + } else { + if (sourcePixelX < PXExtentBasedOnSource[0]) PXExtentBasedOnSource[0] = sourcePixelX; + if (sourcePixelX > PXExtentBasedOnSource[2]) PXExtentBasedOnSource[2] = sourcePixelX; + if (sourcePixelY < PXExtentBasedOnSource[1]) { + PXExtentBasedOnSource[1] = sourcePixelY; + } + if (sourcePixelY > PXExtentBasedOnSource[3]) { + PXExtentBasedOnSource[3] = sourcePixelY; + } + } + } + + } else { + + if (OK == true && fullScan == false) { + OK = false; + fullScan = true; + } + } + } + } + } + + if (OK == true && fullScan == true) break; + } + } + +#ifdef GenericDataWarper_DEBUG + CDBDebug("PXExtentBasedOnSource = [%d,%d,%d,%d]", PXExtentBasedOnSource[0], PXExtentBasedOnSource[1], PXExtentBasedOnSource[2], PXExtentBasedOnSource[3]); + +#endif + if (PXExtentBasedOnSource[1] > PXExtentBasedOnSource[3]) { + std::swap(PXExtentBasedOnSource[1], PXExtentBasedOnSource[3]); + } + if (PXExtentBasedOnSource[0] > PXExtentBasedOnSource[2]) { + std::swap(PXExtentBasedOnSource[0], PXExtentBasedOnSource[2]); + } + PXExtentBasedOnSource[2] += 1; + PXExtentBasedOnSource[3] += 1; + +#ifdef GenericDataWarper_DEBUG + CDBDebug("PXExtentBasedOnSource = [%d,%d,%d,%d]", PXExtentBasedOnSource[0], PXExtentBasedOnSource[1], PXExtentBasedOnSource[2], PXExtentBasedOnSource[3]); +#endif + + if (PXExtentBasedOnSource[0] < 0) { + PXExtentBasedOnSource[0] = 0; + } + if (PXExtentBasedOnSource[0] >= sourceDataWidth) { + PXExtentBasedOnSource[0] = sourceDataWidth; + } + if (PXExtentBasedOnSource[2] < 0) { + PXExtentBasedOnSource[2] = 0; + } + if (PXExtentBasedOnSource[2] >= sourceDataWidth) { + PXExtentBasedOnSource[2] = sourceDataWidth; + } + if (PXExtentBasedOnSource[1] < 0) { + PXExtentBasedOnSource[1] = 0; + } + if (PXExtentBasedOnSource[1] >= sourceDataHeight) { + PXExtentBasedOnSource[1] = sourceDataHeight; + } + if (PXExtentBasedOnSource[3] < 0) { + PXExtentBasedOnSource[3] = 0; + } + if (PXExtentBasedOnSource[3] >= sourceDataHeight) { + PXExtentBasedOnSource[3] = sourceDataHeight; + } + if (transFormationRequired == false) { + PXExtentBasedOnSource[0] = -1; + PXExtentBasedOnSource[1] = -1; + PXExtentBasedOnSource[2] = -1; + PXExtentBasedOnSource[3] = -1; + } + + return 0; +} diff --git a/adagucserverEC/GenericDataWarper/gdwFindPixelExtent.h b/adagucserverEC/GenericDataWarper/gdwFindPixelExtent.h new file mode 100644 index 000000000..fd63f5e5f --- /dev/null +++ b/adagucserverEC/GenericDataWarper/gdwFindPixelExtent.h @@ -0,0 +1,8 @@ +#include + +#ifndef GDW_FINDPIXELEXTENT_UTILS_H +#define GDW_FINDPIXELEXTENT_UTILS_H + +int gdwFindPixelExtent(int *PXExtentBasedOnSource, CGeoParams *sourceGeoParams, CGeoParams *destGeoParams, CImageWarper *warper); + +#endif \ No newline at end of file diff --git a/tests/expectedoutputs/TestADAGUCFeatureFunctions/test_ADAGUCFeatureFunctions_testdata.csv b/tests/expectedoutputs/TestADAGUCFeatureFunctions/test_ADAGUCFeatureFunctions_testdata.csv index d62237f1a..cf12b093d 100644 --- a/tests/expectedoutputs/TestADAGUCFeatureFunctions/test_ADAGUCFeatureFunctions_testdata.csv +++ b/tests/expectedoutputs/TestADAGUCFeatureFunctions/test_ADAGUCFeatureFunctions_testdata.csv @@ -1,8 +1,8 @@ time;variable;index;id;name;numsamples;min;mean;max;std -None;testdata;12;Belgium;12;45565;0.289767;0.336701;0.355911;0.014147 -None;testdata;41;Germany;41;186852;0.115642;0.215329;0.345581;0.064147 -None;testdata;43;Denmark;43;1835;0.115642;0.116503;0.139212;0.004421 -None;testdata;55;France;55;25312;0.319451;0.335850;0.355911;0.013877 -None;testdata;57;United Kingdom;57;37638;0.175515;0.225239;0.319451;0.030372 +None;testdata;12;Belgium;12;45565;0.299820;0.336828;0.355911;0.014057 +None;testdata;41;Germany;41;186852;0.115642;0.215609;0.345581;0.064156 +None;testdata;43;Denmark;43;1835;0.115642;0.116580;0.139212;0.004607 +None;testdata;55;France;55;25312;0.319451;0.335930;0.355911;0.013890 +None;testdata;57;United Kingdom;57;37638;0.175515;0.225335;0.319451;0.030358 None;testdata;97;Luxembourg;97;426;0.345581;0.345581;0.345581;0.000000 -None;testdata;117;Netherlands;117;67418;0.165981;0.248258;0.331169;0.044794 +None;testdata;117;Netherlands;117;67418;0.165981;0.248482;0.331169;0.044804 diff --git a/tests/expectedoutputs/TestDataPostProcessor/test_DataPostProcessor_WindShear_GetMap.png b/tests/expectedoutputs/TestDataPostProcessor/test_DataPostProcessor_WindShear_GetMap.png index be70d2b76..ed161ccce 100644 Binary files a/tests/expectedoutputs/TestDataPostProcessor/test_DataPostProcessor_WindShear_GetMap.png and b/tests/expectedoutputs/TestDataPostProcessor/test_DataPostProcessor_WindShear_GetMap.png differ diff --git a/tests/expectedoutputs/TestDataPostProcessor/test_DataPostProcessor_axplusb_GetMap.png b/tests/expectedoutputs/TestDataPostProcessor/test_DataPostProcessor_axplusb_GetMap.png index 6d0f34008..91529f636 100644 Binary files a/tests/expectedoutputs/TestDataPostProcessor/test_DataPostProcessor_axplusb_GetMap.png and b/tests/expectedoutputs/TestDataPostProcessor/test_DataPostProcessor_axplusb_GetMap.png differ diff --git a/tests/expectedoutputs/TestWCS/test_WCSGetCoverageAAIGRID_testdatanc.grd b/tests/expectedoutputs/TestWCS/test_WCSGetCoverageAAIGRID_testdatanc.grd index 36615f5bb..89fae92f4 100644 --- a/tests/expectedoutputs/TestWCS/test_WCSGetCoverageAAIGRID_testdatanc.grd +++ b/tests/expectedoutputs/TestWCS/test_WCSGetCoverageAAIGRID_testdatanc.grd @@ -28,35 +28,35 @@ NODATA_value -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.02080514468252658844 0.02080514468252658844 0.02080514468252658844 0.021143235266208648682 0.021143235266208648682 0.021390128880739212036 0.021390128880739212036 0.021532809361815452576 0.021532809361815452576 0.021565059199929237366 0.021565059199929237366 0.021483052521944046021 0.021483052521944046021 0.021483052521944046021 0.021291628479957580566 0.021291628479957580566 0.020998528227210044861 0.020998528227210044861 0.020614081993699073792 0.020614081993699073792 0.020147755742073059082 0.020147755742073059082 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.018699800595641136169 0.018699800595641136169 0.019344449043273925781 0.019344449043273925781 0.019900143146514892578 0.019900143146514892578 0.019900143146514892578 0.022266438230872154236 0.022266438230872154236 0.022823054343461990356 0.022823054343461990356 0.023262999951839447021 0.023262999951839447021 0.023583155125379562378 0.023583155125379562378 0.023771196603775024414 0.023771196603775024414 0.023818913847208023071 0.023818913847208023071 0.023723637685179710388 0.023723637685179710388 0.023723637685179710388 0.023488949984312057495 0.023488949984312057495 0.023124020546674728394 0.023124020546674728394 0.022635890170931816101 0.022635890170931816101 0.022019607946276664734 0.022019607946276664734 0.019604144617915153503 0.019604144617915153503 0.018972333520650863647 0.018972333520650863647 0.018972333520650863647 0.018300732597708702087 0.018300732597708702087 0.017654919996857643127 0.017654919996857643127 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.01685278676450252533 0.01685278676450252533 0.017483096569776535034 0.017483096569776535034 0.019504770636558532715 0.019504770636558532715 0.020234359428286552429 0.020234359428286552429 0.020925274118781089783 0.020925274118781089783 0.021582027897238731384 0.021582027897238731384 0.021582027897238731384 0.024393398314714431763 0.024393398314714431763 0.025089714676141738892 0.025089714676141738892 0.025727275758981704712 0.025727275758981704712 0.026178130879998207092 0.026178130879998207092 0.026443336158990859985 0.026443336158990859985 0.026517743244767189026 0.026517743244767189026 0.026400635018944740295 0.026400635018944740295 0.026096859946846961975 0.026096859946846961975 0.026096859946846961975 0.025612307712435722351 0.025612307712435722351 0.024941479787230491638 0.024941479787230491638 0.024229278787970542908 0.024229278787970542908 0.023421378806233406067 0.023421378806233406067 0.020594261586666107178 0.020594261586666107178 0.019833473488688468933 0.019833473488688468933 0.019004553556442260742 0.019004553556442260742 0.016988161951303482056 0.016988161951303482056 0.016270516440272331238 0.016270516440272331238 0.016270516440272331238 0.01559336390346288681 0.01559336390346288681 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.014951482415199279785 0.014951482415199279785 0.015547546558082103729 0.015547546558082103729 0.015547546558082103729 0.017250711098313331604 0.017250711098313331604 0.017965858802199363708 0.017965858802199363708 0.018699165433645248413 0.018699165433645248413 0.02099436149001121521 0.02099436149001121521 0.021904833614826202393 0.021904833614826202393 0.022815752774477005005 0.022815752774477005005 0.025993041694164276123 0.025993041694164276123 0.026991913095116615295 0.026991913095116615295 0.027877995744347572327 0.027877995744347572327 0.028635183349251747131 0.028635183349251747131 0.02926770038902759552 0.02926770038902759552 0.029668988659977912903 0.029668988659977912903 0.02979138493537902832 0.02979138493537902832 0.029641220346093177795 0.029641220346093177795 0.029227988794445991516 0.029227988794445991516 0.028612598776817321777 0.028612598776817321777 0.028612598776817321777 0.027872832491993904114 0.027872832491993904114 0.026983935385942459106 0.026983935385942459106 0.025939706712961196899 0.025939706712961196899 0.022517917677760124207 0.021488528698682785034 0.021488528698682785034 0.021488528698682785034 0.020535923540592193604 0.020535923540592193604 0.019573958590626716614 0.019573958590626716614 0.017389757558703422546 0.017389757558703422546 0.016601130366325378418 0.016601130366325378418 0.014958285726606845856 0.014958285726606845856 0.014958285726606845856 0.014958285726606845856 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.015119043178856372833 0.015775343403220176697 0.015775343403220176697 0.015775343403220176697 0.017536301165819168091 0.017536301165819168091 0.01834147237241268158 0.019251769408583641052 0.019251769408583641052 0.019251769408583641052 0.021625488996505737305 0.021625488996505737305 0.022761479020118713379 0.023816579952836036682 0.023816579952836036682 0.023816579952836036682 0.027346717193722724915 0.027346717193722724915 0.028646087273955345154 0.028646087273955345154 0.030038572847843170166 0.030038572847843170166 0.031264364719390869141 0.03231525421142578125 0.03231525421142578125 0.033144142478704452515 0.033144142478704452515 0.033708665519952774048 0.033708665519952774048 0.033909432590007781982 0.033909432590007781982 0.03371005132794380188 0.03371005132794380188 0.033196043223142623901 0.033196043223142623901 0.032483853399753570557 0.032483853399753570557 0.031575880944728851318 0.031575880944728851318 0.030456870794296264648 0.030456870794296264648 0.029065594077110290527 0.029065594077110290527 0.027603646740317344666 0.027603646740317344666 0.023550840094685554504 0.023550840094685554504 0.022325810045003890991 0.022325810045003890991 0.021068852394819259644 0.021068852394819259644 0.018553610891103744507 0.018553610891103744507 0.017661631107330322266 0.017661631107330322266 0.016793480142951011658 0.016793480142951011658 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.01591443084180355072 0.01591443084180355072 0.016737094148993492126 0.016737094148993492126 0.018596909940242767334 0.018596909940242767334 0.019630143418908119202 0.019630143418908119202 0.019630143418908119202 0.022147279232740402222 0.023388208821415901184 0.023388208821415901184 0.024625726044178009033 0.024625726044178009033 0.028424171730875968933 0.028424171730875968933 0.030193544924259185791 0.030193544924259185791 0.031899310648441314697 0.031899310648441314697 0.033617787063121795654 0.033617787063121795654 0.035411253571510314941 0.035411253571510314941 0.036949016153812408447 0.036949016153812408447 0.036949016153812408447 0.045062508434057235718 0.046545080840587615967 0.046545080840587615967 0.047021422535181045532 0.046559814363718032837 0.046559814363718032837 0.045486494898796081543 0.045486494898796081543 0.037555053830146789551 0.037555053830146789551 0.036533534526824951172 0.036533534526824951172 0.035167854279279708862 0.035167854279279708862 0.033408507704734802246 0.033408507704734802246 0.031509801745414733887 0.031509801745414733887 0.029186166822910308838 0.029186166822910308838 0.024365916848182678223 0.022874239832162857056 0.022874239832162857056 0.022874239832162857056 0.021382177248597145081 0.018812378868460655212 0.018812378868460655212 0.017793001607060432434 0.017793001607060432434 0.017793001607060432434 0.017793001607060432434 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.016845172271132469177 0.016845172271132469177 0.018737541511654853821 0.018737541511654853821 0.019848553463816642761 0.019848553463816642761 0.020931513980031013489 0.020931513980031013489 0.023796657100319862366 0.023796657100319862366 0.025257933884859085083 0.025257933884859085083 0.026853118091821670532 0.026853118091821670532 0.031301818788051605225 0.031301818788051605225 0.033374506980180740356 0.035746015608310699463 0.035746015608310699463 0.038056168705224990845 0.038056168705224990845 0.047278318554162979126 0.047278318554162979126 0.051196824759244918823 0.051196824759244918823 0.055005654692649841309 0.055005654692649841309 0.057570021599531173706 0.057570021599531173706 0.058422554284334182739 0.057412408292293548584 0.057412408292293548584 0.05526050180196762085 0.05526050180196762085 0.052519965916872024536 0.052519965916872024536 0.049450598657131195068 0.049450598657131195068 0.040908683091402053833 0.040908683091402053833 0.038640417158603668213 0.038640417158603668213 0.036322463303804397583 0.03335110098123550415 0.03335110098123550415 0.030199293047189712524 0.030199293047189712524 0.024838708341121673584 0.024838708341121673584 0.023093719035387039185 0.023093719035387039185 0.021442538127303123474 0.021442538127303123474 0.018883667886257171631 0.018883667886257171631 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.017758810892701148987 0.017758810892701148987 0.01990925520658493042 0.01990925520658493042 0.021081902086734771729 0.021081902086734771729 0.023979604244232177734 0.023979604244232177734 0.025635711848735809326 0.027381652966141700745 0.027381652966141700745 0.031985670328140258789 0.031985670328140258789 0.03452760353684425354 0.03452760353684425354 0.037231083959341049194 0.037231083959341049194 0.040299069136381149292 0.040299069136381149292 0.050350069999694824219 0.055811721831560134888 0.055811721831560134888 0.062050439417362213135 0.062050439417362213135 0.068480603396892547607 0.068480603396892547607 0.074406594038009643555 0.074406594038009643555 0.076814010739326477051 0.074373893439769744873 0.074373893439769744873 0.068504638969898223877 0.068504638969898223877 0.062303490936756134033 0.062303490936756134033 0.056639607995748519897 0.056639607995748519897 0.051955908536911010742 0.043420981615781784058 0.043420981615781784058 0.040608879178762435913 0.040608879178762435913 0.037463646382093429565 0.037463646382093429565 0.033866312354803085327 0.033866312354803085327 0.027261625975370407104 0.02485997416079044342 0.02485997416079044342 0.022982984781265258789 0.022982984781265258789 0.020075725391507148743 0.020075725391507148743 0.020075725391507148743 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.019814513623714447021 0.019814513623714447021 0.021058067679405212402 0.021058067679405212402 0.023933473974466323853 0.025711178779602050781 0.025711178779602050781 0.027601310983300209045 0.027601310983300209045 0.032241087406873703003 0.032241087406873703003 0.035085223615169525146 0.035085223615169525146 0.03811530768871307373 0.041723959147930145264 0.041723959147930145264 0.052276872098445892334 0.052276872098445892334 0.058883514255285263062 0.058883514255285263062 0.066452845931053161621 0.075416244566440582275 0.075416244566440582275 0.086586527526378631592 0.086586527526378631592 0.097861088812351226807 0.097861088812351226807 0.10325089842081069946 0.098858818411827087402 0.098858818411827087402 0.08696476370096206665 0.08696476370096206665 0.074497483670711517334 0.074497483670711517334 0.065021991729736328125 0.058163732290267944336 0.058163732290267944336 0.052951391786336898804 0.052951391786336898804 0.044463135302066802979 0.044463135302066802979 0.041019227355718612671 0.041019227355718612671 0.037158824503421783447 0.032686699181795120239 0.032686699181795120239 0.026897316798567771912 0.026897316798567771912 0.02449008449912071228 0.02449008449912071228 0.022601617500185966492 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.020863983780145645142 0.022365147247910499573 0.022365147247910499573 0.025496393442153930664 0.025496393442153930664 0.027514349669218063354 0.027514349669218063354 0.03207302093505859375 0.03207302093505859375 0.035098660737276077271 0.03837968781590461731 0.03837968781590461731 0.042340770363807678223 0.042340770363807678223 0.052877306938171386719 0.052877306938171386719 0.060067210346460342407 0.068972259759902954102 0.068972259759902954102 0.079109586775302886963 0.079109586775302886963 0.091746345162391662598 0.10792965441942214966 0.10792965441942214966 0.12379102408885955811 0.12379102408885955811 0.13107730448246002197 0.12544767558574676514 0.12544767558574676514 0.10852196812629699707 0.10852196812629699707 0.088887222111225128174 0.088887222111225128174 0.074488997459411621094 0.065024666488170623779 0.065024666488170623779 0.058099027723073959351 0.058099027723073959351 0.052547771483659744263 0.044260792434215545654 0.044260792434215545654 0.040076125413179397583 0.040076125413179397583 0.035262629389762878418 0.035262629389762878418 0.030950618907809257507 0.026154607534408569336 0.026154607534408569336 0.023883948102593421936 0.023883948102593421936 0.023883948102593421936 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.022013744339346885681 0.022013744339346885681 0.024986274540424346924 0.024986274540424346924 0.027132272720336914062 0.029456458985805511475 0.029456458985805511475 0.034596089273691177368 0.034596089273691177368 0.038043323904275894165 0.038043323904275894165 0.042209964245557785034 0.042209964245557785034 0.05224895477294921875 0.05971032753586769104 0.05971032753586769104 0.069358579814434051514 0.081258587539196014404 0.081258587539196014404 0.095152020454406738281 0.095152020454406738281 0.11146774142980575562 0.13001190125942230225 0.13001190125942230225 0.14457328617572784424 0.14457328617572784424 0.14958411455154418945 0.1439708024263381958 0.1439708024263381958 0.12685847282409667969 0.12685847282409667969 0.10312219709157943726 0.084662660956382751465 0.084662660956382751465 0.072636783123016357422 0.072636783123016357422 0.064035899937152862549 0.057140205055475234985 0.057140205055475234985 0.051309738308191299438 0.051309738308191299438 0.042946614325046539307 0.037659771740436553955 0.037659771740436553955 0.032887075096368789673 0.032887075096368789673 0.029357206076383590698 0.025194127112627029419 0.025194127112627029419 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.024328969419002532959 0.024328969419002532959 0.026476603001356124878 0.028758810833096504211 0.028758810833096504211 0.033574275672435760498 0.033574275672435760498 0.037171613425016403198 0.041396137326955795288 0.041396137326955795288 0.046340744942426681519 0.046340744942426681519 0.058083314448595046997 0.067659147083759307861 0.067659147083759307861 0.080393880605697631836 0.080393880605697631836 0.09688297659158706665 0.11535203456878662109 0.11535203456878662109 0.13352027535438537598 0.15011301636695861816 0.15011301636695861816 0.15011301636695861816 0.17468388378620147705 0.17401680350303649902 0.16592922806739807129 0.16592922806739807129 0.13921184837818145752 0.13921184837818145752 0.11564238369464874268 0.095395587384700775146 0.095395587384700775146 0.081192255020141601562 0.081192255020141601562 0.070776857435703277588 0.062436368316411972046 0.062436368316411972046 0.055382739752531051636 0.049045946449041366577 0.049045946449041366577 0.040236346423625946045 0.040236346423625946045 0.034977622330188751221 0.030994137749075889587 0.030994137749075889587 0.026562567800283432007 0.026562567800283432007 0.026562567800283432007 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.025552051141858100891 0.027862027287483215332 0.027862027287483215332 0.03228975832462310791 0.03228975832462310791 0.035840451717376708984 0.039949562400579452515 0.039949562400579452515 0.044729869812726974487 0.044729869812726974487 0.05549179762601852417 0.064455769956111907959 0.064455769956111907959 0.076384522020816802979 0.092588663101196289062 0.092588663101196289062 0.11397316306829452515 0.13695353269577026367 0.13695353269577026367 0.13695353269577026367 0.17551539838314056396 0.18884378671646118164 0.19602312147617340088 0.19602312147617340088 0.19475816190242767334 0.18454788625240325928 0.18454788625240325928 0.16598065197467803955 0.16598065197467803955 0.14419694244861602783 0.10806579142808914185 0.10806579142808914185 0.092121534049510955811 0.079092778265476226807 0.079092778265476226807 0.06836032867431640625 0.06836032867431640625 0.059584464877843856812 0.052158422768115997314 0.052158422768115997314 0.04278531298041343689 0.036958858370780944824 0.036958858370780944824 0.032506912946701049805 0.029036076739430427551 0.029036076739430427551 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.026741493493318557739 0.026741493493318557739 0.029298610985279083252 0.029298610985279083252 0.034055791795253753662 0.037958797067403793335 0.037958797067403793335 0.042711649090051651001 0.052013505250215530396 0.052013505250215530396 0.060257345438003540039 0.071031779050827026367 0.071031779050827026367 0.085355699062347412109 0.10448265820741653442 0.10448265820741653442 0.1421671062707901001 0.1421671062707901001 0.17086897790431976318 0.19769291579723358154 0.19769291579723358154 0.22119244933128356934 0.23879830539226531982 0.23879830539226531982 0.24094228446483612061 0.22712363302707672119 0.22712363302707672119 0.20165337622165679932 0.17055131494998931885 0.17055131494998931885 0.14218297600746154785 0.14218297600746154785 0.11964826285839080811 0.089887008070945739746 0.089887008070945739746 0.075541056692600250244 0.064251720905303955078 0.064251720905303955078 0.055403143167495727539 0.047711677849292755127 0.047711677849292755127 0.038840658962726593018 0.034013263881206512451 0.034013263881206512451 0.030269671231508255005 0.030269671231508255005 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.027833176776766777039 0.027833176776766777039 0.032035153359174728394 0.035780493170022964478 0.035780493170022964478 0.040208969265222549438 0.048285361379384994507 0.048285361379384994507 0.055813372135162353516 0.065396904945373535156 0.065396904945373535156 0.077879935503005981445 0.094347544014453887939 0.094347544014453887939 0.12951166927814483643 0.15995731949806213379 0.15995731949806213379 0.19421631097793579102 0.23321220278739929199 0.23321220278739929199 0.27336874604225158691 0.2998199760913848877 0.2998199760913848877 0.30412000417709350586 0.28976744413375854492 0.28976744413375854492 0.25505787134170532227 0.20636245608329772949 0.20636245608329772949 0.16295863687992095947 0.13194471597671508789 0.13194471597671508789 0.10870271176099777222 0.083010219037532806396 0.083010219037532806396 0.068517692387104034424 0.068517692387104034424 0.058172538876533508301 0.049763862043619155884 0.049763862043619155884 0.042269065976142883301 0.035401973873376846313 0.03129256516695022583 0.03129256516695022583 0.03129256516695022583 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.028860021382570266724 0.028860021382570266724 0.033216681331396102905 0.033216681331396102905 0.037304650992155075073 0.042243301868438720703 0.042243301868438720703 0.050741184502840042114 0.059231244027614593506 0.059231244027614593506 0.070388384163379669189 0.085275791585445404053 0.085275791585445404053 0.11549550294876098633 0.14636607468128204346 0.14636607468128204346 0.18542492389678955078 0.23175126314163208008 0.28111851215362548828 0.28111851215362548828 0.31945067644119262695 0.33847576379776000977 0.33847576379776000977 0.3410396277904510498 0.33116859197616577148 0.33116859197616577148 0.30138611793518066406 0.24201120436191558838 0.24201120436191558838 0.18215343356132507324 0.14142093062400817871 0.14142093062400817871 0.11382213234901428223 0.090998366475105285645 0.090998366475105285645 0.072030641138553619385 0.060309905558824539185 0.060309905558824539185 0.051148928701877593994 0.04326896369457244873 0.04326896369457244873 0.037293229252099990845 0.032126352190971374512 0.032126352190971374512 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.030753960832953453064 0.030753960832953453064 0.034368716180324554443 0.038660746067762374878 0.038660746067762374878 0.04569242522120475769 0.053027100861072540283 0.06256344914436340332 0.06256344914436340332 0.075205259025096893311 0.099018126726150512695 0.099018126726150512695 0.12676636874675750732 0.165472373366355896 0.165472373366355896 0.2163175046443939209 0.27556288242340087891 0.27556288242340087891 0.32098153233528137207 0.34410995244979858398 0.35546091198921203613 0.35546091198921203613 0.35591149330139160156 0.34558114409446716309 0.34558114409446716309 0.31898540258407592773 0.25897729396820068359 0.25897729396820068359 0.19191803038120269775 0.14601090550422668457 0.14601090550422668457 0.1147909015417098999 0.090835884213447570801 0.074036307632923126221 0.074036307632923126221 0.061604186892509460449 0.051836416125297546387 0.051836416125297546387 0.043776117265224456787 0.037742715328931808472 0.037742715328931808472 0.032745365053415298462 0.032745365053415298462 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.031402949243783950806 0.035261783748865127563 0.035261783748865127563 0.040786530822515487671 0.046924393624067306519 0.054785087704658508301 0.054785087704658508301 0.06509866565465927124 0.081854276359081268311 0.081854276359081268311 0.10373649746179580688 0.13620109856128692627 0.18279667198657989502 0.18279667198657989502 0.24572294950485229492 0.30854499340057373047 0.30854499340057373047 0.34231337904930114746 0.35679304599761962891 0.35679304599761962891 0.36054471135139465332 0.35746073722839355469 0.34465301036834716797 0.34465301036834716797 0.31479865312576293945 0.25343242287635803223 0.25343242287635803223 0.18887186050415039062 0.14343816041946411133 0.11178547888994216919 0.11178547888994216919 0.088730245828628540039 0.072698697447776794434 0.072698697447776794434 0.060464654117822647095 0.05170987546443939209 0.043772898614406585693 0.043772898614406585693 0.037837080657482147217 0.033239640295505523682 0.033239640295505523682 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.031850937753915786743 0.035873338580131530762 0.035873338580131530762 0.04124460369348526001 0.047599446028470993042 0.047599446028470993042 0.055795434862375259399 0.067078344523906707764 0.067078344523906707764 0.082797087728977203369 0.10564303398132324219 0.14036771655082702637 0.14036771655082702637 0.19103991985321044922 0.26096016168594360352 0.32182177901268005371 0.32182177901268005371 0.34887516498565673828 0.34887516498565673828 0.34994775056838989258 0.34582421183586120605 0.33399787545204162598 0.30688545107841491699 0.30688545107841491699 0.25669625401496887207 0.23150756955146789551 0.23150756955146789551 0.17559652030467987061 0.1351404041051864624 0.10558519512414932251 0.10558519512414932251 0.085039600729942321777 0.069770917296409606934 0.058146432042121887207 0.058146432042121887207 0.049247607588768005371 0.043277524411678314209 0.043277524411678314209 0.037584736943244934082 0.033095713704824447632 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.032078485935926437378 0.032078485935926437378 0.036191917955875396729 0.041272439062595367432 0.041272439062595367432 0.047682039439678192139 0.055984843522310256958 0.066143929958343505859 0.066143929958343505859 0.081405825912952423096 0.10389412939548492432 0.13758799433708190918 0.13758799433708190918 0.18604992330074310303 0.25190767645835876465 0.25190767645835876465 0.25190767645835876465 0.31677851080894470215 0.32551804184913635254 0.32551804184913635254 0.317317962646484375 0.29404416680335998535 0.25583884119987487793 0.25583884119987487793 0.2105649411678314209 0.16879577934741973877 0.13491372764110565186 0.13491372764110565186 0.1224093511700630188 0.097888350486755371094 0.079764790832996368408 0.079764790832996368408 0.06610056757926940918 0.055529624223709106445 0.055529624223709106445 0.047479741275310516357 0.041204195469617843628 0.037022303789854049683 0.037022303789854049683 0.032709058374166488647 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.031811673194169998169 0.035868238657712936401 0.035868238657712936401 0.040854152292013168335 0.047139123082160949707 0.053662259131669998169 0.053662259131669998169 0.0638753548264503479 0.07785460352897644043 0.098270975053310394287 0.098270975053310394287 0.12773290276527404785 0.14524829387664794922 0.18453875184059143066 0.18453875184059143066 0.22713002562522888184 0.25870442390441894531 0.2688115239143371582 0.2688115239143371582 0.25726556777954101562 0.23213759064674377441 0.20049624145030975342 0.20049624145030975342 0.16787500679492950439 0.13878794014453887939 0.11473344266414642334 0.11473344266414642334 0.095470733940601348877 0.080062083899974822998 0.073957532644271850586 0.073957532644271850586 0.061846680939197540283 0.052506562322378158569 0.045337889343500137329 0.045337889343500137329 0.039696529507637023926 0.036192819476127624512 0.032106358557939529419 0.032106358557939529419 0.032106358557939529419 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.031318493187427520752 0.031318493187427520752 0.035221215337514877319 0.03998201712965965271 0.044190280139446258545 0.044190280139446258545 0.05120129510760307312 0.060319431126117706299 0.072684705257415771484 0.072684705257415771484 0.089540332555770874023 0.097756654024124145508 0.12040936201810836792 0.12040936201810836792 0.14678344130516052246 0.17263272404670715332 0.19139330089092254639 0.19842538237571716309 0.19842538237571716309 0.19152870774269104004 0.17570197582244873047 0.15491865575313568115 0.15491865575313568115 0.13364596664905548096 0.11432994157075881958 0.097741670906543731689 0.097741670906543731689 0.083758883178234100342 0.071751184761524200439 0.061268500983715057373 0.061268500983715057373 0.057313457131385803223 0.049377325922250747681 0.043066721409559249878 0.043066721409559249878 0.037947412580251693726 0.033780269324779510498 0.031316138803958892822 0.031316138803958892822 0.031316138803958892822 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.030601583421230316162 0.034248657524585723877 0.037139434367418289185 0.037139434367418289185 0.042177174240350723267 0.048413716256618499756 0.056280281394720077515 0.066410519182682037354 0.066410519182682037354 0.070275329053401947021 0.083223350346088409424 0.098745174705982208252 0.098745174705982208252 0.11556796729564666748 0.13127888739109039307 0.14230160415172576904 0.14230160415172576904 0.14651718735694885254 0.14276050031185150146 0.13350422680377960205 0.12091335654258728027 0.12091335654258728027 0.10765581578016281128 0.095248229801654815674 0.083812788128852844238 0.083812788128852844238 0.073412582278251647949 0.063804551959037780762 0.055390365421772003174 0.048529017716646194458 0.048529017716646194458 0.046158574521541595459 0.040716331452131271362 0.036185719072818756104 0.036185719072818756104 0.032371688634157180786 0.029190003871917724609 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.029658712446689605713 0.029658712446689605713 0.031687319278717041016 0.035417199134826660156 0.039839554578065872192 0.04516081884503364563 0.051732700318098068237 0.051732700318098068237 0.053961165249347686768 0.061744276434183120728 0.070959657430648803711 0.070959657430648803711 0.08157529681921005249 0.092468649148941040039 0.10200551152229309082 0.10847184807062149048 0.10847184807062149048 0.1111986115574836731 0.10937369614839553833 0.10421779006719589233 0.097157314419746398926 0.097157314419746398926 0.088834263384342193604 0.080325521528720855713 0.072298914194107055664 0.064239792525768280029 0.064239792525768280029 0.05652392655611038208 0.049884688109159469604 0.044328816235065460205 0.039748679846525192261 0.039748679846525192261 0.038146320730447769165 0.03426518663763999939 0.030924454331398010254 0.030924454331398010254 0.027997558936476707458 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.028527636080980300903 0.028527636080980300903 0.030227189883589744568 0.033417057245969772339 0.037321481853723526001 0.04194571077823638916 0.04194571077823638916 0.043146487325429916382 0.048355948179960250854 0.054302010685205459595 0.060983393341302871704 0.060983393341302871704 0.068517200648784637451 0.076213344931602478027 0.082225941121578216553 0.086330644786357879639 0.086330644786357879639 0.087986364960670471191 0.087231740355491638184 0.084378138184547424316 0.079801149666309356689 0.079801149666309356689 0.074592612683773040771 0.068500667810440063477 0.062388833612203598022 0.056015599519014358521 0.056015599519014358521 0.050077077001333236694 0.044938411563634872437 0.0406283549964427948 0.036729186773300170898 0.036729186773300170898 0.033292680978775024414 0.032292086631059646606 0.02934134751558303833 0.026797531172633171082 0.026797531172633171082 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.026169342920184135437 0.028597718104720115662 0.031530939042568206787 0.034884709864854812622 0.034884709864854812622 0.035669524222612380981 0.039253626018762588501 0.043313696980476379395 0.047906689345836639404 0.047906689345836639404 0.052849411964416503906 0.058298077434301376343 0.063906781375408172607 0.063906781375408172607 0.056845828890800476074 0.058736912906169891357 0.059628963470458984375 0.059451196342706680298 0.058292374014854431152 0.056249275803565979004 0.056249275803565979004 0.053391516208648681641 0.050010178238153457642 0.046619508415460586548 0.048956569284200668335 0.044519182294607162476 0.044519182294607162476 0.040690690279006958008 0.037083335220813751221 0.033899437636137008667 0.031093373894691467285 0.031093373894691467285 0.028485074639320373535 0.027779424563050270081 0.025507934391498565674 0.025507934391498565674 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.024817677214741706848 0.027086583897471427917 0.029588812962174415588 0.029588812962174415588 0.030134875327348709106 0.032744139432907104492 0.035764157772064208984 0.038906328380107879639 0.038906328380107879639 0.042432624846696853638 0.046146091073751449585 0.043267667293548583984 0.045845929533243179321 0.047918070107698440552 0.047918070107698440552 0.049273468554019927979 0.04992564767599105835 0.049849774688482284546 0.04908215254545211792 0.047686573117971420288 0.047686573117971420288 0.045695792883634567261 0.043364200741052627563 0.040954660624265670776 0.038308367133140563965 0.035878039896488189697 0.035878039896488189697 0.036795165389776229858 0.03392540663480758667 0.031329512596130371094 0.028861353173851966858 0.026764074340462684631 0.026764074340462684631 0.024725575000047683716 0.024210449308156967163 0.024210449308156967163 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.023586042225360870361 0.023586042225360870361 0.025530733168125152588 0.025913981720805168152 0.027915770187973976135 0.030191462486982345581 0.032533381134271621704 0.032533381134271621704 0.035159327089786529541 0.03776817023754119873 0.03776817023754119873 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.031119873747229576111 0.028870247304439544678 0.026928905397653579712 0.02500119432806968689 0.023349413648247718811 0.023349413648247718811 0.021743709221482276917 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 - -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.02234388887882232666 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.019900143146514892578 0.019900143146514892578 0.020387168973684310913 0.020387168973684310913 0.02080514468252658844 0.02080514468252658844 0.021143235266208648682 0.021143235266208648682 0.021390128880739212036 0.021390128880739212036 0.021532809361815452576 0.021532809361815452576 0.021532809361815452576 0.021565059199929237366 0.021565059199929237366 0.021483052521944046021 0.021483052521944046021 0.021291628479957580566 0.021291628479957580566 0.020998528227210044861 0.020998528227210044861 0.020998528227210044861 0.020614081993699073792 0.020614081993699073792 0.020147755742073059082 0.020147755742073059082 0.019604144617915153503 0.019604144617915153503 0.018972333520650863647 0.018972333520650863647 0.018300732597708702087 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.017483096569776535034 0.017483096569776535034 0.018092682585120201111 0.018092682585120201111 0.018699800595641136169 0.018699800595641136169 0.019344449043273925781 0.020925274118781089783 0.020925274118781089783 0.021582027897238731384 0.021582027897238731384 0.022266438230872154236 0.022266438230872154236 0.022823054343461990356 0.022823054343461990356 0.023262999951839447021 0.023262999951839447021 0.023583155125379562378 0.023583155125379562378 0.023583155125379562378 0.023583155125379562378 0.026443336158990859985 0.026517743244767189026 0.026517743244767189026 0.026400635018944740295 0.026400635018944740295 0.023488949984312057495 0.023488949984312057495 0.023124020546674728394 0.023124020546674728394 0.022635890170931816101 0.022635890170931816101 0.022635890170931816101 0.022019607946276664734 0.022019607946276664734 0.021306099370121955872 0.021306099370121955872 0.020594261586666107178 0.020594261586666107178 0.018300732597708702087 0.018300732597708702087 0.017654919996857643127 0.017654919996857643127 0.016988161951303482056 0.016988161951303482056 0.016270516440272331238 0.016270516440272331238 0.01559336390346288681 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.015547546558082103729 0.015547546558082103729 0.016166666522622108459 0.01685278676450252533 0.01685278676450252533 0.01685278676450252533 0.018699165433645248413 0.018699165433645248413 0.019504770636558532715 0.019504770636558532715 0.021904833614826202393 0.021904833614826202393 0.022815752774477005005 0.022815752774477005005 0.023637710139155387878 0.023637710139155387878 0.024393398314714431763 0.024393398314714431763 0.025089714676141738892 0.025089714676141738892 0.025089714676141738892 0.028635183349251747131 0.028635183349251747131 0.02926770038902759552 0.02926770038902759552 0.029668988659977912903 0.029668988659977912903 0.02979138493537902832 0.02979138493537902832 0.029641220346093177795 0.029641220346093177795 0.029227988794445991516 0.029227988794445991516 0.028612598776817321777 0.028612598776817321777 0.024941479787230491638 0.024941479787230491638 0.024229278787970542908 0.024229278787970542908 0.023421378806233406067 0.023421378806233406067 0.022517917677760124207 0.022517917677760124207 0.021488528698682785034 0.021488528698682785034 0.019004553556442260742 0.019004553556442260742 0.018166815862059593201 0.018166815862059593201 0.018166815862059593201 0.017389757558703422546 0.017389757558703422546 0.016601130366325378418 0.01559336390346288681 0.014958285726606845856 0.014958285726606845856 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.014344908297061920166 0.014344908297061920166 0.014951482415199279785 0.014951482415199279785 0.014951482415199279785 0.016513779759407043457 0.017250711098313331604 0.017250711098313331604 0.017965858802199363708 0.019251769408583641052 0.019251769408583641052 0.020133741199970245361 0.020133741199970245361 0.02099436149001121521 0.02099436149001121521 0.023816579952836036682 0.023816579952836036682 0.024859528988599777222 0.024859528988599777222 0.025993041694164276123 0.025993041694164276123 0.026991913095116615295 0.026991913095116615295 0.031264364719390869141 0.031264364719390869141 0.03231525421142578125 0.03231525421142578125 0.033144142478704452515 0.033144142478704452515 0.033708665519952774048 0.033708665519952774048 0.033909432590007781982 0.033909432590007781982 0.03371005132794380188 0.03371005132794380188 0.033196043223142623901 0.033196043223142623901 0.032483853399753570557 0.032483853399753570557 0.031575880944728851318 0.031575880944728851318 0.026983935385942459106 0.026983935385942459106 0.025939706712961196899 0.025939706712961196899 0.02472484298050403595 0.02472484298050403595 0.023550840094685554504 0.023550840094685554504 0.022325810045003890991 0.022325810045003890991 0.021068852394819259644 0.019573958590626716614 0.018553610891103744507 0.018553610891103744507 0.016601130366325378418 0.016601130366325378418 0.015803445130586624146 0.015803445130586624146 0.015803445130586624146 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.015119043178856372833 0.015119043178856372833 0.015775343403220176697 0.016737094148993492126 0.017536301165819168091 0.017536301165819168091 0.01834147237241268158 0.019630143418908119202 0.020611563697457313538 0.020611563697457313538 0.021625488996505737305 0.021625488996505737305 0.022761479020118713379 0.024625726044178009033 0.026019072160124778748 0.026019072160124778748 0.027346717193722724915 0.027346717193722724915 0.028646087273955345154 0.028646087273955345154 0.033617787063121795654 0.033617787063121795654 0.035411253571510314941 0.035411253571510314941 0.036949016153812408447 0.036949016153812408447 0.038197930902242660522 0.038197930902242660522 0.039061378687620162964 0.039061378687620162964 0.039376344531774520874 0.039376344531774520874 0.03909821435809135437 0.03909821435809135437 0.038403008133172988892 0.038403008133172988892 0.037555053830146789551 0.037555053830146789551 0.036533534526824951172 0.036533534526824951172 0.035167854279279708862 0.029065594077110290527 0.029065594077110290527 0.027603646740317344666 0.027603646740317344666 0.027603646740317344666 0.026029681786894798279 0.024365916848182678223 0.024365916848182678223 0.021068852394819259644 0.021068852394819259644 0.019946971908211708069 0.019946971908211708069 0.019946971908211708069 0.018812378868460655212 0.016793480142951011658 0.016793480142951011658 0.016793480142951011658 0.016793480142951011658 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.01591443084180355072 0.01591443084180355072 0.017706841230392456055 0.017706841230392456055 0.018596909940242767334 0.018596909940242767334 0.020931513980031013489 0.020931513980031013489 0.022147279232740402222 0.022147279232740402222 0.025257933884859085083 0.025257933884859085083 0.026853118091821670532 0.026853118091821670532 0.028424171730875968933 0.028424171730875968933 0.030193544924259185791 0.030193544924259185791 0.035746015608310699463 0.035746015608310699463 0.038056168705224990845 0.038056168705224990845 0.040611524134874343872 0.042993340641260147095 0.042993340641260147095 0.045062508434057235718 0.045062508434057235718 0.046545080840587615967 0.046545080840587615967 0.047021422535181045532 0.047021422535181045532 0.046559814363718032837 0.046559814363718032837 0.045486494898796081543 0.045486494898796081543 0.044309794902801513672 0.044309794902801513672 0.042846672236919403076 0.040908683091402053833 0.040908683091402053833 0.038640417158603668213 0.038640417158603668213 0.031509801745414733887 0.031509801745414733887 0.029186166822910308838 0.029186166822910308838 0.026950312778353691101 0.026950312778353691101 0.024838708341121673584 0.024838708341121673584 0.021382177248597145081 0.020114669576287269592 0.020114669576287269592 0.020114669576287269592 0.018883667886257171631 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.017758810892701148987 0.017758810892701148987 0.018737541511654853821 0.018737541511654853821 0.021081902086734771729 0.021081902086734771729 0.022435279563069343567 0.022435279563069343567 0.023796657100319862366 0.023796657100319862366 0.027381652966141700745 0.027381652966141700745 0.029247494414448738098 0.031301818788051605225 0.031301818788051605225 0.037231083959341049194 0.037231083959341049194 0.040299069136381149292 0.040299069136381149292 0.043537497520446777344 0.043537497520446777344 0.047278318554162979126 0.047278318554162979126 0.051196824759244918823 0.055005654692649841309 0.055005654692649841309 0.057570021599531173706 0.057570021599531173706 0.058422554284334182739 0.058422554284334182739 0.057412408292293548584 0.057412408292293548584 0.05526050180196762085 0.05526050180196762085 0.052519965916872024536 0.049450598657131195068 0.049450598657131195068 0.046392936259508132935 0.046392936259508132935 0.043420981615781784058 0.043420981615781784058 0.040608879178762435913 0.040608879178762435913 0.03335110098123550415 0.030199293047189712524 0.030199293047189712524 0.027261625975370407104 0.027261625975370407104 0.02485997416079044342 0.02485997416079044342 0.022982984781265258789 0.021442538127303123474 0.020075725391507148743 0.020075725391507148743 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.018723629415035247803 0.018723629415035247803 0.021058067679405212402 0.021058067679405212402 0.022506063804030418396 0.023979604244232177734 0.023979604244232177734 0.025635711848735809326 0.027601310983300209045 0.029720641672611236572 0.029720641672611236572 0.031985670328140258789 0.031985670328140258789 0.03811530768871307373 0.03811530768871307373 0.041723959147930145264 0.045733965933322906494 0.045733965933322906494 0.050350069999694824219 0.050350069999694824219 0.055811721831560134888 0.055811721831560134888 0.062050439417362213135 0.062050439417362213135 0.068480603396892547607 0.074406594038009643555 0.074406594038009643555 0.076814010739326477051 0.076814010739326477051 0.074373893439769744873 0.074373893439769744873 0.068504638969898223877 0.062303490936756134033 0.062303490936756134033 0.056639607995748519897 0.056639607995748519897 0.051955908536911010742 0.051955908536911010742 0.04815033450722694397 0.04815033450722694397 0.044463135302066802979 0.041019227355718612671 0.041019227355718612671 0.033866312354803085327 0.033866312354803085327 0.029999777674674987793 0.029999777674674987793 0.026897316798567771912 0.026897316798567771912 0.022982984781265258789 0.021261766552925109863 0.021261766552925109863 0.021261766552925109863 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.019814513623714447021 0.019814513623714447021 0.022365147247910499573 0.023933473974466323853 0.023933473974466323853 0.027514349669218063354 0.027514349669218063354 0.029784496873617172241 0.029784496873617172241 0.032241087406873703003 0.035085223615169525146 0.035085223615169525146 0.042340770363807678223 0.042340770363807678223 0.046922434121370315552 0.046922434121370315552 0.052276872098445892334 0.058883514255285263062 0.058883514255285263062 0.066452845931053161621 0.066452845931053161621 0.091746345162391662598 0.091746345162391662598 0.10792965441942214966 0.12379102408885955811 0.12379102408885955811 0.13107730448246002197 0.13107730448246002197 0.12544767558574676514 0.12544767558574676514 0.10852196812629699707 0.088887222111225128174 0.088887222111225128174 0.065021991729736328125 0.065021991729736328125 0.058163732290267944336 0.058163732290267944336 0.052951391786336898804 0.048469472676515579224 0.048469472676515579224 0.044260792434215545654 0.044260792434215545654 0.040076125413179397583 0.035262629389762878418 0.032686699181795120239 0.028862170875072479248 0.028862170875072479248 0.026154607534408569336 0.026154607534408569336 0.022601617500185966492 0.022601617500185966492 0.022601617500185966492 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.020863983780145645142 0.022013744339346885681 0.023665873333811759949 0.023665873333811759949 0.025496393442153930664 0.025496393442153930664 0.029456458985805511475 0.029456458985805511475 0.03207302093505859375 0.035098660737276077271 0.035098660737276077271 0.042209964245557785034 0.042209964245557785034 0.047083493322134017944 0.052877306938171386719 0.052877306938171386719 0.060067210346460342407 0.060067210346460342407 0.068972259759902954102 0.079109586775302886963 0.068972259759902954102 0.11146774142980575562 0.11146774142980575562 0.13001190125942230225 0.13001190125942230225 0.14457328617572784424 0.14958411455154418945 0.14958411455154418945 0.1439708024263381958 0.1439708024263381958 0.12685847282409667969 0.10312219709157943726 0.10312219709157943726 0.084662660956382751465 0.084662660956382751465 0.065024666488170623779 0.058099027723073959351 0.058099027723073959351 0.052547771483659744263 0.052547771483659744263 0.047761101275682449341 0.042946614325046539307 0.042946614325046539307 0.035262629389762878418 0.035262629389762878418 0.030950618907809257507 0.030950618907809257507 0.027735510841012001038 0.025194127112627029419 0.025194127112627029419 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.02319277636706829071 0.02319277636706829071 0.024986274540424346924 0.027132272720336914062 0.028758810833096504211 0.03150922432541847229 0.03150922432541847229 0.034596089273691177368 0.034596089273691177368 0.041396137326955795288 0.046340744942426681519 0.046340744942426681519 0.05224895477294921875 0.05224895477294921875 0.05971032753586769104 0.069358579814434051514 0.080393880605697631836 0.09688297659158706665 0.09688297659158706665 0.11535203456878662109 0.13352027535438537598 0.13352027535438537598 0.15011301636695861816 0.15011301636695861816 0.15993574261665344238 0.16176640987396240234 0.16176640987396240234 0.15583465993404388428 0.15583465993404388428 0.13921184837818145752 0.11564238369464874268 0.11564238369464874268 0.095395587384700775146 0.081192255020141601562 0.081192255020141601562 0.070776857435703277588 0.070776857435703277588 0.057140205055475234985 0.051309738308191299438 0.051309738308191299438 0.045975230634212493896 0.045975230634212493896 0.040236346423625946045 0.032887075096368789673 0.032887075096368789673 0.029357206076383590698 0.029357206076383590698 0.026562567800283432007 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.024328969419002532959 0.026476603001356124878 0.027862027287483215332 0.030586702749133110046 0.030586702749133110046 0.033574275672435760498 0.037171613425016403198 0.039949562400579452515 0.044729869812726974487 0.044729869812726974487 0.050683539360761642456 0.058083314448595046997 0.058083314448595046997 0.076384522020816802979 0.076384522020816802979 0.092588663101196289062 0.11397316306829452515 0.11397316306829452515 0.13695353269577026367 0.15572133660316467285 0.15572133660316467285 0.16798453032970428467 0.16798453032970428467 0.17468388378620147705 0.17401680350303649902 0.17401680350303649902 0.16592922806739807129 0.14930683374404907227 0.14930683374404907227 0.12767192721366882324 0.12767192721366882324 0.10806579142808914185 0.092121534049510955811 0.092121534049510955811 0.079092778265476226807 0.06836032867431640625 0.06836032867431640625 0.055382739752531051636 0.055382739752531051636 0.049045946449041366577 0.04278531298041343689 0.04278531298041343689 0.036958858370780944824 0.030994137749075889587 0.030994137749075889587 0.027815794572234153748 0.027815794572234153748 0.027815794572234153748 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.025552051141858100891 0.025552051141858100891 0.029298610985279083252 0.029298610985279083252 0.03228975832462310791 0.035840451717376708984 0.035840451717376708984 0.042711649090051651001 0.042711649090051651001 0.048443213105201721191 0.05549179762601852417 0.05549179762601852417 0.064455769956111907959 0.085355699062347412109 0.085355699062347412109 0.10448265820741653442 0.10448265820741653442 0.12904965877532958984 0.15516580641269683838 0.15516580641269683838 0.17551539838314056396 0.18884378671646118164 0.18884378671646118164 0.19602312147617340088 0.19475816190242767334 0.19475816190242767334 0.18454788625240325928 0.16598065197467803955 0.16598065197467803955 0.14419694244861602783 0.14419694244861602783 0.12383443117141723633 0.10605958104133605957 0.10605958104133605957 0.089887008070945739746 0.075541056692600250244 0.075541056692600250244 0.064251720905303955078 0.055403143167495727539 0.052158422768115997314 0.045228410512208938599 0.045228410512208938599 0.038840658962726593018 0.034013263881206512451 0.034013263881206512451 0.030269671231508255005 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.027833176776766777039 0.027833176776766777039 0.030743667855858802795 0.034055791795253753662 0.034055791795253753662 0.040208969265222549438 0.040208969265222549438 0.045508895069360733032 0.052013505250215530396 0.060257345438003540039 0.060257345438003540039 0.077879935503005981445 0.077879935503005981445 0.094347544014453887939 0.11603841185569763184 0.11603841185569763184 0.1421671062707901001 0.17086897790431976318 0.17086897790431976318 0.19769291579723358154 0.22119244933128356934 0.22119244933128356934 0.23879830539226531982 0.24094228446483612061 0.24094228446483612061 0.22712363302707672119 0.20165337622165679932 0.20165337622165679932 0.17055131494998931885 0.14218297600746154785 0.14218297600746154785 0.11964826285839080811 0.11964826285839080811 0.10081904381513595581 0.083010219037532806396 0.083010219037532806396 0.068517692387104034424 0.055403143167495727539 0.055403143167495727539 0.047711677849292755127 0.040748484432697296143 0.040748484432697296143 0.035401973873376846313 0.030269671231508255005 0.030269671231508255005 0.030269671231508255005 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.028860021382570266724 0.032035153359174728394 0.032035153359174728394 0.037304650992155075073 0.042243301868438720703 0.042243301868438720703 0.048285361379384994507 0.055813372135162353516 0.055813372135162353516 0.070388384163379669189 0.085275791585445404053 0.085275791585445404053 0.10431434214115142822 0.12951166927814483643 0.12951166927814483643 0.15995731949806213379 0.19421631097793579102 0.19421631097793579102 0.23321220278739929199 0.23321220278739929199 0.31945067644119262695 0.33847576379776000977 0.3410396277904510498 0.3410396277904510498 0.33116859197616577148 0.30138611793518066406 0.30138611793518066406 0.20636245608329772949 0.16295863687992095947 0.16295863687992095947 0.13194471597671508789 0.10870271176099777222 0.10870271176099777222 0.08849229663610458374 0.072030641138553619385 0.072030641138553619385 0.060309905558824539185 0.049763862043619155884 0.049763862043619155884 0.042269065976142883301 0.036503776907920837402 0.036503776907920837402 0.032126352190971374512 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.029912605881690979004 0.029912605881690979004 0.033216681331396102905 0.038660746067762374878 0.038660746067762374878 0.044045858085155487061 0.050741184502840042114 0.050741184502840042114 0.06256344914436340332 0.075205259025096893311 0.075205259025096893311 0.092267498373985290527 0.11549550294876098633 0.11549550294876098633 0.14636607468128204346 0.18542492389678955078 0.18542492389678955078 0.27556288242340087891 0.32098153233528137207 0.32098153233528137207 0.34410995244979858398 0.35546091198921203613 0.35591149330139160156 0.35591149330139160156 0.34558114409446716309 0.31898540258407592773 0.31898540258407592773 0.25897729396820068359 0.19191803038120269775 0.19191803038120269775 0.14142093062400817871 0.11382213234901428223 0.11382213234901428223 0.090998366475105285645 0.073854520916938781738 0.073854520916938781738 0.061604186892509460449 0.051836416125297546387 0.04326896369457244873 0.04326896369457244873 0.037293229252099990845 0.037293229252099990845 0.032745365053415298462 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.030753960832953453064 0.035261783748865127563 0.035261783748865127563 0.039924450218677520752 0.04569242522120475769 0.04569242522120475769 0.054785087704658508301 0.06509866565465927124 0.06509866565465927124 0.079058565199375152588 0.099018126726150512695 0.12676636874675750732 0.12676636874675750732 0.165472373366355896 0.165472373366355896 0.24572294950485229492 0.30854499340057373047 0.34231337904930114746 0.34231337904930114746 0.35679304599761962891 0.36054471135139465332 0.35746073722839355469 0.35746073722839355469 0.34465301036834716797 0.31479865312576293945 0.31479865312576293945 0.25343242287635803223 0.18887186050415039062 0.18887186050415039062 0.14343816041946411133 0.1147909015417098999 0.090835884213447570801 0.090835884213447570801 0.074036307632923126221 0.061711795628070831299 0.061711795628070831299 0.05170987546443939209 0.043772898614406585693 0.043772898614406585693 0.037742715328931808472 0.033122848719358444214 0.033122848719358444214 0.033122848719358444214 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.031850937753915786743 0.031850937753915786743 0.035873338580131530762 0.040786530822515487671 0.046924393624067306519 0.046924393624067306519 0.055795434862375259399 0.066676057875156402588 0.066676057875156402588 0.081854276359081268311 0.10373649746179580688 0.10373649746179580688 0.14036771655082702637 0.19103991985321044922 0.19103991985321044922 0.26096016168594360352 0.32182177901268005371 0.34887516498565673828 0.34887516498565673828 0.35847425460815429688 0.35774287581443786621 0.35095846652984619141 0.35095846652984619141 0.33380368351936340332 0.29416453838348388672 0.29416453838348388672 0.23150756955146789551 0.17559652030467987061 0.1351404041051864624 0.1351404041051864624 0.10558519512414932251 0.085039600729942321777 0.085039600729942321777 0.072698697447776794434 0.060464654117822647095 0.060464654117822647095 0.050736911594867706299 0.043277524411678314209 0.037584736943244934082 0.037584736943244934082 0.033095713704824447632 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.032078485935926437378 0.036189995706081390381 0.04124460369348526001 0.04124460369348526001 0.047682039439678192139 0.055984843522310256958 0.055984843522310256958 0.067078344523906707764 0.082797087728977203369 0.10564303398132324219 0.10389412939548492432 0.13758799433708190918 0.18604992330074310303 0.18604992330074310303 0.25190767645835876465 0.31307587027549743652 0.34150987863540649414 0.34150987863540649414 0.34994775056838989258 0.34582421183586120605 0.34582421183586120605 0.33399787545204162598 0.30688545107841491699 0.25669625401496887207 0.25669625401496887207 0.20133700966835021973 0.1563847959041595459 0.1224093511700630188 0.1224093511700630188 0.097888350486755371094 0.079764790832996368408 0.06610056757926940918 0.06610056757926940918 0.058146432042121887207 0.049247607588768005371 0.049247607588768005371 0.042396146804094314575 0.037022303789854049683 0.033095713704824447632 0.033095713704824447632 0.033095713704824447632 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.032066881656646728516 0.036191917955875396729 0.036191917955875396729 0.040854152292013168335 0.047139123082160949707 0.047139123082160949707 0.055278763175010681152 0.066143929958343505859 0.081405825912952423096 0.07785460352897644043 0.098270975053310394287 0.12773290276527404785 0.16887228190898895264 0.16887228190898895264 0.22304642200469970703 0.28237730264663696289 0.31677851080894470215 0.31677851080894470215 0.32551804184913635254 0.317317962646484375 0.317317962646484375 0.29404416680335998535 0.25583884119987487793 0.2105649411678314209 0.2105649411678314209 0.16879577934741973877 0.13491372764110565186 0.10852386057376861572 0.10852386057376861572 0.089014939963817596436 0.073957532644271850586 0.061846680939197540283 0.061846680939197540283 0.052506562322378158569 0.047479741275310516357 0.041204195469617843628 0.041204195469617843628 0.036192819476127624512 0.032106358557939529419 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.031811673194169998169 0.035221215337514877319 0.03998201712965965271 0.03998201712965965271 0.045950997620820999146 0.053662259131669998169 0.0638753548264503479 0.0638753548264503479 0.072684705257415771484 0.089540332555770874023 0.11342546343803405762 0.11342546343803405762 0.14524829387664794922 0.18453875184059143066 0.22713002562522888184 0.22713002562522888184 0.25870442390441894531 0.2688115239143371582 0.25726556777954101562 0.25726556777954101562 0.23213759064674377441 0.20049624145030975342 0.16787500679492950439 0.16787500679492950439 0.13878794014453887939 0.11473344266414642334 0.095470733940601348877 0.095470733940601348877 0.080062083899974822998 0.067483641207218170166 0.057313457131385803223 0.049377325922250747681 0.049377325922250747681 0.043066721409559249878 0.037947412580251693726 0.039696529507637023926 0.03512034192681312561 0.031316138803958892822 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.031318493187427520752 0.034248657524585723877 0.034248657524585723877 0.038639109581708908081 0.044190280139446258545 0.05120129510760307312 0.060319431126117706299 0.056280281394720077515 0.066410519182682037354 0.079732730984687805176 0.097756654024124145508 0.097756654024124145508 0.12040936201810836792 0.14678344130516052246 0.17263272404670715332 0.17263272404670715332 0.17263272404670715332 0.14651718735694885254 0.14276050031185150146 0.14276050031185150146 0.13350422680377960205 0.12091335654258728027 0.10765581578016281128 0.095248229801654815674 0.095248229801654815674 0.097741670906543731689 0.083758883178234100342 0.071751184761524200439 0.071751184761524200439 0.061268500983715057373 0.052841532975435256958 0.046158574521541595459 0.046158574521541595459 0.040716331452131271362 0.037947412580251693726 0.033780269324779510498 0.033780269324779510498 0.030352188274264335632 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.030601583421230316162 0.029658712446689605713 0.03300361335277557373 0.037139434367418289185 0.042177174240350723267 0.048413716256618499756 0.04516081884503364563 0.051732700318098068237 0.059934999793767929077 0.070275329053401947021 0.070275329053401947021 0.083223350346088409424 0.098745174705982208252 0.092468649148941040039 0.092468649148941040039 0.10200551152229309082 0.10847184807062149048 0.1111986115574836731 0.10937369614839553833 0.10937369614839553833 0.10421779006719589233 0.097157314419746398926 0.088834263384342193604 0.080325521528720855713 0.080325521528720855713 0.072298914194107055664 0.064239792525768280029 0.063804551959037780762 0.055390365421772003174 0.055390365421772003174 0.048529017716646194458 0.042872194200754165649 0.038146320730447769165 0.038146320730447769165 0.03426518663763999939 0.032371688634157180786 0.029190003871917724609 0.029190003871917724609 0.029190003871917724609 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.028527636080980300903 0.031687319278717041016 0.035417199134826660156 0.039839554578065872192 0.037321481853723526001 0.04194571077823638916 0.047431077808141708374 0.053961165249347686768 0.053961165249347686768 0.061744276434183120728 0.070959657430648803711 0.070959657430648803711 0.076213344931602478027 0.076213344931602478027 0.082225941121578216553 0.086330644786357879639 0.087986364960670471191 0.087231740355491638184 0.087231740355491638184 0.084378138184547424316 0.079801149666309356689 0.074592612683773040771 0.068500667810440063477 0.068500667810440063477 0.062388833612203598022 0.056015599519014358521 0.050077077001333236694 0.049884688109159469604 0.049884688109159469604 0.044328816235065460205 0.039748679846525192261 0.035775396972894668579 0.032292086631059646606 0.032292086631059646606 0.02934134751558303833 0.027997558936476707458 0.027997558936476707458 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.02739139460027217865 0.030227189883589744568 0.033417057245969772339 0.031530939042568206787 0.034884709864854812622 0.038635965436697006226 0.043146487325429916382 0.043146487325429916382 0.048355948179960250854 0.047906689345836639404 0.052849411964416503906 0.058298077434301376343 0.058298077434301376343 0.063906781375408172607 0.067981779575347900391 0.070789717137813568115 0.072067081928253173828 0.071692809462547302246 0.071692809462547302246 0.069798067212104797363 0.066906712949275970459 0.06312631070613861084 0.058444462716579437256 0.058444462716579437256 0.053684581071138381958 0.048956569284200668335 0.044519182294607162476 0.040690690279006958008 0.037083335220813751221 0.037083335220813751221 0.036729186773300170898 0.033292680978775024414 0.030428491532802581787 0.027779424563050270081 0.027779424563050270081 0.025507934391498565674 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.026169342920184135437 0.026169342920184135437 0.027086583897471427917 0.029588812962174415588 0.032394811511039733887 0.035669524222612380981 0.035669524222612380981 0.039253626018762588501 0.038906328380107879639 0.042432624846696853638 0.046146091073751449585 0.049977429211139678955 0.049977429211139678955 0.053910624235868453979 0.056845828890800476074 0.058736912906169891357 0.059628963470458984375 0.059451196342706680298 0.059451196342706680298 0.058292374014854431152 0.056249275803565979004 0.053391516208648681641 0.050010178238153457642 0.050010178238153457642 0.046619508415460586548 0.043137073516845703125 0.039906688034534454346 0.036795165389776229858 0.03392540663480758667 0.03392540663480758667 0.031329512596130371094 0.031093373894691467285 0.028485074639320373535 0.0262889079749584198 0.024210449308156967163 0.024210449308156967163 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.023586042225360870361 0.025530733168125152588 0.027681414037942886353 0.030134875327348709106 0.030134875327348709106 0.032744139432907104492 0.032533381134271621704 0.035159327089786529541 0.03776817023754119873 0.040597990155220031738 0.040597990155220031738 0.043267667293548583984 0.045845929533243179321 0.047918070107698440552 0.049273468554019927979 0.04992564767599105835 0.049849774688482284546 0.049849774688482284546 0.04908215254545211792 0.047686573117971420288 0.045695792883634567261 0.043364200741052627563 0.040954660624265670776 0.040954660624265670776 0.038308367133140563965 0.035878039896488189697 0.033349469304084777832 0.031119873747229576111 0.028870247304439544678 0.028870247304439544678 0.026928905397653579712 0.026764074340462684631 0.024725575000047683716 0.023005245253443717957 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.02234388887882232666 0.024010337889194488525 0.025913981720805168152 0.025913981720805168152 0.027915770187973976135 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 0.023349413648247718811 0.021743709221482276917 0.021743709221482276917 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 + -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 -0.0099999997764825820923 diff --git a/tests/expectedoutputs/TestWMS/test_WMSGetMapCustomCRSEPSG3412Projection_ipcc_cmip5_tas_historical_subset.nc.png b/tests/expectedoutputs/TestWMS/test_WMSGetMapCustomCRSEPSG3412Projection_ipcc_cmip5_tas_historical_subset.nc.png index c8f4ebb60..897ad3342 100644 Binary files a/tests/expectedoutputs/TestWMS/test_WMSGetMapCustomCRSEPSG3412Projection_ipcc_cmip5_tas_historical_subset.nc.png and b/tests/expectedoutputs/TestWMS/test_WMSGetMapCustomCRSEPSG3412Projection_ipcc_cmip5_tas_historical_subset.nc.png differ diff --git a/tests/expectedoutputs/TestWMS/test_WMSGetMapCustomCRSEPSG3412Projection_sample_tas_cmip6_ssp585_preIndustrial_warming2_year.png b/tests/expectedoutputs/TestWMS/test_WMSGetMapCustomCRSEPSG3412Projection_sample_tas_cmip6_ssp585_preIndustrial_warming2_year.png index 72b1f54c0..d783bb16f 100644 Binary files a/tests/expectedoutputs/TestWMS/test_WMSGetMapCustomCRSEPSG3412Projection_sample_tas_cmip6_ssp585_preIndustrial_warming2_year.png and b/tests/expectedoutputs/TestWMS/test_WMSGetMapCustomCRSEPSG3412Projection_sample_tas_cmip6_ssp585_preIndustrial_warming2_year.png differ diff --git a/tests/expectedoutputs/TestWMS/test_WMSGetMapCustomCRSEPSG3413Projection_ipcc_cmip5_tas_historical_subset.nc.png b/tests/expectedoutputs/TestWMS/test_WMSGetMapCustomCRSEPSG3413Projection_ipcc_cmip5_tas_historical_subset.nc.png index 2b02c2d4e..fb7511bbe 100644 Binary files a/tests/expectedoutputs/TestWMS/test_WMSGetMapCustomCRSEPSG3413Projection_ipcc_cmip5_tas_historical_subset.nc.png and b/tests/expectedoutputs/TestWMS/test_WMSGetMapCustomCRSEPSG3413Projection_ipcc_cmip5_tas_historical_subset.nc.png differ diff --git a/tests/expectedoutputs/TestWMS/test_WMSGetMapCustomCRSEPSG3413Projection_sample_tas_cmip6_ssp585_preIndustrial_warming2_year.png b/tests/expectedoutputs/TestWMS/test_WMSGetMapCustomCRSEPSG3413Projection_sample_tas_cmip6_ssp585_preIndustrial_warming2_year.png index 97d588665..8f53a026e 100644 Binary files a/tests/expectedoutputs/TestWMS/test_WMSGetMapCustomCRSEPSG3413Projection_sample_tas_cmip6_ssp585_preIndustrial_warming2_year.png and b/tests/expectedoutputs/TestWMS/test_WMSGetMapCustomCRSEPSG3413Projection_sample_tas_cmip6_ssp585_preIndustrial_warming2_year.png differ diff --git a/tests/expectedoutputs/TestWMS/test_WMSGetMapRobinsonProjection_ipcc_cmip5_tas_historical_subset.nc.png b/tests/expectedoutputs/TestWMS/test_WMSGetMapRobinsonProjection_ipcc_cmip5_tas_historical_subset.nc.png index 046b48ca4..17f94e450 100644 Binary files a/tests/expectedoutputs/TestWMS/test_WMSGetMapRobinsonProjection_ipcc_cmip5_tas_historical_subset.nc.png and b/tests/expectedoutputs/TestWMS/test_WMSGetMapRobinsonProjection_ipcc_cmip5_tas_historical_subset.nc.png differ diff --git a/tests/expectedoutputs/TestWMS/test_WMSGetMapRobinsonProjection_sample_tas_cmip6_ssp585_preIndustrial_warming2_year.png b/tests/expectedoutputs/TestWMS/test_WMSGetMapRobinsonProjection_sample_tas_cmip6_ssp585_preIndustrial_warming2_year.png index 82372cb83..f1f8c16ad 100644 Binary files a/tests/expectedoutputs/TestWMS/test_WMSGetMapRobinsonProjection_sample_tas_cmip6_ssp585_preIndustrial_warming2_year.png and b/tests/expectedoutputs/TestWMS/test_WMSGetMapRobinsonProjection_sample_tas_cmip6_ssp585_preIndustrial_warming2_year.png differ diff --git a/tests/expectedoutputs/TestWMS/test_WMSGetMapWithGetLegendGraphic_adaguc_scaling_dataset_scaling1x.png b/tests/expectedoutputs/TestWMS/test_WMSGetMapWithGetLegendGraphic_adaguc_scaling_dataset_scaling1x.png index 1fed1c456..a463137c4 100644 Binary files a/tests/expectedoutputs/TestWMS/test_WMSGetMapWithGetLegendGraphic_adaguc_scaling_dataset_scaling1x.png and b/tests/expectedoutputs/TestWMS/test_WMSGetMapWithGetLegendGraphic_adaguc_scaling_dataset_scaling1x.png differ diff --git a/tests/expectedoutputs/TestWMS/test_WMSGetMapWithGetLegendGraphic_adaguc_scaling_dataset_scaling4x.png b/tests/expectedoutputs/TestWMS/test_WMSGetMapWithGetLegendGraphic_adaguc_scaling_dataset_scaling4x.png index b2c16f48a..ed23a5e34 100644 Binary files a/tests/expectedoutputs/TestWMS/test_WMSGetMapWithGetLegendGraphic_adaguc_scaling_dataset_scaling4x.png and b/tests/expectedoutputs/TestWMS/test_WMSGetMapWithGetLegendGraphic_adaguc_scaling_dataset_scaling4x.png differ diff --git a/tests/expectedoutputs/TestWMS/test_WMSGetMap_EPSG3067.png b/tests/expectedoutputs/TestWMS/test_WMSGetMap_EPSG3067.png index e6128f6fb..afbd65283 100644 Binary files a/tests/expectedoutputs/TestWMS/test_WMSGetMap_EPSG3067.png and b/tests/expectedoutputs/TestWMS/test_WMSGetMap_EPSG3067.png differ diff --git a/tests/expectedoutputs/TestWMS/test_WMSGetMap_NearestRenderWithShadeIntervalPrecise.png b/tests/expectedoutputs/TestWMS/test_WMSGetMap_NearestRenderWithShadeIntervalPrecise.png index 421fd2293..e1087a30b 100644 Binary files a/tests/expectedoutputs/TestWMS/test_WMSGetMap_NearestRenderWithShadeIntervalPrecise.png and b/tests/expectedoutputs/TestWMS/test_WMSGetMap_NearestRenderWithShadeIntervalPrecise.png differ diff --git a/tests/expectedoutputs/TestWMS/test_WMSGetMap_allow_encoded_proj4_params_attribute.png b/tests/expectedoutputs/TestWMS/test_WMSGetMap_allow_encoded_proj4_params_attribute.png index 5aa562d4a..070654825 100644 Binary files a/tests/expectedoutputs/TestWMS/test_WMSGetMap_allow_encoded_proj4_params_attribute.png and b/tests/expectedoutputs/TestWMS/test_WMSGetMap_allow_encoded_proj4_params_attribute.png differ diff --git a/tests/expectedoutputs/TestWMS/test_WMSGetMap_rotated_pole_RACMO.png b/tests/expectedoutputs/TestWMS/test_WMSGetMap_rotated_pole_RACMO.png index c82be26ec..0d754f2d5 100644 Binary files a/tests/expectedoutputs/TestWMS/test_WMSGetMap_rotated_pole_RACMO.png and b/tests/expectedoutputs/TestWMS/test_WMSGetMap_rotated_pole_RACMO.png differ diff --git a/tests/expectedoutputs/TestWMS/test_WMSGetMap_testdatanc.png b/tests/expectedoutputs/TestWMS/test_WMSGetMap_testdatanc.png index a7a3e9c2f..aaf95297c 100644 Binary files a/tests/expectedoutputs/TestWMS/test_WMSGetMap_testdatanc.png and b/tests/expectedoutputs/TestWMS/test_WMSGetMap_testdatanc.png differ diff --git a/tests/expectedoutputs/TestWMS/test_WMSGetMap_testdatanc.png_autoheight.png b/tests/expectedoutputs/TestWMS/test_WMSGetMap_testdatanc.png_autoheight.png index fbd709f7b..5ec16daa4 100644 Binary files a/tests/expectedoutputs/TestWMS/test_WMSGetMap_testdatanc.png_autoheight.png and b/tests/expectedoutputs/TestWMS/test_WMSGetMap_testdatanc.png_autoheight.png differ diff --git a/tests/expectedoutputs/TestWMS/test_WMSGetMap_testdatanc_customprojectionstring.png b/tests/expectedoutputs/TestWMS/test_WMSGetMap_testdatanc_customprojectionstring.png index acea5455e..4b1268902 100644 Binary files a/tests/expectedoutputs/TestWMS/test_WMSGetMap_testdatanc_customprojectionstring.png and b/tests/expectedoutputs/TestWMS/test_WMSGetMap_testdatanc_customprojectionstring.png differ diff --git a/tests/expectedoutputs/TestWMS/test_WMSGetMap_testdatanc_customprojectionstring_proj4namespace.png b/tests/expectedoutputs/TestWMS/test_WMSGetMap_testdatanc_customprojectionstring_proj4namespace.png index acea5455e..4b1268902 100644 Binary files a/tests/expectedoutputs/TestWMS/test_WMSGetMap_testdatanc_customprojectionstring_proj4namespace.png and b/tests/expectedoutputs/TestWMS/test_WMSGetMap_testdatanc_customprojectionstring_proj4namespace.png differ diff --git a/tests/expectedoutputs/TestWMS/test_WMSGetMap_testdatanc_plus.png b/tests/expectedoutputs/TestWMS/test_WMSGetMap_testdatanc_plus.png index a7a3e9c2f..aaf95297c 100644 Binary files a/tests/expectedoutputs/TestWMS/test_WMSGetMap_testdatanc_plus.png and b/tests/expectedoutputs/TestWMS/test_WMSGetMap_testdatanc_plus.png differ diff --git a/tests/expectedoutputs/TestWMS/test_WMSGetMap_testgeosnc.png b/tests/expectedoutputs/TestWMS/test_WMSGetMap_testgeosnc.png index 43ffbe8a5..8e9b790b6 100644 Binary files a/tests/expectedoutputs/TestWMS/test_WMSGetMap_testgeosnc.png and b/tests/expectedoutputs/TestWMS/test_WMSGetMap_testgeosnc.png differ diff --git a/tests/expectedoutputs/TestWMSSLD/test_WMSGetMap_testdatanc_NOSLD.png b/tests/expectedoutputs/TestWMSSLD/test_WMSGetMap_testdatanc_NOSLD.png index 90d967a52..073b1fad4 100644 Binary files a/tests/expectedoutputs/TestWMSSLD/test_WMSGetMap_testdatanc_NOSLD.png and b/tests/expectedoutputs/TestWMSSLD/test_WMSGetMap_testdatanc_NOSLD.png differ